/*html5 fix*/
section, article, header, footer {
	display: block;
}

* {
	margin: 0px;
	padding: 0px;
	border: none;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	background: #fcfcfc;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0.5em;
}

	h6, h5, h4 {
		font-size: 15px;
	}
	
	h3 {
		font-size: 18px;
	}
	
	h2 {
		font-size: 20px;
	}
	
	h1 {
		font-size: 22px;
	}

p, ul, ol {
	font-size: 15px;
	line-height: 21px;
	margin-bottom: 1em;
}

li {
	margin-left: 1.5em;
}

a {
	text-decoration: none;
	color: inherit;
}

blockquote {
	font-style: italic;
	margin: 1em;
}

#container {
	width: 700px;
	margin: 0px auto;
}

.clear {
	clear: both;
}

hr {
	border-bottom: 1px solid #ccc;
}

/*Effects*/
.shadow {
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 9px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 9px;
	-o-box-shadow:  rgba(0, 0, 0, 0.4) 0px 0px 9px;
	-khtml-box-shadow:  rgba(0, 0, 0, 0.4) 0px 0px 9px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 9px;
}

.innershadow {
	-webkit-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 0px 9px;
	-moz-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 0px 9px;
	-o-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 0px 9px;
	-khtml-box-shadow: inset rgba(0, 0, 0, 0.4) 0px 0px 9px;
	box-shadow: inset rgba(0, 0, 0, 0.4) 0px 0px 9px;
}

.fadein {
	opacity: 0.8;
	-webkit-transition: opacity 0.1s linear;
	-moz-transition: opacity 0.1s linear;
	-o-transition: opacity 0.1s linear;
	-khtml-transition: opacity 0.1s linear;
	transition: opacity 0.1s linear;
}

.rounded {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

.fadein:hover {
	opacity: 1;
}

/*Header*/
#mainheader {
	
}

	#mainheader img {
		margin: 40px auto 0px auto;
		display: block;
	}


/*Article Preview*/
#mainpreview {
	margin: 40px 0px;
}

.bigpreview {
	margin: 30px 0px;
	padding: 10px;
	background-image: url('img/bg_dark.jpg');
	background-repeat: repeat-x;
	background-color: #14181e;
	color: white;
}

.bigpreviewimg {
	float: left;
	background: transparent;
	width: 150px;
	min-height: 150px;
}

.bigpreviewart {
	float: left;
	height: 100%;
	margin: 0px 10px;
	width: 510px;
}

	.bigpreviewart h1 {
		margin: 10px;
	}

	.bigpreviewart p {
		font-style: italic;
		margin: 0px 10px 0px 10px;
	}

.smallpreview {
	width: 150px;
	min-height: 150px;
	margin: 12px;
	float: left;
}

	.smallpreview .commentlink a {
		font-size: 12px;
		padding: 3px;
		text-decoration: none;
		color: white;
		background: rgba(0,0,0,0.8);
		text-align: right;
		display: block;
		width: 15px;
		height: 15px;
		text-align: center;
		vertical-align: middle;
	}

	.smallpreview h1 {
		font-size: 12px;
		display: block;
		width: 144px;
		padding: 3px;
		margin: 110px 0px 0px 0px;
		background: rgba(0,0,0,0.8);
		color: white;
		font-weight: normal;
		text-align: left;
	}
	
/*Single Article*/
.singleart {
	margin: 40px auto;
	color: #333;
	border-bottom: 1px solid #ccc;
}

.singleart header {
	text-align: center;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
	.singleart header h1 {
		font-size: 32px;
		margin-top: 16px;
		margin-bottom: 16px;
	}
	
.singleart article {
	margin: 40px;
}

/*Comments*/
#comments {
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
}

.commentlist {
	border-bottom: 1px solid #ccc;
}

#comments li {
	list-style: none;
}

.comment {
	margin: 60px 30px;
}

.depth-2 {
	margin-left: 60px;
}
	.depth-2 .commenttext {
		width: 460px;
	}

.depth-3 {
	margin-left: 90px;
}
	.depth-3 .commenttext {
		width: 430px;
	}
	
.depth-4 {
	margin-left: 120px;
}
	.depth-4 .commenttext {
		width: 400px;
	}
	
.depth-5 {
	margin-left: 150px;
}
	.depth-5 .commenttext {
		width: 370px;
	}

.commentauthor {
	display: block;
	width: 80px;
	height: 80px;
	float: left;
}

	.commentauthor span {
		font-size: 12px;
		background: black;
		opacity: 0.8;
		color: white;
		display: block;
		width: 74px;
		padding: 0px 3px;
		margin-top: 60px;
		overflow: hidden;
		white-space: nowrap;
	}
	
