@charset "UTF-8";
/**
* Default CSS Drop-Down Menu Theme
*
* @file default.css
* @name Default
* @version 0.1
* @type transitional
* @browsers Windows: IE5+, Opera7+, Firefox1+
* Mac OS: Safari2+, Firefox2+
*
* @link http://www.lwis.net/
* @copyright 2008 Live Web Institute. All Rights Reserved.
*
* Module Classes: *.sub {} *.on {} *.open {} li.hover {} li.first {} li.last {}
* Expected directory tag - li
*
*/
/* @import "helper.css"; */
/*-------------------------------------------------/
* @section Base Drop-Down Styling
* @structure ul (unordered list)
* ul li (list item)
* ul li a (links)
* /*\.class|(li|a):hover/
* @level sep ul
*/
/***************************************
The
tags are the "containers".
The - tags are the "items" within the containers.
***************************************/
ul.dropdown {
/* effects all containers and items beneath */
font-family: arial;
}
ul.dropdown li {
/* effects all items beneath */
font-size: 13px;
border: none;
background-color: #fff;
color: #424D6B;
padding: 0px;
}
ul.dropdown li.hover,
ul.dropdown li:hover {
background-color: #fff;
}
ul.dropdown a {
padding: 4px 10px;
width: auto;
height: 100%;
white-space: nowrap;
}
ul.dropdown a:link,
ul.dropdown a:visited {
color: #424D6B;
text-decoration: none;
}
ul.dropdown a:hover {
color: #ee0000;
}
ul.dropdown a:active {
}
ul.dropdown img.toplevel {
padding: 0px 6px;
margin: 0px 3px;
display: block;
/* vertical-align:bottom; /* try this if the above line stops working */
}
ul.dropdown img.png {
behavior: url('/includes/png.htc');
}
/* -- level mark -- */
ul.dropdown ul {
width: 155px;
margin-top: -5px;
margin-left: 6px;
margin-bottom: -1px;
padding-bottom: 5px;
background-color: white;
border-bottom: 1px solid #c2d9ee;
}
ul.dropdown ul li {
font-size: 12px;
padding: 0px;
text-align: left;
}
ul.dropdown ul li.hover,
ul.dropdown ul li:hover {
background-color: #fff;
}
ul.dropdown ul a {
width: auto;
height: 100%;
display: block;
}
ul.dropdown ul ul {
margin-top: 2px;
margin-left: -2px;
}
/*-------------------------------------------------/
* @section Support Class `sub`
* @level sep ul, .class
*/
ul.dropdown *.sub {
/*** EFFECTS the PARENT element of submenus from the FIRST LEVEL (TOP) menu on down ***/
/*
padding-right: 20px;
background-image: url(nav-arrow-down.png);
background-position: 100% 50%;
background-repeat: no-repeat;
*/
}
ul.dropdown ul *.sub {
/*** EFFECTS the PARENT element of submenus from the SECOND LEVEL menu on down ***/
/*
padding-right: 20px;
background-image: url(nav-arrow-right.png);
background-position: 98% 50%;
background-repeat: no-repeat;
*/
}
ul.dropdown ul ul *.sub {
/*** EFFECTS the PARENT element of submenus from the THIRD LEVEL menu on down ***/
}
ul.dropdown *.nopad {
padding: 0px;
}
ul.dropdown *.nolink {
/*** EFFECTS the PARENT element of a submenu that has no nested tag ***/
padding: 7px 10px 7px 10px;
/*
padding-right: 20px;
background-image: url(nav-arrow-down.png);
background-position: 100% 50%;
background-repeat: no-repeat;
*/
}