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

.clearfix {
    display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}
/* close commented backslash hack */

/*** markup ***/
::-moz-selection {
    background: #D9D9D9;
    color: #000;
    text-shadow: none;
}
::selection {
    background: #D9D9D9;
    color: #000;
    text-shadow: none;
}

body {
    overflow-y: scroll;
}

html, 
input, 
select, 
textarea {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    color: #000;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #fcd600;
}

.sunrise {
    color: #000070;
}
.sunrise:hover,
.sunrise:focus {
    color:#0000ff;
}

.btn {
    background-color: #000;
    border: 2px solid #000;
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
    min-width: 175px; /* statt 150 */
	margin: 5px;
    padding: 0 5px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: bold;
}

.btn:hover {
    background-color: transparent;
    color: #000;
}

.btn:focus {
    outline: 0;
    opacity: 0.7;
}

/* form stuff */

input {
    border-radius: 0;
}

input:focus {
    outline: 0;
}

input[type=radio] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    padding: 0 !important;
    position: relative;
}

input[type=radio]:checked,
input[type=radio]:focus {
    border: 2px solid #000 !important;
}

input[type=radio]:checked::after,
input[type=radio]:focus::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #fcd600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

select {
    border: 2px solid #000;
    background-color: transparent;
    border-radius: 0;
    padding: 4px 10px;
    box-sizing: border-box;
}

select:focus {
    border: 2px solid #000 !important;
    outline: 0;
}
    

/* floating */
.right { float: right; }
.left { float: left; }
.clear { clear: both; }

/*** wrapper ***/
.wrapper {
    width: 1090px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media only screen and (max-width: 1100px) {
    .wrapper {
        width: 100%;
        padding-left:20px;
        padding-right:20px;
    }
}

/****** content ******/
#container {
    margin-top: 130px;
    min-height: 650px;
    -webkit-transition: padding 0.3s ease-in-out;
    transition: padding 0.3s ease-in-out;
}

@media only screen and (max-width: 900px) { /* statt 768 */
    #container {
        margin-top: 66px;
    }
}

#container h1 {
    /*text-transform: uppercase;*/
    font-size: 30px;
}
#container h2 {
    font-size: 25px;
}

#container h3 {
    font-size: 20px;
}

@media only screen and (max-width: 900px) { /* statt 768 */
    #container h1 {
        font-size: 25px;
    }

    #container h2 {
        font-size: 20px;
        color: #555555;
    }

    #container h3 {
        font-size: 20px;
    }
}

/***** home *****/

