@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: *.dir {} *.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
 */




ul.dropdown {
 /*font-weight: bold;*/
 font-style: "Arial", Verdana, Sans-serif;
 font-size: 14px;
}

	ul.dropdown li{
         top: 2px;
	 padding: 8px 15px;
	 border-style: none;
	 border-width: 1px 1px 1px 0;
	 border-color: #fff #d9d9d9 #d9d9d9;
	 background-color: transparent;
	 color: #e3d8b1;
	 text-align: left;
	}

	ul.dropdown li > a {	 
	 color: #e3d8b1;
         text-decoration: none;
	}

	ul.dropdown li:hover {
         color: #000000;
         text-decoration: none;
	 background-image: url('../images/nav_rectangle_light.png');
	 background-repeat: repeat;

	}

        ul.dropdown li:hover > a {
         color: #000000;
        }

/*
        ul.dropdown li a:link,
	ul.dropdown li a:visited { color: #e3d8b1; text-decoration: none; }
	ul.dropdown li a:hover	{ color: #000; }
	ul.dropdown li a:active	{ color: #e3d8b1; }
*/
      

	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 border-style: solid;
	 border-width: 1px 1px 1px 1px;
	 border-color: #5b4d31 #5b4d31 #5b4d31;
	 margin-top: 0px;
	 background-image: url('../images/nav_rectangle_light.png');
	 background-repeat: repeat;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 font-size: 14px;
		 }



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 padding-right: 20px;
 background-image: url('../images/nav_down_arrow_light.png');
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


