* {
	border: 0px;
	padding: 0px;
	margin: 0px;
	outline: none;
	font-family: sans-serif;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}

body {
	background-color: #e3ebf3;
}

body > #header {
	background: #183b62 url('images/header.png') repeat-x;
	height: 98px; 
	position: relative; 
	margin-left:0;
	width:100%;
}

body > #header > div {
	position: relative;
	width: 994px; /*see to it this matches the wrapper width */
	margin-left: auto;
	margin-right: auto;
	height: 100%;
}

body > #header > div > #shiny {
	background: url('images/bg-light.png') no-repeat;
	position: absolute;
	width: 757px;
	height: 98px;
	top: 0px;
	left: 0px;
}

body > #header > div > a > img {
	position: absolute;
	height: 80px;
	width: 300px;
	top: 10px;
}

body > #header > div > ul {
	position: absolute;
	bottom: 0px;
	right: 0px;
	list-style: none;
	font-size: 14px;
	color: #e3ebf3;
}

body > #header > div > ul > li {
	display: inline-block;
	margin-right: 3px;
	margin-left: 3px;
	height: 42px;
	line-height: 40px;
}

body > #header > div > ul > li > a > h1, body > #header > div > ul > li > a > h1#selected {
	-webkit-border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius: 10px 10px 0 0;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	padding-left: 10px;
	padding-right: 10px;
	height: 42px;
	font-size: 14px;
	display: inline-block;
}

body > #header > div > ul > li > a > h1#selected {
	background-color: #2963a4;
}

body > #header > div > ul > li > a {
	color: #e3ebf3;
	font-size: 14px;
}

body > #header > div > ul > li > a > h1 {
	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 0.3s;
	-moz-transition-property: background-color, color;
	-moz-transition-duration: 0.3s;
	-o-transition-property: background-color, color;
	-o-transition-duration: 0.3s;
	transition-property: background-color, color;
	transition-duration: 0.3s;
}

body > #header > div > ul > li > a:hover > h1 {
	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 1s;
	-moz-transition-property: background-color, color;
	-moz-transition-duration: 1s;
	-o-transition-property: background-color, color;
	-o-transition-duration: 1s;
	transition-property: background-color, color;
	transition-duration: 1s;

	background-color: #3a5f87;
}

/* improve this selector */
body > hr {
	height: 6px;
	width:100%;
	background-color: #2963a4;
}

body > #wrapper {
	position:relative;
	width: 994px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	z-index: 1;
}

body > #wrapper > #submenu {
	float: left;
	width: 236px;
}

body > #wrapper > #submenu > h1 {
	font-weight: bold;
	font-size: 14px;
	color: #555555;
	padding-left: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
}

body > #wrapper > #submenu > ul {
	list-style: none;
}

body > #wrapper > #submenu > ul > li {
	font-size: 13px;
	padding-left: 40px;

	background-repeat: no-repeat;
	background-position: 3px 3px;

	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 0.3s;
	-moz-transition-property: background-color, color;
	-moz-transition-duration: 0.3s;
	-o-transition-property: background-color, color;
	-o-transition-duration: 0.3s;
	transition-property: background-color, color;
	transition-duration: 0.3s;
}

body > #wrapper > #submenu > ul > li:hover {
	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 1s;
	-moz-transition-property: background-color, color;
	-moz-transition-duration: 1s;
	-o-transition-property: background-color, color;
	-o-transition-duration: 1s;
	transition-property: background-color, color;
	transition-duration: 1s;

   background-color: gray;
}

body > #wrapper > #submenu > ul > li.selected {
	background-color: #d9d9d9;
}

body > #wrapper > #submenu > ul > li > a > h2 {
	color: #555555;
	font-weight: normal;
	font-size: 13px;
	padding: 0px;
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0px;
	
	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 0.3s;
	-moz-transition-property: background-color, color;
	-moz-transition-duration: 0.3s;
	-o-transition-property: background-color, color;
	-o-transition-duration: 0.3s;
	transition-property: background-color, color;
	transition-duration: 0.3s;
}

body > #wrapper > #submenu > ul > li > a > h2 {

}

body > #wrapper > #submenu > ul > li:not(.selected):hover > a > h2 {
	color: white;
	
	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 1s;
	-moz-transition-property: background-color, color;
	-moz-transition-duration: 1s;
	-o-transition-property: background-color, color;
	-o-transition-duration: 1s;
	transition-property: background-color, color;
	transition-duration: 1s;
}

body > #wrapper > #content {
	float: right;
	width: 736px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #d0d4d9;
	background-color: #f3f6f9;
	min-height: 400px;
	z-index: 1;

	padding: 10px;
}

body > #wrapper > #content ul {
	list-style-position: inside;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
}

body > #wrapper > #content a {
	color: #0055d4;
}

body > #wrapper > #content p {
	text-align: justify;
	font-size: 14px;
	color: #03172c;
}

body > #wrapper > #content h3 {
	font-weight: bold;
	font-size: 16px;
	color: #0b2847;
	margin-bottom: 5px;
}

body > #wrapper > #content h4 {
	font-weight: bold;
	font-size: 13px;
	margin-top: 6px;
	color: #03172c;
	margin-bottom: 3px;
}

/*************** START PAGE SPECIFIC ****************************/
body > #wrapper > #content > #contactus {
	margin-left: auto;
	margin-right: auto;
	width: 700px;
	height: 774px;
	background: url('images/envelope.png') no-repeat;
	position: relative;

}

