@import url ("george.css");

/* FONTS
-------------------------------------------------------------------------- */ 
@font-face {
    font-family: "DomaineDisplayWeb-Bold";
    src: url("../fonts/DomaineDisplayWeb-Bold.woff") format('woff');
}

/* DEV
-------------------------------------------------------------------------- */ 
.red{
	background-color: red;
}


/* UTILITY & SPACING
-------------------------------------------------------------------------- */ 
.v-push1{
	margin-top: 1em;
}
.v-push2{
	margin-top: 2em;
}
.v-push3{
	margin-top: 3em;
}
.v-push4{
	margin-top: 4em;
}
.v-push5{
	margin-top: 5em;
}
.v-push6{
    margin-top: 6em;
}
.v-push7{
    margin-top: 7em;
}
.v-push8{
    margin-top: 8em;
}

/* READ MORE LINKS */
.hidden-toggle-content{
    display: none;
}


/* COLOR
-------------------------------------------------------------------------- */ 

.color-purple{
	color: #7D3F98;
}
.backgroundcolor-grey1{
	background-color: #F5F5F5 !important;
}



/* OVERIDE BASE FOUNDATION
-------------------------------------------------------------------------- */ 


/* PRIMARY BUTTON */
.button{
	font-weight: 700;
	border-radius: .6em;
	cursor: pointer;
}
.button:hover,
.button:focus,
.button:active{
	color:#000000;
}
strong{
    font-weight: 700;
}

@media print { 
    html {
        box-sizing: border-box;
        /*font-size: 100%;*/
        font-size: 11px !important;
    }
    a[href*="/"]:after, a[href*="/"]:visited:after {
        content: normal;
    }
    h1.subpageheaderbar__h1{
    	font-size: 2.5em !important;
    	padding: 0 !important;
    	margin: 0 !important;
    	margin-top: 0.5em !important;
    }
    .subpagehero{
    	display: none;
    }
    .subpageintro{
    	margin-top: 0 !important;
    	font-size: 1em !important;
    }
    nav{
		display: none;
    }
    .siteheader__logo{
    	width: 80px !important;
    }
}




/* SITE HEADER
-------------------------------------------------------------------------- */ 

.siteheader{
	margin-top: 2em;
	color: #7D3F98;
}
.siteheader__logocontainer{
	text-align: left;
}
.siteheader__logo{
	width: 150px;
}
.siteheader__sitename{
	font-size: 1.6em;
	line-height: 1em;
	margin: 0;
	padding: 0;
	text-align: right;
}
.siteheader__sitedetails{
	font-size: 1.1em;
	font-weight: 700;
	margin: 0;
	padding: 0;
	text-align: right;
}
.siteheader__hr{
	margin: 0.5em 0 0em 0;
}
@media only screen and (max-width: 640px) {
	.siteheader{
		margin-top: 1em;
	}
	.siteheader__logocontainer{
		text-align: center;
	}
	.siteheader__logo{
		width: 100px;
		margin-bottom: 0.5em;
	}
    .siteheader__sitename{
		text-align: center;
	}
	.siteheader__sitedetails{
		text-align: center;
	}
}


/* NAV
-------------------------------------------------------------------------- */

nav {
	position: relative;
	z-index: 1000;
}


@media only screen and (max-width: 640px) {
	.nav-container{
		padding-right: 0;
		padding-left: 0;
		max-width: 100%;
		margin: 0 auto
	}
}

a.skip-main{
	left: -999px;
	position: absolute;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: -999;
}
a.skip-main:focus, a.skip-main:active{
	color: #fff;
	background-color: #7d3f98;
	left: auto;
	top: 0;
	width: 30%;
	height: auto;
	overflow: auto;
	margin: 10px 35%;
	padding: 5px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	text-align: center;
	font-size: 1.2em;
	z-index: 999;
	-webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.39);
	-moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.39);
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.39);
}



/* HOMEPAGE HERO
-------------------------------------------------------------------------- */ 

.homepagehero{

}
.homepagehero__image{	

}
.homepagehero__bottombar{
	text-align: center;
	color: #ffffff;
	background-color: #7D3F98;
	padding: 2em 0 2.5em 0;
}
.homepagehero__bottombar--h1{
	font-size: 1.3em;
	font-weight: 300;
}
.homepagehero__bottombar--button{
	color: #7D3F98;
	background-color: #ffffff;
	margin: 0 0.4em;
}
@media only screen and (max-width: 640px) {
	.homepagehero__bottombar--button{
		display: block;
		width: 50%;
		margin: 0 auto;
		margin-top: 1em;
	}
}


/* HOMEPAGE HERO - IMAGE VERSION
---------------------------------------------- */ 


