/* Main Navigation */
#nav {
    position:absolute;
    width:100%;
    margin:0 auto; 
    margin-top:-30px;
    padding:8px;
    margin-left: 0px;
    z-index: 999px;
}

/* IE7 */
*+html #nav {
    margin-top:-12px;
    margin-left: 30px;
    z-index: 999;
}

/* IE7 */
*+html ul#navigation ul, ul#navigation ul li ul {    
    z-index: 999;
}



/* IE8 */
*+html #nav {
    margin-top:-12px;
    margin-left: 30px;
    z-index: 999;
}


/* IE7 */
*+html .ui-layout-unit-content .ui-widget-content{
	overflow-y:hidden !important;
	padding-top:0px !important;
	margin-top:0px !important;
	z-index: 999;
}

 
ul#navigation {
    margin:0px -50px;
    position:relative;
    float:left;
    }
 
ul#navigation li {
	font-family: Arial;
	font-size:12px;
    display:inline;
    font-size:12px;
    font-weight:bold;
    margin:0;
    padding:0;
    float:left;
    position:relative;    
}
 
ul#navigation li a {
    padding:10px 15px;
    color:#FFF;
    text-decoration:none;
    display:inline-block;
     
    -webkit-transition:color 0.2s linear, background 0.2s linear;   
    -moz-transition:color 0.2s linear, background 0.2s linear;  
    -o-transition:color 0.2s linear, background 0.2s linear;    
    transition:color 0.2s linear, background 0.2s linear;   
}
 
ul#navigation li a:hover {
    background:#f8f8f8;
    color:#282828;
}
 
ul#navigation li a.first {
    border-left: 0 none;
}
 
ul#navigation li a.last {
    border-right: 0 none;
}
 
ul#navigation li:hover > a {
    color:#009bff;
    background:#f8f8f8;
}

/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
/*these 2 styles are very important, 
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
}
 
ul#navigation ul, ul#navigation ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;    
/*the next 2 styles are very important, 
being the ones which make the drop-down to stay hidden */
    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999 !important;
    width:330px;
    background:#f8f8f8;
    box-shadow:1px 1px 3px #ccc;
/* css3 transitions for smooth hover effect */
    -webkit-transition:opacity 0.2s linear, visibility 0.2s linear; 
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear; 
    -o-transition:opacity 0.2s linear, visibility 0.2s linear; 
    transition:opacity 0.2s linear, visibility 0.2s linear;     
}
 
ul#navigation ul {
    top: 38px;
    left: 1px;
}
 
ul#navigation ul li ul {
    top: 0;
    left: 330px; /* strong related to width:330px; from above */
}
 
ul#navigation ul li {
    clear:both;
    width:100%;
    border:0 none;
    border-bottom:1px solid #c9c9c9;
}
 
ul#navigation ul li a {
    background:none;
    padding:7px 15px;
    color:#616161;
    text-shadow:1px 1px 0px #fff;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    
}
