* {
    margin: 0;
    padding: 0;
}

html {
}

body {
    background-color: #eee;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4 {
}
/*-- Awesome thanks Darwin - nah. --*/


a, a:visited {
    color: #36edef;  /*mediumseagreen;*/
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
        /*--  color: #888;  --*/
        color: limegreen;
    }

/*-- Navigation Start --*/
nav {
    min-height: 80px;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    z-index: 999;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

    nav.simpleNav {
        position: fixed;
    }

    nav.simpleNav, .simpleNav .menu {
        min-height: 48px;
        max-height: 48px;
    }

.simpleNav .menulink {
    display: none;
}

.simpleNav .logo {
    height: 48px;
    padding: 0px 0px 0px 1%;
    line-height: 48px;
}

    .simpleNav .logo img {
        width: auto;
        height: 48px;
    }

.simpleNav .menuicon {
    margin: 6px auto 6px auto;
}

.sidenavlink {
    border-bottom: 2px solid steelblue;
}

    .sidenavlink a {
        color: #3f6e95;
        text-decoration: none;
        font-weight: bold;
    }

        .sidenavlink a:hover {
            text-decoration: underline;
        }

    .sidenavlink.mselect {
        cursor: pointer;
    }

.sidenavsublink {
    width: 100%;
    display: none;
    cursor: pointer;
}

    .sidenavsublink ul {
        margin-bottom: 8px;
        list-style: none;
        font-weight: normal;
    }

    .sidenavsublink .sidenavtitle {
        font-weight: normal;
    }

.sidenavparent {
    width: 100%;
    box-sizing: border-box;
}

.sidenavlink > .sidenavparent {
    padding: 8px;
}

ul.mselect .sidenavparent {
    margin-bottom: 8px;
}

.mselect > .sidenavparent {
    background-image: url(../../Images/Icons/arrowdown.png);
    background-repeat: no-repeat;
    background-position: right;
    border-right: solid 12px #ececec;
}

.menu-expanded {
    background-image: url(../../Images/Icons/arrowup.png) !important;
    border-bottom: 1px solid #C3C2C2;
    margin-bottom: 10px;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.logo {
    width: 19%;
    float: left;
    height: 72px;
    line-height: 72px;
    padding: 4px 0 0 1%;
}

    .logo img {
        width: 100%;
        max-width: 270px;
    }

.menu {
    padding: 0;
    margin: 0;
    display: table;
    table-layout: fixed;
    width: 80%;
    float: left;
    height: 80px;
}

    .menu a:link, .menu a:active, .menu a:visited {
        display: block;
        padding: 0px 0px;
        text-decoration: none;
        text-align: center;
        /*font-family: 'verdana', sans-serif;*/
        color: steelblue;
        font-weight: normal;
        font-size: 14px;
    }

.menuicon {
    margin: 12px auto 6px auto;
    height: 36px;
    width: 36px;
}

    .menuicon img {
        width: 100%;
    }

ul.menu li {
    display: table-cell;
    z-index: 1010;
}

.menulink {
    margin: 6px auto 0px auto;
    color: steelblue;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}

ul.menu li:hover {
    background-color: rgba(255,255,255,1.0);
    cursor: pointer;
}

ul.menu li:focus {
    background-color: rgba(255,255,255,1.0);
    outline: none;
}

    ul.menu li:focus .dropdown {
        opacity: 1;
        top: 80px;
        visibility: visible;
    }

.simpleNav ul.menu li:focus .dropdown {
    top: 48px;
}

.has-dropdown:hover {
    background-color: #666;
}

ul.menu li:hover > .tab {
    color: #eee;
}

.dropdown-sub {
    width: 100%;
    display: block !important;
}

.newdropdown {
    display: none;
    width: 100%;
    height: 400px;
    background-color: beige;
    position: absolute;
}

.dropdown {
    width: 100%;
    height: 186px;
    position: absolute;
    background-color: #fff;
    margin: 0px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    top: 80px;
    left: 0;
    visibility: hidden;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.5);
}

.simpleNav .dropdown {
    top: 48px;
}

.ddheader {
    width: 17%;
    padding: 10px 1% 5px 2%;
    float: left;
}

    .ddheader a {
        font-size: 20px !important;
        line-height: normal;
    }

.ddlinks {
    width: 38%;
    padding: 10px 1% 5px 1%;
    float: left;
}

    .ddlinks li {
        width: 50%;
        float: left;
        text-align: left;
    }

        .ddlinks li a:link {
            text-align: left;
        }

.ddcontainer {
    width: 37%;
    padding: 10px 0 5px 1%;
    float: left;
}

.dropdown-last {
    min-width: 200px;
    display: none;
    position: absolute;
    background-color: #666;
    margin: 0px;
    padding: 10px 0;
    border-left: 1px solid #777;
    border-right: 1px solid #333;
    z-index: 1000;
    top: -10px;
    left: 200px;
}

.dropdown-link:link, .dropdown-link:active, .dropdown-link:visited {
    display: block;
    padding: 3px 15px;
    line-height: 18px;
    text-decoration: none;
    text-align: left;
    /*font-family: 'verdana', sans-serif;*/
    color: white;
    font-weight: normal;
    font-size: 12px;
    border-top: 1px solid #585858;
}

.dropdown-link:hover {
    background-color: #777;
}

.menu-downarrow {
    float: right;
    display: none;
    padding: 3px 2.5%;
    line-height: 25px;
    height: 25px;
    text-decoration: none;
    text-align: center;
    /*font-family: 'Goudy Old Style', Garamond, 'Big Caslon', 'Times New Roman', serif;*/
    font-variant: small-caps;
    font-weight: normal;
    font-size: 20px;
    color: White;
    width: 15%;
}

.ddmenu-up {
    background-image: url("img/nav-ua.png");
    background-position: center center;
    background-repeat: no-repeat;
}

.ddmenu-dn {
    background-image: url("img/nav-da.png");
    background-position: center center;
    background-repeat: no-repeat;
}

.nav-thumbs {
    position: fixed;
    right: 30px;
    top: 42%;
    z-index: 999;
}

    .nav-thumbs ul {
        list-style-type: none;
    }

        .nav-thumbs ul li {
            margin-top: 20px;
        }

            .nav-thumbs ul li a {
                display: block;
                width: 24px;
                height: 24px;
                margin: 0 5px;
                background-color: rgba(255,255,255,0.6);
                text-indent: -9999px;
                border-radius: 24px;
                -moz-border-radius: 24px;
                -webkit-border-radius: 24px;
                box-shadow: inset 0px 0px 4px #000;
                -moz-box-shadow: inset 0px 0px 4px #000;
                -webkit-box-shadow: inset 0px 0px 4px #000;
                border: solid 1px white;
            }

                .nav-thumbs ul li a.active {
                    background-color: steelblue !important;
                }                
                 .nav-thumbs ul li a:hover {
                    background-color: #88B5DA !important;
                }
.mobileNav-container {
    display: none;
}

.btnMobileMenu {
    display: none;
    float: right;
    background-image: url(../../Images/Icons/menu-mobile.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    padding-right: 10px;
    cursor: pointer;
}
/*-- Navigation End--*/

.pageBackground {
    background-size: cover;
    background-attachment: fixed;
    max-height: 700px;
    border-bottom: 5px solid #1176bc;
}

#page-content, #admin-content {
    padding-top: 80px;
}

    #page-content .innerContent, #admin-content .innerContent {
        background-color: white;
        padding: 20px 20px;
        border-top: 2px solid steelblue;
        box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
        font-size: 14px;
        /*height:500px;*/
    }

    #admin-content .innerContent {
        margin-top: 20px;
    }

