/* CSS Document */
/* GENERAL PAGE STYLES */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000000;
	background-color: #A29B89;
	margin-top: 20px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	background-image: url(topbg.png);
	background-repeat: repeat-x;
}

/*  ID ELEMENTS */

/*  CONTAINER wraps the page */
#page {
	padding: 0px;
	width: 750px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
}
/* HEADER with logo and background image */
#header {
	background-color: #FFFFFF;
	background-image: url(head_bg.png);
	background-repeat: no-repeat;
	background-position: right top;
}

/* NAVIGATION block and link styles */

#navi {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #4d6185;
	font-weight: bold;
	background-color: #FFFFFF;
}

#navi ul {
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}
#navi li {
	display: inline;
	margin-right: 20px;
}

#navi a {
	color: #4d6185;
	text-decoration: none;
	padding: 2px 2px 0px 2px;
}

#navi a:link {
	color: #4d6185;
}
#navi a:visited {
	color: #4d6185;
}
#navi a:hover {
	color: white;
 	background-color: #A29B89;
}
#navi a:active {
	color: #4D6185;
}


/* DIV spacer line - under the navi elements */
#navibottom {
	padding: 5px;
	background-color: #a29b89;
}

/* CONTENT block */
#content {
	background-color: #FFFFFF;
	background-image: url(top_c_bg.png);
	background-repeat: repeat-x;
	background-position: top;
	padding: 15px 5px 5px 15px;
}

/* FOOTER block */

#footer {
	background-color: #FFFFFF;
	background-image: url(bottombg.png);
	background-repeat: repeat-x;
	background-position: bottom;
	padding: 10px;
	font-size: 0.8em;
	color: #333333;
	text-align: center;
}

/* OTHER elements */

h1, h2, h3, h4 {
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	color: #4D6185;
	background-repeat: no-repeat;
	background-position: right center;
}

h1 { 
	font-size: 1.5em;
}
h2 { 
	font-size: 1.3em;
}
h3 { 
	font-size: 1.2em;
}
h4 { 
	font-size: 1em;
}

img {
	margin: 10px;
	border: 0px;
}

ul {
	list-style-type: none;
	margin: 5px 5px 5px 5px;
	padding: 0px;
}

/* LINKS */

a {
	color: #4d6185;
}

a:link {
	color: #4d6185;
}
a:visited {
	color: #4d6185;
}
a:hover {
	text-decoration: none;
}
a:active {
	color: #4D6185;
}

/* CLASS selectors */

.right {
	float: right;
}


.left {
	float: left;
}
.clearleft {
	clear: left;
}

