/* CSS Document */

div#s1 {
  width: 182px;          /* menu width */
  overflow:hidden;
}
div#s1 ul {
	list-style-type: none;
	padding:0;
	margin:0;
	width: 182px;
}
div#s1 ul li {
  margin: 0;
  padding: 0 ;
  display:block;
  width: 182px;
  background-color:#21666D;
  float: left; /* removes whitespace in IE */
  clear: left; /* removes whitespace in IE */
}
div#s1 ul li a {
  display: block;      
  padding: 0;
  margin:0;
  text-decoration: none;
  width:182px;
  background-image:url(/images/nav/nav_bg_21666d.gif); background-repeat:no-repeat; background-position:bottom;

}

/*2nd LEVEL*/

div#s1 ul ul {
  display:block;
list-style-type: none;
	 padding: 0;
  margin:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 182px;
}
div#s1 ul ul li {
  display:block;
   padding: 0;
  margin:0;
  width: 182px;
  background-color:#21666D;
}
div#s1 ul ul li a {
  display: block;         /* lines extend to right, make area clickable */
  width:182px;
  color: #FFFFFF;  
  padding-top: 3px;
  padding-right: 3px;
  padding-bottom: 3px;
  margin-left: 0px;
  text-decoration: none;
  text-indent:17px;
    font-size: 10px;
}

/*3rd LEVEL*/

div#s1 ul ul ul {
display: block;
	list-style-type: none;
	padding:0;
	margin:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 182px;
	background-color:#21666D;
}
div#s1 ul ul ul li {
display: block;
  margin: 0;
  padding: 0;
  width: 182px;
  background-color:#21666D;

}

div#s1 ul ul ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: #FFFFFF;
  margin: 0;
  padding-top: 3px;
  padding-right: 3px;
  padding-bottom: 3px;
  text-decoration: none;
  width:182px;
  font-size: 10px;
  text-indent:34px;
}
div#s1 li.open ul {
  display: block;        /* expand */
}
div#s1 ul li.open a {
  background-color:#0E5257;
}
div#s1 li.open ul li a { /* 2nd level color when parent active */
    background-color:#21666D;
}
div#s1 ul li.closed a {
  background-color:#21666D;
}
div#s1 li.active a {
  background-color:#0E5257;
  color: #FFFFFF;            /* highlight text block  */
}
/* 2nd level color when child active */
div#s1 ul ul li.open a { 
  background-color:#58969C;
}
/*3RD LEVEL OPEN UNDER 2ND*/
div#s1 li.open ul ul li a { 
    background-color:#21666D;
}
div#s1 ul ul li.active a { 
  color: #FFFFFF;
  background-color: #58969C; 
}
/*3rd level color when active */
div#s1 ul ul ul li.active a {
  color: #FFFFFF;
  background-color: #58969C; 
}
div#s1 ul ul li.closed a {
  background-color:#21666D;
}
div#s1 ul li a:hover {
  background-color: #58969C; 
}
div#s1 ul ul li a:hover {
  background-color: #58969C; 
}
div#s1 ul ul ul li a:hover {
  background-color: #58969C; 
}