body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #F6FDE5;
	font-family: "Courier New", Courier, monospace;
	font-size: 100%;
	background-color: #150A01;
}

.twoColLiqLtHdr #container {
	margin: 0 auto 0 0px;
	text-align: left;
	height: auto;
	padding: 0px;
} 
.twoColLiqLtHdr #header {
	background-color: #120B01;
	margin: 0;
	
} 
.twoColLiqLtHdr   #header   ul, li {
	display: inline;
	text-align: left;
	margin-top: 0px;
	white-space: nowrap;
}
.twoColLiqLtHdr   #headerimage  {
	margin: 0 10% 0 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	background-color: #824400;
	background-repeat: no-repeat;
	background-position: right;
	background-image: url(../images/julie_headerbar1.jpg);
	height: 90px;
}

.twoColLiqLtHdr #headerimage li {
	padding: 0;
	font-weight: normal;
	margin-right: 12px;
	color: #F19711;
	
}
.twoColLiqLtHdr  #thislang  {
	padding: 0;
	font-weight: normal;
	margin-right: 12px;
	color: #F19711;
	border-bottom: 4px double #F19711;
}

.twoColLiqLtHdr #headerimage a {
	text-decoration: none;
}

.twoColLiqLtHdr #headerimage a:link, #headerimage a:visited {
	color: #FDEAC2;
}


.twoColLiqLtHdr #headerimage a:hover, #headerimage a:active {
	color: #BDD2F6;
	border-bottom: 4px double #BDD2F6;
	font-weight: bold;
}
.twoColLiqLtHdr #header h1 {
	position: relative;
	top: -150px;
	padding: 0px;
	margin: 0px;
}
.twoColLiqLtHdr   #topnavbar  {
	height: 40px;
	width: 100%;
	background-color: #B67504;
	padding-top: 5px;
	padding-left: 20px;
}
.twoColLiqLtHdr  #topnavbar  li {
	font-weight: normal;
	font-variant: small-caps;
	color: #441500;
	text-align: left;
	margin: 0px;
	border-right: 4px double #441500;
	padding: 6px 10px;
	line-height: 40px;
	font-size: 95%;
	letter-spacing: 0.1em;
}

.twoColLiqLtHdr #topnavbar a {
	text-decoration: none;
}

.twoColLiqLtHdr #topnavbar a:link, #topnavbar a:visited {
	color: #FDEAC2;
}

.twoColLiqLtHdr #topnavbar a:hover, #topnavbar a:active {
	color: #BDD2F6;
	border-bottom-width: 4px;
	border-bottom-style: double;
	font-weight: bold;
}

.twoColLiqLtHdr #thispage a:link, #thispage a:visited, #thispage a:hover, #thispage a:active {
	color: #4C260A;
	border-bottom-width: 4px;
	border-bottom-style: double;
	font-weight: bold;
}

.twoColLiqLtHdr #topnavbar li:hover, li:active {
	border-right: 4px solid #DCD175;
}

.twoColLiqLtHdr #contactlink {
	text-align: right;
	font-variant: small-caps;
	margin-right: 7%;
	padding-top: 20px;
}

.twoColLiqLtHdr #contactlink li {
	font-weight: normal;
	font-variant: small-caps;
	color: #FAFFF1;
	margin: 0px;
	border-right: 4px double #FAFFF1;
	padding: 6px 10px;
	font-size: 95%;
	letter-spacing: 0.1em;
}

.twoColLiqLtHdr #contactlink li:hover, li:active {
	border-right: 4px solid #DCD175;
}

.twoColLiqLtHdr #contactlink a {
	text-decoration: none;
}
.twoColLiqLtHdr #contactlink a:link, #contactlink a:visited {
	color: #FDEAC2;
} 
.twoColLiqLtHdr #contactlink a:hover, #contactlink a:active {
	color: #BDD2F6;
	font-weight:bold;
	border-bottom-width: 4px;
	border-bottom-style: double;
}



.twoColLiqLtHdr  #page {
	background-color: #150A01;
	background-image: url(../images/julie_sideimg3.jpg);
	background-repeat: no-repeat;
	height: 628px;
	width: 100%;
}

