/* Display all <a> tags as block-level items */
#menuMain a { display: block; width: 239px; }

/* Set margin and padding to 0px and remove bullets from all list items */
#menuMain ul { 
  padding:    0px;
  margin:     0px;
  list-style: none;
}

/* Move sub menu items off the screen and out of view until called */
#navMain li ul {
  position: absolute;
  width: 239px;
  left:     -999em;
}

/* Display sub menus when the mouse hovers over the top menu item (Used by JavaScript) */
#navMain li:hover ul, #navMain li.showMyMenuMain ul 
{ left: auto; }

#menuMain {
 /* background-color: #336666;   Background color of top menu */
  font-family: Verdana;  /* Font used for all menu items */
  font-size: 10px;  /* Font size of all menu items */
  height: 18px;  /* Height of top menu items */
  line-height: 18px;  /* Line height of top menu items (vertically adjust text) */
  margin: auto;  /* Centers menu on page */
  width: 239px;  /* Width of top menu (must be set to center menu on page) */
}

#menuMain li { float: left; }  /* Display top menu items horizontally from left to right */

#navMain a { 
  border: 0px solid black;  /* Put border around all menu items */
  border-right-width: 0px;  /* Remove right border from all menu items (to stop double borders between top menu items) */
  text-decoration: none;  /* Remove underline from all menu item links */
  width: 239px;  /* Top menu item width (adjusted from 150px to account for border width) */
}

.navLinkMain a {
  color: #FFFFFF;
  font-weight: normal;  /* Make top menu text bold or normal */
  text-align: center;  /* Center top menu text in menu button */
}

.navLinkMain a:hover {
  background-color: #FFE9CD;  /* Set top menu rollover background color */
  color: #2F5291;
}

.navLinkMain a#lastMenu { 
  border-right: 0px solid black;  /* Add right border to last top menu item */
  width: 239px;  /* Adjust last top menu item width to fit within top menu */
  height:50px;
  line-height:50px;
  background-color:#2F5291;
}

.navLinkMain a#theMenu { 
  border-right: 0px solid black;  /* Add right border to last top menu item */
  width: 239px;  /* Adjust last top menu item width to fit within top menu */
  background-color:#2F5291;
  color:white;
}

.navLinkMain a:hover#theMenu { 
  border-right: 0px solid black;  /* Add right border to last top menu item */
  width: 239px;  /* Adjust last top menu item width to fit within top menu */
  background-color:#FFE9CD;
  color:#2F5291;
}

.subMenuMainLink {
border-right: 0px solid black;  /* Add right border back to dropdowns */
border-top-width: 0px;  /* remove top border from dropdowns */
margin: 0px 0px 0px 0px;
font-size: 11px;  /* Font size of all menu items */
  color:#2F5291;
}

.subMenuMain {
  background-color: #2F5291;  /* Set the background color of the sub menus */
  width: 239px;  /* Set the width of the sub menus */
  color: #FFFFFF;  /* Set the font color of the sub menu items */
}

.subMenuMain a {
  font-weight: normal;	  /* Return the font weight to normal for sub menu items */
  height: 18px;  /* Set the height of the sub menu items */
  margin-top: 0px;  /* Set the top border of each sub menu link to -1px to remove double borders */
  color: #FFFFFF;  /* Set the font color of the sub menu items */
	
}
.subMenuMain a:hover {
  background-color: #FFE9CD;  /* Set sub menu rollover background color */
  color:#2F5291;
}






