/*
Theme Name: Twenty Twelve
Theme URI: http://wordpress.org/extend/themes/twentytwelve
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
    padding: 5px 0;
    padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
    font-size: 16px
    font-size: 1.142857143rem; (16 / $rembase)
    line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
    margin: 24px 0;
    margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;

}
body {
    font-size: 100%;
    font-size: 0.875em;

}

body {
    color: #515151;
    font:  'Open Sans',"Myriad Pro","Gill Sans","Gill Sans MT",Calibri,sans-serif !important;
    text-rendering: optimizelegibility;
}


td
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th,
td {
    text-align: left;
    font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    /*clear: both;*/
}
html {
    overflow-y: scroll;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
a:focus {
    outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
}
del {
    color: #333;
}
ins {
    background: #fff9c0;
    text-decoration: none;
}
hr {
    margin: 24px;
    margin-bottom: 1.714285714rem;
    height: 1px;
    border: 0;
    background-color: #ccc;
}
sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
small {
    font-size: smaller;
}
img {
    border: 0;
    -ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
    clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
    display: table;
    content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
    color: #656565;
    text-transform: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 2.181818182;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
    font-size: 11px;
    /*font-size: 0.785714286rem;*/
    line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
    padding: 6px;
    padding: 0.428571429rem;
    border: 1px solid #ccc;
    font-family: inherit;
}
button,
input {
    line-height: normal;
}
textarea {
    overflow: auto;
    vertical-align: top;
    font-size: 100%;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
    padding: 0;
    border: 0;
    border-radius: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
    padding: 6px 10px;
    border: 0;
    background-color: #296694;
    box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
    color: #fff;
    font-weight: normal;
    font-size: 11px;
    margin-left: 3px;
    border: 1px solid #296694;
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
    background-color: #fff;
    color: #296694;

}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
    background-color: #fff;
    color: #296694;
}
li.bypostauthor cite span {
    padding: 0;
    border: 1px solid #1f6f93;
    border-radius: 2px;
    background-color: #21759b;
    background-image: none;
    box-shadow: none;
    color: #fff;
}

/* Lexikon Menu */
.menu-lexikon-container,
.menu-rezepte-container {
    display:table;
}

#menu-rezepte,
#menu-lexikon {
    float:left;
    margin: 0 0 20px 0;
    padding: 0;
    list-style-type: none;
}

#menu-rezepte li,
#menu-lexikon li {
    display:inline-block;
    margin: 0 5px;
    font-weight: bold;
    font-size: 18px;
}

#menu-rezepte li:first-child,
#menu-lexikon li:first-child {
    margin-left: 0;
}

.lcp_catlist.lexikon {
    display: table;
    float: left;
    list-style-type: none;
}
.lcp_catlist.lexikon li {
    margin:0;
    padding:0;
    min-width: 220px;
}

.lcp_catlist.recipes {
    display: inline-block;
    width:50%;
    list-style-type: none;
    vertical-align:top;
}

.lcp_catlist.recipes li {
    margin:0;
    padding:0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
    /*max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
    max-width: 100%;
    height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
    max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
    max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
    float: left;
}
.alignright {
    float: right;
}
.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
    /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
    border-radius: 3px;
}
.wp-caption {
    padding: 4px;
    max-width: 100%; /* Keep wide captions from overflowing their container. */
}
td.txt, table#praxis-table td {
    padding: 10px !important;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
    color: #757575;
    font-style: italic;
    font-size: 12px;
    /*font-size: 0.857142857rem;*/
    line-height: 2;
}
img.wp-smiley,
.rsswidget img {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.entry-content dl.gallery-item {
    margin: 0;
}
.gallery-item a,
.gallery-caption {
    width: 90%;
}
.gallery-item a {
    display: block;
}
.gallery-caption a {
    display: inline;
}
.gallery-columns-1 .gallery-item a {
    max-width: 100%;
    width: auto;
}
.gallery .gallery-icon img {
    padding: 5%;
    max-width: 90%;
    height: auto;
}
.gallery-columns-1 .gallery-icon img {
    padding: 3%;
}

/* Navigation */
.site-content nav {
    clear: both;
    overflow: hidden;
    line-height: 2;
}
#nav-above {
    padding: 24px 0;
    /*padding: 1.714285714rem 0;*/
}
#nav-above {
    display: none;
}
.paged #nav-above {
    display: block;
}
.nav-previous,
.previous-image {
    float: left;
    margin-bottom: 20px;
    width: 50%;
    font-size: 12px;
}
.nav-next,
.next-image {
    float: right;
    margin-bottom: 20px;
    width: 50%;
    text-align: right;
    font-size: 12px;
}
.nav-single + .comments-area,
#comment-nav-above {
    margin: 48px 0;
    /*margin: 3.428571429rem 0;*/
}

/* Author profiles */
.author .archive-header {
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
}
.author-info {
    /*padding-top: 1.714285714rem;*/
    overflow: hidden;
    margin: 24px 0;
    /*margin: 1.714285714rem 0;*/
    padding-top: 24px;
    border-top: 1px solid #ededed;
}
.author-description p {
    color: #757575;
    font-size: 13px;
    /*font-size: 0.928571429rem;*/
    /*line-height: 1.846153846;*/
}
.author.archive .author-info {
    margin: 0 0 48px;
    border-top: 0;
    /*margin: 0 0 3.428571429rem;*/
}
.author.archive .author-avatar {
    margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
    font-size: 87.5%;
}
body {
    color: #515151;
    font-size: 13px;
    /*font-size: 1rem;*/
    text-rendering: optimizeLegibility;
    //font: 100%/1.618 sans-serif;
    font-family: 'Open Sans', "Myriad Pro", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;

}

a {
    outline: none;
    color: #21759b;
}
a:hover {
    color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100000; /* Above WP toolbar */
    display: block;
    clip: auto !important;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 3px;
    background: #fff;
    color: #000;
    font-size: 12px;
}

/* Page structure */
.site {
    /*padding: 0 24px;
    padding: 0 1.714285714rem;*/
    padding:0;
}
.site-content {
    margin: 5px 0 0;
    /*margin: 1.714285714rem 0 0;*/
}
.widget-area {
    padding: 24px 0 0;
    /*padding: 1.714285714rem 0 0;*/
    padding-left:10px;
}

/* Header */
.site-header {
    padding-top: 38px;
    background:transparent url('img/logo_bg.png') no-repeat;
}
.site-header h1,
.site-header h2 {
    text-align: center;
}
.site-header h1 a,
.site-header h2 a {
    display: inline-block;
    color: #515151;
    text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
    color: #21759b;
}
.site-header h1 {
    /*font-size: 1.714285714rem;*/
    /*line-height: 1.285714286;*/
    margin-bottom: -20px;
    font-size: 24px;
    /*margin-bottom: 1rem;*/
}
.site-header h2 {
    /*font-size: 0.928571429rem;*/
    /*line-height: 1.846153846;*/
    color: #757575;
    font-weight: normal;
    font-size: 13px;
}
.header-image {
    margin-top: 24px;
    /*margin-top: 1.714285714rem;*/
}

