/**
 * main.css
 *
 * 1. General HTML tags
 * 2. Masthead area
 * 3. Main content and sidebar
 * 4. Footer
 * 5. Media queries for responsive layout
 *
 */

 /* Fonts */

 /* oxygen-regular - latin-ext_latin */
 @font-face {
   font-family: 'Oxygen';
   font-style: normal;
   font-weight: 400;
   src: url('../fonts/oxygen-v15-latin-ext_latin-regular.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/oxygen-v15-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/oxygen-v15-latin-ext_latin-regular.svg#Oxygen') format('svg'); /* Legacy iOS */
 }

 /* oxygen-700 - latin-ext_latin */
 @font-face {
   font-family: 'Oxygen';
   font-style: normal;
   font-weight: 700;
   src: url('../fonts/oxygen-v15-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/oxygen-v15-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/oxygen-v15-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
        url('../fonts/oxygen-v15-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/oxygen-v15-latin-ext_latin-700.svg#Oxygen') format('svg'); /* Legacy iOS */
 }

 /* raleway-italic - latin-ext_latin */
 @font-face {
   font-family: 'Raleway';
   font-style: italic;
   font-weight: 400;
   src: url('../fonts/raleway-v28-latin-ext_latin-italic.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/raleway-v28-latin-ext_latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/raleway-v28-latin-ext_latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-italic.woff') format('woff'), /* Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/raleway-v28-latin-ext_latin-italic.svg#Raleway') format('svg'); /* Legacy iOS */
 }

 /* raleway-700italic - latin-ext_latin */
 @font-face {
   font-family: 'Raleway';
   font-style: italic;
   font-weight: 700;
   src: url('../fonts/raleway-v28-latin-ext_latin-700italic.eot'); /* IE9 Compat Modes */
   src: local(''),
        url('../fonts/raleway-v28-latin-ext_latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.woff') format('woff'), /* Modern Browsers */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/raleway-v28-latin-ext_latin-700italic.svg#Raleway') format('svg'); /* Legacy iOS */
 }


/*********************************************************************
 * 1. General HTML tags
 *
 */

* {
	box-sizing: border-box;
}

body {
	padding: 5%;
	max-width: 1600px;
	margin: 0 auto;
}

body, td, input[type=text], textarea {
	font-family: 'Quattrocento', serif;
	font-size: 105%;
	line-height: 1.8em;
	color: #444;
}

img {
	max-width: 100%;
}

h2 {
	font-weight: normal;
}

h3 {
	padding-top: 1em;
	color: #777;
}

a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
}
	a:hover,
	.nav a:hover {
		color: #000;
		border-color: #aaa;
	}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em;
	border-left: 4px solid #ddd;
	font-style: italic;
	color: #777;
}

pre, code {
	background: #eee;
	border: 1px solid #ddd;
}

pre {
	font-size: 14px;
	line-height: 1.4em;
	padding: 1em;
	border-left: 4px solid #ddd;
}

/*********************************************************************
 * 2. Masthead area
 *
 */

.topnav, .topnav li {
	list-style: none;
	padding: 0;
	margin: 0;
}
	.topnav li {
		float: left;
		margin-right: 1em;
		margin-bottom: 1em;
	}
	.topnav a {
		padding: 0.25em 0.5em;
		text-decoration: none;
		display: block;
		background: #eee;
		color: #333;
		border: 1px solid #eee;
	}
	.topnav a:hover {
		background: #ddd;
		border-color: #ddd;
	}
	.topnav li.current a {
		background: #ddd;
		border-color: #ddd;
	}
	.topnav li.edit a {
		background: none;
	}


form.search {
	float: right;
	margin: 0;
	width: 30%;
}
	form.search input {
		margin: 0;
		padding: 0.25em 0.5em;
		border: 1px solid #ccc;
		width: 100%;
	}
	form.search button {
		display: none;
	}

.breadcrumbs {
	clear: both;
	padding-top: 1em;
}
	.breadcrumbs span:after {
		content: ">";
		color: #999;
		padding-left: 0.5em;
		padding-right: 0.25em;
	}

/*********************************************************************
 * 3. Main content and sidebar
 *
 */

#main {
	border-top: 1px solid #eee;
	padding-top: 1em;
	margin-top: 1em;
	clear: both;
}

#content {
	width: 85%;
}

#content, #sidebar {
	padding-bottom: 2em;
}

body.has-sidebar #content {
	width: 65%;
	float: left;
}

body.has-sidebar #sidebar {
	width: 35%;
	padding-left: 5%;
	float: left;
}

