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

/*---:[ core ]:---*/
.custom {
	font-family: Verdana, sans-serif;
}

.custom #content_box {
	background: none !important;
}

.custom .page {
	width: 950px;
	margin: 0 auto;
	background: none;
}

.custom #content {
	width: 633px;
}

.custom #content.no_sidebars, .no_sidebars #content {
	width: 100%;
}

.custom #sidebars {
	width: 317px;
}

.custom #sidebars div.sidenav {
	margin-bottom: 20px;
}

.custom #sidebars div.sidenav h2 {
	font-size: 2.5em;
	color: #000;
	margin-bottom: 10px;
	text-align: center;
}

.custom #sidebars div.sidenav ul {
	/*margin-left: 20px;*/
	list-style: none;
}

.custom #sidebars div.sidenav ul li {
	border-bottom: 1px solid #CCC;
	padding: 10px 0;
}

.custom #sidebars div.sidenav a {
	font-size: 1.8em;
}

.custom #header_area {
	height: 307px;
	background-color: transparent;
	background-image: url('images/bg-header.jpg');
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-attachment: scroll;
	opacity: 1;
	padding-top: 20px;
}

.custom #header_area .page {
	padding: 0;
}

.custom #header_area .pod_half {
	color: #fff;
}

.custom #header_area p {
	margin-bottom: 20px;
	font-size: 1.4em;
}

.custom #header_area p.emphasize_it {
	text-align: right;
	font-style: italic;
	color: #000;
}

.custom #header_area h1 {
	font-size: 24px;
	text-align: left;
	margin-bottom: 20px;
	color: #FFF;
	background: none;
}

.custom h1#logo a {
	/*margin-bottom: 0px;*/
	color: #808080;
	font-size: 2.5em;
}

.custom #header {
	display: inline;
	border-bottom: none;
	padding: 0;
}

.custom #footer_area {
	background-color: #D0D9E0;
	background-image: url('images/bg-footer.gif');
	background-repeat: repeat-x;
	background-position: 0 0;
	background-attachment: scroll;
	opacity: 1;
	height: 214px;
	clear: both;
	padding-top: 30px;
	font-size: 12px;
}

.custom #footer_area ul {
	list-style: none;
}

.custom #footer_area li {
	margin-bottom: 8px;
}

.custom #footer_area a {
	color: #576672;
}

.custom #footer_area a:hover {
	text-decoration: underline;
}

.custom #footer_area h4 {
	margin-bottom: 10px;
	font-size: 16px;
}

.custom #footer_area .pod {
	/*width: 237px;*/
	width: 25%;
	float: left;
}

.custom #footer {
	color: #888;
	border-top: none;
	text-align: right;
	clear: both;
}

.custom #header #tagline { color: #CCC; }

.custom .sidebar ul.sidebar_list { padding-right: 0; padding-left: 0; }

/*---:[ content area ]:---*/
/*.custom #content_box { background: none !important; }*/

/*---:[ comments ]:---*/
.custom.is_page .comments_closed {
	display: none;
}

/*---:[ nav menu styles ]:---*/
.custom .menu { border: none; font-family: "Trebuchet MS",Helvetica,Verdana,sans-serif; }
	.menu li { margin-bottom: 0; }
		.custom .menu li a { cursor: pointer; cursor: hand; color: #FFF; font-size: 24px; padding: 0.75em 1.5em 0.545em 0; border: none; }
		.custom .menu li a:hover { color: #FFF; text-decoration: underline; }
		
.custom .menu .current a { text-decoration: underline; }
.custom .menu a, .custom .menu .current ul a, .custom .menu .current-cat ul a { background: #000; }
.custom .menu a:hover, .custom .menu .current ul a:hover, .custom .menu .current-cat ul a:hover, .custom .menu .current-parent a:hover { background: #000; }

/*---:[ headlines ]:---*/
.custom h1, .custom h2, .custom h3 {
	/*font-family: Georgia,"Times New roman",Times,serif;*/
	font-family: "Trebuchet MS",Helvetica,Verdana,sans-serif;
	color: #000;
}

/*---:[ social icons ]:---*/
.custom .social {
	padding: 18px 0px 12px 60px;
	height: 30px;
	background-position: 4px 4px;
	background-repeat: no-repeat;
	font-size: 20.25px;
}

.custom .twitter {
	background-image: url('/media/images/icons/twitter-48x48.png');
}

.custom .linkedin {
	background-image: url('/media/images/icons/linkedin-48x48.png');
}

.custom .feed {
	background-image: url('/media/images/icons/feed-48x48.png');
}

.custom .zce {
	padding: 24px 0px 12px 84px;
	height: 75px;
	background-image: url('/media/images/icons/php5_zce_logo_new.gif');
}

/*---:[ form messages ]:---*/
.custom .form-message-error {
	background-color: #FDE8E7;
	color: #52565B;
	border: 2px solid #DFB9B7;
	padding: 10px;
}

.custom .form-message-success {
	background-color: #FDF6D4;
	color: #52565B;
	border: 2px solid #EAE3C1;
	padding: 10px;
}

.custom .form-error {
	color: #ff0000;
	font-weight: bold;
}

/*---:[ form elements ]:---*/
.custom input, .custom textarea {
	font-size: 1.5em;
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
	background: #FFF;
	padding: 5px;
	border: 1px solid #aaa;
	border-radius: 10px;
    -moz-border-radius: 10px;
}

.custom input.submit {
	background-color: #ddd;
	color: #000;
	font-weight: bold;
	letter-spacing: 8px;
}
	

/*---:[ callouts ]:---*/
.custom .callout {
	background-color: #FFF298;
	padding: 16px;
	border: 1px solid #ECD852;
	text-align: center;
	width: 75%;
	margin: auto;
	font-size: 1.5em;
}

.custom .callout a {
	color: #846000;
}

/*---:[ portfolio screencaps ]:---*/
.custom .portfolio_bg {
	background-image: url('/media/images/bg_portfolio.png');
	background-repeat: no-repeat;
	width: 462px;
	height: 319px;
}

.custom .portfolio_bg img {
	margin-top: 28px;
}

.custom .pod_half {
	width: 50%;
	float: left;
}

.custom .clear {
	clear: both;
}