@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-image: url("images/anna-maria-beach-cottages.jpg");
	background-repeat: repeat;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 118%;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
.beach{
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-image:url(images/anna-maria-beach-cottages_bg.jpg);
	background-repeat:no-repeat;
	height: 597px;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.3em;
	margin: 0px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
h3 {
	font-size: 1.1em;
	color: #106CB7;
	font-weight: bold;
	margin: 20px 0 0 0;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #106CB7;
  text-decoration: underline;
  font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
  color: #106CB7;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #999;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #106CB7;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #106CB7;
  text-decoration: underline;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 960px;
}

#outerWrapper #topNavigation {
  height: 15px;
  margin: 0;
  padding: 20px 25px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation ul {
list-style: none;
padding: 0;
margin: 0;
} 
#outerWrapper #topNavigation li {
float: right;
margin: 0 0 0 2.5em;
font-size:1.05em;
font-weight:bold;
}
#outerWrapper #topNavigation li a.nav, a.nav:link {
	color:#000000;
	text-decoration: none;
	font-weight:bold;
}
/* Sets the style for links on mouseover. */
#outerWrapper #topNavigation li a.nav:visited {
	color:#000000;
	text-decoration: none;
	font-weight:bold;
}
#outerWrapper #topNavigation li a.nav:hover {
  color:#000000;
  text-decoration: underline;
  font-weight: bold;
}
#outerWrapper #topNavigation li a.nav:focus {
	color:#000000;
	text-decoration: none;
	font-weight:bold;
}

#outerWrapper #contentWrapper {
  background-image: url("images/scrapbook-units.jpg");
  background-repeat: no-repeat;
  height: 670px;
  clear:right;
}
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	padding: 5px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: .8em;
	clear: both;
}
a.footerNav,  a.footerNav:link {
	color: #000;
	text-decoration: underline;
	font-weight: normal;
}
/* Sets the style for links on mouseover. */
a.footerNav:visted {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
}
a.footerNav:hover {
  color: #000;
  font-weight:bold;
  text-decoration: underline;
}
a.footerNav:focus {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
}