﻿@charset "utf-8";
* {
	box-sizing: border-box !important;
}
a:hover {
	transition: 2s;
}
html, body {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	background-image: url(../images/body_bg.jpg);
}
.form_headingNRLM {
	width: 100%;
	border-bottom: 2px solid #999;
	font-size: 24px;
	padding: 1% 0;
	margin-bottom: 1%;
	text-align: center;
	background-color: #EFEFEF;
}

.container {
	width: 80%;
	margin: 0 auto;
}
.formBanner {
	width: 100%;
}
.formBanner img {
	width: 100%;
}
/* form table*/
.recruitmentForm {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.recruitmentForm th {
	padding: 10px;
	border: #ddd 1px solid;
	color: #000;
	margin: 0 0 0 0;
	font-weight: normal;
	text-align: left;
	background-color: #e6e6e6;
	font-size: 18px;
}
.recruitmentForm td {
	padding: 10px;
	border: #ddd 1px solid;
	text-align: left;
}
/* provide some minimal visual accomodation for IE8 and below */

.recruitmentForm tr {
	background: #9FD9FF;
}
/*  Define the background color for all the ODD background rows  */

.recruitmentForm tr:nth-child(odd) {
	background: #FBFBFB;
}
/*  Define the background color for all the EVEN background rows  */

.recruitmentForm tr:nth-child(even) {
	background: #f7f7f7;
}
.recruitmentForm input[type="text"], input[type="password"], textarea, select {
	padding: 7px;
	border-radius: 4px;
	background-color: #fff;
	border: #ddd 1px solid;
	width: 80%;
}
.recruitmentForm input:focus {
	outline: none;
	box-shadow: 0px 0px 5px #ddd;
	border: #ddd 1px solid;
}
.recruitmentForm input:hover {
	border-radius: 5px;
}
.recruitmentForm select {
	width: 80%;
}
.recruitmentForm select:focus {
	outline: none;
	box-shadow: 0px 0px 5px #ddd;
	border: #ddd 1px solid;
}
.recruitmentForm select:hover {
	border: #ddd 1px solid;
	border-radius: 5px;
}
.recruitmentForm textarea:focus {
	outline: none;
	box-shadow: 0px 0px 5px #ddd;
	border-color: #ffd0b4;
}
.recruitmentForm textarea:hover {
	border: 1px solid #eaeaea;
	border-radius: 5px;
}
.recruitmentForm .btn {
	background-color: #234280;
	border: none !important;
	padding: 8px 8px;
	color: #fff;
	font-size: 14px;
	border-radius: 5px 5px;
}
.recruitmentForm .btn:hover, .btn:active {
	background-color: #036aa5;
	;
	border: none !important;
	padding: 8px 8px;
	color: #fff !important;
	font-size: 14px;
	border-radius: 5px 5px;
}
/* form table*/
