 @font-face
{
	font-family: "karate_chop"; src: local('karatechop'), url('karatechop.ttf')
	format('TrueType')
}

@font-face{ 
	font-family: 'ChocD';
	src: url('chocd-webfont.eot');
	src: url('chocd-webfont.eot?#iefix') format('embedded-opentype'),
	     url('chocd-webfont.woff') format('woff'),
	     url('chocd-webfont.ttf') format('truetype'),
	     url('chocd-webfont.svg#webfont') format('svg');
}


body {
	background-color: #FFFFFF;
	font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;
	font-size: 14px;
	margin:0;
	padding:0;
	height: 100%;
}

.center {
	text-align: center;
}

#body_wrap {
	height: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	width: 100%;
	min-height: 100%;
}

#header_home {
	position: relative;
	border-bottom: 2px solid black;
	/*background-image: url('../res/sonne.svg');
	background-position: left center;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../res/sonne.svg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../res/sonne.svg', sizingMethod='scale')";*/
}

#header {
	position: relative;
	border-bottom: 2px solid black;
}

#header_sonne {
	height: 100%;
	width: 1080px;
	background: url('../res/sonne_gross.png');
	background-position: left bottom;
	background-repeat: no-repeat;
	position: absolute;
	top:0px;
	left:0px;
	z-index:-5;
}

#header_sonne_anim {
	height: 150%;
	width: 1080px;
	background: url('../res/sonne_gross.png');
	background-position: left bottom;
	background-repeat: no-repeat;
	position: absolute;
	top:0px;
	left:-50px;
	z-index:-5;
}
#sonne_wrap {
	position: absolute;
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: -1;
}
#header #header_caption {
	position: absolute;
	left: 50px;
	top: 25px;
	font-family: ChocD;
	font-size: 28px;
	width: 170px;
	text-align: center;
}
#header_home #header_caption {
	position: absolute;
	left: 50px;
	top: 25px;
	font-family: ChocD;
	font-size: 48px;
	width: 280px;
	text-align: center;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 1024px) {
	#header_home #header_caption {
		font-size: 28px;
		width: initial;
	}
	#header #header_caption {
		top: 12px;
		width: initial;
	}
}

#header_symbols {
	font-family: karate_chop;
	font-size: 70px;
	position: absolute;
	height: 100px;
	top:50px;
	right: 100px;
}

.home_link {
	color: #000000;
}

#nav_id {
	position: relative;
	float: right;
	padding: 0px;
	margin: 0px 50px;
	z-index: 10;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 840px) {
	#nav_id {

	}
}
.profile_pic {
	height: 32px;
	width: 32px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	float:right;	
	margin-left: 10px;
}
.profile_name {
	display: inline;
}

a {
	color: #FF0000;
	text-decoration: none;
}

.wrap {
	width: 90%;
	height: 100%;
	margin: 0px auto;
	position: relative;
}
.logon_user {
	position: absolute;
	top: 10px;
	right: 30px;
	text-align: right;
}


#nav {
    margin:0;
    padding:0;
    list-style:none;
	float: left;
}    
    
    /* make the LI display inline */
    /* it's position relative so that position absolute */
    /* can be used in submenu */
    #nav li {
        float:left;
        display:block;
		font-size: 18px;
        width:100px;
        position:relative;
        z-index:5;
        margin:0px;
		border-bottom:2px solid transparent;
    }
