/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FFFFFF;
	color: #4C4C4C;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #777890;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}

/* Commonly used to style section titles. */
h2 {
	color: #4C4C4C;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	font-family: Arial, Helvetica, sans-serif;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #4C4C4C;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #50516b;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #666;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #666;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #383644;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 803px;
}
#outerWrapper #header {
	background-image: url("SiteImages/GroupHeaderBack.jpg");
	background-position: bottom;
	background-repeat: no-repeat; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 10px;
	font-weight: bold;
	line-height: 15px;
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin: 0;
	color: #FFF;
	position: relative;
}
#outerWrapper #ImageHolder {
	margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px;
	text-align: right;
	display: block;
	height: 226px;
}
#outerWrapper #topNavigation {
	background-image: url(SiteImages/GroupNavBack.jpg);
	padding: 3px 0 5px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-repeat: no-repeat;
	background-position: right bottom;
	color: #FFF;
	margin: 0;
	height: 15px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
}
#outerWrapper #contentWrapper {
	background-repeat: repeat-y;
	background-color: #F2F2F2;
	margin: 0px 0 0 3px;
	padding: 40px 0px 0px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	float: left;
	margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 40px 10px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 260px;
	color: #4C4C4C;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0 0 350px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 40px 10px 10px;
}
#outerWrapper #footer {
	background-image: url("SiteImages/GroupFooterBack.jpg");
	background-position: top;
	background-repeat: no-repeat; /* Sets the top border properties for an element using shorthand notation */
	padding: 2px 12px 0 0;
	color: #FFF;
	text-transform: uppercase;
	text-align: right;
	margin: 0;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 10px;
}
#outerWrapper #header img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px 0px 5px;
}
#outerWrapper #header p {
	margin: 0px;
	padding: 2px 10px 0px 0;
	text-align: right;
	font-size: 9px;
	text-transform: uppercase;
	clear: left;
	font-family: Verdana, Helvetica, sans-serif;
	font-weight: normal;
}
#outerWrapper #topnav {
	text-align: right;
	float: right;
	color: #A2A3A7;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 10px;
}
#outerWrapper #topNavigation a {
	color: #FFF;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
	padding-top: 5px;
	padding-right: 30px;
	padding-bottom: 5px;
	padding-left: 30px;
	font-weight: normal;
}

