@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,800,800italic");

/*
	Spectral by HTML5 UPF
	html5up.net | @n33coinset 0 0 0 2px #fff;
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Reset */



html, body {
    margin: 0;
    padding: 0;
}

#banner {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    cursor: default;
    height: 100vh;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    text-align: center;
    background-color: #87CEEB; /* Sky blue initial color */
    transition: background-color 0.1s linear; /* Smooth color updates */
}

#banner .inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2em;
}

.eclipse-container.svg-eclipse {
    position: relative;
    width: 266px;
    height: 266px;
    margin: 2em auto;
}

.eclipse-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.sun-svg {
    z-index: 1;
    position: relative;
}

.moon-totality {
    z-index: 3;
    position: relative;
}

.corona-svg {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
}

/* Birds */
#birds {
    opacity: 0; /* Hidden until animation starts */
}

.bird .wing-left {
    transform-origin: 0 0;
    transform: rotate(0deg); /* Initial neutral position */
    animation: flap-left 0.3s infinite alternate;
    animation-play-state: paused;
}

.bird .wing-right {
    transform-origin: 0 0;
    transform: rotate(0deg); /* Initial neutral position */
    animation: flap-right 0.3s infinite alternate;
    animation-play-state: paused;
}

@keyframes flap-left {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(-45deg); }
}

@keyframes flap-right {
    0% { transform: rotate(-45deg); }
    100% { transform: rotate(45deg); }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
        filter: blur(15px);
    }
    50% {
        opacity: 0.85;
        filter: blur(17px);
    }
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#stars {
    width: 100%;
    height: 100%;
    position: relative;
}

.star {
    position: absolute;
    width: 4px; /* Size of stars */
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle infinite ease-in-out;
    animation-delay: var(--star-delay, 0s); /* Individual delays from JS */
}

.star.group1 {
    animation-duration: 1s; /* Faster twinkling */
}

.star.group2 {
    animation-duration: 1.5s;
}

.star.group3 {
    animation-duration: 2s;
}

.star.group4 {
    animation-duration: 2.5s; /* Slower twinkling */
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

.nationaleclipse-new {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.7em;
    text-align: center;
    z-index: 4;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nationaleclipse-new a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nationaleclipse-new .word {
    display: block;
    line-height: 1.2;
}

.mainlogo {
    opacity: 0;
    transform: translateX(50px);
    max-width: 243px;
    margin: 1em auto;
    display: block;
    position: relative;
    z-index: 4;
}

#banner h2 {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: inline-block;
    font-size: 1.75em;
    opacity: 1;
    padding: 0.35em 1em;
    position: relative;
    z-index: 1;
}

#banner h1.nationaleclipse {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: inline-block;
    font-size: 1.75em;
    opacity: 1;
    padding: 0.35em 1em;
    position: relative;
    z-index: 1;
}

#banner h1.main-topic {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: inline-block;
    font-size: 1.75em;
    opacity: 1;
    padding: 0.35em 1em;
    position: relative;
    z-index: 1;
}

#banner h2:before, #banner h2:after {
    -moz-transition: width 0.85s ease;
    -webkit-transition: width 0.85s ease;
    -ms-transition: width 0.85s ease;
    transition: width 0.85s ease;
    -moz-transition-delay: 0.25s;
    -webkit-transition-delay: 0.25s;
    -ms-transition-delay: 0.25s;
    transition-delay: 0.25s;
    background: #fff;
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
}

#banner h1.nationaleclipse:before, #banner h1.nationaleclipse:after {
    -moz-transition: width 0.85s ease;
    -webkit-transition: width 0.85s ease;
    -ms-transition: width 0.85s ease;
    transition: width 0.85s ease;
    -moz-transition-delay: 0.25s;
    -webkit-transition-delay: 0.25s;
    -ms-transition-delay: 0.25s;
    transition-delay: 0.25s;
    background: #fff;
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
}

#banner h1.main-topic:before, #banner h1.main-topic:after {
    -moz-transition: width 0.85s ease;
    -webkit-transition: width 0.85s ease;
    -ms-transition: width 0.85s ease;
    transition: width 0.85s ease;
    -moz-transition-delay: 0.25s;
    -webkit-transition-delay: 0.25s;
    -ms-transition-delay: 0.25s;
    transition-delay: 0.25s;
    background: #fff;
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
}

#banner h2:before {
    top: 0;
    left: 0;
}

#banner h1.nationaleclipse:before {
    top: 0;
    left: 0;
}

#banner h1.main-topic:before {
    top: 0;
    left: 0;
}

#banner h2:after {
    bottom: 0;
    right: 0;
}

#banner h1.nationaleclipse:after {
    bottom: 0;
    right: 0;
}

#banner h1.main-topic:after {
    bottom: 0;
    right: 0;
}

#banner p {
    letter-spacing: 0.225em;
    text-transform: uppercase;
}

#banner p a {
    color: inherit;
}

#banner .more {
    -moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
    -webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
    -ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
    transition: transform 0.75s ease, opacity 0.75s ease;
    -moz-transition-delay: 3.5s;
    -webkit-transition-delay: 3.5s;
    -ms-transition-delay: 3.5s;
    transition-delay: 3.5s;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border: none;
    bottom: 0;
    color: inherit;
    font-size: 0.8em;
    height: 8.5em;
    left: 50%;
    letter-spacing: 0.225em;
    margin-left: -8.5em;
    opacity: 1;
    outline: 0;
    padding-left: 0.225em;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 16em;
    z-index: 1;
}

#banner .more2 {
    -moz-transition: -moz-transform 0.75s ease, opacity 0.75s ease;
    -webkit-transition: -webkit-transform 0.75s ease, opacity 0.75s ease;
    -ms-transition: -ms-transform 0.75s ease, opacity 0.75s ease;
    transition: transform 0.75s ease, opacity 0.75s ease;
    -moz-transition-delay: 9.5s;
    -webkit-transition-delay: 9.5s;
    -ms-transition-delay: 9.5s;
    transition-delay: 9.5s;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border: none;
    bottom: 20px; /* Match original vertical stop point */
    color: inherit;
    font-size: 0.8em;
    height: 8.5em;
    left: 0; /* Stretch across container */
    right: 0; /* Stretch across container */
    letter-spacing: 0.225em;
    margin: 0 auto; /* Center horizontally */
    opacity: 1;
    outline: 0;
    padding-left: 0.225em;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: auto; /* Dynamic width for content */
    z-index: 1;
}

#banner .more:after {
    background-image: url("images/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 4em;
    content: '';
    display: block;
    height: 1.5em;
    left: 50%;
    margin: 0 0 0 -0.75em;
    position: absolute;
    width: 1.5em;
}

#banner .more2:after {
    background-image: url("images/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 4em;
    content: '';
    display: block;
    height: 1.5em;
    left: 50%;
    margin: 0 0 0 -0.75em;
    position: absolute;
    width: 1.5em;
}

#banner:after {
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
    -moz-transition: opacity 3s ease-in-out;
    -webkit-transition: opacity 3s ease-in-out;
    -ms-transition: opacity 3s ease-in-out;
    transition: opacity 3s ease-in-out;
    -moz-transition-delay: 1.25s;
    -webkit-transition-delay: 1.25s;
    -ms-transition-delay: 1.25s;
    transition-delay: 1.25s;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

body.is-loading #banner h2 {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
}

body.is-loading #banner h1.nationaleclipse {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
}

body.is-loading #banner h1.main-topic {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
}

body.is-loading #banner h2:before, body.is-loading #banner h2:after {
    width: 0;
}

body.is-loading #banner h1.nationaleclipse:before, body.is-loading #banner h1.nationaleclipse:after {
    width: 0;
}

body.is-loading #banner h1.main-topic:before, body.is-loading #banner h1.main-topic:after {
    width: 0;
}

body.is-loading #banner .more {
    -moz-transform: translateY(8.5em);
    -webkit-transform: translateY(8.5em);
    -ms-transform: translateY(8.5em);
    transform: translateY(8.5em);
    opacity: 0;
}

body.is-loading #banner .more2 {
    -moz-transform: translateY(8.5em);
    -webkit-transform: translateY(8.5em);
    -ms-transform: translateY(8.5em);
    transform: translateY(8.5em);
    opacity: 0;
}

body.is-loading #banner:after {
    opacity: 1;
}





/* Responsive adjustments */
@media screen and (max-width: 736px) {
    #banner {
        padding: 5em 1em;
        height: auto;
        min-height: 0;
    }
    #banner .inner {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #banner h2,
    #banner h1.nationaleclipse,
    #banner h1.main-topic {
        font-size: 1.25em;
    }
    #banner br {
        display: none;
    }
    #banner .more,
    #banner .more2 {
        display: none;
    }
    .eclipse-container {
        width: 180px;
        height: 180px;
        margin: 0 auto;
        overflow: visible;
    }
    .eclipse-svg {
        transform: scale(0.9);
        transform-origin: center;
        overflow: visible;
    }
    .nationaleclipse-new {
        font-size: 1.6em;
    }
    .mainlogo {
        max-width: 180px;
    }
    .bird .wing-left {
        animation: flap-left 0.2s infinite alternate;
        animation-play-state: paused;
    }
    .bird .wing-right {
        animation: flap-right 0.2s infinite alternate;
        animation-play-state: paused;
    }
    .star {
        width: 2.7px; /* Reduced by ~1/3 from 4px */
        height: 2.7px;
    }
}

@media screen and (max-width: 480px) {
    #banner {
        padding: 4em 0.5em;
    }
    #banner .inner {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .eclipse-container {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        overflow: visible;
    }
    .eclipse-svg {
        transform: scale(0.75);
        transform-origin: center;
        overflow: visible;
    }
    .nationaleclipse-new {
        font-size: 1.3em;
    }
    .mainlogo {
        max-width: 150px;
    }
    .bird .wing-left {
        animation: flap-left 0.2s infinite alternate;
        animation-play-state: paused;
    }
    .bird .wing-right {
        animation: flap-right 0.2s infinite alternate;
        animation-play-state: paused;
    }
    .star {
        width: 2.7px; /* Reduced by ~1/3 from 4px */
        height: 2.7px;
    }
}
	
	
	
	







































/* this media query is for the horizontal rule on the mobile store page */
@media
only screen and (max-width: 480px) {
  hr.mobile-hr {
	display: block;
	margin-top: 100px;
    border: none;
    height: 2px;
    background: #343660;
	border-top:2px #343660;
	}
}



/* this media query is for the horizontal rule on the mobile store page */
@media
only screen and (max-width: 480px) {
  hr.mobile-hr2 {
	display: block;
	margin-top: 75px;
    border: none;
    height: 2px;
    background: #343660;
	border-top:2px #343660;
	}
}



/* this media query is for the horizontal rule on the mobile store page */
@media
only screen and (max-width: 480px) {
  hr.mobile-hr3 {
	display: block;
	margin-top: 85px;
	margin-bottom: 100px;
    border: none;
    height: 2px;
    background: #343660;
	border-top:2px #343660;
	}
}







/* this media query is for the horizontal rule on the mobile store page */
@media
only screen and (min-width: 480px) {
  hr.mobile-hr {
	display: none !important;
	}
}


/* this media query is for the horizontal rule on the mobile store page */
@media
only screen and (min-width: 480px) {
  hr.mobile-hr2 {
	display: none !important;
	}
}


/* this media query is for the horizontal rule on the mobile store page */
@media
only screen and (min-width: 480px) {
  hr.mobile-hr3 {
	display: none !important;
	}
}


	



	html, body, div, span, applet, object, iframe, h1, h1.main-topic, h2, h1.nationaleclipse, h2.sub, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, span.nationaleclipse {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
}



	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
		line-height: 1;
	}

	ol, ul {
		list-style: none;
	}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	body {
		-webkit-text-size-adjust: none;
	}
	
	
	
	
	
		.sortable th .sort-icon {
    margin-left: 8px;
    font-size: 10px;
}

/* Change cursor only when hovering over the text inside th */
th span {
    cursor: pointer;
}




/* this media query is for the cities table on the homepage */
@media
only screen and (max-width: 480px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  td {
    border: none;
   
    position: relative;
    padding-left: 200px;
    margin-left: 135px;
	margin-top: 5px;
	margin-bottom: 5px;
  }
  td:before {
    position: absolute;
    top: 11px;
    left: 6px;
    width: 200px;
    padding-right: 40px;
    white-space: nowrap;
    margin-left: -135px;
  }
  td:nth-of-type(1):before { content: "City, State"; }
  td:nth-of-type(2):before { content: "Totality Start"; }
  td:nth-of-type(3):before { content: "Duration*"; }
  p.remove-sorting-reference {
	display: none !important;
	}
}	


/* this media query is for the cities table on the homepage */
@media
only screen and (min-width: 480px) {
  p.display-sorting-reference {
	display: none !important;
	}
}






	
	
 .facebook {
   background-color: #713D75;
}
.twitter {
   background-color: #713D75;  
}
.sendemail {
   background-color: #713D75;   
}
.share {
   background-color: #713D75;   
}


.socialfloat {
   display: block;
   position: fixed;
   left: 0;
   top: 85vh;
   transform:translateY(-100%);
   z-index: 9999;
}


.socialfloat .fbtn {
   width: 50px;
   height: 50px;
   border-style: solid;
   border-width: 5px;
   display: block;
   color: #fff;
   text-align: center;
   padding-top: 5px;
   border-bottom-color: #fff;
}




.eclipse-store-float {
  display: block;
   position: fixed;
   right: 1vh;
   top: 100vh;
   transform:translateY(-100%);
   z-index: 9999;
}


.eclipse-store-float:hover {
  display: block;
   position: fixed;
   right: 1vh;
   top: 100vh;
   transform:translateY(-100%);
   z-index: 9999;
   opacity: 0.6;
}

.donation-float {
  display: block;
  position: fixed;
  right: calc(1vh + (170px / 2) - (85px / 2)); 
  top: 100vh;
  transform: translateY(calc(-100% - 170px - 20px)); 
  width: 85px;
  height: 85px;
  z-index: 9999;
}


.donation-float:hover {
  display: block;
  position: fixed;
  right: calc(1vh + (170px / 2) - (85px / 2)); 
  top: 100vh;
  transform: translateY(calc(-100% - 170px - 20px)); 
  width: 85px;
  height: 85px;
  z-index: 9999;
   opacity: 0.6;
}














 

