@charset "UTF-8";
body  {
	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 */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #daf1fc;
	text-decoration: none;
}
#container  {
	width: 950px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(images/gfx_black_filler.gif);
	background-repeat: repeat-y;
	background-position: left top;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header  {
	background-image: url(images/gfx_background.jpg);
	background-repeat: no-repeat;
	height: 115px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 139px;
	background-image: url(images/gfx_background_sidebar.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	text-align: center;
	height: 487px;
}
#sidebar1 h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 150%;
	font-style: italic;
	color: #FFF;
	letter-spacing: -1px;
	text-align: center;
	font-weight: normal;
	padding-top: 45px;
}
#sidebar1 h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 120%;
	color: #FFF;
	text-align: left;
	font-weight: normal;
	padding-left: 10px;
	padding-top: 200px;
}
#sidebar1 h2 a:link {
	color: #FFF;
}
#mainContent  {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 155px;
	padding: 0;
} 
#nav {
	background-color: #369;
	height: 28px;
	border-top-width: 1pt;
	border-top-style: solid;
	border-top-color: #DBF1FC;
}
#bottom_nav {
	background-color: #369;
	height: 18pt;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75%;
	color: #DBF1FC;
	text-decoration: none;
	text-align: center;
	vertical-align: bottom;
	margin-left: 139px;
	line-height: 200%;
}
#bottom_nav a:link {
	color: #DBF1FC;
	text-decoration: none;
}
#bottom_nav a:hover {
	color: #999;
	text-decoration: none;
}
#bottom_nav a:visited {
	color: #DBF1FC;
	text-decoration: none;
}
#copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 65%;
	line-height: 120%;
	color: #369;
	text-align: center;
	padding: 5px;
	clip: rect(0px,auto,0px,auto);
}

}
#copyright a:link {
	color: #369;
}
#copyright a:visited {
	color: #369;
}
h1 {
	font-size: 135%;
	color: #369;
	margin-bottom: -3pt;
}
h2 {
	font-size: 90%;
	color: #666;
	line-height: 110%;
	margin-bottom: -3px;
}
h3 {
	font-weight: bold;
	border-bottom-width: 1pt;
	border-bottom-style: solid;
	border-bottom-color: #369;
	color: #386599;
	font-size: 100%;
	line-height: 120%;
	margin-right: 15px;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	color: #666;
	line-height: 130%;
	margin-bottom: -3pt;
	list-style-type: disc;
	margin-right: 15px;
}
p a:link {
	color: #4A30BA;
	text-decoration: underline;
}
p a:visited {
	color: #666;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

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

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

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

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

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 75%;
	cursor: default;
	width: auto;
}
/* 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 a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 100px;
	float: left;
	border-left-width: 1pt;
	border-left-style: solid;
	border-left-color: #DBF1FC;
	overflow: visible;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 160px;
	position: absolute;
	left: -1000em;
	overflow: visible;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 160px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #369;
	padding: 0.5em 0.5em;
	color: #DBF1FC;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #999;
	color: 369;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #999;
	color: #369;
}

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

 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.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryAssets/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* 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.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryAssets/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.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryAssets/SpryMenuBarDownHover.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.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryAssets/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.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
