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

/* Style the First (or Only) Post */
.custom .top{
   background:#ECE0F8 none repeat scroll 0 0;
   border:1px solid #666666 !important;
   -moz-border-radius: 10px;
    border-radius: 10px;
   margin:1em;
   padding:2em;}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
   background:#ECE0F8 none repeat scroll 0 0;
   border:1px solid #666666;
   -moz-border-radius: 10px;
    border-radius: 10px;
   margin:1em;
   padding:2em;}

/* Style the SIDEBAR HEADER */
.custom .sidebar h3{background-color: #492569;
-moz-border-radius: 4px;&nbsp;padding: 0.1em 0.1em 0.1em 0.5em; font-weight:bold; font-size:13px; color:#ffffff;}



/*SIDEBAR bacground*/
.custom li.widget ul {
background:#ECE0F8;
border: 0.1em solid #666666;
-moz-border-radius:9px;
border-radius: 9px;
padding:0.5em;  

list-style:decimal ;
list-style-position:inside;
}


.custom .advert {
}

/*CHANGE TITLE COLOR */
.custom .headline_area h1 ,h2 {
font-weight: bold;
color:#F21374;
}

/*CHANGE HEADER COLOR */
.custom #header {
background-color:#000000;
}


/*STYLE COMMENT BOX */
/*STYLE COMMENT BOX */
.custom #comment_list { background: #876CBA; margin:.5em; padding: 1em; -moz-border-radius:5px; border-radius: 5px; }
      .custom #comment_list dd { margin-bottom: .3em; }
      .custom #comment_list .comment { background: #ECE0F8; border:1px; solid #666666; -moz-border-radius:5px;
border-radius: 5px;}


/*TWITTER CSS*/
.custom div.tweetbutton {float:right;padding-left: 5px;}
.custom div.my-plus-one {float:right;padding-left: 5px;}
.custom div.fb_share {float:right;padding-left: 5px;}
.custom div.fb_like {float:right;padding-left: 5px;}

/* ADSENSE HEADER   */
.custom #header #header_ad {
float:right;
margin-top:-9em;
width:468px;
}


/*---ALL NEWS--archives-----*/
.custom .archive h3 {margin-top: 0;}
.custom .archive ul {font-size: .95em; }
.custom .archive1 { float: left; width: 40%;}
.custom .archiver { float: right; width: 60%;}



/*---BREADCRUMB-----*/
.custom .breadcrumbs {
	font-family:Verdana,Arial;
	font-size:10px;
	padding:1em 1em 1em 1em;
	
	border-top:1px dotted #666;
}
.custom .breadcrumbs a {
	color:#cc0000;
	border-bottom:1px dotted #666;
}
.custom .breadcrumbs a:hover {
	border-bottom:1px dotted #cc0000;
}

/*---Footer Widget-----*/
.custom .footercol {
    float: left;
    padding: 10px;
    text-align: left;
    width: 31%;
}
.custom #footer {
    background: none repeat scroll 0 0 #DCC7FF;
    text-align: center;
}


/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #ECE0F8;

border:1px solid #666666 !important;
   -moz-border-radius: 8px;
    border-radius: 8px;

	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 10px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 200px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #2E2E2E;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #2E2E2E;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 3px solid #9A2EFE;
	/* 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; }