@charset "utf-8";
/* CSS Document */

/* ######### Drop Down ULs CSS ######### used to be the separate file 'base'*/


.ddsubmenustyle, .ddsubmenustyle ul{ /*topmost and sub ULs, respectively*/
font-family:Calibri,Arial,sans-serif;
font-size:12px;
margin: 0px;
padding: 0px;
position: absolute;
left: 0px;
top: 0px;
list-style-type: none;
background: #000; /* not sure where this color appears  */
border: 1px solid black;	/* border around dropdown menu*/
border-bottom-width: 0;
visibility: hidden;
z-index: 100;
text-align:left;
}

.ddsubmenustyle li a{
display: block;
width: 160px; /*width of menu (not including side paddings)*/
color: #000; /* colour of text in the drop down boxes  */
background-color: #cc9; /* background of the boxes that drop down  */
text-decoration: none;
padding: 4px 5px;
border-bottom: 1px solid black;
text-align:left;
}

* html .ddsubmenustyle li{ /*IE6 CSS hack*/
display: inline-block;
width: 170px; /*width of menu (include side paddings of LI A*/
}

.ddsubmenustyle li a:hover{
background-color: #ffffff; /*  hover color background over the dropdown boxes */
color:#900; /*  hover color of the text in the dropdown boxes */
}

/* ######### Neutral CSS  ######### */

.downpointer{ /*CSS for "down" arrow image added to top menu items*/
padding-left: 4px;
border: 0px;
}

.rightarrowpointer{ /*CSS for "right" arrow image added to drop down menu items*/
position: absolute;
padding-top: 3px;
left: 100px;
border: 0px;
}

.ddiframeshim{
position: absolute;
z-index: 500;
background: transparent;
border-width: 0px;
width: 0px;
height: 0px;
display: block;
text-align:left;
}



/* ######### Matt Black Strip Main Menu Bar CSS ######### used to be the separate file 'topbar' */

.mattblackmenu ul{
margin: 0px;
padding: 0px;
font-family:Calibri,Arial,sans-serif;
font-size:12px;
list-style-type: none;
/*border-bottom: 1px solid #ff5b5b;*/
overflow: hidden;
/*background: #ffff00;*/
width: 100%;
}

.mattblackmenu li{
display: inline;
margin: 0px;
}

.mattblackmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0px;
padding: 6px 8px; /*padding inside each tab*/
/*border-right: 1px solid #ff5b5b;*/ /*right divider between tabs*/
color:#900; /* color of the titles that have dropdown boxes  */
/*background: #ffff00;*/
}

.mattblackmenu li a:visited{
color:#900; /*  colors of the titles that don't have dropdown boxes */
}

.mattblackmenu li a:hover{
/*background: #ffffff;*/ /*background of tabs for hover state */
text-decoration:underline;
}

.mattblackmenu a.selected{
/*background: #ffffff;*/ /*background of tab with "selected" class assigned to its LI */
}

/* ######### Marker List Vertical Menu ######### used to be the separate file 'sidebar'*/

.markermenu{
width: 175px; /*width of side bar menu*/
clear: left;
position: relative; /*Preserve this for "right" arrow images (added by script) to be positioned correctly*/

}

.markermenu ul{
list-style-type: none;
margin: 5px 0;
padding: 0px;
border: 1px solid #ff00ff;
}

.markermenu ul li a{
background: #2e3640 3px center; /*light gray background*/
font-family:Calibri,Arial,sans-serif;
color:#FFFF00;
display: block;
width: auto;
padding: 3px 0px;
padding-left: 20px;
text-decoration: none;
border-bottom: 1px solid #000000;
}

* html .markermenu ul li a{ /*IE6 hack*/
width: 155px;
}

.markermenu ul li a:visited, .markermenu ul li a:active{
color: #2e3640;
}

.markermenu ul li a:hover, .markermenu ul li a.selected{
color:#FFFF00;
background-color:#663399;
}

/* ######### Customized Drop Down ULs CSS (inherits from ddlevelsmenu-base.css) ######### */

.blackwhite li a{
background: #2e3640;
}

.blackwhite li a:hover{
background:#FF6600;
color:#009900;
}