/*
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 html { min-height:100%; margin-bottom:1px; }

.custom a:link,a:visited { text-decoration:none}

/* .custom ul,ol { list-style:none } */

/* .custom h1,h2,h3,h4,h5,h6,pre,code { font-size:1em;} */

/*
.custom ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input, dl, dd, dt
{ margin:0; padding:0;}
*/

.custom a img,:link img,:visited img { border:0px solid black;}

.custom img {border-style: none;}




body.custom {
    background: url('images/bg4a.gif')repeat; 
    }
    
    
.custom #page {
    background: #fff;
    padding:0;
    width: 900px;
}
 
.custom h1 {
font-family: "Times New Roman", serif;
font-weight:bold;
}

.custom h2 {
font-size: 22px;
}

.custom h2 a{
color: #429837;
}

.custom h2 a:hover{
color: #30888D;
}

.custom p a{
color: #f00;
}

.custom p a:hover{
color: #000;
}

.custom .format_text h1{
font-size: 24px;
line-height:28px;
}

.custom .format_text ul {
line-height: 18px;
margin-right:30px;
}  

.custom .format_text li {
margin-bottom:5px;
} 
.custom #header {
padding: 0;
}
 
.custom #feature_box {
padding: 0;
width: 900px;
}

.custom .panelbox {
padding: 0;
width: 900px;
} 

.custom .format_text input, #commentform input, #commentform textarea {
width:auto;
margin:0;
margin-right:4px;
}

.custom #image_flicker {
height: 70px;
padding:0;
margin:0;
}

.custom .textwidget {
margin:0;
padding:0;
}

.custom li.widget {
margin-bottom:5px;
}

.custom li.widget p{
margin-bottom:5px;
}

.custom #column_wrap ul.sidebar_list {
padding-top:10px;}

.custom .sidebar h3 {
background-color: #429837;
font-family: Georgia, serif;
font-variant: normal;
padding: 7px;
color:#fff;
border:solid 2px #ccc;
}

.custom .sidebar h4 {
font-family: Georgia, serif;
font-variant: normal;
font-weight;bold;
color:#429837;
font-size: 18px;
}

.custom .sidebar h4 a{
color:#429837;
}

.custom .sidebar h4 a:hover{
color:#f30;
}

.custom li.widget ul li {
font-family: arial;
font-size:14px;
font-weight:bold;
color: #006768;
line-height:18px;
margin-left:5px;
}

  
.custom .menu, .menu a, .menu li ul {
	background-color:#429837;
	margin-bottom:0;
    margin:0;
}
  
.custom .headline_area  h2 {
display: none;
}  
 

.custom .sponsor-page { float: left; margin-right: 35px; }
 
 
.custom .sponsors img {
border: 2px solid #ccc;
padding:2px;} 
    
/* Style for Footer */
.custom #footer {
height: 75px;
background-color: #429837;
color: #fff;
font-family: Verdana, sans-serif;
}

.custom #footer img {
background-color:#fff;
}

.custom #footer p {
margin-right:20px;
color:#fff;
font-family: Verdana, sans-serif;
font-size:12px;
}

.custom #footer a {
color: #fff;
text-decoration: none;
border:none;
}

.custom #footer a:hover {
color: #000;
}

