@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: auto; /* this overrides the text-align: center on the body element. */
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(bg06-3.jpg);
	font-size: 16px;
	color: #F0F0F0;
} 
.twoColElsLtHdr #header {
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
	font-weight: lighter;
	color: #F0F0F0;
	margin-left: 50px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 50px;
	text-align: center;
} 
.twoColElsLtHdr #header h1 {
	margin-left: 10px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 36px;
	height: 40px;
	font-weight: lighter;
	color: #FFF;
	background-image: url(bg06-3.jpg);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align: center;
	line-height: 40px;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 180px; /* top and bottom padding create visual space within this div */
	margin-left: 120px;
	height: 400px;
	top: 30px;
	background-color: #EBEBEB;
	background-image: url(bg06-3.jpg);
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	font-size: 16px;
	color: #FFF;
	text-align: left;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 40px;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	color: #FFF;
	font-size: 18px;
	font-weight: lighter;
	background-image: url(bg06-3.jpg);
	background-position: 700px800px;
	margin-top: 0px;
	margin-right: 200px;
	margin-bottom: 0px;
	margin-left: 400px;
	padding-top: 0px;
	padding-left: 0px;
	height: inherit;
	border: 0;
	line-height: normal;
	width: 800px;
	text-align: center;
	font-family: "Comic Sans MS", cursive;
} 
Redline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	color: #F00;
	margin-left: 0px;
}

