/*
 * Linkselect "Options2" style CSS file
 */
/*select elements in elements with class ccOptions will be replaced by a combination of an anchor tag 
 associated with a dropdown menu
 Replacement is done by javascript on document ready; hide the original select until we replace it
*/ 
.ccOptions select
{
visibility: hidden;
}

a.ccOptionsLink, span.ccOptionsDisabled  {
	visibility: visible;
	display: block;
	background: url(/webgui/resources/skins//plattform/images/img_vorlagen/btn_options2.gif) no-repeat 0px 2px;
	padding-left: 18px;
	_width: 300px;
	max-width: 300px;
	min-width: 18px;
	min-height: 18px;
	text-decoration: underline;
	text-align: left;
	color: #AEC911;
	font-size: 12px;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
	white-space: normal;
}

span.ccOptionsDisabled {
	color: #333;
	background: url(/webgui/resources/skins//plattform/images/img_vorlagen/btn_options2_disabled.gif) no-repeat 0px 2px;
}

a.ccOptionsLink:hover, a.ccOptionsLinkFocus, a.ccOptionsLinkOpen {
	outline: none; /* prevent the link from being outlined */
}

a.ccOptionsLink:hover, a.ccOptionsLinkFocus {
	text-decoration:underline;
}

.ccOptionsContainer {
	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-top: 20px;
	padding: 1px;
	max-width: 500px;
	z-index: 50000;
}

.ccOptionsContainer .title {
	background: #7f4020 !important;
	color: #fff !important;
	padding-right: 20px !important;
	white-space: nowrap;
	font-size: 12px !important;
	font-weight: bold !important;
	line-height: 12px !important;
}

.ccOptionsContainer .title span {
	display: block;
	padding: 3px 4px;
}

.ccOptionsContainer .scrollable {
	width: auto;
	background-color: white;
	border: 1px solid #000000;
	margin: 0;
	padding: 0px;
	font-size: 12px;
	text-align: left;
	overflow: auto;
	max-height: 216px;
	clear: both;
}

.ccOptionsContainer ul {
	list-style-type: decimal !important;
	margin: 0px;
	padding: 1px;
}

.ccOptionsContainer ul li.selected { 
	color: #fff;
	background-color: #000 !important;
}

.ccOptionsContainer ul li.current { 
	color: #fff;
	background-color: #AEC911;
}

.ccOptionsContainer ul li {
	display: block;
	margin: 0;
	padding: 2px;
	font-size: 12px;
	cursor: pointer;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-moz-user-focus: ignore; 
	-moz-user-input: disabled; 
	min-height: 15px;
}

/* fixes for IE6; allows mouseovers beyond text label */
.ccOptionsContainer ul li span { zoom:1; }


/* fixes for IE7; allows clicking beyond text label */
a.ccOptionsLink { zoom:1; }
