@charset "utf-8";
/* CSS Document */

.clickSpinner {
    background-image: url(/content-community/images/clickspinner.gif);
}
body {
    background-color: #cfcfcf;
    background-image: url("/content-community/images/BG_ArchControls.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    font-family:Verdana, Geneva, sans-serif;
    font-size: 12px;
    mallrgin: 0;
}

/* ~~ 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;
}
h1, h2, h4, h5, h6, {
	margin-top: -10px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	}
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;
}

p {
	font-size:12px;
	font-family:Verdana, Geneva, sans-serif;
	color:#333;
	padding-right: 5px;
}

h3 {
	font-size: 16px;
	font-family:Verdana, Geneva, sans-serif;
	color:#333;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
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: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
    position: relative;
	width: 980px;
	background-image:url("/content-community/images/MainCentreBG.png");
	background-repeat:repeat;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
#header {
	height: 195px;
    position: relative;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/

.content {
	position: relative;
	padding: 10px 0;
	width: 100%;

}
.sidebar2 {
	float: left;
	width: 180px;
	background: #EADCAE;
	padding: 10px 0;
}


#menu {
    display: none;
    height: 33px;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    position: absolute;
    width: 412px;
	z-index: 3;
    bottom: -10px;
    right: 10px;
}
#menu span {
    display: none;
    position: absolute;
}
#menu a {
    display: block;
    outline-color: -moz-use-text-color;
    outline-style: none;
    outline-width: medium;
    text-indent: -900%;
}
#menu a:hover {
    background-position: right bottom;
}
#menu a:hover span {
    display: none;
}
#menu li {
    float: left;
    height: 33px;
    margin: 0;
    position: relative;
}
#menu li a {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: transparent;
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto auto;
    height: 33px;
    top: 5px;
    display: block;
}
#menu .home {
	background-image: url("/content-community/images/NavRoll_01.png");
	/*left: 144px;*/
	width: 81px;
}

#menu .builders {
	background-image: url("/content-community/images/NavRoll_02.png");
/*	left: 225px;*/
	width: 116px;
}
#menu .aboutus {
	background-image: url("/content-community/images/NavRoll_03.png");
/*	left: 341px;*/
	width: 120px;
}
#menu .contact {
	background-image: url("/content-community/images/NavRoll_04.png");
/*	left: 461px;*/
	width: 95px;
}


#menu .homeActive {
    background-image: url("/content-community/images/Nav_01.png");
}
#menu .buildersActive {
    background-image: url("/content-community/images/Nav_02.png");
}
#menu .aboutusActive {
    background-image: url("/content-community/images/Nav_03.png");
}
#menu .contactActive {
    background-image: url("/content-community/images/Nav_04.png");
}

#logo {
	width: 450px;
	height: 86px;
	margin-left: 10px;
	padding-top: 10px;
    position: absolute;
    top: 56px;
    left: 43px;
}

/*~~ Logo Banner Style ~~ */
#logobanner {
    position: relative;
/*
	width:100%;
    height: 140px;
    margin-bottom: 10px;
    background-image: url("/content-community/images/logobanner.jpg");
*/
    background-image:url("/content-community/images/community_bannerbar.png");
    width:980px;
    height: 61px;
    margin-top: -1px;
    margin-bottom: 10px;
}


#linkBanner {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 10px;

}