/* Navigation Menu */
.main-navigation {
    margin-top: 19px;
    padding-top: 20px;
    width:1024px;
    background:#fff;
    /*margin-top: 1.714285714rem;*/
    text-align: center;
}
.main-navigation li {
    margin-top: 24px;
    /*margin-top: 1.714285714rem;*/
    /*font-size: 12px;*/
    /*font-size: 0.857142857rem;*/
    /*line-height: 1.42857143;*/
}
.main-navigation a {
    color: #5e5e5e;
}
.main-navigation a:hover {
    color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
    display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
    display: inline-block;
}

/* Banner */
section[role="banner"] {
    margin-bottom: 48px;
    /*margin-bottom: 3.428571429rem;*/
}

/* Sidebar */
.widget-area .widget {
    margin-bottom: 40px;
    padding-bottom:40px;
    /*border-bottom:1px solid #E2E2E2;*/
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
.widget-area .widget h3 {
    margin-bottom: 24px;
    color:#255C87;
    /*margin-bottom: 1.714285714rem;*/
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
    font-size: 13px;
    /*font-size: 0.928571429rem;*/
    /*line-height: 1.846153846;*/
}
.widget-area .widget p {
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
}
.widget-area .textwidget ul {
    margin: 0 0 24px;
    list-style: disc outside;
    /*margin: 0 0 1.714285714rem;*/
}
.widget-area .textwidget li {
    margin-left: 36px;
    /*margin-left: 2.571428571rem;*/
}
.widget-area .widget a {
    /* color: #757575;*/
    text-decoration:none;
    line-height: 18px;
}
.widget-area .widget a:hover {
    color: #21759b;
}
.widget-area #s {
    width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
    clear: both;
    margin-right: auto;
    margin-left: auto;
    padding: 24px 0;
    width:100%;
    background:#3a6a8f;
    font-size: 12px;
    /*font-size: 0.857142857rem;*/
    line-height: 2;
    /*padding: 1.714285714rem 0;*/
}
footer[role="contentinfo"] a {
    color: #686868;
}
footer[role="contentinfo"] a:hover {
    color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
    clear: both;
}
.entry-header {
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
}
.entry-header img.wp-post-image {
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
}
.entry-header .entry-title {
    /*font-size: 1.428571429rem;*/
    /*line-height: 1.2;*/
    font-weight: normal;
    font-size: 20px;
}
.entry-header .entry-title a {
    text-decoration: none;
}
.entry-header .entry-format {
    margin-top: 24px;
    /*margin-top: 1.714285714rem;*/
    font-weight: normal;
}
.entry-header .comments-link {
    margin-top: 24px;
    /*font-size: 0.928571429rem;*/
    /*line-height: 1.846153846;*/
    color: #757575;
    /*margin-top: 1.714285714rem;*/
    font-size: 13px;
}
.comments-link a,
.entry-meta a {
    color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
    color: #21759b;
}
article.sticky .featured-post {
    /*font-size: 0.928571429rem;*/
    /*line-height: 3.692307692;*/
    margin-bottom: 24px;
    border-top: 4px double #ededed;
    border-bottom: 4px double #ededed;
    color: #757575;
    /*margin-bottom: 1.714285714rem;*/
    text-align: center;
    font-size: 13px;
}
.entry-content,
.entry-summary,
.mu_register {
    line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
    margin: 24px 0;
    color:#255C87;
}
.entry-content h1,
.comment-content h1 {
    font-size: 21px;
    /*font-size: 1.5rem;*/
    /*line-height: 1.5;*/
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
    font-size: 18px;
    /*font-size: 1.285714286rem;*/
    /*line-height: 1.6;*/
}
.entry-content h3,
.comment-content h3 {
    font-size: 16px;
    /*font-size: 1.142857143rem;*/
    /*line-height: 1.846153846;*/
}
.entry-content h4,
.comment-content h4 {
    font-size: 14px;
    /*font-size: 1rem;*/
    /*line-height: 1.846153846;*/
}
.entry-content h5,
.comment-content h5 {
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
    font-size: 12px;
    /*font-size: 0.857142857rem;*/
    /*line-height: 1.846153846;*/
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
    margin: 0 0 24px;
    /*margin: 0 0 1.714285714rem;*/
    /*line-height: 1.714285714;*/
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
    margin: 0 0 24px;
    /*margin: 0 0 1.714285714rem;*/
    /*line-height: 1.714285714;*/
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
    margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
    list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
    list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
    margin: 0 0 0 36px;
    /*margin: 0 0 0 2.571428571rem;*/
}
.entry-content blockquote,
.comment-content blockquote {
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
    padding: 24px;
    /*padding: 1.714285714rem;*/
    font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
    margin-bottom: 0;
}
.entry-content code,
.comment-content code {
    font-size: 12px;
    font-size: 0.857142857rem;
    font-family: Consolas, Monaco, Lucida Console, monospace;
    line-height: 2;
}
.entry-content pre,
.comment-content pre {
    /*margin: 1.714285714rem 0;*/
    overflow: auto;
    /*font-size: 0.857142857rem;*/
    /*line-height: 1.714285714;*/
    margin: 24px 0;
    padding: 24px;
    border: 1px solid #ededed;
    color: #666;
    font-size: 12px;
    font-family: Consolas, Monaco, Lucida Console, monospace;
    /*padding: 1.714285714rem;*/
}
.entry-content pre code,
.comment-content pre code {
    display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}
