﻿html {
/*background: url(images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;*/
background-color:#2C0806;
  padding: 0;
  margin: 0;
}

@font-face {
    font-family: 'Palatino Linotype';
    src: url('../fonts/pala-webfont.woff2') format('woff2'),
         url('../fonts/pala-webfont.woff') format('woff');
}

@font-face {
    font-family: 'palatino_linotypebold_italic';
    src: url('../fonts/palabi-webfont.woff2') format('woff2'),
         url('../fonts/palabi-webfont.woff') format('woff');
}

@font-face {
    font-family: 'palatino_linotypeitalic';
    src: url('../fonts/palai-webfont.woff2') format('woff2'),
         url('../fonts/palai-webfont.woff') format('woff');
}

@font-face {
    font-family: 'Rage Italic';
    src: url('../fonts/rage-webfont.woff2') format('woff2'),
         url('../fonts/rage-webfont.woff') format('woff');
}

@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}


/* SPONSOR SCROLL*/

        #scrollerBody {
            display: inline-flex;
            justify-content: center;
            align-items: center;
			overflow-x: hidden;
			width:100%;
			padding:10px;
        }

.scroller {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            display: inline-flex;
        }

        .scroller-inner {
            display: inline;
            align-items: center;
            gap: 10px;
            animation: scroll 20s linear infinite;
            width: max-content; /* Ensures content can be larger than the container */
        }

.scroller-inner img{
	height:150px;
	width:auto;
	margin:5px;
}

        @keyframes scroll {
            from {
                transform: translateX(0%);
            }
            to {
                transform: translateX(-50%);
            }
        }

/*END SPONSOR SCROLL*/


body{
	font-family:"Times New Roman", Times, serif;
	font-size:18px;
	color:#ffffff;
	line-height:1.15;
/*	letter-spacing: 1pt;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);*/
}

p {
	font-size:18px;
	line-height:1.25;
	padding:5px 0px;
}

h1{
	color:#F2E2BE;
	font-weight:normal;
	font-size:35px;
	text-shadow: 2px 2px 5px rgba(0,0,0,1);
}



h2 {
	color:#F2E2BE;
	font-weight:normal;
	font-family: "Palatino Linotype", "Times New Roman", serif;
	font-size:24px;
	margin:20px 0 20px 0;
}

h3 {
	color:#fff;
	font-weight:bold;
	font-style:italic;
	font-size:18px;
	margin-bottom:20px;
}

.plain {
	font-family: "Palatino Linotype", "Times New Roman", serif;
	font-size:26px;
	margin:20px 0 20px 0;
}

.smallfont{
	font-size:14px;
}
.upward-title {
  /* Your Rage Italic font setup */
  font-family:"Rage Italic", cursive;
  text-align: left;
  padding: 10px 0px;

  /* The upward angle */
  display: inline-block; /* Important for clean rotation */
  transform: rotate(0deg); /* Adjust 5deg to 15deg for slight upward slant */
  transform-origin: center center; /* Rotates around the middle */
}


aside ul{
	text-align:left;
	margin-left:30px
}

blockquote{
	text-align:center;
	color:#AD8260;
	font-style:italic;
	margin:15px auto;
	padding:20px;
	font-size:20px;
	background-color:rgba(0,0,0,0);
	 border-top:10px double #411816;
	 border-bottom:10px double #411816;
	 background-image:url('images/quotebackground.jpg')
}

cite {
font-style:normal;
font-family: "Rage Italic",cursive;	
font-weight:normal;
font-size:28px;
padding-top:10px;
line-height:1.5;
}

cite::before {
  content: "-";
  margin-left:10px;
  margin-right: 0px;
  font-weight:bold;
}

dl{
	text-align:left;
}
dl ul{
	margin-left:30px;
}
dt{
color:#AD8260;
font-weight:bold;
}

dd {
 margin:0px;
 margin-bottom:20px;
  padding:10px; 
  color:#fff;*/
}

address{
	font-style:normal;
}
/* Back to Top  */
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 75px;
    height: 75px;
    display: block;
    text-decoration: none;
    text-align:center;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 0px;
    top: 30px;
    font-size: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 10px;
}

/* end back to top  */


/***BASIC STYLES***/

.mainContent {
	width:100%;
	display:block;
	margin-left:auto;
	margin-right:auto;
    padding:20px;
    padding-bottom:40px;
}

hr{
 border:3px solid #411816;
}

