﻿
html {
    font-family: 'Segoe UI';
    line-height: 1.7;
    overflow-y: auto;
    background-color: #f2f2f2;
    width: 100%;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    text-rendering: optimizeLegibility;
    line-height: 16px;
    background-color: #f2f2f2;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/*HEADER*/
header {
    padding: 3px 0px 3px 0px;
    width: 100%;
    z-index: 102;
    background-color: #1c1c1c;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.headerFlex {
    display: flex;
    justify-content: space-between;
}

.headerBlock {
    display: inline-block;
}


.headerRightBtns {
    margin-right: 10px;
    margin-top: 4px;
    padding: 4px 4px 1px 4px;
}

header a {
    vertical-align: middle;
    display: inline-block;
    padding: 3px;
    cursor: pointer;
    border: 1px solid transparent;
}

.headerRightBtns a:hover {
    border: 1px solid gray;
}


/*NAV*/
#navExpandBtn {
    /*border: 1px solid gray;*/
    border-radius: 5px;
    padding: 4px 6px 1px 6px;
}

#navWindow {
    background-color: white;
    position: relative;
}

.navMenu {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    font-size: 16px;
    padding: 10px 0px 10px 0px;
}

.navMenuBlock {
    display: inline-block;
    width: 25%;
    margin-bottom: 5px;
}

.navMenuInner {
    padding: 0px 10px 0px 10px;
    margin-bottom: 15px;
    /*border-left: solid 1px lightgray;*/
}

.navMenuBlock a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 2px 3px 2px 5px;
    border-top: solid 1px transparent;
    border-bottom: solid 1px transparent;
    cursor: pointer;
}

    .navMenuBlock a:hover {
        border-top: solid 1px lightgray;
        border-bottom: solid 1px lightgray;
    }/*
    .navMenuItems{
        width:100%;
    }*/
.navMenuItems a {
    display: flex !important;
    flex-direction: row;
    width: 100%;
}

.navMenuThumbnail {
    width: 22px;
    display: inline-block;
    padding-right: 6px;
    margin-top: 1px;
}
.navLbl{
    flex:1;
}
.navMenuThumbnail img {
    height: 15px;
}

.navMenuBlock span {
    display: inline-block;
    vertical-align: middle;
    line-height: 18px;
}
/*
.navMenuInner img {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 5px 0px 0px;
}*/

.navMenuItems a:hover {
    color: dodgerBlue;

}

.navMenuHeader {
    font-weight: Bold;
    text-transform: Uppercase;
    font-size: 18px;
    padding: 5px 2px 8px 5px !important;
    cursor:default;
}


    .navCloseBtn {
        background-color: lightGray;
        padding: 8px 10px !important;
        display: block !important;
        position: absolute;
        right: 15px;
        top: 8px;
        font-size: 20px;
        cursor: pointer;
        color: black !important;
    }

    .navCloseBtn:hover {
        background-color: gold;
    }


/*MOBILE NAV*/
#mobileNav {
    font-size: 16px;
    width: 100%;
    padding: 5px 0px 15px 0px;
}

    #mobileNav a {
        text-decoration: none;
        color: black;
        display: block;
        padding: 12px 20px;
        cursor: pointer;
    }

.mobileNavMenuItems a:hover {
    animation: flash 0.40s forwards linear normal;
}

.mobileNavBlockHeader {
    display: flex !important;
    justify-content: space-between;
    font-weight: Bold;
    text-transform: Uppercase;
    font-size: 18px;
}

    .mobileNavBlockHeader:hover {
        background-color: gold;
    }

.mNavSelected {
    border-top: solid 1px gold;
    border-bottom: solid 1px gold;
    animation: flash 0.40s forwards linear normal;
}

@keyframes flash {
    0% {
        background: gold;
    }

    100% {
        background: transparent;
    }
}

.mobileNavBlock li {
    margin-left: 20px;
    border-top: solid 1px lightGray;
    border-bottom: solid 1px lightGray;
    display: block;
    margin-bottom: -1px;
}

.mobileNavBlock {
    padding: 0;
    margin: 0px 0px 0px -20px;
    list-style-type: none;
}

    .mobileNavBlock img {
        display: inline-block;
        vertical-align: middle;
        padding-right:5px;
    }
    .mobileNavBlock span {
        display: inline-block;
        vertical-align: middle;
    }

.mobileNavMenuItems {
    padding: 0;
    margin: 0px 0px 0px -20px;
    list-style-type: none;
}

    .mobileNavMenuItems li {
        background-color: #f0f0f0;
        display: none;
    }

    .mobileNavMenuItems a {
        padding-left: 40px !important;
        display: inline-block;
        vertical-align: middle;
    }
.navBlueColorText {
    font-weight: bold;
    color: deepskyblue !important;
}
.displayMobileHeader{
    display:none;
}
/*END MOBILE NAV*/
/*SEARCH*/
.searchBoxWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 8px 0px 8px 0px;
    border-top: solid 1px white;
    /*box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);*/
    border-bottom: 1px solid lightGray;
}

