@charset "utf-8";
/* CSS Document */

	.CheckBoxClass, .RadioClass{
		display: none;
	}
	.CheckBoxLabelClass{
		/*background: url("../images/unchecked.png") no-repeat;*/
                background: url("../images/unchecked.jpg") no-repeat;
		display:block;
		height:20px;
		margin:0;
		/*padding-left:18px;*/
                padding-left:20px;
		padding-top:5px;
		width:140px;
	}
	.CheckBoxLabelClass:hover, .LabelSelected:hover{
		text-decoration: none;
		cursor:pointer;
	}
	
	.LabelSelected{
		/*background: url("../images/checked.png") no-repeat;*/
                background: url("../images/checked.jpg") no-repeat;
		display:block;
		height:20px;
		margin:0;
		/*padding-left:18px;*/
                padding-left:20px;
		padding-top:5px;
		width:140px;
	}
	.RadioLabelClass{
		background: url("../images/radioBtn_uncheck.gif") no-repeat;
	}
	.RadioSelected{
		background: url("../images/radioBtn_checked.gif") no-repeat;
	}
	.RadioLabelClass:hover{
		text-decoration: none;
		cursor:pointer;

	}