@media screen and (max-width: 736px) {
.calculations {
    display: none;
	}
} 

@media screen and (max-width: 736px) {
.hide-calculations {
    display: block;
	}
} 


@media screen and (min-width: 736px) {
.hide-calculations {
    display: none;
	}
} 


@media screen and (max-width: 1135px) {
.eclipse-store-float {
    display: none;
	}
} 

@media screen and (max-width: 1135px) {
.donation-float {
    display: none;
	}
} 

@media screen and (max-width: 1135px) {
.donation-float {
    display: none;
	}
}


@media screen and (max-width: 1135px) {
.socialfloat {
    display: none;
	}
} 

@media screen and (min-width: 1135px) {
.socialfloat-mobile {
    display: none;
	}
} 


/* USE THIS FOR SOCIAL ICONS AT BOTTOM OF MOBILE SCREEN
@media screen and (max-width: 1135px) {
.socialfloat-mobile {
    display: block;
	position:fixed;
	left: 0;
    bottom:0;
	z-index: 9999;
    width:100%;
	text-align: center;
	}
} 
*/

/* USE THIS FOR TEXT AT BOTTOM OF MOBILE SCREEN */
@media screen and (max-width: 1135px) {
.socialfloat-mobile {
    display: block;
	position:fixed;
	z-index: 9999;
	text-align: center;
	background: #713D75;
	width: 230px;
    margin-left:-115px;
    left:50%;
    bottom:0px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
	height: 40px;
	padding-top: 7px;
	}
} 





/* USE THIS FOR SOCIAL ICONS AT BOTTOM OF MOBILE SCREEN
@media screen and (max-width: 1135px) {
.socialfloat-mobile .fbtn {
   width: 50px;
   height: 50px;
   border-style: solid;
   border-width: 5px;
   display: inline-block;
   color: #fff;
   text-align: center;
   padding-top: 5px;
   border-bottom-color: #fff;
	}
} 
/*



/* THIS IS ONLY FOR THE STORE PAGE */
@media screen and (max-width: 1135px) {
.socialfloat-mobile-store {
    display: block;
	position:fixed;
	left: 0;
    bottom:0;
	z-index: 9999;
    width:100%;
	text-align: center;
	}
}


/* THIS IS ONLY FOR THE STORE PAGE */
@media screen and (max-width: 1135px) {
.socialfloat-mobile-store .fbtn {
   width: 50px;
   height: 50px;
   border-style: solid;
   border-width: 5px;
   display: inline-block;
   color: #fff;
   text-align: center;
   padding-top: 5px;
   border-bottom-color: #fff;
	}
} 


 



/* Box Model */

	*, *:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	



img.main-icons {
	padding-top: 20px !important;
  }




/* Grid */

	.row {
		border-bottom: solid 1px transparent;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row > * {
		display: inline-block;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row:after, .row:before {
		content: '';
		display: block;
		clear: both;
		height: 0;
	}

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

	.row.uniform > * > :last-child {
		margin-bottom: 0;
	}

	.row.\30 \25 > * {
		padding: 0 0 0 0em;
	}

	.row.\30 \25 {
		margin: 0 0 -1px 0em;
	}

	.row.uniform.\30 \25 > * {
		padding: 0em 0 0 0em;
	}

	.row.uniform.\30 \25 {
		margin: 0em 0 -1px 0em;
	}

	.row > * {
		padding: 0 0 0 1.5em;
	}

	.row {
		margin: 0 0 -1px -1.5em;
	}

	.row.uniform > * {
		padding: 1.5em 0 0 1.5em;
	}

	.row.uniform {
		margin: -1.5em 0 -1px -1.5em;
	}

	.row.\32 00\25 > * {
		padding: 0 0 0 3em;
	}

	.row.\32 00\25 {
		margin: 0 0 -1px -3em;
	}

	.row.uniform.\32 00\25 > * {
		padding: 3em 0 0 3em;
	}

	.row.uniform.\32 00\25 {
		margin: -3em 0 -1px -3em;
	}

	.row.\31 50\25 > * {
		padding: 0 0 0 2.25em;
	}

	.row.\31 50\25 {
		margin: 0 0 -1px -2.25em;
	}

	.row.uniform.\31 50\25 > * {
		padding: 2.25em 0 0 2.25em;
	}

	.row.uniform.\31 50\25 {
		margin: -2.25em 0 -1px -2.25em;
	}

	.row.\35 0\25 > * {
		padding: 0 0 0 0.75em;
	}

	.row.\35 0\25 {
		margin: 0 0 -1px -0.75em;
	}

	.row.uniform.\35 0\25 > * {
		padding: 0.75em 0 0 0.75em;
	}

	.row.uniform.\35 0\25 {
		margin: -0.75em 0 -1px -0.75em;
	}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.375em;
	}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.375em;
	}

	.row.uniform.\32 5\25 > * {
		padding: 0.375em 0 0 0.375em;
	}

	.row.uniform.\32 5\25 {
		margin: -0.375em 0 -1px -0.375em;
	}

	.\31 2u, .\31 2u\24 {
		width: 100%;
		clear: none;
		margin-left: 0;
	}

	.\31 1u, .\31 1u\24 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\31 0u, .\31 0u\24 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\39 u, .\39 u\24 {
		width: 75%;
		clear: none;
		margin-left: 0;
	}

	.\38 u, .\38 u\24 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\37 u, .\37 u\24 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\36 u, .\36 u\24 {
		width: 50%;
		clear: none;
		margin-left: 0;
	}

	.\35 u, .\35 u\24 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\34 u, .\34 u\24 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\33 u, .\33 u\24 {
		width: 25%;
		clear: none;
		margin-left: 0;
	}

	.\32 u, .\32 u\24 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\31 u, .\31 u\24 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\31 2u\24 + *,
	.\31 1u\24 + *,
	.\31 0u\24 + *,
	.\39 u\24 + *,
	.\38 u\24 + *,
	.\37 u\24 + *,
	.\36 u\24 + *,
	.\35 u\24 + *,
	.\34 u\24 + *,
	.\33 u\24 + *,
	.\32 u\24 + *,
	.\31 u\24 + * {
		clear: left;
	}

	.\-11u {
		margin-left: 91.66667%;
	}

	.\-10u {
		margin-left: 83.33333%;
	}

	.\-9u {
		margin-left: 75%;
	}

	.\-8u {
		margin-left: 66.66667%;
	}

	.\-7u {
		margin-left: 58.33333%;
	}

	.\-6u {
		margin-left: 50%;
	}

	.\-5u {
		margin-left: 41.66667%;
	}

	.\-4u {
		margin-left: 33.33333%;
	}

	.\-3u {
		margin-left: 25%;
	}

	.\-2u {
		margin-left: 16.66667%;
	}

	.\-1u {
		margin-left: 8.33333%;
	}

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

		.row > * {
			padding: 0 0 0 1.5em;
		}

		.row {
			margin: 0 0 -1px -1.5em;
		}

		.row.uniform > * {
			padding: 1.5em 0 0 1.5em;
		}

		.row.uniform {
			margin: -1.5em 0 -1px -1.5em;
		}

		.row.\32 00\25 > * {
			padding: 0 0 0 3em;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3em;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3em 0 0 3em;
		}

		.row.uniform.\32 00\25 {
			margin: -3em 0 -1px -3em;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25em;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25em;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25em 0 0 2.25em;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25em 0 -1px -2.25em;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75em;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75em;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75em 0 0 0.75em;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75em 0 -1px -0.75em;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375em;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375em;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375em 0 0 0.375em;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375em 0 -1px -0.375em;
		}

		.\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28xlarge\29 + *,
		.\31 1u\24\28xlarge\29 + *,
		.\31 0u\24\28xlarge\29 + *,
		.\39 u\24\28xlarge\29 + *,
		.\38 u\24\28xlarge\29 + *,
		.\37 u\24\28xlarge\29 + *,
		.\36 u\24\28xlarge\29 + *,
		.\35 u\24\28xlarge\29 + *,
		.\34 u\24\28xlarge\29 + *,
		.\33 u\24\28xlarge\29 + *,
		.\32 u\24\28xlarge\29 + *,
		.\31 u\24\28xlarge\29 + * {
			clear: left;
		}

		.\-11u\28xlarge\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28xlarge\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28xlarge\29 {
			margin-left: 75%;
		}

		.\-8u\28xlarge\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28xlarge\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28xlarge\29 {
			margin-left: 50%;
		}

		.\-5u\28xlarge\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28xlarge\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28xlarge\29 {
			margin-left: 25%;
		}

		.\-2u\28xlarge\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28xlarge\29 {
			margin-left: 8.33333%;
		}

	}

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

		.row > * {
			padding: 0 0 0 1.5em;
		}

		.row {
			margin: 0 0 -1px -1.5em;
		}

		.row.uniform > * {
			padding: 1.5em 0 0 1.5em;
		}

		.row.uniform {
			margin: -1.5em 0 -1px -1.5em;
		}

		.row.\32 00\25 > * {
			padding: 0 0 0 3em;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3em;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3em 0 0 3em;
		}

		.row.uniform.\32 00\25 {
			margin: -3em 0 -1px -3em;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25em;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25em;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25em 0 0 2.25em;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25em 0 -1px -2.25em;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75em;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75em;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75em 0 0 0.75em;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75em 0 -1px -0.75em;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375em;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375em;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375em 0 0 0.375em;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375em 0 -1px -0.375em;
		}

		.\31 2u\28large\29, .\31 2u\24\28large\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28large\29, .\31 1u\24\28large\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28large\29, .\31 0u\24\28large\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28large\29, .\39 u\24\28large\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28large\29, .\38 u\24\28large\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28large\29, .\37 u\24\28large\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28large\29, .\36 u\24\28large\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28large\29, .\35 u\24\28large\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28large\29, .\34 u\24\28large\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28large\29, .\33 u\24\28large\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28large\29, .\32 u\24\28large\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28large\29, .\31 u\24\28large\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28large\29 + *,
		.\31 1u\24\28large\29 + *,
		.\31 0u\24\28large\29 + *,
		.\39 u\24\28large\29 + *,
		.\38 u\24\28large\29 + *,
		.\37 u\24\28large\29 + *,
		.\36 u\24\28large\29 + *,
		.\35 u\24\28large\29 + *,
		.\34 u\24\28large\29 + *,
		.\33 u\24\28large\29 + *,
		.\32 u\24\28large\29 + *,
		.\31 u\24\28large\29 + * {
			clear: left;
		}

		.\-11u\28large\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28large\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28large\29 {
			margin-left: 75%;
		}

		.\-8u\28large\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28large\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28large\29 {
			margin-left: 50%;
		}

		.\-5u\28large\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28large\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28large\29 {
			margin-left: 25%;
		}

		.\-2u\28large\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28large\29 {
			margin-left: 8.33333%;
		}

	}

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

		.row > * {
			padding: 0 0 0 1.5em;
		}

		.row {
			margin: 0 0 -1px -1.5em;
		}

		.row.uniform > * {
			padding: 1.5em 0 0 1.5em;
		}

		.row.uniform {
			margin: -1.5em 0 -1px -1.5em;
		}

		.row.\32 00\25 > * {
			padding: 0 0 0 3em;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3em;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3em 0 0 3em;
		}

		.row.uniform.\32 00\25 {
			margin: -3em 0 -1px -3em;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25em;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25em;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25em 0 0 2.25em;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25em 0 -1px -2.25em;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75em;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75em;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75em 0 0 0.75em;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75em 0 -1px -0.75em;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375em;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375em;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375em 0 0 0.375em;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375em 0 -1px -0.375em;
		}

		.\31 2u\28medium\29, .\31 2u\24\28medium\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28medium\29, .\31 1u\24\28medium\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28medium\29, .\31 0u\24\28medium\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28medium\29, .\39 u\24\28medium\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28medium\29, .\38 u\24\28medium\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28medium\29, .\37 u\24\28medium\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28medium\29, .\36 u\24\28medium\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28medium\29, .\35 u\24\28medium\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28medium\29, .\34 u\24\28medium\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28medium\29, .\33 u\24\28medium\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28medium\29, .\32 u\24\28medium\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28medium\29, .\31 u\24\28medium\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28medium\29 + *,
		.\31 1u\24\28medium\29 + *,
		.\31 0u\24\28medium\29 + *,
		.\39 u\24\28medium\29 + *,
		.\38 u\24\28medium\29 + *,
		.\37 u\24\28medium\29 + *,
		.\36 u\24\28medium\29 + *,
		.\35 u\24\28medium\29 + *,
		.\34 u\24\28medium\29 + *,
		.\33 u\24\28medium\29 + *,
		.\32 u\24\28medium\29 + *,
		.\31 u\24\28medium\29 + * {
			clear: left;
		}

		.\-11u\28medium\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28medium\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28medium\29 {
			margin-left: 75%;
		}

		.\-8u\28medium\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28medium\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28medium\29 {
			margin-left: 50%;
		}

		.\-5u\28medium\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28medium\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28medium\29 {
			margin-left: 25%;
		}

		.\-2u\28medium\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28medium\29 {
			margin-left: 8.33333%;
		}

	}

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

		.row > * {
			padding: 0 0 0 1.5em;
		}

		.row {
			margin: 0 0 -1px -1.5em;
		}

		.row.uniform > * {
			padding: 1.5em 0 0 1.5em;
		}

		.row.uniform {
			margin: -1.5em 0 -1px -1.5em;
		}

		.row.\32 00\25 > * {
			padding: 0 0 0 3em;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3em;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3em 0 0 3em;
		}

		.row.uniform.\32 00\25 {
			margin: -3em 0 -1px -3em;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25em;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25em;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25em 0 0 2.25em;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25em 0 -1px -2.25em;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75em;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75em;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75em 0 0 0.75em;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75em 0 -1px -0.75em;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375em;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375em;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375em 0 0 0.375em;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375em 0 -1px -0.375em;
		}

		.\31 2u\28small\29, .\31 2u\24\28small\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28small\29, .\31 1u\24\28small\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28small\29, .\31 0u\24\28small\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28small\29, .\39 u\24\28small\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28small\29, .\38 u\24\28small\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28small\29, .\37 u\24\28small\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28small\29, .\36 u\24\28small\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28small\29, .\35 u\24\28small\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28small\29, .\34 u\24\28small\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28small\29, .\33 u\24\28small\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28small\29, .\32 u\24\28small\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28small\29, .\31 u\24\28small\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28small\29 + *,
		.\31 1u\24\28small\29 + *,
		.\31 0u\24\28small\29 + *,
		.\39 u\24\28small\29 + *,
		.\38 u\24\28small\29 + *,
		.\37 u\24\28small\29 + *,
		.\36 u\24\28small\29 + *,
		.\35 u\24\28small\29 + *,
		.\34 u\24\28small\29 + *,
		.\33 u\24\28small\29 + *,
		.\32 u\24\28small\29 + *,
		.\31 u\24\28small\29 + * {
			clear: left;
		}

		.\-11u\28small\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28small\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28small\29 {
			margin-left: 75%;
		}

		.\-8u\28small\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28small\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28small\29 {
			margin-left: 50%;
		}

		.\-5u\28small\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28small\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28small\29 {
			margin-left: 25%;
		}

		.\-2u\28small\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28small\29 {
			margin-left: 8.33333%;
		}

	}

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

		.row > * {
			padding: 0 0 0 1.5em;
		}

		.row {
			margin: 0 0 -1px -1.5em;
		}

		.row.uniform > * {
			padding: 1.5em 0 0 1.5em;
		}

		.row.uniform {
			margin: -1.5em 0 -1px -1.5em;
		}

		.row.\32 00\25 > * {
			padding: 0 0 0 3em;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3em;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3em 0 0 3em;
		}

		.row.uniform.\32 00\25 {
			margin: -3em 0 -1px -3em;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25em;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25em;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25em 0 0 2.25em;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25em 0 -1px -2.25em;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75em;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75em;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75em 0 0 0.75em;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75em 0 -1px -0.75em;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375em;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375em;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375em 0 0 0.375em;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375em 0 -1px -0.375em;
		}

		.\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28xsmall\29 + *,
		.\31 1u\24\28xsmall\29 + *,
		.\31 0u\24\28xsmall\29 + *,
		.\39 u\24\28xsmall\29 + *,
		.\38 u\24\28xsmall\29 + *,
		.\37 u\24\28xsmall\29 + *,
		.\36 u\24\28xsmall\29 + *,
		.\35 u\24\28xsmall\29 + *,
		.\34 u\24\28xsmall\29 + *,
		.\33 u\24\28xsmall\29 + *,
		.\32 u\24\28xsmall\29 + *,
		.\31 u\24\28xsmall\29 + * {
			clear: left;
		}

		.\-11u\28xsmall\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28xsmall\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28xsmall\29 {
			margin-left: 75%;
		}

		.\-8u\28xsmall\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28xsmall\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28xsmall\29 {
			margin-left: 50%;
		}

		.\-5u\28xsmall\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28xsmall\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28xsmall\29 {
			margin-left: 25%;
		}

		.\-2u\28xsmall\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28xsmall\29 {
			margin-left: 8.33333%;
		}

	}

