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

 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
{
	float: right;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 275px;
}

/* 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%;
	text-align: left;
	cursor: pointer;
	float: right;
}

/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-100em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -100em;
	width: 9em;
}
/* 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: 5em;
}
/* 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;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all but right side, as that is taken care of by the menu item link */
ul.MenuBarHorizontal ul
{
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
/* Menu items are a light gray block with right border, padding, and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #fff;
	text-decoration: none;
}
/* 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: #000000;
	color: #fff;
	text-decoration: none;
}

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

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

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

/* Main menu items are set to use a background image for normal and hover states */
ul.MenuBarHorizontal a.MenuBarItemSubmenu_Video
{
	background-image: url(../images/VideoBtnOn.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_Video
{
	background-image: url(../images/VideoBtnOver.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_Writing
{
	background-image: url(../images/WriteBtnOn.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_Writing
{
	background-image: url(../images/WriteBtnOver.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_Experience
{
	background-image: url(../images/ExpBtnOn.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_Experience
{
	background-image: url(../images/ExpBtnOver.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_Contact
{
	background-image: url(../images/ContactBtnOn.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_Contact
{
	background-image: url(../images/ContactBtnOver.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_Home
{
	background-image: url(../images/HomeBtnOn.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-style: none;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_Home
{
	background-image: url(../images/HomeBtnOver.gif);
	background-repeat: no-repeat;
	background-position: 0;
	width: 50px;
	height: 43px;
	margin: 0;
	padding: 0;
	border-right-style: none;
}
span.hidden
{
	display: none;
}

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

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

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

