/* Template colors
* 2A2A2A //very dark gray
* f9f5f2 //off-white
* e54924 //red-ish
*/


/*****************************************************
* Define Custom Fonts
*****************************************************/

/* Font: Cassannet
Use: Website Title */
@font-face {
  font-family: 'Cassannet';
  src: url('./fonts/Cassannet.eot');
  src: url('./fonts/Cassannet.eot?') format('embedded-opentype'),
        url('./fonts/Cassannet.woff') format('woff'),
        url('./fonts/Cassannet.ttf') format('truetype'),
        url('./fonts/Cassannet.svg') format('svg');
  font-weight: bold;
  font-style: normal;
}

/* Font: Blanch Caps
  Use: Top Menu     */
@font-face {
  font-family: 'Blanch Caps';
  src: url('./fonts/BLANCH_CAPS.eot');
  src: url('./fonts/BLANCH_CAPS.eot?') format('embedded-opentype'),
        url('./fonts/BLANCH_CAPS.woff') format('woff'),
        url('./fonts/BLANCH_CAPS.ttf') format('truetype'),
        url('./fonts/BLANCH_CAPS.svg') format('svg');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Blanch Caps Light';
  src: url('./fonts/BLANCH_CAPS_LIGHT.eot');
  src: url('./fonts/BLANCH_CAPS_LIGHT.eot?') format('embedded-opentype'),
        url('./fonts/BLANCH_CAPS_LIGHT.woff') format('woff'),
        url('./fonts/BLANCH_CAPS_LIGHT.ttf') format('truetype'),
        url('./fonts/BLANCH_CAPS_LIGHT.svg') format('svg');
  font-weight: bold;
  font-style: normal;
}

/* Font: NeoSans Light
  Use: Body text    */
@font-face {
  font-family: 'NeoSans Light';
  src: url('./fonts/NeoSans-Light.eot');
  src: url('./fonts/NeoSans-Light.eot?') format('embedded-opentype'),
        url('./fonts/NeoSans-Light.woff') format('woff'),
        url('./fonts/NeoSans-Light.ttf') format('truetype'),
        url('./fonts/NewSans-Light.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('./fonts/OpenSans-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MorrisRoman Black';
  src: url('./fonts/MorrisRoman-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bilbo';
  src: url('./fonts/Bilbo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/**
 * icons
 */
@font-face {
  font-family: 'LigatureSymbols';
  src: url('./fonts/LigatureSymbols-2.11.eot');
  src: url('./fonts/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
       url('./fonts/LigatureSymbols-2.11.woff') format('woff'),
       url('./fonts/LigatureSymbols-2.11.ttf') format('truetype'),
       url('./fonts/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
  font-weight: normal;
  font-style: normal;
}


html, body {
  margin: 0px;
  padding: 0px;
  background: #4A4A4A;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
}

header, #copyright, footer {
  background: #2A2A2A;
  color: #F9F5F2;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

#innerHeader, #innerCopyright, #innerFooter {
  font-family: 'NeoSans Light';
  max-width: 920px;
  margin: auto;
  box-shadow: 0 0 10px 0 #111;
  padding: 20px 40px;
}

#innerHeader {
  border-bottom: 1px solid #222222;
}

#innerFooter {
  height: 42vh;
  min-height: 300px;
  box-shadow: 0 0 10px 0 #222;
}

#innerCopyright {
  padding: 5px 40px;
}

header {
  font-size: 16px;
}

footer {
  font-size: 14px;
  position: relative;
  background: #4A4A4A;
}

footer p {
  margin: 0px;
  padding: 0px;
}

footer a {
  color: #F9F5F2;
  text-decoration: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

.icon {
  font-family: 'LigatureSymbols';
  font-size: 24px;
  line-height: 12px;
  position: relative;
  top: 2px;
  padding: 0 4px;
}

header a {
  color: #F9F5F2;
  text-decoration: none;
  margin-right: 20px;
}

header a:hover {
  text-decoration: underline;
}

#contentWrapper {
  display: table;
  width: 100%;
  background: #F9F5F2;
  height: calc(100% - 117px);
}

#content {
  display: flex;
  max-width: 1000px;
  margin: auto;
  min-height: calc(100vh - 117px);
  box-shadow: 0 0 10px 0 #AAAAAA;
  flex-wrap: wrap;
}

#contentHeading {
  width: 100%;
}

#contentLeft {
  width: calc(76% - 100px);
  min-height: calc(100vh - 650px);
  padding: 20px;
  padding-left: 40px;
  padding-bottom: 10vh;
}

#contentRight {
  width: calc(24% - 21px);
  margin: 20px 0px;
  padding-left: 20px;
  padding-top: 20px;
  border-left: 1px dotted #777;
  order: 99;
}

