.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */


body
{
	margin: 0px;
	padding: 0px;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size:0.78em;
	background-color: #E5E5E5;
	text-align: center;
	color: #333333;
	vertical-align: top;
}

/* TEXT  #######################################################
###########################################################************/
h1, h2, h3, h4, h5, h6 {
	color:#004800;
}

/*Typographics styles adapted from http://www.thenoodleincident.com/tutorials/typography/ */
h1 {	margin-top:0.5em;	font-size: 1.7em;	font-weight: bold;} 
h2 {	margin-top:0em;	font-size: 1.3em;	font-weight: bold;}
h3 {	margin: 0em 0;	font-size: 1.2em;	font-weight: bold;}
h4 {	margin: 0.1em 0;	font-size: 1.1em;	font-weight: bold;}
h5 {	margin: 0.1em 0;	font-size: 1.0em;	font-weight: bold;}
h6 {	margin: 0.1em 0;	font-size: 0.8em;	font-weight: bold;}
p{ text-align:left;}
.tiny {	color: #999999;	font-family: verdana, arial, helvetica, sans-serif;	font-size: 10px;	line-height: 16px;	font-style: italic;	font-weight: normal;}
	
.TitleText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	text-transform: uppercase;
	color: #CCCCCC;
}

/* HOLDS ALL DIVS AND SETS BROWSER WIDTH   #######################################################
###########################################################************/	
#wrapper{
	width: 957px; /* the auto margins (in conjunction with a width) center the page */
	background-color: #F3F3F3;
	border: 1px solid #000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	text-align:left;
	
}

* html .wrapper {   /*** IE5.x/win box model fix ***/
	width:auto;/* 992px;*/
	wid\th: auto;/*990px;*/
}
/*DIVIDER (Top of Header)  #######################################################
###########################################################************/
#Divider{
	width: auto;
	height:10px;
	background-color: #FFCC00;
	clear: both;
	
	margin-right: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	
}
/*MAIN HEADER  #######################################################
###########################################################************/
	
#header{
	width:auto;
	height:125px;
	padding:0px;
	top:0;
	clear: both;	
	background-color:#013F01;
	border-bottom:1px solid #FFCC00;
	text-align: left;
	z-index:2;
}

/* Banner LOGO HOLDER (IN HEADER)  #######################################################
###########################################################************/
	
#Banner{
	
	float: left;
	
	margin-left: 0px;
	margin-top: 23px;
	z-index:210;	
}
#Logo{
	
	width: 165px;
	height:125px;
	float: right;
	margin-right: 0px;
	margin-top: 0px;
	z-index:200;	
}

/*LEFT COLUMN + CONTENT CLASSES  #######################################################
###########################################################************/

#leftCol
{
	float: left;
	width: 160px; /* since this element is floated, a width must be given */
	/* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 5px;*/
	margin-top: 20px;
	/*margin-left: 0.5em;*/
	z-index: 4;
	/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:160px;	
	/* border: 1px solid #000; */
}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#leftCol {width:160px;}

.sidebarcontainer{
	margin-bottom:0.2em;
	padding:0px;
	text-align:left;
	font-size:0.9em;
	color:#666666;
	/*border:1px solid #000;*/
/*background-color:#ffffff;*/


}
/* \*/
* html .sidebarcontainer {height:1%;}
/* */


.sidebarcontainer a {color:#FF284E;}

.sidebarcontainer li
{
	
	list-style-type: none;
}



/*RIGHT COLUMN (IF USED) ######################################################
##########################################################################*/

#rightCol 
{
	float: right; 
	width: 170px; /* since this element is floated, a width must be given */
	/* background:  #dcdcdc; the background color will be displayed for the length of the content in the column, but no further */
	/* padding: 5px 0; top and bottom padding create visual space within this div */
	margin-top:20px;
	margin-right:0px;
/*	border: 1px solid #ff0000;*/ 
	
	
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:170px;
	}
/* Again, "be nice to Opera 5". */
body>#rightCol {width:170px;}


/* MIDDLE / MAIN COLUMN + CONTENT CLASSES #####################################
###########################################################************/
#mainContent
{width:580px;
	margin-top:20px;
 	margin-left: 170px;
	/*margin-right:180px; */
	text-align:left;
/*  border: 1px solid #000; */
 }

/*#mainContent a {color:#FF284E;}*/

#mainContent .container {
	/*margin:0.5em;*/
	/*padding: 1em;*/
	/*border:1px solid #333333;
	background-color:#E8E8E8;*/
	text-align:left;
	}

	/* \*/
