@charset "utf-8";
/* CSS Document */

/* v1.0 | 20080212 */

/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { list-style:none }

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address */
address { font-style:normal }

/* more varnish stripping as necessary... */





body {
	background-image: url(ms-background.png);
	background-repeat: repeat-x;
}

#page {
	width: 800px;
	margin: 0px auto;
	padding: 0;
}

	#header {
		width: 800px;
		height: 122px;
		background-image: url(ms-header_03.png);
		margin: 20px 0 0 0;
	}
	
		.flashscroller {
			float: right;
			padding: 20px 20px 0 0;
		}
			
	#navigation {
		width: 800px;
		height: 30px;
		background-image: url(ms-navbackground.png);
		margin: 5px 0 0 0;
	}
	
		#navigation ul {
			list-style: none;
			padding: 0 0 0 0;
			margin: 0 0 0 60px;
			width: 700px;
		}
		
			#navigation ul a {
				color: #000;
				text-decoration: none;
				display: block;
				padding: 3px 5px 5px 3px;
				width: 126px;
			}
			
			#navigation ul a:hover {
				color: #FFF;
				text-decoration: none;
				background: #666;
			}
			
			#navigation ul li {
				float: left;
				position: relative;
				text-align: center;
				font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
				font-weight: bold;
			}
				#navigation ul li ul {
					list-style: none;
					position: absolute;
					left: 0;
					top: 100%;
					margin: 0 0 0 0;
					display: none;
					width: 133px;
					text-align: center;
					background: #CCC;
					border: 1px solid #666;
				}
				
				#navigation ul li ul li {
					font-weight: normal;
				}
				
				#navigation ul li:hover ul {
					display: block;
				}

	#maincontent {
		width: 800px;
		height: 400px;
		margin: 5px 0 0 0;
	}
	
	#bottomcontent {
		width: 800px;
		height: 122px;
		background-image: url(ms-bottomcontentbg.png);
	}
	
		.statement {
			text-align: center;
			font-family: Georgia, "Times New Roman", Times, serif;
			font-style: italic;
			font-size: 24px;
			font-weight: 600;
			margin: 25px;
			display: inline-block;
		}
		
	#footer {
		font-size: 13px;
	}
	
		.terms {
			text-align: center;
			margin: 20px 0 30px 0;
		}