@charset "iso-8859-1";

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */

.clear
{
	clear: both;
}
.hide
{
	display: none;
}
.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 10px;
	background-color: transparent;
}
.center	{text-align:center;}
.oben	{vertical-align: top;}
.mitte	{vertical-align: middle;}
.unten	{vertical-align: text-bottom;}

html[xmlns] .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick
	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector
	 * :root .mozclear for what's given here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}

/* 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 wnat this.
 *
 * salt to taste
 */

ul, ol, dl, p
{
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
h1, h2, h3, h4, h5, h6
{
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0;
	padding-bottom: 0;
}
h1  {	font-size: 200%; }
h2  {	font-size: 110%; }
h3  {	font-size: 100%; }
h4  {	font-size: 100%; }
h5  {	font-size: 100%; }
h6  {	font-size: 90%; }

ul 
{
	margin: 4px;
	padding: 0px 10px 0px 10px;
}

/* alter some HTML elements' default style
 */

code	{font-family: "Courier New", Courier, monospace;}
label	{cursor: pointer;}
table	{font-size: 100%;}
td, th	{vertical-align: top;}
IMG	{border: 0px;}

/* 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.
 */

body
{
	padding: 0;
	margin: 0;
}
#pageWrapper
{
	border: solid 1px #000;
	margin: 0 0%;		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 40em;	/* IE doens't understand this property. I use ems rather
				   than pixels so that the layout shouldn't break even
				   when the browser's default size is set very large */
	width: auto;
	padding: 0;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border-style: solid;
	border-width: 0 0 2px 0;
	height: 90px;
	padding: 0;
	margin: 4px;
}
#tophead
{
	margin: 0;
	padding: 0;
	height: 45px;
}
#headtitle
{
	position: relative;
	float: left;
	vertical-align: top;
	padding: 0;
	margin: 5px 0 0 8px;
	height: 40px;
	width: 65%;
	overflow: visible;
	text-align: left;
}
#masthead h1
{
	font-style: italic;
	font-family: "Georgia", Serif; /*Font of Page-Title */
}
#headdate
{
	position: relative;
	float: right;
	padding: 0;
	margin: 5px 5px 0 0;
	height:20px;
	width: 30%;
	text-align: right;
}
#headsearch
{
	/* remove comment tags of display:none; to remove search from header */
	/*display: none;*/
	position: relative;
	float: left;
	padding: 0;
	margin: 12px 0 4px 7px;
	height: 20px;
	width: 25%;
	overflow: visible;
	vertical-align:middle;
	text-align: left;
}
#headsearch form
{
	margin: 0;
	padding: 0;
}
#search_xte_plugin
{
	padding:1px;
	border: 1px solid;
}
#headmenu
{
	position: relative;
	float: right;
	width: 70%;
	padding: 1px 0;
	margin: 9px 5px 4px 0;
	height: 25px;
	text-align: right;
	vertical-align:middle;
}
#headmenu ul
{
	margin: 2px;
	padding: 1px;
}
#headmenu ul li
{
	margin: 0;
	padding: 0;
	display:inline;
	list-style-type:none;
}
#headmenu li a
{
	margin:0px;
	padding:2px 8px;
	border: 1px solid #000;
	border-width: 1px 1px 1px 1px;
	vertical-align:middle;
	text-align: center;
	text-decoration:none;
}
#headlogin
{
	/* remove comment tags of display:none; to remove login from header */
	/*display: none;*/
	position: absolute;
	padding: 0;
	right: 0px;
	top: 0px;
	height: 20px;
	text-align: right;
}
#borderbox
{
	margin: 0 4px 4px 4px;
	padding: 0 1px 1px 1px;
	border-style: solid;
	border-width: 0 1px 1px 1px;
}
	
#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 #fff;
	border-right: solid #fff;
	/* border-width: -> dynamic */
	/* border-right: solid 0px #fff;
	 * switch border-right-tags if no right blocks are used*/
}
#innerColumnContainer
{
	border: solid 0px #000;
	border-width: 0 0px;
	margin: 0;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #rightColumn, #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 0 0 -1px;
	padding:0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	overflow:auto;
	border: solid 0px #000;
	border-width: 0;
	float: right;
	margin: 0 -2px 0 0;
	padding: 0;
	width: 100%;
	z-index: 5;
}
#mainColumn
{
	padding: 0 7px;
	margin: 0 2px 0 0;
	border: solid #000;
	border-width: 0px 1px 0px 1px;
	z-index: 7;
}
#leftColumn
{
	float: left;
	margin: 0;/* 0px 0 -174px; -> dynamic */
	/* width: 175px; -> dynamic */
	z-index: 4;
}
#rightColumn
{
	float: right;
	/* width: 175px; -> dynamic */
	margin: 0; /*-175px 0 1px; -> dynamic */
	margin-left: 0px;
	z-index: 2;
}
/* finestructure */
/* center */
.table1
{
	width: 99%;
	margin: 0 0 0 0;
	padding: 2px;
}
.table1inside
{
	overflow:auto;
	margin: 0;
	padding: 8px;
}
.table2
{
	width: 99%;
	margin: 0 0 0 0;
	padding: 2px;
}
.table2inside
{
	overflow:auto;
	margin: 0;
	padding: 8px;
}

