@charset "UTF-8";


/* 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: 12px;
	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;
}
/*  */
ul.MenuBarHorizontal li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	/*width: 8em;*/
	float: left;
	width: 165px;
}
/* sub menu */
ul.MenuBarHorizontal ul {
	margin: 0;
	padding: 5px 0 5px 10px;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	/*width: 8.2em;*/
	position: absolute;
	left: -1000em;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}
/* sub menu */
ul.MenuBarHorizontal ul li {
	margin:2px 0 8px 0;
}
/* sub menu width */
ul.MenuBarHorizontal ul.nav-sub-Company{
	width: 154px;
}
ul.MenuBarHorizontal ul.nav-sub-Development{
	width: 154px;
}
ul.MenuBarHorizontal ul li{
	width: 140px;
}
/* sub menu */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {
	left: auto;
}
/*  */
ul.MenuBarHorizontal ul ul {
	position: absolute;
}
/*  */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {
	left: auto;
	top: 0;
}
/* sub menu link */
ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	background-color: #FFF;
	padding: 0;
	color: #666;
	text-decoration: underline;
}
/*  */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
	background-color: #FFF;
	color: #C61C23;
	text-decoration: underline;
}
/*  */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
	background-color: #FFF;
	color: #C61C23;
	text-decoration: underline;
}




/* main menu link */
/* global-nav Company */
#nav-Company a.MenuBarItemSubmenu {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_01.gif') 0 0 no-repeat;
	text-decoration: none;
}
#nav-Company a:hover {
	background-position: 0 -40px;
}
#nav-Company a.MenuBarItemSubmenu-current {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_01.gif') 0 -40px no-repeat;
	text-decoration: none;
}
/* global-nav Recruit */
#nav-Recruit a.MenuBarItemSubmenu {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_02.gif') 0 0 no-repeat;
	text-decoration: none;
}
#nav-Recruit a:hover {
	background-position: 0 -40px;
}
#nav-Recruit a.MenuBarItemSubmenu-current {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_02.gif') 0 -40px no-repeat;
	text-decoration: none;
}
/* global-nav Development */
#nav-Development a.MenuBarItemSubmenu {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_03.gif') 0 0 no-repeat;
	text-decoration: none;
}
#nav-Development a:hover {
	background-position: 0 -40px;
}
#nav-Development a.MenuBarItemSubmenu-current {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_03.gif') 0 -40px no-repeat;
	text-decoration: none;
}
/* global-nav News */
#nav-News a.MenuBarItemSubmenu {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_04.gif') 0 0 no-repeat;
	text-decoration: none;
}
#nav-News a:hover {
	background-position: 0 -40px;
}
#nav-News a.MenuBarItemSubmenu-current {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_04.gif') 0 -40px no-repeat;
	text-decoration: none;
}
/* global-nav Contact */
#nav-Contact a.MenuBarItemSubmenu {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_05.gif') 0 0 no-repeat;
	text-decoration: none;
}
#nav-Contact a:hover {
	background-position: 0 -40px;
}
#nav-Contact a.MenuBarItemSubmenu-current {
	background-color: #fff;
	display: block;
	width: 165px;
	height: 40px;
	background: url('../images/navi_05.gif') 0 -40px no-repeat;
	text-decoration: none;
}
/* main menu link text */
.nav-hidden {
	font-size: x-small;
	visibility : hidden;
}




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

 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;
}
}

