/* menu */
/* ================================================================ 
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/basic_dd.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.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul {
list-style-type:none;
padding: 0;
margin: 0 0 0 31px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

li#lcol {background: url(lcol.jpg); width: 14px; height: 34px;}
li#rcol {background: url(rcol.jpg); width: 20px; height: 34px;}

/* use the table to position the dropdown list */
.menu table{
position: absolute;
border-collapse: collapse;
z-index:80;
left:-1px;
top: 30px;
}

/* style all the links */
.menu a {
display:block;
font-size:11px;
font-weight: normal;
width: 56px;
padding: 7px 0 12px 0;
color: white;
background: url(menu_body.jpg) right top no-repeat;
text-decoration:none;
margin-right: 0px;
margin-left: 0px;
text-align: center;
}

/* style the links hover */
.menu :hover{
color: #0F83FF;
background: #0a0a65;
}



.menu a:visited {color: white; font-weight: normal;}
.menu a:hover {color: #0F83FF;}
.menu ul li a:hover {background: url(menu_body.jpg);}

.menu li.kreska {background: url(menu_kreska.jpg) no-repeat; width: 5px; height: 34px;}
.menu li.lilong a {width: 112px;}
.menu li.limid a {width: 92px;}

.menu ul li ul li {border-bottom: solid 1px silver;}
.menu ul li ul li a {width: 122px; padding: 6px 0; background: #0a0a65;}
.menu ul li ul li a:hover {background: #0a0a65;}
.menu ul li ul li a.libg {background: url(libg.gif) left top no-repeat; padding-top: 10px;} 
.menu ul li ul li a.libg:hover {background: #FBFBFB url(libg.gif);}



/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:112px;
height:0;
margin-left: 0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}