@charset "utf-8";
body  {
	background-image:url(/images/bodyBackground.jpg); 
	background-position: top;
	background-repeat: repeat-x;
	color: #000000;
	font: 87.5% Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
a:link { 
	color: #003f72;
}
a:visited { 
	color: #666666;
}
a:hover { 
	color: #333;
	text-decoration: underline;
}
a:active { 
	color: #333;
}

h1 { font-size: 1.6em; font-weight:bold; line-height: 1; margin: 0 0 0.5em 0; } 
h2 { font-size: 1em; font-style:italic; line-height:1; margin: 0 0 0.5em 0; } 
h3 { font-size: 1.1em; font-weight:bold; line-height: 1.1; margin: 0 0 0.5em 0; }


p { margin: 0.4em 0 1.5em 0; } 

p.small_link { font-size: 0.9em; margin: 0.75em 0 0.75em; padding: 20px 0 0 21px; } 

p.small_intro { color: #003f72; font-size: 1.1em; font-weight:bold; margin: 0.75em 0 0 0; padding: 20px 0 0 0; text-align:left; } 

.twoColFixRtHdr #container { 
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 975px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
} 
.twoColFixRtHdr #header { 
	background-image:url(/images/headerBackground.jpg); 
	background-position: top center;
	background-repeat: no-repeat;
	height: 124px;
	margin-bottom: -21px; 
	*margin-bottom: 0px; /* IE 7 and below */
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


/* Start nav style */

#nav, #nav ul {
	list-style: none;
	margin: -32px 0 0 150px;
	*margin: -35px 0 0 150px;
	padding: 8px 17px 20px 17px;
	text-align:left;
}

#nav a {
	display: block;
	width: 14em;
}

#nav li {
	float: left;
	padding-bottom: 6px;
	width: 14em;
}

#nav li a.News {
	background-image: url(/images/news_off2.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
	cursor: pointer;
	display: block; margin: 0 0 0 0; 
	padding: 0;  */
	width: 177px; 
	height: 39px; 
	border-width: 0; 
}

#nav li a.Blogroll {
	background-image: url(/images/blog_off2.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
	cursor: pointer;
	display: block; margin: 0 0 0 -8px; 
	/* padding: 0;  */
	width: 193px; 
	height: 39px; 
	border-width: 0; 
}

#nav li a.Multimedia {
	background-image: url(/images/multi_off2.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
	cursor: pointer;
	display: block; margin: 0 0 0 0; 
	/* padding: 0;  */
	width: 181px; 
	height: 39px; 
	border-width: 0; 
}

#nav li a.News:hover {
	background-image: url(/images/news_over2.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
}

#nav li a.Blogroll:hover {
	background-image: url(/images/blog_over2.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
}

#nav li a.Multimedia:hover {
	background-image: url(/images/multi_over2.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
}

#nav li a.News span, #nav li a.Blogroll span, #nav li a.Multimedia span {
	display: none;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: url(/images/menuNewsroom.gif) no-repeat;
	height: 220px;
	margin: -5px 0 0 0;
	padding-left:27px;
	width: 14em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul.Blog2 { /* Class to fix positioning issue I Brian caused through positioning absolute */
	background: url(/images/menuBlog.gif) no-repeat;
	height: 128px;
	margin-left:-12px;
}

#nav li ul.Multimedia2 { /* Class to fix positioning issue I Brian caused through positioning absolute */
	background: url(/images/menuMulti.gif) no-repeat;
	height: 160px;
	margin-left:0px;
}

#nav li ul li.big { /* second-level lists */
	font-size: 1.2em;
	font-weight: bold;
	padding-top: 8px;
	padding-bottom: -10px;
	text-decoration: none;
}

#nav li ul li.big a { /* second-level lists */
	text-decoration: none;
}

#nav li ul li.small a { /* second-level lists */
	padding-left: 10px;
}

#nav li:hover ul, #nav li.hover ul { /* lists nested under hovered list items */
	position:fixed;
	left: auto;
}

/* End nav style */


/* Start search style */

#rightCap {
	background-image: url(/images/searchfield.jpg); 
	background-repeat: no-repeat; 
	background-position: 0 0; 
	border:none;
/*	border: 1px solid #990000; */
	float: left;
	margin-top: -20px;
	margin-left: 0px;
	width: 182px;
	z-index: 3;
}


input.enterText { 
	background-color: transparent;
	border:none;
	margin-top: -32px;
	margin-left: 10px;
	height: 15px;
	width: 100px;
	} 


