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

.fm_default{
	font-family: Tahoma, Geneva, sans-serif;
	font-size: small;
}
/* Code below takes care of coloring and underlining of the menus below the slide show*/
a:link {color:#606060; text-decoration:none}
a:visited {color:#606060 ; text-decoration:none}
a:active {color:black; text-decoration:none}
a:hover {color:black; text-decoration:underline}

.fm_heading1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 30px;
}

html, body, #contents {
	min-height: 100%;
	width: 100%;
	height: 100%;
}

/*
 * The "height" above is a hack for IE5+/Win.  Below we adjust
 * it using the child selector to hide from IE5+/Win
 */

html>body, html>body #contents {
	height: auto;
}

/*
 * Without this, Moz1.0 adds a vertical scrollbar
 */

body {
	margin: 0;
	font-family: Arial, sans-serif;
}

#contents {
	position: absolute;
	top: 0;
    left: 0;
/*  Use the following to center this at 50% width, or this for 750px: width: 700px, margin-left: -350px: */
/*
	left: 50%;
    width: 50%;
    margin-left: -25%;
*/
}

#footer {
	position: absolute;
	bottom: 0;
	background-color: #F0F0F0 ;
	width: 70%; /* See note below */
	text-align: center;
	padding: 0 15%;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: x-small;
	font-style: normal;
}

/* SBMH -- see http://css-discuss.incutio.com/?page=BoxModelHack 
 * Stupid hack lets IE see 100%, others see 70%. 
 */
#footer {
	\width: 100%;
	w\idth: 70%;
}

#main {
	margin-bottom: 5em;
	height: auto;
	padding: .5em;
}

.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
}

.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
}

.gray-box{
border:solid 1px #DEDEDE;
background:#EFEFEF;
color:#222222;
padding:4px;
text-align:center;
}

#center-table{
	border: 1px solid; 
	padding:25px; 
	border-color: #D8D8D8;
	background:#F0F0F0; 
	margin:10px 0 0;
}