/*
 * define styles for linkselect plug-in
 */
a.linkselect-link,
span.linkselect-disabled {
 background: url("../images/select_bg.gif") repeat scroll 0 0 #EFEFEF;
    border-left: 1px solid #CCCCCC;
    color: #939BA2;
    font: 11px Arial,sans-serif;
    height: 13px !important;
    padding: 3px 7px;
    vertical-align: middle;
    width: 191px !important;
    position: relative;
    display: block;
}
a.linkselect-link:hover {
  text-decoration: none;
}
a.linkselect-link span.linkselect-link-icon,
span.linkselect-disabled span.linkselect-link-icon {
	  background: -moz-linear-gradient(center bottom , #CCCCCC 0%, #EEEEEE 60%) repeat scroll 0 0 #CCCCCC;
    border-left: 1px solid #AAAAAA;
    border-radius: 0 4px 4px 0;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
}

a.linkselect-link span.linkselect-link-icon  span,
span.linkselect-disabled span.linkselect-link-icon span{
    background: url("../images/DropArrow.gif") no-repeat scroll 0px 0px transparent;
    display: block;
    height: 100%;
    width: 100%;
}

a.linkselect-link:hover, a.linkselect-link-focus {
	background-color: #565770 !important;
}

a.linkselect-link-open {
	outline: 0; /* prevent the link from being outlined */
}

span.linkselect-disabled {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

.linkselect-container {
	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: -3px;
	max-width: 500px;
	z-index: 50000;
}

.linkselect-container .linkselect-title {
	display: block;
	background: #565770 url('../images/linkselect_bkgrd.png') no-repeat 100% 50% !important;
	color: #fff !important;
	padding-right: 20px !important;
	white-space: nowrap;
	font-size: 11px !important;
	font-weight: bold !important;
	line-height: 11px !important;

	cursor: default;	
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}

.linkselect-container .linkselect-title.placeholder {
	cursor: pointer;	
}

.linkselect-container .linkselect-title span {
	display: block;
	padding: 3px 4px;
}

.linkselect-container .linkselect-scrollable {
	width: auto;
	max-width: 206px;
	background-color: white;
	margin: 22px 0 0;
	padding: 0px;
	font-size: 11px;
	text-align: left;
	overflow: auto;
	max-height: 216px;
	clear: both;
}

.linkselect-container ul {
	list-style-type: decimal !important;
	margin: 0px;
	padding: 0px;
	background-color: #708087;
}

.linkselect-container ul li.linkselect-selected { 
	
}

.linkselect-container ul li.linkselect-current { 
	background-color: #6BB6CE;
	color: #fff;
}

.linkselect-container ul li.placeholder { 
	display: none;
}

.linkselect-container ul li {
	display: block;
	margin: 0;
	padding: 2px;
	font-size: 11px;
	color: #fff;
	cursor: pointer;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
}