body
{
	background-color:#e5dab8;
	margin:0px;
	padding:0px 10%;
	color:#311400;
}

p
{
	margin:0px;
	padding:0.5em 0px 0.5em 0px;
}

.table
{
	margin-left:420px;
	padding:1px 0em 0px 1em;
}

.table table
{
	border:1px solid black;
	border-collapse:collapse;
	width:100%;
}

.table table .odd
{
	background-color:#e3dcc7;
}

.table table td
{
	border-right:1px solid black;
}

.pp
{
	padding:5px;
	border:1px solid black;
	margin:0em;
	background-color:white;
}

.sep
{

}

.vsep
{
	margin:0px 10%;
	padding:0px;
	height:1px;
	background-color:#311400;
}

.center
{
	text-align:center;
}

.justify
{
	text-align:justify;
}

.il
{ 
	margin:0px auto;
	padding:0px;
	text-align:center;
	border:1px solid red;
}

.ii 
{
	float:left;
	border:1px solid red;
}


#hn
{
	background-image:url("/~juergen/img/ul.png");
	background-position:left 51px;
	background-repeat:no-repeat;
	margin:1em 0px 0px 0px;
	padding:0px;
height:73px;
}

#hn p
{
	text-align:center;
	background-image:url("/~juergen/img/ur.png");
	background-position:right 51px;
	background-repeat:no-repeat;
	margin:0px;
	padding:0px;
}
#hn a
{
	border:0px none;
}

#hn img
{
	border:0px none;
}

#menu
{
	margin:0px;
	background-color:#f3ecd7;

}

#menu p
{
	margin:0px;
	padding:0.5em;
	text-align:center;
}

a
{
	text-decoration:none;
	color:#311400;
}

a:hover
{
	color:black;
	text-decoration:underline;
}

#content
{
	margin:0px;
	padding:1em;
	background-color:#f3ecd7;
}

#content h1
{
	margin:0px;
	padding:0.5em 1em 1em 1em;
	font-size:120%;
}

#footer
{
	margin:0px;
	padding:0px;
	background-color:#f3ecd7;
	background-image:url("/~juergen/img/ll.png");
	background-position:left top;
	background-repeat:no-repeat;
	height:20px;
}

#footer p
{
	margin:0px;
	padding:0px;
	background-image:url("/~juergen/img/lr.png");
	background-position:right top;
	background-repeat:no-repeat;	
}

/* gallery container */
.gallery {
	text-align: center;    /* centers inline paragraphs */
	margin: 1em 0em;
	padding: .5em;
}
.gallery a {
	text-decoration: none;
}

.gallery a:hover
{
	color:black;
	text-decoration:underline;
}

.gallery a img {
	border-width: 1px;
	padding:5px;
	background-color:white;
	vertical-align: middle;
	border-color:black;
}

/* outer container for each image/caption pair */
.gallery p {
	display: inline;
}

/* For the <a> container, the best default display value is inline-table, but browser support isn't very good. Opera versions 6 and earlier totally mangle anything except display:table-cell, so that is set by default and the preferred display values are at the end of this stylesheet, within hacks that hide them from those Opera versions. No other browsers tested seemed to have any trouble with setting the different display values within a single rule. */

/* inner container for each image/caption pair */
.gallery a {
	display: table-cell;   /* default, for gecko & Opera6- */
	margin: .5em;
	padding: 5px;
	vertical-align: top;   /* aligns the img/caption container */
	width: 8em;            /* adjusts with text size */
	min-width: 210px;      /* not always honored, but that's OK */
}


/* image container, sets height so image can be vertically centered and the caption starts in the same vertical position regardless of image height, except WinIE does not apply line-height to images. oh well, most other browsers do... */
.gallery span {
	display: block;        /* fill container width, force a line break */
	height: 170px;         /* a bit larger than highest img */
	line-height: 160px;    /* same value as height */
	text-align: center;
/*	border: 1px dashed #f00; /* uncomment to show */
}

