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

body {
	font: 1em Helvetica, Arial, Helvetica, sans-serif;
	background: #97A8C1;
	margin: 0;
	padding: 0;
	color: #333;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 50px;
	padding-left: 50px;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Ubuntu Condensed', sans-serif;
}
h1{
	font-size: 1.5em;
	color: #660000;
}
h2{
	font-size: 1.3em;
	color:#424762;
}
p{
	line-height: 1.5em;
	}
p.smallType{
	font-size: .8em;
	}
a img {
	border: none;
}
a:link {
	color: #42413C;
	text-decoration: underline; 
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	color: #227EB0;
	text-decoration: underline;
	outline:0; /* ~~ remove dotted outline from links ~~ */
}
object, embed {
  outline: 0; /* ~~ remove dotted outline from Flash objects ~~ */
}
/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 980px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

.header {
	background: #97A8C1;
}
/* ~~ Navigation ~~ */
	#navigation{
		font-family: 'Ubuntu Condensed', sans-serif;
		font-size: 1em; 
		margin:0;
		padding:2px 8px 0;
		position:relative;
		right:0;
		top: 53px;
		text-align:right;
		white-space:nowrap;
		width:auto;
	}
	#navigation li:first-child {
		border-left-width:0;
	}
	#navigation li:last-child {
		padding-right: 0;
	}
	#navigation li{
		background-image:none;
		border-color: #828386;
		border-style:solid;
		border-width:0 0 0 1px;
		display:inline;
		margin:0;
		padding:0 8px;
		white-space:nowrap;
	}
	#navigation li a{
		color: #6D6E71;
		text-decoration:none;
	}
	#navigation li a:hover{
		color: #333;
		text-decoration:none;
	}
#logo {
	padding: 15px 0 8px;
	margin-left: 8px;
	}

.content {
	padding: 25px 0;
	min-height: 300px;
}

.footer {
	font-family: 'Ubuntu Condensed', sans-serif;
	font-size: .85em;
	color:#999;
	padding: 10px 35px;
	border-top: 1px dotted #6D6E71;
	text-align:right;
}
.footer a{
	color: #666;
	text-decoration:none;
}
.footer a:visited{
	color: #999;
	text-decoration:none;
	}
.footer a:hover{
	color: #333;
	text-decoration:none;
	}
.footer span {
	margin-left: 30px;
}
/* ~~ homepage paintings and titles ~~ */
.homeImage{
	margin-bottom: 30px;
	text-align:center;
}
.title{
	font-family: 'Ubuntu Condensed', sans-serif;
	font-size: 1em;
	color:#666;
	text-align: right;
	padding-top: 4px;
}
p.hangingIndent {
	margin-left: 30px;
	text-indent: -30px;
}
/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


