/*
colpick Color Picker / colpick.com
*/

/*Main container*/
.colpick {
    position: absolute;
    box-sizing:content-box;
    width: 346px;
    height: 170px;
    overflow: hidden;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    direction:ltr;
    background:black;
    border-radius: 10px;

    /*Prevents selecting text when dragging the selectors*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    z-index: 999999;
}
/*Color selection box with gradients*/
.colpick .colpick_color {
    position: absolute;
    left: 0;
    top: 0;
    width: 156px;
    height: 156px;
    cursor: crosshair;
    overflow: hidden;
}
.colpick .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 .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 */
}
/*Circular color selector*/
.colpick .colpick_selector_outer {
    background: none;
    position: absolute;
    width: 11px;
    height: 11px;
    margin: -6px 0 0 -6px;
    border: 2px solid white;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    box-shadow: 0 4px 7px rgba(0,0,0,0.2);
}
.colpick .colpick_selector_inner{
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
/*Vertical hue bar*/
.colpick .colpick_hue {
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 156px;
    cursor:pointer;
}
/*Hue bar sliding indicator*/
.colpick .colpick_hue_arrs {
    position: absolute;
    left: -8px;
    width: 35px;
    height: 7px;
    margin: -7px 0 0 0;
}
.colpick .colpick_hue_larr {

}
.colpick .colpick_hue_rarr {
    position: absolute;
    left: 8px;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 4px solid white;
}
/*New color box*/
.colpick .colpick_new_color {
    position: absolute;
    left: 207px;
    top: 6px;
    width: 60px;
    height: 27px;
    background: #f00;
    display:none;
}
/*Current color box*/
.colpick .colpick_current_color {
    position: absolute;
    left: 277px;
    top: 6px;
    width: 60px;
    height: 27px;
    background: #f00;
    border: 1px solid #8f8f8f;
    display:none;
}
/*Input field containers*/
.colpick .colpick_field, .colpick .colpick_hex_field  {
    position: absolute;
    height: 20px;
    width: 60px;

}
.colpick .colpick_rgb_r {
    top: 40px;
    left: 207px;
}
.colpick .colpick_rgb_g {
    top: 67px;
    left: 207px;
}
.colpick .colpick_rgb_b {
    top: 94px;
    left: 207px;
}
.colpick .colpick_hsb_h {
    top: 40px;
    left: 277px;
}
.colpick .colpick_hsb_s {
    top: 67px;
    left: 277px;
}
.colpick .colpick_hsb_b {
    top: 94px;
    left: 277px;
}
.colpick .colpick_hex_field {
    width: 68px;
    left: 207px;
    top: 121px;
}
/*Text field container on focus*/
.colpick .colpick_focus {
    border-color: #999;
}
/*Field label container*/
.colpick .colpick_field_letter {

}

/*Field up/down arrows*/
.colpick .colpick_field_arrs {
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 21px;
    cursor: n-resize;
}
.colpick .colpick_field_uarr {
    position: absolute;
    top: 5px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #959595;
}
.colpick .colpick_field_darr {
    position: absolute;
    bottom:5px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #959595;
}
/*Submit/Select button*/
.colpick .colpick_submit {
    display:none;
}
.colpick .colpick_submit:hover {
    background:#f3f3f3;
    border-color:#999;
    cursor: pointer;
}

/*full layout with no submit button*/
.colpick.colpick_full_ns  .colpick_submit,
.colpick.colpick_full_ns .colpick_current_color{
    display:none;
}
.colpick.colpick_full_ns .colpick_new_color {
    width: 130px;
    height: 25px;
}
.colpick.colpick_full_ns .colpick_rgb_r,
.colpick.colpick_full_ns .colpick_hsb_h {
    top: 42px;
}
.colpick.colpick_full_ns .colpick_rgb_g,
.colpick.colpick_full_ns .colpick_hsb_s {
    top: 73px;
}
.colpick.colpick_full_ns .colpick_rgb_b,
.colpick.colpick_full_ns .colpick_hsb_b {
    top: 104px;
}
.colpick.colpick_full_ns .colpick_hex_field {
    top: 135px;
}

/*rgbhex layout*/
.colpick.colpick_rgbhex .colpick_hsb_h,
.colpick.colpick_rgbhex .colpick_hsb_s,
.colpick.colpick_rgbhex .colpick_hsb_b {
    display:none;
}
.colpick.colpick_rgbhex {
    width:282px;
}
.colpick.colpick_rgbhex .colpick_field,
.colpick.colpick_rgbhex .colpick_submit {
    width:68px;
}
.colpick.colpick_rgbhex .colpick_new_color {
    width:34px;
    border-right:none;
}
.colpick.colpick_rgbhex .colpick_current_color {
    width:34px;
    left:240px;
    border-left:none;
}

/*rgbhex layout, no submit button*/
.colpick.colpick_rgbhex_ns  .colpick_submit,
.colpick.colpick_rgbhex_ns .colpick_current_color{
    display:none;
}
.colpick.colpick_rgbhex_ns .colpick_new_color{
    width:68px;
    border: 1px solid #8f8f8f;
}
.colpick.colpick_rgbhex_ns .colpick_rgb_r {
    top: 42px;
}
.colpick.colpick_rgbhex_ns .colpick_rgb_g {
    top: 73px;
}
.colpick.colpick_rgbhex_ns .colpick_rgb_b {
    top: 104px;
}
.colpick.colpick_rgbhex_ns .colpick_hex_field {
    top: 135px;
}

/*hex layout*/
.colpick.colpick_hex .colpick_hsb_h,
.colpick.colpick_hex .colpick_hsb_s,
.colpick.colpick_hex .colpick_hsb_b,
.colpick.colpick_hex .colpick_rgb_r,
.colpick.colpick_hex .colpick_rgb_g,
.colpick.colpick_hex .colpick_rgb_b {
    display:none;
}
.colpick.colpick_hex {
    width: 165px;
    height: 210px;
}
.colpick.colpick_hex .colpick_hex_field {
    width: 100%;
    height: 25px;
    top: 160px;
    left: 0;
    text-align: center;
}
.colpick.colpick_hex .colpick_hex_field div,
.colpick.colpick_hex .colpick_hex_field input {
    height: 25px;
    line-height: 25px;
    display: inline-block;
    color: white;
    position: relative;
    text-transform: uppercase;
    font-family: 'b';
}
.colpick.colpick_hex .colpick_new_color {
    left:9px;
    top:168px;
    width:30px;
    border-right:none;
}
.colpick.colpick_hex .colpick_current_color {
    left:39px;
    top:168px;
    width:30px;
    border-left:none;
}

/*hex layout, no submit button*/
.colpick.colpick_hex_ns .colpick_submit,
.colpick.colpick_hex_ns .colpick_current_color {
    display:none;
}
.colpick.colpick_hex_ns .colpick_hex_field {
    width:80px;
}
.colpick.colpick_hex_ns .colpick_new_color{
    width:60px;
    border: 1px solid #8f8f8f;
}

/*Dark color scheme*/
.colpick.colpick_dark {
    background: #161616;
    border-color: #2a2a2a;
}
.colpick.colpick_dark .colpick_color {
    outline-color: #333;
}
.colpick.colpick_dark .colpick_hue {
    border-color: #555;
}
.colpick.colpick_dark .colpick_field,
.colpick.colpick_dark .colpick_hex_field {
    background: #101010;
    border-color: #2d2d2d;
}
.colpick.colpick_dark .colpick_field_letter {
    background: #131313;
    border-color: #2d2d2d;
    color: #696969;
}
.colpick.colpick_dark .colpick_field input,
.colpick.colpick_dark .colpick_hex_field input {
    color: #7a7a7a;
}
.colpick.colpick_dark .colpick_field_uarr {
    border-bottom-color:#696969;
}
.colpick.colpick_dark .colpick_field_darr {
    border-top-color:#696969;
}
.colpick.colpick_dark .colpick_focus {
    border-color:#444;
}
.colpick.colpick_dark .colpick_submit {
    background: #131313;
    border-color:#2d2d2d;
    color:#7a7a7a;
}
.colpick.colpick_dark .colpick_submit:hover {
    background-color:#101010;
    border-color:#444;
}

/*
     FILE ARCHIVED ON 07:32:10 Nov 27, 2018 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 06:15:45 Nov 21, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.69
  exclusion.robots: 0.061
  exclusion.robots.policy: 0.048
  esindex: 0.01
  cdx.remote: 49.104
  LoadShardBlock: 115.208 (3)
  PetaboxLoader3.datanode: 108.375 (4)
  load_resource: 82.298
  PetaboxLoader3.resolve: 36.848
*/