/*
	~grosskreutz.ch
	
	~Author:
		- Moritz Peuser
			<http://415s.de>
		

	~Contents:
		reset
		layout
		typography
		forms
		custom elements
*/
/* ~ reset ~ */
* {
	margin: 0px;
	padding: 0px;
}

/* ~ layout ~ */
body {
	background: #FDD353 url(img/background-stripes.png) repeat-y left center;
}

#wrapper {
	margin: auto;
	width: 812px;
}

#header {
	background: url(img/header.png) no-repeat;
	height: 181px;
	margin-top: 25px;
	text-indent: -9999px;
}

#nav {
	list-style: none;
	background: url(img/navigation.png) repeat-y;
	overflow: hidden;
	padding: 0px 19px;
}

#nav li {
	float: left;
	margin-right: 5px;
}

#nav li a {
	text-decoration: none;
	color: white;
	padding: 7px 10px;
	display: block;
}

#nav li a:hover {
	background: url(img/nav-nipple.png) no-repeat bottom center;
}

#nav li.current a {
	background: url(img/nav-nipple.png) no-repeat bottom center;
}

#content {
	background: url(img/content.png) repeat-y;
	padding: 29px;
	overflow: hidden;
}

#footer {
	background: url(img/footer.png) no-repeat;
	height: 23px;
	text-indent: -9999px;
}

/* ~ typography ~ */
#nav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: white;
	font-weight: normal;
}

h2, h3, h4, h5, h6 {
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: normal;
	padding: 10px 0px;
}

p, table, ul, ol, address, small {
	font-family: "Lucida Grande","Lucida Sans","Lucida Sans Unicode",Arial,sans-serif;
	font-size: 0.75em;
	line-height: 1.7em;
}

label {
	margin: 5px 0px;
}

label input, textarea {
	display: block;
}

address {
	font-style: normal;
	margin-bottom: 10px;
}

a {
	color: #F24F4F;
}

a:hover {
	text-decoration: none;
}

#content ul {
	margin-left: 15px;
}

p {
	margin-bottom: 3px;
}

img {
	border: 1px solid #333;
	padding: 3px;
}

img:hover {
	border: 1px solid #505823;
}

/* ~ custom elements ~ */
.rFloat {
	float: right;
}

.lFloat {
	float: left;
}

.noList {
	list-style: none;
	margin-left: 0px !important;
}

.desc {
	margin-bottom: 25px;
}

#mailsent img {
	border: none;
}