@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
  	font-family: depot-new-web,sans-serif;
	font-size: 100%;
	line-height: 1;
	background:#FFFFFF;
	}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	list-style:none;
	font-size:100%;
	font-family: depot-new-web,sans-serif;

}
table {
	font-family: depot-new-web,sans-serif;
	font-size: 100%;
	padding-bottom:1em;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 5px;
	/*padding-left: 15px;  adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a {
	text-decoration:none;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */

/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	padding:0;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	margin:0 0 0 0;
	}
header h1{
	padding:0;
	margin:0;
	font-size:4.7em;
	color: #8E0100;
	float:left;
	font-weight:normal;
    font-family: depot-new-web,sans-serif;

}
.content h1 {
	font-size:1.7em;
	font-weight:normal;
	line-height:1.3em;
    font-family: depot-new-web,sans-serif;
		margin-bottom:.5em;

}
.content h2 {
	font-size:1.5em;
	font-weight:normal;
	color:#491800;
	line-height:1.2em;
    font-family: depot-new-web,sans-serif;
	margin-bottom:.5em;
	padding:0;
}
.content h3 {
	font-size:1.3em;
	font-weight:normal;
	line-height:1em;
    font-family: depot-new-web,sans-serif;
	margin-bottom:.5em;
	padding:0;
}
.contentinner h1 {
	padding:0;
	margin:0 0 10px 0;
	font-size:1.5em;
	font-weight:normal;
	line-height:1.3em;
	color:#8E0100;
	font-weight:normal;
	font-family: depot-new-web,sans-serif;

}
.contentinner h2 {
	padding:0;
	margin:0 0 10px 0;
	font-size:1.4em;
	line-height:1em;
	font-weight:normal;
	color:#491800;
	font-family: depot-new-web,sans-serif;

}
.contentinner h3 {
	font-size:1.3em;
	padding:0;
	margin:0 0 10px 0;
	font-weight:normal;
	font-family: depot-new-web,sans-serif;
}
.contentinner h4 {
	font-size:1.3em;
	padding:0;
	margin:0 0 10px 0;
	font-weight:normal;
	font-family: depot-new-web,sans-serif;
}
header a {
	line-height:1.3em;
	color: #DB0200;
}
header a:visited {
	color: #DB0200;
}
header a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}
.topright{
	float: right;
	text-align:right;
	font-size:1.1em;
	font-family: depot-new-web,sans-serif;
	padding-top:10px;
}
.topright ul {
	list-style: none;
}
.topright li {
	display: inline;
	list-style-type: none;
	margin:0 0 0 10px;
}
.search {
	float:right;
	text-align:right;
	margin:13px -5px 0 0;
}
.search p {
	margin:0;
}
.search .searchbox{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	padding:8px 0px 10px 8px;
	margin:0;
}
.breadcrumb {
	background-color:#FFC25E;
	padding:15px 0 10px 10px;
	margin:35px 0 0 0;
	font-size:.9em;
}
.breadcrumb a {
	color: #DB0200;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
.breadcrumb a:visited {
	color: #DB0200;
	text-decoration: none;
}
.breadcrumb a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}
.sidebar1 {
	float: right;
	width: 310px;
	margin:20px 0 0 0;
}
.sidebar1 a{
	color:#000000;
}
aside {
	width:310px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; 
	border-radius: 5px; 
	-moz-box-shadow: 0px 1px 3px hsla(0,0%,0%,0.3);
	-webkit-box-shadow: 0px 1px 3px hsla(0,0%,0%,0.3);
	box-shadow: 0px 1px 3px hsla(0,0%,0%,0.3); 
	margin:0 0 20px 0;
	line-height:1.3em;
	text-align:center;
	padding-top:5px;
	

}
aside p{
	text-align:center;
	margin:0;
	padding:0;
}
/*aside:hover {
	width:310px;
	color:#DB0200;
	-moz-box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6);
	-webkit-box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6);
	box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6); /* Opera, IE 9 	
}*/
.boxtop {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
}
.boxtop h1 {
	padding:10px 0 0px 10px;
	color:#DB0200;
	font-size:1.3em;
	font-weight:normal;
	margin:0;
	font-family: depot-new-web,sans-serif;

}
.boxbottom {
	-moz-border-radius: 0px 0px 5px 10px;
	-webkit-border-radius: 0px 0px 5px 10px; /* Safari 4 and earlier */
	border-radius: 0px 0px 5px 10px; /* Opera, Chrome, Safari 5, IE 9 */
}
.boxbottom h1 {
	padding:0px 10px 15px 0px;
	color:#DB0200;
	font-size:1.5em;
	font-family: depot-new-web,sans-serif;

	font-weight:normal;
	margin:0;
	text-align:center;}
