/*
 * Linkselect "Select" style CSS file
 */
.linkselect{ display:none !important; }

a.linkselectLink {
	float:left;
	display:inline;
	background: url(../../../images/select.png) left top no-repeat;
	_width:470px;
	width:470px;
	max-width:470px;
	height:19px;
	padding:5px;
	border:0;
	outline:0;
	font:bold 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration: none;
	color:#fff;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}

a.linkselectLink:hover, a.linkselectLinkFocus {
	color:#fcf;
	background:url(../../../images/select.png) left bottom no-repeat;
}

a.linkselectLinkOpen {
	outline: 0; /* prevent the link from being outlined */
	background:url(../../../images/select.png) left bottom no-repeat;
}

.linkselectContainer {
	position: absolute;
	/* this is required to correctly calculate the width of the container */
	left: 0; 
	top: 0;
	display: none;
	/* 
	 * move the box to align with bottom of input box 
	 */
	margin:29px 0 0 10px;
	max-width: 460px;
	z-index: 50000;
	font:normal 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.linkselectContainer .title {
	background: #485176 !important;
	color: #fff !important;
	padding-right: 20px !important;
	white-space: nowrap;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 11px !important;
}

.linkselectContainer .title span {
	display: block;
	padding: 3px 4px;
}

.linkselectContainer .scrollable {
	width: auto;
	background-color:#745a7b;
	color:#fcf;
	margin: 0;
	padding: 0;
	text-align: left;
	overflow: auto;
	max-height: 216px;
	clear: both;
}

.linkselectContainer ul {
	list-style-type: decimal !important;
	margin: 0;
	padding: 0;
}

.linkselectContainer ul li {
	display: block;
	margin: 0;
	padding: 2px;
	cursor: pointer;
	border-bottom:1px dashed #8d6a89;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}

.linkselectContainer ul li.selected { 
	background-color: #745a7b;
	color:#fff;
	font-weight:bold;
}

.linkselectContainer ul li.current { 
	background-color: #475076;
	color: #fcf;
}

/* fixes for IE6; allows mouseovers beyond text label */
.linkselectContainer ul li span { zoom:1; }


/* fixes for IE7; allows clicking beyond text label */
a.linkselectLink { zoom:1; }