.entry-content address,
.comment-content address {
    display: block;
    /*line-height: 1.714285714;*/
    margin: 0 0 24px;
    /*margin: 0 0 1.714285714rem;*/
}
img.alignleft {
    margin: 12px 24px 12px 0;
    /*margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;*/
}
img.alignright {
    margin: 12px 0 12px 24px;
    /*margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;*/
}
img.aligncenter {
    margin-top: 12px;
    /*margin-top: 0.857142857rem;*/
    margin-bottom: 12px;
    /*margin-bottom: 0.857142857rem;*/
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
}
.entry-content dl,
.comment-content dl {
    margin: 0 24px;
    /*margin: 0 1.714285714rem;*/
}
.entry-content dt,
.comment-content dt {
    font-weight: bold;
    /*line-height: 1.714285714;*/
}
.entry-content dd,
.comment-content dd {
    /*line-height: 1.714285714;*/
    margin-bottom: 24px;
    /*margin-bottom: 1.714285714rem;*/
}
.entry-content table,
.comment-content table {
    margin: 0 0 24px;
    /*margin: 0 0 1.714285714rem;*/
    width: 100%;
    border-bottom: 1px solid #ededed;
    color: #515151;
    font-size: 12px;
    /*font-size: 14px;*/
    line-height: 2;
}
.entry-content table caption,
.comment-content table caption {
    /*font-size: 1.142857143rem;*/
    margin: 24px 0;
    font-size: 16px;
    /*margin: 1.714285714rem 0;*/
}
.entry-content td,
.comment-content td {
    padding: 6px 10px 6px 0;
    border-top: 1px solid #ededed;
}
.site-content article {
    margin-bottom: 30px;
    /*margin-bottom: 5.142857143rem;*/
    padding-bottom: 24px;
    /*padding-bottom: 1.714285714rem;*/
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
.page-links {
    clear: both;
    line-height: 1.714285714;
}
footer.entry-meta {
    display: none;
    margin-top: 24px;
    margin-top: 1.714285714rem;
    color: #757575;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
.single-author .entry-meta .by-author {
    display: none;
}
.mu_register h2 {
    color: #757575;
    font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
    margin-bottom: 48px;
    margin-bottom: 3.428571429rem;
    padding-bottom: 22px;
    padding-bottom: 1.571428571rem;
    border-bottom: 1px solid #ededed;
}
.archive-meta {
    margin-top: 22px;
    margin-top: 1.571428571rem;
    color: #757575;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 2;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
    overflow: hidden;
}
.image-attachment div.attachment {
    text-align: center;
}
.image-attachment div.attachment p {
    text-align: center;
}
.image-attachment div.attachment img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.image-attachment .entry-caption {
    margin-top: 8px;
    margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
    color: #4d525a;
    text-decoration: none;
}
article.format-aside h1 a:hover {
    color: #2e3542;
}
article.format-aside .aside {
    padding: 24px 24px 0;
    padding: 1.714285714rem;
    border-left: 22px solid #a8bfe8;
    background: #d2e0f9;
}
article.format-aside p {
    color: #4a5466;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
    margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
    font-weight: normal;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
article.format-image footer h2 {
    font-size: 11px;
    font-size: 0.785714286rem;
    line-height: 2.181818182;
}
article.format-image footer a h2 {
    font-weight: normal;
}

/* Link posts */
article.format-link header {
    float: right;
    padding: 0 10px;
    padding: 0 0.714285714rem;
    border-radius: 3px;
    background-color: #ebebeb;
    color: #848484;
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    font-size: 11px;
    font-size: 0.785714286rem;
    line-height: 2.181818182;
}
article.format-link .entry-content {
    float: left;
    max-width: 80%;
}
article.format-link .entry-content a {
    text-decoration: none;
    font-size: 22px;
    font-size: 1.571428571rem;
    line-height: 1.090909091;
}

/* Quote posts */
article.format-quote .entry-content p {
    margin: 0;
    padding-bottom: 24px;
    padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
    display: block;
    padding: 24px 24px 0;
    padding: 1.714285714rem 1.714285714rem 0;
    background: #efefef;
    color: #6a6a6a;
    font-style: normal;
    font-size: 15px;
    font-size: 1.071428571rem;
    line-height: 1.6;
}

/* Status posts */
.format-status .entry-header {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
    display: inline-block;
}
.format-status .entry-header h1 {
    margin: 0;
    font-weight: normal;
    font-size: 15px;
    font-size: 1.071428571rem;
    line-height: 1.6;
}
.format-status .entry-header h2 {
    margin: 0;
    font-weight: normal;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 2;
}
.format-status .entry-header header a {
    color: #757575;
}
.format-status .entry-header header a:hover {
    color: #21759b;
}
.format-status .entry-header img {
    float: left;
    margin-right: 21px;
    margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
    margin-bottom: 48px;
    margin-bottom: 3.428571429rem;
    font-weight: normal;
    font-size: 16px;
    font-size: 1.142857143rem;
    line-height: 1.5;
}
.comments-area article {
    margin: 24px 0;
    margin: 1.714285714rem 0;
}
.comments-area article header {
    position: relative;
    overflow: hidden;
    margin: 0 0 48px;
    margin: 0 0 3.428571429rem;
}
.comments-area article header img {
    float: left;
    padding: 0;
    line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
    display: block;
    margin-left: 85px;
    margin-left: 6.071428571rem;
}
.comments-area article header cite {
    font-style: normal;
    font-size: 15px;
    font-size: 1.071428571rem;
    line-height: 1.42857143;
}
.comments-area article header time {
    color: #5e5e5e;
    text-decoration: none;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 1.714285714;
}
.comments-area article header a {
    color: #5e5e5e;
    text-decoration: none;
}
.comments-area article header a:hover {
    color: #21759b;
}
.comments-area article header cite a {
    color: #444;
}
.comments-area article header cite a:hover {
    text-decoration: underline;
}
.comments-area article header h4 {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    padding: 0.428571429rem 0.857142857rem;
    border: 1px solid #007cbd;
    border-radius: 3px;
    background-color: #0088d0;
    background-image: -moz-linear-gradient(top, #009cee, #0088d0);
    background-image: -ms-linear-gradient(top, #009cee, #0088d0);
    background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
    background-image: -o-linear-gradient(top, #009cee, #0088d0);
    background-image: linear-gradient(top, #009cee, #0088d0);
    background-repeat: repeat-x;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
    font-size: 0.857142857rem;
}
.comments-area li.bypostauthor cite span {
    position: absolute;
    margin-left: 5px;
    margin-left: 0.357142857rem;
    padding: 2px 5px;
    padding: 0.142857143rem 0.357142857rem;
    font-size: 10px;
    font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
    color: #686868;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
    color: #21759b;
}
.commentlist .pingback {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
    line-height: 1.714285714;
}

/* Comment form */
#respond {
    margin-top: 48px;
    margin-top: 3.428571429rem;
}
#respond h3#reply-title {
    font-size: 16px;
    font-size: 1.142857143rem;
    line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
    margin-left: 10px;
    margin-left: 0.714285714rem;
    font-weight: normal;
    font-size: 12px;
    font-size: 0.857142857rem;
}
#respond form {
    margin: 24px 0;
    margin: 1.714285714rem 0;
}
#respond form p {
    margin: 11px 0;
    margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
}
#respond form label {
    display: block;
    line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    padding: 0.714285714rem;
    width: 100%;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 1.714285714;
}
#respond form p.form-allowed-tags {
    margin: 0;
    color: #5e5e5e;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 2;
}
.required {
    color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
    margin-bottom: 14px;
    margin-bottom: 1rem;
}
.template-front-page .site-content article {
    margin-bottom: 0;
    border: 0;
}
.template-front-page .widget-area {
    /*    float: none;
        clear: both;*/
    padding-top: 24px;
    /*padding-top: 1.714285714rem;*/
    /*width: auto;*/
    /*border-top: 1px solid #ededed;*/
}
.template-front-page .widget-area .widget li {
    margin: 8px 0 0;
    list-style-type: none;
    font-size: 13px;
}
.template-front-page .widget-area .widget li a {
    color: #255C87;
}
.template-front-page .widget-area .widget li a:hover {
    color: #21759b;
}
.template-front-page .widget-area .widget_text img {
    float: left;
    margin: 8px 24px 8px 0;
    /*    margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;*/
}
#main{
    position:relative;
    background:#fff;
}
.inwrapper{
    margin:0 10px;
    padding:0 5px;
}

