/* CSS fuer den Spielplan */


@media only screen and (max-width: 600px) {
	.s_large {
		display: none;
		background-color: red;
	}
	#s_game {
		max-width: 600px;
	}
	.s_logo_l {
		padding-left: 15px;
	}
	.s_logo_r {
		padding-right: 15px;
	}
}

@media only screen and (min-width: 600px) {
	.s_small {
		display: none;
	}

	#s_game {
		min-width: 600px;
	}
	.s_logo_l {
		padding-left: 15px;
	}
	.s_logo_r {
		padding-right: 15px;
	}
}
#s_game {
	width: 100%;
}
#s_game tr {
	line-height: 50px;
}
#s_game {
	width: 100%;
	margin:0 auto;
}
.s_link {
	text-decoration: none;
	border-bottom:0px solid !important;
}

.s_center {
	text-align:center;
}

.s_left {
	text-align: left;
}

.s_right {
	text-align: right;
}

.s_hidden {
	visibility: hidden;
	display: inline;
}
.s_border {
	border:1px solid black;
}
.s_logo {
	width: 30px;
	height: 30px;
}


.s_del_oben tr td {
	vertical-align: top;
}

.s_del_details {
	background-color: #ddd;
	padding: 10px;
	width: 100%;
}

summary:focus {
	outline: none;
}