/* CSS Reset ("Learning Web Design," page 427) */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*************** End of CSS Reset **************/

/************************************************/
/* Styles for screens 0 - 649px */
/************************************************/

html
{
	font-size: 100%;																														/* Set in order to use "rem" units (Learning Web Design, page 237) */
}

body
{
	font-family: Georgia, Garamond, serif;
	color: #000;
	background-color: #9aa6b1;
}

#notice
{
	color: black;
}

#notice strong
{
	font-weight: bold;
}

/*img
{
	max-width: 100%;
}*/

/*img
{
	width: 320px;
	height: 320px;
}*/

img
{
	width: 320px;
	height: 205px;
}

#page-wrapper
{
 	max-width: 950px;
 	margin: auto;																															/* "auto" for left and right margins centers it */
	background: #fff;
}

/* Styles for header banner */
#header
{
	text-align: center;
	background-image: url(Images/pool_with_beach_balls.jpg);													/* Photo sized to 960 x 280 with Paint Shop */
}

#header h1
{
	margin-bottom: .5rem;
	font-size: 2rem;
	font-weight: bold;
	color: #cc0000;
}

#header h2
{
	font-size: 1.2rem;
	font-style: italic;
	color: #cc0000;
}

/* Styles for navigation */
#navigation
 {
	background-color: #cce6ff;
	overflow: hidden;																														/* Required since everything is floated in this element and there is nothing to keep the container open (Learning Web Design, page 351) */
	width: 100%;
}

#navigation ul
 {
	list-style-type:none;
	margin: 0 auto;
	padding: 0;
} 

li.current_page
{
	font-size: .7rem;
	font-weight: normal;
    text-transform: uppercase;
	text-decoration: none;
    color: #A03E19;
	background-color: #3399ff;
    float: left;
	padding: .5rem;
	border: 1px solid #708090;
	border-radius: .5rem;
	margin: .25rem;
}

a.nav
{
	font-size: .7rem;
	font-weight: normal;
    text-transform: uppercase;
	text-decoration: none;
    color: #fff;
	background-color: #3399ff;
    float: left;
	padding: .5rem;
	border: 1px solid #708090;
	border-radius: .5rem;
	margin: .25rem;
}

a.nav:link, a.nav:visited, a.nav:focus, a.nav:active
{
    color: #fff;
}

a.nav:hover
{
	color:#A03E19;
	transform: rotate(-5deg);																										/* Not sure why this rotates the border as well as the text as, at first, only the text rotated */
}

/* Styles for Content */

#content h1
{
	margin-bottom: .5rem;
	font-size: 2rem;
	font-weight: bold;
	color: #cc0000;
}

#content h2
{
	clear: both;																																/* Must clear the first element after a float so that the flow is normal again (Learning Web Design, page 347) */
	line-height: 125%;
	font-size: 1.5rem;
	font-weight: bold;
	color: blue;
	text-align: center;
	margin: 1rem 1rem;
}

a.external_link
{
	font-size: .7rem;
	font-weight: normal;
    text-transform: uppercase;
	text-decoration: none;
    color: #fff;
	background-color: #3399ff;
    float: left;
	padding: .5rem;
	border: 1px solid #708090;
	border-radius: .5rem;
	margin: .25rem;
}

a.external_link:link, a.external_link:visited, a.external_link:focus, a.external_link:active
{
    color: #fff;
}

a.external_link:hover
{
	color:#A03E19;
	transform: rotate(-5deg);																										/* Not sure why this rotates the border as well as the text as, at first, only the text rotated */
}

p.COVID_19_Plan_link_p
{
	text-align: left;
}

a.COVID_19_Plan_link_a
{
	text-decoration: none;
	color: #blue;
}

a.COVID_19_Plan_link_a:hover
{
	color: #339966;
}

#image_1
{
	display: block;																															/* Needed this in order to center the image */
	margin: auto;
}

p
{
	font-size: 1.2rem;
	margin: 1.5rem 1rem;
	text-align: justify;
}

#gem ul
{
  	list-style-type: none;
  	margin: 0;
  	padding: 0;
}

#gem ul li a
{
  	display: block;
	font-family: Impact, Arial, sans-serif;
	font-variant: small-caps;
	font-style: italic;
	text-align: center;
	text-decoration: none;
	letter-spacing: .15rem;
	font-size: 1.5rem;
	color: blue;
	text-shadow: 0 0 .5rem #6600cc;
	transition-property: font-size, color, text-shadow;
	transition-duration: 0.3s, 1s, 1s;
	transition-timing-function: ease, linear, linear;
}

#gem ul li a:hover
{
	font-size: 2rem;
	color: #6600cc;
	text-shadow: 0 0 .5rem blue;
}

#image_events
{
	display: block;																															/* Needed this in order to center the image */
	margin: 3rem;
	width: 695px;
	height: 900px;
}

#logo
{
	clear: both;
	margin-top: 1rem;
	padding: 2rem 0;
	background-image: url(Images/LVC_Logo_Small.gif);
	background-repeat: repeat-x;
}

#bottom_stuff
{
 	position: relative;
 	width: 100%;
 	margin: 0 auto;
	background: #fff;
}

/************************************************/
/* Styles for screens 650px and up */
/************************************************/

@media screen and (min-width: 650px)
{

#page-wrapper
{
 	position: relative;																													/* Need a wrapper set to "relative" so that elements contained in the wrapper can be set to "absolute" (Learning Web Design, page 360)*/
 	margin: 5px auto;																													/* "auto" for left and right margins centers it */
}

#header
{
	position: relative;																													/* Need a wrapper set to "relative" so that elements contained in the wrapper can be set to "absolute" (Learning Web Design, page 360)*/
	height: 280px;
	text-align: left;
}

#header h1
{
	position: absolute;
	top: 20%;
	left: 5%;
	font-size: 3.5rem;
}

#header h2
{
	position: absolute;
	top: 45%;
	left: 10%;
	font-size: 1.5rem;
}

#navigation ul
 {
	width: 81%;
} 

#content h1
{
	margin-bottom: .5rem;
	font-size: 2rem;
	font-weight: bold;
	color: #cc0000;
}

#content h2
{
	line-height: 200%;
	text-align: left;
}

#image_1
{
	float: right;
	margin: auto 1rem 2rem 1rem;
}

}



