/*************************************************************************
	@imports
*************************************************************************/
	@import url("development.css");
	@import url("pagination.css");
	@import url("navigation.css");

	
/*************************************************************************
	@basic_tags
*************************************************************************/

	/*** @body ***/
		body, td, form, select, option, text, input, textarea { font: x-small/1.6 arial, helvetica, sans-serif; }
		body
		{
			background: #EEE7E7 url(../img/bg_body.gif) center -7px repeat;
			margin: 0;
			padding: 0;
			text-align: center;
		}
	
	/*** @navAccessibility ***/
		body ul#navAccessibility
		{
			margin: 0;
			font-size: 1px;
			line-height: 0px;
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		body ul#navAccessibility li
		{
			height: 1px;
		}

	/********************/
	/*** @header_tags ***/
	/********************/
		h1, h2, h3, h4, h5, h6
		{
			margin: 0 0 .2em 0;
			padding: 0;
			line-height: 1.1;
		}
		
		h1 { font-size: 2em; }
		h2 { font-size: 1.6em; }
		h3 { font-size: 1.4em; }
		h4 { font-size: 1.34em; }
		h5 { font-size:   1em; }
		h6 { font-size:  .9em; }
		
	/**************/
	/*** @forms ***/
	/**************/
		form
		{
			margin: 1em 0;
			padding: 0;
			font-size: 1em;
		}
		
		form div.actionBtns
		{
			margin-top: 1em;
			padding-top: 0;
			display: table;
			clear: left;
		}

		form button
		{
			background-color: transparent;
			margin: 0;
			padding: 0;
			border: none;
		}
		
		form button:focus
		{
			margin: 0;
			padding:0;
		}
		
		form button.btnSubmit, form button.btnSubmit:focus
		{
			background-color: #8E181B;
			padding: .3em;/* set to 0 for ie's */
			border: none;
			color: white;
		}
		
		form button.reset, form button.reset:focus
		{
			background-color: #C5BBBA;
			margin-right: 1em;
			padding: .3em;
			border: none;
			color: white;
		}
		
		form button.btnSubmit:focus
		{
			background-color: red;
			color: white;
		}
		
		form button.reset:focus
		{
			background-color: red;
			color: white;
		}
		
		form div.group ul
		{
			margin: 0;
			padding: 0;
			display: inline;
			list-style: none;
			float: left; /* for ie */
		}

		form div.group li
		{
			margin: 0;
			padding: 0 1em 0 0;
			display: inline;
			list-style: none;
			float: left;
		}
		
		form div.group label
		{
			margin: 0;
			padding-top: .5em;
			padding-bottom: .5em;
			width: auto;
			float: left;
		}
		
		form div.group li label
		{
			padding-top: .8em;
			padding-bottom: .8em;
		}
		
		form div.group span.title
		{
			padding-top: .8em;
		}
		
		form fieldset
		{
			margin-bottom: 2em;
			padding-left: 1em;
			padding-right: 1em;
			border: 1px solid silver;
		}

		form fieldset ul
		{
			margin: 0;
			padding: 0;
			list-style: none;
		}
		
		form fieldset li
		{
			margin: 0;
			padding: 0;
			border: none;
			list-style: none;
		}
		
		form fieldset li label
		{
			padding-bottom: 0;
			width: 100%;
			display: block;
		}
		
		/* for single line searches */
			form fieldset.containerKeyordSearch label
			{
				margin-right: 1em;
				margin-top: .5em;
				width: auto;
				float: left;
			}
			
			form fieldset.containerKeyordSearch label span
			{
				padding-right: 1em;
				width: auto;
			}
			
			form fieldset.containerKeyordSearch button
			{
				margin-top: 1em;
				float: left;
			}

		input
		{
			margin-bottom: .3em;
			vertical-align: bottom;
			font-size: 1em;
		}
		
		/* can't include this in IE stylesheet as IE7 needs it also */
		input.txtFld:focus, select:focus, textarea:focus
		{
			border: 1px solid red;
		}

		input.checkbox
		{
			width: auto;
		}

		input.radio
		{
			float: none;
		}
	
		input.txtFld
		{
			border: 1px solid black;		
			line-height: 1.2;
			width: 300px;
			font-size: 1.1em;
		}
		
		label
		{
			margin: 0;
			padding: .5em 0;
			display: table;
			width: 100%;
			float: left;
			clear: left;
			cursor: pointer;
		}

		label select
		{
			float: left;
		}
		
		label span, form div.group span
		{
			padding-top: .2em;
			display: block;
			width: 12em;
			float: left;
		}
		
		label.radio span, label.checkbox span
		{
			padding-top: 0;
			display: inline;
			width: auto;
			float: none;
		}	
		
		legend
		{
		}
		
		option
		{
			font-size: 1em;
		}
			
		select
		{
			margin-right: 1em;
			width: auto;
			font-size: 1em;
			line-height: 1.2;
		}
		
		textarea
		{
			border: 1px solid #666;
			font-size: 1em;
			height: 9em;
			width: 98%;
			clear: left;
		}

		form ul.valueList
		{
			border-right: none;
			height: 10em;
			overflow: auto;
		}
		
	/**************/
	/*** @links ***/
	/**************/
		a, a:link, a:visited, a:hover, a:active
		{
			color: #5281e0;
			text-decoration: none;
		}
		
		a:hover { text-decoration: underline; }
		a.persist { font-weight: bold; }
		a.offsite {  }
		
		a img { border: none; }
		
	/**************/
	/*** @lists ***/
	/**************/
		dl { }
		dt { }
		dd { }
		
		ul, ol {
			margin: 1em 0 1em 1.8em;
			padding: 0;
		}
		
		ul ul, ol ol
		{
			margin-top: .5em;
			margin-bottom: .5em;
		}
		
		ul li
		{
			margin: 0;
			padding: 0;
			list-style: square;
		}
		
		/* nested list styles */
			ol, ol li { list-style: decimal; }
			ol ol, ol ol li { list-style: upper-alpha; }
			ol ol ol, ol ol ol li { list-style: upper-roman; }
			ol ol ol ol, ol ol ol ol li { list-style: lower-roman; }
			ol ol ol ol ol, ol ol ol ol ol li { list-style: lower-alpha; }
			

	/**************/
	/*** @other ***/
	/**************/
		img
		{
			margin: 0;
			border: none;
		}
		
		div
		{
			margin: 0;
			padding: 0;
		}
		
		object { }

	
	/***************/
	/*** @tables ***/
	/***************/
		table { }
		caption { }
		td { }
		tr { }
		tbody { }
		tbody tr.rowStyle1 { }
		tbody tr.rowStyle2 { }
		thead { }
		thead th { }
		tfoot { }
		tfoot td { }
			
	/*******************/
	/*** @text_style ***/
	/*******************/
		blockquote { margin: 1em 2em; }
		blockquote p { }
		
		p
		{
			margin: 0 0 1em 0;
			padding: 0;
		}

		sup { }
		
		*.date { text-transform: uppercase; }
		*.count { }
		*.important { color: #990000; }
		*.required { color: #990000; }
		*.metaD { color: #666; }
			
	/**************/	
	/*** @vCard ***/
	/**************/
		div.vcard { }

		
/*************************************************************************
	@layout_elements
*************************************************************************/
	.clearFix
	{
		font-size: 1px;
		line-height: 0px;
		clear: both;
	}
	
	.comment { }
	.indent { margin-left: 1em; }
	.outdent { margin-left: -1em; }
	
	.alignLeft { text-align: left; }
	
	.alignRight { text-align: right; }
	a.alignRight { display: block; }

	.alignCenter { text-align: center; }
		
	/***********************/
	/*** @containerMedia ***/
	/***********************/
		div.containerMedia { padding-bottom: 1em; }
		div.containerMedia img { }
		
		div.containerMedia.alignLeft
		{
			padding-right: 1em;
			float: left;
			clear: left;
		}
		
		div.containerMedia.alignRight
		{
			padding-left: 1em;
			float: right;
			clear: right;
		}
		
		div.containerMedia.alignCenter
		{
			padding-left: 0;
			padding-right: 0;
		}
	
	
	/****************/
	/*** @columns ***/
	/****************/
		div.containerCols { width: 100%; display: table; }

		div.column
		{
			margin-right: 5%;
			margin-left: 5%;
			width: 40%;/* assume 2 coumns */
			float: left;
		}
		
		div.containerCols div.first { margin-left: 0; }
		div.containerCols div.last { margin-right: 0; }
		
		/* containerCols3 */
		div.containerCols3 div.column { width: 26.6%; } /* assume there is a a first and last colum specified, so there are 10% gutters between each column, leaving 80%/3 */
		
		/* containerCols3 */
		div.containerCols4 div.column { width: 17.5%; } /* assume there is a a first and last colum specified, so there are 10% gutters between each column, leaving 80%/3 */
		
/*************************************************************************
  @zones	
*************************************************************************/
	div#wrapper
	{
		background-color: #FFF;
		font-size: 1.2em;/* font size adjustment for body tag */
		text-align: left;
		display: block;
		margin: 0 auto;
		width: 900px;
	}
	
	div#zoneHeader
	{
		background: #FFF url(../img/bg_zoneHeader.gif) left bottom no-repeat;
		display: block;
		height: 140px;
		position: relative;
	}
	
	div#zoneMain
	{
		background: #FFF url(../img/bg_zoneMain.gif) left top repeat-y;
		display: block;
	}
	
	div#zone1
	{
		display: block;
		float: left;
		width: 180px;
	}
	
	div#zone2
	{
		display: block;
		float: left;
		margin-left: 20px;
		width: 453px;
	}
	
	div#zone3
	{
		color: #FFF;
		display: block;
		float: left;
		margin-left: 20px;
		width: 200px;
	}
		
	div#zoneFooter
	{
		background: #8e181b url(../img/bg_zoneFooter.gif) left top no-repeat;
		display: block;
		font-size: .9em;
		color: #FFF;
		padding: 75px 25px 10px 25px;
	}
	

/*************************************************************************
	@zoneHeader
*************************************************************************/
	
	/*********************/
	/*** @zoneBranding ***/
	/*********************/
		div#zoneBranding { float: left; }
		
		div#zoneBranding h1, div#zoneBranding strong { }
		
		div#zoneBranding h1 a, div#zoneBranding strong a
		{
			background: #FFF url(../img/logo.gif) left top no-repeat;
			display: block;
			height: 47px;
			position: relative;
			top: 23px;
			left: 33px;
			width: 220px;
		}
		
		/* set the image dimensions for print width, then hide */
		div#zoneBranding h1 img, div#zoneBranding strong img
		{
			height: .5in;
			display: none;
		}
		
		/* This is typically the tagline */
		div#zoneBranding em { }
		
			
	/****************/
	/*** @zoneNav ***/
	/****************/
		div#zoneNav
		{ 
			float: right;
			display: block;
		}


	/***********************/
	/*** @areaBreadcrumb ***/
	/***********************/
		div.areaBreadcrumb
		{
			padding-top: 27px; 
			font-size: .89em;
		}
		
		div.areaBreadcrumb ul
		{
			display: block;
			margin-left: 0;
			margin-right: 0;
			list-style: none;
		}
		
		div.areaBreadcrumb ul li { color: #B9ADAC; list-style: none; display: inline; }
		div.areaBreadcrumb ul ul { display: inline; margin: 0; }

		div.areaBreadcrumb ul li a { color: #B9ADAC; }
	
/*************************************************************************
	@zoneMain
*************************************************************************/
		span.contentImg
		{
		}

		
	/*****************/
	/*** @pageTools ***/
	/*****************/
		div.pageTools
		{
			font-size: 1em;
			padding: 10px;
		}
		
		div.pageTools ul
		{
			list-style: none;
			margin: 0;
			padding: 0;
		}
		
		div.pageTools ul li
		{
			background-position: left center;
			background-repeat: no-repeat;
			background-color: transparent;
			list-style: none;
			margin: 0;
			padding: 0 0 0 24px;
		}
		div.pageTools ul li.pdf	{ background-image:	url(../img/icon_pdf.gif); }
		div.pageTools ul li.audio	{ background-image:	url(../img/icon_audio.gif); background-position: 2px center }
		div.pageTools ul li.video	{ background-image:	url(../img/icon_video.gif); }
						
		div.pageTools ul li a
		{
			font-weight: normal;
			text-decoration: none;
		}
		div.pageTools ul li a:hover	{ text-decoration: underline; }

		
	/*************************/
	/*** @containerLanding ***/
	/*************************/
		div.containerLanding div.containerMedia.alignRight
		{
			padding-right: 1em;
			padding-left: 0;
			float: left;
			clear: left;
		}
		
	/**********************/
	/*** @containerList ***/
	/**********************/
		#zone2.containerList span.contentImg
		{
			float: left;
			margin: 4px 10px 0 0;
		}
		
	/**********************/
	/*** @containerShow ***/
	/**********************/
		#zone2.containerShow span.contentImg
		{
			margin: 0;
		}

		#zone2.containerShow h1
		{
			color: #444;
			font-size: 2.5em;
			font-weight: normal;
		}

		#zone2.containerShow h2
		{
			color: #5281E0;
			font-size: .9em;
		}

		

/*************************************************************************
	@zone2
*************************************************************************/

	/****************************/
	/*** @containerCntDetails ***/
	/****************************/
		div.containerCntDetails
		{
			margin-bottom: 25px;
		}
		
		div.containerCntDetails div.metaD {	}
		
	/**********************/
	/*** @pageFunctions ***/
	/**********************/
		ul.pageFunctions { }
		li.emailPage { }		
		
	/*********************/
	/*** @containerDoc ***/
	/*********************/
		div.containerDoc
		{
			display: table;
			margin-bottom: 1.7em;
			width: 100%;
		}

	/**************************/
	/*** @containerFeatured ***/
	/**************************/	
		div.containerFeatured { }
		
	/***********************/
	/*** @containerIntro ***/
	/***********************/
		/* typically section text, or similar */
		div.containerIntro
		{
			border-left: 2px dotted #CFC6C6;
			color: #AAA09F;
			display: block;
			font-size: .95em;
			line-height: 1.5em;
			margin-bottom: 2em;
			padding-left: 2em;
		}
		
	/*************************/
	/*** @containerPullout ***/
	/*************************/
		/* pulling out a quote of text (http://test.orgitecture.com/cwf/aboutus/aboutus_show.htm?doc_id=170265) */
		div.containerPullout { }
		div.containerPullout p { }
		
	/***************************/
	/*** @containerSearchSort **/
	/***************************/
		/* display set to go with pagination styles (http://test.orgitecture.com/cwf/publications/publications_list.htm) */
		div.containerSearchSort { }
		
	/*********************/
	/*** @navDirection ***/
	/*********************/
		/* naviagation for going between documents (http://test.orgitecture.com/cwf/chartcartcharts/chartcartcharts_show.htm?doc_id=246326&attrib_id=14468) */
		ul.navDirection { }
		ul.navDirection li { }
		ul.navDirection li.previous { }
		ul.navDirection li.next { }
		
	/*********************/
	/*** @sectionTitle ***/
	/*********************/
		h1.sectionTitle	{ }
		h1.sectionTitle span { }


		#zone2.containerList h1
		{
			color: #B9ADAC;
			font-size: 3.3em;
			font-weight: normal;
			letter-spacing: -.01em;
			margin-bottom: .5em;
		}
		
		#zone2.containerList h2
		{
			font-weight: normal;
		}
		
	/************************/
	/*** @areaAttachments ***/
	/************************/
		div.areaAttachments { }
		
	/***********************/
	/*** @areaSearchSite ***/
	/***********************/
		div#areaSearchSite{ }
		
	/****************/
	/*** @conMain ***/
	/****************/
		div.colMain
		{
			margin-right: 5%;
			float: left;
			width: 65%;
		}
		
	/**********************/
	/*** @conRelContent ***/
	/**********************/
		div.colRelContent
		{
			float: left;
			width: 30%;
		}
		
	/*************************/
	/*** @containerMultimedia ***/
	/*************************/
		div.containerMultimedia
		{
			border-bottom: 2px dotted #CFC6C6;
			float: left;
			margin: 4px 15px 1em 0;
		}
		
	/*****************/
	/*** @pageTools ***/
	/*****************/
		ul.pageTools
		{
			list-style: none;
			margin: 0;
			padding: 0;
		}
		

/*************************************************************************
	@zone3
*************************************************************************/
		#zone3 a
		{
			color: #8E181B;
		}
		
		#zone3 span.contentImg
		{
			float: left;
			margin: 4px 10px 0 0;
		}


	/***********************/
	/*** @containerGroup ***/
	/***********************/
		#zone3 div.containerGroup
		{
			margin-bottom: 1em;
		}

		#zone3 div.containerGroup h3
		{
			background: transparent url(../img/bg_zone3HeaderTop.gif) left top no-repeat;
			font-size: 1.1em;
			font-weight: bold;
			margin-bottom: 1em;
		}
		
		#zone3 div.containerGroup h3 span
		{
			background: transparent url(../img/bg_zone3HeaderBtm.gif) left bottom no-repeat;
			display: block;
			padding: .3em 15px .3em 25px;
    width: 173px;
}


		#zone3 div.containerGroup div.containerDoc
		{
			font-size: 1em;
			margin-bottom: 0;
			padding-bottom: 1.5em;
			padding-left: 25px;
			width: 170px;
		}
		
		#zone3 div.containerGroup div.containerDoc h4
		{
			font-size: 1.1em;
			line-height: 1.3em;
    color: #800600;
}
		
		/* These subssets require the "containerGroup" class first */
			/*** @catGroup ***/
				div.catGroup { }
				
			/*** @attribGroup ***/
				div.attribGroup { }



/*************************************************************************
	@zoneFooter 
**************************************************************************/
	div#zoneFooter a { color: #FFF;	}
	div#zoneFooter p
	{
		margin-bottom: 0;
	}