/*
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/
*/

body.custom {
    background: #fefde7;

}

.custom #container {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 0.4em;
    background: #fff;
    border: 0.2em solid #fff4e1;
}

.custom #container #header { background: #ed2025; padding:0px 0px; }

.custom #page { background: #fff; padding:0; }

.custom #sidebars { margin-right:20px; }

.custom #suckerfishnav li ul { z-index:20; align: left; }

#header {border-bottom:0px double #2f2e2a; clear: both; }

.custom #header #logo a {display: block; margin-left: auto; margin-right: auto; height: 129px; width: 500px; background: url('/wp-content/themes/thesis/custom/images/header-hotyoga.jpg') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; }

.custom #footer { background: #fff4e1; color:#ffa743; border-style: double; border-color: #ed2025; text-align: center; clear: both; }

.custom #content .headline_area h1 { font-size:2.4em; font-weight: bold; color:#ffa743; margin-bottom: 0.5em;}
.custom #content .format_text h1 { font-size:1.6em; font-weight: bold; color:#ffa743; margin-bottom: 0.5em;}
.custom #content .headline_area h2 { font-size:2.4em; font-weight: bold; color:#ffa743; margin-bottom: 0.5em;}
.custom #content .format_text h2 { font-size:1.6em; font-weight: bold; color:#ffa743; margin-bottom: 0.5em;}
.custom #content .format_text h3 { font-size:1.1em; text-decoration: underline; }
.custom #content .format_text h4 { font-size:1.1em; text-decoration: none; }

.custom #content .photogallery div.wp-caption { float:left; }
.custom #content .photogallery h2 { color:#5886ae; clear:both; font-size:1.1em; font-weight:normal; }
.custom #content div.wp-caption { background:#a7cd3a; border:1px solid #000000; margin:5px; text-align:center;  }
.custom #content div.wp-caption a { }
.custom #content div.wp-caption a img { border:0px solid #000000; padding:5px 5px 0px 5px; }
.custom #content div.wp-caption p.wp-caption-text { color:#fff; font-weight: bold; font-size:1em; margin:2px; padding:0; }

.custom #image_box, .custom_box { border-style: none; border-color: #fff; }
.custom	#image_box img { background: #fff; border-style: solid; border-color: #ffa743; }



table.hottable {
	border-width: 0px 0px 0px 0px;
	border-spacing: 1px;
	border-style: solid solid solid solid;
	border-color: black black black black;
	border-collapse: separate;
	background-color: #fff;
}
table.hottable th {
	border-width: 1px 1px 1px 1px;
	padding: 3px 3px 3px 3px;
	border-style: solid solid solid solid;
	border-color: red red red red;
	background-color: #ed2025;
	-moz-border-radius: 3px 3px 3px 3px;
}
table.hottable td {
	border-width: 1px 1px 1px 1px;
	padding: 3px 3px 3px 3px;
	border-style: solid solid solid solid;
	border-color: red red red red;
	background-color: white;
	-moz-border-radius: 3px 3px 3px 3px;
}

