/* CSS Dokument ---------------------------------------------- */
/* nicht komprimiert ----------------------------------------- */
/* etwas "aufgeblasen" - ein koenigreich fuer ein CMS! ;-) --- */
/* aber: valide! :-) ----------------------------------------- */

/* ------------------------------------------------------------ */
/* --- Diverses aus "70 Expert Ideas For Better CSS Coding" --- */
/* ------------------------------------------------------------ */

html {
	font-size: 100.01%;
}
body {
	line-height: 1.4em;
}
/* ------------------------------------------------------------ */
/* --- "Clearing floats", 21st Century Style ------------------ */
/* ------------------------------------------------------------ */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
/* End hide from IE-mac */

/* ------------------------------------------------------- */
/* --- Eigene grundstzliche globale CSS-Eigenschaften --- */
/* ------------------------------------------------------- */

html { /*** vertikale scrollbar fuer firefox und safari ***/
	height: 100%;
	margin-bottom: 1px;
}
html, body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color:#000000;
	font-size: 0.95em;
	text-align: center; /* zentriert DIVs in IE 5.01 und IE 5.5 (=Bug) */
}
body {
	padding: 20px 0px 0px 0px; /* oberer schwarzer rand - anmerkung: unterer rand wird in #navigation definiert (ansonsten anzeigeprobleme im FF) */
}
.semantic {
	position: absolute!important;
	left: -739px!important;
	top: -978px!important;
	width: 173px!important;
	height: 111px!important;
	overflow: hidden!important;
}
.inline {
	display:inline;
	padding-right: 0.5em;
}
#page {
  position: relative;
	background-image:url(../images/hintergruende/hintergrund.gif);
	background-repeat: no-repeat;
	background-color: #FF0;
	width: 970px;
	min-height: 560px;
	height: auto !important;  /* fr moderne Browser */
	height: 560px;  /*fr den IE */ /* rowa: hab irgendwann mal 20px mehr als bei min-height gehabt - warum weiss ich nicht - mal sehen, ob das mit irgendeinem problem mal zu tun gehabt hat... */
	margin: 0px auto 0px auto;
	padding-bottom: 40px;
	text-align: left; /* ist ntig um das "BODY {TEXT-ALIGN: CENTER}" fr den text aufzuheben */
}
/* --- BEGINN: Hintergrundbild entsprechend der level-1-men-class --- */

body.body-class-index #page {
	background-image:url(../images/hintergruende/hintergrund-index.gif);
}
body.body-class-index-movie #page {
	background-image:url(../images/hintergruende/hintergrund-index.gif);
}
body.body-class-the-movie #page {
	background-image:url(../images/hintergruende/hintergrund-the-movie.gif);
}
body.body-class-the-movie-2008 #page {
	background-image:url(../images/hintergruende/hintergrund-the-movie-2008.gif);
}
body.body-class-kurse #page {
	background-image:url(../images/hintergruende/hintergrund-kurse.gif);
}
body.body-class-know-how #page {
	background-image:url(../images/hintergruende/hintergrund-know-how.gif);
}
body.body-class-gallerie #page, body.body-class-gallerie-bilder #page, body.body-class-gallerie-videos #page {
	background-image:url(../images/hintergruende/hintergrund-gallerie.gif);
}
body.body-class-shop #page {
	background-image:url(../images/hintergruende/hintergrund-shop.gif);
}
body.body-class-kontakt #page {
	background-image:url(../images/hintergruende/hintergrund-kontakt.gif);
}
body.body-class-impressum #page {
	background-image:url(../images/hintergruende/hintergrund-impressum.gif);
}
body.body-class-referenzen #page {
	background-image:url(../images/hintergruende/hintergrund-referenzen.gif);
}
body.body-class-slackliner-at-team #page {
	background-image:url(../images/hintergruende/hintergrund-slackliner-at-team.gif);
}
/* --- ENDE: Hintergrundbild entsprechend der level-1-men-class --- */

#navigation {
	color: #FFF;
	text-transform: lowercase;
	top: 0px;
	font-size: 0.85em;
	min-height: 185px;
	height: auto !important;  /* fr moderne Browser */
	height: 185px;  /*fr den IE */
	float: right;
	z-index: 100;
}
#navigation * {
	background-color: #000000;
	color: #FFF;
	text-decoration: none;
	white-space: nowrap;
	z-index: 100;
}
/* ------------------------------------------------------------ */
/* -------------- BEGINN - son of suckerfisch menu ------------ */
/* ------------------------------------------------------------ */

