body {
	font-family: "Avenir Next LT Pro Regular", Arial, Helvetica, sans-serif;
		
	position: absolute;
	top: 0;
	left: 0;
		
	}

	* {padding: 0px;}

.blue {
	color: #003874;
	}
	
.lightBlue {
	color: #99CAEA;
	}

.gold {
	color: #B49759;
	}
	
.black {
	color: #000000;
	}
		
.gray {
	color: #A9A8A9;
	}

.red {
	color: #ff0000;
}



.center {
	text-align: center;
}



/* BEGIN INDEX CSS */

div.header {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

div.headerImage {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

div.headerTitle {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

div.mainContainer-home {
	background-image: url("../images/beach.jpg");
	background-position: bottom;
	background-size: cover;
	padding-top: 10px;
	padding-bottom: 10px;
}

main {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	}

/* END INDEX CSS */



/* BEGIN HOME CSS*/

section {
	background: rgba(255,255,255,0.8);
	padding: 15px;
	border: 3px solid #B49759;
	border-radius: 15px;
}

/* END HOME CSS*/


div.nonRockaways {
	border: 1px solid #003874;
	border-radius: 5px;
	background-color: #dddd99;
	text-align: center;
	margin-bottom: 5px;
}

div.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	}

.flexCenter {
	justify-content: center;
	align-items: center;
	text-align: center;
}



div.column1 {
	width: 20%;
	min-width: 20%;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
	}

div.column2 {
	width: 80%;

	margin-left: 10px;
	margin-right: 10px;
	}
	
div.column3 {
	width: 20%;
	min-width: 20%;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
	}

img.column3Image {
	width: 100%;
	}

img.thumbnail {
	padding: 1px;
	border: 2px solid #B49759;
	border-radius: 10px;
}

img.thumbnail:hover {
	background-color: #B49759;
	border-color: #003874;
	cursor: pointer;
}



p {
	font-size: 1.2em;
}



h1, h2, h3 {
	color: #003874;
	text-align: center;
}

h1 {
	font-size: calc(1rem + 2vw);
}

h2 {
	font-size: calc(1rem + .5vw);
}



img.smallLogo {
	width: 1em;
}



pre {
	white-space: pre-wrap;
}



ul.centered, ol.centered {
  display: inline-block;
  text-align: left;
}



hr {color: #B49759;}



a {
	text-decoration: none;
	color: #B49759;
	border-bottom: 2px dotted #B49759;
}

a:hover {
	color: #ffffff;
	background-color: #B49759;
	}
	
a.externalLink::after {
  content: url('../images/icons/externalLink.png');
  display: inline-block;
  width: 12px;
  height: 12px;
}

a.block {
	width: 100%;
	display: block;
	text-align: center;
	color: #FFFFFF;
	background-color: #003874;
	border: 3px solid #003874;
	border-radius: 5px;
	text-decoration: none;
}

a.block:hover {
	color: #003874;
	background-color: #ffffff;
}

a.readMore {
	font-variant-caps: small-caps;
	}

a.readMore:hover {
	font-variant-caps: small-caps;
	}

a.noUnderline {
	border-bottom: 0px;
}



/* BEGIN PHOTO GALLERY CSS */

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style-type: none;
  padding: 0px;
}

.image-gallery > li {
  height: 40vh;
}

.image-gallery li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.image-gallery li img:hover {
	background-color: #B49759;
	border-color: #003874;
	cursor: pointer;
}	
	
#fullSizeImageDisplay {
	visibility: hidden;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,.9);
	display: flex;
	justify-content: center;
	align-items: center;
}

#fullSizeImageDisplay:hover {
	cursor: pointer;
}

#fullSizeImage {
	height: 95vh;
	}

/* END PHOTO GALLERY CSS */




@media (max-width: 800px) {



}


/* Responsive layout - makes a one column layout instead of a three-column layout */

@media (max-width: 800px) {
	
	

div.flex {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
  }
	
div.headerImage, div.headerTitle, div.details {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
	}
	
main {
	width: 95%;
}

div.column1 {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}

div.column2 {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}

div.column3 {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	}

img.column3Image {
	width: 50%;
	}



.image-gallery > li {
 
  width: 100%;
  height: auto;
}



#fullSizeImage {
	max-width: 90%;
	height: auto;
	max-height: 95vh;
	}


  
}


.centeredContent {
	max-width: 960px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.centeredContent p {
	text-align: justify;
}

header {width: 100vw;}