/* CSS Document */

.pc_checkbox, .pc_radiobutton {
   background-position: right center;
   background-repeat: no-repeat;
   border: 1px solid #fff;
   padding: 5px 0px;
   padding-right: 24px;
   font: bold 12px Tahoma, Geneva, sans-serif;
}
.pc_check_unchecked {
   background-image: url(../images/check_off.png);
}
.pc_check_checked {
   background-image: url(../images/check_on.png);
}
.pc_radio_unchecked {
   background-image: url(../images/radio_off.png);
}
.pc_radio_checked {
   background-image: url(../images/radio_on.png);
}
.pc_check_checked_disabled {
   background-image: url(../images/check_off_disabled.png);
}
.pc_check_unchecked_disabled {
   background-image: url(../images/check_on_disabled.png);
}
.pc_radio_checked_disabled {
   background-image: url(../images/radio_off_disabled.png);
}
.pc_radio_unchecked_disabled {
   background-image: url(../images/radio_on_disabled.png);
}
.pc_focus {
   background-color: #F5F5F5;
   border: 1px dotted #000;
}
