/* ------------- debut menu CSS ---------------- */

/* Display all <a> tags as block-level items */
#menu a { display: block; }

/* Set margin and padding to 0px and remove bullets from all list items */
#menu ul { 
  padding:    0px;
  margin:     0px;
  list-style: none;}

/* Move sub menu items off the screen and out of view until called */
#topMenu li ul {
  position: absolute;
  left: -999em;}

/* Display sub menus when the mouse hovers over the top menu item (Used by JavaScript) */
#topMenu li:hover ul, #topMenu li.showMenu ul { left: auto; }

#menu {
  /* background-image:url(images/menubkg.gif); */
  /* background-color: #CC0000;   Background color of top menu */
  font-family:Verdana, Arial, Helvetica, sans-serif;  /* Font used for all menu items */
  font-size: x-small;  /* Font size of all menu items */
  height: 30px;  /* Height of top menu items */
  line-height: 30px;  /* Line height of top menu items (vertically adjust text) */
  margin: auto;  /* Centers menu on page */
  /* width: 480px;   Width of top menu (must be set to center menu on page) */}

#menu li { float: left; }  /* Display top menu items horizontally from left to right */

#topMenu a { 
  border: 0px;  /* 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 */
  padding-left: 20px;
  padding-right: 20px;
  color: #FFFFFF;  /* Set color of top menu text */

  /* width: 120px;   Top menu item width (adjusted from 150px to account for border width) */}

/* Top Menu Link */
.topMenuLink a {
  color: #FFFFFF;  /* Set color of top menu text */
  font-weight: bold;  /* Make top menu text bold */}

.topMenuLink a:hover {
  background-color: #f7941e; /* Background color of top menu */
  color: #FFFFFF;  /* Set top menu rollover text color */}
  
.topMenuLink a:active {
  background-color: #f7941e; /* Background color of top menu */
  color: #FFFFFF;  /* Set top menu rollover text color */}

.topMenuLink a:visited {
  color: #FFFFFF;  /* Set top menu rollover text color */}

.topMenuLink a#lastMenu { 
  border-right-width: 1px;  /* Add right border to last top menu item */}

/* -- Fin Top Menu */

/* -- Debut Top Menu Left*/

#topMenuLeft a { 
  border: 0px;  /* 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 */
  padding-left: 0px;
  padding-right: 10px;
  text-align:right;
  color:#CC0000;
/* Set color of top menu text */
}

.topMenuLeftLink a {
  color: #CC0000;  /*Set color of top menu text */
  font-weight: bold;  /* Make top menu text bold */}

.topMenuLeftLink a:hover {
  /* background-color: #f7941e;  Background color of top menu */
  color: #CC0000;  /* Set top menu rollover text color */}
  
.topMenuLeftLink a:active {
  /* background-color: #f7941e; Background color of top menu */
  color: #CC0000;  /* Set top menu rollover text color */}

.topMenuLeftLink a:visited {
  color: #CC0000;  /*Set top menu rollover text color */}

.topMenuLeftLink a#lastMenu { 
  border-right-width: 1px;  /* Add right border to last top menu item */}

/* -- Fin Top Menu Left*/
