/* CSS Document */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

html {
	font-family: 'Lucida Grande', 'Helvetica Neue', Tahoma, Helvetica, sans-serif;
	
	height: 100%;
	
}
body {
	color: #000;
	color: #382f2b;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Centers the page content container in IE 5 browsers. */
	background: #333333;
	background: #f1f0ed url(images/screenwriting-u-pages-hz.jpg) center top fixed;
	font-size: 13px;
	
	
}

b, bold, strong {
font-weight: bold;
}

em, italic {
font-style: italic;
}



/* Sets the style for unvisited links. */
a, a:link {
	color: #382f2b;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #382f2b;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #b50000;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}
.clear {
	clear:both;
}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
}
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	padding-left: 15px;
	margin-top: 8px;
}

/* ---------- Special Typefaces ---------- */

@font-face {
	font-family: 'ChunkFiveRegular';
	src: url('typefaces/Chunkfive.eot');
	src: local('ChunkFive'), local('ChunkFive'), url('typefaces/Chunkfive.woff') format('woff'), url('typefaces/Chunkfive.ttf') format('truetype'), url('typefaces/Chunkfive.svg#ChunkFive') format('svg');
}



/* ---------- Page Structure CSS ---------- */

#header {
	text-align: left;
	height: 75px;
	padding-left: 30px;
	background: url(images/header-bg.gif) no-repeat center top;
}
#title {
	float:left;
	font: 36px/70px 'Courier New', 'ChunkFiveRegular', Impact, Georgia, Times, serif;
	color: #FFF;
	letter-spacing: -1px;
}
#title a, #title a:link, #title a:visited {
	color: #FFF;
	text-decoration:none;
}
#title a:hover {
	color: #A8BDD5;
	text-decoration: none;
}
#headlinks {
	float:right;
	width:300px;
	text-align:right;
	color: #C1D0E1;
	padding:30px 30px 0 0;
}
#headlinks a, #headlinks a:link, #headlinks a:visited, #headlinks a:active {
	color: #C1D0E1;
	text-decoration:none;
}
#headlinks a:hover {
	color: #FFF;
	text-decoration:none;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
	border-top: 1px solid #00ff00;
}
#threeColumns { /* This sets the id for a 3 column layout */
	overflow: hidden;
	background: #FFF url(images/content-fill.gif) repeat-y left;
	width: 960px;
}
#threeColumns #leftColumn {
	float: left;
	padding: 15px 0px 10px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
#threeColumns #rightColumn {
	float: right;
	padding: 15px 30px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#threeColumns #content {
	margin: 0 205px 0 215px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 460px;
}
#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
	background: #FFF url(images/content-fill.gif) repeat-y left;
	width: 960px;
}
#twoColumnleft #content, #twoColumnright #content {
	width:580px;
}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
#twoColumnleft #rightColumn {
	display:none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnleft #content {
	margin: 0 15px 0 285px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#twoColumnright { /* This sets the id for a 2 column layout with a right column only */
	overflow: hidden;
	background: #FFF url(images/content-fill.gif) repeat-y left;
	width: 960px;
}
#twoColumnright #leftColumn {
	display:none;
}
#twoColumnright #rightColumn {
	float: right;
	padding: 25px 35px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnright #content {
	margin: 0 0px 0 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 30px 10px 30px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#footer {
	padding: 25px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: url(images/footer.gif) no-repeat left top;
	height: 48px;
	color: #C1D0E1;
	clear: both;
}
#credit {
	text-align: center;
	padding-top: 0px;
	padding-bottom: 8px;
	font-size: 11px;
	color: #456290;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
}
#credit a, #credit a:hover, #credit a:visited, #credit a:active, #credit a:focus {
	color: #456290;
	font-weight: normal;
	text-decoration: none;
}
/* ---------- Header CSS ----------  links logos*/

.mainscreenlogo {
margin-left: 15px;
margin-bottom: 10px;
}

.scriptlogo {
margin-right: 10px;
margin-bottom: 4px;
}

.toprightlinks .headerbar {
margin-right: 20px;
font-size: 11px;
}

/* ---------- Navigation CSS ----------  red bar*/

.navbg {
background: url(images/menu-bar-red.png) no-repeat;
height: 29px;
}

#navcontainer {
	position:absolute;
	height:25px;
	width:950px;
	font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Sans', Tahoma, Helvetica, Arial, Verdana, sans-serif;
}
#nav {
	position:relative;
	height:25px;
	font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Sans', Tahoma, Helvetica, Arial, Verdana, sans-serif;
	
	text-transform:uppercase;
	padding:0 0 0 15px;
	font-size: 11px;
	font-weight: normal;
}

