/*
	* Dominic Sibthorp 2021
*/

html {
	position: relative;
	min-height: 100%;	  
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	padding: 0px;
	margin: 0px;
}

body {
	font-family: "Merriweather Sans";
	font-size: 14px;
	color: #000;
	padding: 0px;
	margin: 0px;
	background: rgb(216,236,245);
	background: -moz-linear-gradient(180deg, rgba(216,236,245,1) 0%, rgba(217,237,246,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(216,236,245,1) 0%, rgba(217,237,246,1) 100%);
	background: linear-gradient(180deg, rgba(216,236,245,1) 0%, rgba(217,237,246,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d8ecf5",endColorstr="#d9edf6",GradientType=1);
}

a {
  color: #428bca;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}

h1 {
	color: #3071a9;
	font-size: 38px;
}

h2 {
	color: #3071a9;
	font-size: 24px;
}

h6 {
	color: #000;
	font-size: 10px;
	font-weight: normal;
}

p {
	color: #000;
	font-size: 14px;
	padding-right: 1rem;
}

.siteheader {
	width: 100%;
	height: 50px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,248,248,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,248,248,1) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,248,248,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f8f8f8",GradientType=1);
	border-bottom: 1px #83B82C solid;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
}

.siteheader > .content {
	width: 50%;
	height: 50px;
	padding: 0px;
	margin: auto;
	background-image: url(../images/LycosChat.png);
	background-repeat: no-repeat;
}

.sitefooter {
	width: 100%;
	height: 30px;
	background-color: #fff;
	position: absolute;
	bottom: 0px;
}

.sitefooter p {
	line-height: 10px;
	color: #000;
	font-size: 10px;
	font-weight: normal;
}

.well {
	width: 50%;
	max-width: 1140px;
	margin: auto;
	min-height: 468px;
	padding: 6px;
	margin-top: 10px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

.captain {
	width: 280px;
	height: 230px;
	background-image: url(../images/captain.png);
	background-position: left center;
	background-repeat: no-repeat;
}

.column-left {
  float: left;
  width: 280px;
}

.column-right {
  float: left;
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  background: transparent;
}

.dropbtn {
  color: #777;
  font-size: 14px;
  font-weight: bold;
}

.dropup {
  position: absolute;
  bottom: 14px;
  left: 260px;
  display: inline-block;
  min-width: 160px;
}

.dropup-content {
  color: #777;
  font-size: 14px;
  font-weight: normal;
  display: none;
  position: absolute;
  bottom: 14px;
  padding-bottom: 5px;
  left: -20px;
  min-width: 160px;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
}

.dropup-content a {
  color: #777;
  text-decoration: none;
  display: block;
  margin-bottom: -5px;
  padding: -5px;
  padding-left: 5px;
}

.dropup-content a:hover {
	background-color: none;
	color: #2a6496;
}

.dropup:hover .dropup-content {
  display: block;
}

.dropup:hover .dropbtn {
  background-color: none;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-bottom: 4px solid transparent;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
	color: #777;
	border-bottom-color: #777;
}

@media only screen and (max-width: 750px) {
	div.captain {
		display: none;
	}
	
	div.well {
		width: 75%;
		background-image: url(../images/captain-faded.png);
		background-position: left top;
		background-repeat: no-repeat;
	}
  
	div.siteheader > .content {
		width: 75%;
	}
	
	.column-right {
		width: 100%;
	}
}

@media only screen and (max-width: 1199px) {
	div.captain {
		display: none;
	}
	
	.column-right {
		width: 100%;
	}
	
	div.well {
		width: 75%;
		background-image: url(../images/captain-faded.png);
		background-position: left top;
		background-repeat: no-repeat;
	}
	
	div.siteheader > .content {
		width: 75%;
	}
}


