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

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

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

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
a {outline:none;}
ul.MenuBarHorizontal
{	
	float: right;
	margin-top:94px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 587px;
	height:36px;
}
img{outline:none;}

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

/* 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: 70%;
	z-index: 1020;
	cursor: default;
	width: 9em;
	position: absolute;
	left: -100em;
}
ul.MenuBarHorizontal ul
{
	padding-top: 0.4em ;
}
ul.MenuBarHorizontal ul a
{
	border-left:none;
	padding: 0.5em .5em;
}
/* 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: 15em;
}
/* 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

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


/* Menu items are a light gray block with right border, padding, and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #eeebb6;		
	/*padding: 0.5em 1.2em;*/
	font: normal .85em verdana;
	color: #1c1a14;
	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: #1c1a14;
	color: #eeebb6;
	text-decoration: none;

}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal ul a.MenuBarItemHover, ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul a.MenuBarSubmenuVisible
{
	background-color: #1c1a14;
	color: #eeebb6;
	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_hom
{
	background-image: url(../images/nav/home.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 65px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;

}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_hom
{
	background-image: url(../images/nav/home.png);
	background-repeat: no-repeat;
	background-position:0 -36px ;
	width: 65px;
	height: 36px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	border:none;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_prof
{
	background-image: url(../images/nav/profile.png);
	background-repeat: no-repeat;
	background-position:0 0;
	width: 63px;
	height: 36px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_prof
{
	background-image: url(../images/nav/profile.png);
	background-repeat: no-repeat;
	background-position: 0 -36px;
	width: 63px;
	height: 36px;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_cons
{
	background-image: url(../images/nav/consulting.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 92px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_cons
{
	background-image: url(../images/nav/consulting.png);
	background-repeat: no-repeat;
	background-position: 0 -36px;
	width: 92px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
}

ul.MenuBarHorizontal a.MenuBarItemSubmenu_proj
{
	background-image: url(../images/nav/projects.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 78px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
		}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_proj
{
	background-image: url(../images/nav/projects.png);
	background-repeat: no-repeat;
	background-position: 0 -36px;
	width: 78px;
	height: 30px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_store
{
	background-image: url(../images/nav/store.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 88px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_store
{
	background-image: url(../images/nav/store.png);
	background-repeat: no-repeat;
	background-position: 0 -36px;
	width: 88px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_sales
{
	background-image: url(../images/nav/sales.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 119px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
		}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_sales
{
	background-image: url(../images/nav/sales.png);
	background-repeat: no-repeat;
	background-position: 0 -36px;
	width: 119px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenu_cont
{
	background-image: url(../images/nav/contact.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 75px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
}

ul.MenuBarHorizontal a:hover.MenuBarItemSubmenu_cont
{
	background-image: url(../images/nav/contact.png);
	background-repeat: no-repeat;
	background-position: 0 -36px;
	width: 75px;
	height: 36px;
	margin: 0;
	padding: 0;
	border:none;
}
/*you are here states*/
#body_hom ul.MenuBarHorizontal a.MenuBarItemSubmenu_hom {
background-position: 0 -72px;
}
#body_prof ul.MenuBarHorizontal a.MenuBarItemSubmenu_prof {
background-position: 0 -72px;
}
#body_cons ul.MenuBarHorizontal a.MenuBarItemSubmenu_cons {
background-position: 0 -72px;
}
#body_proj ul.MenuBarHorizontal a.MenuBarItemSubmenu_proj {
background-position: 0 -72px;
}
#body_store ul.MenuBarHorizontal a.MenuBarItemSubmenu_store {
background-position: 0 -72px;
}
#body_sales ul.MenuBarHorizontal a.MenuBarItemSubmenu_sales {
background-position: 0 -72px;
}
#body_cont ul.MenuBarHorizontal a.MenuBarItemSubmenu_cont {
background-position: 0 -72px;
}



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

 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;
}
/* 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}


/* sub nav*/

#subnav ul{	
	margin:0 0 10px 0;
	padding:0;
	list-style-type: none;
	cursor: default;
	font-size: 100%;
	display:block;
}

#subnav ul li{
	margin: 0 0 10px 0;
	padding:2px 5px 2px 5px;
	list-style-type: none;
	font-size: 80%;
	font-weight:bold;
	text-align: left;
	cursor: pointer;
	float: left;
	display: inline;
	border-left:1px solid #000;
	
}

#subnav ul li a:hover{	color:#000;}*/





