/*
	project: sanGIS (navigation)
*/

* 									{ margin: 0; padding: 0; }
body								{ font: .74em Arial, Helvetica, sans-serif; } 
a									{ text-decoration: none; }

/* level one */
ul.dropdown                         { position: relative; float:left; z-index: 1000; display: block; list-style: none; width: 900px; }
ul.dropdown li                      { float: left; zoom: 1; background: #fff; }
ul.dropdown li#current 				{ display: block; padding: 4px 8px; border-right: 2px solid #5685d7; color: #222; background: #b3c7e7; } /* current page */
ul.dropdown a:hover		            { color: #b3c7e7; }
ul.dropdown a:active                { color: #b3c7e7; }
ul.dropdown li a                    { display: block; padding: 4px 8px; border-right: 2px solid #5685d7; color: #222; }
ul.dropdown li:last-child a         { border-right: none; } /* doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { background: #b3c7e7; color: black; position: relative; }
ul.dropdown li.hover a              { color: black; }

/* level two */
ul.dropdown ul 						{ width: 220px; visibility: hidden; position: absolute; top: 100%; left: 0; list-style: none; }
ul.dropdown ul li 					{ font-weight: normal; background: #f6f6f6; color: #000; 
									  border-bottom: 1px solid #ccc; float: none; }
									  
                                    /* 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; }