.searchBtn img {
    width: 25px;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 6px;
}

.searchBox {
    padding: 8px 3px 8px 3px;
    width: 300px;
    position: relative;
    border-color: rgb(0, 0, 0);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    border: none;
    border-width: 1px;
    border-style: solid;
    border-color: lightgray;
    color: #343434;
}

.searchBoxWrapper a {
    color: black;
    cursor: pointer;
    vertical-align: middle;
}
.searchBox:focus, input:focus{
    outline: none;
}


/*NOTIFICATION MENU*/
#notificationMenu {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 5px;
    z-index: 100100;
    max-width: 400px;
    width:100%;
}

.notificationWrapper {
    max-width: 500px;
    padding: 0px 0px 0px 0px;
    margin: 0 auto;
    background-color: white;
    font-size: 13px;
    position: relative;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

#notificationMenu ul {
    padding: 0;
    margin: 0px 0px 0px -20px;
    list-style-type: none;
}

#notificationMenu li {
    margin-left: 20px;
    padding: 8px 5px;
    display: block;
    border-bottom: solid 1px lightgray;
    
}

    
.nMenuActiveLink:hover {
    background-color: gainsboro !important;
    cursor: pointer;
}

    

.nBlockWrapper {
    display: flex;
    flex-direction: row;
}

.nBlockThumb {
    padding: 0px 10px 0px 5px;
}

.nBlockInfo {
    flex: 1;
}

    .nBlockInfo span {
        display: block;
    }

    .nBlockInfo a {
        color: black;
        font-weight: bold;
        text-decoration: none;
        text-transform: uppercase;
        border-top: solid 1px transparent;
        border-bottom: solid 1px transparent;
    }
        .nBlockInfo a:hover {
            color: #0062ff;
            border-top: solid 1px lightgray;
            border-bottom: solid 1px lightgray;
        }

.nBlockTimestamp {
    color: gray;
    /*
  color:dodgerblue;
  font-weight:bold;*/
}

.nBlockTimestampNew {
    color: #0062ff;
}

.nBlockThumbImg {
    border-radius: 25px;
    border-width: 1px;
    border-style: solid;
    border-color: #E9E7E7;
    margin: 0;
    display: block;
    background-size: cover;
    background-position: center;
    width: 40px;
    height: 40px;
}

.nBlockNotifyMoreLink {
    text-align: center;
    display: block;
}
/*ALERT WINDOW*/
.alertWindowTitle {
    /* border-bottom: 1px solid #dfdfdf; */
    /*height: 45px;
    line-height: 35px;*/
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 7px 36px 9px 5px;
    /*background-color: blue;*/
    vertical-align: middle;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
    #alertWindow:hover{
        background-color:lightgray !important;
    }
  .windowTitle {
        /* border-bottom: 1px solid #dfdfdf; */
        height: 45px;
        line-height: 35px;
        font-size: 16px;
        font-weight: 600;
        padding: 5px 36px 0px 10px;
        vertical-align: middle;
        border-color: #DFDFDF;
        position: relative;
        border-bottom: solid 1px gainsboro;
        white-space: nowrap;
        overflow: hidden;
        cursor: pointer;
    }


.alertLabel {
    background-color: rgba(0,0,0, 0.4);
    vertical-align: top;
    padding: 2px 8px 4px 2px;
    display: inline-block;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}

.alertLabelImg {
    padding: 0px 2px 0px 5px;
    vertical-align: middle;
    display: inline-block;
}

.windowTitle img,
.alertWindowTitle img,
.windowTitle span,
.alertWindowTitle span {
    display: inline-block;
    vertical-align: middle;
    text-shadow: 1px 1px 5px black;
}
.alertWindowTitleText {
    padding:0px 5px 0px 5px;
}
    /*ALERT WINDOW*/
    #alertWindow {
    position: relative;
    margin: 0px 0px;
}

.alertWrapper {
    
    padding: 0px 0px 0px 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    /* box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);*/
}

   

    .alertHeader {
    }
.alertTitle {
    font-size: 16px;
    font-weight: Bold;
    text-transform: uppercase;
}
.alertExpiresTime{

}

.alertHeaderLocationBtn {
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-top: solid 1px transparent;
    border-bottom: solid 1px transparent;
    margin-right:5px;
}
    .alertHeaderLocationBtn:hover {
        color: #0062ff;
        border-top: solid 1px lightgray;
        border-bottom: solid 1px lightgray;
    }
.alertChangeSettingsBtn {
    font-style: italic;
    text-transform: lowercase;
    font-weight: none;
    font-size: 12px;
    display: inline-block;
    margin-left: 3px;
}
    .alertChangeSettingsBtn:hover{

    }

.alertHeader {
    margin-bottom: 10px;
}

.alertColorBox{
    display:inline-block !important;
    vertical-align:middle;
    height:15px;
    width:15px;
    margin:0px 5px 0px 0px;
}

.alertSummary {
    font-style: italic;
    padding: 5px 10px 5px 10px;
    margin-top: 8px;
    border-top: solid 1px gray;
}

