@charset "utf-8";


/*Table*/

/* 
Generic Styling, for Desktops/Laptops 
*/
table { 
  width: 75%; 
  border-collapse: collapse; 
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: auto;
	margin-left: auto
}

th { 
  background: rgba(158,154,154,1.00); 
  color: rgba(0,0,0,1.00);
  font-weight: bold;
 border: 2px solid rgba(53,52,52,1.00); 
	text-align: center;
}
td { 
  padding: 6px; 
  border: 2px solid rgba(53,52,52,1.00); 
  text-align: left; 
}


/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	td:nth-of-type(1):before { content: "No"; }
	td:nth-of-type(2):before { content: "Code"; }
	td:nth-of-type(3):before { content: "Title"; }
	td:nth-of-type(4):before { content: "Air Date"; }
	td:nth-of-type(5):before { content: "Eps"; }
	td:nth-of-type(6):before { content: "Exists"; }
}


body {
	background-color: #000000;
	font-family: Helvetica, Calibri, Lucida Sans Unicode;
	color: rgba(232,232,232,1.00);
	font-size: 1em;

}


.content a:link {
	color: #0066FF;
	text-decoration: none;
}
.content a:visited {
	color: #FF0000;
	text-decoration: none;
}
.content a:active {
	color: #E4E4E4;

}


.caption{
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 1px;
	margin-bottom: 5px;
	font-size: .8em;
	text-align: center;
}

/* Internal Navigation  */

#bottom nav {
	border-radius: 5px;
	padding: 5px;
	margin: 10px 20px 10px 20px;
	text-align: center;
}

#bottom nav  li a {
	color: hsla(0,1%,71%,1.00);
	text-align: center;
	vertical-align: middle;
}

#bottom nav li {
	display: inline-block;
	list-style-type: none;
	padding: 10px 15px 15px 10px;
	margin: 5px 50px 5px 50px;
	line-height: 2.5em;
	text-align: center;
	vertical-align: middle;
	border-radius: 9px;
	background-color:rgba(134,2,4,1.00);
	color: hsla(0,1%,79%,1.00);
}
#bottom nav li a:hover {
	margin: 5px 0px 5px 0px;
	border-radius: 9px;
	padding: 5px;
	color: hsla(221,94%,7%,1.00);
	background-color: rgba(186,186,186,1.00);
	font-size: 0.95em;
	font-weight: bold;
}

 h1 {
	color: #E4E4E4;
	background-color: #4F4F4F;
	margin-right: 20px;
	margin-left: 20px;
	font-size: 1.3em;
	 padding: 5px;
	font-weight: normal;
	text-align: center;
	line-height: normal;
	 border-radius: 10px;
}

h2{
	
	color: #E4E4E4;
	background-color: #4F4F4F;
	margin-right: 20px;
	margin-left: 20px;
	font-size: 1.2em;
	 padding: 5px;
	font-weight: normal;
	text-align: center;
	line-height: normal;
	 border-radius: 10px;
}

h2 + p{
	
	margin-bottom: 100px;
}

h3{
	margin-left: 20px;
	margin-right: 20px;
	font-size: 1.15em;
}


h3 a{
	
	color: rgba(179,179,179,0.95)
}

iframe {
	
	border: none;
	width: auto;
	height: auto;
}

#video{
	
	width: 350px;
	height: 110px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	
}
img{
	margin: 0px;
	padding: 0px;
}
img + p {
	
	margin-bottom: 100px;
}
p{
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 5px;
	margin-bottom: 5px;
}

a[id] {
	
	color: rgba(232,232,232,1.00);
}

/*Modal*/
.w3-modal-dialog .w3-modal-content {
	background-color: hsla(0,0%,0%,0.81);
	color: hsla(0,6%,90%,1.00);
	border-radius: 10px;
	width: 400px;
	height: 300px;
}


.w3-modal-dialog .w3-modal-content a {
	color: hsla(239,75%,55%,1.00);
}


/*Media*/

@media (min-width: 800px){
        .content {
        width: 750px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
		font-size: 1.2em;

       
                }

                
        }



