/* 
Boteros de Bastimentos
http://www.boterosbastimentos.bocas.com
13/12/2015
*/

/* general */

.clear {
    clear: both;
}
h1,h2, h3, h4, h5, h6 {
    font-family: 'Century Gothic', sans-serif;
    line-height: 1.1em;
    margin-bottom: 20px;
}
h1 {
    text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.margin_top { margin-top: 20px; }


/*solid line*/

.solidline {
    border-top: 1px solid #c9cbca;
    margin: 30px 0 30px 0;
    width: 100%;
}


/*gallery*/

#gallery {
}
.thumbs {
    margin: 0;
    padding: 0;
}
.thumbs li {
    list-style: none;
    margin-bottom: 45px;
}
.thumbs li.item-thumbs div {
    width: 100%;
    height: 100%;
    float: left;
    background: #c0c0c0;
    position: relative;
}
.thumbs li.item-thumbs .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.75);
    z-index: 5;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 450ms ease-out 0s;
    text-decoration: none;
    -webkit-transform: scale(0.5,0.5);
    transform: scale(0.5,0.5);
    -webkit-transition: .5s;
    transition: .5s;
	border-radius: 5px;
}
.thumbs li.item-thumbs:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}
.thumbs li.item-thumbs .overlay span {
    top: 50%;
    left: 50%;
    margin: -15px auto auto -15px;
    color: white;
    font-size: 25px;
    position: absolute;
}
.thumbs li.item-thumbs img {
    float: left;
    width: 100%;
}

