/*
  This stylesheet uses relative values for sizes in almost all cases.
  This means the screen can be resized, and all elements will resize as well
  not only fonts and texts.
*/


/*
  Start with some global parameters
*/
html{
  font-size: 1.0em;
}

body{
  margin: 0em;
  padding: 0em;
  font-size: 0.75em;
  background-color: white;
  font-family: verdana, sans-serif;
}

a{
  text-decoration: underline;
  color: black;
}

a:hover, a:focus{
  text-decoration: none;
}

a.selected {
        color: red;
        font-weight: bold;
}

abbr:hover{
  cursor: help;
}

code{
  font-family: courier,monospace;
  font-style: italic;
}

h1{
  margin: 0em;
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: bold;
  color: #333399;
}
h2{
  margin: 0em;
  margin-bottom: 1.0em;
  font-size: 1.0em;
  line-height: 1.2em;
  font-weight: bold;
  color: #CC0000;
}
h3{
  margin: 0em;
  margin-bottom: 1.0em;
  font-size: 1.0em;
  line-height: 1.2em;
  font-weight: bold;
  color: #3366FF;
}

img{
  border: 0em;
}

ul{
  margin: 0em 0em 0em 1em;
  padding: 1em;
}

ul.links{
  list-style-image: url("../../images/design/li_link.gif");
}

ul.links li{
  padding: 0em 0em 0em 0.7em;
  vertical-align: middle;
}

ul.unformattedList{
  margin:0;
  padding:0;
  list-style-type:none;
}

ul.unformattedList li{
  clear:both;
}

.noScreen{  /* This class is not shown on screen */
  display: none;
}

.handheld{  /* This class in only seen in handheld */
  display: none;
}

#simpleViewer{ 
  height: 100%; 
}

/*
  The first part describes the layout of the whole Page
*/

#surrounding{  /*  contains all elements. necessary to avoid wrapping when resizing the screen  */
  width: 76em;
  margin: 0px auto;
}


/*  These are the columns on left or right - only needed on screens */
#columnRight,#columnLeft{  
  float: left;
  width: 4em;
  margin: 0;

  background-repeat: repeat-y;
  background-color: #A2A2A2;

  margin-bottom: 0em;
  border-bottom: 0.1em white solid;
  
  height: 100px;
}


#columnRight{
  /*
  margin-left: 0.1em;
  background-image: url("../../images/background/columnRight.gif");
  */
}

#columnLeft{
  /*
  margin-right: 0.1em;
  background-image: url("../../images/background/columnLeft.gif");
  background-position: right;
  */
}

#top_right, #top_left{  /* top right, left corners */
  /*
  height: 100px;
  border-bottom: 0.1em white solid;
  background-image: url("../../images/background/columnRightTop.gif");
  */
}

#top_left{
  /*
  background-image: url("../../images/background/columnLeftTop.gif");
  background-position: right;
  */
}

.mainContent{  /* middle part, contains the real content of the page */
  float: left;
  width: 68em;
  /*border-right: 0.1em black solid;*/
}

#header{  /* Contains logo and a banner */
  height: 100px;
  width: 68em;
  border-bottom: 0.1em white solid;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
}

#copyright{  /* Contains copyright information */
  display: none;
}

#navigation{  /* contains the navigation */
  float: left;
  width: 15em;
  margin: 0em;
  padding: 0em;
  background-color: #CCCCCC;
}

#contentPart{ /* contains breadcrumb and content width: */
  float: left;
  width: 53em;
}

#breadcrumb{  /* location and search-form */
  background-image: url("../../images/background/breadcrumb.gif");
  background-repeat: repeat-x;
  background-color: #CCCDCC;

  height: 2.02em;
  width: 52.9em;
  border-left: 0.1em black solid;
}

#location{
  float: left;
  padding: 0.3em 0em 0em 0.5em;
  width: 28em;
  height: 1.7em;
}


#searchForm{
  float: right;
  text-align: right;
  padding: 0.2em 1em 0em 0em;
  width: 19em;
}

#newslettercontent{  /* contains newsletter main content */
  clear: both;
  padding-top: 1.2em;
  width: 50em;
  line-height: 1.3em;
}

#content{  /* contains main content */
  clear: both;
  background-image: url("../../images/background/content.gif");
  background-repeat: repeat-x;
  padding-top: 1.2em;
  width: 53em;
  line-height: 1.3em;
}

.contentBox, .contentBoxBorder {  /* these contain all the later content */
  clear: both;
  display: block;
  margin: 0em 2em 0em 1.5em ! important;
  padding: 1em 0em 1em 0em ! important;
  color: #666666;
}