/* Basic */

	@-ms-viewport {
		width: device-width;
	}

	body {
		background: #ffffff;
	}

		body.is-loading *, body.is-loading *:before, body.is-loading *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

	body, input, select, textarea {
		color: #fff;
		font-family: "Open Sans", Helvetica, sans-serif;
		font-size: 15pt;
		font-weight: 400;
		letter-spacing: 0.075em;
		line-height: 1.65em;
	}

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

			body, input, select, textarea {
				font-size: 13pt;
			}

		}

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

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

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

			body, input, select, textarea {
				font-size: 11pt;
				letter-spacing: 0.0375em;
			}

		}

	a {
		-moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		-webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		-ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		transition: color 0.2s ease, border-bottom-color 0.2s ease;
		border-bottom: dotted 1px;
		color: inherit;
		text-decoration: none;
	}
	
	a.nounderline {
		-moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		-webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		-ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		transition: color 0.2s ease, border-bottom-color 0.2s ease;
		border-bottom: none;
		color: inherit;
		text-decoration: none;
	}

		a:hover {
			border-bottom-color: transparent;
		}

	strong, b {
		color: #fff;
		font-weight: 600;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2em 0;
	}
	
	p.classifieds {
		margin: 0 0 .5em 0;
	}
	
	p.ratecard {
		margin: 0 0 0em 0;
	}
	
	
	p.lessspace {
		margin: 0px 0px 5px 0px;
	}
	
	p.lessspace2 {
		margin: 0px 0px 25px 0px;
	}
	
	
	
	
	
	

	h1, h2, h1.nationaleclipse, h2.sub, h3, h4, h5, h6, span.nationaleclipse, h1.main-topic {
		color: #fff;
		font-weight: 800;
		letter-spacing: 0.225em;
		line-height: 1em;
		margin: 0 0 1em 0;
		text-transform: uppercase;
	}

		h1 a, h2 a, h1.nationaleclipse a, h2.sub a, h3 a, h4 a, h5 a, h6 a, span.nationaleclipse a, h1.main-topic a {
			color: inherit;
			text-decoration: none;
			
		}

	h2, h1.nationaleclipse, h1.main-topic {
		font-size: 1.35em;
		line-height: 1.75em;
	}

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

			h2, h1.nationaleclipse, h1.main-topic {
				font-size: 1.1em;
				line-height: 1.65em;
			}

		}

	h3, h2.sub {
		font-size: 1.15em;
		line-height: 1.75em;
	}

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

			h3, h2.sub {
				font-size: 1em;
				line-height: 1.65em;
			}

		}

	h4 {
		font-size: 1em;
		line-height: 1.5em;
	}

	h5 {
		font-size: 0.8em;
		line-height: 1.5em;
	}

	h6 {
		font-size: 0.7em;
		line-height: 1.5em;
	}

	

	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	hr {
		border: 0;
		border-bottom: solid 2px #fff;
		margin: 3em 0;
	}

		hr.major {
			margin: 4.5em 0;
		}

	blockquote {
		border-left: solid 4px #fff;
		font-style: italic;
		margin: 0 0 2em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	code {
		background: rgba(144, 144, 144, 0.25);
		border-radius: 3px;
		font-family: "Courier New", monospace;
		font-size: 0.9em;
		letter-spacing: 0;
		margin: 0 0.25em;
		padding: 0.25em 0.65em;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Courier New", monospace;
		font-size: 0.9em;
		margin: 0 0 2em 0;
	}

		pre code {
			display: block;
			line-height: 1.75em;
			padding: 1em 1.5em;
			overflow-x: auto;
		}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}

/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

	header p {
		color: rgba(255, 255, 255, 0.5);
		position: relative;
		top: -0.25em;
	}

	header h3 + p {
		font-size: 1.1em;
	}
	
	header h2.sub + p {
		font-size: 1.1em;
	}

	header h4 + p,
	header h5 + p,
	header h6 + p {
		font-size: 0.9em;
	}

	header.major {
		margin: 0 0 0em 0;
	}

		header.major h2, header.major h1.nationaleclipse, header.major h1.main-topic, header.major h3, header.major h2.sub, header.major h4, header.major h5, header.major h6 {
			
			display: inline-block;
			padding-top: 2em;
			padding-bottom: 1em;
			position: relative;
		}
		

			header.major h2:after, header.major h1.nationaleclipse:after, header.major h1.main-topic:after, header.major h3:after, header.major h2.sub:after, header.major h4:after, header.major h5:after, header.major h6:after {
				content: '';
				display: block;
				height: 1px;
			}

		header.major p {
			color: #fff;
			top: 0;
		}
		
		
		header.major2 {
		margin: 0 0 0 0;
	}

		header.major2 h2, header.major2 h1.nationaleclipse, header.major2 h1.main-topic, header.major2 h3, header.major2 h2.sub, header.major2 h4, header.major2 h5, header.major2 h6, header.major2 p {
			
			display: inline-block;
			padding-bottom: 0em;
			position: relative;
		}
		
		
		
		
		
		header.major2 h2:after, header.major2 h1.nationaleclipse:after, header.major2 h1.main-topic:after, header.major2 h3:after, header.major2 h2.sub:after, header.major2 h4:after, header.major2 h5:after, header.major2 h6:after, header.major2 p:after {
				content: '';
				display: block;
				height: 1px;
			}

		header.major2 p {
			color: #fff;
			top: 0;
		}
		
		
		
		
		
		
		header.major3 {
		margin: 0 0 0em 0;
	}

		header.major3 h2, header.major3 h1.nationaleclipse, header.major3 h1.main-topic, header.major3 h3, header.major3 h2.sub, header.major3 h4, header.major3 h5, header.major3 h6 {
			
			display: inline-block;
			padding-bottom: 1em;
			position: relative;
		}
		

			header.major3 h2:after, header.major3 h1.nationaleclipse:after, header.major3 h1.main-topic:after, header.major3 h3:after, header.major3 h2.sub:after, header.major3 h4:after, header.major3 h5:after, header.major3 h6:after {
				content: '';
				display: block;
				height: 1px;
			}

		header.major3 p {
			color: #fff;
			top: 0;
		}
		
		
		
		
		

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

			header.major {
				margin: 0 0 2em 0;
			}

		}

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

		header br {
/*			display: none; */
		}

	}
	
	
	
	
	
	@media screen and (min-width: 425px) {

		br.caption {
			display: none; 
		}

	}
	
	
	
	

/* Form */

	form {
		margin: 0 0 2em 0;
	}

	label {
		color: #000;
		display: block;
		font-size: 0.9em;
		font-weight: 600;
		margin: 0 0 1em 0;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		background: rgba(144, 144, 144, 0.25);
		border-radius: 3px;
		border: none;
		color: inherit;
		display: block;
		outline: 0;
		padding: 0 1em;
		text-decoration: none;
		width: 100%;
	}

		input[type="text"]:invalid,
		input[type="password"]:invalid,
		input[type="email"]:invalid,
		select:invalid,
		textarea:invalid {
			box-shadow: #;
		}

		

	.select-wrapper {
		text-decoration: none;
		display: block;
		position: relative;

	}

		.select-wrapper:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.select-wrapper:before {
			-moz-pointer-events: none;
			-webkit-pointer-events: none;
			-ms-pointer-events: none;
			pointer-events: none;
			color: #000;
			content: '\f078';
			display: block;
			height: 2.75em;
			line-height: 2.75em;
			position: absolute;
			right: 0;
			text-align: center;
			top: 0;
			width: 2.75em;
		}

		.select-wrapper select::-ms-expand {
			display: none;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select {
		height: 2.75em;
	}

	textarea {
		padding: 0.75em 1em;
	}

	input[type="checkbox"],
	input[type="radio"] {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		display: block;
		float: left;
		margin-right: -2em;
		opacity: 0;
		width: 1em;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			color: #fff;
			cursor: pointer;
			display: inline-block;
			font-size: 1em;
			font-weight: 400;
			padding-left: 2.4em;
			padding-right: 0.75em;
			position: relative;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				font-family: FontAwesome;
				font-style: normal;
				font-weight: normal;
				text-transform: none !important;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				background: rgba(144, 144, 144, 0.25);
				border-radius: 3px;
				content: '';
				display: inline-block;
				height: 1.65em;
				left: 0;
				line-height: 1.58125em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 1.65em;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			background: #;
			color: #fff;
			content: '\f00c';
		}

		input[type="checkbox"]:focus + label:before,
		input[type="radio"]:focus + label:before {
			box-shadow: 0 0 0 2px #;
		}

	input[type="checkbox"] + label:before {
		border-radius: 3px;
	}

	input[type="radio"] + label:before {
		border-radius: 100%;
	}

	::-webkit-input-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	:-moz-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	::-moz-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	.formerize-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

/* Box */

	.box {
		border-radius: 3px;
		border: solid 4px #fff;
		margin-bottom: 2em;
		padding: 1.5em;
	}

		.box > :last-child,
		.box > :last-child > :last-child,
		.box > :last-child > :last-child > :last-child {
			margin-bottom: 0;
		}

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}

/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.icon > .label {
			display: none;
		}

		.icon.major {
			-moz-transform: rotate(-45deg);
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
			border-radius: 3px;
			border: solid 2px #fff;
			display: inline-block;
			font-size: 1.35em;
			height: calc(3em + 2px);
			line-height: 3em;
			text-align: center;
			width: calc(3em + 2px);
		}

			.icon.major:before {
				-moz-transform: rotate(45deg);
				-webkit-transform: rotate(45deg);
				-ms-transform: rotate(45deg);
				transform: rotate(45deg);
				display: inline-block;
				font-size: 1.5em;
			}

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

				.icon.major {
					font-size: 1em;
				}

			}

		.icon.style1 {
			color: #00ffcc;
		}

		.icon.style2 {
			color: #00f0ff;
		}

		.icon.style3 {
			color: #76ddff;
		}

/* Image */

	.image {
		border-radius: 3px;
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			border-radius: 3px;
			display: block;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			margin: 0 0 2em 2em;
			top: 0.25em;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
			margin: auto;
		}
		
		

			.image.fit img {
				width: 100%;
			}
			
		

/* List */

	ol {
		list-style: decimal;
		margin: 0 0 2em 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		margin: 0 0 2em 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
			padding-bottom: 1.5em;
		}
		
		ul li.nomargin {
			padding-left: 0.5em;
			padding-bottom: 0em;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px #fff;
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

		ul.icons {
			cursor: default;
			list-style: none;
			padding-left: 0;
		}

			ul.icons li {
				display: inline-block;
				padding: 0 1em 0 0;
			}

				ul.icons li:last-child {
					padding-right: 0 !important;
				}

			ul.icons.major {
				padding: 1em 0;
			}

				ul.icons.major li {
					padding-right: 3.5em;
				}

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

						ul.icons.major li {
							padding: 0 1em !important;
						}

					}

		ul.actions {
			cursor: default;
			list-style: none;
			padding-left: 0;
		}

			ul.actions li {
				display: inline-block;
				padding: 0 1.5em 0 0;
				vertical-align: middle;
			}

				ul.actions li:last-child {
					padding-right: 0;
				}

			ul.actions.small li {
				padding: 0 0.75em 0 0;
			}

			ul.actions.vertical li {
				display: block;
				padding: 1.5em 0 0 0;
			}

				ul.actions.vertical li:first-child {
					padding-top: 0;
				}

				ul.actions.vertical li > * {
					margin-bottom: 0;
				}

			ul.actions.vertical.small li {
				padding: 0.75em 0 0 0;
			}

				ul.actions.vertical.small li:first-child {
					padding-top: 0;
				}

			ul.actions.fit {
				display: table;
				margin-left: -1.5em;
				padding: 0;
				table-layout: fixed;
				width: calc(100% + 1.5em);
			}

				ul.actions.fit li {
					display: table-cell;
					padding: 0 0 0 1.5em;
				}

					ul.actions.fit li > * {
						margin-bottom: 0;
					}

				ul.actions.fit.small {
					margin-left: -0.75em;
					width: calc(100% + 0.75em);
				}

					ul.actions.fit.small li {
						padding: 0 0 0 0.75em;
					}

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

				ul.actions li {
					display: block;
					padding: 1em 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions li:first-child {
						padding-top: 0;
					}

					ul.actions li > * {
						margin: 0 auto !important;
						max-width: 30em;
						width: 100%;
					}

						ul.actions li > *.icon:before {
							margin-left: -1em;
						}

				ul.actions.small li {
					padding: 0.5em 0 0 0;
				}

					ul.actions.small li:first-child {
						padding-top: 0;
					}

			}

	dl {
		margin: 0 0 2em 0;
	}

