﻿/*

RESET --------------------------------------- */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {  

	margin:0; 

	padding:0; 

} 

table { 

	border-collapse:collapse; 

	border-spacing:0; 

} 

fieldset,img {  

	border:0; 

} 

address,caption,cite,code,em,strong,dfn,th,var { 

	font-style:normal; 

	font-weight:normal; 

} 

ol,ul { 

	list-style:none; 

} 

caption,th { 

	text-align:left; 

} 

h1,h2,h3,h4,h5,h6 { 

	font-size:100%; 

	font-weight:normal; 

} 

q:before,q:after { 

	content:''; 

} 

abbr,acronym {

	border:0; 

}


/***** END RESET *****/


body {
    background: #ffffff url('../Images/bg.jpg') repeat-x top left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
}

#wrapper {
	margin: auto;
	min-width: 700px;
	width: 97%;
}

h1 {
	display: block;
	font-size: 1.4em;
	margin-bottom: 20px;
}

p {
	font-size: .8em;
	margin-bottom: 20px;
}

strong {
	font-weight: bold;
}

a {
	color: #033085;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}



/* Header */
#header {
	height: 150px;
	width: 100%;
}

#header img {
	float: left;
}

#header h1 {
	color: #033085;
	float: right;
	font-size: 1.6em;
	font-weight: bold;
	margin-top: 60px;
}



/* NAV */

#nav {
	border-right: 1px black solid;
	float: left;
	margin: 20px 0px 0px 3px;
	width: 200px;
}

#nav ul {
	font-size: .75em;
}

#nav ul li {
	margin: 5px 0px;
}


/* CONTENT */

#content {
	float: left;
	margin-left: 15px;
	width: 70%;
}

#content a {
	text-decoration: underline;
}

#content a:hover {
	color: #ED2E4F;
}

#content ul{
	font-size: .8em;
	margin-left: 20px;
	margin-bottom: 10px;
}


#content ul.steps {
	font-size: .8em;
	list-style: decimal;
	margin-left: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

#content ul li {
	margin-bottom: 10px;
}


#content ul.borderBottom {
	border-bottom: 1px #DDD7B7 solid;
}

#content ul.steps li ul {
	font-size: .9em;
	font-style: italic;
	list-style: disc;
	margin-left: 20px;
	margin-top: 10px;
}