.alertBlockInfo {
    flex: 1;
    padding: 2px;
    border: solid 1px transparent;
}

    .alertBlockInfo span {
        display: block;
    }

    .alertBlockInfo a {
        color: black;
        text-decoration: none;
      
    }

.alertSummary a {
    color: #0062ff;
    font-weight: Bold;
    text-decoration: none;
    text-transform: uppercase;
}

.alertLocationHeader {
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

#alertWindowList {
    padding: 0px 5px 0px 5px;
    margin-bottom: 3px;
    display: inline-block;
    width: 100%;
}
#alertWindow ul {
    padding: 0;
    margin: 0px 0px 0px -20px;
    list-style-type: none;
}

#alertWindow li {
    margin:2px;
    padding: 8px 5px;
    display: block;
    border: solid 1px transparent;
    border-top: solid 1px lightgray;
    background-color:white
}

    #alertWindow li:hover {
        cursor: pointer;
        border:solid 1px lightgray;
    }

.nwsAlertExpandBtn {
    padding: 5px;
    margin: 5px 10px 5px 10px;
    border: solid 1px transparent;
}
.nwsAlertExpandBtn:hover {
    border: solid 1px lightgray;
}

 

.alertSeeMoreLink {
    /* padding:5px;*/
    padding: 0px 5px 0px 5px;
    display: inline-block;
    border: solid 1px transparent;
    border-radius: 4px;
}

    .alertSeeMoreLink:hover {
        background-color: gold;
        border: solid 1px gray;
    }
.alertCloseBtn {
    border:solid 1px transparent;
    display: block !important;
    position: absolute;
    right: 12px;
    padding:5px;
    top: 3px;
    font-size: 20px;
    cursor: pointer;
    color: black !important;
}

    .alertCloseBtn:hover {
        font-size: 24px;
    }



/*LOADING SCREEN*/
/*
#mask,#mask2 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    z-index: 1020;
    opacity: .6;
}
#mask2 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    z-index: 1020;
    opacity: .6;
}
#mask_Window, #mask2_Window, #maskLoader_Window, #maskLoader_Window2 {
    width: 500px;
    overflow: hidden;
    margin-left: -250px;
    margin-top: -125px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100305;
    color: #FFFFFF;
    text-align: center;
}
#mask2_Window {
    width: 500px;
    overflow: hidden;
    margin-left: -250px;
    margin-top: -125px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100305;
    color: #FFFFFF;
    text-align: center;
}

.loader {
    border: 8px solid #f3f3f3; 
    border-top: 8px solid rgb(252,252,50); 
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 8px;
    margin: 0 auto;
    position: relative;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/*LOADING SCREENS*/
#loadingScreenMask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    z-index: 1020;
    opacity: .6;
    /*background:linear-gradient(rgba(0, 0, 0, 0.7));*/
}

#loadingScreen {
    width: 500px;
    overflow: hidden;
    margin-left: -250px;
    margin-top: -125px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100305;
    color: #FFFFFF;
    text-align: center;
}

#loadingSpinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid rgb(252,252,50); /* Yellow */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 8px;
    margin: 0 auto;
    position: relative;
    animation: spin 2s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loadingScreenText {
    padding: 12px;
}



.ui-menu-item {
   padding:10px;
    font-size: 14px;
        background-color: white;
        z-index: 10;
}

.width {
    margin: 0 auto;
    width: 900px;
    position: relative;
    top: 0px;
}





/*FOOTER*/
footer {
    flex-shrink: 0;
    font-size: 12px;
    position: relative;
    padding: 5px;
    background-color: #1c1c1c;
    clear: both;
    color: white;
    text-align: center;
    box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.footerWrapper {
    /*
    display: flex;
    justify-content: center;*/
}

.footerBlock {
    vertical-align: top;
    color: white;
    text-align:center;
}

footer ul {
    padding: 0;
    list-style-type: none;
}

footer li {
    display: block;
    position: relative;
    margin: 0 auto;
}

.footerImg {
       display: block;
     margin-left: 0px;
    padding: 3px;
    width: 30px;
}

footer a {
    text-decoration: none;
    color: #00b1f5;
    display: block;
}
.socialMediaInnerBlock a {
 display:inline-block;
}
.siteInfo {
    background-color: #1c1c1c;
    color: white;
    text-align: center;
   /* padding: 10px;*/
    font-size: 12px;
    font-style: italic;
}

table {
    padding: 0px;
    /*margin: 0 auto;*/
}
td {
    padding: 0px 3px 0px 2px;
    margin: 0px;
    z-index: 1000;
}



.social {
}

.social a {
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    display: inline-block;
}


/* Variant*/
.nav_sub  {
    margin: 0px 0px 0px 0px;
}
.searchWrapper {
    height: 40px;
    position: absolute;
    right: 20px;
    top: 3px;
}
.imgSearch {
       position: absolute;
    top: 0px;
    display: block;
    border-left-color: black;
    height: 20px;
    width: 20px;
    right: 5px;
    cursor: pointer;
    padding: 5px;
}


.subNavWrapper {
    display: flex;
    flex-flow: row wrap;
    background-color: darkred;
    color: white;
    padding: 5px 0px 5px 0px;
}

    .subNavWrapper a {
        display: inline-block;
        padding: 5px;
        margin-left: 10px;
        text-align: center;
        text-decoration: none;
        color: white;
    }

        .subNavWrapper a:hover {
            display: inline-block;
            padding: 5px;
            margin-left: 10px;
            text-align: center;
            text-decoration: none;
            color: #fffa00;
        }

#pageSelected {
    text-decoration: underline;
    font-weight: bold;
}