* html #copy .container {height:1%;}
	/* */


#mainContent .teaser{
	margin-top:0;
	color:#990000;
	font-size:1.0em;
	font-weight:600;
	}


#mainContent fieldset {	
		margin:1em 0;
		padding:1em;
		border:1px solid #CCCCCC;
	}

#mainContent legend {
		color:#666666;
		background-color:#FFFFFF;
	}

* html #mainContent legend {padding:0.5em;}

/* ALTERNATIVE MIDDLE / MAIN COLUMN + CONTENT CLASSES #####################################
###########################################################************/
#mainContent2
{
	margin-top:1em;
 	margin-left: 0px; 
  
 }

#mainContent2 a {color:#FF284E;}

#mainContent2 .container {
	margin:0.5em;
	padding: 1em;
	border:1px solid #333333;
	background-color:#E8E8E8;
	text-align:left;
	}

	/* \*/
* html #copy .container {height:1%;}
	/* */


#mainContent2 .teaser{
		margin-top:0;
		color:#777777; 
		font-size:0.9em; 
		font-weight:normal;
	}




	
 /* IMAGES  #######################################################
###########################################################************/
.img{ border:#333333 1px solid;}
.imgfloatright {
	float:right;
	display:inline;
	margin: 0.25em 0 0.25em 1em;
}
.imgfloatleft {
	float:left;
	display:inline;
	border:#333333 1px solid;
	margin-top: 0.3em;
	margin-right: 0.5em;
	margin-bottom: 0.2em;
	margin-left: 0;
}

/* FOOTER #######################################################
###########################################################************/


#footer{
	/*border-top: 1px solid #000000;*/
	/*background-color: #999999;*/
	margin-top:20px;
	border-top:1px double #999999;
	padding-right:25px;
	width: auto;
	text-align: left;
	height: 25px;
	clear: both;
}

/* LINKS #######################################################
###########################################################************/
a 
{
	text-decoration: none;	
	font-weight: bold; 
	}

a:link 
{
	 
	color: #999999; 
}
a:visited
{
	color: #999999;
}
a:hover 
{

	color: #FF0000;	
}
a:active 
{
	
	color: #999999;
	
	}
/*ALTERNATIVE LINK*/
a.menu
{
	text-decoration: none;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 10pt;
	font-weight: bold;
	
}	

a.menu:link
{
	color: #FFFFFF;
	
}
a.menu:visited 
{
	color: #FFFF01;	
	
	}
a.menu:hover 
{
	color: gray;
	}
a.menu:active 
{
	color: #FFFFFF;	
	
	} 

/* TABLES #######################################################
###########################################################************/



table
{
	
	width:90%;
	
	

}
th
{
	border: 1px solid #333333;
	font-size:0.7em;
	font-weight:bold;
	color:#004800;
}
td
{
	border: 1px solid black;	
	font-size:0.7em;
}






/*PF7 DROP DOWN MENU ###################################################################
	Container for the  menu. We set top and bottom borders only because the menu container
	stretches the entire window width. Note that this container can go inside a fixed width
	element that is centered on the page, if you so desire. It can even go inside a table cell.
	It carries a background image for aesthetics.
	################################################################################# */

