/* CSS Document - for SCMAA */


* 
	{margin:0px;
	padding:0px;
	text-decoration:none;
}
body 
	{
	font-size:11px;
	font-family:verdana, helvetica, arial, sans-serif;
	background-image: url(images/bkgd_texture.jpg);
}

/* the horizontal menu starts here */
#listmenu 
	{width:647px;
	float:left;
	font-size:.8em;
	font-family:verdana, helvetica, arial, sans-serif;
	background-color:#90a8bc;
	text-align:left;
	margin:0; padding-left:3px;
}
#listmenu li 
	{float:left;
	position:relative;
	list-style-type:none;
	background-color:#90a8bc;
	padding:0px 7px;
	border-left:1px solid #90a8bc;
	border-right:1px solid #90a8bc;
}
#listmenu a 
	{text-decoration:none; 
	color:#000; 
	display:block; 
	padding:5px 2px; /*creates space each side of menu item's text */
	text-decoration:none; /* removes the underlining of the link */
}
#listmenu li:hover 
	{color:#f1eabe; 
	background-color:#6487a3; 
	border-left:1px solid #325b7b; 
	border-right:1px solid #325b7b;
}
#listmenu a:hover 
	{color:#f1eabe;
	background-color:#6487a3;
	}
/* the menu ends here */


/* the drop-down starts here */
#listmenu ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the 
horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation 
to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the 
li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	}
#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #325b7b; /*  three sides of each drop-down item */
	border-bottom:1px solid #325b7b;
	border-right:1px solid #325b7b;
	border-top:0px;
	padding:0 0 1px;
	}
#listmenu ul li ul li:first-child {
	border-top:1px solid #325b7b; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
#listmenu ul li ul {display:none;} /* conceals the drop-down when 
menu not hovered */
#listmenu ul li:hover ul {display:block;} /* shows the drop-down 
when the menu is hovered */

/* pop-out starts here */
body #listmenu ul li ul li ul {
	visibility:hidden; /* same effect as display:none in this situation */
	top:-1px;
	left:10em;
	}
#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect 
as display:block in this situation */

/* another level of pop-outs */
#listmenu ul li ul li:hover ul li ul {display:none;} /* conceals the 
drop-down when menu not hovered */
#listmenu ul li ul li ul li:hover ul {display:block;} /* shows the 
drop-down when the menu is hovered */

/* THE HACK ZONE - */

/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html #listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:0px solid #000; /* adds the rightmost menu 
vertical line to the ul */
	margin-left:0px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html #listmenu ul li ul {
	border-top:1px solid #325b7b;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the 
pop-out to touch the drop-down */
* html #listmenu ul li ul li ul {
   left:9.85em;
   voice-family: "\"}\"";
   voice-family:inherit;
   left:10em;
   }
/* and the "be nice to Opera" rule */
html>body #listmenu ul li ul li ul {
   top:-1px;
   left:10em;
   }

/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at 
least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least 
it works */
	@media all and (min-width:0px){
    body #listmenu ul li ul {padding-bottom:70px;}
    body #listmenu ul li ul li ul {padding-bottom:22px;}
    body #listmenu ul li ul li ul li ul li:hover {visibility:visible;} 
/* same effect as display:block in this situation*/
}
   
/*end Opera hack */
/* end of hack zone */
/* END OF LIST-BASED MENU */




h1 
	{color:#000;
	font-size:1.6em;
	font-variant:normal;
	line-height:135%;
	letter-spacing:0.06em;
	margin-top:6px;
}
h2, h3 
	{font-size:1.1em; 
	font-variant:normal; 
}
h4{font-size:1em;
	font-variant:normal;
}
h5{font-size:.9em;
	padding-bottom:6px;}
h6 
	{color:#000;
	font-size:1.1em;
	font-variant:normal;
	line-height:135%;
	letter-spacing:0.04em;
	padding:7px 0;
}
h2 a, h3 a 
	{color:#6e5339; 
	text-decoration:none;
}
h2 a:visited 
	{color:#6e5339; 
	text-decoration:none;
}
h3 a:hover 
	{color:#8f361e;
	text-decoration:none;
}
p 
	{font-size:1em; 
	line-height:125%; 
	padding-right:10px; 
	padding-bottom:15px;
}
.italictext
	{font-style:italic;}
.italicsubhead
	{font-weight:bold;
	font-style:italic;
	font-variant:small-caps;
	font-size:1.1em;
}
ul li{list-style:none;}
ul {
	padding-bottom: 10px;
}

