/*
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.custom{ background-image: url(images/bodyBg.gif); background-repeat: repeat-x;}
#header{ height: 150px; background-image: url(images/bodyBg.gif); background-repeat: repeat-x; background-position: 0 -50px; padding:0; border:0;}
#header a{ font-size: 40px; }
#logo{ padding: 50px 10px; 30px 600px;  background-image: url(images/logo.gif); background-repeat: no-repeat; background-position: 100px 20px; text-align:right; }
#logo a ,#logo a :hover{ color: #2B6E4D; }
a, h2 a:hover, #logo a:hover { color: #2B6E4D; }

#tagline{ padding: 0 10px; 0 600px; margin-top: -50px; font-style: italic; font-weight: bold; text-align:right; }
ul.menu{ background-image: url(images/bodyBg.gif); background-repeat: repeat-x; padding: 18px 0 18px 30px;  }
ul.menu .tab{ border-left: 0px;  }

.menu table { bottom: 0; }
.nav, .menu li ul { border-width: 0; }
.menu li { margin-bottom: 0; }
	.menu li ul { margin-top: 0; }
	.menu ul ul { margin-top: 0; }
.menu a { font-size: 12px; padding: 0; border-width: 0; border-left-width: 0; background-image: url(images/bodyBg.gif); text-transform:none; letter-spacing:0;}
.menu ul a { width: 11.818em; border-left-width: 0; }
.menu li{ padding: 0 10px 0 10px; border-left: 1px solid #ffffff; }
/*---:[ nav colors ]:---*/
.menu, .menu a, .menu li ul {border:0; }
.menu .current a, .menu .current-cat a { border:0; }
.menu ul .current a, .menu ul .current-cat a, .menu .current ul a, .menu .current-cat ul a { border:0; }
.menu a, .menu .current ul a, .menu .current-cat ul a { color: #ffffff; background: #2a6145; }
.menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover {  color: #ffffff; background: #2a6145; }
.menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {  color: #ffffff; background: #2a6145; font-weight: bold;  }
.menu .current-parent > a, .menu .current-cat-parent > a {  color: #ffffff; background: #2a6145; }

#content{ background-color: #FFFFFF; }
#content_box { background: none; padding-top: 15px;  }
.entry-title{ border-bottom: 1px solid #aeaeaf;}

#multimedia_box img { border:0; border-width:0; padding:0; margin-top: -20px; }
 #sidebars h3{ color: #387657; border-bottom: 1px solid #aeaeaf;}
 
 #footer{ border: 0; padding: 10 0 10 0; text-align: center; background: #AAADAB; margin-top: 30px; color: #262626; font-size: 12px; font-weight: bold;  }
 #footer a{  color: #262626; font-size: 14px; font-weight: bold; }
 .widget ul { padding-left: 20px; }
 .widget ul  li{ list-style-image:url("images/bullet.jpg"); list-style-type:square; }
 
 .custom .sidebar ul.sidebar_list {position: relative;}
.custom #header_widget_1 ul.sidebar_list li.widget {position: absolute; display: block; top:0px; left:740px; width:200px; margin-top: -40px; z-index: 150; padding-top: 4px; background-image: url(images/searchBg.gif); background-repeat: no-repeat; }
.custom #header_widget_1 ul.sidebar_list li.widget input{height:20px; font-size:11px; line-height:20px; border:0; padding:0; width: 160px; margin-left: 12px; background: transparent; }
h2.entry-title a{ font-size: 16px; font-weight: bold; line-height: 16px; }
 

