@charset "UTF-8";
/* CSS Document */


/**** MAIN ELEMENTS ****/

html{
		height: 100%;
	}

body {
	margin: 0 auto;
	font-size: 12pt;
	font-family: Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	height: 100%;
	background: url(../img/brickwall.jpg) no-repeat center 30px #000000;
}

img { /* removes outline from images */
	outline: none;
	border: none;
}

a { /* removes outline from links */
	outline: none;
}

.wrapper { /* size and location of all content */
	width: 910px;
	position: relative;
	top: 75px; /* 50px + 25px compensation for menuUL (see below) */
	margin: 0 auto;
}

h1 {
	font-size: 14pt;
	font-weight: bold;
	padding: 0;
	text-align: left;
}

h2 {
	font-size: 12pt;
	font-weight: bold;
	margin: 0;
	padding: 0;
	text-align: left;
}

p {
	text-align: left;
}

.both { /* stops elements from floating next to eachother */
	clear: both;
}

ul.no_indent {
		margin: 0px 15px;
		padding: 0px;
		white-space: nowrap;
	}
	
ul.no_indent li {
		margin: 0 0 10px 0;
	}
	
ul.bare, ul.bare li, .bare li, li.bare {
	margin: 0px 15px 0 0;
	padding: 0px;
	list-style-type: none;	/* No bullets */
}
	
a:link { color: #FFFFFF; text-decoration: none; }
a:visited { color: #FFFFFF; text-decoration: none; }
a:hover { color: #FBC926; text-decoration: none; }
a:active { color: #FFFFFF; text-decoration: none; }

a.small_link:link { color: #FBC926; text-decoration: none; }
a.small_link:visited { color: #FBC926; text-decoration: none; }
a.small_link:hover { color: #FFFFFF; text-decoration: none; }
a.small_link:active { color: #FBC926; text-decoration: none; }

a.small_link {
	position: relative;
	font-weight: bold;
	text-align: left;
}

#list_padding li {
	padding: 0 0 10px 0;
}

.picture_float_right {
	position: relative;
	float: left;
	padding-right: 15px;
}

.float_left {
	position: relative;
	float: left;
}

/**** HEADER ****/

.header {
	/*margin: 0 auto; 
	padding: 0 150px;*/ /* IE6 width and background jumping fix */
	position: relative;
	height: 70px;
	/*font-weight: bold;
	text-align: center;
	width: 900px;*/
	z-index: 2000;
	white-space: nowrap;
}

html>body .header { /* All other browsers */
	/*padding: auto;*/
}

/*************************** CSS DROP DOWN MENU ***************************/
/**** credit: http://matthewjamestaylor.com/blog/centered-dropdown-menus ****/

/* Main menu settings */
#menuUL {
	clear:both;
	float:left;
	margin:0;
	padding:0;
	width:100%;
	z-index:2000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
}

/* Top menu items */
#menuUL ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#menuUL ul li {
	margin:0 0 0 1px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#menuUL ul li img {
	position: relative;
	top: -25px; /* moves logo up MUST ADD 25PX WRAPPER POSITION TO COMPENSATE */
}
#menuUL ul li a {
	display:block;
	margin:0;
	padding:.6em 1.5em .4em;
	text-decoration:none;
	color:#fff;
}
#menuUL ul li.active a { /* Turns menu links yellow when given the active class */
	color:#FBC926;
}
#menuUL ul li a:hover {
	color:#FBC926;
}
#menuUL ul li:hover a,
#menuUL ul li.hover a { /* This line is required for IE 6 and below */
	color:#FBC926;
}

/* Submenu items */
#menuUL ul ul {
	display:none; /* Sub menus are hidden by default */
	position:absolute;
	top:2em;
	left:0;
	float:left;
	right:auto; /*resets the right:50% on the parent ul */
	width:11em; /* width of the drop-down menus */
	font-weight: normal; /* Resets bold in submenu */
	line-height: .3em;
}

#menuUL ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	clear:left;
	float:left;
	width:100%;
}


#menuUL ul ul li a,
#menuUL ul li.active li a,
#menuUL ul li:hover ul li a,
#menuUL ul li.hover ul li a { /* This line is required for IE 6 and below */
	background:#101010;
	color:#fff;
	/*line-height:1.4em;*/ /* overwrite line-height value from top menu */
	float:left;
	width:100%;
}

#menuUL ul ul li a:hover,
#menuUL ul li.active ul li a:hover,
#menuUL ul li:hover ul li a:hover,
#menuUL ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:#000000; /* Sub menu items background colour */
	color:#FBC926;
	float:left;
}
#menuUL ul li.active ul li.active a {
	background:#000000; /* Turns submenu links yellow when given the active class */
	color:#FBC926;
}

/* Make the sub menus appear on hover */
#menuUL ul li:hover ul,
#menuUL ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}

/* makes text yellow */
a.yellow:link { color: #FBC926; }
.yellow a:link { color: #FBC926; }
.yellow { color: #FBC926; }

/**** CONTENT WRAPPER ****/

.content_wrapper {
	position: relative;
	margin: 15px 0 0 0;
	padding: 0 0 25px 0;
	z-index: 1;
}

.content_wrapper_black {
	position: relative;
	background-color: #000000;
	margin: 0 auto;
	padding: 10px 0 30px;
	z-index: 1;
}

.main_content {
	position: relative;
	width: 860px;
	margin: 10px auto;
	z-index: 1;
}


/**** CONTENT BOX ****/

.column {
	float: left;
	width: 230px; /* For IE */
	margin: 0 15px 0;
	position: relative;
	z-index: 1;
}


html>body .column { /* All other browsers */
	width: 250px;
}


/**** FOOTER ****/

.footer {
	position: relative;
	top: 30px;
	text-align: center;
	height: 200px; /* IE only */
	padding: 0 0 5px;
	white-space: nowrap;
	clear: both;
	float: none;
	zoom: 1;
}

html>body .footer { /* All other browsers */
	height: auto;
}

.footer p {
	text-align: center;
	white-space: nowrap;
	position: relative;
	clear: both;
	float: none;
	zoom: 1;
}

.footer_index {
	position: relative;
	text-align: center;
	height: 150px; /* IE Only */
	padding: 0 0 5px;
	white-space: nowrap;
}

html>body .footer_index { /* All other browsers */
	height: auto;
}

.footer_index p {
	text-align: center;
	white-space: nowrap;
	position: relative;
}

.foot_links {
	margin: 0 0 30px 0;
	font-weight: bold;
	text-align: center;
	position: relative;
	clear: both;
	float: none;
	zoom: 1;
}

.foot_links a:link { color: #FFFFFF; text-decoration: none; font-weight: bold; }
.foot_links a:visited { color: #FFFFFF; text-decoration: none; font-weight: bold; }
.foot_links a:hover { color: #FBC926; text-decoration: none; font-weight: bold; }
.foot_links a:active { color: #FFFFFF; text-decoration: none; font-weight: bold; }