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

/* Change the color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.page-item-19863 { background: #ED008C; }
/* Change the font color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.page-item-19863 a { color:#ffffff; }




#twitter_t {
   width: 390px;
   height: 55px;
   padding: 0px 0px 0px 0px;
   background-image:url("http://cheapchicas.com/images/twitter-widget/top.gif");
}

#twitter_m {
   width: 390px;
   padding: 0px 0px 0px 0px;
   background:url("http://cheapchicas.com/images/twitter-widget/middle.gif")  0 0 repeat-y;
}

   #twitter_container {
       min-height:45px;
       height:auto !important;
       height:40px;
       padding-bottom:10px;
   }

       #twitter_update_list {
           width: 370px;
           padding: 0px 0px 0px 10px;
           overflow: hidden;
           font-family: Georgia;
           font-size: 12px;
           font-style: italic;
           color: #ffffff;
           line-height: 16px;
           font-weight:bold;
       }

       #twitter_update_list li {
           width: 370px;
		   padding: 0px 0px; 5px;
           list-style: none;
       }

       #twitter_update_list li a {
           color: #9a015b;
           border-bottom: dotted 1px;
           text-decoration: none;
       }

       #twitter_update_list li a:hover {
           color: #31353d;
        
       }

#twitter_b {
   width: 390px;
   height: 59px;
   background-image:url("http://cheapchicas.com/images/twitter-widget/bottom.gif");
}

/* styles for search/categories/tags/archives box
   by lindsey bell (http://lindseybell.com)
*/

#search-contain {
	width: 416px;
	padding: 0 0 15px 30px;
	margin: 0;
}
#box-nav {
	width: 416px;
	padding: 10px 0 0 16px;
	margin: 0;
	overflow: hidden;
	background: url(../images/search-bg.jpg) no-repeat;
	height: 45px;
}
#box-nav ul {
	margin: 0;
	padding: 0 0 0 15px;
}
#box-nav li {
	display: block;
	float: left;
	margin: 0;
	padding: 0;
}
#box-nav #search a {
	background: url(../images/search-sprite.jpg) 0 0;
	display: block;
	height: 22px;
	width: 60px;
	text-indent: -9999px;
}
#box-nav #search.active a {
	background: url(../images/search-sprite.jpg) 0 -23px;
}
#box-nav #categories a {
	background: url(../images/search-sprite.jpg) -60px 0;
	display: block;
	height: 22px;
	width: 101px;
	text-indent: -9999px;
}
#box-nav #categories.active a {
	background: url(../images/search-sprite.jpg) -60px -23px;
}
#box-nav #archives a {
	background: url(../images/search-sprite.jpg) -161px 0;
	display: block;
	height: 22px;
	width: 86px;
	text-indent: -9999px;
}
#box-nav #archives.active a {
	background: url(../images/search-sprite.jpg) -161px -23px;
}
#box-nav #tags a {
	background: url(../images/search-sprite.jpg) -247px 0;
	display: block;
	height: 22px;
	width: 45px;
	text-indent: -9999px;
}
#box-nav #tags.active a {
	background: url(../images/search-sprite.jpg) -247px -23px;
}
#box-contain {
	width: 416px;
	position: relative;
	padding: 0 0 20px 0;
}
#box-contain .box-content {
	position: absolute;
	width: 370px;
	left: 0;
	top: 0;
}
	#box-contain #search-content {
		
	}
		#search-content #s {
			border: 1px #ea70b9 solid;
			background-color: #fff;
			color: #000;
			width: 260px;
			height: 16px;
			padding: 4px;
		}
		#search-content #searchsubmit {
			background: url(../images/search-btn-bg.jpg) no-repeat;
			border: none;
			height: 32px;
			width: 75px;
			text-indent: -9999px;
		}
	#box-contain #cat-content {
		display: none; /* hidden by default */
	}
	#box-contain #archives-content {
		display: none; /* hidden by default */
	}
	#box-contain #tags-content {
		display: none; /* hidden by default */
	}
		#tags-content a {
			color: #D30072;
			text-decoration: none;
		}
		#tags-content a:hover {
			text-decoration: underline;
		}
