/****************************
* Checkbox styling (checkbox group)
****************************/
input[type='checkbox'] {
	opacity:0;
}
button {
	cursor:pointer;
}
.checkboxLabel {
	margin-left:-22px;
}
.checkboxLabel:before {
    content: "\00a0";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    position: relative;
    left: 4px;
    /*bottom:-1px;*/
	padding-bottom:2px;
	padding-left:1px;
	padding-right:1px;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 2px 1px rgba(0, 0, 0, .6), inset 8px -4px 1px 2px rgba(255, 255, 255, 0.7);
}

input[type='checkbox']:checked + label:before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	font-weight:bold;
	color: #030303;
	text-align: center;
	
}
.scc-checkbox-control {
	font-size:14px;
	padding-left:10px;
}
