@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.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
 *
 */


/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */

div.dropdowncontainer {
  padding: 15px 0 3px 0;
  background-color: #ddd;
  margin-left: auto; 
  margin-right: auto; 
  width: 740px;
}

ul.dropdown {
  display: block;
  margin: -20px auto 0 auto;
  padding-top: 0px;
  position: relative;
  z-index: 1;
}

	ul.dropdown li {
	 color: #666;
     font-size: 15px;
     font-weight: bold;
     padding: 3px 10px 0 10px;
     text-decoration: none;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
     border-bottom: 6px solid #000;
     color: #603;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #666; text-decoration: none; }
	ul.dropdown a:hover		{ color: #603; text-decoration: none; }
	ul.dropdown a:active	{ color: #603; text-decoration: none; }


	/* -- level mark -- */

	ul.dropdown ul {
	 margin-top: 1px;
	 width: 150px;
	}

		ul.dropdown ul li {
		 background: #fff;
		 font-weight: normal;
		}

ul li ul li * {
  font-weight: normal;
}

ul.dropdown li ul {
  font-weight: normal;
  margin-top: 6px;
}

ul.dropdown li ul *:hover {
  border-bottom: 0;
}

/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
  

}


/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url(images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}
