@charset "UTF-8";
body  {
	background: url(images/prchBckgrd.jpg);
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	margin-right: auto;
	margin-left: auto;
}
p {
	color: #600;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-top: 5px;
}
h1,h2,h3,h4 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h1 {
	color: #582017;
	background: #FFB226;
	font-size: 1.6em;
	margin-bottom: 5px;
}
h2 {
	color: #ffb226;
	background: #582017;
	font-size: 1.1em;
}
h3 {
	color: #ffb226;
	margin-top: 5px;
	margin-bottom: 0;
	font-size: 18px;
}
h4 {
	color: #582017;
	font-size: 1.3em;
	margin: 0;
}
#container {
	width: 900px;  
	margin: 0 auto; 
	background: url(images/containerBckgrd.jpg) repeat-y;
	text-align: left; 
} 
#header {
	background: url(images/lesaTerryHdr.jpg) no-repeat center top;
	float: left;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 260px;
	width: 900px;
} 
#navBar {
	margin-top: 222px;
	margin-left: 40px;
	text-decoration: none;
	background: url(images/navBarBck.png) no-repeat left top;
	width: 710px;
	height: 30px;
}
#mainNav ul {
	float:left;
	list-style: none;
	padding: 0 0;
	margin: 0 0 0 0px;
	text-decoration: none;
	list-style-type: none;
}

#mainNav li {
	float: left;
	margin: 0;
	text-decoration: none;
	list-style-type: none;
}
#mainNav li a:link, #mainNav li a:visited {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.1em;
	display: block;
	background-color: #AD5C01;
	padding: 2px 9px;
	color: #ffB226;
	text-decoration: none;
}
#mainNav li a:hover, #mainNav li a:active {
	color: #582017;
	background: #FFB226;
}
#mainNav li a.current {
	color: #582017;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.1em;
	padding: 2px 9px;
	background: #C7842D;
	text-decoration: none;
}
#mainNav li a.current:hover {
	cursor:default;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 225px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px;
	margin-top: 0px;
	margin-right: 35px;
	
}
#sidebar1 p {
	font-size: .9em;
	margin-top: 5px;
	color: #FFC;
}
#mainContent {
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 535px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 30px;
	padding-top: 10px;
	background: url(images/lesaLogoPgBck.png) no-repeat right bottom;
}
img.figure {
	margin: 10px 10px;
}
#footer {
	padding: 30px 0 0 40px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/footerBtm.jpg) no-repeat;
	height: 49px;
	width: 900px;
	clear: both;
} 
#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 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

/* the thumbnails */
#triggers {
	text-align:center;
}

#triggers img {
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	margin:15px 2px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* the active thumbnail */
#triggers a.active img {
	outline:1px solid #000;

	/* show on top of the expose mask */
	z-index:9999;
	position:relative;
}


/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(images/apple-close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
	background-repeat: no-repeat;
}

/* the large image. we use a gray border around it */
#img {
	border:1px solid #666;
}

/* "next image" and "prev image" links */
.next, .prev {
	
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:40%;	
	border:1px solid #666;	
	cursor:pointer;
	display:block;
	padding:10px 20px;
	color:#fff;
	font-size:11px;
	
	/* upcoming CSS3 features */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;	
}

.prev {
	left:0;
	border-left:0;
	-moz-border-radius-topleft:0;
	-moz-border-radius-bottomleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;
}

.next {
	right:0;
	border-right:0;
	-moz-border-radius-topright:0;
	-moz-border-radius-bottomright:0;
	-webkit-border-bottom-right-radius:0;
	-webkit-border-top-right-radius:0;	
}

.next:hover, .prev:hover {
	text-decoration:underline;
	background-color:#000;
}

/* when there is no next or previous link available this class is added */
.disabled {
	visibility:hidden;		
}

/* the "information box" */
.info {
	position:absolute;
	bottom:0;
	left:0;	
	padding:10px 15px;
	color:#fff;
	font-size:11px;
	border-top:1px solid #666;
}

.info strong {
	display:block;	
}

/* progress indicator (animated gif). should be initially hidden */
.progress {
	position:absolute;
	top:45%;
	left:50%;
	display:none;
}

/* everybody should know about RGBA colors. */
.next, .prev, .info {
	background:#333 !important;
	background:rgba(0, 0, 0, 0.6) url(images/apple.png)repeat-x;		
}

