/*------------------------------------------*/
/*        Suckertree Vertical Menu          */
/* Credits:  Dynamic Drive CSS Library      */
/* URL:  http://www.dynamicdrive.com/style/ */
/*------------------------------------------*/

/* ------------------------------------------------------------- */
/* Top level menu items are 100px (width:90 + border + padding;) */
/* To maintain "centeredness" when a new item is added, increase */
/* width by 100px, e.g., 6 menu items = 600px                    */
/* ------------------------------------------------------------- */

.suckertreemenu { width: 600px; text-align: center; }
.suckertreemenu li { float: left; display: inline; }

.suckertreemenu ul {
	/* font: 10px Showcard Gothic; */
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline; 
	}

.suckertreemenu ul li { /* Top level list items (overall menu) */
	position: relative;
	display: inline;
	float: left;
	background-color: #8d2a1f; 
	}

.suckertreemenu ul li a { /* Top level menu link items style */
	width: 90px;	  /* See note @ top of file */
	padding: 1px 5px;
	border: 1px solid #8d2a1f;
	text-decoration: none;
	color: #ffe0c0;
	display: block; 
	}
	
.suckertreemenu ul li a:hover {
	text-decoration: underline;
	background-color: #8d2a1f;
	color: #ffe0c0; 
	}

.suckertreemenu ul li ul { /* 1st sub level menu */
	position: absolute;
	right: -45px;	/* edit to position submenu below top level */
	top: 1em;	/* don't change; true value set by script   */
	display: block;
	border: 1px solid;
	border-width: 1px 2px 2px 1px; /* b-w: t r b l */
	border-color: #988 #666 #555 #988;
	visibility: hidden; 
	}

.suckertreemenu ul li ul li a { /* Sub level menu links style */
	width: 150px;
	padding: 3px;
	color: #ffe0c0;
	text-decoration: none; 
	}

/* All subsequent sub menu levels offset after 1st level sub menu */
/* don't change (right); true value set by script */
.suckertreemenu ul li ul li ul { right: 59px; top: 0; }

/* For a paragraph (if any) that immediately follows suckertree menu, */
/* add 1em top spacing between the two in IE                          */
* html p#iepara { padding-top: 1em; }
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

