/*
	CSS styles for the LLMenu control
	(c)2010 Lost Luggage Studios, LLC
*/

.LLMenu_menuCategoryH {
	white-space: nowrap;
	color: black;
	display: block;
	padding: 5px 10px 5px 10px;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid #F7BE8A;
	float: left;
	z-index: 100;
}

.LLMenu_menuCategoryV {
	white-space: nowrap;
	color: black;
	display: block;
	padding: 5px 10px 5px 10px;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid #F7BE8A;
	z-index: 100;
}

.LLMenu_menu {
	background-color: #F5F5DC;
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	visibility: hidden;
	z-index: 200;
	border: 2px outset #AAAAAA;
	white-space: nowrap;
}

.LLMenu_menu HR {
	width: 95%;
}

.LLMenu_menu A
{
	text-decoration: none;
	border: 1px solid #F5F5DC;
	display: block;
	height: 18px;
	line-height: 20px;
	color: blue;
	padding: 3px;
	margin: 0px 1px 1px 1px;
	position: relative;
	white-space: nowrap;
	*width: 100%;
}

.LLMenu_menu A:hover
{
	border: 1px solid #316AC5;  /*navy;*/
	background-color: #C1D2EE;  /*lightsteelblue;*/
}

.LLMenu_menu A B {
	position: absolute;
	right: 0px;
	top: 0px;
	margin: 0px;
	padding: 0px;
	border: 0px;
}

/* the spacer that makes a top menu bar stretch all the way to the edge */
.LLMenu_horizontalSpacer {
	font-size: 14px;
	width: auto;
	border: 1px solid #F7BE8A;
	padding: 5px 20px 5px 20px;
}


