#menu {
  width: 1024px;
  height: 40px;
  clear: both;
  font-family:Purisa;
}

@font-face { font-family:Purisa;
    src:url(../fonts/Purisa-BoldOblique.ttf); 
    }

ul#nav {
  float: left;
  width: 1024px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #152631 url(../img/menu-parent.png) repeat-x;
  -moz-border-radius-topright: 15px;
  -webkit-border-top-right-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -webkit-border-top-left-radius: 15px;
  font-family:Purisa;  
  
}

ul#nav li {
  display: inline;
  font-family:Purisa;
}

ul#nav li a {
  float: left;
  font: bold 1.1em arial,verdana,tahoma,sans-serif;
  line-height: 40px;
  color: #565759;
  text-decoration: none;
  text-shadow: 1px 1px 1px #58595d;
  font-family:Purisa;
  margin: 0;
  padding: 0 30px;
  background: #152631 url(../img/menu-parent.png) repeat-x;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;     
}

/* APPLIES THE ACTIVE STATE */
ul#nav .current a, ul#nav li:hover > a  {
  color: #565759;
  text-decoration: none;
  text-shadow: 1px 1px 1px #58595d;
  font-family:Purisa;
  background: #152631;

}

/* THE SUBMENU LIST HIDDEN BY DEFAULT */
ul#nav  ul {
  display: none;
}

/* WHEN THE FIRST LEVEL MENU ITEM IS HOVERED, THE CHILD MENU APPEARS */
ul#nav li:hover > ul {
  position: absolute;
  display: block;
  width: 920px;
  font-family:Purisa;
  height: 45px;
  position: absolute;
  margin: 40px 0 0 0;
  background: #152631 url(../img/menu-child.png) repeat-x;  
  
}

ul#nav li:hover > ul li a {
  float: left;
  font: bold 1.1em arial,verdana,tahoma,sans-serif;
  line-height: 45px;
  font-family:Purisa;
  color: #565759;
  text-decoration: none;
  text-shadow: 1px 1px 1px #58595d;
  margin: 0;
  padding: 0 30px 0 0;
  background: #152631 url(../img/menu-child.png) repeat-x; 
}

ul#nav li:hover > ul li a:hover {
  color: #120000;
  font-family:Purisa;
  text-decoration: none;
  text-shadow: none;
}

