@charset "UTF-8";
/* CSS Document */

/* Reset HTML5 elements to Block*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

body {
	font: 90%/1.3 Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #000;
}

#pagewrap {
	width: 1000px;
	margin: 0 auto;
	border:1px solid #CCC;
	border-radius:10px;
	box-shadow:0px 0px 10px #CCC;
	padding: 5px 5px;
}

#contentwrap {
	width: 100%;
	margin: 0 auto;
	border: 1px solid #000066;
}

#header {
	height: auto;
	background: #FFF;
	color: #000;
	}
	#header img {
		border: none;
	}
	#header #top-nav {
		float:right;
		text-align:right;
		padding:10px 10px 0px 0px;
		font-size:0.7em;
	}
	#header a {
		color: #00F;
	}

#navbox {
	width: 30%;
	float: left;
	margin-bottom: 10px;
	background:#C60;
	border:1px solid black; 
	color:#fff;
}
	#navbox .details {
		padding: 15px 30px 0 15px;
	}
#nav {
	width:100%;
	list-style-type:disc;
	padding: 5px 15px 5px 15px;
}
#nav ul {
	list-style-type:disc;
	padding: 0 0 0 15px;
}
#nav a {
	color: #FFF;
	text-decoration: underline;
}

.selectnav { display: none; }


#content {
	width: 60%;
	float: right;
	padding: 0px 15px;
	min-height: 600px;
}
	#content a {
		color: #00F;
	}

#sidebar {
	width: 30%;
	float: left;
}
	#sidebar .widget {
		padding: 8% 7%;
		margin-bottom: 10px;
	}
	#sidebar .widget a {
		color: #FFF;
		text-decoration:underline;
	}
	

#footer {
	clear: both;
	border-top:1px;
	border-top-color:#000066;
	text-align:center;
	background: #0066FF;
	color: #fff;
	font-size:0.75em;
	padding: 15px 15px;
}
	#footer p {
		margin: 0 0 0 0;
		padding: 5px 0 0 0;
	}
	#footer a {
		color: #fff;
	}
	
	/*** Skip Navigation Links Styling***/
/*** This will hide skip links unless they get focus and then will display ***/
.skipnav {
	text-align: left;
}
	.skipnav a {
		position: absolute;
		left: -10000px;
		width: 1px;
		height: 1px;
		overflow: hidden;
	}
	.skipnav a:focus, .skipnav a:active {
		position: static;
		left: 0;
		width: auto;
		height: auto;
		overflow: visible;
		text-decoration: underline;
	}
