﻿/* screen.css -- visual media styles for Patio City main pages
   18 Jan 2006 - E-BZZZ */
/* NOTE ON PAGE WIDTH: The value of 70% for the width of the div MAIN on line 235 is the largest that can be used without   */
/* causing a horizontal scroll bar when screen resolution is set to 800 x 600. Personally I think we can get away with 80%. */
/* NOTE ON CHANGING COLORS: Easiest way is to use global find and replace, using the table below. */
/* BASIC COLORS */
/* #6C2115 = text color for H1, H2, H3, H4) */
/* #6C2115 = dark burgandy used for div borders and highlighting nav bars */
/* #cfc = background color for divs */
/* #3c0 = background for nav bar headings */
/* #6C2115 = text color in notes sidebar */
/* LINK COLORS */
/* #6C2115 = link */
/* #6C2115 = visited */
/* #DAC7C4 Link Heading backgrounds 1 shade darker with background of #36110B = hover */
/* #fff with background of #DAC7C4 = active */
body {
	background-color: #F9F5F4; /* pale pink */
	color: inherit;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}
div {
	border: 1px solid #6C2115;/* Dark Burgandy #6C2115 */	
	background: #F9F5F4;
	color: inherit;
}
div#container {
	margin: 0;
	padding: 0;
	clear: both;
	border: 0;
}
p {
	margin: 1em 0;
	padding: 0;
	color: #1B0805;
	background-color: inherit;
}
/* First line emphasis; 2 types */
span.leader {
	font-style: italic;
}
span.label {
	font: italic 1em Arial, sans-serif;
	letter-spacing: 1px;
}
/* Don't highlight the current page in the menu */
h1 {
	letter-spacing: 0.75em;
	color: #6C2115;
	padding: 0.25em 0.33em 0.125em 0.65em;
	border-bottom: 5px double #6C2115;
	border-top: 3px double #6C2115;
	background-color: inherit; /*specify a background color if you choose*/
}
h3 {
	font-weight: bold;
	color: #6C2115;
	background: inherit;
}
h4 {
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 0.33em 0.5em 0.167em;
	border-top: 1px solid #6C2115;
	border-bottom: 1px solid #6C2115;
	background: #DAC7C4;
	color: #6C2115;
}
/* Left side navigation - several types 
   all contained within the overall container "leftside" */
#leftside {
	width: 8em;
	float: left;
	padding: 0;
	margin: 1em;
	border-width: 0;
}
#leftside div {
	margin-bottom: 1em;
}
#leftside a {
	display: block;
	margin: 0;
	padding: 0.33em;
	letter-spacing: 1px;
	text-align: right;
	font-weight: bold;
	border-bottom: 1px solid #6C2115;
	color: #333377;
	text-decoration: none;
	background-color: inherit;
}
#leftside a span {
	display: none;
}
/* "nav" contains the site navigation */
#nav {
	border-color: #6C2115;
}
#nav h4 {
	background: #DAC7C4;
/*darker pink*/	color: #6C2115;
}
#nav a {
	text-transform: none;
}
#nav a:link {
	color: #6C2115;
	background-color: inherit;
}
#leftside a:link {
	color: #6C2115;
	background-color: inherit;

}
#leftside a:visited, #nav a:visited {
	color: #006600; /*green*/;
	background-color: inherit;
}
#leftside a:hover, #nav a:hover {
	background: #DAC7C4; /*darker pink*/	
	color: #36110B;
}
#leftside a:hover.nohilite {
	color: #6C2115;
	background-color: inherit;

}

#leftside a:active, #nav a:active {
	background: #DAC7C4;
	color: #FFFFFF;
}
/*#leftside a:visited, #nav a:link, #nav a:visited, #leftside a:hover.nohilite, #leftside a:link {
	color: #6C2115;}*/
/* "resources" contains links to items being sold */
#resources a {
	font-size: 90%;
}
/* "note" is for small generic notes to readers - it may not be used */
.note p {
	margin: 0;
	padding: 4px;
	color: #6C2115;
	background: inherit;
	font: 80%/1.33 sans-serif;
}
/* "main" is the primary text display block, on the right side. */
#main {
	/*	width: 70%;*/
	width: 65%;
	margin: 1em 2em 1em 10em;
	padding: 1em 1.5em;
	letter-spacing: 0.05em;
}
#main h3 {
	letter-spacing: 3px;
	margin: 1.25em 0 0;
	padding-bottom: .5em;
}
#main h3#top {
	margin-top: 0;
}
#main p {
	margin: 0.25em 0 1em;
	line-height: 1.25em;
}
/* Sometimes a fella just needs to make something small... */
small {
	letter-spacing: 0;
	font-size: 85%;
}
#banner {
	border: 1px solid #6C2115;
	height: 80px;
	margin-bottom: 10px;
	background: #F6F2EF url(contact_files/images/Patio-City-Garden.jpg) no-repeat;
	color: inherit;
}
.clear {
	clear: both;
}
.form {
	width: 95%;
	border: 1px solid #6C2115;
	text-align: left;
	vertical-align: top;
	padding: 2px;
}
th {
	font-size: .9em;
	font-weight: normal;
}
/* Original "copyright" bottom navigation. */
#copyright {
	clear: both; /*	width: 100%;*/;
	font-size: 85%;
	color: #5A4313;
	letter-spacing: 1px;
	margin: 10px 10px 10px 10px;
	padding: 5px 5px 5px 5px;
	text-align: center;
	background-color: inherit;
}
h1, h1, h4, h3 {
	font-family: Arial, sans-serif;
	font-style: italic;
	font-weight: normal;
	margin: 0;
	text-transform: none;
}
/*link styles for content and bottom footer*/
a:link {
	color: #663300;
	background-color: inherit;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #006600; /*green*/;
	background-color: inherit;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #D77A7A;
	background-color: inherit;
	font-weight: bold;
	text-decoration: underline;
}
a:active {
	color: #D77A7A;
	font-weight: bold;
	text-decoration: none;
	background-color: inherit;
}