.admin-controls {
    float: right;
}

.center {
    max-width: 1140px;
    margin: 0 auto;
}

#breadcrumb-wrap {
    width: 100%;
    height:48px;
    padding: 15px 20px;
    background-color: rgba(57,106,147,0.8);
    box-sizing: border-box;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.5);
}

#breadcrumb-links {
    color: #fff;
}

    #breadcrumb-links a {
        color: #fff;
        text-decoration: none;
    }

.breadcrumb {
    color: white;
}

.page-title {
    margin-top: 40px;
    background: rgba(255,255,255,0.8);
    display: inline-block;
    border-radius: 5px 40px 0px 0px;
    padding: 15px 50px 15px 30px;
    color: #3f6e95;
    position: relative;
}
    /*.page-title::after {
    content: "";
    border-bottom: 100px solid #fff;
	border-left: 0px solid transparent;
	border-right: 280px solid transparent;
	height: 0;
    border-radius: 0px 10px 20px 0px;
	width: 100px;
}*/
    .page-title p {
        margin: 0;
    }

#left-col {
    width: 29%;
    display: inline-block;
    vertical-align: top;
}

#right-col {
    width: 100%;
    display: inline-block;
}

#full-col {
    width: 100%;
    display: inline-block;
}

#subnav {
    background-color: #ececec;
    margin-right: 15px;
    color: #1076bc;
    overflow: auto;
}

