/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop2.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* style the outer div to give it width */
.ddmenu {
	position: absolute;
	z-index: 200;
	width: 980px; 
	font-size: 14px;
padding-bottom: 100px;
}

/* remove all the bullets, borders and padding from the default list styling */
.ddmenu ul {
padding: 0px;
margin: 0px;
list-style-type:none;
}

.ddmenu ul ul {
	width:157.5px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.ddmenu li {
position:relative;
float:left;
	width:158.5px; /* width of top level menu items */
}

/* style the links for the top level */
.ddmenu a, .ddmenu a:visited {
	width: 157.5px; 
height: 36px; 
padding-top:6px; 
padding-bottom:0px; 
display:block;
	font-size: 12px;
	text-align: center;
text-decoration:none; 
/*color:#fff; */
	border: 0px none #fff; 
/*background:#758279; */
	line-height: 15px; /*was 46px*/
	color: #FF99FF;
	background-color: #000;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #000, #444);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#000', EndColorStr='#444', GradientType=0);
    border-right: 1px solid #444;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .ddmenu a, * html .ddmenu a:visited {
	width:157.5px;
	w\idth:156.5px;
}

/* style the top level hover */
.ddmenu a:hover, .ddmenu ul ul a:hover{
	color:#fff; 
	background-color: #440044;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #440044, #770077);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#440044), to(#770077));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#440044', EndColorStr='#770077', GradientType=0);
}

.ddmenu :hover > a, .ddmenu ul ul :hover > a {
	color:#FFF;
	background-color: #440044;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #440044, #770077);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#440044), to(#770077));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#440044', EndColorStr='#770077', GradientType=0);
}

/****** NEW ******/
.ddmenu ul ul {
	margin-top: 5px;
	width: 200px;
}

/****** NEW ******/
.ddmenu ul ul a {
	margin-top: -5px;
	margin-left: -21px;
	width: 200px;
}


/* style the second level background */
.ddmenu ul ul a.drop, .ddmenu ul ul a.drop:visited {
	margin: 0px;
	background:#000;
}

/* style the second level hover */
.ddmenu ul ul a.drop:hover{
	color:#FFF;
	background-color: #440044;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #440044, #770077);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#440044), to(#770077));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#440044', EndColorStr='#770077', GradientType=0);
}

.ddmenu ul ul :hover > a.drop {
	background-color: #440044;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #440044, #770077);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#440044), to(#770077));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#440044', EndColorStr='#770077', GradientType=0);
}

/* style the third level background */
.ddmenu ul ul ul a, .ddmenu ul ul ul a:visited {
	background-color: #000;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #000, #444);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#000', EndColorStr='#444', GradientType=0);
    border-right: 1px solid #444;
}

/* style the third level hover */
.ddmenu ul ul ul a:hover {
	background-color: #440044;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #440044, #770077);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#440044), to(#770077));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#440044', EndColorStr='#770077', GradientType=0);
}

.ddmenu ul ul ul :hover > a {
	background-color: #440044;
	 /* Mozilla: */
    background: -moz-linear-gradient(top, #440044, #770077);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear, left top, left bottom, from(#440044), to(#770077));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#440044', EndColorStr='#770077', GradientType=0);
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.ddmenu ul ul {
visibility:hidden;
position:absolute;
	top:41px;
left:0; 
height:0;
	width:160px;
}

/* another hack for IE5.5 */
* html .ddmenu ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menu */
.ddmenu ul ul ul{
	left:200px; 
top:0;
	width:160px;
}

/* position the third level flyout menu for a left flyout */
.ddmenu ul ul ul.left {
	left:-160px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.ddmenu table {position:absolute; top:0; left:0;}

/* style the second level links */
.ddmenu ul ul a, .ddmenu ul ul a:visited {
height:auto; 
	width:159px
	background: #444433; 
	font-size: 12px;
	color: #FF99FF; 
	line-height: 18px; 
	padding: 5px 0px; 
/* yet another hack for IE5.5 */
}

* html .ddmenu ul ul a{
width:160px;
w\idth:139px;
}





/* make the second level visible when hover on first level list OR link */
.ddmenu ul li:hover ul,
.ddmenu ul a:hover ul{
visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */
.ddmenu ul :hover ul ul{
visibility:hidden;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.ddmenu ul :hover ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.ddmenu ul :hover ul :hover ul{ 
visibility:visible;
}

/* make the fourth level visible when you hover over third level list OR link */
.ddmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}