.loginBarItem img:hover {
    background-color:#00b1f5;
}


/*MOBILE NAV*/
 .mobileVisible {
        display:none;
    }


/*---------------------------------CONTENT STRUCTURE & LAYOUTS----------------------------------------*/
.content {
    flex: 1 0 auto;
}
.content_Headline {
    padding: 15px 0 20px 0;
    margin-top: 5px;
    margin-right: 3px;
    font-weight: 500; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcfc32+0,f9f927+94,d8d81e+100 */; /* Old browsers *//* FF3.6-15 */;/* Chrome10-25,Safari5.1-6 */; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */; /* IE6-9 */;
    border-radius: 5px 5px 0px 0px;
    color: #000000;
    font-size: 18px;
}
        
/*BIG LEFT TWO RIGHT LAYOUT*/
.feature_Block {
    text-decoration: none;
    background-size: cover;
    color: black;
    background-position: center;
    vertical-align: top;
    width: 66.33%;
    height: 400px;
    float: left; 
   /* border-radius: 0px 0px 20px 0px;*/
}

    .feature_Block_snip {
    margin: 0px 0px 0px 0px;
    padding: 20px 0px 20px 0px;
    text-align: center;
    position: relative; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.61+0,0.6+100 */;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.61) 0%, rgba(255,255,255,0.6) 100%); /* FF3.6-15 */;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.61) 0%,rgba(255,255,255,0.6) 100%); /* Chrome10-25,Safari5.1-6 */;
    background: linear-gradient(to bottom, rgba(255,255,255,0.61) 0%,rgba(255,255,255,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9cffffff', endColorstr='#99ffffff',GradientType=0 ); /* IE6-9 */;
    font-size: large;
    width: 100%;
    top: 30%;

} .feature_Block_snip:hover {
    margin: 0px 0px 0px 0px;
    padding: 20px 0px 20px 0px;
    text-align: center;
    position: relative;
    background-color:white;
    width: 100%;
    top:30%;
    font-weight:700;
    font-size: x-large;
}

.feature_Block a {
    text-decoration:none;
    color:black;
}
.secondary_Block {
    background-size: cover;
    text-decoration: none;
    color: black;
    background-position: bottom;
    vertical-align: top;
    width: 33.33%;
    height: 200px;
    float: left;
    background-image: url('../IMAGES/IMG_7224.jpg');
    bottom: 0px;
    /*border-radius: 0px 0px 20px 0px;*/
}
.secondary_Block_snip {
    margin: 0px 0px 0px 0px;
    padding: 10px 0px 15px 0px;
    text-align: center;
    position: relative; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.61+0,0.6+100 */;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.61) 0%, rgba(255,255,255,0.6) 100%); /* FF3.6-15 */;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.61) 0%,rgba(255,255,255,0.6) 100%); /* Chrome10-25,Safari5.1-6 */;
    background: linear-gradient(to bottom, rgba(255,255,255,0.61) 0%,rgba(255,255,255,0.6) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9cffffff', endColorstr='#99ffffff',GradientType=0 ); /* IE6-9 */;
    font-size: large;
    width: 100%;
}
.secondary_Block_snip:hover {
    margin: 0px 0px 0px 0px;
    padding: 10px 0px 15px 0px;
    text-align: center;
   background-color:white;
    font-size: x-large;
    width: 100%;
     font-weight:700;
}
.secondary_Block a {
    text-decoration:none;
    color:black;
}
.overlay {
    height:100%;
    width:100%;
}
    .overlay:hover {
        /*background:linear-gradient(rgba(0, 0, 0, 0.7));*/
         height:100%;
        width:100%; 
       /*background:rgba(0, 0, 0, 0.3);*/
         border-radius: 0px 0px 20px 0px;
    }
    .background_dim {
        height:100%;
    width:100%;

}
.background_dim:hover {
     /*background:linear-gradient(rgba(0, 0, 0, 0.7));*/
         height:100%;
        width:100%; 
       background-color: #F2F2F2;

}


.qckForecastWrapper {
    padding: 2px 5px 8px 5px;
    position: relative;
    height: 20px;
    font-size: 12px;
}

