﻿/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/
body {
}
/* Remove padding in header */
#header {
	border-bottom: 1px solid #ddd;
	clear: both;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 4em;
}
/* logo positioning */
#logo {
	margin-top: 1px;
	margin-bottom: 14px;
}

#logo_blog {
	margin-top: 0px;
	margin-bottom: 16px;
}

#footer {
	border-top: 1px solid #ddd;
}


/* TEMP LOGO TEXT */
/* .logotext_temp {
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #636563;
	line-height: 0px;
	padding-top: 5px;
	padding-bottom: 30px;
} */

.portrait
{
	margin-top:5px;
	padding-right: 10px;
}

.logoByline {
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #636563;
	line-height: 10px;
	padding-bottom: 10px;

}
.blueText {
	font-family: "Trebuchet MS";
	color: #0074C5;
	font-weight: normal;
}

.headerMenu{
	font-family: "Trebuchet MS";
	text-align: right;
	margin-top: -10px;
	color: #888;
		
	/* float: right; */
}
.headerMenu img{
    vertical-align: top;
    padding: 1px;
}



.headerMenuItem,
a.headerMenuItem, a:visited.headerMenuItem  {
	font-family: "Trebuchet MS";
	font-size: 11px;
	letter-spacing: 2px;
	color: #222;
	text-align: right;
	margin-top: 0px;
	text-decoration: none;
	text-transform: uppercase;
}

a:hover.headerMenuItem  {
	color: #0074C5;
}


/*---:[ headlines ]:---*/
h2 a, h2 a:visited {
	color: #0074C5;
	text-decoration: none;
}
h2 a:hover {
	color: #0074C5;
	text-decoration: underline;
}

/*---:[ menu ]:---*/
/* Menu Text */
ul#tabs li a{
	/* text-transform: none; */
	text-decoration:none; 
	/* font-weight:normal; */
	/* color:#0074C5; */
			
}

ul#tabs li a:hover{
	/* text-transform: none; */
	text-decoration:none; 
	color: #0074C5; 	
} 

/*---:[ background ]:---*/
/* background color */
body.custom {
	/* background: #44443f; */
    background: #EEE;
}
/* Border */
.custom #container {
	margin-top: 2em;
	margin-bottom: 2em;
	padding: 0.3em;
	background: #fff;
	border: 0.1em #DDD solid; 
	/* border: 0.1em #333333 solid;  */
}
/* Background Color of page */
.custom #page {
	background: #fff;
}
/*---:[ global elements ]:---*/
a, a:visited {
	color: #0074C5;
	text-decoration: underline;
}
a:hover {
	color: #0074C5;
	text-decoration: none;
}

.sidebar_list a:hover{
	text-decoration: none;			
}


.headline_meta A, A:visited
{
	color: #0074C5;
	text-decoration:underline;				
}

.headline_meta A:hover
{
	color: #0074C5;
	text-decoration:none;				
} 

.post_tags a
{
	text-decoration:none;
	color: #0074C5;			
}

.post_tags A:visited
{
	text-decoration:none;
	color: #0074C5;				
}

.post_tags A:hover
{
	text-decoration:underline;
	color: #0074C5;				
}




/*¨Infobox */
.info_box {
	border-right: #addde6 1px solid;
	padding-right: 0.78em;
	BORDER-TOP: #addde6 1px solid;
	PADDING-LEFT: 0.78em;
	BACKGROUND: #e3f0f2;
	MARGIN-BOTTOM: 1.57em;
	PADDING-BOTTOM: 0.57em;
	BORDER-LEFT: #addde6 1px solid;
	PADDING-TOP: 0.57em;
	BORDER-BOTTOM: #addde6 1px solid;
}

/* FOOTER */
.copyright{
	font-family: Georgia, "Times New Roman", Times, serif ;
	font-size: 10px;
	color: #888;
	text-align: right;
	margin-top: 5px;
}





