/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's 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!
*/


/* page borders */
body.custom { background: #369 url('images/blue_flecks.jpg'); background-attachment: fixed;}

.custom #page { padding: 2em 1.9em; background: #fff; border: .1em solid #767676; border-top: 0; }
/* end of page borders */


/*---:NAV MENU CUSTOMIZATION:---*/
.custom #tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
	.custom #tabs li { margin-bottom: -0.1em; background: #fff; border: 1px solid #ddd; border-left: 0; float: left; }
	.custom #tabs .current_page_item, .custom #tabs .current-cat { padding-bottom: 0.1em; background: #feb21f; border-bottom: 0; }
		.custom #tabs a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; }
	.custom #tabs a:hover { color: #111; text-decoration: underline; }
		.custom #tabs .current_page_item a, .custom #tabs .current-cat a { color: #fff; text-shadow: #369 0 0 3px; cursor: text; }
		.custom #tabs .current_page_item a:hover, .custom #tabs .current-cat a:hover { color: #fff; text-shadow: #369 0 0 3px; text-decoration: none; }
	.custom #tabs .rss { padding-right: 0; background: none; border: none; float: right; }
		/*.custom #tabs .rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }*/


/*---:HEADER CUSTOMIZATION:---*/
/* This line sets up our clickable background image based on the site title's link */
.custom #header #logo a { display: block; height: 108px; width: 1003px; background: url('images/AFS_header-bg.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }
/*---:END HEADER CUSTOMIZATION:---*/

.custom a, .custom a:visited { color: #369; }
.custom a:hover { color: #C63; }

/*.custom #header {
	padding-bottom: 2.2em;
	padding-left: 1.1em;
	padding-right: 1.1em;
	padding-top: 2.2em;
	color: #336699;
	text-align: left;
	clear: both;
	}

.custom #header h1, #header p#tagline {
	font: normal 1.4em/1em Georgia, "Times New Roman", Times, serif;
	line-height: 1.2em;
	margin-right: 38em;
	text-align: left;
	padding-left: 0em;
	}

.custom #header #logo {
	text-shadow: 0px 0px 4px #C63;
	color: #369;
	font: bold 3.0em Georgia, "Times New Roman", Times, serif;
	margin-top: -0.3em;
	margin-bottom: 0.3em;
	}*/

.custom #header #logo a, #header #logo a:visited {
	color: #369;
	text-decoration: none;
	}

.custom #header #logo a:hover { color: #C63; }

.custom table.dotted {
	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-top: 0.4em;
	padding-bottom: 0.4em;
	margin-left: 1.6em;
	margin-right: 1.6em;
	margin-bottom: 1.2em;
	margin-top: 1.2em;
	border-style: dotted;
	border-width: thin;
	}

.custom .frame {
	display: block;
	padding: 0.1em;
	background: #fff;
	border: 0.1em solid #bbb;
	float: right;
	margin-top: -4.8em;
	}

.custom img.frame {
	margin-top: .25em;
	margin-bottom: .25em;
	}

.custom img.left img.alignleft {
	margin-right: .3em;
	}

.custom img.right img.alignright {
	margin-left: .3em;
	}

.custom #copyright {
	text-align: left;
	float: left;
	}