@charset "UTF-8";
body {
	font: 75%/120% "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #263F55;
	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: #263F55;
	behavior: url("styles/csshover3.htc");
}
#container {
	width: 930px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #3B5A71;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
}
a:link {
	color: #069;
	text-decoration: none;
}
a:visited {
	color: #963;
	text-decoration: none;
}
a:hover {
	color: #F93;
	text-decoration: underline;
}
a:active {
	color: #F93;
	text-decoration: underline;
}
#mainContent ul {
	margin-left: 0px;
}
#mainContent li {
	list-style-image: url(../images/general/bullet.gif);
	margin-bottom: 8px;
	list-style-position: outside;
}
#header {
	background: #FFF url(../images/general/bg-header.jpg) repeat-x left top;
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 87px;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#nav {
	margin: 0px;
	padding: 0px;
	height: 24px;
	position: absolute;
	left: 260px;
	top: 55px;
	float: left;
	width: 650px;
	font-size: 95%;
	font-weight: bold;
	list-style-type: none;
}
#home #nav .home a ,
#availability #nav .availability a ,
#siteplan #nav .siteplan a ,
#location #nav .location a ,
#tenantdocs #nav .tenantdocs a ,
#contact #nav .contact a {
	background-position: right bottom;
	color: #6F313D;
	background-color: #E3EAF0;
	cursor: default;
	padding-top: 14px;
	padding-bottom: 4px;
}
#nav ul {
	margin: 0px;
	padding: 0px;
}
#nav li {
	float: left;
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
#nav li:hover {
	background-color: #E3EAF0;
}
#nav li:active {
	background-color: #E3EAF0;
}
#nav a {
	color: #FFF;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#nav a:hover {
	color: #263F55;
}
#mainContent {
	padding: 0;
	margin-top: 0px;
	margin-right: 40px;
	margin-bottom: 0px;
	margin-left: 40px;
}
#mainContent #leftColumn {
	padding: 0px;
	float: left;
	width: 200px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#mainContent #rightColumn {
	float: right;
	width: 620px;
	margin-top: 0px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.MainHeadline {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #6F313D;
	line-height: 100%;
	font-size: 120%;
}
.SubHeadline {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #263F55;
	font-size: 110%;
}
.clearfloat {
	font-size: 1px;
	line-height: 0px;
	clear: both;
	height: 0px;
}
.imageborder {
	background-color: #F1F5F8;
	padding: 10px;
	border: 1px solid #E3EAF0;
}
#mainContent table {
	background-color: #FFF;
	padding: 0px;
	margin: 0px;
	border-top: 1px solid #9CC;
	font-size: 12px;
}
#mainContent table td {
	padding: 2px 6px;
	margin: 0px;
	text-align: left;
	border-bottom: 1px solid #9CC;
}
#mainContent table tr {
	background-color: #F1F5F8;
}
#mainContent table tr.tableHead {
	background-color: #5C80A2;
	color: #FFF;
	font-weight: bold;
}
#mainContent table tr.tableAlt {
	background-color: #FFF;
}
.fltlft40 {
	float: left;
	width: 46%;
	padding: 0px;
	margin: 0px 0px 0px 20px;
}
.fltrt40 {
	float: right;
	width: 46%;
	margin: 0px 0px 0px 20px;
	padding: 0px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.fltrt {
	float: right;
	margin-left: 8px;
}
.MapWithMargins {
	margin-right: 20px;
	margin-left: 80px;
	width: 450px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	float: left;
}
#brochureButton {
	position: absolute;
	height: 24px;
	width: 105px;
	top: 12px;
	right: 40px;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E3EAF0;
}

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.smalltype {
	font-size: 90%;
}
