/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* custom CSS */
html {
	height: 100%;
}

body {
	line-height: 1;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666;
	background-color: #d7dbe1;
	height: 100%;
}

.container {
	background-color: #fff;
	border-left: solid 1px #7f8081;
	border-right: solid 1px #7f8081;
	position: relative;
	width: 700px;
	margin: 0px auto;
	padding: 10px 20px;
}

h1 {
	color: #002496;
	font-family: Arial, sans-serif;
	font-size: 23px;
	margin: 0 0 8px 0;
}

h2 {
	color: #676767;
	font-family: Arial, sans-serif;
	font-size: 16px;
	margin: 0;
}

h3 {
	font-weight: bold;
	color: #860150;
	font-size: 14px;
	font-family: Arial, sans-serif;
	margin: 0;
	margin-bottom: 15px;
}

a {
	overflow: hidden;
	color: #4159af;
}

.columns {
	margin: 25px 0 0 50px;
	line-height: 1.4em;
}

p {
	margin-bottom: 15px;
}

.font_bold {
	font-weight: bold;
}

.clear {
	clear: both;
}

.logo {
	display: block;
	width: 125px;
	height: 45px;
	text-indent: -10000px;
	background: url(../images/penske_logo.gif) no-repeat 0px 0px;
	margin-bottom: 16px;
	margin-left: -10px;
}

.error {
	color: red;
}

/* loading spinner */

.lds-spinner {
	/* change color here */
	color: #27368B
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
	box-sizing: border-box;
}

.lds-spinner {
	color: currentColor;
	display: inline-block;
	position: absolute;
	top: 80%;
	left: 50%;
	z-index: 1;
	width: 50px;
	height: 50px;
	margin: auto;
}

.lds-spinner div {
	transform-origin: 40px 40px;
	animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3.2px;
	left: 36.8px;
	width: 6.4px;
	height: 17.6px;
	border-radius: 20%;
	background: currentColor;
	margin: auto;
}

.lds-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}

@keyframes lds-spinner {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}