/* newsticker */
/* look */
.newsticker {
    background-color: #f2f2f2;
    width: 100%;
    height: 255px;
    margin: 15px 0 20px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.newsticker > h1 {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 3;
}

.newsticker > h1 a {
    padding: 0 30px;
    display: block;
    color: #000;
    background-color: #fcd600;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
}

.newsticker > h1 a:hover {
    color: #fff;
    background-color: #000;
}

/* image */
.newsticker .image {
    width:49%;
    float: left;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.newsticker .image img {
    display: block;
    width: 100%;
    height: auto;
	min-height: 100%;
}

.newsticker .image ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.newsticker .image ul > li {
    opacity: 0.5;
    visibility: hidden;
    -webkit-transition: opacity 1s linear, visibility 1s linear;
    transition: opacity 1s linear, visibility 1s linear;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.newsticker .image ul > li.current {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* content */
.newsticker .content {
    width:51%;
    float: left;
    padding: 30px 30px 60px;
    box-sizing: border-box;
    position: relative;
    min-height: 100%;
}

.newsticker .content ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.newsticker .content ul > li  {
    margin-bottom: 8px;
}

.newsticker .content ul > li::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 3;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px;
    border-color: transparent #f2f2f2 transparent transparent;
    position: absolute;
    left: -39px;
    margin-top: -5px;
}

.newsticker .content ul > li.current::before  {
    opacity: 1;
}

.newsticker .content ul > li a {
    font-weight: bold;
    color: #858585;
    -webkit-transition: color 1s ease;
    transition: color 1s ease;
}

.newsticker .content ul > li.current a,
.newsticker .content ul > li a:hover {
    color: #000;
}

@media only screen and (max-width: 900px) { /* statt 768 */
    .newsticker {
        height: auto;
    }

    .newsticker > h1 {
        bottom: auto;
        top: 177px;
    }
    .newsticker .image {
        width: 100%;
        float: none;
        height: 250px;
    }

    .newsticker .content {
        width: 100%;
        float: none;
        padding: 20px;
    }
}

/* newsticker2 */
/* look */
.newsticker2 {
    background-color: #f2f2f2;
    width: 100%;
    height: 255px;
    margin: 15px 0 20px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.newsticker2 > h1 {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 3;
}

.newsticker2 > h1 a {
    padding: 0 30px;
    display: block;
    color: #000;
    background-color: #fcd600;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
}

.newsticker2 > h1 a:hover {
    color: #fff;
    background-color: #000;
}

/* image */
.newsticker2 .image {
    width:49%;
    float: left;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.newsticker2 .image img {
    display: block;
    width: 100%;
    height: auto;
	min-height: 100%;
}

.newsticker2 .image ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.newsticker2 .image ul > li {
    opacity: 0.5;
    visibility: hidden;
    -webkit-transition: opacity 1s linear, visibility 1s linear;
    transition: opacity 1s linear, visibility 1s linear;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.newsticker2 .image ul > li.current2 {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* content */
.newsticker2 .content {
    width:51%;
    float: left;
    padding: 30px 30px 60px;
    box-sizing: border-box;
    position: relative;
    min-height: 100%;
}

.newsticker2 .content ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.newsticker2 .content ul > li  {
    margin-bottom: 8px;
}

.newsticker2 .content ul > li::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 3;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px;
    border-color: transparent #f2f2f2 transparent transparent;
    position: absolute;
    left: -39px;
    margin-top: -5px;
}

.newsticker2 .content ul > li.current2::before  {
    opacity: 1;
}

.newsticker2 .content ul > li a {
    font-weight: bold;
    color: #858585;
    -webkit-transition: color 1s ease;
    transition: color 1s ease;
}

.newsticker2 .content ul > li.current2 a,
.newsticker2 .content ul > li a:hover {
    color: #000;
}

@media only screen and (max-width: 900px) { /* statt 768 */
    .newsticker2 {
        height: auto;
    }

    .newsticker2 > h1 {
        bottom: auto;
        top: 177px;
    }
    .newsticker2 .image {
        width: 100%;
        float: none;
        height: 250px;
    }

    .newsticker2 .content {
        width: 100%;
        float: none;
        padding: 20px;
    }
}
/* profitcenter */
.profitcenter > ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.profitcenter ul > li  {
    margin-bottom: 8px;
}

/*.profitcenter > ul::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 3;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px;
    border-color: transparent #f2f2f2 transparent transparent;
    position: absolute;
    left: -39px;
    margin-top: -5px;
}

.profitcenter > ul::before  {
    opacity: 1;
}*/

.profitcenter > ul a {
    font-weight: bold;
    color: #858585;
    -webkit-transition: color 1s ease;
    transition: color 1s ease;
}

.profitcenter > ul.current a,
.profitcenter > ul a:hover {
    color: #000;
}


/* default */
#container .home {
    padding: 20px 0;
}

#container .home .default-content {
    text-align: center;
    width: 80%;
    margin: 80px auto;
}

#container .home .latest-issue {
    background-color: #fcd600;
    display: inline-block;
    width: 100%;
    position: relative;
}

#container .home .latest-issue .image,
#container .home .latest-issue .content {
    width: 51%; 
    float: left;
    box-sizing: border-box;
    overflow: hidden;
}

#container .home .latest-issue .image {
    width: 49%; 
    padding: 3%;
}

#container .home .latest-issue .image img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* content */
#container .home .latest-issue .action {
    position: absolute;
    top: 50%;
    left: 47%; /*54%;*/
    right: 0%; /*5%; */
    margin-top: -22px;
    box-sizing: border-box;
}

#container .home .latest-issue .btn {
    padding: 5px 10px;
	margin-left: 2%;
	margin-right: 2%;
    min-width:25%;
}

#container .home .latest-issue .btn {
    background-color: transparent;
    color: #000;
}

#container .home .latest-issue .btn:hover {
    background-color: #000;
    color: #fff;
}

#container .home h4 {
    font-size: 18px;
    margin: 0 0 20px;
}

@media only screen and (max-width: 1024px) { /* statt 980 */
    #container .home .latest-issue .btn {
        padding: 5px 10px;
        font-size: 15px;
    }
}


@media only screen and (max-width: 900px) { /* statt 768 */
    #container .home .latest-issue .image,
    #container .home .latest-issue .content {
        width: 100%;
        float: none;
    }
    
    #container .home .latest-issue .image img {
        margin: 0 auto;
    }
    
    #container .home .latest-issue .action {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-top: 0;
        padding: 4% 5% 4% 2%;
        display: inline-block;
        width: 100%;
    }
	#container .btn {
		width: 28%;
	}
}