.bullet {
	list-style-type: disc;
}

h1 + p {padding-top:10px;}
h1 + ul {padding-top:10px;}
h1 + h2 {padding-top:10px;}
h1 + h3 {padding-top:10px;}
h2 + h2 {padding-top:18px;}
h2 + p {padding-top:5px;}
h2 + h5 {padding-top:10px;}
h2 + ul {padding-top:10px;}
h3 + ul {padding-top:10px;}
h4 + p {padding-top:10px;}
h5 + ul {padding-top:10px;}
a:link, a:visited 
	{
	color:#000;
}
a:hover 
	{color:#8f361e;
	text-decoration:none;
}
p a:link 
	{
	color:#6e5339;
	font-weight: bold;
}
.underlinelinks {
	text-decoration: underline;
	font-weight: bold;
}

p a:visited 
	{color:#8f361e;
}
p a:hover, h2 a:hover, h4 a:hover 
	{color:#8f361e;
	text-decoration:none;
}
right-nav h4 a:link, a:visited
	{color:#000;
}
right-nav h4 a:hover 
	{color:#8f361e;
}
#lunch {
	padding-left: 25px;
}

#column2 li
	{font-size:.9em;
	line-height:115%;
	padding-right:10px; 
	padding-bottom:13px; margin-left: 20px;
}
p img 
	{
	padding: 2px;
	margin: 2px;
}

blockquote
	{background-color:#f8f6DD;
	border:solid #996633 1px;
	margin-top:15px;
	margin-bottom:15px;
	}
blockquote h2
	{
	font-family:palatino, times, garamond, serif;
	font-size:12px;
	color:#996633;
	margin-left:25px;
	margin-top:25px;
	float:left;
	text-align:center;
}
blockquote p 
	{margin-left:150px;
	margin-top:21px;
	font-size:11px;
	font-family:verdana, arial, helvetica, sans-serif;
	margin-right:25px;
	margin-bottom:25px;
}

/* the container holding everything starts here */

#mainwrap
  {width:780px; 
  margin-right:auto; 
  margin-left:auto; 
  background-image:url(images/hills-2.jpg); 
  background-repeat:no-repeat;
}

#header {width:780px; height:142px;
}

#header img {float:right; padding:10px 14px 2px 0px;
}

#contentarea {
	width:780px;
	background-color:#ArtWalk Santa Rosa - Thursday, September 23
<; 
	background:url(images/container.gif)
}
#column1-alt #sig img {
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#column1-alt #card p img {
	padding-right: 10px;
}


#contentarea a:link {color:#904331;
}
#contentarea a:visited {color:#904331;
}
#contentarea a:hover {
	color:#6e5339;
}
#column1-alt {width:570px; 
	float:left; 
	padding:30px;
}
#column1-alt #wraplists {
	width: 570px;
}

#column1-alt img, #column2 img {
	float:left;
	padding-right: 15px;
}
#column1-alt li { 
	line-height:115%; 
	padding-right:10px; 
	padding-bottom:13px; margin-left: 20px;
}
#column1 {width:128px; 
	float:left; padding:30px;
}
#column2 
	{width:450px; 
	float:left; 
	padding:20px 12px 0 0;
}
#right-nav 
	{width:130px; 
	min-height:400px;background:url(images/side1.jpg) no-repeat; 
	margin:0 0 0 650px;
}
#right-nav h3{
	margin:0 28px 12px 28px;
	padding:5px 2px 5px 2px; 
	font-size:1em; font-variant:small-caps;
	letter-spacing:.25em;
	font-family:verdana, helvetica, arial, sans-serif; 
	background-color:#90a8bc; 
	text-align:center;
}
#right-nav h5{
	margin:0 0 12px 0; 
	padding:4px 0 2px 0; 
	font-size:1em; 
	letter-spacing:.1em; 
	font-family:verdana, helvetica, arial, sans-serif; 
	background-color:#90a8bc; 
	text-align:center;
}
#right-nav h4 
	{text-align:center; 
	margin:0 0 12px 0;
}
#right-nav a:link{color:#000000;}
#right-nav a:visited{color:#000000;}
#right-nav a:hover{color:#8f361e;}
#breadcrumb 
	{float:right;
    width:200px;
	font-size:.9em;
    text-align:right;
 }
#breadcrumb a:link
 	{color:#904331;
}
#breadcrumb a:hover, a:visited
 	{color:#6e5339;
}

/* the container holding everything ends here */


