@charset "utf-8";
/* Mobile Layout: 480px and below is the default.  Tablet and Desktop layouts are at the bottom of this file. */
body {
	font: 90%/1.2 Verdana, Arial, Helvetica, sans-serif;
	background-color: #193B35;
	margin: 0;
	padding: 0;
	color: #000;
}
img { max-width: 100%; }
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, 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: 0.7em;
	padding-left: 0.7em; /* 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. */
}
h1, h2, h3, h4, h5, h6 { color: #193B35; }
a img { border: none; }

a:link {
	color: #096;
	text-decoration: underline;
}
a:visited {
	color: #096;
	text-decoration: underline;
}
a:hover, a:active, a:focus { color: #193B35; }
.container {
	width: 100%;
	max-width: 960px;
	min-width: 360px;
	margin: 0 auto;
}
header { margin: 0 0 -60px 0; }
header img { display: block; }
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element 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 block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element'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 blocks 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 left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
#MainContent {
	background-color: #193B35;
}
.sidebar1 {
	float: left;
	width: 13%;
	margin: 0;
}
.content {
	width: 87%;
	float: right;
	background: #FFC url(../_images/Cork.jpg) repeat;
}
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
.ErrorBox {
	display: block;
	padding: 5px;
	background-color: #F00;
	color: #000;
	margin-top: 0.7em;
	font-weight: bold;
	font-size: 150%;
	text-align: center;
}
.TwoColHolder {
	width: 95%;
	display: block;
	margin: 0.7em auto;
}
.SiteReason, .UpcomingEvents {
	padding: 5px;
	border-radius: 15px;
	margin-bottom: 0.7em;
	min-height: 115px;
	-moz-box-shadow: inset 0 0 20px #000000;
	-webkit-box-shadow: inset 0 0 20px #000000;
	box-shadow: inset 0 0 20px #000000;
}
.SiteReason {
	float: left;
	background-color: #FFF;
	color: #000;
	margin-right: 0.25em;
}
.SiteReason p { margin: 0.7em 0; }
.UpcomingEvents {
	float: right;
	background-color: #FCF0AD;
	color: #000;
}
.SiteReason h2,
.UpcomingEvents h2 {
	text-align: center;
	margin-top: 0.2em;
	margin-bottom: 0.3em;
}
.SiteReason h4,
.UpcomingEvents h4 { margin-top: 1em; }
.SiteReason ul,
.UpcomingEvents ul { padding-bottom: 0; }
.SiteReason ul li,
.UpcomingEvents ul li { margin-bottom: 0.4em; }
.ContentSection,
.ContentSectionNotes {
	width: 95%;
	display: block;
	margin: 0.7em auto;
	background-color: #EEE;
	clear: both;
	padding-bottom: 3px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	-moz-box-shadow: inset 0 0 20px #000000;
	-webkit-box-shadow: inset 0 0 20px #000000;
	box-shadow: inset 0 0 20px #000000;
	overflow: auto;
}
.ContentSection div.ImgHldr {
	max-width: 95%;
	margin: 0 auto;
	margin-top: 0.7em;
	text-align: center;
}
.ContentSectionNotes div.ClearCorner {
	float: right;
	clear: right;
	width: 40px;
	height: 80px;
	background: none;
}

.ContentSection h3,
.ContentSectionNotes h3 {
	display: block;
	background-color: #193B35;
	color: #FFC;
	text-align: center;
	padding: 3px 5px 5px 5px;
	margin-bottom: 5px;
}
.ContentSection p,
.ContentSectionNotes p,
.ContentSection h4,
.ContentSectionNotes h4,
.ContentSection ul,
.ContentSectionNotes ul { margin: 0 5px; }
.ContentSection ul li { margin-bottom: 0.5em; }
.UpcomingEvents h4,
.ContentSection h4,
.ContentSectionNotes h4 {
	margin-top: 15px;
	margin-bottom: 0;
}
.ContentSection p,
.ContentSectionNotes p { margin-bottom: 0.6em; }
.ContentSectionNotes h4.FirstHead,
.ContentSection h4.FirstHead { margin-top: 0; }
.ContentSection span.NewsSubHead {
	font-weight: bold;
	color: #193B35;
}
.ContentSection table {
	font-size: 0.85em;
}
.ContentSection caption {
	font-size: 1.25em;
	font-weight: bold;
	color: #193B35;
}
.ContentSection table.FltMid {
	width: 95%;
	margin: 1em auto;
}
.ContentSection table th { text-align: left; }
.ContentSection table#Approvals img {
	cursor: pointer;
}
.ContentSection img.topright {
	max-width: 20%;
	float: right;
	margin: 0 1em 1em 0.5em;
}
.HalfLeft,
.HalfRight {
	width: 49%;
	clear: none;
	font-size: 0.85em;
	margin-bottom: 0.25em;
}
.HalfLeft img,
.HalfRight img {
	max-width: 40%;
	float: right;
	margin: 0 1em 1em 0.5em;
}
.HalfLeft ul,
.HalfRight ul {
	list-style: none;
	margin-left:1em;
	padding:0 1em 0.2em 0;
}
.HalfLeft ul li,
.HalfRight ul li {
	margin-left:0;
	padding-left:0;
}
.HalfLeft {
	clear: left;
	float: left;
}
.HalfRight {
	clear: right;
	float: right;
}
.ContentSection div.gsc-control-cse {
	background: none;
	border: none;
	padding-top: 0;
}
.ContentSection div.gsc-control-cse td#gs_tti50 { margin-top: 2em; }
.ContentSection table#gs_id50 {
	margin: 0;
}
.AdminTools {
	font-style: italic;
	text-align: right;
}
#map-canvas {
  margin: 0 1em 1em 1em;
  padding: 0;
  height: 40em;
}
#dialog table { margin: 0 auto; }
#dialog table tr th,
#dialog table tr td { font-size: 0.8em; white-space: nowrap; }
#dialog table tr th { text-align: left; }
#dialog table tr td { padding-right: 1em; }
#dialog table tr th.TblHdrRow {
	background-color: #000;
	color: #FFF;
	font-weight: bold;
	font-size: 120%;
	text-align: center;
}


