@charset "iso-8859-1";

/*****************************************************************************************
*  skidoo_too.css : 2005-08-29 / herzobilder.de: ver. 2008-10-08
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in source ordering.
*  Original Ruthsarian-layout from:  http://webhost.bridgew.edu/etribou/layouts/index.html
******************************************************************************************/

/* design-customizing sommer, herbst, winter: see .vnav h3  */


/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't want this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
	{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
	}

h1
	{
	}

h2
	{
	font-size: 130%;
	text-decoration: underline;
	color: #444444;
	}

h3	
	{
	font-size: 120%;  /* old: 140%; for left menu see .vnav h3 */
	text-decoration: underline;
	color: #444444;
	}

h4
	{
	font-size: 115%;
	text-decoration: underline;
	color: #444444;
	}

h5
	{
	font-size: 100%;
	text-decoration: underline;
	color: #444444;
	}

h6
	{
	font-size: 95%;
	text-decoration: underline;
	color: #444444;
	margin-top: -2px;
	margin-bottom: 2px;
	}

/* alter some HTML elements' default style  */ 
a, a:link  /* normal links, customize for frühling, sommer, herbst, winter */
	{
	text-decoration: underline;
	color: #006400;  /* winter=#0000c4; frühling=#006400 */
	}

a:active
	{
	text-decoration: underline;
	color: #840000;
	}

a:visited
	{
	text-decoration: underline;
	color: #666;
	}

a:hover
	{
	text-decoration: underline;
	color: #000;  
	background-color: #d7eda3; /* frühling=#d7eda3; sommer, herbst, winter=#B8CBF2  */
	}    

code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */

img { border:1px; border-style:solid; border-color:#bbbbbb;}



body
{
        margin:  5px 8px;       /* orig. value: 10px (top+bottom)   1% (left+right)
                                   margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;	
}
* html #pageWrapper
{
	/* \*/
	word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

#masthead
{
	border: solid 1px #fff; 
	border-width: 1px 0;
	padding: 1px;  /* border outside hzb-Logo */
}

#masthead h1
{
	padding: 0;
	margin: 0;
	color: #ffffff;
}

#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 10em #fff;	   /*orig: 14em */
	border-right: solid 18.2em #fff;   /*orig: 14em */
}

#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}

#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}

#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}

#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%; 
	min-height:830px;   /* min-height of hzb-page, accepted by FF & Opera, but not IE; old value:655 */
	z-index: 5;
}

#leftColumn
{
	float: left;
	margin: 0 1px 0 -10em;  /*orig: 14em */
	width: 10em;            /*orig: 14em */
	z-index: 4;
}

#rightColumn
{
	float: right;
	width: 18.2em;  		   /*orig: 14em;  18,2em: ergibt in IE+Opera die reele Breite der Werbe-pics mit width=99% (FF etwas grösser) */
	margin: 0 -18.2em 0 1px; /*orig: 14em */
	z-index: 2;
}

#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0em;
	margin: 0em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* - - - - - vertical navigation, menu left - - - - --  - - - -- - - - - */
/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em 0;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
	font-size: 90%;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px; /* top, right, bottom, left */
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer; /* change cursor from a arrow into a hand */
}

.vnav h3  /* menu left: H-aur, Franken, Sonstiges, Linkpartner, Termine, news */
{
	display: block;	
	margin-bottom: 0;
	font-size: 85%;
	color: #333333;
	background-color: #CAE978;  /* #CAE978 = grün (Frühling, Sommer); Herbst=#F9D930  Winter=#92AFE7  #AEDC48 = Ralfs grün */
	text-decoration: none;
	border: solid 1px #565;	
	padding: 1px 5px 1px 5px;	/* padding-problem with IE 6.0, see main-ie.css */
}

* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}


/* - - - - - horizontal navigation, menu top - - - - --  - - - -- - - - - */
/* create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
	vertical-align: middle;	
}

.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	vertical-align: middle;	
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				                top/bottom padding set in a previous rule */
	border: solid 1px;  /* does not work with fuckin IE6/7, when <td> is used */
	white-space: nowrap;
}

.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}

.hnav ul li span.divider
{
	display: none;
}

* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
		position: relative;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

.hnav
{
	background-color: #cccccc;  /* horizontal navigation backround color*/
	color: #fff;
}

.hnav ul li a:link, .hnav ul li a:visited  /* horizontal links backround color*/
{
	background-color: #ddd;     /* #ddd = light gray for all seasons  */
	color: #000;
}

.hnav ul li a:hover  /* horizontal hand over links backround color*/
{
	background-color: #d7eda3;    /* frühling=#d7eda3, sommer, herbst=#FCF1A9  winter=#B8CBF2  */
	color: #000000;
}

.hnav img { 
	border:1px; border-style:solid; border-color:#565;
	vertical-align: middle;
	margin-top:-5px; margin-bottom:-5px;
	}
	
.hnav td {	
	font-size: 0.95em;
	color: #111;
	}

/* ---------  end of horizontal navigation --------------------------  */


/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #EEEEEE; 	/* main background*/
	color: #000;			/* color for menu titles & content */
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 0.95em;		/* default font size for Firefox; orig.value: 100% */
				/* problems with IE & Opera, if Windows-system-font-size is not set to "normal" (96 dpi) */
}


html:first-child>b\ody #pageWrapper {font-size:0.95em;} /* CSS-hack only interpreted by Opera - orig.:95% */


#masthead
{
	background-color: #cccccc;  /* head background @logo.jpg */
	color: #fff;
}

#outerColumnContainer
{
	border-left-color: #eeeeee;	/* left column background color */
	border-right-color: #eeeeee;	/* right column background color */
	background-color: #fafafa;	/* middle column background color */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #dddddd;  /* vertical links backround color, do not change*/
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover /* vertical hand over links backround color */
{
	text-decoration: none;
	background-color: #d7eda3;      /*  frühling=#d7eda3; sommer, herbst=#FCF1A9  winter=#B8CBF2  */
	color: #000000;
}

#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#rightColumn .inside .vnav
{
	font-size: 110%; /* orig 110% */
}
#footer
{
	background-color: #ccc;  /* footer backround color, do not change */
	color: #222222;
	text-align: center;
}

/******************* begin of migrated css file ver 1 from herzobilder.de *****************************/

.titel 	{ /* Themen-Überschrift in PC-Tipps, no more customizing */
	text-decoration:underline;
	color: #444444;
	font-family: Arial,Helvetica;
    font-weight:bold;
	font-size:1em;    
	}


.titel2 { /*  gray, no more customizing  */
	background-color: #cccccc; 
	color: #444444;
	font-family: Arial,Helvetica;
    font-weight:bold;
	font-size:1em;   
	text-align:left;
	}

.hzbtxt { /* Kommentar-Text  */
	text-decoration: none;
	color:#000000;
	font-family:Arial,Helvetica;
	font-size:11pt;  
	}

.header { background-color: #cccccc; } /* header background for niederndorf-ffw125.php etc. , no more customizing  */
	
.main   { background-color: #fafafa; } /* main data background white, no more customizing */

.footer { background-color: #bbbbbb; } /* footer background gray, no more customizing  */	

.countertxt { /* Kommentar-Text für Counter & Kleingedrucktes in diashows */
	text-decoration: none;
	color:#000000;
	font-family:Arial;
	font-size:0.7em;  
	}

.infotxt { /*Info-Text footer  */
	text-decoration: none;
	color:#000000;
	font-family:Arial,Helvetica;
	font-size:10pt;   
	}	

.button { /* buttons for galerie.php, Kontakt & newsletter */
	font-family:Arial,Helvetica;
	font-size:9pt;   
	font-weight:bold;
	color:#333;  /* frühling=333  winter=fff */
    background-color: #CAE978; /* winter=#5D86DC  frühling=#CAE978;   herbst= */ 
	}  

.navi   {font-size:80%;
         margin-top:5px; 
         margin-bottom:-5px; 
	     background-color: #cccccc;
        }

.li0	{margin-top:5px;    /* used for sitemap.php */
         margin-bottom:5px; 
	}

.li2	{margin-left:-25px;}

.ul0	{margin-top:1px; 
         margin-bottom:2px; 
	}

.faqtxt {  /* FAQ text for questions, problems */
	  font-family: Arial, Helvetica; 
	  font-size: 11pt;
      font-weight: bold;	  
	  color: #222;
	  text-decoration: none;
	}
	
.faqtxtgn { /* FAQ text green for answers */
	  font-family: Arial, Helvetica; 
	  font-size: 11pt;
      font-weight: bold;	  
	  color: #0a0;
	  text-decoration: none;
	}