#outerWrapper #bottomnav p {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #footer #bottomnav p a {
	color: #999999;
}
#outerWrapper #bottomnav {
	font-family: Arial, Helvetica, sans-serif;
	color: #999999;
	margin: 0px 0px 20px 44px;
	padding: 0px;
}#outerWrapper #pushcredit {
	font-family: Verdana, Geneva, sans-serif;
	color: #999999;
	margin: 0px 0px 20px 44px;
	padding: 0px;
}#outerWrapper #pushcredit a {
	color: #999999;
	padding: 0px 8px;
	font-weight: normal;
}
#outerWrapper #topnav a {
	color: #929498;
	padding: 0px 8px;
}
#outerWrapper #bottomnav a {
	color: #999999;
	padding: 0px 8px;
	font-weight: normal;
}
#outerWrapper #contentWrapper #leftColumn1 p {
	margin: 0px 0px 10px;
	padding: 0px;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 12px;
}
#outerWrapper #contentWrapper #leftColumn1 p strong {
	color: #000;
}
#outerWrapper #contentWrapper #leftColumn1 p a {
	font-weight: normal;
}
#outerWrapper #contentWrapper #content .story img {
	float: left;
	margin-right: 25px;
	border: 5px solid #FFF;
}
#outerWrapper #contentWrapper #content .story {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E6E6E6;
	padding: 0px 0px 12px;
	margin: 0px 0px 12px 10px;
	display: block;
	height: 66px;
}
#outerWrapper #contentWrapper #content .story p {
	margin: 0px;
	padding: 0px 0px18px;
}
#outerWrapper #contentWrapper #content .story h2 {
	color: #4C4C4C;
	font-size: 11px;
	margin: 0px;
	padding: 0;
}
#contact #outerWrapper #contentWrapper #leftColumn1 {
	padding-right: 30px;
	padding-left: 40px;
}
#contact #outerWrapper #contentWrapper #content {
	margin-left: 250px;
	padding-right: 250px;
	background: url(SiteImages/contactback.jpg) no-repeat right bottom;
	min-height: 300px;
}
#contact #outerWrapper #contentWrapper #content p {
	margin: 0px 0px 12px;
	padding: 0px;
}
.address {
	line-height: 1.3;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
}
#contact #outerWrapper #contentWrapper #content .address a {
	font-weight: normal;
	color: #333;
}
#contact #outerWrapper #ImageHolder img {
	margin: 0px;
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	overflow: hidden;
}
#newsindex #outerWrapper #contentWrapper #leftColumn1, #newsitem #outerWrapper #contentWrapper #leftColumn1 {
	padding-right: 10px;
	width: 200px;
	padding-left: 40px;
	padding-top: 0px;
}
#newsindex #outerWrapper #contentWrapper #content {
	margin-left: 280px;
	padding-right: 200px;
}
#newsitem #outerWrapper #contentWrapper #content {
	margin-left: 250px;
	margin-right: 200px;
	padding-right: 5px;
}
#newsindex #outerWrapper #contentWrapper #content p strong {
	color: #000;
}
#outerWrapper #contentWrapper #rightcolumn {
	float: right;
	padding-top: 0px;
	padding-right: 40px;
	padding-left: 20px;
	width: 140px;
}
#newsitem #outerWrapper #contentWrapper #rightcolumn p strong {
	color: #000;
}
#newsitem #outerWrapper #contentWrapper #rightcolumn p {
	margin: 0px;
	padding: 0px 0px 12px;
}
#outerWrapper #contentWrapper #rightcolumn h2 {
	font-size: 17px;
	font-weight: normal;
	text-transform: uppercase;
	padding-bottom: 6px;
	color: #4D4D4D;
}
#newsitem #outerWrapper #contentWrapper #content h2 {
	font-size: 17px;
	font-weight: bold;
	color: #000;
	line-height: normal;
}
#newsitem #outerWrapper #contentWrapper #content .date {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 10px;
}
#admin #outerWrapper #contentWrapper #widecontent th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: url(SiteImages/GroupNavBack.jpg) no-repeat right center;
	color: #FFF;
	padding: 5px;
	text-align: left;
}