/* -------------- basic styling ------------------------------- */
#navigation #nav, #navigation #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#navigation #nav span.level-1,			/* rowa */ #navigation #nav span.level-1-last,		/* rowa */ #navigation #nav a {
	display: block;/*	width: 10em; /* ntig, da sonst opera verrckt spielt */
}
#navigation #nav li {
	float: left;/*	width: 10em; /* ntig, da sonst opera verrckt spielt */
}
/* -------------- weiteres styling - 1 level drop down---------- */
#navigation #nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;
}
#navigation #nav li:hover ul, #navigation #nav li.sfhover ul {
	left: auto;
}
/* -------------- weiteres styling - für multilevel dropdown --------- */
#navigation #nav li ul ul {
	margin: -1em 0 0 10em; /*wird weiter unten durch "margin: -2em 0 0 10em" berschrieben */
}
#navigation #nav, #navigation #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
/* -------------- weiteres styling - für 4 level drop down --------- */

#navigation #nav li:hover ul ul, #navigation #nav li:hover ul ul ul, #navigation #nav li:hover ul ul ul ul, #navigation #nav li.sfhover ul ul, #navigation #nav li.sfhover ul ul ul, #navigation #nav li.sfhover ul ul ul ul {
	left: -999em;
}
#navigation #nav li:hover ul, #navigation #nav li li:hover ul, #navigation #nav li li li:hover ul, #navigation #nav li li li li:hover ul, #navigation #nav li.sfhover ul, #navigation #nav li li.sfhover ul, #navigation #nav li li li.sfhover ul, #navigation #nav li li li li.sfhover ul {
	left: auto;
}
/* ------------------------------------------------------------ */
/* -------------- rowa styling von son of suckerfish ---------- */
/* ------------------------------------------------------------ */

/* -------------- level 1-------------------------------------- */


#navigation #nav li.level-1 {
	padding: 0.8em 0 0.8em 0;
}
#navigation #nav li.level-1-last {
	padding: 0.8em 0 0.8em 0;
}
#navigation #nav a.level-1, #navigation #nav span.level-1 {
	border-right: #FFFFFF solid 1px;
	line-height: 1em;
	padding: 0 0.5em 0 0.5em;
}
#navigation #nav a.level-1-last, #navigation #nav span.level-1-last {
	border-right: none;
	line-height: 1em;
	padding: 0 0.6em 0 0.6em;
}
/* -------------- level 2, 3 und 4 ------------------------------ */

#navigation #nav ul.level-2 {
	margin: 0.8em 0 0 0;
	padding: 0 0 0.6em 0;
}
#navigation #nav ul.level-3, #navigation #nav ul.level-4 {
	margin: -2em 0 0 10em; /* veraenderung standard-margin-einstellungen "margin: -1em 0 0 10em;" (s.o.)  --- 1.4em + 0.6em = 2em*/
	padding: 0.6em 0 0.6em 0;
}
#navigation #nav li.level-2, #navigation #nav li.level-3, #navigation #nav li.level-4 {
	line-height: 1em;
	display: inline;
	float: none;
}
#navigation #nav a.level-2, #navigation #nav a.level-3, #navigation #nav a.level-4 {
	line-height: 1.4em;
	padding: 0 0.6em 0 0.6em;
}
#navigation #nav ul.level-2, #navigation #nav ul.level-3, #navigation #nav ul.level-4 {
	width: 12em; /* veraenderung standard-width-einstellungen "width: 10em;" */
}
#navigation #nav ul.level-2 li.weitere-menueunterpunkte a.level-2, #navigation #nav ul.level-3 li.weitere-menueunterpunkte a.level-3 {
	background-image: url(../images/diverses/pfeil-weitere-menueunterpunkte.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
}
/* --- vernderung der breite der level-2-menuepunkte von bestimmten level-1-menue-punkten --- */

#navigation #nav li.menuepunkt-gallerie ul, #navigation #nav li.menuepunkt-gallerie ul li {
	width: 8em;
}
#navigation #nav li.menuepunkt-gallerie ul ul {
	margin-left: 8em;
	width: 15em;
}
#navigation #nav li.menuepunkt-kurse ul, #navigation #nav li.menuepunkt-kurse ul li {
	width: 6em;
}
#navigation #nav li.menuepunkt-kurse ul ul {
	margin-left: 6em;
	width: 7em;
}
#navigation #nav li.menuepunkt-shop ul, #navigation #nav li.menuepunkt-shop ul li {
	width: 10em;
}
#navigation #nav li.menuepunkt-know-how ul, #navigation #nav li.menuepunkt-know-how ul li {
	width: 10em;
}
#navigation #nav li.menuepunkt-know-how ul ul {
	margin-left: 10em;
	width: 9em;
}
#navigation #nav li.menuepunkt-know-how ul ul ul {
	margin-left: 9em;
	width: 10em;
}
#navigation #nav li.menuepunkt-the-movie ul, #navigation #nav li.menuepunkt-the-movie ul li {
	width: 10.5em;
}
#navigation #nav li.menuepunkt-the-movie ul ul {
	margin-left: 10.5em;
	width: 10.5em;
}
/* ------------------------------------------------------------ */
/* -------------- ENDE - son of suckerfisch menu -------------- */
/* ------------------------------------------------------------ */

