@charset "iso-8859-1";

/*******************************************************************************
*  migra.css : 2006.05.30
* -----------------------------------------------------------------------------

*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.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-left: 1em;
	padding-right: 1em; 
}

/* 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, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 1.2em;
}
h2
{
	font-size: 1.2em;
}
h3
{
	font-size: 1.2em;
}
h4
{
	font-size: 1em;
}
h5
{
	font-size: 1em;
}
h6
{
	font-size: 1em;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;

}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
	border-collapse:collapse;
}
td, th
{
	vertical-align: top;
}

img {
  border:none;
}
table th,
table td {
	border:1px solid #ccc;
	padding:5px;
}
table th {
	background-color:#0066AE;
	color:#fff;
}
table td ul {
	margin:0;
	padding-left:14px;
}
/* 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
{
	margin: 15px 1%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	margin:0 auto;
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: 75em!important;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0 0 0;
	padding: 0.5em;
	height:100px;
}
#masthead h1
{
}
#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 15em #fff;
	border-right: solid 14em #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}

#leftColumn
{
	float: left;
	margin: 0 1px 0 -15em;
	width: 15em;
	z-index: 4;
}
*HTML #leftColumn
{
	width: 14.9em;
}

/* Loginmodul sprengt sonst den Rahmen*/
*HTML .moduletablelm{
	width:100%;
}
.moduletablelm h3{
clear:both;
	margin-top:2em;
}


#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;

}
*HTML #rightColumn
{
	width: 13.9em;
	margin: 0 -16em 0 1px;
}

#rightColumn h3, #rightColumn .module-title { color: #666; font-size: 110%; font-weight: bold; margin: 1em 0; line-height:16px; font-weight:bold;}

#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1em 0 1em 0;
	width: 100%;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul ul, .vnav ul li li
{
	list-style-type: square;
}

.vnav ul
{
	border: solid 0px #efefef;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 0px #efefef;
	background: #efefef url('../images/navpoint.gif') 3px 3px no-repeat;
}
.vnav ul li li
{
	background: none;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 2px 0px 3px 5px;
	margin-left:20px;
}
.vnav ul li.current a{
	font-weight:bold;
}
.vnav ul li li a
{
	display: block;
	padding: 2px 0px 3px 5px;
	margin-left:40px;
	font-size: 0.9em;
}


.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3,
.vnav .module-title
 { color: #666; font-size: 110%; margin-bottom: 0; padding-bottom: 0; line-height:16px; font-weight:bold;}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
	border-bottom: solid 1px #fff;
	text-align: center;
   background: transparent url("../images/mainnavbg.gif") repeat-x;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 0px #000;
	border-right: solid 0px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}
* html .hnav ul li, * html .hnav ul li a
{
	width: 1%; /* IE/Mac needs this */
	display: inline-block;	/* IE/Mac needs this */
	/* \*/
		width: auto;
		display: inline;
		position: relative;
	/* reset above hack */
}
* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}
* html .HNAV
{
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector hack will be applied only by
			   IE 5.x/Win */
}

/* 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.	
 */
#masthead,#pageWrapper,  #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
 #innerColumnContainer
{
	border-color: #565;
	border-style: dotted;
}
*HTML #innerColumnContainer
{
	border-color: #BBB;
	border-style: solid;
}

html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eee;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	background-color: #FFF;
	color: #000;
}
#outerColumnContainer
{
	border-left-color: #efefef;	/* left column background color */
	border-right-color: #e5e5e5;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav h3,
.vnav .module-title{
	background: transparent url("../images/navback.gif") repeat-x;
	height:20px;
	padding:2px 0 0 2px;
	font-size:1em;
}

.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #efefef;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #efefef;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #efefef;
	color: #000;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	/* background-color:  #09f; *//* #6BC3FF;*/
	color: #000;
}

.hnav ul li a:hover
{
	background-color: #EFEFEF;
	color: #000;
}
#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%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #09F;
	color: #fff;
	text-align: center;
}

/******************************************************************************/
/* extra klassen:*/

.unsichtbar{
visibility: hidden;
display: none;	
}
#logo{
margin-top:-15px;
}
#banner{
	float: right;
	border: 0px solid black;
	margin:5px 0 0 0;
}

/* Formatierungen der Schriften*/
#middleColumn h2,
#middleColumn h3{
	font-size:1.2em;
	color:#006bb3;
}
#pathway{
	color:#999;
	margin:0.5em 0 0 0;
	width:100%;
	border-bottom: 1px dotted #999;
	padding:0 0 0.5em 0;
}

/* paginated sites */

/* INhaltsverzeichnis */

.pagenavbar, .pagenavbar a, .pagenavcounter{
	margin:1em 0 0 0;
	color:#999;
}

/* Kategorienliste*/
.categorylist{
	list-style-type: none;
	margin:0;
	padding:0;
}
.categorylist li{
	display:block;
	margin:0;
	padding:0;
	clear: both;
	height:45px;
}
.categorylist li a{
text-decoration: none;
color: #006bb3;
font-weight:bold;
font-size:1.2em;
}
.categorylist li a:hover{
color: #000;
}
/* Listenansicht Einzelbeitr�ge*/

.sectiontableheader{
margin: 1em 0 0 0;
background-color: #ffffd1;
font-weight: bold;

}
/* Forum */
.sb_footer{
	text-align: center;
	color: #BBB;
}
.sb_footer a{
	color: #BBB;
}
.sb_catname a{
	text-decoration: none;
	color: #006bb3;
	font-weight: bold;
}

.discussbotlink{
	display:block;
	padding:5px;
	background-color: #E5E5E5;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	color:#666;
}

/* Teaserbox_rechts STartseite*/

.moduletablefp_teaser {
background-color: #f7f7f7; 
margin: 1em 0 0.5em 1em; 
padding: 0 0.5em 0.5em 0.5em; 
width: 40%; 
float: right; 
border: solid 1px #999 }

.mod_contentitemfp_teaser{
padding: 0 0.5em; 
}

.mod_contentitemfp_teaser .contentitem h1{
margin-top: -1em; 
}
.mod_contentitemfp_teaser .contentitem h1 a{color:#006bb3;}

/* Most wanted Searches */

/* SUCHEWOLKE */

.moduletablesearchcloud{
   margin:0.5em 0 0 0;
	padding:0.5em 0.5em 0.5em 1em;
	float:right;
	width:45%;
	height:80px;
	text-align: center;
	display:block;
	clear:right;
}

.moduletablesearchcloud a{
	color:#006bb3;
	text-decoration: none;
}

.moduletablesearchcloud a:hover{
text-decoration: underline;
}

.cloud1 {
	font-size:0.6em;
	padding-right:4px;
}
.cloud2 {
	font-size:0.8em;
	padding-right:4px;
}
.cloud3 {
	font-size:1em;
	padding-right:4px;
	font-weight: bold;
}

/* Vertikale Navigation*/

#rightColumn h3,
#rightColumn .module-title{
	background: transparent url("../images/navback.gif") repeat-x;
	height:20px;
	padding:2px 0 0 2px;
}

.componentheading{
clear:both;
	/*color:#006BB3;
	font-weight: bold;
	margin:0em 0 0.5em 0;
	padding: 0em 0 0 0 ;
	font-size:120%;*/
}

.moduletablecenterad{
	width:250px;
	text-align: center;
	float: right;
	margin-top:2em;
	border-left:1px dotted #bbb;
	padding:0 0 0 1em;
}
.searchexpsearch{
   margin:0;
}
.blog h2,
.blog-featured h2{
	font-weight:normal;
	margin:0.5em 0 0.2em 0 ;
}
.blog h2 a,
.blog-featured h2 a{
color:#006bb3;
}
.blog .contentintro h1 {
font-size:1em;
margin:0em 0 -0.5em 0;
}
.blog .items-row{
  clear:both;
}
.contentitem h1{
	display: block;
	clear: both;
	margin-top:1em;
	/* border: 1px solid black; */
}

.blog .blog_more a{
	color: #006bb3;	
}

.article-info
{
  margin:14px 0;
}

.pager li{
	display: inline;
	list-style-type: none;
	padding-right: 10px;
}

.pager a{
	color: #006bb3;	
}

/* Abhandlungen*/

#article-index{
background-color: #f7f7f7; 
margin: 1em 0 1em 1em; 
padding: 0.5em; 
width: 45%; 
float: right; 
border: solid 1px #999;
font-weight:bold;
}
.toclink{
font-weight:normal;
color:#0099ff;
text-decoration: none;
display: block;
margin: 0.5em 0 0.5em 0;
}
#article-index ul
{
  list-style:none;
  margin:0;
  padding:0;
}
#article-index ol{
	font-weight:normal;
	margin:0;
	padding:0 0 0 1.5em;
}
.moduletablecenterad{
	height:90px;
	display:block;
	clear:right;
}

/* Glossary */

#glossary ul{
list-style: none;
margin:0;
padding:0;
}
#glossary ul li{
float:left;
margin:0 0.5em 1em 0;
padding:0 0.5em 0 0;
}
#glossary ul li a{
color:#0099ff;
font-weight:bold;
}

#glossary dt{
	font-weight:bold;
	clear:both;
}
td .contentpane a{
	text-decoration: none;
	color:#006bb3;
}

.triptychon{
	width:170px;
	height: 240px;
	overflow: hidden;
	float:left;	
   background:#FFF; 
	color:#000;
	margin:2em -10px 1em 0;
	border:10px solid #09f;
	text-align: center;
}

.triptychon a {
color:#000;
text-decoration: none;
}
.triptychon .contentpaneopen{
padding:0em;
}
.triptychon p{
padding:0em;
margin:0;
}

img.trip {
	float:right;
}
.triptychon * img.trip{
float:none;
margin:0 0 0.5em 0;
}

.triptychon p * a{
color:#000;
text-decoration: none;
}

.fussnote{
	vertical-align: super; 
	color:#666;
	font-size:xx-small;
}
.mosfootnote{
	background-color:#efefef;
	padding:1em;
	font-size: 0.8em;
	margin:0 0 1em 0;
}
.mosfootnote ol li{
	text-decoration: none!important;
}
	
#cbIconsTop{display:none;}

/**----------Tooltip Error: static instead of relative---------**/
#outerleft {position:static;}
#container_inner {position:static;}
#content_main {position:static;}

.pagetext, .pagetext table  {
font-size:12px;
background-color: #fff;
}
.pagetext{
	margin-left:-10px;
}
.mod_events_latest_first a,.mod_events_latest a {
text-decoration: none;
color: #CD2900;
}
.mod_events_latest_first a:hover,.mod_events_latest a:hover{
text-decoration: underline;
color: #006bb3;
}

/* Title aus Meta Keys */
.metakeytitle, .metakeytitle:link,.metakeytitle:visited, .metakeytitle:hover {
	color:#999;
	font-size: xx-small;
	text-decoration: none;
}

/* decoration*/
.topmodules{
}
.contentpagetitle{
	font-weight:bold;
	margin: 1em 0 0 0;
	display:block;
}
.contentheading{
	clear:both;
}
.contentheading a{
	color:#006bb3;
}
.credentials{
	color:#999;
	margin:2px 0;
}
.contentintro h1{
display:inline;
}
.bottom_page{
	color:#BBB;
	font-size: xx-small;
}
.bottom_page a{
	color:#BBB;
	text-decoration:none;
}

/*News Style*/

div.newslite{
	text-align: left;
	padding: 0px 10px 0px 10px;
}

div.newslite ul{
	list-style:none;
	padding:0;
	margin:0;
}

div.newslite ul li {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div.newslite ul li .date {
	font-weight:normal;
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color:#556655;
}

div.newslite ul li .linked_title {
	font-weight:normal;
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-decoration:none;
	color:#006bb3;
}

div.newslite ul li .linked_title:hover {
	text-decoration:underline;
}
.mod_docman_catdocs{
list-style: none;
margin:0;
}
.mod_docman_catdocs a{
text-decoration:none;
font-weight:normal;
}

.mod_docman_catdocs a.all{
color:black;
}
.mod_docman_catdocs a.member{
color:#006bb3;
}
.mod_docman_catdocs .desc{
	color:#999;
}

/* dn_mod styles */


.pretopnews{
	margin-bottom:-1.5em;
	color:#999;
	font-size: xx-small;
}
.dn-each ul, .dn-each ul li {
list-style-type: none;
margin:0;
padding:0;
}
.dn-each ul li{
	padding:0 0 0.5em 0;
	/*border-bottom: 1px dashed #bbb;*/
}
.dn-each ul li h3{
margin:0; padding:0;
font-weight: normal;
}

.dn-each ul li h4{
margin:0; padding:0;
font-size:1.2em;
font-weight: normal;
display: inline;
}

.dn-each ul li h3 a, .dn-each ul li h4 a{
text-decoration:none;
color:#006bb3;
font-size: 0.8em;
}
.dn-each ul li h3 a{
font-weight: bold;
font-size: 1em;
}
.dn-each ul li h3 a:hover, .dn-each ul li h4 a:hover{
text-decoration:underline;
}

.dn-author { font-size: x-small; font-weight: bold }


.dn-each{
  margin-bottom:10px;
}

.dn-keywords{
	color:#999999;
	font-size:xx-small;
}

.dn-date, .dn-raquo{
	color:#556655;
	font-size:1em;
	font-weight:normal;
}

.dn-title, .dn-title:link,
.dn-read_more, .dn-read_more:link {
	color:#006BB3;
	font-size:1em;
	font-weight:normal;
	text-decoration:none;
}

.dn-title:hover, .dn-read_more:hover{
  text-decoration:underline;
}

.dn-introtext{
  font-size:0.9em;
}

/* Anwaltbox */
.anwaltboxright {
}
.anwaltboxright img{
  border:none;
}

.anwaltboxright{
  text-align:center;
}
.openads a img{
	border:0;
}

/* Clearfix */
.clearfix:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
}

* html > body .clearfix {
        display: block;
        width: 100%;
}

* html .clearfix {
        height: 1%;
}

/* CCK */

/*#adr_entry_main2col_left{
  width:180px;
  margin: 0 20px 0 0;
  float:left;
  display:inline;
}

#adr_entry_main2col_right{
  width:360px;
  float:right;
  display:inline;
}



.adr_list_description a.contentpagetitle{
  margin:0;
}


.adr_value_left{
  float:left;
  display:inline;
  margin:0 20px 20px 0;
}

#adr_contact{
  width:49%;
  float:right;
  display:inline;
}

#adr_address{
  width:49%;
  float:left;
  display:inline;  
}

#adr_gmap{
  padding-top:20px;
}

#adr_contact dl{
margin:0
}

#adr_contact dt{
width:15%;
display:inline;
padding-right:0;
float:left;
clear:left;
}

#adr_contact dd{
padding-left: 0px;
margin-left:20%;
width:80%px;
text-indent: 0;
}

.adr_photo{
  width:150px;
  max-height:150px;
  overflow:hidden;
}
*/

/* mod_dn */
.article_separator
{
  display:block;
  margin-bottom:10px;
}
.moduletablemnet2
{
  width:245px;
  float:left;
}
.moduletablemnet
{
	clear:both;
}
.moduletablemnet span.title a, 
.moduletablemnet span.title a:link,
.moduletablemnet span.readmore a, 
.moduletablemnet span.readmore a:link {
  color: #006BB3;
  font-size: 1em;
  font-weight: normal;
  text-decoration: none;
}

.moduletablemnet span.title a:hover,
.moduletablemnet span.readmore a:hover{
  text-decoration: underline;  
}
.edocman-description-details
{
  text-align:left;
}
.edocman_membersonly {
    background-color: #006cb1;
    border-radius: 3px 3px 3px 3px;
    padding: 2px 4px;
    color: #FFFFFF;
    font-weight: normal;
    text-transform: none;
    font-size: 11.844px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    vertical-align: baseline;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.edocman_membersonly a
{
  color:#fff;
  text-decoration:none;
  white-space: nowrap;
}

/* aec */
#aec,
aec-checkout,
#aec > div
{
  padding:0;
  overflow:visible;
  clear:both;
}
#aec .well
{
  margin:0 0 20px 0;
  float:none;
  width:auto;
}
#aec .well p
{
  margin:14px 0;
  padding:0;
  display:block;
}
.checkout-list
{
  margin:0;
}
#aec #cart-info, #aec .checkout-list
{
  margin:0;
  width:auto;
}
#aec .alert
{
  float:none;
  width:auto;
}
#aec .aec-planlist-item, 
#aec .aec-planlist-group, 
#aec .processor-list
{
  float:none;
  padding:12px;
}
#leftColumn #form-login-username span,
#leftColumn #form-login-password span
{
  display:inline-block;
  width:16px;
}
#form-login-username
{
	margin-bottom:3px;
}
#yoo-zoo
{
  clear:both;
  margin-top:10px;
}
.zoo-filter
{
  padding:10px 0;
}

.zoo-filter.form-wrapper
{
  clear:both;
}
.zoo-filter .form-element-row span
{
  display:inline-block;
  width:33%;
}
.zoo-filter label,
.zoo-filter input
{
  margin-bottom:5px !important;
}
.zoo-filter label.select-label
{
  margin-bottom:10px;
}
#Kunena .klink-block span,
#Kunena .input span
{
  display:block;
}

#Kunena .input span label
{
  width:100px;
  display:inline-block;
}

/*Payments Jan Webvitamin*/
.aec-planlist-item{
	background-color:#CCC !important;
}

.btn-processor{
	font-size:12px !important;
}

/*BUTTON Jan*/

.moreInfo{
	background: /*url(../images/mehr_info_btn.jpg)*/ #006bb3 left center no-repeat;
	color:#FFF;
	width:100px;
	height:25px;
	display:block;
	line-height:25px;
	vertical-align:middle;
	text-align:center;
}

/*SOCIAL ICONS Jan*/

a.googlePlusIcon {
	display:block;
	width:28px;
	height:28px;
	float:left;
	background:url(../images/googlePlus.png) center no-repeat;
	margin-right:5px;
}

a.googlePlusIcon:hover {
	background:url(../images/googlePlus_hover.png) center no-repeat;
}

a.facebookIcon {
	display:block;
	width:28px;
	height:28px;
	float:left;
	background:url(../images/facebook.png) center no-repeat;
	margin-right:5px;
}

a.facebookIcon:hover {
	background:url(../images/facebook_hover.png) center no-repeat;
}

a.twitterIcon {
	display:block;
	width:28px;
	height:28px;
	float:left;
	background:url(../images/twitter.png) center no-repeat;
	margin-right:5px;
}

a.twitterIcon:hover {
	background:url(../images/twitter_hover.png) center no-repeat;
}
.cb_comp_outer
{
  padding:0;
}
.breadcrumb
{
	margin:0;
	padding:0;
}
.breadcrumb li
{
	display:inline;
	list-style-type:none;
}
.nav > li > a
{
	display:inline;
}

.pagination_wrap .counter
{
	text-align:center;
}
.pagination {
	padding:0;
	text-align:center;
}
.pagination li {
	display:inline;
	padding:5px;
}
#ff_div245 {
	display:none;
}