@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato 400');

/* At the bottom, There are specific text sizes for mobile, tablets, and desktop sizes */


body {
	background-color: #fff;
	margin: 0;
}


img {
    width: 100%;
    height: auto;
}

 picture {
	 display: block;
	 width: 100%;
	 }
p {
	font-family: 'Lato 400', sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 22px;
	text-align: left;
	margin: 0;
}
h1 {
	font-family: 'Lato 400', sans-serif;
	font-size: 30px;
	font-weight: 300;
	line-height: normal;
	color: #1f55a1;
	padding: 0px;
	margin: 0px;
	text-align: center;
}

h2 {
	font-family: 'Lato 400', sans-serif;
	font-size: 24px;
	font-weight: 300;
	line-height: normal;
	color: #000000;
	padding-top: 10px;
	margin: 0px;
	text-align: center;
}

ul {
	margin: 0px;
}

li {
	display: list-item;
	font-family: 'Lato 400', sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 22px;
	margin: 0;
}

a:link {
	font-family: 'Lato 400', sans-serif;
	font-size: 16px;
	color: #0D367F;
	text-decoration: none;
	line-height: 22px;
}

a:visited {
	font-family: 'Lato 400', sans-serif;
	font-size: 16px;
	color: #0D367F;
	text-decoration: none;
	line-height: 22px;
}

a:hover {
	font-family: 'Lato 400', sans-serif;
	font-size: 16px;
	color: #000000;
	text-decoration: underline;
	cursor: pointer;
	line-height: 22px;
}



#footer p{
	font-family: 'Lato 400', sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #ffffff;
	text-align: center;
}

#footer a:link {
	font-family: 'Lato 400', sans-serif;
	font-size: 12px;
	color: #7DAED3;
	text-decoration: none;
	line-height: 18px;
}
#footer a:visited {
	font-family: 'Lato 400', sans-serif;
	font-size: 12px;
	color: #7DAED3;
	text-decoration: none;
	line-height: 18px;
}
#footer a:hover {
	font-family: 'Lato 400', sans-serif;
	font-size: 12px;
	color: #141c46;
	text-decoration: underline;
	cursor: pointer;
	line-height: 18px;
}

/* comment out begins
#container::after {
	content: "";
	background-image: url(../images/pool-background.jpg);
	background-repeat: no-repeat;
	opacity: 0.3;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: -1;
	background-position: center top;
}

comment out ends */

img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
  img.bg {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

#content {
	-webkit-box-shadow: 2px 2px 12px 4px rgba(0,0,0,0.59);
-moz-box-shadow: 2px 2px 12px 4px rgba(0,0,0,0.59);
box-shadow: 2px 2px 12px 4px rgba(0,0,0,0.59);
}



/* Mobile Layout: 480px and below. */

@media only screen and (min-width: 1px) {
	
	h1 {
	font-size: 24px;
	text-align: left;
}

h2 {
	font-size: 20px;
	text-align: left;

}

}

/* Desktop & Tablet Layout: 769px to a max of 1366px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 481px) {
	h1 {
	font-size: 30px;
	text-align: center;
}

h2 {
	font-size: 24px;
	text-align: center;

}

