/* layout.css */

/*
    COLORS:
    
    background      dark gray       rgb(50, 50, 50)
    text            light gray      rgb(200, 200, 200)
    
*/

body {
    color: rgb(200, 200, 200);
    background-color: rgb(50, 50, 50);
    
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 70%;
    text-transform: lowercase;
    text-align: center;
    
    width: 100%;
    height: 100%;
    
    margin: 0;
    padding: 0;
}

#body {
    width: 800px;
    
    margin-left: auto;
    margin-right: auto;
}

a, a:visited, a:active, a:hover {
    color: rgb(200, 200, 200);
    background-color: rgb(50, 50, 50);
    text-decoration: none;
    margin: 2px;
    font-weight: bold;
}

a:hover {
    color: rgb(255, 255, 255);
}

img {
    border: 0;
}

.valid-badge {
    width: 88px;
    height: 31px;
}

#head h1 {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
}

#menu {
    letter-spacing: 0.3em;
    word-spacing: 0.5em;

    border-top: 3px double rgb(200, 200, 200);
    border-bottom: 1px solid rgb(200, 200, 200);

    padding: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

#menu a {
    font-size: 1.2em;
}

#logo {
    width: 500px;
    height: 100px;
}

#referalad {
    float: right;
    margin-left: 20px;
    padding-left: 10px;
    border-left: 1px solid rgb(200, 200, 200);
}

#content {
    text-align: justify;
    
    padding-left: 5px;
    padding-right: 5px;
}

#content h1 {
    text-align: center;
    font-size: 1.35em;
}

#content h2 {
    text-align: center;
    font-size: 1.2em;
}

#content h3 {
    font-size: 1em;
}

#content a {
    color: rgb(255, 255, 255);
    background-color: inherit;
}

#content a:hover {
    color: rgb(200, 200, 200);
    background-color: inherit;
}

#footer {
    clear: both;
    
    color: rgb(80, 80, 80);
    background-color: inherit;
    
    font-size: 0.95em;
    
    margin-top: 40px;
}

#footer a, #footer a:hover {
    color: rgb(80, 80, 80);
    background-color: inherit;
    
    font-weight: normal;
    text-decoration: underline;
}

#ads {
    padding: 10px;
	vertical-align: middle;
}

#contact {
	width: 300px;
	margin: 0 auto;
	padding: 20px;
	background-color: rgb(40, 40, 40);
}

#contact label {
	clear: right;
	float: left;
	width: 80px;
	text-align: right;
}

#contact input, #contact textarea {
	float: right;
	width: 200px;
	font-size: 1em;
	font-family: inherit;
}

#contact label, #contact input, #contact textarea {
	margin-bottom: 5px;
}

#contact input.submit {
	clear: both;
	float: none;
	margin-left: 100px;
	margin-bottom: 0;
	width: 200px;
}