/*
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/
*/

.custom #container {	
width: 955px;
}

.post_box, .teasers_box {
	margin: 0;
}

.post_box {
	padding-top: 0; 
}

#archive_info {
	border: none;
}

/* create clickable logo */
.custom #header, .custom #footer {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

.custom #header #logo a {
	display:block;
	width:955px;
	height:75px;
	/* insert the file path to your logo below */
	background:url(http://www.canadianphotography.ca/wp/wp-content/themes/canadian-photography-logo.png) center no-repeat;
	color:#303030;
	text-indent: -9999px;
	padding: .5em 0em;
}

.custom h1 {
	color:#b3b3b3;
	padding: .3em 0;
	margin: 0px;
}

/* ensure transparency over slider image */
.withArrows a.open {	
	background-color: transparent !important; 
	display: block;
}

/* style home page menu */
.nav_slider .menu {
	width: auto;
	text-align: right;
        position: absolute;
        top: 0px;
        right: 0px;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/* style menu on all other pages */
.norm_nav {
	background-color: #B3B3B3;
	height: 3.2em;
}

.norm_nav .menu {
	width: auto;
	text-align: right;
        float: right;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/* style rss */
.menu .rss {
	background-color: #303030;
}

/* eliminate the pesky featured content label */
.jdGallery a.carouselBtn {
	display: none;
}

/* set background color of slider */
.jdGallery .slideInfoZone {
	background: #303030;
}

.menu .current a, .menu a:hover {
	text-decoration: underline;
}

.teaser h2 , .teaser h2 a {
	text-align: center;
	padding-bottom: .5em;
	color: #b3b3b3;
}

.headline_area img.aligncenter {
	margin: 0px;
}

.teasers_box {
	padding: 1em 0em;
}


/* author comments */
dl#comment_list .bypostauthor {
	background: #B3B3B3;
	color: #000000;
}

.avatar img {
	float:left;
	padding-right: 1em;
}
.nav_slider {
	position:relative;
}
