@charset "utf-8";

* {
	margin: 0;
}
html, body {
	height: 100%;
}
.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -70px; /* the bottom margin is the negative value of the footer's height */
	clear: both;
}
.push {
	height: 70px; /* .push must be the same height as .footer */
	clear: both;
}

p {
	font-size: 14px;
	margin: 0px;
}

body  {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000;
	background-color: #F60;
	background-repeat: repeat-y;
	font-size: 12pt;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/shadow.png);
	background-position: center;
}
.title1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 1px;
	margin-top: 1px;
	padding: 0;
}
.title2 {
	font-size: 14pt;
	font-weight: bold;
	margin-bottom: 1px;
	margin-top: 1px;
}
A:link {
	text-decoration: none;
	border: 0px;
}
A:visited {
	text-decoration: none;
	border: 0px;
}
A:active {
	text-decoration: none;
	border: 0px;
}
A:hover {
	color: #09F;
}
.lftimg {
	margin-right: 5px;
	float: left;
	padding-bottom: 5px;
}
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
	width: 20px;
}
.clearing {
	line-height: 0px;
	clear: none;
	height: 0px;
}

.clearfloat {
	font-size: 1px;
	line-height: 0px;
	clear: both;
}
img {
	padding: 0px;
	margin: 0px;
	border: 0px;
}
.thrColAbsHdr #container {
	width: 900px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
	height: 150px;
	padding: 0px;
	margin: 0px;
} 
.thrColAbsHdr #sidebar1 {
	padding: 0px;
	background-color: #FFF;
	width: 195px;
	margin-top: 5px;
	float: left;
	margin: 5px;
}
.thrColAbsHdr #sidebar2 {
	width: 133px;
	float: right;
	margin: 0px 5px 0px 0px;
	padding: 0px;
}
.thrColAbsHdr #mainContent {
	padding: 0px;
	text-align: left;
	width: 540px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 210px;
	clear: none;
	height: 100%;
}
.thrColAbsHdr #footer {
	border-top-style: solid;
	border-top-width: 1px;
	clear: both;
	border-top-color: #999;
	bottom: 0px;
	padding: 0;
	height: 70px;
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF;
} 

.thrColAbsHdr #footer p {
	margin: 0;
	padding: 5px 0;
	text-align: center;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	margin: 0;
}


ul.MenuBarVertical
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 190px;
	margin: 0;
}



/* 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: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 190px;
	border: 1px solid #CCC;
}
/* 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: 0% 0 0 100%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	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: 8.2em;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border: 1px solid #CCC;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #FFF;
	padding: 0.25em 0.75em;
	color: #333;
	text-decoration: none;
}
/* 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: #F90;
	color: #FFF;
}
/* 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: #F90;
	color: #FFF;
}

/*******************************************************************************

 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;
	filter:alpha(opacity:0.1);
}
/* 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;
	}
