@charset "UTF-8";
/* CSS Document */

body
{
	font: 100% Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin:0;/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
}

.master a, .master .master a img
{
	text-decoration: none; /* these properties prevent the blue link border and text from showing; this property occassionally gets overridden and these parameters entered for particular classes and ids */
	border:none;
}

.master #container
{
	width: 900px;
	text-align: left;
	margin-bottom: 10px;
	margin-left: 10px;
	position:relative;
	top:5px;
}

.master #header
{
	height: 20px;
	font-size:25px;
}

.master #header a
{
	color: #FFFFFF;
	text-decoration: none;
}


#container #upperContent
{
	border: 1px solid #CCCC99;
}

.master #sidebar1
{
	float: left; /* since this element is floated, a width must be given; the width is defined in the second style sheet referenced on a given page */
}

#upperContent #sidebar1 a
{
	font-family: Arial, Helvetica, sans-serif;
	color: #999999;
	text-decoration: underline;
}

.master #container #upperContent #sidebar1 .sidebar1CaptionImg a img
{
	text-decoration: none;
	border-style: none;
}

.master #sidebar2
{
	float: right; /* since this element is floated, a width must be given; this sidebar remains consistent throughout the site so it is defined here*/
	width: 181px;
	background: #FFFFFF;
	text-align:center;
	padding-top: 2px;
	overflow: hidden;
}

#sidebar2 img
{
	margin-top:3px;
}

#sidebar2 a img
{
	text-decoration: none;
	border:none;
}

#sidebar2 #italianVillaNavBar a:link, #sidebar2 #italianVillaNavBar a:visited 
{
	color: #999999;
	text-decoration: none;
	font: bold small-caps 10px/300% Arial, Helvetica, sans-serif;
}

#sidebar2 #italianVillaNavBar .button a:active, #sidebar2 #italianVillaNavBar a:hover 
{
	color: #999900;
	text-decoration: none;
	font: bold small-caps 10px/300% Arial, Helvetica, sans-serif;
}

.master #container #upperContent #sidebar2 #CallUs
{
	margin-top: 12px;
	margin-bottom: 12px;
}

.master #mainContent {
	top: 0px;
	text-align: left;
	margin-bottom: 0px;
	margin-right: 215px;
} 

#container #pageTextContent
{
	color: #999900;
	font-size: 12px;
	border-bottom: 1px solid #CCCC99;
	margin: 5px 5px 10px;
	padding-bottom: 20px;
	line-height: 20px;
	text-align: justify;
	padding-top: 40px;
}

.master #container #pageTextContent p #firstLetter
{
	font: 24px "Edwardian Script ITC", "French Script MT";
	margin-right: -1px;
}

.master #container #pageTextContent #familySig
{
	float: right;
}

.master #footer {
	background:#FFFFFF;
	border-top:solid 1px #CCCC99;
	padding-top: 0;
	padding-bottom: 0;
	width: 900px;
	margin-left:10px;
	/* top must be defined for each page */
	position:absolute;
} 

.master #footer #footerSiteMap
{
	color: #999999;
	font-size: 10px;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
	font-weight: bold;
}

.master #footer #footerSiteMap a:link, .master #footer #footerSiteMap a:visited
{
	font-size: 10px;
	font-variant: small-caps;
	color: #999999;
	text-decoration: none;
	margin-right: 9px;
	margin-left: 9px;
	font-weight: bolder;
}

.master #footer #footerSiteMap a:active, .master #footer #footerSiteMap a:hover{color:#999900;}

.master #footer #tuscanyRentalLinks
{
	margin-left: 5px;
	text-align: center;
	padding-bottom: 10px;
	border-bottom:solid 1px #CCCC99;
}

.master #footer #tuscanyRentalLinks a
{
	color: #CCCC99;
	font-size: 10px;
	font-variant: small-caps;
	text-decoration: none;
	margin-right: 6px;
	margin-left: 6px;
	font-weight: bolder;
	line-height:150%;
}

.master #designerCredit{
	margin-top: 5px;
	text-align: center;
}

.master #designerCredit a{
	font-size: 10px;
	font-variant: small-caps;
	color: #999999;
	font-weight: bold;
	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;
}
.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;
}
