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

/*Removing logo and lessning header*/
.custom #header { padding: 0px; border: none; }
.custom #logo { display: none; }


body.custom { background: #eed url('images/bg_body.png') left top repeat-x;}
.custom #content_box { background: #fff url('images/bg_wrap.png') center top repeat-y; }
.custom .post_box { padding-right: 0px; margin-right: 42px; margin-left: 10px; }

.custom img.frame { background-color: #eed; }
.custom .wp-caption { background-color:#eed; }

/*tabs */
.custom ul.menu li a:hover {
  text-decoration: none;
}
.custom ul.menu li a {
  text-transform: none;
}
.custom ul.menu ul.submenu {
  border: none;
}
.custom ul.menu {
	padding-left: 208px;
	background-color: #048;
	height: 103px;
	border-left: none;
	border-bottom: none;
	background-image: url(images/logo_top.png);
	background-repeat: no-repeat;
	background-position: 0px 20px;
}
.custom ul.menu li.tab {
	top: 69px;
}
.custom ul.menu li.tab-home a {
  border-left: 1px solid #048;
}
.custom ul.menu li.tab a {
  border-bottom: #78b;
  margin-right: 5px;
  padding: 7px;
  font-size: 1.4em;
  letter-spacing: normal;
}


.custom ul.menu li.rss {
  display: none;
}




.custom #sidebar_1 ul.sidebar_list {
	background-image: url(images/logo_bottom.png);
	background-repeat: no-repeat;
	background-position: 38px top;
	padding-top: 78px;
	padding-left: 38px;
}


/* Widgets */
.custom li#flexipages-2.widget h3 {
   display: none;
}
.custom li#events-list.widget h3 {
	border-bottom: solid 1px #093;
}
.custom li#flexipages-2.widget, .custom li#events-list.widget {
	padding-top: 5px;
	padding-bottom: 5px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #b00;
}
.custom .widget {
	margin-bottom: 10px;
}
.custom li#events-list.widget {
	border-top-color: #093;
	padding-top: 0px;
}
.custom li#flexipages-2.widget ul li {
	margin-bottom: 5px;
}
.custom li#flexipages-2.widget a {
	display: block;
	padding: 5px;
	background-color: #eed;
}
.custom li#flexipages-2.widget a:hover {
	background-color: #DDB;
	color: #B00;
}
