/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

/** modified by Atul **/

.custom blockquote  {  /* from Thesis options */ 
    background: #F4F0DB none repeat scroll 0 0;
    margin: 0 0 1.574em 0.786em;
    padding: 0.5em 0.786em;
    border-top: 1px dotted #B6AC80;  /* very light brown */
    border-bottom: 1px dotted #B6AC80;  /* very light brown */
    border-left: none; /*override */
}

.custom #sidebars {
    background: #F1F8ED url("../images/ddd-1x2.gif") repeat-y scroll 0 0;  /* light shade */
    
}

.custom .format_text .drop_cap {
    color: #C00;
}

.top_header {
    background: #008080 none repeat scroll 0 0;
      /*  url("/blog/wp-content/images/red_black_grad.png") repeat-x scroll top left;  */
    border: 0;
   /** OLD BORDER
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    border-left: 1px solid black;
   **/
    height: 70px;
}
.custom .hdr_text {
    color: #FFF;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 3.5em;
    line-height: 1.2em;
    font-variant: none;
    letter-spacing: 2px;
    padding: 15px 0 0 15px;
    margin: 0;
}

/* to make a short para standout and float to the right - to catch reader's attention */
.standout {
   float: right;
   margin: 0.5em 0 0.5em 0.5em;
   padding: 6px;
   width: 200px;
   font-style: italic;
   font-weight: bold;
   border-top: medium double black;
   border-bottom: medium double black;
}

.custom .lighter {
   color: #999999;
}

/*  for quotes in blocks */
.custom .sy_block {
   display: block;
   background: #F0F6FB; /* light blue */
   -moz-border-radius: 5px;
   border-radius: 5px;
   width: 27em; 
   margin: 1em;
   padding: 1em 1em 0em;
}
.custom .sy_block.alt {
   background: #BFDF9F;  /*  #A6D279 - slightly darker */
}

.custom .sy_block:before, .sy_block:after {
   color: #69c;
   display: block;
   font-size: 700%;
   width: 50px;
}
.custom .sy_block:before {
   content: open-quote;
   height: 0;
   margin-left: -0.5em;
}
.custom .sy_block:after {
   content: close-quote;
   height: 40px;
   margin-left: 4em;
   margin-top: -30px;
}



/* ToDo: For sidebar in thesis */
.custom .sidebar h3 {
    border-top: 1px dotted #B6AC80;
    color: #C00;
    padding-top: 1em;
    font-weight: bold;
    font-variant: none;
}
.custom h2, h3, h4 {
    color: #C00;
}

/* Links */
a, a:visited {
    text-decoration: none;
}
a:hover {
    color: #D54E21; /* good pink */
}

.custom span.bracket,
.custom span.author {
    color: #C00; /* reddish */
    font-weight: bold;
}
.custom to_comments a {
    color: #2584AD;
}

.custom abbr, published {
    color: #666;
    font-weight: bold;
}

.custom #header {
    border-bottom: 3px solid #000;
}
.custom #header #tagline {
    color: #333; /* darker */
    font-size: 2em;
}
.custom #footer {
    border-top: 3px solid #000;
    text-align: center;
    background: #FFF;
    color: #999;
    font-variant: small-caps;
}

/*  top header Nav list */
.custom ul#tabs { list-style: none; 
    background: none;
    border: 0; /* override style.css */
    border-bottom: 1px solid #000;
}

.custom ul#tabs li { 
    font-size: 1.2em; 
    line-height: 1em; /* equals 12px */
    padding: 0.545em 0.818em;
    background: #000; 
    margin-bottom: 0;
    border: 1px solid #FFF; 
    letter-spacing: 2px; 
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    float: left; 
}

.custom  ul#tabs li.current_page_item, 
.custom ul#tabs li.current-cat { 
    background: #366353;  /*  #999999;  grey */
    border-bottom-color: #FFF; 
}

.custom  ul#tabs li a, 
.custom  ul#tabs li a:visited { 
    display: block;
    color: #EEE; 
    text-decoration: none; 
    font-size: 1.2em;
    }

.custom  ul#tabs li a:active, 
.custom ul#tabs li a:hover, 
.custom ul#tabs li.rss a:hover { 
    color: #F60; 
    text-decoration: underline; 
    }
  
.custom  ul#tabs li.current_page_item a:hover, 

.custom ul#tabs li.current-cat a:hover { 
    text-decoration: none; 
    color: #F60;
}

.custom  ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
    
.custom  ul#tabs li.rss a { 
    color: #000;
    padding-right: 16px; 
    background: url('../images/icon-rss.gif') 100% 50% no-repeat; 
    }


.custom .prev_next {
    font-size: 1.2em;
    border-top: 2px solid #E6F0F2; /* light blue */
}


#custom_extlinks {
	border-bottom: 1px solid #efefef;
	background-color: #f8f8f8;
	padding: 5px 5px;
	text-align: right;
	font-size: 11px;
	color: #ccc;
	margin: 0 0 25px 0;
}
	#custom_extlinks a {
		color: #008080;
		font-weight: 700;
		text-decoration: none;
	}
	
	
#page {
	padding-top: 0 !important;
}