input[type="radio"].pretty {
    display:none;
}

input[type="radio"].pretty + label::before {
    content: "";
    overflow: hidden;
    font-size: 10px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #555;
    background-color: #DDD;
    width: 14px;
    height: 14px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 1px;
}

input[type="radio"].pretty:checked + label::before {
    background-color: #ba103d;
    background-image: url("../bootstrap/img/glyphicons-halflings-white.png");
	background-position: -288px -2px;
}


input[type="radio"].pretty + label {
   cursor: pointer;
   margin-bottom: 4px;
}

input[type="radio"].pretty + label:hover {
   text-decoration: underline;
}

input[type="radio"].pretty:disabled:not(:checked) + label::before {
    background-color: #999999;
}