/* ================================================================ 
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.
=================================================================== */

.mainMenuRow2 {
width:100%;
position:absolute;
top:210px;
left:0;
margin:0px auto 0px auto;
z-index:105;
}

.menuSpacer2 {
width: 3px;
height: 26px;
float: right;
background: #FFFFFF;
}

/* remove all the bullets, borders and padding from the default list styling */
.mainMenuRow2 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 */
.mainMenuRow2 li {
float:right;
width:103px;
position:relative;
}

/* set the width of all sub levels */
.mainMenuRow2 ul ul, .mainMenuRow2 li li {
width:250px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.mainMenuRow2 ul ul {
visibility:hidden;
position:absolute;
height:0;
top:26px;
left:0; 
width:250px;
}

/* dropdown menus right-aligned */
.mainMenuRow2 ul ul.right {
left:auto;
right:0;
}

/* position the third level flyout menu */
.mainMenuRow2 ul ul ul{
left:250px; 
top:0;
width:250px;
}
/* position the third level flyout menu for a left flyout */
.mainMenuRow2 ul ul ul.left {
left:-250px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.mainMenuRow2 table {position:absolute; top:0; left:0;}


/* -- TOP LEVEL STYLES -- */
/* style the links for the top level */
.mainMenuRow2 a, .mainMenuRow2 a:link, .mainMenuRow2 a:visited {
display:block;
font-family: Verdana, Arial, Helvetica, Sans-Serif;
font-size:10px;
font-weight:bold;
text-decoration:none; 
color:#000000; 
width:103px; 
height:26px; 
text-align:center; 
line-height:25px;
}

.mainMenuRow2 a.regions, .mainMenuRow2 a.regions:visited {
background: url('/images/regions_tab_bg.jpg') no-repeat center center;
}

.mainMenuRow2 a.cops, .mainMenuRow2 a.cops:visited {
background: url('/images/cop_tab_bg.jpg') no-repeat center center;
line-height:11px;
}

.mainMenuRow2 a.directories, .mainMenuRow2 a.directories:visited {
background: url('/images/directories_tab_bg.jpg') no-repeat center center;
}

.mainMenuRow2 a.shop, .mainMenuRow2 a.shop:visited {
background: url('/images/shop_tab_bg.jpg') no-repeat center center;
}

/* Style the top level hover */
.mainMenuRow2 a.regions:hover, .mainMenuRow2 :hover > a.regions {
color: #ffffff;
background: url('/images/regions_activetab_bg.jpg') no-repeat center center;
}

.mainMenuRow2 a.cops:hover, .mainMenuRow2 :hover > a.cops {
color: #ffffff;
background: url('/images/cop_activetab_bg.jpg') no-repeat center center;
}

.mainMenuRow2 a.directories:hover, .mainMenuRow2 :hover > a.directories {
color: #ffffff;
background: url('/images/directories_activetab_bg.jpg') no-repeat center center;
}

.mainMenuRow2 a.shop:hover, .mainMenuRow2 :hover > a.shop {
color: #ffffff;
background: url('/images/shop_activetab_bg.jpg') no-repeat center center;
}


/* -- SECOND LEVEL STYLES -- */
/* style the second level links */
.mainMenuRow2 ul ul a, .mainMenuRow2 ul ul a:link, .mainMenuRow2 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:229px
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .mainMenuRow2 ul ul a{
width:250px;
w\idth:229px;
}

/* style the second level background - for submenu items  */
.mainMenuRow2 ul ul a.subMenuItem, .mainMenuRow2 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 */
.mainMenuRow2 ul ul a.contentItem, .mainMenuRow2 ul ul a.contentItem:visited {
background:#CCCCDD;
}

/* style the second level hover - for submenu items */
.mainMenuRow2 ul ul a.subMenuItem:hover{
color:#FFFFFF;
background:#6699CC url(/images/mainMenu_triangle.gif) center right no-repeat;
text-decoration: none;
}
.mainMenuRow2 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 */
.mainMenuRow2 ul ul a.contentItem:hover{
color:#FFFFFF;
background-color:#6699CC;
text-decoration:none;
}

/* -- THIRD LEVEL STYLES -- */
/* style the third level background */
.mainMenuRow2 ul ul ul a, .mainMenuRow2 ul ul ul a:visited {
background:#CCCCDD;
}
/* style the third level hover */
.mainMenuRow2 ul ul ul a:hover {
color:#FFFFFF;
background:#6699CC;
text-decoration: none;
}


/* -- SHOW SUBLEVELS FOR HOVER -- */
/* make the second level visible when hover on first level list OR link */
.mainMenuRow2 ul li:hover ul,
.mainMenuRow2 ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.mainMenuRow2 ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.mainMenuRow2 ul :hover ul :hover ul{ 
visibility:visible;
}