.qckForecastBlock {
  padding:0px 15px 0px 5px;
    display: inline-block;
    float: left;
    height: 20px;
    vertical-align: middle;
    color: #FFFFFF;
    position: relative;
    text-decoration: none;
        line-height: 20px;
        transition:0.1s;
}
    .qckForecastBlock:hover {
     
        color:gold;
    }

    .qckForecastBlock a {
        outline: none;
    }

    .qckForecastBlock img {
        width: 20px;
        padding: 2px;
        display: inline-block;
        vertical-align: middle;
       
    }

.qckTemp {
    vertical-align: middle;
    font-weight: bold;
    font-size: 12px;
}

.qckLocation {
    vertical-align: middle;
}


.storyHeaderSnip {
    padding: 3px;
    color: #808080;
    font-size: 12px;
}
.storyHeaderTitle {

    font-weight:600;
}
  .sectionTitle {
    margin: 2px;
    padding: 5px;
    font-size: 14px;
    padding-left: 8px;
    clear: both;
}
/*THREE COLUMNS - SUGGGESTIONS*/
.three_Contain {
}

.block {
    vertical-align: top;
    float: left;
    position: relative;
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.19);
}
.three {
    padding: 10px 0px 10px 0px;
    width: 33%;
}
.content_padLeft {
    padding-left: 15px;
}

.blockWrapper {
}

.blockInfoWrapper {
    padding: 3px;
    margin: 2px;
    padding-top: 0px;
}

.blockLeft {
    float: left;
    width: 25%;
}

.blockMid {
    float: left;
    vertical-align: top;
    width: 50%;
}
.blockCenter {
    vertical-align: top;
    max-width: 900px;
    margin: 0 auto;
}
.blockCenterSmall {
    vertical-align: top;
    max-width: 700px;
    margin: 0 auto;
}
    .blockRightHalf {
    float: left;
    vertical-align: top;
    width: 75%;
}

.blockRight {
    float: left;
    vertical-align: top;
    width: 25%;
}







/*MISC*/
.bodySpace {
    padding: 0px 0 30px 0;
}

u, ins {
    text-decoration-skip-ink: none;
}

input[type=checkbox] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(1.5) /*E */
    -moz-transform: scale(1.5);
    /* FF */
    -webkit-transform: scale(1.5);
    /* Safari and Chrome */
    -o-transform: scale(1.5);
    /* Opera */
    padding: 5px;
    cursor: pointer;
}

/*-------------------------------------INSTRUCTIONS-------------------------*/

.instructionHolder {
  position: absolute;
    top: 0px;
    right: 10px;
    left: 10px;
    margin: 10px;
    padding: 30px;
    background-color: white;
    border-radius: 5px;
    max-width: 500px;
    margin: 0 auto;
    z-index: 100305;
    cursor: default;
}

.instructionWrapper {
  width: 100%;
 
}

.instructionList {
  padding-left: 20px;
}

.instructionList li {
  padding: 8px 0px 8px 0px;
  
}

.instructionCloseButton {
 position:absolute;
  right: 20px;
  top: 20px;
  display: block;
  padding: 10px;
  border-radius: 5px;
  background-color: lightGray;
  cursor: pointer;
}

.instructionCloseButton:hover {
  background-color: gold;
}

.instructionButtonHolder {
  text-align: center;
  padding: 10px;
}

.instructionButton {
    padding: 10px;
    background-color: gold;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: 80%;
    display: block;
    margin: 0 auto;
    font-size: 18px;
}

.instructionButton:hover {
  background-color: lightGray;
}

.membershipOnlyHolderInline {
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    border: solid 1px gainsboro;
    max-width: 500px;
    margin: 15px auto;
    z-index: 1110001;
    cursor: default;
}

.membershipOnlyWrapperInline {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    vertical-align: middle;
}

.membershipOnlyTitle {
    padding: 5px;
    background-color: gold;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}

    .membershipOnlyTitle img, .membershipOnlyTitle span {
        vertical-align: middle;
        display: inline-block;
    }

.bannerImgInline {
    width: 100%;
    object-fit: cover;
    display: block;
    border-bottom-style: solid;
    border-bottom-width: 5px;
    border-color: gold;
}

/*-----------------------------------------STORIES--------------------------------------------*/
.story {
    display: block;
    vertical-align: top;
    float: left;
    width: 900px;
}
.rightBar {
    vertical-align: top;
    text-decoration: none;
    display: block;
    color: black;
    width: 300px;
    float: left;
}

.dateTime {
    font-weight: normal;
    padding: 3px;
}
.headline {
    padding: 5px 5px 0px 5px;
    font-weight: 600;
    vertical-align: middle;
    line-height: 30px;
    width: 100%;
    font-size: 16px;
    white-space: nowrap;
}
    .headline a {
    text-decoration: none;
    color: #666666;
    padding-left: 5px;
    display: block;
}
.location {
    padding: 3px;
    border-color: #808080;
    font-weight: 300;
}
.author {
    font-weight: normal;
    padding: 3px;
    font-size:12px;
}
.descrip {
    line-height: 20px;
    padding: 15px 5px 15px 5px;
    width: 98%;
}
.thumbnail img {
    padding: 3px 3px 3px 3px;
    border-radius:10px 10px 10px 10px;
}

