/* Main */
#menu {
    width: 100%;
    margin: 0;  /*Abstand oben*/
    padding: 10px 0 0 0;cont
    list-style: none;  
/*    background-color: #111; */
    background-color: #111; /* ? */
/*    background-image: linear-gradient(#444, #111);  */
   background-image: linear-gradient(#eee, #bbb);	/* Farbverlauf Menübalken */
/*    border-radius: 50px;  */
    border-radius: 5px;
    box-shadow: 0 2px 1px #9c9c9c;  /* Schatten Menüleiste */
}

#menu li {
    float: left;
    padding: 0 0 10px 0;
    position: relative;
}

#menu a {
    float: left;
    height: 20px;   /*Balkenhöhe*/
    padding: 0 25px; /* Hor. Abstand Menüpunkte */
    color: #222;     /*Textfarbe */
/*    text-transform: uppercase;  */ /* Falls nur Grossbuchstaben */
    font: bold 14px/20px Arial, Helvetica;  /* Fontgröße/ Vert.Pos.  */
    text-decoration: none;
 /*   text-shadow: 0 1px 0 #000;  */ /* Text-Schatten & -Farbe */
	
}

/* Farbe Menü-Text selektiert */
#menu li:hover > a {
 /*   color: #fafafa;  */
	    color: #fff;
/*		background-image: linear-gradient(#04acec, #0186ba) */  /* nur kleines Rechteck ! */
}

/* For IE6 */
*html #menu li a:hover { 
    color: #fafafa;
}

#menu li:hover > ul {
    display: block;
}

/* Submenu entries */
#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 30px;   /* Hor. Pos. Submenü */
    left: 0;
    z-index: 99999;    
    background-color: #444;   /* ? */
    background-image: linear-gradient(#eee, #aaa); /* Farbverlauf gesamt. Untermenü */   
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#menu ul li {
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    box-shadow: 0 1px 0 #111111,   /* Trennstriche Submenü-Items */
                0 2px 0 #fff;
}

#menu ul li:last-child { 
    box-shadow: none;    
}

#menu ul a {    
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

/* Works for IE 6 */
/* *html #menu ul a {
    height: 10px;
    width: 150px;
} */

/* Works for IE 7 */
*:first-child+html #menu ul a {  
    height: 10px;
    width: 150px;
}

#menu ul a:hover {
   /* background-color: #0186ba; */
 /*  background-color: #ff0000; */ /* Farbe markierter eintrag im SubMenu, zieht nur wenn kein background-image angeg. */
  /*  background-image: linear-gradient(#04acec, #0186ba);  */
/*  background-image: linear-gradient(#04acec, #0186ba); *//* Farbverlauf markierter Eintrag Submenu */
}

/* Radius upper marked subitem */
#menu ul li:first-child a {
    border-radius: 5px 5px 0 0;
}

#menu ul li:first-child a:after {
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #444;
}

#menu ul li:first-child a:hover:after {
  /*  border-bottom-color: #04acec;  */
	/*   border-bottom-color: #ff0000;  */ /* Farbe kleines Dreieck oben am Submenu */
}

/* Radius lower marked subitem */
#menu ul li:last-child a {
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */


/* Kapitelanwahl */
#menu_kap {
    width: 150;
    margin: 0;  /*Abstand oben*/
	margin-left: 18px;
	margin-top: -2px;
    padding: 6px 0 0 0;   /*cont*/
    list-style: none;  
/*    background-color: #111; */
    background-color: #111; /* ? */
/*    background-image: linear-gradient(#444, #111);  */
   background-image: linear-gradient(#eee, #bbb);	/* Farbverlauf Menübalken */
/*    border-radius: 50px;  */
    border-radius: 5px;
    box-shadow: 0 2px 1px #9c9c9c;  /* Schatten Menüleiste */
}

#menu_kap li {
    float: left;
    padding: 0 0 10px 0;
    position: relative;
}

#menu_kap a {
    float: left;
    height: 15px;   /*Balkenhöhe*/
    padding: 0 25px; /* Hor. Abstand Menüpunkte */
    color: #222;     /*Textfarbe */