/*    #nav li:hover {
		border-bottom:2px solid #fff;
	}*/
    /* this is the parent menu */
	#nav li p {
        display:block;
        padding: 0px;
        text-align:center;
		height: 50px;
		color: #000000;
		text-decoration: none;
		margin: 0px;
	}
    #nav li a {
        display:block;
        padding: 0px;
        text-align:center;
		height: 50px;
		color: #000000;
		text-decoration: none;
    }
    #nav li a:hover {
        color: #FF0000;
    }
    
    /* you can make a different style for default selected value */
    #nav a.menu_active {
        color: #FF0000;
		background-image: url('../res/opaque.png');
		/*background: url('../res/shadow_top.png');
		background-repeat: repeat-x;
		background-position: center bottom;*/
		
		-moz-border-radius:10px 10px 0px 0px; /* Firefox */
		-webkit-border-radius:10px 10px 0px 0px; /* Safari, Chrome */
		-khtml-border-radius:10px 10px 0px 0px; /* Konqueror */
		border-radius:10px 10px 0px 0px; /* CSS3 */
    }
    
        /* submenu, it's hidden by default */
        #nav ul {
            position:absolute;
            left:-50px;
            display:none;
            margin:2px 0px 0px;
            padding:0px;
            list-style:none;
        }
        
        #nav ul li {
            width:200px;
            float:left;
			background-image: url('../res/opaque.png');
        }
		
        /* display block will make the link fill the whole area of LI */
        #nav ul a {
			font-size: 16px;
            display:block;
            height:auto;
            padding: 8px 5px;
            color: #FFFFFF;
			text-decoration:none;
        }
        
        #nav ul a:hover {
			color: #FF0000;
        }

.footer_wrap {
	background-color: #DE2102;
}
.nav_footer {
	display:inline-block;
	margin: 0;
}
.nav_footer li {
	list-style:none;
	float:left;
	margin: 0;
	padding: 0;
}
.nav_footer a {
	font-family: Comic Sans MS;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 0px 15px;
}
.nav_footer li:hover a {
	color: #FF0000;
	text-decoration: none;
	background-color: #FFFFFF;
}

#main {
	padding: 0px;
	margin: 0px 0px 40px;
}
#breadcrumb {
	background-image: url('../res/shadow_bottom.png');
	background-repeat: repeat-x;
	background-position: center top;
	height: 32px;
	padding-top: 5px;
}
#breadcrumb a {
	color: #000000;
}
#breadcrumb a:hover {
	color: #FF0000;
	text-decoration: underline;
}

.breadcrumb_back {
	float:left;
	margin-right:25px;
}

#footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
}
#footer_shadow {
	background-image: url('../res/shadow_top.png');
	background-repeat: repeat-x;
	background-position: center bottom;
	height: 20px;
	margin: 0px;
	padding: 0px;
	border-bottom: 2px solid black;
}
#footer_text {
	height: 20px;
}
.gallery {
	border-top: 1px solid #C0C0C0;
	padding: 10px;
}
.gallery_forum {
	padding: 10px;
	border: 0px;
}
.gallery_div_wrap {
	float: left;
	width: 200px;
	height: 133px;
	margin: 10px;
	position: relative;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.gall_background {
	float: left;
	width: 240px;
	height: 175px;
	background-image: url('/res/gall_background.png');
	background-repeat: no-repeat;
}

.gallery_div_wrap_mini {
	float: left;
	width: 128px;
	height: 85px;
	margin: 10px;
	position: relative;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.gallery_div {
	width: 200px;
	height: 133px;
	position: relative;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.gallery_div_wrap_edit {
	width: 200px;
	height: 133px;
	margin: 10px;
	position: relative;
	overflow:hidden;
	background: url('/res/icons/32x32_add.png');
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px dashed lightgrey;
}
.gallery_div_wrap_edit input{
	font-size: 150px;
	opacity: 0;
	cursor: pointer;
}
.upload_div_wrap {
	width: 400px;
	height: 48px;
	margin: 5px;
	position: relative;
	overflow:hidden;
}
.upload_div_wrap_edit {
	width: 400px;
	height: 48px;
	margin: 5px;
	position: relative;
	overflow:hidden;
	background: url('/res/icons/32x32_add.png');
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px dashed lightgrey;
}
.upload_div_wrap_edit input{
	font-size: 30px;
	opacity: 0;
	cursor: pointer;
}
.pic_menu {
	position:absolute;
	right: 5px;
	top: 5px;
}
.pic_menu_submit {
	background-image: url('res/icons/32x32_edit.png');
	background-color: transparent;
	border: 0px;
	width: 32px;
	height: 32px;
	font-size: 0px;
	cursor: pointer;
	float: left;
}
.dl_menu_submit {
	background-image: url('res/icons/32x32_edit.png');
	background-color: transparent;
	border: 0px;
	margin-left: 25px;
	width: 32px;
	height: 32px;
	font-size: 0px;
	cursor: pointer;
}
.gallery_tag {
	font-size: 12px;
	color: #FFFFFF;
	background-color: #000000;
	width: 100%;
	height: 15px;
	position: absolute;
	bottom: 10px;
	left: 0px;
	padding: 5px;
	overflow: hidden;
}

.show_on_hover {
	display: none;
}

.gallery_overlay {
	width: 100%;
	height: 100%;
	z-index: 10;
}

.gallery a {
	text-decoration: none;
}

.article_gallery {
	float: left;
	margin: 0px 10px 10px;
	width: 200px;
	height: 133px;
	border: 1px solid grey;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 640px) {
	.article_gallery {
		float: none;
		margin: auto;
	}
}
.article_gallery_single {
	float: left;
	margin: 9px;
	width: 200px;
	height: 133px;
	border: 1px solid grey;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#gallery_form {
	
}
.move_left{
	width: 16px;
	height: 87px;
	float: left;
	background-image:url('../res/left.png');
}
.move_right{
	width: 16px;
	height: 87px;
	float: left;
	background-image:url('../res/right.png');
}
#pic_bg {
	z-index: 50;
	width: 100%;
	height: 100%;
	background-image: url('../res/opaque.png');
	position: fixed;
}
#imagebox {
	width: 64px;
	height: 64px;
	left: 50%;
	top: 50%;
	position: absolute;
	background-color: #FFFFFF;
	background-image: url('/res/loading.gif');
	background-repeat: no-repeat;
	background-position: center center;
	padding: 10px;
}
#image {
	display: none;
	width: 100%;
	height: 100%;
}
#imagebox_left {
	display: none;
	position: absolute;
	left: 0px;
	cursor: pointer;
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 25%;
	text-align: left;
	background-image:url('/res/left.png');
	background-repeat: no-repeat;
	background-position: center left;
}
#imagebox_right {
	display: none;
	position: absolute;
	right: 0px;
	cursor: pointer;
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 25%;
	text-align: right;
	background-image:url('/res/right.png');
	background-repeat: no-repeat;
	background-position: center right
}
.gallery_linked_articles {
	clear: left;
}

