@charset "UTF-8";
/**
* "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
*
* (en) Example of a patch stylesheet for the Internet Explorer
* (de) Beispiel für ein Anpassungs-Stylesheet für den Internet Explorer
*
* @copyright       Copyright 2005-2007, Dirk Jesse
* @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
*                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
* @link            http://www.yaml.de
* @package         yaml
* @version         3.0.1
* @revision        $Revision: 92 $
* @lastmodified    $Date: 2007-07-15 10:26:40 +0200 (So, 15 Jul 2007) $
*/

/* Layout independent adjustments | Layout-unabhängige Anpassungen ----------------------------------- */
@import url(../core/iehacks.css);

/* Layout-dependent adjustments | Layout-abhängige Anpassungen --------------------------------------- */
@media screen
{
  /*-----------------------------------------------------------------------------------------------------*/

  /**
  * Bugfix for IE 3-Pixel-Jog Bug
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */

  * html #col3 { height: 1%; }
  * html #col1 {margin-right: -3px;}
  * html #col3 { margin-left: 0; }

 /*-----------------------------------------------------------------------------------------------------*/
  /**
  * (en) Simulate min-width / max-width for IE by using JS-Expressions
  * (de) Über JS-Expressions können die Eigenschaften min-width / max-width im IE simuliert werden
  *
  * @workaround
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      no
  */

  * html #page_margins {
  /* Fallback if no Javascript enabled */
  width: 85em;

  /* min-width & max-width width JS-Expressions */
  width: expression((document.documentElement && document.documentElement.clientHeight) ?
    (document.documentElement.clientWidth < 740) ? "740px" : (( document.documentElement.clientWidth > (950)) ? "1000px" : "auto") :

    (document.body.clientWidth < 740) ? "740px" : (( document.body.clientWidth > (950)) ? "1000px" : "auto")
 );
  }
  /*-----------------------------------------------------------------------------------------------------*/


* html h1
{
	 margin-top: 10px;
}

.included
{
	margin-top: -20px !important;
}

* html .contentblock .content_image_rechts
{
	 margin-right: -5px !important;
}

#topbild_with_Nav li
{
	 margin-bottom: -2px !important;
}

* html .shortnews_ohnebild
{
	height: 100px;
}

* html .topic
{
	height: 100px;
}

 #top_with_flash h1 
 {
	 padding: 10px 5px 0px 20px;
 }
 
* html #top_with_flash h1 
 {
	 padding: 0px 5px 0px 20px;
 }



}