﻿@charset "utf-8";
/* CSS Document */

html { 
  height: 100%; 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#3a000a',GradientType=0 ); /* IE6-9 */
}
body {
	height: 100%;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	
    background-repeat: no-repeat;
	
	background: #3a000a; /* Old browsers */
	background: -moz-linear-gradient(top, #a90329 0%, #590116 44%, #3a000a 100%) fixed; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a90329), color-stop(44%,#590116), color-stop(100%,#3a000a)) fixed; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #a90329 0%,#590116 44%,#3a000a 100%) fixed; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #a90329 0%,#590116 44%,#3a000a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #a90329 0%,#590116 44%,#3a000a 100%); /* IE10+ */
	background: linear-gradient(to bottom, #a90329 0%,#590116 44%,#3a000a 100%) fixed; /* W3C */
}

.oneColFixCtr {
	color: #000000; 
	font: 100% Verdana, Arial, Helvetica, sans-serif;
}
.oneColFixCtr #container {
	max-width: 1200px;  /* using 20px less than a full 1200px width allows for browser chrome and avoids a horizontal scroll bar */
	width: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	position:relative;
}
.oneColFixCtr #ContentAndMenu {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	background: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, .5);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, .5);
}

.oneColFixCtr #MainContent {
	padding: 0px 20px 10px 20px;
	position:relative;
}

.oneColFixCtr #MainContent p {
	margin-bottom: 16px;
}

.oneColFixCtr #MainContent h1 {
	padding-top: 10px;
  font-family: 'Monotype Corsiva' , Sans-Serif;
}


.slideshow {
  max-width: 1200px;
  width: calc(100% + 40px);
  height: 675px; 
  margin:0px -20px -0px -20px; 
  padding:0;
  overflow: hidden;
}
@media (max-width: 1220px) {
  .slideshow {
    height: 55.5vw;
  }
}
.slideshow > .slide {
  height: 100%; 
  width: 100%; 
  background-color: #222; 
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: contain; 
}
.slideshow > .slide > .caption {
  box-sizing: border-box; 
  position: absolute; 
  bottom:0; 
  right:0; 
  left:0; 
  width: 100%; 
  padding: 15px; 
  background-color: rgba(0, 0, 0, 0.7); 
  color: #fff;
  text-align: center; 
  font-size: 16px; 
  font-weight: bold; 
  line-height: 20px;
}
.slideshow > .slide > .caption a:link, 
.slideshow > .slide > .caption a:visited,
.slideshow > .slide > .caption a:active {
  color: #ccc;
  text-decoration: underline;
}
.slideshow > .slide > .caption a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 800px) {
  .slideshow > .slide > .caption {
    padding: 8px; 
    font-size: 12px; 
    font-weight: bold; 
    line-height: 15px;
  }
}

.slideshow > .cycle-button {
  cursor: pointer;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  color: #fff;
  font-size: 50px;
  z-index: 1000;
  opacity: 0.5;
}
.slideshow > .cycle-button:hover {
  opacity: 1.0;
}
.slideshow > .cycle-next {
  right: 10px;
}
.slideshow > .cycle-prev {
  left: 10px;
}
.cycle-exterior-button {
  display: inline-block;
  text-align: center;
  padding: 8px;
  width: 90px;
  border: 1px solid grey;
  color: grey;
  cursor: pointer;
}

.radiusBorder
{
  margin: 10px 10px 10px 10px; 
  border:1px solid #bdbdbd; 
  border-radius: 5px; 
  -moz-border-radius:5px; 
  padding: 4px; 
  background: #fff; 
}
.floatRightWithBorder 
{
  margin: 0px 0px 10px 10px; 
  border:1px solid #bdbdbd; 
  border-radius: 5px; 
  -moz-border-radius:5px; 
  padding: 4px; 
  background: #fff; 
  float: right;
}