#navMenu{
    list-style:none;
    font-weight:bold;
    margin: 0;
    padding: 0;
    margin-bottom:10px;
    margin-left: 7px;
    /* Clear floats */
    float:left;
    width:100%;


    position:relative;
    z-index:5;

}
#navMenu li{
    float:left;
    margin-right:4px;
    position:relative;
}
#navMenu ul{
    background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position:absolute;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#navMenu ul li{
    padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float:none;
}
#navMenu ul a{
    white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#navMenu li:hover ul{ /* Display the dropdown on hover */
    left:0; /* Bring back on-screen when needed */
    width: 100%;
}
#navMenu li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */

    text-decoration:underline;
}
#navMenu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
}
#navMenu li:hover ul li a {
    background-color: white;
    display:block;
    color:grey;
    font-family:arial;
    font-size:22px;
    font-weight:bold;
    padding:10px 13px;
    text-decoration:none;
    margin-top: 1px;
    margin-left: 3px;

}
#navMenu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background:#333;
}
/*
    background: #5f6975; border-radius: 0px; padding: 0;
    position: absolute; top: 100%;
}
#linkBanner  ul ul li {
    float: none;
    border-top: 1px solid #6b727c;
    border-bottom: 1px solid #575f6a;
    position: relative;
}
#linkBanner  ul ul li a {
    padding: 15px 40px;
    color: #fff;
}
#linkBanner  ul ul li a:hover {
    background: #4b545f;
}
*/
a.linkBannerButton {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e8e8e8), color-stop(1, #c9c5c9) );
    background:-moz-linear-gradient( center top, #e8e8e8 5%, #c9c5c9 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#c9c5c9');
    background-color:#e8e8e8;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    border:1px solid #aba6ab;
    display:block;
    color:#4c4c4e;
    font-family:arial;
    font-size:22px;
    font-weight:bold;
    padding:10px 13px;
    text-decoration:none;
    text-shadow:1px 1px 0px #ffffff;
}
a.linkBannerButton:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c9c5c9), color-stop(1, #e8e8e8) );
    background:-moz-linear-gradient( center top, #c9c5c9 5%, #e8e8e8 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9c5c9', endColorstr='#e8e8e8');
    background-color:#c9c5c9;
}
a.linkBannerButton:active {
    position:relative;
    top:1px;
}

ul.phaseMenu li {
    width: 200px;
}


#leftbox{
	width: 300px;
	min-height: 300px;
	float:left;
	margin-top: 15px;
	margin-left: 15px;
}

#middlebox{	
	width: 305px;
	height: 300px;
	float:left;
	margin-left: 10px;
	margin-top: 15px;
	
}

#rightbox{
/*	width: 319px;
	height: 300px;*/
	float:left;
	margin-left: 7px;
	margin-top: 15px;
}



/* ~~ The footer styles ~~ */
.footer {
	background-image:url("/content-community/images/footerbg.png");
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	width: 100%;
	height: 36px;
    margin-top: 25px;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.communityholder {
    position: relative;
    width: 100%;
    text-align: center;

    padding-top: 5px;
}
.communityselect {
    display: inline-block;
}

#loginbox {
    position: absolute;
    width: 290px;
    height: 150px;
    right: 8px;
    top: 2px;

}
#loginbox2 {
    position: relative;
    width: 290px;
    display: block;
    height: auto;
    margin: 12px 0;

}

#loginbox .separate
{
    position: relative;
    float: right;
    margin-top: 6px;
    overflow: auto;
    width: 100%;
    text-align: right;
}
#loginbox2 .separate {
    position: relative;
}

#loginbox2 .separate label {
    width: 140px;
    display: inline-block;
}

#loginbox .separate input {
    float: right;
}
#loginbox .separate input[type="text"],
#loginbox2 .separate input[type="text"],
#loginbox .separate input[type="password"],
#loginbox2 .separate input[type="password"]
{
    width: 140px;
}
#loginbox2 .separate input[type="submit"]
{
    margin-left: 142px;
}


#loginbox .loginErrorMessage,
#loginbox2 .loginErrorMessage
{
    color: red;
}

img.olTileImage {
    cursor: pointer;
}

.olMapViewport {

}

.linkButton {
    display:inline;
    background:none!important;
    border:none;
    padding:0!important;

    /*optional*/
    text-decoration:underline;
    cursor:pointer;

}

#communitymap {
    position: relative;
    width: 620px;
    height: 365px;
    /*background-color: #F2F9EB;*/
    margin: 0 auto;

}

#map {
    position: relative;
    width: 620px;
    height: 365px;
    background: url("/content-community/images/maploader.gif") no-repeat center;
}

#titleBox {
    position: relative;

}
.blurb {
    padding-right: 30px;
    text-align: left;
}