/*    text-transform: uppercase;  */ /* Falls nur Grossbuchstaben */
    font: bold 14px/20px Arial, Helvetica;  /* Fontgröße/ Vert.Pos.  */
    text-decoration: none;
 /*   text-shadow: 0 1px 0 #000;  */ /* Text-Schatten & -Farbe */
	
}

/* Farbe Menü-Text selektiert */
#menu_kap li:hover > a {
 /*   color: #fafafa;  */
	    color: #fff;
/*		background-image: linear-gradient(#04acec, #0186ba) */  /* nur kleines Rechteck ! */
}

/* For IE6 */
*html #menu_kap li a:hover { 
    color: #fafafa;
}

#menu_kap li:hover > ul {
    display: block;
}

/* Submenu entries */
#menu_kap ul {
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 25px;   /* Vert. Pos. Submenü */
    left: 0;
    z-index: 99999;    
    background-color: #444;   /* ? */
    background-image: linear-gradient(#eee, #aaa); /* Farbverlauf gesamt. Untermenü */   
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#menu_kap ul li {
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    box-shadow: 0 1px 0 #111111,   /* Trennstriche Submenü-Items */
                0 2px 0 #fff;
}

#menu_kap ul li:last-child { 
    box-shadow: none;    
}

#menu_kap ul a {    
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

/* Works for IE 6 */
/* *html #menu ul a {
    height: 10px;
    width: 150px;
} */

/* Works for IE 7 */
*:first-child+html #menu_kap ul a {  
    height: 10px;
    width: 150px;
}

#menu_kap ul a:hover {
   /* background-color: #0186ba; */
 /*  background-color: #ff0000; */ /* Farbe markierter eintrag im SubMenu, zieht nur wenn kein background-image angeg. */
  /*  background-image: linear-gradient(#04acec, #0186ba);  */
/*  background-image: linear-gradient(#04acec, #0186ba); *//* Farbverlauf markierter Eintrag Submenu */
}

/* Radius upper marked subitem */
#menu_kap ul li:first-child a {
    border-radius: 5px 5px 0 0;
}

#menu_kap ul li:first-child a:after {
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;  /* Position Top-Dreieck */
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #444;
}

#menu_kap ul li:first-child a:hover:after {
  /*  border-bottom-color: #04acec;  */
	/*   border-bottom-color: #ff0000;  */ /* Farbe kleines Dreieck oben am Submenu */
}

/* Radius lower marked subitem */
#menu_kap ul li:last-child a {
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu_kap:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html #menu_kap             { zoom: 1; } /* IE6 */
*:first-child+html #menu_kap { zoom: 1; } /* IE7 */



#noborder {
    border: none;
    display: block;
	width:      100%;
	max-width:  200px;
}

#menu_container {
     position: relative;
	 left:  20px;
	 top:   15px;
}	

h1 {
	font: bold 30px Arial, Helvetica; 
}
h2 {
	font: bold 20px Arial, Helvetica; 
}
h3 {
	font: bold 16px Arial, Helvetica; 
}
p {
	font: normal 14px/20px Arial, Helvetica; 
}

.pic {
	margin-left: 20px;
}

.ind1 {
	padding-left: 40px;
}

.mail {
	vertical-align: bottom;
    margin-bottom:  -1px;
	}
.sig_overview {
    border: 1;
	height: 308px;
	width:  920px;
	background-image: url("graphics/signale_menue_bgr.jpg");
	background-repeat: no-repeat;
	background-size: auto;
/*	margin:0pt auto; */
/*	left:  10px; */
}	

.sigmnu {
    width:    50px;
    padding:  3px;
    vertical-align: bottom;
	text-align: center;
}

.sigmnu_item {
  
}

.step {
	vertical-align: top;
	padding-top:  20px;
	padding-left:  20px;
/*	text-align:  top; */
}
.step_text {
	vertical-align: top;
	padding-top:  5px;
	padding-left:  20px;
	    display: block;
	max-width:   700px;
/*	text-align:  top; */
}


