* {
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
}

body {
	width: 100%;
	background: #262568;
	color: #8c9398;
	font: 400 15px 'Roboto', sans-serif;
	text-align: center;
}

a {
	color: #4fc9f8;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

a:hover, a:active {
	color: #4397cd;
}

a:focus {
	outline: transparent solid 1px;
}

dl {
	margin: 21px 0;
	list-style-position: inside;
}

dd {
	margin: 9px 0;
}

dt {
	font-weight: 700;
	margin: 9px 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
}

img {
	border: none;
}

input, option, select {
	padding: 3px;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"] {
	padding: 6px;
	border: solid 1px #dfe1e4;
	border-radius: none;
}

input.error, select.error, textarea.error {
	background: #ee7777;
	border: 1px solid #ff0000;
}

input[disabled], select[disabled], textarea[disabled] {
	background: #dcdcdc;
	border: 1px solid;
}

li {
	margin: 9px 0;
}

ol, ul {
	margin: 21px 0;
	list-style-position: inside;
}

ol ol, ul ul {
	margin: 9px 0;
	padding-left: 21px;
}

p {
	line-height: 1.6;
	margin: 21px 0;
}

table {
	width: 100%;
	background: #fff;
	border-collapse: collapse;
	box-sizing: border-box;
	margin: 0 auto;
}

tr.heading-title {
	background: #fff;
	color: #43474b;
	font-size: 18px;
	font-weight: 400;
}

tr.heading-title th, tr.heading-title td {
	border-color: #fff;
	border-bottom: 1px solid #f3f5f8;
}

tr.heading {
	background: #dfe1e4;
	color: #43474b;
	font-weight: 700;
}

tr.heading2 {
	background: #bdc2c9;
	color: #fff;
	font-weight: 700;	
}

tr.heading3 {
	background: #f3f5f8;
	color: #74777b;
	font-weight: 700;
}

tr.small, tr.small input, tr.small select {
	font-size: 15px;
}

th, td {
	border: 1px solid #f3f5f8;
	padding: 9px;
	text-align: left;
}

#wrapper {
	width: 100%;
	max-width: 1366px;
	min-width: 768px;
	margin: 0 auto;
}

#header {
	width: 100%;
	background: #262568;
	margin: 0 auto;
	padding-top: 15px;
	position: relative;
}

#logo {
	padding-bottom: 15px;
}

#logo img {
	float: left;
}

#logo h1 {
	color: #fff;
	font: 700 27px 'Roboto', sans-serif;
	letter-spacing: 1px;
	line-height: 99px;
	margin-left: 114px;
	text-align: left;
	text-transform: uppercase;
}

#welcome {
	position: absolute;
	right: 0;
	text-align: right;
	top: 48px;
}

#nav {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

#nav ul {
	max-width: 1366px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

#nav ul li {
	max-width: 240px;
	backface-visibility: hidden;
	display: block;
	flex: 1;
	margin: 0;
	position: relative;
	text-align: center;
	z-index: 1;
}

#nav ul li a {
	color: #4397cd;
	display: block;
	line-height: 60px;
	overflow: hidden;
	padding-right: 24px;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#nav ul li a:after {
	backface-visibility: hidden;
	background: #4fc9f8;
	border-radius: 10px 10px 0 0;
	bottom: 0;
	box-shadow: inset 0 -3px 3px rgba(0,0,0,0.05);
	content: '';
	left: 0;
	outline: 1px solid transparent;
	position: absolute;
	right: 0;
	top: 0;
	transform-origin: 0 0;
	transform: perspective(6px) rotateX(0.93deg) translateZ(-1px);
	z-index: -1;
}

#nav ul li a.selected:after {
	background: #fff;
	box-shadow: none;
}

#nav ul li a span {
	font: 500 18px 'Roboto Slab', serif;
	text-transform: capitalize;
	transition: color 0.15s ease 0s;
}

#nav ul li a:hover span, #nav ul li a:active span {
	color: #fff;
}

#nav ul li a.selected:hover span, #nav ul li a.selected:active span {
	color: #4397cd;
}

#nav ul ul {
	display: none;
}

#content {
	width: 100%;
	margin: -1px auto 0 auto;
	position: relative;
	text-align: left;
	z-index: 2;
}

#footer {
	width: 100%;
	background: #262568;
	padding: 33px 0;
}

#footer a {
	color: #a1a9b0;
}

#footer a:hover, #footer a:active {
	color: #4fc9f8;
}

#footer p {
	font-size: 13px;
	margin: 0;
}

/* Float Classes */

.clear {
	clear: both;
}

.clearfix:after {
	display: block;
	clear: both;
	content: '';
	height: 0;	
	visibility: hidden;
}

.left {
	float: left;
}

.right {
	float: right;
}

/* Font & Text Classes */

.centeralign {
	text-align: center;
}

.leftalign {
	text-align: left;
}

.rightalign {
	text-align: right;
}

/* jQuery UI - Autocomplete Styles */

.ui-autocomplete {
	max-height: 200px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 20px;
}

* html .ui-autocomplete {
	height: 200px;
}