	/*<style type="text/css" media="screen"><!--.menubuttons *> */
	 
	
div.menubuttons * {
	 margin:0; padding:0;     /* removes margin and padding off all list elements */
	}
	
/* SET YOUR PREFERENCES!!! */
/* set your menu's font and colors here - the MENU MECHANICS  follow below */

div.menubuttons {
  	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10pt;
	width: 600px;
	padding-top: 2px;
	background-color: #000;
	margin-left: 20px;
	margin-top:180px;
	
	  }

div.menubuttons ul {
	font-size: 12pt; 
	font-weight: bold;
	text-transform: capitalize;
	float:left;
	background-color: #000000;
	vertical-align: middle;
	padding-top: 10px;}
 	

div.menubuttons li {
	list-style-type: none;
	width: 145px;
	background-color: #000000;
	float:left;
	text-align: center;
	height: 25px;
 }              
 	  	 

div.menubuttons li:hover {
 background-color:#ddd;      /* background color of hovered menu items */
 }

 div.menubuttons a {
	color:#fff;                     		/* sets the color of all menu type */
 	           		/*creates space top/bottom and left/right respectively around each menu item's text - set vert height in ems   */
	width: 149px;
	padding: 0 5px; 
	border-right: solid 1px white;	

	
	}

/* div.menubuttons li:last-child {
	border-right: 0px;	} */

 div.menubuttons a:hover {
 color:#000;        				 /* type color of a hovered menu choice */
}

div.menubuttons ul li ul {
 width:120px;   						/* sets the width of menu levels 2 - 4 */
 float: left;
 background-color: transparent;
  }
 
div.menubuttons li li { 
	background-color: #ddd; /* background color of the level 2 menu */
	border: 0px solid #ccc;
	border-width: 1px;
	position: relative;
	text-align: left;   
	vertical-align: middle;
 }



div.menubuttons ul li ul li ul  {
 	border-top:0px solid #CCB;     /* set the border-top of levels 3 and 4 of a horizontal menu - set to 0px to remove - for a vertical menu, you will set this for levels 1 - 4 below */
 	top:-1px; /* set to negative value of border-top for perfect pop-out alignment -set to 0 if border is 0 - don't remove! */
 } 
	

div.menubuttons li li li { 
	background-color: #ccc;
	border: 0px solid #ccc;
	border-width: 1px;
	width: 100%;  
	position: relative;
 /* background color of the level 3 menu */
 }

div.menubuttons li li li li { 
 background-color:#DDA;         /* background color of the level 4 menu */
 }

/* END MENU PREFERENCES */
 
/* the menu mechanics start here */


	
div.menubuttons ul {
 /* makes ul wrap li */
	font-size:1em; /* prevents inheritence from main text style sheet */
}

div.menubuttons li {
   /*causes the list to align horizontally instead of stack */
 	list-style-type:none; /* removes the bullet off each list item */
 	position: relative; /* positioning context for the absolutely positioned drop-down */
 	width: 150px;}
 
div.menubuttons a {
 display:block; /* makes link fill li so entire area is "hot" */
 text-decoration:none;  /* removes the underlining from the links */
 }
/* the horizontal menu ends here */


/* the drop-downs starts here */
	div.menubuttons ul li ul { 
 	position: relative;      /* positions the drop-down ul in relation to its relatively positioned li parent */
	border:0;         			/* stops inheritance from level 1 ul */
 	margin-left:0px;        /* stops inheritance from level 1 ul */
 	}
 
div.menubuttons ul li ul li {
	 width:99.5%;
	 padding:0; /* stops inheritance */
	 border-left:0; /* stops inheritance */
	 border-right:0; /* stops inheritance */
 	height: 25px; }
 
div.menubuttons ul li ul {display:none;} /* conceals the drop-down when menu not hovered */

div.menubuttons ul li:hover ul {
	display:block; /* shows the drop-down when the menu is hovered */
	position: relative;
	z-index:1000; /* Safari needs this to display menu on top of other page elements */
	} 

/* pop-outs starts here */
body div.menubuttons ul li ul li ul  {
  	position: relative; /* associated menu with parent li positioning context */
 	visibility:hidden; /* ensures that level 3 menu is not revealed when level 2 is reveled */
	left:0px;
	top:-1px; /* aligns level 3 and 4 pop-out with previous level */}

div.menubuttons ul li ul li:hover ul {visibility:visible;} /* shows level 3 menu when associated level 2 li is hovered */
/* second and third level popouts here*/

div.menubuttons ul li ul li:hover ul li ul {visibility:hidden;} /* ensures that level 4 is not reveal when level 3 is reveled */

div.menubuttons ul li ul li ul li:hover ul {visibility:visible;}  /* shows level 4 menu when associated level 3 li is hovered */
/* the drop-downs end here */
 

 /* END MENU MECHANICS */
 
/* inevitable hacks for IE6  and < */
* html div.menubuttons {
 z-index:1; /* IE6 won't respect high z-index on abs-pos'd child (ul li ul) without this on its parent rel-pos'd element */
 }				/* see http://www.last-child.com/conflicting-z-index-in-ie6/ */
* html div.menubuttons ul li ul {
  z-index:400; /*ensures menu is on top of other page elements */
 }
* html div.menubuttons a {
/* cannot find a way to get the top level 'a' to fill the unwidthed menu choices without drop-down in IE : ( */
} 
 
 * html div.menubuttons ul ul a {/* second level of horiz menu */  /* now IE 'haslayout" - IE now makes background hot in horizontal menus */
 } 
  /* info on haslayout: 
  http://www.sitepoint.com/forums/showpost.php?p=2041209&postcount=24
  http://onhavinglayout.fwpf-webdesign.de/hack_management/
   */
 /* END OF LIST-BASED MENU */

