/*
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 .sub-ico { width: 80px; height: 30px; }

/* -----background----- */
body.custom { background-image: url(http://www.theiphoneblogging.com/wp-content/uploads/2009/11/bg.gif); background-repeat: repeat;}



.custom #container { border-width: 0 13px; border-style: solid; border-color: #333; }



/* -----header----- */
.custom #logo { float: left; width: 402px; height: 60px; background: url(images/header.jpg) 0 0 no-repeat; padding-bottom: 10px; }

	

.custom #logo a { display: block; height: 60px; width: 402px; }



.custom #header { padding: 20px 0 0 0; }



.custom #header_ads { float: right; width: 468px; height: 60px; padding-bottom: 10px; }



.custom #subscribe { float: right; width: 300px; height: 80px; text-align: right; margin-right: 16px; }



.custom #subscribe ul { list-style-image: none;	list-style-type: none; margin: 0; padding: 0; }



.custom #subscribe li { float: right; margin-left: 10px; }



/* -----archive page----- */
.custom #archive_month ul { list-style-image: none; list-style-type: none; margin: 0; padding: 0; }



.custom #archive_month li { float: left; margin-right: 10px; margin-bottom: 5px; }



/* -----headline----- */

.custom .headline_area h2 a { color: #1872CA; }



.custom .headline_area h2 a:hover { color: #333; }




.custom .after_headline { padding-top: 5px; font-size: 12px; }



.custom .after_headline a { border-bottom: 1px solid #ddd; color: #888888; }



.custom .after_headline a:hover { color: #333333; }



/* -----custom icons----- */
.custom .comment_icon {	background-image: url(http://www.theiphoneblogging.com/wp-content/uploads/2009/07/comment_icon.png); background-repeat: no-repeat; background-position: left center; padding-left: 20px; }



.custom .category_icon { background-image: url(http://www.theiphoneblogging.com/wp-content/uploads/2009/07/category_icon.png); background-repeat: no-repeat; background-position: left center; padding-left: 20px; }



/* -----feature box----- */
.custom #feature_box { border: 0; padding: 1.1em; }



.custom #adrotate-3 a { margin: 10px; }



.custom p.alert { background: #ffffa0; border: 1px solid #e5e597; padding: 10px; }



/*Tabbed Widget Version 2.0*/

.tabbedwidget { background-color: #e8e8e8; padding: 5px; padding-top: 10px; border: 1px solid #ccc; }



.tabnav { margin-bottom: 10px; }



.tabnav li { display: inline; list-style: none; padding-right: 5px; }



.tabnav li a { background: #fff; border: 1px solid #ccc; padding: 4px 6px; color: #333; }



.tabnav li a:hover, .tabnav li a:active, .tabnav li.ui-tabs-selected a { color: #fff; background: #0262A5; border: 1px solid #ccc; text-decoration: none; }



.tabdiv { margin-top: 2px; background: #fff; border: 1px solid #ccc; padding: 7px 10px; }



.tabdiv li { background-image: url(http://www.theiphoneblogging.com/wp-content/uploads/2009/08/bullet_icon.png); background-repeat: no-repeat; background-position: left center; padding-left: 20px; list-style: none; margin-bottom: 0.667em; border-bottom-width: 1px; border-bottom-style: dotted; border-bottom-color: #ddd; padding-bottom: 2px; }



.ui-tabs-hide { display: none; }



.custom #tools { width: 600px; height: 25px; font-size: 0.95em; }



.custom #tools a:hover { background: none; }



.custom #tools img { border: 1px solid #CCCCCC; margin: 0 10px 5px 0; padding: 2px; }



/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #FFFFFF;
	/* widget padding */
	padding: 0px;
	/* 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: 300px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #333;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 12px;
	/* bold or not */
        font-variant: small-caps;
	/* space out the letters*/
	letter-spacing: 2px;
	/* font color*/
	color: #333;
	/* padding under header text */
	padding-bottom: 0;
	/* border under header text */
	border-bottom: 3px solid #ffdf00;
	/* distance between border and widget text */
	margin-bottom: 0.75em;
        line-height: 1.5em;
}

/* 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: 12px;
	border-bottom: none;
	/* default Thesis link color */
	color: #1872CA;
}
.custom #footer a:hover {
	text-decoration: underline;
}
