* {
    line-height: 1.0;
    text-rendering: optimizeLegibility;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
        
    -webkit-font-smoothing: antialiased;
    -webkit-hyphenate-limit-after: 4;
    -webkit-hyphenate-limit-before: 2;
    -webkit-hyphenate-limit-lines: 2;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
}

html{
    font-size: 16px;
    font-weight: normal;   
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;     
}

/*
img {
image-rendering:optimizeSpeed;
image-rendering:-moz-crisp-edges;
image-rendering:-o-crisp-edges;
image-rendering:-webkit-optimize-contrast; 
-ms-interpolation-mode: bicubic;
}
*/

@media screen and (min-width: 500px){
  html{
    font-size: 16px;
  }
}
@media screen and (min-width: 570px){
  html{
    font-size: 16px;
  }
}
@media screen and (min-width: 620px){
  html{
    font-size: 16px;
  }
}
@media screen and (min-width: 680px){
  html{
    font-size: 17px;
  }
}
@media screen and (min-width: 720px){
  html{
    font-size: 18px;
  }
}
@media screen and (min-width: 800px){
  html{
    font-size: 19px;
  }
}
@media screen and (min-width: 860px){
  html{
    font-size: 20px;
  }
}
@media screen and (min-width: 920px){
  html{
    font-size: 21px;
  }
}
@media screen and (min-width: 1000px){
  html{
    font-size: 22px;
  }
}



a, abbr, acronym, address, b, big, cite, code, del, em, i, ins, kbd, mark, output, q, ruby, s, samp, small, strike, strong, sub, sup, time, tt, u, var,
dfn, dl, dt, dd, ol, ul, li,
blockquote, h1, h2, h3, h4, h5, h6, p, pre,
table, caption, tbody, tfoot, thead, tr, th, td,
applet, canvas, embed, figure, figcaption, iframe, img, object {
  background: transparent;
  border: 0;
  font: inherit;
  line-height: 1.0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

* li, * dt, * dd, * pre, * caption, * th, * td, * figcaption {
  line-height: 1.4;
}

* caption, * dl, * dd, * figcaption, * figure, * pre, * table, * ol, * ul {
  margin: 1rem 0;
}

* blockquote, * ol, * ul {
  margin-left: 2.8rem;
}

* code, * pre, * th {
  background-color: #F3F6FA;
}

* code, * pre, * th, * td {
  color: #324354;
}

* pre, * table, * th, * td {
  border: 1px solid #DBE2F2;
}

/*
  Inline elements
*/
a {
  text-decoration: underline;
}

strong, b {
  font-weight: bolder;
}

u, em, i {
  font-style: italic;
  text-decoration: none;
}

abbr[title] {
  border-bottom: 1px dotted gray;
}

address {
  /* no style */
}

cite {
  font-style: italic;
}

code {
  /* background-color set above */
  /* color set above */
  font-family: monospace;
  padding: 0.1em 0.2em;
}

dfn {
  /* no style */
}

del {
  color: red;
  text-decoration: line-through;
}

ins {
  color: green;
  text-decoration: none;
}

kbd {
  font-family: monospace;
}

mark {
  background-color: yellow;
  color: black;
}

samp {
  font-family: monospace;
}

small {
  font-size: 0.7rem;
}

s {
  text-decoration: line-through;
}

sub {
  font-size: 0.8rem;
  vertical-align: sub;
}

sup {
  font-size: 0.8rem;
  vertical-align: super;
}

var {
  font-style: italic;
}

/*
  Lists
*/
ol, ul {
  /* margin set above */
}

ol ol, ul ul, ol ul, ul ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  list-style: decimal;
}

ol ol {
  list-style: lower-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: decimal;
}

ul {
  list-style: square;
}

li {
  /* line-height set above */
}

dl {
  /* margin set above */
}

dt {
  font-weight: bold;
  /* line-height set above */
}

dd {
  /* line-height set above */
  margin-top: 0;
}


h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem; 
    margin: 1rem 0 1.5rem 0;
}

h3 {
    font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem; 
}

h5 {
  font-size: 1rem; 
}

h6 {
  font-size: 0.8rem; 
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;    
    margin-top: 0;
    margin-bottom: 0.4rem;

}


p {
    font-size: 1rem;
    margin: 1rem 0;
    line-height: 1.4;
}

br
{   content: " " !important;
    display: block !important;
    margin-bottom: 0em !important; /* was 0.5 THM */
}


blockquote {
  /* margin-left set above */
}

pre {
  /* background-color set above */
  /* border set above */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* color set above */
  display: block;
  font-family: monospace;
  font-size: 12px;
  /* line-height set above */
  /* margin set above */
  max-width: 100%;
  overflow: scroll;
  padding: .7em;
  /* Mozilla, since 1999 */
  white-space: -moz-pre-wrap !important;
  /* css-3 */
  white-space: pre-wrap;
}

/*
  Tables
*/
table {
  /* border set above */
  border-collapse: collapse;
  /* margin set above */
  table-layout: auto;
}

caption {
  caption-side: top;
  font-weight: bold;
  /* line-height set above */
  /* margin set above */
  margin-top: 0;
  text-align: left;
}

thead {
  /* no style */
}

tbody {
  /* no style */
}

tfoot {
  /* no style */
}

th, td {
  /* border set above */
  /* color set above */
  /* line-height set above */
  padding: .7em;
  text-align: left;
}

th {
  /* background-color set above */
  font-weight: normal;
}

td {
  /* no style */
}