#sidebar-content {
    padding: 10px;
    margin-right: 15px;
}
/*-- FOOTER Start --*/
footer.footer {
    width: 100%;
    border-top: 10px solid #6f6f71;
    overflow: auto;
    background-color: #b7b7b7;
    min-height: 200px;
    font-family: inherit;
    font-weight: normal;
    font-size: 14px;
    padding-bottom: 100px;
}

    footer.footer a {
        color: white;
    }

#footer-social {
    background-color: #acacac;
    min-height: 40px;
}

#footer-social-icons {
    float: right;
    padding: 10px 10px 0px 0px;
}

#footer-logo {
    display: inline;
    padding: 10px 0px;
}

.footer-issues {
    max-width: 760px;
    overflow: auto;
    margin: 0 auto;
}

    .footer-issues div {
        float: left;
        margin: 0px 10px 10px 0px;
    }

        .footer-issues div span {
            float: left;
        }

    .footer-issues img {
        float: left;
        margin-right: 5px;
        height: 45px;
    }
/*-- FOOTER End --*/
/*-- HOMEPAGE Start --*/
#home-content section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    font-size: 14px;
    /*background-position-x: 0;*/
    background-repeat: no-repeat;
}

.home-page-background {
    -webkit-overflow-scrolling: touch;
}

.section-content {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 20px 0px;
}

.top-banner {
    position: relative;
    width: 100%;
    height: 25px;
    color: #fff;
    font-size: 18px;
    padding: 57px 0 5px 0;
}

#alertMessage {
    background-color: indianred;
    clear: both;
    color: white;
}

    #alertMessage p {
        margin: 0;
        padding: 5px 0px;
    }

#dnn_alertPane .handlerContainer {
    transform: scale(.5);
    margin: 0 auto;
}

#dnn_alertPane.dnnModuleManager.dnnSortable {
    min-height: 15px !important;
}

/*-- SEARCHBOX Start --*/
#main-search {
    background-image: url(../../Images/Backgrounds/default.jpg);
}

    #main-search .section-content {
        background: rgba(0,0,0, 0.7);
        color: #fff;
    }

#search-box {
    width: 60%;
    position: relative;
    top: 40vh;
    margin: 0 auto;
}

.searchresults-box {
    width: 100% !important;
    top: 0 !important;
    margin: 0 !important;
}

#search-box .searchInputContainer {
    width: 100%;
}

#search-box input[type="text"] {
    display: block;
    height: 4rem;
    width: 100%;
    font-size: 2rem;
    border: none;
    padding-left: 10px;
    box-sizing: border-box;
    opacity: 0.8;
}

