@charset "UTF-8";

/**
 * Horizontal CSS Drop-Down Menu Module
 *
 * @file		dropdown.css
 * @package		Dropdown
 * @version		0.7.1
 * @type		Transitional
 * @stacks		597-599
 * @browsers	Windows: IE6+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2006-2008 Live Web Institute. All Rights Reserved.
 *
 */

.topmenu {
float: left;
color: white;
background: transparent url(../imgs/roundleft.gif) no-repeat left top; 
margin: 0 0 0 0;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}

.topmenu span{
float: left;
display: block;
background: transparent url(../imgs/roundright.gif) no-repeat right top; 
padding: 7px 9px 3px 9px;
cursor: pointer;
}
/*
.topmenuSelected {
float: left;
background: transparent url(../imgs/roundleft.gif) no-repeat left top; 
margin: 0 0 0 0;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}

.topmenuSelected span{
float: left;
display: block;
color:#F7BC60;
background: transparent url(../imgs/roundright.gif) no-repeat right top; 
padding: 7px 9px 3px 9px;
cursor: pointer;
}
*/
.menuSelected {
color:#F7BC60;
}

.topdir {
float: left;
color: white;
background: transparent url(../imgs/roundleft.gif) no-repeat left top; 
margin: 1px 1px 1px 1px;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}

.topdir span{
float: left;
display: block;
background: transparent url(../imgs/roundright.gif) no-repeat right top; 
padding: 7px 9px 3px 8px;
cursor: pointer;
width:225px;
}
/*
.topdirSelected {
float: left;
color: white;
background: transparent url(../imgs/roundleft.gif) no-repeat left top; 
margin: 1px 1px 1px 1px;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}

.topdirSelected span{
float: left;
display: block;
color:#F7BC60;
background: transparent url(../imgs/roundright.gif) no-repeat right top; 
padding: 7px 9px 3px 8px;
cursor: pointer;
width:225px;
}
*/

ul.dropdown,
ul.dropdown li,
ul.dropdown ul {

 list-style: none;
 margin: 0;
 padding: 0;
}

ul.dropdown {
 position: relative;
 z-index: 597;
 float: left;
}

ul.dropdown li {
 float: left;
 line-height: 1.3em;
 vertical-align: middle;
 zoom: 1;
}

ul.dropdown li.hover,
ul.dropdown li:hover {
 position: relative;
 z-index: 599;
 cursor: default;
}

ul.dropdown ul {
 visibility: hidden;
 position: absolute;
 top: 100%;
 left: 0px;
 z-index: 598;
}

ul.dropdown ul li {
 float: none;
}

ul.dropdown ul ul {
 top: 1px;
 left: 99%;
}

ul.dropdown li:hover > ul {
 visibility: visible;
}