.twoColElsLtHdr #footer {
	padding: 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	color: #F00;
	background-color: #CCC;
	margin-left: 50px;
	padding-left: 50px;
	background-image: url(bg06-3.jpg);
	text-align: left;
} 
.twoColElsLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 14px;
	text-align: left;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
	text-align: justify;
}
.twoColElsLtHdr #container #headerh5 {
	font-size: 18px;
	line-height: normal;
	font-weight: lighter;
	color: #F00;
	margin-left: 50px;
	padding-left: 10px;
}
.twoColElsLtHdr #container #header h1 {
	font-size: 36px;
	text-align: left;
}
.twoColElsLtHdr #container #header h1 {
	font-size: 36px;
	font-family: Tahoma, Geneva, sans-serif;
}
.Subtitle {
	font-size: 24px;
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #container #footer {
	font-size: 12px;
}
.redsidebar {
	color: #F00;
	text-decoration: none;
}
.twoColElsLtHdr #container #mainContent table caption {
	color: #F00;
	font-size: 18px;
}
.caption {
	color: #FFF;
	font-size: 16px;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table .caption {
	color: #FFF;
	font-size: large;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
.twoColElsLtHdr #sidebar1 p {
	color: #FFFFFF;
}
.twoColElsLtHdr #container #sidebar1 p a {
	border-color: 0;
	text-decoration: none;
	font-size: 16px;
	color: #F00;
}
.twoColElsLtHdr #container #sidebar1 .twoColElsLtHdr {
	color: #FFF;
}
.twoColElsLtHdr #container #sidebar1 p {
	color: #FFF;
	font-size: 16px;
	text-align: left;
}
.twoColElsLtHdr #container #mainContent table caption {
	font-size: 24px;
}
.twoColElsLtHdr #container #footer a {
	color: #F00;
}
.redsidebar {
	color: #FFF;
	text-align: left;
	font-style: normal;
}
.twoColElsLtHdr #container #mainContentred {
	color: #F00;
}
.twoColElsLtHdr #container #mainContent .Subtitlered {
	color: #F00;
	text-align: center;
	font-style: normal;
	font-size: 16px;
}
.twoColElsLtHdr #footer a {
	color: #F00;
	text-decoration: none;
	text-align: left;
}
.Subtitleredcenter {
	font-size: 24px;
	font-style: normal;
	color: #FFF;
	text-align: center;

}
.twoColElsLtHdr #container #mainContent table {
	text-align: center;
	color: #FFF;
}
.twoColElsLtHdr #header #sidebar1 .sidebar1 a {
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td pfont14weiss {
	font-size: 14px;
}
.twoColElsLtHdr #container #mainContent table tr td p {
	font-size: 12px;
	color: #FFF;
	font-weight: normal;
}
#container #mainContent table tr td p {
	font-size: 14px;
}
.twoColElsLtHdr #container #mainContent table tr td p strongBlock {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td p strong Block {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td p strong {
	color: #F0F0F0;
	text-align: left;
}
.twoColElsLtHdr #container #mainContent table tr td .caption {
	text-align: justify;
	padding-left: 100px;
}
.twoColElsLtHdr #container #mainContent table tr td .caption {
	padding-left: 100px;
	text-align: center;
	font-weight: lighter;
	font-size: 24px;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td .caption strong {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table tr td .caption .twoColElsLtHdr {
	text-align: center;
	padding-left: 100px;
}
.twoColElsLtHdr #container #mainContent .Subtitle .Subtitle12 {
	font-size: 12px;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent .Subtitle {
	font-style: normal;
}
.twoColElsLtHdr #container #mainContent .Subtitle .Subtitle .Subtitle12 .Subtitle12kursiv {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent .Subtitle .Subtitle .Subtitle12 .Subtitle12 {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent .Subtitle18 {
	font-size: 18px;
	color: #FFF;
	text-decoration: 0;
	font-style: normal;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent p strong {
	font-weight: normal;
	font-size: 24px;
}
.twoColElsLtHdr #container #mainContent .text12 {
	font-size: 14px;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent12 {
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent .12 {
	font-size: 16px;
	text-align: center;
	font-weight: lighter;
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent .Subtitle {
	color: #FFF;
	font-size: 12px;
}
.twoColElsLtHdr #container #mainContent .Subtitle .12bold {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent .Subtitle .12strong {
	font-weight: bold;
}
.twoColElsLtHdr #sidebar1 .sidebar1 {
	font-size: 18px;
}
.twoColElsLtHdr #sidebar1 .sidebar1 {
	color: #FFF;
	font-size: 16px;
}
.twoColElsLtHdr #sidebar1 .sidebar1 a {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 .sidebar1 a {
	font-family: Arial, Helvetica, sans-serif;
	color: #F00;
}
.twoColElsLtHdr #sidebar1 .sidebar1 a {
	color: #FFF;
	font-size: 16px;
}
.twoColElsLtHdr #mainContent table tr td {
	border: 1;
	border-color: #F00;


}
.twoColElsLtHdr #container center {
	text-align: center;
}
.twoColElsLtHdr #sidebar1 .sidebar1 .sidebar1 {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 .sidebar1 .sidebar1 {
	font-family: Arial, Helvetica, sans-serif;
}
.twoColElsLtHdr #mainContent table tr td {
	font-weight: normal;
	color: #FFFFFF;
	font-style: inherit;
	font-size: 16px;
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;

}
.twoColElsLtHdr #mainContent table {
	text-align: center;
	padding-left: 20px;
}
.twoColElsLtHdr #container #sidebar1 .sidebar1 .redsidebar .redsidebar {
	color: #F00;
}
.redsidebar2 {
	color: #F00;
}
.redsidebar2 {
	color: #F00;
}
.twoColElsLtHdr #container #sidebar1 .redsidebar .redsidebar .redsidebar .redsidebar2 {
	color: #F00;
}
.twoColElsLtHdr #container #mainContent .Subtitle12kursiv .Subtitle12kursiv {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent .Subtitle12kursiv .Subtitle12kursiv {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent .Subtitle {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table tr td p {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table tr td pBlock {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td pBlock {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td p {
	font-size: 24px;
	font-weight: lighter;
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
.tabellarischerLebenslaufZahlen {
	font-weight: normal;
	font-size: 16px;
	font-style: normal;
}
.twoColElsLtHdr #container #mainContent table tr td p strong {
	font-weight: bold;
	font-size: 14px;
}
.twoColElsLtHdr #container #mainContent table tr td p strong {
	font-size: 14px;
}
.twoColElsLtHdr #container #mainContent table tr td p .text12 {
	font-size: 12px;
	font-style: normal;
	text-align: center;
}
.tabellerischerLLebenslauf {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent table tr td p .text12Block {
	text-align: justify;
	font-size: 14px;
}
.Bold {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent table tr td .Bold {
	font-weight: bold;
	font-size: 14px;
}
.redsidebar3 {
	color: #F00;
}
.twoColElsLtHdr #container #sidebar1 p .redsidebar {
	color: #FFFFFF;
	font-size: 18px;
}
.twoColElsLtHdr #mainContent table {
	border: 2;
	border-color: #F00;
	text-align: center;
}
.twoColElsLtHdr #mainContent table .12 td {
	text-align: center;
}
.UnterschriftenGalerieBilder {
	font-size: 14px;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td p16text {
	font-size: 16px;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td p a {
	font-size: 14px;
	text-align: center;

}
.twoColElsLtHdr #container #mainContent table tr td p strong {
	font-size: 16px;
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block {
	text-align: justify;
	font-size: 12px;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block .text12Block {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block .text12Block {

}
.twoColElsLtHdr #container #mainContent table tr td .tabellerischerLLebenslauf .text12Block .text12Block {

}
.twoColElsLtHdr #container #mainContent table tr td #vlightbox1 {
	font-size: 14px;
}
.twoColElsLtHdr #footer {
	font-size: 14px;
}
.twoColElsLtHdr #footer14 {
	font-size: 14px;
}
.twoColElsLtHdr #footer {
	font-size: 14px;
	color: #F00;
	text-align: left;
}
.twoColElsLtHdr #container #sidebar1 .redsidebar .redsidebar .redsidebar {
	color: #FFF;
}
.Impressum {
	color: #FFF;
}
.twoColElsLtHdr #container #sidebar1 .redsidebar .redsidebar .redsidebar .redsidebar .redsidebar {
	color: #F00;
}
.twoColElsLtHdr #container #mainContent table tr td .text12 {
	font-weight: bold;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block .12 {
	text-align: justify;
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block .12 strong .Subtitle12 .Subtitle12 .12 {
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block .12 {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent table tr td .12 .12strong .12bold {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent table tr td .text12Block .12bold strong {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent p {
	color: #FFF;
	font-size: 24px;
	text-align: center;
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #container #mainContent p .Subtitleredcenter {
	text-align: center;
	font-size: 24px;
}
.twoColElsLtHdr #container #mainContent .Subtitle18 a {
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td .Subtitle18 {
	text-align: center;
	font-size: 24px;
	color: #F00;



}
.twoColElsLtHdr #container #mainContent table tr .12 .12Block {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td .12 .12block {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent table tr td .text12 {
	text-align: left;
	color: #FFF;

}
.twoColElsLtHdr #mainContent table .12 td a {
	color: #FFF;
}
.twoColElsLtHdr #mainContent table .12 td .UnterschriftenGalerieBilder {
	color: #FFF;
}
.twoColElsLtHdr #container #sidebar1 .redsidebar3 {
	color: #F00;
}
.twoColElsLtHdr #container #mainContent p a {
	color: #FFF;
	font-size: 18px;
	text-align: center;
}
.twoColElsLtHdr #sidebar1 p a {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 p a {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p a {
	color: #FFF;
	font-weight: normal;
	font-size: 14px;
}
.twoColElsLtHdr #sidebar1 p .redsidebar {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p .redsidebar {
	color: #F00;
	font-size: 14px;
}
.twoColElsLtHdr #sidebar1 p .redsidebar2 {
	color: #F00;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}