.c_Social {
    vertical-align: top;
    width: 40%;
    height: 100%;
    float: left;
    bottom: 0px;
}

.shoutout {
    background-color: #F2F2F2;
    margin-bottom: 1px;
}

.sub_header {
    border-bottom: 1px;
    padding: 30px 5px 0px 10px;
    font-weight: 600;
    vertical-align: middle;
    line-height: 30px;
    font-size: 16px;
    white-space: nowrap;
    border-bottom-color: #C0C0C0;
    border-bottom-style: solid;
}
    .sub_header a {
    text-decoration: none;
    color: #666666;
    padding-left: 5px;
    display: block;
}

.pageControlWrapper {
    font-size: 12px;
    padding: 5px;
    position: relative;
}

.pageControlBlock {
    right: 0px;
    padding: 5px;
    display: block;
}

    .pageControlBlock a {
        text-decoration: none;
        display: inline-block;
        padding: 5px 10px 5px 10px;
        color: black;
        margin-right: 5px;
        cursor: pointer;
        background-color: white;
        border: solid 1px gainsboro;
    }
        .pageControlBlock a:hover {
            font-weight: bold;
            background-color: gold;
        }

.pageSelected {
    font-weight: bold;
    color: blue;
    text-decoration: underline;
    background-color: gold !important;
}

/*-------------------------------------ACCOUNT----------------------------------*/
.td_a {
    padding: 3px 5px 3px 0px;
    text-align: right;
    padding-right: 10px;
    font-weight:bold;
    max-width:300px;
    width:50%;
    color: gray;
    /*border-bottom: 1px solid gainsboro;*/
}
.td_b {
    padding: 3px 5px 3px 0px;
    /*border-bottom: 1px solid gainsboro;*/
}
.td_c {
    width:70%;
    text-align:right;
}
.td_d {
}
.td_e {
    width:20%;
    text-align:right;
}
.td_f {
     width:25%;
}

.styleA {
    margin-bottom: 3px;
    background-color: #f2f2f2;
}
    .styleA:hover {
         background-color:white;
    }
.chkBoxHorizontal {
}
.saveChanges {
    display:block;
    clear:both;
}
.wrapperMid {
    margin: 2px;
    padding: 0px 0px 0px 3px;
    margin-right:5px;
    position:relative
}
.wrapper {
    margin: 2px;
    padding: 0px 3px 0px 3px;
}

/*-------------------------------------IMAGES----------------------------------*/
#logo {
    height: 50px;
}
img {
    margin: 0px;
}
.banner {
    max-width: 100%;
    height: auto;
    margin:0 auto;
    width: auto\9; /* ie8 */
}
.profile {
    width: 50px;
    border-radius: 8px 8px 8px 8px;
    height: 50px;
}
.report_img {
    margin: 0 auto;
    width: 40px;
    display: block;
}
.social img {
}

/*-------------------------------------VIDEO----------------------------------*/
video::-internal-media-controls-download-button {
    display:none;
}

video::-webkit-media-controls {
    overflow: hidden !important
}
video::-webkit-media-controls-enclosure {
    width: calc(100% + 32px);
    margin-left: auto;
}


/*-----------------------------------------REPORTS--------------------------------------*/

.reports {
     line-height: 15px;
}
    .reports table{
        height:50px;
        text-decoration:none;
    }
    .reports a {
    text-decoration: none;
    color: black;
}
    
   
.mag {
    font-size: 12px;
    text-align: center;
    line-height: 12px;
    position: relative;
}

/*------------------------------------------HEADERS---------------------------------------*/
h1 {
    padding-left: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 500;
    line-height: 33px;
}
h2 {
    font-size: 18px;
    margin: 8px 5px 10px 8px;
    padding-left: 0px;
}
h3 {
    padding-left: 0px;
    padding: 0 0 0 0;
    margin: 10px 0 10px 3px;
    font-size: 14px;
}
h4 {
     padding-left: 0px;
      font-size:12px;
}




/*----END HEADER------*/


.commentBlockHome {
    background-color: rgba(0, 0, 0, 0.7);
    display: block;
    color: white;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 5px 5px;
}

    .commentBlockHome img {
        width: 15px;
        height: 15px;
    }

.memberOnlyBlock {
    background-color: rgba(0, 0, 0, 0.7);
    display: block;
    color: black;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 10px;
}

    .memberOnlyBlock img {
        display: inline-block;
        vertical-align: middle;
        margin: 5px;
        width: 25px;
        vertical-align: middle;
    }

