/*
File:			custom.css
Description:	Custom styles for Thesis
Author: Kayla @ www.bellafaithdesign.com

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;body&gt; 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/
*/

body {
background: #333;
min-width: 1008px;
}

.custom a:focus, .custom a:active {
outline: none;
}

.custom .widget_archive ul, .custom .widget_categories ul {
white-space: nowrap;
}

.custom .widget_archive li, .custom .widget_categories li {
float: left;
margin: 0 2px 4px 2px;
height: 21px;
}

.custom .widget_archive a, .custom .widget_categories a {
-moz-border-radius: 5px;
border-radius: 5px;
padding: 0 5px 1px;
border-width: 1px;
border-style: solid;
background: #ccc;
color: #000;
border-color: #ccc;
float: left;
}

.custom .widget_archive a:hover, .custom .widget_categories a:hover {
background: #333;
color: #fff;
border-color: #333;
text-decoration: none;
}

.custom .widget_archive a:focus, .custom .widget_archive a:active,
.custom .widget_categories a:focus, .custom .widget_categories a:active {
color: #000;
-moz-border-radius: 5px;
border-radius: 5px;
padding: 0 5px 1px;
border-width: 1px;
border-style: dotted;
background: transparent;
border-color: #4C6f6f;
}

.custom .entry-content a, .custom .format_text a, .custom #comments a, .custom .post_nav a {
-moz-border-radius: 5px;
border-radius: 5px;
padding: 0 5px 1px;
border-width: 1px;
border-style: solid;
background: #9cc;
color: #000;
border-color: #9cc;
text-decoration: none;
}

.custom .post_nav a {
background: #333;
color: #fff;
border-color: #333;
}


.custom .entry-content a:hover, .custom .format_text a:hover, .custom #comments a:hover, .custom .post_nav a:hover {
background: #333;
color: #fff;
border-color: #333;
text-decoration: none;
}

.custom .post_nav a:hover {
background: #9cc;
color: #000;
border-color: #9cc;
}

.custom .entry-content a:focus, .custom .entry-content a:active,
.custom .format_text a:focus, .custom .format_text a:active, 
.custom #comments a:focus, .custom .post_nav a:focus, 
.custom #comments a:active, .custom .post_nav a:active {
color: #000;
-moz-border-radius: 5px;
border-radius: 5px;
padding: 0 5px 1px;
border-width: 1px;
border-style: dotted;
background: transparent;
border-color: #4C6f6f;
}


.custom #logo a {
border: 1px solid #333;
padding: 0 2px 0 0;
}


.custom #logo a:focus, .custom #logo a:active {
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px dotted #4c6f6f;
padding: 0 2px 0 0;
}

.custom .menu a:focus, .custom .menu a:active {
border-width: 0 0 5px 0;
border-color: #ccc;
border-style: solid;
}

.custom .headline_area a {
padding: 1px 3px;
}

.custom .headline_area a:focus, .custom .headline_area a:active {
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px dotted #4c6f6f;
padding: 0 2px;
}

.custom .headline_area h1, .custom .headline_area h2 {
border-bottom: 1px dotted #333;
}

.custom .to_comments {
float: right;
position: relative;
top: -5px;
}

.custom .to_comments a {
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #333;
background: #333;
color: #fff;
font-size: 24px;
padding: 0 8px;
}

.custom .to_comments a:hover {
background: #9cc;
color: #000;
border: 1px solid #9cc;
}

.custom .to_comments a:focus, .custom .to_comments a:active {
background: transparent;
border: 1px dotted #4c6f6f;
padding: 0 8px;
color: #000; 
}

.custom #comments .comment_author a {
background: #333;
border-color: #333;
color: #fff;
}

.custom #comments .comment_author a:hover {
background: #9cc;
border-color: #9cc;
color: #000;
}

.custom #comments .avatar a, .custom #comments .comment_time a, 
.custom #comments .edit_comment a, .custom #comments .comment_num a {
border: none;
background: transparent;
color: #888;
padding: 0;
}

