@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;
 background: #AD1011 url(/template_images/img05.jpg) repeat-x;

	height: 40px;
}

	ul.dropdown li {
	 padding: 10px 12px; /* controls the spacing around the menu text */
	 border-style: none; /* change this to put lines around nav buttons */
	 border-width: 1px 1px 1px 0;
	 border-color: #000000;
	 color: #000000; /* change text color of dropdown menu items */	 
	 height: 20px; /* this number should be the height of the menu item - top padding - bottom padding */
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #3699E4; /* hover background color of the nav buttons */
	}
/* CHANGE LINK COLOR HERE */

	ul.dropdown a:link { color: #ffffff; text-decoration: none;}
	ul.dropdown a:visited	{ color: #ffffff; text-decoration: none;} 
	ul.dropdown a:hover { color: #000000; }
	ul.dropdown a:active	{ color: #A21122; }

	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 0px; /* was originally 1 px, but this created a gap in the hyperlink */
	 background-color: #3699E4; /* Change background-color for dropdown menu */
    
	
	}

	/* MODIFY THIS TO CHANGE THE DROPDOWN COLORS */
	ul.dropdown ul li {
		font-weight: normal;
		border-color: #eee;
		border-style: dotted; /* change this to put lines around nav buttons */
		border-width: 1px 0px;
		}



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


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

}


/* -- 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%;
}