﻿@import url("layout.css");

/*
SERIF
"Juice ITC"
"Old English Text MT"

SANS-SERIF
"Candara"
"Maiandra GD"
"Eras Medium ITC"
"Segoe UI"
"Tw Cen MT"
*/

/********** GLOBAL STYLES **********/

/* Page body */
body {
	background-color: #00050B; /* Dark Blue */
	color: white;
	font-family: "Maiandra GD", Tahoma, Arial, Helvetica, sans-serif;
	font-size: medium;
	margin-bottom: 0;
	margin-top: 0;
}

/********** TEXT STYLES **********/

/* Heading 1 */
h1 {
	margin-top: 0px;
}

/* Heading 2 */
h2 {
}

/* Heading 3 */
h3 {
}

/* Heading 4 */
h4 {
}

/* Heading 5 */
h5 {
}

/* Heading 6 */
h6 {
}

/********** HYPERLINK STYLES **********/

/* Hyperlink text */
a:link {
	color: #3399FF; /* Bright Blue */
}

/* Visited hyperlink */
a:visited {
	color: #3399FF; /* Bright Blue */
}

/* On mouse over hyperlink */
a:hover {
	color: white;
}

/* Active hyperlink */
a:active {
	color: white;
}

/********** MAIN STYLES **********/

/* Header section */
#header {
	background-image: url('../images/header.jpg');
	height: 168px;
}

/* Navigation */
#navigation {
	background-image: url('../images/navigation.jpg');
	height: 80px;
}

/* Content */
#content_index {
	background-image: url('../images/content_index.jpg');
	background-repeat: no-repeat;
}

/* Content */
#content {
	background-image: url('../images/content.jpg');
	background-repeat: no-repeat;
}

/* Footer */
#footer {
	background-image: url('../images/footer.jpg');
	font-weight: bold;
	height: 68px; /* 123px; */
	text-align: right;
}