/* Table */

	.table-wrapper {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	table {
		margin: 0 0 2em 0;
		width: 100%;
		text-align: left;
	}

		table tbody tr {
			border: solid 1px #fff;
			border-left: 0;
			border-right: 0;
		}

			table tbody tr:nth-child(2n + 1) {
				background-color: rgba(144, 144, 144, 0.25);
			}

		table td {
			padding: 0.75em 0.75em;
		}

		table th {
			color: #fff;
			font-size: 0.9em;
			font-weight: 600;
			padding: 0 0.75em 0.75em 0.75em;
			text-align: left;
		}

		table thead {
			border-bottom: solid 1px #fff;
		}

		table tfoot {
			border-top: solid 1px #fff;
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 1px #fff;
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}
			
			
			
			
			
			
			
			/* Table for Newspapers */

	.table-wrapper {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	table.newspaper {
		margin: 0 0 0em 0;
		width: 100%;
		text-align: left;
	}

		table.newspaper tbody tr {
			border: solid 1px #E8E8E8;
			border-left: 0;
			border-right: 0;
		}

			table.newspaper tbody tr:nth-child(2n + 1) {
				background-color: rgba(144, 144, 144, 0.25);
			}

		table.newspaper td {
			padding: 0em 2em 0em 0em;
		}

		table.newspaper th {
			color: #fff;
			font-size: 0.9em;
			font-weight: 600;
			padding: 0 0em 0em 0em;
			text-align: left;
		}

		table.newspaper thead {
			border-bottom: solid 1px #E8E8E8;
		}

		table.newspaper tfoot {
			border-top: solid 1px #E8E8E8;
		}

		table.newspaper {
			border-collapse: separate;
		}

			table.newspaper tbody tr td {
				border: solid 1px #E8E8E8;
				border-left-width: 0;
				border-top-width: 0;
			}

				table.newspaper tbody tr td:first-child {
					border-left-width: 0px;
				}

			table.newspaper tbody tr:first-child td {
				border-top-width: 0px;
			}

			table.newspaper thead {
				border-bottom: 0;
			}

			table.newspaper tfoot {
				border-top: 0;
			}
			
			
			
			

/* Button */

	
	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		background-color: transparent;
		border-radius: 3px;
		border: 0;
		box-shadow: inset 0 0 0 0px #fff;
		color: #fff;
		cursor: pointer;
		display: inline-block;
		font-size: 0.8em;
		font-weight: 600;
		height: 3.125em;
		letter-spacing: 0.225em;
		line-height: 3.125em;
		padding: 0 2.75em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
		
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		input[type="button"]:hover,
		button:hover,
		.button:hover {
			background-color: rgba(144, 144, 144, 0.25);
		}
		
		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		button:active,
		.button:active {
			background-color: rgba(144, 144, 144, 0.5);
		}
		
		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		input[type="button"].icon:before,
		button.icon:before,
		.button.icon:before {
			margin-right: 0.5em;
		}

		
		input[type="submit"]:focus,
		input[type="reset"]:focus,
		input[type="button"]:focus,
		button:focus,
		textarea:focus 
		.button:focus {
			box-shadow: 0 0 0 2px #681A92;
			outline-width: 0;
		}
		

	
		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small,
		button.small,
		.button.small {
			font-size: 0.8em;
		}
		
		input[type="submit"].big,
		input[type="reset"].big,
		input[type="button"].big,
		button.big,
		.button.big {
			font-size: 1.35em;
		}
		
		input[type="submit"].special,
		input[type="reset"].special,
		input[type="button"].special,
		button.special,
		.button.special {
			background-color: #;
			box-shadow: none !important;
			color: #ffffff !important;
		}
			
			input[type="submit"].special:hover,
			input[type="reset"].special:hover,
			input[type="button"].special:hover,
			button.special:hover,
			.button.special:hover {
				background-color: # !important;
			}
			
			input[type="submit"].special:active,
			input[type="reset"].special:active,
			input[type="button"].special:active,
			button.special:active,
			.button.special:active {
				background-color: # !important;
			}
		
		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled,
		button.disabled,
		button:disabled,
		.button.disabled,
		.button:disabled {
			-moz-pointer-events: none;
			-webkit-pointer-events: none;
			-ms-pointer-events: none;
			pointer-events: none;
			opacity: 0.25;
		}

		@media screen and (max-width: 736px) {
			
			input[type="submit"],
			input[type="reset"],
			input[type="button"],
			button,
			.button {
				height: 3.75em;
				line-height: 3.75em;
			}

		}

/* Features */

	.features {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		list-style: none;
		padding: 0;
		width: 100%;
	}

		.features li {
			padding: 4em 4em 4em 4em ;
			display: block;
			position: relative;
			text-align: center;
			width: 50%;
		}

			.features li:nth-child(1) {
				background-color: rgba(0, 0, 0, 0.20);
			}

			.features li:nth-child(2) {
				background-color: rgba(0, 0, 0, 0.25);
			}

			.features li:nth-child(3) {
				background-color: rgba(0, 0, 0, 0.30);
			}

			.features li:nth-child(4) {
				background-color: rgba(0, 0, 0, 0.35);
			}

			.features li:nth-child(5) {
				background-color: rgba(0, 0, 0, 0.20);
			}

			.features li:nth-child(6) {
				background-color: rgba(0, 0, 0, 0.25);
			}

			.features li:nth-child(7) {
				background-color: rgba(0, 0, 0, 0.30);
			}

			.features li:nth-child(8) {
				background-color: rgba(0, 0, 0, 0.35);
			}

			.features li:nth-child(9) {
				background-color: rgba(0, 0, 0, 0.20);
			}

			.features li:nth-child(10) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(11) {
				background-color: rgba(0, 0, 0, 0.30);
			}
			.features li:nth-child(12) {
				background-color: rgba(0, 0, 0, 0.35);
			}
			.features li:nth-child(13) {
				background-color: rgba(0, 0, 0, 0.20);
			}
			.features li:nth-child(14) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(15) {
				background-color: rgba(0, 0, 0, 0.30);
			}
			.features li:nth-child(16) {
				background-color: rgba(0, 0, 0, 0.35);
			}
			.features li:nth-child(17) {
				background-color: rgba(0, 0, 0, 0.20);
			}
			.features li:nth-child(18) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(19) {
				background-color: rgba(0, 0, 0, 0.30);
			}
			.features li:nth-child(20) {
				background-color: rgba(0, 0, 0, 0.35);
			}
			.features li:nth-child(21) {
				background-color: rgba(0, 0, 0, 0.20);
			}
			.features li:nth-child(22) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(23) {
				background-color: rgba(0, 0, 0, 0.30);
			}
			.features li:nth-child(24) {
				background-color: rgba(0, 0, 0, 0.35);
			}
			.features li:nth-child(25) {
				background-color: rgba(0, 0, 0, 0.20);
			}
			.features li:nth-child(26) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(27) {
				background-color: rgba(0, 0, 0, 0.30);
			}
			.features li:nth-child(28) {
				background-color: rgba(0, 0, 0, 0.35);
			}
			.features li:nth-child(29) {
				background-color: rgba(0, 0, 0, 0.20);
			}
			.features li:nth-child(30) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(31) {
				background-color: rgba(0, 0, 0, 0.30);
			}
			.features li:nth-child(32) {
				background-color: rgba(0, 0, 0, 0.35);
			}
			.features li:nth-child(33) {
				background-color: rgba(0, 0, 0, 0.20);
			}
			.features li:nth-child(34) {
				background-color: rgba(0, 0, 0, 0.25);
			}
			.features li:nth-child(35) {
				background-color: rgba(0, 0, 0, 0.30);
			}

			.features li:before {
				display: block;
				color: #ffffff;
				position: absolute;
				left: 1.75em;
				top: 2.75em;
				font-size: 1.5em;
			}

			.features li:nth-child(1) {
				border-top-left-radius: 3px;
			}

			.features li:nth-child(2) {
				border-top-right-radius: 3px;
			}

			.features li:nth-last-child(1) {
				border-bottom-right-radius: 3px;
			}

			.features li:nth-last-child(2) {
				border-bottom-left-radius: 3px;
			}

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

				.features li {
					padding: 3em 2em 1em 2em ;
					text-align: center;
				}

					.features li:before {
						left: 0;
						margin: 0 0 1em 0;
						position: relative;
						top: 0;
					}

			}

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

				.features li {
					padding: 3em 0 1em 0 ;
					background-color: transparent !important;
					width: 100%;
				}

					.features li:first-child {
						border-top: 0;
					}

			}

			/* Features2 */

	.features2 {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		list-style: none;
		padding: 0;
		width: 100%;
	}

		.features2 li {
			padding: 4em 4em 4em 4em ;
			display: block;
			position: relative;
			text-align: center;
			width: 50%;
		}

			.features2 li:nth-child(1) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(2) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(3) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(4) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(5) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(6) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(7) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(8) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(9) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:nth-child(10) {
				background-color: rgba(0, 0, 0, 0);
			}

			.features2 li:before {
				display: block;
				color: #ffffff;
				position: absolute;
				left: 1.75em;
				top: 2.75em;
				font-size: 1.5em;
			}

			.features2 li:nth-child(1) {
				border-top-left-radius: 3px;
			}

			.features2 li:nth-child(2) {
				border-top-right-radius: 3px;
			}

			.features2 li:nth-last-child(1) {
				border-bottom-right-radius: 3px;
			}

			.features2 li:nth-last-child(2) {
				border-bottom-left-radius: 3px;
			}

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

				.features2 li {
					padding: 3em 2em 1em 2em ;
					text-align: center;
				}

					.features2 li:before {
						left: 0;
						margin: 0 0 1em 0;
						position: relative;
						top: 0;
					}

			}

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

				.features2 li {
					padding: 3em 0 1em 0 ;
					background-color: transparent !important;
					width: 100%;
				}

					.features2 li:first-child {
						border-top: 0;
					}

			}

/* Spotlight */

	.spotlight {
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
	}

		.spotlight .image {
			-moz-order: 1;
			-webkit-order: 1;
			-ms-order: 1;
			order: 1;
			border-radius: 0;
			width: 40%;
		}

			.spotlight .image img {
				border-radius: 0;
				width: 100%;
			}

		.spotlight .content {
			padding: 2em 4em 0.1em 4em ;
			-moz-order: 2;
			-webkit-order: 2;
			-ms-order: 2;
			order: 2;
			max-width: 48em;
			width: 60%;
		}

		.spotlight:nth-child(2n) {
			-moz-flex-direction: row-reverse;
			-webkit-flex-direction: row-reverse;
			-ms-flex-direction: row-reverse;
			flex-direction: row-reverse;
		}

		.spotlight:nth-child(1) {
			background-color: rgba(0, 0, 0, 0.05);
		}

		.spotlight:nth-child(2) {
			background-color: rgba(0, 0, 0, 0.15);
		}

		.spotlight:nth-child(3) {
			background-color: rgba(0, 0, 0, 0.20);
		}

		.spotlight:nth-child(4) {
			background-color: rgba(0, 0, 0, 0.3);
		}

		.spotlight:nth-child(5) {
			background-color: rgba(0, 0, 0, 0.375);
		}

		.spotlight:nth-child(6) {
			background-color: rgba(0, 0, 0, 0.45);
		}

		.spotlight:nth-child(7) {
			background-color: rgba(0, 0, 0, 0.525);
		}

		.spotlight:nth-child(8) {
			background-color: rgba(0, 0, 0, 0.6);
		}

		.spotlight:nth-child(9) {
			background-color: rgba(0, 0, 0, 0.675);
		}

		.spotlight:nth-child(10) {
			background-color: rgba(0, 0, 0, 0.75);
		}

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

			.spotlight .image {
				width: 45%;
			}

			.spotlight .content {
				width: 55%;
			}

		}

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

			.spotlight {
				display: block;
			}

				.spotlight br {
					display: none;
				}

				.spotlight .image {
					width: 100%;
				}

				.spotlight .content {
					padding: 4em 3em 2em 3em ;
					max-width: none;
					text-align: center;
					width: 100%;
				}

		}

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

			.spotlight .content {
				padding: 3em 2em 1em 2em ;
			}

		}
		
		
		
	
		
		
		
		
		
		
		

/* Wrapper */

	.wrapper {
		padding: 3em 0 2em 0 ;
	}
	
	

		.wrapper > .inner {
			width: 60em;
			margin: 0 auto;
		}

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

				.wrapper > .inner {
					width: 90%;
				}

			}

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

				.wrapper > .inner {
					width: 100%;
				}

			}
			
			
			
		.wrapper2 {
		padding: 1em 0em 1em 0em ;
	}
	
	
	
	
	

		.wrapper2 > .inner {
			width: 60em;
			margin: 0 auto;
		}
		
		
		
		

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

				.wrapper2 > .inner {
					width: 90%;
				}

			}

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

				.wrapper2 > .inner {
					width: 100%;
				}

			}
			
			
			
		.wrapper3 {
		padding: 0em 0em 1em 0em ;
	}
	
	
	
	
	

		.wrapper3 > .inner {
			width: 60em;
			margin: 0 auto;
		}

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

				.wrapper3 > .inner {
					width: 90%;
				}

			}

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

				.wrapper3 > .inner {
					width: 100%;
				}

			}	
			
			
			

		.wrapper.alt {
			padding: 0;
		}

		.wrapper.style1 {
			background-color: #531458;
			color: #ffffff;
		}

			.wrapper.style1 strong, .wrapper.style1 b {
				color: #ffffff;
			}

			.wrapper.style1 h2, .wrapper.style1 h1.nationaleclipse, .wrapper.style1 h1.main-topic, .wrapper.style1 h3, .wrapper.style1 h2.sub, .wrapper.style1 h4, .wrapper.style1 h5, .wrapper.style1 h6 {
				color: #ffffff;
			}
			
			
			
			