/*------------------------------------------MISC---------------------------------------*/
hr {
    clear:both;
     border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.hideEarly {
       display: inline-block;
    vertical-align: middle;
    }

.shift {
    position:initial;
}
.toolbar {
    padding: 10px;
    border-radius: 0px 30px 30px 0px;
    display: none;
}
.toolbar img{
    padding:5px,0px,5px,0px;

}
.social_Button{

}
 .favButton {
     margin-left:2px;
          cursor: pointer;
      }
.txt_box {
    margin-left: 5px;
    margin-right: 5px;
    margin: 10px 3px 5px 3px;
    border: 0px none;
    padding: 3px;
    resize: vertical;
    font-family: "font-family: 'Lato'", sans-serif;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
}
/*.txt_box:focus {outline: none; }*/

.share_button {
    padding: 5px;
    border: 0px none;
    margin: 3px;
}
.noline {
    text-decoration: none;
}

.seeMore {
    float:right; 
    padding:20px;
}
.btn {
    padding: 5px;
    margin: 3px;
    border: none;
}

 .pad {
    padding: 8px;
}
.snip {
    font-size: 12px;
    padding: 8px 8px 0px 0px;
    color: gray;
    font-style: italic;
}
.error {
    color:red;
}
.success {
    background-color: green;
    color:white;
    font-weight: bold;
    text-transform:uppercase;
}
.small {
     font-size: 12px;
}

.whiteBack {
    background-color:white;
}

.ui-menu-item-wrapper{
    padding:8px;
   z-index: 10;

}
.ui-menu-item-wrapper:focus{
    padding:8px;
    background-color:#EDEDED

}
.windowContents {
    padding: 10px 15px 10px 15px;
}

.windowBtnHolder {
    border-top: solid 1px gainsboro;
    padding: 10px 15px 10px 10px;
}

.closeButton {
  /*  color: #666;*/
  color: white;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 25px;
     width: 45px;
    height: 45px;
  text-align: center;
  font-size: 28px;
  background: 0 0;
  background-color:red;
  border: none;
  cursor: pointer;
  border-radius:5px;
  font-weight: 600;
  z-index: 100205;
  text-decoration:none;
}
.closeButtonComposer {
  /*  color: #666;*/
  color: black;
  padding: 0;
  position: absolute;
    top: 2px;
    right: 5px;
  width: 34px;
  height: 34px;
  text-align: center;
  font-size: 28px;
  background: 0 0;
  background-color:lightgray;
  border: none;
  cursor: pointer;
  border-radius:5px;
  font-weight: 600;
  z-index: 1000205;
}

    .closeButton:hover,.closeButtonComposer:hover {
        background-color: #cecece;
    }

.loginText {
    color: #000000;
    text-decoration: none;
    outline: none;
}
.logoutText {
    text-decoration: none;
    color: red !important;
}  

.tagLink {
    cursor: pointer;
    color:#00b1f5;
    font-weight:bold;
    text-decoration:none;
    display:inline;
}

    .tagLink:hover {
        cursor: pointer;
        font-weight: bold;
        color:black;
        text-decoration: none;
    }

.tagLink:visited {
    cursor: pointer;
    font-weight:bold;
    color:#00b1f5;
    text-decoration:none;
}
.hyperlinkStyle {
    cursor: pointer;
    color: #00b1f5;
    text-decoration: none;
}
.hyperlinkStyle:visited {
    cursor: pointer;
    color: #00b1f5;
    text-decoration: none;
}


.httpLink{
      cursor: pointer;
    color:#00b1f5;
    font-weight:bold;
     text-decoration:none;
}
.httpLink:visited{
      cursor: pointer;
    color:#00b1f5;
    font-weight:bold;
     text-decoration:none;
}
.tagBlockWrapper {
    padding: 2px 10px 2px 10px;
    font-size: 10px;
}

.tagBlock {
    display: inline-block;
    color: #808080;
    text-decoration: none;
    cursor: pointer;
    padding: 6px 10px 6px 10px;
    font-size: 14px;
    background-color: #ebebeb;
    margin-right: 5px;
}
.tagBlock:hover {
    display: inline-block;
    color: rgb(0, 0, 0);
    text-decoration:none;
    cursor: pointer;
     padding: 6px 10px 6px 10px; 
    font-size: 14px; 
    background-color: #ebebeb;
}

   /*FILTER BAR*/
.filterBar {
    margin: 0 auto;
    display: block;
    font-size: 12px;
}

    .filterBar button {
    vertical-align: middle;
    padding: 4px;
    font-size: 12px;
    display: inline-block;
    text-decoration: none;
    line-height: normal;
    word-wrap: normal;
    white-space: nowrap;
}

.downArrow {
    margin-left: 5px;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f00;
    display: inline-block;
    margin-top: 0px;
}

#filterOptionsWrapper {
    padding: 5px 5px 5px 0px;
}

.filterOptionsBlock {
    background-color: #FFFFFF;
}

    .filterOptionsBlock td {
        padding: 5px;
    }

.refreshButton {
    padding: 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    color: #FF0000;
    font-weight: bold;
}



/*NEW MEMBERS ONLY*/

.membershipMask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    z-index: 110000;
    opacity: .8;
    display:none;
}
.membershipOnlyHolder {
    position: fixed;
    top: 120px;
    right: 10px;
    left: 10px;
    margin: 10px;
    padding: 0px 0px 20px 0px;
    background-color: white;
    border-radius: 5px;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1110001;
    cursor: default;
    display:none;
}

