/******************************************************************************/
/* admin panel */
.typo3-adminPanel {
  top: 500px;

}

/******************************************************************************/
/* set up the divs */
/* @crystl: hier nichts ändern */

#container {
}

#logo {
  position: absolute;
  width: 15em;
  height: 2em;
}

#breadcrumbs {
  position: absolute;
  left: 16em;
  height: 2em;
  min-width: 30em;
  max-width: 61em;
  
  text-transform: none;
}

#menu {
  position: absolute;
  top: 4em;
  width: 16em;
  text-align: left;
  
  text-transform: none;
}

#content {
  position: absolute;
  top: 4em;
  left: 16em;    
  min-width: 30em;
  max-width: 61em;
}


/******************************************************************************/
/* styling */

/* general styling */

body {
  font-family: Helvetica, "Helvetica Neue", sans serif;
  font-size: 85%;
  color: ##000000; /* @crystl: das ist die standard-textfarbe */
  background-color: #FFFFFF; /* @crystl: das ist die standard-hintergrundfarbe */
	margin: 0px;
	padding: 0px;
  margin-top: 1em;
  margin-left: 1em;
}

img {
	border: 0px;
	vertical-align: bottom;
}

.bodytext {
  margin-top: 0;
}

/* special fonts (span) */

.pink {
  color: 				#FE6F5E;  /* @crystl: farbe für alle elemente der klasse section z.b. <span class="pink"> */
}

.bold {
  font-weight: bold; /* @crystl: zeichenstärke für alle elemente der klasse bold z.b. <span class="bold"> */
}

.italic {
   font-style: italic; /* @crystl: klasse italic -> kursiv */ 
}

.small{
  font-size: 0.7em;
}


/* headings */
/* @crystl: die überschriften haben noch keine color-eigenschaft, und darum
werden sie in der color die in body definiert ist angezeigt. willst du das ändern,
für einfach einen color-wert hier ein */

h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  padding: 0px;
	font-size: 1.2em;
	 color: 				#AAF0D1; 
}

h2 {
  margin-top: 0px;
  margin-bottom: 5px;
  padding: 0px;
	font-size: 1.1em;
		color: 							#AAF0D1;
}

h3 {
  margin-top: 0px;
  margin-bottom: 3px;
  padding: 0px;
	font-size: 1em;
	color: 			#000000;
}


/* links */

/* @crystl: link styling in menu, logo and breadcrumbs. möchtest du z.b. alle links
im menü schwarz machen, musst du für #menu a die farbe definieren:
#menu a {
  color: 	#FF4500;
}

*/
#menu a, #breadcrumbs a, #logo a {
  text-decoration: none;
    color :		#000000;
}

#logo a {
  font-size: 1.3em;
  font-weight: bold;
  text-transform: none;
}

.thumbs_pics a{
  float: left;
  background-color: #FFF !important;
}

a{
	text-decoration: none;
  color : 				#9F8170 /* @ crystl: generelle linkfarbe */
}

a:hover, .active a{
	background-color: 				#E9967A; /* @ crystl: generelle linkfarbe beim drüberfahren mit der maus */
}	#FFFFF0


/* thumbnail view */


.thumbs_pics img {
  padding: 0px 10px 10px 0px;
}

.image_nav, .thumbs_nav {
  margin-top: 1em;
}

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


/* lists */

ul {
	list-style: none;
}

li, ul {
  padding: 0;
  margin: 0;
}

#content ul {
	margin-bottom: 1em;
}


/* tables (for link-section, but no longer used) */

table, tr, td, th{
  border: 0px solid grey;
  border-collapse: collapse;
}

tr, td, th{
  padding: 0px 40px 4px 0px;
  margin: 0px;
}

th{
  padding-top: 10px;
}

table p.bodytext, table a{
  display: inline;
}



