@charset "utf-8";
/* CSS Document */

.menu {
 float:left;
 width:165px;
 margin-left:5px;
}

.menuTitle {
 width:170px;
 color:#fff;
 background-color:#777;
 border-bottom:solid 1px #474747;
 height:25px;
 line-height:25px;
 text-indent:10px;
 font-weight:bold;
}

.menuList {
 padding:0;
 margin:0;
 list-style-type:none;
 margin-bottom:10px;
}

.menuListItem {
 text-indent:10px;
}

.menuListSubItem {
 text-indent:20px;
}

.menuItem {
 display:block;
 width:170px;
 height:25px;
 border-top:solid 1px #fff; 
 border-bottom:solid 1px #bbb;
 line-height:25px;
 font-weight:bold;
 text-decoration:none;
 color:#264282;
 background-color:#efefef;
}

.menuItem:hover {
 background-color:#fff;
 color:#000;
}

.menuSubItem {
 display:block;
 width:170px;
 height:25px;
 border-bottom:dotted 1px #777;
 line-height:25px;
 font-weight:bold;
 text-decoration:none;
 color:#264282;
 background-color:#fafafa;
}

.menuSubItem:hover {
 background-color:#fff;
 color:#000;
}