.ContentSection div.ImgThumbs {
	padding: 0.5em 0 0.5em 0.8em;
}
.ContentSection div.ImgThumbs img {
    cursor:url(/_images/Enlarge.cur), -moz-zoom-in;
	float: left;
	margin: 0 0.25em 2em 0.25em;
}
.ContentSection table.Security {
	border-top: none;
	font-size: 75%;
}
.ContentSection table.Roomy {
	margin: 0 1em 0.5em 1em;
	float: right;
	border-color:  #193B35;
}
.ContentSection table.Security caption,
.ContentSection table.Roomy caption {
	font-weight: bold;
	font-size: 1.3em;
	background-color: #193B35;
	color: #FFC;
	padding: 0.5em 0;
	letter-spacing: 0.2em;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.ContentSection table.Security caption { cursor: pointer; }
.ContentSection table.Roomy tr th,
.ContentSection table.Roomy tr td {
	padding: 0.5em 1em;
	white-space: nowrap;
}
.ContentSection table.Security caption span.ShowFullTableNotice,
.ContentSection table.Security caption span.HideFullTableNotice {
	font-weight: normal;
	font-size: 0.9em;
	font-style: italic;
	color: #F00;
	letter-spacing: 0;
	padding-left: 2em;
}
.ContentSection table.Security caption span.HideFullTableNotice { display: none; }
.ContentSection table.Security tbody td { vertical-align: top; }
.ContentSection table.LeftPaddedTable tr th,
.ContentSection table.LeftPaddedTable tr td {
	margin: 0;
	padding: 0.25em 0.5em;
	vertical-align: text-bottom;
}
.ContentSection table.LeftPaddedTable tr td input[type="checkbox"] {
	margin: 0 0 0 0.25em;
}

/* *************  Covenants, Restrictions, etc. legal document styling ****************** */
.DocTitle {
	text-align: center;
}
.CovPgrph {
	text-indent: 2em;
}
.CovExtraInd { text-indent: 4em; }
.CovAllInd { padding-left: 2.7em; }
.CovSection {
	text-align: center;
	text-decoration: underline;
}
.UndLn { text-decoration: underline; }

/* ~~ Navigation ~~ */
nav ul{
	list-style: none;
	border-top: 2px solid #09C;
}
nav li {
	border-bottom: 2px solid #09C;
	position: relative;
	z-index: 101;
}
nav ul li a {
	display: block;
	text-decoration: none;
	font-weight: bold;
}
nav ul li a:link,
nav ul li a:visited {
	background-color: #193B35;
	color: #FFC;
	text-decoration: none;
}
nav ul li a:hover,
nav ul li a:active,
nav ul li a:focus {
	background-color: #FFC;
	color: #193B35;
	text-decoration: none;
}
nav ul li.Members a:hover,
nav ul li.Members a:active,
nav ul li.Members a:focus {
	background-color: #c97b3b;
	color: #FFF;
}
nav ul li.Admin a:hover,
nav ul li.Admin a:active,
nav ul li.Admin a:focus {
	background-color: #F30;
	color: #000;
}
nav li.NavDivide {
	height: 0.3em;
	padding: 0;
	background-color: #FFC;
}

/* ~~ The footer ~~ */
footer {
	padding: 0.7em 0 0.7em 0;
	background-color: #193B35;
	color: #FFF;
	font-size: 85%;
	text-align: center;
	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 */
}
footer #google_translate_element {
	background-color: #FFF;
	width: 100%;
	margin: 0 auto;
}

