html,
body
{
	background-image: url("../img/backround.jpg");
	background-size: cover;
	background-attachment: fixed;
	color: green;
		margin:0;
		padding:0;
		height:100%;
}

#container {
	min-height:100%;
	position:relative;

}

#testTast
{
	border-width: 2px;
	border-style: dotted;
	border-color: #ffffff;
	background-image: "img/favicon.png";
	background-repeat: repeat;
	background-color: #000000;
	width: 200px;
	margin-left: 20px;
	margin-right: 20px;
	
}


/* Header and Footer */
#header
{
	width: 100%;
	position: fixed;
}

#header-contents
{
	text-align: center;
	overflow: hidden;
	width: 80%;
	padding: 10px;
	background-color: #151515;
	color: #d0d0d0;
    margin-left: auto;
    margin-right: auto;
}

#footer
{
	position:absolute;
	bottom:0;
	width:100%;
	height:40px;   /* Height of the footer */
	padding: 0;
	align: bottom;
	margin-left:auto; 
	margin-right:auto;
	color: #d0d0d0;
}

#footer-contents
{
	text-align: center;
	background-color: #151515;
	width: 80%;
	height: 60px;
	padding: 10px;
    margin-left: auto;
    margin-right: auto;
}

#main-body
{	
	width: 100%;
	padding-top: 140px; /* Space for menu bar */
	padding-bottom:40px;   /* Height of the footer */
}

#main-text
{
	width: 75%;
	background-color: #101010;
	color: #d0d0d0;
	margin-left:auto; 
	margin-right:auto;
}

#main-text-contents
{
	border-style: solid;
	border-width: 5px;
	border-color: black;
	background-color: #f0f0f0;
	color: #101010;
	margin-top: 10px;
	margin-bottom: 5px;
	margin-left:auto; 
	margin-right:auto;
	padding-left:5px;
	padding-right:5px;
	padding-bottom:3px;
}

h3
{
	margin: 5px 50px;
}

p 
{
	margin: 0px 5px;
}

table
{
	width: 75%;
	background-color: #000000;
				
	margin-left:auto; 
	margin-right:auto;
}


#tab-container
{
	width: 35%;
	float: right;
}

/* Style the tab */
div.tab {
	width: 100%;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	width: 100%;
    display: none;
    padding: 6px 0px;
    border: 1px solid #ccc;
    border-top: none;
}

 /* unvisited link */
a:link {
    color: red;
}

/* visited link */
a:visited {
    color: green;
}

/* mouse over link */
a:hover {
    color: hotpink;
}

/* selected link */
a:active {
    color: blue;
}