
/* #94C1E0=light blue #348FAC=dark blue #6E7570=gray */


/* LINKS */
a {
	color: #6E7570;
	text-decoration:none;
	}
a:link, a:visited {	/* unvisited link, visited link */
	color: #6E7570;
	text-decoration:none;
	}
a:hover {	/* mouse over link */
	color: #348FAC;
	text-decoration: underline;
	}
a:active {	/* selected link */
	color: #348FAC;
	text-decoration:none;
	}

body {
	background-color: #FFFFFF;
	}


/* TEXT */

h1 {	/*Refers to all text that should be large and dark blue*/
	font-family: "Liberation Sans";
	text-align: center;
	color: #348FAC;
	}
h2 {	/*Refers to all text that should be smaller and light blue*/
	font-family: "Optima";
	text-align: center;
	color: #6E7570;
	}
h3 {	/*Refers to all headers that are just slightly set apart from the text*/
	font-family: "Georgia";
	text-align: left;
	color: #348FAC;
	}

p {	/*Refers to all text that should be normal and gray*/
	font-family: "Georgia";
	text-align: left;
	color: #6E7570;
	}
p.footer {	/*Refers to all text in the footer mark*/
	font-family: "Verdana";
	font-size: 60%;
	text-align: center;
	color: #348FAC;
	}
p.quote {	/*Refers to any quoted text*/
	font-family: "Georgia";
	text-align: center;
	font-size: 80%;
	color: #6E7570;
	font-style: italic;
	}
p.quote:first-line {
	font-family: "Georgia";
	text-align: center;
	color: #6E7570;
	font-variant: small-caps;
	font-size: large;
	}
p.indent {	/*Indented paragraph*/
	padding-left: 20pt;
	padding-right: 20pt;
	}

ol {
	font-family: "Georgia";
	color: #6E7570;
	}


/* BOXES */

div.logo {
	width: 50%;
	min-width: 95px;
	padding: 10px;
	margin: auto;
	}
div.menu {
	width: 50%;
	min-width: 95px;
	padding: 5px;
	margin: auto;
	text-align: center;
	border: 0px double #94C1E0;
	background-color: #FFFFFF;
	box-shadow: 3px 3px 3px #ccc;
	-moz-box-shadow: 3px 3px 3px #ccc;
	-webkit-box-shadow: 3px 3px 3px #ccc;
	line-height: 200%;
	}
div.main {	/* Refers to the main body of the page */
	width: 85%;
	min-width: 200px;
	padding: 5px;
	border: 30px #348FAC;
	border-style: none solid solid none;
	margin: auto;
	background-color: #FFFFFF;
	-moz-border-radius-bottomright: 60px;
	-webkit-border-bottom-right-radius: 60px;
	border-bottom-right-radius: 60px;
	box-shadow: 5px 5px 5px #ccc;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-webkit-box-shadow: 5px 5px 5px #ccc;
	}
div.content {	/* Refers to the center content of the page */
	width: 95%;
	padding: 8px;
	border: 0px #348FAC;
	border-style: none double double none;
	background-color: #FFFFFF;
	-moz-border-radius-bottomright: 60px;
	-webkit-border-bottom-right-radius: 60px;
	border-bottom-right-radius: 60px;
	}
div.footer {
	width: 50%;
	min-width: 100px;
	max-width: 500px;
	margin: auto;
	}
div.quote {
	width: 25%;
	padding: 5px;
	border: 10px double #94C1E0;
	margin: 5px;
	min-width: 50px;
	background-color: transparent;
	float: right;
	-moz-border-radius-bottomright: 20px;
	-webkit-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 2px 2px 2px #ccc;
	-moz-box-shadow: 2px 2px 2px #ccc;
	-webkit-box-shadow: 2px 2px 2px #ccc;
	}

