@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
 */


#nav-wrapper {
	width: 840px;
/*	background-color: #CCCCCC; */
	background-color: #7c0000; 
	height: 32px;
	position:relative;
	float: none;
	clear: both;
}


ul.dropdown {
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:13px;
}

	ul.dropdown li {
	text-transform: none;
	padding: 0px 0px;
/*	background-color: #CCCCCC; */
	background-color: #7c0000; 
/*	color: #000000; */
	color: #ffffff; 
	border-right:#999999 2px solid;
}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
/*	background-color: #999999; */
	background-color: #3A0000;
/*	color: #000000; */
 	color: #ffffff; 

	}

	ul.dropdown li a { color: #ffffff; text-decoration: none; display: block; height: 22px;  line-height:22px; padding: 5px 20px 5px 26px;}

	ul.dropdown li.home a { width: 42px; }
	ul.dropdown li.practice a { width: 212px; }
	ul.dropdown li.info a { width: 92px; }
	ul.dropdown li.case a { width: 212px; }
	ul.dropdown li.blog a { width: 40px; }


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

*/

	/* -- level mark -- */

	ul.dropdown ul {
	 width: 300px;
	 margin-top: 0px;
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 text-transform: none;
		 background-color: #CCCCCC;
		 border: #333333 1px solid;
		 border-top: none;
		 font-size:11px;
		 padding:0;
		 margin:0;

		}

			ul.dropdown ul li.hover,
			ul.dropdown ul li:hover {
			 background-color: #999999;
			 color: #000000;
			 border: #999999 1px solid;
			 border-top: none;

			}
		
			ul.dropdown ul li a:link, ul.dropdown ul li a:visited	{ 
				color: #000000; text-decoration: none; display:block; width:300px; height: 20px; line-height:18px; padding:5px;
 			}
			ul.dropdown ul li a:hover { 
				color: #000000; display:block; width:300px; height: 20px;  line-height:18px; padding:5px;
			}
			ul.dropdown ul li a:active { 
				color: #333333; display:block; width:300px; height: 20px;  line-height:18px; padding:5px;
			}	

