/*********************************************************
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
	*/
	/*width: 458px;*/
	/*background-color:#000000;*/
	padding-left:10px;
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:24px;

	margin: 0 auto !important;
display:-moz-inline-stack; /* ��� FF2 */
	display:inline-block; /* ��� ������ */
	zoom:1; /* ��� �� */
	*display:inline; /* ��� �� */
	_overflow:hidden; 


}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 90px;
	font-weight:bold;
	color: #ffffff;
	font-size: 14px;
	padding:0px 10px 0px 10px;
	line-height: 23px;
	text-decoration:none;
}
.dropdown a:hover{
	/*color: #00ccff;
	background-color: #121212;*/
}
.dropdown ul {
position:absolute;
	top:24px;
	left:0;
	width:100%;
	z-index:1;
	display:none;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */

	background-color:#D71921;

	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	
}
.dropdown li ul {

	/* 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 */

}
.dropdown li ul li a{
	display:block;
	padding: 0;
	width:100%;

}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(/images/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
}

/************************************************************
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 {

}
.dropdown li{
	float:left;
	position:relative;
	display: block;
background: #d71921;


}

.dropdown li ul a{
	float:left;
}
.dropdown li ul {
	float:left;
	/*background: #d71921;*/
	min-width:150px;
	
}

.dropdown li ul li{
	float:left;
	position:relative;
		width:100%;

}
.dropdown li ul li a{
	border-top: 1px solid #E25960;
}
.dropdown ul ul{
	top:0;
	left:100%;
}
.dropdown li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
}
.dropdown a:hover
{
 color: #FDECB9;
}
.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;

}
.sub_right
{
	right:0!important;
	left:auto!important;
}
