html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
body{line-height:1;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after {content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}


body {
	background: #101d2e;
}

#wrapper {
	width: 985px;
	margin: 0 auto;
}

ul#navigation {
	height: 46px; /* if this is changed, also adjust height: and line-height: in "ul#navigation li a:link, ul#navigation li a:visited" */
/*	padding: 4px 20px 0 20px;*/
	padding-top: 4px;
	position: relative;
	overflow: hidden;
}

ul#navigation > li {
	z-index: 1;
	float: left;
	position: relative;
	margin: 0 10px 0 0;
	border: solid 1px #415f9d;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

ul#navigation > li.selected {
	z-index: 3;
}

ul#navigation > li.shadow {
	z-index: 2;
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	border: none;
	background: none;
	-webkit-box-shadow: 0 -2px 6px #111;
	-moz-box-shadow: 0 -2px 6px #111;
	box-shadow: 0 -2px 6px #111;
}

ul#navigation > li a:link, ul#navigation > li a:visited {
	float: left;
	height: 50px; /* if this is changed, also adjust line-height: below and height: in "ul#navigation" */
	line-height: 50px; /* if this is changed, also adjust height: above and in "ul#navigation" */
	padding: 0px 30px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 1px 1px 1px #333;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	font-family: helvetica,sans-serif;
	background-color: #3e6cab; /* required by IE for padding to count as hoverable */
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(.2, #4b86cb),
		color-stop(.8, #2b477d)
	); /* Webkit (Safari/Chrome 10) */
	background-image: -moz-linear-gradient(
		center bottom,
		#4b86cb 20%,
		#2b477d 80%
	); /* Mozilla Firefox */
	background-image: -webkit-linear-gradient(center bottom, #4b86cb 20%, #2b477d 80%); /* Webkit (Chrome 11+) */
	background-image: -ms-linear-gradient(center bottom, #4b86cb 20%, #2b477d 80%); /* IE10 */
/*	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#4b86cb', EndColorStr='#2b477d'); */ /* IE6–IE9 */	/* cannot use filter: if using border-radius: */
}

ul#navigation > li a:hover {
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(.2, #2b477d),
		color-stop(.8, #4b86cb)
	); /* Webkit (Safari/Chrome 10) */
	background-image: -moz-linear-gradient(
		center bottom,
		#2b477d 20%,
		#4b86cb 80%
	); /* Mozilla Firefox */
	background-image: -webkit-linear-gradient(center bottom, #2b477d 20%, #4b86cb 80%); /* Webkit (Chrome 11+) */
	background-image: -ms-linear-gradient(center bottom, #2b477d 20%, #4b86cb 80%); /* IE10 */
/*	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2b477d', EndColorStr='#4b86cb'); */ /* IE6–IE9 *//* cannot use filter: if using border-radius: */
	background-color: #4b85ca; /* this is here for IE since we cannot use filter: */
}

ul#navigation > li.selected a:link, ul#navigation > li.selected a:visited {
	text-shadow: none;
	color: #2b477d;
	border: solid 1px #fff;
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(.2, #fff),
		color-stop(.8, #d1d1d1)
	); /* Webkit (Safari/Chrome 10) */
	background-image: -moz-linear-gradient(
		center bottom,
		#fff 20%,
		#d1d1d1 80%
	); /* Mozilla Firefox */
	background-image: -webkit-linear-gradient(center bottom, #fff 20%, #d1d1d1 80%); /* Webkit (Chrome 11+) */
	background-image: -ms-linear-gradient(center bottom, #fff 20%, #d1d1d1 80%); /* IE10 */
/*	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#d1d1d1'); */ /* IE6–IE9 *//* cannot use filter: if using border-radius: */
	background-color: #fff;
}

#content {
	padding: 20px;
	font-family: helvetica,sans-serif;
	background: #fff;
	border-right: 1px solid #415f9d;
	border-bottom: 1px solid #415f9d;
	border-left: 1px solid #415f9d;
	-webkit-box-shadow: 0px 4px 15px 2px #888;
	-moz-box-shadow: 0px 4px 15px 2px #888;
	box-shadow: 0px 4px 15px 2px #888;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	border-radius-bottomleft: 10px;
	border-radius-bottomright: 10px;
}


ul#navigation > li > ul {
	visibility: hidden;
	position: absolute;
}
			
a.subnav {
	display: block;
	background: #fff;
	color: #24313c;
	text-decoration: none;
	font-size: 15px;
	font-weight: normal;
	font-family: helvetica,sans-serif;
	padding: 15px 20px;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	text-align: left;
	text-shadow: none;
}
			
a.subnav:hover {
	background: #fff;
	color: #666;
}




h1 {
	padding: 1em 0;
	font-size: 24px;
	font-weight: bold;
}

h2 {
	padding: 1em 0;
	font-size: 20px;
	font-weight: bold;
}

h3 {
	padding: 1em 0;
	font-size: 16px;
	font-weight: bold;
}

p {
	padding: .8em 0;
}