.custom #comments .comment_num a {
color: #333;
font-size: 2em;
}

.custom #comments .comment_num a:hover {
background: transparent;
color: #333;
}

.custom #comments .comment_time a:hover, 
.custom #comments .edit_comment a:hover {
text-decoration: underline;
}

.custom #commentform input.form_submit {
-moz-border-radius: 5px;
border-radius: 5px;
background: #333;
border-width: 1px;
color: #fff; 
}

.custom #commentform input.form_submit:hover {
background: #9cc;
color: #000;
}

.custom dl#comment_list .bypostauthor {
background: #333;
color:#fff;
}

.custom dl#comment_list .bypostauthor a:hover {
background: #ccc;
border-color: #ccc;
color: #000;
}

.custom dl#comment_list .bypostauthor .comment_num a {
color: #ccc;
}

.custom dl#comment_list .bypostauthor .comment_num a:hover {
background: transparent;
color: #ccc;
}


#header {
height: 70px;
}

#social-icons {
float: right;
position: relative;
top: 26px;
left: -2px;
}

#social-icons a {
display: block;
float: left;
border: 1px solid #333;
width: 30px;
height: 30px;
}

#social-icons a:hover {
background: #555;
border: 1px dotted #9cc;
-moz-border-radius: 5px;
border-radius: 5px;
}

#social-icons a:active, #social-icons a:focus {
background: transparent;
}

#header .search_form input[type="text"], #header .search_form input[type="submit"] {
-moz-border-radius:5px 5px 5px 5px;
border-radius: 5px;
background:none repeat scroll 0 0 #555555;
border-color:#555555;
color:#a7bebf;
font-family: Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
padding:0.308em;
position:relative;
width:250px;
font-size: 12px;
float: right;
top: -6px;
left: 3px;
}

#twitter {
clear: both;
font-family: Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
font-size: 13px;
position: absolute;
top: 145px;
z-index: 2;
text-align: right;
padding: 5px 2px;
width: 1000px;
}


#twitter ul {
list-style-type: none;
}

.latest-tweet {
line-height: 18px;
}

.latest-tweet a {
font-size: 12px;
color: #4C6f6f;
}

.latest-tweet a:hover {
text-decoration: underline;
}

.the-tweet {
color: #000;
float: right;
}

.t-intro {
color: #333;
font-style: italic; 
}

.twitter-followers {
font-style: italic;
margin-left: 5px;
float: right;
}

#twitter .rss, #twitter .email,
#twitter .twitter, #twitter .facebook,
#twitter .linkedin, #twitter .youtube,
#twitter .google-reader {
display: block;
width: 46px;
height: 46px;
float: left;
}



.custom #header_area {
background-color: #333;	
}

.custom #logo a {
background: url('images/bellafaith_design.png') no-repeat 0 0;
text-indent: -9000px;
display: block;
width: 293px;
height: 90px;
margin-top: -25px;
}

.custom #logo a:hover {
background-position: 0 -90px;
}

.custom #content_area {
background: url('images/blue-pattern2.png') #333;
border-top: 30px solid #ccc;
}

.custom .page {
background: transparent;	
}
#nav_area {
height: 30px;
}

.custom .menu {
float: right;
font-style: italic;
display: block;
width: auto;
}

.custom .menu a {
text-transform: none;
padding: 0.2em 0;
margin: 0 0.8em;
}

.menu .current a, .menu .current a:hover, 
.menu .current-cat a, .menu .current-cat a:hover {
border-bottom: 5px solid #ccc;	
}

.menu a:hover, .menu .current ul a:hover, .menu 
.current-cat ul a:hover {
border-bottom: 5px solid #ccc;	
}

.custom #content_box {
background: #fff;
border-style: solid;
border-color: #ccc;
border-width: 0 1px;
position: relative;
left: -1px;
}

/* teasers */