.nav {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
	.nav .nav {
		padding-left: 1.5em;
		list-style: disc;
	}
	.nav li {
		margin: 1em 0;
	}

	.nav-tree li {
		margin-top: 0;
		margin-bottom: 0;
	}

	.nav a {
		font-weight: bold;
	}

	.nav-tree li a {
		color: #777;
	}

	.nav .current > a {
		color: #333;
	}

.align_left {
	/* for images placed in rich text editor */
	float: left;
	margin: 0 1em 0.5em 0;
	position: relative;
	top: 0.5em;
	max-width: 50%;
}

.align_right {
	/* for images placed in rich text editor */
	float: right;
	margin: 0 0 0.5em 1em;
	max-width: 50%;
}

.align_center {
	/* for images placed in rich text editor */
	display: block;
	margin: 1em auto;
	position: relative;
	top: 0.5em;
}


/*********************************************************************
 * 4. Footer
 *
 */

#footer {
	clear: both;
	border-top: 1px solid #eee;
	font-size: 80%;
}

/*********************************************************************
 * 5. Media queries for responsive layout
 *
 */

@media only screen and (max-width: 767px) {
	/* mobile layout */

	body, td, textarea {
		font-size: 100%;
	}
	body.has-sidebar #content,
	body.has-sidebar #sidebar {
		float: none;
		width: 100%;
		padding: 0;
	}
	form.search {
		float: none;
		width: 100%;
	}
	#content {
		width: 100%;
	}
	#sidebar {
		border-top: 1px solid #eee;
		padding-top: 1em;
	}
	.align_left, .align_right, .align_center {
		display: block;
		float: none;
		margin: 1em auto;
		max-width: 100%;
	}

}

@media only screen and (min-width: 1200px) {
	/* extra-wide desktop layout */

	body, td, textarea {
		font-size: 115%;
	}
}

/*********************************************************************
 * Custom
 *
 */

ul#columnlist {
-moz-column-count: 3;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
column-count: 3;
column-gap: 10px;
}
ul#columnlist li{
line-height: 2em;
display: block;
}

ul#jahre {
    width: 16em;
    overflow:hidden;
/*    padding-left: 0em; */
/*	margin-left: -0.9em; */
}

ul#jahre li{
    line-height: 2em;
    float: left;
    display: inline;
    width: 4em;
	padding: 0.5em 0 0.5em 0.9em;
	border-right: 1px solid #eee;
}

ul#jahre li:nth-child(3n) {
    border-right: medium none;
}

ul#jahre li:hover {
    background-color: #eee;
}

ul#jahre a {
    display: block;
	border: none;
}


ul#hefttabelle {
	overflow:hidden;
    padding-left: 0em;
    list-style: none;
}

ul#hefttabelle h5 {
	margin: 4px 0px 0px 0px;
}

ul#hefte {
	overflow:hidden;
    padding-left: 0em;
}

ul#hefte li{
    float: left;
	display: block;
	line-height: 1.5em;
	width: 172px;
	padding-bottom: 2.5em;
}

ul#hefte li:nth-child(3n-1) {
	margin-left: 20px;
}

ul#hefte li:nth-child(3n) {
	margin-left: 20px;
}

ul#hefte li h4 {
    margin-top: 0px;
}

ul#hefte img {
	max-width: none;
}

ul#hefte a {
	border: none;
}

/****** BACKUP ******/
/*********************
ul#hefte {
	overflow:hidden;
    padding-left: 0em;
}

ul#hefte li{
    float: left;
	display: block;
	line-height: 1.5em;
	height: 28em;
    width: 33.333%;
	padding-bottom: 3em;
}

ul#hefte li:nth-child(3n-1) {
	padding-left: 7px;
}

ul#hefte li:nth-child(3n) {
	padding-left: 13px;
}

ul#hefte li h4 {
    margin-top: 0px;
}

ul#hefte img {
	max-width: none;
}

ul#hefte a {
	border: none;
}
********************/



body.bildspalte-sidebar #content {
	width: 560px;
	float: left;
}

body.bildspalte-sidebar #bildspalte {
	width: 320px;
	padding-right: 20px;
	float: left;
}

body.bildspalte-sidebar #sidebar {
	width: 260px;
	padding-left: 80px;
	float: left;
}
body.bildspalte #content {
	width: 69%;
	float: left;
}

body.bildspalte #bildspalte {
	width: 26%;
	padding-right: 1%;
	float: left;
}

body, td, input[type=text], textarea {
	font-family: 'Oxygen', 'Arial', sans-serif;
	font-size: 100%;
	line-height: 1.7em;

}

#warenkorb {
/*  background-color: #eee;
  border: 1px dotted #bbb; */
  padding: 2px;
  border-top: 1px dotted #3263ac;
  border-bottom: 1px dotted #3263ac;
  padding: 5px;
  width: 100%;
}

#box {
  width: 300px;
  height: 233px;
  background-color: #3263ac;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  border: 15px solid #3263ac;
