/*
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/
*/

/************************** Notes ****************************************
Common color codes in Website: 
#7DB2CE(Same as darker blue in logo)
#4086AC(Little bit darker blue)
#CDEAF0(Light Blue in Logo)
#FF8329(Orange in links)
#CCEAF0(Light blue of search box)

**************************************************************************/
/* Background color & pattern*/

body.custom { background: #93cabc url('/wordpress/wp-content/themes/thesis_16/custom/images/PFB_BG_GRID_BLUE.jpg'); }
	
                .custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

		.custom #page { padding: 2em 1.9em; background: #fff; border: 0.1em solid #629084; border-top: 0; }

/*--- Menu Bg color  ---*/
ul.menu {
	background: #FF8329;
}

/* Custom Header*/

.custom #header { border-bottom:none;

height:213px;

padding-top:0;

background-color: #000000;

padding-bottom:0;

margin-left:-0px; 

background:url(http://www.photofunbox.com/wordpress/wp-content/themes/thesis_16/custom/images/photofun4_5.jpg)

center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }


/* remove "comments are closed on page" */

.custom .comments_closed p {display: none ;}


/* custom search box */


#s{
background: #CCEAF0; width: 200px; height: 15px; 
align: center;

}

/* Twitter Widget Font Size and Color*/

#twitter-3 {
	Font-size:10.5px;
        text-align:center;
        color: #4086AC;
}


li#twitter-3 a:link {color: #FF8329;}

li#twitter-3 a:visited {color: #FF8329;}

li#twitter-3 a:hover {color: #FF8329;}

li#twitter-3 a:active {color: #FF8329;}

ul.tweets {
	Font-size:10.5px;
        text-align:left;
}

/* footer font color*/
#footer {	
color: #4086AC;
}

#footer a:link {color: #FF8329;}

#footer a:visited {color: #FF8329;}

#footer a:hover {color: #FF8329;}

#footer a:active {color: #FF8329;}

/* pbhistory font*/
#pbhistory {
Font-size:10.5px;
color: #4086AC;
}

#pbhistory_title {
Font-size:10.5px;
color: #4086AC;
align: center;
}

/* search text area */ 

#SearchText {
Font-size:11px; 
color: #4086AC;
}

#SearchText a:link {color: #FF8329;}

#SearchText a:visited {color: #FF8329;}

#SearchText a:hover {color: #FF8329;}

#SearchText a:active {color: #FF8329;}

/* gallery table */

 .gallery_tr {
	vertical-align:top;
        Text-align: center;
}
/*  box before content */
.Content_Before {
        Font-size:11px; 
        color: #4086AC;
}

.Content_Before a:link {color: #FF8329;}
.Content_Before a:hover {color: #FF8329;}
.Content_Before a:active {color: #FF8329;}
.Content_Before a:visited {color: #FF8329;}

/* Rates table */

.Rates_table a:link {color: #FF8329;}
.Rates_table a:hover {color: #FF8329;}
.Rates_table a:active {color: #FF8329;}
.Rates_table a:visited {color: #FF8329;}

/* top nav */
.custom ul#topnav {

border-style: none;

list-style-image: none;

list-style-position: outside;

list-style-type: none;

background:#FFFFFF none repeat scroll 0 0;

width: 100%;

float: left;

}

.custom ul#topnav li { float: right; padding: 3px 0px 0px 0px; }

.custom ul#topnav li a { font-size: 1.1em; color: #000000; }

.custom ul#topnav li a:hover { text-decoration: underline; }