.teasers_box {
border-top: 1px dotted #333;
}

.custom .teaser .teaser_link {
-moz-border-radius: 5px;
border-radius: 5px;
padding: 0 5px 1px;
border-width: 1px;
border-style: solid;
background: #333;
color: #fff;
border-color: #333;
text-decoration: none;
}

.custom .teaser .teaser_link {
padding: 2px 5px;
}

.custom .teaser .teaser_link:hover {
background: #9cc;
color: #000;
border-color: #9cc;
text-decoration: none;
}

/* post */

.custom a.post_img, .custom .entry-content a.post_img:focus, .custom .entry-content a.post_img:active, .custom .format_text a.post_img:focus, .custom .format_text a.post_img:active {
background: transparent;
border: none;
margin: 0;
padding: 0;
}


.custom .entry-content img {
border: 1px solid #333;
}

.custom .entry-content img.noborder{
border: none;
}

.custom dl#comment_list {
border-color: #888;
margin-left: 10px;
}

.custom #commentform {
border-color: #333;
margin-left: 10px;
padding-left: 5px;
padding-right: 5px;
}

.custom .prev_next {
text-transform: lowercase;
font-family: Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
font-size: 11px;
}

.custom .prev_next a {
font-size: 12px;
font-family: georgia, times new roman, serif;
}

.custom .prev_next p {
float: right;
}

.custom .prev_next p.previous {
float: left;
}

.post_box {
margin-bottom: 50px;
}


/* sidebar */

.custom .sidebar h3 {
font-size: 1.2em;
font-variant: normal;
text-transform: lowercase;
border-bottom: 1px dotted #333;
clear: both;
margin: 10px 0 5px 0;
}


li.widget ul li {
margin: 0;
}

.custom li.widget,
.custom li.widget_archive,
.custom li.widget_categories {
clear: both;
float: left;
margin-bottom: 1.5em;
}

.custom .sidebars li.widget ul li {
margin-bottom: 0;
}




.custom #footer a:hover {
color: #fff;
}

/* homepage */

.homepage #content_area {
background: #333;
border: none;
}

.custom #featured-designs {
background: url('images/blue-pattern2.png') #333;
border-top: 30px solid #ccc;
z-index: 1;
padding: 30px 0;
}

.custom #the-featured ul.featured_work {
height: 312px;
}

.custom #the-featured ul li {
list-style-type: none;
}

.custom #the-featured ul li a.featured_link {
display: block;
width: 900px;
height: 300px;
background: #fff;
border: 1px solid #9cc;
background: #333;
padding: 5px;
margin: 0px auto;
}

.custom #the-featured ul li a.featured_link:hover {
border-color: #333;
}

.custom #the-featured ul li.featured_title {
margin: 0 auto;
position: relative;
top: -28px;
font-size: 20px;
font-family: Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
color: #9cc;
width: 880px;
padding: 0 10px;
background: #333;
font-weight: bold;
}

.custom #the-featured ul li a.featured__title_link {
color: #fff;
}

.custom #the-featured ul li a.featured__title_link:hover{
color: #ddd;
}

.custom #bottom-wrapper {
background: #fff;
}

.custom #recent-designs {
background: #ccc;
height: 200px;
padding: 20px 0 25px 32px;
}

.custom #recent-designs h2 {
font-size: 20px;
color: #333;
font-weight: bold;
font-family: Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
}

.custom #recent-designs ul li {
list-style-type: none;
float: left;
}


.custom #recent-designs ul li a.recent_designs_link {
border: 1px solid #ccc;
display: block;
width: 150px;
height: 150px;
background: #333;
margin: 0 0 0 32px;
padding: 5px;
}

.custom #recent-designs ul li:first-child a.recent_designs_link {
margin-left: 0;
}

.custom #recent-designs ul li a.recent_designs_link:hover {
border-color: #333;
}


.homepage #bottom_content_box {
padding: 40px;
font-size: 12px;
line-height: 20px;
}

