.row {
	width: 1024px;
}

table {
	background: none;
	border: 0px;
	border-collapse: collapse;
	margin-bottom: 0;
}

table tr {
	background: none !important;
}

table td {
	background: none;
}

ul, ol, li {
	list-style-position: inside;
}

h1, h2 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: #222222;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 10px 0px;
	line-height: normal;
}
h3 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #222222;	
}
h4, h5, h6 {
	font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
	color: #222222;	
}


/* Content */

div#content {
    padding: 20px 20px 20px 20px;
    background: none repeat scroll 0 0 white;
    margin: 0 auto;
    text-align: left;
	border: 1px solid #dbdbdb;
    box-shadow: 0 1px 3px #dddddd;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

#content a {
	color: #2b649d;
}
#content a:hover {
	color: #2b649d;
	text-decoration: underline;
}

header a:hover {
	text-decoration: none;
}

input[type="button"], input[type="submit"], input[type="reset"], .button, button {
	color: #fff;
	background: #32abdf;
	font-size: 16px;
	border-radius: 3px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	padding: 10px 20px 11px;
	text-align: center;
	transition: background-color .15s ease-in-out;
	border: none;
}
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, .button:hover, button:hover {
	background: #32b2e6;
	cursor: pointer;
}

#content a.landingLinks {
	display: block;
	background: #32abdf;
	margin: 20px 0;
	padding: 30px 25px;
	box-shadow: 5px 5px 3px #ccc;
	text-align: center;
	color: #ffffff;
	font-size: 22px;
	font-family: "MyriadPro", sans-serif;
	letter-spacing: 1px;
	vertical-align: middle;
	line-height: 1.5em;
	transition: background-color .15s ease-in-out;
}
#content a.landingLinks:hover {
	background: #32b2e6;
	color: #ffffff;
	text-decoration: none;
}
#content a.landingLinks.disabled {
	background: #a9a9a9;
}
.row.landingSection {
	margin-bottom: 20px;
}
.no-padding {
	padding:0px;
}

#errorMsg {
	color: red;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	margin-bottom: 10px;
}

/* modal window */
#loaderWrap {
  /* The div that shows/hides. */
  display: none; /* starts out hidden */
  z-index: 40001; /* High z-index to ensure it appears above all content */
}
.loaderOverlay {
  /* Shades out background when selector is active */
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
.vertical-offset {
  /* Fixed position to provide the vertical offset */
  position: absolute;
  top: 20%;
  width: 100%;
  z-index: 40002; /* ensures box appears above overlay */
}
.loaderBox {
  /* The actual box, centered in the fixed-position div */
  max-width: 550px; /* Whatever width you want the box to be */
  position: relative;
  margin: 0 auto; /* Everything below is just visual styling */
  padding: 20px 20px 0 20px;
}

/* loading spinner */
.loader {
  margin: auto;
  border: 20px solid #EAF0F6; /*circle background*/
  border-radius: 50%;
  border-top: 20px solid #9EC746; /*spinning color*/
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}