﻿.menu ul{
margin: 0;
padding: 0;
width: 160px; /* Width of Menu Items */
/*border-bottom: 1px solid #ccc;*/
}
	
.menu ul li{
position: relative;
list-style-type: none;
}
	
/*Sub level menu items */
.menu ul li ul{
position: absolute;
width: 170px; /*sub menu width*/
top: 0;
visibility: hidden;
}

/* Sub level menu links style */
.menu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #fff;
padding: 1px 5px;
/*border: 1px solid #ccc;*/
border-bottom: 0;
}

.menu ul li a:visited{
color: black;
}

.menu ul li a:hover{
/*background-color: yellow;*/
color: #CD2033;
}

.menu .subfolderstyle{
background: url(../../Resources/images/arrow-list.gif) no-repeat center right;
}

	
/* Holly Hack for IE \*/
* html .menu ul li { float: left; height: 1%; }
* html .menu ul li a { height: 1%; }
/* End */

