
/* ----------CSS RESET-------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html
{
	height: 100%;
}



body
{
	background-color: #0b0b0b;
	font-size: 100%;
	line-height: 1.125em;
	font-family: 'Lucida Grande', Tahoma, Verdana, Arial, SunSans-Regular, Sans-Serif;
	color: #888888;
	margin: 0px;
	padding: 0px;
	background-image: url(../images/bg_body.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
}




/* ----------Container zentriert das Layout-------------- */
#container
{
	margin: 80px auto auto auto;
}

#container.start
{
	width: 800px;
	margin: 140px auto auto auto;
}


/* ----------Container Inhalt links Layout-------------- */
#containerinhalt
{
	margin: 80px 40px 40px 0;
	padding: 0;
}

/* ----------------------Header-------------------------- */
#header
{
	height: 120px;
	text-indent: -4000px;
	margin-bottom: 80px;
}

#header h2 a
{
	background-image: url(../images/donovanpicture.png);
	text-decoration: none;
	display: block;
	width: 335px;
	height: 164px;
	margin-left: 200px;
	background-repeat: no-repeat;
}	


/* ---------------------Navigation------------------------ */
#navcontainer
{
	margin-left: 305px;
	width: 100px;
}
#sidebar #navcontainer
{
	margin-left: 25px;
}

#navcontainer h1
{
	font-size: 0.8em;
	display: inline;
}

.current
{
	color: #a7a289;
	border-bottom: 2px #a7a289 solid;
	padding-bottom: 3px;
}

#navcontainer ul
{
	margin-top: 10px;
}

#navcontainer li
{
	line-height: 0.8em;
	padding-top: 3px;
	padding-bottom: 6px;
}

#navcontainer li a
{
	font-size: 0.8em;
}

#navcontainer a:link, #navcontainer a:visited
{
	color: #a7a289;
	text-decoration: none;
}

#navcontainer a:hover
{
	color: #CCCCCC;
}

#navcontainer a:active
{
	color: #FFFFFF;
}

/* ----------------------Inhalt-------------------------- */
#content
{
	margin-left: 200px;
	font-size: 0.75em;
	line-height: 1.25em;
}


#flashContent
{
	position: absolute;
	left: 170px;
	top: 90px;
	padding: 0;

}

/* ----------Inhalt Titel--------- */
#content h1
{
font-size: 1.5em;
margin: 0 0 0.75em;
color: #a7a289;

}

#content h2
{
font-size: 1.25em;
margin: 0 0 0.5em;
}

#content h3
{
font-size: 1.1em;
margin: 0 0 0.25em;
}

#content li.adresse
{

}

/* ----------Inhalt Absatz--------- */
#content p { 
margin: 0 0 0.5em;  /* verursacht abstand unten zu footer */
}

/* ----------Inhalt Links--------- */
#content a:link, #content a:visited
{
	color: #888888;
	text-decoration: none;
}

#content a:hover
{
	color: #CCCCCC;
	border-bottom: 1px #888888 dotted;
}

#content a:active
{
	color: #FFFFFF;
}


/* ----------Inhalt Listen--------- */
#content ul
{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

#content li
{
	background-repeat: no-repeat;
	padding-left: 2.25em;
	margin-top: 1em;
}
#content ul.referenzen li
{
	padding-left: 0;
}

#content li.adresse
{
	background-image: url(../images/icon_adresse.png);
}

#content li.telefon
{
	background-image: url(../images/icon_telefon.png);
}

#content li.im
{
	background-image: url(../images/icon_im.png);
}

#content li.mail
{
	background-image: url(../images/icon_mail.png);
}

#content li.weitere
{
	background-image: url(../images/icon_andere.png);
}

/* ------------------------Sidebar----------------------- */
#sidebar
{
	width: 200px;
	margin: 12px 0px 0px 0px;
	padding: 0px;
	float: left;
}

#sidebar h2
{
	text-indent: -4000px;
}

#sidebar h2 a
{
	background-image: url(../images/logo.png);
	text-decoration: none;
	display: block;
	width: 110px;
	height: 63px;
}	


/* ----------------------Image-Formatierung--------------------- */
a img
{
	border: none;
}

p img
{
	padding: 0;
	max-width: 100%;
}

/*	die Benutzung von z.B.'class="alignright"' und 'class="centered',
	ist besser/zukunftssicherer als z.B. align="center". (...und v.a. valid) */

img.centered
{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright
{
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
}

img.alignleft
{
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
}

.alignright
{
	float: right;
}

.alignleft
{
	float: left;
}

