/*--------------------------------------------------
Title: Pinewood Studios Basic CSS
Author: Matt Hobbs
Email: m.r.hobbs@gmail.com
Contents:
		Basic CSS (Body & Links)
		Overall Wrapper
		Right Column
		Hide Left Nav (If Needed)
		Skip to Content (Hidden)
--------------------------------------------------*/

/*--------------------------------------------------
Basic CSS (Body & Links)
--------------------------------------------------*/
/*html {
	background : url(null) fixed no-repeat;
	}
	*/

body {
	margin: 0;
	font-size: 62.5%;
	background: #FFF url(../images/im_background_gradient.png) repeat-x 0 0;
	font-family: verdana, ariel, serif;
	text-align: center;
	}
/*----------START OF ADDED----------*/
.grey {
	color: #606061;
	}
.red {
	color: #ba2121;
	}
.org_list {
	color: #E77D00;
	}
/*----------END OF ADDED----------*/
a:link, a:active, a:visited {
	color: #606061;
	text-decoration: none;
	}
a:hover {
	color: #E77D00;
	text-decoration: none;
	}
	
/*----------START OF ADDED----------*/
a.org:link , a.org:active , a.org:visited  {
	color: #E77D00;
	text-decoration: none;
	}
a.org:hover {
	color: #606061;
	text-decoration: none;
	}
	
/*----------BEGINS SAMS EDIT----------*/
a.new:link, a.new:active, a.new:visited {
	font-size: 95%;
	color: #E77D00;
	text-decoration: none;
	}
a.new:hover {
	color: #606061;
	text-decoration: none;
	}
/*----------CONT..---------*/
a.new.org:link , a.new.org:active , a.new.org:visited  {
	color: #E77D00;
	text-decoration: none;
	}
a.new.org:hover {
	color: #606061;
	text-decoration: none;
	}
/*----------END SAMS EDIT.---------*/
	
/*----------END OF ADDED----------*/
a img {
	border: 0;
	}
h2 { 
	text-transform: uppercase; 
	}
/*--------------------------------------------------
Overall Wrapper
--------------------------------------------------*/
#wrapper {
	width: 800px;
	margin: 0px auto;
	padding: 0;
	text-align:left;
	background: #fff;
	}
/*--------------------------------------------------
Right Column
--------------------------------------------------*/
#contentright {
	width:182px;
	padding: 0;
	float: right;
	margin: -2px 4px 0 0;
	margin /**/: 0 8px 0 0;
	}
#content_third_column {
	width: 182px;
	padding: 0;
	float: right;
	margin: 0;
	}
/*--------------------------------------------------
Hide Left Nav (If Needed)
--------------------------------------------------*/
.no_show {
	visibility: hidden;
	}
/*--------------------------------------------------
Skip to Content (Hidden)
--------------------------------------------------*/
.skip {
	display: none;
	}
/*--------------------------------------------------
Remove Margins From Forms
--------------------------------------------------*/
form {
	margin-top: 0;
	margin-bottom: 0;
	}