#fusszeile { /* folgt auf #page - wird aber im bereich von #page rechts unten angezeigt */
	position: relative;
	top: -2.2em; /* anzeige im bereich der page */
	width: 970px; /* selbe breite wie #page */
	margin: 0px auto 0px auto; /* zentriert - wie #page */
	text-transform: lowercase;
	font-size: 0.85em;
	line-height: 2.5em;
}
#fusszeile p {
	float: right;
	background-color: #000;
	padding: 0px 0.6em 20px 0.6em; /* u.a. unterer schwarzer rand - siehe auch BODY */
}
#fusszeile * {
	color: #FFF;
	text-decoration: none;
}
#fusszeile span {
	border-bottom: 1px #000 dotted;
	padding-bottom: 2px;
}
/* --- BEGINN: formatierung fr link zu aktivem menpunkt --- */
/* --- ein königreich für ein CMS! ;-) -------------------- */

#navigation a:hover span, #navigation a:active span, #fusszeile a:hover span, #fusszeile a:active span,  #body-id-index #menuepunkt-index span, #body-id-the-movie #menuepunkt-the-movie span, #body-id-the-movie-2008 #menuepunkt-the-movie-2008 span, #body-id-the-movie-trailer #menuepunkt-the-movie-trailer span, #body-id-the-movie-ueber-den-film #menuepunkt-the-movie-ueber-den-film span, #body-id-the-movie-team #menuepunkt-the-movie-team span, #body-id-the-movie-termine #menuepunkt-the-movie-termine span, #body-id-the-movie-partner #menuepunkt-the-movie-partner span,  #body-id-kurse #menuepunkt-kurse span, #body-id-kurse-team #menuepunkt-kurse-team span, #body-id-kurse-termine #menuepunkt-kurse-termine span, #body-id-kurse-usi-kurs #menuepunkt-kurse-usi-kurs span,  #body-id-know-how #menuepunkt-know-how span, #body-id-know-how-materialkunde #menuepunkt-know-how-materialkunde span, #body-id-know-how-materialkunde-slacklines #menuepunkt-know-how-materialkunde-slacklines span, #body-id-know-how-materialkunde-hardware #menuepunkt-know-how-materialkunde-hardware span, #body-id-know-how-materialkunde-spannsysteme #menuepunkt-know-how-materialkunde-spannsysteme span, #body-id-know-how-materialkunde-diverses #menuepunkt-know-how-materialkunde-diverses span, #body-id-know-how-technik #menuepunkt-know-how-technik span, #body-id-know-how-technik-slackline-spannen #menuepunkt-know-how-technik-slackline-spannen span, #body-id-know-how-technik-slacklinen #menuepunkt-know-how-technik-slacklinen span, #body-id-know-how-disziplinen #menuepunkt-know-how-disziplinen span, #body-id-know-how-disziplinen-lowlinen #menuepunkt-know-how-disziplinen-lowlinen span, #body-id-know-how-disziplinen-lowlinen-funline-trickline #menuepunkt-know-how-disziplinen-lowlinen-funline-trickline span, #body-id-know-how-disziplinen-lowlinen-rodeoline #menuepunkt-know-how-disziplinen-lowlinen-rodeoline span, #body-id-know-how-disziplinen-lowlinen-jumpline #menuepunkt-know-how-disziplinen-lowlinen-jumpline span, #body-id-know-how-disziplinen-lowlinen-longline #menuepunkt-know-how-disziplinen-lowlinen-longline span, #body-id-know-how-disziplinen-lowlinen-waterline #menuepunkt-know-how-disziplinen-lowlinen-waterline span, #body-id-know-how-disziplinen-highlinen #menuepunkt-know-how-disziplinen-highlinen span, #body-id-know-how-sicherheit #menuepunkt-know-how-sicherheit span, #body-id-know-how-geschichte #menuepunkt-know-how-geschichte span, #body-id-know-how-slacklinen #menuepunkt-know-how-slacklinen span,  #body-id-gallerie #menuepunkt-gallerie span, #body-id-gallerie-bilder #menuepunkt-gallerie-bilder span, #body-id-gallerie-bilder-funline #menuepunkt-gallerie-bilder-funline span, #body-id-gallerie-bilder-highline #menuepunkt-gallerie-bilder-highline span, #body-id-gallerie-bilder-waterline #menuepunkt-gallerie-bilder-waterline span, #body-id-gallerie-bilder-longline #menuepunkt-gallerie-bilder-longline span, #body-id-gallerie-bilder-jumpline #menuepunkt-gallerie-bilder-jumpline span, #body-id-gallerie-videos #menuepunkt-gallerie-videos span, #body-id-gallerie-videos-taschach-ferner-2007 #menuepunkt-gallerie-videos-taschach-ferner-2007 span, #body-id-gallerie-videos-rumer-nadel-2007 #menuepunkt-gallerie-videos-rumer-nadel-2007 span, #body-id-gallerie-videos-jumpline-slamsession-2007-08-01 #menuepunkt-gallerie-videos-jumpline-slamsession-2007-08-01 span, #body-id-gallerie-videos-jumpline-slamsession-2007-08-01 #menuepunkt-gallerie-videos-jumpline-slamsession-2007-08-01 span, #body-id-gallerie-videos-landshut-erster-tag-2007-10-13 #menuepunkt-gallerie-videos-landshut-erster-tag-2007-10-13 span, #body-id-gallerie-videos-landshut-zweiter-tag-2007-10-14 #menuepunkt-gallerie-videos-landshut-zweiter-tag-2007-10-14 span, 

