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

/* background color */
#header_area .page {
	padding-top:0em;
}

#header_area {
	height:110px;
	}

#content_area , #header_area , #footer_area {
background-color: #C7E5FF;
}

#content {
	background: #FFFFFF;
	padding: 0em;
	width: 54.2em;
	border-top-width: 0em;
	border-right-width: 0.1em;
	border-bottom-width: 0.1em;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FA9334;
	border-right-color: #FA9334;
	border-bottom-color: #FA9334;
	border-left-color: #FA9334;
	z-index:2;
	}
	
.post_box, .teasers_box, .full_width #content_box .page {
	margin:0 2.2em;
	}
	
/* 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: 110px;
	width: 544px;
	outline: none;
	background-image: url(images/header-1.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}

/* 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 #logo {
	position:relative;
	left: 5.65em;
	padding:0;
}

.custom #header {
	align:center;
	padding:0;
}
	
/* body*/

body.custom {
	color:#313132;
	background-color: #C7E5FF;
	}

body.custom a {
	color:#95141d;
	text-decoration:none;
	border-bottom: thin dotted #95141d;
	}
	
#img a {
	border-bottom:none;
	}

/* clear backgrounds and lines */

#header , #header a {
	border-bottom:none;
	}
	
#content_box {
	background:none;
}

#column_wrap {
background:none;
}

#feature_box {
	border-bottom:none;
	}
	
#footer {
	border-top:none;
	}
	
#archive_info {
border-bottom:2px solid #DDDDDD;
}

.post_box, .teasers_box {
border-top:1px dotted #BBBBBB;
clear:both;
}

/* archive info styles */

#archive_info p {
font-size:1em;
line-height:1em;
margin-bottom:1.1em;
}
#archive_info p {
letter-spacing:2px;
text-transform:uppercase;
}
	
/* align sidebar text */
	
#sidebar_1 {
	text-align: right;
	z-index:1;
	}
	
/* flexipages widget navigation in sidebar */

li#flexi-pages-1 ul {
text-transform:uppercase;
line-height: 1.5em;
letter-spacing:2px;
font-weight:bold;
position: relative;
left:1.15em;
}

li#flexi-pages-1 li {
padding: .2em;
}

li#flexi-pages-1 li.current_page_item, ul#flexi-pages-1 li.current-cat {
}

li#flexi-pages-1 li a {
	padding-top: 0.39em;
	padding-right: 1em;
	padding-bottom: 0.01em;
	padding-left: 0.5em;
	display:block;
	color: #FFFFFF;
	background-image: url(images/flag-1.gif);
	text-decoration:none;
	border-bottom:none;
}

li#flexi-pages-1 a:hover {
background-image: url(images/flag-2.gif);
}

li#flexi-pages-1 li.current_page_item a, ul#flexi-pages-1 li.current-cat a, li#flexi-pages-1 li.current_page_parent a {
background-image: url(images/flag-2.gif);
}

li#flexi-pages-1 li ul {
font-size:smaller;
}

li#flexi-pages-1 li ul li {
}

li#flexi-pages-1 li ul li a {
color:#95141d;
background-image:none !important;
margin-right:1.15em;
}

/* lang switch widget */

li#language-switcher {
	list-style-type: none;
	position: relative;
	left: 0px;
	top: -2.2em;
	width: 200px;
	text-align: right;
	color:#646466;
	}

li#language-switcher ul {
	text-transform: uppercase;
	text-transform:uppercase;
	line-height: 1.5em;
	letter-spacing:2px;
	font-weight:bold;
	display: inline;
	list-style-position: inside;
	list-style-type: none;
	margin-right: 1.1em
	}

li#language-switcher ul a {
color:#95141D;
text-decoration:none;
border-bottom:none;
}

li#language-switcher ul a hover {
background:#95141D;
color:#fff;
}

li#language-switcher ul li {
	display: inline;
	/*background-color:none;*/
	padding-top: 0.2em;
	padding-right: 0.5em;
	padding-bottom: 0.2em;
	padding-left: 0.5em;
	margin-left:.5em;
	border: thin dotted #95141D;
	}
	
li#language-switcher ul li.language_item_current_language_item {
	display:none;
	}
	
/* page boxes widget */

#pbs_top_left, #pbs_top_right, #pbs_bottom_left, #pbs_bottom_right {
	width:23.8em;
}

#pbs_top_left, #pbs_bottom_left {
	margin-top: 2.2em;
	margin-right: 1.1em;
	margin-bottom: 2.2em;
	margin-left: 2.2em;
}

#pbs_top_right, #pbs_bottom_right {
	margin-top: 2.2em;
	margin-right: 2.2em;
	margin-bottom: 2.2em;
	margin-left: 1.1em;
}

#pbs_top_left h2, #pbs_top_right h2, #pbs_bottom_left h2 , #pbs_bottom_right h2 {
background: #95141D;
color:#FFFFFF;
margin-bottom: .2em;
padding-top: 0.2em;
	padding-right: 0.5em;
	padding-bottom: 0.2em;
	padding-left: 0.5em;
	text-transform:uppercase;
	letter-spacing: 1px;
	font-size:small;
}


/*content box styles */

.headline_area h1, .headline_area h2 {
	color:#95141d;
	text-transform: uppercase;
	font-size:2em;
	letter-spacing:1px;
	}

/* images styling */

element.style {
width:500px;
}
.format_text img.frame, .format_text .wp-caption {
border-width:0.071em;
padding:0.714em;
}
.format_text img.block, .format_text img.alignnone, .wp-caption.alignnone {
margin:0 auto 1.571em 0;
}
.wp-caption.alignnone {
clear:both;
}
.wp-caption {
background-color:#C7E5FF;
/*border-color:#DDDDDD;
border-style:solid;*/
border:none;
font-style:italic;
color:#646466;
text-align:center;
}

/* blog titles */

#hfeed .headline_area h1, .headline_area h2 {
	text-transform:none;
	}
/* hide "home" be sure to add a field with key "slug" and value "title-mod"*/

.title-mod .headline_area h2 { display: none; }
.no-sidebar #sidebar_2 {display:none;}
	
/* footer */

#footer {
 margin-top: 1em;
 width: 52.5em;
 background:#fa9334;
 color:#fff;
 padding:1em;
 position:relative;
 left:20.25em;
 text-align:center;
 }
 
 #footer a {
 	color:#FFFFFF;
	border-bottom:thin dotted #fff;
	}
	
/* side bar styles */

.sidebar h3 {
border-bottom: solid medium #95141D;
color:#95141D;
font-weight:bold;
margin-bottom: .5em;
	text-transform:uppercase;
	letter-spacing: 1px;
	font-size:small;
}

/* search and input styles */

.sidebar input[type="text"], .sidebar input[type="submit"] {
font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
padding:0.308em;
}

input, textarea {style.cs...109-90347 (line 47)
background:#EEEEEE none repeat scroll 0 0;
border-color:#AAAAAA #DDDDDD #DDDDDD #AAAAAA;
border-style:solid;
border-width:1px;
color:#444444;
font-size:1em;
}

/* neighborworks logo */

div#neighborworks {
	height:15px;
	background-image:url(images/NeighborWorks-bg.gif);
	left:20.25em;
	margin-top:1em;
	position:relative;
	width:52.5em;
	background-repeat: no-repeat;
	padding-top: 3em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 17em;
}

.jdGallery, .slideElement {
border-color:#C7E5FF;
}

.jdGallery a, .slideElement a {
border-bottom:none !important; 
}
