html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
	padding: 20px;
	font-family: 'Glegoo', Arial, sans-serif;
	font-size: 13px;
	line-height: 1.7em;
	background: #333;
	color: #999;
}



h1 						{ font-size: 24px; line-height: 1.1em; color:#fff; }
h1 a 					{ font-size:13px; }
h2 						{ font-size: 20px; line-height: 1.1em; }
h3 						{ font-size: 16px; line-height: 1.1em; color:#fff; margin-top:40px; }


hr						{ height:1px; background-color:#666; color:#666; border:none; } /* ff00b6 */

ul, ol {
	margin-left: 1.5em;
}

a 				{ color: #FB4; text-decoration: none; }
a:hover 		{ color: #4BF; }

#black					{ padding:5px; }
#black.selected			{ background-color:#666; color:#fff; }
#white					{ padding:5px; }
#white.selected			{ background-color:#666; color:#fff; }


/**** Isotope styles ****/
/* required for containers to inherit vertical size from window */
html,
body {
	height: 100%;
}

#container {
	margin-bottom: 20px;
}

.element {
	width: 120px;
	height: 120px;
	margin: 10px;
	float: left;
	overflow: hidden;
	position: relative;
	/* background: #444; */
	color: #888;
	-webkit-border-radius: 0.2em;
			-moz-border-radius: 0.2em;
					border-radius: 0.2em;
}

.element.m { width:260px; height:260px; }
.element.l { width:400px; height:400px; }


.element.asdf { border:5px solid #f00; }

.element * {
	position: absolute;
	margin: 0;
}

.element .edit_img a			{ disply:block; width:10px; height:10px; background:#f90; }


.element .title {
	display:none;
}


.element .date {
	display:none;
}


.element .succession {
	display:none;
}


ul#filter, ul#menue-main {
	padding:0 0 3px 0;
	margin: 0 0 4px 0;
	list-style: none;
	float:left;
	display:block;
	width:100%;
	border-bottom:1px solid #666;
}


ul#filter li, ul#menue-main li {
	float: left;
	margin-bottom: 0.2em;
}

ul#filter li a, ul#menue-main li a {
	display: block;
	padding:0 5px 0 5px;
	border-right:1px solid #777;
}

ul#filter li a.last {
	border:none;
}


ul#filter li a.cat {
	vertical-align:bottom;
	color:#fff;
	border:none;
	margin-left:20px;
}

table.cv	{ width:600px; }
td.time		{ width:150px; padding:15px 0 15px 0; border-bottom:1px solid #666; font-weight:bold; }
td.what		{ width:450px; padding:15px 0 15px 0; border-bottom:1px solid #666; }


ul#filter li a.selected, ul#menue-main li a.selected {
  background-color: #666;
  text-shadow: none;
  color: white;
}




#content_container
{
    padding-bottom:3em;
}


#footer
{
	color:#888;
	white-space:nowrap;
    position:fixed;
    bottom:0px;
    padding:10px 20px 20px 0;
    margin-top:10px;
	border-top:1px solid #666;
    background:#333;
    width:94.5%;
    z-index:1000;
}


/* Angaben nur für den Internet Explorer mit Star HTML Hack */
* html, * html body
{
    margin:0;
    padding:0;
    height:100%;
    overflow:hidden;
}

* html #content_container 
{
    padding:0;
    height:95%;
    overflow:auto;
}

* html #footer 
{
    background:#efefef;
    height:5%;
    text-align:center;
    padding-top:1%;
}

.backdropselecta { float:right; }




/**** Infinite Scroll ****/

#infscr-loading {
	position: fixed;
	text-align: center;
	bottom: 30px;
	left: 42%;
	z-index: 100;
	background: white;
	background: hsla( 0, 0%, 100%, 0.9 );
	padding: 20px;
	color: #222;
	font-size: 15px;
	font-weight: bold;
	-webkit-border-radius: 10px;
		 -moz-border-radius: 10px;
					border-radius: 10px;
}

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/


.isotope-item {
	z-index: 2;
}

.isotope-hidden.isotope-item {
	pointer-events: none;
	z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
		 -moz-transition-duration: 0.8s;
					transition-duration: 0.8s;
}

.isotope {
	-webkit-transition-property: height, width;
		 -moz-transition-property: height, width;
					transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
		 -moz-transition-property:		-moz-transform, opacity;
					transition-property:				 transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
	-webkit-transition-duration: 0s;
		 -moz-transition-duration: 0s;
					transition-duration: 0s;
}

/* End: Recommended Isotope styles */



/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
	-webkit-transition: none;
		 -moz-transition: none;
					transition: none;
}

.clear	 								{ clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0; }


/* The Magnificent Clearfix: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