/*  margin-top: 10px; */
  margin-bottom: 20px;
}

.bildzeile {
	font-size: 82%;
	margin-bottom: 20px;
	float: left;
	line-height: 1.5em;
}

.button_text, .padloper-cart-add-product input, .payorder, .padloper-submit {
    outline: 0;
    border: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: #3263ac;
    padding: 5px 13px 4px 13px;
    margin-top: 15px;
}

/* ############################### */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
html {
}
body {
  padding-top: 40px;
  margin: 0;
}
header {
  margin: 0 auto;
  max-width: 979px;
}
header:after {
  content: " ";
  clear: both;
  display: block;
}
header hr {
  background-color: #3263ac;
  color: #3263ac;
  border: #3263ac;
  height: 24px;
  position: absolute;
  margin: 0;
  top: 50px;
  left: 0;
  right: 0;
  z-index: -1;
}
header img {
  background-color: #fff;
  border: none;
  float: left;
  width: 170px;
  height: auto;
  padding: 2px 20px 30px 10px;
}
navigation {
  font-size: 0.9em;
  border-left: 1px solid #eee;
  display: inline-block;
}
navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
navigation ul li {
  display: inline-block;
  background: #fff;
  color: #3263ac;
  line-height: 1.7;
  margin-left: -5px;
  padding-left: 5px;
  width: 153px;
}
navigation ul li span {
  border-bottom: 2px solid #3263ac;
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
navigation ul li.fa {
  background: none;
  padding: 0;
}
navigation ul li span.unsichtbar {
  visibility: hidden;
}
navigation ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding-left: 10px;
    border: none;
	width: 100%;
}
navigation a:hover {
  background-color: #3263ac;
  color: #fff;
  transition: .2s background-color;
  border-bottom: none;
}
navigation a.active {
  background-color: #ddd;
  color: #444;
  cursor: default;
}
navigation ul li ul {
  margin-top: 10px;
}
navigation ul ul li {
}

/* ############################### */

.breadcrumbs {
	color: #3263ac;
	font-size: 0.8em;
}
.breadcrumbs a {
	color: #3263ac;
}

#main {
	height: 20em;
	padding-top: 2em;
}

.publikationen {
    float: left;
    width: 33.3%;
}
.publikationen img {
	width: 280px;
	border: 1px solid #ccc;
}
.publikationen h4 {
	margin: 0;
}
.publikationen h5 {
    margin-top: 10px;
    margin-bottom: 3px;
}
hr {
  background-color: #eee;
  color: #eee;
  border: #eee;
  height: 1px;
}


#wrap {
/*    background: purple; */
    float: left;
    width: 1160px;
}
#inner-wrap {
/*    background: slateblue; */
    float: left;
    width: 880px;
}

.bildspalte-startseite {
/*    background: red; */
    float: left;
    padding-right: 20px;
/*    margin-top: 2em; */
    margin-bottom: 4em;
    width: 320px;
}

.hauptspalte-startseite {
/*    background: green; */
    float: left;
/*    margin-top: 2em; */
    margin-bottom: 4em;
    width: 560px;
}

.hauptspalte-startseite span {
	border: none;
}

.hauptspalte-startseite h2 {
	margin-top: 0;
}

/*#bildspalte img {
    margin-top: 10px;
}
*/
#sidebar h4 {
	margin: 0;
	text-transform: uppercase;
}

form.search {
	float: right;
	margin: 0;
	/* width: 30%; */
	width: 150px;
	height: 20px;
}
	form.search input {
		font-size: 0.9em;
/*		margin: 20px 0px 0px 16px; */
/*		margin: 0px 0px 0px 16px; */
		padding: 0em 0.5em;
		border: 1px solid #ccc;
		width: 180px;
	}
	form.search button {
		display: none;
	}

#aktuelles {
	line-height: 1.4em;
/*	margin-top: 2em; */
	text-decoration: none;
	border: none;
}
#aktuelles a {
	border-bottom: none;
}
#aktuelles h4 {
	color: #3263ac;
}
#info {
	color: #3263ac;
}
#newsletter input {
	font-size: 95%;
	width: 180px;
	margin-bottom: 0.5em;
}
#rundbrief img {
	border: 1px solid #ccc;
}
#zweigstellen a, #rundbrief a {
	border-bottom: none;
}
#zweigstellen h3, #rundbrief h3, #logos h3, #newsletter h3 {
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

#logos a {
	border: none;
}

#logos img {
	margin-bottom: 0.8em;
}

#bildstreifen {
	margin-bottom: 10px;
}

#jahrgaenge h3 {
	margin-top: 0em;
	padding-top: 0em;
}

#jahrgaenge ul {
	width: 12em;
	padding-left: 0em;
	margin-left: -0.9em;
}

#footer {
	margin-top: 20em;
}