.gallery_linked_articles ul {
	list-style-type: none;
}

.user_menu {
	display: none;
	width: 180px;
	padding: 10px;
	background-image: url('../res/opaque.png');
	position: absolute;
	top: 50px;
	right: 30px;
	z-index: 13;
	-moz-border-radius:10px; /* Firefox */
	-webkit-border-radius:10px; /* Safari, Chrome */
	-khtml-border-radius:10px; /* Konqueror */
	border-radius:10px; /* CSS3 */
}
.edit_menu {
	position: absolute;
	left: 5px;
	top: 5px;
}
#popup {
	position: fixed;
	left: 50%;
	top: 30px;
	width: 900px;
	min-height: 100px;
	z-index: 50;
	background: #FFFFFF;
	border: 2px solid black;
	padding: 10px;
	margin-left: -450px;
	-moz-border-radius:10px; /* Firefox */
	-webkit-border-radius:10px; /* Safari, Chrome */
	-khtml-border-radius:10px; /* Konqueror */
	border-radius:10px; /* CSS3 */
}
#popup_close {
	width: 16px;
	height: 16px;
	position: absolute;
	right: -10px;
	top: -10px;
	background: #000000;
	border: 2px solid black;
	-moz-border-radius:5px; /* Firefox */
	-webkit-border-radius:5px; /* Safari, Chrome */
	-khtml-border-radius:5px; /* Konqueror */
	border-radius:5px; /* CSS3 */
}

#home_slider {
	width: 100%;
	height: 400px;
	overflow: hidden;
	border: 1px solid black;
	position: relative;
	margin: 10px auto 0px;
}
#home_slider_shadow {
	width: 100%;
	margin: auto;
	position: relative;
}
#home_slider_shadow img{
	width: 100%;
}
#slider_ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
	left: 0px;
}
#slider_ul li {
	float: left;
	width: 100%;
	height: 400px;
	background-size: cover;
	position: relative;
}