.searchresults-box input[type="text"] {
    background-color: rgba(222, 222, 222, 1);
    margin-bottom: 15px;
}

.LS_SOInput, .dnn_searchBox1_ClassicSearch {
    position: relative;
}

#dnn_searchBox_cmdSearch, #dnn_searchBox1_cmdSearch {
    background-color: #416e92;
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
}

ul.searchSkinObjectPreview {
    border: none;
    width: 100%;
}

.dnnSearchBox {
    margin-right: 119px !important;
}

.dnnSearchBoxPanel, .dnnSearchResultPanel {
    max-width: none;
}
/*-- SEARCHBOX End --*/
/*--Search---*/
.search-content {
    font-size: 85%;
}

.item a.title {
    text-decoration: underline;
}

/*---ENDSearch---*/
/*-- HOMEPAGE SLIDER --*/
.home-section .innerContent h2, .home-section .innerContent h4 {
    color: #fff;
}

.home-section {
    transition: background-image 1s ease-out;
    -webkit-transition: background-image 1s ease-out;
    -moz-transition: background-image 1s ease-out;
    -ms-transition: background-image 1s ease-out;
    -o-transition: background-image 1s ease-out;
}
/*-- HOMEPAGE SLIDER End --*/

/*-- SECTION 1 Start --*/
#section1 .section-content, #section1 .top-banner {
    background-color: #4682b4;
}

#section1 {
    background-image: url(../../Images/Backgrounds/section1.jpg);
}
/*-- SECTION 1 End --*/
/*-- VIDEOS Start --*/
#section-videos {
    background-image: url(../../Images/Backgrounds/default.jpg);
}

    #section-videos .section-content {
        background: rgba(0,0,0, 0.7);
        color: #fff;
        height: 30%;
        box-sizing: border-box;
    }

#main-video {
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    box-sizing: border-box;
}

#dnn_videoPane {
    width: 100%;
    max-width: 800px;
}

    #dnn_videoPane iframe {
        width: 100%;
    }

.dnnMedia-Wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .dnnMedia-Wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.section-content .dnnMedia-Wrapper {
    margin-right: 4%;
}

.video-click {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 998;
    cursor: pointer;
}

#main-video .video-click {
    display: none;
}

#dnn_videoPane_SyncPanel {
    width: 300px;
}
/*-- VIDEOS End --*/
/*-- Search for Form and List Start --*/
div[id*=Default_List_panSearch] {
    width: 94% !important;
    padding: 5px 3%;
    float: left;
}

    div[id*=Default_List_panSearch] input {
        padding: 5px 10px;
        color: #447294;
        font-weight: bold;
        border: 3px solid #447294;
        border-radius: 15px;
        float: left;
    }

        div[id*=Default_List_panSearch] input:focus {
            outline-width: 0;
        }

a[id*=Default_List_cmdSearch] {
    background-image: url("img/fnl-search.png");
    width: 0px !important;
    height: 24px !important;
    overflow: hidden;
    margin: 2px 0 0 10px;
    padding-left: 24px;
    display: inline-block;
    float: left;
}

a[id*=Default_List_cmdResetSearch] {
    background-image: url("img/fnl-refresh.png");
    width: 0px !important;
    height: 24px !important;
    overflow: hidden;
    margin: 2px 0 0 10px;
    padding-left: 24px;
    display: inline-block;
    float: left;
}

a[id*=Default_List_plSearch_cmdHelp] {
    display: inline-block;
    position: relative;
    width: 0px !important;
    height: 24px !important;
    overflow: hidden;
    margin: 0 0 0 10px !important;
    padding-left: 24px !important;
    background: url("img/fnl-info.png");
}

div[id*=Default_List_panSearch] .dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: auto;
    padding: 0px;
    margin-right: 0px;
    overflow: visible;
    text-align: right;
}

div[id*=Default_List_panSearch] .dnnTooltip .dnnFormHelpContent {
    background: rgba(68, 114, 148, 0.9);
    left: -16px;
}

