/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Styling radio buttons and checkboxes
https://medium.com/@jalokimgraphics/make-your-radios-and-checkboxes-sexy-in-the-simplest-way-possible-ddc3dc2025d0
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.cssGeneral_HTMLHeader_Container{
	display: table;
	width:100%;
	background:#f5f5f5;
	border-radius: 6px;
	padding:0px;
	margin:0px;
	min-height: 100px;
	height:100px;
	margin-bottom:25px;
	-webkit-box-shadow: 	10px 15px 25px -25px rgba(0,0,0,0.75);
	-moz-box-shadow: 		10px 15px 25px -25px rgba(0,0,0,0.75);
	box-shadow: 			10px 15px 25px -25px rgba(0,0,0,0.75);
}
.cssGeneral_HTMLHeader_Padder{
	vertical-align: top;
	display: table-cell;
	width:1%;
	min-width: 100px;
	max-width: 120px;
	min-height: 100px;
	text-align: left;
}
.cssGeneral_HTMLHeader_Icon{
	display: table-cell;
	width:15%;
	text-align: center;
	margin:0 auto;
	padding-top:5px;
	vertical-align: top;
}
.cssGeneral_HTMLHeader_Title{
	display: table-cell;
	width:45%;
	text-align: left;
	height: 100%;	
	vertical-align: middle;	
}
.cssGeneral_HTMLHeader_Main{
	margin-top:10px;
	display: inline-block;
	width:100%;
	text-align: left;
	font-size: 18px;
	vertical-align: middle;	
}
.cssGeneral_HTMLHeader_Subheading{
	display: inline-block;
	width:100%;
	text-align: left;
	font-size: 10px;
	font-style: italic;
	vertical-align: middle;	
}
.cssGeneral_HTMLHeader_LinkOff{
	vertical-align: middle;
	display: table-cell;
	width:25%;
	text-align: right;
}
/************************************************
* Stop Watch styles
************************************************/
.cssStopWatchButtonDiv{
	line-height:5em;
	height: 60px;
	text-align: center;
	overflow:visible;
    width						: 100%			;
	display:inline-block;
	margin: 0 auto;
}
.cssStopWatchButton{
	padding						: 8px			;
	font-weight					: bold			;
    text-align					: center		;
    width						: 100%			;
	
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	border-radius: .5em;
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em; 
	
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	margin: 0 auto;

}
.cssStopWatchButton:hover {
	text-decoration: none;
	background: #2196F3;
}
.cssStopWatchButton:active {
	position: relative;
	top: 1px;
}
/************************************************
* Custom checkbox styling using labels in a div
************************************************/
/* Customize the label (the labelCheckbox) */
.labelCheckbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* Hide the browser's default checkbox */
.labelCheckbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
/* Create a custom checkbox */
.spanCheckmark {
	position: absolute;
	top: 0;
	left: 5px;
	height: 25px;
	width: 25px;
	background-color: #eee;
}
/* On mouse-over, add a grey background color */
.labelCheckbox:hover input ~ .spanCheckmark {
	background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.labelCheckbox input:checked ~ .spanCheckmark {
	background-color: #2196F3;
}
/* Create the spanCheckmark/indicator (hidden when not checked) */
.spanCheckmark:after {
	content: "";
	position: absolute;
	display: none;
}
/* Show the spanCheckmark when checked */
.labelCheckbox input:checked ~ .spanCheckmark:after {
	display: block;
}
/* Style the spanCheckmark/indicator */
.labelCheckbox .spanCheckmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
} 
/************************************************
* Draw attention wiggle styling
************************************************/
@-webkit-keyframes wiggle {
	0% {-webkit-transform:rotate(4deg);}
	50% {-webkit-transform:rotate(-4deg);}
	100% {-webkit-transform:rotate(4deg);}
}
@-moz-keyframes wiggle {
    0% {-moz-transform:rotate(4deg);}
    50% {-moz-transform:rotate(-4deg);}
    100% {-moz-transform:rotate(4deg);}
}
@keyframes wiggle {
    0% {transform:rotate(4deg);}
    50% {transform:rotate(-4deg);}
    100% {transform:rotate(4deg);}
}
.drawAttention {
    animation: wiggle 0.2s;
    -webkit-animation: wiggle 0.2s;
	-moz-animation: wiggle 0.2s;
	color:#ff0000;
	text-align: center;
}
.drawAttention2 {
    animation: wiggle 0.2s;
    -webkit-animation: wiggle 0.2s;
	-moz-animation: wiggle 0.2s;
	color:#000000;
	text-align: center;
}