/* ======================================================================================================
    ====================================================================================================
    = Stylesheet
    = Datei: style.css
    = Datum  30/11/11
    = Autor: wquadrat Medien GmbH
    = Mix aus Boilerplate und eigenen Stylevorgaben
    ====================================================================================================
   ====================================================================================================== */


/* ======================================================================================================
   TEIL I - Reset
   html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
   v1.4 2009-07-27 | Autoren: Eric Meyer & Richard Clark
   html5doctor.com/html-5-reset-stylesheet/
   ====================================================================================================== */
 

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                 
 
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display:block;
}
 
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {content:''; content:none;}
a {margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent;}
ins {background-color:#ff9; color:#000; text-decoration:none;}
mark {background-color:#ff9; color:#000; font-style:italic; font-weight:bold;}
del {text-decoration: line-through;}
abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;}
 
/* tables still need cellspacing="0" in the markup */
table {border-collapse:collapse; border-spacing:0;}
hr {display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0;}
input, select {vertical-align:middle;}
 
/* ENDE DER RESET CSS */

/* fonts.css aus der YUI Bibliothek developer.yahoo.com/yui/
   Schaue auf developer.yahoo.com/yui/3/cssfonts/  um die richtige `font-size` Prozente zu ermitteln
 
  Drei Veränderungen waren nötig:
   * entferne Arial und Helvetica aus dem Font-Stack
   * unproportionale Schriftgroßen normen
   * `font-size` für Tabellen wird bereits im HTML5-Reset weiter oben zurückgesetzt, also müssen wir uns nicht wiederholen.
*/
body {font:13px/1.231 sans-serif; *font-size:small;} /* Hack beibehalten, um Spezifität bewahren */ 
select, input, textarea, button {font:99% sans-serif;}
 
/* normalisiere monosize Größen
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {font-family: monospace, sans-serif;}



/* ======================================================================================================
   TEIL II - Restaurierung 
   ====================================================================================================== */

/* immer einen Scrollbalken erzwingen (ausser IE) */
html {overflow-y: scroll;} 
 
body, select, input, textarea {
/* `#444`, besser als Schwarz. twitter.com/H_FJ/statuses/11800719859 */
color: #444;
/* setze hier deine Standart Schriftart, damit sie gleichermaßen angewendet werden kann */
/* font-family: Georgia, serif;  */  
}

/* Barrierefreier Fokus: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {outline: none;}
a, a:active, a:visited {color: #fff;}
a:hover {color: #ffffff;}

/* Außenabstände für Navigations-Listen entfernen */
nav ul, nav li {margin: 0;}
strong, th {font-weight: bold;}

td, td img {vertical-align: top;}
 
sub {vertical-align: sub; font-size: smaller;}
sup {vertical-align: super; font-size: smaller;}

pre {
  padding: 15px;
   
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
  
/* ======================================================================================================
   Formulare
   ====================================================================================================== */
  
textarea {overflow: auto;} /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
 
/* bringt Checkboxen, Radio Buttons, Text-Felder, und die zugehörige Labels in eine Reihe
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}
.ie6 legend, 
.ie7 legend {margin-left: -7px;} /* thnx ivannikolic! */

 
/* Hand-Cursor über klickbaren Eingabe-Elementen */
label, input[type=button], input[type=submit], button {cursor: pointer;}
  
/* Webkit-Browser fügen einen 2px-Außenabstand um den äußeren Bereich von Formular-Elementen hinzu */ 
button, input, select, textarea {margin: 0;}
 
/* Farben für die Formularvalidierung */
input:valid, textarea:valid   {}
input:invalid, textarea:invalid {
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {background-color: #f0dddd;}

/* sauber agierende Buttons im IE:   
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {width: auto; overflow: visible;}
 
 /* Auswahl in Auswahllisten (select) durch padding:0 schlecht lesbar */
option {padding-left: 0.2em; padding-right: 0.3em;}

/* Rahmen um fieldset und verlinkte Bilder entfernen */
fieldset, a img {border: none;}
 
 
 
/* Diese Selektoren deklarationen müssen separat sein.
   Kein `text-shadow`: twitter.com/miketaylr/status/12228805301
   Plus: flottes Pink */
::-moz-selection{background: #FF5E99; color:#fff; text-shadow: none;}
::selection {background:#FF5E99; color:#fff; text-shadow: none;}
 
/*  j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #FF5E99;}
 
/* Bikubische-Skalierung für nicht-native Bildgrößen im IMG-Tag:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {-ms-interpolation-mode: bicubic;}


/* ======================================================================================================
   TEIL III - Zusätzliche eigene Formatierungen
   z.B. für Überschriften und Listen 
   ====================================================================================================== */

/* margin-bottom fuer Ueberschriften, Absaetze, Listen etc. */
h1, h2, h3, h4, h5, h6, 
p, blockquote, address, pre, 
ul, ol, dl, table {
   margin-bottom: 1em;
}

/* Zitate einruecken */ 
blockquote {margin: 1em 2em;} 

/* Alle Listen etwas einruecken */
ul, ol, dl {margin-left: 1em;}

/* Listenelemente etwas mehr einruecken */
li {margin-left: 1em;} 

/* Definitionen in Definitionslisten noch mehr einruecken */
dd {margin-left: 2em;}

/* Verschachtelte Listen ohne Außenabstand oben/unten */
ul ul, ul ol, ul dl,
ol ul, ol ol, ol dl,
dl ul, dl ol, dl dl {
   margin-top: 0;
   margin-bottom: 0;
}

/* Aufzaehlungszeichen */

/* Ebene 1 - ul: square (ausgefuelltes Rechteck); ol: Dezimalzahlen  */
ul {list-style-type: disc;}
ol {list-style-type: decimal;}

/* Ebene 2 - ul: disc (ausgefuellter Kreis); ol: kleine Buchstaben */
ul ul {list-style-type: disc;}
ol ol {list-style-type: lower-alpha;}

ul ol {list-style-type: decimal;}
ol ul {list-style-type: square;}

/* Ebene 3 - ul und ol mit circle (nicht ausgefuellter Kreis) */
ol ol ol, ol ol ul, ol ul ul, ol ul ol,
ul ul ul, ul ul ol, ul ol ol, ul ol ul {
   list-style-type: circle;
} 


/* ======================================================================================================
   Hauptstyles (ehem. screen.css)
   ====================================================================================================== */

html {height:100%;}

body {
   height:100%;
   line-height:18px;
   font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
   font-size: 13px;
   color:#777;
   /*background:url('/media/bilder/_layout/bg-body.jpg') repeat-x fixed #e6edf8;*/
}

/* Bg-fixed - Lösung für Bug in web-kit mobile Browsern */
#wrapper { 
   background-image:url('/media/bilder/_layout/bg-body.jpg'); #e6edf8;
   background-color:#e6edf8;
   background-repeat:repeat-x;
   background-attachment: fixed;
   min-height:100%;
   position:relative; /* für die Footer-position bei kleinen Seiten */
   width:100%;
}
#wrapper:before {
    background-color: #DE101C;
    border-bottom: 2px solid #FFFFFF;
    color: transparent;
    content: ".";
    height: 13px;
    position: fixed;
    width: 100%;
}

/* Serifenschrift fuer Ueberschriften, inkl. h1 (alt-Text) */
h1, h2, h3, h4, h5, h6 {
  
   font-weight: bold;
   color:#254594;
   line-height:1em;
}

/*  Ueberschriftengroeßen auf Basis von small (13px) */
h1 {font-size: 27px;}    
h2 {font-size: 24px;} 
h3 {font-size: 14px;} 
h4 {font-size: 14px;} 
h5 {font-size: 12px;} 
h6 {font-size: 10px;} 

/* bilder im text */
dl.bild {margin-top:0;margin-bottom:0;}
dl.bild img {display: block;}
dl.bild dd {margin: 0;}

dl.bildLinks {float: left; margin: 0 20px 10px 0;}
dl.bildRechts {float: right; margin: 0 0 10px 20px;}
dl.bildGross {margin: 0 auto 10px;}

#container {
min-height:100%;
position:relative;
width:960px;
margin:0 auto;
background:url('/media/bilder/_layout/bg-container.png') repeat-y center;
/*
-webkit-animation: fadeInBack 1s linear 2s backwards;
	-moz-animation: fadeInBack 1s linear 0s backwards;
	-ms-animation: fadeInBack 3.6s linear 2s backwards;
	animation: fadeInBack 3.6s linear 2s backwards;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
*/
}
/*
@-webkit-keyframes fadeInBack{
	0%{
		opacity: 0;
		-webkit-transform: scale(0);
	}
	50%{
		opacity: 0.4;
		-webkit-transform: scale(0.5);
	}
	100%{
		opacity: 1;
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes fadeInBack{
	0%{
		opacity: 0;
		-moz-transform: scale(0);
-moz-transform-origin: left top;
	}
	50%{
		opacity: 0.4;
		-moz-transform: scale(0.5);
-moz-transform-origin: center top;
	}
	100%{
		opacity: 1;
		-moz-transform: scale(1);
-moz-transform-origin: center top;
	}
}
@keyframes fadeInBack{
	0%{
		opacity: 0;
		transform: scale(0);
	}
	50%{
		opacity: 0.4;
		transform: scale(0.5);
	}
	100%{
		opacity: 1;
		transform: scale(1);
	}
}
*/



#header {height:315px;background:url(/media/bilder/inhalt/header/header1.jpg) no-repeat center;}

#navigation {position:fixed;top:0;z-index:40;height:143px;background:url('/media/bilder/_layout/navi-layer-top-border.png') no-repeat;width:960px;}
#navigation ul {}
#navigation ul li {float:left;position:relative;}
#navigation >ul >li.first {margin-left:25px;}

#navigation >ul >li >a {letter-spacing:1px;display:block;padding:25px 20px;text-decoration:none;text-transform:uppercase;font-size:12px;color:#a0b8dd;}
#navigation >ul >li:hover,
#navigation >ul >li.selected {background:url(/media/bilder/_layout/bg-navi-hover.jpg) no-repeat;} 
#navigation >ul >li:hover >a,
#navigation >ul >li.selected >a {color:#fff;background:url(/media/bilder/_layout/bg-navi-hover-right.jpg) no-repeat right top;} 

#navigation >ul >li:hover >ul {opacity:1;filter: alpha(opacity=100);height:auto;overflow:visible;}
#navigation ul ul {  
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  opacity: 0;
  filter: alpha(opacity=0);list-style:none;width:180px;position:absolute;left:0;top:59px;
  top:59px;
  height:0;
  overflow:hidden;
  -webkit-box-shadow: 2px 2px 5px 0px #254594; 
     -moz-box-shadow: 2px 2px 5px 0px #254594; 
          box-shadow: 2px 2px 5px 0px #254594;
}

#navigation ul ul li {float:left;width:180px;margin-bottom:1px;}
#navigation ul ul li a {display:block;padding:5px 10px;text-decoration:none;background:url('/media/bilder/_layout/bg-transparent.png');color:#466fb4;}
#navigation ul ul li.selected a,
#navigation ul ul li:hover a {background:#fff;}



/*
#navigation ul ul >li:hover ul {opacity:1;filter: alpha(opacity=100);height:auto;overflow:visible;}
*/
#navigation ul ul ul {left:100px;top:14px;display:none;} 

h1#logo img {display:none;}
h1#logo {text-indent:-9999px;position:fixed;z-index:100;margin-left:770px;top:11px;}
h1#logo a {display:block;width:150px;height:74px;background:url("/media/bilder/_layout/logo.png") no-repeat;}

#languages {position:absolute;right:25px;top:240px;padding:10px;z-index:25;}
#languages ul {list-style:none;margin:0;}
#languages ul li {margin:0;float:left;text-indent:-9999px;padding:5px;}
#languages a {display:block;width:30px;height:17px;}
#languages li.de a {background:url('/media/bilder/_layout/flagge-de-inaktiv.png') no-repeat;}
#languages li.de.selected a,
#languages li.de:hover a {background:url('/media/bilder/_layout/flagge-de.png') no-repeat;}
#languages li.en a {background:url('/media/bilder/_layout/flagge-en-inaktiv.png') no-repeat;}
#languages li.en.selected a,
#languages li.en:hover a {background:url('/media/bilder/_layout/flagge-en.png') no-repeat;}



#breadcrumb {list-style:none;margin:0;overflow:hidden;padding-left:40px;position:relative;z-index:30;}
#breadcrumb li {margin:0;float:left;}
#breadcrumb li a {color:#4e6cac;padding:0 5px;}


#content {position:relative;z-index:20;padding:140px 40px 20px;overflow:hidden;margin-top:-125px;background:url("/media/bilder/_layout/navi-layer-bottom.png") no-repeat top center transparent;}
#content a {color:#254594;}
#content h2 {}
#content div.p {margin-bottom:40px;}
#content #uebersicht dl.bild {margin:0 0 20px 0;float:right;}
#content #uebersicht dl.bild.first {float:left;}
#content dl.bild dt {
  -webkit-box-shadow: 0px 0px 10px 0px #999;
     -moz-box-shadow: 0px 0px 10px 0px #999;
          box-shadow: 0px 0px 10px 0px #999;
}
#content dl.bild img {padding:1px;-moz-transition: all 0.3s ease-in-out;}
#content dl.bild dt {overflow:hidden;-moz-transition: all 1s ease-in-out;}
#content #uebersicht dl.bild dt:hover {background:#eee;}
#content #uebersicht dl.bild dt:hover img {-moz-transform:scale(0.9);}
#content dl.bild dd {padding:5px 0;}
#content dl.bild dd span {padding:0 10px;}
#content dl.bild dd div.p {margin:0;}
#content dl.bild dd div.p h3 {font-size:14px;font-weight:normal;margin:0;padding:5px 0;}
#content div.p ul {list-style:none;margin:0;}
#content div.p li {background:url('/media/bilder/_layout/list-bullet.png') no-repeat 0 6px;padding:0 0 0 15px;margin:0;}

#container.fullscreen #header {background:none;height:auto;}
#container.fullscreen #navigation {}
#container.fullscreen #languages {top:130px;}
#container.fullscreen #content {margin-top:0;padding-top:125px;}
#container.fullscreen #content_main {width:100%;background:none;}
#container.fullscreen #teaser {display:none;}

#content_main {width:480px;padding-right:40px;float:left;background:url('/media/bilder/_layout/bg-border-vertical.png') no-repeat right top;}

.panes ul {list-style:none;margin:0 0 0 -14px;;}
.panes ul li {background:url('/media/bilder/_layout/list-bullet.png') no-repeat 0 6px;padding:0 0 15px 15px;margin:0;}
.panes h3 {font-size:12px;line-height:18px;margin:0;}
#content .panes div.p {margin-bottom:20px;}

#content #gallery dl.bild {margin:0 10px 20px 0;float:left;width:83px;height:83px;overflow:hidden;position:relative;}
#content #gallery dl.bild span.lupe {position:absolute;width:32px;height:32px;right:0;bottom:0;background:url('/media/bilder/_layout/gallery-lupe.png') no-repeat;}
#content #gallery dl.bild:hover span.lupe {background:url('/media/bilder/_layout/gallery-lupe-over.png') no-repeat;}


a#player {
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    box-shadow: 0 0 35px 0 #999999;
    padding:10px;
}
/* New Player (JW Player) */
.mediaplayer {
    background: none repeat scroll 0 0 #FAFAFA;
    border: 1px solid #E5E5E5;
    box-shadow: 0 0 35px 0 #999999;
    padding: 10px;
}

