/********************************
Stylesheet template for filmpages 
	of www.thomasginn.nl
Coded, written, slaved on,
and copyrighted by Thomas Ginn.
*********************************/

/*******************************************************
This stylesheet is divided up in three sections:
- Layout
Contains divs, classes and their properties.

- Color
Contains anything that concerns color, also text color, 
borders and images, except for the background images of 
the navigation. They are located in the layout section.

- Typographical
Contains anything that concerns text, except color
********************************************************/


/**************************
Normalizing before we start
**************************/

/* Padding */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td
{
	margin: 0;
	padding: 0;
}

/* Font-size for headers */
h1, h2, h3, h4, h5, h6
{
	font-size: 100%;
}

/* Removes list-style from lists */
ol, ul
{
	list-style: none;
}

/* Font-style and font-weight */
address, caption, cite, code, dfn, em, strong, th, var
{
	font-style: normal;
	font-weight: normal;
}

/* Removes borders and spacing from tables */
table
{
	border-collapse: collapse;
	border-spacing: 0;
}

/* Removes border from fieldset and img */
fieldset, img
{
	border: 0;
}

/* Left-aligns text in caption and table header */
caption, th
{
	text-align: left;
}

/* Removes quotation marks from q */
q:before, q:after
{
	content:'';
}

/* Links are treated like normal, blue text */
a, a:hover
{
	color: blue;
	text-decoration: none;
}

/*****
Layout
******/

html
{
	text-align: center;
}

body
{
	width: 100%;
	height: 100%;
	text-align: left;
}

div#background-line
{
	width: 100%;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
}

div#container
{
	position: relative;
	width: 785px;
	margin: 0 auto ;
}

div#nav_main
{
	width: 785px;
	height: 50px;
}
	
	div#nav_main li
	{
		display: inline;
		float: left;
		margin-left: 15px;
		margin-top: 15px;
	}
	
	div#nav_main li a
	{
		padding: 0 0 0 98px;
		overflow: hidden;
		background-repeat: no-repeat;
	}
	
	#nav_home { 
	width: 73px; 
	height: 24px; 
	overflow: hidden;
	background-image: url('../images/nav_home.png'); background-position: -15px 0px; background-repeat: no-repeat; }
	#nav_home:hover { background-position: -118px 0px; }
	
	#nav_portfolio { 
	width: 98px; 
	height: 24px; 
	overflow: hidden;
	background-image: url('../images/nav_portfolio.png'); background-position: 10px 0px; background-repeat: no-repeat; }
	#nav_portfolio:hover { background-position: -93px 0px; }
	
	#nav_links { 
	width: 66px; 
	height: 24px; 
	overflow: hidden;
	background-image: url('../images/nav_links.png'); background-position: -22px 0px; background-repeat: no-repeat; }
	#nav_links:hover { background-position: -125px 0px; }
	
	#nav_contact { 
	width: 93px; 
	height: 24px; 
	overflow: hidden;
	background-image: url('../images/nav_contact.png'); background-position: 4px 1px; background-repeat: no-repeat; }
	#nav_contact:hover { background-position: -99px 1px; }
	
div#content
{
	width: 100%;
	min-height: 530px;
	padding-bottom: 20px;
}

	div#content p
	{
		margin-left: 0px;
		padding: 15px 15px 0 15px;
		width: auto;
	}
	
	div#content object
	{
		margin-left: 180px;
		margin-top: 40px;
	}
	
	div#content embed
	{
		margin-top: 40px;
	}

	div#film-list
	{
		margin-top: 40px;
		margin-left: 180px;
	}
		
		div#film-list p
		{
		margin-left: 0;
		margin-bottom: 5px;
		width: 425px;
		padding: 0;
		}
		
		div#film-list object
		{
			margin: 0;
			margin-bottom: 40px;
			margin-top: 10px;
		}
		
		div#film-list embed
		{
			margin: 0;
		}
	
div#footer
{
	height: 30px;
	width: 784px;
}

	div#footer p
	{
		padding-left: 10px;
		padding-top: 3px;
	}

/****
Color
*****/

body
{
	color: #fff;
	background: #000;
}

	body a, a:hover
	{
		color: #fff;
	}
	
	body a:hover
	{
		border-bottom: dotted 1px #fff;
	}

div#background-line
{
	border-bottom: #009944 1px solid;
}

div#container
{
	border-right: 1px solid #009944;
	border-left: 1px solid #009944;
	border-bottom: 1px solid #009944;
}

div#nav_main
{
	border-bottom: 1px solid #009944;
}

	div#nav_main a:hover
	{
		border: none;
	}

div#footer
{
	border-top: 1px solid #009944;
}

/*********
Typographical
**********/

body
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 24px;
}

div#footer p
{
	font-size: 11px;
}
	
p.title
{
	font-weight: bold;
}	

p.description
{
	font-size: 12px;
}	

	