@charset "UTF-8";
/* CSS Document */

html {
	background: url(../images/bg01.jpg);
}
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 */
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size: 0.9em;
	color: #dddddd;
	letter-spacing: 0.06em;
}
.twoColFixRtHdr #container {
	width: 910px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*background: #e1b9bf;*/
	background: #555353 url(../images/bg02a.jpg);
} 
.twoColFixRtHdr #header {
	height: 200px;
	text-align: center;  /* 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. */
} 
.twoColFixRtHdr #header h1 {
	margin: 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 */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* navbar styles */

#navbar {
	background: #555353 url(../images/bgNav.jpg);
	height: 42px;	
	line-height: 1.8em;
}
#navbar ul {
	margin: 0;
	list-style: none;
}
#navbar li {
	float: left;
	display: inline;
}
#navbar li a:link, #navbar li a:visited {
	display: block;
	color: #e69f06;
	padding: 0em 0.6em;
}
#navbar li a:hover, #navbar li a:active {
	border-bottom: 3px outset #dddddd;
	text-decoration: none;
}
.twoColFixRtHdr  #sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 288px; /* the background color will be displayed for the length of the content in the column, but no further */
	text-align: center;
	margin-top: 0px;
	padding-bottom: 0px;
	padding-top: 43px;
}
#sidebar h1, h2, h3 {
	line-height: 1.7em;
}
.flashDescriptions {
	margin-top: 5px;
	font-size: 0.85em;
	padding: 0px 30px 20px;
	text-align: left;
	line-height: 1.4em;
}
.flashDescriptions a:link, .flashDescriptions a:visited {
	color: #e69f06;
	text-decoration: underline;
}
.flashDescriptions a:hover, .flashDescriptions a:active {
	text-decoration: none;
}
.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;
}

/* form styles */

#formWrap {
	padding: 1em 0;
	background: url(file:///Macintosh%20HD/Users/mark/Library/Root/Websites/LisherDesignsNew/images/bg02.jpg);
}
form#frmContact {
	width: 250px;
	margin: 0 auto;
	text-align: left;
}
fieldset {
	border: none;
	margin: 1em 0;
	padding-bottom: 0.5em;
}
legend {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.2em;
	color: #dddddd;
	padding: 0.2em .5em;
	margin-left: 0.5em;
}
#formWrap p {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #dddddd;
	font-size: 0.85em;
	margin: 1em 0;
}
input.text {
	width: 150px;
}
textarea {
	width: 200px;
	margin-top: .5em;
}
input.text:focus, textarea:focus {
	background: #999999;
}
.twoColFixRtHdr #mainContent {
	margin: 0px 288px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	text-align: center;
}
.twoColFixRtHdr #mainContent h1, .twoColFixRtHdr #mainContent h2, .twoColFixRtHdr #mainContent h3 {
	color: #e69f06;
	text-align: left;
	border-bottom: 2px solid #e69f06;
	margin-right: 50px;
	margin-left: 50px;
	margin-bottom: 1.5em;
}

.siteDescriptions {
	margin-top: 6px;
	font-size: .9em;
	padding: 0px 50px 20px;
	text-align: left;
	line-height: 1.4em;
}
.siteDescriptions a:link, .siteDescriptions a:visited {
	color: #e69f06;
	text-decoration: underline;
}
.siteDescriptions a:hover, .siteDescriptions a:active {
	text-decoration: none;
}

.twoColFixRtHdr #footer {
	margin-top: 0px;
	padding: 15px;
	text-align: center;
	background: #333333;
} 
.twoColFixRtHdr #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 on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.80em;		
	line-height: 1.6em;
}
#footer a:link, #footer a:visited {
	font-size: 0.90em;
	color: #e69f06;
	padding: 0em 0.6em;
	line-height: 1.8em;
}
#footer a:hover, #footer a:active {
	text-decoration: none;
}
.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;
}
