/*
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 #header { border-bottom:none;
height:110px;
padding-top:0;
padding-bottom:0;
background:url(http://davidarnoldmusic.com/files/site_images/david_a_2016b.jpg)
center left no-repeat; }

.custom #header #logo {
            margin: 70px 2px 0 0;
            text-align:right
	    width: 400px;
            float: right;
            font-weight: normal; }

.custom #header #tagline { 
            clear:right;
            margin: 0 2px 0 0;
	    text-align:right
            width: 400px;
            float: right; }

.custom .sidebar h3{
            font-size:1.5em; }

.custom h3 {
           color:#8A0808;
           }



/* Center page titles */
#content h1 {text-align:center;}
h2 {text-align:center;}



/* Post images with CSS animated captions */

#post-image {
}

#figure {
position:relative;
float:left;
margin:6px;
overflow:hidden;
padding: 1px;
}

#figure:hover {
-moz-box-shadow:0 0 20px rgba(0,0,0,0.75);
-webkit-box-shadow:0 0 20px rgba(0,0,0,0.75);
box-shadow:0 0 20px rgba(0,0,0,0.75);
}

#figure .caption {
position:absolute;
bottom:0;
left:0;
opacity: 0.75;
margin-bottom:-115px;
-webkit-transition: margin-bottom;
-webkit-transition-duration: 400ms;
-webkit-transition-timing-function: ease-out;
-moz-transition-property: margin-bottom;
-moz-transition-duration: 400ms;
-moz-transition-timing-function: ease-out;
-o-transition-property: margin-bottom;
-o-transition-duration: 400ms;
transition: margin-bottom;
transition-duration: 400ms;
transition-timing-function: ease-out;
}

#figure:hover .caption {
margin-bottom:0px;
}

#post-image .caption {
width:100%;
height:50px;
padding:0px;
background:#111;
color:#fff;
font-family: Arial, Helvetica, sans-serif;
}

#post-image .caption b {
text-shadow: 0px 2px 0px #000;
}

#post-image .caption {
color: #ddd;
line-height: 20px;
font-size: 14px;
text-shadow: 0px 2px 0px #000;
}

