/* background styling */
body.custom { background: #445c66 url('images/ipbg.gif') 50% 0 repeat-x; background-attachment: fixed;}
.custom .page { background: #fff;}
.custom #header { padding-bottom: 0; padding-top: 0; border: 0;}

/* navigation styling */
.custom ul.menu { padding-left: 0; width: 1008px; }
.custom ul.menu li { padding: 0; margin: 0; border: 0; font-weight: bold; text-transform: uppercase;}
.custom ul.menu li a { line-height: 1.5em; font-weight: bold; text-align: center; letter-spacing: 0px; width: 150px;}
.custom ul.menu li a:hover { text-decoration: underline;}

/* sidebar title normal case */
.custom h3 { padding-top:.5em; font-weight: bold; letter-spacing:0;}

/* link hover color */
.custom a:hover { color: #dd8a56;}

/* remove from category archive text */
#archive_info {display:none;}

/* other styling */
.custom #feature_box {border:0;}
.widget {border-bottom:1px dotted #ddd;}
/* .custom sidebar_2 .widget {margin-bottom:0px;} */
/* #text-3 .widget {border-bottom:1px dotted #ddd; margin-bottom: .5em; } */
.custom li.widget {margin-bottom:1em;}

/* footer styling */
.custom #footer { border: 0; text-align: center; padding-top: 2em;}
.custom #footer a { border-bottom: 0;}

/* footer widget styling */
.custom #subfooter { width:988px; background: #fff url('images/backgrey.jpg') 50% 0 repeat-x; height:325px; clear:both;}
.custom #subfooter .widget { width:320px; float:left; text-align: left; border-bottom:0; margin-top:15px;}
#subfooter .textwidget img { padding: 1em;}
#subfooter .widget .inner { padding: 10px;}
#subfooter .widgettitle {padding-bottom: 1em;}
#subfooter li { list-style-type: none; list-style-image: none;}
#subfooter li ul { padding-left:0px; font-size: 1em; border-bottom: 0;}
#subfooter a { padding:0; width: 90%; text-decoration: none; clear:both; display:block;}
#subfooter a:hover { text-decoration: none; color: #dd8a56;}

/* twitter widget styling */
.custom .twitter-item { background: #eee; margin-bottom: 0em; padding: 1em; border-bottom: 1px solid #999;}
.custom .twitter-item:hover { background: #8dafb1;}
.custom .twitter-item a { color: #2361a1;}
.custom .twitter-item a:hover { color: #000;}

/* Teasers one across instead of two */
.custom .teaser { width: 100%; margin-top: 2em; padding-top: 2em; border-top: 1px dotted #bbb; text-align: justify;}
.custom .teasers_box { padding-top: 0; border-top: 0;}
.custom .teasers_headline { font-weight: bold;}

.custom .comments_closed p { display: none;}

/* Social Media Connect icon styling */
.custom #rssicon {background: url('images/rssicon.jpg') no-repeat; width:190px; height:65px; float:left; padding-bottom:5px;}
.custom #newsicon {background: url('images/newsicon.jpg') no-repeat; width:190px; height:65px; float:left; padding-bottom:5px;}
.custom #twittericon {background: url('images/twittericon.jpg') no-repeat; width:190px; height:65px; float:left; padding-bottom:5px;}
.custom #fbicon {background: url('images/fbicon.jpg') no-repeat; width:190px; height:65px; float:left; padding-bottom:5px;}

/* left footer icons */
.custom #amga {background: url('images/logo-amga.jpg') no-repeat; width:75px; height:71px; display:block; padding-right:10px; margin-left:45px;}
.custom #lnt {background: url('images/logo-lnt.jpg') no-repeat; width:75px; height:71px; display:block; margin-top:15px; margin-left:45px;}

/*
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/
*/