/*
----- Kurze Konzept-Beschreibung -----

Ein scrollbares "Content"-Div "#scrollbox" stellt die Scrollbars,
postioniert bei x,y = (0,0) und Breite x Hoehe = (100% x 100%).

Auf der linken Seite daruebergelegt mit z-index=1 das Menue "#menubox".

Die "#scrollbox" enthaelt ein Div "#typo3_content", das dann alle
uebrigen Elemente enthaelt:

	- TABLE oben (die Seiten-Logos)
	- das Hierarchie-Menue, Div "#rootline" 
	- die Leiste rechts, Div "#leiste_rechts"
	- den Typo3-Marker "REGULAR_CONTENT" (fuer: Typo3-Spalte "normal")

	- Liste folgender(enthaltener) Seiten,  Div "#menu_directory" 
	   je Eintrag erstellt Typo3 "div.sub_dir" inkl. "p.page_abstract"		

	- die untere Bannerbox, Div "#banner_unten" 

Optional nur fuer die Startseite(!):
	Ausblendung von "#leiste_rechts", "#rootline", H1-Titel,
	stattdessen Einblendung von:
	- Div "#frontpage" mit 4 Content-Boxen (aus den 4 Typo3-Spalten)

Die Ausblende-Logik steht im Typo3-Template, TSsetup, bei "# -- Conditionals"

-------------------------------------------
*/


/* zur Kombatibilitaet mit dem WebGenesis-Auftritt
   wird im Template z.Zt. auch "Styles.css" importiert */

html,body {
	height:100%;	 /* Hoehe auf Viewport beschraenken */
 overflow:hidden; /* wichtig fuer: keine BODY-Scrollbars */
}

body {
      	margin: 0px;
      	padding: 0px;

}	/* BODY-Font/Color-Einstellungen siehe Styles.css */



p {
	margin-top:1px;
}

/* div,h1,p {
    border-style:dotted;
    border-color:green;
    border-width:1px;
}   /* DIV Rahmen, nur fuer debugging! */


div#scrollbox{			/* scrollbares DIV */
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	overflow:auto; 
	border-color:yellow;
	padding:0px;
}

div#scroll_content {		/* Wrapper/Helper fuer div#banner_unten */
	position:relative;
	min-height:100%;	/* fuer Mozilla, IE siehe unten */
}

* html div#scroll_content {
	height:100%;	/* fuer IE6, nicht fuer Firefox (per Star-Html-Hack) */
}


div#typo3content {
	position:relative;
	width:510px; 	/* regulaere Content-Breite */
	margin: 0px;
	margin-left:195px;
	padding-bottom:70px;	/* Platz fuer div#banner_unten lassen */
}

div#menubox {
	position:absolute;
        top:0px;
        left:0px;
	min-height:100%; /* Moz */
	height:100%;	/* IE */
	border-width:0px;
	border-right-width:1px; /* Rahmen-Strich rechts */
	border-color:#dedede;
	border-style:solid;
	z-index:1; /* ueber die #scrollbox heben */
}

div#leiste_rechts {
	position:absolute;
	top:0px;
	left:705px;	
	min-height:100%;
	width:120px;
	margin-left:40px;
}

div#navi_ro {	/* oben innerhalb von #leiste_rechts */
	position:relative;
	padding-top:120px;
	height:50px;
}

div#banner_unten{
	position:absolute;
       	bottom:0px;
    	left:0px;
	right:0px;
	width:100%; 
	height:70px;
	border-width:0px;
	border-style:solid;
	border-top-width:1px;	/* Rahmen-Strich oben */
	border-color:#dedede;
	z-index:0;
}

div#banner_wrap {
	position:relative;
	padding-left:162px;	/* Banner links von der Menubox plazieren */ 
}


div#frontpage {		/* wrapper fuer die frontpage_box1 bis 4 */
	margin-top:0px;
	width:750px;	/* die Frontpage ist breiter als regulaerer Content */
	}


div.frontpage_box {
	position:relative;
        float:left;		/* die Boxen floaten nebeneinander */
        width:295px;
	margin-right:30px;
	margin-bottom:5px;
}

div#frontpage_box1 {
}
div#frontpage_box2 {
}
div#frontpage_box3 {
	clear:left;		/* neue Float-Zeile anfangen */
}

div#frontpage_box4 {
}


/* --------------------------------- Liste der enthaltenen Seiten */
#menu_directory{	
	clear:both;	/* noetig fuer voranstehenden widerspenstigen Plugin-Content */
	position:relative;
	padding-top:15px;
}
	