#body-id-gallerie-videos-wave-line-2009 #menuepunkt-gallerie-videos-wave-line-2009 span,
#body-id-gallerie-videos-walking-a-waterline #menuepunkt-gallerie-videos-walking-a-waterline span,
#body-id-gallerie-videos-walking-a-highline #menuepunkt-gallerie-videos-walking-a-highline span,
#body-id-gallerie-videos-slack-o-maniacs #menuepunkt-gallerie-videos-slack-o-maniacs span,
#body-id-gallerie-videos-slack-attack #menuepunkt-gallerie-videos-slack-attack span,
#body-id-gallerie-videos-boody-slacking #menuepunkt-gallerie-videos-boody-slacking span,
#body-id-gallerie-videos-indoor-highline-im-tivoli #menuepunkt-gallerie-videos-indoor-highline-im-tivoli span,






#body-id-gallerie-videos-disney-channel-2007-10-00 #menuepunkt-gallerie-videos-disney-channel-2007-10-00 span,  #body-id-gallerie-promotion #menuepunkt-gallerie-promotion span, #body-id-gallerie-promotion-oesfa-2007 #menuepunkt-gallerie-promotion-oesfa-2007 span, #body-id-gallerie-promotion-hotel-congress-2007 #menuepunkt-gallerie-promotion-hotel-congress-2007 span, #body-id-gallerie-kurse-hauptschule-westendorf-2007-video #menuepunkt-gallerie-kurse-hauptschule-westendorf-2007-video span, #body-id-gallerie-kurse-hauptschule-westendorf-2007-bilder #menuepunkt-gallerie-kurse-hauptschule-westendorf-2007-bilder span,  #body-id-gallerie-bilder-events-slacklinetreffen-landshut-2007 #menuepunkt-gallerie-bilder-events-slacklinetreffen-landshut-2007 span,  #body-id-shop #menuepunkt-shop span, #body-id-shop-baender #menuepunkt-shop-baender span, #body-id-shop-slackline-sets #menuepunkt-shop-slackline-sets span, #body-id-shop-baumschlingen #menuepunkt-shop-baumschlingen span, #body-id-shop-zubehoer #menuepunkt-shop-zubehoer span, #body-id-shop-dvd #menuepunkt-shop-dvd span,  #body-id-kontakt #menuepunkt-kontakt span,  #body-id-referenzen #menuepunkt-referenzen span,  #body-id-slackliner-at-team #menuepunkt-slackliner-at-team span,  #body-id-impressum #menuepunkt-impressum span {
	border-bottom: 1px #FFF dotted;/*	padding-bottom: 2px; */
	}
a.no-link:hover span, a.no-link:active span {
	cursor: default;
}
#navigation .menuepunkt-partner a:hover span, #navigation .menuepunkt-partner a:active span, a.no-link:active span {
	cursor: default;
	border-bottom: none;
}
/* --- ENDE: formatierung für link zu aktivem menpunkt --- */


#content {
	position: relative;
	left: 180px;
	width: 700px;
	color: #FFF;
	text-align: justify;
	clear: both;
}
#content object {
/* margin-left: 100px; */
        }
