/*
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/
*/

/*---:[ Set 6: image of ocean water that slides into a tranquil blue-green color ]:---
body.custom { background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat; }
.custom #container { margin-top: 2em; margin-bottom: 2em; }
.custom #page { background: #fff; }
---[ end Set 6 ]:---*/

/********************* START 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: 75px; width: 355px; background: url('images/Travel-Wiz-314x73.png') 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; }
/* 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 { padding: 0; }
/********************* END HEADER IMAGE ***************/

/****** REMOVE TOP NAV LINE ******/
.custom  #header {border-bottom:none; clear:both; }
/****** END TOP NAV LINE ******/

/******* START NAVIGATION MENU ******/
 .custom ul#tabs li {/*font-weight:bold;*/ background-color:#30529b;}
 .custom ul#tabs a {border-color: #30529b; color:#FFFFFF;}
 .custom ul#tabs a:hover {border-color: #30529b; color:#FFFFFF;}
 .custom ul#tabs li a {text-transform: none;}
 .custom ul#tabs li.current-cat a, .custom ul#tabs li.current_page_item a {
  background-color: #e3eafc; color: #000000; text-transform:none;
}
.custom ul#tabs li.current-cat a:hover, .custom ul#tabs li.current_page_item a:hover {
  background-color: #e3eafc; color: #000000; text-transform:none;
} 
/******* END NAVIGATION MENU ******/

/****** START SIDEBAR TITLES ******/
.sidebar h3 {
             font-weight:bold; 
             color:#ffffff;
             padding:2px 2px 2px 4px;
             background-color:#30529B;
             text-align:left
            }
.sidebar h3 a {
            font-weight:bold; 
             color:#ffffff;
             padding:2px 2px 2px 4px;
             background-color:#30529B;
             text-align:left
            }
.sidebar h3 a:hover {
             font-weight:bold; 
             color:#ffffff;
             padding:2px 2px 2px 4px;
             background-color:#30529B;
             text-align:left
            }
/****** END SIDEBAR TITLES ******/

/* SIDEBAR BACKGROUND COLOUR */
.custom #content_box {background-color: #FFFFFF; }
.custom #content {background-color: #fff}
/* END SIDEBAR BACKGROUND COLOUR */

/* START 2ND NAVIGATION MENU */
.custom ul#nav2 {
  font-family:arial,veranda,"sans serif";
  border-style: none;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  background:/*#E4E4E4*/#e3eafc none repeat scroll 0 0;
  width: 100%;
  float: left;
  }
.custom ul#nav2 li { float: left; padding: 3px 10px 3px 10px; }
.custom ul#nav2 li a { font-size: 1.1em; color: #000000; }
.custom ul#nav2 li a:hover { text-decoration: underline; } 
/* END 2ND NAVIGATION MENU */

/* HOME PAGE STYLE */
 .custom #homeheader h3 {background-color:#30529b; color:#ffffff; padding:3px; font-size:12px; font-weight:bold;}
 .custom td#homesubscribe {background-color:#e3eafc; padding:5px; /*font-size:1.0m*/; }
 .custom td#homefeature {padding:5px; font-size:.8m; }
 .custom h3 {font-weight:bold;}
/* END HOME PAGE STYLE */