@charset "iso-8859-1";
/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

img {
	border: none;
}

* {
	outline: none;
}

/* Headers
****************************************************/
h1, h2, h3, h4, h5, h6 {
	color: #880606;
}

h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}



label
{
	cursor: pointer;
}

.cwContainer label
{
	display: none;
}

table
{
	font-size: 100%;
}

#middleColumn h2.pageHeader {
	text-transform: uppercase;
	background: transparent url('/images/misc/section-arrow.gif') left .2em no-repeat;
	padding-left: 22px;
	margin-bottom: 0;
}

#middleColumn h3.cwHeader {
	text-transform: uppercase;
	background: transparent url('/images/misc/section-arrow.gif') left .2em no-repeat;
	padding-left: 22px;
	margin-bottom: 0;
}

.headContainer h3.cwHeader {
	float: left;
}

.headContainer .moreContainer {
	float: left;
	margin-left: 25px;
	margin-top: 18px;
}


/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 0;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}

#pageWrapper
{

	border-width: 0;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}

* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}


/* Main Body
****************************************************/
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 17em #fff;
	border-right: solid 17em #fff;
}

#innerColumnContainer
{
	margin: 0 -1px;		/* compensate for the borders because of
						   100% width declaration */
	width: 100%;
	z-index: 1;
}

#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}

#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}

#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	background-color: #ffffff; /*BTF*/
	border: none;
}

#galleryImage {
	height: 185px;
	background: transparent url('/images/misc/mosaic.jpg') center center no-repeat;
}

#breadcrumbs {
	text-align: right;
	font-size: 90%;
	margin-bottom: -10px;
}

/* Left Column
****************************************************/
#leftColumn
{
	float: left;
	margin: 0 1px 0 -17em;
	width: 17em;
	z-index: 4;
}


/* Right Column
****************************************************/
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}

#rightColumn .inside .vnav
{
	font-size: 110%;
}

#rightColumn
{
	float: right;
	width: 17em;
	margin: 0 -17em 0 1px;
	z-index: 2;
}


#leftColumn h3, #rightColumn h3 {
	color: #ffffff;
	font-weight: normal;
	border-bottom: 1px solid #fff;
	font-size: 150%;
	padding: 0 5px;
	margin: 0;
}

#outerColumnContainer
{
	border-left-color: #560A0C;		/* left column background color */
	border-right-color: #560A0C;	/* right column background color */
	background-color: #560A0C;		/* set the background color for the
					   				middle column here */
}

html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	color: #000;
	font-family: 'Trebuchet MS',helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}

/* Header
****************************************************/
.hnav {
	background: transparent url('/images/header/nav-bg.gif') bottom left repeat-x;
}

#header {
	height: 147px;
	background: #D0D0D0 url('/images/header/header-bg.jpg') left top repeat-x;
	margin: 0;
	padding: 0;
}

#pageTitle {
	background: transparent url('/images/header/site-title.png') left bottom no-repeat;
	height: 85px;
	width: 241px;
	position: relative;
	left: 15px;
	top: 30px;
	margin: 0;
	padding: 0;
}

#pageTitle h1 {
	overflow: hidden;
	padding: 0;
	margin: 0;
	position: relative;
	top: -2000px;
}


/* Top Navigation
****************************************************/
#topNavContainer a {
	color: #000;
	background: #E1E1E1 url('/images/header/left-tab.gif') left bottom no-repeat;
	text-decoration: none;
	padding-left: 10px;
	font-weight: bold;
	font-size: 1.2em;	
	padding-bottom: 4px;
	white-space: nowrap;
}

#topNavContainer a span {
	background: url('/images/header/right-tab.gif') right bottom no-repeat;
	padding-right: 10px;
	padding-bottom: 4px;
}

#topNavContainer a, #navigation a span {
	display: block;
	float: left;
}

/* Commented backslash hack hides rule from IE5-Mac \*/
#topNavContainer a, #navigation a span {
	float: none;
}
/* End IE5-Mac hack */

#topNavContainer a:hover {
	color: #ffffff;
	background: transparent url("/images/header/left-tab-hover.gif") left bottom no-repeat;
	text-decoration: none;
	padding-left: 10px;
}

#topNavContainer a:hover span {
	background: url('/images/header/right-tab-hover.gif') right bottom no-repeat;
	padding-right: 10px;
}

#topNavContainer a.navOver {
	color: #ffffff;
	background: transparent url("/images/header/left-tab-hover.gif") left bottom no-repeat;
	text-decoration: none;
	padding-left: 10px;
}

#topNavContainer a.navOver span {
	background: url('/images/header/right-tab-hover.gif') right bottom no-repeat;
	padding-right: 10px;
}


#topNavContainer {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 2px solid #6C6C6C;
	white-space: nowrap;

}

#topNavContainer li {
	float: left;
	display: block;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}
#topNavContainer li.last {
	background: #E1E1E1 url('/images/header/left-tab.gif') left bottom no-repeat;
	width: 10px;
	padding-bottom: 6px;
}



/* Content Window Styles
****************************************************/
.cwContainer {
	background-color: #9F1316;
	color: #fff;
	border: 1px solid #ffffff;
	width: 99%;
}

#mainContent.cwContainer {
	background-color: #ffffff;
	color: #000000;
	border-width: 0;
	border: none;
	width: 100%;
}

