/* colors
 * 
 * 	dark blue 		#1f716f
 *  orange			#e7ab00
 *  light teal		#8096a1
 *  lighter teal	#92bab9
 *  lightest teal	#deeaea
 *  very light teal	#f0f6f6
 *  light gray		#8fb8b7
 * 
 */

/* reset formatting */

	body * {position: relative;}
	html, body { width: 100%; height: 100%; }
	html, body, table, img {	border:0;	margin:0;	padding:0;}
	p, h1, h2, h3, h4, h5, h6 {	margin:0;	padding:0;	font-weight:normal; font-size: 100%; line-height: 130%;}
	form {	margin:0;	padding:0;	display:inline;}
	a {text-decoration:none;}
	td { padding: 0; vertical-align: top;}
	ul,ol {margin:0; padding:0; position:relative;}
	li {margin:0; padding:0; position: relative;}


/* common formatting shortcuts */
 
	small {	font-size:0.85em;}
	sup {	position:relative;	bottom:0.3em;	vertical-align:baseline;}
	sub {	position:relative;	bottom:-0.2em;	vertical-align:baseline;}
	acronym, abbr {	cursor:help;	letter-spacing:1px;	border-bottom:1px dashed;} 
	.clear, .clear-hidden         { clear:both; }
	.clear-hidden	{ font-size: 0em; height: 0px; overflow: hidden;}
	.clear-after:after	{content: "."; display: block; height: 0; clear: both; visibility: hidden;}
	.float-left    { float:left; }
	.float-right   { float:right; }
	.text-left     { text-align:left; }
	.text-right    { text-align:right; }
	.text-center   { text-align:center; }
	.text-justify  { text-align:justify; }
	.bold          { font-weight:bold; }
	.italic        { font-style:italic; }
	.underline     { border-bottom:1px solid; }
	.highlight     { background:#ffc; } 
	.nopadding     { padding:0; }
	.noindent      { margin-left:0;padding-left:0; }
	.nobullet      { list-style:none;list-style-image:none; }
	.hidden		   { display: none;}

	
/*
 *   typography   *****************************************************************
 */
 
 	html,
	body,
	input,
	select,
	textarea
	{
		font-family: arial, helvetica, sans-serif;
		font-size: 90%;	
		line-height: 130%;
	}


/* default styles */

	/* links */
 
	a
	{
		color: #1f716f;
		text-decoration: underline;		
	} 
	a:link /* not yet visited */
	{}
	a:visited
	{}
	a:focus /* received cursor focus */
	{}
	a:hover
	{
		color: #e7ab00;
		text-decoration: none;
	}
	a:active /* user activates link */
	{}
	 
	/* unordered list */
	ul
	{
		margin: 1em 0 1em 1em;
		list-style: disc;
		padding-left: 1em;
	}
	/* order list */
	ol
	{
		margin: 1em 0 1em 1em;
		padding-left: 1em;
		list-style: decimal;
	}
	/* list items */
	li
	{
		margin: 0 0 .5em 2em;
		padding: 0;
	}
	  
/* 
 *   page blocks    ******************************************************
 */


	body
	{
		background-color: #1f716f;
		margin: 0;
	}
	
/* page wrapper */
	
	.page
	{
		width: 800px;
		position: relative;
		margin: 0 auto;
	}	
	.wrapper-top
	{
		background-image: url(images/bg-top.png);
		background-position: bottom center;
		background-repeat: repeat-y;
		height: 20px;
	}
	.wrapper-middle
	{
		background-image: url(images/bg-middle-solid.png);
		background-position: top center;
		background-repeat: repeat-y;
	}
	.wrapper-middle .page
	{
		background: #fff;
	}
	.wrapper-bottom
	{
		background-image: url(images/bg-bottom.png);
		background-position: top center;
		background-repeat: no-repeat;;
		height: 60px;
	}
	
/* branding */

	.branding
	{
		width: 230px; 
		top: 0px;
		left: 0px;
		position: absolute; 
		height: 90px;
		background-color: #e7ab00;
	}
	.branding h2
	{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		display: block;
	}
	.branding a
	{
		width: 100%;
		height: 100%;
		display: block;
		background-image: url(images/branding.png);
		background-position: top left;
		background-repeat: no-repeat;
		font-size: 0px;
		text-indent: -9999px;
	}
		

/* main nav */

	.nav
	{
		background-color: #fff;
		position: absolute;
		top: 90px;
		left: 0px;
		width: 230px;
		height: 245px;
	}
	
	/* hide heading */
	.nav h2
	{
		display: none;
	}
	.nav ul
	{
		margin: 21px 0 0 0;
		padding: 0;
		list-style: none;
	}
	.nav li
	{
		position: relative;
		margin: 5px 10px 14px 30px;
		font-size: 140%;
		text-transform: uppercase;
	}
	.nav a,
	.nav a:visited
	{
		text-decoration: none;
		color: #8096a1;
		background-image: url(images/bullet-nav.png);
		background-repeat: no-repeat;
		background-position: 0px 1px;
		padding: 0 0 0 30px;
	}
	
	/* link hover */
	.nav a:hover
	{
		color: #e7ab00;
	}

	/* selected link */
	.nav li.active
	{
	}
	.nav li.active a,
	.nav li.active a:visited,
	.nav li.active a:hover
	{
		color: #e7ab00;
	}
	
/*
** content area
*/

	.content
	{
		background-image: url(images/bg-content.png);
		background-position: 0px 18px;
		background-repeat: no-repeat;
		padding: 15px 30px;
		width: 510px;
		float: right;
		color: #8096a1;
		margin-top: 418px;
	}
	.content h1
	{
		margin: 0 0 .25em 0;
		font-weight: normal;
		font-style: normal;
		font-size: 200%;
		letter-spacing: -1px;
		text-transform: uppercase;
		line-height: 110%;
		color: #1f716f;
	}
	.content h2
	{
		margin: .5em 0 .5em 0;
		font-weight: normal;
		font-size: 150%;
		line-height: 120%;
		color: #e7ab00;
		clear: left;
	}
	.content h3
	{
		margin: 0 0 .5em 0;
		padding-top: .25em;
		font-weight: bold;
		font-size: 120%;
		line-height: 120%;
	}
	.content p
	{
		margin: 0 0 .75em 0;
		line-height: 140%;
	}
	
	/* indented elements */
	.content p,
	.content h3,
	.content blockquote
	{
	}
	
	/* inline content */
	
	.content .inline-left
	{
		float: left;
		margin: 0 10px 10px 0;
	}
	.content .inline-right
	{
		float: right;
		margin: 0 0 10px 10px;
	}
	
	/* simple table */
	
	dl.simple-table 
	{
		margin-left: 20px;
	}
	dl.simple-table dt
	{
		width: 60px;
		float: left;
	}
	dl.simple-table dd
	{
		margin-bottom: 10px;
	}
	
	/* lists */
	
	.content ul
	{
		padding: 0;
		margin: 1em;
	}
	.content ul li
	{
		background:transparent url(images/bullet-content.png) no-repeat scroll 0px 2px;
		list-style-type:none;
		margin:0pt 0pt 1em 0em;
		padding:0pt 0pt 0pt 20px;
	}
	
	/* read-more links */
	a.read-more-link
	{
		padding-right: 14px;
		background-image: url(images/arrow-down.png);
		background-position: right 4px;
		background-repeat: no-repeat;
	}
	/* content styles */
	
	.byline
	{
		font-style: italic;
		font-size: 90%;
		color: #8fb8b7;
	}
	img.bio
	{
		float: left;
		margin: 0 10px 10px 0;
	}
	
/* top image */
	.top-pic
	{
		height: 335px;
		width: 570px;
		position: absolute;
		top: 0px;
		right: 0px;
	}

/* slogan */
	.slogan
	{
		position: absolute;
		top: 335px;
		width: 570px;
		right: 0px;
		height: 83px;
		background-image: url(images/slogan.png);
		background-position: top left;
		background-repeat: no-repeat;
	}
	.slogan p
	{
		display: none;
	}


/* contact info block */

	.contact-info
	{
		width: 230px;
		height: 83px;
		background-color: #8fb8b7;
		position: absolute;
		top: 335px;
		left: 0px;
	}
	.contact-info p,
	.contact-info a,
	.contact-info a:visited
	{
		color: #f0f6f6;
	}
	.contact-info .phone
	{
		background:transparent url(images/bullet-phone.png) no-repeat scroll 0px 5px;
		font-size:140%;
		margin:18px 0pt 0pt 0;
		padding:0pt 0pt 0pt 0;
	}
	.contact-info .email
	{
		background:transparent url(images/bullet-email.png) no-repeat scroll 0px 5px;
		margin:2px 0pt 0pt 20px;
		padding:0;		
	}
	.contact-info .phone,
	.contact-info .email
	{
		padding-left: 28px;
		margin-left: 20px;
	}
	.contact-info a
	{
		text-decoration: none;
	}
	.contact-info a:hover
	{
		color: #fff;
		text-decoration: underline;
	}
	
	/* Google Maps on contact page */

	.locations .map
	{
		margin: 15px 0 15px 25px;
	}
	.locations iframe
	{
		border: solid 1px #8096a1;
	}
	
/* supplemental sidebar info block */

	.content-supp
	{
		width: 230px;
		background-color: #fff;
		float: left;
		margin-top: 418px;
	}
	.content-supp h2
	{
		display: none;
	}
	.content-supp img
	{
		margin: 10px 0 0 22px;
	}
	.content-supp a,
	.content-supp a:visited
	{
		color: #8096a1;
	}
	.content-supp ul
	{
		margin: 15px 0 25px 0;
		padding: 0;
		list-style:none;
	}
	.content-supp li
	{
		margin: 0 0 10px 25px;
	}
	.content-supp a,
	.content-supp a:visited
	{
		padding: 0 0 0 20px;
		display: block;
		background: url(images/bullet-supp.png) 0px 2px no-repeat;
		text-decoration: none;
	}
	.content-supp a:hover
	{
		color: #1f716f;
		text-decoration: underline;
	}
	

/* footer wrapper */
	.wrapper-footer
	{
		clear: both;
		position: relative;
	}
	
	.wrapper-footer,
	.site-info,
	.nav-quick
	{
		height: 70px;
	}
	
/* nav bottom links */

	.nav-quick
	{
		width: 570px;
		background-color: #deeaea;
		position: absolute;
		right: 0px;
		top: 0px;
 	}
	.nav-quick h2
	{
		display: none;
	}
	.nav-quick a,
	.nav-quick a:visited
	{
		color: #8fb8b7;
		text-decoration: none 
	}
	.nav-quick a:hover,
	.nav-quick .active a,
	.nav-quick .active a:visited
	{
		color: #1f716f;
	}
	.nav-quick ul
	{
		list-style: none;
		margin: 25px 0 0 25px;
		padding: 0;
	}
	.nav-quick li
	{
		list-style-type: none;
		float: left;
		margin: 0 5px 0 0;
		padding: 0;
	}
	.nav-quick span
	{
		padding: 0 10px;
		color: #92bab9;
	}
	

	
/* site info */

	.site-info
	{
		background-color: #8fb8b7;
		width: 230px;
		clear: both;
		display: block;
		position: absolute;
		left: 0px;
		top: 0px;
		height: 100%;
	}
	
	.site-info p
	{
		color: #deeaea;
		margin: 17px 0 0 15px;
	}
	.site-info a,
	.site-info a:visited
	{
		text-decoration: underline;
		color: #deeaea;
	}
	.site-info a:hover
	{
		text-decoration: none;
		color: #fff;
	}
	.site-info h2
	{
		display: none;
	}

/* footer */

	/* Phil Sandifur */	
	#phil
	{
		position: absolute;
		top: 8px;
		right: 7px;
		width: 148px;
		height: 30px;
	}
	#phil a
	{
		display: block;
		height: 100%;
		width: 100%;
		background: url(images/PhilSandifur.gif) top left no-repeat;
		font-size: 0px;
		text-indent: -9999px;
	}
	
	