table, tbody {
	padding: 0;
}
/*
@font-face {
    font-family: 'FontAwesome';
    src: url('http://fontawesome.io/assets/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
    src: url('http://fontawesome.io/assets/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('http://fontawesome.io/assets/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('http://fontawesome.io/assets/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('http://fontawesome.io/assets/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
*/
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    padding-right: 0.5em;
    color: #3263ac;
}
.fa-phone-square:before {
    content: "\f098";
    padding-left: 0.05em;
}
.fa-fax:before {
    content: "\f1ac";
}
.fa-envelope:before {
    content: "\f0e0";
}
.fa-globe:before {
    content: "\f0ac";
    padding-left: 0.1em;
    padding-right: 0.05em;
}
.osteuropa {
	font-variant: small-caps;
}
h4 {
	margin-bottom: 0px;
}
p {
	margin-top: 5px;
}

.unterrubriken {
	padding-left: 0;
	list-style: none;
    padding: 0 0 20px 0;
    margin-top: 0px;
    margin-left: 320px;
    height: 24px;
    padding: 0px;
    width: 560px;
    background-color: #3263ac;
    color: #ffffff;
    margin-top: 20px;
    line-height: 20px;
    font-size: 95%;
/*    border-left: 10px solid #3263AC; */
}
	.unterrubriken .unterrubriken {
		padding-left: 1.5em;
		list-style: disc;
	}
	.unterrubriken li {
		float:left;
		padding: 2px 2px 2px 12px;
		background-color: #3263AC;

	}
	.unterrubriken-o-tree li {
		margin-top: 0;
		margin-bottom: 0;
	}
	.unterrubriken a:before {
		content: "\2022";
		padding-left: 0.1em;
		padding-right: 0.5em;
	}
	.unterrubriken a {
	border: none;
	padding: 2px 10px 2px 10px;
	color: #fff;
	}
	.unterrubriken a:hover {
        background-color: #fff;
        color: #000;
        transition: .2s background-color;
    }

h1 {
	line-height: 1.3em;
    color: #444;
    font-size: 24px;
    font-weight: 400;
    margin-top: 0px;
}

h2 {
	line-height: 1.3em;
}

h3 {
	color: #3263ac;
}

h5 {
	margin: 0;
	line-height: 1.5em;
	text-transform: uppercase;
	margin-top: 10px;
}

.name {
	color: #3263ac;
	border: none;
}

.name a:hover {
	color: #3263ac;
}

header hr {
	top: 90px;
}

.dateiinfo {
	color: #aaa;
}
/*
.lang {
	color: #3263ac;
	width: 40px;
}
.lang a:hover {
	color: #fff;
}
*/

ul#international li {
	margin-left: -8px;
	padding-left: 0px;
	width: 90%;
}

ul#international a {
	padding: 0px;
}

ul#international img {
	padding: 0px;
	border: 1px solid #ccc;
}

navigation {
	padding-top: 4px;
	padding-left: 20px;
}

navigation ul li span {
	padding-bottom: 3px;
}

navigation ul li {
	padding-left: 20px;
	margin-left: -20px;
}


/* OSTEUROPA */
/*****************/
header {
    margin-left: 20px;
    margin-top: 38px;
    max-width: none;
}

header img {
    background-color: #fff;
    border: none;
    float: left;
    width: 300px;
    height: auto;
    padding: 0px 4px 30px 0px;
}

#kategorie-1 {
	width: 9.5em;
}

#kategorie-2 {
	width: 9.1em;
}

#kategorie-3 {
	width: 10.9em;
}

#kategorie-4 {
	width: 12.7em;
	margin-right: 17px;
}

#extra {
	width: 4.2em;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	margin-right: 17px;
}


/* // OSTEUROPA */



ul#artikel {
	list-style: none;
	padding: 0;
	margin: 0;
}
    ul#artikel li ul {
        list-style: none;
        padding: 0;
        margin: 0;
        padding-bottom: 1.2em;
    }

ul#artikelliste {
	display: block;
	list-style-type: none;
	padding: 0;
}

ul#artikelliste li {
	display: block;
	margin-bottom: 1em;
}

ul#artikelliste a {
	display: inline-block;
	width: 100%;
	border: none;
}

ul#artikelliste a:hover {
	color: #3263ac;
	transition: 1.2s color;
}

ul#artikelliste span {
	border-bottom: 1px solid #ccc;
}

div#artikelliste-startseite span {
	border: unset;
}

ul#dossiers {
	list-style: none;
	padding: 0;
	margin: 0;
}

.volltext, ul#artikelliste span.volltext {
	margin-left: 7px;
	text-transform: uppercase;
	background-color: #fff;
	color: #3263ac;
	border: 1px solid #3263ac;
	font-size: 0.8em;
	padding: 2px 6px 2px 6px;
	font-weight: bold;
}

