/*	Style Reset & Initial Settings
------------------------------------------------------------------------*/

* {
	border: 0;
	margin: 0;
	padding: 0;
}

body {
	color: #333333;
	font-family: 'Roboto', sans-serif;
	font-size: 0.9em;
	line-height: 150%;
}

/*	Typography
------------------------------------------------------------------------*/

a {
	color: #1990d5;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h2 {
	color: #1990d5;
	font-size: 1.5em;
	font-weight: 400;
	margin-bottom: 30px;
	padding-left: 15px;

	background-image: url(../images/caret.png);
	background-repeat: no-repeat;
	background-position: left center;
}

hr {
	border: 1px solid #ddd;
	border-bottom: 0px;
}

strong {
	font-weight: 700;
}

table {
	border-collapse: collapse;
	table-layout: fixed;
}

th {
	font-weight: normal;
	text-align: left;
	width: 250px;
}

tr {
	border-bottom: 1px solid #ddd;
}


ul, ol {
	list-style-type: none;
}

/*	Page Layout
------------------------------------------------------------------------*/

#page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#header_wrapper, #content_wrapper, #footer_wrapper {
	padding: 0 30px;
}

#header_wrapper {
	background-color: #383838;
}

#content_wrapper {
	background-color: #fafafa;
	flex-grow: 1;
}

#footer_wrapper {
	background-color: #eee;
}

#header, #content, #footer {
	display: flex;
	flex: 0 1 1024px;
	padding: 30px 0px; Does this help or hurt?
}

#header {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#content {
	flex-direction: column;
}

#footer {
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.break {
	margin-bottom: 30px;
}

.halfbreak {
	margin-bottom: 15px;
}

.fine, .finenum {
	font-size: 0.9em;
}

.fine {
	padding-left: 9px;
}

.superscript {
	color: #1990d5;
	font-size: 0.8em;
	padding-right: 5px;
	vertical-align: super;
}

.h2superscript {
	font-size: 0.5em;
	vertical-align: super;
}

@media only screen and (min-width: 1024px) {

	#header_wrapper, #content_wrapper, #footer_wrapper {
		display: flex;
		justify-content: center;
	}

}

/*	Header
------------------------------------------------------------------------*/

#header img {
	margin: 30px 30px 30px 0;
}

#nav {
	display: flex;
	white-space: nowrap;
}

#nav a {
	color: #bbb;
	font-size: 1.2em;
	font-weight: 700;
	padding: 15px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .25s;
}

#nav a:hover {
	color: #6ac2fe;
}

#nav .active a {
	color: #fff;
}

/*	Footer
------------------------------------------------------------------------*/

#footer_contact a {
	display: inline-block;
	color: #eee;
	font-size: 1.2em;
	font-weight: 400;
	background-color: #1990d5;
	padding: 15px;
	border-radius: 10px;
	margin: 30px 0;
	transition: color .25s, background-color .25s;
}

#footer_contact a:hover {
	background-color: #6ac2fe;
	text-decoration: none;
	color: #fff;
}

#footer_copy {
	color: #999;
	padding: 0 30px;
}

#footer_helpdesk {
	color: #999;
}

#footer_mscert {
	width: 150px;
}

/*	Hero Block
------------------------------------------------------------------------*/

#hero, #mini_hero, #helpdesk_hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

#mini_hero {
	padding: 30px 0 0 0;
}

#hero_text {
	flex: 0 1 50%;
	min-width: 400px;
}

#hero #hero_image {
	flex-shrink: 1;
	flex-basis 50%;
	margin: 0 auto;
	text-align: center;
}

#mini_hero #hero_image, #helpdesk_hero #hero_image {
	flex-shrink: 1;
	flex-basis 50%;
	margin: 0 auto;
}

#hero img {
	max-width: 75%;
	height: auto;
}

#mini_hero img {
	max-width: 50%;
	height: auto;
}

#helpdesk_hero img {
	max-width: 80%;
	height: auto;
}

#hero_1, #hero_2, #hero_3 {
	line-height: 1.25em;
	color: #1990d5;
}

#hero_1 {
	font-size: 2.5em;
	font-weight: 700;

}

#hero_2 {
	font-size: 2.5em;
	font-weight: 300;
}

#hero_3 {
	font-size: 2.0em;
	font-weight: 300;
	color: #333;
}

#hero_border {
	display: block;
	width: 100px;
	margin: 15px 0;
	border-top: 1px solid #1990d5;
}

.first_header {
	margin-top: 30px;
}

/*	Services
------------------------------------------------------------------------*/

#services {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

#services > li {
	flex: 1 1 auto;
	margin-bottom: 30px;
	background-color: #eee;
	margin-right: 30px;
}

#services h3 {
	font-size: 1.2em;
	padding: 30px 30px 15px 30px;
	color: #777;
}

#services ul {
	list-style-position: outside;
	list-style-type: square;
	padding-bottom: 20px;
	padding-left: 65px;
}

#services ul li {
	padding: 0 30px 10px 0;
}

/*	Help Desk
------------------------------------------------------------------------*/

#help_desk {
	display: flex;
	background-color: #eee;
	margin-right: 30px;
	flex-wrap: wrap;
	padding: 30px 30px 0 30px;
	align-items: center;
}

#help_desk_description {
	flex: 1 1 60%;
	margin-right: 60px;
}

#help_desk h3 {
	font-size: 1.2em;
	color: #777;
	margin-bottom: 15px;
}

#help_desk p {
	padding-bottom: 30px;
}

#help_desk ul {
	flex: 1 1 30%;
	list-style-position: outside;
	list-style-type: square;
	margin-left: 20px;
	padding-bottom: 30px;
}

/*	Contact Form
------------------------------------------------------------------------*/

#contact_wrapper {
	display: flex;
	flex-wrap: wrap;
}

#contact_form, #helpdesk_form {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin-right: 100px;
}

#contact_form li, #helpdesk_form li {
	margin-bottom: 10px;
}

label {
	display: block;
}

#helpdesk_form .text {
	max-width: 50%;
}

textarea {
   font-family: inherit;
   font-size: inherit;
}

.text, textarea {
	width: 100%;
}

.text, textarea, .button {
	background-color: #eee;
	border: 1px #bbb solid;
	border-radius: 4px;
	padding: 5px;
	resize: none;
}

.text:hover, textarea:hover, .button:hover {
	background-color: #e9e9e9;
}

.text:focus, textarea:focus, .button:active {
	background-color: #f1f1f1;
}

.button {
	padding: 5px 20px;
}

.important, .error_header {
	color: red;
}

.error_list {
	list-style-position: inside;
	list-style-type: square;
	margin-left: 30px;
}

#phone_number {
	font-size: 1.5em;
	font-weight: 700;
}

/*	Instructions List
------------------------------------------------------------------------*/

.instructions_list {
	list-style-position: inside;
	list-style-type: decimal;
}

.instructions_list li {
	margin-bottom: 15px;
}

#direct_download {
	text-align: right;
	font-size: 80%;
}

#jwOnlineButton {
	transition: color .25s, background-color .25s;
}

/*	Terms Page
------------------------------------------------------------------------*/

#terms_list {
	list-style-position: outside;
	list-style-type: square;
	margin-left: 20px;
}