@media only screen and (max-width: 580px) { /* statt 480 */
    #container .home .latest-issue .btn {
        font-size: 18px;
        width: 100%;
        clear: both;
        margin-bottom: 5px;
    }
	#container .latest-issue  {
		position: relative;
		top: auto;
	}
	
}

/*** boxes ***/
.home .box {
    background-color: #f2f2f2;
    width: 49%;
    float: left;
    margin-bottom: 2%;
}

.home .box:first-child,
.home .box:nth-child(2n+1) {  /* Mit LVB-Initiativen auf 2n setzen, ohne auf 2n+1 */
    clear: both;
    margin-right: 2%;
}

.home .box .content {
    padding: 20px 30px 40px;
    min-height: 150px;
    position: relative;
}

.home .box-member .content,
.home .box-newsletter .content {
    /*height: 210px;*/
}

.home .box .content .action,
.home .newsticker .content .action,
.home .newsticker2 .content .action {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
}

.home .box .content .btn-ref,
.home .newsticker .content .btn-ref,
.home .newsticker2 .content .btn-ref {
    float: right;
}

@media only screen and (max-width: 1100px) {
    .home .box-events .content,
    .home .box-dossiers .content,
    .home .box-member .content,
    .home .box-newsletter .content {
        height: auto;
        /*min-height: 200px;*/
    }
}

@media only screen and (max-width: 899px) { /* statt 767 */
    .home .box {
        width: 100%;
        float: none;
        clear: both;
        margin-bottom: 4%;
        min-height: 0;
    }

    .home .box:first-child,
    .home .box:nth-child(2n+1) {
        margin-right: 0;
    }

    .home .box .content {
        padding: 20px;
        height: auto;
        min-height: 0;
    }
    
    .home .box .content .btn-ref,
    .home .newsticker .newsticker2 .content .btn-ref {
        position: relative;
        bottom: auto;
        right: auto;
    }
	
	.home .box .content .action,
	.home .newsticker .newsticker2 .content .action {
		position: relative;
		bottom: auto;
   	 	right: auto;
    	left: auto;
	}
}

#container .home .box .content h1 {
    font-size: 25px;
    margin: 0 0 10px 0; 
}

/* dossiers */
.home .box.box-dossiers .image,
.home .box.box-events .image {
    position: relative;
}

.home .box.box-dossiers .image img,
.home .box.box-events .image img {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    display: block;
}

.home .box.box-dossiers .image h1,
.home .box.box-events .image h1 {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 1;
}

.home .box.box-dossiers .image a h1,
.home .box.box-events .image a h1 {
    padding: 0 30px;
    display: block;
    color: #000;
    background-color: #fcd600;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
}

.home .box.box-dossiers .image:hover h1,
.home .box.box-events .image:hover h1 {
    color: #fff;
    background-color: #000;
}

.home .box.box-dossiers p {
    margin: 0 0 20px 0;
}

/* events */
.home .box.box-events dl {
    margin: 0 0 20px 0;
}

.home .box.box-events dl dt {
    clear: both;
    float: left;
    margin-right: 2%;
    font-weight: bold;
    max-width: 30%;
}

.home .box.box-events dl dd {
    float: left;
    margin: 0 0 2px 0;
    max-width: 60%;
}

@media only screen and (max-width: 640px) {
    .home .box.box-events dl dt {
        float: none;
        margin-right: 0;
        max-width: 100%;
    }
    
    .home .box.box-events dl dd {
        float: none;
        clear: both;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
}

/* newsletter */
.home .box-newsletter .newsletter {
    background-color: #fff;
    border: 2px solid #000;
    padding: 3px;
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 30px; right: 30px;
}

.home .box-newsletter .newsletter input {
    border: 0 none;
    float: left;
    width: 63%;
    padding: 5px;
    box-sizing: border-box;
}

.home .box-newsletter .newsletter .btn {
    float: right;
    width: 35%;
    padding: 0;
    min-width: 0;
}

@media only screen and (max-width: 899px) { /* statt 767 */
    .home .box-newsletter .newsletter {
        position: relative;
        bottom: auto;
        left: auto; right: auto;
        width: 100%;
    }
}

@media only screen and (max-width: 580px) { /* statt 480 */
    .home .box-newsletter .newsletter {
        border: 0;
        padding: 0;
        background-color: transparent;
        width: 100%;
    }

    .home .box-newsletter .newsletter input {
        float: none;
        width: 100%;
        background-color: #fff;
        border: 2px solid #000;
        padding: 3px;
    }

    .home .box-newsletter .newsletter .btn {
        float: right;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }
}




/***** site *****/
#container .site {
    min-height: 400px;
    padding: 20px 0 80px;
}

