/*
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.custom {
	background: #28313A url(images/background.jpg) repeat-x left top;
	color: #5C5C5C;
	font-family: Arial, Helvetica, sans-serif;
}

a { color: #00539F; }

.custom #container {
    margin-top: 0;
    margin-bottom: 2em;
    padding: 0em;
    background: none;
	width: 1000px;
}

.custom #page {
	padding: 0px;
}

.custom #content_box { background: #FFFFFF; width: 1000px; }
.custom .no_sidebars { background: #FFFFFF !important;}
.custom .no_sidebars #content { width: 98%;}

#content { padding: 0px 0px 0px 12px;}

/*---:[ nav menu styles ]:
	ul#tabs, ul#tabs li { border-color: #00539F; }
	ul#tabs li.current_page_item a:hover, ul#tabs li.current_page_item a, ul#tabs li.current-cat a, ul#tabs li.current-cat a:hover { color:#AC090E; }
	ul#tabs li {background: #E6F0FF; }
	ul#tabs li a, ul#tabs li a:hover{ color:#00539F}
:[ #header styles ]:---*/

#header { display: none;}

#topHeader { height: 126px; #height: 130px; /*IE*/}
#topHeader #logo { float: left; margin: 48px 0px 0px 0px; }
#topHeader #flash { float: right; margin-right: 10px; height: 126px; width: 360px;}

h1{ color:#00539F; }
h2{ color:#00539F; }
h3{ color:#00539F; }
h4{ color:#AC090E; }
body{color:#333333;}

#sidebars { background: #e9e9e9; margin: 0px 9px 0px 0px; }
#sidebars h3 { color: #666666; text-transform: none; border-bottom: 1px solid #CCCCCC; padding: 0px 0px 4px 0px; margin-bottom:0px; }
#sidebars li ul { margin: 0px; }
#sidebars li ul li { margin-top: 0px;  border-bottom: 1px dotted #CCC; padding: 6px 0px 6px 0px; }
#sidebars li ul li a:hover { color: #333333; text-decoration: none;}
#sidebars li ul li:hover {  }
li.widget ul li { margin: 0px;}
#sidebars input { margin: 10px 0px 0px 0px; }

body.about #sidebar_1 { display: none; }
body.about #sidebar_2 { display: none ; }
body.about #multimedia_box {margin-bottom: 0px; }
 
#sidebar_1 { background: url(images/background_sidebar.gif) repeat-x left top; padding-top: 10px;}
#sidebar_2 { background: url(images/background_sidebar.gif) repeat-x left top; padding-top: 10px;}
#multimedia_box { background: url(images/background_sidebar.gif) repeat-x left top; margin-bottom: 0px;}
#image_box { background: none; }


/* Menu */
/*
ul#tabs { margin: 10px 0px 0px 10px; #margin: 10px 0px 0px 0px; padding: 18px 10px 0px 10px; #padding: 18px 10px 0px 0px; list-style: none; line-height: normal; float: left; height: 38px; background: url(images/nav_background.jpg) repeat-x left top; border: 0px; font-family: Georgia, "Times New Roman", Times, serif; width: 960px; #width: 900px; display: block;
}*/
.custom ul#tabs { width: 980px; border:10px solid #FFFFFF; margin:0px; padding:0px; list-style: none; line-height: 14px; background: url(images/nav_background.jpg) repeat-x left top; font-family: Georgia, "Times New Roman", Times, serif;  }
.custom ul#tabs li {  background: none; border: none; margin: 0px; padding: 0px; }
.custom ul#tabs li a {letter-spacing:0.01cm; border: none; margin: 0px; padding: 20px; background: url(images/nav_border.jpg) no-repeat right 10px; text-decoration: none; text-transform: uppercase;font-size: 11px; color: #FFFFFF;}
.custom ul#tabs li a:hover { color: #FFFFFF; text-decoration: underline;}
.custom ul#tabs .current_page_item a { color: #FFFFFF; border: none; background-color: none; text-decoration: underline;}
.custom ul#tabs li.current_page_item { background: none;}