/*

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 :).

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulistinn, .menulistinn  ul  {
margin: 0;
padding: 0;
list-style: none;
font: 11px sans-serif;
color: #fff; 
float: left;
z-index: 200;
/* any IE */
}



.menulistinn a:visited  {
color: #fff; 
text-decoration: none;
 
/* any IE */
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulistinn ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 12px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 color: #fff;
 z-index: 200;

 
}


/* Second and third etc. level submenus - position across from parent instead */
.menulistinn ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
 color: #fff; 
 z-index: 200;

}

/*
 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.
*/
.menulistinn li {
 float: left;
 display: block;
 position: relative;
 background: #161616;
 border-bottom: 0px solid #999;
 border-top: 0px solid #999;
 margin-right: 1px;
 background-image: url(http://www.internetnews.com/img/redesign2008/images/background_dn.gif);
 background-repeat: repeat-x;
 line-height: 15px;
 color: #fff; 
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulistinn ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 margin-top: -2px;
 color: #fff;
 filter:alpha(opacity=90);
-moz-opacity:.90;
opacity:.90;
color: #fff; 
}
.menulistinn ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
letter-spacing: 0em;
}

.menulistinn ul li a:hover{
 float: none;
 margin: 0;
 background-color: #666666;
 color: #fff; 
}
.menulistinn ul>li:last-child {
 margin-bottom: 1px;
 color: #fff; /* Mozilla fix */
letter-spacing: 0em;
}


/* Links inside the menu */
.menulistinn a {
 display: block;
 padding: 3px;
 color: #fff;
 text-decoration: none;
 text-align: left;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulistinn a:hover, .menulistinn a.highlighted:hover, .menulistinn a:focus,  {
 color: #FFF;
 background-color: #666;
 text-decoration: none;
  
}


.menulistinn a.highlighted {
 color: #FFF;
 background-color: #e51a16;
}

/*
 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. */
.menulistinn a .subind {
 display: none;
letter-spacing: 0em;
}
.menulistinn ul a .subind {
 display: block;
 float: right;
letter-spacing: 0em;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulistinn a {
 float: left;
letter-spacing: 0em;
}
.menulistinn ul a {
 float: none;
letter-spacing: 0em;
}
/* \*/
.menulistinn a {
 float: none;
letter-spacing: 0em;
}
/* */


/*
 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 .menulistinn ul li {
 float: left;
 width: 100%;
 color: #fff; 
letter-spacing: 0em;
}

* html .menulistinn ul li {
 float: left;
 height: 1%;
 color: #fff; 
letter-spacing: 0em;
}
* html .menulistinn ul a {
 height: 1%;
 color: #fff; 
letter-spacing: 0em;
}
/* End Hacks */


/* All <ul> tags in the menu including the first level */
.menulistinnright, .menulistinnright  ul  {
margin: 0;
padding: 0;
list-style: none;
font: 11px sans-serif;
color: #fff; 
float: left;
z-index: 200;
/* any IE */
}



.menulistinnright a:visited  {
color: #fff; 
text-decoration: none;
 
/* any IE */
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulistinnright ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 12px; /* I'm using ems and px to allow people to zoom their font */
 right: -1px;
 color: #fff;
 z-index: 200;

 
}


/* Second and third etc. level submenus - position across from parent instead */
.menulistinnright ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
 color: #fff; 
 z-index: 200;

}

/*
 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.
*/
.menulistinnright li {
 float: left;
 display: block;
 position: relative;
 background: #161616;
 border-bottom: 0px solid #999;
 border-top: 0px solid #999;
 margin-right: 1px;
 background-image: url(http://www.internetnews.com/img/redesign2008/images/background_dn.gif);
 background-repeat: repeat-x;
 line-height: 15px;
 color: #fff; 
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulistinnright ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 margin-top: -2px;
 color: #fff;
 filter:alpha(opacity=90);
-moz-opacity:.90;
opacity:.90;
color: #fff; 
}
.menulistinnright ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
letter-spacing: 0em;
}

.menulistinnright ul li a:hover{
 float: none;
 margin: 0;
 background-color: #666666;
 color: #fff; 
}
.menulistinnright ul>li:last-child {
 margin-bottom: 1px;
 color: #fff; /* Mozilla fix */
letter-spacing: 0em;
}


/* Links inside the menu */
.menulistinnright a {
 display: block;
 padding: 3px;
 color: #fff;
 text-decoration: none;
 text-align: left;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulistinnright a:hover, .menulistinnright a.highlighted:hover, .menulistinnright a:focus,  {
 color: #FFF;
 background-color: #666;
 text-decoration: none;
  
}


.menulistinnright a.highlighted {
 color: #FFF;
 background-color: #e51a16;
}

/*
 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. */
.menulistinnright a .subind {
 display: none;
letter-spacing: 0em;
}
.menulistinnright ul a .subind {
 display: block;
 float: right;
letter-spacing: 0em;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulistinnright a {
 float: left;
letter-spacing: 0em;
}
.menulistinnright ul a {
 float: none;
letter-spacing: 0em;
}
/* \*/
.menulistinnright a {
 float: none;
letter-spacing: 0em;
}
/* */


/*
 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 .menulistinnright ul li {
 float: left;
 width: 100%;
 color: #fff; 
letter-spacing: 0em;
}

* html .menulistinnright ul li {
 float: left;
 height: 1%;
 color: #fff; 
letter-spacing: 0em;
}
* html .menulistinnright ul a {
 height: 1%;
 color: #fff; 
letter-spacing: 0em;
}
/* End Hacks */