.twoColElsLtHdr #mainContent table .12 td .UnterschriftenGalerieBilder {
	color: #FFF;
}
.twoColElsLtHdr #mainContent table .12 td .UnterschriftenGalerieBilder .12 {
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr td {
	color: #FFF;
	font-size: 16px;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent table tr td .Subtitleredcenter {
	color: #FFF;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent table {
	color: #FFF;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table .Bold td {
	color: #F00;
	font-size: 24px;
}
.twoColElsLtHdr #container #mainContent table .Bold .Subtitleredcenter .Subtitleredcenter {
	color: #F00;
}
.twoColElsLtHdr #container #mainContent table .Bold td .Subtitleredcenter {
	color: #F00;
}
.twoColElsLtHdr #mainContent .Subtitle a {
	color: #FFF;
}
.twoColElsLtHdr #mainContent table .12 td {
	font-size: small;
	color: #FFF;
}
.twoColElsLtHdr #mainContent p .Subtitle {
	font-size: 12px;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent .Subtitle {
	font-size: 18px;
}
.twoColElsLtHdr #header h1 .Subtitlered {
	font-size: 18px;
}
.twoColElsLtHdr #container #header h1 .Subtitle12 {
	font-size: 16px;
}
.twoColElsLtHdr #header h1 .Subtitle12 {
	font-size: 24px;
	font-weight: lighter;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #container p {
	text-align: left;
}
.twoColElsLtHdr #container p {
	text-align: center;
}
.twoColElsLtHdr #container p {
	font-size: 18px;
}
.twoColElsLtHdr #container p {
	font-size: 24px;
}
.twoColElsLtHdr #container #footer p {
	font-size: 12px;
	color: #F00;
}
.twoColElsLtHdr table tr td .Subtitleredcenter .Subtitlered {
	font-size: 24px;
}
.twoColElsLtHdr #container #mainContent .text12 {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent {
	font-size: 14px;
	color: #FFF;
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #container #mainContent table tr td .text12 strong {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent table tr td .text12 {
	color: #FFF;
	font-weight: normal;
	font-size: 12px;
}
.twoColElsLtHdr #container #mainContent table tr .12Block {
	text-align: left;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent table tr .text12 {
	text-align: left;
}
.twoColElsLtHdr #container #sidebar1 {
	color: #FFF;
	font-size: 16px;
}
.twoColElsLtHdr #container #sidebar1 p .sidebar1 a {
	color: #FFF;
}
.twoColElsLtHdr .Subtitleredcenter .Subtitlered {
	font-size: 24px;
}
.twoColElsLtHdr #container #sidebar1 p a {
	color: #F00;
}
.twoColElsLtHdr #container #sidebar1 p a {
	color: #FFF;
}
.twoColElsLtHdr #container #sidebar1 p a {
	color: #F40000;
}
.twoColElsLtHdr #container #sidebar1 p a {
	color: #FFF;
	font-size: 16px;
}
.twoColElsLtHdr #container #sidebar1 p .Subtitle {
	color: #FFF;
}
.twoColElsLtHdr #mainContent .Subtitleredcenter {
	font-size: 24px;
	color: #FFF;
}
.twoColElsLtHdr #mainContent table tr td .text12 {
	font-weight: normal;
	font-size: small;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #mainContent #vlightbox1 #vlightbox1 p .Subtitlered .Subtitle18 .Subtitlered {
	color: #000;
}
.subtitlered {
	color: #2B3431;
}
.subtitlered {
	color: #FF0000;
	font-size: 16px;
}
.twoColElsLtHdr #mainContent table tr {
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
}
.twoColElsLtHdr #mainContent table .text12Block td .12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
}
.twoColElsLtHdr #container #mainContent table tr .12 .12block .12 {
	text-align: justify;
}
.twoColElsLtHdr #mainContent table tr .text12Block p {
	text-align: center;
	font-size: medium;
}
.twoColElsLtHdr #mainContent table tr .text12Block table tr td {
	font-size: small;
}
.twoColElsLtHdr #mainContent table tr .12 {
	font-size: 14px;
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 table tr td .12strong {
	font-size: 18px;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 table tr td p {
	font-size: 18px;
}
.twoColElsLtHdr #mainContent table tr .text12 .text12 .text12Block {
	font-size: 24px;
}
.twoColElsLtHdr #mainContent .Subtitle18 {
	color: #F00;
}
.twoColElsLtHdr #mainContent .Subtitle18 {
	font-size: 24px;
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 .Subtitle18 {
	font-size: 24px;
}
.twoColElsLtHdr #mainContent .Subtitleredcenter {
	font-size: 16px;
	color: #FFFfff;
	text-align: center;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 .Subtitle18 {
	font-size: 24px;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 .Subtitle18 {
	color: #FFF;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 .Subtitle18 {
	font-size: 24;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 .Subtitle18 {
	font-size: 24px;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 table tr td p {
	font-size: 18px;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 table tr td p {
	color: #FFF;
}
.twoColElsLtHdr #mainContent table tr .Subtitle18 table tr td p {
	font-size: 16px;
}
.twoColElsLtHdr #mainContent table tr td table {
	text-align: left;
}
.twoColElsLtHdr #mainContent table tr td table tr td img {
	text-align: center;
}
.twoColElsLtHdr #mainContent p {
	font-size: 12px;
}
.twoColElsLtHdr #mainContent p {
	font-size: 14px;
	color: #FFFFFF;
}
.twoColElsLtHdr #mainContent p {
	color: #F00;
}
.twoColElsLtHdr table tr td .text12 .caption {
	text-align: left;
}
.twoColElsLtHdr #container p {
	color: #FFF;
	font-size: 24px;
	text-align: center;
}
.twoColElsLtHdr #container table {
	text-align: center;
}
.twoColElsLtHdr #container table caption {
	font-size: 24px;
	color: #FF0000;
}
.caption {
	color: #995600;
	text-align: center;
}
.twoColElsLtHdr table tr td .text12 .caption {
	color: #D6D6D6;
}
.twoColElsLtHdr tr td {
	font-size: x-large;
	font-family: "Comic Sans MS", cursive;
	color: #FFF;
	font-style: normal;
}
.twoColElsLtHdr tr td p {
	text-align: center;
}
.twoColElsLtHdr td p {
	font-size: 14px;
}
.twoColElsLtHdr tr td p {
	font-size: 18px;
	color: #FFF;
}
.twoColElsLtHdr #container p .Subtitlered .Subtitle18 .Subtitlered {
	color: #F00;
}
.twoColElsLtHdr #mainContent table caption .caption {
	color: #FFFFFF;
	font-size: 24px;
}
.twoColElsLtHdr #container #mainContent table tr td p .Subtitle18 {
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent .caption {
	font-size: large;
	text-align: center;
}
.twoColElsLtHdr #mainContent p {
	color: #F0F0F0;
	text-align: center;
	font-size: 24px;
	font-weight: normal;
	font-family: "Comic Sans MS", cursive;
	font-style: normal;
}
.twoColElsLtHdr #container #sidebar1 p {
	text-align: left;
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
}
.twoColElsLtHdr table tr td table tr td p {
	font-size: 12px;
}
.twoColElsLtHdr table tr td table tr td a .text12 {
	color: #FFF;
	text-align: center;
}
.twoColElsLtHdr table tr td table tr td {
	text-align: center;
	color: #FFF;
}
.twoColElsLtHdr tr td table tr td .UnterschriftenGalerieBilder {
	color: #FFF;
	font-size: 14px;
}
.twoColElsLtHdr tr td table tr .UnterschriftenGalerieBilder {
	color: #FFF;
	font-size: 14px;
	text-align: center;
}
.twoColElsLtHdr tr td table tr .UnterschriftenGalerieBilder a {
	color: #FFF;
}
.twoColElsLtHdr tr td table {
	font-size: 14px;
}
.twoColElsLtHdr .Subtitleredcenter {
	font-size: 16px;
	text-align: center;
	font-family: "Arial Black", Gadget, sans-serif;
	font-style: inherit;
}
.twoColElsLtHdr tr td table tr td .Subtitle12 {
	color: #FFF;
}
.twoColElsLtHdr tr td table tr td .Subtitle12 {
	text-align: center;
}
.twoColElsLtHdr tr td table tr td .Subtitle12 {
	font-size: 14px;
}
.twoColElsLtHdr #container {
	font-size: 24px;
	text-align: justify;
	font-weight: lighter;
	font-family: Werke;
}
.twoColElsLtHdr table tr td .UnterschriftenGalerieBilder .UnterschriftenGalerieBilder {
	color: #FFF;
	font-size: 14px;
}
.twoColElsLtHdr table tr .UnterschriftenGalerieBilder {
	font-size: 14px;
	text-align: center;
}
.twoColElsLtHdr #mainContent table .text12Block td .text12Block strong {
	font-size: 12px;
	font-weight: normal;
}
.twoColElsLtHdr #mainContent #footer p {
	color: #F00;
}
.twoColElsLtHdr #mainContent #footer {
	color: #FF0000;
}
.twoColElsLtHdr #mainContent #vlightbox1 p .Subtitlered .Subtitle18 .Subtitlered {
	font-size: 16px;
	color: #F00;
}
.twoColElsLtHdr #mainContent table tr td a br {
	color: #FFF;
	font-size: 36px;
}
.twoColElsLtHdr #container table tr td {
	font-size: large;
	text-align: left;
}
.twoColElsLtHdr #container p {
	text-align: left;
}
.twoColElsLtHdr #container p {
	font-size: 16px;
	text-align: left;
}
.twoColElsLtHdr #container table {
	text-align: right;
}
.twoColElsLtHdr #container table {
	text-align: right;
}
.twoColElsLtHdr #container table {
	text-align: justify;
}
.twoColElsLtHdr #container #mainContent tr td table tr td a {
	color: #FFF;
}
.twoColElsLtHdr #container table tr td .Subtitleredcenter {
	font-size: 24px;
}
.twoColElsLtHdr #mainContent .caption {
	text-align: center;
}
.twoColElsLtHdr #mainContent .caption {
	font-size: 24px;
	color: #FFFFFF;
}
.twoColElsLtHdr #mainContent table {
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent tr td table tr td a {
	color: #FFF;
	font-size: 12px;
}
.twoColElsLtHdr #container #mainContent table tr td table tr td {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent tr td table tr td .Subtitle12 {
	font-size: 12px;
	color: #FFF;
}
.twoColElsLtHdr #container #mainContent tr td table tr td {

}
.twoColElsLtHdr #container #mainContent tr td table tr td div a br {
	color: #FFF;
}
.twoColElsLtHdr #container p .Subtitle18 .Subtitle18 .Subtitlered {
	color: #E00;
}
.twoColElsLtHdr #mainContent table .text12Block td .text12Block {
	text-align: left;
	font-weight: normal;
}
.twoColElsLtHdr #mainContent table .text12Block td p strong {
	text-align: left;
	font-weight: normal;
}
.twoColElsLtHdr #mainContent p .Subtitlered .Subtitle18 .Subtitlered {
	color: #E00;
}
.twoColElsLtHdr #container #footer p {
	text-align: left;
	color: #FFFFFF;
}
.twoColElsLtHdr #container #mainContent tr td table tr td a img {
	color: #FFF;
}
.twoColElsLtHdr #container table tr td {
	font-size: 16px;
}
.twoColElsLtHdr #container table {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}
.redsidebar2 {
	color: #F00;
}
.twoColElsLtHdr #mainContent table .text10Block td .12 {
	font-size: 10px;
}
.twoColElsLtHdr #mainContent table .text10Block td .tabellarischerLebenslaufZahlen strong {
	font-size: x-small;
}
.twoColElsLtHdr #mainContent table .text9Block td .tabellarischerLebenslaufZahlen strong {
	font-size: 9px;
}
.twoColElsLtHdr #mainContent table .text9Block td .tabellarischerLebenslaufZahlen strong {
	font-style: normal;
}
.twoColElsLtHdr #mainContent table .text9Block td table .text9Block td .tabellarischerLebenslaufZahlen {
	text-align: left;
}
.twoColElsLtHdr #mainContent table .text9Block td table .text9Block td .tabellarischerLebenslaufZahlen {
	font-size: 10px;
}
.twoColElsLtHdr {
	font-size: 24%;
	font-family: "Comic Sans MS", cursive;
	color: #FFFFFF;
	text-align: center;
}
.twoColElsLtHdr #mainContent .class table tr td p {
	font-size: 12px;
	text-align: left;
}
.twoColElsLtHdr #mainContent .class table tr td {
	text-align: center;
}
.twoColElsLtHdr table tr td p {
	text-align: left;
}
.twoColElsLtHdr table tr td p {
	font-size: 18px;
}
.twoColElsLtHdr #footer {
	font-size: 10px;
}
.class10 {

}
.twoColElsLtHdr #footer .class10 .text10Block .Subtitle .text10Block {
	font-size: 10px;
}
.twoColElsLtHdr #footer .class10 .text10Block .Subtitle .text10Block .subtitlered .text9Block {
	font-size: 10px;
}
.twoColElsLtHdr #footer .class10 .text10Block .Subtitle .text10Block .subtitlered .text9Block {
	font-size: 12px;
}
.twoColElsLtHdr #container #mainContent .Subtitle18 {
	text-align: center;
}
.twoColElsLtHdr #header p {
	color: #FFFFFF;
	font-size: 16px;
	font-style: normal;
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent table tr td .Subtitleredcenter .Subtitleredcenter {
	font-size: 16px;
}
.twoColElsLtHdr #container #mainContent table tr td .Subtitleredcenter .Subtitleredcenter {
	color: #F00;
}
.twoColElsLtHdr #mainContent td table tr .Subtitleredcenter .Subtitle18 {
	color: #FFF;
}
.twoColElsLtHdr #mainContent td table tr .Subtitleredcenter p .Subtitle12 {
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr #mainContent td table tr .Subtitleredcenter p .Subtitle12 {
	font-size: 18px;
}
.twoColElsLtHdr #mainContent td table tr td .Subtitle18 {
	color: #FFF;
}
.twoColElsLtHdr #mainContent td table tr td .Subtitle16 .caption {
	color: #FFF;
}
.twoColElsLtHdr td tr td .Subtitle16 .Subtitle16 {
	font-size: large;
	text-align: center;
}
.twoColElsLtHdr #sidebar1 p .redsidebar .redsidebar {
	font-size: 14px;
}
.twoColElsLtHdr #container #mainContent table tr td p .12 {
	font-weight: lighter;
}
.twoColElsLtHdr #container #mainContent table tr td p {
	font-size: 16px;
}
.twoColElsLtHdr #mainContent .Subtitleredcenter {
	color: #FFF;
	font-size: 24px;
	text-align: center;
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #container #footer {
	font-size: 14px;
}
.twoColElsLtHdr table tr td .Subtitle18 {
	font-size: 9px;
	font-family: "Comic Sans MS", cursive;
	text-align: center;
}
.twoColElsLtHdr #container #sidebar1 p .redsidebar {
	color: #F00;
}
.twoColElsLtHdr #container #mainContent table {
	font-size: 16px;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #000;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 p {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #FFF;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #FFFFFF;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	font-style: normal;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	font-size: 16px;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 a {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 .sidebar1 a {
	color: #FFFFFF;
}
.twoColElsLtHdr #sidebar1 {
	color: #FFF;
	text-align: left;
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #sidebar1 .sidebar1 {
	color: #FFFFFF;
}
.twoColElsLtHdr #sidebar1 p .sidebar1 .sidebar1 {
	color: #FFF;
	text-align: center;
}
.twoColElsLtHdr table tr td a {
	color: #FFF;
	font-size: 16px;
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr table {
	font-size: 14px;
	text-align: center;
}
.twoColElsLtHdr #sidebar1 p {
	color: #FFF;
	font-size: 18px;
}
.twoColElsLtHdr #sidebar1 p {
	font-size: 14px;
}
.twoColElsLtHdr #sidebar1 .sidebar1 {

}
.twoColElsLtHdr #sidebar1 p {
	text-align: left;
	font-size: 16px;
}
.twoColElsLtHdr #mainContent p a .Subtitle18 .Subtitlered {
	font-size: 14px;
}
.twoColElsLtHdr #mainContent p a .Subtitle18 .Subtitlered {
	color: #F00;
}
.twoColElsLtHdr #sidebar1 p {
	font-size: 18px;
}
.twoColElsLtHdr #sidebar1 p {
	font-size: 18px;
}
.twoColElsLtHdr #sidebar1 p {
	font-size: 16px;
}
.twoColElsLtHdr #sidebar1 p {
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #sidebar1 p {
	font-size: 16px;
}
.twoColElsLtHdr #footer {
	font-size: 16px;
	color: #F0F0F0;
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #container table tr td {
	color: #F00;
}
.twoColElsLtHdr #container table tr td {
	color: #FFF;
}
#container table tr td {
	color: #F00;
}
.twoColElsLtHdr #container table tr td {
	color: #F00;
}
.twoColElsLtHdr #container table tr td {
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
	text-align: left;
	font-size: 14px;
}
.twoColElsLtHdr #container table {
	text-align: right;
}
.twoColElsLtHdr table {
	font-size: 24px;
}
.twoColElsLtHdr table {
	text-align: center;
}
.twoColElsLtHdr #container table {
	text-align: left;
}
.twoColElsLtHdr #header table {
	text-align: center;
}
.twoColElsLtHdr table tr td p {
	text-align: center;
}
.twoColElsLtHdr table tr td p {
	font-size: 24px;
}
.twoColElsLtHdr table {
	text-align: center;
}
.twoColElsLtHdr p {
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
	font-style: normal;
	font-weight: lighter;
}
.twoColElsLtHdr table {
	text-align: center;
}
.twoColElsLtHdr table {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent .Subtitle18 {
	font-size: 24px;
}
.twoColElsLtHdr table tr .text10Block p {
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColElsLtHdr table tr .text10Block p {
	font-size: 14px;
	text-align: justify;
}
.twoColElsLtHdr #header p {
	font-size: 24px;
	font-family: "Comic Sans MS", cursive;
	text-align: left;
}
.twoColElsLtHdr p {
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr p {
	font-size: 24px;
}
.twoColElsLtHdr #sidebar1 p {
	font-size: 16px;
}
.twoColElsLtHdr #container #mainContent table tr td .text12 {
	font-size: 16px;
	text-align: center;
}
.twoColElsLtHdr #header table tr td div {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 18px;
	text-align: center;
}
.twoColElsLtHdr div table tr td p {
	text-align: center;
}
.twoColElsLtHdr div table tr td p {
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr div table tr td p {
	font-family: "Comic Sans MS", cursive;
	font-weight: normal;
}
.twoColElsLtHdr div table tr td div {
	text-align: center;
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
}
.twoColElsLtHdr #container #mainContent table .caption div {
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
}
.twoColElsLtHdr #header p {
	color: #F00;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.twoColElsLtHdr #header p {
	color: #FFF;
}
.twoColElsLtHdr #header p {
	font-family: "Comic Sans MS", cursive;
	font-size: 24px;
	text-align: center;
	font-weight: normal;
}
.copyright {
	font-size: 18px;
}
.twoColElsLtHdr #footer p {
	color: #FFFFFF;
	text-align: center;
}
.twoColElsLtHdr #footer p {
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #footer p {
	font-size: 18px;
}
.twoColElsLtHdr #footer p {
	color: #FFF;
	text-align: left;
	font-size: 14px;
}
.Title {

}
.twoColElsLtHdr p {
	font-size: x-large;
	font-family: "Comic Sans MS", cursive;
	text-align: center;

}
.twoColElsLtHdr table {
	text-align: center;
	font-size: 16px;
}
.twoColElsLtHdr #header table tr td p .12strong {
	font-size: 16px;
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr #container p {
	font-size: 24px;
}
.twoColElsLtHdr #container p {
	text-align: center;
	font-size: 16px;
}
.twoColElsLtHdr #container table {
	text-align: center;
}
.twoColElsLtHdr #container table {
	text-align: center;
}
.twoColElsLtHdr #container table tr td {
	font-size: 12px;
	text-align: left;

}
.copyright {
	font-size: 16px;
}
.twoColElsLtHdr #footer {
	color: #FFFFFF;
}
.twoColElsLtHdr table tr td div {
	font-size: 24px;
}
.twoColElsLtHdr #footer {
	font-size: 14px;
	color: #F0F0F0;
}
.twoColElsLtHdr #footer p {
	color: #FFFFFF;
	text-align: left;
}
.twoColElsLtHdr table tr td p .12strong {
	font-size: 16px;
}
.twoColElsLtHdr #header h1 {
	text-align: left;
}
.twoColElsLtHdr #header p {
	text-align: center;
}
.TitleBilddesMonats {
	text-align: center;
}
.Titlleindex {
	text-align: center;
}
.twoColElsLtHdr table {
	text-align: center;
}
.impressum {
	font-family: "Comic Sans MS", cursive;
}
.twoColElsLtHdr span span {
	text-align: center;
}
.twoColElsLtHdr #container #header h1 {
	color: #FFF;
}
.twoColElsLtHdr #container #header h1 a {
	color: #FFF;
}
.twoColElsLtHdr #header h1 a {
	color: #FFF;
}
.twoColElsLtHdr table {
	text-align: center;
}