.newsouterindex
{
	margin: 0 0 15px 0;
	padding: 0 0 2px 0;
	border-style: solid;
	border-width: 1px 1px;
	width: 99%;
}
.newsouterindex h2
{
	margin: 3px 10px 0 10px;
	padding: 0;
}
.newsinnerindex
{
	overflow:auto;
	height: 100%; /* Fix for IE6 disappearing float bug */
	margin: 3px 0px;
	padding: 10px;
	border-style: solid;
        border-width: 0px 0px;
}
.ccblock
{
	overflow:auto;
	width: 99%;
	padding: 0;
	margin: 0 0 10px 0;
	border-style: solid;
        border-width:	0px;
}
.ccblock h1, .ccblock h2
{
	margin: 5px;
	font-size: 130%;
}
.bannerbox
{
	overflow: hidden;
	margin-top: 0px; 
	margin-right:auto; 
	margin-bottom: 5px; 
	margin-left:auto; 
	text-align: center; 
}
#twocoloutside
{
	width: 99%;
	margin: 0 0 0 0;
	padding: 0;
}
#twocolleft
{
	width: 48%;
	float: left;
	margin: 0 0 0 0;
	padding: 3px;
}	
#twocolright
{
	float: right;
	width: 48%;
	margin: 0 0 0 0;
	padding: 3px;
}	
/* mainmenu */
.menubox
{
	margin: 0 0 4px 0;
	padding: 0;
}
.menubox h2
{
	padding:1px 2px;
	margin:0;
}
.menubox ul, .menubox ul li
{
	margin: 0;
	padding: 0;
	list-style-type:none;
	display: block;
}
.menubox ul li a
{
	margin: 0;
	padding: 2px 4px;
	display: block;
	border-style: solid;
	border-width: 1px 0 1px 0;
	text-decoration:none;
	line-height: normal;
}
/* left, right */
.rsbox, .lsbox
{
	/* width: 175px; -> dynamic */
	margin: 0 0 4px 0;
	padding: 0 0 2px 0;
	border-bottom: 1px solid;
}
.rsbox h2, .lsbox h2
{
	padding:1px 2px;
	margin:0 0 2px 0;
}
.rsbox ul, .lsbox ul
{
	margin: 0 5px 0 20px;
	padding: 0;
}
#footer
{
	padding: 0.5em;
	margin: 1px 0 0 0;
}

/* Pagesetter config */
table.pubInfoBox
    {
      border: 1px solid black;
      font-family: "Arial", sans-serif;
      font-size: 10pt;
      background-color: #E0E0E0;
      padding: 4px;
    }

/* pnForum config */
.pnForum-border
{
	border: 1px solid #333;
}
    
/* below is a series of selectors to get a consistent font size across
 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper
 * to set the base font-size for the layout.
 */

body
{
	font-size: 100.1%;
}
html>body
{
	/* Opera's default font size is typically 10% smaller than IE or Mozilla
	 * so we correct for this here, since we're using percentages 
	 * everywhere. And we do this because pixel-based fonts don't resize
	 * under IE/Win and percentages/ems are essentially the same, and I like
	 * percentages for fonts.
	 */
	font-size: 110%;
}
body:last-child, * html body
{
	/* of course the previous selector for Opera's fix is caught by more 
	 * than a few other browsers, so we reset that value here.
	 */
	font-size: 100.1%;
}

/* 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
{
	border-color: #333;
}
body
{
	/* background-color: #fff; -> dynamic */
	/* color: #000; -> dynamic */
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#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%;
}
#footer
{
	text-align: center;
	border-style: solid;
	border-width: 2px 0px 0px 0px;
}

/* pn-Fonts definitions */
FONT		{ FONT-SIZE: 12px}
BODY, P, DIV, INPUT, TEXTAREA, FORM, SELECT, TD, TH	{BACKGROUND: none; FONT-SIZE: 12px; FONT-FAMILY: "Verdana", "Helvetica", sans-serif}
A:link		{TEXT-DECORATION: none;}
A:visited	{TEXT-DECORATION: none;} 
A:hover		{TEXT-DECORATION: underline;}
A:active	{TEXT-DECORATION: none;}
a:link.brightlinks	{TEXT-DECORATION: none;}
a:visited.brightlinks	{TEXT-DECORATION: none;} 
a:hover.brightlinks	{TEXT-DECORATION: underline;}
a:active.brightlinks	{TEXT-DECORATION: none;}
#headtitle a:link, #headtitle a:visited, #headtitle a:hover, #headtitle a:active	{TEXT-DECORATION: none;}
.menubox a:link, .menubox a:visited, .menubox a:hover, .menubox a:active	{TEXT-DECORATION: none;}

.kursiv		{FONT-FAMILY: "Georgia", Serif;}
.title 		{BACKGROUND: none; FONT-SIZE: 22px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", "Courier", sans-serif; font-style: italic;}
.content 	{BACKGROUND: none; FONT-SIZE: 12px; FONT-FAMILY: "Verdana", "Helvetica", sans-serif;}
.storytitle 	{BACKGROUND: none; FONT-SIZE: 11px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.storycat	{BACKGROUND: none; FONT-SIZE: 11px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: underline}
.boxtitle 	{BACKGROUND: none; FONT-SIZE: 11px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.boxcontent 	{BACKGROUND: none; FONT-SIZE: 11px; FONT-FAMILY: "Verdana", "Helvetica", sans-serif;}
.option 	{BACKGROUND: none; FONT-SIZE: 12px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.tiny		{BACKGROUND: none; FONT-SIZE: 10px; FONT-WEIGHT: normal; FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-normal 	{BACKGROUND: none; FONT-SIZE: 12px; FONT-FAMILY: "Verdana", "Helvetica", sans-serif}
.pn-pagetitle	{BACKGROUND: none; FONT-SIZE: 14px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-title, h2	{BACKGROUND: none; FONT-WEIGHT: bolder; FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-titlemenu 	{BACKGROUND: none; FONT-SIZE: 12px; FONT-WEIGHT: normal; FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-titlemenub 	{BACKGROUND: none; FONT-SIZE: 12px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-sub		{BACKGROUND: none; FONT-SIZE: 11px; FONT-WEIGHT: normal; FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-text	{BACKGROUND: none; FONT-SIZE: 12px; FONT-FAMILY: "Verdana", "Helvetica", sans-serif;}
.pn-logo	{BACKGROUND: none; FONT-SIZE: 12px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
.pn-logo-small	{BACKGROUND: none; FONT-SIZE: 12px; FONT-WEIGHT: bold;   FONT-FAMILY: "Verdana", "Helvetica", sans-serif; TEXT-DECORATION: none}
/******************************************************************************/