/*	FOR NEWSPAPER TRANSCRIPTS */
.wrapper.style1 .selected {
	color: #ffffff;
	cursor: default;
	border-bottom: dotted 0px;
}


/*	FOR NEWSPAPER TRANSCRIPTS */
.wrapper.style1 .selected:hover {
	color: #ffffff;
	cursor: default;
	border-bottom: dotted 0px;
}


/*	FOR NEWSPAPER TRANSCRIPTS */
.wrapper.style1 #salt_lake_01131880_transcription {
	background-color: #D8D8D8;
	color: #000000;
	padding: 15px;
	border: 2px solid #D8D8D8;
}

.wrapper.style1 #philadelphia_04301752_transcription {
	background-color: #E8E8E8;
	color: #000000;
	padding: 15px;
	border: 2px solid #E8E8E8;
}


.wrapper.style1 #topeka_06081918_transcription {
	background-color: #D8D8D8;
	color: #000000;
	padding: 15px;
	border: 2px solid #D8D8D8;
}



.wrapper.style1 #baltimore_07171860_transcription {
	background-color: #E9E9E9;
	color: #000000;
	padding: 15px;
	border: 2px solid #E9E9E9;
}



.wrapper.style1 #new_bern_06261778_transcription {
	background-color: #F4F4F4;
	color: #000000;
	padding: 15px;
	border: 2px solid #F4F4F4;
}


.wrapper.style1 #washington_06181806_transcription {
	background-color: #C4C4C4;
	color: #000000;
	padding: 15px;
	border: 2px solid #C4C4C4;
}

.wrapper.style1 #gettysburg_12091834_transcription {
	background-color: #FEFEFE;
	color: #000000;
	padding: 15px;
	border: 2px solid #FEFEFE;
}


.wrapper.style1 #honolulu_08101850_transcription {
	background-color: #D7D7D7;
	color: #000000;
	padding: 15px;
	border: 2px solid #D7D7D7;
}


.wrapper.style1 #new_york_07291851_transcription {
	background-color: #D7D7D7;
	color: #000000;
	padding: 15px;
	border: 2px solid #D7D7D7;
}

.wrapper.style1 #new_york_08091869_transcription {
	background-color: #D2D2D2;
	color: #000000;
	padding: 15px;
	border: 2px solid #D2D2D2;
}

.wrapper.style1 #new_york_07301878_transcription {
	background-color: #B4B4B4;
	color: #000000;
	padding: 15px;
	border: 2px solid #B4B4B4;
}

.wrapper.style1 #miles_city_01031889_transcription {
	background-color: #F7F7F7;
	color: #000000;
	padding: 15px;
	border: 2px solid #F7F7F7;
}

