@charset "UTF-8";

/* 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

 *******************************************************************************/
#Div3, #Commercial{
	padding-top:0px;
	height:30px;
	padding:0 5px;
	margin-left:0px;
	margin-top:0px;
	margin-bottom:0px;
	float:right;
	display:inline;
	font-size:18px;
	text-align:center;
	color:#333;
	cursor:pointer;
}
#Div3{
	background-image: url(../images/tab.jpg);
}
#Div3:hover {
	background-image:url(../images/tabhover.jpg);
}
#Commercial{
	background-image:url(../images/tabcommercial.jpg);
}
#Commercial:hover{
	background-image:url(../images/tabcommercialhover.jpg);
}

#menu {
	background-image:url(../images/menu.jpg);
	background-repeat:no-repeat;
	margin-left:0px;
	margin-top:0px;
	width:1px;
	height:30px;
	margin-bottom:0px;
	float:right;
	display:inline;

}

/* 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: 18px;
	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:center;
	cursor: pointer;
	float: right;
	min-height:30px;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index.*/
ul.MenuBarHorizontal li ul
{
	background-color:#FFC;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	top: 30px;
	left:0;
	display:none;
}
ul.MenuBarHorizontal li:hover ul {
	display:block;
}
/* 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 li ul li
{
	padding-left:5px;
	min-width: 8.2em;
	background-color:#FFC;
	text-align:left;
	border-width:thin;
	border-color:#963;
	border-style:dashed;
	float:left;
}
ul.MenuBarHorizontal li ul li:hover
{
	background-color:#99F;
}

/* Submenus should not appear until list item is hovered over*/
ul.MenuBarHorizontal li:hover ul li ul
{
	display:none;
	position: absolute;
	margin: -31px 0 0 100%;
}
ul.MenuBarHorizontal li:hover ul li:hover ul {
	display:block;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: inline;
	cursor: pointer;
	padding: 0px;
	color: #333;
	text-decoration: none;
}

/* 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);
}
*/