/* 

This CSS stylesheet deals purely with the graphical styles of content block elements.

For phyiscal layout of the subpages, see see layout.css 

*/

/* NOTE THAT THE FIXED FONT SIZE AND FAMILY ARE DEFINED IN sp_layout.css */

/* general link styles  */

a:link {
	color:#293F6F;
	font-weight:bold;
	text-decoration:underline;
}

a:visited {
	color:#069;
	font-weight:bold;
	text-decoration:underline;
}

a:hover {
	color:#205648;
	font-weight:bold;
	text-decoration:underline;
	font-style:none;
}

.hidden {
position:absolute;
left:0px;
top:-500px;
width:1px;
height:1px;
overflow:hidden;
} 

/* content block styles.  Note that all styles are based on their specific divs to give them independent control.  Yes, it's a pain in the butt, but it allows for greater independent change to individual sections... */

#content h1 {  /* h1's have no size or color attached because the page headers are graphics */
text-align:left;
padding:0px 0px 0px 0px;
background-color:#ffffff
}

#content h2 { 
text-align:left;
padding:10px 20px 10px 20px;
font-size:120%;
color:#000000;
font-weight:bold;
}

#content h2.contact { 
text-align:left;
padding:0px 20px 3px 20px;
font-size:120%;
color:#000000;
font-weight:bold;
}

#content p {
padding:0px 20px 10px 20px;
}

#content p.home {
padding:0px 20px 10px 20px;
font-size:115%;
}

#content p.quote {
padding:0px 20px 10px 20px;
font-style:italic;
}

#content address {
padding:0px 20px 10px 20px;
font-style:normal;
}

/* these three styles create the colored disc for unordered lists and the bold colored number for ordered lists; ul/ol defines the color of the disc, spans surrounding the li content return the li text black. */

#content ul { 
padding:0px 30px 15px 40px;
color:#28313e;
list-style-type:disc;
}

#content ol { 
padding:0px 30px 15px 45px;
color:#ffffff;
font-weight:bold;
}

#content li span{ 
text-align:left;
font-size:100%;
font-weight:normal;
color:#000000;
}

/* footer styles */

#footer p {
text-align:right;
font-size:90%;
color:#000000;
padding-right:5px;
}

