/****** 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: #248BCB;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #248BCB;
    color: #fff;
    text-shadow: none;
}

/***** default *****/
html {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 25px;
}

body {
overflow-y:scroll;
}

a {
	text-decoration: none;
	color: #248BCB;
	-webkit-transition: color 0.5s ease;
	transition: color 0.5s ease;
}

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

h1 {
	font-size: 25px;
	text-transform: uppercase;
	margin: 15px 0;
}

h2 {
	font-size: 20px;
}

@media only screen and (max-width: 450px) {
	html {
		font-size: 15px;
		line-height: normal;
	}
	h1 {
		font-size: 20px;
	}

	h2 {
		font-size: 18px;
	}
}

.btn {
	background-color: #248BCB; 
    padding: 2px 30px;
    font: 15px;
    text-decoration: none;
    border: 2px solid #248BCB;
    color: #fff;
    display: inline-block;
    margin: 1px 0;
	box-sizing: border-box;
	-webkit-transition: color 0.5s ease, background-color 0.5s ease;
	transition: color 0.5s ease, background-color 0.5s ease;
	text-align: center;
}

.btn:hover,
.btn:focus {
	color: #248BCB;
	background-color: transparent; 
}

.wrapper {
	width: 1090px;
	margin: 0 auto;
	box-sizing: border-box;
	max-width: 100%;
}

@media only screen and (max-width: 1130px) {
	.wrapper {
		padding: 0 20px;
	}
}

.highlight {
	color: #248BCB;
}


/***** header *****/
header.main .top {
	height: 74px;
	padding: 34px 0;
}

header.main .top .logo {
	float: left;
	display: block;
	width: 100px;
    height: 72px;
}
header.main .top .logo img {
	width: 100%;
	height: auto;
}

header.main .top > h1 {
	float: right;
	font-size: 22px;
	font-weight: bold;
	text-align: right;
	text-transform: none;
	line-height: normal;
}


@media only screen and (max-width: 1130px) {
	header.main .top {
		padding: 24px 0;
	}
}

@media only screen and (max-width: 768px) {
	header.main .top {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 50;
		padding: 24px 20px;
		background-color: #fff;
	}

	header.main .top > h1 {
		float: left;
		text-align: left;
		margin: 5px 0 0 10px;
	}
}

@media only screen and (max-width: 480px) {
header.main .top .logo {
width: auto;
}
	header.main .top .logo img {
		width: 50px;
height: 34px;
	}
		
	header.main .top {
		height: 40px;
		padding: 16px 20px;
	}
	
	header.main .top > h1 {
		font-size: 14px;
		margin-top: 0;
		line-height: 18px;
		font-weight: normal;
	}
}

/** emo **/
.emo {
	max-width: 100%;
}

.emo > img {
	display: block;
	max-width: 100%;
	height: auto;
}
/*** navigation ***/
header.main nav.main {
	padding: 27px 0;
	border-bottom: 2px solid #000;
}

header.main nav.main ul.navi {
	list-style: none;
	margin: 0;
	padding: 0;
}

header.main nav.main ul.navi > li {
	float: left;
	margin-right: 20px;
}

header.main nav.main ul.navi > li a {
	text-transform: uppercase;
	font-weight: bold;
	color: #000;
	font-size: 18px;
}

header.main nav.main ul.navi > li a:hover,
header.main nav.main ul.navi > li a:focus,
header.main nav.main ul.navi > li.current a {
	color: #248BCB;
}

/** mobile navi **/
header.main nav.main .mobile-navi {
	display: none;
}

@media only screen and (max-width: 768px) {
	header.main nav.mobile-navi {
	    cursor: pointer;
	    display: block;
	}
	
	header.main nav.mobile-navi .lines {
		float: right;
		margin: 0 0 0 10px;
		position: relative;
		width: 25px;
	}
	
	header.main nav.mobile-navi .lines > span {
	    background: none repeat scroll 0 0 #000;
	    display: block;
	    height: 3px;
		margin: 5px 0 0 0;
	    width: 25px;
	    z-index: 1;
	}
	
	header.main nav.main {
		display: none;
		position: fixed;
		top: 110px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #fff;
		background-color: rgba(255,255,255,0.8);
	}

	header.main.expanded nav.main {
		display: block;
	}

	header.main nav.main ul.navi {
		position: absolute;
		top: 50%;
		left: 50%;
		margin: -134px 0 0 -99px;
	}

	header.main nav.main ul.navi > li {
		float: none;
		clear: both;
		margin: 15px 5px;
		text-align: center;
	}

	header.main nav.main ul.navi > li a {
		font-size: 20px;
	}

	header.main .emo {
		margin-top: 122px;
	}
}

