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

/*====================================*/
/*       H G H   M A G A Z I N E         */

/*====================================*/
/* SITE LINKS */
/*====================================*/
.custom a, .custom a:visited { color: #2361A1;  text-decoration: underline;}
.custom a:hover { color: #2361A1;  text-decoration: none;}

#logo, #logo a {font-size: 34px; text-decoration: none;}


/*====================================*/
/* BODY BACKGROUND IMAGE */
/*====================================*/
/*body.custom { margin:0;padding:0; background: transparent url(images/bg_body.gif) top left; }*/
body.custom {background: #6b6b6b url(images/all-bg.gif) repeat-x;}
/*{background: #43454d;}*/

/*====================================*/
/* HEADER */
/*====================================*/
.custom #header {
height: 139px; 
padding-top:1.7em;
padding-bottom:0em;
background:url('images/HGH.jpg' ) repeat-x;
border-bottom:1px solid #008aa6;
}

#content_box {
border-top: none;
}

.custom #header_area .page {
  background: #000000;
}

#logo, #logo a {
padding-top: 29px;
letter-spacing: 2px;
}

#logo a:hover {
padding-top: 20px;
color: #ffffff;
letter-spacing: 2px;
}

/*====================================*/
/* COMMENTS */
/*====================================*/
.custom .comments_closed p {
  display: none;
}

.comments_closed {
margin-bottom:0em;
margin-top:0em;
}

.comments_intro p {
display: none;
}

.comments_intro {
margin-bottom:0em;
margin-top:0em;
}

#comments {
display: none;
}

/*====================================*/
/* SPACE AT TOP AND BOTTOM OF PAGE */
/*====================================*/

.custom #container {
margin-top: 0em;
margin-bottom: 0em;
/*border-right: 1px solid #000000;
border-left: 1px solid #000000;*/
}

/*====================================*/
/* MENU & MENU BACKGROUND TO THE RIGHT */
/*====================================*/
.custom .menu a { color: #FFFFFF;
text-decoration: none;
	font-size: 10px; 
	letter-spacing: .01em; 
	text-transform: capitalize;
padding-top: 6px; 
}

.custom #header_area .page {
  background: #000000;
}


#header {
border-width:0 0 0.3em;
}

/*====================================*/
/* HEADLINES */
/*====================================*/
.headline_area h1, .headline_area h2 a, a:visited{
text-decoration: none;
color:#333333;
}

.custom .headline_area h2 a, a:visited {color: #333333 ; text-decoration: none;}
.custom .headline_area h2 a:hover { color: #333333; text-decoration: underline;}


.headline_area h1, .headline_area h2 {
color:#333333;
}

.teasers_box {
padding-bottom:0em;
padding-top:0em;
}

.custom .headline_area {margin-bottom: 0.7em;}

/*--Solid Line Inbetween Posts on Index Page--*/
.post_box, .teasers_box {
border-style:none;
}

/*====================================*/
/* CATEGORY & TAGS */
/*====================================
.headline_meta a, a:visited {color: #2361A1 ; text-decoration: none; border-bottom: none;}
.headline_meta a:hover { color: #2361A1; text-decoration: underline; }*/

.headline_meta {
color: #777777;
font-size:0.857em;
line-height:1.833em;
margin-bottom:0em;
margin-top:-2em;
}
.headline_meta {
font-style:normal;
}

.headline_meta span, .headline_meta abbr {
font-style:normal;
letter-spacing:0px;
text-transform:capitalize;
}

.post_tags {
color:#777777;
margin-bottom:-3em;
}
.post_tags a {
text-transform:lowercase;
}

/*====================================*/
/* CAPTION FRAME */
/*====================================*/

.wp-caption {
background-color:#edebe0;
border-color:#cac7b9;
border-style:solid;
font-style:normal;
text-align:center;
}
.format_text .wp-caption p {
font-size:0.857em;
line-height:1.5em;
margin-bottom:-.5em;
}

.format_text p {
margin-bottom:1.0em;
}

/*.custom .inline a, a:visited {color: #2361A1 ; text-decoration: underline;}
.custom .inline a:hover { color: #2361A1; text-decoration: none; }*/

.contentad {BORDER:#000 dashed 1px ;MARGIN: 3px 3px 3px 20px; padding-top: -3em; float:left}


/*====================================*/
/* FOOTER */
/*====================================*/
#footer {
border-width:0.3em 0 0;
background: #000000;
}

#footer, #footer a {
color:#FFFFFF;
border-bottom: none;
}

#footer {
padding-bottom:1em;
padding-top: 1em;
}

#footer {
border-color:#000000;
border-style:none;
clear:both;
text-align:right;
}

/*====================================*/
/* MENU */
/*====================================*/
.menu {
border-width:0;
background: #000000;
}
#content {
background:#FFFFFF;
}

/*====================================*/
/* PAGE COLOR */
/*====================================*/
.custom #page { background: #008aa6;}

/*====================================*/
/* SIDEBAR COLOR */
/*====================================*/
.custom li.widget {
margin-bottom:.9em;
padding-bottom:.5em;
width:99%;
padding-top:1em;
padding-left:.8em;
background: #008aa6;
}

/*====================================*/
/* SIDEBAR LINKS */
/*====================================*/
.custom .sidebar a, a:visited {color: #ffffff ; text-decoration: none;}
.custom .sidebar a:hover { color: #ffffff; text-decoration: underline;}