.slider_info {
	background-image: url('../res/opaque.png');
	width: 400px;
	height: 100px;
	color: #FFFFFF;
	position: absolute;
	bottom: 25px;
	right: 0px;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 480px) {
	.slider_info {
		width: 100%;
	}
}
.slider_info_titel {
	text-decoration: underline;
	font-size: 16px;
}
.slider_info_text {
	font-size: 12px;
	padding: 10px;
}
.home_widgets {
	min-width: 100%;
}

.home_widget {
	width: 95%;
	margin: auto;
	padding: 5px;
	-moz-border-radius: 10px; /* Firefox */
	-webkit-border-radius: 10px; /* Safari, Chrome */
	-khtml-border-radius: 10px; /* Konqueror */
	border-radius: 10px; /* CSS3 */
}
.widget_wrap {
	width: 50%;
	margin: 0px;
	padding: 10px 0px;
	float: left;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 840px) {
	.widget_wrap {
		width: 100%;
		margin: 0px;
		padding: 10px 0px;
		float: left;
	}
}
.widget_wrap_double {
	width: 75%;
	margin: 0px;
	padding: 10px 0px;
	float: left;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 840px) {
	.widget_wrap_double {
		width: 100%;
		margin: 0px;
		padding: 10px 0px;
		float: left;
	}
}
.widget_wrap_half {
	width: 25%;
	margin: 0px;
	padding: 10px 0px;
	float: left;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 840px) {
	.widget_wrap_half {
		width: 100%;
		margin: 0px;
		padding: 10px 0px;
		float: left;
	}
}
.home_widget_title {
	font-size: 18px;
	margin-bottom: 15px;
}
.home_termine_frame {
	margin-top:	10px;
}
.home_termine_cal {
	width: 50px;
	border: 2px solid black;
	float: left;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 640px) {
	.home_termine_cal {
		width: 100px;
		float: none;
	}
}
.home_termine_month {
	background: #FF0000;
	text-align: center;
	width: 50px;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 640px) {
	.home_termine_month {
		float: left;
	}
}
.home_termine_day {
	font-size: 24px;
	text-align: center;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 640px) {
	.home_termine_day {
		font-size: 14px;
	}
}
.home_termine_text {
	margin-bottom: 8px;
	margin-left: 5px;
	/*border-bottom: 2px solid black;
	margin-left: 65px;*/
}
.home_termine_time {
	width: 300px;
	height: 25px;
	font-size: 12px;
	margin-left: 75px;
}
.home_termine_standort {
	font-size: 12px;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 480px) {
	.home_termine_standort {
		font-size: 12px;
		display: block;
	}
}
.home_termine_dayblock {
	margin: 0px 0px 0px 60px;
	border-left: 2px solid lightgrey;
}
.home_termine_dayblock_trenner {
	border-bottom: 2px solid lightgrey;
	width: 50%;
	height: 0;
	margin: 15px auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 640px) {
	.home_termine_dayblock {
		margin: 0px;
		border-left: 2px solid black;
	}
	.home_termine_dayblock_trenner {
		border-bottom: 2px solid black;
	}
}
.home_termine_text a {
	padding-left: 2px;
}

.right_user {
	border-bottom: 1px solid lightgrey;
	padding: 5px;
}
.right_pic {
	float:left;
	width: 10%;
}
.right_uname {
	float:left;
	width: 15%;
}
.right_mail {
	float:left;
	width: 30%;
}

a.black_link {
	color: #000000;
}

a.black_link:hover{
	color: #FF0000;
}

.rights_block {
	float: left;
	width: 200px;
	height: 250px;
	border: 1px solid lightgrey;
	margin: 2px;
	-moz-border-radius:5px; /* Firefox */
	-webkit-border-radius:5px; /* Safari, Chrome */
	-khtml-border-radius:5px; /* Konqueror */
	border-radius:5px; /* CSS3 */
}

.rights_block h3 {
	font-style: bold;
	font-size: 14px;
	margin: 5px;
	border-bottom: 1px solid lightgrey;
}

.navigation_sort li{
	list-style-type: none;
	clear: both;
}
.navigation_sort p{
	float: left;
	margin: 0px;
	padding: 0px 10px 0px 0px;
}
.navigation_sort form{
	height: 16px;
	margin: 0px;
	padding: 0px;
}

