/* 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 - 889px */
/************************************************/

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;
}

img
{
	max-width: 100%;
}

#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 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: 200%;
	font-size: 2.5rem;
	font-weight: bold;
	color: blue;
	margin: 1rem 1rem;
}

h3
{
	font-size: 1.2rem;
	text-transform: uppercase;
	color: #A03E19;
	text-align: center;
	margin: 1rem auto .5rem;
}

h4
{
	font-size: .9rem;
	text-transform: uppercase;
	color: #A03E19;
	text-align: left;
	margin: 1rem 2rem .5rem;
}

p
{
	margin: .5rem 1rem;
	text-align: left;
}

#general
{
	margin: auto 1rem 1rem 1rem;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #80bfff;
}

#general ul
{
	list-style: disc inside;
	margin: .5rem 1rem;
}

#general ul li
{
	margin: 1rem 1rem;
}

#image_1
{
	display: block;
	margin: 2rem auto;
}

#dogs
{
	margin: auto 1rem 1rem 1rem;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #80bfff;
}

#dogs h4
{
	font-size: .9rem;
	text-transform: none;
	color: #A03E19;
	text-align: center;
	margin: 0 2rem .5rem;
}

#forms
{
	margin: auto 1rem 1rem 1rem;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #8cd9b3;
}

p.lakeview_club_rules_p
{
	text-align: center;
}

a.lakeview_club_rules_a
{
	text-decoration: none;
	color: #ff0000;
}

a.lakeview_club_rules_a:hover
{
	color: #339966;
}

#pool
{
	margin: auto 1rem 1rem 1rem;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #80bfff;
}

#pool ul
{
	list-style: disc inside;
	margin: .5rem 1rem;
}

#pool ul li
{
	margin: 1rem 1rem;
}

#logo
{
	clear: both;
	padding: 2rem 0;
	background-image: url(Images/LVC_Logo_Small.gif);
	background-repeat: repeat-x;
}

#bottom_stuff
{
 	position: relative;
 	width: 950px;
 	margin: 0 auto;
	background: #fff;
}

/************************************************/
/* Styles for screens 890px and up */
/************************************************/

@media screen and (min-width: 890px)
{

#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 h2
{
	line-height: 200%;
	text-align: left;
}

h3
{
	font-size: 1.2rem;
	text-transform: uppercase;
	color: #A03E19;
	text-align: center;
	margin: 1rem auto .5rem;
}

h4
{
	font-size: .9rem;
	text-transform: uppercase;
	color: #A03E19;
	text-align: left;
	margin: 1rem 2rem .5rem;
}

p
{
	margin: .5rem 1rem;
	text-align: left;
}

#opening p
{
	font-size: 1.2rem;
	margin: 1.5rem 1rem;
	text-align: justify;
}

#general
{
	float: left;
	width: 27.8%;
	margin: 2rem 1.5% 2rem 3%;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #80bfff;
}

#general ul
{
	list-style: disc inside;
	margin: .5rem 1rem;
}

#general ul li
{
	margin: 1rem 1rem;
}

#image_1
{
	float: left;
	margin: 2rem 0 0 4%;
}

#dogs
{
	float: left;
	width: 60%;
	margin: 2rem 1.5% 0 3%;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #80bfff;
}

#forms
{
	float: left;
	width: 60%;
	margin: 2rem 1.5% 0 3%;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #8cd9b3;
}

p.lakeview_club_rules_p
{
	text-align: center;
}

a.lakeview_club_rules_a
{
	text-decoration: none;
	color: #ff0000;
}

a.lakeview_club_rules_a:hover
{
	color: #339966;
}

p.lakeview_club_rules_p
{
	text-align: center;
}

a.lakeview_club_rules_a
{
	text-decoration: none;
	color: #ff0000;
}

a.lakeview_club_rules_a:hover
{
	color: #339966;
}

#pool
{
	float: left;
	width: 60%;
	margin: 2rem 1.5% 0 3%;
	line-height: 1.5rem;
	border-radius: 20px;
	background: #80bfff;
}

#pool ul
{
	list-style: disc inside;
	margin: .5rem 1rem;
}

#pool ul li
{
	margin: 1rem 1rem;
}

}