#menuwrapper {
	background-color: #006600;		/*background-image: url(Art/p7exp_mbar.jpg);
		background-repeat: repeat-x;*/
	border-top-width: 1px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFCC00;
	border-bottom-color: #FFCC00;
	}
	/*Clears the floated menu items.
	Assigned to a BR tag placed just before
	menuwrapper's closing DIV tag*/
	.clearit {
		clear: both;
		height: 0;
		line-height: 0.0;
		font-size: 0;
	}
	/*
	p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
	We set padding and margin to zero to eliminate all indentation, turn bullets off,
	and set a font-family different from the global font-family declared for the
	body element above. This sets font for just the menu. Do not add a font-size here.
	*/
	#p7menubar, #p7menubar ul {
		padding: 0;
		margin: 0;
		list-style: none;
		/*font-family: Arial, Helvetica, sans-serif;*/
	}
	/*
	Root-Level Links.  Do not change the first two properties.
	Adjust padding values to make the root links taller and to offset them
	from the left and right edges of the link box. The border right creates a
	separator between links. Font-size is set here and will apply to all menu levels.
	Font color is set to light gray.
	*/
	#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	font-size: .9em;
	color:#ffffff;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;		
	}
	/*
	Class assigned to those Root-Level links that have associated Sub-Menus.
	The top and bottom padding assigned this element must be the same as
	that assigned to the p7menubar a element. The right padding is increased
	to accomodate the display of background image depicting a downward
	pointing arrow.
	*/
	#p7menubar a.trigger
	{
		padding: 5px 16px 5px 10px;
		background-image: url(Art/MenuArrow.gif);
		background-repeat: no-repeat;
		background-position: right center;
	}
	/*
	The Root-Level list items. Floating left allows
	them to appear horizontally. Width is for IE5 Mac. The last rule in
	this style sheet will set the width for this element to auto for all
	other browsers - hiding it from IE5 Mac. The width is proportional.
	As you add and edit root menu items, you will need to test this width
	to ensure it is wide enough to accomodate all text.
	*/
	#p7menubar li {
		float: left;
		width: 9em;
		
	}
	/*
	Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
	This allows the sub-menu width to expand if users resize the text in their browsers.
	*/
	#p7menubar li ul, #p7menubar ul li  {
		width: 12em;
	}
	/*
	The sub-menu links. We set color and turn off the right border, which
	would otherwise be inherited from the root link rule. We set top and 
	bottom padding less than the root items and increas the left padding
	to indent the sub-menu links a small amount in from the root links.
	*/
	#p7menubar ul li a
	{
		color: #ffffff;
		border-right: 0;
		border-bottom:1px #FFFFFF solid;
		padding: 3px 12px 3px 16px;
	}
	/*
	Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
	Positioned Absolutely to allow them to appear below their root trigger.
	Set to display none to hide them until trigger is moused over.
	Background Color must be set or problems will be encountered in MSIE.
	Right and bottom borders are set to simulate a raised look.
	A gradient background image is assigned.
	*/
	#p7menubar li ul
	{
	position: absolute;
	display: none;
	background-color: #013F01; /*#404040;*/
	border-right: 2px solid #333333;
	border-bottom: 2px solid #333333;
	text-align:left;		
		/*background-repeat: repeat;*/
	}
	/*
	Changes the Text color and background color when the Root-Level
	menu items are moused over. The second selector sets color and background
	when Root-Level items are accessed with the keyboard tab key. The third
	selector sets an active state to support keyboard access in MSIE. The fourth 
	selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
	Note that IE7 supports hover on elements other than links and so behaves
	like Firefox, Opera, and Safari - making the menu operable even if JavaScript
	is not enabled.
	*/
	#p7menubar li:hover a, #p7menubar a:focus, #p7menubar a:active, #p7menubar li.p7hvr a
	{
	color: #000000;
	background-color: #FFCC00;
	
	
	
	
		
	}
	/*
	Set the Sub-Menu UL to be visible when its associated
	Root-Level link is moused over. The second selector is 
	assigned to IE5 and IE6 via the P7_ExpMenu script.
	*/
	#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
	
		
	}
	/*
	Sets the Text color of the Sub-Level links when the Root-Level
	menu items are moused over. The second selector is 
	assigned to IE5 and IE6 via the P7_ExpMenu script.
	The color set should march the normal Sub-Level link color
	in the rule: #p7menubar ul li a. The background color must be
	transparent to allow the underlying gradient background on the UL
	to show through.
	*/
	#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
		color: #ffffff;
		background-color: transparent;
	}
	/*
	The normal hover class for Sub-Level links. The Important directive
	is required for older browsers. We set a background color, which shows
	over the gradient background. We set text color to white.
	*/
	#p7menubar ul a:hover {
		background-color: #FFcc00!important;
		
		color: #000000!important;
	}
	/* The single backslash \ character inside this comment
	causes IE5 Mac to ignore the following rule, which allows other
	browsers to render top-level menu items to their natural width.
	Do not edit this rule in any way. */
	#p7menubar li {width: auto;}



	
