/* CSS Document */
.outtaHere { position:absolute;   left:-3000px; } /*** Выкидывает стандартную кнопку radio ***/ 

/* Оформление самого select*/ 
.selectArea { width:228px; height:35px; border:0px solid green; } 
.selectArea .left { width:11px; height:35px; float:left; background:url(../images/select_left.png) no-repeat left top; } 
.selectArea .right { width:29px; height:35px; float:right; background:url(../images/select_right.png) no-repeat left top; } 
.selectArea .right a { width:228px; height:35px; display:block; position:absolute; border:0px solid blue; } 
.selectArea .right i { display:none; } 
.selectArea .center { height:35px; color:#68676c; font-size:16px; font-weight:bold; text-align:left; background:url(../images/select_center.png) repeat-x left top; padding: 10px 5px 0px 5px; overflow:hidden; white-space:nowrap; border:0px solid red; } 

/* Оформление выпадающего списка */ 
.optionsDivInvisible, .optionsDivVisible { position:absolute; margin: 2px 0px 0px 2px; width:170px; background-color:#f2f3f3; padding:2px; z-index:20; border:1px solid #1b160a;} 
.optionsDivInvisible { display:none; } 
.optionsDivVisible { display:block; } 
.optionsDivVisible p { margin:0; padding:0; } 
.optionsDivVisible a { color:#68676c; font-size:16px; font-weight:normal; text-decoration:none; display:block; padding:2px 4px; } 
.optionsDivVisible a:hover { background-color:#92a0b4; color:#ffffff; } 


/* checkbox */
.checkboxArea, .checkboxAreaChecked { display:block; float:left; clear:left; width:13px; height:13px; font-size:0; padding:0; margin:0; cursor:pointer; } 
.checkboxArea { background:url(../images/checkbox.png) no-repeat left top;} 
.checkboxAreaChecked { background:url(../images/checkbox_checked.png) no-repeat left bottom; } 
.focused { border:1px dotted #ddd; } 

/* radio */
.radioArea, .radioAreaChecked { display:block; float:left; clear:left; width:11px; height:11px; font-size:0; cursor:pointer; } 
.radioArea { background:url(../images/radio.gif) no-repeat left top; } 
.radioAreaChecked { background:url(../images/radio_checked.gif) no-repeat left bottom; }
