body {
    font-family: Arial,sans-serif;
    font-size: 0.75em;
    color: #111;
    /*text-align: center;*/
}

/*** custom checkboxes ***/

input[type=checkbox] {
    /*display: none;*/
	display: inline-block
}

/* to hide the checkbox itself */
/*input[type=checkbox] + label:before {
    font-family: FontAwesome;
    display: inline-table;
	letter-spacing: 5px;
}*/

/* unchecked icon */
/*input[type=checkbox] + label:before {
    content: "\f096";
    font-size: 18px;
    padding-right: 8px;
	 letter-spacing: 10px;
}
*/
/* checked icon */
/*input[type=checkbox]:checked + label:before {
    content: "\f046";
    padding-right: 5px;
}
*/


/* to hide the checkbox itself */
/* label>input[type=checkbox]:before {
     position: absolute;
    background-color: #FFFFFF;
    height: 100%;
width: 100%;
    font-family: FontAwesome;
    display: inline-block;
    content:"\f096";
    letter-spacing: 10px;
}*/
/* space between checkbox and label */
 /*label>input[type=checkbox]:checked:before {
     font-family: FontAwesome;
    display: inline-block;
    content:"\f046";
    letter-spacing: 5px;
}
*/


