@charset "UTF-8";

/** 
 * Default Linear CSS Drop-Down Menu Theme
 *
 * @file		default.linear.css
 * @name		Default
 * @version		0.1
 * @type		transitional
 * @browsers	Windows: IE7+, Opera7+, Firefox3+
 *				Mac OS: Safari2+, Firefox3+
 *
 * @link		http://www.lwis.net/free-css-drop-down-menu
 * @copyright	2008-2012 Live Web Initiatives, http://www.lwis.net
 *
 */

@import "default.css";


/* -- Base drop-down styling -- */


ul.dropdown {
 width: 828px;  /* This affects width of the general menu  */
 background-color: #fff;  /* This affects the back of the general menu basically behind the buttons  */
 border-bottom: solid 1px #999;   /* This is the line seperating the genaral menu and the submenu  */
}

	ul.dropdown li {
	 border: none;
	 background-color: #fff;   /* This is the bg color of the genaral buttons when not hovering  */
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #fff;   /* This is the bg color of the buttons when hovered  */
	 color: #000;
	}

	/* -- level mark -- */

	ul.dropdown ul {
	 width: 828px;   /* This affects the width of the submenu  */
	 margin-top: 0;
	 border-top: solid 1px #999;   /* This is also the line seperating the menu but seem this one controls the same line from the submenu  */
	 background-color: #fff;  /* This affects the back of the submenu basically behind the buttons  */
	}

		ul.dropdown ul li {
		 background-color: #fff;   /* This is the bg color of the submenu buttons when not hovering  */
		}

		ul.dropdown ul li.hover {
		 margin: 0;
		 border: none;
		}


/* -- Supporting class `dir` -- */

ul.dropdown ul li *.dir {    /* Added the (li) to indicate that image next to link is for the submenu  */
 padding-right: 7px;        /* Seems to be the space between the text links  */
 background-image: none;
}