/* the footer that sits on top of the background texture starts here */
#footer
	{width:450px; 
	margin-left:188px; 
	text-align:center; 
	float:left; 
	color:#484848; 
	font-size:0.8em; 
	text-align:center;
	padding-top:10px;
}
#footer a:link
	{color:#484848; 
	text-decoration:none; 
	margin:inherit;
}
#footer a:visited 
	{color:#484848; 
	text-decoration:none; 
	margin:inherit;
}
#footer a:hover 
	{color:#8f361e; 
	text-decoration:none; 
	margin:inherit; 
}
.clearfloats 
	{clear:both;
}
#sohrose
	{
	position:absolute;
	top: 225px;
	left: 227px;
	width: 413px;
	height: 293px;
}

#sohtwohearts
	{position:absolute;
	top:2190px;
	left:345px;
}
#loby
	{
	position:absolute;
	top:2050px;
	left:400px;
	
}

th {
	 text-align: right;
	 vertical-align: top;
	 padding-top: 20px;
	 
} 

td {
	 padding-top: 20px;
	
}
#wraplist #columnA {
	float: left;
	width: 30%;
	background-color: #FFF;
	padding-bottom: 5px;
	padding-left: 5px;
	margin-right: -11px;
	padding-right: 10px;
	margin-left: -10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: justify;
}
#wraplist {
	background-color: #FFF;
	margin-right: -30px;
	padding-top: 5px;
	margin-left: -5px;
	padding-left: 10px;
}

#wraplist #columnB {
	float: left;
	width: 34%;
	background-color: #FFF;
	padding-bottom: 5px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-left: 10px;
}
#wraplist #columnC {
	float: left;
	width: 30%;
	background-color: #FFF;
	padding-bottom: 18px;
	padding-right: 31px;
}

#vase {
	float:right;
	top:500px;
}
.green {
	color: #000;
	background-color: #9F0;
}
.floatright {
	float: right;
}
#paypal {
	float: right;
	margin-right: 300px;
	margin-top: 20px;
}
#menu {
	text-align: center;
}
.quicklinks {
	color: #000;
	font-size: 13px;
	background-color: #acb613;
}
.red {
	color: #F00;
}
.centerit {
	text-align: center;

}
.floatleft {
	float: left;
}
#sohpic {
	padding-left: 20px;
}
#kauai {
	float: none;
	padding-left: 140px;
}
#palm {
}
#column1-alt ul li {
	padding-top: .1em;
	padding-bottom: .1em;
}
#column1-alt #poppies {
	margin-left: -10px;
	margin-top: -20px;
}
#cabianca {
	float: left;
}
#farmhouse {
	font-size: 18px;
	float: left;
	width: 225px;
	text-align: center;
	margin-top: -5px;
	margin-bottom: 0px;
	margin-left: 57px;
	padding-top: 5px;
	padding-bottom: 15px;
	padding-left: 15px;
}
#restaurants {
	text-align: center;
	font-size: 14px;
	padding-top: 0px;
}

#cyrus {
	padding: 5px 25px 15px 15px;
	float: right;
	width: 200px;
	font-size: 18px;
	margin: -5px 35px 15px -10px;
	letter-spacing: .03em;
	text-align: right;
}
#c1 {
	text-align: left;
	float: left;
}
#c2 {
	text-align: left;
	float: right;
}
#wineries {
	font-size: 14px;
	padding-left: 55px;
	text-align: center;
}

#musicians {
	padding-left: 100px;
}
#rafimg {
	padding-left: 65px;
}
#paypal2 {
	margin-left: 225px;
	margin-top: -10px;
}
ul li #featureslist {
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 12px;
	font-variant: normal;
	font-style: italic;
}
ul li #featureslist li {
	list-style-type: disc;
}
#charlies {
	padding-left: 35px;
	padding-top: 10px;
	padding-bottom: 50px;
}
.red {
	color: #900;
}
#featureslist ul li {
	padding-right: 0px;
}
#featureslist ul {
	padding-bottom: 0px;
	padding-left: 15px;
}
#cr strong a {
	margin-right: -5px;
}
#mailProblem {
	background-color: #CEBC92;
	padding: 10px 5px 5px 15px;
	font-weight: normal;
	margin-bottom: 15px;
	border-width: 1px;
	border-style: solid;
}
#victoria {
	padding-left: 300px;
}
#walk {
	width: 350px;
	border: thin solid #904331;
	background-color: #EEE5AA;
}
#walk p {
	padding-left: 10px;
	padding-top: 10px;
}
