/*
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/
*/


/* RJH - Put the Title above the header image. 2011-Feb-12

Note: this puts the Title overtop of the image

.custom #logo a {text-indent:0;}
.custom #tagline {text-indent:0;}
*/

/* .custom #header {height:213px; width:900px;} */

/*
.custom #header {
position: relative;
height: 199px;
padding: 0;
border:none;
margin: 0 0 1em 0;
background: url(images/header-text.png) 100% 100% no-repeat;
}
*/

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #44443f; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #1d61a2; border: 0.4em solid #377ab9; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/

.custom .entry-title a {color:#1d61a2; }
.custom .entry-title a:hover {color:#007EC4; text-decoration: none; background:none;}
.custom .entry-title a:visited { font-weight: normal; }
.custom .headline_area h1, .headline_area h2 {color:#1d61a2;}

.custom a { color: #1d61a2; text-decoration:none; }
.custom a:hover { color:#1d61a2; }

/*CODE TO HIDE DEFAULT HEADER AND SHOW CUSTOM HEADER */
.custom #header #logo { display: none; }
.custom #header #tagline { display: none; }
/* Optional to remove space around header image so image sits on divider line */
.custom #header { padding: 0; }

/*---
.custom ul#tabs {border:none; margin:0; padding:1.5em; background:#000; letter-spacing:0;}
	.custom ul#tabs li {margin-bottom:0; margin-top:0em; margin-left:0em; margin-right:1em; border:none; background:#000; }
	.custom ul#tabs li.current_page_item {padding-bottom:0; background:#f0cc0f; }
    .custom ul#tabs li.current-cat {padding-bottom:0; background:#f0cc0f; }
	.custom ul#tabs li.rss {}
	.custom ul#tabs li a {margin-bottom:0; margin-top:0em; margin-left:0em; margin-right:1em; color:#fff; background:#000; text-transform: none; }
	.custom ul#tabs li a:hover {margin-bottom:0; margin-top:0em; margin-left:0em; margin-right:1em;  color:#000; background:#f0cc0f; text-decoration:none; }
	.custom ul#tabs li.current_page_item a { color:#000; background:#f0cc0f; text-decoration:none; } 
    .custom ul#tabs li.current-cat a { color:#000; background:#f0cc0f; text-decoration:none; }
	.custom ul#tabs li.current_page_item a:hover { color:#000; background:#f0cc0f; text-decoration:none; }
    .custom ul#tabs li.current-cat a:hover { color:#000; background:#f0cc0f; text-decoration:none; }
---*/

/*---:[ nav menu styles ]:
#tabs { list-style: none; margin-bottom: -3.2em; text-align: center;border: 0px solid #ddd; border-width: 0 0 0px 0px; }
	#tabs li { margin-top: .5em; background: transparent; border: 0px solid #ddd; border-left: 0; }
	#tabs .current_page_item, #tabs .current-cat { padding-bottom: 0.1em; background: none; border-bottom: 0; color: #111; }
		#tabs a { display: block; line-height: 1em; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
		#tabs a:hover { color: #111; text-decoration: none; }
		#tabs .current_page_item a, #tabs .current-cat a { cursor: text; color: 111; }
		#tabs .current_page_item a:hover, #tabs .current-cat a:hover { text-decoration: none; }
	#tabs .rss { padding-right: 0; background: none; border: none; float: right; }
		#tabs .rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }
---*/

.custom #image_box img {
border:none;
}

.custom #multimedia_box img {
border:none;
}

.custom #image_box {
border:none;
}

.custom #multimedia_box {
border:none;
}

.custom #image_box {
background:none;
}

.custom #multimedia_box {
background:none;
}

/* RJH - Get rid of the grey top header double line */
.custom #header {border-bottom:0px solid #fff;} 

/* RJH - Get rid of the grey footer double line */
.custom #footer {border-top:0px solid #fff;} 

/* RJH - Get rid of grey vertical line on right side of left sidebar
Untick "Show interior layout borders" here :
Thesis Design Options > Fonts, Colors, and More! > Body (and Content Area) > Show interior layout borders
*/

.custom #content_box { border:none;}
.custom #content { border:none;}
.custom #sidebar_1 { border:none;}
.custom #sidebar_2 { border:none;}

/* RJH - Have both sidebars be the same colour */
/* light blue E9F9F9 */
.custom #content_box { background:#EAF8EA; }
.custom #content { background:#fff; }

#column_wrap .sidebar ul.sidebar_list {
    padding-top: 0;
}

/* RJH 2012-Jan-16 Have part of the header be clickable */
/* so they can click on Next Meeting splash */

#image_map{
width:900px;
height:1px;
position:relative;
} 

#image_map a{
display:block;
position:absolute;
} 

#image_map a#link1{
width:600px;
height:100px;
top:100px;
left:550px;
}

