@charset "UTF-8";

@import "visual_consistencies.css";

.clear-columns
{
	clear: both;
}
.outer-column-container
{
	border-left: solid 202px #fff;	/* left column's width and background
					   color */
	border-right: solid 202px #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: -202px;	/* move it further left. the value here should
				   be the same value as the left border width
				   on #outer-column-container, but negative */
	width: 202px;		/* 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: -202px;	/* move it further right. the value here should
				   be the same value as the right border width
				   on #outer-column-container, but negative */
	width: 202px;		/* 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: #000;
	color: #444;
	padding: 0;			/* padding on the body element when
					   javascript min-width is in use will
					   create problems in IE/Win 6. */
	margin: 0;

	background-repeat: no-repeat;
}
* HTML BODY {
	TEXT-ALIGN: center;
	HEIGHT: 100%;
}

#page-container {
	MARGIN: 0;
	PADDING: 0;
}
* + HTML #page-container {
}
* HTML #page-container {
	WORD-WRAP: break-word;
}

/****/
HTML, BODY {
        height: 100%;
        margin: 0;
        padding: 0;
}
#page-container {
	position: relative;
        min-height: 100%;
        margin-bottom: -61px;
        height: auto;
	z-index: 2;
}
* html #page-container { height:100%; }
#clearfooter {
        clear: both;
        height: 61px;
}
/*****/

#bgoverlay {
	background-color: #000;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

#menu-container,
#content-container {
	float: left;
}
#content-container {
	padding-top: 505px;
	padding-bottom: 20px;
	width: 596px;
	padding-left: 10px;
}
#masthead
{
}
#footer
{
	background-image: url(/fileadmin/templates/images/footer_bg.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 61px;
	font-size: 11px;
	line-height: 14px;
	padding-left: 69px;
	color: #999;
	text-align: left;
	z-index: 2;
	position: relative;
}
#footer p {
	margin: 0 0 8px 0;
}
.inside {
	background-color: #fff;
	background-color: rgba(255,255,255,0.8);
}
.left-column .inside {
	margin: 0 10px 0 0;
}
.right-column .inside {
        margin: 0 0 0 10px;                     
}
.inside .csc-header,
.inside .csc-textpic-text {
	margin: 0 10px;
	padding-bottom: 2px;
}

#logo {
	background-image: url(/fileadmin/templates/images/logo.png);
	background-image-repeat: no-repeat;
	height: 141px;
	width: 207px;
	position: absolute;
	left: 740px;
}
* HTML #logo {
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/fileadmin/templates/images/logo.png');
	background:none;
}

/** 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
{
	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: 0;
}
* html #masthead, * html #footer
{
}
* html #masthead .inside, * html #footer .inside
{
}
* html .inside
{
}
* 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 1:3 */

.outer-column-container-4 {
        border-left: solid 202px transparent;
        border-right-width: 0;
}
.outer-column-container-4 .left-column {
        float: left;
        margin-left: -202px;
        width: 202px;
        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; }
.outer-column-container-4 .middle-column .inside { padding: 0 10px 5px 10px; }
.outer-column-container-4 .middle-column .inside .csc-header { margin: 0; }

/******************************************************************************/
/* layout X:3 */

.outer-column-container-5 {
        border-left: solid 202px transparent;
}

/******************************************************************************/
/* layout 1sp */

.outer-column-container-10 {
}
.outer-column-container-10 .middle-column .inside { padding: 0 10px 5px 10px; }
.outer-column-container-10 .middle-column .inside .csc-header { margin: 0; }

/******************************************************************************/
/* layout 1:1 in 1 */

.outer-column-container-10 .outer-column-container-4 {
        border-left: solid 278px transparent;
        border-right-width: 0;
}
.outer-column-container-10 .outer-column-container-4 .left-column {
        float: left;
        margin-left: -278px;
        width: 278px;
        margin-right: 1px;
}
.outer-column-container-10 .outer-column-container-4 .middle-column {
        float: right;
        width: 100%;
        margin-left: -1px;
}
.outer-column-container-10 .outer-column-container-4 .inner-column-container { border-right-width: 0; }
.outer-column-container-10 .outer-column-container-4 .source-order-container { margin: 0; }
.outer-column-container-10 .outer-column-container-4 .left-column .inside { padding: 10px 0 0 0;  margin:0; background-color: transparent; }
.outer-column-container-10 .outer-column-container-4 .middle-column .inside { padding: 10px 0 0 20px; background-color: transparent; }
.outer-column-container-10 .outer-column-container-4 .middle-column .inside .csc-header { margin: 0; }

.outer-column-container-10 .outer-column-container-4 .inside .csc-textpic-text { margin: 0; padding-top: 1px; }

/******************************************************************************/

