/* this is the main UL element*/
.dropdown {
	visibility: hidden;
	margin: 0;
	padding: 0 0 0 10px;
	list-style: none;
	float: left;
}

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

	margin-left:-1px;
	left: 3px;
	margin-top: 11px;
	border: 1px solid #823d1b;
	border-top: 0;
	*margin-top: -2px;
}
/*
	Firefox
*/
@-moz-document url-prefix() {
.dropdown ul {
	margin-top: 8px;
}
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
/*
	padding:5px;
	width:120px;
	background-color:#000;
*/
	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;
	color:#FFB119;
	width:100%;
*/
}

.dropdown a:hover{
/*
	text-decoration:underline;
*/
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
/*
	border: 1px solid #823d1b;
	border-top:0;
	margin-left:-1px;
*/
	
/*
	width: 75px;
*/
/*
	background: #e1881a url(../images/tapspace/header.gif) bottom right no-repeat;
	left: 3px;
	margin-top: 11px;
	*margin-top: -2px;
*/
	/*  IE  */

	padding-top: 0px;
	border-top: 1px solid #444444;
	
	padding: 0;
	margin: 0;
}
/*
	Firefox
*/
/*
@-moz-document url-prefix() {
.dropdown ul li {
	margin-top: 8px;
}
}
*/


/**********************
	REDLIME
*/
.dropdown ul li a {
	display: block;
	padding: 4px 8px 1px;
	margin-top: 0px;
	margin-bottom: 0px;
/*
	width: 59px;
	width: 100px;
*/
	width: 140px;
/*
	font-size: 12px;
	color: #dddddd;
*/
	background: #e1881a url(../images/tapspace/header.gif) bottom right no-repeat;
	/*  IE  */
	*margin-bottom: -3px;
}
.dropdown ul li a:hover,
.dropdown ul li a:active {
	background: #aaacb0 url(../images/tapspace/background-r.gif) top left repeat-y;
	color: white;
}
/***********************/


/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
/*
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:105px;
*/
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
/*
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:120px;
*/
}