/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

body {background: url('images/background.jpg') no-repeat top center;line-height:1.5em;font-size:12px;}
#content_area.full_width .page {background: transparent;width:960px;}
#content_area {background:url('images/bg_35.png') repeat 0 0;margin:0 auto 100px;}

#container, #page, #header_area, #rss_block, #content_box, #content, #content_area {width:960px;}

#content {background:url("http://www.evezone.nl/wp-content/uploads/2010/05/content_footer.png") no-repeat scroll left bottom transparent;
float:left;
height:250px;}

#sidebars, .post_box {display:none;}

/* header */
#header_area {height:100px;background:url('images/header.png') no-repeat top center;margin:30px auto;}

/* menu */
.menu {background:url("images/bg_35.png") repeat scroll 0 0 transparent;border-width:0;float:left;margin:20px 0;padding:0 0 0 51px;width:910px;}
.menu, .menu a, .menu li ul {border-color:#000000;}

/* custom rss block */
#rss_block {margin:30px 0 0 0;padding:0 20px 0 20px;}
#rss1, #rss2 {width:450px;float:left;}
#rss1 {margin: 0 20px 0 0;}
#rss1 h3, #rss2 h3 {width:450px;height:20px;background:url('images/rss_head.jpg') 0 0;}
#rss2 h3{background:url('images/rss_head.jpg') 0 -20px;}
#rss1 ul, #rss2 ul {padding:8px 0 0 10px;width:438px;border:1px solid #6a6a72;background:url('images/bg_35.png') repeat 0 0;}
#rss1 li, #rss2 li {height:20px;list-style:none;background:url('images/list_img.png') no-repeat 0 0;margin:0 0 8px;padding:0 0 0 30px;filter:alpha(opacity=50);-moz-opacity:0.5;-khtml-opacity: 0.5;opacity: 0.5;} 
#rss1 li:hover , #rss2 li:hover {filter:alpha(opacity=100);-moz-opacity:1;-khtml-opacity:1;opacity:1;}
#rss1 a, #rss2 a {color:#FFF;}

/* CUSTOM FOOTER NAVBAR */
#footer_overlay {width:100%;height:70px;position: fixed;bottom:35px;background:url("images/footer_overlay_bg.png") repeat-x scroll 0 9px transparent;}
#footer_overlay #mmozone_logo {width:960px;height:70px;background:url('images/footer_overlay.png') no-repeat 0 0;margin: 0 auto 0 auto;}

#footer, #header { margin: 0; padding: 0;}

#footer_area .page {width:100%;height:35px;background:#1B1B1B;position:fixed;bottom:0;margin:0;padding:0;text-align:left;}
#footer {width:960px;height:30px;margin: 0 auto 0 auto;text-align:left;}
#footer a {border:0;color:#fff;}
#footer a:hover {border:0;color:#888;}

ul.navbar {list-style: none;padding: 6px 0 0 0;font-size: 1.2em;float: right;}

ul.navbar #forum_menu, ul.navbar #community_menu, ul.navbar #mmozone_menu  {
	float: left;
	margin: 0;
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
	width: 184px;
	height: 25px;
	background: url('images/navbar.gif') no-repeat 0 -25px;
}
ul.navbar #community_menu {padding:0;}

ul.navbar #forum_menu:hover, ul.navbar #community_menu:hover, ul.navbar #mmozone_menu:hover  {
background: url('images/navbar.gif') no-repeat 0 0;
}
ul.navbar li span ul li a, ul.navbar li span a {display:block;font-weight:bold;padding:4px 0 0 6px;text-decoration:none;font-size: 12px;}

ul.navbar li a:hover{background:url(images/navbar_hover.gif) no-repeat center top;}
ul.navbar li span { /*--Drop down trigger styles--*/
	width: 184px;
	height: 25px;
	display: block;
}
ul.navbar li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	bottom: 25px;
	background: #333;
	margin: 0; 
	padding: 0;
	display: none;
	float: right;
	width: 184px;
	border: 0;
}
ul.navbar li ul.subnav li{margin:0;padding:0;bottom:0;clear:both;	width:184px;background:#1B1B1B;}
ul.navbar li ul.subnav li:hover{background:#484848;}

/* eve ad */
#eve_ad {width:960px;margin:50px 0 0 0;float:left;text-align:center;}
#eve_ad img {border:1px solid #6a6a72;} 