/*
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: #AFAE9A; */
    background-image:url('images/fond-guilloche.gif');
    background-repeat:repeat;
    background-position: center 20px;
    font-family:helvetica;
}

.custom #container {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0.3em;
}

.custom #page { 
    padding: 2em 1.9em;
    margin-top: 3em;
    margin-bottom: 3em; 
    background: #fff; 
    border: 0.1em solid #636250; 
}


a:link 		{text-decoration: none; color:#0000CC;background:none; }
a:visited 	{text-decoration: none; color:#0000CC;background:none; }
a:hover 	{text-decoration: underline; color:#0000CC;background:none;  }
a:active 	{text-decoration: none; color:#0000CC;background:none; }

#header_twit {float:right;width:124px;vertical-align:text-top;margin-top:-25px;}

#header_ad {float:right;width:468px;vertical-align:text-top;}
#header #logo { font-size: 2.5em; line-height: 1.188em; margin-top:50px;  }
#header {padding:15px 4px 2px 4px;}
#topleft {float:left; width:10px;margin-top:-60px;padding-top:0px;vertical-align:text-top;}
#logo{vertical-align:text-top;}

ul#tabs li a {font-weight:bold; letter-spacing: 0px;font-size:11px; }
.custom ul.sidebar_list {
     padding-top: .5em;
}

.custom .sidebar ul.sidebar_list {
      padding-right: .5em;
      padding-left: .5em;
}
.custom .sidebar ul.sidebar_list {
      padding-top: .5em;
}

.custom li.widget {
     margin-bottom: 1.0em;
     line-height:1em;
}

.custom h2.entry-title a:hover {color:#0000CC;}
.custom h2.entry-title { font-weight:bold;font-size:150% }
.custom .sidebar h3 { 
     font-weight:bold; 
     font-size:1.077em;
     font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
     color:#000000;
}
.ddsg-wrapper a:hover {text-decoration: underline;}

/* To customize page nav buttons for SEO pager plugin */
.pagerbox{
border-top:2px solid #DDDDDD;
clear:both;
color:#666666;
letter-spacing:1px;
text-transform:normal;
padding:10px 0 10px 0;
font-family:arial;
}

/* To increase/decrease font size in contact form page */
.ddfmwrap { font-size: 85%; }

/* To increase/decrease font size in footer section */
#footer p { font-size: 1.1em; line-height: 1.8em; }

/* To add underline for hyperlinks in about page */
.format_text a:hover {text-decoration: underline;}

/* For google custom search box */
#gsearch {
	padding: 0px;
	margin: 0px;
	margin-bottom: 5px;
	height: 33px;
}

#gsearch input {
	margin-left: 5px;
	margin-bottom: 5px;
	padding: 0px;
}

#gsearch #google_input {
	border: 1px solid #3366cc;
	width: 250px;	
	padding: 2px;
	height: 20px;
	margin-right: 5px;
	float: left;	
	font-size: 12px;
	margin-top: 5px;
}

#gsearch #button {
	height: 26px;
	width: 60px;
	float: left;
	margin-top: 5px;
        font-weight: bold;
        font-size: 11px;
}

.table_rate {
    background-color:#FFFFFF;
}
.table_rate_fmt_pos {
    padding-left: 5px;
    background-color:#DBFFB7;
}
.table_rate_fmt_neg {
    padding-left: 5px;
    background-color:#FFC4C4;
}

/* To customize font-size within posts */
.format_text {
font-size:1.3em;
line-height:1.3em;
}