/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
    margin-left: 12px;
    margin-left: 0.857142857rem;
}
.widget_rss li {
    margin: 12px 0;
    margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
    margin-left: 12px;
    margin-left: 0.857142857rem;
    color: #aaa;
    font-size: 11px;
    font-size: 0.785714286rem;
}
#wp-calendar {
    margin: 0;
    width: 100%;
    color: #686868;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
    text-align: left;
}
#wp-calendar #next {
    padding-right: 24px;
    padding-right: 1.714285714rem;
    text-align: right;
}
.widget_search label {
    display: block;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
}
.widget_twitter li {
    list-style-type: none;
}
.widget_twitter .timesince {
    display: block;
    text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
    display: block;
    margin: 0 auto 24px;
    margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
@media screen and (min-width: 1px) {
    .author-avatar {
        float: left;
        margin-top: 8px;
        margin-top: 0.571428571rem;
    }
    .author-description {
        float: right;
        width: 80%;
    }
    .site {
        margin: 0 auto;
        width: 1024px;
        /*width: 73.1428571424rem;*/
    }
    .site-content {
        float: left;
        width: 665px;
    }
    .site-content .expertensuche {
        position:absolute;
        top:10px;
        right:20px;
        width:315px !important;
    }
    .site-content #map-canvas {
        width:315px !important;
        height:320px !important;
    }

    body.template-front-page .site-content,
    body.single-attachment .site-content,
    body.full-width .site-content {
        width: 100%;
    }
    .widget-area {
        float: right;
        width: 26.041666667%;
        border-left: 1px solid #E2E2E2;
    }
    .site-header h1,
    .site-header h2 {
        text-align: left;
    }
    .site-header h1 a {
        display:block;
        margin-top: 8px;
        margin-bottom: 0;
        margin-left: 30px;
        width:325px;
        height:85px;
        background:url('img/logo.png') no-repeat;
        font-size: 0;
        line-height: 0;
    }
    .main-navigation ul.nav-menu,
    .main-navigation div.nav-menu > ul {
        display: inline-block !important;
        padding-left:3px;
        width: 1001px;
        height: 36px;

        border-top:1px solid #16476c;
        border-bottom:1px solid #4f95c0;
        background: #2b6b99; /* Old browsers */
        background: -moz-linear-gradient(top, #2b6b99 0%, #276391 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2b6b99), color-stop(100%,#276391)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #2b6b99 0%,#276391 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #2b6b99 0%,#276391 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #2b6b99 0%,#276391 100%); /* IE10+ */
        background: linear-gradient(to bottom, #2b6b99 0%,#276391 100%); /* W3C */
        text-align: left;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b6b99', endColorstr='#276391',GradientType=0 ); /* IE6-9 */
    }
    .main-navigation ul {
        margin: 0;
        text-indent: 0;
    }
    .main-navigation li {
        border-right:1px solid #3675a2;
    }
    .main-navigation li a,
    .main-navigation li {
        display: inline-block;
        text-decoration: none;
    }
    .main-navigation li a {
        display:block;
        padding:0 15px 0 15px;
        border-bottom: 0;
        color: #027AC6;
        color: #fff;
        text-transform: uppercase;
        text-shadow:0px -1px 0px rgba(0,0,0,0.4);
        white-space: nowrap;
        font-weight:bold;
        font-size:13px;
        line-height: 32px;
    }
    .main-navigation li a:hover {
        color: #fff;
    }
    .nav-menu>li {
        margin-left: -3px !important;
    }
    .main-navigation li {
        /*margin: 0 1.957143rem 0 0;*/
        position: relative;
        margin: 0 27px 0 0;
        padding-right: 16px;
    }
    .nav-menu>li{
        margin:0;
        padding:0;
    }
    .main-navigation li ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index:5;
        display: none;
        margin: 0;
        padding: 0;
    }
    .main-navigation li ul ul {
        top: -1px;
        left: 100%;
    }
    .main-navigation ul li:hover > ul {
        display: block;
        border-left: 0;
    }
    .main-navigation li ul li a {
        display: block;
        padding: 4px 10px;
        /*padding: 0.571428571rem 0.714285714rem;*/
        width: 210px;
        /*width: 12.85714286rem;*/
        background: #205177; /* Old browsers */
        background: -moz-linear-gradient(top, #205177 0%, #27628f 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#205177), color-stop(100%,#27628f)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #205177 0%,#27628f 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #205177 0%,#27628f 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #205177 0%,#27628f 100%); /* IE10+ */
        background: linear-gradient(to bottom, #205177 0%,#27628f 100%); /* W3C */
        white-space: normal;
        /*font-size: 11px;*/
        /*font-size: 0.785714286rem;*/
        line-height: 20px;
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#205177', endColorstr='#27628f',GradientType=0 ); /* IE6-9 */

    }
    .main-navigation li ul li a:hover {
        background: #205177; /* Old browsers */
        background: -moz-linear-gradient(top, #205177 0%, #27628f 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#205177), color-stop(100%,#27628f)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #205177 0%,#27628f 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #205177 0%,#27628f 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #205177 0%,#27628f 100%); /* IE10+ */
        background: linear-gradient(to bottom, #205177 0%,#27628f 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#205177', endColorstr='#27628f',GradientType=0 ); /* IE6-9 */
    }
    .menu-item > a {
        margin-top: 3px;
    }
    .menu-item ul li > a {
        margin-top: 0;
    }
    .main-navigation .current-menu-item > a,
    .main-navigation .current-menu-ancestor > a,
    .main-navigation .current_page_item > a,
    .main-navigation .current_page_ancestor > a {
        -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
        -moz-box-sizing: border-box;    /* Firefox, other Gecko */
        box-sizing: border-box;         /* Opera/IE 8+ */
        border-top:3px solid #f52c29;
        margin: 0;

        background: #205177; /* Old browsers */
        background: -moz-linear-gradient(top, #205177 0%, #27628f 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#205177), color-stop(100%,#27628f)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #205177 0%,#27628f 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #205177 0%,#27628f 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #205177 0%,#27628f 100%); /* IE10+ */
        background: linear-gradient(to bottom, #205177 0%,#27628f 100%); /* W3C */

        box-shadow:inset rgba(0,0,0,0.2) 0 0 2px;
        /*line-height: 2.592308;*/
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#205177', endColorstr='#27628f',GradientType=0 ); /* IE6-9 */
    }
    .main-navigation .nav-menu ul:not(:first-child) .current-menu-ancestor > a,
    .main-navigation .nav-menu ul:not(:first-child) .current-menu-item > a {
        width:230px;
    }
    .menu-toggle {
        display: none;
    }
    .entry-header .entry-title {
        font-weight: bold;
        font-size: 18px;
        border-bottom: 1px dotted #7da4c5;
        padding-bottom: 5px;
    }
    #respond form input[type="text"] {
        width: 46.333333333%;
    }
    #respond form textarea.blog-textarea {
        width: 79.666666667%;
    }
    .template-front-page .site-content,
    .template-front-page article {
        overflow: hidden;
    }
    .template-front-page.has-post-thumbnail article {
        float: left;
        width: 47.916666667%;
    }
    .entry-page-image {
        float: right;
        margin-bottom: 0;
        width: 47.916666667%;
    }
    .template-front-page .widget-area .widget,
    .template-front-page.two-sidebars .widget-area .front-widgets {
        float: left;
        margin-bottom: 24px;
        /*        margin-bottom: 1.714285714rem;
                width: 51.875%;*/
    }
    .template-front-page .widget-area .widget:nth-child(odd) {
        clear: right;
    }
    .template-front-page .widget-area .widget:nth-child(even),
    .template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
        float: right;
        margin: 0 0 24px;
        margin: 0 0 1.714285714rem;
        width: 39.0625%;
    }
    .template-front-page.two-sidebars .widget,
    .template-front-page.two-sidebars .widget:nth-child(even) {
        float: none;
    }
    .commentlist .children {
        margin-left: 48px;
        margin-left: 3.428571429rem;
    }
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 1px) {
    body {
        background: #7da4c5 url('img/bg.png') fixed repeat-x;
    }
    body .site {
        /*padding: 0 40px;
        padding: 0 2.857142857rem;*/
        margin-top: 48px;
        margin-top: 3.428571429rem;
        margin-bottom: 48px;
        margin-bottom: 67px;
        position: relative;
    }
    body.custom-background-empty {
        background-color: #fff;
    }
    body.custom-background-empty .site,
    body.custom-background-white .site {
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        box-shadow: none;
    }
}


/* =Print
----------------------------------------------- */

@media print {
    body {
        background: none !important;
        color: #000;
        font-size: 10pt;
    }
    footer a[rel=bookmark]:link:after,
    footer a[rel=bookmark]:visited:after {
        content: " [" attr(href) "] "; /* Show URLs */
    }
    a {
        text-decoration: none;
    }
    .entry-content img,
    .comment-content img,
    .author-avatar img,
    img.wp-post-image {
        border-radius: 0;
        box-shadow: none;
    }
    .site {
        position: relative !important;
        display: block !important;
        float: none !important;
        clear: both !important;
        max-width: 100%;
    }
    .site-header {
        margin-bottom: 72px;
        margin-bottom: 5.142857143rem;
        text-align: left;
    }
    .site-header h1 {
        text-align: left;
        font-size: 21pt;
        line-height: 1;
    }
    .site-header h2 {
        color: #000;
        text-align: left;
        font-size: 10pt;
    }
    .site-header h1 a,
    .site-header h2 a {
        color: #000;
    }
    .author-avatar,
    #colophon,
    #respond,
    .commentlist .comment-edit-link,
    .commentlist .reply,
    .entry-header .comments-link,
    .entry-meta .edit-link a,
    .page-link,
    .site-content nav,
    .widget-area,
    img.header-image,
    .main-navigation {
        display: none;
    }
    .wrapper {
        border-top: none;
        box-shadow: none;
    }
    .site-content {
        margin: 0;
        width: auto;
    }
    .singular .entry-header .entry-meta {
        position: static;
    }
    .singular .site-content,
    .singular .entry-header,
    .singular .entry-content,
    .singular footer.entry-meta,
    .singular .comments-title {
        margin: 0;
        width: 100%;
    }
    .entry-header .entry-title,
    .entry-title,
    .singular .entry-title {
        font-size: 21pt;
    }
    footer.entry-meta,
    footer.entry-meta a {
        color: #444;
        font-size: 10pt;
    }
    .author-description {
        float: none;
        width: auto;
    }

    /* Comments */
    .commentlist > li.comment {
        position: relative;
        width: auto;
        background: none;
    }
    .commentlist .avatar {
        top: 2.2em;
        left: 2.2em;
        width: 39px;
        height: 39px;
    }
    .comments-area article header cite,
    .comments-area article header time {
        margin-left: 50px;
        margin-left: 3.57142857rem;
    }
}
.menu-main-container{
    margin:0 10px;
}
/*.nav-menu>li.parent{
  background:url(img/arrow-down.png) right no-repeat;
}*/
.nav-menu li ul>li.parent>a{
}
.nav-menu li ul>li {
    margin-right:0;
    padding-right:0;
    border:1px #3675a2 solid;
    border-top:0;
}
.nav-menu li>ul{
    border-top:1px #ccc solid;
}
.main-navigation{
    position:relative;
}
.main-navigation .searchForm{
    position:absolute;
    top:28px;
    right:20px;
}
.searchForm input[type=text]{
    width:190px;
    height:8px;
}
.nav-menu>li:hover>a{
    border-top: 3px solid #F52C29;
    line-height: 2.592308;
    margin: 0;
}

.wpbdmac{
    font-size:0;
    line-height:0;
}

/* Gridster rebuild */

.gridster {
    margin-left: -9px !important;
}
.gridster a{
    color:#255c87;
    text-decoration:none;
}
.gridster p{
    color: #515151;
    font-size: 12px;
    line-height: 16px;
}
.gridster h1{
    margin:0;
    margin-bottom: 0.5em;
    padding-top: 0.5em;
    font-size: 16px;
    line-height: 1em;
}
ul.gridster {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.gridster li {
    position: absolute;
    margin: 0;
    padding: 0;
}

li[data-sizex="4"] {
    width: 480px;
    height:600px;
}
li[data-sizex="4"] .gridster-image-wrap img{
    width:480px;
}
body.gridster-loaded .entry-header {
    display:none;
}


/* Headlines */

/* NEWS */
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="1"],
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="8"],
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="11"],
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="14"],
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="21"] {
    height: 25px;
    border-bottom: 1px dotted #255c87;
}

