/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/


/* ------ main menu links ------ */
/* ------------ main nav area w/ graphics ------------- */
#menu { 
	position: absolute;
	top: 14px;
	left: 230px;
	width: 550px;
	height: 40px;
	font-size: 120%;
	font-family: "lucida grande", lucida, arial, helvetica, sans-serif;
	text-transform: uppercase;
	z-index: 900;
}
#menu .menulist { 
	list-style: none;
	width: 495px;
	left: 55px;
	height: 40px;
}
/*#menu .menulist li {
	float: left;
	display: inline;
	overflow: visible;
}*/

* html #menu {
	font-size: 100%;
}
* html #menu .menulist li a {
	margin: 0px -2px 0px 0px;
	font-size: 95%;
}

#menu a {
	font-style: normal;
}
#menu a:hover {
	font-style: normal;
}


/* HORIZONTAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
 	padding: 0;
	list-style: none;
}
.menulist { 
	position: relative;
	top: 0px;
	left: 0px;
	/*width: 100%;*/ /* total width is 500 */
	margin: 0px;
	margin-left: 0px; /* centers menu */
	text-align: left;
	float: left;
	display: inline;
	overflow: visible;
}


/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul { 
	display: none;
	position: absolute;
	top: 45px;
	/*margin-top: 55px;*/ /* I'm using ems and px to allow people to zoom their font */
	left: 15px;
	width: 140px; /* this width affects IE submenus - leave it! */
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.menulist ul { /* IE submenu positioning fix */
	*left: -30px;
}


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

/*
 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;
	display: block;
	position: relative;
	/*background: #FED;
	border: 1px solid #330;
	margin-right: -1px;*/
}

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

/* Links inside the menu */
.menulist a {
	display: inline-block; 
	display: block;
	padding: 0px;
	text-align: left;
	font-size: 100%;
	text-decoration: none;
	background-color: none;
}
* html .menulist a {
	display: inline-block;/* fixes extra whitespace in links list bug for IE */
}

.menulist a.standard { margin-left: 0px;
	padding: 4px 10px 4px 15px;
	color: #000;
	width: 140px;
	font-size: 90%; 
	/*background-color: #e4ddce;*/
	border-bottom: #e4ddce solid 0px;
	opacity: .90;
	-moz-opacity: .90;
	overflow: auto;
	filter: alpha(opacity=90);
	background-image: url(img/bkgrd_sub.gif);
	background-repeat: repeat;
}
#menu .menulist li.nav_svcs a.standard {
	width: 115px;
}
#menu .menulist li.nav_work a.standard {
	width: 108px;
}
#menu .menulist li.nav_clnt a.standard {
	width: 90px;
}
#menu .menulist li.nav_info a.standard {
	width: 114px;
}

* html .menulist a.standard {
	padding: 2px 10px 2px 15px;
	background: #e4ddce; /* leave this for IE6 bug fix! */
}

.menulist a.special {
	background: none;
	color: #000;
	/*padding: 0px 15px 5px 20px;*/
	padding: 0px 17px 5px 15px;
	height: 40px;
}
#menu .menulist li.nav_svcs #navServices {
	width: 95px;
}
#menu .menulist li.nav_svcs #navWork {
	width: 70px;
}
#menu .menulist li.nav_svcs #navClients {
	width: 80px;
}
#menu .menulist li.nav_svcs #navInfo {
	width: 60px;
}


/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #A50000;
 background-color: none;
}
.menulist a.highlighted {
 color: #A50000;
 background-color: none;
}
.menulist a.special:hover, .menulist a.special:focus {
	background: none;
	color: #A50000;
	border-bottom: none;
	/*border-bottom: #A50000 dashed 2px;*/
}

.menulist a.standard:hover {
	opacity: .99;
	-moz-opacity: .99;
	overflow: auto;
	filter: alpha(opacity=99);
	/*border-bottom: #A50000 dashed 1px;*/
}

/* this makes the "current page" link highlighted */
/*#home .menulist li #homeLnk.special { color: #666; }
#shop .menulist li #shopLnk.special { color: #666; }
#custom .menulist li #customLnk.special { color: #666; }
#bio .menulist li #bioLnk.special { color: #666; }
#gallery_1 .menulist li #collectionsLnk.special { color: #666; }
#gallery_2 .menulist li #collectionsLnk.special { color: #666; }
#gallery_3 .menulist li #collectionsLnk.special { color: #666; }*/

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* 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;
}
/* */


/*
 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 ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */









