html{
}  
body{
	background: url(../images/bg.jpg) no-repeat center center fixed; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	margin-top: 100px;
	overflow: auto;
}
h1, h2, h3, h4, h5{
	text-align: center;
}
a, a:hover{
	text-decoration: none;
}
.info {
	text-align: center;
	font-size: small;
	padding: 12px;
}
.effect2{
    -webkit-box-shadow: 0px 0px 15px 0px #777;
    -moz-box-shadow: 0px 0px 15px 0px #777;
    -o-box-shadow: 0px 0px 15px 0px #777;
    box-shadow: 0px 0px 15px 0px #777;
}
.footer{
	text-align: center;
}
.item-holder{
	display: table;
}
.item {
	margin: 6px;
	overflow: hidden;
}
.overlay{
	width: 360px;
	height: 70px;
	bottom: 0;
	color: #000;
	background-color: #fff;
}
.item:after {
	display: table-cell;
	vertical-align: middle;
    content: attr(data-content);
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    position:absolute;
    width:100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity:0;
    transition: all 1s;
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
}
.item:hover:after {
    opacity:1;
}
.item img{
	transition: all 1s;
    -webkit-transition: all 2s ease; /* Safari and Chrome */
    -moz-transition: all 2s ease; /* Firefox */
    -ms-transition: all 2s ease; /* IE 9 */
    -o-transition: all 2s ease; /* Opera */
	background-color: white;
	padding: 5px;
}
.item:hover img{
	-webkit-transform:scale(1.5) ; /* Safari and Chrome */
    -moz-transform:scale(1.5) ; /* Firefox */
    -ms-transform:scale(1.5) ; /* IE 9 */
    -o-transform:scale(1.5) ; /* Opera */
    transform:scale(1.5) ;
    z-index: 999;
}
.content-container{
	background-color: white;
	opacity:1;
	padding: 10px;
	height: 80%;
	position:fixed !important;
	position:absolute;
	top:100px;
	right: 20%;
	left:20%;
	bottom:5%;
}
.content{
	opacity: 1;
	height: 100%;
   	overflow:auto;
   	color: #000;
}
.viewport{
	position:fixed !important;
	position:absolute;
	top:100px;
	right:2%;
	bottom:60px;
	left:2%;
	overflow: auto;
	height: 80%;
}
.scroll{
	height: 80%;
}
.footer{
	bottom: 5px;
}
.btn-comments{
	margin-left: auto;
	margin-right: auto;
}
.grid .effect-6 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}
.grid .effect-6 a.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: rotateX(-80deg);
	transform: rotateX(-80deg);
	-webkit-animation: flip .8s ease-in-out forwards;
	animation: flip .8s ease-in-out forwards;
}
@-webkit-keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}
@keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}
.hidden{
     opacity:0;
}
.visible{
     opacity:1;
}