#bros #outerWrapper #header {
	background: url(bros/siteimages/BrosHeaderBack.jpg) no-repeat bottom;
}
#bros #outerWrapper #topNavigation a, #ellery #outerWrapper #topNavigation a, #estates #outerWrapper #topNavigation a  {
	font-size: 10px;
	padding-right: 3px;
	padding-left: 3px;
	font-weight: normal;
}
#bros #outerWrapper #topNavigation {
	background: url(bros/siteimages/BrosNavBack.jpg);
	font-weight: bold;
	text-align: left;
	padding: 3px 0px 5px 40px;
}
#bros #outerWrapper #contentWrapper {
	background: #FAFAFA;
	margin: 0px;
	padding: 30px 0px;
}
#bros #outerWrapper #contentWrapper #leftColumn1,#ellery #outerWrapper #contentWrapper #leftColumn1, #estates #outerWrapper #contentWrapper #leftColumn1 {
	width: 400px;
	color: #000;
	margin: 0;
	padding-right: 35px;
	padding-left: 40px;
}
#bros #outerWrapper #contentWrapper #content, #ellery #outerWrapper #contentWrapper #content, #estates #outerWrapper #contentWrapper #content  {
	margin-left: 505px;
	padding-left: 30px;
	padding-top: 0px;
	margin-top: 0px;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #F0F0F0;
	margin-bottom: 0px;
}
#bros #outerWrapper #contentWrapper #content ul, #ellery #outerWrapper #contentWrapper #content ul, #estates #outerWrapper #contentWrapper #content ul {
	margin: 0px;
	padding: 0 0 0 12px;
}
#bros #outerWrapper #contentWrapper #content h2, #ellery #outerWrapper #contentWrapper #content h2 , #estates #outerWrapper #contentWrapper #content h2 {
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 12px;
	margin-top: 12px;
	padding: 0;
}
#bros #outerWrapper #contentWrapper #content ul li, #ellery #outerWrapper #contentWrapper #content ul li, #estates #outerWrapper #contentWrapper #content ul li {
	color: #000;
	margin: 0 0 10px 0;
}
#bros #outerWrapper #contentWrapper #content p strong, #ellery #outerWrapper #contentWrapper #content p strong, #estates #outerWrapper #contentWrapper #content p strong {
	color: #000;
}
#bros #outerWrapper #footer,#ellery #outerWrapper #footer, #ellery #outerWrapper #footer,#ellery #outerWrapper #footer, #estates #outerWrapper #footer,#ellery #outerWrapper #footer {
	background: url(SiteImages/FooterBack.png) no-repeat top;
	padding-bottom: 6px;
	padding-right: 130px;
	padding-top: 18px;
	height: 20px;
	clear: both;
}
#bros #outerWrapper #header p, #ellery #outerWrapper #header p, #estates #outerWrapper #header p {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	margin: 0;
	padding-right: 10px;
}
#outerWrapper #contentWrapper #widecontent {
	margin: 0px;
	padding: 0px 60px 30px 40px;
}
#outerWrapper #contentWrapper #widecontent .story h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #4C4C4C;
	margin-bottom: 14px;
}
#outerWrapper #contentWrapper #widecontent .story p {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 11px;
	line-height: normal;
	margin: 0px 0px 14px;
	padding: 0px;
	color: #000;
}
#outerWrapper #contentWrapper #widecontent .story {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #F0F0F0;
	margin: 0px;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper #widecontent .story img {
	float: right;
	margin-left: 65px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#contentWrapper #widecontent #bottom {
	border-style: none;
}
#bros #outerWrapper #contentWrapper #widecontent #bottom {
	border-style: none;
}
#bros #outerWrapper #contentWrapper #leftColumn2, #ellery #outerWrapper #contentWrapper #leftColumn2, #estates #outerWrapper #contentWrapper #leftColumn2, #contact #outerWrapper #contentWrapper #leftColumn2  {
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	float: left;
	margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 20px 10px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	color: #4C4C4C;
}
#bros #outerWrapper #contentWrapper #content2 , #ellery #outerWrapper #contentWrapper #content2, #estates #outerWrapper #contentWrapper #content2, #contact #outerWrapper #contentWrapper #content2{
	min-height: 300px;
	margin: 0px 0px 0px 248px;
	padding: 0px 250px 0px 0px;
}
#outerWrapper #contentWrapper #leftColumn1 .moreinfo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #4C4C4C;
	font-weight: bold;
}
#ellery #outerWrapper #header {
	background: url(Ellery/siteimages/ElleryHeaderBack.jpg) no-repeat bottom;
}
#ellery #outerWrapper #topNavigation {
	background: url(Ellery/siteimages/ElleryNavBack.jpg) no-repeat;
	font-weight: bold;
	text-align: left;
	padding: 3px 0px 5px 40px;
}#estates #outerWrapper #topNavigation {
	background: url(Estates/SiteImages/EstatesNavBack.jpg) no-repeat;
	font-weight: bold;
	text-align: left;
	padding: 3px 0px 5px 40px;
}
#ellery #outerWrapper #contentWrapper {
	background: #FFF;
}
#ellery #outerWrapper {
	width: 802px;
}
#ellery #outerWrapper #contentWrapper #leftColumn1 .integrating {
	color: #856C7A;
	font-size: 13px;
	font-style: italic;
	width: 200px;
}
#bros #outerWrapper #contentWrapper #content p, #ellery #outerWrapper #contentWrapper #content p  {
	margin: 0px 0px 14px;
	padding: 0px;
}
#estates #outerWrapper #contentWrapper {
	background: #FAFAFA;
}
#estates #outerWrapper #header {
	background: url(Estates/SiteImages/EstatesHeaderBack.jpg) no-repeat bottom;
}
#estates #outerWrapper #contentWrapper #leftColumn2 p {
	width: 150px;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Helvetica, sans-serif;
}
#estates #outerWrapper #contentWrapper #leftColumn1 p strong {
	color: #6B9332;
	font-size: 11px;
}
#estates #outerWrapper #contentWrapper #leftColumn1 h2 {
	color: #6B9332;
	font-size: 18px;
	margin: 0px;
	padding: 12px 0 5px;
}
#estates #outerWrapper #contentWrapper #leftColumn1 #visionlist {
	float: right;
	margin: 0px;
	padding: 0px;
	width: 220px;
}
#estates #outerWrapper #contentWrapper #leftColumn1 #visionlist li {
	margin-bottom: 20px;
}
#bros #outerWrapper #contentWrapper #content img {
	float: none;
	margin: 0px;
	padding: 0px;
}
#logo {
	float: left;
	margin-bottom: 12px;
}
#outerWrapper #contentWrapper #content2 p {
	margin: 0px;
	padding: 0px 0px 12px;
}
#outerWrapper #contentWrapper #content p {
	margin: 0px;
	padding: 0px 0px 12px;
}
#outerWrapper #footer p {
	margin: 0px;
	padding: 0px;
}
#newsindex #outerWrapper #header #topnav a, #index #outerWrapper #header #topnav a. #newsitem #outerWrapper #header #topnav a,. #contact #outerWrapper #header #topnav a {
	padding-right: 3px;
	padding-left: 3px;
}
#newsindex #outerWrapper #bottomnav, #index #outerWrapper #bottomnav, #newsitem #outerWrapper #bottomnav, #contact #outerWrapper #bottomnav  {
	font-weight: normal;
	margin-top: 12px;
}
#newsindex #outerWrapper #bottomnav a, #index #outerWrapper #bottomnav a, #newsitem #outerWrapper #bottomnav a, #contact #outerWrapper #bottomnav a {
	padding-right: 3px;
	padding-left: 3px;
}
#admin #outerWrapper #contentWrapper #widecontent h1 {
	font-size: 18px;
	font-weight: normal;
}
#admin #outerWrapper #contentWrapper label {
	float: left;
	display: block;
	width: 150px;
	font-size: 12px;
	text-align: right;
	margin-right: 15px;
	font-weight: bold;
}
#admin #outerWrapper #contentWrapper legend {
	font-size: 18px;
	font-weight: normal;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	margin: 5px;
	padding: 5px;
	background: #929395;
}
#admin #outerWrapper #contentWrapper fieldset {
	border: 1px solid #929395;
	margin: 10px;
	padding: 12px;
}
#admin #outerWrapper #contentWrapper input {
	border: 1px solid #929395;
	color: #666;
}
.date {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 10px;
}
#newsindex #outerWrapper #contentWrapper #content p {
}
#outerWrapper #contentWrapper #rightcolumn a {
	font-weight: normal;
}
#bros #outerWrapper #contentWrapper #content .latestnews, #ellery #outerWrapper #contentWrapper #content .latestnews, #estates #outerWrapper #contentWrapper #content .latestnews, #index #outerWrapper #contentWrapper #leftColumn1 .latestnews  {
	margin-top: 25px;

}

#index #outerWrapper #contentWrapper #leftColumn1 .homefeature {
	margin: 0px 0px 12px;
	padding: 0px 0px 18px;
	border-bottom: 1px solid #E6E6E6;
}

#newsnav a {
	font-size: 24px;
	color: #929397;
	font-weight: normal;
}
#bros #outerWrapper #contentWrapper #leftColumn1 img, #ellery #outerWrapper #contentWrapper #leftColumn1 img, #estates #outerWrapper #contentWrapper #leftColumn1 img  {
	margin: 0px 0px 17px;
	padding: 0px;
}
img {
	border-style: none;
}
#ellery #outerWrapper #contentWrapper #widecontent #bottom {
	border-bottom-style: none;
}
#outerWrapper #contentWrapper #widecontent #bottom .docdownload img {
	float: none;
	margin: 0px 15px 0px 0px;
	padding: 0px;
	vertical-align: middle;
}