/*#content object#FLVPlayer,*/
div.flvmovie {
	margin-left: 100px;
}
body.body-class-the-movie #content, body.body-class-the-movie-2008 #content, body.body-class-index-movie #content, body.body-class-gallerie-videos #content {
	left: 180px;
	width: 626px;
}
body.body-class-gallerie-bilder #content, body.body-class-shop #content {
	width: 700px;
	left: 180px;
}
#content #box-in-a-box { /* box-in-a-box box model hack */
	padding: 15px 15px 15px 15px;
	background-color:#000;
	min-height: 425px;
	height: auto !important;  /* fr moderne Browser */
	height: 425px;  /*fr den IE */
}
#content h2 {
	font-size: 1.5em;
	text-align: right;
	border-bottom: 1px #FFF dotted;
	padding-bottom: 0.6em;
	margin-bottom: 0.6em;
}
#content h3 {
	/*	font-weight: bold; */
	font-size: 1.5em;
	margin: 1em 0 0 0;
}
#content h4 {
	font-weight: bold;
	margin: 1em 0 0 0;
}
p, ul, ol {
	margin-bottom: 1em;
}
ol {
	text-indent: -1.7em;
	margin-left: 1.8em;
	padding-left: 0;
}
#content .vorteile-nachteile-ueberschrift {
	margin: 1em 0 0 0;
}
#content .margin-zero {
	margin: 0 0 0 0;
}
#content div.menuepunkt-level-1 ul {
	margin-bottom: 0em;			/* kein margin-bottom in der "sitemap" auf den level-1-seiten */
}
#content * {
	color: #FFFFFF;
}
#content input, #content textarea {
	color: #000000;
}
#content ul.bullet, #content ul.bullet ul {
	margin: 0 0 0 1em;
	list-style-type: square;
	list-style-position: outside;
}
#content ul.bullet ul li {
	margin: 0 0 0 1em;
}
#content ol {
	list-style-type: decimal;
	list-style-position: inside;
}
#content ul.vorteile {
	list-style-image: url(../images/icons/list-positiv.gif);
	margin: 0 0 1em 0;
}
#content ul.nachteile {
	list-style-image: url(../images/icons/list-negativ.gif);
}
#content ul.nachteile li, #content ul.vorteile li {
	margin-left: 1.4em;
}
#content acronym, #content a {
	text-decoration: none;
	border-bottom: dotted 1px;
}
#content acronym {
	cursor: help;
}
#premiere-filmfest-st-anton-am-arlberg {
	position:relative;
	margin-left: 200px;
	background-image: url(../images/diverses/premiere-filmfest-st-anton-am-arlberg.gif);
	background-repeat: no-repeat;
	width: 270px;
	height: 60px;
	text-indent: -5000px;
	margin-top: 1px;
}
#content a.lightbox {
	border: none;
}
#content a.lightbox-decoration {
	text-decoration: none;
	border-bottom: dotted 1px;
}
img.lightbox-user {
	margin: 0 0.2em 0 0.2em;
	height: 8px;
	width: 8px;
}
img.lightbox-window-open {
	margin: 0 0.2em 0 0.2em;
	height: 9px;
	width: 9px;
}

#kontaktformular textarea#text {
	width: 80%;
	height: 10em;
	border: 1px solid #000000;
	}

#kontaktformular input[type=text] {
	width: 40%;
	border: 1px solid #000000;
	}

#seitekontakt .vcard {
	margin-bottom: 2em;
	}


/* ----------------------------------------------------------------------------- */
/* -------------- BEGINN - diverse formatierungen für diverse texte ------------ */
/* ----------------------------------------------------------------------------- */


strong {
	font-weight: bold;
}
.underline {
	border-bottom: 1px dotted;
}
/* --------------------------------------------------------------------------- */
/* -------------- ENDE - diverse formatierungen für diverse texte ------------ */
/* --------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------ */
/* -------------- BEGINN - untermenuepunkte von level 1 auf level-1-seiten ------------ */
/* ------------------------------------------------------------------------------------ */