.heft h4 {
    margin: 0;
}
.artikel_autor {
	font-variant: small-caps;
}
.artikel-ueberschrift {
	font-weight: bold;
}

.titelbild {
	border: 1px solid #ccc;
}

ul#columnlist2 {
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-count: 2;
column-gap: 20px;
padding-left: 0px;
}
ul#columnlist2 li{
line-height: 2em;
display: block;
}

ul#columnlist3 {
-moz-column-count: 3;
-moz-column-gap: 20px;
-webkit-column-count: 3;
-webkit-column-gap: 20px;
column-count: 3;
column-gap: 20px;
padding-left: 0px;
}
ul#columnlist3 li{
line-height: 2em;
display: block;
padding-bottom: 10px;
}

a {
	border-bottom: none;
}
a:hover {
	border-bottom: 1px solid #ccc;
}
#content a {
	border-bottom: 1px solid #ccc;
}

#content h3 a {
	color: #3263ac;
	border: none;
}

#content h3 a:hover {
	color: #3263ac;
}

#inner-wrap a {
	border-bottom: none;
}

#sidebar a {
	border-bottom: none;
}
#columnlist3 a {
	border-bottom: none;
}

.link {
	font-weight: bold;
	color: #3263ac;
	border-bottom: 1px solid #ccc;
}

#box {
    width: 300px;
    height: 400px;
}

#liste {
    list-style: none;
    padding-left: 0px;
}

#liste ul li {
    padding-bottom: 3px;
}

.current {
	font-weight: bold;
	text-variant: all-small-caps;
}

.blau {
	font-weight: bold;
	color: #3263ac;
}

#karten h3 a {
	color: #3263ac;
	border: none;
	background-color: #fff;
	display: block;
	padding-top: 10px;
	padding-bottom: 8px;
}

#karten h3 a:hover {
	color: #3263ac;
	border: none;
}

div#kartensuche-x {
	margin-top: 285px;
}

ul#kartensuche {
    overflow:hidden;
    padding-left: 0em;
    padding-top: 0em;
}

ul#kartensuche li {
    float: left;
    display: inline;
	padding: 0.5em 0.9em 0.5em 0.5em;
	border-bottom: 1px solid #eee;
	width: 100%;
	line-height: 1.3em;
	margin-bottom: 0.3em;
}

ul#kartensuche li:last-child  {
	border-bottom: none;
}

ul#kartensuche li:hover {
    background-color: #eee;
    color: #444;
}

ul#kartensuche a {
    display: block;
	border: none;
}

.eingeblendet {
	border-left: 5px solid #3263ac;
/*	font-weight: bold; */
}

.ausgeblendet {
	border-left: 5px solid #fff;
}

.ausgeblendet a {
	color: #ddd;
}

.ausgeblendet a:hover {
	color: #333;
}

#socialmedia img {
	border: 1px solid #ccc;
}
#socialmedia a {
	border-bottom: none;
}

#socialmedia h3 {
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

blockquote {
	font-style: normal;
	margin-top: 3em;
}

#bildspalte a {
	border-bottom: none;
}

#bildspalte a:hover {
	border-bottom: 1px solid #ccc;
}

.bildspalte-startseite a {
	border-bottom: none;
}

.bildspalte-startseite a:hover {
	border-bottom: 1px solid #ccc;
}

#verweise h3 {
	margin-top: 0em;
	padding-top: 0em;
}

#verweise {
	margin-bottom: 3em;
}

#verweise a {
	border-bottom: 1px solid #ccc;
}




/* ShoppingCart */

#checkoutProcess table {
  width: 100%;
}

#checkout p {
  margin: 0;
  padding-top: 15px;
  position: relative;
}

#checkout p.required label {

}

.reqstar {
  font-weight: bold;
  margin-left: 5px;
  color: #3263ac;
}

.error .reqstar {
  color: #cc0000;
}

#checkout .errormsg {
  position: absolute;
  top: 12px;
  right: 0px;
  font-size: 11px;
  color: #cc0000;
}

#checkout label {
  display: block;
  font-size: 0.8em;
}

/*#checkout input, */#checkout textarea, #customerForm {
  width: 100%;
  padding: 3px;
  margin-bottom: 1em;
  line-height: 24px;
  border-radius: 4px;
  border: 1px solid #bbb;
  box-sizing: border-box;
  background: rgba(255,255,255,0.6);
}

#checkout #Inputfield_pad_countrycode, #Inputfield_email {
    font-family: inherit;
    font-size: inherit;
}

#warenkorb .padloper-submit {
    margin: 0px;
}

/*
#checkoutProcess input.submit {
  background: white url(../shared/topmenubg.gif) bottom repeat-x;
}

#checkoutProcess input.submit:hover {
  background: white url(../shared/topmenubg-a.gif) top repeat-x;
  cursor: pointer;
}
*/

