﻿/* Übernommen von http://matthewjamestaylor.com/blog/ultimate-3-column-holy-grail-pixels.htm */
body
{
	margin: 0;
	padding: 0;
	border: 0; /* This removes the border around the viewport in old versions of IE */
	width: 100%;
	background: white;
	min-width: 600px; /* Minimum width of layout - remove line if not required */ /* The min-width property does not work in old versions of Internet Explorer */
	font-size: 90%;
	font-family: Arial, Helvetica, sans-serif;
}
a
{
	color: rgb(200, 0, 0);
}
h1, h2, h3, h4, h5
{
	margin: .8em 0 .2em 0;
	padding: 0;
	font-style: normal;
	color: rgb(200, 0, 0);
}
h1
{
	font-weight: bold;
	font-size: 18pt;
}
h2
{
	font-size: 14pt;
}
h3
{
	font-size: 12pt;
}
hr
{
	color: rgb(200, 0, 0);
}
td
{
	padding: 5px;
	height: 24px;
	border: 1px solid silver;
}
table
{
	border: thin solid rgb(200, 0, 0);
	border-collapse: collapse;
}
.tableListe
{
	border: inherit;
	text-align: left;
}

.left_menu
{
	margin-left: 5px;
}
.left_menu_no_img
{
	margin-top: 10px;
}
.menuItem
{
	border-width: 1px 0 0 0;
	border-color: rgb(200, 0, 0);
	line-height: 30px;
	font-size: 12px;
	color: rgb(200, 0, 0);
	position: relative;
	height: 26px;
	font-weight: normal;
	border-top-style: dotted;
	margin-right: 15px;
}
.menuItem a:hover
{
	color: white;
	background: rgb(200, 0, 0);
	text-decoration: none;
}
.menuItem a:link
{
	text-decoration: none;
}
.menuItem a:visited
{
	text-decoration: none;
}
.nav_current_img
{
	text-align: center;
	position: absolute;
	height: 26px;
	vertical-align: middle;
}
.nav_current_text
{
	color: inherit;
	margin-left: 5px;
}
.nav_other_img
{
	text-align: center;
	position: absolute;
	height: 26px;
	vertical-align: middle;
}
.nav_other_text
{
	color: inherit;
	margin-left: 5px;
}
.navTrailItem
{
	color: rgb(200, 0, 0);
}
.navigationTrail
{
	float: left;
	font-size: 12px;
	margin: 5px;
}
p
{
	margin: .4em 0 .8em 0;
	padding: 0;
}
img
{
	margin: 10px 0 5px;
}
/* Header styles */
#header
{
	clear: both;
	float: left;
	width: 100%;
}
#header
{
	border-bottom: 1px solid rgb(200, 0, 0);
}
#header p, #header h1, #header h2
{
	padding: .4em 15px 0 15px;
	margin: 0;
}
#header img
{
	margin: 0;
}
#header ul
{
	clear: left;
	float: left;
	width: 100%;
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
}
#header ul li
{
	display: inline;
	list-style: none;
	margin: 0;
	padding: 0;
}
#header ul li a
{
	display: block;
	float: left;
	margin: 0 0 0 1px;
	padding: 3px 10px;
	text-align: center;
	background-color: Silver;
	color: black;
	text-decoration: none;
	position: relative;
	left: 15px;
	line-height: 1.3em;
}
#header ul li a:hover
{
	background: rgb(200,0,0);
	color: white;
}
#header ul li a.active, #header ul li a.active:hover
{
	color: #fff;
	background: #000;
	font-weight: bold;
}
#header ul li a span
{
	display: block;
}

