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

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFF url(../images/mainBg.gif) no-repeat fixed center top;
	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 */
	color: #333333;
}
h1 {
	font-size: 1em;
}
p {
	font-size: .7em;
	line-height: 1.5em;
	text-align: left;
}
p, h1, h2, h3, h4, h5 {
	margin: 0 0 10px 0;
	text-align: left;
}
a {
	color: #FF0099;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	padding:0 0 10px 0;
} 
.chicksOnRocks {
	background-image: url(../images/mainImage.jpg);
	background-repeat: no-repeat;
}
.chicks2 {
	background-image: url(../images/main/mainImage-2.jpg);
	background-repeat: no-repeat;
}
.chicks3 {
	background-image: url(../images/main/mainImage-3.jpg);
	background-repeat: no-repeat;
}
.chicks4 {
	background-image: url(../images/main/mainImage-4.jpg);
	background-repeat: no-repeat;
}
.chicks5 {
	background-image: url(../images/main/mainImage-5.jpg);
	background-repeat: no-repeat;
}
#top {
}
#bottom {
	height: 200px;
}
#nav {
	padding: 0px;
	background-color: #FFFFFF;
}
#nav ul {
	list-style-type: none;
	margin: 0;
	padding: 5px 10px 5px 20px;
    }
     
#nav ul.left {}
     
#nav ul.right {
    text-align: right ;
    }
     
#nav ul li {
	display: inline;
	padding: 5px 15px;
	font-size: 1em;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	background-color: #FFFFFF;
	
    } 
#nav a {
	text-decoration: none;
	color: #000000;
}
#nav  li a:hover {
	color: #ff0099;
}
.block {
	display: block;
	border-right-width: 4px;
	border-bottom-width: 4px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	padding: 0;
	width: 180px;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 260px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px;
	background-image: url(../images/happeningsBG.gif);
	background-repeat: no-repeat;
}
#sidebar1 h2 {
	font-size: .8em;
}
#mainContent {
	margin: 0 320px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 0 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainText {
	margin: 0;
}
#footer {
	padding: 0;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	color: #666666;
	text-decoration: none;
}
.pink {
	color: #ff0099;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