#checkoutProcess input.padloper-update {
  width: 25%;
  float: left;
}

#checkoutProcess input.padloper-checkout {
  width: 55%;
  float: right;
}

#checkoutProcess table {
   border-collapse: collapse;
   margin-top: 20px;
}

#checkoutProcess table input {
  width: 50px;
}

#checkoutProcess table td {
  border-bottom: 1px solid #ddd;
  padding: 4px;
}

#checkoutProcess table tr.final td {
  background: #eee;
  border-bottom: 1px solid #bbb;
  font-weight: bold;
}

#padloper-checkout_breadcrumb {
	clear: both;
  font-weight: bold;
  overflow: hidden;
  list-style-position:inside;
  margin: 0;
  width: 100%;
  display: table;
  padding: 0;
  margin-bottom: 40px;
}

/*
#padloper-checkout_breadcrumb li {
  display: table-cell;
  padding: 0 20px 0 10px;
  font-weight: bold;
  margin-right: 0px;
  background: transparent url(img/shoppingPathAlt.png) no-repeat top right;
}

#padloper-checkout_breadcrumb li p {
  height: 48px;
  line-height: 48px;
  margin: 0;
}

#padloper-checkout_breadcrumb li.padloper-active {
  color: #EF3D42;
}

#padloper-checkout_breadcrumb li:first-child {
  border-left: 1px solid #e6e6e6;
}
#padloper-checkout_breadcrumb li:last-child {
  border-right: 1px solid #e6e6e6;
  background: transparent url(img/shoppingPathAlt.png) no-repeat top center;
}

#goback a, #checkoutProcess > a {
  background: url(img/redarrow-hor.gif) no-repeat 0px 5px;
  padding-left: 10px;
  margin: 10px 2px;
  display: block;
  float: left;
}
*/

.variations table {
  width: 80%;
}

.variations table td {
  border-bottom: 1px solid #ebf0f6;
}

.variations table td.price {
  text-align: right;
}

#thin .variations input[type="submit"] {
  clear: none;
  display: inline;
}

/* // ShoppingCart */

.kaufen {
	margin: 0;
	line-height: 1.5em;
	text-transform: uppercase;
	background-color: #3263ac;
	color: #fff;
	font-size: 0.8em;
	padding: 1px 5px 1px 5px;
	font-weight: bold;
}

.kaufen a:hover {
	color: #fff;
}

.button_text a:hover {
    color: #ffffff;
}

/* .bestellen {
	float: left;
    width: 300px;
    display:table-cell;
    vertical-align:middle;
    }
.bestellen-e {
	float: left;
    background: none repeat scroll 0% 0% #f5c350;
   	width: 260px;
	height: 100px;
    padding: 1ex;
    box-sizing: border-box;
    margin: 1ex auto;
	text-align: center;
}
.bestellen-k {
	float: left;
    background: none repeat scroll 0% 0% #f5c350;
   	width: 260px;
	height: 100px;
    padding: 1ex;
    box-sizing: border-box;
    margin: 1ex auto;
	text-align: center;
}
.bestellen-d {
	float: left;
    background: none repeat scroll 0% 0% #f5c350;
   	width: 260px;
	height: 100px;
    padding: 1ex;
    box-sizing: border-box;
    margin: 1ex auto;
	text-align: center;
}
.bestellen-a {
	float: left;
    background: none repeat scroll 0% 0% #f5c350;
   	width: 260px;
	height: 100px;
    padding: 1ex;
    box-sizing: border-box;
    margin: 1ex auto;
	text-align: center;
}
.bestellen-x {
	float: left;
    background: none repeat scroll 0% 0% #f5c350;
   	width: 260px;
	height: 100px;
    padding: 1ex;
    box-sizing: border-box;
    margin: 1ex auto;
	text-align: center;
}

*/

#links {
    float: left;
    width: 270px;
    margin-right: 20px;
}

#rechts {
    float: left;
    width: 270px;
}

#clear {
    clear: both;
    height: 0;
    width: 0;
    margin: 0;
}

.bestellen {
    float: left;
    width: 270px;
    margin-bottom: 20px;
    text-align: center;
}

.bestellen-e, .bestellen-d, .bestellen-t, .bestellen-k, .bestellen-p, .bestellen-a, .bestellen-x {
    float: left;
    width: 270px;
    padding-top: 80px;
    height: 190px;
}

.bestellen-t, .bestellen-k, .bestellen-p {
    padding-top: 45px;
    height: 120px;
}

.bestellen-x {
    padding-top: 45px;
    height: 120px;
}

.bestellen-e {
	background-color: #cc0000;
}

.bestellen-d {
	background-color: #34b3c0;
}

