/*
 * Author:   	webmaster at purplepaw.co.uk
 *
 * PageName: 	purplepaw_menu.css
 * Version:	  2.0
 * Updated:	  2008.01.23
 * 
 * Description: CSS for PurplePaw Menu
 * 
 */


/* */
/* Horizontal Dropdown Menu CSS */
/* */
/* Credits: SEO Consultants  */
/* URL: http://www.seoconsultants.com/css/menus/tutorial/ */
/* */

#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 113px;
  float: left;
}

#menu a {
  display: block;
  border: 1px solid #cccccc;
  margin: 0;
  padding: 1px 5px;
  color: #ffffff;
  text-decoration: none;
}

#menu h2 {
  font-size: 1em;
  margin: 0;
  background: url('/images/16-arrow-down.png') no-repeat center right;
}

#menu a.right {
  background: url('/images/16-em-right.png') no-repeat center right;
}

#menu a:hover {
  background-color: #009999;
}

#menu li {
  /* position: relative; */
  background:url(/images/menubackground.png);
}

#menu ul ul {
  position: absolute;
  width: 138px;
  z-index: 500;
}

#menu ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}


/* EOF */

