#cats {
	padding:0;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
    margin: 0;
    padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
    list-style-type: none;
    
    margin-bottom: 3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
    cursor: hand !important;
    cursor: pointer !important;
    padding-bottom:10px;
}

.treeview li.submenu div.submenubox {
    padding-left:7px;
    padding-top:5px;
    width:196px;
    height:27px;
    background:#b8b8b8;
    margin-bottom: 5px;
    font-size:11pt;
    text-transform: uppercase;
}

.treeview li.submenu a,.treeview li.submenu a:visited{
    border:none;
    font-weight:bold;

    color:#ffffff !important;
}
.treeview li.submenu a:hover,.treeview li.submenu a:visited:hover{
    border:none;
    font-weight:bold;

    color:#ffffff !important;
}

.treeview li.submenu ul li a,.treeview li.submenu ul li a:visited{ 
    border:none;
    font-weight:normal;
    color:#F8B8BA;
    font-size:9pt !important;

}

.treeview li.submenu ul li a:hover,.treeview li.submenu ul li a:visited:hover{ 
    border:none;
    font-size:9pt !important;
    font-weight:normal;
    color:#FFFFFF;
    border-bottom:1px #FF0D0D solid;
}


.treeview li.submenu ul{
    padding-left: 10px;
    display: block; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
    cursor: pointer;
    line-height:18px;
    padding-top:10px;
    background:transparent url(../images/list-line.gif) repeat-x scroll center top !important;
}
/*
.treeview .submenu ul li:hover {
	font-weight:bold;
	background:#9e121b !important;
	color:#000;
}
*/