@charset "iso-8859-1";

/***********************************************************************************
 * screen.css		2013-05-13
 **********************************************************************************/

/***********************************************************************************
* Colors          (x = repeat colors)
************************************************************************************
rgb(255,255,255)   x   white             body - background
rgb(255,255,255)       white             HeaderWrapper - background
rgb(253,171,161)   x   altrosa           MenuBar - background border-top
rgb(156,43,60)     x   rot               MenuBar - background
rgb(156,43,60)         rot               Menue list - background focus/hover
rgb(253,171,161)       altrosa           Menu - background border-top
rgb(156,43,60)         rot               Menue - background
rgb(156,43,60)         rot               Menue list - background focus/hover
rgb(156,43,60)         rot               Menue list - background a,...
rgb(156,43,60)         rot               Menue list - background focus/hover
rgb(253,171,161)       altrosa           Menue list - color a,...
rgb(246,245,204)   x   beige hell/gelb   Menue list - color focus/hover
rgb(255,255,255)       white             ContentFrame
rgb(186,31,27)     x   rot hell          Footer - background border-top
rgb(88,103,96)         grünschwarz       Footer - background
rgb(246,245,204)   x   beige hell        Footer - color a,...
rgb(253,171,161)       altrosa           Footer - color focus/hover
***********************************************************************************/

/***********************************************************************************
* Fonts
************************************************************************************
1) Verdana, Arial, Helvetica, Sans-Serif;          Footer, Copyright
2) Trebuchet MS, Verdana, Arial, Helvetica, S-S;   Menu
***********************************************************************************/

/***********************************************************************************
* Basic
***********************************************************************************/
* {	margin: 0;
	padding: 0;
}

html {
	height: 100%;	/* if sticky footer --> height, body: 100% */
}

body {
	height: 100%;	/* if sticky footer --> height, body: 100% */
	padding: 0;
	margin: 0 auto;
	background-color: white;
}

body > #ContentFrame {
	height: auto;
	min-height: 100%;
	}

/***********************************************************************************
* Header
***********************************************************************************/
#HeaderWrapper {
	width: 960px;
	height: 150px;
	top: 0;
	left: 50%;             /* center, if margin: 0 auto n.a. */
	margin-left: -480px;   /* center, if margin: 0 auto n.a. */
	padding: 0;
	position: fixed;
	background-color: white;
	z-index: 100;          /* layer on the top */
}

#Hallmark {
	width: 273px;
	height: 72px;
	top: 20px;
	left: 30px;
	position: relative;

	background-image: url(images/Hallmark-l-transparent.png);
	background-repeat: no-repeat;
	background-attachment: scroll;
}

#HeaderImage {
	width: 75%;
	position: relative;
	float: right;
}

/***********************************************************************************
* Menu
***********************************************************************************/
#MenuBar { /* menu bar background (left and right overlappings) */
	top: 110px;
	width: 100%;
	height: 42px;
	border-top: 1px solid rgb(247,74,99);
	position: fixed;
	background-color: rgb(156,43,60);
	z-index: 100;          /* layer on the top */
}

#Menu { /* (active) menu area */
	width: 960px;
	height: 40px;
	top: 110px;
	padding: 0;
	padding-top: 1px;
	padding-bottom: 0;
	margin: 0 auto;
	border-top: 1px solid rgb(247,74,99);
	position: absolute;
	background-color: rgb(156,43,60);

	font-family: Trebuchet MS, Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 16px;
	font-weight: bold;
}

.MenuItem {
	top: 8px;
	left: 30px;
	padding: 0 30px;
	position: relative;

	color: rgb(246,245,204);
	display: inline;
	list-style-type: none;
	float: left;
}

.MenuItem a:link,
.MenuItem a:visited {
	color: rgb(253,171,161);
	background-color: rgb(156,43,60);
	text-decoration: none;
	outline: none;
}

.MenuItem a:focus,
.MenuItem a:hover,
.MenuItem a:active {
	color: rgb(246,245,204);
	text-decoration: none;
	outline: none;
}

.selected a,
.selected a:link,
.selected a:visited,
.selected a:focus,
.selected a:hover,
.selected a:active {
	color: rgb(246,245,204);
	text-decoration: none;
	outline: none;
}

/***********************************************************************************
* Content
***********************************************************************************/
#ContentFrame {
	width: 960px;
	height: 100%;
	top: 70px;
	padding-top: 70px;     /* else content slips under menu */
	padding-right: 0;
	padding-bottom: 60px;  /* else footer overlaps content in small viewports */
	margin: 0 auto;
	position: relative;
	background-color: white;
}

/***********************************************************************************
* Footer
***********************************************************************************/
#Footer {
	width: 100%;
	height: 220px;
	padding-top: 10px;
	margin: 0;
	border-top: 5px solid rgb(186,31,27);
	position: relative;

	background-color: rgb(104,105,109);
	color: rgb(246,245,204);
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 12px;
}

#FooterTable {
	width: 960px;
	padding: 0;
	margin: 0 auto;
	left: 30px;
	position: relative;
}

#FooterTable td {
	vertical-align: top;
}

#Footer li {
	width: 150px;
	padding: 0;
	margin: 0;

	text-align: left;
	line-height: 160%;
	list-style-type: none;
}

#Footer li a:link,
#Footer li a:visited {
	color: rgb(246,245,204);
	text-decoration: none;
	outline: none;
}

#Footer li a:focus,
#Footer li a:hover,
#Footer li a:active {
	color: rgb(253,171,161);
	text-decoration: none;
	outline: none;
}

#Copyright {
	width: 100%;
	height: 16px;
	padding-top: 2px;

	background-color: rgb(156,43,60);
	color: rgb(253,171,161);
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	font-weight: normal;
	text-align: center;
}
