@charset "utf-8";


/* Britains Aviators Common CSS */


/* General */

body {  
	height: auto;
	width: auto;
	background-image: url("images/background_aviators-2.JPG");
	background-repeat: repeat;
	overflow: scroll;
	padding:0;
    margin:0;
}

.content-container {
	position: relative;
	min-height: 94vh;
	white-space: normal;
	width:100%;
}

.page-content {
	padding-bottom: -4rem;    /* Equals footer height */
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	color: #000099;
}

.footer {
	position: relative;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4rem;
	font-family: verdana;
	font-size: .7em;
	color: #ff0000;
	text-align: center;
	line-height: 4rem;
}

/* End of General */



/* Header/Logo */

.header {
	font-family: arial,helvetica,sans-serif;
	padding: 1em;
	text-align: center;
	background: #000099;
	background-image: linear-gradient(90deg, #000099 0%, #000099 50%, lightblue 100%);
	color: white;
	font-size: 2.5vw;
	font-style: italic;
	font-weight: 800;
	padding-top: 2.25rem;
}

.site-logo {
	position: absolute;
	display: block;
	top: .25vw;
	left: 2em;
	z-index: 99;
	float: left;
	height:7vw;
}

/* End of Header/Logo */



/* Top Navigation Bar */

.topnav {
	overflow: hidden;
	background-color: #ececec;
	border-style: double none double none;
	background-image:-moz-linear-gradient( 90deg, #ececec 0%, #c2c2c2 50%, #ececec 100%);
	background-image: -webkit-linear-gradient( 90deg, #ececec 0%, #c2c2c2 50%, #ececec 100%);
	background-image: -ms-linear-gradient( 90deg, #ececec 0%, #c2c2c2 50%, #ececec 100%);
}

.buttonMenuBar {
	color: black;
	padding: .15em 0;
	font-size: 1em;
	width: 10rem;
	margin: .5em 0 .5em 1em;
	border-radius: .25em;
}

.buttonMenuBarNotActive {
	background-color: #d7d7d7; /* For browsers that do not support gradients */
	background-image: linear-gradient(#fff2dd, #d7d7d7);
	color: black;
	border: .0625em solid #555555;
	}

.buttonMenuBar:hover {
	background-color: #f8c473;/* For browsers that do not support gradients */
	background-image: linear-gradient(#fdebcf 0%, #f5ba5c 50%, #fdebcf 100%);
	color:black;
	border: .0625em solid #555555;
	cursor: pointer;
}

.buttonMenuBarActive {
	background-color: #77aaf9;/* For browsers that do not support gradients */
	background-image: linear-gradient(#ececec, #77aaf9);
	color: black;
	border: .0625em solid #0000ff;
}

/* End of Top Navigation Bar */



/* Previous/Next buttons */

.previous {
	top: 11rem;
	left: 3rem;
	z-index: 10;
}
.next {
	top: 11rem;
	right: 3rem;
	z-index: 10;
}

.prev_next {
	position:absolute;
}

.prev_next a {
	position: relative;
	font-size: .75rem;
	font-family: arial,helvetica,sans-serif;
	display:block;
	background-color: #ececec;
	border: .01rem solid #555555;
	cursor: pointer;
	padding: .25rem 1rem;
	border-radius: .5rem;
}

.prev_next a:hover {
	position: relative;
	background-color:aliceblue;
	color: black;
	border: .02rem solid blue;
	padding: .25rem 1rem;
	border-radius: .5rem;
}

/* End of Previous/Next buttons */



/* Links*/

a:link {	/* unvisited link */
  color: #000099;
}

a:visited {	/* visited link */
  color: blue;
}

a:hover {	/* mouse over link */
  color: coral;
}

a:active {	/* selected link */
  color: blue;
}

/* End of Links*/



/* floating Top Btn */

#TopBtn {
display: none; 
position: fixed;
bottom: 1.25em;
right: 1.5em;
z-index: 99;font-size: 1em;
border: none;
outline: none;
background-color: #555;
color: white;
cursor: pointer;
padding: 1em;
border-radius: .5em;
opacity: 0.5;
}

#TopBtn:hover {
background-color: #555;
opacity: 1;
}











