/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */


/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
/*ul,ol { list-style:none }*/

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address */
address { font-style:normal }

/* more varnish stripping as necessary... */
* html {
	height: 100%;
}
body {
	background: #454545 url(../jpg/bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100%;
	color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
a:link, a:hover, a:visited, a:active {
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
}
div#container {
	width: 840px;
	position: absolute;
	left: 50%;
	margin-left: -420px;
	top: 40px;
}
div#header {
	height: 108px;
}
div#menue {
	margin-top: 4px;
	padding-left: 250px;
	line-height: 20px;
	border: 1px solid #000;
	background: #323232;
	height: 20px;
	color: #FFF;
}
div#sitepic {
	margin-top: 7px;
	width: 215px;
	background: #FFFFFF;
	float: left;
	height: 490px;
	padding: 10px;
}
div#content {
	width: 575px;
	margin-top: 7px;
	margin-left: 240px;
	padding: 10px;
	height: 490px;
}
div#footer {
	width: 840px;
	margin-top: 4px;
	font-size: 10px;
}
.logo {
	padding-right: 150px;
}
td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

