@charset "utf-8";
body  {
	font: 100.1% Verdana, Arial, Helvetica, sans-serif;
	background: #2c667e url(../images/body-bg-gradient.jpg) repeat-y center;
	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: #000000;
}
/* TEXT ------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	}
h1 {
	font-size: 1.5em;
	color: #deb510;
	}
h2 {
	font-size: 1.3em;
	color: #deb510;
	}
h3 {
	margin-bottom: .2em;
	font-size: 1.1em;
	}
h4 {
	margin-bottom: 0;
	font-size: 1em;
	}
h5, h6 {
	font-size: 1em;
	}
p {
	font-size: .9em;
	}
quote {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: .9em;
	font-style: italic;
	color: #006666;
} 
/* LISTS ------------------------------------------------------ */
ul li {
	list-style-type: none;
	font-size: 1em;
	color: #efcc3e;
}
/* LINKS ------------------------------------------------------ */
#sidebar1 a {
	color: #244843;
	text-decoration: none;
}
#sidebar1 a:hover {
	color: #ffcc99;
	text-decoration: none;
	font-weight: bold;
}
/* IMAGES ----------------------------------------------------- */
img {
	border: none;
	}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/cont-bg-sand.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	
} 
#header {
	background: url(../images/croatia-water-200h.jpg) no-repeat left;
	padding: 0 0px 0 30px;
	height: 200px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 80px 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 2.5em;
	font-style: italic;
	color: #ffffff;
	text-decoration: none;
	text-align: left;
}
#header img {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 60px 0 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 2em;
	color: #FFFFFF;
	list-style-image: none;
	padding-top: 15px;
	margin-left: -25px;
}
#mainContent {
	margin: 2em 0 0 220px; /* the left margin on this div element creates the column down the left 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: 0 30px 0 20px;
} 
#mainContent img {
	float: right;
	margin-left: 1em;
	margin-bottom: 1em;
	margin-right: 1em;
} 
#footer {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-style: italic;
	padding: 6px;
	bottom: auto;
	text-align: center;
	background-color: #FFCC66;
	border-top-width: medium;
	border-top-style: double;
	border-top-color: #FFFF66;
	margin-top: 0em;
}
.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;
}
