﻿
/* Custom -------------------------------------------*/

.style-wtitle {
    font-family: Verdana;
	font-size: 30px;
	font-weight: 100;
	color: #008000;
	background-color: #000000;
    text-align:center;
}

.style-Ver {
	font-family: Verdana;
	font-size: 25px;
	font-weight: 100;
	color: #008000;
	background-color: #FFFFFF;
    text-align:center;
}

.style-Samp {
	font-family: Verdana;
	font-size: 25px;
	font-weight: 100;
	color: #FFFF00;
	background-color: #000000;
    text-align:center;
}

.style-NotR {
    font-family: Verdana;
    font-size: 25px;
    font-weight: 100;
    color: #800000;
    background-color: #FFFFFF;
}

a:active {
	color: #008000;
}
a:hover {
	background-color: #00B700;
	color: #000;
}
a:link {
	color: inherit;
}
a:visited {
	color: inherit;
}
body {
	background-color: #000000;
	font-family: Verdana,Andalus,Sans-serif;
	color: #FFFFFF;
	border-color: #013220;
	border-style: solid;
	border-width: 1px;
	font-size: 20px;
}

h1 {
	color: #00FF00;
	display: block;
	font-size: 33px;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

h2 {
	color: #00FF00;
	display: block;
	font-size: 26px;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

h3 {
	color: #00FF00;
	display: block;
	font-size: 28px;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

h4 {
	color: #FFFFFF;
	display: block;
	font-size: 20px;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

h5 {
	color: #FFFFFF;
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

img {
	border: none;
	float: left;
	margin: 0px 0px 0px 0px;
}

.nounderline A {
	text-decoration: none;
	text-align: left;
}

p {
	background-color: rgb(0,0,0);
	color: #FFFFFF;
	font-family: Verdana;
	font-style: normal;
	font-size: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

header {
	width: auto;
	background-color: black;
	font-family: Verdana;
	color: #00B700;
	font-size: 14px;
	border-color: #008000;
	border-style: solid;
	border-width: 1px;
	height: auto;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}

section {
	width: auto;
	background-color: #000000;
	font-family: Verdana;
	color: #FFFFFF;
	font-size: 30px;
	border-color: #00B700;
	border-style: solid;
	border-width: 1px;
	height: auto;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}

footer {
	width: auto;
	background-color: black;
	font-family: Verdana;
	color: white;
	font-size: 16px;
	border-color: #FF77FF;
	border-style: solid;
	border-width: 2px;
	height: auto;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 0;
}



/*  DROPDWON MENU -------------------------------------------------*/
/* Dropdown Button */
.dropbtn {
	background-color: #FFF;
	color: #FFFFFF;
	padding: 0px;
	font-size: inherit;
	border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #F1F1F1;
	min-width: 300px;
	font-size: 25px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,1);
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 5px 10px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
	.dropdown-content a:hover {
		background-color: #DDD;
	}

/* Show the dropdown menu on hover */
	.dropdown:hover .dropdown-content {
	display: block;
	}

/* Change the background color of the dropdown button when the dropdown content is shown */
	.dropdown:hover .dropbtn {
		background-color: #3E8E41;
	}