.membershipOnlyWrapper {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    vertical-align: middle;
}

.memberOnlyHeadLeft {
    width: 25%;
    display: block;
}

.memberOnlyHeadRight {
    width: 75%;
    display: block;
    height: 100%;
}

.memberOnlyHeadLeft img {
    width: 100%;
    object-fit: cover;
    max-width: 50px;
    margin: 4px auto;
    display: block;
}

.memberOnlyHeadRight div {
    display: block;
    vertical-align: middle;
    margin: 0 auto;
    padding-top: 6px;
}

.bannerImg {
    width: 100%;
    object-fit: cover;
    display: block;
    border-bottom-style: solid;
    border-bottom-width: 5px;
    border-color: gold;
    border-radius: 5px 5px 0px 0px;
}

.membershipBenefitHolder {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    padding: 15px 15px;
}

.benefit {
    display: block;
    width: 50%;
    text-align: center;
}

    .benefit i {
        padding: 5px;
    }

    .benefit div {
        padding: 10px;
        color: gray;
        font-weight: 600;
    }

    .benefit img {
        width: 100%;
        object-fit: cover;
        margin: 0 auto;
        display: block;
        width: 50px;
    }

/*------------------------------------INTERMEDIATE DEVICES--------------------------------- */
@media only screen and (max-width: 1200px) {

    .width {
        margin: 0 auto;
        width: 900px;
        position: relative;

    }

    .story {
        vertical-align: top;
        float: left;
        width: 646px;
        margin:2px;
    }

    .rightBar {
        vertical-align: top;
        text-decoration: none;
        color: black;
        width: 246px;
        margin:2px;
        float: left;
    }
}
/*------------------------------------MOBILE DEVICES--------------------------------- */
@media only screen and (max-width: 900px) {
        

    .width {
        margin: 0 auto;
        width: 100%;
        position: relative;
    }

    .social {
        display: none;
    }

    .story {
        vertical-align: top;
        width: 100%;
        display: inline-block;
    }

    .rightBar {
        vertical-align: top;
        text-decoration: none;
        color: black;
        width: 100%;
        padding: 5px;
    }

    .hideEarly {
        display: none;
    }

    #logo {
        height: 70px;
       
    }


    .qckForecastBlock:hover {

        vertical-align: middle;
        position: relative;
        text-decoration: none;
        color: yellow;
    }



    .shrink {
        width: 0%;
    }

  
    .feature_Block {
        background-position: top;
        vertical-align: top;
        width: 100%;
        height: 400px;
        display: inline-block;
        background-image: url('../IMAGES/08153.jpg');
    }

    .qckForecastWrapper {
        position: relative;
        /* top: 50px;*/
        background-color: #1c1c1c;
    }


    .secondary_Block {
        vertical-align: top;
        width: 100%;
        display: inline-block;
        height: 300px;
        float: left;
    }

    .toolbar {
        display: none;
    }

    .left {
        width: 100%;
    }

    .right {
        width: 100%;
    }

    .siteInfo {
        color: white;
        text-align: center;
        /*padding: 10px;*/
    }
    .block {
        vertical-align: top;
        width: 100%;
        display: inline-block;
            position: relative;
    }

    .nav_sub_li {
        width: 100%;
        display: block;
    }

    .blockLeft {
        width: 100%;
    }

    .blockMid,.blockCenter,.blockCenterSmall {
        width: 100%;
    }

    .blockRightHalf {
        width: 100%;
    }

    .blockRight {
        display: block;
        width: 100%;
    }

    .wrapper {
        margin: 0px;
        padding: 0px 5px 0px 5px;
    }

    .wrapperMid {
        margin: 0px;
        padding: 0px;
    }

    .subNavWrapper {
        display: flex;
        flex-direction: column;
        background-color: darkred;
        color: white;
        width: 100%;
        padding: 5px 0px 5px 0px;
    }

        .subNavWrapper a {
            display: inline-block;
            padding: 5px;
            text-align: center;
            text-decoration: none;
            color: white;
        }

   
    h1 {
    padding-left: 10px;
}

}

@media only screen and (max-width: 700px) {

    .hideHeader {
        display: none;
    }
    .displayMobileHeader {
        display: block;
    }
}

    /*------------------------------------MOBILE DEVICES--------------------------------- */
    @media only screen and (max-width: 600px) {

        .hide {
            display: none;
        }

        .mobileVisible {
            display: block;
        }

        .shift {
            position: absolute;
        }

        .searchBox {
            width: 230px;
        }

        .footerWrapper {
            /* display: flex;
            justify-content: center;
            flex-direction: column;*/
        }

        .footerBlock {
            text-align: center;
            margin: 0 auto;
            width: 100%;
        }

        .footerImg {
            display: block;
            margin-left: auto;
            margin-right: auto;
            padding: 3px;
            width: 30px;
        }

        .hideCWX {
            display: none;
        }

        h1 {
            padding-left: 10px;
            font-size: 24px;
            font-weight: 500;
            line-height: 28px;
        }
        h2{
            text-align:center;
        }
    }