/*
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/
*/
/* This line sets up our clickable background image based on the site title's link */
/* Adjust the height & width below to reflect the actual size of your image */
/* Change the filename of your image to reflect the actual header's file name */

/*change the comment # size*/
.custom .format_text .to_comments span { font-size: 1em ; }


.custom #header #logo a { display: block; height: 190px;  background: url(images/vcorbust.jpg) no-repeat; outline: none; text-align:center; margin-top:0px; margin-bottom:0px; padding:0px}

/* This line gets rid of the site title & tagline by casting them out to the far left */
.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 */
.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 { padding: 0; }

/********************************background color start************************/
body.custom {
    background: #E6E6DC;
}

/********************************Message after post start************************/

/* This formats the outside box */
.custom div.post_ad {
background-color: #ffff99;
margin: 0;
padding: 6px;
border: 1px solid #787878;
}

/* This formats the text */
.custom div.format_text.entry-content div.post_ad p {
margin: 0 0 9px;
}
/********************************Author Profile Box************************/

.postauthor {background: #ffffff; border:1px solid #e1e1e0; overflow: hidden; padding: 1.5em;margin:8px;-moz-border-radius: .8em;
    -webkit-border-radius: .8em;}
.postauthor img {border: 0px solid #e2dede; float: left; margin-right: 1.5em;height:60px;width:40px;}
.postauthor h4 {color: #666; font-size: 1.5em; margin-bottom: 5px;}
.postauthor p {color: #515151; font-size: 11px; margin-bottom: 12px;}
.postauthor p.hlight {font-size: 11px; text-transform: uppercase;}
.postauthor p.hlight span {color: #CB3131; font-size: 13px; font-style: italic; font-weight: bold; letter-spacing: 0.8px;}

.clear { clear: both }

.frame {
    background: #EEE;
    border: 1px solid #DDD;
    padding: 0.5em;         /* may need to be adjusted */
}
/********************************Author Profile Over************************/

/* This code is not in my CSS but I decided to add it in.
This formats the color of a hyperlink */
.custom div.post_ad a {
color: #446677;
}
/********************************Message after post over************************/

/********************************Comment bubble start************************/

.custom .avatar img {float: left; margin-left: -1em; padding-right: 1em;}

.custom dl#comment_list dt.comment{
background:transparent url(images/commenttop.gif) no-repeat scroll 0% 100%;
height: 7em;
margin-left: 2.4em;
}

.custom dl#comment_list dd.comment {
background: #faf7b7 url(images/commentbottom.gif) no-repeat scroll 0% 100%;
border-bottom: 0 none;
margin-left: 2.4em;
margin-top: -1em;
width: 46.5em; 
}

.custom dl#comment_list dd.comment div.format_text {margin-top:-1em ;}

/********************************comment bubble over************************/