li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="14"]{
    top:1102px;
}

li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="12"] {
    top:0;
}

li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="21"] {
    top: 1120px;
}

/* WISSEN */
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="8"] {
    top:468px;
}

/* SERVICE */
li[data-sizex="5"][data-sizey="1"][data-col="1"][data-row="11"] {
    top: 730px;
}

li[data-sizex="5"] {
    width: 655px;
}

/* Top Teaser */
li[data-sizex="4"][data-sizey="6"][data-col="1"][data-row="2"] {
    top:40px;
}

/* news small right */
li[data-col="5"] {
    left:500px;
}

li[data-row="2"] {
    top: 430px;
}

li[data-sizex="1"][data-sizey="1"][data-col="5"] h1 {
    border-top:1px dotted #255c87;
    font-size: 13px;
}

li[data-sizex="1"][data-sizey="1"][data-col="5"] p {
    font-size: 12px;
    line-height: 14px;
}

li[data-sizex="1"][data-sizey="1"][data-col="5"] {
    height:67px;
}
li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="2"]{
    top:30px;
}

li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="2"] h1 {
    border: none;
}

li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="3"]{
    top:390px;
}

li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="4"]{
    top:100px;
}
li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="5"]{
    top: 180px;
}
li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="6"]{
    top: 250px;
}
li[data-sizex="1"][data-sizey="1"][data-col="5"][data-row="7"]{
    top: 320px;
}

