/* Rahmen und Schatten */
.body .container {
    background-color: #fff;
    padding: 20px 20px 0 20px; /* 20px */
    border: 0px solid rgba(0,0,0,0.15); /* Rahmen um Content */
    -moz-box-shadow: 0px 0px 00px rgba(0,0,0,0.05); /* Schatten um Content */
    -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.05); /* Schatten um Content */
    box-shadow: 0px 0px 0px rgba(0,0,0,0.05); /* Schatten um Content */
}

/* Rand und Rahmen rechts neben Content */
.row-fluid .span9 {
    padding-right: 2%;
    border-right: 1px solid #e3e3e3;
}

/* Rahmen um Navigation */
.navigation {
    padding: 0px 0; /* 5px 0 */
    border-top: 0px solid rgba(0,0,0,0.075);
    border-bottom: 1px solid rgba(0,0,0,0.075);
    margin-bottom: 15px; /* 10px */
}

/* Menüpunkte */
.nav-pills > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 2px;
    margin-bottom: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-color: #eee;
}
.nav-tabs > li > a, .nav-pills > li > a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 0px;
    line-height: 14px;
}
.nav-tabs > li > a:hover, .nav-pills > li > a:hover {
    color: #000;
}
}.nav-list > .active > a, .nav-list > .active > a:hover, .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .btn-primary {
    background: #eee;
}

/* Menü-Liste in Modul */
ul.unstyled, ol.unstyled {
  margin-left: .5em;
  list-style: initial;
  list-style-position: inside;
}

/* Rahmen unter Seitenüberschrift */
.page-header {
    border-bottom: 0px solid #eee;
}

/* Suchfeld */
input.search-query {
    padding-right: 5px; /* 14px */
    padding-left: 5px; /* 14px */
    border-radius: 0px; /* 15px */
}

/* Seitentitel */
.brand {
    color: #3771ae; /* wie Template-Farbe im Template-Stil */
}

/* Seitenbeschreibung / Slogan */
.site-description {
    color: gray;
    font-size: 180%;
    font-style: italic;
    line-height: 200%;
}

/* Textfarbe */
body {
    color: #444;
}

/* Textgrößen */
p, li {
    font-size: 110%;
    line-height: 150%;
}


/* Modulrahmen und -schatten */
.well {
    padding: 0;
    background-color: #fff;
    border: 0px solid #e3e3e3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 0 0 rgba(0,0,0,0.05);
    box-shadow: inset 0 0 0 rgba(0,0,0,0.05);
}

/* Modulüberschriften */
.page-header {
    font-size: 150%;
    line-height: 150%;
}

/* Zitate */
blockquote p {
	margin-bottom: 0;
	font-size: 110%;
	line-height: 1.25;
  	font-style: italic;
}