@media only screen and (max-width: 480px) {
	header.main nav.main {
		top: 70px;
	}

	header.main .emo {
		margin-top: 72px;
	}
	
}



/***** content *****/
#content {
	padding: 20px 0 30px 0;
	min-height: 300px;
}
#content .colset {
	display: inline-block;
	width: 100%;
}

#content .colset > .col {
	float: left;
	width: 47%;
}

#content .colset > .col:first-child {
	margin-right: 6%;
}

@media only screen and (max-width: 900px) {
	#content .colset > .col {
		float: none;
		clear: both;
		width: 100%;
	}

	#content .colset > .col:first-child {
		margin-right: 0;
	}
}


/*** member home & verband***/
.member .member-in {
	border: 2px solid #ccc;
	padding: 25px;
}

.member .member-in .content h2 {
	font-size: 35px;
	line-height: 40px;
}

.member .member-in .image > img {
	max-width: 100%;
	height: auto;
}

/* member home */
.member-home .member-in .image {
	float: left;
	width: 20%;
	margin-right: 3%;
}


.member-home .member-in .content {
	float: left;
	width: 77%;
}

.member-home .member-in .content h2 {
	display: none;
}

.member-home .member-in .content .btn {
	font-size: 25px;
	text-transform: uppercase;
	margin-top: 7%;
	float: right;
}

/* member verband */
.member-verband {
	float: right;
	width: 25%;
	text-align: center;
}

@media only screen and (max-width: 1130px) {
	.member {
		float: none;
		width: 100%;
		text-align: left;
		margin: 20px 0;
	}

	.member .member-in .image {
		float: left;
		width: 20%;
		margin-right: 3%;
	}

	.member .member-in .content {
		float: left;
		width: 77%;
		text-align: right;
	}

	.member .member-in .content h2 {
		display: block;
		margin: 10px 0;
		line-height: normal;
	}

	.member-home .member-in .content .btn {
		font-size: 15px;
		text-transform: none;
		margin-top: 0;
		float: right;
	}
}

@media only screen and (max-width: 768px) {
	.member .member-in .content {
		text-align: left;
	}

	.member .member-in .content h2 {
		font-size: 20px;
		margin-top: 0;
	}

	.member .member-in .content .btn {
		font-size: 15px;
		float: left;
	}
}

@media only screen and (max-width: 450px) {
	.member .member-in {
		padding: 18px;
	}

	.member .member-in .image {
		display: none;
	}

	.member .member-in .content {
		width: 100%;
	}

	.member .member-in .content .btn {
		width: 100%;
	}
}

/*** zusatz: work ***/
.work {
	margin-top: 40px;
	text-align: center;
}

.work h2 {
	margin-top: 0;
}

/*** aktuell / veranstaltungen ***/
.homelist {
	border-top: 2px solid #ccc;
	padding: 20px 0;
}

.homelist dl > dt {
	color: #868686;
	float: left;
	width: 18%;
	margin: 0 2% 8px 0;
	clear: both;
}

.homelist dl > dd {
	width: 80%;
	float: left;
	font-weight: bold;
	margin: 0 0 8px 0;
}

.homelist .btn {
	float: right;
	margin-top: 20px;
}

@media only screen and (max-width: 1130px) {
	.homelist dl > dt {
		width: 20%;
	}

	.homelist dl > dd {
		width: 78%;
	}	
}

@media only screen and (max-width: 900px) {
	.homelist dl > dt {
		width: 13%;
	}

	.homelist dl > dd {
		width: 80%;
	}	
}

@media only screen and (max-width: 600px) {
	.homelist dl > dt {
		width: 25%;
	}

	.homelist dl > dd {
		width: 73%;
	}	
}


/* overview */
.listoverview > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.listoverview > ul > li {
	margin: 0 0 30px 0;
}

h3.date {
	color: #868686;
	font-size: 20px;
	margin: 0;
	font-weight: normal;
}

.listoverview > ul h4 {
	font-size: 20px;
	margin: 0;
}


.listoverview > ul p {
	margin: 0 0 10px 0;
}



/***** footer *****/
footer.main {
	padding: 34px 0;
	border-top: 2px solid #000;
}

footer.main h1 {
	margin-top: 0;
}

/* contact */
footer.main .contact {
	float: left;
}

footer.main .contact .address {
	float: left;
	margin-right: 60px;
}

footer.main .contact .address a {
	color: #000;
}

footer.main .contact .address a:hover,
footer.main .contact .address a:focus {
	color: #248BCB;
}

/* swisslos */
footer.main .swisslos {
	float: right;
	margin: 50px  25px 0 0;
}

/* member */
footer.main .memberof {
	float: right;
	text-align: right;
}

