body {
  margin: 0px;
  padding: 0px;
  color: #000000;
  font: normal 12px arial, helvetica;
  text-align: left;
}

.style7 {
  font-size: 18px;
  font-weight: bold;
}

.menu ul { margin-left:0px;
 text-align:left;
}       /* kill default 50px left padding and set 20px */
.menu li { margin-bottom:1em; }          /* set default inter-item vertical spacing */


 /*========================= TOP OF THE MENU CASCADE =========================*/
.menu {
  position:relative;
  margin-left:-17px;
  padding: 0px 17px 0 17px;
  border-bottom:0px solid #fff;
  font-family: Arial;
  background:#00000;
 width:100%;
z-index:1000;
}

.menu ul {
    position:relative; 
	padding:0 0 0 0px;
	margin:0 auto;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */
.menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0 0px;
    padding: 0px;
    border:0px solid;
}

.menu li.last {
  margin-left:0px;
}

.menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}
/*======================== TOP LEVEL MENU DEFINITIONS ========================*/
.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:0px;                               /* this is our box border width */
 font-size:14px;
 border-left:1px solid #bfc4d1;
 border-bottom:1px solid #bfc4d1;
 border-right:1px solid #bfc4d1;
}
.menu li ul li {
 margin-left:0px;
 font-weight:normal;
 border-bottom:0px solid #fcb11a;
 padding: 0px; 
}
.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
  margin-left: 1px;
  padding: 3px 7px 3px 7px;
  float: left;
  color: #3A5061;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border:0px solid;
  background-color: #B9CDD3;
}
.menu ul li.c1 a, .menu ul li.c1 a:visited {
  border-left:0px;
}

.menu ul li:hover a,
.menu ul li a:hover {
                     /* selected top-level menu items */
  border-bottom:0px solid #000;    /* these 2 lines create the push-in illusion */
  text-decoration:none;
  color:#FFF;
  background-color: #6C8FAE;
}

.menu .more {border:0px solid;
   text-align:right;float:right;
   margin-right:-15px;
}
/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/
.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0 auto;
	top:24px;              /* place us just up underneath the top-level images */
	left:0px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:100%;
min-width:250px;
	color:#000000;                        /* this sets the unselected-text color */
	background:#B9CDD3;         /* this sets our menu's effective "border" color */
        padding:0px 0px 0px 0px;
	z-index:999;
	border-left:0px solid #000;
	border-bottom:0px solid #000;
	border-right:0px solid #000;
border-top: 2px solid #FFF;
-moz-box-shadow: 0px 5px 8px #635245;
-webkit-box-shadow: 0px 5px 8px #635245;
box-shadow: 0px 5px 8px #635245;
}

.menu ul li:hover ul li,
.menu ul li a:hover ul li,
.menu ul li:hover ul li,
.menu ul li a:hover ul li {
 width:100%;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a,
.menu ul li:hover ul li a:visited,
.menu ul li a:hover ul li a:visited

 {                   /* 2nd level unselected items */
    border:0px solid; 

	font-size:12px;
	margin:0;
        padding:0px 5px 5px 15px;
        font-weight:normal;
        background:#B9CDD3;
        color:#000000;
        display:block;width:78%;
		/* this sets the unselected drop-down text color */
	       /* this sets the drop-down menu background color */

}
.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
  text-decoration: underline;
  color:#FFF;
}