/*
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/
*/

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 200px; width: 960px; background: url('../custom/images/ceoblog.png') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }


/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/*---:[ Set 4: image of clouds that gently slides into a steely blue background color ]:---*/

body.custom { 
	background: #EEFFD6 url('http://www.ceopalmoil.com/download/images/ceo_palmo_bground.jpg') 50% 0 no-repeat; 
}

	.custom #container { margin-top: 2em; margin-bottom: 2em; }

		.custom #page { background: #fff; }

/*---:[ end Set 4 ]:---*/

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
	padding: 1em; 
	background: #bac0ad; 
	border: 0.5em solid #cdd4bd;
}

.custom #page {
    background: #ffffff;

}

.announce_box {
background-color: #FFFF99;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FF9900;
	border-right-color: #FF9900;
	border-bottom-color: #FF9900;
	border-left-color: #FF9900;
	padding: 5px;
	margin: 10px;
	text-align: justify;
}

.custom_image{
	padding:5px;
	background-color:#dfdfdf;
}

/* DOMtabs skin by Michael Martin - http://www.problogdesign.com */
/* DOMtabs script - http://www.onlinetools.org/tools/domtabdata/ */
/* Install guide: http://www.problogdesign.com/general-tips/how-to-install-domtabs-on-wordpress/ */

ul.domtabs li.active {background:#727202;}		/* Active tab background color */
ul.domtabs li:active a {color:#ffffff;}		/* Active tab font color */
ul.domtabs li {background:#888888; list-style:none;}			/* Inactive tabs background color */
ul.domtabs li a {color:#ffffff;}				/* Inactive tabs font color */
ul.domtabs li {border-color:#000000;}			/* Tabs border color */
.domtab div {border:1px solid #000000;}					/* Box border color - Should be the same as the Active tab background color */
.domtab div {background:#ffffff;}						/* Box background color */

ul.domtabs li {margin-right:0.5em;}			/* Space between each tab. Set to 0 for no space. */

div.domtab div {
	display:none;
	}

ul.domtabs {
    font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
	list-style:none;
	padding:5;
	margin:5;
	}

ul.domtabs li {
	float:left;
	padding:0 0.5em;
	text-align:center;
	border-style:solid;
	border-width:1px 1px 0 1px;
	}


ul.domtabs li a {
	text-decoration:none;
	}

.domtab div {
	border-width:1px 1px 1px 1px #727202;
	border-collapse:collapse;
	padding:0.5em;
	clear:both;
	list-style:none;
	}

.sidebar ul.sidebar_list {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}