input.button { 
	background-color: transparent;
	background-image: url(/images/go.jpg);
	background-repeat: no-repeat;
	background-position: 0 0; 
/*	border:1px solid #333; */
	border:none; 
	cursor: pointer;
	font: Arial, Helvetica, Verdana, sans-serif;
	font-weight: bold;
	margin-top: -6px;
	margin-left: 10px;
	height: 39px;
	width: 54px;
	} 

/* End search style */



.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	padding: 15px 68px 0 0;
	width: 314px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
.twoColFixRtHdr #sidebar1 p {
	margin-top: -1em; 
}
.twoColFixRtHdr #containerMiddle {
	background-image:url(/images/middleBackground.jpg); 
	background-position: center;
	background-repeat: repeat-y;
	margin-top: 21px;
	*margin-top: 0px;
	margin-bottom: -21px;
	*margin-bottom: 0px;
	padding: none;
	width: 975px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}



.twoColFixRtHdr #mainContent { 
	margin: 0 314px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 0 68px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
} 
.twoColFixRtHdr #mainContent p.contact { 
	padding-top: 16px;
}

/* START New for news release index pages */
#storyList {
	width: 821px;
	padding: 0 0 0 80px;
}

#storyList a h1{
	text-decoration: none;
}


#storyList a.hover h2{
	text-decoration: underline;
}

#storyList2 {
	background-image:url(../images/featured.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	padding: 20px 0 20px 20px;
	width: 821px;
	height: 290px;
	overflow: hidden; /* MIKE Z */
}

#storyList2 h1, #storyList2 h2 {
	width: 780px;
}
#storyList2 p {
	width: 780px;
	margin: 0 0 32px;
	line-height: 16px;
}

/* MIKE Z */
#storyList2in {
	width: 780px;
	overflow: hidden;
}

/* EMD MIKE Z */

/* END New for news release index pages */

/*START Twitter stlyes */

#twitter {
width: 230px;
margin: 10px 10px 10px 0px;
padding: 20px;

}

/* Twitter Username */

#twitter h2 a {
text-decoration: none;

}

#twitter h2 a:hover {
text-decoration: underline;

}

/* For indenting the Tweets */

#twitter ul {
list-style: none;
padding: 0 0 0 0px;

}

/*Adds spacing between tweets */

#twitter ul li {
width: 230px;
padding: 10px;

}

/* Styles the time stamp */

#twitter ul li a {
color: #003f72;;

}

#twitter ul li a:hover {
text-decoration: none;

}

/* Stlyes the tweet text */

#twitter ul li span {

}

/* Styles any links within the tweet */

#twitter ul li span a {

}
/*END Twitter stlyes */


.twoColFixRtHdr #footer { 
	background-image:url(/images/footerBackground.jpg); 
	background-position: top center;
	background-repeat: no-repeat;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	font-size: 1px;
	height:0;
	line-height: 0px;
}

/* MIKE'S STYLES */

#main_block { margin-left: 0; padding-left: 14px; }
#main_block li { float: left; margin: 0 6px; overflow: hidden; padding: 4px; width: 300px; }

.bottom_block { padding: 8px; margin-top: -14px; }

.prev, .next { cursor: pointer; float: left; }
.slide_block { float: left; width: 900px; }
.slide_block ul { padding-left: 0; }
.slide_block li { 
	width: 280px; 
	height: 110px; 
	border-right: 1px solid #ccc;
	float: left; 
	list-style: none; 
	margin-top:8px; 
	padding-left: 10px; 
	padding-right: 9px;  
}

.slide_block li h2 { 
	margin-bottom:6px; 
}

.slide_block li h2 img { 
	float:right; 
	vertical-align:top; 
}

#zcopy { text-align: center; }
#zlinksright { float: right; margin-right: 32px; text-align: right; }
#zlinksright p { text-align: right; }
.znewsheader { margin-left: 20px; }
.znewsheader2 { margin-left: 28px; }
#bnewsheader { margin-left: 0px; }

.z_news_info_header { border-bottom: 1px solid #000; margin-bottom: 8px; }
.z_news_image { margin-bottom: 8px; padding: 4px; }
.z_news_image img { float: left; margin-bottom: 8px; margin-right: 4px; }
.z_news_doc { margin-bottom: 8px; padding: 4px; }

.zdate { text-align: right; vertical-align: top; width: 130px; }

#monthselect { font-size: 1.2em; }

/* END OF MIKE'S STYLES */