div[id*=Default_List_panSearch] .bottomArrow:after {
    opacity: 1;
    border-top: 7px solid rgba(68,114,148,0.90);
}
/*-- Search for Form and List End --*/
/*-- Services Form and List Start --*/
.service-container {
    width: 23%;
    padding: 1%;
    float: left;
}

.service-box {
    box-sizing: border-box;
    width: 100%;
    height: 170px;
    background-color: #f4f4f4;
    border: 2px solid steelblue;
    border-width: 1px 1px 1px 5px;
    padding: 10px;
}

.service-name {
    font-weight: bold;
    font-size: 14px;
    color: steelblue;
    width: 65%;
    height: 70px;
    float: left;
}

.service-description {
    float: left;
    height: 100px;
}

.service-link {
    float: left;
}

.service-icon {
    width: 20%;
    float: right;
}

    .service-icon img {
        width: 100%;
    }

/*--  Serevices Form and List End  --*/
/*-- Issues Form and List Start --*/
.issue-container {
    width: 23%;
    padding: 1%;
    float: left;
}

.issue-box {
    box-sizing: border-box;
    width: 100%;
    height: 150px;
    background-color: #f4f4f4;
    border: 2px solid steelblue;
    border-width: 1px 1px 1px 5px;
    padding: 10px;
}

.issue-name {
    font-weight: bold;
    font-size: 14px;
    color: steelblue;
    width: 65%;
    height: 70px;
    float: left;
}

.issue-description {
    float: left;
    height: 100px;
}

.issue-link {
    float: left;
}

.issue-icon {
    width: 30%;
    float: right;
}

    .issue-icon img {
        width: 100%;
    }

/*--  Issues Form and List End  --*/
/*--  Forms  --*/
.dnnFormItem input[type="text"], .dnnFormItem select, .dnnFormItem textarea, .dnnFormItem input[type="email"], .dnnFormItem input[type="search"], .dnnFormItem input[type="password"] {
    box-shadow: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    font-color:rgb(68, 68, 68);
}
.dnnFormItem > .dnnLabel {
    margin-top: 11px;
    font-size: 14px;
}
.dnnActions {
    float: right;
}
/*--  Forms END  --*/
/*--  Tables Begin  --*/

