/*
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/
*/

/*Header*/
.custom #header #logo a { display: block; height: 200px; width: 1024px; background: url('http://jayme.passiotive.com/wp-content/uploads/2010/07/alljayme-july2010.jpg') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; border-bottom:none;}

body.custom {
    background: #8db6b6 url('http://jayme.passiotive.com/wp-content/uploads/2010/07/alljayme-july2010-bg.jpg') repeat;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}

/*Navbar center align*/
.custom .menu {margin-top:10px;}
.custom .menu a {background: #E0D5B9; padding:10px 20px 10px 10; width:150px; text-align:center;
}

.custom h1 { style: bold; }

/*Removing all borders*/
.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}


/* Feature Box Styling */
.custom #feature_box {
	background:#DDDDDD;
	border-bottom:1px dotted #800000;
	border-top:1px dotted #800000;
	height:125px;
	border-left:6px solid #800000;
	border-right:6px solid #800000;
}
#my-feature-box {
	width:100%;
	height:125px;
	color:#800000;
	font-size:14px;
}
#my-feature-box h2 {
	color:#800000;
	font-size:20px;
	letter-spacing:1px;
	margin-bottom:3px;
}
#feature-box-column-left {
	width:45%;
	float:left;
	height:125px;
	margin-left:1px;
}
#feature-box-column-right {
	width:45%;
	float:right;
	height:125px;
}



/* AUTHOR BOX */
.custom #comments { clear: both; }
.postauthor { background: #F3B6C6; border-top: 2px dashed #f9b8d0; border-bottom: 2px dashed #f9b8d0; border-right: 2px dashed #f9b8d0; border-left: 2px dashed #f9b8d0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: none; float: left; margin-right: 0.2em; }
.postauthor h4 { color: #583837; font-size: 1em; 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: #FF94E2; font-size: 11px; font-style: italic; font-weight: bold; letter-spacing: 0.8px; }

/* BOXES */
#similar h3, #rightcol h3 { font-size: 11px; letter-spacing: normal; padding-top: 15px; }
#similar { float: left; width: 50%; margin-bottom: 20px; }
#similar p { margin-bottom: 15px; padding: 10px 2.5em 10px 10px; }
#similar a { font-size: 11px; border-bottom: 1px solid #CB3131; line-height: 1.5em; }
#similar a:hover { border: 0; }
#similar h3 { padding-left: 10px; padding-bottom: 10px; }
#similar span.date { color: #888; letter-spacing: 1px; text-transform: uppercase; }
#similar li {
	background: #fff;
	border: 1px solid #fff;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
overflow: hidden;
}
#similar img { float: left; padding-right: 8px; }
#similar ul a { border-bottom: 1px solid #FF94E2; font-size: 11px; }
#similar ul a:hover { border: 0; }
#similar li { margin-bottom: 1px; }
#rightcol { float: right; width: 50%; margin-bottom: 150px;}
#rightcol p { font-size: 11px; line-height: 1.5em; padding: 10px 2.5em 10px 0;  }
#rightcol h3 { padding: 0; }
#rightcol ul { list-style-position: inside;  list-style-type: square; margin-left: 1em; }
#rightcol ul a { border-bottom: 1px solid #FF94E2; font-size: 11px; }
#rightcol ul a:hover { border: 0; }
#rightcol li { margin-bottom: 10px; }
#subscribe { background: #fff url(http://jayme.passiotive.com/wp-content/uploads/2009/12/pinkpushpin2s2.png) no-repeat top right; border: 2px dashed #583837; float: right; margin: 15px 15px 0 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
#custom { background: #E4F2FD; border: 1px solid #C6D9E9; float: right; width: 82%; margin: 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }

/*comment form*/
input, textarea { font-size: 1em; color: #444; background: #fff; border: 1px dashed #ED8AA7; border-right-color: #ED8AA7; border-bottom-color: #583837; }
#commentform span.allowed { display: block; color: #ED8AA7; background: #fff; border-style: dashed; border-color: #583837; }

/*thumbnail and photo frame color*/
img.frame { background: #583837; border-style: solid; border-color: #583837; }

/*notes and alerts*/
.format_text p.note { background: #fff url(http://jayme.passiotive.com/wp-content/uploads/2009/12/pinnote.png) no-repeat; border: 3px dotted #fb92b5; padding-top: 22px;}

/*comment submit*/
input#submit.form_submit {
display:block; 
background: url(http://jayme.passiotive.com/wp-content/uploads/2010/07/submitcomment.jpg) 50% 50% no-repeat; 
border:0; 
height:50px; 
width:92px !important; 
text-indent:-9999px;
}

#respond_intro p {
display:block; 
background: url(http://jayme.passiotive.com/wp-content/uploads/2010/07/leavecomment.jpg) 50% 50% no-repeat; 
border:0; 
height:50px; 
width:196px !important; 
text-indent:-9999px;
}

#recent-posts li {
	background: #fff;
	border: 1px solid #fff;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
overflow: hidden;
}

#recent-posts img { float: left; padding-right: 8px; }

#random-posts li {
	background: #fff;
	border: 1px solid #fff;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
overflow: hidden;
}

#random-posts img { float: left; padding-right: 8px; }

#similar-posts li {
	background: #fff;
	border: 1px solid #fff;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
overflow: hidden;
}

#similar-posts img { float: left; padding-right: 8px; }

.custom dl#comment_list .bypostauthor, dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #F9F0DF none repeat scroll 0 0; padding-top:12px;}


.format_text a { text-decoration: none; }
.format_text a:hover { text-decoration: overline; border-bottom: solid 1px; }

/*:[ #avatar before header ]:*/
.custom .title-avatar {
float:left;
margin: 0 1em 0 0;}

/* postads */
.custom #comments { clear: both; }
.postads { background: #fff; border-top: 2px dashed #f9b8d0; border-bottom: 2px dashed #f9b8d0; border-right: 2px dashed #f9b8d0; border-left: 2px dashed #f9b8d0; overflow: hidden; padding: 1.5em; -moz-border-radius: 5px; -webkit-border-radius: 5px; }

/* highlight info box - pink */
.format_text .highlight_box {
	/* distance from borders to content*/
	padding: 1em 1em 0 1em;
	/* spacing outside of box*/
	margin: 0 0 1 0;
	/* background color */
	background: #f9b8d0;
	/* border size style color */
	border: 1px solid #f9b8d0;
}