/* 4 columns */
li[data-sizex="1"][data-sizey="2"][data-col="1"][data-row="12"],
li[data-sizex="1"][data-sizey="2"][data-col="2"][data-row="12"],
li[data-sizex="1"][data-sizey="2"][data-col="3"][data-row="12"],
li[data-sizex="1"][data-sizey="2"][data-col="4"][data-row="12"]{
    top: 778px;
    width: 146px;
}

/* with thumbnails */
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="9"],
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="9"],
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="18"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="19"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="18"] {
    top: 518px;
    overflow: hidden;
    width: 310px;
    height: 212px;
}

li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="9"] a,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="9"] a,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="19"] a,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="18"] a,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="18"] a,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="19"] a{
    display: table;
}

li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="9"] {
    left: 335px;
}

li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="9"] div,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="9"] div,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="19"] div,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="18"] div,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="18"] div,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="19"] div {
    float: left;
    margin-top: 8px;
    margin-right: 10px;
    width: 147px;

}

li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="9"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="18"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="9"] p,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="18"] p,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="9"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="19"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="19"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="18"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="9"] p,
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="19"] p,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="19"] p,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="18"] p{
    display: block;
    float: left;
    width: 151px;
    border-top: none;
}

/* four squares */
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="14"],
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="15"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="14"],
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="16"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="16"] {
    width: 310px;
}


li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="14"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="14"] {
    top: 1168px;
}

li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="15"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="15"] {
    top: 1150px;
}

li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="16"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="16"] {
    top: 1288px;
}

li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="17"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="17"] {
    top: 1268px;
}

li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="14"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="13"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="16"] {
    left: 335px;
}

li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="11"] h1,
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="11"] h1 {
    border-top: none;
}

/*last two thumbnail boxes*/
li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="18"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="18"] {
    top:1427px;
}

li[data-sizex="2"][data-sizey="2"][data-col="1"][data-row="19"],
li[data-sizex="2"][data-sizey="2"][data-col="3"][data-row="19"] {
    top: 1402px;
}



#colophon {
    display: table;
}

#colophon,
#colophon a {
    color: #fff;
    text-decoration: none;
}

#colophon a:hover {
    text-decoration: underline;
}

#colophon .intro,
#colophon .col-1,
#colophon .col-2,
#colophon .contact {
    float: left;
    margin-left: 20px;
    line-height: 1.5em;
}


#colophon .intro {
    margin-left:10px;
    width: 355px;
}

#colophon .intro p,
#colophon .contact p {
    margin-top: 20px;
}

#colophon .col-1 h3:not(:first-child),
#colophon .col-2 h3:not(:first-child) {
    margin-top: 20px;
}

.expertensuche h1 {
    margin: 0;
    margin-bottom: 0.5em;
    padding-top: 0.5em;
    color: #255c87;
    font-size: 16px;
    line-height: 1em;
}

.expertensuche h3 {
    margin: 10px 0;
    color: #515151;
    font-size: 11px;
}

.widget-area .widget .expertensuche h3 {
    margin-bottom: 10px;
}

.expertensuche form {
    font-size: 11px;
}

/* business directory -> experten */
.post-135 header,
.wpbdp-main-links {
    display: none;
}



/*Liste Ärzte*/
/* Index Verzeichnis */
.post-8 ul.index,
.post-135 ul {
    display: inline-block;
    list-style-type: none;
    vertical-align: top;
}

.post-8 ul.index li {
    margin-right: 30px;
    margin-left: 0;
}

form#wpbdmsearchform {
    margin: 0;
    text-align: left;
}

#wpbdp-view-listings-page .field-value,
#wpbdp-view-listings-page .field-value p,
#wpbdp-listing.listing-details .field-value {
    margin:0;
}



#wpbdp-view-listings-page .field-value,
#wpbdp-view-listings-page .listing-thumbnail{
    display: none;
}

#wpbdp-view-listings-page .field-value.wpbdp-field-doktorname,
#wpbdp-view-listings-page .field-value.wpbdp-field-long-business-description,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-titel,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-strasse,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-hausnummer,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-plz,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-stadt {
    display:block;
}


#wpbdp-view-listings-page .wpbdp-listing.excerpt {
    display: table;
    width: 100%;
    padding-right: 10px;
}

#wpbdp-view-listings-page .wpbdp-listing-excerpt .listing-actions {
    display: table-cell;
    vertical-align: bottom;
    text-align: right;
    padding-right: 8px;
}

#wpbdp-view-listings-page .listing-details {
    width: 374px;
}

#wpbdp-view-listings-page .listing-details .tabnav,
#wpbdp-search-page .search-filter {
    display: none;
}

#wpbdp-search-page .search-filter.doktorname,
#wpbdp-search-page .search-filter.adresse-stadt,
#wpbdp-search-page .search-filter.adresse-plz,
#wpbdp-search-page .search-filter.adresse-region {
    display: block;
}

.wpbdp-listing.wpbdp-listing-single .tabnav {
    width: 100%;
    border-bottom: 2px solid #296694;
}
.wpbdp-listing.wpbdp-listing-single .tabnav li{
    display:inline-block;
    margin-left:10px;
    border:1px solid #296694;
    border-bottom:none;
    background-color:#296694;
    color: #fff;
}

.wpbdp-listing.wpbdp-listing-single .tabnav li.ui-state-active {
    background-color:#fff;
}

.wpbdp-listing.wpbdp-listing-single .tabnav li.ui-state-active a {
    color: #296694;
}

.wpbdp-listing.wpbdp-listing-single .tabnav li a {
    outline: none;
    color:#fff;
    text-decoration: none;
}

