/* general styles */
body {background-color:#ffffff;font-family:ariel,sans-serif,serif;font-size:12pt;margin:0;padding:0;text-align:justify}
h2 {color:#003366;}
h3 {color:#003366;}
img {border:0;}

/* left side of screen */
div.left {position:absolute; left:0;top:0;height:100%;width:264;background-color:#87acf3;z-index:3050}
/* logo  */
div.logo {position:relative; left:0; top:0; z-index:3050;}

/* nav links */
div.submenuLinks {position:relative;left:52;top:0;width:200;height:200;z-index:4050;background-color:#transparent;margin:1px;}
/* ads */
div.ads {position:relative;left:30;top:80;z-index:3080;}

/* styles for the information links across the top right of the page */
div.infolinks {position:absolute;right:0;top:0;height:14;z-index:4100;background-color:transparent;margin:1px;}
a.infolinks:link {text-decoration:none; color:#ffffff; font-size:8pt}
a.infolinks:visited {text-decoration:none; color:#ffffff; font-size:8pt}
a.infolinks:hover {text-decoration:none; color:#241f53; font-size:8pt}
a.infolinks:active {text-decoration:none; color:#241f53; font-size:8pt}

div.sidepics { position:relative; left:720; top:0; height:100%;background-color:#transparent; margin:1px;z-index:5000}



/* right side of page */
div.right {position:absolute; left:264; top:0; height:100%;background-color:transparent;}
div.topbar {position:absolute; left:264; top:0; height:65; width:100%; background-color:transparent;z-index:4090}


/* text */
div.maintext {position:relative;left:0;top:0;width:100%;height:100%;background-color:#transparent;margin:12px;z-index:4006;}
span.sidepics {position:absolute;left:725;top:156;background-color:transparent;margin:1px;z-index:4001}

/* scrolling marquee of events */
span.scroll { width:100%;height:150;visibility:hidden;border:#6699cc 10px ridge;z-index:5000;text-align:center;}
img.scroll {position:relative;visibility:hidden;left:290;top:94;}
a.scroll:link {text-decoration:none; color:black;}
a.scroll:visited {text-decoration:none; color:black;}
a.scroll:hover {text-decoration:none; color:#003366;}
a.scroll:active {text-decoration:none; color:#003366;}

/* div.middle {position:absolute;left:400;width:200;top:176;background-color:transparent;margin:1px;z-index:4007}
div.wide {position:absolute;left:220;width:800;top:176;background-color:transparent;margin:1px;z-index:4008} */

/* footer line & copyright */
div.footer{position:relative;top:0;left:20;width:720;height:30;border-width:5px;border-top-style:double;border-color:#003366;font-size:9pt;text-align:right;z-index:4060}



/* styles for general links within the text of each page that will turn off the underlining */
a.general:link {text-decoration:none; color:blue;}
a.general:visited {text-decoration:none; color:blue;}
a.general:hover {text-decoration:none; color:green;}
a.general:active {text-decoration:none; color:green;}

a.header:link {text-decoration:none; color:#003366;}
a.header:visited {text-decoration:none; color:#003366;}
a.header:hover {text-decoration:none; color:green;}
a.header:active {text-decoration:none; color:green;}



@charset "UTF-8";

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12pt;
	cursor: default;
	width: 10em;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	margin: 0px 0px 0px 0px;
	padding: 0;
      border-bottom-style: solid;
      border-width:5px;
      border-color:#ffffff;
	list-style-type: none;
	font-size: 12pt;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 10em;
	background-color: #ffffff;
	overflow: visible;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin: -20% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 12pt;
	align=center;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 12em;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 12em;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border: 0px solid #CCC;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 0px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #ffffff;
	padding: 0.5em 0.4em;
	color: #193879;
	text-decoration: none;
      font-family:tahoma,sans-serif,serif;
      font-size=12pt;
      align=center;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #dad8ee;
	color: #ffffff;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #dad8ee;
	color: #ffffff;
}

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

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

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

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

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

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
