/*
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/
*/

.custom html,
body {
   margin:0;
   padding:0;
   height:100%;
}


.custom #container {
  min-height:100%;
   position:relative;
   height:100%;
   margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background:  #CCC;
    border: 0.4em solid #999;
}
.custom #page {
    background: #fff;
}

.custom #body {
	padding-bottom:85px;   /* Height of the footer */
}

.custom #content {
	border-top: 2px solid #ccc;
	margin-right: 0;
	
}

.custom #content_box {
	margin-top: 8px;
	/*width: 1000px;*/
	padding-right: 0;
	margin-right: 0;
}

.custom .menu li a {
	padding: 5px 10px 5px 10px;
	letter-spacing: .08em;
	}
	
.custom .menu li {
	background-image: url(images/rule.png) right no-repeat;
	}
	

.custom #header {
	background: url(images/IsleofWight.png) top left no-repeat;
	height: 105px;
	padding: 0;
	border: 0;
}

.custom #sidebars {
	background-color: #cccccc;
	border: 0;
	width: 343px;
	margin: 0;

	
}

.custom .headline_area {
	margin-bottom: 0;
	padding-bottom: 3px;
}	

.custom .bordered {border-bottom: #ccc 2px solid; width: 90%; margin-left: 10px; padding-top: 6px;}

.custom #wp-calendar {
	background-color: #FFF;	
	width: 215px;
}

.custom #calendar-3 h3{
display: none;	
}


.custom #footer {
	width:1000px; 
	background-color: #cc0033;
	border: 0;
	text-align:left;
	height: 85px;
}

.custom .comments_closed {display:none}
.custom #archive_info p {display: none;}

.custom .teasers_box {width: auto;}
/* Featured Post Formatting */
.custom #feature_box {background-color:#FFF; padding: 0}
.custom #my-feature-box {background: #ffffcc; padding: 15px 15px 62px 15px; margin-bottom: 8px; }
.custom #my-feature-box h1 { font-size: 22px; margin: 0 0 15px 0; font-family:Georgia, "Times New Roman", Times, serif}
.custom #my-feature-box h1 a { color: #cc0033; text-decoration: none; font-family:Georgia, "Times New Roman", Times, serif}
.custom #my-feature-box h1 a:hover { color: #000; }
.custom #my-feature-box p { font-size: 1.4em; line-height:1.571em; text-align: justify; color:#000}
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0;}
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; color: #FFF;  background-color: #cc0033; padding: 3px; }
.featured_thumb {padding: 8px; background-color:#CCC; border: 1px solid #999; margin: 0 15px 15px 0;}


/*Tabbed Widget Version 2.0*/
.tabbedwidget {
margin-top: 6px;
padding: 0 0 0 11px;
/*padding-top: 10px;*/
font-size: 12px;
width: 300px;
margin-left: 0;
}

.tabnav {
margin-bottom: 10px;
}

.tabnav li {
display: inline;
list-style: none;
padding-right: 5px;
}

.tabnav li a {
background: #fff;
border: 1px solid #999;
padding: 4px 6px;
color:#000;
}

.tabnav li a:hover, .tabnav li a:active, .tabnav li.ui-tabs-selected a {
background: #e5f6fc;
border: 1px solid #0262A5;
}

.tabdiv {
margin-top: 2px;
background: #fff;
border: 1px solid #999;
padding: 7px;
}

.tabdiv li {
list-style: none;
margin-bottom: 0.667em;
color: #000;
border-bottom: 1px dotted #999;
padding: 6px;
}

.ui-tabs-hide {
display: none;
}


/*Events*/
.custom .format_text h2 {font-size: 22px; color: #cc0033; margin: 0; padding: 0 0 4px 0}
.custom .format_text h3 {font-size: 18px; color: #cc0033; margin: 0; padding: 0 0 4px 0}
.custom .format_text p {margin: 0; padding: 0 0 4px 0}
.custom .format_text .timer {color:#888888; font-size: 11px;}

/*Events Sidebar*/
#eventsidebar {background: #fff url(http://insidetheisle.com/images/event_header.png) top no-repeat; padding-top: 48px; width: 300px; margin-left: 12px; color: #999}
#eventsidebar h2 {color: #cc0033; font-size: 16px;}
#eventsidebar h3 {color: #000; font-size: 15px; letter-spacing: normal; margin-bottom: 0; padding-bottom: 0px; font-variant: normal;}
#eventsidebar h4 {color: #000; font-size: 13px; letter-spacing: normal; margin-bottom: 0; padding-bottom: 2px;}
.eventsidebaritem {border-bottom: 1px #ccc dotted; padding: 0 13px 10px 13px; font-size: 12px; margin-bottom: 4px;}