/*----------------------------------------------------------------------------*/
/* overall layout -- positioning ---------------------------------------------*/

#all {
	width: 800px;
	margin: 1em auto;
	padding: 0px;
}

#header {
	height: 113px;
	margin: 0px;
	padding: 0px;
}

#breadcrumbs {
	margin: -15px;
	padding: 2px 15px;
}

#nav {
	float: left;
	width:174px; /* 175-1 because otherwise IE places the nav bar to the bottom part of the page */
	margin: 0px;
	padding: 0px;
}

#content {
	float:right;
	width: 595px; /* 800-(175 nav)-(2*15 padding) */
	margin: 0px;
	padding: 15px;
}

#footer {
	clear: both;
	width: 770px; /* 800-(2*15 padding) */
	margin: 0px;
	padding: 2px 15px;

	text-align: center;
}

/*----------------------------------------------------------------------------*/
/* borders -------------------------------------------------------------------*/

#all {
	border: 1px solid #AB2524; /* flame red */
}

#header {
	border-bottom: 1px solid #AB2524; /* flame red */
}

#breadcrumbs {
	border-bottom: 1px solid gray;
	border-left: 1px solid #AB2524; /* flame red */
}

#content {
	border-left: 1px solid #AB2524; /* flame red */
}

/*----------------------------------------------------------------------------*/
/* background ----------------------------------------------------------------*/

body {
	background-image: url(img/bg.jpg);
}

#header {
	background-color:  #F8F8FF; /* ghostwhite */
}

#breadcrumbs {	
	background-color: #AB2524; /* flame red */
}

#all {
	background-color:  #F8F8FF; /* ghostwhite */
}

#footer {
	background-color: #AB2524; /* flame red */
}

/*----------------------------------------------------------------------------*/
/* breadcrumbs ---------------------------------------------------------------*/

#breadcrumbs {
	color: silver;
	font-size: 10pt;
}

#breadcrumbs a:link, #breadcrumbs a:visited {
	color: silver;
	text-decoration: none;
}

#breadcrumbs a:hover, #breadcrumbs a:active, #breadcrumbs a:focus {
	color: white;
	text-decoration: none;
}

/*----------------------------------------------------------------------------*/
/* navigation ----------------------------------------------------------------*/

#nav li {
	list-style: none;
	padding: 0px;
	border-bottom: 1px dotted gray;
}

#nav a:link, #nav a:visited {
	width: 154px; /* 175-(2*10 padding)-1 because otherwise the left border of #content gets broken */
	font-weight: bold;
	display:block;
	padding: 5px 10px;
	text-decoration: none;
	color: #AB2524; /* flame red */
}

#nav a:hover, #nav a:active, #nav a:focus {
	width: 154px; /* 175-(2*10 padding)-1 because otherwise the left border of #content gets broken */
	font-weight: bold;
	display:block;
	color: red;
	padding: 5px 10px;
	text-decoration: none;
	background-color: #FFE0E0;
}

/*----------------------------------------------------------------------------*/
/* footer --------------------------------------------------------------------*/

#footer {
	font-size: 10pt;
	color: silver;
}

#footer a:link, #footer a:visited {
	text-decoration: none;
	color: silver;
}

#footer a:active, #footer a:hover, #footer a:focus {
	text-decoration: none;
	color: white;
}

/*----------------------------------------------------------------------------*/
/* basic style ---------------------------------------------------------------*/

body {
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

h1.title {
	font-size: 28pt;
	text-align: center;
	margin: 0.5em 0em;
	color: #AB2524; /* flame red */
}

h2.subtitle {
	font-size: 16pt;
	text-align: center;
	color: #AB2524; /* flame red */
}

h1 {
	font-size: 18pt;
	font-weight: bold;
	text-align: left;
	color: #AB2524; /* flame red */
	margin: 1em 0em 0.5em 0em;
}

h2 {
	font-size: 14pt;
	font-weight: bold;
	text-align: left;
	color: #AB2524; /* flame red */
}

h3 {
	font-size: 12pt;
	font-weight: bold;
	text-align: left;
	color: #AB2524; /* flame red */
}

p {
	margin: 0.5em 0em;
}

a:link, a:visited {
	color: #AB2524; /* flame red */
	text-decoration: none;
}

a:active, a:hover, a:focus, a:visited:active, a:visited:hover, a:visited:focus {
	color: red;
	text-decoration: underline;
}

a img {
	border: none;
}

.center {
	text-align: center;
}

table.center {
	margin: auto;
}

.box {
	background-color: #FFF4C8; /* a light orange */
	padding-left: 1em;
	padding-right: 1em;
	border: 1px solid #AB2524; /* flame red */
	margin: 1em 2em;
}

.box_header {
	text-align: center;
	font-weight: bold;
	color: #AB2524; /* flame red */
	
	padding: 0.5em;
	border-bottom: 1px solid gray;
	margin: 0em 0em 0.5em 0em;
	display: block;
}

abbr[title], acronym[title] {
	border-bottom: 1px dotted;
}

table.bordered {
	border: 1px solid black;
}

table.bordered tr {
	border: 1px solid black;
}

table.bordered td {
	border: 1px solid black;
	padding: 0.3em 0.6em;
}

table.bordered td.empty {
	border: none;
	padding: 0.3em 0.6em;
}

table.maxwidth {
	width: 594px;
}

p.spacer {
	margin: 1.5em;
	text-align: center;
}

