/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html{
	text-rendering: optimizeLegibility!important;
    -webkit-font-smoothing: antialiased!important;
}
.wrapper{
    max-width: 1200px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.wrapper--s{
    max-width: 900px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    background-color: #97040C;
    padding: 50px 5%;
    border-bottom: 10px solid #7F0410;
}
.flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}
.center{
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}
.left{
    text-align: left;
}
.space{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.white{
    color: white;
}
.red{
    color: #97040C;
}
.bg-red{
    background-color: #97040c;
}
body{
    font-family: 'Merriweather', serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .05rem;
    text-align: center;
    background-color: #081035;
}
body *{
    box-sizing: border-box;
}
a{
    color: #97040C;
    font-weight: bold;
}
a:hover{
    color: #081035;
}
header{
    background-color: #081035;
    color: white;
    position: fixed;
    top: 50px;
    width: 100%;
    padding: 10px 0;
    border-top: 2px solid #97040C;
}

footer{
    padding: 50px 0;
    color: white;
}
footer img{
    margin-bottom: 25px;
}
#logo .name{
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 15px;
    margin-left: 15px;
}
#logo .name .title--s{
    margin-bottom: 0px;
}
#menu a{
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-left: 15px;
    transition: all .2s ease;
}
@media (max-width: 800px) {
    #menu a:not(.cta){
        display: none;
    }
    #menu a.cta{
        padding: 12px 12px;
    }
    .desktop{
        display:none;
    }
}
@media (max-width: 1115px) {
    #menu a.cta{
        padding: 8px 12px;
    }
    #menu a{
        font-size: 14px;
        display:inline-block;
        max-width: 80px;
        line-height: 1.1;
    }
}
@media (max-width: 500px) {
    #menu{
        display: none;
    }
    #header{
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
    }
}

#menu a:hover{
    color: #97040C;
}
#hero{
    min-height: 100vh;
	min-height: 60vh;
    background-color: #97040C;
    background-image: url(images/vfw-building.jpg);
    background-size: cover;
    background-position: center 55%;
    border-bottom: 2px solid #97040C;
    padding: 150px 0;
}
#content{
    margin-top: -100px;
    background-color: white;
}
.section{
    padding: 100px 5%;
}
#intro{
    padding-bottom: 150px;
}
#meetings{
    margin-top: -75px;
    background-image: url(images/members.jpg);
    background-size: cover;
    background-position: center top;
    padding: 100px 5%;
}
#meetings > div {
    background-color: rgba(151,4,12,.9);
    padding: 5%;
}
#contact > div{
    width: 50%;
}
#contact iframe{
    width: 100% !important;
    border: 5px solid #f1f1f1;
}
@media (max-width: 900px) {
    #contact{
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
    }
    #contact > div{
        width: 100%;
    }
    #contact iframe{
        margin-top: 100px;
    }
}
.bg-gray{
    background-color: #F1F1F1;
}
.cta{
    background-color: #97040C;
    padding: 12px 30px;
    border-radius: 3px;
    border-bottom: 1px solid white;
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    transition: all .2s ease;
}
.cta:hover{
    background-color: #081035;
    color: white;
}
.cta.blue{
    background-color: #081035;
}
.cta.blue:hover{
    background-color: white;
    color: #081035;
}
.cta.hover:hover{
    background-color: white;
    color: #97040C!important;
}
p{
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
p:not(:last-child){
    margin-bottom: 20px;
}
.title{
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.title--s{
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.title--sub{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    opacity: .5;
}

.rental{
    width: 30%;
    margin-bottom: 16px;
}
.content{
    padding: 24px;
}
strong{
    font-weight: bold;
}
.list{
    list-style:disc;
    padding-left:40px;
}
.list li{
    padding-left: 12px;
    margin-bottom: 12px;
}
.list a:hover{
    opacity: .8;
    color:white;
}
#banner{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display: block;
    background-color: #97040c;
    color:white;
    padding: 12px;
}
/*
     FILE ARCHIVED ON 08:20:44 Nov 22, 2018 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 17:18:31 Dec 16, 2019.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  PetaboxLoader3.datanode: 166.371 (4)
  esindex: 0.011
  exclusion.robots.policy: 0.125
  RedisCDXSource: 198.429
  captures_list: 353.605
  CDXLines.iter: 13.775 (3)
  load_resource: 327.889
  PetaboxLoader3.resolve: 284.03
  exclusion.robots: 0.134
  LoadShardBlock: 137.612 (3)
*/