/* ------------------------------------------------------------------------
	This you can customize
------------------------------------------------------------------------- */

	label.checkbox span.holder {
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	label.checkbox span.holder:hover {
		cursor: pointer;
	}

	label.checkbox span.holder:before {
		content: "\f096";
	}

	label.checkbox.checked span.holder:before {
		content: "\f046";
	}

	label.checkbox span.textWrap {
		position:relative;
		top: -2px;
	}
	
	label.checkbox.disabled span.holder
	{
	    background: url(../../images/checkboxDisabled.png) 0 -1px no-repeat; /* Path to your checkbox image */
	}
	
	label.checkbox.disabled .textWrap
	{
	    color:#BBBBBB;
	}
	
	

	label.radio span.holder {
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	label.radio span.holder:hover {
		cursor: pointer;
	}

	label.radio span.holder:before {
		content: "\f10c";
	}

	label.radio.checked span.holder:before {
		content: "\f192";
	}

	label.radio span.textWrap {
		position:relative;
		top: -2px;
	}
	
	label.radio.disabled span.holder
	{
	    background: url(../../images/checkboxDisabled.png) 0 -1px no-repeat; /* Path to your checkbox image */
	}
	
	label.radio.disabled .textWrap
	{
	    color:#BBBBBB;
	}
		
	label.checkbox:hover span.holder,
	label.radio:hover span.holder { top: 0px !important; } /* Background position on mouseover */


/* ------------------------------------------------------------------------
	Customize at your own risk
------------------------------------------------------------------------- */

	label.list {

		margin: 0 0 5px 2px;
	}
	
	label.inline {
		margin: 0 10px 0 0;
	}
	
		input.hiddenCheckbox {
			position: absolute; left: -10000px; /* Hide the input */
		}
	
		label.prettyCheckbox span.holderWrap {
			display: inline-block;
			position: relative;
			margin-right: 5px;
			margin-bottom: -3px;
			overflow: hidden;
		}
		
		label.prettyCheckbox span.holder {
			display: inline-block;
			position: absolute;
			top: 0; left: 0;
		}