/*
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/
*/


/*KRISTALLA FULL WIDTH HEADER */

.custom #header_area {height: 137px; background:url('images/top-rpt.png') repeat; outline: none;}
	.custom #header_area .page {background:transparent;}
		.custom #header {border-bottom:0;}

.custom #header_area .page  {height: 137px; width: 97.7em; background:  url('images/WMT.png') no-repeat; outline: none; }


/* This line gets rid of the site title & tagline by casting them out to the far left */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

.custom #header #logo a {width:100%; height:150px;}





/* === ADD CUSTOM BACKGROUND color CSS === */

body.custom {
    background: url('images/blue-rpt.png') repeat; outline: none;}

.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 10em; background: #33332f; border: 4em solid #3e3e3a; }


.custom #container {
    margin-top: 0em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #000000;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}











/* === remove comments on the entry are closed - css === */

.format_text .to_comments {visibility: hidden;}


/* === FOOTER === */
.custom #footer {padding:1.1em 0; background-color:#eeeeee }

.custom #footer .sidebar {border:solid #000; border-width:0.1em 0; padding-top:2.2em; margin-bottom:1.1em; float:left; width:100%;}
	.custom #footer ul.sidebar_list {}
		.custom #footer li.widget {float:left; width:23%; padding-right:2%; text-align:left; margin-bottom:22px;}






/* === NAV FROM MINI BY KRISTARELLA - top line moves the nav bar up and in to the right=== */
.custom ul.menu {border: none; margin: 0em 2em 0 1em;}
	.custom ul.menu li {}
	.custom ul.menu li.rss {float:right;}
		.custom ul.menu li.rss a:hover {background-color:transparent; text-decoration:underline; color:#111;}
		.custom ul.menu li a:hover {text-decoration:none;}
		.custom ul.menu li.current a, .custom ul.menu li.current-cat a {border-bottom:0.3em solid #9FBF1E;}
		.custom ul.menu li.current-parent a {color:#111;}
		.custom ul.menu li.current-parent a:hover {background-color:#555;}

/* dropdowns */
		.custom ul.menu ul {border-bottom:0;}
				.custom ul.menu ul li a {color:#fff; background-color:#555;}
					.custom ul.menu ul li a:hover {background-color:#000;}
					
					.custom ul.menu ul li.current a {color:#fff; background:#777; border-bottom:0;}
		
					.custom ul.menu ul ul a {background:#000;}
					.custom ul.menu ul ul a:hover {background:#ccc;}



/* REMOVE BORDER AROUND MULTIMEDIA BOX */
#image_box img{border:none; background:#ffffff;}

/***COLOUR THE SIDEBAR ***/


.custom #content_box {background-color:#fff;}
.custom #content {background-color:#fff;}

