/* a:link {
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
	font-weight: bold;
	background-color: #ff0;
}

a:active {
	text-decoration: none;
	font-weight: bold;
}

a:focus {
	text-decoration: none;
	font-weight: bold;
} */
a img {
	border: none;
}

body {
	background-color: #FFFFFF;
}

div.wrapper {
	margin: 0px auto;
	width: 900px;
}

tbody {
	text-align: left;
}

table#header {
	height: 80px;
	width: 900px;
	background-image: url("../images/bgsvlogo01.jpg");
}

table#maincontent {
	height: 524px;
	width: 900px;
	background-image: url("../images/bgsvbackground.jpg");
}

td.content {
	vertical-align: top;
}

td#sidecontent {
	widt: 584px;
	height: 180px;
}

td#sideimage {
	width: 280px;
	height: 180px;
}

td#content {
	vertical-align: top;
	width: 840px;
	height: 308px;
}

div.content {
	text-align: left;
	margin: 0px;
}

li.turnier {
	text-decoration: underline;
}

li.turnier:hover {
	text-decoration: none;
}

/* css definitionen für scrollable */
div.scrollable { /* required settings */
	position: relative;
	overflow: hidden;
	width: 800px;
	height: 288px;
	/* custom decorations */
	padding: 0px 0px;
	border: none;
	background-color: #555;
	/* size */
	size: 4;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div#items { /* this cannot be too large */
	width: 20000em;
	position: absolute;
	clear: both;
	/* decoration */
	margin-left: 0px;
}

/* single scrollable item */
div.scrollable div#items div {
	float: left;
	/* custom decoration */
	text-align: left;
	width: 199px;
	height: 286px;
	padding: 0px 0px;
	font-size: 12px;
	font-family: 'bitstream vera sans';
	border-left: 1px solid #333;
	background: #123
		url("../images/h150.png")
		repeat-x 0 198px;
	color:#fff;
	margin-right: 0px;
	-moz-border-radius: 5px;
}

div.scrollable div#items div h3 {
	font-size: 14px;
	font-weight: bold;
}

div.scrollable div#items div h3 em {
	color: yellow;
}

div.scrollable div#items div:hover {
	background-color:#444;
	cursor:default;
}

/* active item */
div.scrollable div#items div.active {
	background-color:#466;

}