.commenttext {
	position: relative;
	float: left;
	width: 490px;
	margin-left: 30px;
	padding-left: 30px;
	border-left: 1px solid #ccc;
	min-height: 80px;
}

	.commenttext .comment-reply-link {
		position: absolute;
		bottom: 0px;
		right: 0px;
		color: #ddd;
		-webkit-transition: color 0.1s linear;
		-moz-transition: color 0.1s linear;
		transition: color 0.1s linear;
	}
	
	.commenttext .comment-reply-link:hover {
		color: inherit;
	}
	
/*Comment-form*/
#reply-title, .comment-notes, .required, .form-allowed-tags {
	display: none;
}

#respond input, #respond textarea {
	border: 1px solid #ccc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.comment-form-author input, .comment-form-email input, .comment-form-url input {
	padding: 3px;
	width: 169px;
}

#commentform label {
	display: block;
}

.comment-form-author, .comment-form-email, .comment-form-url {
	float: left;
	margin: 0px 20px;
}

.comment-form-comment label {
	display: none !important;
}

.comment-form-comment textarea {
	display: block;
	width: 610px;
	min-width: 610px;
	max-width: 610px;
	margin: 20px;
	float: left;
}

#respond {
	margin: 0px auto;
	width: 651px;
}

#submit {
	display: block;
	width: 610px;
	margin: 0px 20px;
	padding: 3px;
	float: left;
}

/*Footer*/
footer {
	width: auto;
	margin: 0px auto 30px auto;
	/*border-top: 1px solid #ccc;*/
	padding-top: 40px;
}

	footer .spalte {
		width: 172px;
		float: left;
		text-align: center;
		color: #000;
		min-height: 200px;
	}
	
	footer .spalte li {
		list-style: none;
		margin-left: 0px;
	}
	
		footer .spalte ul li {
			margin: 10px 0px;
		}
		
	footer .line {
		border-right: 1px solid #ccc;
		height: 250px;
		float: left;
	}
	
	footer .widgettitle a img {
		display: none;
	}
	
	footer .widgettitle {
		font-size: 16px;
	}
	
	.widget_archive .widgettitle, .widget_categories .widgettitle {
		display: none;
	}
	
	.widget {
		margin: 10px 0px;
	}
	
	#searchform div label, #searchsubmit {
		display: none;
	}
	
	#s {
		padding: 3px;
		border: 1px solid #ccc;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
	}
	
	.widget_links {
		margin: 0px;
	}
	
	.widget_links .widgettitle {
		font-size: 20px;
	}
	
	.widget_tag_cloud {
		margin: 0px;
	}
	
	.widget_tag_cloud .widgettitle {
		font-size: 20px;
	}

#execphp-3 {
	margin-top: 0px;
	margin-bottom: 0px;
}

	#execphp-3 .widgettitle {
		font-size: 20px;
	}
	
	#execphp-3 .execphpwidget {
		padding-left: 10px;
		padding-right: 10px;
	}

/*Searches, Archive, etc.*/
.articlelisting {
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 0px;
}

	.articlelisting h1 {
		margin: 1em 0em;
	}
	
	.articlelisting article {
		margin: 20px;
		font-style: italic;
	}
	
/*Kreaviter Raum*/
#kreativ-hidden {
	height: 0px;
	-webkit-transition: height 0.2s linear;
	-moz-transition: height 0.2s linear;
	transition: height 0.2s linear;
	border-bottom: 0px solid #ccc;
	overflow: hidden;
}

#collapse {
	float: right;
}

/*Bilder*/
.alignleft {
	margin: 20px;
	float: left;
}

.alignright {
	margin: 20px auto;
	text-align: center;
}

.alignright {
	margin: 20px;
	float: right;
}

/*Dialog*/
.p1 {
	margin-right: 60px;
	padding: 10px;
	background: white;
	border: 2px solid #c9c2c1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

p.p1 {
	margin-bottom: 0px;
}

.p1c {
	margin-top:-2px;
	padding: 15px 0px 0px 15px;
	background: transparent url(img/tip.png) no-repeat 20px 0px;
}

.p2 {
	margin-left: 60px;
	padding: 10px;
	background: white;
	border: 2px solid #c9c2c1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

/*Captcha Free*/
a[href='http://wordpresssupplies.com/wordpress-plugins/captcha-free/'] {
	display:none;
}
