/* CSS Document */
a:link, a:visited {
color:#333333;
text-decoration:none; font-weight:bold
}

a:hover {
color:#000000;
text-decoration:underline;
}

#top_menu {
clear:right;
padding:0px 0px 0px 0px;
height:24px;
font-family:Georgia, Helvetica, sans-serif;
font-size:12px;
text-align:left;
background-image:url(/media/cssmenubknd.gif);
background-repeat:repeat-x;
position:relative;
z-index:100;
}

#top_menu ul {
margin:0px;
padding:0px 0px;
list-style-type:none;
z-index:100;
}

#top_menu ul ul {
width:170px;
z-index:100;
}

#top_menu li{
float:left;
position:relative;
border-right:1px solid #666666;
}

#top_menu a:link, #top_menu a:visited {
display:block;
background-image:url('../images/arrow.gif');
background-repeat:no-repeat; padding-left:10px; padding-right:10px; padding-top:3px; padding-bottom:3px
}

/* style the top level hover */
#top_menu a:hover {
background-image:url('/media/cssmenubkndover.gif');
background-repeat:repeat-x;
text-decoration:none; background-color:#000000

}

#top_menu ul ul{
visibility:hidden;
position:absolute;
height:0;
top:21px;
left:0;
}

#top_menu ul ul ul{
left:196px;
top:0;
width:130px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
#top_menu table {position:absolute; top:0; left:0;}

/* style the second level links */
#top_menu ul ul a:link, #top_menu ul ul a:visited {
background:#b8b18b;
background-image:none;
font-size:12px;
color:#FFFFFF;
height:auto;  
padding:5px 10px;
width:175px;
border-bottom:1px solid #666666;
}

/* style the second level hover */
#top_menu ul ul a:hover{
background-image:none;
background-color:#DEDBC9;
color:#FFFFFF;
text-decoration:none;
}


/* style the third level link */
#top_menu ul ul ul a:link, #top_menu ul ul ul a:visited{
background-image:none;
background-color:#AAAAAA;
color:#333333;
text-decoration:none;
}

/* style the third level hover */
#top_menu ul ul ul a:hover{
background-image:none;
background-color:#363636;
color:#EFEFEF;
text-decoration:none;
}


#top_menu :hover > a {
color:#fff;
background-image:url('/media/cssmenubkndover.gif');
background-repeat:repeat-x;
}

#top_menu ul ul :hover > a {
color:#fff;
background-color:#DEDbc9;
}


/* make the second level visible when hover on first level list OR link */
#top_menu ul li:hover ul,
#top_menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
#top_menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#top_menu ul :hover ul :hover ul{ 
visibility:visible;
}

/* Classes */

.float_left {
float:left;
}

.float_right {
float:right;
}

.clear {
clear:both;
margin:0;
padding:0;
}

.clear_left {
clear:left;
margin:0;
padding:0;
}