
body
{
	margin:0px;
	font-family: arial, Gadget, sans-serif;
}

* {
	box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
[class*="col-"] {
    float: left;
    padding: 15px;
    border: 0px solid red;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.topnav
{
	position: relative; 
	overflow: hidden;
	background-color: var(--wd-ribbon-bg);
	font-family: "Bookman","Arial Black", Gadget, sans-serif;
	height: 150px;
}
.topnav a
{
	float: left;
	color: var(--wd-topnav-font);
	text-align: center;
	padding: 5px 15px 5px 15px;
	text-decoration: none;
	font-size: 24px;
}
.topnav a:hover
{
	color: var(--wd-topnav-hover);
	background-color:var(--wd-topnav-hover-bg); /*#333;*/
}

.topnav a.activenav {
  background-color: var(--wd-topnav-active-bg);
  color: var(--wd-topnav-active-font);
}

.topnav-centered a {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topnav-right {
  float: right;
  position: relative;
  top: 108px;
}

/* Responsive navigation menu (for mobile devices) */
@media screen and (max-width: 1235px) {
	.topnav-right
	{
		top:0px;
	}
	.topnav
	{
		height: auto;
		overflow: auto;
	}
}
@media screen and (max-width: 600px) {
  .topnav a, .topnav-right {
    float: none;
    display: block;
  }
  
  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}

.tooltip {
    position: relative;
    /*display: inline-block;*/
	font-family: "Bookman","Arial", Gadget, sans-serif;
	font-size: 16px;
	color: var(--wd-tooltip-font);
    border-bottom: 1px dotted var(--wd-tooltip-border);
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 600px;
    background-color: #ffffcc;
	border: 2px solid var(--wd-tooltip-border);
	font-size: 12px;
    color: var(--wd-tooltip-font);
    text-align: left;
    border-radius: 6px;
    padding: 5px 0;
	padding: 5px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
	z-index: 1;
}

h1
{
	font-family: "Bookman","Arial", Gadget, sans-serif;
	background: var(--wd-title-bg);
	color: var(--wd-title-font);
	margin: 0px;
	border: 0px red solid;
	font-size: 26px;
	padding: 5px;
	
}

h2
{
	font-family: arial;
	margin: 0px;
	font-size: 18px;
}

h3
{
	font-family: arial;
	margin: 0px;
	font-size: 14px;
}

p
{
	font-family: arial;
}

li
{
	font-family: arial;
}

a
{
	color: var(--wd-link-color);
}
a:hover
{
	background: var(--wd-link-hover-bg);
}
/*Button Class CSS Code*/
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: var(--wd-button-bg);
  border: none;
  color: var(--wd-button-font);
  text-align: center;
  font-family: "Bookman","Arial Black", Gadget, sans-serif;
  font-size: 24px;
  padding: 10px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  color: var(--wd-button-hover-font);
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover{
	background-color: var(--wd-button-hover-bg);
}

.button:hover span {
  padding-right: 25px;
  color: var(--wd-button-hover-font);
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
/*End Button class CSS Code*/
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.accordion {
    background-color: var(--wd-accordion-bg);
    color: var(--wd-accordion-font);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: var(--wd-accordion-hover-bg);
}

.accordion:after {
    content: '\002B';
    color: #777;			/*todo: figure out what this is*/
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: var(--wd-accordion-panel);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.ArticleBody
{
	border: 3px solid var(--wd-body-border);
	border-top: 0px;
	background-color: var(--wd-body-bg);
	padding: 5px;
	overflow: auto;
}

.ArticleTitle
{
	background: var(--wd-subtitle-bg);
	color: var(--wd-subtitle-font);
	font-family: "Bookman","Arial Black", Gadget, sans-serif;
	font-size: 18px;
	padding: 5px;
	padding-left: 15px;
	border-left: 3px solid var(--wd-body-border);
	border-right: 3px solid var(--wd-body-border);
}

.ArticleSubTitle
{
	background: var(--wd-subtitle-bg);
	color: var(--wd-subtitle-font);
	font-family: "Bookman","Arial Black", Gadget, sans-serif;
	font-size: 18px;
	padding: 5px;
	padding-left: 15px;
}

.footer
{
	position:fixed; 
	left:0;
	bottom:0; 
	width:100%; 

	text-align:center;
	background: var(--wd-ribbon-bg); 
	color: var(--wd-topnav-font);
}

.youtubeFrame
{
	width: 800px;
	height: 450px;
}

.steamFrame
{
	width: 100%;
	max-width: 800px;
	min-height: 190px;
	height: auto;
	overflow: auto;
}

/* this is for iPhones which are in portrait mode (480px device width)*/
@media only screen and (max-device-width:480px) and (orientation: portrait)
{
	/* For mobile phones: */
    [class*="col-"]
	{
        width: 100%;
    }
	.leftCol, .rightCol
	{
		width: 100%;
		margin: 0%;
	}
	.youtubeFrame
	{
		width:100%;
		height:auto;
	}
}

/* this is for iPhones which are flipped into landscape mode*/
@media only screen and (max-device-width:640px)  and (orientation: landscape)
{
	/* For mobile phones: */
    [class*="col-"] 
	{
        width: 100%;
    }
	.leftCol, .rightCol
	 {
		width: 100%;
		margin: 0%;
	}
	.youtubeFrame
	{
		width:630px;
		height:354px;
	}
	.steamFrame
	{
		width: 630px;
		height: 190px;
	}
}