/*for accessible buttons using mybutton class*/
div.c {
	margin-top:8px;
	margin-bottom:8px;
}

.myButton {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background-color:White;
	border-radius:6px;
	border:1px solid #1C355E;
	display:inline-block;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:15px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
	width:100%;
	text-align:Left;
	color:#1C355E !important;
}

.myButton:hover {
	color:#1C355E;
	Background-color:Whitesmoke;
	text-decoration:none !important;
}
.myButtonAlt {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background-color:Whitesmoke;
	border-radius:6px;
	border:1px solid #1C355E;
	display:inline-block;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:15px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
	width:100%;
	text-align:Left;
	color:#1C355E !important;
}

.myButtonAlt:hover {
	color:#1C355E;
	Background-color:White;
	text-decoration:none !important;
}
.threewide {
	width:32%;
}

.twowide {
	width:49%;
}

.box {
	line-height: 50px;
	text-align:center;
	font-size:20px;	
}
	
	
/* This section contains css for a grid with vertical dividers*/

.grid-container {
  display: grid;
  grid-row-gap: 0;
  grid-template-columns: 200px 200px 200px 200px;
  background-color: white;
  padding: 10px;
}
.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(0, 0, 0, 0.8);  
  padding: 5px;
  font-size: 40px;
    font-weight: bold;
  color: #097881;
  text-align: center;
}
.last{
border-right: 1px solid rgba(0, 0, 0, 0.8);
}

.grid-item2 {
  background-color: rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(0, 0, 0, 0.8);
  padding: 5px;
  font-size: 20px;
  color: Black;
  text-align: center;
}

/* Class code to hide headers for accessibility */
.visually-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Class code to create a container around elements */
.flex-container {
	display: flex;
	flex-direction: column;
	border: 2px solid #1c355e;
	padding: 10px;
	width: 100%;
	border-radius:6px;
	Background-color:white;
}
.flex-container-alt {
	display: flex;
	flex-direction: column;
	border: 2px solid #1c355e;
	padding: 10px;
	width: 100%;
	border-radius:6px;
	Background-color:Whitesmoke;
}