﻿*{
    margin:0px; 
    padding: 0px;
}
body{
    background-color:#606060;
}
header{
    position: relative;
    width: 100%;
    height: 64px;
    background-color:#ffffff;
    box-shadow: 0px 6px 8px rgba(0,0,0,0);
}
    header div.wrap{
        position: relative;
        max-width: 1180px;
        margin: 0px auto;
    }
#Logo{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 128px;
    height: 64px;
    float: left;
}
    #Logo span{
        display: block;
        width: 128px;
        height: 64px;
        background-image: url(/images/master/Judge-Moore-For-Senate-Full.svg);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }
        #Logo span span{
            display: inline;
            width: auto;
            height: auto;
            position: relative;
            left: -10000px;
        }

#Navigation{
    position: absolute;
    top: 0px;
    left: 128px;
    right: 0px;
    height: 64px;
    padding-left: 20px;
    overflow: hidden;
}
    #Navigation ul{
        list-style-type: none;
        border-left: 1px solid #dedede;
        overflow: hidden;
    }
        #Navigation ul li{
            float: left;
            border-right: 1px solid #dedede;
            overflow: hidden;
        }
            #Navigation ul li a{
                display: block;
                padding: 0px 16px;

                color: #1e223c;
                font-family: 'Roboto', Arial, Verdana, sans-serif;
                font-weight: 700;
                font-size: 16px;
                line-height: 64px;
                white-space: nowrap;
                text-decoration: none;
                text-transform: uppercase;
            }
                #Navigation ul li a:hover{
                    background-color: #efefef;
                }
            #Navigation ul li.donate {
                float: right;
                border-right: 0px solid #dedede;
            }
                #Navigation ul li.donate a{
                    background-color: #840316;
                    color: #ffffff;
                    line-height: 64px;

                    border-bottom: 0px;
                }
                    #Navigation ul li.donate a:hover{
                    background-color: #9f0b21;
                }
            #Navigation ul li a span{
                position: relative;
                left: -10000px;
            }
            #Navigation ul li.facebook,
            #Navigation ul li.twitter {
                float: right;
                width: 40px;
                padding: 12px 12px 0px 0px;
                border-right: 0px;
            }            
                #Navigation ul li.facebook a{
                    width: 40px;
                    height: 40px;
                    padding: 0px 0px;
                    background-image: url(/images/icons/iconFacebook.png);
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: 40px 40px;
                    border-radius: 20px;
                }
                #Navigation ul li.twitter a{
                    width: 40px;
                    height: 40px;
                    padding: 0px 0px;
                    background-image: url(/images/icons/iconTwitter.png);
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: 40px 40px;
                    border-radius: 20px;
                }


    header p.hamburger {
        z-index: 101;
        display: none;
        position: absolute;
        top: 12px;
        right: 12px;
        float: right;
        overflow: hidden;
        padding: 0;
        width: 40px;
        height: 40px;
        font-size: 0;
        text-indent: -9999px;
        appearance: none;
        box-shadow: none;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        border: none;
        cursor: pointer;
        background-color: #840316;
    }
        header p.hamburger:focus {
            outline: none;
        }
        header p.hamburger span {
            display: block;
            position: absolute;
            top: 17px;
            left: 6px;
            right: 6px;
            height: 6px;
            background-color: #ffffff;
        }
            header p.hamburger span::before,
            header p.hamburger span::after {
                position: absolute;
                display: block;
                left: 0;
                width: 100%;
                height: 6px;
                background-color: #ffffff;
                content: "";
                -moz-transition-duration: 0.3s, 0.3s;
                -webkit-transition-duration: 0.3s, 0.3s;
                transition-duration: 0.3s, 0.3s;
                -moz-transition-delay: 0.3s, 0s;
                -webkit-transition-delay: 0.3s, 0s;
                transition-delay: 0.3s, 0s;
            }
            header p.hamburger span::before {
                top: -10px;
                -moz-transition-property: top, transform;
                -webkit-transition-property: top, transform;
                transition-property: top, transform;
            }
            header p.hamburger span::after {
                bottom: -10px;
                -moz-transition-property: bottom, transform;
                -webkit-transition-property: bottom, transform;
                transition-property: bottom, transform;
            }
/* expanded state, i.e. menu open */
        header p.hamburger.expanded {
            background-color: #840316;
        }
            header p.hamburger.expanded span {
                background: none;
            }
                header p.hamburger.expanded span::before {
                    top: 0;
                    -ms-transform: rotate(45deg);
                    -moz-transform: rotate(45deg);
                    -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
                }
                header p.hamburger.expanded span::after {
                background-color: #ffffff;
                    bottom: 0;
                    -ms-transform: rotate(-45deg);
                    -moz-transform: rotate(-45deg);
                    -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                }
                header p.hamburger.expanded span::before,
                header p.hamburger.expanded span::after {
                background-color: #ffffff;
                    -moz-transition-delay: 0s, 0.3s;
                    -webkit-transition-delay: 0s, 0.3s;
                    transition-delay: 0s, 0.3s;
                }
@media(max-width:1050px) {
    #Navigation ul li a{
        padding: 0px 12px;
		font-size: 14px;
    }
    #Navigation ul li.facebook,
    #Navigation ul li.twitter {
        width: 20px;
        padding: 22px 12px 0px 0px;
    }            
        #Navigation ul li.facebook a,
        #Navigation ul li.twitter a{
            width: 20px;
            height: 20px;
            background-size: 20px 20px;
            border-radius: 10px;
        }
}
@media(max-width:940px) {
    #Logo{
        left: 12px;
    }
    header p.hamburger {
        display: block;
    }
    #Navigation{
        z-index: 100;
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        height: 100%;
        background-color: transparent;
    }
        #Navigation div.wrap{
            z-index: 2;
            position: absolute;
            top: 0px;
            left: 0px;
            bottom: 0px;
            max-width: 80%;
            min-width: 200px;
            padding: 40px 0px 40px 0px;
            margin-left: -100%;

            overflow: auto;
            background-color:#efefef;

            box-shadow: 0px 0px 8px rgba(0,0,0,.5);
        }
        #Navigation span.cover{
            position: absolute;
            top: 0px;
            right: 0px;
            bottom: 0px;
            left: 0px;
            opacity: 0;
            background-color: rgba(25, 38, 47, 0.34);
        }
        #Navigation ul{
        }
            #Navigation ul li{
                float: none;
                display: block;
                background-color: #ffffff;
            }
                #Navigation ul li a{
                    display: block;
                    height: auto;
                    padding: 0px 20px 0px 20px;
                }
            #Navigation ul li.donate{
                float: none;
            }
            #Navigation ul li.facebook,
            #Navigation ul li.twitter{
                clear: none;
                width: 50%;
                padding: 12px;
                background: transparent;
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }    
                #Navigation ul li.facebook a{
                    float: left;
                    width: 40px;
                    height: 40px;
                    background-size: 40px 40px;
                    border-radius: 20px;
                }
                #Navigation ul li.twitter a{
                    float: right;
                    width: 40px;
                    height: 40px;
                    background-size: 40px 40px;
                    border-radius: 20px;
                }
}


#Content{
    background-color:#ffffff;
    border-top: 3px solid #cccccc;
}
#ContentWrap{
    max-width: 1180px;
    padding: 40px 0px 80px 0px;
    margin: 0px auto;

}
    #ContentWrap div.content-padded{
        padding: 0px 20px 0px 20px;
    }
    #ContentWrap h1{
        padding-bottom: 26px;
        color: #3e3e3e;
        font-size: 36px;
        font-family: 'Montserrat', Arial, Verdana, sans-serif;
        line-height: 44px;
        font-weight: 400;
    }
        #ContentWrap h1.centered{
            text-align: center;
        }
    #ContentWrap h2{
        color: #3e3e3e;
        font-size: 26px;
        font-family: 'Montserrat', Arial, Verdana, sans-serif;
        line-height: 34px;
        font-weight: 700;
    }
    #ContentWrap p{
        padding-bottom: 26px;
        color: #3e3e3e;
        font-size: 18px;
        font-family: 'Roboto', Arial, Verdana, sans-serif;
        line-height: 26px;
    }


footer{
    min-height: 600px;
    border-top: 4px solid #3e3e3e;
}
    footer div.wrap{
        max-width: 1180px;
        padding: 40px;
        margin: 0px auto;
    }
