* 	{margin: 0;
	padding: 0;}

body {
	background-color: #000000;
	background-image: url(images/bg.jpg);
	background-repeat: repeat-x;
	font-size: 62.5%;
}
	  
#container {
	margin-top: 12px;
	margin: auto;
	width: 622px;
	color: #CBCBCB;
	font-family: Microsoft Sans Serif, "Times New Roman", Times, serif;
	font-size: 12pt;
}

#header {
	margin: auto;
	background-image: url(images/StokerVerse.jpg);
	height: 300px;
	width: 600px;
	color: #FFFFFF;
}


#menu {

	color: #FFFFFF;
	font-size: 18pt;
	font-style: none;
	margin-left: 10px;
	text-align: Right;
	padding: 6px;
}

#main {
	background-image: url(images/main.jpg);
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
	background-repeat: no-repeat;
	
}

#img {
	margin: 8px;
}
	

#footer {
	text-align: center;
	clear: both;
	color: 696969;
	background-color: #0A0A0A;
	padding: 20px;
}

.float_left {
	float: left;
    margin-right: 5px;
	margin-bottom: 3px;
	
}

#footer a:link {
	color: #696969;
	text-decoration: none;
}
		
#footer a:visited {
	color: #696969;
    text-decoration: none;
}
		   
#footer a:hover {
	color: #5C5C5C;
    text-decoration: underline;
}
		  
#footer a:active {
	color: #696969;
    text-decoration: none;
}

p {
	padding-bottom: 25px;
}

h1 {
	font-family: Nosferatu, "Times New Roman", Times, serif;
	font-size: 16pt;
	font-style: italic;
	color: #000000;
	margin-left: 360px;
	padding-top: 75px;
}

h2 {
	font-family: Nosferatu, "Times New Roman", Times, serif;
	font-size: 1.6em;
	border-bottom: 1px solid gray;
	margin-bottom: 10px;
	font-style: italic;
	color: #FFFFFF;
}


a:link {
	color: #000000;
	text-decoration: none;
}
		
a:visited {
	color: red;
    text-decoration: none;
}
		   
a:hover {
	color: red;
	background-color: #080808;
	text-decoration: underline;
}
		  
a:active {
	color:red;
    text-decoration: none;
}

#navlist li
{
	display: inline;
	list-style-type: none;
	padding-right: 20px;
}
/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
   
	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
	visibility: visible;
  }