/*This section controls the overall look of the page. Background color and image, text style*/
body {
	background-color:#000000;
	background-image:url(../images/bgskyline.jpg);
	background-position: top;
	background-repeat: repeat-x;
	background-attachment: absolute;
	color:#FFFFFF;
	font-size:13px;
	font-family: Arial, Arial, Helvetica, sans-serif;
	line-height:1.5em;
}
/*sets margins for paragraphs so that they align with liinks at top of page*/
p { 
	margin: 0 0 20px 0;
}
/*determines look and feel of headers at top of page*/
h2 {
	margin: 0 0 20px 0;
	/*text-align: center;*/
	font-size:18px;
	font-weight: bold; 
}
/*Deturmins look and feel of subheadings */
h3 {
	font-size:16px;
	margin:40px 0 20px 0px;
	font-weight: bold;
}

/*Determins how links look on rollover and click */
a:link { 
	color:#cccc99;
	text-decoration: none;
}
a:visited { 
	color:#cccc99;
	text-decoration: none;
}
a:hover {
	color:#FFFFFF;
	text-decoration: none;
 }
a:active {
	color:#cccc99;
	text-decoration: none;
 }

/*Contains cacao logo */
#header {
	position: absolute;
	background-image:url("../images/bglogo.jpg");
	background-repeat:no-repeat;
	background-position: center;
	height: 301px;
	width: 100%;
	top: 0;
	left: 0;
}

/*Holds content, links and footer */
#container {
	width: 600px;
	/*To make the container div align with the center of the page, Set absolute position left to 50%. Set margin-left to half of the width of the container(300px).*/
	position: absolute;
	top: 301px;
	left: 50%;
	margin-left: -300px;
	padding: 0;
	height: 306px;
}
/*contains navagation links */
#navbar {
	width:200px;
	float: left;	
}
/*Determins look and feel of navigation links */
#navlist {
	
	font-size: 21px;
	font-weight: bold;
	text-transform: lowercase;
	list-style: none;
	margin: 0;
	padding: 0;
}
/*Spacing between nav links */	
#navlist li{
	padding: 0 0 1.5em 0;
}
/*Ensures that nav links look the same even when page has been visited already */
#navlist a:link, a:visited {
	text-decoration: none;
}
/*Contains content for every page */
#content{
	width:400px;
	float: right;
	top: 0px;
}


/*Sets postion and spacing for images in special links with images on projects page */
.picturelink{
	/*border: solid #005500;*/
	width: 400px;
	padding: 0 35px 0 35px;
	margin: 20px 0 20px 0;
	vertical-align: middle;
	text-align: left;
}
/*Sets font size for special links with images on projects page */
.picturelink h3{
	font-size: 21px;
	margin: 0;
}
/*Sets spacing around special links with images on projects page */
.picturelink td{
	padding: 15px 0 15px 0;
}
/*Determins positioning for images in special links with images on projects page */
.picturelink img{
	float: right;
}

/*Determins size of table that contains cast info */
.cast{
	height: 135px;
	width: 400px;
	margin-bottom: 10px;
}
/*Settings for the cast table cells */
.cast td{
	text-align: left;
	padding:0 0 10px 0;
}
/*Sets postition of images in the cast table*/
.cast img{
	float: left;
}
/*Sets width for the images column in cast table*/
.castpicscol{
	width: 110px;
}

/*Settings for the appearances and filmmakers lists*/
.projectlist{
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 2em;	
}

/*Settings for News Scrollbox*/
#newsbox{
	width: 400px;
	height: 250px;
	overflow: auto;
}
/*Settings for news table*/
#newstable td{
	padding-bottom: 20px;	
}
/*Settings for date column in news table*/
.newsdate{
	font-weight: bold;
	vertical-align: top;
	padding-right: 10px;
}
/*Settings for the contact info table on contact page*/
#contacttable{
	width: 400px;
	padding: 0;	
}
/*Settings for cells in the contact info table on contact page*/
#contacttable td{
	padding: 0 0 20px 0;
	margin: 0;
}

/*Spacing for contact list on friends page*/
#friendslist{
	margin: 0;
	padding: 0;	
}
/*Settings for contact list on friends page*/
#friendslist li{
	list-style: none;
	margin-bottom: 1.5em;
}

/*This divider makes sure the footer never passes goes higher than the navigation links*/
/*.prop {
    float:right;
    width:1px;
    height: 600px;
    background-color: #00ff00;
}*/

/*Settings for footer*/
#footer{
	font-size: 12px;
	width: 600px;
	text-align:center;
	padding:40px 0 0 0;
	margin:0px 0 20px 0px;
	vertical-align:top;
	clear:both;
}
/*Spacing for address section of footer*/
#addressbox{
	margin: 0 0 0 200px;
}
