/*
 Author: bob quinn <rcq@sockets.com>
 Date:   10/14/08
 Description:
  Customized listmenu_v.css sample of "freestyle menus" v1.0 RC1 from twinhelix.com 
  (by Angus Turnbull).  This is a vertical version of a drop down menu that uses
  CSS <span> styles on the text in the menu items.  
*/

/* Menu Text styling */
.menutext {
	font-family:"Times New Roman", Times, serif;
	font-size: 160%;
	line-height: 32px;
	color: #000066;
}
.menusubtext {
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size: 77%;
	line-height: 28px;
	color: #0066cc;
/*	color: #CC0000; */
}
.blankblock p {
     line-height: 3.5px;
	 font-size: 1%;  
}

/* VERTICAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 float: right;
 margin: 0px 0 0 400px;
 padding: 0;
 width: 365px;
 list-style: none;
 border-left: none; 
}
/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {
 display: none;
 width: 210px;
/* top: 20px;      BQ: was -1, which moves it up  */
/* left: 365px;    BQ: Actually, moves submenu *right*.  Should match width (above)
                         but since top menu width differs, need ul ul setting (next). */
/* position: absolute; */
/* position: relative; BQ: if this used, menu cmd box expands to height of submenu */ 
}

.menulist ul ul {
 left: 170px;  /* added to adjust to narrower submenu width */
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
 BQ: had to put background (image) here to get top level menu items
*/
.menulist li {
 /* position: relative; */
/* left: 100;  BQ This did nothing (with position relative) */
 border: 1px solid #cccccc; 
/* background: #FED; */
 background: #F0F0F8 url(../images/unhover.jpg) left repeat-y; 
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 15px; 
 color: #000;
/* border: 1px solid transparent; */
 margin: 0;
/* display: block; */
/* padding: 3px; */
 color: #000;
 text-decoration: none;
}

/*
 List items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ff0000;
/* background: #A64; */
    background: #46a url(../images/hover.jpg) left repeat-y; 
}
.menulist a.highlighted {
 color: #ff9999;
/* background: #C86; */
     background: #68c url(../images/unhover.jpg) left repeat-y; 
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
 width: 15px;  /* BQ: moves arrow left, but also submenu */
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */