﻿@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500);

html, body, div, table, tr, td, h1, h2, h3, ul, ol, li, p {
    margin: 0px;
    padding: 0px;
    border: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    text-align: left;
    font-family: 'Roboto', Tahoma, Arial, Sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    background-color: #FFFFFF;
    line-height: 1.5em;
}

td, p {
    font-size: 16px;
}

/*Container*/

#wrapper {
    width: 100%;
    min-height: 100%;
    margin-bottom: -125px;
}

    #wrapper:after {
        content: " ";
        display: block;
    }

@media screen and (min-width:875px) and (max-width:1250px) {
    #wrapper {
        margin-bottom: -175px;
    }
}

@media screen and (min-width:600px) and (max-width:875px) {
    #wrapper {
        margin-bottom: -500px;
    }
}

@media screen and (min-width:375px) and (max-width:600px) {
    #wrapper {
        margin-bottom: -1080px;
    }
}

@media screen and (max-width:375px) {
    #wrapper {
        margin-bottom: -1280px;
    }
}

/* Header CSS */

#banner {
    margin: 0 auto;
    padding: 0px;
    position: relative;
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
}

#head {
    padding: 0;
    width: 100%;
    border-top: 1px solid #000000;
}

#head-row {
    display: inline-block;
    background-color: #02122b;
    width: 98%;
    padding: 1%;
}

@media screen and (max-width: 749px) {
    #head-row {
        border-top: 1px solid #000000;
    }
}

/* Top Navigation */

#topnav {
    display: inline-block;
    height: 50px;
    max-width: 50%;
    padding-top: 60px;
    float: right;
}

#logo {
    display: block;
    width: auto;
    height: 150px;
    float: left;
    overflow: hidden;
}

    #logo img {
        max-width: 100%;
        max-height: 100%;
    }

#nav {
    list-style-type: none;
    text-align: right;
}

    #nav > li {
        display: inline-block;
        float: left;
        position: relative;
        z-index: 1000;
    }

        #nav > li > a:after {
            color: #c8cacb;
            content: "|";
            padding-left: 10px;
            padding-right: 10px;
            font-weight: 300;
        }

        #nav > li.nodivide a:after {
            content: none;
            padding: 0;
        }

@media screen and (min-width:600px) and (max-width: 1000px) {
    #head-row {
        padding: 0;
        width: 100%;
    }

    #logo {
        clear: both;
        float: none;
        width: 520px;
        height: auto;
        margin: 0 auto;
    }

        #logo img {
            width: 100%;
            height: auto;
        }

    #topnav {
        display: block;
        clear: both;
        float: none;
        padding: 2em 0 1em 0;
        margin: 0 auto;
        max-width: fit-content;
    }

    #nav {
        text-align: center;
    }

        #nav > li > a:after {
            padding-left: 25px;
            padding-right: 25px;
        }
}

@media screen and (orientaton:landscape) {
    #logo {
        width: 50%;
        float: none;
        margin: 0 auto;
        padding: 2% 0;
    }

    #topnav {
        width: 50%;
        padding: 2% 0;
    }
}

@media screen and (max-width: 600px) {
    #logo, #topnav {
        display: block;
        float: none;
        max-width: fit-content;
        margin: 0 auto;
    }

    #topnav {
        padding-top: 40px;
    }
}

@media screen and (max-width:350px) {
    #logo {
        width: 98%;
        margin: 0 auto;
    }
}

/*Style for menu links*/
#nav li > a {
    display: block;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-family: Arial, Helvetica, Tahoma, Geneva, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #c8cacb;
    text-decoration: none;
    border-radius: 12px;
}

#nav label {
    padding-left: 0 !important;
}

#nav li.highlight > a {
    color: #02193d !important;
    font-size: 20px;
    font-weight: 600;
    background-color: #FC3;
    margin-left: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

/*Hover state for top level links*/
#nav li:hover > a {
    color: #fff;
}

#nav li.highlight:hover > a {
    border: none;
    background-color: #d3a10c;
}

/*Hide dropdown links until they are needed */

#nav > li > ul {
    max-height: 0;
    -webkit-transition: max-height 0.15s ease-in-out;
    -moz-transition: max-height 0.15s ease-in-out;
    -o-transition: max-height 0.15s ease-in-out;
    transition: max-height 0.15s ease-in-out;
    background: rgb(2,25,61);
    background: rgba(2,25,61,0.9);
    overflow: hidden;
    width: auto;
    position: absolute;
    top: 45px;
    left: -15px;
    padding-top: 30px;
}

/*Style for dropdown links*/
#nav > li:hover > ul > li a {
    color: #bab9b9;
    line-height: 40px;
    text-align: left;
    border-bottom: 1px solid #435572;
}

/*Hover state for dropdown links*/
#nav li:hover ul a:hover {
    background: #254476;
    color: #FFF;
    text-decoration: none;
}

/*Make dropdown links vertical*/
#nav li > ul > li {
    display: block;
    float: none;
}

/*Prevent text wrapping*/
#nav li ul li a {
    text-align: left;
    width: auto;
    min-width: 150px;
    padding: 0 15px;
    white-space: nowrap;
    border-bottom: 1px solid #435572;
}

/*Display the dropdown on hover*/

/*#nav li:hover ul {
	max-height: 800px;
    -webkit-transition: max-height 0.5s ease-in-out;
	-moz-transition: max-height 0.5s ease-in-out;
	-o-transition: max-height 0.5s ease-in-out;
	transition: max-height 0.5s ease-in-out;
}*/

/*Format Checkbox and Label - Level 1*/
input[type=checkbox]#MobileBTN + label {
    background-image: url('https://academyleadership.com/images/header/Mobile-Menu.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 32px;
    height: 32px;
    /*float: none;*/
    cursor: pointer;
    transform: rotate(180deg);
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    display: none;
}

input[type=checkbox]#MobileBTN {
    display: none;
}

/*Style Level 1 Label and hide it by default*/
.MobileMenu {
    max-height: 0;
}

/*Format Checkbox and Label - Level 2*/
/*input[type=checkbox]#MobileBTN2 + label, input[type=checkbox]#MobileBTN3 + label, input[type=checkbox]#MobileBTN4 + label, input[type=checkbox]#MobileBTNZ + label {
	background-image:url('https://academyleadership.com/images/header/Mobile-Menu2.png');
	background-size: 15px;
	background-repeat:no-repeat;
	background-position:right center;
	width: 32px;
	height: 32px;
	float: right !important;
	cursor:pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;	
	display:none;
}*/

input[type=checkbox]#MobileBTN2, input[type=checkbox]#MobileBTN3, input[type=checkbox]#MobileBTN4, input[type=checkbox]#MobileBTNZ {
    display: none;
}

/*Style Level 2 Label and hide it by default*/
.MobileSubMenu {
    max-height: 0;
}

/*Stop Transitions During Window Resizing*/
/*Code Source: https://css-tricks.com/stop-animations-during-window-resizing*/
.resize-animation-stopper * {
    transition: none !important;
}

/*Responsive Navigation Styles*/

/*@media screen and (min-width: 1000px) and (max-width: 1250px) {*/

/*#nav li > a {
		font-size: 14px;
		font-weight: 600;
	}

	#nav > li > a:after {
		padding-left: 5px;
		padding-right: 5px;
	}

	#nav li.highlight > a {
		font-size: 14px;
		font-weight: 600;
		padding-left: 5px;
		padding-right: 5px;
		margin-left: 15px;
	}
	
	#nav li ul#MobileMenu2, #nav li ul#MobileMenu3, #nav li ul#MobileMenu4 {
		left: -15px; /* -53px */


/*#nav li ul#MobileMenuZ {
		left: -80px; /* -83px */
/*}*/
/*}*/

@media screen and (max-width: 600px) {

    /*Stop displaying the dropdown on hover*/

    #nav li:hover ul {
        max-height: 0;
    }

    input[type=checkbox]#MobileBTN + label, input[type=checkbox]#MobileBTN2 + label,
    input[type=checkbox]#MobileBTN3 + label,
    input[type=checkbox]#MobileBTN4 + label,
    input[type=checkbox]#MobileBTNZ + label {
        clear: none !important;
        display: block;
    }

    input[type=checkbox]#MobileBTN2 + label,
    input[type=checkbox]#MobileBTN3 + label,
    input[type=checkbox]#MobileBTN4 + label,
    input[type=checkbox]#MobileBTNZ + label {
        margin-right: 3%;
        height: auto;
    }

    .MobileLink {
        float: left;
    }

    /* Show Close Image when Button is Checked */
    input[type=checkbox]:checked#MobileBTN + label {
        background-image: url('https://academyleadership.com/images/header/Mobile-Menu-Close.png');
        width: 32px;
        height: 32px;
        float: right;
        transform: rotate(360deg);
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
    }

    input[type=checkbox]:checked#MobileBTN2 + label,
    input[type=checkbox]:checked#MobileBTN3 + label,
    input[type=checkbox]:checked#MobileBTN4 + label,
    input[type=checkbox]:checked#MobileBTNZ + label {
        background-image: url('https://academyleadership.com/images/header/Mobile-Menu2-Close.png');
        width: 32px;
        height: 32px;
        float: right !important;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    /*Show menu when invisible checkbox is checked*/

    #MobileBTN:checked ~ #nav {
        visibility: visible;
        max-height: 1000px !important;
        transform: scaleX(1);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    #MobileBTN:checked ~ #nav, #MobileBTN2:checked ~ #MobileMenu2, #MobileBTN3:checked ~ #MobileMenu3, #MobileBTN4:checked ~ #MobileMenu4, #MobileBTNZ:checked ~ #MobileMenuZ {
        max-height: 800px !important;
    }

    /*Make dropdown links appear inline*/
    #nav {
        visibility: hidden;
        position: absolute;
        width: 100%;
        top: 210px;
        right: 0;
        left: 0;
        z-index: 9999;
        max-height: 0;
        transform: scaleX(0);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

        #nav li ul {
            clear: both;
            top: 0;
            left: 0;
            padding-top: 0;
            height: auto !important; /*closes sub-menus*/
        }

        #nav li > ul {
            position: static;
            max-height: 0;
        }

        #nav > li {
            background-color: #001132;
            border-bottom: 1px solid #344763;
            border-right: none;
        }

            /*Adjust top positioning of dropdown*/
            #nav > li:first-of-type {
                margin-top: 35px;
                border-top: 1px solid #344763;
                border-left: none;
            }

            /*Remove Horizontal Navigation Spacer*/
            #nav > li > a:after {
                content: none;
            }

            #nav > li > ul > li > a:last-of-type {
                border-bottom: 0;
            }

        #nav li > ul > li {
            background-color: #000b1f;
            border-bottom: 0;
        }

        /*Make all menu links full width*/
        #nav li {
            width: 100%;
            clear: both;
        }

            #nav > li > a, #nav li.highlight > a {
                margin-left: 0;
            }

        #nav > li > ul > li > a {
            width: 100%;
            padding: 6px 8%;
        }

        /*Hover state for dropdown links*/
        #nav li:hover ul a:hover {
            background-color: #000b1f;
        }

        #nav li, #nav li > a, #nav li.highlight > a {
            float: none;
            text-align: center;
            text-transform: uppercase;
            font-size: 20px;
            border-radius: 0;
        }

            #nav li > a, #MobileMenu2 li > a, #MobileMenu3 li > a, #MobileMenu4 li > a {
                line-height: 40px;
                padding: 20px 0 10px 0;
            }

    /*Display 'show menu' link*/
    .MobileMenu, .MobileSubMenu {
        max-height: 800px;
    }
}

@media screen and (max-width:325px) {
    #head-row {
        padding-bottom: 0 !important;
    }

    #nav {
        top: 130px !important;
    }
}

/*Custom Classes*/

.alert {
    font-weight: 500;
    color: #990000;
}

.bold {
    font-weight: bold;
}

.bold-italic {
    font-weight: 500;
    font-style: italic;
}

.breadcrumb {
    display:block;
    width: 98%;
    text-align: center;
    font-size:18px;
    font-weight: bold;
}

.breadcrumb a, .PDFbtn {
    text-decoration:none !important;
}

    .breadcrumb a:hover, .PDFbtn:hover {
        text-decoration: underline !important;
        margin: 0 auto;
    }

    #webReport .colors td {
        padding:1%;
        width: 48%;
        vertical-align: middle;
    }

    #webReport .colorDetail {
        width: 100%;
        text-align:center;
        padding: 1%;
    }

        #webReport .colorDetail td {
            width: 48%;
            padding: 1%;
        }

    #webReport .breadcrumb {
        display: inline-block;
        width: 50%;
        text-align: left;
    }

    #webReport .PDFbtn {
        display: block;
        float: right;
    }

    #webReport ul {
        margin-bottom: 1em;
    }

    #webReport ul li {
        margin-left: 50px;
    }

.clear {
    clear: both;
}

.button, .button-green, .button-purple, .button-nav, .pagination a {
    position: relative;
    display: block;
    border: 0;
    margin: 0 auto;
    margin-bottom: .5em;
    padding: 10px;
    text-align: center;
    color: #FFF !important;
    font-weight: 500;
    font-size: 25px;
    text-decoration: none !important;
    cursor: pointer;
    width: 80%;
    max-width: 400px;
    border-bottom: 0;
    border-radius: 10px;
}

.button {
    background-color: #ffa500;
}

    .button:hover {
        background-color: #c07c00;
        text-decoration: none !important;
    }

.button-green {
    background-color: #86a730;
}

    .button-green:hover {
        background-color: #6f8536;
        text-decoration: none !important;
    }

.button-nav {
    background-color: #999999;
    max-width: 150px; 
}

    .button-nav:hover {
        background-color: #666666;
        text-decoration: none !important;
    }

.button-purple {
    background-color: #5246a7;
    padding: 15px;
}

    .button-purple:hover {
        background-color: #331c73;
        text-decoration: none !important;
    }

    .button-purple > a, .button-purple > a:hover {
        color: #FFF !important;
    }

.home, .home p {
    font-size: 18px;
    line-height: 1.5em;
    max-width: 1000px;
    margin: 0 auto;
}

.home .callout {
    display: block;
    width: 100%;
    max-width: 1000px;
    padding: 2%;
    border-radius: 10px;
    background-color:#ecf6fd;
    margin: 2em auto;
}

.home p {
    text-align: left;
}

.pagination {
    display: block;
    width: 100%;
    text-align: center;
}

    .pagination a {
        display: inline-block;
        margin-top: 1em;
        max-width: 125px;
        background-color: #86a730;
        margin-right: 10px;
    }

    .pagination a:last-of-type {
        margin-right: 0;
    }

    .pagination a:hover {
        background-color: #6f8536;
        text-decoration: none;
    }

    @media screen and (max-width: 750px) {
        .pagination a:last-of-type {
            margin: 0 auto;
        }
        
        .pagination a {
            display: block; 
            clear: both;
            margin: 1em auto;
            max-width: 100%;
            width: 96%;
            line-height: 1.5em;
        }
    }

.errorMsg {
    display: table;
    margin: 0 auto;
    width: 90%;
    background-color: #ffffff;
    color: #990000;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 2em;
}

    .errorMsg td {
        padding-bottom: 0 !important;
    }

.indent {
    margin-left: 10%;
    margin-right:10%;
}

    p.indent {
        text-align: left;
    }

.italic {
    font-style: italic;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.marginCenter {
    margin: 0 auto;
}

.PDFbtn {
    display: inline-block;
    position: relative;
    background-color: #5246a7;
    padding: 8px;
    border: 0;
    margin-bottom: 1em;
    text-align: center;
    color: #FFF !important;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none !important;
    cursor: pointer;
    border-bottom: 0;
    border-radius: 10px;
}

    .PDFbtn:hover {
        background-color: #331c73;
        text-decoration: none !important;
        margin-bottom: 1em;
    }

.topBorder {
    display:block;
    width:100% !important; 
    border-top: 1px solid #666;
    margin-top:1em;
}

.date {
    /*font-family: Verdana, Arial;*/
    font-size: 10px;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

.sub {
    /*font-family: Verdana, Arial;*/
    font-size: 12pt;
    color: #990000;
    font-weight: bold;
}

.subblack {
    font-size: 14pt;
    color: #990000;
    font-weight: bold;
}

.sml {
    /*font-family: Verdana, Arial;*/
    font-size: 9px;
    color: #000000;
    font-weight: bold;
}

.white {
    /*font-family: Verdana, Arial;*/
    font-size: 12px;
    color: #FFFFFF;
}

.al_report_page {
    page-break-after: always;
    border-bottom: 5px solid #000080;
    padding: 5px;
    height: 9.5 inches;
}

a.linkwhite:link {
    /*font-family: Verdana, Arial;*/
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: underline;
}

a.linkwhite:visited {
    /*font-family: Verdana, Arial;*/
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: underline;
}

a.linkwhite:hover {
    /*font-family: Verdana, Arial;*/
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: underline;
}

a.linkwhite:active {
    /*font-family: Verdana, Arial;*/
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: underline;
}

a.linksml:link {
    /*font-family: Verdana, Arial;*/
    font-size: 9px;
    color: #990000;
    font-weight: bold;
    text-decoration: underline;
}

a.linksml:visited {
    /*font-family: Verdana, Arial;*/
    font-size: 9px;
    color: #990000;
    font-weight: bold;
    text-decoration: underline;
}

a.linksml:hover {
    /*font-family: Verdana, Arial;*/
    font-size: 9px;
    color: #990000;
    font-weight: bold;
    text-decoration: underline;
}

a.linksml:active {
    /*font-family: Verdana, Arial;*/
    font-size: 9px;
    color: #990000;
    font-weight: bold;
    text-decoration: underline;
}

a:link {
    color: #990000;
    text-decoration: none;
}

a:visited {
    color: #990000;
    text-decoration: none;
}

a:hover {
    color: #990000;
    text-decoration: underline;
}

a:active {
    color: #990000;
    text-decoration: none;
}

.col5 {
    width: 100%;
    -moz-column-count: 5;
    -webkit-column-count: 5;
    column-count: 5;
    -webkit-column-gap: 1em; /* Chrome, Safari, Opera */
    -moz-column-gap: 1em; /* Firefox */
    column-gap: 1em;
    padding-left: 1em;
}

.table50 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1em;
}

    .table50 tr {
        border-bottom: 1px solid #cccccc;
    }

        .table50 tr:hover {
            background-color: #fcfbe9;
        }

        .table50 tr td {
            padding: .5em;
            width: 33%;
        }

        .table50 th {
            padding: .5em;
            font-weight: 500;
            font-size:18px;
        }

/*Profile Reports*/
#MainContent_Profile_Report_Table #MainContent_tr-headers > td {
    /*width: 2%; Enable after heading/subheading are removed from table.*/
}

/*Main Template Styles*/

#mainContent {
    padding: 2%;
}

#mainContent h1, #mainContent h2, #mainContent h3 {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 500;
    /*font-family: Verdana, Arial;*/
    color: #990000;
    clear: both;
    margin: 1em 0;
    line-height: 1.25em;
}

#mainContent h1 {
    font-size: 35px;
}

#mainContent h2 {
    font-size: 30px;
}

#mainContent h3 {
    font-size: 25px;
}

#mainContent p {
    margin-bottom: 1em;
	line-height: 1.5em
    /*text-align: center; Affects reports */
}

#mainContent td {
    padding-bottom: .5em;
}

#mainContent input[type=text], #mainContent input[type=password], #mainContent input[type=checkbox], #mainContent textarea {
    display: block;
    padding: 5px;
    font-size: 16px;
    color: #666;
 }

#mainContent td input[type=text], #mainContent td input[type=password], #mainContent td select, #mainContent td input[type=checkbox] {
    margin-left: 10px;
}

/* Form Containers by initial widescreen % */

#container_member {
    display: block;
    background-color: #e7e7e7;
    border: 0;
    border-radius: 12px;
    width: 84%;
    max-width: 1000px;
    padding: 2%;
    margin: 2em auto;
    text-align: center;
}

#container_80 {
    display: block;
    width: 84%;
    max-width: 1500px;
    padding: 2%;
    margin: 2em auto;
    text-align: center;
}

#container_60 {
    display: block;
    background-color: #e1e1e1;
    border: 1px solid #cccccc;
    border-radius: 12px;
    width:64%;
    max-width: 750px;
    padding: 2%;
    margin: 2em auto;
    text-align: center;
}

#container_60 p, #container_member p {
    text-align: center;
}

    @media screen and (min-width: 600px) and (max-width: 1000px) {
        #container_60 {
            width: 84%;
        }
    }


    @media screen and (max-width: 600px) {
        #container_60, #container_80, #container_member {
            width: 94%;
        }

        #member_tbl tr > td, #member_tbl tr > td + td {
            clear: both;
            display: block;
        }
    }

    #member_tbl {
        width: 100%;
    }

/*View Member*/

#MainContent_MemberDataTable {
    display: block;
    width: 86%;
    background-color: #ecf6fd;
    font-weight: normal;
    font-size: 18px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

    #MainContent_MemberDataTable td {
        border:0 !important;
        padding: 5px 10px;
        text-align: left;
        width:40%;
    }
    
    #MainContent_MemberDataTable td+td {
        width:60%;
    }

    #ViewMember_Nav {
        padding-top: 1em;
    }

    #ViewMember_Nav .button-purple a {
        font-size: 20px;
    }

        #ViewMember_Nav .button-purple a:hover {
            text-decoration: none;
        }

    #webReport {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12pt;
    }

    #webReport table td + td {
        padding-left: 10px;
    }

    .triple_graph {
        display: block;
        overflow: visible;
        width: auto;
    }

        .triple_graph td {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12pt;
            padding: 0 5px;
        }

        .triple_graph td + td {
            padding-left: 1em;
        }

    @media screen and (max-width: 600px) {
        #member_tbl .triple_graph {
            display: table;
            margin: 0 auto;
        }
    }

    #container_60 input[type=text], #container_60 input[type=password], #container_60 select {
        width: 70%;
        max-width: 500px;
        text-align: center;
    }

    #container_60 textarea {
        height: 5em;
        width: 71%;
        margin-left: 8px;
        text-align: left;
    }

    @media screen and (max-width:1000px) {
        #container_60 textarea {
            width: 72%;
            margin-left: 2px;
        }
    }

    .ddstyle {
        display: block;
        font-size: 16px;
        color: #666;
        text-align: left;
    }

        .ddstyle select {
            width: 73.5% !important;
            font-size: 16px;
            border: 1px solid #000;
            padding: 1%; /* If you add too much padding here, the options won't show in IE */
            cursor: pointer;
        }

    #container_60 input[type=checkbox] {
        width: 25px;
        height: 25px;
        cursor: pointer;
        clear: both !important;
    }

    /*Login and Admin Navigation Page Styles*/

    .simpleForm, #adminNav {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

        .simpleForm tbody, #adminNav tbody {
            display: block;
            width: 90%;
            margin: 0 auto;
        }

        .simpleForm tr {
            display: block;
            width: 100%;
        }

        .simpleForm td {
            text-align: right;
            width: 13%;
        }

            .simpleForm td + td {
                text-align: left;
                width: 25%;
            }

        .simpleForm .button-green {
            margin-top: 1em;
        }

    #adminNav {
        margin-top: 3em;
    }

        #adminNav tr, #adminNav td {
            display: block;
            width: 100%;
        }

        #adminNav a:link, #adminNav a:visited, #adminNav a:hover {
            font-size: 25px;
            font-weight: normal;
            text-decoration: none !important;
            padding: .75em;
            width: 80%;
        }

    /*Member Pages */

    #MemberSearch {
        display: block;
        width: 84%;
        max-width: 1000px;
        margin:0 auto;
        background-color: #e1e1e1;
        border-radius: 12px;
        text-align: center;
        padding: 1em 2%;
        margin-bottom: 2em;

    }

        #MemberSearch .company-filter-container {
            display: block;
            width: 75%;
            max-width: 500px;
            height: 200px;
            overflow-y: scroll;
            margin: 0 auto;
            margin-bottom: 1em;
            border: 1px solid #999;
        }

    #MemberSearch table.company-checkbox-list {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
    }

    #MemberSearch .company-checkbox-list td {
        width: 40%;
        padding-left: 25px;
    }

    #MemberSearch input[type=text] {
        width: 80%;
        max-width: 500px;
        margin: 1em auto;
        padding: 10px 0;
        text-align: center;
        border-radius: 5px;
        border: 1px solid #999;
    }

        #MemberSearch input[type=text]:focus {
            background-color: #ecf6fd;
        }

    #MemberSearch .button-purple {
        padding: 10px;
        margin-top: 1em;
        max-width: 500px;
    }

    #MemberSearch input[type=checkbox], #MemberSearch input[type=checkbox] + label{
        display: inline-block;
        float: left;
        margin-bottom: .5em;
        line-height: 20px;
    }

    #MemberSearch input[type=checkbox] {
        width: 18px;
        height: 18px;
        margin-left: 25px;
    }

    #MemberSearch input[type=checkbox] + label {
        padding-top:2px;
    }

        @media screen and (max-width:600px) {

            #MemberSearch {
                width: 98%;
            }

            #MemberSearch .company-filter-container {
                width: 100%;
            }

            #MemberSearch .company-checkbox-list td {
                padding-left: 0;
                white-space:pre;
            }

            #MemberSearch .company-checkbox-list td:checked {
                background-color: #990000;
            }
        }

    #Records-per-Page {
        display: inline-block;
        width: 100%;
        text-align: center;
        clear: both;
        font-size: 16px;
        padding: 1em 0;
        margin: 0 auto;
        clear: both;
        background-color: #d7ef99;
        border-radius: 10px;
    }

    #Record-Count, #Records-per-Page span {
        display: inline-block;
        width: 32%;
        float: none;
        padding: 0;
        margin: 0 auto;
    }

    #Records-per-Page label {
        float: none;
        display: inline-block;
    }

        #Records-per-Page label {
            padding-right: 5px;
        }

        #Records-per-Page .ddstyle {
            display: inline-block;
            float:none;
            text-align: center;
            font-size: 16px;
        }

    @media screen and (max-width: 750px) {
        #Records-per-Page label, #Records-per-Page span {
            display: block;
            width: 80%;
            clear: both;
            float: none;
            margin: 0 auto;
            text-align: center;
            padding: 0;
        }

        #Records-per-Page .ddstyle {
            display: block;
            margin: 0 auto;
            margin-bottom: 1em;
        }
    }

#MainContent_MembersTable {
    width: 100%;
    text-align: center;
    margin-top: 2em;
    border: 1px solid #e7e7e7;
    clear:both;
    border-radius: 10px;
}
    #MainContent_MembersTable th:first-of-type {
        border-top-left-radius: 10px;
    }

    #MainContent_MembersTable th:last-of-type {
        border-top-right-radius: 10px;
    }

    #MainContent_MembersTable th {
        text-align: center;
        font-size: 16px;
        padding: 10px;
        border: 0;
        background-color: #f1f1f1;
    }

    #MainContent_MembersTable tr {
        height: 1.5em;
    }

    #MainContent_MembersTable td {
        padding:10px;
    }

    #MainContent_MembersTable tr:hover {
        background-color: #ecf6fd;
    }

    @media screen and (max-width: 750px) {
        
        #MainContent_MembersTable {
            border: 0;
            background-color: 0;
        }

        #MainContent_MembersTable::before {
            content:"Sort by:";
            clear: both;
            text-align: center;
            font-weight: bold;
            font-size: 18px;
            line-height: 2em;
        }

        #MainContent_MembersTable th, #MainContent_MembersTable td {
            display: block;
            clear: both;
            width: 98%;
            float: none;
            padding: 5px;
            border: 0;
        }

        #MainContent_MembersTable th {
            background-color: #02193d;
            line-height: 3em;
            border-radius: 10px;
            margin-bottom: .5em;
        }

        #MainContent_MembersTable th a {
            color: #fff;
        }

        #MainContent_MembersTable tr {
            display: block;
            width: 100%;
            height: auto;
            background-color: #e7e7e7;
            border: 1px solid #e1e1e1;
            border-radius: 10px;
            clear: both;
            margin-bottom: 1em;
        }
    }
    /* Footer Styles */
    #footer, #wrapper:after {
        height: 125px;
    }

    @media screen and (min-width:875px) and (max-width:1250px) {
        #footer, #wrapper:after {
            height: 175px;
        }
    }

    @media screen and (min-width:600px) and (max-width:875px) {
        #footer, #wrapper:after {
            height: 500px;
        }
    }

    @media screen and (min-width:375px) and (max-width: 600px) {
        #footer, #wrapper:after {
            height: 1080px;
        }
    }

    @media screen and (max-width: 375px) {
        #footer, #wrapper:after {
            height: 1280px;
        }
    }

    #footer {
        display: inline-block;
        width: 100%;
        background-color: #02193d;
        clear: both;
        padding: 2em 0;
        position: relative;
        bottom: 0;
    }

    #foot {
        display: block;
        width: 98%;
        margin: 0 auto;
        font: 13px/100% Arial, Helvetica, Tahoma, Geneva, sans-serif;
        text-align: left;
        color: #c8cacb;
        height: auto;
        line-height: 2em;
    }

    @media screen and (min-width:768px) and (max-width: 1100px) {
        #foot {
            line-height: 1em;
        }
    }

    #foot h1 {
        text-transform: uppercase;
        font-size: 10pt;
        font-weight: bold;
        margin: 0 !important;
        padding: 0 !important;
        color: #FFF;
        letter-spacing: .5px;
    }

    #foot a {
        color: #c8cacb;
        text-decoration: none;
    }

        #foot a:hover {
            color: #FFF;
            text-decoration: none;
        }

    .foot-col {
        display: block;
        width: 14%;
        margin-right: 1%;
        height: 100%;
        float: left;
        letter-spacing: -.25px;
    }

    #foot6 {
        width: 25%;
        margin-right: 0;
        float: right;
    }

    #footseal {
        display: none;
    }

    #SecSeal {
        display: block;
        width: 80px;
        height: 80px;
    }

        #SecSeal td {
            vertical-align: top;
            text-align: center;
        }

        #SecSeal a {
            font-weight: 600;
            font-size: 7pt;
            text-transform: uppercase;
            color: #FFF;
            text-decoration: none;
            letter-spacing: .5px;
            margin: 0;
            padding: .5em 0;
        }

    #SocialMedia {
        float: right;
    }

    .foot-col > #privacy, .foot-col > #copyright {
        clear: left;
        width: 100%;
        line-height: 1.25em;
    }

    .foot-col > #privacy {
        margin-top: 1em;
        text-align: left;
    }

    .foot-col > #copyright {
        text-align: center;
        font-size: 8.5pt;
        color: #FFF;
        letter-spacing: -.25px;
    }

    @media screen and (min-width: 875px) and (max-width: 1250px) {
        #footer {
            padding: 1em 0 3em 0;
        }

        .foot-col {
            letter-spacing: normal;
            padding-bottom: 1em;
        }

        #foot3 {
            margin-right: 0;
        }

        #foot4 {
            clear: left;
        }

        #foot6 {
            position: absolute;
            top: 1em;
            right: 1%;
            height: auto;
            padding-left: 1%;
            border-left: .5px solid #c8cacb;
        }

        #footseal {
            display: block;
            max-width: 100px;
            clear: both;
            margin: 0 auto;
            padding-bottom: 1em;
        }
    }

    @media screen and (min-width: 1000px) and (max-width: 1250px) {
        .foot-col {
            width: 23%;
        }

        #foot3 {
            width: 20%;
        }

        #foot6 {
            width: 32%;
        }
    }

    @media screen and (min-width: 875px) and (max-width: 1000px) {
        .foot-col {
            width: 21%;
        }

        #foot6 {
            width: 35%;
        }
    }

    @media screen and (min-width:600px) and (max-width: 875px) {
        .foot-col, #foot6 {
            width: 50%;
            float: none;
            padding: 0;
        }

        .foot-col {
            margin: 1em 0;
        }

        #foot6 {
            position: absolute;
            top: 3.5em;
            right: 0;
            margin: 0;
            height: 75%;
        }

        #footseal {
            display: block;
            max-width: 125px;
            clear: both;
            margin: 0 auto;
            padding-bottom: 1em;
        }

        #SecSeal {
            float: none !important;
            clear: both;
            margin: 0 auto;
            padding: 1em 0 0 0;
        }

        #SocialMedia {
            float: none !important;
            clear: both;
            margin: 0 auto;
            padding: 0 0 2em 0;
        }

        #copyright {
            float: none;
            clear: both;
            padding: 0;
            font-size: 8pt !important;
        }
    }

    @media screen and (max-width: 600px) {
        #foot h1 {
            font-size: 16pt;
        }

        .foot-col, #foot6 {
            width: 100%;
            float: none;
            margin: 1em 0;
            padding: 0;
            position: relative;
            font-size: 14pt;
            line-height: 2em;
        }

        #privacy {
            text-align: left;
            width: 100%;
        }

        #foot6 {
            border-top: .5px solid #c8cacb;
        }

        #footseal {
            display: block;
            max-width: 150px;
            clear: both;
            margin: 0 auto;
            padding: 1em 0;
        }

        #SecSeal {
            float: left;
            width: 50%;
            padding: 1em 0;
        }

            #SecSeal a {
                font-size: 8pt;
            }

        #SocialMedia {
            float: right !important;
            padding: 1em 0;
        }

        #copyright {
            display: block;
            text-align: center;
            width: 100%;
            float: none;
            clear: both !important;
            padding: 0;
            font-size: 10pt !important;
        }
    }

    @media screen and (max-width: 375px) {
        .foot-col {
            width: 98%;
        }

        #privacy {
            padding-bottom: 1em;
        }

        #foot6 {
            padding-top: 1em;
        }

        #foot-seal {
            max-width: 50%;
        }

        #SecSeal {
            display: table;
            min-width: 80%;
            float: none !important;
            clear: both;
            margin: 0 auto;
        }

        #SocialMedia {
            float: none !important;
            clear: both;
            margin: 0 auto;
            padding: 0 0 2em 0;
        }
    }

    .foot-col > ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        line-height: 1.5em;
    }

    #SocialMedia {
        display: block;
        float: right;
        width: 110px;
        height: auto;
        overflow: hidden;
    }

    @media screen and (max-width: 780px) {
        #SocialMedia {
            position: relative;
            float: none;
            margin: 0 auto;
            width: 130px;
        }
    }

    #SocialMedia img {
        padding-top: 7px;
        max-height: 30px;
    }

    @media screen and (max-width: 780px) {
        #SocialMedia img {
            padding-bottom: 6px;
            padding-left: 5px;
        }
    }

    #SocialMedia a {
        display: block;
        float: left;
        padding-left: 5px;
    }