/**********************************************************************************************

	CSS on Sails
	Title: Website
	Author: XHTMLized
	Date: March 2008 

***********************************************************************************************

		
	1. BASE
			1.1 Reset
			1.2 Default styles
			1.3 Basic styles
	
	2. LAYOUT
			2.1 Header
			2.2 Content
			2.3 Sidebar
			2.4 Footer
		

***********************************************************************************************/


/* 1. BASE
-----------------------------------------------------------------------------------------------
===============================================================================================*/	



/* 1.1	Reset
-----------------------------------------------------------------------------------------------*/	


	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	
	body {
		line-height: 1;
	}
	
	ol, ul {
		list-style: none;
	}
	
	blockquote, q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
	
	:focus {
		outline: 0;
	}
	
	ins {
		text-decoration: none;
	}
	
	del {
		text-decoration: line-through;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}


/* 1.2	Default styles
-----------------------------------------------------------------------------------------------*/	

	body {
		background: #686B69;
		font: 62.5% Helvetica, Arial, sans-serif;
		text-align: center;
		}

	hr { 
		display: none;
	}
			
	strong {
		font-weight: bold;
	}
			
	em {
		font-style: italic;
	}
		
	abbr, acronym {
		border-bottom: 1px dotted #999; 
		cursor: help;
	}
	
	input, textarea, select {
		font: 1.2em Helvetica, Arial, sans-serif;
	}

	a {
		color: #95BD1E;
		text-decoration: none;
	}
	
	a:hover, 
	a:active {
		color: #ff6600;
		text-decoration: none;
	}
	

/* 1.3	Basic styles
-----------------------------------------------------------------------------------------------*/	

	.hide {
		display: none;
	}
	

/* 2. LAYOUT
-----------------------------------------------------------------------------------------------
===============================================================================================*/	

	
	.container {
		width: 890px;
		position: relative;
		margin: 0 auto;
		text-align: left;
	}
	
	#header {
		width: 850px;
		height: 220px;
		padding: 0 20px;
	}
	
	#content-wrapper {
		padding: 0px 45px 30px 45px;
		width: 800px;
		overflow: hidden;
	}
	
	#content {
		width: 520px; 
		padding: 0px 20px 0 20px;
		float: left;
	}
		
	#sidebar {
		width: 180px;
		padding: 20px 20px 0 20px;
		float: right; 
	}
	
	#footer {
		clear: both;
		overflow: hidden;
		width: 850px;
		padding: 53px 20px 30px 20px;
	}
		

/* 2.1	Header
-----------------------------------------------------------------------------------------------*/	
	#header {
		background-image: url(../images/header_bg.jpg);
		background-repeat: no-repeat;
		background-position: 0px 23px;
	}

	#header h1, 
	#header h1 span,
	#header .logo a,
	#header .logo span {
		display: block;
		width: 292px;
		height: 37px;
		overflow: hidden;
		cursor: pointer;
	}

	#header h1,
	#header .logo {
		position: absolute;
		top: 72px;
		left: 54px;
		text-indent:-9999px;
	}
		
	#header h1 span,
	#header .logo span {	
		position: absolute; 
		top: 0;
		left: 0;
		z-index: 10;
		background: url(../images/logo.png) no-repeat;
	}
	
	#accessibility-links {
		position: absolute;
		left: -1000em;
		text-align: left;
	}
	
	.seattle_support {
		position: absolute;
		/* float:left; */
		font-size: 1.2em;
		color: #F97635;
		text-transform: uppercase;
		font-weight: bold;
		/* line-height: 29px; */
		padding: 7px 0;
		margin-top: 24px;
		height: 14px;
		background: #fff;
	}
	.seattle_support p {
		width: 300px;
		position: absolute;
		bottom: 15px;
	}
	
	#content-wrapper {
		background: url(../images/body_bg.png) repeat-y top left;
	}	
	
	#sister_site_tab {
		position: relative;
		float:right;
		margin-top: 14px;
		height: 29px;
		overflow: hidden;
		z-index: 10;
	}
		#sister_site_tab li {
			float:left;
			display:block;
		}
		#sister_site_tab li a {
			color: #C6DB89;
			text-decoration: none;
			background: url(../images/sister_tab_b.png) no-repeat top right;
			font-size: 1.2em;
			font-weight: bold;
			display:block;
			line-height: 29px;
			padding-right: 8px;
		}
		#sister_site_tab li a:hover, #sister_site_tab li.active a  {
			color: #FFF;
		}
		
		#sister_site_tab li.active a {
			background-position: right -29px;
		}
		#sister_site_tab li.active a span{
			background-position: left -29px;
		}
		
		#sister_site_tab li a span {
			display:block;
			line-height: 29px;
			background: url(../images/sister_tab_f.png) no-repeat top left;
			padding-left: 10px;
		}
	
	#navigation {
		position: absolute;
		top: 144px;
		left: 54px;
	}
		
/* 2.2	Content
-----------------------------------------------------------------------------------------------*/	
	#content {
		background:#FFFFFF;
		font-size: 1.2em;
		line-height: 1.5em;
		color: #252723;
	}

		#content p {
			padding-bottom: 1.0em;
		}
		
		#content .alignleft {
			float:left;
			margin: 0 10px 0 0;
		}
		
		#content .intro {
			font-size: 1.17em;
			line-height: 1.5em;
		}


/*		#content a {
			border-bottom: 1px solid #95BD1E;
		}*/
		
		#content a:hover  {
			border-bottom: 1px solid #FF6600;
		}
		
		#content h2 {
			font-size: 2.0em;
			color: #686B69;
			line-height: 1.4em;
			padding-bottom: 8px;
			font-weight: normal;
		}

/* 2.3	Sidebar
-----------------------------------------------------------------------------------------------*/	
	#sidebar {
		background: #F0FEC8;
	}
		#sidebar blockquote {
			font-size: 1.4em;
			line-height: 1.5em;
			color: #666;
		}
		#sidebar cite {
			font-size: 1.1em;
			color: #666;
			padding: 10px 0 10px 40px;
			display: block;
			font-style: normal;
		}
		
/* 2.4	Footer
-----------------------------------------------------------------------------------------------*/	
	#footer {
		background: url(../images/footer_bg.jpg) no-repeat 0px -10px;
	}
	
		#footer .mcn {
			float:right;
		}
		
		#footer .footslogan {
			color: #F97635;
			font-weight: bold;
			font-size: 1.2em;
			line-height: 1.5em;
		}
		#footer .footnote {
			color: #B2B0A6;
			font-weight: bold;
			font-size: 1.1em;
			line-height: 1.5em;
		}
		
		.vcard {
			color: #B2B0A6;
			font-weight: bold;
			font-size: 1.1em;
			line-height: 1.5em;
		}
		
		.vcard div, .vcard span {display: inline;}
		.organization-name, .tel, .email, .street-address { border-right: 1px solid #B2B0A6; padding-right: 5px; margin-right: 5px;} 
		
		
