@charset "utf-8";
/* CSS Document */

/* Sets font types and sizes for all elements, unless those elements have a different css rule */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
}
h1 {
	color: #1526ca;
	font-size: 22px;
	padding: 25px 0px 15px 0px;
	font-weight: normal;
	margin: 0px;
}
p {
	line-height: 18px;
}
a {
	color: #1526ca;
}
a:hover {
	color: #000;
}

/* Header and Logo */
#header {
	width: 1000px;
	height: 52px;
	margin: 0px auto;
	overflow: hidden;
	border-bottom: 1px solid #b9b9b9;
	padding-bottom: 10px;
}
#logo {
	width: 295px;
	height: 52px;
	float: left;
}

/* Menu Layout */
#menu {
	width: 705px;
	height: 52px;
	float: right;
	text-align: right;
}
#menu ul {
	margin: 0px;
	padding: 17px 0px 0px 0px;
}
#menu li {
	display: inline;
	font-size: 18px;
	padding: 40px;
}
#menu a {
	padding: 5px 5px 25px 5px;
	color: #1526ca;
	text-decoration: none;
}
#menu a:hover {
	color: #FFF;
	background-color: #1526ca;
}

/* Main Wrapper Layout */
#main_wrapper {
	width: 1000px;
	height: auto;
	margin: 0px auto 0px auto;
	overflow: hidden;
}

/* Side Menu */
#side_menu {
	width: 295px;
	height: auto;
	float: left;
}
#side_menu h2 {
	font-size: 18px;
	border-top: 1px dotted #b9b9b9;
	border-bottom: 1px dotted #b9b9b9;
	padding: 2px 0px 2px 0px;
	margin: 35px 0px 0px 0px;
}
#side_menu ul {
	margin: 0px;
	padding: 0px;
}
#side_menu li {
	display: block;
	padding: 10px 0px 10px 0px;
	
}
#side_menu a {
	color: #1526ca;
}
#side_menu a:hover {
	color: #333;
}

/* Content layout */
#content {
	width: 684px;
	height: auto;
	border-left: 1px solid #b9b9b9;
	float: right;
	padding: 0px 0px 0px 20px;
	margin-top: 10px;
}
.last_p {
	border-bottom: 1px dotted #b9b9b9;
	padding-bottom: 15px;
}

/* Footer */
#footer {
	border-top: 1px solid #b9b9b9;
	font-size: 12px;
	width: 1000px;
	margin: 10px auto;
	padding: 5px 0px 0px 0px;
}
	
	

