/* CSS Document */

/* 
	LEVEL ONE
*/
ul.dropdown                         { color: #fff; position: relative;  margin-left: 100px; }
ul.dropdown li                      { color: #fff; font-weight: bold; float: left;   font-size: 1.10em;  display: inline; list-style:none !important;  padding:3px 13px 0 13px;	background: url("../images/nav-bg0.gif") repeat-x scroll left top transparent;border-right-width: 1px;border-style: solid; border-color: rgb(0, 51, 153);  margin-top: -2px; }
.last-child {/*background:none !important;*/border-right-width: 0px !important;}
ul.dropdown a:hover		            {  color: #fff;  text-decoration: none !important; }
ul.dropdown a:active                {  color: #fff; }
ul.dropdown li a                    { display: block; padding: 0px 3px; text-decoration:none;text-transform: uppercase;
	 								   color: #003399; }
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { background: none; color: #fff; position: relative; }
ul.dropdown li.hover a              { text-decoration: underline !important;}


/* 
	LEVEL TWO
*/
ul.dropdown ul 						{ width: 90px; visibility: hidden; position: absolute; top: 100%; left: 0px; padding-left:12px; }
ul.dropdown ul li 					{ background: none !important; 
									  border-bottom: 1px solid #ccc; float: none; font-size: 0.90em !important; white-space:nowrap; padding:0px !important;	}
									  
                                    /* IE 6 & 7 Needs Inline Block 
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; } */

/* 
	LEVEL THREE
*/
ul.dropdown ul ul 					{ left: 100%; top: 0; }
ul.dropdown li:hover > ul 			{ visibility: visible; }

.sub_menu {background: #f3f3f3; /* Old browsers */
background: -moz-linear-gradient(top, #f3f3f3 0%, #eaeaea 3%, #e3e3e3 37%, #d2d2d2 90%, #d2d2d2 97%, #e3e3e3 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(3%,#eaeaea), color-stop(37%,#e3e3e3), color-stop(90%,#d2d2d2), color-stop(97%,#d2d2d2), color-stop(100%,#e3e3e3)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #f3f3f3 0%,#eaeaea 3%,#e3e3e3 37%,#d2d2d2 90%,#d2d2d2 97%,#e3e3e3 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #f3f3f3 0%,#eaeaea 3%,#e3e3e3 37%,#d2d2d2 90%,#d2d2d2 97%,#e3e3e3 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #f3f3f3 0%,#eaeaea 3%,#e3e3e3 37%,#d2d2d2 90%,#d2d2d2 97%,#e3e3e3 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e3e3e3',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #f3f3f3 0%,#eaeaea 3%,#e3e3e3 37%,#d2d2d2 90%,#d2d2d2 97%,#e3e3e3 100%); /* W3C */  }