/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.vertical_menu ul {
 margin: 0;
 padding: 0;
 list-style-type: none;
 width: 125px; /* Width of Menu Items */
}

.vertical_menu ul li {
 position: relative;
}

/*Sub level menu items */
.vertical_menu ul li ul {
 position: absolute;
 width: 125px; /*sub menu width*/
 top: 0;
 visibility: hidden;
}

/* Sub level menu links style */
.vertical_menu ul li a {
 display: block;
 width: 125px;
 height: 26px;
 overflow: auto; /*force hasLayout in IE7 */
 color: #fff;
 font-size: 10pt;
 text-decoration: none;
 background: #d3dde3;
 background-image: url(../btn/blank.png);
 background-repeat: no-repeat;
/* padding: 1px 5px 5px 5px; */
 padding-top: 0;
}

.vertical_menu ul li a:visited {
 color: #fff;
}

.vertical_menu ul li a:hover {
/* background-color: #009; */
 color: #99f;
}

.vertical_menu .subfolderstyle {
 background: url(../img/arrow-list.gif) no-repeat center right;
 background-image: url(../btn/folder.png);
 background-repeat: no-repeat;
}

/* Holly Hack for IE \*/
* html .vertical_menu ul li { float: left; height: 1%; }
* html .vertical_menu ul li a { height: 1%; }
/* End */

