/*
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/
*/

.custom .menu a {
text-transform: none;
}

.custom .menu {background:#022b4b;}

.custom ul.menu li.current > a { font-weight: bold; }

.custom ul.menu li.current-parent > a { font-weight: bold; }

.custom ul.menu li.current a:hover { background: #18507C; }

/* For new custom menu */

.custom ul.menu li.current-menu-item > a { font-weight: bold; }

.custom ul.menu li.current-menu-ancestor > a { font-weight: bold; }

.custom ul.menu li.current-menu-item a:hover { background: #18507C; }

.custom .format_text h2, .custom .format_text h3 {
	font-size: 1.333em;
	line-height: 1.25em;
	margin: 0.875em 0 0.625em 0;
}

.custom #footer
{
	text-align: left;
	background:#022b4b;
}

.custom #container
{
	border: 1px solid black;
}

.custom .breadcrumbs
{
	margin-top: 1em;
	margin-left: 0.818em;
	font-size: 10pt;
}

.custom #archive_intro
{
	display: none;
}

.custom .entry-title
{
	padding-left: 0.5em;
	padding-bottom: 1px;
	border-bottom: 1px solid #E7AB0B;
	border-left: 1em solid #E7AB0B;
}

.custom .headline_area h1
{
	font-size: 2em;
	font-weight: bold;
	padding-left: 0.5em;
	padding-bottom: 1px;
	border-bottom: 1px solid #E7AB0B;
	border-left: 1em solid #E7AB0B;
}

.home .top .headline_area h2
{
	font-size: 2em;
}

.custom .headline_area h2
{
	font-size: 2em;
/*	font-size: 1.5em;*/
	font-weight: bold;
	padding-left: 0.5em;
	padding-bottom: 1px;
	border-bottom: 1px solid #E7AB0B;
	border-left: 1em solid #E7AB0B;
}

.custom ul.sidebar_list
{
	padding-top: 1em;
}

.custom li.widget ul li
{
	padding-left: 16px;
	background: url(images/arrow-right.gif) no-repeat 0px 5px;
}

.custom li.widget ul li ul.children
{
	padding-left: 0px;
}
.custom li.widget ul li ul.children li
{
	padding-left: 0px;
/*	background: url(images/bullet.gif) no-repeat 0px 5px;*/
}

.custom .post_box
{
	padding-top: 1em;
}

.custom .thesis_widget_search
{
	margin-bottom: 0em;
}

.custom .thesis_widget_search p
{
	margin-bottom: 1em;
}

.sidebar h3
{
	border-bottom: 1px solid #E7AB0B;
}

/*
li.flexipages_widget ul li.current_page_item
{
	background-color: #022B4B
}

li.flexipages_widget ul li.current_page_item a
{
	color: white;
}


li.flexipages_widget ul li.page_item:hover
{
	background-color:#c3d4df;
}*/