#FooterSignup{
    position: relative;
    float: right;
    width: 320px;
    padding-bottom: 20px;
    margin-top: -70px;
    margin-left: 20px;
    background-color:#dedede;
}
    #FooterSignup h2{
        padding: 12px 24px;
        background-color: #840316;
        color: #ffffff;
        font-size: 24px;
        font-family: 'Montserrat', Arial, Verdana, sans-serif;
        line-height: 36px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
    }
    #FooterSignup p{
        padding: 12px 24px 0px 24px;
            
        font-family: 'Roboto', Arial, Verdana, sans-serif;
        font-size: 14px;
        line-height: 16px;
        color: #1e223c;
    }
    #FooterSignup iframe{
        width: 272px;
        height: 280px;
        margin: 10px 24px 0px 24px;
        border: 0px;

    }
	#FooterSignup div.row{
        padding: 12px 24px 0px 24px;
    }
    #FooterSignup div.errorMessage{
        padding: 12px 24px 12px 56px;

        font-family: 'Roboto', Arial, Verdana, sans-serif;
        color: #dc2533;
        font-size: 14px;
        line-height: 16px;
        font-weight: bold;

        background-image: url(/images/icons/iconAlert.png);
        background-size: 32px 32px;
        background-position: 24px center;
        background-repeat: no-repeat;
    }
    #FooterSignup div.confirmMessage{
        padding: 12px 24px 12px 56px;

        font-family: 'Roboto', Arial, Verdana, sans-serif;
        color: #13841b;
        font-size: 14px;
        line-height: 16px;
        font-weight: bold;

        background-image: url(/images/icons/iconConfirm.png);
        background-size: 32px 32px;
        background-position: 24px center;
        background-repeat: no-repeat;
    }

    #FooterSignup label{
        display: block;
        padding: 0px;
            
        font-family: 'Roboto', Arial, Verdana, sans-serif;
        font-size: 14px;
        line-height: 16px;
        color: #1e223c;
        font-weight: bold;
        overflow: hidden;
    }
    #FooterSignup input[type=text],
    #FooterSignup input[type=number],
    #FooterSignup input[type=email]{
        width: 100%;
        height: 40px;
        padding: 0px 8px 0px 8px;
        margin-bottom:12px;
            
        font-family: 'Roboto', Arial, Verdana, sans-serif;
        font-size: 16px;
        line-height: 38px;
        font-weight: 400;
        color: #1e223c;
                
        background-color: #fff;
        border: 0px;

        -webkit-appearance: none;
	    -moz-appearance: none;
	    appearance: none;

        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
                        
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    #FooterSignup input[type=text].alert,
    #FooterSignup input[type=number].alert,
    #FooterSignup input[type=email].alert {
        padding-left: 32px;
        background-color: #f5c4c4;
        background-image: url(/images/icons/iconAlert.png);
        background-size: 32px 32px;
        background-position: left center;
        background-repeat: no-repeat;
    }
    
    #FooterSignup input::-webkit-input-placeholder {
        font-style: italic;
        color: #c6c6c6;
    }
    #FooterSignup input:-moz-placeholder { /* Firefox 18- */
        font-style: italic;
        color: #c6c6c6;
    }
    #FooterSignup input::-moz-placeholder { /* Firefox 19+ */
        font-style: italic;
        color: #c6c6c6;
    }
    #FooterSignup input:-ms-input-placeholder {
        font-style: italic;
        color: #c6c6c6;
    }

    #FooterSignup .button {
        float: right;
        padding: 0px 8px 0px 28px;
        margin:0px 0px 2px 2px;

        cursor: pointer;

        background: #840316;
        background-image: url(/images/icons/iconSend.png);
        background-size: 16px 16px;
        background-repeat: no-repeat;
        background-position: 8px center;
           
        color: #ffffff;
        font-family: 'Montserrat', Arial, Verdana, sans-serif;
        font-size: 16px;
        line-height: 40px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;

        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }
        #FooterSignup .button:hover {
            background-color: #9f0b21;
        }

    footer div.info{
        padding: 12px 24px 0px 24px;
            
        font-family: 'Roboto', Arial, Verdana, sans-serif;
        font-size: 16px;
        line-height: 20px;
        color: #ffffff;
    }
        footer div.info h2{
            padding: 12px 0px;
            color: #ffffff;
            font-size: 24px;
            font-family: 'Montserrat', Arial, Verdana, sans-serif;
            line-height: 36px;
            font-weight: 700;
            text-align: left;
            text-transform: uppercase;
        }
        footer div.info a{
            color: #ffffff;
        }
@media(max-width:740px) { 
    #FooterSignup{
        float: none;
        width: auto;
        margin-left: 0px;
        overflow: hidden;
    }
}
@media(max-width:360px) {
    footer{
        border-top: 0px;
    }
    footer div.wrap{
        padding: 0px;
    } 
    #FooterSignup{
        margin-top: 0px;
    }
    #FooterSignup .button {
        float: none;
        display: block;
        padding: 0px 28px 0px 28px;
        margin:0px 0px 2px 0px;
    }
}

