
body {

  margin: 0;
  padding: 0;


  background-color:white;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
  font-size:100%;
  max-width: 650px;
  margin-right:auto;
  margin-left:auto;
  font:black;
/* from navstyle - makes everything align left margin: 0; padding: 0; */
  }



  /* is this what is fucken shit up?

  * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
*/

  .video-div {
  	width:640px;
  	margin-right:auto;
  	margin-left:auto;
  }



img	{
		max-width:100%;
}




.copy-width-70 {
	   text-align:left;
     max-width:500px;
      margin-right:auto;
      margin-left:auto;

}
  .copy-width-450 {
  text-align:middle;
  max-width:450px;
   margin-right:auto;
   margin-left:auto;
}





.width-600  {
		 max-width:600px;
     margin-right:auto;
     margin-left:auto;
}



figcaption {
  font:bold;
  font-size:55%;
  margin:0px 0px 30px 0px;
}





.align-left{
	   text-align:left;

}




h1 {
	letter-spacing:-1px;
  font-size:170%;
  color:black;
}

h2 {
  font-size:120%;
  max-width:80%;
  margin-right:auto;
  margin-left:auto;
}


h3 {
	letter-spacing:-.5px;
    font-size:130%;
}
h5  {
	letter-spacing:-1px;
}
small{
  font-size:75%;
}





.spacer50 {
	width:100%;
	height:50px;
}
.spacer100 {
	width:100%;
	height:100px;
}



.margin30{
  margin:30px;
}


.big-redbox {
	background-color:#660000;
  max-width:70%;
	border-radius: 25px;
	border-width: 15px;
	border-style: solid;
  color:white;
	line-height: 1.4;
	text-align: center;
  margin-right:auto;
  margin-left:auto;
}
.redbox {
	background-color:#660000;
	border-radius: 15px;
	color:white;
  height:50px;
  margin-right:auto;
  margin-left:auto;
  width:500px;
}
.bluebox {
	background-color:#000066;
  max-width:70%;
	border-radius: 25px;
	border-width: 15px;
	border-style: solid;
  color:white;
	line-height: 1.4;
	text-align: center;
  margin-right:auto;
  margin-left:auto;
}








.small-type {
	font-size:60%;
}
.smallish-type {
	font-size:80%;
}
.big-type {
	font-size:120%;
}
.black-type {
	color:black;
}
.white-type {
	color:white;
}
.tight {
	letter-spacing:-1px;
}
.underline-link {
	text-decoration:underline;
}











.ORIGINALpadding10below {
	padding:10px 0 30px 0;
}




.padding10below {
	padding:0 1 0 1;
}






#myBtn {
    position:relative; /* x */
    z-index: 99; /* Make sure it does not overlap */
    border-color: #b32d00; /* Set a background color */
    background-color: white; /* Set a background color */
    color: #b32d00; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 25px; /* Some padding */
    border-radius: 30px; /* Rounded corners */
    font-size: 32px; /* Increase font size */
}
#myBtn:hover {
    background-color: #ffb3cc; /* Add a dark-grey background on hover */
}


    /*  to remove NAV CUT FROM HERE - replacing the MEDIA QUERIES thing  */










header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 100px;
  width: 100%;
  box-sizing: border-box;
  background: #990000;
}
header .logo {
  color: #fff;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  float: left;
  font-weight: bold;
}
header .logo a {
  text-decoration: none;
  color:white;
}
header nav {
  float: right;
}
header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  font-size:75%;
      /* FONT SIZE MAIN MENU */
}
header nav ul li {
  list-style: none;
  position: relative;
}
header nav ul li.sub-menu:before {
  content: '\f078';
  font-family: fontAwesome;
  position: absolute;
  line-height: 50px;
  color: #fff;
  right: 1px;
}
header nav ul li.active.sub-menu:before {
  content: '\f077';
}
header nav ul li ul {
  position: absolute;
  left: 0;
  background:  #660000;
  display: none
}
header nav ul li.active ul {
  /* use li: hover instead */
  display: block;
    font-size:120%;
    /* FONT SIZE SUB MENU */
}
header nav ul li ul li {
  display: block;
  width: 300px;
}
header nav ul li a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  display: block;
}
header nav ul li a:hover {
  color: #fff;
  background: #FF0000;
}
header nav ul li a.active {
  background: #FF0000;
}

.menu-toggle {
  color: #fff;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}







/* MEDIA QUERIES */

@media (max-width: 850px) {




  header {
    padding: 0 20px;
  }
  .menu-toggle {
    display: block;
  }
  header nav {
    /* use display none or left:-100% to hide the nav  */
    /* display: none; */
    position: absolute;
    top: 50px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 50px);
    background: #660000;
    transition: 0.5s;
  }
  header nav.active {
    left: 0%;
  }
  header nav ul {
    display: block;
    text-align: center;
            font-size:120%;
      /* FONT SIZE MAIN MENU Media Queries */
  }
  header nav ul li a {
    border-bottom: 0.9px solid rgba(0, 0, 0, .2);
  }
  header nav ul li.active ul {
    position: relative;
    background: #660000;
    font-size: 90%;
    /* FONT SIZE SUB MENU  Media Queries */
  }
  header nav ul li ul li {
    width: 100%;
  }



    /*  CUT TO HERE - to remove NAV - replacing the MEDIA QUERIES thing  */








body{
    max-width:100%;
		float: none;
    display: block;
    margin-right:auto;
    margin-left:auto;
	}


  img {
    float:none;
    margin-right:auto;
    margin-left:auto;
  }








  .centering-div {
  	width:100%;
  	margin-right:auto;
  	margin-left:auto;
  }




  	.video-div {
      position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }




  	.videoWrapper {
  /*	position: relative;*/
  	padding-bottom: 56.25%; /* 16:9 */
  	padding-top: 25px;
  	height: 0;
  }

iframe {

  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  }





  .max-width-100
  {
  	max-width: 100%;
  }

      .width-600
      {
    	max-width: 100%;
      width:600px;
      }

    .copy-width-70 {
    	  max-width:95%;
    		text-align:left;
        padding:0 5% 0 5%;
    		margin-right:auto;
    		margin-left:auto;
    }







  h1 {
    font-size:140%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }


  h2 {
    font-size:120%;
    max-width:80%;
    margin-right:auto;
    margin-left:auto;
  }


    h3 {
      font-size:120%;
      max-width:90%;
      margin-right:auto;
      margin-left:auto;
      }

      h5  {
      	letter-spacing:-1px;
      }
      small{
        font-size:75%;
      }









.img60 {

  width: 60%;
  margin-right:auto;
  margin-left:auto;}
}


  .img70 {
	  max-width:70%;
  	margin-right:auto;
  	margin-left:auto;}



	.img90 {

	  max-width: 90%;
    margin-right:auto;
  	margin-left:auto;}
  }




	.float-left {
  float:none;
  width:100%;
}
.float-right {
  float:none;
	width:100%;
}






.big-redbox {
	max-width:70%;
	margin-right:auto;
	margin-left:auto;
	border-radius: 10px;
	border-color: #660000;
  font-size:110%;
	text-align:center;
}
  .redbox {
    width:70%;
  }
  .bluebox {
    width:70%;
  }




.google-maps {
      position: relative;
      padding-bottom: 75%; // This is the aspect ratio
      height: 0;
      overflow: hidden;
  }
    .google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }


}