.homepageheroimageversion{
	overflow: hidden;
	position: relative;
	background-color: #333333;
	padding-top: 25%;
}
.homepageheroimageversion__content{
	position: absolute;
	color: #ffffff;
	width: 100%;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 999;
}
.homepageheroimageversion__image{
	position: absolute;
	top:-10%;
	width: 100%;
	/*left: 50%;
	top: 50%;*/
	/*transform: translateX(-50%) translateY(-50%) scale(1.1);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
	-ms-transform: translateX(-50%) translateY(-50%) scale(1.1);*/
}
.js .homepageheroimageversion__image{
	opacity: 0;
}
.homepageheroimageversion__animate{
	-webkit-animation: animatehomeimage 7s;
    animation: animatehomeimage 7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes animatehomeimage {
	0% {
		opacity:0;
        -webkit-transform: scale(1.1); 
    }
    20% {
    	opacity:1;
        -webkit-transform: scale(1.1); 
    }
    100% {
    	opacity:1;
        -webkit-transform: scale(1); 
    }
}
@keyframes animatehomeimage {
	0% {
		opacity:0;
        transform: scale(1.1); 
    }
    20% {
    	opacity:1;
        transform: scale(1.1); 
    }
    100% {
    	opacity:1;
        transform: scale(1); 
    }
}
@media only screen and (max-width: 640px) {
	.homepageheroimageversion{
		padding-top: 50%;
	}
	.homepageheroimageversion__image{
		top:0;
		left: -30%;
		/*transform: translateX(-150%);
		-webkit-transform: translateX(-150%);
		-ms-transform: translateX(-50%);*/

		min-height: 100%;
		height: 100%;
		width: auto !important;
		max-width: none;
	}
}


/* HOMEPAGE THREE
-------------------------------------------------------------------------- */ 

.homepagethree{

}
.homepagethree__item{
	text-align: center;
}
.homepagethree__item--img{
	width: 80px;
}
.homepagethree__item--h2{
	font-size: 1em;
	font-weight: 700;
	padding:0;
	margin:0;
}

@media only screen and (max-width: 640px) {
	.homepagethree__item{
		padding-top: 1.5em;
		padding-bottom: 1.5em;
		border-bottom: 1px solid rgba(0,0,0,0.3);
	}
	.homepagethree__item--last{
		border-bottom: none;
	}
}




/* FOOTER
-------------------------------------------------------------------------- */ 

.footer{
	font-size: 0.9em;
}

.footer__ul{
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
	.footer__ul li{
		margin-bottom: 0.5em;
	}
}

.footer__sociallinks{
	margin: 10px 1px 1px 1px;
	display: inline-block;
}
.footer__sociallinks:hover,
.footer__sociallinks:focus,
.footer__sociallinks:active{
	opacity: 0.7;
}





/* HOMEPAGE BODY COPY
-------------------------------------------------------------------------- */ 

.bodycallout__style1{
	text-align: center;
}
.bodycallout__style1--h2{
	color:#7D3F98;
	font-weight: 300;
	font-size: 1.7em;
	padding:0;
	margin: 0;
}
.bodycallout__style1--p{
	font-weight: 700;
}



/* SUBPAGE
-------------------------------------------------------------------------- */ 

.subpageheaderbar{
	background-color: #7D3F98;
	text-align: center;
}
.subpageheaderbar__h1{
	font-family: 'DomaineDisplayWeb-Bold', sans-serif;
	color: #ffffff;
	font-size: 1.5em;
	padding: 0.9em 0 0.7em 0;
}

.subpagehero{
	overflow: hidden;
	position: relative;
	background-color: #414141;
	padding-top: 25%;
}

.subpagehero__image{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) scale(1.1);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
	-ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.js .subpagehero__image{
    opacity: 0;
}

.subpagehero__content{
	position: absolute;
	color: #ffffff;
	width: 100%;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 999;
}
.subpagehero__content--h2{
	color: #ffffff;
	font-family: 'DomaineDisplayWeb-Bold', sans-serif;
	font-size: 2.3em;
	line-height: 1.1em;
	padding: 0 0.1em;
}
.subpagehero__content--p{
	font-size: 1.2em;
	font-weight: 700;
	margin: 0;
	padding: 0;
}

@media only screen and (max-width: 640px) {
	.subpagehero{
		padding-top: 50%;
	}
	.subpagehero__image{
		min-height: 100%;
		height: 100%;
		width: auto !important;
		max-width: none;
	}
}
.subpagehero__animate{
	-webkit-animation: animatesubpageimage 0.5s;
    animation: animatesubpageimage 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes animatesubpageimage {
	0% {
		opacity:0;
    }
    100% {
    	opacity:1;
    }
}
@keyframes animatesubpageimage {
	0% {
		opacity:0;
    }
    100% {
    	opacity:1;
    }
}


/* SUBPAGE - HERO NO-IMAGE VERSION
------------------------------------- */ 
.subpagehero__noimage{
    background-color: #7D3F98;
    text-align: center;
    color: #ffffff;
    padding: 3.5em 0.5em 2.4em 0.5em;
}
.subpagehero__noimage--h1{
    font-family: 'DomaineDisplayWeb-Bold', sans-serif;
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.2em;
}
.subpagehero__noimage--h2{
    font-weight: 700;
    font-size: 1rem;
}
@media only screen and (max-width: 640px) {
    .subpagehero__noimage--h1{
        font-size: 2.5rem;
        margin-bottom: 0.5em;
    }
}



/* SUBPAGE - HERO VIDEO VERSION
------------------------------------- */ 

div.videoScript{
	display: none;
}
.subpagehero__video{
	min-height: 275px;
	overflow: hidden;
	position: relative;
	/* NEW */
	background-color: #414141;
}
.subpagehero__video--image{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	min-height: 100%;
	height: 100%;
	max-width: none;
	width:auto;
}
/* NEW */
.js .subpagehero__video--image{
	opacity: 0;
}
.subpagehero__video--sizer{
	width:70%;
	margin: 0 auto;
}
@media only screen and (max-width: 780px) {
	.subpagehero__video{
		min-height: 305px;
	}
	.subpagehero__video--sizer{
		min-height: 100%;
		width: auto;
	}
}
@media only screen and (max-width: 640px) {
	.subpagehero__video{
		min-height: 280px;
	}
	.subpagehero__video--sizer{
		min-height: 100%;
		width: auto;
	}
}

/* NEW */
.subpagehero__video__animate{
	-webkit-animation: animatesubpagehero__video 2s;
    animation: animatesubpagehero__video 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes animatesubpagehero__video {
	0% {
		opacity:0;
    }
    100% {
    	opacity:1;
    }
}
@keyframes animatesubpagehero__video {
	0% {
		opacity:0;
    }
    100% {
    	opacity:1;
    }
}






.videotranscript__button{
    position: relative;
    color: #414141;
    font-size:0.9em;
    padding: 0 1em;
    color: #064E69;
	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.videotranscript__button:hover,
.videotranscript__button:focus,
.videotranscript__button:active{
    color: #000000;
}
.videotranscript__body{
    display:none;
    padding: 2em;
    -webkit-box-shadow:  0px 9px 10px -1px rgba(0,0,0,0.3);
    -moz-box-shadow:  0px 9px 10px -1px rgba(0,0,0,0.3);
    box-shadow:  0px 9px 10px -1px rgba(0,0,0,0.3);
    border-top: 20px solid rgba(0,0,0,0.1);
    margin-bottom: 3em;
}
.videotranscript__h3{
    font-weight: 400;
    font-size: 1.3em;
}




/* SUBPAGE - HERO IZIP CODE VERSION
------------------------------------- */ 

.subpageherozipcode{
	min-height: 250px;
	overflow: hidden;
	position: relative;
	background-color: #333333;
}
.subpageherozipcode__content{
	position: absolute;
	color: #ffffff;
	width: 100%;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 999;
}
.subpageherozipcode__content--h2{
	font-weight: 700;
	color: #ffffff;
	font-size: 1.3em;
	padding: 0;
	margin: 0;
	line-height: 1em;
}
.subpageherozipcode__content--number{
	font-weight: 700;
	color: #ffffff;
	font-size: 3.5em;
	padding: 0;
	margin: 0;
	line-height: 0.9em;
}
.subpageherozipcode__image{
	position: absolute;
	top: -50%;
/*	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);*/
}

.js .subpageherozipcode__image{
	opacity:0;
}

@media only screen and (max-width: 2041px) {
	.subpageherozipcode__image{
		min-width: 100%;
	}
}
@media only screen and (max-width: 1040px) {
	.subpageherozipcode{
		min-height: 275px;
	}
	.subpageherozipcode__image{
		/*min-height: 100%;*/
		/*height: 100%;*/
		/*width: auto !important;*/
		/*max-width: none;*/
		/*top:0;*/
	}
}
@media only screen and (max-width: 700px) {
	.subpageherozipcode__image{
		top:0;
	}
}

.subpageherozipcode__animate{
	-webkit-animation: animatezipcodeimage 7s;
    animation: animatezipcodeimage 7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes animatezipcodeimage {
	0% {
		opacity:0;
        -webkit-transform: scale(2) rotateZ(30deg); 
    }
 
    100% {
    	opacity:1;
        -webkit-transform: scale(1) rotateZ(0deg); 
    }
}
@keyframes animatezipcodeimage {
	0% {
		opacity:0;
        transform: scale(2) rotateZ(30deg); 
    }
    
    100% {
    	opacity:1;
        transform: scale(1) rotateZ(0deg); 
    }
}




/* SUBPAGE - INTRO
------------------------------------- */ 

.subpageintro{
	text-align: center;
}
.subpageintro__h2{
	color: #7D3F98;
	font-size: 2em;
	font-weight: 300;
	padding:0;
	margin:0;
}
.subpageintro__p{
	font-weight: 700;
	font-size: 1em;
}


/* SUBPAGE - BODY LEFT COLUMN
-------------------------------------------------------------------------- */ 

.pagebody{

}
.pagebody a{
    font-weight: 700;
}
.pagebodyleft__padding{
	padding-right: 2em;
}
.pagebody__h3{
	color: #7D3F98;
	font-size: 1.1em;
	font-weight: 700;
	margin-bottom: 0;
}
.pagebody__h4{
    font-weight: 700;
    font-size: 1.2em;
    color: #7D3F98;
}
.pagebody ol.pagebody__ol{
    padding-left: 1.5em;
}
.pagebody ol.pagebody__ol > li{
    margin-bottom: 1em;
    font-weight: 700;
    line-height: 1.3em;
}
.pagebody ul.pagebody__ul > li{
    font-weight: 400;
    font-size: 0.95em;
}
.pagebody__purpletextbar{
    color: #ffffff;
    font-size: 1.2em;
    background-color: rgba(0,0,0,0.1);
    display: block;
    background-color: #7D3F98;
    padding: 0.5em 1em;
}
.pagebody__footnote{
	font-size: 0.8em;
}
@media only screen and (max-width: 1000px) {
	.pagebodyleft__padding{
		padding-right: 0.5em;
	}
	.pagebody ol.pagebody__ol{
    	padding-left: 0.5em;
	}
	.pagebody ol.pagebody__ol > li{
	    margin-bottom: 2em;
	    font-weight: 700;
	    line-height: 1.3em;
	}
	.pagebody ul.pagebody__ul{
	    margin-left: 1em;
	}
}

/* SUBPAGE - INSET PANEL
---------------------------------------------------- */ 
.pagebody__panelinset{
    /*background-color: rgba(0,0,0,0.05);*/
    background-color: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.1);
}
.pagebody__panelinset__item{
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display:flex;
}
.pagebody__panelinset__title{
    color: #ffffff;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}
.pagebody__panelinset__titlebar{
    padding: 0.5em 0.5em 0.5em 1em;
    background-color: #7D3F98;
}
.pagebody__panelinset__item--link{
	width: 100%;
    color: #7d3f98;
    padding: 1.5em 1em;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    -webkit-transition: background-color .25s ease-out, color .25s ease-out;
    transition: background-color .25s ease-out, color .25s ease-out;
}
.pagebody__panelinset__item--link:hover,
.pagebody__panelinset__item--link:focus,
.pagebody__panelinset__item--link:active{
    background-color: #B18CC1;
    text-decoration: none;
}
.pagebody__panelinset__item--link:hover .pagebody__panelinset__item--title,
.pagebody__panelinset__item--link:focus .pagebody__panelinset__item--title,
.pagebody__panelinset__item--link:active .pagebody__panelinset__item--title{
    color: #000000;
}
.pagebody__panelinset__item--title{
    color: #7d3f98;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    display: block;
}
.pagebody__panelinset__item--icon{
    width: 70px;
    margin: 1em;
}
.pagebody__panelinset__item--text{
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.2em;
    margin-bottom: 0;
}
.pagebody__panelinset__item--last{
    border-left: 1px solid rgba(0,0,0,0.1);
}
@media only screen and (max-width: 640px) {
    .pagebody__panelinset__item--last{
        border: none;
    }
}
.pagebody__panelinset__item--footnote{
    margin: 0;
    padding: 0.5em;
    font-size: 0.95em;
    text-align: center;
    /*background: rgba(0,0,0,0.1);*/
    background-color: #dddddd;
}
.pagebody__panelinset__item--footnote a{
    color: #064E69;
}


/* SUBPAGE - INSET ICON BLOCK
---------------------------------------------------- */ 

.pagebodyinseticonblock{
    background-color:rgba(0,0,0,0.05);
    padding: 1em;
    border-left: 10px solid rgba(0,0,0,0.1);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.pagebodyinseticonblock:hover,
.pagebodyinseticonblock:focus,
.pagebodyinseticonblock:active{
    background-color: rgba(0,0,0,0.1);
}
.pagebodyinseticonblock__button{
    margin:0;
}
.pagebodyinseticonblock__centertext{
    padding: 1em;
}
.pagebodyinseticonblock__rightcol{
    text-align: center;
}
@media only screen and (max-width: 640px) {
    .pagebodyinseticonblock__rightcol{
        text-align: left;
    }
    .pagebodyinseticonblock__rightcol a{
        width: 100%;
    }
    .pagebodyinseticonblock__centertext{
        padding-top: 0.5em;
    }
}



/* SUBPAGE - WHY AETNA
---------------------------------------------------- */ 
.why{
    background-color: #F5F5F5;
    padding: 1em 0.5em;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.why ul{
	margin-bottom: 0.5em;
}
.why__leftcolumn{
    text-align: right;
    padding: 0.75em;
}
.why__leftcolumn--text{
    color:#7D3F98;
    font-weight:300;
}
.why__rightcolumn{
    padding: 1em 1em 0.5em 1em;
}
.why__rightcolumn--text{
	padding-left: 1em;
	padding-right: 1em;
}
@media only screen and (max-width: 640px) {
    .why__leftcolumn{
        text-align: center;
        padding: 1em 1em 1em 1em;
    }
    .why__rightcolumn{
        padding-right: 1em;
    }
    .why__leftcolumn--text{
        font-size: 2em;
        padding: 0;
        margin: 0;
    }
    .why{
        padding: 2em 0.2em 2em 0.2em;
    }
}




/* SUBPAGE - MISC TYPE
---------------------------------------------------- */ 
.pagebody__type--light--large{
    font-size: 1.5em;
    font-weight: 300;
}

/* SUBPAGE - INSET BRAND LOGO BUTTONS
---------------------------------------------------- */ 
.pagebody__insetlogo--buttons{
    display:block;
    margin: 0 1em 1em 1em;
    border: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;    
}
.pagebody__insetlogo--buttons:hover,
.pagebody__insetlogo--buttons:focus,
.pagebody__insetlogo--buttons:active{
    border: 1px solid rgba(0,0,0,0.3);
    background-color: #B18CC1;
}


/* SUBPAGE - BODY RIGHT RAIL
-------------------------------------------------------------------------- */ 


.pagebody__rightrail--divider{
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.pagebody__rightrail--padding{
	padding-left: 1em;
	padding-right: 1em;
}
@media only screen and (max-width: 1000px) {
	.pagebody__rightrail--padding{
		padding-left: 1em;
		padding-right: 1em;
	}
}
@media only screen and (max-width: 640px) {
	.pagebody__rightrail--divider{
		border-left: none;
	}
	.pagebody__rightrail--padding{
		padding-left: 0;
		padding-right: 0;
	}
}

.pagebody ul{
	margin-left: 3em;
}
.pagebody ol{
	margin-left: 3em;
}
.pagebody .pagebody__rightraillinks--list{
	list-style-type: none;
	margin-left: 0;
}


.li-icon-container{
	width: 100%;
}
.li-icon-container:after { 
   content: "."; 
   visibility: hidden; 
   display: block; 
   height: 0; 
   clear: both;
}
.li-icon{
    width: 30px;
    float: left;
}
.li-text{
	margin-left: 40px;
	margin-top: 0.2em;
}
.li-text--normal{
	font-weight: 400;
	line-height: 1em;
	margin-bottom: 0;
}
.li-link{
    display:block;
    padding: 0.5em 0.5em;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
a.li-link:hover,
a.li-link:focus,
a.li-link:active{
    background-color: rgba(0,0,0,0.1);
}
.li-link--open{
    background-color: rgba(0,0,0,0.1);
}
.li-text-hidden{
    display:none;
    font-weight: 700;
    font-size: 0.9em;
    border-left: 2px solid rgba(0,0,0,0.1);
    border-right: 2px solid rgba(0,0,0,0.1);
    border-bottom: 10px solid rgba(0,0,0,0.1);
    background-color: rgba(0,0,0,0.05);
    padding: 1em; 
}







/* SUBPAGE - RIGHT RAIL CALLOUT
--------------------------------- */ 

.pagebody__rightrail--callout{
    padding: 1em;
    background-color: #f5f5f5;
    border: 2px solid #e9e9e9;
    margin-bottom: 2.5em;
}
.pagebody__rightrail--callout--title{
    font-size: 1.3em;
    font-weight: 300;
}
@media only screen and (max-width: 640px) {
     .pagebody__rightrail--callout{
        margin: 2em auto 3em auto;
    }
    .pagebody__rightrail--callout--title{
        font-size: 1.7em;
        font-weight: 300;
    }
}




.rightrail--inset__block{
    background-color:#F5F5F5;
    padding:1em;
    font-size: 1em;
    border-radius: 0.5em;
    text-align: center;
}
.rightrail--inset__heading{
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 700;
}
.rightrail--inset__body{
    font-size: 0.8em;
}
@media only screen and (max-width: 640px) {
    .rightrail--inset__heading{
        font-size: 1.2em;
        line-height: 1.2em;
        font-weight: 700;
    }
    .rightrail--inset__body{
        font-size: 1em;
    }
}



/* SUBPAGE - PURPLE CALLLOUT BAND
-------------------------------------------------------------------------- */ 

.calloutband{
    width: 95%;
    background-color: #7D3F98;
    color: #ffffff;
    border-radius: 0px 2em 2em 0px;
    -moz-border-radius: 0px 2em 2em 0px;
    -webkit-border-radius: 0px 2em 2em 0px;
    position: relative;
    padding: 3em 1em 3em 0;
}
.calloutband__label{
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.2em;
    margin-bottom: 1em;
}
.calloutband__h2{
    color: #ffffff;
    font-weight: 300;
    font-size: 2.5em;
    padding: 0;
}
.calloutband__button{
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: .6em;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin: 0;
}
.calloutband__button:hover,
.calloutband__button:focus,
.calloutband__button:active{
    border: 2px solid rgba(255,255,255,0);
}
.calloutband::before{
    content: " ";
    position: absolute;
    background-color: #7D3F98;
    padding: 0;
    margin: 0;
    height: 100%;
    top: 0;
    left: -1200px;
    width: 1200px;
}
.calloutband__input{
    width:50%;
}

@media only screen and (max-width: 940px) {
     .calloutband{
        width: 95%;
        background-color: #7D3F98;
        color: #ffffff;
        padding: 2.5em;
        padding-left: 0;
        margin-bottom: 3em;
    }
    .calloutband__input{
	    width:80%;
	}
}
@media only screen and (max-width: 640px) {
    .calloutband{
        padding: 3em 1em 3.5em 1em;
    }
    .calloutband__input{
	    width:50%;
	}
}



/* SUBPAGE - PURPLE CALLLOUT BAND
-------------------------------------------------------------------------- */ 

.hidden-toggle-button{
	color: #0A79A2;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.hidden-toggle-button:hover,
.hidden-toggle-button:focus,
.hidden-toggle-button:active{
	color: #000000;
}


/* SUBPAGE - PURPLE DIVIDER DOWN ARROW
-------------------------------------------------------------------------- */ 

.subpagedividerdownarrow{
	background-color: #7D3F98;
	text-align: center;
	position: relative;
}
.subpagedividerdownarrow__h2{
	color: #ffffff;
	font-size: 1em;
	font-weight: 700;
	padding: 1.5em 0 1em 0;
	z-index: 10;
	position: relative;
}
.subpagedividerdownarrow__arrow:after {
    border-top: 70px solid #7D3F98;
    border-left: 60px solid transparent; 
    border-right: 60px solid transparent; 
    bottom: 0px;
    content: "";
    position: absolute;
    width: 0; 
    height: 0;
    left:50%;
    -ms-transform: translate(-50%, 30px);
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
}


/* SUBPAGE - COMPARE PLANS TABLE
-------------------------------------------------------------------------- */ 

.table-compareplans{
    text-align: left;
    border-bottom: 5px solid rgba(0,0,0,0.2);
    font-weight: 700;
}
.table-compareplans td{
    font-size: 0.9em;
}
.table-compareplans__caption{
    text-align: left;
    font-weight: 400;
    margin-left: 0;
    padding-left: 0;
    font-size: 0.9em;
}
table.table-compareplans thead tr{
    border-bottom: 2px solid rgba(0,0,0,0.1);
}
table.table-compareplans tbody tr{
    border-bottom: 1px dotted #000;
}
table.table-compareplans th{
    font-size: 1em;
    line-height: 1.2em;
}
table.table-compareplans  th,
table.table-compareplans tbody td{
    border-right: 1px solid rgba(0, 0, 0, .1);
    border-left: 1px solid rgba(0, 0, 0, .1);
}
.table-compareplans td:nth-of-type(1),
.table-compareplans td:nth-of-type(3),
.table-compareplans td:nth-of-type(5){
    /*background-color: rgba(125,63,152,0.1);*/
    background-color: #f1e9f4;
}
.table-compareplans td:nth-of-type(3){
    /*background-color: rgba(0,167,142,0.1);*/
    background-color: #e5f6f2;
}
.table-compareplans td:nth-of-type(5){
    /*background-color: rgba(228,107,149,0.1);*/
    background-color: #fceef3;
}
.table-compareplans td:nth-of-type(2){
    /*background-color: rgba(210,9,98,0.1);*/
    background-color: #fae3ef;
}
.table-compareplans td:nth-of-type(4){
    /*background-color: rgba(86,61,130,0.1);*/
    background-color: #ede9f1;
}
.table-compareplans th:nth-of-type(6) {
    /*background-color: rgba(125,63,152,0.3);*/
    background-color: #e16195;
}
.table-compareplans th{
    font-size: 1.1em;
}
.table-compareplans thead th{
    text-align: center;
}
.table-compareplans th.col1{
    text-align: left;
    /*background-color: rgba(0,0,0,0.1);*/
    background-color: #dfdfdf;
    font-size: 1.1em;
}
.table-compareplans th:nth-of-type(2){
    color:#ffffff;
    background-color: rgba(125,63,152,1);
}
.table-compareplans th:nth-of-type(3){
    color:#ffffff;
    background-color: rgba(210,9,98,1);
}
.table-compareplans th:nth-of-type(4){
    /*color:#ffffff;*/
    background-color: rgba(0,167,142,1);
    color: #000000;
}
.table-compareplans th:nth-of-type(5){
    color:#ffffff;
    background-color: rgba(86,61,130,1);
}
.table-compareplans th:nth-of-type(6){
    /*color:#ffffff;*/
    /*background-color: rgba(228,107,149,1);*/
    background-color: #e16195;
    color: #000000;
}
.table-compareplans tbody > tr > th{
    text-align: left;
}


/* SUBPAGE - INSET PLAN TABLE
-------------------------------------------------------------------------- */ 
table.table-planinset{
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.table-planinset__caption{
    text-align: left;
    font-weight: 400;
    margin-left: 0;
    padding-left: 0;
    font-size: 0.9em;
}
table.table-planinset thead tr{
    border-bottom: 1px solid rgba(0,0,0,00.1);
}
table.table-planinset tbody tr{
    border-bottom: 1px dotted #000;
}
table.table-planinset thead th{
    text-align: right;
}
table.table-planinset tbody td{
    text-align: right;
}
table.table-planinset  th,
table.table-planinset tbody td{
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
table.table-planinset th:nth-of-type(1){
    text-align: left;
    /*background-color: rgba(0,0,0,0.05);*/
    background-color: #e5e5e5;
    line-height: 1em;
}
table.table-planinset td:nth-of-type(1){
    text-align: left;
    /*background-color: rgba(0,0,0,0.05);*/
    background-color: #f1f1f1;
}
.table-planinset__postallink{
	font-size: 0.9em;
}
table.table-planinset--leftalign thead th {
    text-align: left;
}
table.table-planinset--leftalign tbody td{
    text-align: left;
}
p.table-planinset__smalltext{
    font-size: 0.8em;
    line-height: 1.4em;
    margin-bottom: 0;
}

table.table-planinset tr:nth-of-type(even) td:nth-of-type(1){
	/*background: rgba(0,0,0,0.1);*/
	background-color: #e5e5e5;
}

table.table-planinset tbody tr:nth-child(even){
	background-color: #f5f5f5;
}


/* RIGHT RAIL - SPECIAL CALLOUTS
-------------------------------------------------------------------------- */ 
.sixtydays{
    padding: 1em;
    background-color: #f5f5f5;
    border: 2px solid #e9e9e9;
    margin-bottom: 1em;
    background-color: #7D3F98;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    clear: both;
}
.sixtydays__h3{
    font-size: 1em;
    margin-left: 60px;
    color: #ffffff;
}
.sixtydays__button{
    margin: 0;
    background-color: #ffffff;
    color: #7D3F98;
    padding: 0.5em 1em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    width: 100%;
    margin-top: 1em;
}
.sixtydays__image{
    width: 50px;
    display: inline-block;
    float: left;
}

@media only screen and (max-width: 840px) {
    .sixtydays{
        text-align: center;
    }
    .sixtydays__button{
        width: auto;
    }
    .sixtydays__h3{
        width: 100%;
    }
    .sixtydays__image{
        width: 60px;
        float: none;
        margin-bottom: 0.5em;
    }
    .sixtydays__h3{
        margin-left: 0px;
        color: #ffffff;
    }
}


.sixtydays__h3--number{
    background-color: #ffffff;
    color: #7D3F98;
    font-size: 1.5em;
    line-height: 2em;
    width: 48px;
    height: 48px;
    text-align: center;
    font-weight: 700;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: left;
    position: relative;
    -webkit-animation: sixtyanim 3s ease-in-out infinite;
    -moz-animation:    sixtyanim 3s ease-in-out infinite;
    -o-animation:      sixtyanim 3s ease-in-out infinite;
    animation:         sixtyanim 3s ease-in-out infinite;
}

@-webkit-keyframes sixtyanim {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}
@-moz-keyframes sixtyanim {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}
@-o-keyframes sixtyanim {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}
@keyframes sixtyanim {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}



@-webkit-keyframes sixtyanimtwo {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}
@-moz-keyframes sixtyanimtwo {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}
@-o-keyframes sixtyanimtwo {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.0); }
    100% { opacity: 0.7; transform: scale(0.95); }
}
@keyframes sixtyanimtwo {
    0% { opacity: 0; transform: scale(1); }
    40% { opacity: 0.3; transform: scale(1.3); }
    60% { opacity: 0; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(1); }
}


.sixtydays__h3--number--thing{
    top:0;
    border: 4px solid rgba(255,255,255,1);
    width: 48px;
    height: 48px;
    text-align: center;
    font-weight: 700;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: left;
    position: absolute;
    -webkit-animation: sixtyanimtwo 7s ease-in-out infinite;
    -moz-animation:    sixtyanimtwo 7s ease-in-out infinite;
    -o-animation:      sixtyanimtwo 7s ease-in-out infinite;
    animation:         sixtyanimtwo 7s ease-in-out infinite;
}

@media only screen and (max-width: 840px) {
    .sixtydays__h3--number{
        float:none;
        margin: 0 auto;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    .sixtydays__h3--number--thing{
        float:none;
        margin: 0 auto;
        top:0;
    }
}



.chatbutton{
    padding: 1em;
    background-color: #f5f5f5;
    border: 2px solid #e9e9e9;
    margin-bottom: 1em;
    background-color: #7D3F98;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    clear: both;
}
.chatbutton__h3{
    font-size: 1.4em;
    line-height: 1em;
    margin-left: 60px;
    color: #ffffff;
    font-weight: 400;
}
.chatbutton__button{
    margin: 0;
    background-color: #ffffff;
    color: #7D3F98;
    padding: 0.5em 1em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    width: 100%;
    margin-top: 1em;
}
.chatbutton__image{
    width: 50px;
    display: inline-block;
    float: left;
}

@media only screen and (max-width: 840px) {
    .chatbutton{
        text-align: center;
    }
    .chatbutton__button{
        width: auto;
    }
    .chatbutton__h3{
        width: 100%;
    }
    .chatbutton__image{
        width: 60px;
        float: none;
    }
    .chatbutton__h3{
        margin-left: 0px;
        color: #ffffff;
    }
}



/* LEFT BODY - 60 DAYS CALLOUT
-------------------------------------------------------------------------- */ 
.sixtyleftinset{
    background-color: #ebebeb;
    padding: 1em 1em 1em 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    position: relative;
    -webkit-border-top-right-radius: 0.7em;
    -webkit-border-bottom-right-radius: 0.7em;
    -moz-border-radius-topright: 0.7em;
    -moz-border-radius-bottomright: 0.7em;
    border-top-right-radius: 0.7em;
    border-bottom-right-radius: 0.7em;
    clear:both;
    width: 100%;
}
.sixtyleftinset a{
	color: #064E69;
}
.sixtyleftinset p{
    margin:0;
    padding:0;
}
.sixtyleftinset__image{
    z-index: 2;
    position: relative;
    width:50px;
    float:left;
}
.sixtyleftinset__content{
    z-index: 2;
    position: relative;
    margin-left:60px;
}
.sixtyleftinset::after{
    content: " ";
    position: absolute;
    background-color: #ebebeb;
    padding: 0;
    margin: 0;
    height: 100%;
    top: 0;
    left: -1100px;
    width: 1200px;
}



/* LEFT BODY - FORM INSET - ENTER YOUR ZIP CODE -  EXAMPLE: fedvip-dental.php
-------------------------------------------------------------------------- */ 
.forminsetleft{
    background-color: #7D3F98;
    padding: 1em;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow: visible;
    position: relative;
}
.forminsetleft__image{
    max-width: 60px;
}
.forminsetleft__title{
    color: #ffffff;
    font-size: 2em;
    font-weight: 300;
}
.button-white{
    background-color: #ffffff;
    color: #7D3F98;
    margin: 0;
}
.search-box{
    display: inline-block;
    margin:0;
    font-size: 1em;
    height: 2em;
    margin-bottom: 0.5em;
}
.dentalform__container {
    position: absolute;
    transform: translateY(-50%);
    padding-left: 1em;
}
@media only screen and (max-width: 640px) {
    .forminsetleft__image{
        max-width: 50px;
        margin-top: 1em;
    }
    .forminsetleft__title{
        font-size: 1.5em;
        font-weight: 400;
        text-align: center;
        margin-bottom: 1em;
    }
    .forminsetleft{
	    text-align: center;
	}
	.button-white{
	    margin: 0.5em 0;
	}
}




/* RIGHT RAIL - PURPLE CALLOUT BLOCK - example: aetna-direct.php
-------------------------------------------------------------------------- */ 
.rightrail__purplecallouts{
    margin-bottom: 1em;
    background-color: #7D3F98;
    -webkit-border-bottom-left-radius: 0.5em;
    -webkit-border-bottom-right-radius: 0.5em;
    -moz-border-radius-bottomleft: 0.5em;
    -moz-border-radius-bottomright: 0.5em;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    clear: both;
    border: 2px solid #e9e9e9;
    border-top:0;
    z-index: 10;
    position: relative;
}
.rightrail__purplecallouts__button{
    color: #7D3F98;
    background-color: #ffffff;
    padding: 0.5em 1em;
    margin: 0;
    width: 100%;
}
.rightrail__purplecallouts__h3{
    color: #ffffff;
    font-size: 1em;
    margin-bottom:0;
    margin-left:60px;
}
.rightrail__purplecallouts--image{
    width: 50px;
    margin: 0 0.5em 0.5em 0;
    float:left;
    position: absolute;
}
.rightrail__purplecallouts--item{
    padding: 1em 1em 1em 1em;
    position: relative;
}
.rightrail__purplecallouts--link{
    color:#ffffff;
    text-decoration:underline;
    margin-left:60px;
    font-size: 0.8em;
    display: block;
}
.rightrail__purplecallouts--link:hover,
.rightrail__purplecallouts--link:focus,
.rightrail__purplecallouts--link:active{
    color:#ffffff;
    text-decoration:none;
}

.rightrail__purplecallouts hr{
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding:0;
    margin:0;  
}
.rightrail__purplecallouts--titlebar{
    color: #ffffff;
    background-color: #563D82;
    display: inline-block;
    padding: 0.3em 1em;
    font-size: 0.7em;
    font-weight: 700;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    text-align: center;
    border-top: 2px solid #e9e9e9;
    border-left: 2px solid #e9e9e9;
    border-right: 2px solid #e9e9e9;
    border-bottom:0;
}



/* LEFT BODY - MEDICAL PLANS PAGE INSET FORM
-------------------------------------------------------------------------- */ 

.medicalplans__form{
    padding: 1em;
    border: 0px solid rgba(255,255,255,0.5);
    background-color: #DCDCDC;
    border-radius: 0.7em;
    -moz-border-radius: 0.7em;
    -webkit-border-radius: 0.7em;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    border-top: 15px solid rgba(255,255,255,0.8);
    border-bottom: 20px solid rgba(255,255,255,0.8);
}
.medicalplans__form .button{
    margin: 0;
}
.medicalplans__form .search-box-big{
    -webkit-box-shadow: inset 2px 2px 2px 0px #dddddd;
    -moz-box-shadow: inset 2px 2px 2px 0px #dddddd;
    box-shadow: inset 2px 2px 2px 0px #dddddd;
    width: 12em;
    display: inline-block;
}


/* LEFT BODY - AET DIRECT
-------------------------------------------------------------------------- */ 
.calcform__numbers{
	background-color: #7D3F98;
	color: #ffffff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	height: 2.5rem;
	width: 2.5rem;
	display: inline-block;
	text-align: center;
	margin-left: 1rem;
	/*margin-right: 0.5rem;*/
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 2.4rem;
	position: absolute;
}
#calcform h4{
	font-size: 1.2rem;
	line-height: 2.4rem;
	font-weight: 700;
	display: inline-block;
	margin-left: 3.5em;
	width: auto;
}
.calcform__smalltext{
	font-size: 0.9em;
}
.calcform__content{
	margin-left: 4.5em;
}
#tapdiv1{
	display: inline-block;
}
#ffinaldiv1{
	display: inline-block;
	font-size: 1.5em;
	font-weight: 700;
}
.calcform__total{
	background-color: #7D3F98;
	color: #ffffff;
	padding: 1em;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
#calcform .calcform__total h4{
	margin:0;
	padding: 0;
}
.calcform__savings{
	background-color: #F5F5F5;
	border-bottom: 5px solid #DCDCDC;
	padding: 2em;
	text-align: center;
}
.calcform__headtwo{
	color: #7D3F98;
	font-size: 1.7em;
	font-weight: 300;
}
.calcform__headtwo--bold{
	font-weight: 700;
}
.calcform__tblres{
	
}
.calcform__tblres__visible{
	margin-top: 1em;
	border:10px solid rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.32);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.32);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.32);
	/*padding: 1em;*/
}
table.table__directsave  th,
table.table__directsave tbody td{
    border-right: 1px solid rgba(0, 0, 0, .1);
    border-left: 1px solid rgba(0, 0, 0, .1);
}

















/* NEW FOR VOH
---------------------------------------------- */ 

.pagebody__subhead{
	font-size: 1.8em;
	line-height: 1.2em;
	font-weight: 200;
	color: #7D3F98;
}
.pagebody__subhead--large{
	font-size: 2.2em;
	line-height: 1.2em;
	font-weight: 200;
	color: #7D3F98;
	margin: 0;
}
@media only screen and (max-width: 640px) {
    .pagebody__subhead--large{
		margin-bottom: 1em;
	}
}
.pagebody__subhead--large__alt{
	font-size: 2.2em;
	line-height: 1.2em;
	font-weight: 200;
	color: #7D3F98;
	margin: 0;
}

.pagebody__subhead--two{
	font-size: 1.2em;
	font-weight: 700;
	color: #7D3F98;
}


.intro--about--heavy{
    font-weight: 700;
}
.intro--about--purple{
    color: #7D3F98;
}
.intro--about--prizebox{
    color: #7D3F98;
    padding: 1em 2em;
    margin: 0 0.5em;
    border: 2px solid #7D3F98;
    font-weight: 700;
    display: inline-block;
    border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
}
@media only screen and (max-width: 640px) {
    .intro--about--prizebox{
	    margin-top: 1em;
	    margin-bottom: 1em;
	}
}
.about--purple--band{
    background-color: #7D3F98;
    padding: 5em 0 4em 0;
}

.about--purple--band__bottomborder{
    border-bottom: 20px solid #5f2a74;
}
.about--grey--band{
    background-color: #414141;
    padding: 4em 0 4em 0;
}
.about--grey--band__blockspacing{
    padding: 0 1em;
}
.about--grey--band__blockrule{
    border-left: 1px solid rgba(255,255,255,0.3) !important;
}
@media only screen and (max-width: 640px) {
    .about--grey--band__blockrule{
	    border-left: 0px solid rgba(255,255,255,0.3) !important;
	}
}
.about--grey--band__link{
    color: #ffffff !important;
    text-decoration: underline !important;
}
.about--grey--band__link:hover,
.about--grey--band__link:focus{
    color: #ffffff !important;
    text-decoration: none !important;
}
.about--grey--band--subhead{
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2em;
}
.about--grey--band--text{
    color: #ffffff;
}

.about--purple--band--title{
    color: #ffffff;
    font-weight: 200;
    margin: 0; 
}
.about--purple--band--subhead{
    color: #ffffff;
    font-weight: 700;
}
a.about--purple--band--button{
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
}
a.about--purple--band--button:hover,
a.about--purple--band--button:focus{
    background-color: #ffffff;
    color: #7D3F98;
    text-decoration: none;
}
.about--legacy--title{
    font-weight: 200;
    color: #414141;
    margin: 0;
}
.aboutaetna--sdoh__title{
    font-weight: 200;
    color: #414141;
    margin: 0;
    line-height: 1.2em;
}
.aboutaetna--sdoh__subhead{
    font-weight: 700;
    color: #414141;
    margin: 0;
    font-size: 1.3em;
}
.about--legacy--body{
    padding: 0 1em;
}
@media only screen and (max-width: 640px) {
    .about--purple--band--title{
        font-size: 1.7em;
    }
    .about--legacy--title{
        font-size: 1.7em;
    }
    .aboutaetna--sdoh__title{
        font-size: 1.7em;
    }
    .about--legacy--body{
        padding: 1em 0;
    }
}

.subpagehero__h1{
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'DomaineDisplayWeb-Bold', sans-serif;
    color: #ffffff;
    font-size: 3em;
    padding: 0;
    margin: 0;
    line-height: 1.2em;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;

    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}
.subhero{
    padding-top: 35% !important;
}

.aboutaetna__intro--head{
    font-weight: 700;
    font-size: 1.1em;
    margin: 0; 
}

.sdohblocks{
    padding: 1em;
}
.sdohblocks--block{
    background-color: #7D3F98;
    padding: 2em;
    color: #ffffff;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    font-weight: 700;
}
.sdohblocks--block__number{
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,0.1);
    font-weight: 700;
    font-size: 10em;
    line-height: 1em;
    position: absolute;
    right: 0px;
    bottom: 0px;
}













@media only screen and (max-width: 640px) {
    .subpagehero:after{
        content: " ";
        width: 100%;
        height: 100%;
        background-color: #000000;
        background-color: #7d3f98;
        opacity: 0.7;
        position: absolute;
        top: 0;
        left: 0;   
    }
    .subpagehero__h1{
        z-index: 10;
    }
}





.agencies-card-votes{
	opacity: 0.5;
}
.agencies-card-tally{
	opacity: 0.8;
}
.countdown{
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1em;
	margin-bottom: 3em;
	border: 8px solid rgba(255,255,255,0.8);
	display: inline-block;
	padding: 0.5em 1em;
	background-color: rgba(0,0,0,0.7);
	color: #ffffff;
	-webkit-border-radius: 0.2em;
	-moz-border-radius: 0.2em;
	border-radius: 0.2em;
	width: 100%;
	max-width: 450px;
}
.countdown p{
	margin: 0;
	padding: 0;
}
.countdown-light{
	font-size: 0.8rem;
	font-weight: 400;
	color: #cdcdcd;
	margin: 0;
	padding: 0;
}
.homepage-competitions--copy{
	font-weight: 700;
	font-size: 1.5em;
	line-height: 1.2em;
	padding: 0;
	margin: 0;
	margin-top: 1em;
}
.homepage-competitions--copy__highlight{
	text-decoration: underline;
}
.countdown-text--blocks{
	width: 22%;
	text-align: center;
	display:inline-block;
	padding: 0.2em 0.5em;
}


