    /*

    elements.css
    ============

    Description
    
        Default styling for all visible HTML elements.

    Notes

        Colors

        #231f20  Default text
        #231f20  Headings
        #d9d9d9  HR, Borders
        #0a863e  Links
        #a0419c  Hover
        #a0419c  Btn Background
        #f3e45a  Btn Background

        Fonts

        Default: 'Lato', sans-serif
        
        Titles: 'Oswald', sans-serif

        Print: Cambria, Georgia, 'Times New Roman', Times, serif

    */
    
	
    
    body, p {
		font-family: 'Lato', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
        color: #231f20;
		-webkit-font-smoothing: antialiased;
    }

    @media print {        
		body {
			font-family: Georgia, 'Times New Roman', Times, serif;
            color: #000;
        }
    }


    /***  HEADINGS  ***********************************************************/


    h1, h2, h3, h4, h5, h6 {
		font-family: 'Oswald', sans-serif;
		font-weight: 700;
		color: #363636;
		-webkit-font-smoothing: antialiased;
		margin-bottom: .8em;
    }

    h1 {
        font-size: 37px;                                   
        line-height: 46px;
    }
    
    	.webinar h1 {
    		margin-bottom: .25em;
    	}	

    h2 {
        font-size: 32px;
        line-height: 44px;
    }


    h3 {
         font-size: 28px;
         font-weight: 400;
         line-height: 40px;
         margin-bottom: .3em;
    }
    
       	.webinarCTA h3 {
			margin-top: 15px;
			line-height: 30px;
		}
    
	    
	h4, h5, h6 {
		margin-bottom: .5em;
    }
        	
    h4 {
         font-size: 23px;
		 line-height: 28px;
		 font-weight: 500;
    }
    	
    
    h5 {
         font-size: 26px;
         font-weight: 300;
		 line-height: 32px;
		 margin-bottom: 1em;
    }
    
		
	h6 {
		font-size: 18px;
		font-weight: 300;
		line-height: 24px;
	}
    	
		div.layout.footer h6 {
			font-weight: 700;
		}
    

        
    @media print {
        h1 {
            font-size: 31.5pt;
            line-height: 34.5pt;
            margin-bottom: 60pt;
        }
        	h1.lrgHdr {
    			font-size: 40.5pt;
    			line-height: 48.75pt;
    		}
        
        h2 {
            font-size: 27.75pt;
    		line-height: 33pt;
            margin-top: 30pt;
            margin-bottom: 30pt;
        }
        
        h3 {
            font-size: 24pt;
            line-height: 30pt;
            margin-top: 30pt;
            margin-bottom: 20pt;
        }
        
        h4 {
            font-size: 25.5pt;
            line-height: 27pt;
            margin-top: 30pt;
            margin-bottom: 15pt;
        }
        
        h5 {
            font-size: 22.5pt;
            line-height: 24pt;
            margin-top: 30pt;
            margin-bottom: 15pt;
        }
        
        h6 {
            font-size: 18.5pt;
            line-height: 21pt;
            margin-top: 20pt;
            margin-bottom: 15pt;
        }
    }


    /***  PARAGRAPHS & LISTS  *************************************************/


    p, ul, ol, dl {
    	font-size: 16px;
		font-weight: 400;
		line-height: 24px;
        margin-bottom: 1.2em;
    }
    
    
    @media print {
        p,
        ul, ol,
        dl {
            font-size: 8pt;
            line-height: 12pt;
            margin-bottom: 15pt;
        }
    }
    
    /* Custom ul styles */
	
    div.layout.main ul {
    	margin-top: 15px;
    	margin-bottom: 15px;
    }
		div.layout.main li {
			padding-bottom: 15px;
			padding-left: 20px;
			background: url("../img/bullet.png") 0 7px no-repeat;
		}
		
    
    /* Custom ul styles : Sidebar Links */    
  
	/*div.layout.main div.sdbrLnks li {
		padding: 5px 27px;
		border-bottom: 1px dotted #b2b2b2;
		background: url("../img/arrow-blue-sm.png") 0 14px no-repeat;
		font-size: 14px;
	}
		div.layout.main div.sdbrLnks li:last-child {
			border-bottom: 0 none;
		}
		div.layout.main div.sdbrLnks li a:hover {
			color: #ff6d01;
		}*/

    
    /* div.layout.footer ul styles */
	
    div.layout.footer ul li,
	div.layout.footer ul li a,
	div.layout.footer p {
		font-size: 14px;
		line-height: 20px;
		color: #333333;
	}
	div.layout.footer ul li,
	div.layout.footer ul li a {
		padding: 7px 0;
		border-top: 1px solid transparent;
		border-bottom: 1px solid transparent;
	}
		div.layout.footer ul li a:hover,
		div.layout.footer p a:hover { 
			padding: 7px 10px;
			background: #761887;
			color: #f3e45a;
		}
	
	/* Custom ol styles */
	
	div.layout.main ol {
		margin-bottom: 40px;
		margin-left: 19px;
		counter-reset: item;
	}
	div.layout.main ol li {
		display: block;
		margin-bottom: 15px;
		padding-left: 10px;
		background: none;
		text-indent: -39px;
		line-height: 24px;
		counter-increment: item;
	}
	div.layout.main ol li:before {
		display: inline-block;
		width: 24px;
		padding-right: 15px;
		font-weight: bold;
		text-align: right;
	    content: counter(item) ". ";	    
	}
    
       
    /* 
        
        ol {
            list-style: decimal inside;
        }
        
    */
	

    /***  HYPERLINKS  *********************************************************/


    a:link, a:visited {
        color: #0a863e;
    }

    a:link:hover {
    	color: #761887;
    	text-decoration: none;
    }
		
	/* Bottom links */
	
	div.layout.bottomBar div.row span, div.layout.bottomBar div.row a {
		font-size: 12px;
		line-height: 14px;
		color: #4f4f4f;
		letter-spacing: 1px;
	}
		div.layout.bottomBar div.row a:hover {
			color: #761887;
			text-decoration: underline;
			background: none;
		}

		
	/* leadinBx hover effect */
	
	div.row.leadinBx {
		padding: 20px;
		border: 5px solid #7cd6a2; /*#d9d9d9*/
	}
	
	div.row.leadinBx button {
		padding: 60px 0;
    }
	
	div.row.leadinBx:hover {
		padding: 20px;
		border: 5px solid #f3e45a;
	}
	
	div.row.leadinBx:hover button {
    	color: #f3e45a;
		background: #761887;
    }
    
    /* webinarCTA hover effect */
    
    .webinarCTA,
    .webinarCTA-off,
    .genericCTA {
		border: 5px solid #f3e45a;
		width: 100%;
	}
	.webinarCTA img,
    .webinarCTA-off img,
    .genericCTA img {
    	height: auto;
        max-width: 100%;
        width: auto;
	}
    .webinarCTA input[type="image"] {
    	height: auto;
    	max-width: 100%;
        width: auto;
	}
	
	.webinarCTA {		
		padding: 45px 20px 20px;
	}
    .webinarCTA-off {		
		padding: 45px 40px 20px;
		margin-bottom: 35px;
	}
	.genericCTA {		
		padding: 30px 175px;
	}
	
	.webinarCTA form {
		margin-top: 15px;
	}
	.webinarCTA:hover {
		border: 5px solid #42ad6f;
	}
	.webinarCTA:hover h1,
	.webinarCTA:hover h3,
	.webinarCTA:hover p {
		color: #0a863e;
	}
	
	.contentCTA {		
		padding: 40px;
		border: 5px solid #f3e45a;
		width: 65%;
	}
	.contentCTA p {		
		font-size: 18px;
		line-height: 28px;
	}
	
	/* Back to top link */
	
	/*.back-to-top {
		position: fixed;
		bottom: 2em;
		right: 0px;
		margin-bottom: 100px;
		text-decoration: none;
		background-color: rgba(235, 235, 235, 0.80);
		font-size: 14px;
		color: #000 !important;
		padding: 2em;
		display: none;
	}
		.back-to-top:hover {	
			background-color: rgba(219, 0, 36, 0.80);
			color: #fff !important;
		}*/
	
	
    @media print {

        a:link,
        a:visited,
        a:hover,
        a:focus,
        a:active {
            border-bottom-width: 0;
            color: #000;
        }
    }
    
    /***  UTILITY  ************************************************************/
    
       
	.left { float: left; }	
	.right { float: right !important; }
	
	.clr { clear: both; }
	
	.ctr { text-align: center; }
	.txtlft { text-align: left; }
	.txtrt { text-align: right; }
	
	.red { color: #db0024; }
	.wht { color: #fff; }
	.prpl { color: #761887; }
	.grn { color: #0a863e; }
	
	img.left { 
		margin-right: 20px;
		margin-bottom: 20px;
	}
	img.right {
		padding-left: 20px;
		padding-bottom: 20px;
	}
	
	.spcrT {
		margin-top: 10px;
	}
	.spcrT2 {
		margin-top: 20px;
	}
	
	.spcrB {
		margin-bottom: 20px;
	}
	.spcrB2 {
		margin-bottom: 40px;
	}
	
	.spcrN {
		margin-bottom: 0;
	}
	
	.paddingLft {
		padding-left: 3%;
	}
	
	.imgBdr {
		padding: 1px;
		margin-bottom: 25px;
		border: 15px solid #7b3189; 	/* #7cd6a2; #f3e45a; */
	}
    
	
	
	blockquote {
		clear: both;
    	margin-left: 18%;
    	margin-right: 18%;
    	position: relative;
    	font-size: 100%;
    	line-height: 170%;
    	font-style: italic;
    	color: #4f4f4f;
	}
	
	hr {
        border-bottom: 1px dotted #d9d9d9;
        /*border-bottom: 75px solid #f2f6f7; #dff1f4;*/
        margin-top: 50px;
        margin-bottom: 52px;
    }
    
    	hr.webinar {
        	border-bottom: 1px dotted #d9d9d9;
        	margin-top: 30px;
        	margin-bottom: 30px;
    	}

    	hr.short {
    		border-bottom: 1px solid #d9d9d9;
    		margin-top: 20px;
    		margin-bottom: 10px;
    	}
    	hr.nPad {
    		margin: 0;
    	}
    	hr.gPad {
    		margin: 0;
    		padding-top: 10px;
    	}

    @media print {
        hr {
            border-bottom-color: #000;
            border-bottom-width: 1pt;

            margin-top: 30pt;
            margin-bottom: 30pt;
        }
    }
	

    /***  OTHER TYPOGRAPHY  ***************************************************/

    /* Custom font styles */
    
    .lrgTxt {
		font-size: 24px;
		line-height: 34px;
	}
	
	.smTxt {
		font-size: 13px;
		line-height: 20px;
	}
	
	.ltrspc {
		letter-spacing: 2px;
	}
	.ltrspcNg {
		letter-spacing: -1.75px;
	}
	
	.caps {
		text-transform: uppercase;
	}
	
	.nrml {
		font-weight: 400;
	}
	
	.bold {
		font-weight: 700;
	}
	
	.italic {
		font-style: italic;
	}
	
	/* End Custom font styles */
	
	figure {
		padding-bottom: 7px;
		border-bottom: 1px solid #cbcbcb;
		margin-bottom: 35px;
	}
	
	figcaption {	
		font-size: 14px;
		font-style: italic;
		line-height: 17px;
		text-align: center;
	}
	
	@media (max-width: 849px) {
		        
    	figure {
    		margin-top: 25px;
		}
		
	}


    /* The styling of <address> mirrors that of standard paragraphs: */


    address {
        font-size: 1.6em;                                 /* 16px (16/10) */
		line-height: 1.625em;                             /* 26px (26/16) */
		margin-bottom: 1.625em;                           /* 26px (26/16) */
    }

    @media print {
        address {
            font-size: 8pt;
            line-height: 12pt;
            margin-bottom: 15pt;
        }
    }

    /* <small> elements must be nested inside paragraphs or any other
    typographic element that adopts the same font sizes as paragraphs. */


    small {
        font-size: 0.8125em;                              /* 13px (13/16) */
    }

    @media print {
        small {
            font-size: 6pt;
        }
    }

    strong {
        font-weight: bold;
    }
    em {
        font-style: italic;
    }
    b {
        font-weight: bold;
    }
    i {
        font-style: italic;
    }


    /* Show underline only for abbreviations and definitions that have a
    title attribute: */


    abbr[title],
    dfn[title] {
        border-bottom-style: dotted;
        border-bottom-width: 1px;
        cursor: help;
    }

    @media print {
        abbr[title],
        dfn[title] {
            border-bottom-width: 0;
        }
    }

    q {
        font-style: normal;
    }

    del {
        text-decoration: line-through;
    }

    ins {
        text-decoration: underline;
    }

    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
    }
    sub {
        bottom: -0.25em;
    }
    sup {
        top: -0.5em;
    }
	
    mark {
        background-color: #FF9;
    }

    ::-moz-selection {
        background-color: #FF9;
    }

    ::selection {
        background-color: #FF9;
    }

    html {
        -webkit-tap-highlight-color: #FF9;
    }
	
	
    /***  VIDEO  *************************************************************/
	
		
		.videoWrapper {
			position: relative;
			margin-bottom: 25px;
			padding-top: 56.25% !important;
			width: 100%;		
			height: 0;	    	
		}
		
		.videoWrapper iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}   
	
    
	/***  TABLES  *************************************************************/


   /* table {
        border-color: #ccc;
        border-style: solid;
        border-width: 1px;

        font-size: 15px;
        line-height: 26px;
        padding: 12px;
        padding-bottom: 13px;
    }
    

    @media print {
    
        table {
            border-top-color: #000;
            border-top-width: 1pt;

            font-size: 6pt;
            line-height: 8pt;
            padding: 6pt;
        }
    }

    thead {
        font-weight: bold;
    }
	    thead tr {}
	    thead th {}
	    tbody {}
	    tbody tr {}
	    tbody td {}
	    tfoot {
	        font-size: 16px;
	    }
		tfoot tr {}
    	tfoot td {}

    @media print {
        tfoot {
            font-size: 6pt;
        }
        
    }*/
    
    /***  FORMS  **************************************************************/

    
    fieldset:after { /* Clearfix to clear any floated child buttons: */
        clear: both;
        content: ' ';
        display: block;
        font-size: 0;
        height: 0;
        visibility: hidden;
    }

	form {
		width: 80%;
		padding: 0; 
		margin: 0;
		margin-bottom: 20px;
		border: 0 none;
	}
		form div {
			display: block;
			margin-bottom: 20px;
		}
		
		form.btnPaypal {
			width: 100%;
		}

	label {
		display: block;
		margin-bottom: 5px !important;
		font-family: 'Oswald', sans-serif;
		font-weight: normal;
		font-size: 14px;
		line-height: 16px;
	}

	input[type="text"], textarea, select {
		padding: 7px 8px 9px;
		border: 1px solid #c3c3c3;
		font-size: 15px;
		color: #7b3189;
	}
		input[type="text"] {
			width: 100%;
		}

	input[type="text"]:focus, select:focus, textarea:focus {	
		border: 1px solid #fff;
		-webkit-box-shadow: #42ad6f 0px 0px 4px;
		-moz-box-shadow: #42ad6f 0px 0px 4px;
		box-shadow: #42ad6f 0px 0px 4px;
	}

	/* Constant Contact form styles */


	.ctct-custom-form .ctct-form-required { position: relative; }
	.ctct-custom-form .ctct-form-required:before {content: "\2217";position: absolute;top: -4px;left: -12px;color: #f5463b; }

	.ctct-custom-form .ctct-form-errorMessage {
    	font-size: 16px;
    	font-style: italic;
    	line-height: 1.5;
    	margin-bottom: 12px;
    	color: #e13369; 
	}
	.ctct-custom-form ::-webkit-input-placeholder { color: #88919a; }
	.ctct-custom-form :-moz-placeholder { color: #88919a; }
	.ctct-custom-form ::-moz-placeholder { color: #88919a; }
	.ctct-custom-form :-ms-input-placeholder { color: #88919a; }
	.ctct-custom-form input.is-error, .ctct-custom-form .ctct-form-input.is-error {
    	border-color: #e13369 !important;
    	color: #e13369 !important; 
	}
	
	button[type="submit"] {
		letter-spacing: 5px;
	}

	.ccDisclaimer {
		margin-top: 15px;
		padding: 15px 0;
		border-top: 2px solid #f3e45a; 
		border-bottom: 2px solid #f3e45a;
	}

	.ctaBx {
		width: 80%;
		margin-top: 15px;
		padding: 40px 90px;
		font-size: 18px;
		line-height: 21px;
		border: 3px solid #f3e45a;		
	}


    
		


	/***  BUTTONS  ************************************************************/


    button {
        width: 100%;
		padding: 40px 0;
		font-size: 24px;
		font-weight: 700;
		color: #fff;
		background: #42ad6f; /*#d9d9d9*/
		text-align: center;

        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
				
		cursor: pointer;

    }

    button:hover {
    	color: #f3e45a;
		background: #7b3189;/*#a0419c*/
    }
    button img {
    	vertical-align: middle;
    }
    
    .row.leadinBx.wnCTA button {
    	padding: 25px;
    	font-size: 20px;
    	line-height: 30px;
    }
    
    @media (max-width: 1035px) {
		        
    	button,
    	.row.leadinBx.wnCTA button {
    		font-size: 18px;
		}
		
	}



    /***  PAGE CHROME  ********************************************************/


    /* WebKit scrollbars: */

    ::-webkit-scrollbar {
        height: 12px;
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background-color: #fff;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #ccc;
    }


    /* End */