/*
	Updated by Seth Marquardt. Original by:
	Author	:	Christopher Robinson
	Email		:	christopher@edg3.co.uk
	Website	:	http://www.edg3.co.uk/
*/

* {
	border: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* general */
a {
	color: #2c6bed;
	text-decoration: none;
}

a:hover {
	color: #1e3a8a;
	text-decoration: underline;
}

/* body */
body {
	background: #ffffff;
	color: #333;
	font: 0.9em Arial, Helvetica, sans-serif;
}

/* header */
#header {
	border-bottom: 2px solid #2c6bed;
	height: 140px;
	margin: 0 auto;
	position: relative;   
	padding: 14px 0;
}

#logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.logo-pic {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	border: 2px solid #2c6bed;
	object-fit: cover;
}

.custom-text {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	text-align: right;
}
  
#header h1 {
	color: #555;
	font-size: 40px;
	letter-spacing: -2px;
	margin: 0;
	line-height: 1.1;
}

#header h2 {
	color: #9aa3ad;
	font-size: 26px;
	letter-spacing: -1px;
	margin: 0;
}

/* navigation */
#navigation {
	background: #f5f7ff;                
	border-right: 2px solid #2c6bed;
	margin: 0 auto;
	width: 750px;
	height: 44px;
	list-style: none;
}

#navigation li {
	border-left: 1px solid #c7d2fe;     
	float: left;
	width: 149px;
	list-style: none;
}

#navigation a {
	color: #1f2a37;
	display: block;
	line-height: 44px;
	text-align: center;
	font-weight: bold;
}

#navigation a:hover {
	background: #e7f0ff;
	color: #1e3a8a;
}

#navigation .active {
	background: #dbeafe;
	color: #1e3a8a;
}

#index-menu {
	width: 751px;
	margin: 15px auto 20px auto;
	text-align: center;
	font-size: 14px;
	line-height:1.5;
}

/* content */
#content {
	height: auto;
	margin: 0 auto;
	padding: 0 0 20px;
	width: 751px;
}

#content h1 {
	border-bottom: 1px dashed #2c6bed;
	font-size: 1.8em;
	padding: 20px 0 0;
	color: #1f2a37;
}

#content p {
	padding: 16px 20px 0;
	line-height: 1.6;
}

/* footer */
#footer {
	border-top: 2px solid #2c6bed;
	height: 50px;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	width: 751px;
	color: #667085;
}

/* Added by Larry Ullman, updated  */
.error, .ad {
	font-weight: bold;
	color: #b42318;
}

input, select, .input {
	padding: 6px;
	font-weight: bold;
	font-size: 1em;
	color: #0f766e;                     
	background: #ffffff;
	border: 1px dotted #2c6bed;
}							