/* style the outer div to give it width */
.topmenu {
position: absolute;
width:410px; 
left: 240px;
padding-bottom:25px;
z-index:20;
float: right;
}
/* remove all the bullets, borders and padding from the default list styling */
.topmenu ul {
padding:0;
margin:0;
list-style-type:none;
z-index:99;
text-align: left;
}
.topmenu ul ul {
z-index:99;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.topmenu li {
float:left;
padding-left: 14px;
position:relative;
}
/* style the links for the top level */
.topmenu a, .topmenu a:visited, .topmenu a:link, .topmenu a:active {
display:block;
font-size:12px;
text-decoration:none; 
color:#FFFFFF;
font-weight: bold;
height:32px; 
padding-left:10px; 
line-height:32px;
z-index:99;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .topmenu a, * html .topmenu a:visited {
width:120px;
w\idth:109px;
}

/* style the second level background */
.topmenu ul ul a.drop, .topmenu ul ul a.drop:visited {
background:#CACACA;
z-index:99;
}
/* style the second level hover */
.topmenu ul ul a.drop:hover{
background:#cacaca;
}
.topmenu ul ul :hover > a.drop {
background:#cacaca;
z-index:99;
}
/* style the third level background */
.topmenu ul ul ul a, .topmenu ul ul ul a:visited {
background:#cacaca;
z-index:99;
}
/* style the third level hover */
.topmenu ul ul ul a:hover {
background:#cacaca;
z-index:99;
}
.topmenu ul ul ul :hover > a {
background:#cacaca;
z-index:99;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.topmenu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:32px;
left:0; 
width:150px;
z-index:99;
}
/* another hack for IE5.5 */
* html .topmenu ul ul {
top:32px;
t\op:33px;
}

/* position the third level flyout menu */
.topmenu ul ul ul{
left:150px; 
top:0;
width:150px;
z-index:99;
}
/* position the third level flyout menu for a left flyout */
.topmenu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.topmenu table {position:absolute; top:0; left:0;}

/* style the second level links */
.topmenu ul ul a, .topmenu ul ul a:visited , .topmenu ul ul a:active , .topmenu ul ul a:link {
background:#eeeeee;
font-weight: normal;  
color:#000; 
width:169px;
vertical-align: middle;
line-height:20px; 
height: 20px;
border:1px solid #fff; 
border-width:0px 1px 1px 1px; 
/* yet another hack for IE5.5 */
}
* html .topmenu ul ul a{
	width:150px;
	w\idth:119px;
}


/* style the top level hover */
.topmenu a:hover, .topmenu :hover > a {
color:#fff; 
}

.topmenu ul ul a:hover, .topmenu ul ul :hover > a {
color:#514E4E;
background: #dadada;
}

/* make the second level visible when hover on first level list OR link */
.topmenu ul li:hover ul,
.topmenu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.topmenu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.topmenu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.topmenu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.topmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

li.pending {
	background-image: url(../images/bell.png);
	background-repeat: no-repeat;
	background-position: 5px 8px;
}