.twoColLiqLtHdr  #topnavbar  ul, li {
	margin: 0px;
	padding: 0px;
	white-space: nowrap;
	display: inline;
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. 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 ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqLtHdr #sidebar1 {
	float: left; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div  */
}
.twoColLiqLtHdr  /* Tips for mainContent:
1. 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.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent  {
	margin: 0 7% 5% 22%;
	float: right;
	background-color: #441500;
	border: 7px double #9D5E00;
	font-size: 0.9em;
	width: 75%;
} 

.twoColLiqLtHdr #mainContent img {
	padding: 0%;
	border: 2px solid #150A01;
	color: #F6F395;
}
.twoColLiqLtHdr  #mainContent  p  {
	color: #FEFEFE;
}
.twoColLiqLtHdr  #mainContent  li  {
	display: block;
	white-space: normal;
}

.twoColLiqLtHdr #mainContent dl {
	display: block;
}

.twoColLiqLtHdr #mainContent dt {
	font-weight: bold;
}
.twoColLiqLtHdr #mainContent a:link, #mainContent a:visited {
	color: #EE850D;
	text-decoration: none;
}

.twoColLiqLtHdr #mainContent a:hover, #mainContent  a:active {
	color: #BDD2F6;
}
.twoColLiqLtHdr  #mainContent  h1, h2, h3, p, dl   {
	padding-right: 3%;
	padding-left: 3%;
}

.twoColLiqLtHdr #mainContent h2 {
	font-family: "Courier New", Courier, monospace;
	font-weight: bold;
	font-style: normal;

}
.twoColLiqLtHdr   #mainContent   h3 em  {
	color: #FFBF18;
	font-family: "Courier New", Courier, monospace;
	font-weight: normal;
	letter-spacing: 0.3em;
	font-style: normal;
}
.twoColLiqLtHdr #photogallery {
	margin-bottom: 10px;
}

.twoColLiqLtHdr #photogallery h2 {
	margin-bottom: 10px;
	margin-right: 0%;
	float: none;
	padding-right: 10%;
	border-bottom: 3px double #9D5E00;
	left: 30%;
	padding-left: 10%;
}

.twoColLiqLtHdr #photogallery a {
	
	margin-right: 0px;
	padding: 0px;
	font-variant: normal;
	text-indent: 0px;
}
.twoColLiqLtHdr   #photogallery  img {
	height: 128px;
	padding:0px;
	margin: 12px;
}

.twoColLiqLtHdr #pageimage {
	float: left;
	margin: 3%;
	padding: 0px;
}

.twoColLiqLtHdr #pageimage p {
	padding: 0px;
	margin: 1px 3% 0px;
	font-size: 80%;
	padding: 5px 2px 0px;
	margin: 1px 3% 0px;
	color: #7D7D7D;
	text-align: center;
}

.twoColLiqLtHdr #pageimagert {
	float: right;
	margin: 3%;
	padding: 0px;
}

.twoColLiqLtHdr #pageimagert p {
	padding: 0px;
	margin: 1px 3% 0px;
	font-size: 80%;
	padding: 5px 2px 0px;
	margin: 1px 3% 0px;
	color: #7D7D7D;
	text-align: center;
}

.twoColLiqLtHdr   #photogallery2  img {
	height: 122px;
	margin: 5px;
	white-space: normal;
}

.twoColLiqLtHdr   #photogallery2 li {
	border: 3px double #AC6700;
	text-decoration: none;
	padding: 0px;
	display: inline;
	margin-left: 1%;
	margin-bottom: 1%;
}
.twoColLiqLtHdr #footer {
	padding: 0 10px;
	font-size: 80%;
} 
.twoColLiqLtHdr #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 */
	color: #9D5E00;
}

.twoColLiqLtHdr #footer hr {
	background-color: #9D5E00;
	height: 1px;
	width: 100%;
	border: 1px solid #9D5E00;
}

.twoColLiqLtHdr #footer a:link, a:visited {
	text-decoration: none;
	color: #837D76;
}

.twoColLiqLtHdr #footer a:hover, a:active {
	text-decoration: none;
	color: #D0A119;
}
.lastupdate  {
	width: 28%;
	float: right;
	vertical-align: bottom;
}

.impressum {
	width: 70%;
	float: 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}

.gallery {
	float: right;
	margin-right: 5%;
	text-align: center;
	background-color: #441500;
	border: 3px double #AC6700;
	margin-top: 5px;
	margin-bottom: 20px;
	width: auto;
}
 .gallery2  {
	background-color: #441500;
	border: 3px double #AC6700;
	float: left;
	text-decoration: none;
	padding: 0px;
	margin: 0;
}
