/*
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 Nav Height ]-------/
.custom #header {
padding-bottom:2.2em;
padding-top:0.6em;
}

/*Style background colour of multimedia box*/
.custom_box {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background-attachment:scroll;
background-color:#FFFFFF;
background-image:none;
background-position:0 0;
background-repeat:repeat;
}

/*Style Landing Sites Plugin Text*/
.landingsites{
line-height: 20px;
border: 1px #ffffff;
border-style: double;
width: 450px;
margin: 12px 12px 12px 12px;
padding: 0px 15px 0px 0px;
}

.landingsites .body{
color:#BF0000;
font-family:Georgia,"Times New Roman",Times,serif;
font-size:70.5%;
}

/*Change Background Image*/
body.custom {background: #D9D9D9 url('images/dark-blue-diamond-background.jpg') 50% 50% repeat; background-attachment: fixed;}
.custom #container { margin-top: 2em; margin-bottom: 2em; }
.custom #page { background: #fff; }

/*reposition menu at top*/
.custom .menu {
 top: 25px;
 position: absolute;
}

/*reposition breadcrumbs at top*/
.custom #breadcrumbs {
 top: 142px;
 position: absolute;
}

///TEASERS STUFF//
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;
   }
   .custom .teaser .format_teaser {
   margin-bottom:4px;
   margin-top:4px;
}

/*--------------Category Archive Styling----------*/
/*Cat Archive title*/
.custom #archive_info h1 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 3.0em;
line-height: 1em;
padding-top:0em; }

.custom #archive_info p {
font-size:1em;
line-height:1em;
margin-bottom:1;
margin-top:-1em;
}


/* Individual Post healines*/
/.headline_area h1, .headline_area h2 {
/font-size:1.4em;
/line-height:1.0em;
/}
/.post_box {padding-top:1em;}

/* dont show From Category archive info*/
/*#archive_info p {display:none;}

/*Custom Style Headline 1 & 2 on Archive Pages*/
/.custom .custom_archive .headline_area h1, .headline_area h2 {
/font-size:1.4em;
/line-height:1.0em;
/}
/.custom .custom_archive .post_box {padding-top:1em;}