.wrapper.style1 #norfolk_05291900_transcription {
	background-color: #C3C3C3;
	color: #000000;
	padding: 15px;
	border: 2px solid #C3C3C3;
}






			
			
			

			.wrapper.style1 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style1 header p {
				color: #ffffff;
			}

			.wrapper.style1 header.major h2, .wrapper.style1 header.major h1.nationaleclipse, .wrapper.style1 header.major h1.main-topic, .wrapper.style1 header.major h3, .wrapper.style1 header.major h2.sub, .wrapper.style1 header.major h4, .wrapper.style1 header.major h5, .wrapper.style1 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 header.major p {
				color: #ffffff;
			}

			.wrapper.style1 label {
				color: #ffffff;
			}

			.wrapper.style1 input[type="text"],
			.wrapper.style1 input[type="password"],
			.wrapper.style1 input[type="email"],
			.wrapper.style1 select,
			.wrapper.style1 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style1 .select-wrapper:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 input[type="checkbox"] + label,
			.wrapper.style1 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style1 input[type="checkbox"] + label:before,
				.wrapper.style1 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style1 input[type="checkbox"]:checked + label:before,
			.wrapper.style1 input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper.style1 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style1 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style1 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style1 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style1 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style1 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style1 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}
				
				
				
				.wrapper.style1 table.newspaper tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.00);
				}
				
				
				
				

			.wrapper.style1 table th {
				color: #ffffff;
			}

			.wrapper.style1 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style1 input[type="submit"],
			.wrapper.style1 input[type="reset"],
			.wrapper.style1 input[type="button"],
			.wrapper.style1 button,
			.wrapper.style1 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper.style1 input[type="submit"]:hover,
				.wrapper.style1 input[type="reset"]:hover,
				.wrapper.style1 input[type="button"]:hover,
				.wrapper.style1 button:hover,
				.wrapper.style1 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper.style1 input[type="submit"]:active,
				.wrapper.style1 input[type="reset"]:active,
				.wrapper.style1 input[type="button"]:active,
				.wrapper.style1 button:active,
				.wrapper.style1 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper.style1 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			.wrapper.style100 {
			background-image: url("https://nationaleclipse.com/images/coming_soon.png");
			color: #000000;
			padding: 6em 3em 4em 3em ;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			text-align: center;
		}

			.wrapper.style100 strong, .wrapper.style100 b {
				color: #000000;
			}

			.wrapper.style100 h2, .wrapper.style100 h1.nationaleclipse, .wrapper.style100 h1.main-topic, .wrapper.style100 h3, .wrapper.style100 h2.sub, .wrapper.style100 h4, .wrapper.style100 h5, .wrapper.style100 h6 {
				color: #000000;
			}

			.wrapper.style100 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style100 header p {
				color: #000000;
			}

			.wrapper.style100 header.major h2, .wrapper.style100 header.major h1.nationaleclipse, .wrapper.style100 header.major h1.main-topic, .wrapper.style100 header.major h3, .wrapper.style100 header.major h2.sub, .wrapper.style100 header.major h4, .wrapper.style100 header.major h5, .wrapper.style100 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 header.major p {
				color: #000000;
			}

			.wrapper.style100 label {
				color: #000000;
			}

			.wrapper.style100 input[type="text"],
			.wrapper.style100 input[type="password"],
			.wrapper.style100 input[type="email"],
			.wrapper.style100 select,
			.wrapper.style100 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style100 .select-wrapper:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 input[type="checkbox"] + label,
			.wrapper.style100 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style100 input[type="checkbox"] + label:before,
				.wrapper.style100 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style100 input[type="checkbox"]:checked + label:before,
			.wrapper.style100 input[type="radio"]:checked + label:before {
				background: #000000;
				color: #000000;
			}

			.wrapper.style100 ::-webkit-input-placeholder {
				color: #000000 !important;
			}

			.wrapper.style100 :-moz-placeholder {
				color: #000000 !important;
			}

			.wrapper.style100 ::-moz-placeholder {
				color: #000000 !important;
			}

			.wrapper.style100 :-ms-input-placeholder {
				color: #000000 !important;
			}

			.wrapper.style100 .formerize-placeholder {
				color: #000000 !important;
			}

			.wrapper.style100 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style100 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style100 table th {
				color: #000000;
			}

			.wrapper.style100 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style100 input[type="submit"],
			.wrapper.style100 input[type="reset"],
			.wrapper.style100 input[type="button"],
			.wrapper.style100 button,
			.wrapper.style100 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #000000;
			}

				.wrapper.style100 input[type="submit"]:hover,
				.wrapper.style100 input[type="reset"]:hover,
				.wrapper.style100 input[type="button"]:hover,
				.wrapper.style100 button:hover,
				.wrapper.style100 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper.style100 input[type="submit"]:active,
				.wrapper.style100 input[type="reset"]:active,
				.wrapper.style100 input[type="button"]:active,
				.wrapper.style100 button:active,
				.wrapper.style100 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper.style100 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			
			
			
			
			
			
			
			
			
			
			
				.wrapper2.style-s {
			background-color: #ffffff;
			color: #ffffff;
		}

			.wrapper2.style-s strong, .wrapper2.style-s b {
				color: #000000;
			}

			.wrapper2.style-s h2, .wrapper2.style-s h1.nationaleclipse, .wrapper2.style-s h1.main-topic, .wrapper2.style-s h3, .wrapper2.style-s h2.sub, .wrapper2.style-s h4, .wrapper2.style-s h5, .wrapper2.style-s h6 {
				color: #000000;
			}

			.wrapper2.style-s hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style-s header p {
				color: #000000;
			}
			
			.wrapper2.style-s p {
				color: #000000;
			}

			.wrapper2.style-s header.major h2, .wrapper2.style-s header.major h1.nationaleclipse, .wrapper2.style-s header.major h1.main-topic, .wrapper2.style-s header.major h3, .wrapper2.style-s header.major h2.sub, .wrapper2.style-s header.major h4, .wrapper2.style-s header.major h5, .wrapper2.style-s header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s header.major p {
				color: #000000;
			}

			.wrapper2.style-s label {
				color: #000000;
			}

			.wrapper2.style-s input[type="text"],
			.wrapper2.style-s input[type="password"],
			.wrapper2.style-s input[type="email"],
			.wrapper2.style-s select,
			.wrapper2.style-s textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style-s .select-wrapper2:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s input[type="checkbox"] + label,
			.wrapper2.style-s input[type="radio"] + label {
				color: #000000;
			}

				.wrapper2.style-s input[type="checkbox"] + label:before,
				.wrapper2.style-s input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style-s input[type="checkbox"]:checked + label:before,
			.wrapper2.style-s input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper2.style-s ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper2.style-s table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style-s table th {
				color: #ffffff;
			}

			.wrapper2.style-s table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s input[type="submit"],
			.wrapper2.style-s input[type="reset"],
			.wrapper2.style-s input[type="button"],
			.wrapper2.style-s button,
			.wrapper2.style-s .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper2.style-s input[type="submit"]:hover,
				.wrapper2.style-s input[type="reset"]:hover,
				.wrapper2.style-s input[type="button"]:hover,
				.wrapper2.style-s button:hover,
				.wrapper2.style-s .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper2.style-s input[type="submit"]:active,
				.wrapper2.style-s input[type="reset"]:active,
				.wrapper2.style-s input[type="button"]:active,
				.wrapper2.style-s button:active,
				.wrapper2.style-s .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper2.style-s .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			
			
			
			
			.wrapper2.style-s-off {
			background-color: #ffffff;
			color: #000000;
			padding: 1em 1em 1em 1em ;
		}

			.wrapper2.style-s-off strong, .wrapper2.style-s-off b {
				color: #000000;
			}

			.wrapper2.style-s-off h2, .wrapper2.style-s-off h1.nationaleclipse, .wrapper2.style-s-off h1.main-topic, .wrapper2.style-s-off h3, .wrapper2.style-s-off h2.sub, .wrapper2.style-s-off h4, .wrapper2.style-s-off h5, .wrapper2.style-s-off h6 {
				color: #000000;
			}

			.wrapper2.style-s-off hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style-s-off header p {
				color: #000000;
			}
			
			.wrapper2.style-s-off p {
				color: #000000;
			}

			.wrapper2.style-s-off header.major h2, .wrapper2.style-s-off header.major h1.nationaleclipse, .wrapper2.style-s-off header.major h1.main-topic, .wrapper2.style-s-off header.major h3, .wrapper2.style-s-off header.major h2.sub, .wrapper2.style-s-off header.major h4, .wrapper2.style-s-off header.major h5, .wrapper2.style-s-off header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off header.major p {
				color: #000000;
			}

			.wrapper2.style-s-off label {
				color: #000000;
			}

			.wrapper2.style-s-off input[type="text"],
			.wrapper2.style-s-off input[type="password"],
			.wrapper2.style-s-off input[type="email"],
			.wrapper2.style-s-off select,
			.wrapper2.style-s-off textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style-s-off .select-wrapper2:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off input[type="checkbox"] + label,
			.wrapper2.style-s-off input[type="radio"] + label {
				color: #000000;
			}

				.wrapper2.style-s-off input[type="checkbox"] + label:before,
				.wrapper2.style-s-off input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style-s-off input[type="checkbox"]:checked + label:before,
			.wrapper2.style-s-off input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper2.style-s-off ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s-off :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s-off ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s-off :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s-off .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-s-off .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper2.style-s-off table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style-s-off table th {
				color: #ffffff;
			}

			.wrapper2.style-s-off table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-s-off input[type="submit"],
			.wrapper2.style-s-off input[type="reset"],
			.wrapper2.style-s-off input[type="button"],
			.wrapper2.style-s-off button,
			.wrapper2.style-s-off .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper2.style-s-off input[type="submit"]:hover,
				.wrapper2.style-s-off input[type="reset"]:hover,
				.wrapper2.style-s-off input[type="button"]:hover,
				.wrapper2.style-s-off button:hover,
				.wrapper2.style-s-off .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper2.style-s-off input[type="submit"]:active,
				.wrapper2.style-s-off input[type="reset"]:active,
				.wrapper2.style-s-off input[type="button"]:active,
				.wrapper2.style-s-off button:active,
				.wrapper2.style-s-off .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper2.style-s-off .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			
			
			
			
			
			
			
			
			.wrapper2.style-classifieds {
			background-color: #505393;
			color: #ffffff;
			padding: 1em 1em 1em 1em ;
		}
		
		

			.wrapper2.style-classifieds strong, .wrapper2.style-classifieds b {
				color: #000000;
			}

			.wrapper2.style-classifieds h2, .wrapper2.style-classifieds h1.nationaleclipse, .wrapper2.style-classifieds h1.main-topic, .wrapper2.style-classifieds h3, .wrapper2.style-classifieds h2.sub, .wrapper2.style-classifieds h4, .wrapper2.style-classifieds h5, .wrapper2.style-classifieds h6 {
				color: #ffffff;
			}

			.wrapper2.style-classifieds hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style-classifieds header p {
				color: #ffffff;
			}
			
			.wrapper2.style-classifieds p {
				color: #ffffff;
			}

			.wrapper2.style-classifieds header.major h2, .wrapper2.style-classifieds header.major h1.nationaleclipse, .wrapper2.style-classifieds header.major h1.main-topic, .wrapper2.style-classifieds header.major h3, .wrapper2.style-classifieds header.major h2.sub, .wrapper2.style-classifieds header.major h4, .wrapper2.style-classifieds header.major h5, .wrapper2.style-classifieds header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds header.major p {
				color: #000000;
			}

			.wrapper2.style-classifieds label {
				color: #000000;
			}

			.wrapper2.style-classifieds input[type="text"],
			.wrapper2.style-classifieds input[type="password"],
			.wrapper2.style-classifieds input[type="email"],
			.wrapper2.style-classifieds select,
			.wrapper2.style-classifieds textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style-classifieds .select-wrapper2:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds input[type="checkbox"] + label,
			.wrapper2.style-classifieds input[type="radio"] + label {
				color: #000000;
			}

				.wrapper2.style-classifieds input[type="checkbox"] + label:before,
				.wrapper2.style-classifieds input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style-classifieds input[type="checkbox"]:checked + label:before,
			.wrapper2.style-classifieds input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper2.style-classifieds ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-classifieds :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-classifieds ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-classifieds :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-classifieds .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style-classifieds .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper2.style-classifieds table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style-classifieds table th {
				color: #ffffff;
			}

			.wrapper2.style-classifieds table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style-classifieds input[type="submit"],
			.wrapper2.style-classifieds input[type="reset"],
			.wrapper2.style-classifieds input[type="button"],
			.wrapper2.style-classifieds button,
			.wrapper2.style-classifieds .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper2.style-classifieds input[type="submit"]:hover,
				.wrapper2.style-classifieds input[type="reset"]:hover,
				.wrapper2.style-classifieds input[type="button"]:hover,
				.wrapper2.style-classifieds button:hover,
				.wrapper2.style-classifieds .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper2.style-classifieds input[type="submit"]:active,
				.wrapper2.style-classifieds input[type="reset"]:active,
				.wrapper2.style-classifieds input[type="button"]:active,
				.wrapper2.style-classifieds button:active,
				.wrapper2.style-classifieds .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper2.style-classifieds .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			
			
			
				.wrapper3.style-s {
			background-color: #ffffff;
			color: #ffffff;
		}

			.wrapper3.style-s strong, .wrapper3.style-s b {
				color: #000000;
			}

			.wrapper3.style-s h2, .wrapper3.style-s h1.nationaleclipse, .wrapper3.style-s h1.main-topic, .wrapper3.style-s h3, .wrapper3.style-s h2.sub, .wrapper3.style-s h4, .wrapper3.style-s h5, .wrapper3.style-s h6 {
				color: #000000;
			}

			.wrapper3.style-s hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper3.style-s header p {
				color: #000000;
			}
			
			.wrapper3.style-s p {
				color: #000000;
			}

			.wrapper3.style-s header.major h2, .wrapper3.style-s header.major h1.nationaleclipse, .wrapper3.style-s header.major h1.main-topic, .wrapper3.style-s header.major h3, .wrapper3.style-s header.major h2.sub, .wrapper3.style-s header.major h4, .wrapper3.style-s header.major h5, .wrapper3.style-s header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s header.major p {
				color: #000000;
			}

			.wrapper3.style-s label {
				color: #000000;
			}

			.wrapper3.style-s input[type="text"],
			.wrapper3.style-s input[type="password"],
			.wrapper3.style-s input[type="email"],
			.wrapper3.style-s select,
			.wrapper3.style-s textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper3.style-s .select-wrapper3:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s input[type="checkbox"] + label,
			.wrapper3.style-s input[type="radio"] + label {
				color: #000000;
			}

				.wrapper3.style-s input[type="checkbox"] + label:before,
				.wrapper3.style-s input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper3.style-s input[type="checkbox"]:checked + label:before,
			.wrapper3.style-s input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper3.style-s ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-s :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-s ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-s :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-s .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-s .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper3.style-s table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper3.style-s table th {
				color: #ffffff;
			}

			.wrapper3.style-s table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-s input[type="submit"],
			.wrapper3.style-s input[type="reset"],
			.wrapper3.style-s input[type="button"],
			.wrapper3.style-s button,
			.wrapper3.style-s .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper3.style-s input[type="submit"]:hover,
				.wrapper3.style-s input[type="reset"]:hover,
				.wrapper3.style-s input[type="button"]:hover,
				.wrapper3.style-s button:hover,
				.wrapper3.style-s .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper3.style-s input[type="submit"]:active,
				.wrapper3.style-s input[type="reset"]:active,
				.wrapper3.style-s input[type="button"]:active,
				.wrapper3.style-s button:active,
				.wrapper3.style-s .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper3.style-s .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			
			.wrapper3.style-classifieds {
			background-color: #531458;
			color: #ffffff;
		}

			.wrapper3.style-classifieds strong, .wrapper3.style-classifieds b {
				color: #000000;
			}

			.wrapper3.style-classifieds h2, .wrapper3.style-classifieds h1.nationaleclipse, .wrapper3.style-classifieds h1.main-topic, .wrapper3.style-classifieds h3, .wrapper3.style-classifieds h2.sub, .wrapper3.style-classifieds h4, .wrapper3.style-classifieds h5, .wrapper3.style-classifieds h6 {
				color: #ffffff;
			}

			.wrapper3.style-classifieds hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper3.style-classifieds header p {
				color: #ffffff;
			}
			
			.wrapper3.style-classifieds p {
				color: #ffffff;
			}

			.wrapper3.style-classifieds header.major h2, wrapper3.style-classifieds header.major h1.nationaleclipse, .wrapper3.style-classifieds header.major h1.main-topic, .wrapper3.style-classifieds header.major h3, .wrapper3.style-classifieds header.major h2.sub, .wrapper3.style-classifieds header.major h4, .wrapper3.style-classifieds header.major h5, .wrapper3.style-classifieds header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds header.major p {
				color: #000000;
			}

			.wrapper3.style-classifieds label {
				color: #000000;
			}

			.wrapper3.style-classifieds input[type="text"],
			.wrapper3.style-classifieds input[type="password"],
			.wrapper3.style-classifieds input[type="email"],
			.wrapper3.style-classifieds select,
			.wrapper3.style-classifieds textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper3.style-classifieds .select-wrapper3:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds input[type="checkbox"] + label,
			.wrapper3.style-classifieds input[type="radio"] + label {
				color: #000000;
			}

				.wrapper3.style-classifieds input[type="checkbox"] + label:before,
				.wrapper3.style-classifieds input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper3.style-classifieds input[type="checkbox"]:checked + label:before,
			.wrapper3.style-classifieds input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper3.style-classifieds ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-classifieds :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-classifieds ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-classifieds :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-classifieds .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper3.style-classifieds .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper3.style-classifieds table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper3.style-classifieds table th {
				color: #ffffff;
			}

			.wrapper3.style-classifieds table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper3.style-classifieds input[type="submit"],
			.wrapper3.style-classifieds input[type="reset"],
			.wrapper3.style-classifieds input[type="button"],
			.wrapper3.style-classifieds button,
			.wrapper3.style-classifieds .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper3.style-classifieds input[type="submit"]:hover,
				.wrapper3.style-classifieds input[type="reset"]:hover,
				.wrapper3.style-classifieds input[type="button"]:hover,
				.wrapper3.style-classifieds button:hover,
				.wrapper3.style-classifieds .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper3.style-classifieds input[type="submit"]:active,
				.wrapper3.style-classifieds input[type="reset"]:active,
				.wrapper3.style-classifieds input[type="button"]:active,
				.wrapper3.style-classifieds button:active,
				.wrapper3.style-classifieds .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper3.style-classifieds .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			
			

		.wrapper.style2 {
			background-color: #1d242a;
		}

		.wrapper.style3 {
			background-color: #505393;
			color: #ffffff;
		}

			.wrapper.style3 strong, .wrapper.style3 b {
				color: #ffffff;
			}

			.wrapper.style3 h2, .wrapper.style3 h1.nationaleclipse, .wrapper.style3 h1.main-topic, .wrapper.style3 h3, .wrapper.style3 h2.sub, .wrapper.style3 h4, .wrapper.style3 h5, .wrapper.style3 h6 {
				color: #ffffff;
			}

			.wrapper.style3 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style3 header p {
				color: #ffffff;
			}

			.wrapper.style3 header.major h2, .wrapper.style3 header.major h1.nationaleclipse, .wrapper.style3 header.major h1.main-topic, .wrapper.style3 header.major h3, .wrapper.style3 header.major h2.sub, .wrapper.style3 header.major h4, .wrapper.style3 header.major h5, .wrapper.style3 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 header.major p {
				color: #ffffff;
			}

			.wrapper.style3 label {
				color: #ffffff;
			}

			.wrapper.style3 input[type="text"],
			.wrapper.style3 input[type="password"],
			.wrapper.style3 input[type="email"],
			.wrapper.style3 select,
			.wrapper.style3 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style3 .select-wrapper:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 input[type="checkbox"] + label,
			.wrapper.style3 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style3 input[type="checkbox"] + label:before,
				.wrapper.style3 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style3 input[type="checkbox"]:checked + label:before,
			.wrapper.style3 input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper.style3 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style3 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style3 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style3 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style3 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style3 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style3 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style3 table th {
				color: #ffffff;
			}

			.wrapper.style3 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style3 input[type="submit"],
			.wrapper.style3 input[type="reset"],
			.wrapper.style3 input[type="button"],
			.wrapper.style3 button,
			.wrapper.style3 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper.style3 input[type="submit"]:hover,
				.wrapper.style3 input[type="reset"]:hover,
				.wrapper.style3 input[type="button"]:hover,
				.wrapper.style3 button:hover,
				.wrapper.style3 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper.style3 input[type="submit"]:active,
				.wrapper.style3 input[type="reset"]:active,
				.wrapper.style3 input[type="button"]:active,
				.wrapper.style3 button:active,
				.wrapper.style3 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper.style3 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}

		.wrapper.style4 {
			background-color: transparent;
		}

		.wrapper.style5 {
			background-color: #ffffff;
			color: #ffffff;
		}

			.wrapper.style5 strong, .wrapper.style5 b {
				color: #ffffff;
			}

			.wrapper.style5 h2, .wrapper.style5 h1.nationaleclipse, .wrapper.style5 h1.main-topic, .wrapper.style5 h3, .wrapper.style5 h2.sub, .wrapper.style5 h4, .wrapper.style5 h5, .wrapper.style5 h6 {
				color: #ffffff;
			}

			.wrapper.style5 hr {
				border-color: #ffffff;
			}

			.wrapper.style5 blockquote {
				border-color: #ffffff;
			}

			.wrapper.style5 code {
				background: rgba(0, 0, 0, 0.0375);
			}

			.wrapper.style5 header p {
				color: #ffffff;
			}

			.wrapper.style5 header.major h2, .wrapper.style5 header.major h1.nationaleclipse, .wrapper.style5 header.major h1.main-topic, .wrapper.style5 header.major h3, .wrapper.style5 header.major h2.sub, .wrapper.style5 header.major h4, .wrapper.style5 header.major h5, .wrapper.style5 header.major h6 {
				border-color: #ffffff;
			}

			.wrapper.style5 header.major p {
				color: #4E4852;
			}

			.wrapper.style5 label {
				color: #2E3842;
			}

			.wrapper.style5 input[type="text"],
			.wrapper.style5 input[type="password"],
			.wrapper.style5 input[type="email"],
			.wrapper.style5 select,
			.wrapper.style5 textarea {
				background: rgba(0, 0, 0, 0.0375);
			}

			.wrapper.style5 .select-wrapper:before {
				color: #ffffff;
			}

			.wrapper.style5 input[type="checkbox"] + label,
			.wrapper.style5 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style5 input[type="checkbox"] + label:before,
				.wrapper.style5 input[type="radio"] + label:before {
					background: rgba(0, 0, 0, 0.0375);
				}

			.wrapper.style5 input[type="checkbox"]:checked + label:before,
			.wrapper.style5 input[type="radio"]:checked + label:before {
				background: #2E3842;
				color: #ffffff;
			}

			.wrapper.style5 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style5 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style5 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style5 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style5 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style5 .icon.major {
				border-color: #ffffff;
			}

			.wrapper.style5 ul.alt li {
				border-color: #ffffff;
			}

			.wrapper.style5 table tbody tr {
				border-color: #ffffff;
			}

				.wrapper.style5 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(0, 0, 0, 0.0375);
				}

			.wrapper.style5 table th {
				color: #ffffff;
			}

			.wrapper.style5 table thead {
				border-color: #ffffff;
			}

			.wrapper.style5 table tfoot {
				border-color: #ffffff;
			}

			.wrapper.style5 table.alt tbody tr td {
				border-color: #ffffff;
			}

			.wrapper.style5 input[type="submit"],
			.wrapper.style5 input[type="reset"],
			.wrapper.style5 input[type="button"],
			.wrapper.style5 button,
			.wrapper.style5 .button {
				box-shadow: inset 0 0 0 2px #dfdfdf;
				color: #ffffff;
			}

				.wrapper.style5 input[type="submit"]:hover,
				.wrapper.style5 input[type="reset"]:hover,
				.wrapper.style5 input[type="button"]:hover,
				.wrapper.style5 button:hover,
				.wrapper.style5 .button:hover {
					background-color: rgba(0, 0, 0, 0.0375);
				}

				.wrapper.style5 input[type="submit"]:active,
				.wrapper.style5 input[type="reset"]:active,
				.wrapper.style5 input[type="button"]:active,
				.wrapper.style5 button:active,
				.wrapper.style5 .button:active {
					background-color: rgba(0, 0, 0, 0.1);
				}

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

				.wrapper.style5 .features li {
					border-top-color: #ffffff;
				}

			}

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

			.wrapper {
				padding: 4em 3em 2em 3em ;
			}

		}

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

			.wrapper {
				padding: 3em 2em 1em 2em ;
			}

		}

		

			.wrapper.style6 {
			background-color: #21B2A6;
			color: #ffffff;
		}

			.wrapper.style6 strong, .wrapper.style6 b {
				color: #ffffff;
			}

			.wrapper.style6 h2, .wrapper.style6 h1.nationaleclipse, .wrapper.style6 h1.main-topic, .wrapper.style6 h3, .wrapper.style6 h2.sub, .wrapper.style6 h4, .wrapper.style6 h5, .wrapper.style6 h6 {
				color: #ffffff;
			}

			.wrapper.style6 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style6 header p {
				color: #ffffff;
			}

			.wrapper.style6 header.major h2, .wrapper.style6 header.major h1.nationaleclipse, .wrapper.style6 header.major h1.main-topic, .wrapper.style6 header.major h3, .wrapper.style6 header.major h2.sub, .wrapper.style6 header.major h4, .wrapper.style6 header.major h5, .wrapper.style6 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 header.major p {
				color: #ffffff;
			}

			.wrapper.style6 label {
				color: #ffffff;
			}

			.wrapper.style6 input[type="text"],
			.wrapper.style6 input[type="password"],
			.wrapper.style6 input[type="email"],
			.wrapper.style6 select,
			.wrapper.style6 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style6 .select-wrapper:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 input[type="checkbox"] + label,
			.wrapper.style6 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style6 input[type="checkbox"] + label:before,
				.wrapper.style6 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style6 input[type="checkbox"]:checked + label:before,
			.wrapper.style6 input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper.style6 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style6 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style6 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style6 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style6 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style6 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style6 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style6 table th {
				color: #ffffff;
			}

			.wrapper.style6 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style6 input[type="submit"],
			.wrapper.style6 input[type="reset"],
			.wrapper.style6 input[type="button"],
			.wrapper.style6 button,
			.wrapper.style6 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper.style6 input[type="submit"]:hover,
				.wrapper.style6 input[type="reset"]:hover,
				.wrapper.style6 input[type="button"]:hover,
				.wrapper.style6 button:hover,
				.wrapper.style6 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper.style6 input[type="submit"]:active,
				.wrapper.style6 input[type="reset"]:active,
				.wrapper.style6 input[type="button"]:active,
				.wrapper.style6 button:active,
				.wrapper.style6 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper.style6 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
					
			

			
			
			
			
			
			
			
			
			.wrapper.style7 {
			background-color: #2e3842;
			color: #ffffff;
		}

			.wrapper.style7 strong, .wrapper.style7 b {
				color: #ffffff;
			}

			.wrapper.style7 h2, .wrapper.style7 h1.nationaleclipse, .wrapper.style7 h1.main-topic, .wrapper.style7 h3, .wrapper.style7 h2.sub, .wrapper.style7 h4, .wrapper.style7 h5, .wrapper.style7 h6 {
				color: #ffffff;
			}
			
			
			
