body,td,p{
	font-family: Arial, Helvetica, Sans-serif;
	text-align:left;
	color: #333333;
	font-size:13px;
	text-rendering: optimizelegibility;
	line-height: 1.5;
}

body a, td a,p a{
	color:#993300;
	text-decoration:underline;
}  

input[type="text"], textarea, select{
	font-family: Arial, Helvetica, Sans-serif;
	font-size:12px;
	padding: 5px 10px;
	border: 1px solid #b7b7b7;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #333333;
	-o-text-overflow: clip;
	text-overflow: clip;
	background: rgba(252,252,252,1);
	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
	-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}

input[type="text"]:focus, select:focus{ background: #e7eaf8; }

input[type="submit"]{
	background:-webkit-gradient(linear, left bottom, left top, color-stop(0, #162762), color-stop(1, #20378b));
	border: 1px solid;
	border-color:#142255 #121e4d #0f1940 #121e4d;
	color:#FFFFFF;
	border-radius:0.25em;
	text-shadow:0 1px 0 rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	padding: 5px 20px;
	cursor:pointer;
	width:150px;
}


/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-family: Arial, Helvetica, Sans-serif;
  color: #333333;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 1px solid #b7b7b7;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #333333;
	-o-text-overflow: clip;
	text-overflow: clip;
	background: rgba(252,252,252,1);
	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
	-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #162762 ;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.container .checkmark: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);
}
table { border-spacing:10px; }

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
}

.header {
	font-size: 18px;
	text-rendering: optimizelegibility;
	font-family: Lato, sans-serif;
	line-height: 28px;
}



progress {
  display: block; /* default: inline-block */
  padding: 1px;
  background: rgba(252,252,252,1);
  border: 1px solid #b7b7b7;
}

progress::-moz-progress-bar {
  border-radius: 12px;
  background: #FFF;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.4), 0 2px 5px 0px rgba(0,0,0,0.3);
  
}
/* webkit */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  progress {
    height: 25px;
  }
}
progress::-webkit-progress-bar {
    background: transparent;
}  
progress::-webkit-progress-value {  
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1), 0 2px 5px 0px rgba(0,0,0,0.2);
} 

.progress_green::-webkit-progress-value {  
  background: #85e085;
} 
.progress_yellow::-webkit-progress-value {  
  background: #ffff99;
} 
.progress_orange::-webkit-progress-value {  
  background: #ffa64d;
} 
.progress_red::-webkit-progress-value {  
  background: #ff5050;
} 
