@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600'); 

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: 'Open Sans', 'Helvetica', sans-serif;
}

body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: #f0f0f0;
	color: #000000;

}

#bodyDiv {
	width: auto;
	overflow:auto;
	margin-left:20px;
	margin-right:20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}

#headerDiv {
	position: fixed;
	left: 0;
	top: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	background: #EAA000;
	border-bottom: 5px solid #EAA000;
	background-image: url("./graphics/General_Maryland_Flag_1500x844.jpg");
	background-position: center bottom;
	background-size: 105% auto;
	background-color: #f0f0f0;
  z-index: 100;

}

#footerDiv {
	position: fixed;
	left: 0;
	bottom: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	border-top: 1px solid #00000011;
	background-color: #f0f0f0;
  z-index: 100;
}

.divHeader h1 , .divFooter h1{
	font-size: medium;
	font-weight: bold;
}

.divHeader a , .divFooter a {
	color: #9D2235;
	font-weight: bold;
	text-decoration: underline;
}
.divHeader a:hover , .divFooter a:hover {
	background: #EAA000;
}



.myInputTextLabel {
	padding:0px;
	padding-left: 5px;
	line-height: 1.2;
	font-size: small;
}

.myInputText {
	background:#fdfdfd;
	font-size: 18px;
	color: #333;
	line-height: 1.2;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 5px;
	border: 1px solid;
	border-color: #c4c4c4;
	margin-bottom: 15px;			
}

.myInputText:focus {
	background:#ffffff;
}

.myInputText[disabled] {
	background-color: #e1e1e1;
	cursor: not-allowed;
}


.mySelectLabel {
	padding:0px;
	padding-left: 5px;
	line-height: 1.2;
	font-size: small;
}

.mySelect {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.mySelect select {
	background-color:#fdfdfd;
	font-size: 18px;
	color: #333;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 5px;
	border: 1px solid;
	border-color: #c4c4c4;
			margin: 0;
	margin-bottom: 15px;			
	text-indent: 0.01px;
	text-overflow: initial;
	-webkit-appearance: button; /* hide default arrow in chrome OSX */
}

.mySelect::before,
.mySelect::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.mySelect::after { /*	Custom dropdown arrow */
	/*content: "\25BC";*/
	height: 1em;
	font-size: .625em;
	line-height: 1.5;
	right: 1.2em;
	top: 50%;
	margin-top: -.5em;
}

.mySelect::before { /*	Custom dropdown arrow cover */
	width: 2em;
	height:43px;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 0 3px 3px 0;
}

.mySelect select[disabled] {
	color: rgba(0,0,0,.3);
}

.mySelect select[disabled]::after {
	color: rgba(0,0,0,.1);
}

.mySelect::before {
	background-color: rgba(0,0,0,.15);
}

.mySelect::after {
	color: rgba(0,0,0,.4);
}


.myRadio {
	top: 0;
	left: 0;
	height: 2em;
	width: auto;
	background-color: #eeeeee00;
	border-radius: 50%;			
}

.myRadioLabel {
	background-color:#dddddd;
	font-size: 18px;
	color: #333333;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 5px;
	border: 1px solid #d4d4d4;
	margin: 0;
	margin-bottom: 15px;			
	text-indent: 0.01px;
	text-overflow: initial;
	line-height: 2;
}
	
.gridcontainer {
	display: grid;
	grid-template-columns: 25% 75%;
	grid-column-gap: 5px;
	grid-row-gap: 25px;
}

li {
}

canvas {
	display: block;
	margin-top:20px;
	margin-bottom: 20px;
}

.creditDiv {
	text-align: left;
	vertical-align: bottom;
	padding-left: 20px;
}


/* https://codepen.io/dsenneff/pen/ZoLVZW */
.toggle {
  margin: 0 0 1.5rem;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.toggle input + label {
  margin: 0;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #DDD;
  background-color: #f0f0f0;
	color: #999999;
  font-size: 1.0rem;
  line-height: 130%;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
  /* ADD THESE PROPERTIES TO SWITCH FROM AUTO WIDTH TO FULL WIDTH */
  /*flex: 0 0 50%; display: flex; justify-content: center; align-items: center;*/
  /* ----- */
}
.toggle input + label:first-of-type {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.toggle input + label:last-of-type {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.toggle input:hover + label {
  border-color: #213140;
}
.toggle input:checked + label {
  background-color: #EAA000;
  color: #FFF;
  box-shadow: 0 0 10px #EAA00033);
  border-color: #EAA000;
  z-index: 1;
}
.toggle input:focus + label {
  outline: dotted 1px #CCC;
  outline-offset: 0.45rem;
}
@media (max-width: 800px) {
  .toggle input + label {
    padding: 0.5rem 0.25rem;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
