/*
Theme Name: Paul Lazarus
Description:  This is the Paul Lazarus Theme
Author: Andy Martinez
Author URI: http://www.paullazarus.net
*/


/*-----------Block Level Elements--------------*/

body {
	margin: 0;
	padding: 0px 0px 0px 0px;
	font-size: 78%;
	font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
	background: #660000;
	height: 100%; 
	text-align: center;
	color: #FFFFFF;
}

.description {
}

#wrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -325px; 
	margin-top: -225px; 
	width: 622px;
	height: 570px;
	text-align: center;
	overflow: hidden;
}
#header {
	padding: 0px 0px 8px 0px;
	text-align: left;
	width: 100%;
	clear: both;
	color: #036EA0;
}
#content {
	padding: 0px 0px 0px 0px;
	height: 500px;
	width: 508px;
	float: left;
	overflow: auto;
	color: #FFFFFF;
	text-align: left;
}
* html #sidebar {
	overflow: hidden; /* For IE */
}

#copyright {
	font-size: 12px;
	text-align: left;
	color: #FFFFFF;
	clear: both;
	position: relative;
	margin: 10px 0px 0px 100px;
}
#paullazarusbannerright {
	width: 28px;
	height: 233px;
	background: url(images/paullazarusbannerright.gif);
	margin: 24px 0px 9px 60px;
}
#navmenu {
	margin: 0px 0px 0px 0px;
}
#navmenuwrapper {
	width: 90px;
	float: left;
	margin: 0px 20px 0px 0px;
}

/*-------------Headings-------------*/

h1 {

}

h2 {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #fc3; 
	padding: 2px 8px 2px 2px;
	font-size: 12px;
	text-align: left;
	margin: 0px 0px 0px -4px;
	text-transform: all-caps;
}

h3 {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #FFFFFF; 
	font-size: 16px;
	text-align: center;
	margin: 0px 0px 0px 0px;
	font-weight: normal;
}

h4 {
	text-align: left;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #fc3; 
	margin: 0px 0px 0px -4px;
	font-size: 12px;
	font-weight: normal;
}
h2 a {
	color: #fc3; 
	font-weight: normal;
}

h5 {
	padding: 0;
	color: #fc3; 
	margin: 0px 0px 6px 0px;
	font-weight: normal;
	background: #880000;
	display: block;
	font-size: 12px;
	width: 100%;
}

/*-------------The Post-------------*/



h2 a:hover, h2 a:visited, h2 a {
	color: #fc3; 
	font-weight: normal;
	}
	
#content a:hover {
	color: #FFFFFF; 
}
.post {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	text-align: left;
	padding: 0px 5px 5px 5px;
}
.post p {

}

.post a:link {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #fc3; 
}

.post ul {

}

.post li {

}

.entry a:link, a:visited, a:hover {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #fc3;

}

.entrytext .postmetadata {


}

.entry img {
	float:right;
	margin: 0px 4px 4px 4px;
	clear:both;
	}

.postmetadata alt {

}

.postmetadata {
	font-size: 10px;

}

.print {
	float: right;
	margin: 2px 2px 2px 2px;

}

.alignleft {
	float:left;
	margin: 0px 4px 4px 10px;
	clear:both;
}



.center {

}

.pagetitle {

}

blockquote {

}

cite {

}

a img {

}

acronym, abbr {

}

.clear {
	clear:both;
}
.creditsentry { 
	padding: 0px 0px 0px 0px;
	text-align: left;
	margin: 10px 0px 0px 0px;
	}
.creditstitle {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #fc3; 
	padding: 2px 8px 2px 2px;
	font-size: 12px;
	text-align: left;
	margin: 0px 0px 0px -4px;
	font-weight: bold;
	}
.creditstheater {
	font-style: italic;
	font-weight: bold;
	margin: 10px 0px 0px 4px;
}
.creditsinfo {
	margin: 0px 0px 0px 4px;
}

/* - - - ADXMENU - - - */

.menu {
	width: 90px;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
	color: #eee;
	background: #660000;
}

.menu {
	width: 90px;
}

.menu ul {
	width: 90px;
}

.menu a {
	text-decoration: none;
	color: #eee;
	padding: .4em 1em;
	display: block;
}

.menu a:hover, .menu li:hover>a {
	color: #fc3;
}

.menu li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/*]]>*/


/*--------------Sidebar------------*/

#sidebar ul {

}

#sidebar ul h2 {

}

#sidebar ul li {

}

#sidebar ul ul {

}

#sidebar ul ul li {

}

#sidebar ul ul ul {

}

#sidebar p {

}

#sidebar a {

}
#sidebar a:hover {

}

#sidebar a:visited {

}

/*-------------Table------------------*/

table {
	border-collapse:collapse;
	border-spacing:0;
	width: 485px;
	}
td {
	padding: 1px 2px;
	}
.odd td {
	background: #880000;
	}
.even td {
	background: #660000;
	}

/* Page Items
------------------------------ */

a img {
	border:none;
	}

.pageitem {
	margin: 0px 5px 2px 0px;
	vertical-align: top;
	min-height: 80px;	
}
.pageitem img {
	float: left;
	margin: 0px 15px 0px 0px;
}
.pageitem h2 {
	margin: 0px 0px 6px 0px;
	font-weight: normal;
	display: block;
}
.pageitem p {
	margin: 0 0 4px 0;
}

/*------- Reels Page--------------- */

/* <![CDATA[ */
	
		#stage {
			position: absolute;
			top: 25px;
			display: block;
			width: 388px;
			height: 296x;
			left: 170px;

		}
		
		iframe {
			border: 0px;
			background-color: #990000;
			padding: 0px;
					
		}

		#reelnav {
		 	margin: 10px 0px 0px 0px;
			width: 100%;
			text-align: left;
			padding: 0;
		}
		
		#reelnav ul {
			margin: 3px 0px 0px 0px;
			padding: 0px 0px 0px 0px;
			width: 100%;
			text-align: left;
		}
		
		#reelnav li {
			margin: 10px 5px 0px 0px;
			padding: 0px 2px;
			display: inline;
			list-style: none;
			text-align: left;
		}
		.vp_video_player {
			margin-bottom: 5px;
			}
		
		#reelnav.singlecameracomedy li a.single-camera {
background-color: #990000;
}

ul#reelnav.multicameracomedy a.multi-camera {
background-color: #990000;
}

#reelnav.onehour li a.one-hour {
background-color: #990000;
}

#reelnav.commercials li a.commercials {
background-color: #990000;
}

#reelnav.musical li a.musicals {
background-color: #990000;
}

#reelnav.theater li a.theater {
background-color: #990000;
}
		
		#reelnav li a {
		padding: 3px 3px;
		}
		
		.singlereel {
		margin: 0px 5px;
		float: left;
            width: 120px;
            text-align: center;
		}
		
		.singlereelcaption {
		margin: 0px 0px 0px 0px;
		text-align: center;	
		}
		
		.singlereel img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 5px;
		clear: both;
		}
#page-id-107 #content, #page-id-76 #content, #page-id-75 #content, #page-id-193 #content, #page-id-74 #content,  #page-id-361 #content {
	height: 500px;
	width: 512px;
	}

		
		
		
	/* ]]> */

/*-------------Other------------------*/

hr {
	display: none;
}

#reel {
	width: 320px;
	height: 256px;
	align: center;
	position: relative;
	top: -9px;
}