/*** sidebar, themebar, and themetitle ***/
#sidebar,
#themebar {
    width: 25%;
    padding-right:5%;
    float: left;
}
#platzhalter {
	display: none;
}

.fullsite #sidebar,
.fullsite #themebar {
    display: none;
}

@media only screen and (max-width: 900px) { /* statt 768 */
    #sidebar {
        display: none;
    }
	#themebar {
		width: 100%;
	}
	#platzhalter {
		display: block;
	}
}

/* navigation */
#sidebar nav.sub ul,
#themebar nav.sub ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#sidebar nav.sub ul > li a,
#themebar nav.sub ul > li a {
    background-color: #f2f2f2;
    display: block;
    border-top: 1px solid #dbdbdb;
    padding: 15px 20px;
}

#sidebar nav.sub ul > li:first-child a,
#themebar nav.sub ul > li:first-child a {
    border-top: 0 none;
}

#sidebar nav.sub ul > li a:hover, 
#sidebar nav.sub ul > li a:focus, 
#sidebar nav.sub ul > li.current a,
#themebar nav.sub ul > li a:hover, 
#themebar nav.sub ul > li a:focus, 
#themebar nav.sub ul > li.current a {
    background-color: #fcd600;
    color: #000;
}


/*** content ***/
#content {
    width:70%;
    float: right;
}

.fullsite #content {
    width: 100%;
    float: none;
}

#content a {
/*    color: #858585; Änderung */
	color: #990000;
}

#content a.btn {
    color: #fff;
}

#content a:hover,
#content a:focus {
/*    color: #000; Änderung */
	color: #ff0000;
}

#content img {
    max-width:100%;
    height: auto;
}

#content > h1:first-child {
    margin: 0 0 40px 0;
}

@media only screen and (max-width: 900px) { /* statt 768 */
    #content {
        width: 100%;
        float: none;
    }
}


/** team **/
#content .team {
    list-style: none;
    margin: 0;
    padding: 0;
}

#content .team h3 {
    margin: 0;
}

#content .team h3:first-child {
    color: #555555;
    margin-bottom: 5px;
}

#content .team > li {
    margin-bottom: 40px;
    background-color: #f1f1f1;
    display: inline-block;
    width: 100%;
}

#content .team > li .image {
    float: left;
    max-width: 40%;
}

#content .team > li .image img { 
    display: block;
}

#content .team > li .info {
    float: left;
    padding: 2.5% 4%;
    box-sizing: border-box;
    max-width: 60%;
}

#content .team > li .info p {
    margin: 30px 0 0 0;
}

@media only screen and (max-width:899px) { /* statt 767 */
    #content .team > li {
        width: 277px;
        margin: 0 auto 30px;
        display: block;
    }

    #content .team > li .image {
        float: none;
        clear: both;
        width: 277px;
        max-width: 100%;
    }

    #content .team > li .image img { 
        min-height: 0;
    }

    #content .team > li .info {
        float: none;
        clear: both;
        width: 100%;
        padding: 6%;
        max-width: 100%;
    }
}

/** events **/
#content .events {
    list-style: none;
    margin: 0;
    padding: 0;
}

#content .events > li {
    margin-bottom: 45px;
}

#content .events h2,
#content .events p {
    margin: 0;
}

#content .events h2:first-child {
    color: #555555;
}

/** new **/
#content .nextevent .infos {
    padding: 10px 0 30px;
}

#content .nextevent .infos h3 {
    margin: 0;
}

#content .nextevent ol {
    padding: 0 0 0 30px;
}

/** latest **/
#content .actions {
    margin-bottom: 40px;
}

#content .latest .image {
    width: 30%;
    float: left;
    margin-right: 2%;
}

#content .smallimage {
	width: 15%;
	float: left;
	margin-right: 2%;
}

#content .latest .image img {
    max-width: 100%;
    height: auto;
}

#content .latest .content {
    width: 68%;
    float: left;
}

#content .latest .content p {
    margin: 0 0 30px 0;
}

@media only screen and (max-width: 580px) { /* statt 480 */
    #content .latest .image {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    #content .latest .content {
        width: 100%;
        float: none;
    }

}

/** articles **/
#content .articles {
    margin-top: 50px;
}

#content .articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#content .articles ul > li {
    display: inline-block;
    width: 100%;
    clear: both;
    padding-bottom: 25px;
}

#content .articles ul > li .image {
    width: 8%;
    float: left;
    clear: both;
}

