/* Video Player Page Stuff */


/* Styling for the Body */
body{
background: #011B01;
font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

img {
border: none;
}


/* Styling for Links */
a:link {
	color: #e0e0e0;
	text-decoration: none;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}
a:visited {
	color: #e0e0e0;
	text-decoration: none;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}
a:hover {
	color: #76ddff;
	text-decoration: none;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}
a:active {
	text-shadow: 5px 5px 10px #ffffff;
	text-decoration: none;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

#PlayerPage{
	margin: 0 auto;
}

#Logo{
	text-align: center;
	margin-top: 20px;
	margin-bottom: -10px;
}

#Logo img{
	width: 300px;
	opacity:0.9;
	filter:alpha(opacity=90); /* For IE8 and earlier */
}

#NavBoxTop{
	width: 80%;
	padding-bottom: 35px;
	margin: 0 auto;
}

.Label{
	color: #d5d5d5;
	font-weight: bold;
	font-size: 14px;
	font-variant: small-caps;
}

#SubjectBox{
	text-align: left;
	float: left;
	margin-left: 6.2%;
	color: #ffffff;
	font-size: 12px;
}

#ThisLessonLink{
	font-size: 12px;
	color: #ffffff;
	text-align: right;
	margin-right: 6.2%;
	float: right;
}


#PlayerBox{
	position: relative;
	top: 10px;
	width: 70%;
	height: 69%;
	margin: 0 auto;

}


#VideoBox{
	width: 100%;
	height: 100%;
}

#VideoBox video{
	width: 100%;
	height: 100%;
	border: 1px solid #e59b0d;
}


#NavBoxBottom{
	width: 80%;
	padding-top: 20px;
	margin: 0 auto;
	padding-bottom: 100px;
}

#PreviousLink{
	text-align: left;
	float: left;
	margin-left: 6.2%;
	color: #ffffff;
	font-size: 12px;
}

#NextLink{
	font-size: 12px;
	color: #ffffff;
	text-align: right;
	float: right;
	margin-right: 6.2%;
}

ul {
list-style-type: none;
}

#PreviousLinkGraphic{
	position: relative;
	top: 40px;
	left: -10px;
}

#NextLinkGraphic{
	position: relative;
	width: 200px;
	top: -15px;
	left: 1024px;
}

#MovieMessage{
	padding-top: 40px;
	text-align: center;
	color: #b0eaff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 20px;
}

#Transcript{
	width: 60%;
	margin: 0 auto;
	padding-top: 400px;
}

#Transcript p{
	padding-bottom: 20px;
	text-align: left;
	color: #dddddd;
	line-height: 140%;
	font-family: sans-serif;
	font-weight: normal;
	font-size: 18px;
}

.SurveyText {
color: #e1dfab;
font: 24px Papyrus;
text-align: left;
padding-left: 50px;
padding-right: 50px;
}

#SurveyButtons {
display: flex;
justify-content: center;
margin-top: -120px;
}



//------------------CSS of Dropdown Menu Begins Here ---------------
.dropbtn {
    background-color: #011B01;
    opacity: 0;
    color: black;
    padding: 3px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
   background-color: #76ddff;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    background-color: #011B01
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 260px;
    border-radius: 0px 3px 3px 0px; 
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.75);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #011B01;
    padding: 3px 0px 3px 7px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #b2eff7;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

#MovieMessage{
	padding-top: 40px;
	text-align: center;
	color: #b0eaff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 20px;
}