#nav2 {
	position:relative;
	height:25px;
	text-transform:uppercase;
	padding:50 0 0 0px;
	font-size: 9px;
	font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Sans', Tahoma, Helvetica, Arial, Verdana, sans-serif;
}

#nav ul {
	margin:0;
	padding:7px 0px 0px 15px;
	list-style-type:none;
}
#nav ul li {
	display:inline;
	margin:0px;
	padding-right: 20px;
	width: auto;
}
#nav ul li a {
	color:#FFFFFF;
	text-decoration:none;
}
#nav ul li a:hover {
	color:#FFF;
}


/* ---------- Typography CSS ---------- */

h1 {
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
	/*font-size: 1.5em;*/
	font-size: 16px;
	font-weight: bold;
	font-family: 'Courier New', Georgia, Times, serif;
}
h2 {
	margin: .5em 0em;
	color: #b50000;
	/*font-size: 1.5em;*/
	font-size: 15px;
	font-weight: bold;
	font-family: 'Courier New', Georgia, Times, serif;
}
h3 

{

margin-top: 30px;

letter-spacing: -1px;

font-family: arial,helvetica,sans-serif;

font-style: normal;

font-variant: normal;

font-weight: normal;

font-size: 22px;

line-height: normal;

font-size-adjust: none;

font-stretch: normal;

color: #cc0033;

border-bottom-width: 1px;

border-bottom-style: solid;

border-bottom-color: #333333;

}
h4 {
	/*font-size: 1.2em;*/
	font-size: 12px;
	margin: .5em 0em;
	font-weight: bold;
	color: #5275AA;
	font-weight: normal;
	font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
}
h5 {
	/*font-size: 1.0em;*/
	font-size: 10px;
	margin: .5em 0em;
	font-weight: bold;
	font-weight: normal;
	font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
}
h6 {
	/*font-size: 0.8em;*/
	font-size: 8px;
	margin: .5em 0em;
	font-weight: bold;
	font-weight: normal;
	font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
}
img {
	border: 0;
}/*
p {
	font-size: 1.0em;
	line-height: 1.5em;
	margin: 1.2em 0em 1.2em 0em;
}*/
pre {
	font-family: monospace;
	/*font-size: 1.2em;*/
	background: #F4F4F4;
	margin: 15px;
	padding: 10px;
	border: 1px dotted #CCC;
}
#footer a, #footer a:link, #footer a:visited, #footer a:active {
	color: #C1D0E1;
}
#footer a:hover {
	color: #FFF;
}
/* ---------- Two Column CSS ---------- */

.csscolumns {
	overflow:hidden;
	width: 100%;
	
}
/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 



#col_one_2 {
	margin: 0;
	float: left;
	width:48%;
}
#col_two_2 {
	margin: 0 0 0 5px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:55%;
}
/* ---------- Three Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_3 {
	margin: 0;
	float: left;
	width:31%;
}
#col_two_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
#col_three_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
/* ---------- Four Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_4 {
	margin: 0;
	float: left;
	width:23%;
	padding-left: 20px;
}
#col_two_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_three_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_four_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
/* ---------- Side column menu styles ---------- */

.styledmenu {
	width: 100%; /*width of menu*/
}
.styledmenu .headerbar {
	font: bold 13px Tahoma;
	font: normal 14px 'Lucinda Grande', Tahoma, sans-serif;
	color: white;
	background: #2D4262 url(images/styled-menu-bg.jpg) no-repeat right top; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 8px; /*31px is left indentation of header text*/
}
.styledmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0; /*bottom spacing between each UL and rest of content*/
}
.styledmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
	margin: 0px;
}
.styledmenu ul li a {
	color: black;
	background: #E2E9F1;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
}
.styledmenu ul li a:visited {
	color: black;
}
.styledmenu ul li a:hover { /*hover state CSS*/
	color: white;
	background: #5A7EB4;
	text-decoration: none;
}
.simplemenu {
	width: 100%; /*width of menu*/
}
.simplemenu .headerbar {
	font: bold 13px Tahoma;
	font: normal 14px 'Lucinda Grande', Tahoma, sans-serif;
	color: #000; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 0px; /*31px is left indentation of header text*/
}
.simplemenu ul {
	list-style-type: none;
	padding: 0 0 20px; /*bottom spacing between each UL and rest of content*/
	margin: 0;
}
.simplemenu ul li {
	margin: 0px;
	padding-bottom: 2px;
}
.simplemenu ul li a {
	font: normal 12px Tahoma;
	color: black;
	background: #FFF;
	display: block;
	padding: 4px 0 4px 5px;
	line-height: 17px; /*link text is indented 8px*/
	text-decoration: none;
	border-bottom: 1px solid #E2E9F1;
}
.simplemenu ul li a:visited {
	color: black;
}
.simplemenu ul li a:hover { /*hover state CSS*/
	color: #000;
	background: #E2E9F1;
	text-decoration: none;
}
/* ---------- Common styles shared between both left and right columns ---------- */

