/*
* Custom select box
*/
div.custom_select{width:100%;height:30px;background-color:white;cursor:pointer;position:relative;display:inline-block;position:relative;}
/* wraper */
div.custom_select div.displayer_wrapper{height:30px;background-color:#eee;position:relative;}
/* select */
div.custom_select select{position:absolute;opacity:0;top:-2000em;z-index:2;}
/* displayer */
div.custom_select div.displayer{width:auto !important;height:30px;margin-right:30px;padding:0px 10px;line-height:30px;display:block;}
/* button */
div.custom_select span.select_btn{width:30px;height:30px;background:url(Images/select_btn.png) no-repeat top center;display:block;float:right;}
div.custom_select:hover span.select_btn{background-position:bottom center;}
/* list*/
div.custom_select div.list_container{max-height:182px;position:absolute;top:0px;left:0px;opacity:0;background-color:white;z-index:1;}
div.custom_select div.list_container div.options_pane{max-height:180px;border:1px solid #e2e6eb;overflow-y:scroll;}
div.custom_select ul{margin:0px;padding:0px;list-style:none;}
div.custom_select ul li{height:30px;padding:0px 10px;line-height:30px;white-space:pre;}
div.custom_select ul li:hover{background-color:#edf2f6;}
div.custom_select ul li.current{background-color:#6397bb;color:white;}
div.custom_select ul li.selected{background-color:#0075bc;color:white;}

/* color */
div.custom_select span.color{width:12px;height:12px;margin:9px 5px 9px 0;display:block;float:left;}

/* online store - product detail selectors */
div.sizes_selector{display:none;}

/*
*	CHECKBOX
*/
div.custom_checkbox{width:14px;height:14px;margin:0px;padding:0px;background-color:white;border:1px solid #e2e6eb;display:inline-block;line-height:0;}
div.custom_checkbox.current{background-image:url(Images/sprite.png);background-repeat:no-repeat;background-position:-14px 0;}
div.custom_checkbox input{width:14px;height:14px;opacity:0;margin:0px;padding:0px;cursor:pointer;}

/*
*	RADIO BUTTON
*/
div.custom_radio{width:14px;height:14px;margin-right:4px;padding:0px;background-color:white;border:1px solid #9fb6d2;border-radius:7px;-moz-border-radius:7px;-webkit-border-radius:7px;display:inline-block;line-height:0;position:relative;top:3px;}
div.custom_radio.current{background-image:url(Images/sprite.png);background-repeat:no-repeat;background-position:-14px -14px;}
div.custom_radio input{width:14px;height:14px;opacity:0;margin:0px;padding:0px;cursor:pointer;}