﻿/* CSS Document */

/*style pentru dropdown menu*/
#nav {text-align:left;
margin:0; padding:0;
z-index:100;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;

	
}

#nav a {
	text-decoration:none;
	color:#FFA688;
	display: block;
	padding:0px;
	z-index:100;
	
}

#nav li { /* all list items */
	float: left;
	width: 136px; /* width needed or else Opera goes nuts */
	margin-top: 25px;
	margin-left: 7px;

}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #202020;
	width: 150px;
	top:45px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-bottom:2px solid #4D4D4D;
	border-right:2px solid #4D4D4D;
	z-index:100;
}

#nav li ul li { font-size: 13px; 	padding-bottom: 10px; margin-top: 10px;}

#nav li ul ul { /* third-and-above-level lists */
	position:absolute; margin:-35px 0 0 142px;
	background:#202020;
	z-index:100;

}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
	background:#202020;
	z-index:100;

}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index:100;

}

.home {width:39px !important; background:url(../images/btn_home_normal.gif) 0 0 no-repeat;}
.upcoming {width:153px !important;background:url(../images/btn_upcoming_normal.gif) 0 0 no-repeat;}
.news {width:76px !important;background:url(../images/btn_lnews_normal.gif) 0 0 no-repeat;}
.press {width:69px !important;background:url(../images/btn_press_normal.gif) 0 0 no-repeat;}
.media {width:40px !important;background:url(../images/btn_media_normal.gif) 0 0 no-repeat;}
.biography {width:29px !important;background:url(../images/btn_biography_normal.gif) 0 0 no-repeat;}
.photo {width:91px !important;background:url(../images/btn_photo_normal.gif) 0 0 no-repeat;}
.stuff {width:35px !important;background:url(../images/btn_stuff.gif) 0 0 no-repeat;}
.contact {width:68px !important;background:url(../images/btn_contact.gif) 0 0 no-repeat;}

.home, .upcoming, .news, .press, .biography, .photo, .stuff, .contact, .media {
	height:18px;
	overfow:hidden;
	padding:0 !important;
}

.hidden {float:left; display:block; margin-top:-1000px;}
/*end dropdown*/