/* caption container, sets height (for 2 lines) so each outlined image/caption pair is the same height (except in WinIE) */
.gallery i {
	display: block;
	height: 2.5em;         /* makes each box a consistent height */
	padding: 5px 5px 0 5px;
	text-align: center;
	font-size:100%;
	font-style: normal;
	color:#311400;
	line-height: 120%;     /* standard spacing */
/*	border: 1px dashed #00f; /* uncomment to show */
}

/* Owen hack, hides from WinIE, Opera versions 6- & some KHTML */
head:first-child+body .gallery a {
	display: table-cell;   /* gecko & Opera6- */
	display: inline-table; /* Safari & some other browsers */
	display: inline-block; /* WinIE & some other browsers */
}

/* star-html hack to show <a> rule(s) just to IE (Win and Mac) */
* html .gallery a {
	display: table-cell;   /* gecko & Opera6- */
	display: inline-table; /* Safari & some other browsers */
	display: inline-block; /* WinIE & some other browsers */
}
/* image is not clickable in WinIE with display:block :( \*/
* html .gallery span {
	display: inline;
}
* html .gallery a:hover i {
	cursor: hand; /* otherwise cursor doesn't change over block <i> */
} /* end WinIE hacks */

/* end hacks */

/* ########################################################### */
/* ########################################################### */
/* ########################################################### */
/* ########################################################### */
/* ########################################################### */

/* gallery_small container */
.gallery_small {
	text-align: center;    /* centers inline paragraphs */
	margin: 0em;
	padding: .5em;
}
.gallery_small a {
	text-decoration: none;
}

.gallery_small a:hover
{
	color:black;
	text-decoration:underline;
}

.gallery_small a img {
	border-width: 1px;
	padding:5px;
	background-color:white;
	vertical-align: middle;
	border-color:black;
}

/* outer container for each image/caption pair */
.gallery_small p {
	display: inline;
}

/* For the <a> container, the best default display value is inline-table, but browser support isn't very good. Opera versions 6 and earlier totally mangle anything except display:table-cell, so that is set by default and the preferred display values are at the end of this stylesheet, within hacks that hide them from those Opera versions. No other browsers tested seemed to have any trouble with setting the different display values within a single rule. */

/* inner container for each image/caption pair */
.gallery_small a {
	display: table-cell;   /* default, for gecko & Opera6- */
	margin: .5em;
	padding: 5px;
	vertical-align: top;   /* aligns the img/caption container */
	width: 8em;            /* adjusts with text size */
	min-width: 110px;      /* not always honored, but that's OK */
}


/* image container, sets height so image can be vertically centered and the caption starts in the same vertical position regardless of image height, except WinIE does not apply line-height to images. oh well, most other browsers do... */
.gallery_small span {
	display: block;        /* fill container width, force a line break */
	height: 120px;         /* a bit larger than highest img */
	line-height: 110px;    /* same value as height */
	text-align: center;
/*	border: 1px dashed #f00; /* uncomment to show */
}

/* caption container, sets height (for 2 lines) so each outlined image/caption pair is the same height (except in WinIE) */
.gallery_small i {
	display: block;
	height: 2.5em;         /* makes each box a consistent height */
	padding: 5px 5px 0 5px;
	text-align: center;
	font-size:75%;
	font-style: normal;
	color:#311400;
	line-height: 120%;     /* standard spacing */
/*	border: 1px dashed #00f; /* uncomment to show */
}

/* Owen hack, hides from WinIE, Opera versions 6- & some KHTML */
head:first-child+body .gallery_small a {
	display: table-cell;   /* gecko & Opera6- */
	display: inline-table; /* Safari & some other browsers */
	display: inline-block; /* WinIE & some other browsers */
}

/* star-html hack to show <a> rule(s) just to IE (Win and Mac) */
* html .gallery_small a {
	display: table-cell;   /* gecko & Opera6- */
	display: inline-table; /* Safari & some other browsers */
	display: inline-block; /* WinIE & some other browsers */
}
/* image is not clickable in WinIE with display:block :( \*/
* html .gallery_small span {
	display: inline;
}
* html .gallery_small a:hover i {
	cursor: hand; /* otherwise cursor doesn't change over block <i> */
} /* end WinIE hacks */

/* end hacks */
