/*CSS Document */
* {
	margin:2px;
	padding:2px;
}

.logo {
	display: block;
	position: absolute;
	margin: 0px;
	padding: 0px;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	background-image:url(../img/logo-square1.jpg);
	z-index: 3;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 1;
	text-align: center;
}

body {
	font-family: Arial, Helvetica, sans-serif;
    background-color: #283322;
	overflow:auto;
}

.container {
	position: fixed;
	display: block;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	}

.header_logo {
	position: fixed;
	top: 0px;
	opacity: 0;
	margin: 0px;
	padding: 0px;
	display: block;
	background-image:url(../img/logo1.jpg);
	background-repeat: no-repeat;
	background-size:100%;
	background-color: #FFFFFF;
	z-index: 100;
}



/* Transitions */
.main_menu,
.content_box,
.header_logo,
.logo,
.content_item {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
}

#hideall {
	display:none;
	}
#overall {
	display: none;
	position: fixed;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	z-index:0;
	}