.contentBoxSmall {  /* these contain all the later content */
  clear: both;
  display: block;
  margin: 0em 2em 0em 1.5em ! important;
  padding: 1em 0em 1em 0em ! important;
  color: #666666;
  font-size: 0.8em;
  font-family: verdana, sans-serif;
  line-height: 1.1em;
}

.contentHalf{  /* allows 2 divs next to each other in content */
  float: left;
  width: 20.7em;
}

.contentSource{  /* these contain content of source*/
  clear: both;
  display: block;
  margin: 0em 2em 0em 1.5em ! important;
  padding: 1em 0em 1em 0em ! important;
  color: #666666;
  font-size: 0.8em;
  font-style: italic;
}

.contentBoxBorder{  /* contentBox but with border at bottom */
  margin: 0em 2em 0em 1.5em ! important;
  padding: 1em 0em 1em 0em ! important;
  border-bottom: 0.1em solid #B7B7B7;
}

.newLine{
  display: block;
  clear: both ! important;
}

.imageRight {
  float: right;
  margin-left: 2em;
  margin-bottom: 1em;
}

.imageLeft{
  float: left;
  margin-right: 2em;
  margin-bottom: 1em;
}

.contentRight{
  padding-left: 0.4em;
  float: right;
}

.contentLeft{
  padding-right: 0.4em;
  float: left;
}

.contentCenter{
  padding-left: 0.4em;
  padding-right: 0.4em;
  text-align: center;
}

.contentRightImgDescr{
  margin-left: 1em;
  margin-bottom: 1em;
  float: right;
  line-height: 1.0em;
  font-size: 0.7em;
  font-weight: bold;
  width: 300px;
}

.contentLeftImgDescr{
  margin-left: 1em;
  margin-bottom: 1em;
  float: left;
  line-height: 1.0em;
  font-size: 0.7em;
  font-weight: bold;
  width: 300px;
}

.contentImgDescr{
  margin-left: 1em;
  margin-bottom: 1em;
  float: left;
  line-height: 1.0em;
  font-size: 0.7em;
  font-weight: bold;
  width: 120px;
}

#footer{  /* impressum */
  clear: both;
  width: 68em; /*68em */
  height: 25px;
  background-image: url("../../images/background/footer.gif");
}

/*
  following styles are used in listviews
*/
a.linkButton{
  display: block;
  font-size: 0.75em;
  text-decoration: none;
  color: white;
  margin-top: 2em;
  margin-bottom: 2em;

  padding-bottom: 0.2em;
  background-color: #CC0000;
  width: 8em;
  text-align: center;
  border: 0.1em solid black;
}
a.linkButton:hover, a.linkButton:focus{
  color: #CCCCCC;
}

img.thumbnail_120_90{  /* Thumbnails in image-gallery */
  margin: 1em;
/*
  border: 0.2em solid red;
*/
}


/*
  Here starts the part with the forms, this will later be in another file
  contains all needed styles for the used forms
*/

form{
  margin: 0;
  padding: 0;
}

fieldset{
  margin: 0;
  padding: 0;
  border: 0;
}

/*
  search form
*/
.searchForm{
  font-size: 0.8em;
  margin: 0;
  padding-top: 0.2em;
}

.searchForm#text{
  width: 13em;
}

.searchForm#submitbutton{
  margin: auto;
  padding: 0.1em 0.1em 0em 0.1em;
}


/*  contact form  */
.contactInput, .contactTextarea{
  font-size: 1em;
  padding: 0;
  margin: 0;
  width: 18em;
}

.contactSelect{
  font-size: 1em;
  padding: 0;
  margin: 0;
  width: 9em;
}

.contactTextarea{
  height: 8em;
}

.formError{
  color: red;
  border-color: red;
}

input, textarea{  /* global stuff ... */
  font-family: verdana, sans-serif;
  border: 0.1em solid #666666;
  margin: 0;
  padding: 0;
}

/*
  Following part deals with the navigation in div with id "navContainer"
*/

.navigationBorder{  /* Start and End of Navigation with gradient */
  width: 15em;
  text-align: center;
}

.navigationBorder#naviHead{  /* Header */
  height: 2.0em;
  background-image: url("../../images/background/naviHead.gif");
  background-repeat: repeat-x;
  background-color: #B7B7B7;
}

.navigationBorder#naviFoot{  /* Footer */
  height: 3.5em;
  background-image: url("../../images/background/naviFoot.gif");
  background-repeat: repeat-x;
}

#navContainer{  /* contains the menu */
  clear: both;
  width: 15em;
}

/*
  navigation level 1
*/
#navContainer ul{
  margin: 0em;
  padding: 0em;
  list-style-type: none;
}

#navContainer ul li{
  background-image: url("../../images/background/navLiLevel_01.gif");
  background-repeat: repeat-x;
  background-color: #B7B7B7;
}

