
/* header image */
/* 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: 133px; width: 960px; background: url('images/header.jpg') 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; }

/* Custom Slugs. This seems to underline all the links which doesn't look good so it is disabled for now. To enable it, remove the (/*) from the two lines of code below */ 
/*.custom.links .format_text a, a:visited { color: #009ACD; text-decoration: underline; }
/*.custom.links .format_text a:hover { color: #009ACD; text-decoration: none; }

/* 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 { border-bottom: none;  padding: 0; }


/*This removes the underline from the navbar links*/
.custom ul#tabs li a:hover {
  text-decoration: none;
}

/*This removes UPPER CASE formatting from links in navbar*/
.custom ul#tabs li a {
  text-transform: none;
}

/*This changes the text colour of the navigation tabs at the top*/
.custom ul#tabs li a { color: #0c0c0c; }

/*This changes the background colour of the navigation tabs at the top - if you want to make all tabs the same color
.custom #tabs li {   background: #9acd32;}

/*---:[ nav menu styles ]:---*/
.custom ul#tabs { list-style: none; background: url('images/dot-ddd.gif') 0 100% repeat-x; border-left: 1px solid #fff; border-bottom: 1px solid #fff}
.custom ul#tabs li { font-weight: 500; text-transform: lowercase; font-family: "Trebuchet MS", sans-serif; font-size: 1.2em; line-height: .6em; padding: 0.145em 0.200em; background: #000000; border: 4px solid #fff; border-left: 0; border-bottom: 4px solid #fff; text-transform: normal; letter-spacing: 1px; float: left; }
.custom ul#tabs li.page-item-1 { background: #9ACD32; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-2 { background: #009ACD; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-3 { background: #ffd100; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-4 { background: #EE7AE9; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-5 { background: #9ACD32; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-6 { background: #BF0000; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-7 { background: #009ACD; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-8 { background: #EE7AE9; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-9 { background: #9ACD32; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-10 { background: #BF0000; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-11 { background: #009ACD; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-12 { background: #BF0000; border-bottom-color: #fff; }
.custom ul#tabs li.page-item-13 { background: #9ACD32; border-bottom-color: #fff; }
.custom ul#tabs li a, ul#tabs li a:visited { color: #fff; text-decoration: none; text-transform: lowercase; }
.custom ul#tabs li a:hover { color: #fff; text-decoration: underline; text-transform: lowercase; }
.custom ul#tabs li.rss { background: none; border: none; float: right; }
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #5B5B5B; border-bottom-color: #fff; }

/*This does something to the RSS feed sign - I've switched it off for now
.custom ul#tabs li.rss a, .custom ul#tabs li.rss a:visited { color: #FFF; background: url('images/icon-rss.png') 100% no-repeat; }

/*---:[ sidebar list styles ]:---*/
/*This puts a little yellow round icon next to each of the links on the sidebar 1 & 2 ---*/
.custom #sidebar_1 ul ul { font-size: 0.96em; color: #8B7E66; margin-left: 0; list-style: none; }
.custom #sidebar_1 ul ul li { font-size: 0.96em; color: #8B7E66; padding-left: 1.4em; background-image: url('images/Ai.png'); background-repeat: no-repeat; }
.custom #sidebar_1 a, a:visited { color: #009ACD; text-decoration: none; }
.custom #sidebar_1 a:hover { color: #009ACD; text-decoration: underline; background-color: none; border-top: none; border-bottom: none; }
.custom #sidebar_2 a, a:visited { color: #00868B; text-decoration: none; }
.custom #sidebar_2 a:hover { color: #00868B; text-decoration: underline; background-color: none; border-top: none; border-bottom: none; }
.custom #sidebar_2 ul ul { font-size: 0.96em; color: #8B7E66; margin-left: 0; list-style: none; }
.custom #sidebar_2 ul ul li { font-size: 0.96em; color: #8B7E66; padding-left: 1.2em; background-image: url('images/Ai.png'); background-repeat: no-repeat; }



/*____________________________

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