#map-container #map h3 {font-size:14px;}
#map-container #map .infoWindow {padding:10px;}
#map-container .routenplaner {background:#254594;color:#fff;padding:10px 5px;}
#map-container .routenplaner a {color:#fff;}


#images {}

#downloads {overflow:hidden;padding:30px 0 10px;background:url('/media/bilder/_layout/bg-border-horiz.png') no-repeat left top;}
#downloads ul {list-style:none;margin:0;width:228px;float:left;}
#downloads ul.first {margin-right:24px;}
#downloads li {padding-left:26px;margin:0 0 15px 0;float:left;background:url('/media/bilder/_layout/bg-link-download-icon.png') no-repeat left top;}
#downloads a {color:#3c5082;text-decoration:none;width:182px;height:34px;padding:5px 10px;display:block;background:url('/media/bilder/_layout/bg-link-download-flaeche.png') no-repeat left top;}
.hasNoSidebar #downloads ul {margin-left:24px;/*width:264px;*/}
.hasNoSidebar #downloads ul.first {margin-right:0;margin-left:0;}
/* adopt to new font size */
#downloads li { line-height: 1.3 }

#teaser {width:320px;float:right;}
#teaser h2 {float:right;line-height:12px;margin-bottom:18px;}
#teaser h2 a,
#teaser .uniForm h2 {text-decoration:none;color:#fff;display:block;padding:4px 8px;font-size:12px;background:#254594;text-transform:uppercase;font-weight:normal;}
#teaser div.p {margin-top:10px;}


