/*
colpick Color Picker / colpick.com
*/

/*Main container*/
.colpick {
	position: absolute;
	z-index:1000;
	margin:10px 0 0 170px;
	width: 360px;
	height: 176px;
	overflow: hidden;
	display: none;
	background:#f9f9f9;
	border:1px solid #ececec;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
	-webkit-box-shadow:-5px 5px 10px -5px rgba(0,0,0,0.6);
	-moz-box-shadow:-5px 5px 10px -5px rgba(0,0,0,0.6);
	box-shadow:-5px 5px 10px -5px rgba(0,0,0,0.6);
}
.colpick_color {
	position: absolute;
	left:10px;
	top:10px;
	width:156px;
	height:156px;
	overflow: hidden;
	cursor: crosshair;
}
.colpick_color_overlay1 {
	position: absolute;
	left:0;
	top:0;
	width: 156px;
	height: 156px;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')"; /* IE8 */
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
	background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff'); /* IE6 & IE7 */
}
.colpick_color_overlay2 {
	position: absolute;
	left:0;
	top:0;
	width: 156px;
	height: 156px;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')"; /* IE8 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.colpick_selector_outer {
	background:none;
	position: absolute;
	width: 11px;
	height: 11px;
	margin: -6px 0 0 -6px;
	border: 1px solid black;
	border-radius: 50%;
}
.colpick_selector_inner{
	position: absolute;
	width: 9px;
	height: 9px;
	border: 1px solid white;
	border-radius: 50%;
}
.colpick_hue {
	position: absolute;
	top:10px;
	left:176px;
	width:25px;
	height:156px;
	cursor:default;
}
.colpick_hue_arrs {
	position: absolute;
	left: -8px;
	width: 35px;
	height: 8px;
	margin: -8px 0 0 0;
}
.colpick_hue_larr {
	display:none;
}
.colpick_hue_rarr {
	position:absolute;
	right:0;
	left:35px;
	width:0; 
	height:0; 
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent; 
	border-right: 8px solid #454545;
}
.colpick_new_color {
	position: absolute;
	left: 230px;
	top: 10px;
	width: 60px;
	height: 30px;
	background: #f00;
	-webkit-border-top-left-radius:4px;
	-webkit-border-bottom-left-radius:4px;
	-moz-border-radius-topleft:4px;
	-moz-border-radius-bottomleft:4px;
	border-top-left-radius:4px;
	border-bottom-left-radius:4px;
}
.colpick_current_color {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 60px;
	height: 30px;
	background: #f00;
	-webkit-border-top-right-radius:4px;
	-webkit-border-bottom-right-radius:4px;
	-moz-border-radius-topright:4px;
	-moz-border-radius-bottomright:4px;
	border-top-right-radius:4px;
	border-bottom-right-radius:4px;
}
.colpick_hex .colpick_hsb_h, .colpick_hex .colpick_hsb_s, .colpick_hex .colpick_hsb_b, .colpick_hex .colpick_rgb_r, .colpick_hex .colpick_rgb_g, .colpick_hex .colpick_rgb_b {
	display:none;
}
.colpick_field, .colpick_hex_field  {
	position: absolute;
	top:50px;
	left:230px;
	height: 28px;
	width: 118px;
	overflow:hidden;
	background:#fff;
	font-size:14px;
	border:1px solid #ececec;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.colpick_field_letter {
	position: absolute;
	height: 28px;
	line-height: 28px;
	border-right: 1px solid #ececec;
	font-weight: bold;
	padding-left:6px;
	padding-right:6px;
}
.colpick_field input, .colpick_hex_field input {
	position: absolute;
	right: 6px;
	margin: 0;
	padding: 0;
	height: 28px;
	line-height: 28px;
	background: transparent;
	border: none;
	text-align: right;
	outline: none;
}
.colpick_submit {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 30px;
	line-height:30px;
	background: #4686a6;
	text-align: center;
	color: #fff;
	font-size:14px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}
.colpick_submit:hover {
	background:#397796;
	cursor: pointer;
}




