.bestellen-t {
	background-color: #71c5a1;
}

.bestellen-k {
	background-color: #c03476;
}

.bestellen-p {
	background-color: #f5c350;
}

.bestellen-a {
	background-color: #e96030;
}

.bestellen-x {
	background-color: #e98b30;
}

.bestellen a {
	font-size: 150%;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

ul#buchstaben {
    overflow:hidden;
    padding-left: 0em;
    margin-bottom: 3em;
}

ul#buchstaben li{
    line-height: 2em;
    float: left;
    display: inline;
    width: 2.9em;
	padding: 0.2em 0 0.2em 1.1em;
	border-right: 1px solid #eee;
}

ul#buchstaben li:hover {
    background-color: #eee;
}

ul#buchstaben li:nth-child(12n) {
    border-right: medium none;
}

ul#buchstaben a {
    display: block;
	border: none;
}

.autor {
	font-variant: small-caps;
}

.autoren {
	padding: 0;
	margin: 0;
}

.autoren li {
	padding-left: 1.2em;
	text-indent: -1.2em;
}

.autoren li > * {
	text-indent: 0;
}

ul#laenderliste {
-moz-column-count: 3;
-moz-column-gap: 20px;
-webkit-column-count: 3;
-webkit-column-gap: 20px;
column-count: 3;
column-gap: 20px;
padding-left: 0px;
}

ul#laenderliste li{
line-height: 2em;
display: block;
}

.heft_vergriffen {
    outline: 0;
    border: 1px solid #b8b8b8;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    text-decoration: none;
    color: #808080;
    background: #fff;
    padding: 5px 13px 4px 13px;
    margin-top: 15px;
    font-size: 0.8em;
}

ul#icon_bestellung li {
	margin-left: -8px;
	padding-left: 0px;
	width: 90%;
}

ul#icon_bestellung a {
	padding: 0px;
}

ul#icon_bestellung img {
	padding: 0px;
}

#karten a {
	border-bottom: 1px solid #ccc;
}

#galerie a {
	border-bottom: none;
}

.kartenrubrik {
	font-weight: bold;
	text-transform: uppercase;
}

.kartenrubrik a {
	color: #3263ac;
	border-bottom: none;
}

#kartenarchiv h3 {
	border-top: 1px solid #eee;
	margin-bottom: 10px;
	padding-top: 10px;
}

.padloper-number {
	width: 5em;
	text-align: right;
/*	padding-right: 0.8em; */
}

.firstname {
	margin-top: 2em;
}

.firstname, .lastname, .streetaddress, .zip, .city, .country, .email, .paymentmethod {
	font-weight: bold;
}

.custom1 span, .custom2 span, .greetings span, .phone span {
	font-weight: bold;
	display: block;
}

.required label {
	display: block;
	font-weight: normal;
}

form {
	margin: 0;
}

.final {
	font-weight: bold;
}

.total_sum {
	color: #3263ac;
}

th {
	text-align: left;
	color: #3263ac;
}

em {
	/* font-family: 'Arial', sans-serif; */
    font-family: 'Raleway', 'Arial', sans-serif;
}

#extras {
	float: right;
}


.float {
	float: left;
	margin-right: 10px;
}

.float a, .float a:hover {
	border: none;
	text-decoration: none;
}

.clear {
	float: clear;
}

.thema {
	float: left;
	width: 29%;
	height: 200px;
	margin-right: 1.3em;
	margin-bottom: 1.5em;
}

.themenbox {
	width: 100%;
	height: 150px;
}

.themenbox1 {
  background-color: #c04134;
}

.themenbox2 {
  background-color: #038491;
}

.themenbox3 {
  background-color: #bd436b;
}

.themenbox4 {
  background-color: #048c41;
}

.themenbox5 {
  background-color: #e98b31;
}

.themenbox6 {
  background-color: #2d3968;
}

.themenbox7 {
  background-color: #87458d;
}

.themenbox8 {
  background-color: #73a6e4;
}

.themenbox9 {
  background-color: #737373;
}

.themenbox10 {
  background-color: #00cbcc;
}

.themenbox:hover {
	background-color: #3263ac;
	transition: .4s background-color;
}

#notice {
	border: 1px solid #de0000;
	/* background-color: #f7dede; */
	text-align: center;
	color: #de0000;
}

############
# PADLOPER #
############

.padloper-cart {
	width: 100%;
}

.padloper-cart td {
    padding: 0 0 0.8em 0;
    vertical-align: top;
}

.padloper-editcart {
	overflow: hidden;
}

.padloper-editcart > input {
	float: right;
}

/* input[type=submit], button {
	margin-top: 1em;
	padding: 0.5em 1em;
	background: #4ABCBC;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 8px;
}

input[type=submit]:hover, button:hover {
	background: #E24F43;
	transition: background-color 150ms linear;
} */

