/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_subMenuItem.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.mainMenu {
width:310px;
position:absolute; 

top:26px;
/**left:654px; **/
z-index:110;
}

.mainMenuAlign {
width:380px;
padding:0px 10px 0px 0px; 
margin:5px auto 0px auto;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .mainMenuAlign {
width:828px;
w\idth:800px;
}

/**.menuSpacer {
width: 1px;
height: 28px;
float: left;
background:#fff;
} **/

/* remove all the bullets, borders and padding from the default list styling */
.mainMenu ul {
padding:0;
margin:0;
list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the subMenuItemdown menu positon */
.mainMenu li {
float:left;
width:90px;
margin-left:5px;
position:relative; 
}

/* set the width of all sub levels */
.mainMenu ul ul, .mainMenu li li {
width:200px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.mainMenu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:14px;
left:0; 
width:250px;
}

/* dropdown menus right-aligned */
.mainMenu ul ul.right {
left:auto;
right:0;
}

/* position the third level flyout menu */
.mainMenu ul ul ul{
left:250px; 
top:0;
width:250px;
}
/* position the third level flyout menu for a left flyout */
.mainMenu ul ul ul.left {
left:-250px; 
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.mainMenu table {position:absolute; top:0; left:0;}


/* -- TOP LEVEL STYLES -- */
/* style the links for the top level */
.mainMenu a, .mainMenu a:link, .mainMenu a:visited {
display:block;
font-family: Verdana, Arial, Helvetica, Sans-Serif;
font-size:11px;
text-decoration:none; 
color:#ffffff; 
/** width:98px; **/
width:100%;



/***height:28px; **/
background:url('/images/default_mainMenu_tab_bg.jpg') repeat-x; 
text-align:center; 
/***line-height:27px; ***/
}

.mainMenu a.toolsTab, .mainMenu li.toolsTab {
    width: 93px;
}

.mainMenu a.careerCenterTab, .mainMenu li.careerCenterTab {
   /** width:112px; ***/ 
}

/* style the top level hover for hover on the top level link*/
.mainMenu a:hover {
color:#FFFFFF;
background:url('/images/default_mainMenu_activeTab_bg.jpg') repeat-x;
}
/* style the top level hover for hover on any other part of the menu */
.mainMenu :hover > a {
color:#FFFFFF;
background:url('/images/default_mainMenu_activeTab_bg.jpg') repeat-x;
}


/* -- SECOND LEVEL STYLES -- */
/* style the second level links */
.mainMenu ul ul a, .mainMenu ul ul a:link, .mainMenu ul ul a:visited {
background:#CCCCDD; 
font-size:10px;
font-weight:normal;
color:#000000;
text-align:left; 
height:auto; 
border:1px solid #fff;
border-width:1px 1px 0 0;
line-height:1em; 
padding: 5px 10px; 
width:120px
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .mainMenu ul ul a {
width:250px; 
w\idth:229px;
}

/* style the second level background - for submenu items  */
.mainMenu ul ul a.subMenuItem, .mainMenu ul ul a.subMenuItem:visited {
background:#CCCCDD url(/images/mainMenu_triangle.gif) center right no-repeat;
}

/* style the second level background - for items that are not submenus */
.mainMenu ul ul a.contentItem, .mainMenu ul ul a.contentItem:visited {
background:#CCCCDD;
}

/* style the second level hover - for submenu items */
.mainMenu ul ul a.subMenuItem:hover{
color:#FFFFFF;
background:#6699CC url(/images/mainMenu_triangle.gif) center right no-repeat;
text-decoration: none;
}
.mainMenu ul ul :hover > a.subMenuItem {
color:#FFFFFF;
background:#6699CC url(/images/mainMenu_triangle.gif) center right no-repeat;
text-decoration: none;
}

/* style the second level hover - for items that are not submenus */
.mainMenu ul ul a.contentItem:hover{
color:#FFFFFF;
background-color:#6699CC;
text-decoration:none;
}



/* -- THIRD LEVEL STYLES -- */
/* style the third level background */
.mainMenu ul ul ul a, .mainMenu ul ul ul a:visited {
background:#CCCCDD;
}
/* style the third level hover */
.mainMenu ul ul ul a:hover {
background:#6699CC;
text-decoration: none;
}


/* -- SHOW SUBLEVELS FOR HOVER -- */
/* make the second level visible when hover on first level list OR link */
.mainMenu ul li:hover ul,
.mainMenu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.mainMenu ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.mainMenu ul :hover ul :hover ul{ 
visibility:visible;
}