.bodytd {
margin-top: 0px;
}



.navbg {
margin-bottom: 0px: 
}



.footerbar {
padding: 3px 0 3px 20px;
font-weight: normal;
font-size: 11px;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
border-top: 1px solid #ccc;
}

.bodywrap, .footerbar {
border-left: 1px solid #e6e3dc;
border-right: 1px solid #e6e3dc;

}

.bodywrap {
width: 958px;
padding: 0px;
margin: 0px;
}

.sidebarlt {
	padding: 6px;
	border: 1px solid #9CB1D1;
	background: #E2E9F1 url(images/sidebarlt-bg.gif) no-repeat right top;
	line-height:normal
}
.sidebardk {
	color: #000000;
	border: 1px solid #131D2B;
	padding: 6px;
	background-color: #d5eaff;
}
.sidebardk a, .sidebardk a:hover, .sidebardk a:visited, sidebardk a:active {
	color: #000000;
	text-decoration:underline;
}
.sidebarmiddle {
	color: #FFFFFF;
	border: 1px solid #000000;
	padding: 6px;
	background-color: #D5EAFF;
}

.lefttdcol {

}

.lefttdcol h1 {
padding-top: 25px;
}

.infoboxes {
padding: 0px;
margin: 0;
width: 100%;
}

.infoboxes tr {
padding: 0px;
margin: 0;
}

/*
.infoboxes #box1 {
background: #f1efec;
}

.infoboxes #box2 {
background: #e9e6e1;
}

.infoboxes #box3 {
background: #f2f4f0;
}
*/

.infoboxes td {
background: #f5f4f1;
padding: 0 8px 0 8px;
margin: 0px;
}

#box1 {
width: 36%;
}


#box2 {
width: 35%;
}

#box3 {
width: 29%;
}



.infoboxes h2 {
padding: 2px 5px 2px 5px;
text-align: left;
color: #801d13;
color: #000;
font-weight: bold; 
font-size: 14px; 
font-family: 'Courier New','GoudyBookletter1911Regular', 'Lucinda Grande', Tahoma, sans-serif;
letter-spacing:-1px;
text-transform: uppercase;
margin: 10px 0 8px 0;
border-left: 0px;
border-right: 0px;
/*background: #fff;
border: 2px dotted #fff;*/
border-top: 2px solid #d1cdc6;
border-bottom: 2px dotted #d1cdc6;

}

.infoboxes td p {
padding: 0 5px 0 5px;
margin: 0 0 8px 0;
font-size: 10px;
font-weight: bold;
font-family: 'Lucida Grande', 'Lucida Grande', Tahoma, Arial, Helvetica, sans-serif;
color: #5c5040;
color: #56534c;
line-height: 14px;
}

.infoboxes td p a {

color: #b50000;
text-decoration: none;
}
/*
.infoboxes td #p2 {
font: 11px 'CartoGothicStdBook', sans-serif;
line-height: 12px;
}


.infoboxes td #p2 {
font-family: 'Lucida Grande', sans-serif;
}*/

.introstable {
padding: 0;
margin: 0 10px 0 10px;
}

.introstable a {
text-decoration: underline;
font-weight: normal;
font-family: 'Lucida Grande';
}

h1, .introstable td h1 {
margin: 15px 0 10px 0px;
padding: 0px;
color: #b50000;
font-size: 15px;
font-weight: bold;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
text-decoration: underline;
/*
letter-spacing:-1px;
text-decoration: underline;*/
/*border-bottom: 2px solid #b50000;*/
}



h1 a, .introstable td h1 a {
color: #b50000;
text-decoration: none;
font-weight: bold;
font-family: 'Lucida Grande';
text-transform:capitalize;
}

h1 a:hover, .introstable td h1 a:hover {
color: #7D0909;
text-decoration: underline;
}