body > #wrapper > #content > #contactus > address {
	position: absolute;
	bottom: 80px;
	left: 190px;
	font-style: normal;
	color: white;
}

body > #wrapper > #content > #contactus > form {
	position: absolute;
	top: 150px;
	left: 175px;
	width: 350px;
}

body > #wrapper > #content > #contactus > form *:not( [type="submit"] ) {
	width: 100%;
}

body > #wrapper > #content > #contactus > form label {
	font-size: 14px;
	color: #03172C;
	display: block;
}

body > #wrapper > #content > #contactus > form input[type=text] {
	height: 25px;
	border: 1px dotted #d9d9d9; /*compat*/
	background-color: white;
}

body > #wrapper > #content > #contactus > form input[type=text]:valid {
	border: 1px dotted #d9d9d9;
}

body > #wrapper > #content > #contactus > form input[type=text]:invalid {
	border: 1px dotted red;
}

body > #wrapper > #content > #contactus > form input[type=text]:focus { /*compat*/
	border: 1px dashed #d9d9d9;
}

body > #wrapper > #content > #contactus > form input[type=text]:focus:valid {
	border: 1px dashed #d9d9d9;
}


body > #wrapper > #content > #contactus > form input[type=text]:focus:invalid {
	border: 1px dashed red;
}

body > #wrapper > #content > #contactus > form textarea {
	width: 350px;
	border: 1px dotted #d9d9d9;
	height:150px;
	background-color: white;
}

body > #wrapper > #content > #contactus > form textarea:focus {
	border-style: dashed;
}

body > #wrapper > #content > #contactus > form input[type="submit"] {
	margin-left: 120px;
	margin-top: 20px;
	padding: 5px;
	background-color: #2963A4;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	color: #e3ebf3;
	border-top: 1px solid #e3ebf3;
	border-left: 1px solid #e3ebf3;
	border-right: 2px solid #d5e1ed;
	border-bottom: 2px solid #d5e1ed;
}

body > #wrapper > #content > #contactus > form input[type="submit"][disabled="disabled"] {
	background-color: gray;
	border-color: gray;
}

/*************** END PAGE SPECIFIC ****************************/

body > #sitemap {
	background-color: #183b62;
	min-height: 179px;
	border-top: 1px solid #2963a4;
	position: relative;
	margin-top: -20px;
}

body > #sitemap > div {
	margin-top: 30px;
	padding-bottom: 10px;
	position: relative;
	width: 994px;
	margin-left: auto;
	margin-right: auto;
}

body > #sitemap > div > #pages {
	position: relative;
	float: right;
	width: 756px;
	height: auto;
}

body > #sitemap > div > #pages > div {
	margin-left: 85px;
}

body > #sitemap > div > #pages > div ul.level1 {
	list-style: none outside none;
	margin-bottom: 5px;
	width: 33%;
	float: left;
	vertical-align: top;
}

body > #sitemap > div > #pages > div ul a {
	text-decoration: none;
	color: rgb(184, 202, 221);

	-webkit-transition-property: color;
	-webkit-transition-duration: 0.3s;
	-moz-transition-property: color;
	-moz-transition-duration: 0.3s;
	-o-transition-property: color;
	-o-transition-duration: 0.3s;
	transition-property: color;
	transition-duration: 0.3s;
}

body > #sitemap > div > #pages > div ul a:hover {
	text-decoration: underline;
	
	-webkit-transition-property: color;
	-webkit-transition-duration: 1s;
	-moz-transition-property: color;
	-moz-transition-duration: 1s;
	-o-transition-property: color;
	-o-transition-duration: 1s;
	transition-property: color;
	transition-duration: 1s;

	color: white;
}

/*body > #sitemap > div > #pages > div > ul:nth-of-type(4) {
	clear: both;
}

body > #sitemap > div > #pages > div > ul:nth-of-type(3n) {
	width: auto;
}*/

body > div#sitemap > div > div#pages > div ul li h1 {
	font-size: 13px;
	color: rgb(143, 179, 214);
	font-weight: bold;
}

body > div#sitemap > div > div#pages > div ul li h2 {
	margin-left: 15px;
	font-size: 12px;
	color: rgb(184, 202, 221);
}

body > div#sitemap > div > div#pages > div ul li ul {
	list-style: none outside none;
}

body > div#sitemap > div > div#pages > div ul li ul li h2 {
	color: rgb(184, 203, 221);
	font-weight: bold;
	font-size: 12px;
	margin-left: 15px;
}

body > div#sitemap > div > div#pages > div ul li ul li h3 {
	margin-left: 30px;
	font-size: 12px;
	color: rgb(184, 202, 221);
}

body > div#sitemap > div > div#postit {
	position: absolute;
	top: 0px;
	left: 0px;
	background: url('images/postit.png') no-repeat;
	width: 250px;
	height: 265px;
}

body > div#sitemap > div > div#postit address {
	padding: 20px;
	padding-top: 45px;
	font-weight: bold;
	font-size: 17px;
	font-family: "bitstream vera sans mono", monospace;
	-webkit-transform: rotate(-3.3deg);
	-moz-transform: rotate(-3.3deg);
	-o-transform: rotate(-3.3deg);
	-ms-transform: rotate(-3.3deg);
	transform: rotate(-3.3deg);
	color: 
}

body div#footer {
	background-color: #2963a4;
	width: 100%;	
}

body div#footer h6 {
	color: #e3ebf3;
	font-size: 13px;
	text-align: center;
	line-height: 30px;
}
