@charset "UTF-8";

@import "visual_consistencies.css";

.clear-columns
{
	clear: both;
}
#content-container {
	background-color: #fff;
	padding: 45px 0;
}
.outer-column-container
{
	border-left: solid 222px #fff;	/* left column's width and background
					   color */
	border-right: solid 222px #fff;	/* right column's width and background
					   color */
}
.inner-column-container
{
	width: 100%;		/* force this element to take the full width
				   between the left and right columns. this is
				   especially important as children of this
				   element will have width:100%; set, and how
				   that 100% value is interpreted depends on
				   the width of it's parent (this element). */
}
.source-order-container
{
	float: left;		/* float left so the right column, which is
				   outside this element, has a place to go. */
	width: 100%;		/* force this to go as wide as possible */
	margin-right: -1px;	/* make room for the right-column's overlap. */
}
.left-column
{
	float: left;		/* float left, where it'll live */
	margin-left: -222px;	/* move it further left. the value here should
				   be the same value as the left border width
				   on #outer-column-container, but negative */
	width: 222px;		/* need to set a definite width, should be the
				   same width as the left border width on
				   #outer-column-container */
	margin-right: 1px;	/* overlap the middle column to help with
				   clearing. see general notes above. */
}
.middle-column
{
	float: right;		/* middle column goes right of the left column
				   since the two share the same parent 
				   element */
	width: 100%;		/* make the middle column as wide as possible
				   for a fluid layout. this is not possible
				   if it's parent element, 
				   #source-order-container, wasn't also at
				   100% width */
	margin-left: -1px;	/* make room for the left-column's overflap */
}
.right-column
{
	float: right;		/* float on the right side of the layout */
	margin-right: -222px;	/* move it further right. the value here should
				   be the same value as the right border width
				   on #outer-column-container, but negative */
	width: 222px;		/* need to set a definite width, should be the
				   same width as the right border width on
				   #outer-column-container */
	margin-left: 1px;	/* overlap the middle column */
}

/*******************************************************************************
 * BASE THEME
 *
 * Setup basic styling for the layout. This will set gutterspace and generate a
 * basic border structure for the layout. Real layout styling belongs in a 
 * separate "theme" stylesheet; leave this stylesheet untouched.
 */
body
{
	background-color: #00233d;
	background-image: url(/fileadmin/templates/images/background.jpg);
	background-repeat: repeat-x;
	background-position: center -20px;
	color: #666;
	padding: 0;			/* padding on the body element when
					   javascript min-width is in use will
					   create problems in IE/Win 6. */
	margin: 0;
}
* HTML BODY {
	TEXT-ALIGN: center;
	HEIGHT: 100%;
}
#page-container {
	WIDTH: 891px; 
	MARGIN: 0;
	PADDING: 0;
	MARGIN-TOP: 0px;
	MARGIN-BOTTOM: 35px;

	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin-left: auto;
	margin-right: auto;
}
* + HTML #page-container {
	position: relative;
}
* HTML #page-container {
	WORD-WRAP: break-word;
	position: relative;
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}
#masthead
{
}
#footer
{
	background-image: url(/fileadmin/templates/images/footer_bg.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 50px;
}
.inside
{
	margin: 0 25px;			/* margin, instead of padding, used to 
					   induce margin collapse if needed by 
				 	   child elements */
}
#logo {
	background-image: url(/fileadmin/templates/images/logo.jpg);
	background-image-repeat: no-repeat;
	height: 140px;
}

/** HACKS
 * REFERENCE
 *	http://www.satzansatz.de/cssd/onhavinglayout.html
 *	http://www.communis.co.uk/dithered/css_filters/css_only/index.html
 */
.clear-columns
{
	/* hide from IE/Mac \*/
	padding-bottom: 1px;
	margin-bottom: -1px
}
* html #page-container
{
	/* \*/ height: 0.1%;	/* IE/Win 5 needs this to prevent rendering
				   issues if a minimum width is applied to
				   this element and the viewport is sized
				   narrower than it's minimum width. however
				   this breaks IE/Mac so a comment hack is
				   used to hide it. */
	position: relative;	/* IE/Mac 5.0 seems to need this. without it
				   any child element with position: relative
				   isn't rendered. */
}
* html .middle-column, * html .left-column, * html .right-column,
* html .source-order-container
{
	/* hide from IE/Mac \*/
	overflow: visible;	/* a bug through IE/Win 6 causes the widths of
				   text boxes to be calculated narrower than
				   they render, causing overflow of their parent
				   elements. we need to explicitly handle this
				   overflow. IE/Win 5.0 does not handle visible
				   overflow correctly and so on some layouts,
				   at some viewport widths you'll get a 
				   horizontal scroll bar. */
	/* hide from IE/Mac \*/
	position: relative;	/* this resolves rendering bugs in IE/Win.
				   without this the columns don't render on
				   screen or text jog. */
}
* html .middle-column
{
	margin-right: -4px;	/* fix 3-pixel text jog in IE/Win 5.0.
				   -4px because we also have to
				   compensate for the overlaps from
				   the left and right columns */
	margin-right/* */: 0;	/* reset value on 5.5 and later using
				   comment hack to hide this rule from 5.0 */
}
* html .middle-column .inside
{
	margin-right: 4px;		/* compensate for negative margin in
					   previous rule */
	margin-right:/* */: 0px;	/* reset margins for 5.5 and later */
	margin: 0 25px;
}
* html #masthead, * html #footer
{
	/* hide from IE/Mac \*/
	height: 0.1%;		/* this is to fix an IE 5.0 bug. setting this
				   value forces these elements to contain their
				   child elements, meaning margins will no
				   longer collapse. */
	height/**/: auto;	/* reset for IE/Win 5.5 and later by hiding
				   this rule from 5.0 with the empty comment
				   hack. also hidden from IE/Mac for the same
				   reason. */
}
* html #masthead .inside, * html #footer .inside
{
	margin-top: 0;
	margin-bottom: 0;	/* since margins no longer collapse due to 
				   previous rules we remove vertical margins
				   from the .inside class */
	margin/* */: 0px;	/* reset for IE 5.5 and later */
}
* html .inside
{
	margin: 10px 0.75em;	/* i don't yet understand this bug in IE 5.0
				   which forces the right column down if the
				   side margins are at a very specific value.
				   if your side column widths are set in EMs,
				   0.75em seems to work fine. */
	margin/* */: 0px;	/* reset for IE 5.5 and later */
	margin: 0 25px;
}
* html .inner-column-container 
{
	display: block;
}
* html .source-order-container
{
	margin-right: -100%;	/* IE/Mac will force #source-order-container
				   to the width of #left-column, even though
				   that element is no longer inside it. this
				   negative margin will help IE/Mac keep the
				   three columns together under narrower 
				   viewports than normal.
	/* \*/ margin-right: -1px; /* reset the above hack for IE/Win */
}
.left-column, .right-column
{
	position: relative;	/* resolve issues with links in left and right
				   columns not being clickable in Safari */
}

/******************************************************************************/
/* layout 2:2 (startseite) */

.outer-column-container-2 {
	border-left: solid 445px #fff;
	border-right: 0;
}

.outer-column-container-2 .left-column {
	width: 445px;
	margin-left: -445px;
}

.outer-column-container-2 .left-column .inside {
	margin-left: 75px;
}
.outer-column-container-2 .middle-column .inside {
	margin-right: 95px;
}

/******************************************************************************/
/* layout X:1.5:1.5 */

.outer-column-container-3 {
        border-left: 0;
        border-right: solid 333px #fff;
}

.outer-column-container-3 .middle-column {
	width: 333px;
	margin-left: 222px;
}

.outer-column-container-3 .right-column {
        margin-right: -333px;
        width: 333px;
}

/******************************************************************************/
/* layout 1:3 */

.outer-column-container-4 {
        border-left: solid 222px #fff;
        border-right-width: 0;
}
.outer-column-container-4 .left-column {
        float: left;
        margin-left: -222px;
        width: 222px;
        margin-right: 1px;
}
.outer-column-container-4 .middle-column {
        float: right;
        width: 100%;
        margin-left: -1px;
}
.outer-column-container-4 .inner-column-container { border-right-width: 0; }
.outer-column-container-4 .source-order-container { margin: 0; }

/******************************************************************************/
/* layout X:3 */

.outer-column-container-5 {
        border-left: solid 222px #fff;
}

/******************************************************************************/
/* layout 1sp */

.outer-column-container-10 {
        border-left: solid 50px #fff;
	border-right: solid 50px #fff;
}

/******************************************************************************/
/* layout 1:2:1 oben quer */

.outer-column-container-6
{
        border-left: solid 222px #fff;
	border-right: 0;
}
.outer-column-container-6 .source-order-container
{
        float: right;
        margin-left: -1px;
	margin-right: 0;
}
.outer-column-container-6 .left-column
{
        float: left;
        margin-left: -222px;
        width: 222px;
        margin-right: 1px;
}
.outer-column-container-6 .middle-column
{
        float: left;
        width: 447px;
        margin-right: -1px;
	margin-left: 0;
}
.outer-column-container-6 .right-column
{
        float: right;
	margin-right: 0;
        width: 222px;
        margin-left: 1px;
}

/******************************************************************************/
/* layout 1.5:2.5 */

.outer-column-container-7 {
        border-left: solid 335px #fff;
        border-right-width: 0;
}
.outer-column-container-7 .left-column {
        float: left;
        margin-left: -335px;
        width: 335px;
        margin-right: 1px;
}
.outer-column-container-7 .middle-column {
        float: right;
        width: 100%;
        margin-left: -1px;
}
.outer-column-container-7 .inner-column-container { border-right-width: 0; }
.outer-column-container-7 .source-order-container { margin: 0; }

/******************************************************************************/

#homelink {
	height: 100px;
	width: 170px;
	position: absolute;
	left: 360px;
	top: 20px;
}

#newsbanner {
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