/*	FOR ADVERTISING RATE CARD */
.wrapper.style7 .selected {
	color: red;
	cursor: default;
	border-bottom: dotted 0px;
}


/*	FOR ADVERTISING RATE CARD */
.wrapper.style7 .selected:hover {
	color: red;
	cursor: default;
	border-bottom: dotted 0px;
}






			.wrapper.style7 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style7 header p {
				color: #ffffff;
			}

			.wrapper.style7 header.major h2, .wrapper.style7 header.major h1.nationaleclipse, .wrapper.style7 header.major h1.main-topic, .wrapper.style7 header.major h3, .wrapper.style7 header.major h2.sub, .wrapper.style7 header.major h4, .wrapper.style7 header.major h5, .wrapper.style7 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 header.major p {
				color: #ffffff;
			}

			.wrapper.style7 label {
				color: #ffffff;
			}

			.wrapper.style7 input[type="text"],
			.wrapper.style7 input[type="password"],
			.wrapper.style7 input[type="email"],
			.wrapper.style7 select,
			.wrapper.style7 textarea {
				background: rgba(255, 255, 255, 0.075);
			}
			
			select option[value=""] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			select option[value="1"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="2"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="3"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="4"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="5"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="6"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="7"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			select option[value="30 Days - $25"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days - $50"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="90 Days - $75"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="120 Days - $100"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="150 Days - $125"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days - $150"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
		
			select option[value="30 Days - $35"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days - $70"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="90 Days - $105"] {
				background: rgba(62, 71, 80, 1);
			}	
			
			
			
			
			
			select option[value="30 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="90 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="120 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="150 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="210 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="240 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="240 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="270 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="300 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="330 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="360 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			select option[value="180 Days - 140 characters"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days - 280 characters"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
		
			
			select option[value="Until August 21, 2017"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="Until July 2, 2019"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
			
		
			select option[value="1 Post"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="2 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="3 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="5 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="10 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="15 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="20 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="25 Posts"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
			
			select option[value="3 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="6 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="9 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="12 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="15 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="18 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="21 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="24 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="27 Days"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
		
			select option[value="30 Days - $45"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days - $90"] {
				background: rgba(62, 71, 80, 1);
			}	




			select option[value="30 Days - $55"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			select option[value="30 Days - $75"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="Until April 8 - $100"] {
				background: rgba(62, 71, 80, 1);
			}


			select option[value="Until April 8 - $91"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			select option[value="Until April 8 - $82"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			select option[value="Until April 8 - $100"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			select option[value="Until April 8 - $87.50"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="Until April 8 - $75"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
			
			select option[value="Monthly Recurring - $50 per month (subject to increase)"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days - $100"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="90 Days - $150"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="120 Days - $200"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="150 Days - $250"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days - $300"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="210 Days - $350"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="240 Days - $400"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="270 Days - $450"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="300 Days - $500"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="330 Days - $550"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="360 Days - $600"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
			
			select option[value="Monthly Recurring - $100 per month (subject to increase)"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days - $200"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="90 Days - $300"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="120 Days - $400"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="150 Days - $500"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days - $600"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="210 Days - $700"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="240 Days - $800"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="270 Days - $900"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="300 Days - $1,000"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="330 Days - $1,100"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="360 Days - $1,200"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
			
			
			
			select option[value="180 Days - 140 characters"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days - 280 characters"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
			
			
			
			
			select option[value="Monthly Recurring - $400 per month (subject to increase)"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="60 Days - $800"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="90 Days - $1,200"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="120 Days - $1,600"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="150 Days - $1,750"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="180 Days - $2,100"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="210 Days - $2,450"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="240 Days - $2,800"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="270 Days - $2,925"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="300 Days - $3,250"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="330 Days - $3,575"] {
				background: rgba(62, 71, 80, 1);
			}
			
			select option[value="360 Days - $3,900"] {
				background: rgba(62, 71, 80, 1);
			}
			
			
			
			
			
														
														
														
			
			.wrapper.style7 .select-wrapper:before {
				color: rgba(255, 255, 255, 0.125);
			}

			.wrapper.style7 input[type="checkbox"] + label,
			.wrapper.style7 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style7 input[type="checkbox"] + label:before,
				.wrapper.style7 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style7 input[type="checkbox"]:checked + label:before,
			.wrapper.style7 input[type="radio"]:checked + label:before {
				background: #;
				color: #ffffff;
			}

			.wrapper.style7 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style7 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style7 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style7 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style7 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style7 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style7 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style7 table th {
				color: #ffffff;
			}

			.wrapper.style7 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style7 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}
			
			.wrapper.style7 input[type="submit"],
			.wrapper.style7 input[type="reset"],
			.wrapper.style7 input[type="button"],
			.wrapper.style7 button,
			.wrapper.style7 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}
				
				.wrapper.style7 input[type="submit"]:hover,
				.wrapper.style7 input[type="reset"]:hover,
				.wrapper.style7 input[type="button"]:hover,
				.wrapper.style7 button:hover,
				.wrapper.style7 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}
				
				.wrapper.style7 input[type="submit"]:active,
				.wrapper.style7 input[type="reset"]:active,
				.wrapper.style7 input[type="button"]:active,
				.wrapper.style7 button:active,
				.wrapper.style7 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}
				
	
		

		

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

				.wrapper.style7 .features li {
					border-top-color: rgba(255, 0, 0, 0.125);
				}

			}
			
			
			
			
			
			@media screen and (min-width: 736px) {

				.wrapper.style7 br.admenu {
					display: none;
				}

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

				.wrapper.style7 span.invisible {
					display: none;
				}

			}
			
			
			
			
			
				.wrapper.style8 {
			background-color: #21B2A6;
			color: #ffffff;
		}

			.wrapper.style8 strong, .wrapper.style8 b {
				color: #ffffff;
			}

			.wrapper.style8 h2, .wrapper.style8 h1.nationaleclipse, .wrapper.style8 h1.main-topic, .wrapper.style8 h3, .wrapper.style8 h2.sub, .wrapper.style8 h4, .wrapper.style8 h5, .wrapper.style8 h6 {
				color: #ffffff;
			}

			.wrapper.style8 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style8 header p {
				color: #ffffff;
			}

			.wrapper.style8 header.major h2, .wrapper.style8 header.major h1.nationaleclipse, .wrapper.style8 header.major h1.main-topic, .wrapper.style8 header.major h3, .wrapper.style8 header.major h2.sub, .wrapper.style8 header.major h4, .wrapper.style8 header.major h5, .wrapper.style8 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 header.major p {
				color: #ffffff;
			}

			.wrapper.style8 label {
				color: #ffffff;
			}

			.wrapper.style8 input[type="text"],
			.wrapper.style8 input[type="password"],
			.wrapper.style8 input[type="email"],
			.wrapper.style8 select,
			.wrapper.style8 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style8 .select-wrapper:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 input[type="checkbox"] + label,
			.wrapper.style8 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style8 input[type="checkbox"] + label:before,
				.wrapper.style8 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style8 input[type="checkbox"]:checked + label:before,
			.wrapper.style8 input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper.style8 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style8 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style8 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style8 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style8 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style8 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style8 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style8 table th {
				color: #ffffff;
			}

			.wrapper.style8 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style8 input[type="submit"],
			.wrapper.style8 input[type="reset"],
			.wrapper.style8 input[type="button"],
			.wrapper.style8 button,
			.wrapper.style8 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper.style8 input[type="submit"]:hover,
				.wrapper.style8 input[type="reset"]:hover,
				.wrapper.style8 input[type="button"]:hover,
				.wrapper.style8 button:hover,
				.wrapper.style8 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper.style8 input[type="submit"]:active,
				.wrapper.style8 input[type="reset"]:active,
				.wrapper.style8 input[type="button"]:active,
				.wrapper.style8 button:active,
				.wrapper.style8 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper.style8 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			.wrapper.style9 {
			background-color: #C75402;
			color: #ffffff;
		}

			.wrapper.style9 strong, .wrapper.style9 b {
				color: #ffffff;
			}

			.wrapper.style9 h2, .wrapper.style9 h1.nationaleclipse, .wrapper.style9 h1.main-topic, .wrapper.style9 h3, .wrapper.style9 h2.sub, .wrapper.style9 h4, .wrapper.style9 h5, .wrapper.style9 h6 {
				color: #ffffff;
			}

			.wrapper.style9 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style9 header p {
				color: #ffffff;
			}

			.wrapper.style9 header.major h2, .wrapper.style9 header.major h1.nationaleclipse, .wrapper.style9 header.major h1.main-topic, .wrapper.style9 header.major h3, .wrapper.style9 header.major h2.sub, .wrapper.style9 header.major h4, .wrapper.style9 header.major h5, .wrapper.style9 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 header.major p {
				color: #ffffff;
			}

			.wrapper.style9 label {
				color: #ffffff;
			}

			.wrapper.style9 input[type="text"],
			.wrapper.style9 input[type="password"],
			.wrapper.style9 input[type="email"],
			.wrapper.style9 select,
			.wrapper.style9 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper.style9 .select-wrapper:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 input[type="checkbox"] + label,
			.wrapper.style9 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper.style9 input[type="checkbox"] + label:before,
				.wrapper.style9 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style9 input[type="checkbox"]:checked + label:before,
			.wrapper.style9 input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper.style9 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style9 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style9 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style9 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style9 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper.style9 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper.style9 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper.style9 table th {
				color: #ffffff;
			}

			.wrapper.style9 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper.style9 input[type="submit"],
			.wrapper.style9 input[type="reset"],
			.wrapper.style9 input[type="button"],
			.wrapper.style9 button,
			.wrapper.style9 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper.style9 input[type="submit"]:hover,
				.wrapper.style9 input[type="reset"]:hover,
				.wrapper.style9 input[type="button"]:hover,
				.wrapper.style9 button:hover,
				.wrapper.style9 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper.style9 input[type="submit"]:active,
				.wrapper.style9 input[type="reset"]:active,
				.wrapper.style9 input[type="button"]:active,
				.wrapper.style9 button:active,
				.wrapper.style9 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper.style9 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
			
			
			

		.wrapper2.style10 {
			background-color: #ffffff;
			color: #ffffff;
		}

			.wrapper2.style10 strong, .wrapper2.style10 b {
				color: #ffffff;
			}

			.wrapper2.style10 h2, .wrapper2.style10 h1.nationaleclipse, .wrapper2.style10 h1.main-topic, .wrapper2.style10 h3, .wrapper2.style10 h2.sub, .wrapper2.style10 h4, .wrapper2.style10 h5, .wrapper2.style10 h6 {
				color: #000000;
			}

			.wrapper2.style10 hr {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 blockquote {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 code {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style10 header p {
				color: #ffffff;
			}

			.wrapper2.style10 header.major h2, .wrapper2.style10 header.major h1.nationaleclipse, .wrapper2.style10 header.major h1.main-topic, .wrapper2.style10 header.major h3, .wrapper2.style10 header.major h2.sub, .wrapper2.style10 header.major h4, .wrapper2.style10 header.major h5, .wrapper2.style10 header.major h6 {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 header.major p {
				color: #ffffff;
			}

			.wrapper2.style10 label {
				color: #ffffff;
			}

			.wrapper2.style10 input[type="text"],
			.wrapper2.style10 input[type="password"],
			.wrapper2.style10 input[type="email"],
			.wrapper2.style10 select,
			.wrapper2.style10 textarea {
				background: rgba(255, 255, 255, 0.075);
			}

			.wrapper2.style10 .select-wrapper2:before {
				color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 input[type="checkbox"] + label,
			.wrapper2.style10 input[type="radio"] + label {
				color: #ffffff;
			}

				.wrapper2.style10 input[type="checkbox"] + label:before,
				.wrapper2.style10 input[type="radio"] + label:before {
					background: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style10 input[type="checkbox"]:checked + label:before,
			.wrapper2.style10 input[type="radio"]:checked + label:before {
				background: #ffffff;
				color: #ffffff;
			}

			.wrapper2.style10 ::-webkit-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style10 :-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style10 ::-moz-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style10 :-ms-input-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style10 .formerize-placeholder {
				color: #ffffff !important;
			}

			.wrapper2.style10 .icon.major {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 ul.alt li {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 table tbody tr {
				border-color: rgba(0, 0, 0, 0.125);
			}

				.wrapper2.style10 table tbody tr:nth-child(2n + 1) {
					background-color: rgba(255, 255, 255, 0.075);
				}

			.wrapper2.style10 table th {
				color: #ffffff;
			}

			.wrapper2.style10 table thead {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 table tfoot {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 table.alt tbody tr td {
				border-color: rgba(0, 0, 0, 0.125);
			}

			.wrapper2.style10 input[type="submit"],
			.wrapper2.style10 input[type="reset"],
			.wrapper2.style10 input[type="button"],
			.wrapper2.style10 button,
			.wrapper2.style10 .button {
				box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.125);
				color: #ffffff;
			}

				.wrapper2.style10 input[type="submit"]:hover,
				.wrapper2.style10 input[type="reset"]:hover,
				.wrapper2.style10 input[type="button"]:hover,
				.wrapper2.style10 button:hover,
				.wrapper2.style10 .button:hover {
					background-color: rgba(255, 255, 255, 0.075);
				}

				.wrapper2.style10 input[type="submit"]:active,
				.wrapper2.style10 input[type="reset"]:active,
				.wrapper2.style10 input[type="button"]:active,
				.wrapper2.style10 button:active,
				.wrapper2.style10 .button:active {
					background-color: rgba(255, 255, 255, 0.2);
				}

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

				.wrapper2.style10 .features li {
					border-top-color: rgba(0, 0, 0, 0.125);
				}

			}
				
		
			
			
			
					
			

		
			
			
			
		
		
		
		
		
			
			
/* Page Wrapper + Menu */

	
	}

		#page-wrapper:before {
			background: transparent;
			content: '';
			display: block;
			display: none;
			height: 100%;
			left: 0;
			position: fixed;
			top: 0;
			width: 100%;
			z-index: 10001;
		}

	#menu {
		-moz-transform: translateX(20em);
		-webkit-transform: translateX(20em);
		-ms-transform: translateX(20em);
		transform: translateX(20em);
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		-webkit-overflow-scrolling: touch;
		background: #21b2a6;
		color: #ffffff;
		height: 100%;
		max-width: 80%;
		overflow-y: auto;
		padding: 3em 0em 0em 2em;
		position: fixed;
		right: 0;
		top: 0;
		width: 20em;
		z-index: 10002;
	}

		#menu ul {
			list-style: none;
			padding: 0;
		}

			#menu ul > li {
				border-top: solid 1px rgba(255, 255, 255, 0.125);
				margin: 0.5em 0 0 0;
				padding: 0.5em 0 0 0;
			}

				#menu ul > li:first-child {
					border-top: 0 !important;
					margin-top: 0 !important;
					padding-top: 0 !important;
				}

				#menu ul > li > a {
					border: 0;
					color: inherit;
					display: block;
					font-size: 0.8em;
					letter-spacing: 0.225em;
					outline: 0;
					text-decoration: none;
					text-transform: uppercase;
				}

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

						#menu ul > li > a {
							line-height: 3em;
						}

					}

		#menu .close {
			background-image: url("images/close.svg");
			background-position: 4.85em 1em;
			background-repeat: no-repeat;
			border: 0;
			cursor: pointer;
			display: block;
			height: 3em;
			position: absolute;
			right: 0;
			top: 0;
			vertical-align: middle;
			width: 7em;
		}

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

			#menu {
				padding: 3em 1.5em;
			}

		}

	body.is-menu-visible #page-wrapper {
		opacity: 1.00;
	}

		body.is-menu-visible #page-wrapper:before {
			display: block;
		}

	body.is-menu-visible #menu {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

/* Header */

	#header {
		-moz-transition: background-color 0.2s ease;
		-webkit-transition: background-color 0.2s ease;
		-ms-transition: background-color 0.2s ease;
		transition: background-color 0.2s ease;
		background: #1d242a;
		height: 3em;
		left: 0;
		line-height: 3em;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10000;
	}

		#header h1 {
			-moz-transition: opacity 0.2s ease;
			-webkit-transition: opacity 0.2s ease;
			-ms-transition: opacity 0.2s ease;
			transition: opacity 0.2s ease;
			height: inherit;
			left: 1.25em;
			line-height: inherit;
			position: absolute;
			top: 0;
		}
		
		#header span.nationaleclipse {
			-moz-transition: opacity 0.2s ease;
			-webkit-transition: opacity 0.2s ease;
			-ms-transition: opacity 0.2s ease;
			transition: opacity 0.2s ease;
			height: inherit;
			left: 1.25em;
			line-height: inherit;
			position: absolute;
			top: 0;
		}

			#header h1 a {
				border: 0;
				display: block;
				height: inherit;
				line-height: inherit;
			}
			
			#header span.nationaleclipse a {
				border: 0;
				display: block;
				height: inherit;
				line-height: inherit;
			}

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

					#header h1 a {
						font-size: 0.8em;
					}

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

					#header span.nationaleclipse {
						font-size: 0.8em;
					}

				}
				

		#header nav {
			height: inherit;
			line-height: inherit;
			position: absolute;
			right: 0;
			top: 0;
		}

			#header nav > ul {
				list-style: none;
				margin: 0;
				padding: 0;
				white-space: nowrap;
			}

				#header nav > ul > li {
					display: inline-block;
					padding: 0;
				}

					#header nav > ul > li > a {
						border: 0;
						color: #fff;
						display: block;
						font-size: 0.8em;
						letter-spacing: 0.225em;
						padding: 0 1.5em;
						text-transform: uppercase;
					}

						#header nav > ul > li > a.menuToggle {
							outline: 0;
							position: relative;
						}

							#header nav > ul > li > a.menuToggle:after {
								background-image: url("images/bars.svg"); 
								background-position: right center;
								background-repeat: no-repeat;
								content: '';
								display: inline-block;
								height: 3.75em;
								vertical-align: top;
								width: 2em;
							}

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

								#header nav > ul > li > a.menuToggle {
									padding: 0 1.5em;
								}

									#header nav > ul > li > a.menuToggle span {
										display: none;
									}

							}

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

							#header nav > ul > li > a {
								padding: 0 0 0 1.5em;
							}

						}

					#header nav > ul > li:first-child {
						margin-left: 0;
					}

		#header.alt {
			background: transparent;
		}

			#header.alt h1 {
				-moz-pointer-events: none;
				-webkit-pointer-events: none;
				-ms-pointer-events: none;
				pointer-events: none;
				opacity: 0;
			}
			
			#header.alt span.nationaleclipse {
				-moz-pointer-events: none;
				-webkit-pointer-events: none;
				-ms-pointer-events: none;
				pointer-events: none;
				opacity: 0;
			}
			
			



