/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
color:#444444;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-size-adjust:none;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:18px;
text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for the h6 header. */
h6 {
  color: #7F371A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #7F371A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #C34C27;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #C34C27;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}

a.nav,  a.nav:link {
  color: #C34C27;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;

  text-decoration: none;
}
/* Sets the style for visited links. */
a.nav:visited {
  color: #C34C27;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;

  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a.nav:hover {
  color: #7F371A;
  font-family: Arial, Helvetica, sans-serif;

  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a.nav:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a.nav:active {
  color: #000;
}

a.standard,  a.standard:link {
  font-family:"Courier New", Courier, monospace;
  font-size:16px;
  
  color: #444444;
  text-decoration: none;
}
/* Sets the style for visited links. */
a.standard:visited {
  font-family:"Courier New", Courier, monospace;
  font-size:16px;
  color: #444444;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a.standard:hover {
  color: #7F371A;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a.standard:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a.standard:active {
  color: #000;
}
a.couriersmall,  a.couriersmall:link {
  font-family:"Courier New", Courier, monospace;
  font-size:12px;
  
  color: #444444;
  text-decoration: none;
}
/* Sets the style for visited links. */
a.couriersmall:visited {
  font-family:"Courier New", Courier, monospace;
  font-size:12px;
  color: #444444;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a.couriersmall:hover {
  color: #7F371A;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a.couriersmall:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a.couriersmall:active {
  color: #000;
}

a.couriermedium,  a.couriermedium:link {
  font-family:"Courier New", Courier, monospace;
  font-size:14px;
  
  color: #444444;
  text-decoration: none;
}
/* Sets the style for visited links. */
a.couriermedium:visited {
  font-family:"Courier New", Courier, monospace;
  font-size:14px;
  color: #444444;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a.couriermedium:hover {
  color: #7F371A;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a.couriermedium:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a.couriermedium:active {
  color: #000;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 960px;
}
#outerWrapper #header {
  background-color: #FFFFFF;
  border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
  border-color: silver; /* Sets the border color properties for an element using shorthand notation */
  border-width: 1px; /* Sets the border width properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  height: 20px;
  line-height: 15px;
  margin-top: 20px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 960px;
}
#outerWrapper #headerPic {
  background-color: #FFFFFF;
  border: solid 1px silver; /* Sets the border properties for an element using shorthand notation */
  height: 183px;
  margin-top: 10px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 960px;
}
#outerWrapper #contentWrapper1 #rightColumn1 {
  background-color: #FFFFFF;
  border-left-width: 0px;
  float: right;
  margin-bottom: 10px;
  margin-right: 25px;
  margin-top: 10px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 145px;
}
#outerWrapper #contentWrapper1 #leftColumn1 {
  background-color: #FFFFFF;
  border-right-color: #666;
  border-right-width: 0px;
  float: left;
  margin-bottom: 10px;
  margin-right: 25px;
  margin-top: 10px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 280px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper1 #content {
  margin: 10px 25px 10px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 465px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper1 .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer1 {
	background-color: #7F371A;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	margin-bottom: 20px;
	margin-top: 25px;
  	padding: 0px /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/layout/footer.png);
	width: 960px;
	height: auto;
}

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #7F371A;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #C34C27;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #C34C27;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 20px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 960px;
}
#outerWrapper #naviTop {
	background-color: #FFFFFF; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 12px;
	font-weight: bold;
	line-height: normal;
	margin-top: 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 20px;
	color: #7F371A;
	text-align: right;
	margin-right: 10px;
}
#outerWrapper #headerPic {
	background-color: #ebebeb;
	background-image: url(../images/layout/headerTitle.png);
	border: solid 1px silver; /* Sets the border properties for an element using shorthand notation */
	height: 183px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 958px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #FFFFFF; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	margin-bottom: 10px;
	margin-right: 25px;
	margin-top: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 270px;
	text-align: right;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #FFFFFF; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  margin-right: 15px;
  margin-top: 10px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 145px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-bottom: 0;
	margin-right: 25px;
	margin-top: 10px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 465px;
	float: left;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
	background-color: #FFFFFF; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 960px;
	margin-top: 25px;
	float: left;
	border-top-color: silver;
	border-top-style: solid;
	border-top-width: 1px;
	background-repeat: no-repeat;
	display: inline;
	background-image: url(../images/layout/footer.png);
	height: 100px;
	margin-bottom: 20px;
}
#topNavi {
	font-family: Arial, Helvetica, sans-serif;
	color: #7F361A;
	text-align: right;
	margin-right: 10px;
}
textNaviTop {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #7F361A;
	text-align: right;
	margin-right: 10px;
}
.two-col {
	border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:15px;
	width:305px;
	margin-top: 25px;
	margin-bottom: 25px;
}

.one-col-katalog {

	display:inline;
	float:left;
	margin-right:0px;
	width:100%;
	margin-top: 20px;
	margin-bottom: 10px;
}

h2.start {
	background-color:#CC9933;
	color:#7F371A;
	font-size:25px;
	font-weight:700;
	height:20px;
	padding-left:14px;
	text-transform:uppercase;
	padding-top: 12px;
	padding-right: 12px;
	padding-bottom: 10px;
}

h2.start-brown {
	background-color:#7F371A;
	color:#EDE8E5;
	font-size:25px;
	font-weight:700;
	height:20px;
	padding-left:14px;
	text-transform:uppercase;
	padding-top: 12px;
	padding-right: 12px;
	padding-bottom: 10px;
}

img.amrande {
float:left;
margin:15px 15px 0;
}


h1, h2, h3, h4, h5, h6 {
font-weight:400;
padding:10px 0 12px;
}
h2 {
font-size:18px;
}
h2.latest {
	background-color:#7F361A;
	border-top:1px solid silver;
	font-size:30px;
	font-weight:700;
	padding-left:14px;
	text-transform:uppercase;
	color: #EDE8E5;
	padding-top: 15px;
}

h2 img {
border:medium none;
}
h2.latest a {
color:#ede8e5;
font-weight:700;
}

h2.page-title, h2.entry-title {
color:gray;
display:inline;
float:left;
font-size:30px;
line-height:1em;
text-align:right;
width:280px;
}
h2.translate {
margin-bottom:-17px;
}

#footer {
	border-top:1px solid silver;
	clear:both;
	display:inline;
	float:left;
	font-size:10px;
	margin-top:100px;
	width:960px;
	position: absolute;
	background-color: #CCCC33;
	background-image: url(../images/layout/footer.png);

}
#header {
background: no-repeat scroll 0 0;
height:200px;
margin:20px 0;
width:960px;
}
#header img {
margin:10px 0 0;
}

.intv {
	font-size:11px;
	text-transform:uppercase;
	color:#808080;
	margin-left: 14px;
}

.intvcenter {
font-size:11px;
text-transform:uppercase;
color:#808080;
margin-left: 14px;
}
.num {
font-size:18px;
color:#000000;
}
#content {
display:inline;
float:left;
width:960px;
}
#content li.list-time {
font-size:9px;
font-variant:small-caps;
padding-left:14px;
text-transform:uppercase;
}
#content ul li {
list-style-type:none;
margin:0;
padding:0;
}
#content ul li.list-title {
font-family:Arial,Helvetica,sans-serif;
font-size:14px;
font-weight:bold;
line-height:18px;
padding:0 0 10px 14px;
text-transform:uppercase;
}

p{
	padding-left:14px;
	line-height:18px;
	font-family:Helvetica, Arial, sans-serif;
	margin-top:10px;
	padding-top:5px;
}

img{
	border:1px solid silver;
	padding:2px;
	margin-top:0px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:0;
}
img.small{
	border:0px;
	padding:2px;
	margin-top:0px;
	margin-right:8px;
	margin-bottom:8px;
	margin-left:0;
}

img.logo{
	border:1px solid silver;
	padding:2px;
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:10px;
}



img.post-image{
	border:1px solid silver;
	padding:2px;
	width:auto;
	margin-top: 5px;
	margin-left: 15px;
}

img.twocol-image{
	border:1px solid silver;
	padding:2px;
	width:275px;
	margin-top: 5px;
	margin-left: 15px;
}

img.title-image{
	border:1px solid silver;
	padding:2px;
	width:430px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 14px;
}

#img.video-image{
	border:1px solid silver;
	width:430px;
	margin-top: 5px;
	margin-right: 14px;
	margin-bottom: 5px;
	margin-left: 14px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	height: auto;
}

#img.video-image242{
	border:1px solid silver;
	width:430px;
	margin-top: 5px;
	margin-right: 14px;
	margin-bottom: 5px;
	margin-left: 14px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	height: 242px;
}

#img.video-image-youtube{
	border:1px solid silver;
	width:425px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 14px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	height: 344px;
}

.three-col{
	border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:16px;
	width:465px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.three-col p, .two-col p, .two-col-right p, .one-col p, .oneandhalf-col p, .oneandhalf-col-right p{
    padding:8px 10px 0px 14px;
	line-height:18px;
	font-family: Helvetica, Arial, sans-serif;
}

.rightColumn1 p, .leftColumn1 p {
    padding:8px 10px 0px 14px;
	line-height:18px;
	font-family: Helvetica, Arial, sans-serif;
}

.oneandhalf-col ul, .two-col ul,  .three-col ul {
	padding-left:14px;
}

.two-col{
	border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:14px;
	width:309px;
	height:auto;
	margin-top: 20px;
	height: auto;
}

.two-col-right{
	border-top:1px solid silver;
	display:inline;
	float:left;
	width:309px;
	margin-top: 20px;
		margin-right:0px;
}

.timeline{
    border-top:20px solid silver;
	clear:both;
	padding:12px 0;
	width:945px;
}

.excerpt {
color:silver;
font-size:18px;
line-height:24px;
margin-left:0;
text-align:right;
width:280px;
}

.sidebar{
	/*border-top:50px solid black;*/
	float:left;
	font:11px/15px Helvetica, Arial, sans-serif;
	width:145px;
	margin-left:0px;
	position: absolute;
	left: 795px;
	margin-top: 10px;
	margin-right: 25px;
	padding-top: 5px;
}

.sidebar h3{
    font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	margin-top:12px;
	padding-top:0;
	margin-bottom:-10px;
}

.one-col{
    border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:20px;
	width:140px;
}

.oneandhalf-col {
	border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:16px;
	width:230px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.oneandhalf-col-right {
	border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:0px;
	width:230px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.oneandhalf-col ul {
	margin: 15px 15px 0 0;
}

.oneandhalf-col-right ul {
	margin: 15px 15px 0 0;
}

.four-col {
	border-top:1px solid silver;
	margin-right: 15px;
	display:inline;
	float:left;
	/*margin:20px 0;*/
	padding:0;
	width:705px;
	margin-top: 0px;
	margin-bottom: 20px;
	}

.three-col p, .two-col p, .two-col-right p, .one-col p, .oneandhalf-col p, .oneandhalf-col-right p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height:18px;
	margin-top: 0px;
	margin-right: 5px;
	margin-left: 0px;
}

.home {
font-size:12px;
}


.hr{
 border: 0px; /* Für Firefox und Opera */
 border-top: solid 1px #silver;
 border-bottom: transparent;
}

.center{
    text-align:center;
	}

.contentText {
	font-family:"Courier New", Courier, monospace;
	font-size:14px;
	line-height:18px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	font-weight: normal;
	font-style: normal;
}

.contentText12 {
	font-family:"Courier New", Courier, monospace;
	font-size:12px;
	line-height:16px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	font-weight: normal;
	font-style: normal;
}

.contentText10 {
	font-family:"Courier New", Courier, monospace;
	font-size:10px;
	line-height:14px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	font-weight: normal;
	font-style: normal;
}

.indexHeadlineCourier {
 	font-size: 16px;
	font-family: "Courier New", Courier, monospace;
}

.contentText12right {
	font-family:"Courier New", Courier, monospace;
	font-size:12px;
	line-height:16px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	font-weight: normal;
	font-style: normal;
	float: right;
}
a.start, a.start:link {

  color: #7F371A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;

  text-decoration: none;
}

a.start, a.start:hover {

  color: #C34C27;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;

  text-decoration: none;
}

a.start, a.start:visited {

  color: #7F371A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;

  text-decoration: none;
}


a.latest, a.latest:link {
	color: #EDE8E5;  	
	font-family: Arial, Helvetica, sans-serif;
	font-size:30px;
	font-weight:700;
}

a.latest, a.latest:hover {

  color: #C34C27;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;

  text-decoration: none;
}
.intvNoIndent {

	font-size:11px;
	text-transform:uppercase;
	color:#808080;
	margin-left: 0px;
}
.one-colGoogle {
	border-top:1px solid silver;
	display:inline;
	float:left;
	margin-right:0px;
	width:958px;
	padding-right: 0px;
}
