@charset "UTF-8";
/* CSS Document */

#wrap {
    width: 960px;
    margin: auto;
	text-align: center;
	
}

h1 {

    margin-bottom: 40px;
}

#wrap li {
    float: left;
    position: relative;
    display: inline-block;
    width: 300px;
    height: 240px;
    margin: 10px;
    padding: 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.35);
    -moz-boz-shadow: 0 0 5px rgba(0,0,0,.35);
    box-shadow: 0 0 5px rgba(0,0,0,.35);
  filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=3);
    behavior: url(PIE.htc);
}

#wrap li div {
    position: absolute;
    height: 0;
    width: 280px;
    background: rgba(0,0,0,.45);
    overflow: hidden;
    bottom: 10px;
    left: 10px;
    padding: 0 10px;
    -webkit-transition: height 1s;
    -moz-transition: height 1s;
    -o-transition: height 1s;
    -ms-transition: height 1s;
    transition: height 1s;
    color: #fff;
    line-height: 30px;
    font-size: 1.2em;
}

#wrap li:hover div {
    height: 30px;
}

canvas {
    opacity: 1;
    position: absolute;
    top: 10px;
    left: 10px;
    -webkit-transition: opacity 1s .2s;
    -moz-transition: opacity 1s .2s;
    -o-transition: opacity 1s .2s;
    -ms-transition: opacity 1s .2s;
    transition: opacity 1s .2s;

}

#wrap li:hover canvas {
    opacity: 0;
}

#wrap p {
    clear: left;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

#wrap p a {
    color: #909090;
    -webkit-transition: color .6s;
    -moz-transition: color .6s;
    -o-transition: color .6s;
    -ms-transition: color .6s;
    transition: color .6s;
}

#wrap p a:hover {
    color: #eb5cf4;
}

.global {
	clear: both;
}