/* TODO: Make sizes, fonts, and colors configurable */
.Menu {
  font-family: Arial, sans-serif;
  font-size: 12px;
  padding: 11px 0 4px 0;

  /*border-bottom: 10px solid #A0CEF8;*/
  /* Since we aren't floating li in this example we don't have to set a height on the div */
}

.Menu ul {
  text-align: center; 
  /* We are using text-align: center on ul to horisontally align our menu */
  margin: 0 ; 
  padding: 0;}

.Menu li {
  display: inline; 
  /* The menu is horizontally aligned using display: inline */
}

.Menu li a {
  text-align: center;
  padding: 9px 1px 5px 0;
  /* Display: block won't work in this example, instead we are using padding to make the hole tab a clickable link */
  text-decoration: none;
  outline: none;
  font-weight: bold;
}

.Menu li span {
  padding: 0 0 0 5.5px;
}


/* ***********
 * COLOR STYLE 
 * ***********/

/* MENU */
/* top CC6699 */
/* bottom 993366 */

.Menu {background-color: transparent; }

.Menu li a { 
  color: #fff;
}

.Menu li a:hover, 
.Menu li.active a { 
    color: #B2735C; 
    text-decoration: none;
}

.Menu li span {
}

.Menu li.first-of-type span {
  border-left: 0;
}
.Menu li.last-of-type span {
  border-left: 0;
}

/*
 * Bottom Menu
 */
.btm{
  padding: 6px 0px 9px 0px;
}
.btm li a {
  padding: 6px 1px 9px 0;
}

.btm li span {
  padding: 0 0 0 5px;
}

.btm {background-color: #98012E; }

.btm li a { 
  color: #fff;
}

.btm li a:hover, 
.btm li.active a {
  color: #B2735C;
}

/*
 * Side Menu
 */
#sd-menu ul {
  font: 16px Helvetica, Verdana, Geneva, Arial, sans-serif; 
  text-align: center; 
  margin: 0 ; 
  padding: 0 10px;}

#sd-menu li {
  padding: 30px 0 0 0;
  display: block; 
  list-style: none; /* IE */
}

#sd-menu li a { 
  color: #511B06;
  /* Display: block won't work in this example, instead we are using padding to make the hole tab a clickable link */
  text-decoration: none;
  outline: none;
  font-weight: bold;
}

#sd-menu li a:hover, 
#sd-menu li.active a {
  color: #98012E;
}

#sd-menu {background-color: transparent }
