/*
* Title: master.css
* Description: Style Sheet
* Copyright: Copyright 2007(c) Dawn Holmberg
* Company:[optional]
* Created on February 9, 2007
*
* @author Dawn Holmberg
* @version 1.0 [optional]
*/



/* This will get rid of all padding and margins to start with. 
*
	{
	padding: 0;
	margin: 0;
	}
*/

body
	{
	background-color: #ffc;
	color: black;
	font-family: Verdana, Arial, sans-serif;
	font-size: medium;
	text-align: center;
	}

/* Use a style to remove the underline from every link on your site. This must work on all types of links. */

a
	{
	text-decoration: none;
	}



h1
	{
	text-align: center;
	}

h3
	{
	text-align: center;
	}
	
img
	{
	border: 0;
	}	


/********************** This is for the content portions. *********************************************************/

/* This is for the top three elements on the page--logos and headline. */

#tophead
	{
	height: 126px;
	width: 850px;
	margin: 16px;
	}


/* This is for the news update panel */

#newsupdates {
	background-color: #CCC;
	clear: both;
	float: left;
	width: 13em;
	height: 62em;
	margin-left: 0.75em;
	margin-right: .75em;
	padding-left: .5em;
	text-align: left;
	font-size: small;
	}
	
/* Sets the text size and the color for entries in the News Updates.*/

.strong
	{
	font-weight: bold;
	font-size: small;
	color: green;	 
	}
.strongLink
	{
	font-weight: bold;
	}

.notice
	{
	font-weight: bold;
	font-size: large;
	color:#CC00FF;
	}	

/* This works on the main contents of the page. */
#contents {
	float: left;
	width: 40em;
	padding-top: .5em;
}

.contentLeft   /* This is for the movies divs */
	{
	/* clear: right;  */
	float: left;
	padding-top: 1em;
	}
	
	
.contentRight  /* This is for the movies divs */
	{
	width: 54em; 
	}	

#contents li{
	margin-left: .75em;
	}

#wholecontent
	{
	padding: .5em;
	text-align: left;
	}

#mainBody
	{
	margin-left: 5%;
	margin-right: 5%;
	text-align: left;
	width: 68em;
	}
	
.movies
	{
	float: left;
	}	
	

#footer
	{
	clear: both;
	float: left;
	font-size: xx-small; 
	text-align: center;
	padding-top: .75em;
	}		

/*************************** nav codes ***************/
/*Code from Listamatic: Clagnut css tabs at: http://css.maxdesign.com.au/listamatic/horizontal10.htm
This is supposed to work with IE5+ and other browsers.
*/
	
#navcontainer
	{
	margin: 0;
	font-size: 9pt;  /* Added to make the type smaller so that the links will fit. */
	padding: 0 0 0 10px;
	clear: both;
	width: 925px;
	}

#navcontainer ul
	{
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
	}

#navcontainer li
	{
	display: block;
	margin: 0;
	padding: 0;
	float: left;
	width: auto;
	}

#navcontainer a
	{
	color: #ffc;
	display: block;
	width: auto;
	text-decoration: none;
	background: #3C3;
	margin: 0;
	padding: 2px 10px;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-right: 1px solid #aaa;
	}

#navcontainer a:hover, #navcontainer a:active
	{
	background: #0f4;
	color: #444;
	}

#navcontainer a.active:link, #navcontainer a.active:visited
	{
	position: relative;
	z-index: 102;
	background: #bbb;
	font-weight: bold;
	}

#subnav
	{
	position: relative;
	top: -1px;
	z-index: 101;
	margin: 0;
	padding: 0px 0 3px 0;
	background: #bbb;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #aaa;
	}

#subnav ul
	{
	list-style: none;
	margin: 1px 0 0px 13px;
	padding: 0px;
	border-right: 1px solid #fff;
	border-left: 1px solid #aaa;
	}

#subnav li
	{
	position: relative;
	z-index: 102;
	display: block;
	margin: 0;
	padding: 0;
	float: left;
	width: auto;
	}

#subnav a
	{
	color: #fff;
	display: block;
	width: auto;
	text-decoration: none;
	margin: 0;
	padding: 2px 12px 2px 10px;
	}

#subnav a:hover, #subnav a:active
	{
	color: #444;
	}
	
#subnav a.active:link, #subnav a.active:visited
	{
	color: #444;
	}
	
#subnav br, #navcontainer br
	{
	clear: both;
	}
	