p, .introstable td p {
padding: 0px;
margin: 0 0 10px 0;
}

.introstable td {
border-top: 2px dotted #ccc;
margin: 0px;
padding: 0px;
padding: 0 10px 0 20px;
}



.introstable a:hover {

}


.loginbg {
background: url(images/pages-newsltr.jpg);
margin: 10px 0px 10px 0;
padding: 12px 0 0px 0px;
}

.loginbg .bot_wht {
background:url(images/whtr-bot.png) no-repeat;
margin: 0;
padding: 0px;
width: 197px;
height:2px;
clear: both;
display: block;
}

.loginbg .signup{
float: left;
color: #fff;
font-size: 22px;
font-family: 'ChunkFiveRegular', Impact, Georgia, Times, serif;
display:inline;
padding: 0 0 0 26px;
background:url(images/whtarrow.png) left top no-repeat;
}


.loginbg td form {
margin: 0 0 0 6px;
padding: 0;
display: block;
}


.loginbg h3 {
padding-top: 0px;
margin-top: 0px;

}

.loginbg .newstitle {
margin: 0 0 0px 0;
}
/*
.loginbg #enewstitle {

color: #5b5952;
font-size: 12px;
letter-spacing: -1px;
padding: 0px 0 5px 5px;
margin: 0px;
float: left;
line-height: 10px;
display:inline;
font-weight: bold; 
font-family: 'Courier New', Georgia, serif;

}
*/



.loginbg input {
margin: 6px 0 0 0;
font-weight: normal;
font-size: 12px;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
color: #382f2b;
color: #5b5952;
}

.loginbg .inputbutton {
	margin-bottom: 5px;
}

.loginbg .f-subscribeme, .loginbg .f-subscribeme2 {
	margin: 8px 6px 6px 0;
	padding: 0px 2px 2px 5px;
	border: 0px;
	background: transparent url(images/subscribebg.png) no-repeat;
	float: right;
	width: 103px;
	height: 14px;
	color: #ded8ce;
	font-size: 12px;
	font-weight: bold; 
	font-family: 'Courier New', Georgia, Times, serif;
	/*text-transform:uppercase;*/
}

.loginbg .f-subscribeme2 {
background: transparent url(images/subscribebg2.png) no-repeat;
color: #b50000;
}

.loginbg .f-fname, .loginbg .f-lname, .loginbg .f-email {
border: 0;
padding: 3px;
background-color: transparent;
background-image: url(images/40wht.png);
float: left;

}

.loginbg .f-email {
width: 178px;
}

.loginbg .f-fname, .loginbg .f-lname {
width: 83px;
margin-top: 8px;
}

.loginbg .f-fname {
margin-right: 6px;
}

.style3 {
padding: 0px 10px 0 0;
}

.footer {
padding: 3px 0 3px 20px;
background: url(images/lgtgrayspeckle.jpg);
color: #333333;
}

blockquote {
background: #f5f4f1;
padding: 20px;
font-size: 12px;
}

blockquote span {
padding: 0px;
margin: 0px;
font-weight: normal; 
font-size: 11px;
font-weight: bold;
font-family: 'Lucida Grande', 'Lucida Grande', Tahoma, Arial, Helvetica, sans-serif;
color: #56534c;
line-height: 14px;
}

blockquote #homepg {
padding-bottom: 10px;
width: 100%;
}

.bquotered, .bquotered a {
color: #5b5952;
font-size:10px;
}


.footerbar {
padding: 3px 20px 3px 20px;
background: #918e8c;
}

.footerbar .style1 {
padding: 0px;
margin: 2px 0 0 0;
float: left;
}

.footerbar .style1, .footerbar .style1 a {
font-weight: normal;
font-size: 12px;
font-family: 'Lucida Grande', 'Lucinda Grande', Tahoma, sans-serif;
}

.footerbar .lf {
float: right;
padding: 0px;
margin: 0px;
color: #393831;
text-decoration:none;
}

.footerbar .lftext {
margin-top: 4px;
margin-right: 5px;
padding-top: 0px;
float: left;
}


.footerbar .lf a {

color: #c4bbb5;
text-decoration:none;
}

.footerbar .lf img {
margin-top: 1px;
padding-top: 0px;
float: left;
}

/*

input {
border: 1px solid #b50000;
}

td {
border: 1px solid #00cc00;
}

div {
border: 1px solid #0000cc;
}*/
/*
#widthcheck {
background: #00cc00;
width: 960px !important;
height: 2px;
display: block;
}*/