.homepage .sidebar_list {
padding: 0;
}

.homepage li.widget {
font-size: 12px;
line-height: 20px;
margin-bottom: 0;
}

.homepage li.widget ul li {
margin-bottom: 0;
}

.homepage li.widget p {
margin-bottom: 0;
}

#homepage-text, #homepage_testimonials,
#recent_blog_posts {
width: 282px;
float: left;
padding-bottom: 40px;
}

#homepage_testimonials,
#recent_blog_posts {
margin-left: 40px;
}

#bottom_content_box h3 {
font-size: 18px;
color: #4C6f6f;
font-family: Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
font-weight: bold;
margin-bottom: 5px;
}

#bottom_content_box ul ul li {
list-style-type: none;
border-top: 1px dotted #333;
padding: 5px;
min-height: 58px;
}

#bottom_content_box ul ul {
border-bottom: 1px dotted #333;
}

#homepage-text p {
margin-top: 10px;
}

#homepage_testimonials img {
float: left;
margin: 3px 8px 5px 5px;
border: 4px solid #ccc;
width: 44px;
height: 44px;
}

a.home-more-link, #homepage-text p a {
background: #9cc;
color: #000;
border: 1px solid #9cc;
-moz-border-radius: 5px;
border-radius: 5px;
padding: 0 5px 1px;
text-decoration: none;
}

a.home-more-link {
float: right;
margin-top: 5px;
}

a.home-more-link:hover, #homepage-text p a:hover {
background: #333;
color: #fff;
border-color: #333;
}

a.home-more-link:focus, a.home-more-link:active,
#homepage-text p a:focus, #homepage-text p a:active {
border: 1px dotted #4C6f6f;
background: transparent;
color: #333;
}


.homepage .sidebar_list {
border: 0;
}


.homepage a.testimonial_link {
color:#888888;
display:block;
font-style:italic;
text-align:right;
}


.homepage a.testimonial_link:hover {
text-decoration: underline;
}

.homepage a.post_title_link {
font-weight: bold;
color: #111;
}

.homepage a.post_title_link:hover {
text-decoration: underline;
}


/* styling for archive, search & categories */


.archive .post_box, .search .post_box {
width: 202px;
clear: none;
float: left;
margin: 10px 0 10px 19px;
padding: 0;
height: 260px;
}

.archive .full_width #content_box .page,
.search .full_width #content_box .page {
margin: 10px 0 10px 19px;
}


.archive .to_comments, .search .to_comments,
.archive .headline_meta, .search .headline_meta {
display: none;
}

.archive .headline_area h2, .search .headline_area h2 {
font-size: 14px;
border: none;
color: #333;
}

.archive .headline_area a, .search .headline_area a {
padding: 0;
}

a.portfolio_thumb {
display: block;
border: 1px solid #ccc;
width: 200px;
height: 200px;
}

a.portfolio_thumb:hover {
border-color: #333;
}


.archive .headline_area a:focus, 
.search .headline_area a:active {
border: 0;
padding: 0;
-moz-border-radius: 0;
border-radius: 0;
}

.archive .headline_area a.portfolio_thumb:focus, 
.search .headline_area a.portfolio_thumb:active
.custom .headline_area a.portfolio_thumb:focus, 
.custom .headline_area a.portfolio_thumb:active {
border: 1px dotted #333;
padding: 0;
-moz-border-radius: 0;
border-radius: 0;
}

a.portfolio_thumb img {
width: 200px;
height: 200px;
margin: 0;
padding: 0;
}

.custom .entry-content .wp-caption a {
background: none;
border: 0;
padding: 0;
}

.custom .entry-content .wp-caption img {
position: relative;
left: -1px;
}

.custom .entry-content .wp-caption img.noborder {
position: relative;
left: 0;
}

.custom .category-password .format_text input, .password input {
width: 150px;
}

/* if comments are closed */

.no_comments .to_comments, .no_comments .comments_closed {
display: none;
}