body, * {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    color: #000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
    overflow-x: hidden;
	}

h1, h2, h3, h4, h5, h6, strong {
    color: #b5362f;
}

.wrap {
    width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
}

nav {
    padding: 1%;
}

nav ul {
    list-style: none;   
}

nav li {
    background-color: #fff;
    display: inline;
    line-height: 3rem;
    margin: .2%;
    padding: .5rem 2rem;
}

nav li:hover {
    background-color: #b5362f;
    border: 5px double #fff;
    box-shadow: 3px 3px 8px #333;
}

nav li:hover a {
    font-weight: bold;
}

main {
    margin: 2% 0;
    text-align: center;
}

a:link { 
	color: #b5362f; 
	text-decoration: none; 
	}
	
a:visited { 
	color: #b5362f; 
	text-decoration: none; 
	}
	
a:hover { 
	color: #fff; 
	font-weight: bold; 
	text-decoration: none; 
	}

.currentPage {
    background-color: #b5362f;
    color: #fff;
    font-weight: bold;
}

#stickyTop {
    position: absolute;
    right: 0;
    top: 1%;
    width: 300px;
    height: 80px;
    z-index: 999;
}

.headerImg {
    max-width: 100%;
}

.frontPage {
    border: 8px double #fff;
    max-width: 100%;  
}

main img {
    max-width: 100%;   
}

.counpons img {
    max-width: 100%;
    margin: 2%;
}

.pageTitle {
    color: #000;
    margin-bottom: 1%;
}

.pageTitle:after {
    background-color: #b5362f;
    display: block;
    content: '';
    height: 1px;
    margin: 0 auto;
    width: 25%;
}

.half {
    float: left;
    margin-right: 2%;
    text-align: left;
    width: 45%;
}

.backToTop {
  display: inline-block;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(181, 54, 47, 0.8) url(../cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}

.backToTop.top-is-visible, .backToTop.top-fade-out, .no-touch .backToTop:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
    cursor: pointer;
}

.backToTop.top-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.backToTop.top-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}

.no-touch .backToTop:hover {
  background-color: #b5362f;
  opacity: 1;
}

i.fa {
    color: #b5362f;
}

footer {
    margin-bottom: 1%;   
}

.copyright {
	font-size:10px;
}

.copyright a:hover {
    color: #000;
}

.clear {
    clear: both;
}

@media screen and (max-width: 768px) {
    .half {
        float: none;
        width: 100%;
        margin-bottom: 1%;
    }
}