.menuepunkt-level-1 {
	margin-top: 5em;
}
.menuepunkt-level-1 ul * {
	display: none;
}
.menuepunkt-level-1 a.level-1 span {
	padding-bottom: 0.2em;
	margin-bottom: 0.2em;
}
.menuepunkt-level-1 ul ul li {
	margin-left: 2em;
}
#body-id-the-movie .menuepunkt-level-1 li.menuepunkt-the-movie, #body-id-the-movie .menuepunkt-level-1 li.menuepunkt-the-movie *,  #body-id-kurse .menuepunkt-level-1 li.menuepunkt-kurse, #body-id-kurse .menuepunkt-level-1 li.menuepunkt-kurse *,  #body-id-gallerie .menuepunkt-level-1 li.menuepunkt-gallerie, #body-id-gallerie .menuepunkt-level-1 li.menuepunkt-gallerie *,  #body-id-shop .menuepunkt-level-1 li.menuepunkt-shop, #body-id-shop .menuepunkt-level-1 li.menuepunkt-shop *,  #body-id-know-how .menuepunkt-level-1 li.menuepunkt-know-how, #body-id-know-how .menuepunkt-level-1 li.menuepunkt-know-how * {
	display: block;
	text-decoration: none;
	border-bottom: none;
}
#body-id-the-movie .menuepunkt-level-1 li.menuepunkt-the-movie li.level-2 a, #body-id-the-movie .menuepunkt-level-1 li.menuepunkt-the-movie li.level-2 a span,  #body-id-kurse .menuepunkt-level-1 li.menuepunkt-kurse li.level-2 a, #body-id-kurse .menuepunkt-level-1 li.menuepunkt-kurse li.level-2 a span,  #body-id-gallerie .menuepunkt-level-1 li.menuepunkt-gallerie li.level-2 a, #body-id-gallerie .menuepunkt-level-1 li.menuepunkt-gallerie li.level-2 a span,  #body-id-shop .menuepunkt-level-1 li.menuepunkt-shop li.level-2 a, #body-id-shop .menuepunkt-level-1 li.menuepunkt-shop li.level-2 a span,  #body-id-know-how .menuepunkt-level-1 li.menuepunkt-know-how li.level-2 a, #body-id-know-how .menuepunkt-level-1 li.menuepunkt-know-how li.level-2 a span {
	display: inline;
}
/* ----------------------------------------------------------------- */
/* -------------- ENDE - untermenuepunkte von level 1 -------------- */
/* ----------------------------------------------------------------- */



/* ----------------------------------------------------------------------------------------------------------- */
/* -------------- BEGINN - links für sponsoren auf den the-movie-seiten (über hintergrund gelegt) ------------ */
/* ----------------------------------------------------------------------------------------------------------- */

div#the-movie-sponsoren li {
	display: block;
	position: absolute;
}
div#the-movie-sponsoren li span.container-sponsoren-2 {
	position: absolute!important;
	left: -5000px!important;
	top: 0px!important;
	width: 1px!important;
	height: 1px!important;
	overflow: hidden!important;
}
div#the-movie-sponsoren li span.container-sponsoren {
	display: block;
	background-repeat: no-repeat;
	cursor: pointer;
}
div#the-movie-sponsoren li#ready-for-nature {
	left: -140px;
	top: 79px;
}
div#the-movie-sponsoren li#ready-for-nature span.container-sponsoren {
	width: 80px;
	height: 70px;
	background-image: url(../images/the-movie-partner/the-movie-partner-ready-for-nature.gif);
}
div#the-movie-sponsoren li#lupine {
	left: -130px;
	top: 167px;
}
div#the-movie-sponsoren li#lupine span.container-sponsoren {
	width: 80px;
	height: 49px;
	background-image: url(../images/the-movie-partner/the-movie-partner-lupine.gif);
}
div#the-movie-sponsoren li#austrialpin {
	left: -130px;
	top: 235px;
}
div#the-movie-sponsoren li#austrialpin span.container-sponsoren {
	width: 80px;
	height: 27px;
	background-image: url(../images/the-movie-partner/the-movie-partner-austrialpin.gif);
}
div#the-movie-sponsoren li#rum {
	left: -130px;
	top: 291px;
}
div#the-movie-sponsoren li#rum span.container-sponsoren {
	width: 80px;
	height: 49px;
	background-image: url(../images/the-movie-partner/the-movie-partner-rum.gif);
}
div#the-movie-sponsoren li#chillaz {
	left: 665px;
	top: 82px;
}
div#the-movie-sponsoren li#chillaz span.container-sponsoren {
	width: 80px;
	height: 28px;
	background-image: url(../images/the-movie-partner/the-movie-partner-chillaz.gif);
}
div#the-movie-sponsoren li#la-mano {
	left: 668px;
	top: 138px;
}
div#the-movie-sponsoren li#la-mano span.container-sponsoren {
	width: 80px;
	height: 40px;
	background-image: url(../images/the-movie-partner/the-movie-partner-la-mano.gif);
}
div#the-movie-sponsoren li#garra {
	left: 672px;
	top: 215px;
}
div#the-movie-sponsoren li#garra span.container-sponsoren {
	width: 80px;
	height: 26px;
	background-image: url(../images/the-movie-partner/the-movie-partner-garra.gif);
}
div#the-movie-sponsoren li#cine-tirol {
	left: 672px;
	top: 278px;
}
div#the-movie-sponsoren li#cine-tirol span.container-sponsoren {
	width: 80px;
	height: 61px;
	background-image: url(../images/the-movie-partner/the-movie-partner-cine-tirol.gif);
}
/* ----------------------------------------------------------------------------------------------------------- */
/* -------------- BEGINN - links für sponsoren 2008 auf den the-movie-seiten (über hintergrund gelegt) ------- */
/* ----------------------------------------------------------------------------------------------------------- */

