/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/drop_definition4.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#menulist {
    list-style-type:none;
    margin:0;
    padding:0;
}

#menulist li {
    float:left;
    padding:0;
    margin:0 1px 0 0;
    position:relative;
    width:80px;
    height:1px;
    z-index:100;
}

#menulist li a, #menulist li a:visited {
    text-decoration:none;
}

#menulist dl {
    position:absolute;
    top:0;
    left:0;
    width:80px;
    margin:0;
    padding:0;
}

#menulist dt {
	background:#fff url('../images/menubg_green.png') no-repeat left;
    margin:0;
	font-size:14px;
    width:80px;
    float:left;
    text-align:center;
}

#menulist dd {
    display:none;
    background:transparent;
    clear:left;
    margin:0;
    padding:0;
    color:#fff;
	font-size:14px;
    text-align:center;
}

#menulist dt a, #menulist dt a:visited {
    display:block;
    color:#555;
	padding:3px 0;
    width:80px;
	border:outset 1px #fff;
}

#menulist dd a, #menulist dd a:visited {
	background:#fff url('../images/menubg_green.png') no-repeat left;
    color:#555;
    text-decoration:none;
    display:block;
	padding:3px 0;
    width:120px;
	border:outset 1px #fff;
}

#menulist li a:hover {
	border:inset 1px #ccc;
}

#menulist li:hover dd, #menulist li a:hover dd {
    display:block;
}

#menulist li:hover dl, #menulist li a:hover dl {
    width:120px;
}

#menulist li:hover dt a, #menulist li a:hover dt a, #menulist dd a:hover {
	background:#fff;
    color:green;
}

