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


/* 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: 140px; width: 1130px; background: url('images/header.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; }


.custom #header:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}


.custom #header #logo {width:600px; height:150px; float:left;}


.custom #header span ul {
position:relative;
top: 12em;
right: 20em;
}


body.custom {
    background: #C3D9D6;
}


.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}


.custom #page {
    background: #fff;
}


.custom ul#tabs li a:hover {color: #fff; text-decoration: underline; background-color: #1873a1; }


.custom.bbout h1 {
   display:none;
}


.custom.publications h1 {
   display:none;
}


.custom.script-center h1 {
   display:none;
}


.custom #footer_area {background:#c3d9d6; padding:0.5em 0; border-top:1px solid #bbd;}
	.custom #footer {border-top:0;}
	
.custom #footer_1 {text-align:left; color:#333;}
	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#222;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}
		
//links to social networks, email and RSS
.custom ul.icon-links {
padding: 0;
margin: 10 20 30px 0;
font-size: 1em;
padding: 0.2em 0.2em;
width: 100%;
}
.custom ul.icon-links li {
list-style-type: none;
display: inline;
color: #807E70;
}
.custom ul.icon-links img {
vertical-align: text-top;
}
.custom #header span {
position:absolute;
top: 0;
right: 0;
}


#s {
     float: right;
     background: url("images/bkg_search.png") 0 0 no-repeat;
     color: #fff;
     padding: 6px 0px 6px 30px;
     width: 156px;
}


.teaser p {
text-align: justify;
}


.custom .sidebar h3 {text-align: center; font-weight: bold; font-size: 17px; color: #FFFFFF; background:#424242 repeat; border: 3px solid #ffffff; padding: 5px 5px; width: 95%; -moz-border-radius: 5px; margin-top: 5px; padding:5px 5px;}
.custom .sidebar .widget {background-color: #ffffff; -moz-border-radius: 0.5em; -webkit-border-radius: 0.5em; border: 1.5px solid #000000; padding: 5%; width: 90%; }


/* DOMtabs skin by Michael Martin - http://www.problogdesign.com */
/* DOMtabs script - http://www.onlinetools.org/tools/domtabdata/ */
/* Install guide: http://www.problogdesign.com/general-tips/how-to-install-domtabs-on-wordpress/ */


ul.domtabs li.active {background:#000000;}		/* Active tab background color */
ul.domtabs li:active a {color:#ffffff;}		/* Active tab font color */
ul.domtabs li {background:#888888;}			/* Inactive tabs background color */
ul.domtabs li a {color:#ffffff;}				/* Inactive tabs font color */
ul.domtabs li {border-color:#000000;}			/* Tabs border color */
.domtab div {border:1px solid #000000;}					/* Box border color - Should be the same as the Active tab background color */
.domtab div {background:#ffffff;}						/* Box background color */


ul.domtabs li {margin-right:0.5em;}			/* Space between each tab. Set to 0 for no space. */


div.domtab div {
	display:none;
	}


ul.domtabs {
	list-style:none;
	padding:0;
	margin:0;
	}


ul.domtabs li {
	float:left;
	padding:0 0.5em;
	text-align:center;
	border-style:solid;
	border-width:1px 1px 0 1px;
	}




ul.domtabs li a {
	text-decoration:none;
	}


.domtab div {
	border-width:0 1px 1px 1px;
	padding:0.5em;
	clear:both;
	}
.custom #feature_box {background: #FFFFFF;} 