#contentRight ul {
  list-style-type: none;
  padding-left: 20px;
}

#contentRight li {
  position: relative;
  padding: 1px 0px;
}

#contentRight li:not(.current):before, #contentRight .current:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 1px solid #2A2A2A;
  display: block;
  position: absolute;
  left: -20px;
  top: 9px;
}

#contentRight ul ul li:not(.current):before, #contentRight ul ul .current:before {
  top: 7px;
}

#contentRight .current:before {
  background: #F00000;
  border: 1px solid #F00000;
}

#contentRight a {
  color: #2A2A2A;
  text-decoration: none;
}

#contentRight a:hover {
  text-decoration: underline;
}

footer p {
  padding: 10px 0;
}

footer h2 {
  font-size: 25px;
}

#socialLinks {
  font-size: 24px;
  margin: 0;
  margin-top: 5vh;
  height: 220px;
}

#footerLinks {
  margin-top: 50px;
}

#footerLinks a:hover {
  text-decoration: underline;
}

#socialLinks h2 {
  margin-top: 0px;
}

#socialLinks .icon {
  font-size: 30px;
  line-height: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'NeoSans Light';
  text-transform: uppercase;
}

h2 {
  margin-top: 80px;
  font-size: 26px;
}

h3 {
  font-size: 21px;
}

.mainLink {
  font-size: 20px;
}

.flexbreak {
  width: 0;
  flex-basis: 100%;
}

blockquote {
  position: relative;
  z-index: 2;
  margin: 40px 50px;
  font-size: 18px;
}

blockquote cite {
  font-style: normal;
  font-size: 16px;
}

blockquote::before {
  content: '\201C';
  display: block;
  position: absolute;
  left: -30px;
  top: -40px;
  font-size: 140px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  z-index: -1;
  color: #DFDFDF;
  font-weight: 900;
}

.actionLink {
  color: #2A2A2A;
  text-decoration: none;
  border-bottom: 1px dotted #2A2A2A;
}


#holdiayBanner {
  max-width: 980px;
  margin: auto;
  padding: 10px;
  text-align: center;
  background: repeating-linear-gradient(
    -45deg,
    #FFF,
    #FFF 35px,
    #AA0000 35px,
    #AA0000 70px
  );
  box-shadow: 0 0 10px 0 #CCCCCC;
}

#holdiayBanner span {
  background: rgba(255, 255, 255, .95);
  border: 1px solid #AA0000;
  border-radius: 5px;
  padding: 5px 20px;
  color: #000
}

#holdiayBanner a {
  color: #000;
}

input {
  padding: 10px 15px;
  font-size: 13px;
}

textarea {
  width: calc(100% - 20px);
  max-width: 480px;
  min-height: 150px;
  padding: 10px;
  font-size: 14px;
}

button, input[type="submit"] {
  background: #F9F5F2;
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 16px;
  cursor: pointer;
}

button:hover, input[type="submit"]:hover {
  background: #2A2A2A;
  color: #F9F5F2;
}


.categoryWrapper {
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.categoryInner {
  padding: 10px;
}

.totalsWrapper {
  float: right;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #2A2A2A;
  padding: 2px 5px;
}

th {
  background: #4A4A4A;
  color: #F9F5F2;
  font-weight: bold;
  text-align: left;
}

.textRight {
  text-align: right;
}

code {
  font-size: 15px;
  line-height: 22px;
}


.ribbon-wrapper {
  width: 106px;
  height: 108px;
  overflow: hidden;
  position: absolute;
  top: -6px;
  right: -6px;
}

.ribbon{
  font: bold 15px Sans-Serif;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -11px;
  top: 26px;
  width: 150px;
  background-color: #e54924;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.ribbon:before, .ribbon:after {
  content: "";
  border-top: 4px solid #9b2c10;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  bottom: -4px;
}

.ribbon:before {
  left: 0;
}

.ribbon:after {
  right: 0;
}


@media(max-width: 600px) {
  #contentHeading {
    display: inline-block;
  }
  #content {
    display: block;
    padding-bottom: 50px;
  }
  #contentLeft {
    width: calc(100% - 30px);
    padding: 0px 15px;
    display: inline-block;
  }
  #contentRight {
    border-left: 0;
    width: calc(100% - 30px);
    padding: 0px 15px;
    margin-top: 50px;
    margin-bottom: 100px;
    display: inline-block;
  }
  .fullLeftContent {
    width: calc(100% - 30px);
  }
  #socialLinks {
    padding-top: 0;
    margin-top: 0;
  }
  table {
    font-size: 14px;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  #holdiayBanner {
    padding: 10px 30px;
  }
  #holdiayBanner span {
    display: block;
  }
}