@media only screen and (max-width: 1050px) {
	footer.main .memberof {
		float: left;
		text-align: left;
		clear: both;
	}
	footer.main .contact .address {
		margin-bottom: 20px;
		float: left;
	}

	footer.main .swisslos {
		float: left;
		margin: 50px 0 0 40px;
	}
}

@media only screen and (max-width: 490px) {

	footer.main .swisslos {
		clear: both;
		margin: 30px 0 0 0;
	}
}

/** bottom **/
footer.bottom {
	background-color: #000000;
	height: 50px;
}

footer.bottom .sxlink {
	color: #ffffff; 
	text-decoration: none;
	margin: 15px 0 0;
	display: inline-block;
	font-size: 18px;
	transition: opacity 0.5s ease;
}

footer.bottom .sxlink:hover {
	opacity: 0.7;
}

/*** formular ***/
.form {
	width: 80%;
}

.form fieldset {
	border: 0 none;
	margin: 0;
	padding: 0;
}

.form dl {
	padding: 20px 0;
	margin: 0;
}

.form dl > dt {
	float: left;
	width: 28%;
	line-height: 28px;
	margin: 0 0 10px 0;
	clear: both;
	min-height: 40px;
}

.form dl > dd {
	width: 70%;
	float: left;
	font-weight: 400;
	margin: 0;
}

.form dl > dd.plz-city > input:first-child {
	width: 20%;
	margin-right: 1%;
	float: left;
}

.form dl > dd.plz-city > input:last-child {
	width: 79%;
	float: right;
}



@media only screen and (max-width: 1000px) {
	.form {
		width: 100%;
	}
}

@media only screen and (max-width: 600px) {
	.form dl > dt {
		margin-bottom: 0;
		line-height: normal;
		min-height: 0;
	}
	.form dl > dd {
		clear: left;
		width: 100%;
		margin-bottom: 10px;
	}
}

/* button */
.form dl .btn {
	float: right;
	margin-top: 40px;
}

/* select */
.form select {
	width: 100%;
	padding: 5px 15px;
	border: 2px solid #ccc;
	box-sizing: border-box;
}

 
.form select:focus { 
	border: 2px solid #248BCB;

}

/* input fields */
.form input {
	padding: 6px 15px;
	width: 100%;
    margin: 0;
	background: #fff;
    outline: none;
    display: inline-block;
	border: 2px solid #ccc;
	box-sizing: border-box;
	height: 40px;
}

.form input:focus {
	border: 2px solid #248BCB;
}

/* radio boxes */
.form input[type=radio].styled-radio {
	display: none;
}

.form input[type=radio].styled-radio + label {
	position: relative;
	padding-left: 40px;
	display: inline-block;
}


.form input[type=radio].styled-radio + label::before {
	content: "";
    background-color: #fff;
    border: 2px solid #ccc;
    -webkit-appearance: none;
	appearance: none;
	display: inline-block;
	margin: 0 20px 0 0;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0px;
	top: 0;
	cursor: pointer;
}

.form input[type=radio].styled-radio:checked + label::before {
	background-color: #248BCB;
	border: 2px solid #000;
}

/* special */
.form .special-radio > label {
	margin-top: 10px;
}

.form .special-radio > p {
	font-size: 14px;
	margin: 0;
}

.form #stufe-other {
	margin: 10px 0;
}

.form .hidden {
	display: none;
}


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

.team > li {
	width: 50%;
	float: left;
	margin-bottom: 45px;
}

.team > li:nth-child(2n+1) {
	clear: both;
}
	

.team > li .image {
	float: left;
	width: 40%;
}

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

.team > li .details {
	float: left;
	width: 60%;
	padding: 0 20px;
	box-sizing: border-box;
}

.team > li .details > h2 {
	text-transform: uppercase;
	margin: 0;
}
.team > li .details > p {
	margin: 0;
}
.team > li .details > h3 {
	margin: 0 0 30px 0;
	font-size: 18px;
	font-weight: normal;
}

@media only screen and (max-width: 767px) {
	.team > li {
		width: 100%;
		float: none;
		clear: both;
		display: inline-block;
	}
}

@media only screen and (max-width: 370px) {
	.team > li .image {
		width: 100%;
		float: none;
		margin-bottom: 15px;
	}
	.team > li .details {
		width: 100%;
		float: none;
		text-align: left;
		font-size: 15px;
		padding-left: 0;
	}
}

/***infos***/

.info {
	float:left;
	width: 70%;
	margin: 0 auto;
	padding: 0;
}

.info ol,
.info ul {
	padding-left: 30px;
}
.info ul.line-list {
	list-style: none;
}

.info ul.line-list > li:before {
	content:"-";
	display: inline-block;
	margin-left: -9px;
}

@media only screen and (max-width: 1130px) {
	.info {
		float: none;
		width: 100%;
	}
}