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

/* BODY TAG */
body.custom { 
background-image: url('images/gradient-bk-white.jpg'); background-repeat: repeat; 
font-family: "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif; 
color:#444D4B;
}


/* LINKS */
.custom a { 
color: #F00C5C;
text-decoration: none; }

/*
.custom a:link   {
	text-decoration: none;
	color: #F00C5C;
} */


.custom a:hover, p a:hover, h1 a:hover, h2 a:hover, h3 a:hover {
	color: #FFFFE5;
	background-color: #95E6EB;
	text-decoration: none;
	
}


.custom h2 a { color: #444D4B; font: 28px "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif; text-decoration: none; margin-top: 4px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 4px;
line-height:1.0em;
font-style:italic;
} 

/* TEXT */
.custom p {
	font-family: Georgia, "Times New Roman", Times, serif; color: #0E1617; margin-top: 4px; margin-bottom: 4px; font-size: 12px; line-height: 20px;
}

.custom .format_text .post_tags {
color: #444D4B; font: 14px "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-style:italic;
}

.custom #header #logo a { color: #444D4B;

}


.custom #header { border-bottom: none; background-image: url(images/amc-logo-black.gif); background-position:left; background-repeat:no-repeat;
padding-left: 290px; 

}


.custom #content h1, .custom #header #logo a {
	color: #0E1617;
	text-decoration: none;
	margin-top: 4px;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-family: "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif;
	font-size: 36px;
	font-style: italic;
	line-height: 42px;
}


.custom #content h2, h2, { color: #444D4B; font: 28px "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif; text-decoration: none; margin-top: 4px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 4px; }

.custom h3, .custom #ngg-webslice h2 { color: #444D4B; font: 18px "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif; text-decoration: none; text-transform: uppercase; letter-spacing: 3px; margin-top: 4px; margin-bottom: 8px; font-style: italic; }

/* TABS */

 .custom ul#tabs { border: 0; 
 margin: 0px 0px 0px 0px;
 padding: 0px 0px 0px 0px;
 }
 
.custom ul#tabs li { 
font-family: "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif;
background-color: transparent;
	font-style: italic;
	font-size: 1.4em;
	text-transform: none;
	display: block;
	letter-spacing:2px;
	line-height:1em;
	padding: 0px 0px 0px 0px;
	border: 0px;
	margin: 0px 0px 0px 0px;

}
.custom ul#tabs li.rss { background: none; border: none; 
margin-right: 0;}

.custom ul#tabs li {
	padding: 0px 0px 0px 0px;
}


.custom ul#tabs li a {
	border: 1px #444D4B dotted;
	/*border-left: 0;*/
	color: #444D4B;
	margin: 2px 2px 2px 2px;
	padding: 7px 15px 7px 15px;
}

.custom ul#tabs li.rss a { padding: 7px 20px 7px 15px;
}


.custom ul#tabs	li.current_page_item a {
	border: 1px #444D4B dotted;
	margin: 2px 2px 2px 2px;
	padding: 7px 15px 7px 15px;
}

.custom ul#tabs	li.current_page_item a:hover {
	text-decoration:none;
	color: #0E1617;
	background-color: #ff3399;
	border: 1px #777777 solid;
}

.custom ul#tabs li a:hover {
text-decoration:none;
	color: #0E1617;
background-color: #ff3399;
border: 1px #777777 solid;
/*border-left: 0;*/
}

.custom div.widget_box { background-color: #222222; 
border: 1px #777777 solid;
}


.custom #content_box { background:none;
}

.custom .ngg-widget img {
	background-color:#FFFFFF;
border: 1px solid #DCDCDC;
margin :0 2px 2px 0;
padding: 2px;	
}

.custom .ngg-gallery-thumbnail img {
background-color:#FFFFFF;
border:1px solid #DCDCDC;
display:block;
margin:4px 0 4px 5px;
padding:2px;
position:relative;
}

.custom .ngg-albumtitle { color: #444D4B; font: 18px "Helvetica Neue", "Franklin Gothic Medium", Helvetica, Arial, Geneva, sans-serif; text-decoration: none; text-transform: uppercase; letter-spacing: 3px; margin-top: 4px; margin-bottom: 8px; font-style: italic; }

.custom .ngg-singlepic { margin-bottom: 10px; }