.button-container input {
    display: inline;
    vertical-align: middle;
    margin: 0px 5px 10px 0px;
}
.button-container form, .button-container form div {
    display: inline;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pgWrapper{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:900px;
}

.colBackground {
	background-color: rgba(0,0,0,0.50);
	border: 1px solid black;
	border-radius:5px;
	padding:20px 10px;
}


/* BASIC SITE LINK STYLES*/ 
a:link    {color:#AD8260; text-decoration:underline; }
a:visited {color:#AD8260; text-decoration:underline; }
a:active  {color:#AD8260; text-decoration:none;}
a:hover   {color:#ffffff; text-decoration:none;}

a:link.menu    {color:#F2E2BE; text-decoration:none; font-variant: small-caps; font-weight: bold; font-family: "Palatino Linotype", "Times New Roman", serif;}
a:visited.menu {color:#F2E2BE; text-decoration:none; font-variant: small-caps; font-weight: bold; font-family: "Palatino Linotype", "Times New Roman", serif;}
a:active.menu  {color:#F2E2BE; text-decoration:none; font-variant: small-caps; font-weight: bold; font-family: "Palatino Linotype", "Times New Roman", serif;}
a:hover.menu   {color:#AD8260; text-decoration:none; font-variant: small-caps; font-weight: bold; font-family: "Palatino Linotype",  "Times New Roman", serif;}

a:link.sm    {color: #ffffff; text-decoration: underline; font-family: Arial, 'Sans Serif'; font-weight: bold; font-size: 9pt;  }
a:visited.sm  {color: #ffffff; text-decoration:underline; font-family: Arial, Sans Serif; font-weight: bold; font-size: 9pt; }
a:active.sm   {color: #ffffff; text-decoration:underline; font-family: Arial, Sans Serif; font-weight: bold; font-size: 9pt; }
a:hover.sm    {color: #421208; text-decoration:none; font-family: Arial,Sans Serif; font-weight: bold; font-size: 9pt;}



.img{
    border:5px solid #1D0002;
	margin:5px;
	-webkit-box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.55);
-moz-box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.55);
box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.55);
}


.btn {
	display: inline-block;
	margin: 0;
	margin-top:20px;
	padding: .5em .75em;
	border: 0;
	border-radius: .3em;
	color: #fff;
	background-color: #660000;
	line-height: 1;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12pt;
}

.btn:focus {
	background-color: #660000;
}

.btn:hover {
	background-color: #AD8258;
}

.btn:active {
	background-color: #660000;
}


/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	clear: none;
	float: none;
}

.slideshowContainer{
	display:block;
	margin:auto;
	width:100%;
	text-align:center;
}

#headerContainer {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width:100%;
}

#headerContainer img{
	width:100%;
}

#navBackground {
	background: rgba(0,0,0,0.0);
	background-position:center; 
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding:5px;
}

#contentBackground {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width:100%;
	height:100%;
	max-width:1200px;
	background-color: #311111;
    padding:0px;
    border-left:10px solid #1C0101;
    border-right:10px solid #1C0101;
}


#footerBackground {
     background-position:center;
     background-color:#1D0100;
     padding:10px;
     display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight:normal;
}

#footerBackground p{
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight:normal;
}

#footerBackground .tiny{
	font-size: 10px;
}

.menuImg{
	display:none;
}

.navbar-fixed-top {
  position: -webkit-sticky;
  position: -moz-sticky;
  position:-o-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
-webkit-transition: height 0.5s;
-moz-transition: height 0.5s;
transition: height 0.5s;
}



/* Media Query Example - 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 800px) {
h1{
	color:#F2E2BE;
	font-weight:normal;
	font-size:45px;
	text-shadow: 2px 2px 5px rgba(0,0,0,1);
}
.upward-title {
  /* Your Rage Italic font setup */
  font-family:"Rage Italic", cursive;
  text-align: left;
  padding: 10px 0px;

  /* The upward angle */
  display: inline-block; /* Important for clean rotation */
  transform: rotate(-2deg); /* Adjust 5deg to 15deg for slight upward slant */
  transform-origin: center center; /* Rotates around the middle */
}
}



/*** GENERIC FLEX CONTAINER FOR CONTENT**/

#hpBackground{
background: url(images/bg6.jpg) no-repeat bottom center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding: 30px;
}
.hp-container {
  display: flex;
  flex-wrap: wrap;
  margin-top:0px;
  margin-bottom:20px;
}

.hp-item {
    background-color:#1E0002;
  padding: 20px;
  flex: 32%;
  margin:5px;
  padding-top:0px;
  text-align:center;
}

 /*.hp-item img{
   border:4px double #B2975D;
    margin:5px;
    padding:5px;
    background:#000;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow:    0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow:         0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}*/

.hp-item h1{
    font-size:26px;
    font-weight:bold;
    padding:10px;
}

.hp-item p{
    text-align:left;
}

.hp-item ul{
    text-align:left;
}
/* Responsive layout - makes a two column-layout instead of a three-column layout */
@media (max-width: 1000px) {
  .hp-item {
    flex: 48%;
  }
}


/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 600px) {
  .hp-item {
    flex: 100%;
  }
}

/*TABLE STYLES*/
td {
	font-size:9pt;
	padding:5px;
}

@media screen and (min-width: 700px) {

td {
	font-size:10pt;
	padding:10px
}
}

@media screen and (min-width: 1200px) {
td {
	font-size:12pt;
	padding:10px
}
}

