/*
 * define styles for linkselect plug-in
 */
a.linkselectLink {
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
	
}

.sel1 {padding:0px;}
.sel1 a.linkselectLink {display:block;color:#fff;text-decoration:none;background:#ec008c url(/i/c20.gif) right center no-repeat;;font-size:14px;font-weight:700;color:#fff;padding:0px 33px 2px 7px;}
.s1 {width:65px;}
.s2 {width:80px;}
.s3 {width:80px;}

.sel2 {width:205px;}
.sel2 a.linkselectLink {display:block;color:#fff;text-decoration:none;background:#ec008c url(/i/c20.gif) right center no-repeat;;font-size:14px;font-weight:700;color:#fff;padding:0px 33px 2px 7px;width:100%;}


a.linkselectLink:hover, a.linkselectLinkFocus {
	color: #fff !important;
	background-color: #565770 !important;
	outline: 1px solid #565770; /* prevent the link from being outlined */
}

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;
	-o-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: 0;
	max-width: 500px;
	z-index: 50000;
}

.linkselectContainer .title {
	background: #565770 no-repeat 100% 50% !important;
	color: #fff !important;
	padding-right: 20px !important;
	white-space: nowrap;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 14px !important;
}

.linkselectContainer .title span {
	display: block;
	padding: 3px 4px;
}

.linkselectContainer .scrollable {
	width: auto;
	background-color: white;
	border: 1px solid #565770;
	margin: 0;
	padding: 0px;
	font-size: 14px;
	text-align: left;
	overflow: auto;
	max-height: 216px;
	clear: both;
}

.linkselectContainer ul {
	list-style-type: decimal !important;
	margin: 0px;
	padding: 0px;
}

.linkselectContainer ul li.selected { 
	background-color: #e0e0e0;
}

.linkselectContainer ul li.current { 
	background-color: #ec008c;
	color: #fff;
}

.linkselectContainer ul li {
	display: block;
	margin: 0;
	padding: 2px;
	font-size: 14px;
	cursor: pointer;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}