#content .articles ul > li .image img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#content .articles ul > li .content {
    width: 92%;
    float: left;
}

#content .articles ul > li .content h3,
#content .articles ul > li .content p {
    margin: 0;
}

#content .articles ul > li .content h3 a {
    color: #000;
}

/** archiv **/
#content .archiv {
    list-style: none;
    margin: 0;
    padding: 0;
}

#content .archiv > li {
    padding-bottom: 30px;
    clear: both;
    display: inline-block;
    width: 100%;
}

#content .archiv > li .image {
    width: 12%;
    float: left;
    clear: both;
    margin-right:3%;
}

#content .archiv > li .image img {
    max-width: 100%;
    height: auto;
    display: block;
}

#content .archiv > li .content {
    width:52%;
    float: left;
    margin-right:3%;
}

#content .archiv > li .content h1,
#content .archiv > li .content h2 {
    margin: 0;
    text-transform: none;
    font-size: 30px;
}

#content .archiv > li .link {
    width: 25%;
    float: right;
    text-align:right;
}

#content .archiv > li .link .btn {
    width: 100%;
    padding: 0;
    min-width: 0;
}

/*** contact form ***/
#content form fieldset {
    outline: 0;
    border: 0 none;
    padding: 0;
    margin: 0 0 40px 0;
}

#content input,
#content textarea {
    border: 2px solid #000;
    background-color: transparent;
    appearance: none;
    padding: 4px 10px;
    box-sizing: border-box;
}
#content input.slider {
	border-style: none;
	padding: 0;
	box-sizing: content-box;
}

#content textarea {
    max-height: 300px;
    width: 100%;
    resize: vertical;
}

#content input:focus,
#content textarea:focus {
    border: 2px solid #828282;
}

#content input.slider:focus {
	border-style: none;
	padding: 0;
	box-sizing: content-box;
}
/* userinfos */
#content .joining-form .userinfos dl input,
#content .joining-form .userinfos dl select {
    width: 100%;
}


#content .joining-form .userinfos dl dt {
    width: 30%;
    float: left;
    clear: both;
    color: #828282;
    margin-bottom:10px;
    line-height: 35px;
}

#content .joining-form .userinfos dl dd {
    width: 70%;
    float: left;
    margin: 0;
}

#content .joining-form .userinfos #plz, 
#content .joining-form .userinfos #plz_old {
    width: 35%;
    margin-right: 5%;
}

#content .joining-form .userinfos #city,
#content .joining-form .userinfos #city_old {
    width: 60%;
}

/* section */
#content .joining-form dl dt {
    width: 5%;
    float: left;
    clear: both;
    color: #828282;
    margin-bottom:10px;
}

#content .joining-form dl dd {
    width: 90%;
    float: left;
    margin: 0;
}

/* comment */
#content .joining-form .comment textarea {
    height:150px;
}

@media only screen and (max-width: 580px) { /* statt 480 */
    #content .joining-form .userinfos dl dt {
        width: 40%;
        margin-bottom:10px;
        line-height: 35px;
        font-size: 16px;
    }

    #content .joining-form .userinfos dl dd {
        width: 60%;
    }

    #content .joining-form .sections dl dt {
        width: 15%;
    }

    #content .joining-form .sections dl dd {
        width: 75%;
        margin-bottom: 10px;
    }
}

/* tabellen */
#content table {
    width: 100%;
}

#content table td {
    padding: 5px 3px;
	vertical-align:top;
}
/*
#content table tr:nth-child(even) {
    background-color: #f2f2f2;
}
*/
#content table thead td {
    font-weight: bold;
}

.social-buttons {
    clear: both;
    margin-top: 20px;
}
.social-buttons > div {
    float: left;
    margin-right: 20px;
}
.social-buttons .social-facebook {
    margin-top: -4px;
}

/* Links auf Startseite */
a.normalcontent:hover, a.normalcontent:focus {
    color: #000;
}
a.normalcontent {
    color: #858585;
}

/* Slider für den Rentenrechner */

input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    
    /*fix for FF unable to apply focus style bug */
    border: 1px solid white;
    
    /*required for proper track sizing in FF*/
    width: 200px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 200px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: solid;
    border-width:2px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #FCD600;
    margin-top: -4px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

input[type=range]::-moz-range-track {
    width: 200px;
    height: 8px;
    background: #777;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: solid;
    border-width: 2px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #FCD600;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 200px;
    height: 8px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: solid;
    border-width:2px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #FCD600;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}
input[type=range]::-ms-tooltip {
  display:none;
}