.navbutton  {
    width: 150px;
    margin: 20px;  /*Abstand Hor und Ver*/
    padding: 10px 20px 6px 10px;   /* Im Button, Top Right Bottom Left */
    list-style: none;  
    font: bold 14px/20px Arial, Helvetica; 
	color: #222;     /*Textfarbe */
	text-decoration: none;
    background-color: #111; /* ? */
    background-image: linear-gradient(#eee, #bbb);	/* Farbverlauf Menübalken */
    border-radius: 5px;
    box-shadow: 0 2px 1px #9c9c9c;  /* Schatten Menüleiste */
}
.navbutton2  {
    width: 150px;
    display: block;
    margin: 20px;  /*Abstand Hor und Ver*/
    padding: 5px 20px 3px 10px;
    list-style: none;  
    font: bold 14px/20px Arial, Helvetica; 
	color: #222;     /*Textfarbe */
	text-decoration: none;
    background-color: #111; /* ? */
    background-image: linear-gradient(#eee, #bbb);	/* Farbverlauf Menübalken */
    border-radius: 5px;
    box-shadow: 0 2px 1px #9c9c9c;  /* Schatten Menüleiste */
}

.navbutton_kap  {
    width: 100px;
    margin: 0px;  /*Abstand Hor und Ver*/
    padding: 0px 0px 6px 10px;   /* Im Button, Top Right Bottom Left */
    list-style: none;  
    font: bold 14px/20px Arial, Helvetica; 
	color: #222;     /*Textfarbe */
	text-decoration: none;
    background-color: #111; /* ? */
    background-image: linear-gradient(#eee, #bbb);	/* Farbverlauf Menübalken */
    border-radius: 5px;
    box-shadow: 0 2px 1px #9c9c9c;  /* Schatten Menüleiste */
}
/*.navbutton a {
   font: bold 14px/20px Arial, Helvetica; 
   color: #222;     /Textfarbe /
 
   padding: 30px 25px; / Hor. Abstand Menüpunkte /
}*/

#footer {
	text-align: left;
	font: 11px Arial;
	background-color: #cbc8b6;
}
#footer_date {
	text-align: right;
	font: 11px Arial;
	background-color: #cbc8b6;
}

/*** Hover Efekte für Signalbauformen ***/
.block_sg  {
    display: block;
	width:  34px;
	height: 300px;
	background-image:url('graphics/blocksignal_rg.png');
	background-position: 0 0;
}
.block_sg:hover  {
	background-position: 34px 0;
}

.einf_sg {
    display: block;
	width:  34px;
	height: 297px;
	background-image:url("graphics/einfahrsignal_rg.png");
	background-position: 0 0;
}
.einf_sg:hover {
	background-position: 34px 0;
}

.ausf_sg {
    display: block;
	width:  32px;
	height: 295px;
	background-image:url("graphics/ausfahrsignal_rg.png");
	background-position: 0 0;
}
.ausf_sg:hover {
	background-position: 32px 0;
}

.vor_sg {
    display: block;
	width:  46px;
	height: 210px;
	background-image:url("graphics/vorsignal_rg.png");
	background-position: 0 0;
}
.vor_sg:hover {
	background-position: 46px 0;
}

.gsp_gr_sg {
    display: block;
	width:  25px;
	height: 166px;
	background-image:url("graphics/gleissperr_gr_rg.png");
	background-position: 0 0;
}
.gsp_gr_sg:hover {
	background-position: 25px 0;
}

.gsp_kl_sg {
    display: block;
	width:  22px;
	height: 34px;
	background:url("graphics/gleissperr_kl_rg.png");
	background-position: 0 0;
}
.gsp_kl_sg:hover {
	background-position: 22px 0;
}



/* Hintergrundfarbe */
body {
   background-color: #ebe8d6;   /* ? */
}
 
.pd1 {
    padding-left:  20px;
	padding-top : 20px;
	display: block;
	width:      100%;
	max-width:  900px;

}	

.header {
   font: bold 30px Arial, Helvetica; 
   padding-left: 20px;
}

.subheader  {
   font: bold 20px Arial, Helvetica; 
   padding-left: 20px;
}






