/*CSS Document*/
body{ font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}
#main-wrapper{
	background-color:#ccc;
	width:1024px;
	height:750px;
	margin:0px auto 0px auto;
}
#header{
	width: 1024px;
	height: 200px;
	background-color: #03244F;
	color: #FFFFFF;
	text-align: center;
	font-size: xx-large;
	font-weight: bold;
}

#logo {
	width:200px;
	height:200px;
	float:left;
}

#title{
	padding-top:75px;
	float:right;
	width:824px;
	height:125px;
}

#nav {
	width:200px;
	height:550px;
	background-color:#03244F;
	text-align:center;
	float:left;
}
#nav ul li{
	height:30px;
	padding:20px;
}
#nav ul li:hover{
	background-color: #0180E0;
	transition: 1s background-color;
}
#nav a{
	text-decoration:none;
	color:#FFF;
	font-size:x-large;
}

#nav a:hover{
	text-decoration:none;
	color:#000;
	font-size:x-large;
	font-weight:bolder;
	transition:1s color;
}
#current{color:#000;
background-color:#0180E0;
}
#content{
	width:821px;
	height:534px;
	float:right;
	background-color:#FFF;
	border-right: medium #03244F solid;
	position:static;
}
#footer{
	width:824px;
	background-color:#03244F;
	float:right;
	color:#FFF;
}