body{
    background-image: url(../images/137-bg.gif);
    background-repeat: repeat;
    background-attachment: fixed;
}
.wrapper{
    width: 100%;
}
/** Upper Menu **/
.m-wrapper{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    border-style: solid;
    border-color:#50bfff;
    border-width: 5px;
    border-radius: 20px;
    min-width: 250px;
    max-width: 350px;
}
/** Main Container **/
.c-wrapper{
    width: 80%;
    max-width: 1000px;
    background-color:white;
    border-style: double;
    border-width: 9px;
    border-color: #50bfff;
    border-radius: 55px;
    padding: 20px 20px 40px 20px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
}
/** Top Menu Buttons **/
.button{
    border: 2px solid #0707aa;
    background-color: #eeeeee;
    font-size: .9rem;
    color: #0707aa;
    text-decoration: none;
    transition: 300ms ease-in-out;
    padding: 2px 15px 2px 15px;
}
.btn{
    border-color: #0707aa;
    color: #0707aa;
}
.btn:hover, btn:focus{
    background-color: #73f199;
    border-color: #2911b1;
    border-radius: 20px;
    border-width: 2px;
    color: #ff0000;
    font-weight: bold;
}
/** 
.button-lnk2 {
    border: 3px solid;
    background-color: #ffffff;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    transition: 500ms;
}
.btn-lnk2 {
    border-color: #0000ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 275px;
    text-align: center;
    margin: 2px 2px 2px 2px;
    vertical-align: middle;
    color: #000000;
}
.btn-lnk2:hover {
    background-color: #ece916;
    border-color: #ff0000;
    border-radius: 0px;
    border-width: 3px;
    color: #000;
    font-weight: bold;
}
.btn-lnk2:active {
    background-color: #ff0000;
    border-color: #000000;
    border-radius: 0px;
    color: #ffffff;
    font-weight: bold;
    transition: none;
}
**/
/** Buttons for Local Links **/
.button-loco{
    border: 2px solid #079107;
    border-radius: 20px;
    background-color: #ffff00;
    font-size: 1.2rem;
    color: #111cb6;
    text-decoration: none;
    font-weight: lighter;
    transition: 300ms ease-in-out;
    margin: 5px 5px 5px 5px;
}
.btn-loco{
    border-color: #555a9b;
    font-weight: lighter;
    color: #111cb6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 275px;
    text-align: center;
    margin: 5px 5px 5px 5px;
}
.btn-loco:hover, btn:focus{
    background-color: #1c07db;
    border-radius: 0px;
    border-color: #e00f9b;
    border-width: 3px;
    color: #ffffff;
    font-weight: bold;
    margin: 5px 5px 5px 5px;
}
.btn-loco:active {
    background-color: #ff0000;
    border-color: #000000;
    border-radius: 0px;
    color: #ffffff;
    font-weight: bold;
    transition: none;
}
/** Buttons for Non-Local Links **/
.button-non{
    border: 2px solid #0707aa;
    border-radius: 20px;
    background-color: #cccccc;
    font-size: 1.2rem;
    font-weight: lighter;
    color: #0707aa;
    text-decoration: none;
    transition: 300ms ease-in-out;
    padding: 2px 15px 2px 15px;
    margin: 5px 5px 5px 5px;
}
.btn-non{
    border-color: #0707aa;
    font-weight: lighter;
    color: #0707aa;
    margin: 5px 5px 5px 5px;
}
.btn-non:hover, btn:focus{
    background-color: #ffff00;
    border-radius: 0px;
    border-color: #2911b1;
    border-width: 3px;
    color: #0000ff;
    margin: 5px 5px 5px 5px;
    font-weight: bold;
}

.txtcent{
    text-align: center;
}
.margtb{
    margin: 2.5px 0px 2.5px 0;
}
.cent{
    text-align: center;
}
.loco{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.nonloco{
    display: flex;
    flex-wrap: wrap;
}
/** HR Styles **/
.h-85blu-a {
    width: 85%;
    border: none;
    background-color: #12abfc;
    height: 2px;
    margin: 20px auto 20px auto;
}
.h-100blu-b {
    width: 100%;
    border: none;
    background-color: #12abfc;
    height: 3px;
    margin: 5px 0px 5px 0;
}
@media screen and (max-width: 600px){
    body {
        background: none;
        background-color: gray;
    }
    .c-wrapper{
        width: 90%;
        padding: 5px;
    }
} 