/*
"Stand-Up Comedian"
*/

body {
	margin: 0;
	padding: 0;
	background: #026dc0 url('../images/bg.gif') repeat-x top;
	font-family: Helvetica, sans-serif;
	line-height: 1.4em;
}

/* Use a single rule for elements that share the same properties */
h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

p, h2, h3 {
	margin: 0 0 10px 0;
}

ul {
	list-style-type: none;
}

/* Our friend "margin: 0 auto" shows up again */
#wrap {
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 10px;
	width: 780px;
	background: #fff;
	border: 10px solid #044375;
}

#header {
	background: url('../images/microphone-xsm.jpg') no-repeat;
	height: 100px;
}

/*
Use background images in CSS to add visuals
to text
*/
#header h1 {
	float: right;
	margin: 10px 10px 10px 10px;
	color: #333;
	
}
#header h2 {
	float: right;
	clear: both;
	margin: 10px 30px 10px 10px;
	color: #333;
}

#nav {
	margin: 10px 0 0 0;
	padding: 10px;
	background: #B21612;
	border-top: 5px solid #033761;
}

/*
By default, list items are displayed as a block. We can
override that style with "display: inline" which will cause
the list items to appear next to each other.
*/
#nav ul li {
	display: inline;
	margin: 0 10px 0 10px;
}

#nav a {
	color: #fff;
	text-decoration: none;
}

/* Standard float positioning */
#content {
	margin: 10px 0 0 0;
	padding: 10px;
	float: left;
	width: 505px;
}

#content-contact {
	margin: 20 px 20 20 20;
	padding: 10px;
	
	width: 505px;
}


#sidebar {
	margin: 10px 0 0 0;
	padding: 10px;
	float: right;
	width: 225px;
}

#sidebar ul {
	margin: 0 0 40px 0;
	font-size: small;
}


#sidebar h3 {
	padding: 5px;
	background: #FAFF19;
	border-bottom: 2px solid #ddd;
	font-weight: normal;
}


#video1 {
	 margin: auto;
}


#video2 {
	margin: auto;
}

#video3 {
	margin: auto;
}


/*
Remember to "clear: both" when positioning elements
below floated elements.
*/
#footer {
	clear: both;
	padding: 10px;
	background: #B21612;
	border-bottom: 2px solid #ddd;
}

#footer p {
	margin: 0;
	text-align: center;
	color: #777;
}