/*
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 #widget_content {
background: #fff;
color: #111;
padding-left: 1em;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
padding: 1em 0em 1em 1em;
border: 4px solid #777777;
}

.custom #widget_content .widget_icon {
float: right;
margin-right: 0.5em;}

.custom li.widget .my_widget_header {
background: #ffcc00;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
}

.custom li.widget .my_widget_header h3 {
color: #111111;
font-size: 1.5em;
text-align: center;
}
*/

.custom #header { border-bottom:none;
height:80px;
padding-top:10;
padding-bottom:10;
background:url(http://www.moortownbaptist.org/wp-content/themes/thesis_16/custom/images/Combined_Header.jpg)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header,
and the sides of the content */
.custom #header_area {background:#ffffff;}
.custom #header { padding: 20; border-bottom:20; height:120px;}

/* FAT HEADER */
.custom #myheaderdivdeal {position:relative; margin-left:100px; margin-top:-20px; margin-bottom:10px; width:925px; font-size:small}
.custom #myheaderdivdeal ul.header_list li {list-style-type:none;}

/* Graham's Blog style */
.custom #grahamsblogid
{
  position:relative;
  margin-left:22px;
  margin-top:5px;
  margin-bottom:10px;
  margin-right:22px;
  font-size:medium
}
.custom #grahamsblogid ul.header_list li {list-style-type:none;}

/*Front page table*/
.custom #frontpagetable
{
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    width:100%;
    border-collapse:collapse;
    padding-left: 0em;
}
#frontpagetable td, #frontpagetable th
{
    font-size:1em;
    border:0px solid #CCCCCC;
    border-radius:5px;
    /*padding:2px 7px 2px 7px;*/
}
#frontpagetable th
{
    text-align:center;
    padding-top:1px;
    padding-left:1px;
    background-color:#A7C942;
    color:#ffffff;
}
#frontpagetable tr.alt td
{
  color:#000000;
  background-color:#EAF2D3;
}

.custom #frontpagetable thead td
{
  padding-bottom:10px;
}
.custom #frontpagetable tbody
{
  font-size:0.9em;
  line-height: 150%;
}


/* Unordered list for last blog entries */
.custom #recentblogslist
{
  display: inline-block;
  list-style-type:none;
}

/* As recommended to format the teasers  */
.custom .teaser { text-align: justify; }
/* get rid of the comments are closed comment */
.format_text .to_comments {visibility: hidden;}


/* Just messing about */
/*.custom p { color: black; }*/
/*li#notices_widget{ margin-left: 0px; text-indent: 0em;}*/
.custom .sidebar ul.sidebar_list { padding-right: 1.1em; padding-left: 0em; }
/*.custom li.widget { font-size: 1.3em; line-height: 1.2em; margin-bottom: 2.0em; } */

/* Sort out the space under the picture on front page (maybe others too?) */
.custom div.format_text img.post_image.alignleft {margin-bottom:0;}

.custom .indented
   {
   padding-left: 50px;
   padding-right: 50px;
   }

.custom .centredlarge
   {
   text-align: center;	
   font-size: 1.2em;
   line-height: 120%;	
   }

/* remove sidebars for forumpage only */
.forumpage #sidebars { display: none; border: none; }

.custom #sermon-title
{
  position:relative;
  margin-left:22px;
  margin-top:5px;
  margin-bottom:10px;
  margin-right:22px;
  font-size:medium
}


