/* 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: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* 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. */;
	padding: 0 0 0 0;
	background-color: #660066;
	font-size: .9em;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	background-image: url('../images/bg.jpg');
	background-repeat: repeat-x;
}
body img { border: 0px;}

/* Commonly used to style page titles. */
h1, h2, h3 {
	color: #000000;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
}
h1 {
	margin: 0 0 10px 0px;
	padding: 0 0 0 10px;
	font-size: 1.5em;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 1.2em;
	padding: 0px 0px 0px 10px;
	font-size: 1.3em;
	font-weight: bold;
	

}
h3 {
	font-size: 1em;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #339933;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
	color: #50516b;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #1E3A1B;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #3a32c4;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #455439;
}
/* 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 
avoid 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: 80%;
	text-align: left;
	max-width: 800px;
	margin: 20px auto;
	padding: 10px;
	
}
#outerWrapper #header {
	/*padding: 5px;
	background: #FFFFFF url('../images/svgla.gif') no-repeat left center;
	height: 200px;
	color: #000000;
*/}
#outerWrapper #topNavigation {
	background-color: #FFFFFF;
	height: 25px;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #9db368;
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.invertedshiftdown {
	padding: 0;
	width: 100%;
	border-top: 5px solid #07A53A;
	background: transparent;
	voice-family: "\"}\"";
	voice-family: inherit;
	border-top-color: #00017E;
}
.invertedshiftdown ul {
	margin: 0;
	margin-left: 40px; /*margin between first menu item and left browser edge*/;
	padding: 0;
	list-style: none;
}
.invertedshiftdown li {
	display: inline;
	margin: 0 2px 0 0;
	padding: 0;
	text-transform: uppercase;
}

.invertedshiftdown a {
  float: left;
  display: block;
  font: bold 12px Arial;
  color: black;
  text-decoration: none;
  margin: 0 1px 0 0; /*Margin between each menu item*/
  padding: 5px 10px 9px 10px; /*Padding within each menu item*/
  background-color: white; /*Default menu color*/
  /*BELOW 4 LINES add rounded bottom corners to each menu item.
 ONLY WORKS IN FIREFOX AND FUTURE CSS3 CAPABLE BROWSERS
 REMOVE IF DESIRED*/
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -khtml-border-radius-bottomright: 5px;
  -khtml-border-radius-bottomleft: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.invertedshiftdown a:hover {
	background-color: #07A53A; 
	padding-top: 9px; /*Flip default padding-top value with padding-bottom */;
	padding-bottom: 5px; /*Flip default padding-bottom value with padding-top*/;
	color: white;
	-webkit-box-shadow: #444 -5px 5px 10px;
	-khtml-box-shadow: #444 -5px 5px 10px;
	-moz-box-shadow: #444 -5px 5px 10px;
	box-shadow: #444 -5px 5px 10px;
}
.invertedshiftdown .current a {
  /** currently selected menu item **/
  background-color: #1E3A1B; /*Red color theme*/;
  padding-top: 9px; /*Flip default padding-top value with padding-bottom */;
  padding-bottom: 5px; /*Flip default padding-bottom value with padding-top*/;
  color: white;
  -webkit-box-shadow: #444 -5px 5px 10px;
  -khtml-box-shadow: #444 -5px 5px 10px;
  -moz-box-shadow: #444 -5px 5px 10px;
  box-shadow: #444 -5px 5px 10px;
}

/* 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. */
#outerWrapper #contentWrapper #content {
	padding: 10px 10px 10px 10px;
	margin: 0px;}

#outerWrapper #footer {
clear: both;
	background-color: #FFFFFF;
	border-top: solid 2px #455439;
	padding: 10px 10px 10px 10px;
	font-size: .85em;
	text-align: center;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* image floats */	

.img-lft { border: #f0ece3 solid 5px;
	float: left;
	margin: 0px 15px 5px 0px;
}
.img-rgt {
	border: #f0ece3 solid 5px;
	float: right;
	margin: 0px 0px 5px 15px;
}
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
	vertical-align: bottom;
}

.sidebar-img {
	border: #f0ece3 solid 5px;
	margin: 5px;
}

.ctr {
	text-align: center;
}
.clr-bth {
	clear:both;
}
.smltxt {
	font-size:small;
}
/*===================
styles site map list
=================== */
#sitemap ul li {
	list-style-image: url('../images/home.gif');
	margin: 2px;
	padding: 2px;
}

#sitemap ul li li{
	list-style-image: url('../images/smfile.gif');
	margin: 2px;
	padding: 2px;
}

/* ===================
photo gallery styles
===================== */
/* 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: #808080;
	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 {
	font-family: tahoma, arial, helvetica, sans-serif;
	text-align: center;
	font-size: 0.8em;
	display: block;
	width: 640px;
	margin: auto;
}

p.description {
	font-family: tahoma, arial, helvetica, sans-serif;
	text-align: left;
	font-size: 0.8em;
	display: block;
	width: 640px;
	margin: auto;
}


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

/* ====================
goodie gallery
====================== */

.menu {
	margin: 15px auto;
	width: 532px;
}

 .menu th {
 	padding: 5px;
 	border: 2px solid #CCCCCC;
 	text-align: center;
 	background-color: #FEFFAF;
 }
 .menu td {
 	border: 2px solid #CCCCCC;
 	width: 164px;
 	height: 164px;
 	text-align: center;
 	vertical-align: top;
 	padding: 5px;
 	font-size: .85em;
 }

.photo {
clear:both;
	padding-left: 15px;
	padding-bottom: 5px;
	width: 265px;
	float: right;
	font-size:small;
	font-weight:bold;

}

blockquote {
	color: #666;
	margin: 1em;
	padding: 0 50px 10px 50px;
	background: url('../images/blockquote.gif') no-repeat left top;
	font-size: 90%;
}


/*============ For sitemap ==============*/
/*#sitemap ul li {
	margin: 0px;
	padding: 0px 2px 0px 10px;
	list-style-image: url('../images/home.gif');
	background-repeat: no-repeat;
}
#sitemap ul li li {
	list-style-image: url('../images/smfolder.gif');
	background-repeat: no-repeat;
	margin: 0px 5px 5px 0px;
	padding: 0px;
}

#sitemap ul li li li {
	list-style-image: url('../images/smfile.gif');
	background-repeat: no-repeat;
	margin: 0px 5px 5px 0px;
	padding: 0px;
}*/



