body {
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: "Bitstream Vera Sans", Arial, helvetica, sans-serif;
	text-align: center;
}

.hide {
	display: none;
}

#container {
	width: 760px;
	text-align: left;
	margin: 0 auto;
	border: 0px solid #fff;
	border-top: none;
}

	#header {
		background-color: #000;
		color: #fff;
		padding: 0px;
		height: 120px;
		background-image: url("images/header.jpg");
		background-position: 0 0;
		background-repeat: no-repeat;
		position: relative;
	}

		#header h1 {
			margin: 0;
			padding: 0;
			color: #000;
			position: absolute;
			top: 0;
			left: 0;
		}
			#header h1 a {
				display: block;
				height: 133px;
				overflow: hidden;
				outline: none;
				text-indent: -99999px;
				width: 243px;	
			}

	#nav {
		background-color: #900;
		color: #fff;
		_height: 1%;
		/*overflow: auto;*/

		border-bottom: 5px solid #999;
	}

		#nav ul {
			font-size: 70%;
			list-style-type: none;
			margin: 0;
			padding: 0;
			/*text-transform: uppercase;*/
		}

			#nav ul li {
				float: left;
				border-right: 1px solid #999;
				position: relative;
			}

				#nav ul li a {
					_height: 1%;
					display: block;
					padding: 5px 10px;
					color: #fff;
					text-decoration: none;
					width: auto;
					float: left;
				}

					#nav ul li a:hover {
						background-color: #f00;
					}
					
		/* dropdowns */

		#nav li ul {
			font-size: 100%;
			background-color: #600;
			border-bottom: 5px solid #999;
			position: absolute;
			left: 0px;
			top: 23px;
			width: 180px;
			margin: 0;
			display: none;
		}

		#nav li:hover ul, #nav li.over ul {
			display: block;
		}

			#nav li ul li {
				_height: 1%;
				border: none;
			}

				#nav li ul li a {
					display: block;
					width: 160px;
				}

#wrapper {
	background-color: #fff;
}

	#content {
		float: left;
		padding: 20px 0 20px 20px;
		width: 550px;
	}

		#content h2 {
			margin: 0 0 1em 0;
			font-size: 120%;
		}

		#content h3 {
			margin: 0;
			font-size: 100%;
		}

		#content p {
			margin: 0 0 1em 0;
			font-size: 80%;
			line-height: 1.6em;
		}

		#content ul, #content ol {
			font-size: 80%;
			line-height: 1.6em;
		}

		#content img {
			border: 1px solid #666;
			float: right;
			margin: 0 0 10px 10px;
		}

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

			#content a:hover {
				background-color: #eee;
				text-decoration: underline;
			}
		
		#content form {
		}
			
			#content form label {
				font-weight: bold;
			}

			#content form input, #content form textarea {
				width: 250px;
			}

			#content form textarea {
				overflow: auto;
				height: 80px;
			}

			#content form input.clickable {
				cursor: pointer;
				width: auto;
				padding: 2px 10px;
			}


	#side {
		float: right;
		width: 160px;
		padding: 20px 20px 20px 10px;
	}

		#side .box {
			border-left: 1px solid #666;
			
			padding: 10px;
			margin: 0 0 20px 0;
		}

		#side h3 {
			margin: 0;
			font-size: 85%;
		}

		#side .strip {
			height: 30px;
			margin: 5px 0;
		}

		#side p {
			margin: 0.5em 0;
			font-size: 70%;
		}

			#side a {
				color: #000;
				text-decoration: none;
			}

				#side a:hover {
					text-decoration: underline;
				}


	#footer {
		background-color: #999;
		border-top: 5px solid #600;
		padding: 10px;
		overflow: auto;
		_height: 1%;
		position: relative;
	}

		#footer p {
			margin: 0;
			padding: 0;
			font-size: 70%;
			float: left;
		}

		#footer a {
			color: #600;
			text-decoration: none;
		}

			#footer a:hover {
				text-decoration: underline;
			}

		#footer ul {
			float: right;
			margin: 0;
			padding: 0;
			list-style-type: none;
			font-size: 70%;
		}

			#footer ul li span {
				display: block;
				float: left;
				width: 4em;
			}

/* one-offs */

#description {
	padding: 15px;
	background-color: #D6D6D6;
	margin-bottom: 1em;
}

	#description p {
		margin: 0;
		padding: 0;
		font-size: 75%;
	}
	
	#description #intro {
		float: left;
		text-align: center;
		width: 225px;
	}

	#description #video {
		display: block;
		float: left;
		margin-left: 15px;
		width: 280px;
	}


/* ------------------------------- */
/* CLEARING FIXES FOR IE6          */
/* ------------------------------- */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hide from IE/Mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE/Mac */