.squareContainer {
	border: 1px solid #E1E1E1;
}

.cwCenterList, .cwList {
	list-style-type: none;
	margin:0;
	padding: 0;
}

#middleColumn .cwCenterList {
	border: 1px solid #E1E1E1;
}

td .cwCenterList {
	border: none;
}

.cwCenterList li, .cwList li {
	list-style-type: none;
	margin: 0;
	padding: 2px 12px 2px 12px;
	background: transparent url('/images/misc/middle-arrow.gif') 5px .6em no-repeat;
	border-bottom: 1px solid #ffffff;
}

#leftColumn .cwList li, #rightColumn .cwList li {
	list-style-type: none;
	margin: 0;
	padding: 2px 12px 2px 12px;
	background: transparent url('/images/misc/l-r-arrow.gif') 5px .6em no-repeat;
	border-bottom: 1px solid white; 
	position: relative;
}

#cwDivisionNav h5 {
	color: #ffffff;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	font-size: 110%;
	padding: 0 5px;
	margin: 0;
}

.moreContainer {
	text-align: right;
	color: #9F1316;
	padding-right: 5px;
}

#leftColumn .moreContainer, #rightColumn .moreContainer {
	color: #ffffff;
	padding: 0 5px;
	text-align: left;
}

.more {
	color: #9F1316;
	font-weight: bold;
	background: transparent url('/images/misc/more-double-arrow.gif') left .5em no-repeat;
	padding-left: 10px;
	text-decoration: none;
	text-transform: uppercase;
}

#middleColumn .more {
	color: #9F1316;
	font-weight: bold;
	background: transparent url('/images/misc/middle-more-double-arrow.gif') left .5em no-repeat;
	padding-left: 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.feedLink {
	position: relative;
}

.cwSectionList {
	border: solid #D3D3D3;
	border-width: 0 1px 1px 1px;
}

.cwSectionList .even {
	border-top: 1px solid #D3D3D3;
	background-color: #EFEFEF;
	padding: 3px;
}

.cwSectionList .odd {
	border-top: 1px solid #D3D3D3;
	background-color: #FFFFFF;
	padding: 3px;
}

.iconList {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.iconList li {
	list-style-type: none;
	margin: 0;
	padding: 2px 5px 2px 27px;
	background-position: .4em .2em;
	background-repeat: no-repeat;
	border-bottom: 1px solid #fff;
	position: relative;
	zoom: 1;
}

.feedIcon {
	position: relative;
	top: 2px;
}


.cwHorizontalTable {
	border: 1px solid #E1E1E1;
}

.emergencyAlert {
	background-color: #FFFFFF;
	border: 1px solid #9F1316;
}

.emergencyAlert div {
	padding: 4px;
}

.emergencyAlert a:link, .emergencyAlert a:visited {
	color: #FFFFFF;
	display: block;
	background-color: #9F1316;
	padding: 4px;
	font-weight: bolder;
	text-decoration: none;
}

.emergencyAlert a:hover, .emergencyAlert a:visited:hover  {
	text-decoration: underline;
	font-weight: bolder;
}


/* Footer
****************************************************/
#foot {
	margin: 0 17em;
	color: #000;
	font-size: 80%;
	text-align: center;
}

#disclaimer {
	padding: 8px 0;
	margin: 0 3.2em;
}

#copyright {
	padding: 4px 0;
	width: 37em;
	margin: 0 auto;
	text-align: left;
}

#egsLogo {
	border: none;
	margin-right: 8px;
	float: left;
	position: relative;
}


/* Links
****************************************************/
a, a:link, a:visited, a:active
{
	text-decoration: underline;
	color: #9F1316;
}
a:hover
{
	text-decoration: none;
}

#leftColumn a, #leftColumn a:link, #leftColumn a:visited, #leftColumn a:active,
#rightColumn a, #rightColumn a:link, #rightColumn a:visited, #rightColumn a:active {
	color: #ffffff;
}


/* Print Styles
****************************************************/
.printOnly {
	display: none;
}

/* Special Classes
****************************************************/
.skipLink {
	position: absolute;
	top: -2100px;
	left:-32000px;
	display: none;
}

.subText {
	font-size: 80%;
	color: #8F8F8F;
}

.advisoryBox {
	text-transform: capitalize;
	height: 175px;
	overflow-y: scroll;
	border: 1px solid #880606;
	background-color: #FAFAFA;
	padding: 0 10px 10px 10px;
}

/* Scroller Classes
****************************************************/
#scrollBox {
	width:100%;
	height:84px;
	background:#fff;
}

.scrollerHide {
	visibility: hidden;
	position: absolute;
	top: -400px;
}

.scrollerSlide .cwCenterList {
	height: 82px;
}

.scrollerNav {
	font-size: 9pt;
	height: 15px;
	background:#f0f0f0;
}

.scrollerNav a {
	text-decoration: none;
}

.scrollerNav div {
	float: right;
}

.iconList li a {
	zoom: 1;
}


/* Clear Fix
****************************************************/
.clearfix:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix {display:inline-block;}
/* Hide from IE Mac \*/
.clearfix {display:block;}
/* End hide from IE Mac */
* html .clearfix {height:1px;}


/* Fix crummy image resizing
****************************************************/
img { -ms-interpolation-mode: bicubic; }