/*по материалам сайта http://web.made12.ru/recipes/item/16-styling-checkbox-using-jquery*/span.checkbox {        	cursor: pointer;    	display: inline-block;	width:18px;	height:18px;	margin-right: 20px;}span.checkbox:hover {}span.checkbox:hover .check {}span.checkbox input {    	display: none;}span.checkbox .check {    	background: url("../images/chekbox.png") no-repeat;    	float: left;	width:18px;	height:18px;/*	-webkit-border-radius: 3px;	-moz-border-radius: 3px;	border-radius: 3px;*/}span.checkbox.checked .check {    	background: url("../images/chekbox-y-checked.png") no-repeat;	background-size: 100% 100%;}span.checkbox.disabled .check {	opacity:0.5;}