body{
	font-size: 120%;
	background: #F8F8FF;
}

.header{
	width: 90%;
	margin: 10px auto 0px;
	color: #e7ba67;
	background: #325d64;
	text-align: center;
	border: 1px solid #B0C4DE;
	border-bottom: none;
	border-radius: 10px 10px 0px 0px;
	padding: 20px;
}

.mainItemRed {
	margin: 20px 10px 20px 10px;
	padding: 20px;
	border: 1px solid #e96868;
	border-radius: 10px 10px 10px 10px;
	color: #ee5353;
	text-align: center;
}

.main{
	width: 90%;
	margin: 0px auto;
	padding: 20px;
	border: 1px solid #B0C4DE;
	background: white;
	border-radius: 0 0 10px 10px;
}

.subTitle {
	font-weight:bold;
	font-size:150%;
}

.mainItem{
	margin: 20px 10px 20px 10px;
	padding: 20px;
	border: 1px solid #325d64;
	border-radius: 10px 10px 10px 10px;
	color: #325d64;
	text-align: center;
}

.mainItem:hover{
	margin: 20px 10px 20px 10px;
	padding: 20px;
	border: 1px solid #325d64;
	border-radius: 10px 10px 10px 10px;
	background-color: #325d64;
	color: #e7ba67;
}

.mainItem:active{
	margin: 20px 10px 20px 10px;
	padding: 20px;
	border: 1px solid #325d64;
	border-radius: 10px 10px 10px 10px;
	background-color: #325d64;
	color: #e7ba67;
}

form{
	width: 90%;
	margin: 0px auto;
	padding: 20px;
	border: 1px solid #B0C4DE;
	background: white;
	border-radius: 0 0 10px 10px;
}
input[type=date]{
	height: 30px;
	width:93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
}
.input-group{
	margin: 10px 0px 10px 0px;
}

.input-group input[type=text]{
	height: 30px;
	width:93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
}
.input-group input[type=date]{
	height: 30px;
	width:93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
}
.input-group input[type=password]{
	height: 30px;
	width:93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
}

.btn{
	padding: 10px;
	font-size: 15px;
	color:white;
	background: #325d64
}

select {
	height: 30px;
	width:93%;
	padding: 5px 10px;
	font-size: 16px;
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* CAUTION: IE hackery ahead */
select::-ms-expand { 
    display: none; /* remove default arrow on ie10 and ie11 */
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}


