@charset "UTF-8";
/**Zero out margins, padding and borders for all browsers**/

html, body {
	margin:0;
	padding:0;
	border:0;
	font-size:95%;
	height:100%;
	margin-bottom:1px; /** this forces scrollbar to appear in Mozilla **/
}

body {
	text-align:center;
	margin:0 auto; /**centers page**/
	padding:0;
	width:770px;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #6B221A;
	color: #333333;
}

#wrapper {
	text-align:left;
	height:auto;
	width:auto;
	overflow:auto;
	background-color: #526468;
	background-repeat: no-repeat;
	background-position: left 690px;
}
#header {
	background: white;
}

/**Horizontal menu**/
#topMenu {
	text-align:left;
	background:lightgreen;
	padding:7px;
}
#topMenu a {
	font-size:0.7em;
	text-transform:uppercase;
	text-decoration:none;
}
#topMenu a:hover {
	color:#505050;
	text-decoration:none;
}

/**floated left column**/
#leftColumn{
	float:left;
	width:200px;/*adjust width of column in pixels, ems or percentages*/
	margin:0;
	padding:5px;
	height: auto;
	left: 0px;
	top: auto;
}
/**floated right column**/
#rightColumn{
	float:right;
	width:150px;/*adjust width of column in pixels, ems or percentages*/
	margin:0;
	padding:5px;
	background:mediumaquamarine;
}

/**Right Side Vertical Navigation**/
#navcontainer {
	width: 200px;
}

#navcontainer ul {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
}
#navcontainer a {
	display: block;
	width: 200px; /**change this width if you change width of rightColumn**/
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #718B90;
	padding-top: 2px;
	padding-bottom: 2px;
	font-weight: 500;
}
#navcontainer a:link, #navlist a:visited {
	color: #EEE;
	text-decoration: none;
}
#navcontainer a:hover {
	background-color: #2C3638;
	color: #fff;
}
/** Middle column container **/
#Middle {
	height:1%;
	width: auto;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 212px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	background-color: #FFFFFF;
}

#footer {
	clear: both;
	color:black;
	margin:0;
	padding:10px;
	height:auto;
	border-top-width: thin;
	border-top-style: double;
	border-top-color: #ADADAD;
	background-color: #CCCCCC;
	text-align: center;
}
h2,/**text styles**/h3,h4 {
	font-size: 120%;
	font-weight: bold;
	margin-bottom: -5px;
	padding-bottom: 0px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
h1 {
	color: #77281C;
	font-size: 170%;
}
p {
	line-height:1.5;
}
ul {line-height:2;}

/**Regular Links**/
a{
	color:#6B221A;
	font-weight:700;
	text-decoration:none
}
a:visited {
	color:#6B221A;
	text-decoration:none
}
a:hover,a:active,a:focus{text-decoration:underline}

/**linked images**/
a img{border:none;}
img a:hover {border:none}

/**Misc classes**/
.left {text-align:left}
.center {text-align:center}
.right {text-align:right}

/**Floats**/
.floatRight {float:right; width:30%}
.floatLeft {float:left; width:30%}
.clearing {clear:both; height:1px; width:100%; visibility:hidden;}

