﻿body
{
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: 'lucida grande', arial, tahoma, sans-serif;
	background-image: url(images/bg.jpg); 
	background-attachment:fixed;
	
}

#container
{
	margin: 0 auto;
	padding-top: 20px;
	width: 1000px;
	position: relative;
	background-color: #FFFFFF;
}

#header
{
	margin: 0 auto;
	width: 1000px;
	height: 300px;
	background: transparent url('images/header.jpg') top left no-repeat;
	min-height: 20px;
}

.headtitle
{
	position:        relative;
	font-family:     Times;
	font-size:       30px;
	color:           #FFF;
	top:             210px;
	left:            12px;
}

#menu
{
	margin-top: 0px;
	margin-right: 50px;
	margin-left: 50px;
	margin-bottom: 0px;
	height: 50px;
	padding-top: 5px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 5px;
	top: 0px;
	display: inherit;
	
}

#menu ul
{
	margin:          0;
	padding:         7px;

	height:          29px;
}

#menu ul li
{
	list-style:      none;
	display:         inline;
}

#menu ul li a:link, #menu ul li a:active, #menu ul li a:visited
{
	color:           #767676;	
	padding:         10px 7px 10px 7px;
	font-size:       1em;

	font-family:     'lucida grande', arial, sans-serif;
	font-weight:     bold;
	text-decoration: none;
}

#menu ul li a:hover
{
	background-color: #A24343;
	color: #FDFDFD;
}


#content
{
	
	min-height: 390px;
	margin: 0 auto;
	background-color: #FDFDFD;

	
	
	
}

#insidecontent
{
	float:           left;
	padding-left:    25px;
	padding-right:    25px;
	width:           auto;
}

#insidecontent p
{
	margin: 0;
	color: #000000;
	font-family: Tahoma;
	font-size: 1.2em;
	line-height: 170%;
}




h1
{
	margin: 0;
	font-weight: normal;
	color: #767676;
	font-size: 2.5em;
	font-family: Times;
}

h2
{
	margin:          0;
	display:         inline;
	position:        relative;
	top:             -1.5em;
	left:            2em;
	font-size:       1.8em;
	font-weight:     normal;
	color:           #94c258;
}

h3
{
	margin: 0;
	font-size: 1.5em;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}

#footer
{
	margin:          0 auto;
	width:           641px;
	height:          39px;

}

#footer span
{
	display:         block;
	position:        relative;
	font-family:    Tahoma;
	font-size:       1.2em;
	padding:         10px;
	color:           #767676;
}

/*Dropdown */
.dropbtn {
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: 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: #FFFFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

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

/* 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: #F1F1F1;
}