/* CTA */

	#cta .inner {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		max-width: 45em;
	}

		#cta .inner header {
			-moz-order: 1;
			-webkit-order: 1;
			-ms-order: 1;
			order: 1;
			padding-right: 3em;
			width: 70%;
		}

			#cta .inner header p {
				color: inherit;
			}

		#cta .inner .actions {
			-moz-order: 2;
			-webkit-order: 2;
			-ms-order: 2;
			order: 2;
			width: 30%;
		}

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

			#cta .inner {
				display: block;
				text-align: center;
			}

				#cta .inner header {
					padding-right: 0;
					width: 100%;
				}

				#cta .inner .actions {
					margin-left: auto;
					margin-right: auto;
					max-width: 20em;
					width: 100%;
				}

		}

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

			#cta .inner .actions {
				max-width: none;
			}

		}

/* Main */

	#main > header {
		padding: 12em 0 10em 0 ;
		
		background-attachment: fixed;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		text-align: center;
	}

		#main > header h2 {
			font-size: 1.75em;
			margin: 0 0 0.5em 0;
		}
		
		#main > header h1.nationaleclipse {
			font-size: 1.75em;
			margin: 0 0 0.5em 0;
		}
		
		#main > header h1.main-topic {
			font-size: 1.75em;
			margin: 0 0 0.5em 0;
		}

		#main > header p {
			color: inherit;
			letter-spacing: 0.225em;
			text-transform: uppercase;
			top: 0;
		}

			#main > header p a {
				color: inherit;
			}

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

			#main > header {
				padding: 10em 0 8em 0 ;
			}

		}

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

			#main > header {
				padding: 8em 3em 6em 3em ;
			}

		}

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

			#main > header {
				padding: 10em 3em 8em 3em ;
			}

		}

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

			#main > header {
				padding: 5em 3em 3em 3em ;
			}

				#main > header h2 {
					font-size: 1.25em;
					margin: 0 0 1em 0;
				}
				
				#main > header h1.nationaleclipse {
					font-size: 1.25em;
					margin: 0 0 1em 0;
				}
				
				#main > header h1.main-topic {
					font-size: 1.25em;
					margin: 0 0 1em 0;
				}

		}

	body.is-mobile #main > header {
		background-attachment: scroll;
	}

/* Footer */

	#footer {
		padding: 6em 0 4em 0 ;
		background-color: #1d242a;
		text-align: center;
	}

		#footer .icons {
			font-size: 1.25em;
		}

			#footer .icons a {
				color: rgba(255, 255, 255, 255);
			}

				#footer .icons a:hover {
					color: #fff;
				}

		#footer .copyright {
			color: rgba(255, 255, 255, 255);
			font-size: 0.8em;
			letter-spacing: 0.225em;
			list-style: none;
			padding: 0;
			text-transform: uppercase;
		}

			#footer .copyright li {
				border-left: solid 1px rgba(255, 255, 255, 0.5);
				display: inline-block;
				line-height: 1em;
				margin-left: 1em;
				padding-left: 1em;
			}

				#footer .copyright li:first-child {
					border-left: 0;
					margin-left: 0;
					padding-left: 0;
				}

				#footer .copyright li a {
					color: inherit;
				}

					#footer .copyright li a:hover {
						color: #fff;
					}

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

					#footer .copyright li {
						border: 0;
						display: block;
						line-height: 1.65em;
						margin: 0;
						padding: 0.5em 0;
					}

				}

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

			#footer {
				padding: 4em 3em 2em 3em ;
			}

		}

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

			#footer {
				padding: 3em 2em 1em 2em ;
			}

		}
		
		/* Landing */

	body.landing #page-wrapper {
		
		background-attachment: fixed;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		padding-top: 0;
	}

	body.landing #footer {
		background-color: #1d242a;
	}

	body.is-mobile.landing #page-wrapper {
		background: none;
	}

	body.is-mobile.landing #banner,
	body.is-mobile.landing .wrapper.style4 {
		
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	body.is-mobile.landing #footer {
		background-color: #1d242a;
	}
	

 

	
	

	


.s-align {}
.s-align > div {
    display: inline;
}
.s-align img {
    max-width: 100%;
    vertical-align: middle;
	height: auto;
	padding: 9px 0px 15px 0px;
}

.s-align img.store {
    max-width: 100%;
    vertical-align: middle;
	height: auto;
	padding: 0px 0px 15px 0px;
}


#top-of-page-2 {
        display: none;
    }
	
#top-of-page-1-nomargin {
        display: none;
    }
	
@media only screen and (max-width: 1470px) {
    #sponsors {
        display: none;
    }
	
	#top-of-page-1 {
        display: none;
    }
	
	#top-of-page-2 {
        display: none;
    }
	
	#top-of-page-1-nomargin {
        display: block;
    }
	
@media only screen and (max-width: 600px) {
    #sponsors {
        display: none;
    }
	
	#top-of-page-1 {
        display: none;
    }
	
	#top-of-page-2 {
        display: block;
    }
	
	#top-of-page-1-nomargin {
        display: none;
    }
	


@media only screen and (max-width: 600px) {
    img.mainlogo {
        width: 175px;
    }
	
	

	


	
@media screen and (max-width: 425px) {
img.float-left {
	float: none !important;
	display: block !important;
	padding: 0px 0px 10px 0px !important;
	margin: auto;
	max-width: 100%;
    height: auto;
	}
} 


@media screen and (max-width: 425px) {
img.float-right {
	float: none !important;
	display: block !important;
	padding: 0px 0px 10px 0px !important;
	margin: auto;
	max-width: 100%;
    height: auto;
	}
} 


@media screen and (max-width: 425px) {
figcaption.figcap-left {
	padding-left:30px;
	}
} 

@media screen and (max-width: 425px) {
figcaption.figcap-right {
	padding-right:30px;
	}
} 














/* when the screen is less than 600px wide, make the icon columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .icon-column {
    width: 100%;
  }
}


#my-video-1,
#my-video-2,
#my-video-3,
#my-video-4,
#my-video-5,
#my-video-6,
#my-video-7,
#my-video-8,
#my-video-9,
#my-video-10 {
  max-width: 100%;
  height: auto; /* Let the aspect ratio dictate height */
  display: block;
  margin: 0 auto;
}




@media (min-width: 426px) {
    /* Increase the height of the control bar */
    .vjs-control-bar {
        height: 50px; /* Adjust the height to make it larger */
        font-size: 16px; /* Increase font size for text/icons */
    }

    /* Increase the size of the play button */
    .vjs-play-control {
        height: 50px;
        width: 50px;
        font-size: 20px; /* Adjust icon size */
        line-height: 50px; /* Center-align icon vertically */
    }

    /* Increase the size of the progress bar */
    .vjs-progress-holder {
        height: 8px; /* Adjust progress bar thickness */
    }

    .vjs-play-progress {
        height: 8px; /* Keep progress indicator consistent */
    }

    .vjs-load-progress {
        height: 8px;
    }

    /* Increase the size of the volume control */
    .vjs-volume-bar {
        height: 10px; /* Adjust height of the volume bar */
    }

    .vjs-volume-level {
        height: 10px;
    }

    /* Increase the size of fullscreen and other buttons */
    .vjs-fullscreen-control,
    .vjs-mute-control,
    .vjs-volume-menu-button {
        font-size: 20px; /* Adjust icon size */
        height: 50px;
        width: 50px;
        line-height: 50px; /* Center-align icons */
    }
}


/* Move the mute control more to the left */
.vjs-mute-control {
    position: relative;
    left: -10px; /* Adjust the value to move the control further left */
}

/* Move the volume slider more to the left */
.vjs-volume-bar {
    position: relative;
    left: -25px; /* Adjust the value to move the volume slider further left */
}				










	




	