/* tabs */
.tabnav a {
    display: block;
    padding: 5px 10px 3px 10px;
}

#tabs-1 .field-value.wpbdp-field-pflichtangaben.meta label,
#tabs-1 .field-value.wpbdp-field-oeffnungszeiten-beschreibung.meta label,
#tabs-1 .field-value.wpbdp-field-praxistyp.category {
    display: none;
}

#tabs-1 .field-value.wpbdp-field-oeffnungszeiten.meta label {display: block;}

#tabs-1 .wrap,
#tabs-1 .field-value.wpbdp-field-oeffnungszeiten.meta {
    float:left;
}

#tabs-1 .field-value.wpbdp-field-oeffnungszeiten-beschreibung.meta {
    clear:both;

}

#tabs-1 .wrap {
    width:70%;
}

#tabs-1 .field-value.wpbdp-field-oeffnungszeiten.meta {
    width: 30%;
}

#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-strasse.meta,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-hausnummer.meta,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-strasse.meta span,
#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-hausnummer.meta span {
    display: inline;
}

#wpbdp-view-listings-page .field-value.wpbdp-field-adresse-hausnummer.meta span {
    margin-left: 5px;
}

#tabs-4 ul {
    display:block;
}

/* no back btn and no thumbnail from plugin */
.wpbdp-listing.wpbdp-listing-single .listing-thumbnail,
.wpbdp-listing.wpbdp-listing-single .listing-actions.cf {
    display: none;
}

.wpbdp-listing.wpbdp-listing-single .listing-title {
    border:none;
    background-color: transparent;
    color:#296694;
}

/* Sidebar style */
#primary.startpage-template,
#secondary.startpage-template {
    /*border:1px solid grey;*/
}
#primary.startpage-template{
    width:70%;
}

#secondary .textwidget {
    width:263px;
}

#secondary .menu-lexikon-container {
    width: 100%;
}

#secondary .textwidget .lcp_catlist li,
#secondary .menu li {
    list-style-type: none;
    padding-bottom: 3px;
    margin-top: 6px;
    border-bottom: 1px solid #b9b9b9;
}
#secondary .textwidget .lcp_catlist li a{
    color: #21759b;
}

#toc_container .toc_title {
    display: none;
}

#toc_container p.toc_title + ul.toc_list {
    margin:0;
}

#toc_container .toc_list .toc_number {
    padding-right:10px;
}

/*Wissen*/
.page-id-27 .wrap {
    //margin-left:25px;
   // width:320px;
}

.page-id-27 .wrap h2 {
   // margin-top: 0;
}

.page-id-27 .col1,
.page-id-27 .col2 {
   //float:left;
}

.widget_wp_category_post_list_itg .widget-area .widget a {
    color: #255C87;
    text-decoration: none;
}

article h1,
article h2,
.widget_wp_category_post_list_itg h3 {
    color: #255C87;
}

#primary article h2 {
    font-size: 14px;
}

.widget_wp_category_post_list_itg .wp-cpl {
    border:none;
    border-bottom: 1px solid #b9b9b9;
}

.widget_wp_category_post_list_itg .wp-cpl-feed-subs,
.widget_wp_category_post_list_itg .wp-cpl-read-more,
.widget_wp_category_post_list_itg .wp-cpl-teaser {
    display: none;
}

.breadcrumbs {
    background-color: #fff;
}

.breadcrumb-inner {
    padding-top: 6px;
    width: 1004px;
    margin: 0 auto;
    font-size: 12px;
    padding-bottom: 5px;
    color: #F94536;
    font-weight: bold;
}

.breadcrumb-inner a {
    text-decoration: none;
    color: #F94536;
}

#logoParade {
    background-color: #ffffff;

}

#post-36258 #toc_container {
    display: none;
}

.type-wpbdp_listing.status-publish {
    display: none;
}



/* FrontPage - NEWS */
li#rightNews.right-news{
    list-style: none;   
}
ul li#rightNews.right-news:nth-child(3) {  
    color: red;
}


div#news{
    width:655px ;
    //border:1px solid green;
    margin-bottom:5px;
}

h2.frontpage-header {
    font-size: 16px;
    line-height: 1em;
    padding-top: 0.5em;
    border-bottom: 1px dotted #255c87;
    height:18px;
    color:#255C87;
    width: 655px;
    margin-bottom: 10px;

}
/* select the second-last item */
li.right-news:nth-last-child(1) {
    //border-bottom:0px solid red;
}

.left-news {
    float:left;
    width:480px;
    height: auto;

    //border:1px solid green;
}
.right-news{
    float:right;
    width:160px;
    //border:1px solid yellow;
    font-weight: normal;
    border-bottom: 1px dotted #255c87;
    padding-bottom: 5px;
}
.news-list{
    float:left;
    width:680px;
    //border:1px solid yellow;
    font-weight: normal;
    //border-bottom: 1px dotted #255c87;
    padding-bottom: 5px;
    clear: both;
    margin-bottom: 20px;

}


//li.news-list p{float: left}
.news-date {float: left;margin-right:5px;}

h3.first-news-header {
    font-size: 16px;
    line-height: 1em;
    margin: 5px 0 0.5em;
    padding-top: 0.5em;
}
h3.first-news-header a{
    text-decoration: none;
}
#news-list > li:nth-child(1){
    //border:0px solid red;
    padding-top:0px}
#news-list > li{padding-top:3px}
li.right-news strong,li.right-news b,p.first-news-content strong{font-weight: normal;}
.left-news p{
    color: #515151;
    font-size: 12px;
    line-height: 16px;
}
h3.list-news-header {
    font-size: 13px;
    line-height: 1em;
    margin: 0px 0 0.5em;
    /*padding-top: 0.5em;*/
    // font-weight: normal;
    margin-bottom: 24px;
}
div#news ul#news-list.news-feed li.right-news h3.list-news-header{margin-bottom:5px}
h3.list-news-header a{
    text-decoration: none;

}
div.inwrapper.wrapper div#newsList.space-Top ul#news-list.news-feed li.news-list h3.list-news-header a
{
    text-decoration: none;
    font-size: 16px;
    line-height: 1.71429;
}





#rightNews.right-news p{
    font-size: 12px;
    line-height: 14px;}

#rightNews.right-news strong{
    color: #515151;
    font-size: 12px;
    font-weight: normal;
    line-height: 14px;
}

.right-feeding{
    float:right;
    width:310px;
}
.left-feeding{
    float:left;
    width:310px;
}
/* // FrontPage - NEWS */


/*feeding*/
.smallContent{margin-top:30px;}
p.feedingRez{
    display: block;
    float:left;
    width:150px;
    font-weight: normal;
}
.left-feeding a,.right-feeding a{text-decoration: none;}

#news a.more-link{
    display:inline;
}

