

.pgi-infobox1 {
	margin-bottom: 0;
	padding: 1em;
	border:  1px solid #CCC;

	background-color:#C0DEED;

/* blue 1 */
/* background-color: #80DFFF */

/* shallow green */
/* background-color: #418272 */


	/* font-family: "Times New Roman", Times, serif; */
	font-size:  8pt;
/*	font-style: italic; */
	color: #000;
}


p.pgi-abstand-zum-buchungsbutton {
	border: 0;
	margin: 0;
	padding: 0;

	/* background-color: aqua; */
	font-size: 10px;
	/* height:1px */

}



/**************************************************************************
*
*  CUSTOM CLASSES
*
***************************************************************************/

/* link im text (veraltet) */
.pgi-link {
	text-decoration: none;
	color: #666;
}


/* border um reservierungslink */
.pgi-reservierung {
	border: 1px dotted navy;
	padding: 3px;
	padding-left: 6px;
	margin-bottom: 10px;
	width: 270px;
	font-size: 14px;
	background-color: #FFF;
}







/**************************************************************************
*  nav1 - Hauptnavigation
***************************************************************************/
a.nav1,
a.nav1:link,
a.nav1:visited,
a.nav1:hover,
a.nav1:active {
	text-decoration: none;
	color: #ccc;
	font-weight: bold;
}

a.nav1:hover,
a.nav1:active {
	text-decoration: none;
	color: #eee;
	font-weight: bold;
}

a.nav1-hi,
a.nav1-hi:link,
a.nav1-hi:visited,
a.nav1-hi:hover,
a.nav1-hi:active {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}




/**************************************************************************
*  nav2 - Nebennavigation (Home, Impressum)
***************************************************************************/
a.nav2,
a.nav2:link,
a.nav2:visited,
a.nav2:hover,
a.nav2:active {
	text-decoration: none;
	color: #ccc;
	font-weight: normal;
}


a.nav2:hover,
a.nav2:active {
	color: #eee;
}





/**************************************************************************
*  nav3 - Subnav für EZ/DZ/BS
***************************************************************************/
#layer-nav3 {
	/* background-color: YELLOW; */
	color: #cc9900;
}


a.nav3,
a.nav3:link,
a.nav3:visited,
a.nav3:hover,
a.nav3:active {
	text-decoration: none;
	color: #cc9900;
	font-weight: normal;
}

a.nav3:hover,
a.nav3:active {
	text-decoration: none;
	color: #993300;
	font-weight: normal;
}

a.nav3-hi,
a.nav3-hi:link,
a.nav3-hi:visited,
a.nav3-hi:hover,
a.nav3-hi:active {
	text-decoration: none;
	color: #993300;
	font-weight: bold
}






.text-small {

	font-size: 8pt;

}



/**************************************************************************
*
*  Free rooms icon and text
*
***************************************************************************/
#free-rooms,
#free-rooms a,
#free-rooms a:link,
#free-rooms a:visited,
#free-rooms a:hover,
#free-rooms a:active {
	text-decoration: none;
	color: #CCC;
	font-weight: normal;
}

#free-rooms a:hover,
#free-rooms a:active {
	color: #FFF;
}


/**************************************************************************
*
*  Popup Porsche Museum etc.
*
***************************************************************************/
.dvs-popup-article img {
	float: left;
	margin-top: 0.2em;
	margin-right: 1em;
	margin-bottom: 1em;
}

/* add some hasLayout properties for ie6 */
.dvs-popup-article,
.dvs-popup-article-head {
	position: relative;
}

/* add some hasLayout properties for ie6 */
.dvs-popup-article-head {
	margin: 0;
	padding: 0;

	margin-top: 1em;
	margin-bottom: 0.5em;

}


