@charset "utf-8";
/* CSS Document */

.ddm {
background-color:#FFFFFF;
height:100%;
margin:0;
padding:0;
position:relative;
width:588px;
/*fullsize width of drop down menu*/
z-index:100;
}

.ddm a{
	text-decoration:none;
	font-family:Arial;
	font-size:9px;
}

/* remove all the bullets, borders and padding from the default list styling */
.ddm ul {
color:#cccccc;
padding:0;
margin:0;
list-style-type:none;
line-height:1.4em;
/*position:relative;*/
z-index:200;
}

.ddm ul a, .ddm ul a:hover {
	text-decoration:none;
	color:#FFFF00;
}
.ddm ul ul li, .ddm ul ul ul li {
	z-index:500;
}
.ddm ul ul {
width:160px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown ddm positon */
.ddm li {
	float:left;
	height:15px;
	position:relative;
}
/* style the links for the top level */
.ddm a, .ddm a:visited {
display:block;
font-size:12px;
text-decoration:none; 
color:#ffffff;
padding-left:0px;
padding-bottom:0px;
margin-bottom:0px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .ddm a, * html .ddm a:visited {
width:16px;
w\idth:16px;
}

/* style the second level background */
.ddm ul ul a.drop, .ddm ul ul a.drop:visited {
/*background:#d4d8bd url(../../graphics/drop.gif) bottom right no-repeat;*/

}
/* style the second level hover */
.ddm ul ul a {
	display:block;
	color:#FFFFFF; /*FONT COLOR OF 1ST LEVEL TEXT*/
}
.ddm ul ul a.drop:hover{
background:#c9ba65;

}
.ddm ul ul :hover > a.drop {
background:#c9ba65;
}
/* style the third level background */
.ddm ul ul ul a, .ddm ul ul ul a:visited {
background-image:url(images/bg.jpg);
background-repeat: repeat-y;
}
/* style the third level hover */
.ddm ul ul ul a:hover {
/*background:black;*/
color:#FFFF00;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.ddm ul ul {
visibility:hidden;
position:absolute;
z-index:300;
height:0;
top:23px;/*to move drop down menu*/
left:0; 
width:160px;
}
/* another hack for IE5.5 */
* html .ddm ul ul {
top:25px;
t\op:25px;
}

.ddm ul ul li {
	padding-left:0px;
}

/* position the third level flyout ddm */
.ddm ul ul ul{
left:160px; 
top:0;
width:160px;
z-index:400;
}
/* position the third level flyout ddm for a left flyout */
.ddm ul ul ul.left {
left:-160px;
}

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

/* style the second level links ***************************/
.ddm ul ul a, .ddm ul ul a:visited {
background-image:url(images/bg.jpg);
background-repeat: repeat-y;
color:#ffffff;
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:160px
}
/**********************************************************/
* html .ddm ul ul a{
width:160px;
w\idth:129px;
}
/**********************************************************/
.ddm a:hover{
	color:#ffff00; 
	height: 15px;
}

/* style the top level hover */
.ddm ul ul a:hover{
color:#ffff00; 
/*background:#cc0000;*/
height:auto;
background-image:url(images/bg.jpg);
background-repeat: repeat-y;
}
/*.ddm :hover > a, .ddm ul ul :hover > a {
color:#FFFF00;
}*/

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

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

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

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