/*
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: #ffffff url(images/starfish.jpg) top repeat; }
.custom #container { margin-top: 1em; margin-bottom: 2em; }
.custom #page { background: #fff; }
.custom #content_box { width: 100%; background: url('') 57.7em 0 repeat-y; }

.custom .headline_meta {color: #888888 ;}
.custom #header #logo a { color: #003399; }

.custom #feature_box {
background:#fff;
border-bottom:none;
} 


/* Multimedia Box */
.custom #image_box { background: #ffffff }
.custom #image_box img { border-color: #ffffff; }
.custom #image_box { border-bottom: #ffffff }

.custom #multimedia_box { background: #ffffff; }
.custom #image_box {border:none;}
.custom #image_box img {border:none;}

/*Attaching an image/logo in the header*/

.custom #title_area { background: none; padding: 1em 0 0.5em; border-bottom: none; }

/*Activate if you want the logo and tagline to disappear*/

.custom #header #logo { display: none; }
.custom #header #tagline { display: none; }
.custom #header { border-bottom: none; height: 206px; padding-top: 0; padding-bottom: 0; background: url(http://siestakeyfamousbeach.com/wp-content/themes/thesis_16/custom/images/siestakey.jpg) top center no-repeat; }

/* Category Nav Menu */

ul#cat_tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
  ul#cat_tabs li { margin-bottom: -0.1em; background: #C2F2F0; border: 1px solid #ddd; border-left: 0; float: left; }
  ul#cat_tabs li.current_page_item, ul#cat_tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
	ul#cat_tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; padding:0.545em 0.818em; }
	ul#cat_tabs li a:hover { color: #1111; text-decoration: underline; }

      ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}
	  ul#cat_tabs li:hover ul {display:block;}
	  ul#cat_tabs li ul li {float:none;}

ul#cat_tabs:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #EEEEEE;
	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 0px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 280px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #2361A1;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #000000;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 3px solid #ffdf00;
	/* distance between border and widget text */
	margin-bottom: 5px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

/* footer font styles */
.custom #footer a {
	font-size: 1.2em;
	border-bottom: none;
	/* default Thesis link color */
	color: #2361A1;
}
.custom #footer a:visited {
	text-decoration: none;
	/* default Thesis link color */
	color: #2361A1;
}
.custom #footer a:link {
	text-decoration: none;
	/* default Thesis link color */
	color: #2361A1;
}
.custom #footer a:hover {
	text-decoration: underline;
	/* default Thesis link color */
	color: #2361A1;
}



