/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* || GLOBAL CSS */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

body {
    /* BACKGROUND */
    background: url(http://spirittamer.com/DayBlurTop.png), url(http://spirittamer.com/DayBlurMid.png), url(http://spirittamer.com/DayBlurBack.png), #ADE4F6;
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-attachment: fixed;
    background-position: left, left, left;

    /* GLOBAL NAV MARGIN */
    margin: 0px 0px;
}
* {box-sizing: border-box;}

.float-left {float: left;}
.float-right {float: right;}

/* MOBILE PHONES */
@media only screen and (max-width: 768px) {
  body {
    margin: 0px;
  }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* || TYPOGRAPHY */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

body {
    /* GLOBAL FONT */
    font-family: Verdana;
    color: #222;
}
.SmTxt {
    font-size: 10px;
}
h1, p {padding: 0px 10px;}
a {text-decoration: none;}

.content-header {
    font-family: "Handlee", cursive;
    color: #073029;
    font-weight: bold;
    font-variant: small-caps;
    padding: 0px;
    margin: 0px;
    border-top: 5px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(7, 48, 41,0), rgba(7, 48, 41,0.5), rgba(7, 48, 41,0));
    border-image-slice: 1;
}
[class*="alert-"] {
    display: block;
    margin: 20px auto;
    text-align: center;
    padding: 5px;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* || NAVIGATION */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

#navbar {
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 10;
}
#navbar ul {
    list-style-type: none;
    margin: 5px auto;
    padding: 0px;
    overflow: hidden;
    background: rgba(225, 233, 227, 0.95);
    width: 70%;
    border-radius: 15px 4px 15px 4px;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}
#navbar ul li {
    height: 50px;
    vertical-align: middle;
}
#navbar ul li .navlink {
    display: table-cell;
    color: #073029;
    text-align: center;
    padding: 0px 16px;
    vertical-align: middle;
    height: 50px;
    text-decoration: none;
}
.expandnav {
    padding: 0px 5px !important;
    color: #D6FBF7;
}
#navbar ul li .navlink:hover {
    background: #67B847;
}
#navbar ul li .leaf {
    line-height: 40px;
    margin: 5px 5px;
    padding: 0px 15px;
    background: #30BF53;
    border-radius: 15px 4px 15px 4px;
}
.logolink {
    display: table-cell;
    color: #073029;
    text-align: center;
    padding: 0px 10px;
    vertical-align: middle;
    height: 50px;
    text-decoration: none;
}
.logolink #logo {
    height: 50px;
}

/* MOBILE PHONES */
@media only screen and (max-width: 768px) {
  #navbar ul {width: 95%;}
  #navbar {
    top:unset;
    bottom: 10;
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* || CONTENT & CONTAINERS */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
[class*="topimg-"] {
    width: 100%;
    background: url(http://spirittamer.com/webpromob.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom center;
    margin-bottom: 10px;
}
.topimg-member {
    height: 400px;
}

#wrapper {
    width: 70%;
    margin: 0px auto;
}

/* NEWS CARD */
.newscard {
    display: block;
    padding: 0px 0px 5px 0px;
    background: #FFF;
    border-radius: 10px;
    color: #222;
    position: relative;
}
.newscard img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;}
.newscard h1 {
    margin: 0px;
    font-size: 20px;
    font-weight: normal;
    font-variant: small-caps;
}
.newscard .fa-link {
    z-index: 1;
    position: absolute;
    top: 5; right: 5;
    color: #FFF;
    font-size: 25px;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* || COLUMN SIZES & DISPLAY */
/* KEEP ON BOTTOM */
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

[class*="col-"] {float: left; display: block; overflow: hidden; padding: 5px;}
.col-100 {width: 100%;}
.col-66 {width: 66.66%;}
.col-75 {width: 75%;}
.col-50 {width: 50%;}
.col-33 {width: 33.33%;}
.col-25 {width: 25%;}
.row {width: 100%;}

.dhide {display: none;}

/* MOBILE PHONES */
@media only screen and (max-width: 768px) {
    #wrapper {width: 95%;}
  [class*="col-"] {width: 100%;}
  .mhide {display: none !important;}
  .dhide {display: block;}
}