/*  CSS for Actors Menu 

	Basic hierarchy:
	
	html
		body
			container (based on csszengarden.com)
				header
				breadcrumb
				pagecontent
					article(s)
				navigation
					cc (special link)
				footer
			subfooter (outside of container)
			
			i.e. most of page is inside the container
			
			
	Colors: Blue and Gold after book cover.
		blue: #0e239b
		gold: #ffa500
	
			
*/

html
{
	margin: 0;
	padding: 0;
}

body 
{	
	margin: 0px;
	padding: 20px;
	font: normal 12pt "Times New Roman", Times, Bodoni, serif;
	line-height: 17pt;
	background: #ffffff ;
    text-align: center; /* Hack for IE 5.5 to center the container */
}

td 
{
	font-size: 11px;
}


a {
   border: 1px #ffffff solid;
   padding: 0 1px;
   
   /* Hack for IE 5.0 - The property will not be applied by it
       This browser does not understand dashed borders
       so we have to keep the text decoration using this hack
    */
   text-decoration/* */: none; 
}

a:link {
   color: #0e239b;
   border-bottom: 1px #cccccc dashed;
}

a:visited {
   color: #0e239b;
   border-bottom: 1px #0e239b dashed;
}

a:hover,
a:active {
   color: #ffa500;
   background: url(images/am_bg.jpg) repeat #0e239b;
   border: 1px red solid;
}

h1
{
	font-size: 20px;
	color: #0e239b;
}

h2
{
	font-size: 15px;
	font-weight: 200;
	color: #333333;
}

h3 
{
	font-size: 12px;
	font-style: italic;
	font-weight: 100;
}

.jump_to_navigation 
{
	display: none;
}

#container
{
	position: relative;
	margin: 10px auto;  /* 'auto' here centers the container horizontally */
	padding: 0 0 100px 10px;
	width: 100%;
	background: #ffffff;
	text-align: left;   /* undo the effect of the IE hack above */
}

#header
{
	background: #ffffff;
}

/* remove any border for header image.  Was showing in IE Windows */
#header a:link, a:visited, a:hover, a:active 
{
	border: none;
}

#header img 
{
	display: none;
}

#toptag
{
	display: none;
}


#breadcrumb
{
	text-align: right;
	font-size: 9px;
}

#pagecontent
{
	position: relative;
	top: 0px;
	left: 0px;
	width: 90%;
	background: #ffffff;

}

div.article
{
	margin: 0px;
	background: #ffffff;

}


div.article p
{
	vertical-align: top;
	padding: 0 0 0 0px;
}

div.article h1 
{
	font-size: 15px;
	color: #000000;
}

div.article h2
{
	font-size: 15px;
	font-weight: 200;
	font-style: italic;
	color: #666666;
}

div.article h3 
{
	font-size: 12px;
	font-style: italic;
	font-weight: 100;
}


div.article a:hover
{
	background: none;
	background-color: #0e239b;
}

div.article img
{
	float: left;
	border: 1px solid #000000;
	vertical-align: top;
	margin: 5px 10px 10px 0;
}

/* This a fix to have borderless pix on front page */
div.article p.noborder img
{
	float: none;
	border: none;
	margin: 0;
}



#navigation
{
	display: none;
}




/* special DIV for credit card link (inside 'navigation' DIV */

#cc
{
	display: none;
}


/* footer */

#footer
{
	position: relative;
	bottom: 50px;
	padding: 5px;
}

#subfooter a
{
	color: #ffffff;
	border: none;
}

#subfooter
{
	display: none;
}

#print_subfooter
{
	color: #000000;
}

#handheld_subfooter
{
	display: none;
}