#footer_container {z-index:2;position:relative;width:100%;background:url('/media/bilder/_layout/bg-footer-container.png') repeat-x left bottom;height:14px;margin-top:-14px;} 
#footer {font-size:10px;color:#254594;position:relative;width:944px;margin:0 auto;padding-top:10px;/*background:url('/media/bilder/_layout/bg-opacity80.png');*/}
#footer ul {list-style:none;overflow:hidden;margin:0 11px;padding:0 21px 10px;background:url('/media/bilder/_layout/bg-footer-border.png') no-repeat left top;}
#footer li {float:left;width:220px;margin:0;padding:15px 0;}
#footer li.first {text-indent:-9999px;}
#footer li.first a {border:none;display:block;width:126px;height:31px;background:url('/media/bilder/_layout/footer-logo.png') no-repeat 0 5px;}
#footer li a {line-height:12px;color:#254594;display:inline-block;border-bottom:2px solid #c3cbdf;text-decoration:none;}


.hasNoSidebar #content_main {
  background-image: none;
  width: 100%;
  line-height: 1.7;
  float:none;
  padding-right:0;
}
.hasNoSidebar #content div.p li {
  background-position: 0 0.6em;
}




/* ======================================================================================================
   Nicht-semantische Hilfsklassen
   ====================================================================================================== */
 