/*
  Media
*/
embed, iframe, img, object {
  display: inline;
  max-width: 100%;
}

img {
    -ms-interpolation-mode: bicubic;

/*     background:rgba(255,255,255,0.001); */

}

/*
img[src$=".gif"], img[src$=".png"] {
    image-rendering: -moz-crisp-edges;
    image-rendering:   -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; 
}
*/

figure {
  display: block;
  max-width: 100%;
  /* margin set above */
}

figcaption {
  font-size: 80%;
  /* line-height set above */
  /* margin set above */
  text-align: left;
}

/*
    Cleanup
*/
/* Remove top-margin from first element in block so that it can align with other parts of the page */

/*

* > :first-child {
  margin-top: 0;
}

*/


/*-----------------------------------*\



/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/


[class*='grid'],
[class*='col-'],
[class*='mobile-'],
.grid:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}

[class*='col-'] {
	float: left;
  	min-height: 1px;
	padding-right: 20px; /* column-space */
}

[class*='col-'] [class*='col-']:last-child {
	padding-right: 0;
}

.grid {
	width: 100%;
	max-width: 1140px;
	min-width: 640px;
	/* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
	margin: 0 auto;
	overflow: hidden;
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 20px; /* grid-space to left */
	padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}
.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}

@media handheld, only screen and (max-width: 767px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding-left: 20px; /* grid-space to left */
		padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
	}

	[class*='col-'] {
		width: auto;
		float: none;
		margin: 10px 0;
		padding-left: 0;
		padding-right: 10px; /* column-space */
	}

	[class*='col-'] [class*='col-'] {
		padding-right: 0;
	}

	/* Mobile Layout */

	[class*='mobile-col-'] {
		float: left;
		margin: 0 0 10px;
		padding-left: 0;
		padding-right: 10px; /* column-space */
		padding-bottom: 0;
	}

	.mobile-col-1-1 {
		width: 100%;
	}
	.mobile-col-2-3, .mobile-col-8-12 {
		width: 66.66%;
	}

	.mobile-col-1-2, .mobile-col-6-12 {
		width: 50%;
	}

	.mobile-col-1-3, .mobile-col-4-12 {
		width: 33.33%;
	}

	.mobile-col-1-4, .mobile-col-3-12 {
		width: 25%;
	}

	.mobile-col-1-5 {
		width: 20%;
	}

	.mobile-col-1-6, .mobile-col-2-12 {
		width: 16.667%;
	}

	.mobile-col-1-7 {
		width: 14.28%;
	}

	.mobile-col-1-8 {
		width: 12.5%;
	}

	.mobile-col-1-9 {
		width: 11.1%;
	}

	.mobile-col-1-10 {
		width: 10%;
	}

	.mobile-col-1-11 {
		width: 9.09%;
	}

	.mobile-col-1-12 {
		width: 8.33%
	}

	/* Layout Columns */

	.mobile-col-11-12 {
		width: 91.66%
	}

	.mobile-col-10-12 {
		width: 83.333%;
	}

	.mobile-col-9-12 {
		width: 75%;
	}

	.mobile-col-5-12 {
		width: 41.66%;
	}

	.mobile-col-7-12 {
		width: 58.33%
	}

	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}
}




/*-----------------------------------*\



/*
  Helper  
*/


.hide {
    display: none !important;
}

.ac {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.fl {
    float: left;
}

.fr {
    float: right;
}

.nmt {
    margin-top: 0;
}

.nmb {
    margin-bottom: 0;
}

.nml {
    margin-left: 0;
}

.nmr {
    margin-right: 0;
}

.npt {
    padding-top: 0;
}

.npb {
    padding-bottom: 0;
}

.npl {
    padding-left: 0;
}

.npr {
    padding-right: 0;
}

.nbg {
    background: none !important;
    background-image: none !important;
}

a.nol, a.nol:link, a.nol:visited {
    text-decoration: none;
}

a.nol:hover {
    text-decoration: none;
}

a.nol:active {
    text-decoration: none;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}




















body {
    font-family: 'Domine', Georgia, Times, 'Times New Roman', serif;
    font-weight: normal;
    margin: 0px;
    padding: 40px 20px 40px 20px;
    background-color: #f8feff;
    color: #4350FF;
    text-align: center;
}

#site-home {
    margin: 0 auto;    
    max-width: 740px;
    padding: 0;
    text-align: left;
}

.content {
    
}

.contentspacer {
    padding-top: 0.6em;   
    padding-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    font-family: 'Montserrat', 'Avenir', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

h1, h3, h4 {
    text-transform: uppercase;    
}

h2.highlight {
   display: inline-block;
   background: #E1489A;
   padding: 0.5em 0.7em;
   font-size: 0.8rem;
   text-transform: none !important;
   font-weight: bold !important;
   line-height: 1;
   margin: 0.2em 0 0.4em 0;
}

a, a:link, a:visited {
    color: #4350FF;
    text-decoration: underline;
}

a:hover {
    color: #FD389E;
    text-decoration:underline;
}

a:active {
    color: #FFE714;    
    text-decoration: underline;
}

ul, li {
    padding-left: 0;
    margin-left: 0;
}

li {
    list-style-position: outside;
    list-style-type: none;
}


@media only screen and (max-width: 320px) {

}


@media only screen and (max-width: 414px) {

    body {
        padding: 20px 5px 20px 5px;
    }
    
}

@media only screen and (max-width: 767px) {

}

@media only screen and (max-width: 860px){

}
@media only screen and (max-width: 920px){

}



