html, body { height: 100%; }
.bg{
	background: url(img/bg.jpg) no-repeat;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	z-index:-1;
	}
#overlay {	
	background: url(demos/img/overlay.png) repeat;
	background-position: 50%;
	background-repeat:repeat;
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	z-index:-1;
}
#header2 { width: 100%; padding:30px 0 10px; background-color:  #2E3138; }
.one{ letter-spacing:1px; text-transform:uppercase; color:  #656C7A;}
.one a{ letter-spacing:1px; text-transform:uppercase; color:  #878f9f; }
a { font-size:14px; letter-spacing:1px; text-transform:uppercase; color:  #777; }
a:hover, a:focus { color:  #999; }
#header2 img{height: 50px; width: 150px;}
img {
	margin:15px auto;
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform .3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: -webkit-transform .3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: transform .3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

img:hover {
	-webkit-transform: translate3d(0, -6px, 0);
	-moz-transform: translate3d(0, -6px, 0);
	transform: translate3d(0, -6px, 0);
}