/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0px;
	width:120px;
    height: 33px;
    text-align: left;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
    font-weight:bold;
    font-size:12px;
    font-family: verdana;
	color:#ffffff;
	width:100%;
    padding-top:0px;
    
}

.dropdown a:hover{
	text-decoration:none;
    color: #0d553d;
    font-family: verdana;
    font-size: 12px;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:1px solid #ffffff;
	margin-left:0px;
    width: 180px;
    background-color:#114A35;
    text-align: left;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li:hover{
	border-top:1px solid #ffffff;
	margin-left:0px;
    width: 180px;
    background-color:#bababa;
    text-align: left;
    color: #0d553d;
}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	/*background:#000 url('expand_down.gif') center left no-repeat;*/
    background: url(http://localhost/mlb2010/gfx/bg_menu.jpg);
	padding-left:0px;
    height: 44px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	/*background:#000 url('expand_right.gif') center right no-repeat;*/
    background: url(http://localhost/mlb2010/gfx/bg_menu.jpg);
	padding-right:20px;
	width:105px;
}