div.sub_dir {
	/* hier darf kein position:relative stehen, weil
	   sonst die background-grafik verschwindet :-) */
	background-image:url(/Bitmaps/Category/Document.24.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:40px;
	padding-bottom:15px;
}

p.page_abstract{
	position:relative;
	margin-top:12px;
	margin-bottom:0px; /* der margin-bottom kommt via div.sub_dir */
}

a.dir_nav  {
	font-size:1em;
	display:block;
	padding-top:5px;
	 color : #E62058;
	 text-decoration : none;
}

a.dir_nav:visited {
	color:#7e8793;
}

a.dir_nav:hover 	{
	color : #E62058;
        text-decoration : underline;
}


/* ------------------------------------- Details Menue links ---- */

div.menu {	/* Menue-Sektionen links */
	padding-top:10px;
	line-height:1em;	/* oder andere Loesung? */
*/ }

img.menu_category {
	margin-bottom:2px;
}

div.menu_ad {   /* Banner links */
	padding:10px;
}

div.linie_grau	{ /* Trenner links */ 
	background-color:#dedede;
}

.nav_bg {	/* menue-eintrage links */
	padding-left:10px;
}
	
.nav_bg_act {	/* wird derzeit nicht genutzt */
	padding-left:10px;
}

/* ------------------------------- Details Navi rechtsoben -- */

.nav_arrow {
	width:16px;
	height:16px;
	display:block;
	overflow:hidden;
	float:left;
}

#nav_next {
	position:relative;
	background-image:url(/Bitmaps/Arrow/RightH.gif);
	background-position: left top;
	background-repeat: no-repeat;
}

#nav_prev {
	position:relative;
	background-image:url(/Bitmaps/Arrow/LeftH.gif);
	background-position: left top;
	background-repeat: no-repeat;
}


/* ------------------------------------- Details rootline -- */

a.rootline   {
        color : #E62058;
	text-decoration : none;
	font-weight:normal;
	font-size:0.9em;
}

a.rootline:hover   {
        color : #E62058;
	font-weight:normal;
        text-decoration : underline;
}

a.rootline:visited {
	color:#7e8793;
}

a.rootline_current {font-weight:bold; }





/* ---- typo3 plugin sk_pagecomments --- */

div.sk-pagecomments-comment {
	margin-bottom:15px;
}


/* ---- typo3 Kalender plugin hacks ----- */

div.tx-tc2lcal-p1 {
	position:relative; 	
}

#jumpTo { display:none; }

th#miniCal_Month { color:#505050; width:400px; text-align:left; }
th#miniCal_DayOfWeek { background-color:white; }

th#miniCal_WeekNumber { color:white; }

th { text-align:left; }

#contentMiniCal { 
	float:left;
	clear:both;
	margin-bottom:10px; 
	width:200px;
	padding:5px;
	border-style:solid;
	border-width:1px;
	border-color:#909090;
}

#contentMiniCal table { width:200px; }

#contentMiniCal a {
	text-decoration:underline;font-weight:bold;
}
#contentMiniCal a:hover {
        text-decoration:underline;font-weight:bold;
}

#contentMiniCal td { text-align:right; padding-right:3px;}

div#contentListNumberEvent{
	float:right;
	width:270px;
	background-color:white;
	padding:5px;
	min-height:160px; /* Firefox */
	padding-bottom:10px;
	overflow:visible;
}

* html div#contentListNumberEvent { /* fuer IE6, nicht fuer Firefox (per Star-Html-Hack) */
        height:160px;   /* fuer FireFox min-height, s.o. */
}
	

#contentEvent {
	clear:both;
}

#headerTc2lCalEvent {
	font-weight:bold;
	font-size:large;
	}

 
div.tc2lcal_event_label{
	clear:left;
	float:left;
	width:100px;
}


div.tc2lcal_event_data{
	clear:left;
	float:left;
	width:400px;
}


.legendListEvents {
	font-weight:bold; color:#909090;
}

#In_Progress { display:none; }

.viewEvent_day_IMG { display:none; }
.viewEvent_week_IMG { display:none; }
.viewEvent_month_IMG  { display:none; }

#listEvent_firstColor_Fut { background-color:transparent; }
#listEvent_secondColor_Fut { background-color:transparent; }

#listEvent_firstColor_Fut>td>a { text-decoration:none;font-weight:bold; }
#listEvent_secondColor_Fut>td>a { text-decoration:none;font-weight:bold; }

#listEvent_firstColor_Fut>td>a:hover { text-decoration:underline;font-weight:bold; }
#listEvent_secondColor_Fut>td>a:hover { text-decoration:underline;font-weight:bold; }

#miniCal_rightArrow { margin:5px;}
#miniCal_leftArrow { margin:5px; }

/*
-------------Darstellung veranstalter kalender -------------
*/

.legendListUser {
	float: left;
}
#headerTc2lCalUser{
		font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 14px !important;
	margin-bottom:10px;
}
#contentUser{
	margin-bottom:10px;

}

.legendListUser_Row{
	padding: 0px 0px 3px 0px;
}
/*
-------------Darstellung Terminuebersicht Startseiter -------------
*/
.list_category{
	font-weight: bold;
	font-size: 12px !important;
	margin-bottom:10px;
	background-color: #FFFFFF;
}

p.list_event{
	font-size: 12px !important;
	margin: 0px 0px 3px 0px;
}

#listEvent_firstColor_Fut a.anja_list_event:link, a.list_event:visited,  {
	font-size: 12px !important;
	font-weight: normal;
}
#listEvent_firstColor_Fut a.anja_list_event:hover {
	text-decoration: underline;
	font-weight: normal;
}

h4.list_ort{
	font-size: 11px;
	font-style: italic;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.list_beschreibung{
	font-size: 11px;
	background-color: #FFFFFF;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.list_time{
	font-size: 11px;
	background-color: #FFFFFF;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}



