/** Custom Checkboxes **/
/* fake checkbox : unchecked (default/base) state */
.fakecheck {
	text-decoration: none;
	outline: none;
	background: url("../images/checkbox.gif") no-repeat;
	height: 16px;
	display: block;
	float: left;
	padding: 1px 0px 0px 20px;
	white-space: nowrap;
	color: #0A2F66;
	font-size: 9pt;
}
.fakechecked:hover {
	color: #0A2F66;	
}
.fakechecked:visited {
	color: #0A2F66;
}
/* fake checkbox : checked state */
.fakechecked {
	background-position: left -25px;
}

.checkedImg { 
	display: block; 
	width: 20px; 
	height: 15px; 
	background-image: url("../images/checkbox.gif");
	background-repeat: no-repeat; 
	background-position: 2px -27px;
	position:relative;
	padding-left: 5px;
}

.checkedDisabledImg { 
	display: block; 
	width: 20px; 
	height: 15px; 
	background-image: url("../images/checkbox.gif");
	background-repeat: no-repeat; 
	background-position: 2px -51px;
	position:relative;
	padding-left: 5px;
}

.fakecheckNoLabel {
	padding-left: 10px;	
}