.edit_profile_wrap {
	margin-bottom: 10px;
}
.edit_profile_pic {
	float: left;
	margin-right: 10px;
	width: 120px;
}

.edit_profile_block {
	float: left;
	padding-left: 10px;
	margin: 10px;
	border-left: 1px solid lightgrey;
	width: 60%;
}

.edit_profile_desc {
	float: left;
	clear: both;
}
.edit_profile_data {
	margin-left: 200px;
	height: 30px;
}
.edit_profile_data input{
	width: 200px;
}

#tooltip {
	position:absolute;
	display: none;
	border: 2px solid grey;
	background-color: white;
	padding: 2px 10px;
	-moz-border-radius:5px; /* Firefox */
	-webkit-border-radius:5px; /* Safari, Chrome */
	-khtml-border-radius:5px; /* Konqueror */
	border-radius:5px; /* CSS3 */
}

.menu_edit {
	margin-bottom: -1px;
	padding: 0px;
	margin-right: 20px;
}
.menu_edit input {
	float:right;
	margin: 0px;
	padding: 14px 8px;
	text-align: center;
}
.menu_edit input.active {
	background:url('/res/icons/menu_active.png');
	background-repeat: no-repeat;
	background-position: bottom;
}
.crop {
	cursor: cross;
	width: 300px;
}
#cropline {
	height: 1px;
	width: 100%;
	background-color: red;
	position: absolute;
}
.edit_right {
	float: right;
	width: 20%;
	border: 1px solid black;
	padding: 5px;
	margin-top: 10px;
	-moz-border-radius:5px; /* Firefox */
	-webkit-border-radius:5px; /* Safari, Chrome */
	-khtml-border-radius:5px; /* Konqueror */
	border-radius:5px; /* CSS3 */
}
.edit_left {
	float: left;
	width: 78%;
	margin-top:10px;
}
.edit_left textarea {
	width: 100%;
	height: 240px;
	margin: 0px;
	padding: 5px;
	font-size: 16px;
	font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;
}

.listview_col1 {
	float: left;
	width: 5%;
}
.listview_col2 {
	float: left;
	width: 60%;
}
.listview_col3 {
	float: left;
	width: 10%;
}
.listview_col4 {
	float: left;
	width: 10%;
}

#slider_nav {
	z-index: 6;
	position: absolute;
	width: 100%;
	bottom: 10px;
	text-align: center;
}

#slider_nav span {
	width: 18px;
	height: 8px;
	background-color: grey;
	display: inline-block;
	cursor: pointer;
}
#slider_ul li {
	position: absolute;
}
.obersteebene {
	z-index: 3;
}
.mittlereebene {
	z-index: 2;
}
.shadow_round {
	-moz-border-radius: 10px; /* Firefox */
	-webkit-border-radius: 10px; /* Safari, Chrome */
	-khtml-border-radius: 10px; /* Konqueror */
	border-radius: 10px; /* CSS3 */
	-moz-box-shadow: 5px 5px 10px grey;
	-webkit-box-shadow: 5px 5px 10px grey;
	box-shadow: 5px 5px 10px grey;
}
.search_div {
	padding: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #C0C0C0;
}
.search_div form {
	margin: 0px;
}
.search_term {
	width: 256px;
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (max-width: 320px) {
	.search_term {
		width: 100%;
	}
}

.searchbar {
	width: 100px;
	height: 24px;
	padding: 0px;
	margin: 0px;
	border: 1px solid grey;
	overflow: hidden;
	-moz-border-radius: 10px; /* Firefox */
	-webkit-border-radius: 10px; /* Safari, Chrome */
	-khtml-border-radius: 10px; /* Konqueror */
	border-radius: 10px; /* CSS3 */
}
.searchbar_term {
	width: 70px;
	height: 100%;
	margin: 0px;
	padding-left: 5px;
	float: left;
	border: 0px;
}
.searchbar_btn {
	height: 24px;
	width: 24px;
	margin: 0px;
	padding-right: 5px;
	float: right;
	background-color: lightgrey;
}