div.processing{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(255,255,255,.5);
}
    div.processing div.loader{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 68px;
        height: 68px;
        margin: -34px 0px 0px -34px;
            
        -moz-border-radius: 68px;
        -webkit-border-radius: 68px;
        border-radius: 68px;

        background-color: #fff;

        -webkit-animation: boxspinner 1s infinite linear;
        -moz-animation: boxspinner 1s infinite linear;
        -ms-animation: boxspinner 1s infinite linear;
        -o-animation: boxspinner 1s infinite linear;
        animation: boxspinner 1s infinite linear;
    }
        div.processing div.loader div:nth-child(1) {        
            z-index: 1;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            margin: -30px 0px 0px -30px;
            opacity: 1;
        
            border: 5px solid #df1b23;
            border-top: 5px solid rgba(0,0,0,0);
            border-left: 5px solid rgba(0,0,0,0);


            -moz-border-radius: 50px;
            -webkit-border-radius: 50px;
            border-radius: 50px;

            -webkit-animation: spinner 2s infinite linear;
            -moz-animation: spinner 2s infinite linear;
            -ms-animation: spinner 2s infinite linear;
            -o-animation: spinner 2s infinite linear;
            animation: spinner 2s infinite linear;
        }
        div.processing div.loader div:nth-child(2) {
            z-index: 2;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 48px;
            height: 48px;
            margin: -31px 0px 0px -31px;
            opacity: 1;

            border: 7px solid #fff;
            border-top: 7px solid rgba(0,0,0,0);
            border-left: 7px solid rgba(0,0,0,0);

            -moz-border-radius: 49px;
            -webkit-border-radius: 49px;
            border-radius: 49px;

            -webkit-animation: cover 2s infinite linear;
            -moz-animation: cover 2s infinite linear;
            -ms-animation: cover 2s infinite linear;
            -o-animation: cover 2s infinite linear;
            animation: cover 2s infinite linear;
        }
        
@-webkit-keyframes boxspinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes boxspinner {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-ms-keyframes boxspinner {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
    }
}
@-o-keyframes boxspinner {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}
@keyframes boxspinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -moz-transform: rotate(0deg);
    }
    50% {
        -moz-transform: rotate(180deg);
    }
}
@-ms-keyframes spinner {
    0% {
        -ms-transform: rotate(0deg);
    }
    50% {
        -ms-transform: rotate(180deg);
    }
}
@-o-keyframes spinner {
    0% {
        -o-transform: rotate(0deg);
    }
    50% {
        -o-transform: rotate(180deg);
    }
}
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

@-webkit-keyframes cover {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50%{
        -webkit-transform: rotate(-180deg);
    }
}
@-moz-keyframes cover {
    0% {
        -moz-transform: rotate(0deg);
    }
    50%{
        -moz-transform: rotate(-180deg);
    }
}
@-ms-keyframes cover {
    0% {
        -ms-transform: rotate(0deg);
    }
    50%{
        -ms-transform: rotate(-180deg);
    }
}
@-o-keyframes cover {
    0% {
        -o-transform: rotate(0deg);
    }
    50%{
        -o-transform: rotate(-180deg);
    }
}
@keyframes cover {
    0% {
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(-180deg);
    }
}

#Notification-Overlay {
    display: none;
    z-index: 120;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: url(/images/media/stripes.png);
    opacity: .7;
    cursor: pointer;
}
#Notification-Alert {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(0,0,0,.6);
    -moz-box-shadow: 0px 0px 4px rgba(0,0,0,.6);
    -webkit-box-shadow: 0px 0px 4px rgba(0,0,0,.6);
}
    #Notification-Alert div.wrap{
        position: absolute;
        top: 16px;
        bottom: 16px;
        left: 16px;
        right: 16px;
        overflow: auto;
    }
    #Notification-Alert div.left{
        float: left;
		width: 50%;
		padding-right: 8px;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
    }
    #Notification-Alert div.right{
        float: right;
		width: 50%;
		padding-left: 8px;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
    }
	#Notification-Alert div h2{
        padding-bottom: 26px;
        color: #3e3e3e;
        font-size: 26px;
        font-family: 'Montserrat', Arial, Verdana, sans-serif;
        line-height: 34px;
        font-weight: 700;
    }
    #Notification-Alert div p{
        padding-bottom: 26px;
        color: #3e3e3e;
        font-size: 18px;
        font-family: 'Roboto', Arial, Verdana, sans-serif;
        line-height: 26px;
    }
    #Notification-Alert div img{
        max-width: 100%;
    }
	#Notification-Alert div a{
        color: #3e3e3e;
    }
    #Notification-Alert span.close{
        position: absolute;
        top: -23px;
        right:-23px;
        float:right;
        width: 25px;
        height: 25px;
        border-radius:13px;
        cursor: pointer;
        background: transparent url(/images/media/close-sprite.png) no-repeat 0px 0px;
        background-size: 25px 50px;
    }
        #Notification-Alert span.close:hover{
            background-position: 0px -25px;
        }
@media(max-width:770px) { 
    #Notification-Alert div.left,
    #Notification-Alert div.right{
        float: none;
		width: auto;
		padding: 0px;
    }
}