.radiobox {
	/*	margin-bottom: 8px; */
	padding-left: 18px;
	display: inline-block;
	position: relative;
	min-height: 16px;
	vertical-align: middle;
}

.radiobox > a {
	/*background: url('../images/checkbox.png') no-repeat left top;*/
	display: block;
	height: 16px;
	left: 0px;
	top: 0px;
	width: 15px;
	position: absolute;
	background: url('radiobox2.png') no-repeat 0 0;
}


.radiobox.checked a {
	background-position: 0 -16px;
}

.checkbox label,
.radiobox label
{
	display: inline-block;
}

.radiobox18 {
	display: inline-block;
	width: 20px;
	height: 20px;
	overflow: hidden;
	position: relative;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: #c5c5c5 solid 1px;
	box-sizing: border-box;
	cursor: pointer;
	vertical-align: middle;

	-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2);

	background: #fff;

}

.radiobox18 + label {
	margin-left: 3px;
	display: inline-block;
	vertical-align: middle;
}

.radiobox18 input[type="radio"] {
	left: -40px;
	top: 0;
	position: absolute;
	display: block;
	margin: 0;
}


.radiobox18 input[type="radio"]:checked + span {
	display: block;
	width: 10px;
	height: 10px;
	background-color: #000;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	left: 50%;
	margin-left: -5px;
	top: 50%;
	margin-top: -5px;
	box-sizing: border-box;
	border: #000 solid 2px;
}