aside p {
	font-size:.8em;
	padding:5px 10px 10px 10px;
}

.home_bottom_row{
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width:960px;
	margin:0;
	line-height:.8;
	text-align:center;

}
.home_bottom_box{
	width:220px;
	margin: 0 0 0 24px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	float:left;
	background-color:#FFFFFF;

}
.home_bottom_box_left {
	width:220px;
	float:left;
	background-color:#FFFFFF;
	text-align:center;
}
.home_bottom_box_left_ppc {
	width:220px;
	margin-left:110px;
	float:left;
	background-color:#FFFFFF;
	text-align:center;
}
home_bottom_box:hover {
	width:310px;
	color:#DB0200;
	-moz-box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6);
	-webkit-box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6);
	box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6); /* Opera, IE 9 */	
}
home_bottom_box_left:hover {
	width:310px;
	color:#DB0200;
	-moz-box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6);
	-webkit-box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6);
	box-shadow: 1px 2px 5px hsla(1,100%,43%,0.6); /* Opera, IE 9 */	
}
.home_bottom_row img {
}
.screenshot {
	padding:12px 0 11px 0;
}
.home_bottom_row .boxhl {
	font-size:1.2em;
	padding:5px 10px 0px 0px;
	color: #DB0200;
	background-color:#FFF;
	margin:0 0px 0 0px;
	font-weight:normal;
	font-family: depot-new-web,sans-serif;
}

.home_bottom_row p {
	font-size:.9em;
	padding:5px 0px 0px 0px;
	color:#000000;
	line-height:1.3em;

}
.content {
	width: 630px;
	margin:20px 0px 0 0;
	float: left;
}

.content p {
	font-size:.95em;
	line-height:1.4em;
}

.content a {
	color: #DB0200;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
.content a:visited {
	color: #DB0200;
	text-decoration: none;
}
.content a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}
.content hr {
	margin:0 0 15px 0;
	padding:0;
	color: #461700;
	background-color: #461700;
	height: 2px;
	width: 100%;
}
.media{
	margin:20px 0 10px 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,1);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,1);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.8); /* Opera, IE 9 */
	background-color:#FFFFFF;
	
}
.media h2{
	font-size:1.1em;
	margin:0 0 10px 10px;	
}
.media img{
	float:left;
	margin:0 10px 0 0;
	padding:5px;
	
}
.media p{
	font-size:.8em;
}
.videos{
	float:left;
	width:310px;
	border:#000000;
	padding:5px 0 0 0;
	margin:0;		
}
.podcasts{
	float:left;
	width:310px;
	margin: 0 0 0 15px;
	padding:5px 0 0 0;
	
}
.podcasts img{
	float:left;	
}

.contentinner {
	width: 960px;
	margin:20px 0 0 0;
	float: left;
	line-height:1.3em;
}

.contentinner p {
	font-size:.95em;
	line-height:1.3em;
}
.contentinner td {
	font-size:.95em;
	line-height:1.3em;
}

.contentinner a {
	line-height:1.3em;
	color: #DB0200;
}
.contentinner a:visited {
	color: #DB0200;
}
.contentinner a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}

.contentinner ul {
	line-height:1.3em;
}
.contentinner td {
	font-size:.95em;
	line-height:1.3em;
}
.contentinner li {
	margin:10px 0 10px 30px;
	}
.contentinner img {
	padding: 0 10px 0 0;
	}
.contentinner hr {
	margin:0 0 10px 0;
	padding:0;
	color: #461700;
	background-color: #461700;
	height: 1px;
	width: 100%;
}
#offices h2 {
	margin:25px 0 5px 0;
	padding:0;
}
#offices h3 {
	margin:0 0 10px 0;
	padding:0;
}
.map{
	float:left;
	margin-left:40px;
	width:495px;
	
}
.mapoffices{
	float:left;
	margin-left:20px;
	width:400px;
	line-height:.8;
}

