.gallery{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.gallery-slide{
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}
.gallery-slide .slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-left: 0;
}
.gallery-slide .slide li{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.gallery-slide .slide li .pic{
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
} 
.gallery-slide .describe{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    color:#fff;
    opacity: 0.69;
    background: #030303;
    padding: 15px 15px 20px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;  
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.gallery-slide .describe.fadeOut{
    opacity: 0;
}
.gallery-slide .describe h3{
    position: relative;
    font-size: 1.2rem;
    line-height: 1.5em;
    margin-bottom: .5em;
    padding-right: 3rem;
    word-wrap: normal;
    /*for IE */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 100;
}
.gallery-slide .describe h3 .index{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 100;
}
.gallery-slide .describe h3 .index strong{
    font-size: 1rem;
    font-weight: 100;
}
.gallery-slide .describe p{
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.5em;
    max-height: 6em;
    overflow-y: scroll;
}