/*
 * define styles for linkselect plug-in
 */
a.linkselectLink {
	-khtml-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
	color: #333; /* 2008-11-14 */
	text-decoration: none; /* 2008-11-14 */
	padding: 5px 0px 5px 0;
	#padding: 7px 0px 3px 0;
	_padding: 5px 0px 5px 0;
	display: block;
	width:100%;
}

a.linkselectLink:hover, a.linkselectLinkFocus {
	/* color: #fff !important; */
	/* background-color: #565770 !important; */
	/* outline: 1px solid #fff; /* prevent the link from being outlined */ /* #565770; */
}

a.linkselectLinkOpen {
	outline: 0; /* prevent the link from being outlined */
}

span.linkselectDisabled {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
	-khtml-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}

.linkselectContainer {
	position: absolute;
	/* this is required to correctly calculate the width of the container */
	left: 0; top: 0;
	display: none;
	/* 
	 * move the box up 3 pixels so that the title bar aligns with original anchor text, this 
	 * should be adjusted according to the padding/margin differences between the two links 
	 */
	margin-top: 25px;
	max-width: 500px;
	z-index: 50000;
}

.linkselectContainer .title {
	background: #eee url(../images/linkselect_bkgrd.png) no-repeat 100% 50% !important;
	/* background: #565770 url(../images/linkselect_bkgrd.png) no-repeat 100% 50% !important; */
	color: #000 !important;
	/*color: #fff !important; */
	padding-right: 20px !important;
	white-space: nowrap;
	font-size: 12px !important;
	/* font-size: 11px !important; */
	font-weight: bold !important;
	line-height: 11px !important;
	padding: 5px 5px 3px 5px; /* 2008-11-14 */
}

.linkselectContainer .title span {
	display: block;
	padding: 3px 4px;
}

.linkselectContainer .scrollable {
	width: auto;
	background-color: white;
	border: 1px solid #ccc; /* #565770; */
	margin: 0;
	padding: 0px;
	font-size: 11px;
	text-align: left;
	overflow: auto;
	max-height: 216px;
	clear: both;
}

.linkselectContainer ul {
	list-style-type: decimal !important;
	margin: 0px;
	padding: 3px;
}

.linkselectContainer ul li.selected { 
	background-color: #fff; /* #cfcfea */
}

.linkselectContainer ul li.current { 
	background-color: #f30; /* #a3a4bd */
	color: #fff;
}

.linkselectContainer ul li {
	display: block;
	margin: 0;
	padding: 3px;
	font-size: 12px;
	cursor: pointer;
	-khtml-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}

