/*
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 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.menu a, .menu .current ul a, .menu .current-cat ul a {
	background:#184D7A none repeat scroll 0 0;
	color:#E5EEEF;
}

.menu a {
	text-transform: none;
}

.custom #header #logo a { display:block; height:102px; width:970px; background:url('images/logo.gif') no-repeat; outline:none }
.custom #header #logo, .custom #header #tagline { text-indent:-9999px }
.custom #header #tagline { height:0 }
.custom #header { border-bottom:none; padding:0; }
.custom #nav_area ul { border-bottom:none; border-left:none }
	.custom #nav_area ul li { margin-bottom:0; padding-bottom:0; background:none; border-width:0 }
	
.custom .menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover {
	background:#E5EEEF;
}

.bluebox{
	background-color: #99cccc; width: 350px; height: 50px; margin: 0px 20px 20px 0; float: left; text-align: center; 
}
.bluebox a {
	font-weight: bold; font-size: 14px; color: #000; font-style: italic; text-decoration: none;
}

/* from tabstrip. */
ul.tab {
border-bottom:1px solid #AAAAAA;
float:left;
margin:0;
padding:0;
position:relative;
width:100%;
}
ul.tab li {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/norm_li_bg.gif) no-repeat scroll left 3px;
cursor:pointer;
float:left;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0 2px 0 0;
padding:0 0 0 9px;
position:relative;
top:1px;
}
ul.tab li a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/norm_a_bg.gif) no-repeat scroll right 3px;
color:#555555;
display:block;
float:left;
font-size:11px;
font-weight:bold;
outline-color:-moz-use-text-color;
outline-style:none;
outline-width:medium;
padding:7px 9px 3px 0;
text-decoration:none;
}
ul.tab li.pageActive {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/sel_li_bg.gif) no-repeat scroll left top;
top:1px;
}
ul.tab li.pageActive a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(images/sel_a_bg.gif) no-repeat scroll right top;
color:#0074C6;
padding:6px 9px 5px 0;
}
ul.tab li a:hover {
color:#0074C6 !important;
}
ul.tabb {
left:0;
margin:3.2em 0 0;
padding:0;
position:relative !important;
text-decoration:none;
width:100%;
}
ul.tabb li {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent none repeat scroll 0 0;
float:left;
margin:0;
text-decoration:none;
text-transform:capitalize;
}
ul.tabb li a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#FFFFFF none repeat scroll 0 0;
border:1px solid #FFFFFF;
color:#000000;
padding:3px 10px;
text-decoration:none;
text-transform:capitalize;
}
ul.tabb li a:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#EEEEEE none repeat scroll 0 0;
color:#0074C6;
text-decoration:none;
}
ul.tabb li a.active, ul.tabb li.active a {
background-color:#184D7A;
color:#FFFFFF;
text-decoration:none;
}
