.hradiostyle.checkbox {
	position: relative;
	
	display: inline-block;
	
	width: 60px;
	height: 30px;
	line-height: normal;
	
	background: #d5d5d5;
	
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	
	cursor: pointer;
	
	overflow: hidden;
}
	.hradiostyle.checkbox .hradiostyle-label {
		position: absolute;
		top: 9px;
		left: 5px;
		
		width: 22px;
		
		text-align: center;
		
		/*color: #FFF;*/
		
		font-size: 13px;
		font-weight: bold;
	}

	.hradiostyle.checkbox .hradiostyle-button {
		position: absolute;
		top: 5px;
		right: 5px;
		
		height: 20px;
		width: 20px;
		
		-webkit-border-radius:20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}
		.hradiostyle.checkbox .hradiostyle-button.checked {
			/*background: #3CF;
			right: 68px;*/
		}
		
.hradiostyle.radio {
	position: relative;
	
	display: inline-block;
	
	height: 40px;
	
	background: #d5d5d5;
	
	-webkit-border-radius: 25px !important;
	-moz-border-radius: 25px !important;
	border-radius: 25px !important;
	
	cursor: pointer;
	
	overflow: hidden;
}
	.hradiostyle.radio .hradiostyle-label {
		position: relative;
		
		display: inline-block;
		
		width: 80px;
		height: 27px;
		padding: 13px 0 0 0;
		
		border-right: 1px solid #fff;
		
		text-align: center;
		
		/*color: #FFF;*/
		
		font-size: 14px;
		font-weight: bold;
		
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
		.hradiostyle.radio .hradiostyle-label:first-child {
			-webkit-border-top-left-radius: 25px !important;
			-webkit-border-bottom-left-radius: 25px !important;
			-moz-border-radius-topleft: 25px !important;
			-moz-border-radius-bottomleft: 25px !important;
			border-top-left-radius: 25px !important;
			border-bottom-left-radius: 25px !important;
		}
		.hradiostyle.radio .hradiostyle-label:last-child {
			border-right: 0;
			
			-webkit-border-top-right-radius: 25px !important;
			-webkit-border-bottom-right-radius: 25px !important;
			-moz-border-radius-topright: 25px !important;
			-moz-border-radius-bottomright: 25px !important;
			border-top-right-radius: 25px !important;
			border-bottom-right-radius: 25px !important;
		}
		.hradiostyle.radio .hradiostyle-label.checked {
		}