@charset "UTF-8";
body  {
	background: #dddd99;
	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 */
	color: #5e5e41;
	font-family:"Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
	font-size:85%;
	}

hr {
	color: #ffffcc;
	border-color:#ffffCC;
	height: 1px;
}

a:link {
	color: #777744;
	text-decoration: none;
}

a:visited {
	color: #996;
	text-decoration: none;
}

a:hover {
	color:#CC6600;
	text-decoration:underline;
}

.mainTitle{

}



.twoColFixLt #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #dddd99;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left;
	padding: 0 10px 15px 20px;
}
.twoColFixLt #sidebar1 {
	float: left; /* 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: 15px 10px 15px 0px;
	background-color: #dddd99;
	
	color:#863;
	font-family:"Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
	font-size:78%;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	letter-spacing:0.2em;
	line-height:1.8em;
	margin:1.5em 0pt 0.75em;
	text-transform:uppercase;
	
	/*border-top:1px dotted #FFFFcc;*/
	border-bottom:1px dotted #FFFFcc;

}
.twoColFixLt #mainContent {
	margin: 0 0 0 270px; /* the left margin on this div element creates the column down the left 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. */
	padding: 30px 20px 20px;
} 

.twoColFixLt #header {
	border:1px solid #FFFFCC;
}

.twoColFixLt #headerlogo {
	border:1px dotted #ffffcc;
	margin: 5px 5px 5px 5px;
}

.twoColFixLt #contactinfo {
	border-top:1px dotted #ffffcc;
	border-bottom:1px dotted #ffffcc;
}

.twoColFixLt #price {
	color: #cc6600;
	text-align: center;
	font-family:"Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
	font-size:120%;
	font-weight: bold;
}
/*gio ponte page requires more than one price, use this class insead of a div id*/
.price {
	color: #cc6600;
	text-align: center;
	font-family:"Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
	font-size:120%;
	font-weight: bold;
}

.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: 0 8px 2px 8px;
	border:  solid #000000 1px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 0 8px 2px 8px;
	border:  solid #000000 1px;
}
.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;
}
a:link {
	color: #777744;
	text-decoration: none;
}

a:visited {
	color: #996;
	text-decoration: none;
}

a:hover {
	color:#CC6600;
	text-decoration:underline;
}


/*code for centering slideshow in it's space*/
.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
/*border-Bottom:1px dotted #FFFFcc;*/
padding: 0 0 15px 0;
}

.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
border-bottom:1px dotted #FFFFcc;
padding: 0 0 15px 0;
}