#navContainer ul li#li_nav1_open{  /* special layout for open links */
  background-image: url("../../images/background/navLiLevel_01_open.gif");
  background-repeat: repeat-x;
  background-color: #cccccc;
}


#navContainer ul li a{
  display: block;
  background-repeat: no-repeat;
  height: 1.7em;
  padding-left: 2em;
  line-height: 1.7em;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  background-image: url("../../images/background/navLinkLevel_01.gif");
}

#navContainer ul li a:hover, #navContainer ul li a:focus{
  background-image: url("../../images/background/navLinkLevel_01_hover.gif");
}

#navContainer ul li a#a_nav1_open, #navContainer ul li a:hover#a_nav1_open{
  background-image: url("../../images/background/navLinkLevel_01_open.gif");
}

/*
  Design for submenu
*/
#navContainer li li{
  background-color: #9D9D9D;
  line-height: 1.1em;
  background-image: url("../../images/background/navLiLevel_02.gif");
  background-repeat: no-repeat;
}

#navContainer ul ul a{
  display: block;
  background-repeat: no-repeat;
  height: 1.6em;
  padding: 0em;
  padding-left: 3.0em;
  padding-top: 0.21em;
  color: #000000;
  font-size: 0.8em;
  text-decoration: none;
  font-weight: bold;
  background-image: none;
}

#navContainer ul ul a:hover, #navContainer ul ul a:focus, #navContainer ul ul a#a_nav2_open{
  color: #FFFFFF;
  background-image: url("../../images/background/navLinkLevel_02_hover.gif");
}

/* 3. Ebene blau */
#navContainer ul ul a#a_nav3_open{
  color: #00CCFF;
  background-image: url("../../images/background/navLinkLevel_02_hover.gif");
}

/* styles for table */

table.link {
  width: 41em;
}

table.linksum, table.link{
  font-size: 1.0em;
  border-spacing: 0em;
  border-collapse: collapse;
}

table.link td, table.link th, table.link th, table.linksum td {
  margin: 0em;
  padding: 0em 1em 0em 0em;
  border-bottom: 0.1em solid #013499;
  text-align: left;
}

table.link th {
  border-bottom: 0.2em solid #013499;
}


/*
  stuff for voting
*/
table.voting {
  width: 41em;
  margin: 0em;
  padding: 0em 1em 0em 0em;
}

table.voting td, table.voting th, table.voting tr {
  text-align: left;
  margin: 0em;
  padding: 0em 0em 0.4em 0em;
}

table.voting td.answer {
  width: 10em;
}

table.voting td.result {
  width: 31em;
}

table.voting div.votingBar {
  height: 1.3em;
  background: #AACCFF;
}

table.voting div.resultPercent {
  position: absolute;
}

/*
  needed styles for the shop
*/
table.shop {
  width: 41em;
}

table.sum, table.shop{
  font-size: 1.0em;
  border-spacing: 0em;
  border-collapse: collapse;
}

table.shop td, table.shop th, table.sum th, table.sum td {
  margin: 0em;
  padding: 0em 1em 0em 0em;
  border-bottom: 0.1em solid #013499;
  text-align: left;
}

table.shop th {
  border-bottom: 0.2em solid #013499;
}

table.shop td.price, table.shop th.price, table.sum td.price{
  text-align: right;
}

table.shop td.amount, table.shop th.amount{
  text-align: center;
}

table.shop td.icon{
  padding: 0em 0em 0em 0em;
  text-align: right;
}

/*
  stuff for voting
*/
table.voting {
  width: 41em;
  margin: 0em;
  padding: 0em 1em 0em 0em;
}

table.voting td, table.voting th, table.voting tr {
  text-align: left;
  margin: 0em;
  padding: 0em 0em 0.4em 0em;
}

table.voting td.answer {
  width: 10em;
}

table.voting td.result {
  width: 31em;
}

table.voting div.votingBar {
  height: 1.3em;
  background: #AACCFF;
}

table.voting div.resultPercent {
  position: absolute;
}

/*
  Needed styles for the blog
*/

table.tableMonthOverview{
  font-size: 1.0em;
  width: 40em;
  border: thin solid;
  margin: 0.5em 0 0.5em 0;
  border-collapse: collapse;
  border-spacing: 0;
}

table.tableMonthOverview th, table.tableMonthOverview td{
  text-align: center;
  border: thin solid;
  padding: 0.1em;
}

input.votingAnswer {
  margin: 0.5em 1em 0em 0em;
  border: 0;
}

/*
  Breadcrumb
*/
a.locationCat{
  color: #000000;
}

.error{
  color: red;
}

.debug{  /* this is just a debug style*/
  border: 0.1em red solid;	/*	debug	*/
}