/* HORIZONTAL FREESTYLE MENU LAYOUT */

BODY
   {
   color:white;
   font-family:arial,georgia,sans-serif;
   }
a:link {color: #9999CC; text-decoration: underline; }
a:active {color: #0000ff; text-decoration: underline; }
a:visited {color: #9966CC; text-decoration: underline; }
a:hover {color: #ff0000; text-decoration: none; }

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 font-family:georgia,sans-serif;
 font-size:medium;
 margin: 0;
 padding: 0;
 border: 0px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 1.5em; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0px;
 width: 170px;
 border: 1px solid #CCC;
}

#publicitymenu {
  width: 120px;
  height: 69px;
}
#proofmenu {
  width: 170px;
  height: 53px;
}
#thebookmenu {
  width: 130px;
  height: 69px;
}
#presskitmenu {
  width: 130px;
  height: 69px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 175px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 position: relative;
 background: #000;
 border: 0px solid #333;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 border: 0px solid #333;
 margin-right: 0;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 0px;
 color: #999;
 text-decoration:  none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #000;
}
.menulist  a.highlighted {
 color: #FFF;
 background-color: #000;
}

.menulist a#home {
  background-image: url(menugfx/home.jpg);
}
.menulist a#home:hover, .menulist a.highlighted#home, .menulist a:focus {
  background-image: url(menugfx/home_h.jpg);
}
.menulist a#thebook {
  background-image: url(menugfx/thebook.jpg);
}
.menulist a#thebook:hover, .menulist a.highlighted#thebook, .menulist a:focus {
  background-image: url(menugfx/thebook_h.jpg);
}
.menulist a#proof {
  background-image: url(menugfx/proof.jpg);
}
.menulist a#proof:hover, .menulist a.highlighted#proof, .menulist a:focus {
  background-image: url(menugfx/proof_h.jpg);
}
.menulist a#faq {
  background-image: url(menugfx/faq.jpg);
}
.menulist a#faq:hover, .menulist a.highlighted#faq, .menulist a:focus {
  background-image: url(menugfx/faq_h.jpg);
}
.menulist a#publicity {
  background-image: url(menugfx/publicity.jpg);
}
.menulist a#publicity:hover, .menulist a.highlighted#publicity, .menulist a:focus {
  background-image: url(menugfx/publicity_h.jpg);
}
.menulist a#tour {
  background-image: url(menugfx/tour.jpg);
}
.menulist a#tour:hover, .menulist a.highlighted#tour, .menulist a:focus {
  background-image: url(menugfx/tour_h.jpg);
}
.menulist a#presskit {
  background-image: url(menugfx/presskit.jpg);
}
.menulist a#presskit:hover, .menulist a.highlighted#presskit, .menulist a:focus {
  background-image: url(menugfx/presskit_h.jpg);
}
.menulist a#contact {
  background-image: url(menugfx/contact.jpg);
}
.menulist a#contact:hover, .menulist a.highlighted#contact, .menulist a:focus {
  background-image: url(menugfx/contact_h.jpg);
}
.menulist a:focus {
  background: #333;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */