
/* Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
html { height: 100% }
body { min-height: 101%;}

/** BASIC */

body {
	margin: 0px;
	padding: 0px;
	background: #FFFFFF url(../images/background-body.jpg) repeat-x left top;
}

/** HEADINGS */

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}

h1, h2 {
	margin-bottom: 15px;
	padding-left: 18px;
	background: url(../images/background-headline.gif) no-repeat left center;
	text-transform: uppercase;
	font-size: 13px;
	color: #3D3D45;
}

h1 span, h2 span, h2 strong {
	color: #71A81D;
}

h2.text1 {
	margin-bottom: 5px;
	padding-left: 0px;
	background: none;
	text-transform: none;
	font-size: 13px;
	color: #60970C;
}

h3.text1 {
  font-size: 12px;
}

h3 {
  margin-bottom: 1em;
}

/** TEXTS */

body, th, td, input, textarea, select {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
	color: #1E2736;
}

p, ul, ol, dl {
	margin-top: 0px;
	margin-bottom: 1em;
	text-align: justify;
	line-height: 16px;
}

ul, ol {
	margin-left: 0px;
	padding-left: 20px;
	list-style-position: outside;
	text-align: left;
}

abbr {
  border-bottom: 1px dotted gray;
  cursor: help;
}

/** LINKS */

a {
	color: #3366cc;
	text-decoration: underline;
}

a.out {
  color: blue;
}

a:hover {
	text-decoration: none;
}

/* button styles, see http://www.webdesignerwall.com/demo/css-buttons.html
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

.bigrounded {
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
.medium {
	font-size: 12px;
	padding: .4em 1.5em .42em;
}
.small {
	font-size: 11px;
	padding: .2em 1em .275em;
}

/* button color styles 
---------------------------------------------- */

/* black */
.black {
	color: #d7d7d7;
	border: solid 1px #333;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
	background: -moz-linear-gradient(top,  #666,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}
.black:hover {
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
	background: -moz-linear-gradient(top,  #444,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}
.black:active {
	color: #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
	background: -moz-linear-gradient(top,  #000,  #444);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
}

/* gray */
.gray {
	color: #e9e9e9;
	border: solid 1px #555;
	background: #6e6e6e;
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
	background: -moz-linear-gradient(top,  #888,  #575757);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
	background: #616161;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
	color: #afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top,  #575757,  #888);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}

/* white */
.white {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}

/* orange */
.orange {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

/* red */
.red {
	color: #faddde;
	border: solid 1px #980c10;
	background: #d81b21;
	background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
	background: -moz-linear-gradient(top,  #ed1c24,  #aa1317);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.red:hover {
	background: #b61318;
	background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
	background: -moz-linear-gradient(top,  #c9151b,  #a11115);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}
.red:active {
	color: #de898c;
	background: -webkit-gradient(linear, left top, left bottom, from(#aa1317), to(#ed1c24));
	background: -moz-linear-gradient(top,  #aa1317,  #ed1c24);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa1317', endColorstr='#ed1c24');
}

/* blue */
.blue {
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover {
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
.blue:active {
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}

/* green */
.green {
	color: #e8f0de;
	border: solid 1px #538312;
	background: #64991e;
	background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
	background: -moz-linear-gradient(top,  #7db72f,  #4e7d0e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
.green:hover {
	background: #538018;
	background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
	background: -moz-linear-gradient(top,  #6b9d28,  #436b0c);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}
.green:active {
	color: #a9c08c;
	background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
	background: -moz-linear-gradient(top,  #4e7d0e,  #7db72f);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
}


.link1 {
	margin: 0px;
	padding: 0px;
	background: #71A81D url(../images/background-link1.gif) no-repeat right center;
	text-transform: uppercase;
	line-height: normal;
}

.link1 a {
	margin-left: 14px;
	padding: 0px 6px;
	background: #FFFFFF;
	text-decoration: none;
  font-size: 12px;
	font-weight: bold;
	color: #71A81D;
}

.link2 {
	padding-left: 20px;
	background: url(../images/background-link2.gif) no-repeat left center;
}

.link2 a {
	background: #FFFFFF;
	text-decoration: none;
  font-size: 12px;
	font-weight: bold;
	color: #71A81D;
}

.toggler-opened {
  padding-right: 20px;
  background: url(../images/toggle_up.gif) right center no-repeat;
}

.toggler-closed {
  padding-right: 20px;
  background: url(../images/toggle_down.gif) right center no-repeat;
}

/* Vergleichstabellen */

.vergleich {
  margin: 20px 0;
  border: 1px solid #eee;
}

.vergleich abbr {
  cursor: pointer;
}

.vergleich th, .vergleich td {
  padding: 3px 5px;
  text-align: left;
  vertical-align: top;
}

.vergleich th {
  background: #ff9523;
  color: #fff;
  font-weight: normal;
}
.vergleich td {
  border-top: 1px solid #eee;
}

.vergleich tbody tr:hover { 
  background: #efefef; 
}

.vergleich .toggler-c ul li {
  list-style-image: url(../images/plus.png);
  text-align: left;
}

.vergleich .toggler-c ul li.minus {
  list-style-image: url(../images/minus.png);
}

.logo {border: 1px solid #ddd;}

.fazit {
  width: 50%;
  margin-left: 20px;
  float: right;
}

/** MISC */

.align-justify { text-align: justify; }
.align-right { text-align: right; }

a img {
	border: none;
}

img.left, img.right {
	padding: 1px;
	background: #FFFFFF;
	border: 1px solid #BCC085;
}

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

img.right, .right {
	float: right;
	margin: 3px 0px 0px 15px;
}

hr { display: none; }

.hr1 {
	height: 1px;
}

/** HEADER */

#header {
	width: 960px;
	height: 177px;
	margin: 0px auto;
	background: url(../images/background-header.jpg) no-repeat left top;
}

#header h1, #header p {
	margin: 0px;
	text-indent: -9999px;
	background: none;
	padding: 0;
}
  
/** Logo */

#header h1 a {
  display: block;
  width: 256px;
  height: 110px;
	background: url(../images/bankkonto-vergleich.gif) no-repeat right bottom;
}

/** PAGE */

#page {
	width: 960px;
	margin: -45px auto 0px auto;
}

.clear {
  clear: both;
}

/** Hauptbereich */

#content {
	float: right;
	width: 677px;
}


/** MENU */

#menu {
	height: 70px;
}

#menu ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	line-height: normal;
}

#menu li {
	display: inline;
}

#menu a {
	float: left;
	display: block;
	width: 103px;
	height: 45px;
	margin-left: 7px;
	padding-top: 15px;
	background: url(../images/menutab.gif) no-repeat left top;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
  font-size: 12px;
	font-weight: bold;
	color: #313131;
}

#menu .first a {
	margin: 0px;
}

/** Breadcrumbs */

.breadcrumbs span {
  color: #bbb;
}

/** Sitemap */

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

ul.sitemap li {
  margin-bottom: 1em;
  font-weight: bold;
}

ul.sitemap ul {
  margin: 1em 0 0 0;
  padding: 0;
  list-style: square;
}

ul.sitemap li li {
  margin: 0 0 .5em 2em;
  font-weight: normal;
}

/** BOX STYLES */

.box-style0 {
	margin-bottom: 20px;
}

.box-style1 {
	margin-bottom: 30px;
	padding: 1px;
	border: 1px solid #E8EAD6;
}

.box-style1 .content {
	padding: 20px 20px 10px 20px;
	background: #FFFFFF url(../images/background-boxstyle1.gif) repeat-x left top;
}

.box-style2 {
	margin-bottom: 30px;
	padding: 1px;
	border: 1px solid #E8EAD6;
}

.box-style2 .content {
	padding: 20px 20px 10px 20px;
 	background: #FFFFFF url(../images/background-boxstyle2.gif) repeat-x left top; 
}

.box-style3 {
	margin-bottom: 15px;
}

.box-style3 h2 {
	height: 32px;
	margin-bottom: 5px;
	padding: 14px 0px 0px 30px;
	background: #71A81D url(../images/background-headline-spalte.gif) no-repeat left top;
	font-size: 13px;
	color: #FFFFFF;
}

.box-style3 .content {
	padding: 15px;
	background: url(../images/background-boxstyle3.gif) repeat-x left top;
}

.box-style3 .content * {
	line-height: normal;
	font-size: 11px;
}

.box-style3 .content a {
	color: #E47F00;
}

.box-style3 .link1 a {
	background: #e5e8bc;
}

.box-style4 {
	margin-bottom: 10px;
}

.box-style4 h2 {
	height: 32px;
	margin-bottom: 5px;
	padding: 14px 0px 0px 30px;
	background: #71A81D url(../images/background-headline-spalte.gif) no-repeat left top;
	font-size: 13px;
	color: #FFFFFF;
}

.box-style4 .content {
	padding: 15px;
	background: #EF8500;
}

.box-style4 .content * {
	line-height: normal;
	color: #FFFFFF;
}

/** 2-COLUMN LAYOUT */

.two-columns {
	background: url(../images/spaltentrenner.gif) repeat-y 50% 0%;
}

.column1 {
	float: left;
	width: 300px;

}

.column2 {
	float: right;
	width: 300px;

}

.two-columns .pad {
	padding: 0px 10px ;
}


/** SIDEBAR */

#sidebar {
	float: left;
	width: 266px;
	padding: 1px;
	background: #FFFFFF;
	border: 1px solid #A8A8A8;
}

#sidebar .pad {
	padding: 5px;
	background: #E5E8BC url(../images/background-pad.gif) repeat left top;
}


/** FOOTER */

#footer {
	clear: both;
}

#footer p {
	margin: 0px;
	padding-top: 30px;
	line-height: normal;
	text-align: center;
	font-size: 11px;
	color: #9D9D9D;
}

#footer a {
	color: #9D9D9D;
	text-decoration: none;
}