input[type=checkbox].hcb {
  position: absolute; 
  overflow: hidden; 
  clip: rect(0 0 0 0); 
  height:1px; 
  width:1px; 
  margin:-1px; 
  padding:0;
  border:0;
}

input[type=checkbox].hcb + label.cbx {
  height:16px; 
  width:15px;
  display:inline-block;
  line-height:15px;
  background-repeat:no-repeat;
  background-position: 0 0;
  cursor:pointer;
}

input[type=checkbox].hcb:checked + label.cbx {
  background-image:url(/resources/images/check-on.jpg);
}
						
.cbx{
  background-image:url(/resources/images/check-off.jpg);
  margin-top:5px;
}

input[type=radio].hrb {
  position: absolute; 
  overflow: hidden; 
  clip: rect(0 0 0 0); 
  height:1px; 
  width:1px; 
  margin:-1px; 
  padding:0;
  border:0;
}

input[type=radio].hrb + label.rbx {
  height:16px; 
  width:16px;
  display:inline-block;
  line-height:15px;
  background-repeat:no-repeat;
  background-position: 0 0;
  cursor:pointer;
}

input[type=radio].hrb:checked + label.rbx {
  background-image:url(/resources/images/radio-on.png);
}
						
.rbx{
  background-image:url(/resources/images/radio-off.png);
  margin-top:5px;
}
												