* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	color: #2e2d30;
}

body, html {
	width: 100%;
	height: 100%;
	min-height: 100%;
}

a {
	color: #1E6C8B;
	text-decoration: underline;
}

select, input, textarea {
  -webkit-border-radius: 0;
}

input, textarea {
  -webkit-appearance: none;
}

*:focus {  
	outline: none;  
}  

table { 
    border-spacing: 10px;
    border-collapse: collapse;
}

.content_wrapper {
	width: 100%;
	height: 100%;
}

.content_padding {
	padding: 10px;
}

.center_form {
	width: 518px;
	margin: 0 auto;
}

.logo_row {
	padding-bottom: 20px;
}

#loginProcedure {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: none #ededed;
	overflow: hidden;
	padding: 24px 0 24px 50px;
}

.login_table {
	font-size: 22px;
	width: 100%;
}

.login_table td {
	padding: 10px 0;
}

.login_table input[type=text],
.login_table input[type=password] {
	font-size: 22px;
	height: 44px;
	line-height: 44px;
	border: 1px solid #ababab;
	padding: 0 20px;
	width: 160px;
}

.login_table select {
	font-size: 22px;
	height: 44px;
	line-height: 44px;
	border: 1px solid #ababab;
	padding: 0 0 0 20px;
	width: 202px;
}

.login_form_submit {
	font-size: 22px;
	color: #fff;
	height: 44px;
	line-height: 44px;
	padding: 0 30px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 0 none;
	line-height: 1em;
	cursor: pointer;
	background: rgb(36,122,157); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(36,122,157,1) 0%, rgba(32,108,139,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(36,122,157,1)), color-stop(100%,rgba(32,108,139,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(36,122,157,1) 0%,rgba(32,108,139,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(36,122,157,1) 0%,rgba(32,108,139,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(36,122,157,1) 0%,rgba(32,108,139,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(36,122,157,1) 0%,rgba(32,108,139,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#247a9d', endColorstr='#206c8b',GradientType=0 ); /* IE6-9 */
}

.login_table td.login_form_label {
	padding-right: 20px;
	width: 25%;
}

.error_message {
	color: red;
    font-size: 22px;
    padding: 0 0 10px;
    text-align: center;
}

.other_links {
	width: 100%;
	margin-top: 10px;
}

.other_links td {
	text-align: center;
}

.other_links a {
	text-decoration: none;
	color: #2e2d30;
}

.other_links a:focus,
.other_links a:hover {
	text-decoration: underline;
}