﻿/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
a {
   outline: 0;
}

/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	line-height: 1.2em;
	font-size: 1em;
	color: #2d2e2e;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #000;
	margin: 20px 0;
	padding: 0px;
 	background: url('../images/Lucerne_roll2.jpg') repeat-x #FFDFC3; 
	/* Sets page outer colors and image=  background: url('../images/Lucerne_roll2.jpg') repeat-x #C09A65; */
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* =====================================
Commonly used to style page titles. 
========================================*/
h1, h2, h3, h4, h5, h6 {
	color: #1C140E;
	margin: 5px 0px 5px 10px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 1.7em;
}
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}
h4 {
	font-size: 1.1em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1.1em;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #CC6600;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #666633;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #2170bd;
}

/* ===============================================
This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to a
void the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container 
on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the 
left and right margins to center the container on the page.
================================================== */
#outerWrapper {
	/*	background-color: #fff;
*/	width: 980px;
	margin: 130px auto 0px auto;  /* location of frqame in the browser top left bottom right */
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
	
/*===================================
Masthaead Styles
====================================*/
#outerWrapper #header {
	background-color: #42685B;  /* Page Header Color where CW WJ name is #33CC33; */
	padding: 10px 10px 10px 10px;
	font-weight: bold;
	min-height: 100px;
	border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	text-align: center;
}
#outerWrapper #header .sitename {
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	font-size: 1.7em;
	font-weight: bold;
	color: #FFFFFF;
	margin-top: 30px;
	margin-left: 25px;
	letter-spacing: .25em;
	line-height: 1em;
}
.tagline {
	font-size: small;
}
/*========================================
Top Navigation
=========================================*/
#outerWrapper #topNavigation {
	background-color: #64AB0F;  /* Top Menu BG colors background-color: #00FF00; */
	min-height: 2.3em;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #1C140E;
	-webkit-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	border-radius: 8px 8px 0px 0px;
}
#outerWrapper #topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #topNavigation li {
	float: left;
}
#outerWrapper #topNavigation a {
	color: #000000;
	text-decoration: none;
	margin: 0px 1px;
	padding: 5px;
	display: block;
}
#outerWrapper #topNavigation a:hover {
	background-color: #42685B;           /* Highlight color hover in top meny background-color: #33CC33; */
	color: #FFFFFF;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	/* background-color: #3F4D67; */
}

/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
	background-position: right;
	clear: both;
	background-image: url('../images/content-bg3.jpg');
	background-repeat: repeat-y;
}


#rightColumn1 {
	padding: 10px 10px 10px 10px;
	float: right;
	width: 200px;
}

/*================================
Right sidebar navigation menu
==================================*/
ul.menu {
	margin: 0;
	padding: 0;
}

ul.menu li {
	list-style-type: none;
	margin-bottom: 5px;
}
/*===========================
The menu links. 
========================*/
.menu a:link {
	display: block;
	color: #B9AD98;
	background-color: #3F4D67;
	text-decoration: none;
	padding: 8px;
	font-size: .9em;
	border: 1px solid #323E32;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-box-shadow: 0px 0px 15px #5D574C;
	box-shadow: 0px 0px 15px #5D574C;
}
.menu a:visited {
	color: #FFFFCC;
	border: 1px solid #323E32;
}
/*The menu links hover and focus states. A box shadow effect changes for this state. */
.menu a:hover, .menu a:focus {
	color: #000000;
	border-color: #5D574C;
	background-color: #B9AD98;
	box-shadow: 5px 5px 30px #5D574C;
	-webkit-box-shadow: 5px 5px 30px #5D574C;
	outline: 0px;
}

/*====================================
Lists: We reduce normal indentation and remove bullets for ordered and unordered lists  when placed in a sidebar
======================================*/
#rightColumn1 ul, #rightColumn1 ol {
	margin: 0 0 0 0;
	padding: 0 0 0 .4em;
}
#rightColumn1 li {
	margin-bottom: 4px;
	list-style: none;
	list-style: none;
}
.heading {
	color: #000000;
	font-weight: bold;
	padding: 4px;
	font-size: 1em;
}
/*===========================================
 Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. 
============================================*/
#content {
	padding: 10px 20px 10px 20px; 
	margin: 0px 220px 0px 0px; 
}
/* =========================================
 Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used 
without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated 
element and before the close of the container with floated elements. 
============================================*/
.clearFloat {
  display: block;
  clear: both;
}
/*=================================================
Footer Styles 
==================================================*/
#footer {
	background-color: #64AB0F;  /* Color of BG background-color: #00FF00; */
	padding: 10px 10px 10px 10px;
	border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	color: #000000;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #000000;
	/* background-color: #B9AD98; */
}
#footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: 0.85em;
}
#footer .smltxt {
	font-size: xx-small;
}
#footer a:link {
	color: #000000;
}
#footer a:visited {
	color: #CCCCCC;
}
#footer a:hover, #footer a:focus {
	color: #990000;
}
#footer a:active {
	color: #999999;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: xx-small;
}
/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 2px solid #3F4D67;
	width: 300px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 3px 3px 6px #dddddd;
	-moz-box-shadow: 3px 3px 6px #dddddd;
	-webkit-box-shadow: 3px 3px 6px #dddddd;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	color: #000000;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #CDBB99;
	background-color: #3F4D67;
	color: #ffffff;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
input:focus {
	border: 2px solid #993300;
}


/*============================
Photo Gallery
==============================*/
/* Main Selectors */

/* Header */
div#sectionheader h1 {
	font-family: tahoma, arial, helvetica, sans-serif;
	text-align: center;
	background-color: transparent;
	color: #000000;
}

/* Thumbnail Index */
div#index {
	margin: 1ex 0 1ex 0;
	text-align: center;
}

div#index table {
	text-align: center;
	margin: 0 auto 0 auto;
}

div#index td.thumbcell {
	width: 100px;
	border-style: solid;
	border-color: #D7D7D7;
	border-width: 1px;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
}

div#index td.thumbcell img {
	border-style: none;
}

div#index div.pages {
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.8em;
	text-align: right;
}

/* Photo Navigation */
div#navigation {
	text-align: center;
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.8em;
	margin: 1ex 0 1ex 0;
}

div#navigation table {
	text-align: center;
	margin: 0 auto 0 auto;
}

div#navigation td.previous {
	text-align: left;
	width: 100px;
}

div#navigation td.index {
	text-align: center;
}

div#navigation td.next {
	text-align: right;
	width: 100px;
}

div#navigation td.thumbcell {
	width: 100px;
	border-style: solid;
	border-color: #D7D7D7;
	border-width: 1px;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
}

div#navigation td.thumbcell img {
	border-style: none;
}

div#navigation td.selected {
	border-style: outset;
	border-width: 2px;
}

div#navigation span.home {
	display: block;
	padding-bottom: 1em;
}

/* Photograph */
div#photograph {
	text-align: center;
	margin: 1ex 0 1ex 0;
}

div#photograph img {
	margin: 0 auto 0 auto;
	border-style: solid;
	border-color: #000000;
	border-width: 1px;
}

/* Photograph Title */
h1.title {
	text-align: center;
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	margin: 0px;
}

/* Photograph Caption */
p.caption, p.description {
	font-family: tahoma, arial, helvetica, sans-serif;
	text-align: center;
	font-size: 0.8em;
	display: block;
	margin: auto;
}

/* Footnote */
p.footnote {
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.6em;
	text-align: center;
	padding: 0 2em 0 0;
}
