/* CSS Document */

/*##################### Basic Rules ####################*/

html, body {
	background-color:#999933;
}


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:16px;
}

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:#2761b3;
	text-decoration:none;
	padding:2px 0; /* ensures line-height of 14px doesn't interrupt multi-line links */
}

	a:hover {
		text-decoration:underline;
	}

h1 { 
	font-size:17px;
	font-weight:bold;
	margin:0 0 12px 0;
	color:#003580;
	line-height:normal;
}

h2 { 
	font-size:12px;
	font-weight:bold;
	margin:0 0 6px 0;
	color:#003580;
}

h3 { 
	font-size:11px;
	font-weight:bold;
	margin:0 0 3px 0;
	color:#000;
}

h4 { 
	font-size:11px;
	font-weight:bold;
	margin:0 0 3px 0;
	color:#000;
}
h5 { 
	font-size:12px;
	font-weight:bold;
	margin:0;
	color:#003580;
}

#container {
	width:896px;
	margin:50px auto 0 auto;
}




/*#################### content ####################*/


#zeBorder {
	border:50px solid #cc6600;
}

#contentTable {
	border-collapse:collapse;
}

	#contentTable td {
		border:10px solid #ffffcc;
		color:#ffcc99;
		background-color:#996600;
	}
	
		#contentTable td.content {
			padding:18px 30px 15px 30px;
			font-size:20px;
		}
		
		#contentTable td.content a {
			color:#ffcc99;
			font-size:20px;
		}
		
			#contentTable td.content a:hover {
				text-decoration:none;
				color:#FFFFCC;
			}
	
	#contentTable td.content span.title {
		color:#ffcc99;
		font-size:38px;
		padding:0;
	}
	
		#contentTable td.content span.title a {
			font-size:38px;
		}
	
	#contentTable td.content span {
		padding:0 0 0 50px;
	}



#contentTable .profileTable {
	height:auto;
	border:none;
	width:781px;
}

	#contentTable .profileTable th,
	#contentTable .profileTable td {
		vertical-align:top;
		border:none;
	}
	
	#contentTable .profileTable th img {
		margin:10px;
		display:block;
	}
	
	#contentTable .profileTable td {
		padding:10px;
		
	}
	
		#contentTable .profileTable td p {
			color:#ffcc99;
			font-size:12px;
			margin-bottom:10px;
		}
		
		#contentTable .profileTable td p.lastP {
			margin-bottom:0;
		}
		
		



#profilePage .profile,
#contactPage .contact,
#photosPage .photos {
	color:#FFFFCC;
}




/*#################### 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(../_img/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 3px 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;
		}





/*#################### Misc. ####################*/





.lettrine { /* image at the beginning of a paragraph */
	float:left;
	padding:0 10px 10px 0;
}


.dividingLine {
    border-bottom:1px solid #ffcc99;
    line-height:1px;
	margin:0 0 15px 0;
}


.clearMe {
	clear:both;
	line-height:1px;
}

sup {
	vertical-align:text-top;
	font-size:10px;
}

sub {
	vertical-align:text-bottom;
	font-size:10px;
}

noscript p {
	color:#d80406;
	margin:0 0 14px 0;
}

strong {
	font-weight:bold;
}

em {
	font-style:italic;
}

.noFlash {
	border:4px double #d80406;
	width:auto;
	padding:10px;
}


.imgLoad { /* used if preloading images without body onload call */
	position:absolute;
	left:-16000px;
}

.nowrapMe {
	white-space:nowrap;
}

.pageBreakMe {
	page-break-before: always;
}

.finishMe {
	background-color:yellow;
	border:1px solid red;
	padding:0px;
	font-weight:normal;
	font-size:11px;
}


