/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
#dropdown-holder {
	/*
		This is just the holder and how you want what is behind the
		main menu links too look like
	*/
	top: 11px;
	width: 539px;
	background-color:#000;
	filter:alpha(opacity=80);-moz-opacity:.80;opacity:.80;
	padding-left:10px;
	left:207px;
	height:64px;
	position:absolute;
	text-align:center;
	z-index:10;
}

.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	padding-top:25px;
	height:64px;
	vertical-align:middle;
	z-index:10000;
}

.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width:63px;
	font-size:12px;
	font-weight:bold;
	display:block;
	padding:6px;
	color:#FFF;
	text-decoration:none;
	padding-top:24px;
	padding-bottom:24px;
}
.dropdown a:hover{
	color:#F60;
	background-color:#666;
}
.dropdown ul {
	top:63px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:125px;
	background-color:#0a0a0a;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	/*filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;*/
	padding-top:5px;
	padding-bottom:5px;
}
.dropdown li ul {
	border-top: solid 1px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li a{
	border-bottom: solid 1px #000000;
	border-top: solid 1px #333333;
	border-left: solid 1px #000000;
	border-right: solid 1px #333333;
}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../images/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
	z-index:100;
}

/************************************************************
MENU SECUNDARIO
************************************************************/
#dropdownDos {
	width: 551px;
	background-color: #333;
	height:36px;
	position: relative;
	text-align:center;
	z-index:10;
}

.dropdown2 {
	/*
		OVER ALL LINE HEIGHT
	*/
	
	height:36px;
	vertical-align:middle;
	z-index:10000;
}

.dropdown2 a {
	/* The minimum width of the "MAIN" links on top */
	min-width:95px;
	font-size:12px;
	font-weight:bold;
	display:block;
	padding:11px;
	color:#FFF;
	text-decoration:none;
	
}
.dropdown2 a:hover{
	color:#F60;
	background-color:#666;
}
.dropdown2 ul {
	top:35px;
}
.dropdown2 li ul a{
	/* The width of the dropdown and popout menu */
	width:125px;
	background-color:#0a0a0a;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	/*filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;*/
	padding-top:5px;
	padding-bottom:5px;
}
.dropdown2 li ul {
	border-top: solid 1px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li a{
	border-bottom: solid 1px #000000;
	border-top: solid 1px #333333;
	border-left: solid 1px #000000;
	border-right: solid 1px #333333;
}
.dropdown2 a.popout {
	/* totally optional popout indicator */
	background-image: url(../images/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
	z-index:100;
}

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown {
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown a {
	display:block;
}
.dropdown li{
	float:left;
	position:relative;
	display: block;
}
.dropdown ul {
	position:absolute;
	display:none;
}
.dropdown li ul a{
	float:left;
}
.dropdown li ul {
	float:left;
}
.dropdown li ul li{
	float:left;
	position:relative;
}
.dropdown ul ul{
	top:0;
	left:100%;
}
.dropdown li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
}
.dropdown li:hover ul ul, .dropdown li:hover ul ul ul, .dropdown li:hover ul ul ul ul{
	display:none;
}
.dropdown li:hover ul, .dropdown li li:hover ul, .dropdown li li li:hover ul, .dropdown li li li li:hover ul{
	display:block;
}

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown2 {
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown2 ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown2 a {
	display:block;
}
.dropdown2 li{
	float:left;
	position:relative;
	display: block;
}
.dropdown2 ul {
	position:absolute;
	display:none;
}
.dropdown2 li ul a{
	float:left;
}
.dropdown2 li ul {
	float:left;
}
.dropdown2 li ul li{
	float:left;
	position:relative;
}
.dropdown2 ul ul{
	top:0;
	left:100%;
}
.dropdown2 li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
}
.dropdown2 li:hover ul ul, .dropdown2 li:hover ul ul ul, .dropdown2 li:hover ul ul ul ul{
	display:none;
}
.dropdown2 li:hover ul, .dropdown2 li li:hover ul, .dropdown2 li li li:hover ul, .dropdown2 li li li li:hover ul{
	display:block;
}
