body {
  font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
  background: #0B4C5F;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner {
	position: relative;
	background: #000000;
	width: 100%;
	max-width: 2000px;
	height: 200px;
}
.banner-image {
	position: relative;
	width: 100%;
	height: 100%;
	background: url(./banner-maderealstories.jpg);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	#width: 100%;
	opacity: 0.8;
}

a.menulinks:link  {
    color: #000000;
	text-decoration: none;
		}

a.menulinks:visited {
    color: #000000;
	text-decoration: none;
}

a.menulinks:hover {
	text-decoration: none;
}

a.menulinks:active {
	text-decoration: none;
}

a:link  {
    color: #0B4C5F;
	text-decoration: none;
		}

a:visited {
    color: #0B4C5F;
	text-decoration: none;
}

.gamelist a:link  {
    color: #0B4C5F;
	text-decoration: none;
		}

.gamelist a:visited {
    color: #0B4C5F;
	text-decoration: none;
}

h1 a:link {
    color: #fff;
	text-decoration: none;
		}

h1 a:visited {
    color: #fff;
	text-decoration: none;
	}

img.windowDressing {
padding: 7px;
}

.header{
  background: #2E2E2E;
  max-width: 900px;
  height: 80px;
  color: #fff;
  padding-top: 20px;
  margin-bottom: 0;
}

h2 {
  padding: 15px 0;
  font-size: 24px;
  background: #BDBDBD;
  color: #000;
  margin-bottom: -10px;
}

.background-box h2 {
  margin-bottom: 10px;
}

@media (hover: hover) {
	.link-any:hover  ~ .Gaming-generic {
		 display: none;	 
	}
	.link-any:hover  ~ .description-box{
		margin-top: 75px;
	}
	.CSAW-text, .Col-text, .DM-text, .Plag-text{
		 display: none;
	}

	/*This code is junk probably! */
	.g-1:hover  ~ .CSAW-text {
		 display: block;
	}
	.g-2:hover  ~ .Col-text{
		 display: block;
	}
	.g-3:hover  ~ .DM-text {
		 display: block;
	}
	.g-4:hover  ~ .Plag-text {
		 display: block;
	}
}

h1, h2, .background-box {
  width: 900px;
}

.description-box {
  position: relative;
  width: 800px;
}

.description-box .internal-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	#margin-top: 49px;
	padding: 20px;
	height: 160px;
	background: #fff;
	width: 800px;
	text-align: center;
}

.image-grid, .image-grid-5 {
	#display: grid;
	#grid-template-columns: repeat(4, 150px [col-start]);
	
}

.image-grid img {

	height: 150px;
	#width: 150px;
	object-fit: cover;
	object-position: top center;
}

.image-grid-5 img {
	height: 120px;
	#width: 120px;
	object-fit: cover;
	object-position: center;
}


.hidden {
	display: none;
}

.illustrated-text {
	display: flex;
}

.illustrated-text img {
	margin: 0 20px;
	height: 150px;
	object-size: cover;
	object-position: center;
}

ul {
  text-align: left;
  display: inline;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  # padding: 15px 4px 17px 0;
  padding: 4px;
  list-style: none;
  
  #width: 800px;
}

ul.frontpage {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}


ul li {
  font: bold 18px/26px sans-serif;
  display: inline-block;
  # margin-right: -4px;
  margin: 4px;
  position: relative;
  padding: 10px;
  background: rgba(220, 220, 220, 1);
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-wrap: nowrap;
}

ul.frontpage li {
	background: rgba(200, 200, 200, 0.2);
}

@media (hover: hover) {
  ul li:hover {
	background: rgba(200, 200, 200, 1);
	color: #000;
  }
  ul.frontpage li:hover {
	background: rgba(200, 200, 200, 0.5);
	color: #000;
  }
}
ul li ul {
  margin-bottom: -10px;
  background: none;
  padding: 0;
  position: absolute;
  top: 57px;
  left: 0;
  width: 300px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
ul li ul li { 
  margin: -2px;
  font: 12px sans-serif;
  border: 1px solid #888888;
  background: #fff; 
  display: inline-block; 
  color: #000;
  font-weight: bold;
  padding: 15px;
}

ul.frontpage li ul li {
background: #fff;
}

@media (hover: hover) {
	ul li ul li:hover { 
		background: #BDBDBD;
	}

	ul li:hover ul {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	}
}

.description-box{
	margin-top: 49px;
	padding: 20px;
	height: 160px;
	background: #fff;
	width: 800px;
	text-align: center;
}

.background-box {
	position: relative;
	display: flex;
    flex-direction: column;
    align-items: center;
	background: #BDBDBD;
}

.subpageDescription-box {
	padding: 15px 50px 50px 50px;

	width: 800px;
	min-height: 300px;
}

.gamelist{
text-align: center;
padding: 20px;
padding-bottom: 10px;
}

.quotes{
margin-left: 40px;
margin-right: 40px;
font-size: 0.9em;
text-align: left;
padding-bottom: 10px;
}

.pullquotes{
margin-left: 40px;
margin-right: 40px;
font-size: 1.17em;
text-align: left;
padding-bottom: 10px;
}

.buttonpadding{
# padding: 15px 20px;
}

@media (max-width: 1000px){
  body {
	width: 100%;
	overflow-x: hidden;
  }
  img {
	max-width: 90%;
  }
  h1, h2, .background-box,
  .subpageDescription-box {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
  }
  h2, .background-box,
  .subpageDescription-box {
	display: flex;
	flex-direction: column;
	width: 90%;
  }
  h2 {
    padding: 10px 0;
  }

  ul {
	flex-wrap: wrap;
	width: 80%;
  }
  .description-box {
	height: auto;
	width: 80%;
  }
}

table {
  border: 3px solid;
  border-color: #0B4C5F;
  border-collapse: collapse;
}

th, td {
  border: 1px solid;
  border-color: #0B4C5F;
  border-collapse: collapse;
  padding: 5px;
}