/* um Grafiken zu ersetzen */
.ir {display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr;}
 
/* Zum verstecken in beidem, Browser sowie Screenreader
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {display: none; visibility: hidden;}
 
/* Optisch versteckt, aber mit Screenreader lesbar
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden {position: absolute !important;   
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);}
 
/* Optisch verstecken (auch von Screenreader), aber behalte den Platz im Layout */
.invisible {visibility: hidden;}
 
/* >> Der glorreiche CLEARFIX: Aktualisiert, um einen Einsturz der Außenabstände in Kind-Elementen zu verhindern << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden; 
}
 
.clearfix:after {clear: both;}
/* Clearfix-Fix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {zoom: 1;}


/* ======================================================================================================
   Media queries für ein zugängliches Design
   Diese folgen nach dem primären Style, somit können diese erfolgreich überschreiben.
   ====================================================================================================== */

 
@media all and (orientation:portrait) {
  /* Hier kommen die Style-anpassungen für den Hochformat-Modus rein */
   
}
 
@media all and (orientation:landscape) {
  /* Hier kommen die Style-anpassungen für den Querformat-Modus rein */
   
}
 
/* Klasse-A Mobile Browser (Opera Mobil, iPhone Safari, Android Chrome) 
   Bedenkt dabei: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
   
   
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust
  html {-webkit-text-size-adjust:none; -ms-text-size-adjust:none;} */
}
 
/* ======================================================================================================
   Druck-Styles
   inline geschrieben, um zusätzlichen HTTP-Aufruf zu vermeiden www.phpied.com/delay-loading-your-print-css/
   ====================================================================================================== */

@media print {
  * {background: transparent !important; color: #444 !important; text-shadow: none !important;}
  a, a:visited {color: #444 !important; text-decoration: underline;}
  a:after {content: " (" attr(href) ")";}
  abbr:after {content: " (" attr(title) ")";}
  .ir a:after {content: "";}  /* Don't show links for images */
  pre, blockquote {border: 1px solid #999; page-break-inside: avoid;}
  thead {display: table-header-group;} /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {page-break-inside: avoid;}
  @page {margin: 0.5cm;}
  p, h2, h3 {orphans: 3; widows: 3;}
  h2, h3{page-break-after: avoid;}
}
/* 20140603 kr - Anpassungen Footer 
#footer {position:absolute;bottom:14px;} 
 #wrapper {height:100%;}
 #footer_container {position:absolute;bottom:0;}*/