
#SimpleSearchDiv div{
	display: none;
}

.inputLabel{
	width: 33%;
	text-align: right;
	padding-right: 5px;
	font-weight: normal;
	font-size: 16px;
}

input[type=text], select{
	width: 35%;
	padding: 8px;
	border: 1px solid #36758D;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 10px;
	resize: vertical;
}

.inputTxt {
	font-weight: normal;
	font-size: 16px;
}


.bttnRow{
	width: 770px;
	margin: auto;
}

.button {
	background-color: white;
	border: 1px solid #36758D;
	color: #36758D;
	text-align: center;
	text-decoration: none;
	margin: 4px 2px;
	height: 40px;
	width: 250px;
	cursor: pointer;
	border-radius: 20px;
	outline: none;
}

.button:hover {
	background-color: #f2f2f2;
}

.button.active {
	background-color: #36758D;
	color: white;
	font-size: 16px;
}




#filerIdA{
	display: inline;
}

#filerIdB{
	display: none;
}

#correctionDiv{
	text-align: center;
}

/*For the Correction Checkbox*/
.corrBox {
	position: relative;
	
	margin-bottom: 12px;
	cursor: pointer;
	font-weight: normal;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.corrBox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
	float: right;
	margin-left: 5px;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: white;
	border: 1px solid #36758D;
}

/* On mouse-over, add a grey background color */
.corrBox:hover input ~ .checkmark {
	background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.corrBox input:checked ~ .checkmark {
	background-color: #36758D;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: relative;
	display: none;
}

/* Show the checkmark when checked */
.corrBox input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.corrBox .checkmark:after {
	left: 8px;
	top: 2px;
	width: 8px;
	height: 16px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#searchDiv{
	width: 236px;
	margin: auto;
}

/*Search and Clear Buttons*/
.search-row {
	background-color: #36758D;
	border: 2px solid #36758D;
	color: white;
	text-align: center;
	text-decoration: none;
	margin: 4px 2px;
	height: 40px;
	width: 100px;
	cursor: pointer;
}

.search-row:hover {
	font-weight: bold;
}




@media (max-width: 991px){
	
	.bttnRow{
		width: 620px;
	}
	
	.button{
		width: 200px;
	}
	
}

@media (max-width: 670px){

	input[type=text], select{
		width: 220px;
	}
	
	.bttnRow{
		width: 415px;
	}
	
	#filerIdA{
		display: none;
	}

	#filerIdB{
		display: inline;
	}
}



@media (max-width: 579px){
	
	#correctionDiv{
		width: 300px;
		margin: auto;
		text-align: left;		
	}
	
	.corrBox{
		width: 275px;
		padding-left: 35px;
	}
	
}




@media (max-width: 450px){
	
	#SimpleSearchDiv{
		width: 300px;
		margin: auto;
	}
	
	.bttnRow{
		margin-left: 20px;
		margin-right: 20px;
		width: auto;
	}
	
	.button{
		min-width: 200px;
		width: 100%;
		height: 30px;
		border-radius: 10px;
	}
	
	.inputLabel{
		margin-left: 15px;
		text-align: left;
		width: 300px;
	}
	
	input[type=text], select{
		margin-left: 35px;
	}
	
	#msgDiv{
		margin-left: 40px;
	}
	
	.inputTxt{
		font-size: 15px;
		width: 200px;
	}
	
}











