html{
	height:100%;
	margin:0px;
	padding:0px;
}
body{
	position:relative;
	margin:0 auto;
	height:100%;
	background-color:#F5F5F5;
	overflow:hidden;
}
#logo{
	max-height:225px;
	max-width:100%;
	transition: max-height 1s ease;
	position:relative;
	z-index:4;
}
#additionalHeaders{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color:rgba(129, 129, 129, 0.8);
	z-index:100;
}
header{
	position:relative;
	height:225px;
	transition: height 1s ease;
	top:20px;
	transition: top 1s ease;
}
footer{
	display:none;
	height:50px;
	font-size:30px;
	position:absolute;
	bottom:1px;
	width:100%;
	color:#F7941E;
	background-color:#ffffff;
	border-top:1px solid #818181;
	box-sizing:border-box;
}