/*
	Select elements
	used by custom_select.js
*/

.restyle_iconselect {
	float:right;
	border: none;
	border-left:1px solid #ccc;
	height: 16px;
	width: 105px;
	background: #fff url(../images/custom_ui/iconselect.png) no-repeat right top;
	padding:5px 0 0 5px;
}
.restyle_holder {
	right:0;
	top:26px;
	width: 110px;
	overflow: auto;
	display:none;
	position:absolute;
}
.restyle_options {
	background:#fff;
	border:1px solid #ccc;
}
.restyle_holder .selectitems {
	padding:3px;
}
.restyle_holder .selectitems span {
	margin-left: 5px;
}
.restyle_holder .hoverclass {
	background-color:#eee;
	cursor:pointer;
}
.restyle_holder .selectedclass {
	background-color:#333;
	color:#fff;
}


.restyle2_iconselect {
	border: none;
	border-left:1px solid #ccc;
	height: 16px;
	width: 105px;
	background: #fff url(../images/custom_ui/iconselect.png) no-repeat right top;
	padding:5px 0 0 5px;
}
.restyle2_holder {
	width: 110px;
	overflow: auto;
	display:none;
	position:absolute;
}
.restyle2_options {
	background:#fff;
	border:1px solid #ccc;
}
.restyle2_holder .selectitems {
	padding:3px;
}
.restyle2_holder .selectitems span {
	margin-left: 5px;
}
.restyle2_holder .hoverclass {
	background-color:#eee;
	cursor:pointer;
}
.restyle2_holder .selectedclass {
	background-color:#333;
	color:#fff;
}


.rating_iconselect {
	float:left;
	border: none;
	border-left:1px solid #eee;
	height: 12px;
	width: 51px;
	background: #fff url(../images/custom_ui/ratingselect.gif) no-repeat right top;
	padding:2px 0 0 4px;
	font:9px Arial, Helvetica, sans-serif;
	color:#4A4A4B;
}
.rating_holder {
	width: 55px;
	overflow: auto;
	display:none;
	position:absolute;
	right:0;
	top:14px;
}
.rating_options {
	background:#fff;
	border:1px solid #ccc;
}
.rating_holder .selectitems {
	padding:3px;
}
.rating_holder .selectitems span {
	margin-left: 5px;
}
.rating_holder .hoverclass {
	background-color:#eee;
	cursor:pointer;
}
.rating_holder .selectedclass {
	background-color:#333;
	color:#fff;
}


/*
	Tooltips
	used by tooltips.js
*/
.tooltip {
	padding: 5px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	opacity: 0.8;
	filter: alpha(opacity=80);
	background-repeat: no-repeat;
}
.tooltip-inner {
	padding: 4px 5px;
	background-color: #0081C6;
	color: white;
	max-width: 200px;
	text-align: center;
}
.tooltip-north {
	background-image: url(../images/custom_ui/tooltip-north.gif);
	background-position: top center;
}
.tooltip-south {
	background-image: url(../images/custom_ui/tooltip-south.gif);
	background-position: bottom center;
}
.tooltip-east {
	background-image: url(../images/custom_ui/tooltip-east.gif);
	background-position: right center;
}
.tooltip-west {
	background-image: url(../images/custom_ui/tooltip-west.gif);
	background-position: left center;
}


/*
	Checkboxes & Radio Buttons
	used by checkboxes.js
*/

/* ------------------------------------------------------------------------
	This you can customize
------------------------------------------------------------------------- */

	label.checkbox span.holder {
		cursor:pointer;
		height: 61px; /* Total height of your checkbox image */
		background: url(../images/custom_ui/checkbox.gif) 0 -4px no-repeat; /* Path to your checkbox image */
	}
	
	label.radio span.holder {
		height: 61px; /* Total height of your radio buttons image */
		background: url(../images/custom_ui/radio.gif) 0 -1px no-repeat; /* Path to your radio button image */
	}
	
	html>/**/body label.checkbox:hover span.holder,
	html>/**/body label.radio:hover span.holder { top: -21px; } /* Background position on mouseover, ugly hack to hide it from the IEs */
	
	label.checked span.holder,
	label.checked span.holder { top: -42px !important; } /* Background position when checked */


/* ------------------------------------------------------------------------
	Customize at your own risk
------------------------------------------------------------------------- */

	label.list {
		margin:0 0 5px 0;
		padding:0;
		float:left;
		clear:left;
		white-space:nowrap;
	}
	
	label.inline {
		float: left; margin: 0 0 0 0;
	}
	
	
		label.prettyCheckbox span.holderWrap {
			display: block; 
			float: left;
			position: relative;
			margin-right: 5px;
			overflow: hidden;
		}
		
		label.prettyCheckbox span.holder {
			display: block;
			position: absolute;
			top: 0; left: 0;
		}