div#the-movie-2008-sponsoren li {
	display: block;
	position: absolute;
}
div#the-movie-2008-sponsoren li span.container-sponsoren-2 {
	position: absolute!important;
	left: -5000px!important;
	top: 0px!important;
	width: 1px!important;
	height: 1px!important;
	overflow: hidden!important;
}
div#the-movie-2008-sponsoren li span.container-sponsoren {
	display: block;
	background-repeat: no-repeat;
	cursor: pointer;
}
div#the-movie-2008-sponsoren li#a {
	left: -130px;
	top: 100px;
}
div#the-movie-2008-sponsoren li#a span.container-sponsoren {
	width: 80px;
	height: 27px;
	background-image: url(../images/the-movie-partner-2008/austrialpin.gif);
}
div#the-movie-2008-sponsoren li#b {
	left: -130px;
	top: 165px;
}
div#the-movie-2008-sponsoren li#b span.container-sponsoren {
	width: 80px;
	height: 13px;
	background-image: url(../images/the-movie-partner-2008/thermarest.gif);
}
div#the-movie-2008-sponsoren li#c {
	left: -130px;
	top: 220px;
}
div#the-movie-2008-sponsoren li#c span.container-sponsoren {
	width: 81px;
	height: 24px;
	background-image: url(../images/the-movie-partner-2008/bosch.gif);
}
div#the-movie-2008-sponsoren li#d {
	left: -130px;
	top: 270px;
}
div#the-movie-2008-sponsoren li#d span.container-sponsoren {
	width: 79px;
	height: 66px;
	background-image: url(../images/the-movie-partner-2008/mammut.gif);
}
div#the-movie-2008-sponsoren li#e {
	left: 665px;
	top: 82px;
}
div#the-movie-2008-sponsoren li#e span.container-sponsoren {
	width: 78px;
	height: 43px;
	background-image: url(../images/the-movie-partner-2008/msr.gif);
}
div#the-movie-2008-sponsoren li#f {
	left: 665px;
	top: 160px;
}
div#the-movie-2008-sponsoren li#f span.container-sponsoren {
	width: 78px;
	height: 26px;
	background-image: url(../images/the-movie-partner-2008/chillaz.gif);
}
div#the-movie-2008-sponsoren li#g {
	left: 665px;
	top: 220px;
}
div#the-movie-2008-sponsoren li#g span.container-sponsoren {
	width: 80px;
	height: 41px;
	background-image: url(../images/the-movie-partner-2008/smith.gif);
}
div#the-movie-2008-sponsoren li#h {
	left: 665px;
	top: 320px;
}
div#the-movie-2008-sponsoren li#h span.container-sponsoren {
	width: 80px;
	height: 70px;
	background-image: url(../images/the-movie-partner/the-movie-partner-ready-for-nature.gif);
}
div#the-movie-2008-sponsoren li#i {
	left: 665px;
	top: 280px;
}
div#the-movie-2008-sponsoren li#i span.container-sponsoren {
	width: 81px;
	height: 15px;
	background-image: url(../images/the-movie-partner-2008/kochalpin.gif);
}
div#the-movie-2008-sponsoren li#j {
	left: 665px;
	top: 390px;
}
div#the-movie-2008-sponsoren li#j span.container-sponsoren {
	width: 79px;
	height: 17px;
	background-image: url(../images/the-movie-partner-2008/pillerseetal.gif);
}
div#the-movie-2008-sponsoren li#k {
	left: -130px;
	top: 360px;
}
div#the-movie-2008-sponsoren li#k span.container-sponsoren {
	width: 80px;
	height: 61px;
	background-image: url(../images/the-movie-partner-2008/cinetirol.gif);
}
/* ----------------------------------------------------------------------------------------------------------- */
/* -------------- ENDE - links für sponsoren auf den the-movie-seiten (über hintergrund gelegt) -------------- */
/* ----------------------------------------------------------------------------------------------------------- */

/* -------------- Shop-Formatierungen ------------------------------------------------------------------------ */

body.body-class-shop input {
	border: 0;
	margin: 0.2em 0.2em 0 0.2em;
}
body.body-class-shop div#katalog img {
	float: left;
	margin: 0 10px 0 0;
}
body.body-class-shop div#katalog div {
	margin: 0 0 3em 0;
	margin-left: 310px;
}
body.body-class-shop div#katalog div:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
body.body-class-shop div#katalog h3 {
	margin-top: 0;
}
body.body-class-shop div#warenkorb tfoot td {
	border-top: 1px solid #FFF;
}
body.body-class-shop div#warenkorb thead td {
	border-bottom: 1px solid #FFF;
}
.shop-input-quantity {
	width: 2em;
	text-align: right;
}
.eingerueckt {
	padding-left: 20px;
}
/* ------------ */
/* --- team --- */
/* ------------ */

