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

/*---Modifying Navigation Bar Tabs---*/
#tabs { 
list-style: none; 
border: 0px solid #ddd; 
border-width: 0 0 0px 0px; padding-top:3px; 
padding-bottom:18px
}

#tabs li { 
margin-bottom: -0.1em; 
background: #efefef; 
border: 1px solid #ddd; border-left: 0; 
float: left; }

#tabs a {
text-decoration:none;
}

/* Change the home tab unselected color */
.custom ul#tabs .home-item { background: #25a9e0; }

/* Change the home tab unselected font color */
.custom ul#tabs .home-item a { color: #fff; }

/* Change the about tab unselected color */
.custom ul#tabs .page-item-1 {	background: #8bc53f; }
/* Change the about tab unselected font color */
.custom ul#tabs .page-item-1 a { color: #fff; }

/* Change the tab 2 unselected color */
.custom ul#tabs .page-item-2 { background: #90278e; }
/* Change the tab 2 unselected font color */
.custom ul#tabs .page-item-2 a { color: #fff; }

/* Change the tab 3 unselected color */
.custom ul#tabs .page-item-3 { background: #be1e2d; }
/* Change the tab 3 unselected font color */
.custom ul#tabs .page-item-3 a { color: #fff; }

/* Change the tab 4 unselected color */
.custom ul#tabs .page-item-4 { background: #f6921e; }
/* Change the tab 4 unselected font color */
.custom ul#tabs .page-item-4 a { color: #fff; }

/* Change the color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.current_page_item { padding-bottom:0px;}
.custom ul#tabs li.current-cat { padding-bottom:0px;}
/* Change the font color of the currently selected tab (pages and category pages) */
//.custom ul#tabs li.current_page_item a { color: #000; }
//.custom ul#tabs li.current-cat a { color:#000; }

/* Change the color of a tab when the cursor hovers over it */
.custom ul#tabs li a:hover { 
background: #fff; 
text-decoration: none; 
color: #000; 
}

/*Attaching an image/logo in the header*/
#header {
height: 150px;
width: 860px;
background: #fff;
padding-top: 0px; 
padding-bottom: 0px; 
padding-left: 0px; 
border-bottom:0;
clear:both;}


#header #logo {
font-size:0;
line-height:1.167em;
}

#header #tagline {
font-size:0;
line-height:1.429em;

}
/*Feature Box Modifications*/

/*---:[ feature box ]:---*/
#feature_box {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#EEEEEE none repeat scroll 0 0;
border-bottom: 0px solid #DDDDDD;
}
/*Multimedia Box Modifications*/
#image_box img.square { width: 200px; height: 200px; }

}