/**
 *********************************************
 * Prototype of styles for horizontal CSS-menu
 * @data 30.06.2009 Ò»Á÷ËØ²ÄÍøwww.16sucai.com
 *********************************************
 * (X)HTML-scheme:
 *  <div id="menu">
 *      <ul class="menu">
 *          <li><a href="#" class="parent"><span>level 1</span></a>
 *              <ul>
 *                  <li><a href="#" class="parent"><span>level 2</span></a>
 *                      <ul><li><a href="#"><span>level 3</span></a></li></ul>
 *                  </li>
 *              </ul>
 *          </li>
 *          <li class="last"><a href="#"><span>level 1</span></a></li>
 *      </ul>
 *  </div>
 *********************************************
 */

/* menu::base */
div#menu {
	width:1000px;
    height:41px;
	margin:0 auto;
}

div#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}
div#menu ul.menu {
}

div#menu li {
    position: relative;
    z-index: 9;
    margin: 0;
    display: block;
    float: left;
	width:121px;
	font-family: Microsoft YaHei;
    font-size: 14px;
}

div#menu a {
    position: relative;
    z-index: 10;
    height: 41px;
    display: block;
    float: left;
    text-decoration: none;
	color:#777;
}
div#menu a:hover, div#menu a:hover span { color: #fff; }
div#menu li.current a {
	color: #fff;
	}

div#menu span {
    display: block;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 95% 0;
}
div#menu ul ul a.parent span {
    background-position:95% 8px;
    background-image: url(images/item-pointer.gif);
}
div#menu ul ul a.parent:hover span {
    background-image: url(images/item-pointer-mover.gif);
}

/* menu::level1 */
div#menu a {
    line-height:41px;
    color:#777;
}
div#menu span {
	width:121px;
	text-align:center;
	
}/**@replace#1*/
div#menu li { background: url(images/nav_line.gif) right center no-repeat; }
div#menu li.last { background: none; }

/* menu::level2 */
div#menu ul ul li { background: none; }
div#menu ul ul {
    position: absolute;
    top: 40px;
    left: -999em;
    width: 163px;
}
div#menu ul ul a {
    padding: 0 0 0 15px;
    height: auto;
    float: none;
    display: block;
    line-height:30px;
    color: rgb(169,169,169);
	background:#FFF;
}
div#menu ul ul a:hover { 
    background:#2395fd;
 }
div#menu ul ul span {
    padding-right: 15px;
    _padding-right: 20px;
    color: rgb(169,169,169);
}
div#menu ul ul a:hover span {
}
div#menu ul ul li.last { background: none; }
div#menu ul ul li {
    width: 100%;
}

/* menu::level3 */
div#menu ul ul ul {
    padding: 0;
    margin: -38px 0 0 163px !important;
    margin-left:172px;
}

/* colors */
div#menu ul ul ul { background: rgb(41,41,41); }
div#menu ul ul ul ul { background: rgb(38,38,38); }
div#menu ul ul ul ul { background: rgb(35,35,35); }

/* lava lamp */
div#menu li.back {
    background: url(images/selected.gif) no-repeat !important;
    background-image: url(images/lava.gif);
    height: 41px;
    z-index:8;
    position: absolute;
	color:#777;
}
div#menu li.back .left {
    background: url(images/selected.gif) no-repeat top left !important;
    background-image: url(images/lava.gif);
    height: 41px;
}

