/*
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 .credit{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#999999;
	font-size:10px;
	padding-top:-50px;
}

.custom .credit a{
	color:#999999;
}

.custom #header {
	border-bottom: 3px solid #a0eb00;
}

.custom #header h1 {
	display:none;
}

.custom #sidebars {
	border: none; 
}

.custom #logo {  
     background-image:url(images/Muslim-Worker-Header.png);  
     background-repeat:no-repeat;  
     width:450px;  
     height:80px;  
	 position:relative;
 } 
 
 .custom #logo h1 {
	margin:0px;  
    display:block;  
    text-indent:-9999px;  
 }
 
.custom ul#tabs {
	align:right;
	border:none;
	float:right;
	position:relative;
	top:-50px;
	right:-11px;
	/*

	*/
}
.custom ul#tabs li {
	border:none; 
	background:none;
	border-right: 3px solid #009ff5;
	/*have to float list items right, otherwise, IE6 will show incorrectly */
	float:right; 
}

.custom ul#tabs li a {
	text-transform:none;
	letter-spacing:0px;
	line-height:5px;
 	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:18px;
	color:#009ff5;
}

.custom ul#tabs li.current_page_item {background:none;}

.custom .entry-title a, .custom #content h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:900;
	color:#009ff5;
	line-height:1.364em;
}

.custom .bismillah {
	 background-image:url(images/bismillah.gif);  	
     background-repeat:no-repeat;  
     width:42px;  
     height:42px;  
	 float:left;
	 margin-left:-50px;
	 margin-top:15px;
}

.custom #after-post {
	border-top: 3px solid #f26522;
	font-size:11px;
}

.custom #after-post p{
	text-align:right;
}

.custom #after-post .floated{
	float:left;
	text-align:left;
	color:#888888;
}

.custom #after-post a{
	color:#009ff5;
}

.custom a {
	color:#009ff5;
}

.custom #sidebars h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	color:#000000;
	font-variant:normal;
	letter-spacing:2px;
	text-transform:uppercase;
}

.custom #footer {
	border-top: 3px solid #a0eb00;
}

.custom #footer p {
	font-size:11px;
}

.custom .post_box {
	border-top:none;
	clear:right;
}

.custom #multimedia_box{
/*
	border-left:3px solid #a0eb00;
	*/
}	

.custom #custom_box{
/*	
	border:1px solid;
*/
	background-color:#FFFFFF;
	border:3px solid #f26522;
}

.custom #custom_box h3{
	color:#000000;
	text-transform:none;
	letter-spacing:0px;
	font-size:19px;
	font-weight:bold;
}

.custom #custom_box p{
	font-size:11px;
	padding-top:10px;
	padding-bottom:10px;
}

.custom #custom_box input{
	font-size:13px;
	width:250px;
	height:20px;
}

.custom #custom_box .subbutton{
	padding-top:10px;
	background:none;
	border:none;
	color:#444444;
	width:125px;
	height:25px;

}

.custom #custom_box #rss_img{
	float:right;
	position:absolute;
	padding-top:10px;
	padding-left:10px;
	
}

.custom #custom_box #privacy{
	color:#999999;
	font-size:9px;
}

.custom .list_table tr{
	border:solid 1px black;
}



.custom .list_table .header{
	font-weight:bold;
}

.custom .list_table {
	border: solid 1px black;
	border-spacing: 0px;
	border-collapse: collapse;
	font-size:9px;
}
.custom .list_table th {
	padding: 3px;
	border: solid 1px gray;


}
.custom .list_table td {
	padding: 3px;
	border: solid 1px gray;
	text-align:center;
	vertical-align:middle;
}

/* div alert */

.custom div .alert{
	padding:0.538em 0.769em;
	background:#FFFFA0 none repeat scroll 0 0;
	border:1px solid #E5E597;
}