@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 0px;
	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: none;}

/* 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;
width: auto;
}
#pageWrapper
{
	border: solid 0px #000;
	border-width: 0 0px;
	margin: 0 0%;		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 00em;	/* 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:956px;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: 0px solid #000;
	border-width: 0px 0px;
	height: 120px;
	padding: 0;
}
#mastheadmenu
{
	border: 0px solid #000;
	border-width: 0px 0px;
	height: 18px;
	padding: 0;
}
#headtitle
{
	position: absolute;
	padding: 0;
	margin: 0 0;
	right: 350px;
	top: 35px;
	height: 40px;
	vertical-align: left;
	text-align: right;
}
#headlpic
{
	position: relative;
	padding: 0;
	margin: 0 25px;
	/* left: 0px; -> dynamic */
	/* width: auto; -> dynamic */
	top: 0px;
	height: 120px;
	border-style: solid;
        border-width: 0px;
}
#headmenu
{
	padding: 1px 0;
	margin-left:auto;
	margin-right:auto;
	/* left: 175px; -> dynamic */
	/* right: 175px; -> dynamic */
	top: 82px;
	height: 16px;
	text-align: center;
	border-bottom:1pt solid #000;
	border-top:1pt solid #000;
}
#headmenu ul { padding:0; margin:0; }
#headmenu ul li
{
	display:inline;
	margin:0;
	padding:0 8px;
	border-width:0;
	list-style-type: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;
}
#headsearch
{
	/* remove comment tags of display:none; to remove search from header */
	/*display: none;*/
	position: absolute;
	padding: 0;
	margin: 0;
	right: 0px;
	width: 160px;
	top: 50px;
	height: 27px;
	vertical-align:bottom;
	text-align: center;
}
#headdate
{
	position: absolute;
	padding: 1px 0;
	/* width: 165px; -> dynamic */
	/* right: 10px; -> dynamic */
	top: 122px;
	height: 16px;
	text-align: center;
	vertical-align: middle;
}
#masthead h1
{
	font-style: italic;
	margin-top: 0;
	font-family: "Georgia", Serif; /*Font of Page-Title */
}
#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 0px;		/* 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;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	overflow:auto;
	border: solid 0px #000;
	border-width: 0px 0px;
	float: right;
	margin: 0 -2px 0 0;
	padding: 0;
	width: 100%;
	z-index: 5;
}
#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: 1px;
	z-index: 2;
}
/* finestructure */
/* right */
/* .rsbox
{
	/* width: 175px; -> dynamic */
	padding: 0;
	margin: 0 0 0 0;
}
.rsboxtitle
{
	/* width: 157px; -> dynamic */
	padding:10px 3px 4px 3px;
	margin:0px;
	border-style: solid;
	border-width: 0px 1px 0px 1px;
}
.rsboxblock
{
	/* width: 157px; -> dynamic */
	padding:3px;
	margin:0px;
	border-style: solid;
	border-width: 1px;
} */
/* 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 0 0;
	padding: 0;
	border-style: solid;
	border-width: 1px;
	width: 99%;
}
.newsinnerindex
{
	overflow:auto;
	height: 100%; /* Fix for IE6 disappearing float bug */
	margin: 5px;
	padding: 10px;
	border-style: solid;
        border-width: 1px;
}
.ccblock
{
	overflow:auto;
	width: 99%;
	padding: 0;
	margin: 0 0 0 0;
	color: #000;
        border-width:	2px;
}
.ccblock h1, .ccblock h2
{
	margin: 5px;
	font-size: 130%;
	color:#000;
}
.jamblock
{
	/* width: 157px; -> dynamic */
	padding: 0;
	margin: 0 0 0 0;
}

.jamblock1
{
	/* width: 157px; -> dynamic */
	padding:3px;
	margin:0px;
	border-style: solid;
	border-color: #c0c0c0;
	border-width: 1px;
}
.eventsblock
{
	overflow:auto;
	width: 25%;
	padding: 0;
	margin: 0 0 0 0;
	border-style:solid;
        border-width:	1px;
	border-color: #505050;
}
.eventsblock h1, .eventsblock h2
{
	margin: 5px;
	font-size: 100%;
}

.bannerbox
{
	overflow: hidden;
	margin-top: 10px; 
	margin-right:auto; 
	margin-bottom: 10px; 
	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;
}	
/* left */
/* .lsbox
{
	/* width: 150px; -> dynamic */
	padding: 0;
	/* padding-left:25px; -> dynamic */
	margin: 0;
}
.lsboxtitle
{
	/* width: 142px; -> dynamic */
	padding:10px 3px 4px 3px;
	margin:0px;
	border-style: solid;
	border-width: 0px 1px 1px 1px;
}
.lsboxblock
{
	/* width: 142px; -> dynamic */
	padding: 3px 3px 3px 3px;
	margin:0px;
	border-style: solid;
	border-width: 0px 1px 1px 1px;
} */
#footer
{
	padding: 0.5em;
	margin: 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, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	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: 20px 0px 0px 0px;
}

/* pn-Fonts definitions */
FONT		{ FONT-SIZE: 12px;}
BODY, P, DIV, FORM, SELECT, TD, TH	{BACKGROUND: transparent; FONT-SIZE: 12px; FONT-FAMILY: "Verdana", "Helvetica", sans-serif}
TEXTAREA, INPUT {BACKGROUND: grey; FONT-SIZE: 12px; FONT-FAMILY:"Verdana", "Helvetica", sans-serif}
A:link		{color: #000;}
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;}

.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}
/******************************************************************************/

abbr, acronym, span.abbr
{
    cursor: help;
    border-bottom: 1px dashed yellow;
}

#menu ul { 
	margin: 0; 
	padding: 0; 
	list-style: none;
	width: 148px; /* Width of Menu Items */ 
	border-bottom: 1px solid #ccc; 
} 

#menu ul li { 
	position: relative; 
} 

#menu li ul { 
	position: absolute; 
	left: 149px; /*Set 1px less than menu width */ 
	top: 0; 
	display: ; 
} 

#menu li:hover ul {
	display: ; 
} 

#menu li:hover>ul { 
	visibility:visible; 
} 

#menu ul ul {
	visibility:hidden; 
} 

/* Fix IE. Hide from IE Mac \*/ 
* html #menu ul li { float: left; height: 1%; } 
* html #menu ul li a { height: 1%; } 
/* End */ 

/* Make-up syles */ 

#menu ul, li { 
	margin: 0 0 0 0; 
} 

/* Styles for Menu Items */ 
#menu ul a { 
	display: block; 
	text-decoration: none; 
	color: #fff; 
	background: #333333; /* IE6 Bug */ 
	padding: 5px; 
	border: 1px solid #333333; 
	border-bottom: 0; 
} 

/* Hover Styles */ 
#menu ul a:hover { 
	color: #fff; 
	background: #333333; 
} 

/* Sub Menu Styles */ 
#menu li ul a { 
	text-decoration: none; 
	color: #fff; 
	background: #333333; /* IE6 Bug */ 
	padding: 5px; 
	border: 1px solid #333333; 
	border-bottom: 0; 
} 

/* Sub Menu Hover Styles */ 
#menu li ul a:hover { 
	color: #505050; 
	background: #333333; 
} 

/* Icon Styles */ 
#menu ul a.submenu {background:#505050 url("http://www.mjfc-jam.com/themes/Fleximple1/images/r_arrow.gif") no-repeat right; } 
#menu ul a.submenu:hover {background:#333333 url("http://www.mjfc-jam.com/themes/Fleximple1/images/r_arrow.gif") no-repeat right;}

/* Pagesetter CSS related inline block */

.psRelatedInlineBlock
{
  float: right;
  color:#999;
  font: 1.0em "Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
  background-color: #FCFCFC;
  border-left: 1px solid #979797;
  border-bottom: 1px solid #979797;
  border-top: 1px solid #979797;
  padding: 4px;
  filter: alpha(opacity=90);
  -moz-opacity: 0.90;
  opacity: 0.90;
  z-index: 100;
  clear: both;
}

.relatedBlock{  float: right;  width: 200px;  background-color: #eceff4;  border: 2px solid #8da3ba;  padding: 4px;  margin-top: 10px;  clear: both;}

.wichtig { background-color: #E6F1F4; border: 1px #E6F1F4 solid; padding: 0.5em; margin-bottom: 0.5em; color: #3D4344;}

.navi {position: absolute;
	padding: 1px 0;
	/* width: 165px; -> dynamic */
	/* left: 10px; -> dynamic */
	top: 122px;
	height: 16px;
	text-align: center;
	vertical-align: middle;}

.lsbox, .rsbox {display:none}
#masthead, #mastheadmenu, #headmenu, #headtitle {display:none}