
body {
	background: #fff url(images/bg.png) repeat-x;
}

.wrapper {
	width:800px;
	position:relative;
	margin: 0 auto;
}

.header {
	background-image: url(images/wrapperust.png);
	width: 800px;
	height: 100px;
}

.content {
	background-image: url(images/contentbg.png);
	background-repeat:repeat-y;
	width:100%;
	padding-bottom:15px;
	padding-top:15px;
}


.content span{
	font-size:22px;
	padding-left:25px;
	color: white;
}
.content p {
	margin-left:15px;
	margin-right:55px;
	margin-bottom: 15px;
	padding:15px;
	line-height:0 auto;
	background-color:white;
	border:1px solid #ccc;
}

.content a{
	color:#CC3300;
	text-decoration:none;
}

.form {
	margin-left:15px;
	margin-right:55px;
	margin-bottom: 15px;
	padding:15px;
	line-height:0 auto;
	background-color:white;
	border:1px solid #ccc;
}

.navbar {
	background-image: url(images/navbg.png);
	height: 40px;
}

.navbar li {
	float:left;
	list-style:none;
	position:relative;
	margin:8px;
}

.navbar a {
	color: #000;
	text-decoration:none;
	padding: 3px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
}

.navbar a:hover {
	color: #0099CC;
}

.footer {
	background-image: url(images/wrapperalt.png);
	width: 800px;
	height: 50px;
	text-align:center;
	font-size:12px;
	color:#006666;
	clear:both;
}

.footer a {
	color:#333333;
	text-decoration:none;
	font-size:12px;
}

.footer a:hover {
	color:#FFF;
}

.footer span{
	margin-left:15px;
}

.menu { 
	background-image: url(images/navbg.png);
	height: 40px;
}

.menu ul {
	background-image: url(images/navbg.png);
	height: 40px;
	margin:0 auto;
	position:relative;
}

.menu ul li {
			/* width and height of the menu items */  
	float: left;
	overflow: hidden;
	text-align: center;
	line-height: 40px;
}

		.menu ul li a {
			/* must be postioned relative  */ 
			position: relative;
			display: block;
			width: 110px;
			height: 45px;
			font-family: Arial;
			font-size: 11px;
			font-weight: bold;
			letter-spacing: 1px;
			text-decoration: none;
			cursor: pointer;
		}

		.menu ul li a span {
			/* all layers will be absolute positioned */
			position: absolute;
			left: 0;
			width: 110px;
		}

		.menu ul li a span.out {
			top: 0px;
		}

		.menu ul li a span.over,
		.menu ul li a span.bg {
			/* hide */  
			top: -45px;
		}

		/** 1st example **/

		#menu {
			background: #EEE;
		}

		#menu ul li a {
			color: #000;
		}

		#menu ul li a span.over {
			color: #FFF;
		}

		#menu ul li span.bg {
			/* height of the menu items */  
			height: 40px;
			background: url(images/menubg.png) center center no-repeat;
		}