@charset "utf-8";
/* CSS Document */

.innerSection {
  margin: 0 auto;
  width: 50%;
}
.pageTitle {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 26px;
}
.formSection {
  float: left;
  width: 100%;
}
label{
	font-weight: normal;
	width: 110px;
}
.formItem{
	float: left;
	width: 100%;
	margin-bottom: 10px;	
	font-size: 18px;
}
input[type=text] {
  background-color: #e8e8ef;
  padding: 5px 10px;
  box-shadow: 4px 3px 3px #f2f2f4;
  width: 200px;
}
input[type=submit]{
	padding: 5px 30px;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 5px;
  border: 2px solid #e7edf3;
  vertical-align: middle;
}
input[type="checkbox"]:checked {
  background: #051a30;
}
.marginTop{margin-top: 10px;}
#MainDiv{border: none;}
.termtext{
    color: #337ab7;
    cursor: pointer;
}
.black_overlay{
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index:999999;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
.white_content {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    overflow: hidden;
	border-radius: 5px;
}
.close_button{
    float: right;
    position: absolute;
    right: 10px;
    top: 5px;
}
.close_button a{color:#000;}

@media (max-width: 480px) {
	.innerSection {
	  margin: 0 auto;
	  width: 90%;
	}
	.logo img{width: 100%;}	
	input[type="text"] {
	  width: 90%;
	}
	.alignCenter{
		text-align:center;
		margin-top: 20px;
	}
	label {
	  font-weight: normal;
	  width: 100%;
	  padding-right: 10px;
	}
	.white_content {
		width: 90%;
		top: 35%;
	}
	
}