/* ~~ 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 block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*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;
}


.sidebar1 { padding: 55px 0 0 0; position:relative; z-index:1; }
.content { padding: 60px 0 0.7em 0; }
nav ul li a {
	padding: 0.5em 5px 0.5em 5px;
	font-size: 65%;
}
.SiteReason, .UpcomingEvents { width: 45%; }

hr {
    border: none;
    height: 3px;
	background-color: #193B35;
}

.RedNotice {
	font-weight: bold;
	color: #F00;
}
.RedNotice a:link,
.RedNotice a:active,
.RedNotice a:hover,
.RedNotice a:visited { color: #F00; }

.GreenNotice {
	font-weight: normal;
	font-style: italic;
	color: #193B35;
}
.GreenNotice a:link,
.GreenNotice a:active,
.GreenNotice a:hover,
.GreenNotice a:visited { color: #193B35; }

.MoreBotMargin { margin-bottom: 0.9em; }

/*  Contact Form Styles (Mobile Version and non-specific) */
fieldset { border: none; }
form.ContactForm {
	width: 900px;
	max-width: 100%;
    overflow: hidden;
}
form.ContactForm input[type=text],
form.ContactForm input[type=password],
form.ContactForm textarea,
form.ContactForm select {
	color: #193B35;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	border: none;
	-moz-box-shadow: inset 0 0 15px #193B35;
	-webkit-box-shadow: inset 0 0 15px #193B35;
	box-shadow: inset 0 0 15px #193B35;
	padding: 2px 15px 0px 15px;
}
form.ContactForm input[type=text],
form.ContactForm input[type=password],
form.ContactForm textarea {
	background: #FFF;
}
form.ContactForm input[type=text],
form.ContactForm input[type=password] {
	height: 35px;
	width: 91%;
}
form.ContactForm select {
	padding: 3px 0.7em;
	background: #FFF;
	height: 35px;
}
form.ContactForm textarea { padding-top: 0.7em; }
form.ContactForm span.TxtNtry {
    display: block;
    overflow: hidden;
    padding-right:0.7em;
}
form.ContactForm label {
	float: none;
	display: block;
}
form.ContactForm div.FormField {
	margin: 0 0 0.7em 0;
	clear: both;
	width: 100%;
}
form.ContactForm div.CheckField {
	margin: 0 3em 0.6em 0;
	float: left;
}
form.ContactForm div.CheckField label {
	float: left;
}
form.ContactForm div.CheckField input[type="checkbox"] {
	float: left;
	margin-right: 0.2em;
}
form.ContactForm span.Rqrd {
	font-weight: bold;
	font-size: 0.8em;
	color: #F00;
}
form.ContactForm span.NoUse {
	font-weight: normal;
	font-style: italic;
	font-size: 0.75em;
	color: #F00;
}
form.ContactForm textarea { width: 88%;	}

select option.BoardMeet {
	background-color: #193B35;
	color: #FFF;
	font-weight: bold;
}
form.ContactForm input[type=text].DateEnter { width: 13em; }
form.ContactForm label.GoInline { float: none; }
form.ContactForm span.ui-btn-text { display: none; }

form.ContactForm span.FormExtraInfoNote {
	font-style:italic;
	font-size: 90%;
	color: #193B35;
}
form.ContactForm span.FormExtraInfoNote a:link,
form.ContactForm span.FormExtraInfoNote a:active {
	color: #39B436;
}
form.ContactForm span.FormExtraInfoNote a:hover,
form.ContactForm span.FormExtraInfoNote a:visited {
	color: #193B35;
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
	.sidebar1 { padding: 50px 0 0 0; }
	.content { padding: 55px 0 0.7em 0; }
	nav ul li a {
		padding: 0.5em 5px 0.5em 15px;
		font-size: 72%;
	}
	.SiteReason, .UpcomingEvents { width: 46%; }
	
	/* Security Patrol Table Font Size */
	.ContentSection table.Security { font-size: 85%; }

	/*  Contact Form Styles (Mobile Version and non-specific) */
	form.ContactForm input[type=text],
	form.ContactForm input[type=password],
	form.ContactForm textarea {
		width: 95%;
	}
	form.ContactForm label {
		float: left;
		margin-right: 0.7em;
	}
	form.ContactForm div.FormField { margin: 0 0 20px 0; }
	form.ContactForm label.Higher { line-height: 35px; }
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	.sidebar1 { padding: 45px 0 0 0; }
	.content { padding: 60px 0 0.7em 0; }
	nav ul li a {
		padding: 0.5em 5px 0.5em 15px;
		font-size: 0.85em;
	}
	.SiteReason, .UpcomingEvents { width: 48%; }

	/* Security Patrol Table Font Size */
	.ContentSection table.Security { font-size: 95%; }


	/*  Contact Form Styles (Mobile Version and non-specific) */
	form.ContactForm input[type=text],
	form.ContactForm input[type=password],
	form.ContactForm textarea {
		width: 95%;
	}
	form.ContactForm label {
		float: left;
		margin-right: 0.7em;
	}
	form.ContactForm div.FormField { margin: 0 0 20px 0; }
	form.ContactForm label.Higher { line-height: 35px; }
}