/**************************************************************************
*
*   DVS Faked Popup  27.04.2009
*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*   Das ganze funktioniert nur mit einem Trick.
*   PROBLEM:
*   DIV A hat opacity und geht über die ganze Seitenbreite.
*   Er sorgt für den transparenten Abdeckungseffekt.
*   DIV A enthält DIV B mit dem Inhalt des POPUPs.
*   URSACHE:
*   Dadurch entsteht das Problem: DIV B erbt die Opacity von
*   DIV A. Dummerweise lässt sich die Opacity nicht in DIV B
*   via CSS abschalten.
*   LÖSUNG:
*   Neues DIV C, das die Eigenschaften von DIV A hat, aber nicht
*   die Opacity. Es wird das neue Elternelement von DIV B.
*   So bleibt DIV B undurchsichtig.
*   Da DIV A und C absolut positioniert sind, sollte C noch einen
*   höheren z-index haben, als DIV A. Sonst wird der Inhalt des
*   Popups vom Schatten überdeckt.
*
***************************************************************************/


#dvs-faked-popup {
	visibility: hidden;
}

#dvs-faked-popup-background1,
#dvs-faked-popup-background2 {
	position:absolute;
	top: 0px;
	left: 0px;

	width:100%;
	height:100%;
}


/**************************************************************************
*
*   Opacity
*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
*   Firefox /CSS3
*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*	 x can be a value from 0.0 - 1.0
*   A lower value makes the element more transparent.
*   Firefox uses CSS3 standard property opacity:x for transparency
*
*   IE
*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*	 In IE (filter:alpha(opacity=x)) x can be a value from 0 - 100.
*   A lower value makes the element more transparent.
*   IE uses a custom filter:alpha(opacity=x).
*
***************************************************************************/

/* this makes the opacity effect */
/* It contains nothing           */
#dvs-faked-popup-background1 {
	z-index:500;
	background-color:#333;

	/* for IE */
	filter: alpha(opacity=90);

	/* CSS3 standard */
	opacity: 0.9;

}

/* This contains the popup content */
/* it is higher in the z-index than #dvs-faked-popup-background-opaque */
#dvs-faked-popup-background2 {
	z-index:600;
	background-color:transparent;

}

/* center */
#dvs-faked-popup-background2 {
	text-align: center;
}




#dvs-faked-popup-content-wrapper {
	padding: 0;
	border: 1px solid #AAA;

	margin:0 auto;
	margin-top:6em;
	width: 550px;
	text-align:left;
}

#dvs-faked-popup-toolbar {
	background-color:#CCC;
	padding: 0.3em;
	padding-left:1em;
	text-align:right;

}

#dvs-faked-popup-content {
	background-color:#FFF;
	padding: 1em;

	/* scroll if necessary */
	overflow:auto;
	height:450px;

}






	/**************************************************************************
	*
	*   stuttgart-tourist.de
	*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	*	 -Original CSS von stuttgart-tourist.de
	*   http://www.stuttgart-tourist.de/css/stuttgart_modules.css
	***************************************************************************/
ul.result {
	 margin: 0;
	 padding: 0;
	 font-size: 0.85em;
}
ul.result li {
	 margin: 0 !important;
	 padding: 5px 0 5px 0 !important;
	 background-image: none !important;
	 border-bottom: 1px solid #ECE8CF;
	 color: #827648;
}
ul.result li a {
	 margin: 0;
	 padding: 0 !important;
	 color: #827648;
	 display: block;
}
ul.result li a:hover {
	 margin: 0;
	 padding: 0;
	 background-image: none;
	 color: #333 !important;
}
ul.result li a strong {
	 color: #333;
	 font-size: 1.1em;
	 margin-left: -1px;
}
ul.result li em {
	 font-style: normal;
	 background-color: #FEEFC8;
}
ul.result li a em {
	 font-style: normal;
	 background-color: #FEEFC8;
}




	/**************************************************************************
	*
	*   stuttgart-tourist.de
	*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	*	 -Ueberschreiben der original styles
	*
	***************************************************************************/
/* Hide Headline, prev. month, next month */
.remote-content-wrapper form,
.remote-content-wrapper .pager {
	display: none;
}

ul.result {
	list-style: none;
}




	/**************************************************************************
	*
	*   stuttgart-tourist.de
	*  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	*	 -Wrapper
	*
	***************************************************************************/
.remote-content-wrapper {
	background-color: #FFF;
	border: 1px solid #876a00;
	padding: 1em;
}