/*
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 */
body.custom {
        background:#151D25 url(images/bob_bg_5.png) 50% 0% fixed no-repeat;
}

/* Header */
.custom #header_area .page {
        background:transparent;
        padding-top: 0;
}

.custom #header {
        border-bottom: 0px;
	margin: 0;
        padding: 0;
	background: url(images/bob_header_2.png) no-repeat left top;
}
.custom #header #logo {
	text-indent: -9999px;
}
.custom #header #logo a {
	display: block;
	width: 959px; /*change this to the width of your image*/
	height: 120px; /*change this to the height of your image*/
}

/* Nav menu */
.custom #nav_area .page {
        background:#B9C6D3; 
}

.custom ul.menu li.search {
        float:right;
        height:auto;
        padding:5px 12px 0 0px;
}
.custom ul.menu li.search input {
        height:14px;
        width:195px;
        padding:4px 0 0 10px;
        background-color:#FFFFFF;
        color:#000000;
        font-size:1.1em;
        text-transform: uppercase;
}

/* Sidebars 
.custom .sidebar h3 {
        background-color: #B9C6D3;
        padding: 0.1em 0.1em 0.1em 0.5em;
} */

/* Flickr badge */
#flickr_l img {
  float:left;				
  width:195px;
  height:146px;
  margin-top:0px;
  }
#flickr_rl img {
  float:left;
  margin:6px 6px 6px 0px;
  width:61px;
  height:46px;
  }
#flickr_rc img {
  float:left;
  margin:6px 6px 6px 0px;
  width:61px;
  height:46px;
  }
#flickr_rr img {
  float:left;
  margin:6px 0px 6px 0px;
  width:61px;
  height:46px;
  }

/* Social icons */
.custom #feedback {
  background: transparent;
  width: 3.2em;
  position: fixed;
  top: 45%;
  left: 0.25%;
}
.custom #feedback a {
  display: block;
  text-indent: -9999px;
  height: 32px;
  outline: none;
}
.custom #feedback #rss {
  background: url('images/rssicon.png') no-repeat 0 -32px;
}
.custom #feedback #rss:hover {
  background-position: 0 0;
}
.custom #feedback #twitter {
  background: url('images/twittericon.png') no-repeat 0 -32px;
}
.custom #feedback #twitter:hover {
  background-position: 0 0;
}
.custom #feedback #email {
  background: url('images/emailicon.png') no-repeat 0 -32px;
}
.custom #feedback #email:hover {
  background-position: 0 0;
}
.custom #feedback #facebook {
  background: url('images/facebookicon.png') no-repeat 0 -32px;
}
.custom #feedback #facebook:hover {
  background-position: 0 0;
}

/* Footer */
.custom {
padding-bottom:4em;
}

.custom #content {
padding-bottom:2.2em;
}

.custom #footer_area {
background:transparent;
}

.custom #footer_area .page {
background:#C4CCD3;
border-top:1px solid #ddd;
margin-top:0;
}

.custom #footer {
border-top:0;
}

.custom #footer_1 {
text-align:left;
color:#000;
}
	
.custom #footer_1 ul.sidebar_list li.widget {
width:23%;
margin-right:2%;
margin-top:0;
float:left;
}

.custom #footer_1 ul.sidebar_list li.widget h3 {
color:#000;
}

.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;
}
