/* CSS Document for Screens */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #555;
	margin: 0;
	padding: 0;
	background-color: #e0e0e0;
}
/* Text */
h1 {
	margin: 0 0 1em 0;
	padding: 20px 0 10px 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 2em;
	color: #3A9E46;
	border-top: 1px solid #dedede;
}

a {
	color: #3A9E46;
	text-decoration: none;
}
a:visited {
	color: #3D7169;
}
a:hover {
	text-decoration: underline;
}
/* top bar */

/*page*/
#page {
	max-width: 1000px;
	position: relative;
	background-color: #fff;
	box-shadow: 0px 0px 3px #999;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
/* Header*/ header {
	background: #fff;
	position: relative;/*padding-top:50px; for using fixed top bar*/
}
header a.centrallogo {
	position: absolute;
	display: block;
	width: 250px;
	height: 115px; /* links are normally inline elements*/
	background: url(../images/centrallargelogogif.gif) no-repeat 0 0;
	background-size: contain; /*this ensures the logo is scaled to fit the width and height properties*/
	top: 15px; /*65px if use fixed top bar*/
	left: 20px;
}
header a.centrallogo span { /*this is here to hide the words Central Recruitment*/
	display: none;
	background-color: #ffffff;
}
/* Menus */
/*top-level*/
#topNavigation {
	padding: 100px 0 100px 0; /*pushes recruitment/training menu down 100px from top*/
}
#topNavigation::after {/*ensures that the links appear on their own line*/
	content: '';
	display: block;
	clear: both;
}


#gridViewSpacer {
	margin-bottom: 150px;
}

/*Login box on Login page*/
#LoginBox {
	border-top: 1px #eaeaea solid;
	border-bottom: 1px #cccccc solid;
	border-left: 2px #eaeaea solid;
	border-right: 1px #eaeaea solid;
	background-color: #F5F5F5;
	width: 40%; /*50% of width of page*/
	margin: 0 auto; /*positioned the box in the centre of the page*/
}
#LoginBox p {
	padding-left: 20px;
	padding-top: 5px;
}
.title {
	color: #fff;
	font-size: 150%;
	font-weight: bold;
	display: block; /*makes this into a block*/
	padding: 15px 0px 15px 20px;
	margin: 0px 0px 30px 0px;
	border-top: 5px #3A9E46 solid;
	border-bottom: 2px #ccc solid;
	background-color: #3A9E46;
}
.lockicon {
	color: #ccc;
	padding-right: 5px;
}
.loginLabel {
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 5px 0 0 5px;
	background-color: #d4d4d4;
	margin: 0;
	height: 20px;
	vertical-align: top;
	padding-top: 5px;
}
.loginBoxes {
	margin-left: 5%;
}
.asptextboxLogin {
	width: 250px;
	border: 1px solid #ccc;
	height: 25px;
	border-radius: 0 5px 5px 0;
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
	padding-left: 10px;
}
#signInButton {
	border-top: 1px #999 solid;
	padding: 15px 0px 0px 0px;
	margin: 30px 20px 0px 20px;
}

.submitButtonInline {
	font-family: 'Open sans', sans-serif;
	background-color: #3A9E46;
	font-size: 1em;
	color: #fff;
	font-weight: bold;
	padding: 10px 20px;
	border: none;
	display: block;
	margin: 20px 20px 5px 20px;	
	transition: background-color .5s ease;
    display: inline-block;
}
 .submitButtonInline:hover {
	cursor: pointer;/*box-shadow: 0 4px 8px 0 rgba(181, 12, 33, 0.2), 0 6px 20px 0 rgba(181, 12, 33, 0.19);**/
	background-color: #3D7169;
}
footer
{
	clear: both;
	padding: 0px;
	height: 73px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 100%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666666;
	background-color: #FFFFFF;
}

	footer p
	{
		/**font-family: Verdana, Arial, Helvetica, sans-serif;**/
		/**font-size: 1em;**/
		font-weight: normal;
		/**color: #666666;**/
		margin: 0px;
		padding-top: 30px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 40px;
		background-color: #FFFFFF;
		font-size: 100%;
	}

	footer a
	{
		text-decoration: underline;
		color: #666666;
	}

	footer .leftalign
	{
		/**font-family: Verdana, Arial, Helvetica, sans-serif;**/
		font-size: .75em;
		color: #999;
		float: right;
		text-decoration: none;
		padding-right: 30px;
	}

@media screen and (max-width: 825px) {
   #LoginBox {
        width: 75%;
        margin: 0 auto;
        
    }
}

@media screen and (max-width: 525px) {
    #LoginBox {
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 450px) {
    .asptextboxLogin {
        width: 200px;
    }
}


