
 /* Styles the body. */
body{
	background: #CC2527;
	margin: 0;
	padding: 20px;
        min-width: 690;
}

#holder{
	position: relative;
	width: 690px;
	margin-left: auto;
        margin-right: auto;
        padding: auto;
	background: #ffffff;
	border: 20px black solid;
}



 /* Styles the h1 header tag. */
#header h1{
	font: bold 2em/300% Georgia, serif;
	color: #000000;
	margin: 0;
	padding: 0 .7em 0;
	background: white;
	border-bottom: 20px black solid;
	text-align: center;
	border-top: 20px black solid;
}



 /* Box which holds the content and aligns it to the left. */
#content{
	/*position: relative;*/
	padding: 20px;
        background: #ffffff;
	width: 500px;
        float: right;
}

 /* Styles the h3 header tag. */
#content h3{
	font: 1.4em/100% georgia, Sans-Serif;
	color: black;
	margin: 0;
	padding: 10px 5px 0 0;

}

 /* Styles the p-tag (the paragraphs). */
#content p{
	font: .8em/150% georgia, Sans-Serif;
	text-align: justify; /* You can also use: justify, center and right. Try them! */
	margin: 0;
	padding: 10px 5px 1em 5px;
}

#content p img.floatleft{
	float: left;
	margin: 0 13px 5px 0;
	border: 5px black solid;
}

 /* Styles quotes displayed as block-elements. */
#content p.blockquote{
	margin: 0 5px 0 20px;
	padding: 6px;
	font: .7em georgia, Sans-serif;
	border-left: 1px black dashed;
	background: white;
	text-align: justify;
}

#content p.blockquote:hover{
	border-left: 1px black dashed;
	background: #CCCC99;
}

 /* Puts > Quote: " < in front of everything inside the quote, so you don't have to! */
#content p.blockquote:before{
	content: "Quote: " open-quote;
	font-weight: bold;
	font-style: italic;
}

 /* Puts a > " < after the quote. */
#content p.blockquote:after{
	content: close-quote;
	font-weight: bold;
	font-style: italic;
}

 /* Styles the links inside the content-box. */
#content a{
	color: #9C9C4F;
	text-decoration: none;
	background: white;
	font: .7em georgia, Sans-serif;
}

 /* Gives the links a hover-effect. */
#content a:hover{
	color: white;
	background: #9C9C4F;
	text-decoration: none;
	text-decoration: none;
	font: .7em georgia, Sans-serif;
}


#menu{
	width: 150px;
        float: left;
        background: #ffffff;
}

 /* Hides the h1 text in CSS-compliant browsers, but seen by text-based browser. */
#menu h1{ font: 0em/0% georgia, sans-serif; text-indent: -4321px; height: 0; margin: 0; padding: 0; }

 /* The actual menu holder. */
#menu ul{
	margin: 0px 0 10px 0;
	padding: 15px 15px 15px 15px;
	border-left: 10px #ffffff solid;
}

 /* Styles the link-descriptions above the links. */
#menu ul{
	margin: 10px 10px 0 0px;
	padding: 5px 5px 5px 5px;
	background: black;
	font: .8em/150% georgia, sans-serif;
	color: #ffffff;
}

 /* Tags which holds each link in the menu. */
#menu li{
	margin: 0;
	padding: 0px;
}

 /* Styles the links in the menu. */
#menu li a{
	background: white;
	display: block;
	font: .8em/20px verdana, sans-serif;
	color: black;
	padding: 0 0px 0 5px;
	text-decoration: none;
}

 /* Makes a hover effect when the mouse is over a link. Also styles the selected link. */
#menu li a:hover, #menu dd a.selected{
	color: #FFFFFF;
	background: green;
	font-weight: bold;
}

 /* Makes the hover-effect disappear */
#menu li:hover dd a.selected{
	background: green;
	display: block;
	font: .8em/20px verdana, sans-serif;
	color: white;
	padding: 0 5px 0 15px;
	text-decoration: none;
}

#menu li:hover dt{
	color: #ffffff;
}

 /* A form. */
#menu form{
 	margin: 0;
	padding: 4px;
}

 /* Styles the text-input. */
#menu input.text{
	width: 100px;
	margin: 0 0 1px 0px;
	padding: 0px;
	background: white;
	border: 2px black solid;
	font: .7em georgia, sans-serif;
	color: #000000;
}

 /* Styles the button. */
#menu input.button{
	width: 50px;
	margin: 0 0 2px 0px;
	padding: 0px;
	background: white;
	border: 1px black solid;
	font: .7em georgia, sans-serif;
	color: #000000;
}

 /* Changes the text and button background color */
#menu input.text:focus, #menu input.button:focus{
	background: #ffffff;
}

#submenu{
	width: 130px;
        float: left;
        background: #ffffff;
        padding: 10px;
}
#submenu ul a{
	color: green;
	text-decoration: none;
        background: white;
	font: .7em georgia, Sans-serif;
}

 /* Gives the links a hover-effect. */
#submenu ul a:hover{
	color: white;
	background: green;
	text-decoration: none;
	text-decoration: none;
	font: .7em georgia, Sans-serif;
}
#submenu a{
	color: green;
	text-decoration: none;
	background: white;
	font: .7em georgia, Sans-serif;
}



#footer{clear:both;}




 