@charset "utf-8";
/* CSS Document */

html, body, p, div, td, th, li, a, h1, h2, h3, h4, h5, input, select, textarea, button {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#000;
	line-height:14px;
}

strong, em {
	font-family:Verdana, Arial, Helvetica, sans-serif;
}


:focus { /* removes the dotted line around links when clicked */
	outline: 0;
}



p {
	margin:0 0 14px 0;
}

a {
	color:#336666;
	text-decoration:underline;
	padding:2px 0; /* ensures line-height of 14px doesn't interrupt multi-line links */
}

	a:hover {
		color:064EBA;
	}

h1 {
	font-size:12px;
	font-weight:bold;
	margin:0 0 8px 0;
	line-height:normal;
	padding:0;
	text-transform:uppercase;
}

h2 { 
	font-size:11px;
	font-weight:bold;
	margin:0 0 4px 0;
	line-height:normal;
	padding:0;
}

#container {
	width:776px;
	margin:0 auto;
	border-left:1px solid #596D2E;
	border-right:1px solid #596D2E;
}

#container table.container th, #container table.container td {
	vertical-align:top;
}

#container table.container th {
	text-align:left;
} 

#masthead {
	margin:0;
}

#masthead img {
	display:block;
}

#pageContent {
	padding:10px 20px 10px 10px;
}



.sbPromo {
	margin-left:10px;
}

.sbPromo img {
	border:1px solid #aaaaaa;
	display:block;
	margin-bottom:5px;
}

.sbPromo a {
	font-weight:normal;
}







.nav a {
	text-decoration:none;
}



#footer {
	border-top:1px solid #cccccc;
	padding:5px 0 0 0;
	margin:10px 20px 20px 0;
}




/*#################### Lists ####################*/

/* Unordered */

ul {
	list-style-type:none; /* remove automatic bullet */	
	padding: 0 0 0 15px; /* move bullet to the right (add padding-left) */
	margin: 0 0 14px 0; /* complete list margins */
	line-height:14px; /* define so bullet image is placed properly from a defined 'Left' 'Top' */
}

	ul li {
		background-image: url(../images/bullet.gif); /* add custom bullet */
		background-repeat: no-repeat; 
		background-position: 0 6px; /* position from 'Left' 'Top' */
		padding: 0 0 0 10px; /* define distance of text from bullet */
		margin: 0 0 6px 0; /* define list items */
	}
	
ul ul { /* nested unordered list */
	margin:3px 0 3px 0;
}

ul ol { /* nested ordered list */
	margin:3px 0 3px 0;
}

	ul ol li {
		background-image:none;
	}



/* Ordered */

ol {
	list-style-type:decimal;
    padding: 0 0 0 35px; /* move number to the right (add padding-left) */
	margin: 0 0 14px 0; /* Move number using left-margin */
	line-height:14px;
}

	ol li {
		padding: 0 0 0 0; /* define distance of text from bullet */
		margin: 0 0 3px 0; /* define list items */
	}

ol ol {
	margin:3px 0 3px 0;
	padding-left:25px;
}

ol ul {
	margin:3px 0 3px 0;
	padding-left:5px;
}

	ol ul li {
		padding: 0 0 0 10px;
	}


/* linkList - used for text situations that need list-type spacing, but no (or custom) bullets */

ul.linkList { 
	list-style-type:none;
	padding: 0 0 0 0; 
	margin: 0 0 14px 0; 
	line-height:14px;
}

	ul.linkList li {
		background-image: none; 
		background-repeat: no-repeat; 
		padding: 0 0 0 0; 
		margin: 0 0 4px 0; 
	}
	
		ul.linkList li img { /* in case there is a graphic bullet added inline */
			display:inline;
			margin-right:8px;
			vertical-align:middle;
		}


dt {
	font-size:12px;
	font-weight:normal;
	margin:0 0 6px 0;
	line-height:normal;
	padding:0;
}

dd {
	font-size:11px;
	font-weight:normal;
	margin:0 0 14px 0;
	line-height:normal;
	padding:0;
}



.clearMe {
	clear:both;
	line-height:1px;
}