#slacklineratteam img {
	background: #FFFFFF;
	padding: 10px;
	margin: 0 15px 20px 0;
	border: 1px #222 solid;
}
#slacklineratteam {
	float: left; /* set a float to clear a float */
	width: 500px;
}
#slacklineratteam dl {
	float: left; /* set a float to clear a float */
	width: 500px; /* fix für IE/Mac */
	margin: 20px 0 0 0;
}
#slacklineratteam dt {
	font-size: 1.5em;
	margin: 5px 0 1em 0;
}
#slacklineratteam dt {
	float: right;
	width: 263px; /* 500 - 200 - 2x10 - 2x1 - 15 */
}
#slacklineratteam dd {
	margin: 0 0 0 237px; /* 200 + 2x10 + 2x1 + 15 */
}
#slacklineratteam dd.img {
	margin: 0;
}
#slacklineratteam dd.img img {
	float: left;
}
#slacklineratteam ul {
	list-style: square;
}
li.li-margin-bottom {
	margin-bottom: 1em;
}
/* ------------ */
/* --- home --- */
/* ------------ */

table.index td {
	padding-right: 1em;
	text-align: justify;
}
/* -------------------------------- */
/* --- partner auf allen seiten --- */
/* -------------------------------- */

#partner a span,
body.body-class-the-movie #partner,
body.body-class-the-movie-2008 #partner {
	position: absolute !important;
	left: -739px !important;
	top: -978px !important;
	width: 173px !important;
	height: 111px !important;
	overflow: hidden !important;
}

#partner a {
	display: block;
	position: absolute;
	width: 95px;
	height: 89px;
	background: url(../images/diverses/webfuzzy-at.gif) no-repeat;
	left: -140px;
	bottom: 0;
	border: none;
}

/* -------------------------- */
/* news-button auf startseite */
/* -------------------------- */

a#newslink {
	display:block;
	text-decoration: none;
	position: absolute;
	border: 0;
	top: -50px;
	right: -50px;
	text-indent: -9999999px;
	height: 72px;
	width: 72px;
	background: no-repeat url(../images/diverses/news-button-klein.png);
}

/* ---------------- */
/* --- diverses --- */
/* ---------------- */

#logo {
	position: absolute;
	top: 0px;
	left: 0px;
}
#logo a {
  display: block;
  top: 10px;
	left: 10px;
	width: 400px;
	height: 180px;
}

/* --- facebook fan box --- */

iframe.FB_SERVER_IFRAME {
  position: absolute;
	top: 40px;
	right: 8px;
}

div#slackliner-fb-likebox {
  position: absolute;
	top: 40px;
	right: 8px;
	background: #fff;
}

/* ----------------- */
/* --- sponsoren --- */
/* ----------------- */

#sponsoren {
  position: absolute;
	top: 0;
	left: 0;
}

#sponsoren li {
  text-indent: -9999px;
	position: absolute;
}

#sponsoren ul {
  position: absolute;
}

#sponsoren li a {
  display: block;
}

#sponsoren li#chillaz {
	top: 300px;
	left: 50px;
}

#sponsoren li#chillaz a {
  width: 78px;
	height: 26px;
	background-image: url(../images/sponsoren/chillaz.gif);
}

#sponsoren li#gloryfy {
	top: 360px;
	left: 50px;
}

#sponsoren li#gloryfy a {
  width: 78px;
	height: 31px;
	background-image: url(../images/sponsoren/gloryfy.gif);
}


#sponsoren li#asics {
	top: 420px;
	left: 50px;
}

#sponsoren li#asics a {
  width: 78px;
	height: 35px;
	background-image: url(../images/sponsoren/asics.gif);
}

#sponsoren li#stubai {
	top: 480px;
	left: 50px;
}

#sponsoren li#stubai a {
  width: 78px;
	height: 43px;
	background-image: url(../images/sponsoren/stubai.gif);
}

/* ---------------- */
/* --- facebook --- */
/* ---------------- */

.FBConnectButton {
  border-bottom: 0 !important;
	cursor: pointer !important;
	margin-bottom: 1em !important;
}

a.rowa-button-fb-share {
  text-indent: -9999px !important;
	display: block !important;
	width: 59px !important;
	height: 18px !important;
	background-image: url(../images/diverses/button-fb-share.gif) !important;
	border-bottom: 0 !important;
	margin-bottom: 1em !important;
}