.padloper-add-to-cart {
	text-align: center;
}

.padloper-add-to-cart input {
	border: 1px solid #4ABCBC;
	background: #4ABCBC;
	color: #fff;
	font-size: 1.2em;
	margin-top: 1em;
	padding: 0.5em 3.4em;
}

#padloper-customerform {

}

#padloper-customerform input, #padloper-customerform select, #padloper-customerform textarea {
	width: 100%;
	max-width: 400px;
}

#padloper-customerform .InputfieldRadiosStacked {
	margin: 0;
	padding: 0;
}

#padloper-customerform .InputfieldRadiosStacked input {
	width: auto;
	height: 1.2em;
}

#padloper-customerform .InputfieldRadiosStacked label {
	font-size: 0.8em;
}

.padloper-cart-product {
	width: 60%;
}

.padloper-cart-totalrow td {
	font-weight: bold;
        padding-top: 0.5em;
}

/*
#checkoutProcess {
	width: 70%;
}
*/

#checkoutProcess .InputfieldHeader {
	padding-top: 16px;
}

.toggle-icon {
	display: none;
}

.InputfieldStateRequired > label::after {
    content: " *";
    color: #3263ac;
}

.inventory th.price, .inventory td.price {
    padding: 0.5em;
    text-align: right;
}

.inventory td {
	padding-top: 0.5em;
}

.inventory tr:first-child td {
	padding-top: 0em;
}

.category_table tr:first-child td {
    vertical-align: top;
}

.inventory tr {
    vertical-align: top;
}

.balance {
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
	margin-bottom: 1em;
}

.balance th {
  text-align: right;
	padding: 0.5em 1em 0.5em 0em;
}

#wrap_Inputfield_pad_abobeginn ul li, #wrap_Inputfield_pad_anrede ul li, #wrap_Inputfield_pad_shippingmodule ul li, #wrap_Inputfield_pad_paymentmodule ul li {
    list-style: none;
}

#wrap_Inputfield_pad_shippingmodule {
    visibility: hidden;
    float: right;
}

.InputfieldRadiosStacked input {
    margin-right: 0.6em;
}


.ui-state-error p {
	color: #de0000;
	font-size: 0.8em;

}

#checkout .InputfieldError {
  position: absolute;
	text-align: right;
	width: 400px;
	padding-top: 3px;
	padding-right: 10px;
	z-index: -1;
}

/*.InputfieldContent input:not(#Inputfield_pad_agb_zustimmung), .InputfieldContent select {*/
.InputfieldContent input, .InputfieldContent select {
  background: transparent;
	border: 1px solid darkgrey;
	height: 32px;
	margin-bottom: 1em;
}

#padloper-customerform .InputfieldCheckbox input {
	width: 4%;
	float: left;
}

#padloper-customerform .InputfieldCheckbox label {
	margin-bottom: 1em;
}

#Inputfield_pad_agb_zustimmung {
	/* height: 100%; */
	height: 16px;
}

#wrap_Inputfield_pad_agb_zustimmung .InputfieldHeader {
	visibility: hidden;
	line-height: 0;
}

#wrap_Inputfield_pad_agb_zustimmung .InputfieldContent p {
	/* visibility: hidden; */
	margin-left: 300px;
}

.en {
    /* padding-left: 3em; */
}
.en h3 {
    color: #808080;
}
.en h3 a {
    border: none;
}
h5 {
	margin-top: 0px;
}
h5 a, h5 a:hover {
	color: #3263ac;
	border: none !important;
}

/****** LIST DETAINEES ******/
/****************************/

.spaltentitel {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
	font-weight: bold;
}

.portrait {
	margin-top: 30px;
	border-top: 1px solid #eee;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* width: 360px; */
  /* width: 540px; */
  justify-content: space-evenly;
  align-content: flex-start;
}

.portraitdiv {
  display: flex;
  flex-direction: column;
  /* max-width: 154px; */
	width: 80%;
  align-items: center;
}

.portraitdiv img {
	width: 150px;
	height: 150px;
	border-radius: 250px;
/* cursor: pointer; */
}

.portraitdiv h3 {
  text-align: center;
  margin-bottom: 25px;
  /* text-transform: uppercase; */
	font-size: 110%;
  /* cursor: pointer; */
  /* ggf. anpassen, falls Personen mit langen Namen vorhanden sind */
  /* width: 154px; */
}

.portraitdiv img {
  /* width: 150px;
  height: 150px;
  border-radius: 150px; */
}

.portraetsrechts .portraetdiv img {
  background-color: #eee;
}

.person-3-spalten {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* width: 380px; */
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
}

.person-spalte {
	width: 30%;
	text-align: center;
}

.person-biografie {
	/* font-size: 90%; */
}
