/*	CSS Reset
 *  Based on http://tantek.com/log/2004/undohtml.css
 *  Refined by Matthew Turnbull
********************************/

/* 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 */
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 */
div,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input,dl,dt,dd,p,th,td,legend,select,input,textarea { margin:0; padding:0; }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none; }

/* get rid of browsers and their standard border spacings */
table { border-collapse:collapse; border-spacing:0; }

select,input,textarea{font: 1em verdana,sans-serif;}

html { line-height:1.22em; }

body {
	/* 62.5% sets default text from 16px to a more manageable 10px standard across browsers. Use ems off 10px from now on */
	font: 62.5% Arial, Helvetica, sans-serif; 
	/*  line-height: 1em; -fixes peekaboo bug */
}

/*	Begin
********************************/


body {

	width: 800px;

	margin: 10px auto;
	
	background: #fff url(../img/bg_shadow.gif) top center repeat-y;


}

#header {
	background: #fff url(../img/header.jpg) top left;
	width: 376px;
	height: 160px;
	
	float: left;
	
	position: relative;
	left: -60px;
}

#header a {
	display: block;
	width: 376;
	height: 160px;
}


#footer {
	background: #fff url(../img/bg_footer.gif) top center repeat-x;
	height: 63px;
	text-align: center;
	
/*
	position: absolute;
	bottom: 0px;
	
	width: 800px;
*/

}

#navigation {
	float: left;
	width: 280px;
}

#navigation #menuHeader {
	background: #fff url(../img/menu_top.jpg) top left;
	width: 155px;
	height: 193px;
	margin-left: 70px;
}

/*	Menu
********************************/

#menu {

	width: 220px;

	margin: 10px 0px 30px 0px;
	
	float: right;

}

#menu a {

	display: block;
	width: 220px;
	
}

#menu #video a:link, #menu #video a:active, #menu #video a:visited {
	background-image: url(../img/menu_video.gif);
	height: 45px;
}

#menu #video a:hover, #menu #video a.on:link, #menu #video a.on:active, #menu #video a.on:visited {
	background-image: url(../img/menu_video_on.gif);
}

#menu #interview a:link, #menu #interview a:active, #menu #interview a:visited {
	background-image: url(../img/menu_interview.gif);
	height: 41px;
}

#menu #interview a:hover, #menu #interview a.on:link, #menu #interview a.on:active, #menu #interview a.on:visited {
	background-image: url(../img/menu_interview_on.gif);
}

#menu #photo a:link, #menu #photo a:active, #menu #photo a:visited {
	background-image: url(../img/menu_photo.gif);
	height: 47px;
}

#menu #photo a:hover, #menu #photo a.on:link, #menu #photo a.on:active, #menu #photo a.on:visited {
	background-image: url(../img/menu_photo_on.gif);
}

#menu #find a:link, #menu #find a:active, #menu #find a:visited{
	background-image: url(../img/menu_find.gif);
	height: 51px;
}

#menu #find a:hover, #menu #find a.on:link, #menu #find a.on:active, #menu #find a.on:visited {
	background-image: url(../img/menu_find_on.gif);
}


/*	Content
********************************/

#content {
	width: 395px;
	float: right;
	
	padding: 30px 40px 20px 35px;
	
	font-size: 1.3em;
	line-height: 1.5em;
	
	margin-bottom: 50px;
	
	display: inline; /* fixes IE double margin bug */

}

#content p {
	margin-bottom: 2em;
}

#buyTickets {
	float: right;
	margin: 0px 20px;
	
	position: relative;
	top: -25px;
}


/*	Interview Page
********************************/

#interviewPicture {

	width: 376px;
	height: 130px;
	text-align: right;
	border: 2px solid black;
	
	position: relative;

}

#interviewPicture img {
	position: absolute;
	right: 0px;
	bottom: 0px;
}

#interviewAudio {
	width: 360px;
	background: black;
	margin: 10px 0px;
	padding: 10px;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
}

#interviewNav {
	margin: 0px 0px 50px 50px;
	width: 260px;
}

#interviewNav img {
	float: left;
}

#interviewText img {
	margin: 0px 20px;
}

#interviewDisplay {
	margin-top: 10px;
}


/*	Video page
********************************/

#videoNav {
	margin: 0px 0px 50px 45px;
}

.clipHeader {
	position: relative;
	width: 390px;
	background: black;
	text-align: right;
	padding: 10px;
	margin: 10px 0px;
}

.clip {
	position: relative;
	float: left;
	display: inline;
	width: 78px;	
	height: 75px;
	text-align: center;
}

.clip img {
	border: 3px solid #000000;	
	_border-top: 3px solid #000000;
}

#videoDisplay {
	width: 375px;
	background: black;
	color: white;
	text-align: center;
	padding: 10px;
	padding-bottom: 0px;
	margin-bottom: 20px;
}


/*	Useful styles
********************************/
.clear {clear: both;}
.clearRight {clear: right;}
.clearLeft {clear: left;}
.block {display: block}
.center {text-align: center;}
.floatLeft {float: left;}
.floatRight {float: right;}
.indent10 {margin-left: 10px;}
.indent20 {margin-left: 20px;}
.indent50 {margin-left: 50px;}
.space2 {height: 2px; width: 1px; overflow: hidden;}
.space5 {height: 5px; width: 1px; overflow: hidden;}
.space10 {height: 10px; width: 1px; overflow: hidden;}
.space15 {height: 15px; width: 1px; overflow: hidden;}
.space20 {height: 20px; width: 1px; overflow: hidden;}


