html {min-height: 100%;}

* {
	margin: 0;
	padding: 0;
}

/* Link CSS*/
a {
	color: #E5E5E5;
	text-decoration: none;
}
a:hover {
	color: #A30808;
	text-decoration: underline;
}
		
/* Main body */
body {
	background: #AABBBB; 
	color: #822433;
}

/* To underline text */
h1 {
	text-decoration: underline;
	font-size: inherit;
}

/* To bold text */
h2 {
	font-weight: bold;
	font-size: inherit;
}

/* To italicize text */
h3 {
	font-style: italic;
	font-size: inherit;
}

h4 {
	font-weight: bold;
	font-size: x-large;
	text-align: center;
	margin-top: 10px;
	margin-right: 8px;
}

h5 {
	font-weight: bold;
	font-size: inherit;
	text-align: center
}

h6 {
	text-align: center;
	font-size: smaller;
}


/* Hidden div classes */
div.cab{display: none;}


/* This part of the style sheet controls the top banner layer */
div.imgbanner {
	background-image: url(img/banner.png);
	background-repeat: no-repeat;
	text-align: left;
	height: 55px;
	width: 780px;
	margin-left: auto;
	margin-right: auto;
	z-index: 10;
}

div.topbanner {
	background-image: url(img/topbanner.png);
	background-repeat: no-repeat;
	height: auto;
	width: 800px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}

div.bannercontainerbody{
	position: relative;
	color:  #FFFFFF;
	padding: 5px 5px 5px 5px;
	text-align: justify;
}

div.bannercontainerbottom{
	color: #FFFFFF;
	padding-right: 5px;
	text-align: right;
}

div.menubar {
	top: -15px;
	height: 33px;
	width: 800px;
	text-align: left;
	padding-left: 15px;
	margin-left: auto;
	margin-right: auto; 
	position: relative;
	padding-top: 5px;
}

div.menucontainer {
	position: absolute;
	bottom: 0;
}

div.currentpage {
	z-index: 100;
}


/* This past of the style sheet controls the main body of text on the page. As the 
 * body content may vary in length, we can't use a static image, so instead we're going
 * to make it so it expands dynamically for the width to the page
 */

div.bodycontainer {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	top: -20px;
	width: 800px;
}

div.bodycontent {
	background-color: #FFFFFF;
	background-image: url(img/blatR.png);
	background-position:right top;
	background-repeat: repeat-y;
	text-align: justify;
	padding-right: 5px;
	width: 595px;
	height: auto;
}

div.contentinner{
	margin-left: 8px;
	margin-right: 8px;
}
div.listboxes{
	margin-left: 13px;
}
div.listboxes2{
	margin-left: 23px;
}

div.bodytop {
	background-image: url(img/bhorT.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 5px;
	overflow: hidden;
	text-align: right;
	width: 600px;
	z-index:99;
}

div.bodybot {
	background-image: url(img/bhorB.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 5px;
	overflow: hidden;
	text-align: right;
	width: 600px;
}

div.bodyinner{
	background-image: url(img/blatL.png);
	background-repeat: repeat-y;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5px;
}


/* The following are the div classes governing the right hand side information
 * bar, which is currently set to me 200 pixels wide. * 
 */

div.rightbarcontainer {
	position: absolute;
	top: 0px;
	right: 0px;
	margin-left: auto;
	width: 190px;
}

div.rbartitle {
	text-align: center;
	font-size: medium;
	font-weight: bold;
}

div.rbarcontent {
        text-align: left;
        font-size: small;       
}

div.rightcontent {
	background-color: #FFFFFF;
	background-image: url(img/blatR.png);
	background-position:right top;
	background-repeat: repeat-y;
	text-align: left;
	padding-right: 5px;
	width: 185px;
	height: auto;
}

div.righttop {
	background-image: url(img/rhorT.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 5px;
	overflow: hidden;
	text-align: right;
	width: 190px;
	z-index:99;
}

div.rightbot {
	background-image: url(img/rhorB.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 5px;
	overflow: hidden;
	text-align: right;
	width: 190px;
}

div.rightinner{
	background-image: url(img/blatL.png);
	background-repeat: repeat-y;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5px;
}


/* The following is used to give the body content the floating corners to help round out
 * the look of the content bubble.
 */

img.bubbleLeft{
	float: left;
}

img.bubbleRight{
	float: right;
}

img {
	border: 0px;
}

/* Divs that are used as spacers in the layouts */
div.spaceholder {
	display: block;
}

div.fivepx {
	height: 5px;
}


/* Miscellanious */
.left {
	float: left;
	padding: 0px 0px 0px 0px;
}
.right {
	float: right;
	padding: 0px 5px 0px 0px;
}


