/* 
** flowertree - default stylesheet
** This CSS file makes the website look pretty ;-)
** 
** Nov 18, 2006 - (version 1.0)
** 
** This is a part of the open source layout by 
** Jonas John (www.jonasjohn.de) !
*/

/* page overall: */

body,div,p,img,form,h1,h2,h3,h4,h5,h6 { 
    margin: 0; 
    padding: 0; 
    border: 0;
}

ul {
	padding-left: 2em;	
}

body {
	/* BG-Color: */
	background-color: #D4D0C8;
	text-align: center;
}

.page {
	/* Page width: */
	width: 768px;
	//width: 90%;
}

#logo {
	margin: 0 auto;
	text-align: left;
	font-family: Union, Trebuchet MS, Arial;
	font-size: 1.7em;	
	margin-bottom: 0.2em;
	letter-spacing: -0.01em;
}

#logo a:link, #logo a:visited, #logo a:hover, #logo a:active {
	text-decoration: none;
	/* logo color 1: */
	color: #C43917;
}

#logo_black {
	/* logo color 2: */
	color: #000000;
}

#contentbox {
	background-color: #FFFFFF;                
	margin: 0 auto;
	text-align: left;
}

/* menu: */

#menu {
	margin: 0 auto;
	text-align: center;
	color: #99846E;
	font-family: Verdana, Arial;
	font-size: 0.7em;
	margin-top: 0.3em;
}

#menu a:link, #menu a:visited {
	color: #99846E;
	text-decoration: none;
}

#menu a:hover, #menu a:active {
	color: #C43917;
	text-decoration: none;
}

#padding {
	padding: 1em;
}

#innerpage {
	/* Background image: */
	background-image: url("../images/background4.jpg");
	background-repeat: no-repeat;
	padding: 1em;
	height: 500px;
}

/*
 Styles that apply to the 
 content area:
*/

#content {
	margin-top: 142px;
	background-color: #ffffff; 
	filter: Alpha(opacity=70); 
	opacity: .7; 
	width: 100%;
	height: 344px;
	font-family: Verdana, Arial;
	font-size: 0.8em;
	overflow: auto;
}

#content p {
	font-size: 0.9em;
}

/* heading */
#content h1 {
	font-size: 1.3em;
	font-family: Trebuchet MS;
	margin-top: 0.2em;
	margin-bottom: 0.3em;
	color: #BF2016;
}

/* link colors */
#content a:link {
	color: #C2361D;
}

#content a:hover, #content a:active {
	color: #33201D;
}

#content a:visited {
	color: #892614;
}

form * {margin:0;padding:0;} /* Standard margin and padding reset, normally done on the body */

legend {
	color:#000; /* IE styles legends with blue text by default */
	*margin-left:-7px; /* A hack that only ie reads to position the legend in the same place cross browser */
}
fieldset {
	border:1px solid #dedede; /* Default fieldset borders vary cross browser, so make them the same */
}
fieldset div {
	overflow:hidden; /* Contain the floating elements */
	display:inline-block; /* Give layout in ie to contain float */
}
fieldset div {display:block;} /* Reset element back to block leaving layout in ie */
label {
	float:left; /* Take out of flow so the input starts at the same height */
	width:5em; /* Set a width so the inputs line up */
}

.radio {
	position:relative; /* Position so children are relative to this container */
	border:0; /* Remove the border */
}
.radio span {
	position:absolute; /* Take the content of the legend out of flow */
	top:0;left:0; /* and position it to the top left of the fieldset */
	width:5em; /* Same width as labels */
}
.radio ul {
	margin-left:5em; /* Since the legend is out of flow. set margin, so inputs are inline */
	list-style:none; /* Dont want bullets */
}
.radio li {
	position:relative; /* Fix a bug in IE zoom functionality */
	display:inline; /* Display the inputs in a line */
	white-space:nowrap; /* We dont want a label to wrap between the input and label */
}
.radio label, .radio input {
	width:auto; /* Reset the width on the label from the 5em, set earlier */
	float:none; /* Reset the float from left on the label, set earlier */
	vertical-align:middle; /* Align the radio buttons with the inputs */
}