#header .banner_top
{
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
#header .banner_top
{
	float: left;
	width: 100%;
	height: 95px;
	overflow: hidden;
	border-bottom: 3px rgb(200,0,0) solid;
	border-top: 3px rgb(200,0,0) solid;
}

#header .header_feuerwehr
{
	width: 90%;
	float: right;
	padding: 0px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 28px;
	font-style: italic;
	color: rgb(200, 0, 0);
	text-align: right;
	font-weight: bold;
	margin-top: 15px;
	margin-right: 5px;
}
#header .header2_feuerwehr
{
	width: 100%;
	margin-right: 5px;
	clear: both;
	padding: 0px;
}
#header .header2_feuerwehr #facebooklike
{
	float: right;
	margin-top:3px;
	margin-bottom:2px;
}
#header .banner_image_first
{
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	float: right;
}
#header .banner_image
{
	border-left: 3px rgb(200,0,0) solid;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	float: right;
}


/* column container */
.colmask
{
	position: relative; /* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear: both;
	float: left;
	width: 100%; /* width of whole page */
	overflow: hidden; /* This chops off any overhanging divs */
}
/* holy grail 3 column settings */
.threecol
{
	background: white; /* Right column background colour */
}
.threecol .colmid
{
	float: left;
	width: 200%;
	margin-left: -100px; /* Width of right column */
	position: relative;
	right: 100%;
	background: white; /* Centre column background colour */
}
.threecol .colleft
{
	float: left;
	width: 100%;
	margin-left: -50%;
	position: relative;
	left: 200px; /* Left column width + right column width */
}
.threecol .col1wrap
{
	float: left;
	width: 50%;
	position: relative;
	right: 100px; /* Width of left column */
	padding-bottom: 1em; /* Centre column bottom padding. Leave it out if it's zero */
}
.threecol .col1
{
	margin: 0 105px 0 105px; /* Centre column side padding:
                             Left padding = left column width + centre column left padding width
                             Right padding = right column width + centre column right padding width */
	position: relative;
	left: 200%;
	overflow: hidden;
}
.threecol .col2
{
	float: left;
	float: right; /* This overrides the float:left above */
	width: 90px; /* Width of left column content (left column width minus left and right padding) */
	position: relative;
	right: 5px; /* Width of the left-had side padding on the left column */
}
.threecol .col3
{
	float: left;
	float: right; /* This overrides the float:left above */
	width: 90px; /* Width of right column content (right column width minus left and right padding) */
	margin-right: 15px; /* Width of right column right-hand padding + left column left and right padding */
	position: relative;
	left: 50%;
}
/* Footer styles */
#footer
{
	clear: both;
	float: left;
	width: 100%;
	margin-top: 3px;
	border-top: 1px solid rgb(200, 0, 0);
}
#footer #fb-root
{
	float: left;
	margin-left: 100px
}
#footer #lastmodified
{
	float: right;
	padding-right:5px;
}

#terminliste ul
{
	line-height: 150%;
}
.col3 #facebooklike
{
	margin: .8em 0 .2em 0;
	padding: 0;
}
.kontakt_ausschuss_first, .kontakt_first
{
	font: normal normal 100% Arial, Helvetica, Sans-Serif;
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
	float: left;
}
.kontakt_ausschuss, .kontakt
{
	border-width: 1px 0px 0px 0px;
	border-style: dotted none none none;
	font: normal normal 100% Arial, Helvetica, Sans-Serif;
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
	float: left;
	border-top-color: rgb(200, 0, 0);
}
.kontakt_ausschuss_name
{
	font-size: large;
	font-weight: bold;
	color: rgb(200, 0, 0);
}
.kontakt_ausschuss_adresse
{
}
.kontakt_ausschuss_tel
{
}
.kontakt_ausschuss_telmobil
{
}
.kontakt_ausschuss_email
{
}
.kontakt_spalte_1
{
	float: left;
	text-align: left;
	margin-right: 10px;
	width: 300px;
}
.kontakt_spalte_2
{
	float: left;
	text-align: left;
}
.einsatzbericht_first, .einsatzbericht
{
	float: left;
	width: 100%;
	margin-bottom: 10px;
	font: normal normal 100% Arial, Helvetica, Sans-Serif;
}
.einsatzbericht
{
	padding: 3px 0px 0px 0px;
	border-width: 1px 0px 0px 0px;
	border-style: dotted none none none;
	border-top-color: rgb(200, 0, 0);
}
.einsatzdatum
{
	float: left;
	text-align: left;
	margin-right: 10px;
	width: 80px;
}
.einsatzbeschreibung
{
	float: left;
	text-align: left;
	margin-right: 10px;
	width: 300px;
}
.einsatzuhrzeit
{
	float: left;
	text-align: left;
	margin-right: 10px;
	width: 120px;
}
.einsatzmaterial
{
	float: left;
	text-align: left;
}
.einsatzbild
{
	float: left;
	margin-left: 30px;
}

.table_alle_termine
{
	border: 1px solid;
	border-color: Silver;
}
.table_alle_termine td
{
	border-color: Silver;
}
.table_alle_termine_header
{
	color: rgb(200,0,0);
	text-align: left;
}