table.gridtable {
    /*font-family: verdana,arial,sans-serif;*/
    font-size: 11px;
    color: #333333;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}

    table.gridtable thead {
        border-width: 1px;
        padding: 8px;
        border-style: solid;
        border-color: #666666;
        background-color: #dedede;
    }

    table.gridtable td {
        border-width: 1px;
        padding: 8px;
        border-style: solid;
        border-color: #666666;
        background-color: #ffffff;
    }

.divAbout {
    color: #000000;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}

.aboutRow {
    display: table-row;
}

.abouttd {
    border: 1px solid #999999;
    display: table-cell;
    /*--    --*/
}

.aboutHead {
    /*font-family: verdana,arial,sans-serif;*/
    font-size: 11px;
    border-width: 1px;
    font-weight: bold;
    color: #ffffff;
    width: 325px;
    /*--    padding: 8px;
       border-style: solid;  --*/
    border-color: #666666;
    background-color: #3973ac;
}

.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}

.aboutTB {
    display: table-row-group;
    padding: 3px 10px;
}

.divImg {
    color: #000000;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

.ImgRow {
    display: table-row;
    align-content: center;
}

.Imgtd {
    border: 1px solid #999999;
    display: table-cell;
    text-align: center;
}

table.colortable {
    /*font-family: verdana,arial,sans-serif;*/
    font-size: 11px;
    color: #000000;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}

    table.colortable thead {
        border-width: 1px;
        font-weight: bold;
        padding: 8px;
        border-style: solid;
        border-color: #666666;
        background-color: #dae7f1;
    }

    table.colortable td {
        border-width: 1px;
        padding: 8px;
        border-style: solid;
        border-color: #666666;
        background-color: #dae7f1;
    }

.divTab {
    display: table;
    width: 100%;
    font-size: 11px;
    color: #000000;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}

.divTabBod {
    display: table-row-group;
}

.divTabRow, .divInvRow {
    border-width: 1px;
    display: table-row;
}

.divTabCell, .divInvCell {
    border: 1px solid #999999;
    display: table-cell;
    padding: 3px 10px;
}

.divTabHd {
    border: 1px solid #999999;
    display: table-cell;
    font-weight: bold;
    padding: 3px 10px;
}

.divInvTab {
    display: table;
    width: 50%;
    font-size: 11px;
    color: #000000;
}

.divInvRow {
    display: table-row;
}

.divInvCell {
    display: table-cell;
    padding: 3px 10px;
}

.cTable {
    display: table;
    width: 100%;
    /*font-family: verdana,arial,sans-serif;*/
    font-size: 11px;
    color: #000000;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}

.cTableHead {
    display: table-header-group;
    display: table-cell;
    padding: 3px 10px;
    border-width: 1px;
    font-weight: bold;
    padding: 8px;
    border-style: solid;
    border-color: #666666;
    background-color: #dae7f1;
}

.cTableBod {
    display: table-row-group;
}

.cRow {
    display: table-row;
}

.cTabletd {
    display: table-cell;
    padding: 3px 10px;
    border-width: 1px;
    font-weight: bold;
    padding: 8px;
    border-style: solid;
    border-color: #666666;
    background-color: #dae7f1;
}
/*--  Tables End  --*/
/*DNN Defaults*/
.dnnPrimaryAction {
    color: #efefef;
    !important;
}

.middot {
    font-weight: bolder;
    font-size: 100px;
}

/*Media Queries/ Responsive Styles*/
@media (max-width: 768px) {
    h2 {
        font-size: 25px;
    }

    h4 {
        font-size: 18px;
    }

    #left-col, #right-col {
        width: 100%;
        margin-right: 0;
    }

    .dnnMedia-Wrapper iframe {
        width: 100%;
        height: auto;
    }
    /*Navigation*/
    .menu {
        display: none;
    }

    .logo {
        float: none;
        width: auto;
        height: auto;
        line-height: 35px;
    }

        .logo img {
            height: 35px;
            width: auto;
        }

    nav {
        height: auto;
        min-height: 35px;
        position: static !important;
    }

    .btnMobileMenu {
        display: block;
    }

    nav.simpleNav, .simpleNav .menu {
        height: auto;
    }

    .showMobileNav {
        display: block;
    }

    .nav-thumbs {
        right: 10px;
    }
    /*END Navigation*/
    /*Footer*/
    #footer-social-icons {
        float: none;
        text-align: center;
        padding: 4px 0px 0px 0px;
    }
    #footer-logo {
        display: none;
    }
    /*END Footer*/
    /*Homepage*/
    #search-box {
        width: 98%;
        top: 20vh;
    }

        #search-box .searchInputContainer input {
            font-size: 1rem;
        }

    .top-banner {
        padding-top: 14px;
    }

    #home-content .section-content {
        position: relative;
        height: auto;
    }

    #main-search .section-content {
        position: absolute;
        height: auto;
    }

    #main-video {
        height: auto;
    }

    .dnnMedia-Wrapper {
        padding-bottom: 0;
        height: auto;
    }

        .dnnMedia-Wrapper iframe {
            position: relative;
        }
    .video-click {
        display: none;
    }
    #videos-wrap .section-content {
        position:absolute;
    }
    /*EndHomepage*/
    /*Interior Pages*/
    #page-content, #admin-content {
        padding-top: 0px;
    }

    aside#left-col {
        display: none;
    }

    .page-title {
        font-size: 1.3em;
    }

    .service-container, .issue-container {
        width: 97%;
    }
    /*END Interior Pages*/
}

@media (max-width: 1280px) {
    .ddlinks {
        width: 75%;
    }
}