#news :nth-child(6), #news :nth-child(11),#news :nth-child(16){
    margin-bottom:20px;
}
h4.feedingHeader{
    font-size: 20px;
    text-decoration: none;
    margin: 0 0 0.5em;
    padding-top: 0em;
    color:#255C87;
}
p.feedingText{
    font-weight: normal;
    line-height: 16px;
    display: block;
}
.img-news{width:155px;height:200px;float:left}
/* //feeding*/

/*Wissen*/
.wrapper-wissen {

}
.wrapper-wissen ul {
    display: block;
    margin: 0;
    padding: 0;

    /* For IE, the outcast */
    zoom:1;
    *display: inline;
}
.wrapper-wissen li {
    float: left;
    padding: 2px 0px;
    border: 0px solid gray;
    width: 140px;
    padding-right: 15px;
    font-weight: normal;
    line-height: 16px;
    padding-bottom: 20px;
}

.wrapper-wissen ul li strong{display: block;font-weight: normal}

.wrapper-wissen ul li h4.feedingHeader a{
    text-decoration: none;
    //color: #21759B;
}


.wrapper-wissen ul li  h2,.wrapper-wissen ul li  p {
    color: #515151;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal
}
.wrapper-wissen ul li  h2 {
    color: #515151;
    font-size: 12px;
    line-height: 16px;
    font-weight:  bold;

}
/* //Wissen*/
/* interested subject's*/

#interestedSubject div.wrapper-wissen ul li{
    width: 300px;
}
.clear{
    clear: both;
}
.space-Top{padding-top:15px}
.space-bottom{margin-bottom:15px}
.floatImgleft{float:left}

#interestedSubject.clear div.wrapper-wissen ul div.clear li strong{width: 140px;float: left;font-weight: normal;display: block}
.wrapper-wissen ul div.clear li h3{font-weight: normal}
.display-block{display: block}



.wrapper-wissen ul {
    display: block;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 900px;
}

.wrapper-wissen ul li h4.feedingHeader {
    max-width: 290px;

}
/* //interested subject's*/

/* sidebar ExpertenSuche*/
//div#frontpagehome.widget-area aside#text-3.widget div.textwidget div.expertensuche
.frontpage-Home {
    border-left: 0px solid #E2E2E2;
    float: right;
    width: 315px;
}
.frontpage-Home #map-canvas {
    width:315px !important;
    height:320px !important;
}
.primary-Container{
    float:left;clear:both;margin-right: 20px;
}
/* //sidebar ExpertenSuche*/
.size-medium{width: 100px;}
ul#news-list.news-feed li.right-news p{line-height: 16px;}

#wpbdp-search-form .search-filter > div.field > input[type="text"] {
    width: 90%;
    font-size: 12px !important;
}

#wpbdp-search-form .search-filter > div.field > select{
    font-size: 12px !important;
    height: 30px;
    padding-top: 5px;
    width: 94%;
}


#toc_container a {
    font-weight: lighter;
    text-decoration: none;

}
h4.list-news-header span{
    color:#21759b;
    font-weight: lighter;
    text-decoration: none;}

.search-map-label{font-weight: bold}
.search-map-label-ort{margin-left:5px;}
#clearFeld{margin-left: 15px;}


a.more-link{
    display: block;
    margin-top: 7px;
}

div#newsList.space-Top ul#news-list.news-feed li.news-list p {margin:0 0 24px; line-height: 1.71429;margin-bottom: 24px}

div#primary.primary-Container div#news ul#news-list.news-feed li.right-news p strong a.more-link{margin-top: 0;}
div#primary.primary-Container div#news div#leftNews.left-news p a.more-link{margin-top: 0}
div#newsList.space-Top ul#news-list.news-feed li.news-list p a.more-link{font-weight: normal}
div.inwrapper.wrapper div#primary.primary-Container div#news ul#news-list.news-feed li.right-news h3.list-news-header a{
    font-size: 13px;
    margin: 5px 0 0.5em;
}


input#searchMap{
    background-color: #296694;
    border: 1px solid #296694;
    box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    margin-left: 3px;
    padding: 5px 5px;
}


#tv #primary{
    width:70%;
}
#tv #secondary{
    padding-top:55px;
}

.link-archiv{
    margin-bottom:20px;
}


/*Kontakt formular*/

#contact-form li{
    list-style:none;
    margin-left:0;
}

#contact-form li input ,#contact-form  li textarea{
    margin-bottom:15px;
}

#contact-form li:nth-child(1),#contact-form li:nth-child(3){
    margin-right:20px;
}
#contact-form li:nth-child(1) ,#contact-form li:nth-child(2) {
    display:inline-block;
}
#contact-form li:nth-child(3) ,#contact-form li:nth-child(4) {
    display:inline-block;
}
#contact-form li:nth-child(6) textarea{
    width:70%;
}
#contact-form li:nth-child(7) input {
    margin-left:0; 
}

#contact-form li:nth-child(7) input[submit]{
    margin-left:0; 
}

.site-content{
    width:100%;
}

/*Archiv site*/
.archivColumn {float:left; width:220px;}
.archivColumn a{text-decoration:none;}
.archivColumn a:link{text-decoration:none;}
.archivColumn img {border-radius:0;}
.archivColumn h2{margin-bottom:10px;}
.archivColumn p{font-size:12px;}


/*Bild Beschriftung */
.caption{
    font-size:10px;
    color:#666666;
    text-align:right;
    margin-top:-5px;
}
.image-wrap {
    position: relative; 
    float: left;
    margin-bottom:10px;
}
.first-news-img {
    position: relative; 
    margin-bottom:10px;
}
.wp-post-image{
    border-radius:0 !important;
    margin-bottom:0 !important;
}

/*Wissen site*/
.wissenColumn {float:left; width:220px;}
.wissenColumn a{text-decoration:none;}
.wissenColumn a:link{text-decoration:none;}
.wissenColumn img {border-radius:0;}
.wissenColumn h2{margin-bottom:10px;}

#flexipages-2 , .widget_text{
    width:100% !important ;
}

.flexipages_widget li {
    list-style-type: none;
    padding-bottom: 3px;
    margin-top: 6px;
    border-bottom: 1px solid #b9b9b9;
}
.flexipages_widget a{
    color:#21759b !important;
}

/* usquare plugin */
.usquare_block{
    margin:5px ;
}
.usquare_module_wrapper , #usquare_1, #usquare_2, #usquare_3, #usquare_4{
    width:960px !important;
}

.overview a , .overview a:hover{
    color:#ffffff;
}
/*widget_search*/

.widget_search{
    padding-bottom:0 !important;
    margin-bottom: 20px !important;
}
.widget_search label{
    display:none !important; 
}
.widget_search input {
    width:254px !important;
    height:20px !important;
    border:3px solid #3A6A8F;
}
.widget_spsf_widget{
    width:100% !important;
}
