/* WP Menubar Suckerfish template
 
 Credits:
 Son of Suckerfish Dropdowns
 By Patrick Griffiths and Dan Webb
 http://www.htmldog.com/articles/suckerfish/dropdowns/
 */
#nav_v, #nav_v ul { /* all lists */
    padding: 0;
    margin: 0;
    list-style: none;
    float: left;
}

#nav_v li { /* all list items */
    position: relative;
    float: left;
    margin: 0 0 5px 5px;
    width: 191px;
    line-height: 24px;
    font-weight: bold;
}

#nav_v li.menu_root {
    background-image: url('bg.gif');
    text-indent: 10px;
    height: 25px;
    font-family: trebuchet ms, arial;
    font-weight: bold;
    font-size: 16px;
	text-transform: uppercase;
}

#nav_v li ul { /* second-level lists */
    position: absolute;
    left: -999em;
    width: 191px;
}

#nav_v li ul li { /* second-level lists items */
    background-color: #bedbf5;
    margin: 0;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

#nav_v li ul ul { /* third-and-above-level lists */
    left: -999em;
}

#nav_v li ul ul li{ /* third-and-above-level list items*/
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
	z-index: 999;
}


#nav_v li ul.sub li a {
    display: block;
    width: 191px;
    height: auto;
    color: #0069b8;
    padding: 5px 0 5px 10px;
    font-family: arial;
    font-weight: bold;
    font-size: 12px;
	text-transform: none;
	line-height: normal;
}

#nav_v li ul.sub li a:hover {
    background-color: #0b8ef1;
    color: white;
}

#nav_v li.menu_root a {
    color: white;
}

#nav_v li:hover ul ul, #nav_v li:hover ul ul ul, #nav_v li.sfhover ul ul, #nav_v li.sfhover ul ul ul {
    left: -999em;
}
/* lists nested under hovered list items */
#nav_v li:hover ul, #nav_v li li:hover ul, #nav_v li li li:hover ul, #nav_v li.sfhover ul, #nav_v li li.sfhover ul, #nav_v li li li.sfhover ul {
    left: 191px;
    top: 0px;
    text-indent: 0px;
}

#nav_v li ul li a {
    width: 191px;
}