/*

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 CODE MAKES THE INSIDE BORDERS MATCH THE ORANGE COLOR

*/


.custom #footer { border-top: 1px solid #FF9900; }
.custom #header { border-bottom: 1px solid #FF9900;  }
.custom #sidebar_1 { border-left: 1px solid #FF9900;  border-right: 0px solid #FF9900; }
.custom #sidebar_2 { border-left: 0px solid #FF9900;  border-right: 0px solid #FF9900; }
.custom #commentform { border-top: 1px solid #FF9900;  }
.custom .post { border-bottom: 1px solid #FF9900; border-right: 0px solid #FF9900;  }





/* 

THIS CODE USES THE SAME BG COLORS TO ADD A THICK BORDER ABOVE AND BELOW THE POST PAGES 

*/

.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.6em; background: #33AFEB;}





/* 
THIS CODE ADDS A LOGO LIKE BANNER TO THE SITE 
*/

.custom #header #logo a { display: block; height: 199px; background: url(http://sophisticatedhokum.com/wp-content/uploads/2010/01/LOGO.jpg) no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; } .custom #header { padding: 0; }
.custom #header {border-bottom:none;}










/*---------------------------------*/

/* WIDGETIZED FOOTER               */

/* Mike Nichols - October 17, 2009 */

/*---------------------------------*/



/* footer widget area setup */

#footer_setup {

	/* widgetized footer background (not footer background) */

	background: #FFFFFF;

	/* widget padding */

	padding: 5px;

	/* margin at bottom of widgets */

	margin-bottom: 25px;

	/* do not change this! */

	overflow: hidden;

}



/* widget item setup */

#footer_setup .footer_items {

	/* contents alignment */

	text-align: center;

	/* widget width */

	width: 150px;

	/* space between widgets */

	padding-right: 5px;

	/* text color */

	color: #111111;



/* do not change these! */

	display: inline-block;

	float: left;

	height: 100%;

}



/* widget item headers*/

#footer_setup .footer_items h3 {

	/* font size */

	font-size: 1em;

	/* bold or not */

	font-weight: bold;

	/* uppercase or not */

	text-transform: uppercase;

	/* space out the letters*/

	letter-spacing: 0px;

	/* font color*/

	color: #FFFFFF;

	/* padding under header text */

	padding-bottom: 3px;

	/* border under header text */

	border-bottom: 0px solid #FF9900;

	/* distance between border and widget text */

	margin-bottom: 5px;

}



/* do not change these! */

#footer_setup .footer_items ul li { list-style: none; }

#footer_setup .footer_items ul { margin: 0px; padding: 0px; }







/* MAKE THE SIDEBAR MORE COLORFUL */



.custom .sidebar h3{
background:url("http://sophisticatedhokum.com/wp-content/uploads/2010/01/ORANGEBAR.jpg");
margin-left: 0em;
width:300px;
height: 20px;
font-size:1.3em;
line-height:1em;
color:#FFFFFF;
padding-top:0.2em;
padding-bottom: 0.2em;
padding-left: 0.2em;
}
.custom .widget a {color: #000000;}
.custom .widget a:visited {color: #CF0600;}




/* TABLE DEFINITIONS */



.sitetable, .sitetable TD, .sitetable TH

{

font-family:"trebuchet-ms", verdana;

font-size:0.938em;

color:#000000;

background-color:#FFFFFF;

}

.sitetable TD a:link {

text-decoration: none;

color:#000000;

}

.sitetable TD a:visited {

text-decoration: none;

color:#990033;

}

.sitetable TD a:hover {

text-decoration: underline;

color:#329900;

}