.mapoffices li{
	list-style:none;
	padding:0;
	margin:5px 0 5px 10px;
}
.mapoffices ul{
	list-style:none;
	padding:0;
	margin:0 0 10px 0;
}
.officeinfo {
	margin:0 0 0 20px;
}
footer {
	padding:15px 0 0 0;
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-style:normal;
	line-height:1.3em;
}
footer hr {
	margin:0 0 15px 0;
	padding:0;
	color: #461700;
	background-color: #461700;
	height: 2px;
	width: 100%;
}
address {
	font-style:normal;
	font-size:.95em;
	float:left;
}
.copy {
	font-size:.85em;
}
footer img{
	float: right;
	text-align:right;
	vertical-align:top;
	margin-left: 10px;
	background-color:#FFFFFF;
	background-image:none
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0;px 3px hsla(0,0%,0%,1);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,1);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.8); /* Opera, IE 9 */	
}
footer a {
	line-height:1.3em;
	color: #DB0200;
}
footer a:visited {
	color: #DB0200;
}
footer a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}
/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly.*/
header,  section, footer, aside, article, figure {
	display: block;
}
.fltrt{
	clear:both;
	float:right;
}
.fltlft{
	clear:both;
	float:left;
}
.clrflt{
	clear:both;
}
.galleryfltrt{
	float:right;
	margin:0 0 10px 0;
	text-align:right;

}
.galleryfltlft{
	float:left;
	margin-top:10px;
}
.galleryback {
	float:right;
	padding:0;
	line-height:0;
	margin:10px 0 0 0;
	}
.gallery_cats_row{
	clear: both; 
	width:960px;
	margin:0 0 0 0;
	padding:0;
}
.gallery_cats_box{
	width:100px;
	margin: 0 0 15px 15px;
	padding:0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6); /* Opera, IE 9 */
	float:left;
	background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #fffcf4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fffcf4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* IE10+ */
background: linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffcf4',GradientType=0 ); /* IE6-9 */
}

.floorplan_cats_box_left {
	width:100px;
	margin: 0 0 0 265px;
	padding:0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6); /* Opera, IE 9 */
	float:left;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #fffcf4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fffcf4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* IE10+ */
	background: linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffcf4',GradientType=0 ); /* IE6-9 */
}
.floorplan_cats_box_left {
	width:100px;
	margin: 0 0 0 205px;
	padding:0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6); /* Opera, IE 9 */
	float:left;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #fffcf4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fffcf4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* IE10+ */
	background: linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffcf4',GradientType=0 ); /* IE6-9 */
}

.gallery_cats_row img {
	margin:10px 10px 0 10px;
	padding:0;
}
	
.gallery_cats_row p {
	font-size:.8em;
	text-align:center;	
	margin:0;
	padding:0 0 5px 0;
}
.gallery_cats_row a {
	color:#DB0200;
}
.gallery_cats_row a:hover {
	text-decoration:none;
}

.gallery_thumbs_row{
	clear: both; 
	width:960px;
	margin:0 0 0 0;
	padding:0;
}
.gallery_thumbs_box{
	width:180px;
	margin: 0 7px 15px 5px;
	padding:0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6); /* Opera, IE 9 */
	float:left;
	background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #fffcf4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fffcf4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* IE10+ */
background: linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffcf4',GradientType=0 ); /* IE6-9 */
}

.gallery_thumbs_box_right {
	width:180px;
	margin: 0 0 0 0;
	padding:0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari 4 and earlier */
	border-radius: 5px; /* Opera, Chrome, Safari 5, IE 9 */
	-moz-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	-webkit-box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6);
	box-shadow: 0px 0px 3px hsla(0,0%,0%,0.6); /* Opera, IE 9 */
	float:left;
	background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #fffcf4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fffcf4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* IE10+ */
background: linear-gradient(top,  #ffffff 0%,#fffcf4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fffcf4',GradientType=0 ); /* IE6-9 */

}
.gallery_thumbs_row img {
	margin:10px 10px 0 10px;
	padding:0;
}
	
.gallery_thumbs_row p {
	font-size:.8em;
	text-align:center;	
	margin:0;
	padding:0 5px 5px 5px;
}
.gallery_thumbs_row a {
	color:#DB0200;
}
.gallery_thumbs_row a:hover {
	text-decoration:none;
}
.gallerydetail h1{
	float:left;
	margin:0 0 10px 0;
	padding:0;	
}
.gallerydetail img{
	margin:0;
	padding:0;	
}
.gallerydetail p{
	margin:0;
}
.gallerydetail hr{
	margin:0 0 10px 0;
}
.expandable
{
font-size:15px;
}
h1.floorplantitle
{
margin:0;
padding:0;
}
.fphr
{margin:0 0 -5px 0;
padding:0;
line-height:0;
}
.fpimage {
	margin-top:10px;
}
.podcastlist{
	margin:0 0 2em 2em;
}
.googlemap{
	
	float:left;
	padding-right:10px;
}
.homeindent{
	margin-left:1em;
}
.photocaption{
	width:600px;
	text-align:center;
	font-size:.8em;
}
.photocaption2{
	width:400px;
	font-size:.8em;
	float:right;
	padding:10px;
}

