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

.clear {
  clear: both;
}

body.custom {
}

.custom #page {
  padding-top: 0;
  margin-top: 0;
}

.custom input[type="submit"],
.custom input[type="button"] { cursor: pointer; }

/* ---------------------- Header ---------------------- */

.custom #header {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 200;
}

.custom #logo,
.custom #tagline {
  float: left;
  margin-top: 30px;
  margin-bottom: 17px;
}

.custom #tagline {
  padding-left: 14px;
}

.custom #portrait {
  position: relative;
  z-index: 100;
  top: -136px;
  margin-bottom: -132px;
  left: 670px;
  width: 180px;
}

.custom .menu,
.custom .menu a,
.custom .menu li ul { border: 0; }

.custom .menu {
  clear: left;
  margin: 10px auto 0;
  padding-left: 4px;
  background: #ede6cc;
  min-height: 36px;
  border-bottom: 6px solid #d71920;
}

.custom .menu a {
  display: block;
  float: left;
  color: #000;
  background: #ede6cc;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
	line-height: 1;
	text-transform: uppercase;
	padding: 12px 20px 9px;
	margin: 0;
	letter-spacing: normal;
}

.custom .menu li:hover {
  background: transparent url(images/tabover-left.gif) top left no-repeat;
}

.custom .menu a:hover {
  background: transparent url(images/tabover-right.gif) top right no-repeat;
  color: #fff;
}

.custom .menu .current,
.custom .menu .current:hover,
.custom .menu .current-parent,
.custom .menu .current-parent:hover {
  position: relative;
  top: -4px;
  background: transparent url(images/tabactive-left.gif) top left no-repeat;
  margin: 0 0 -10px;
}

.custom .menu .current a,
.custom .menu .current a:hover,
.custom .menu .current-parent a,
.custom .menu .current-parent a:hover {
  background: transparent url(images/tabactive-right.gif) top right no-repeat;
  border-bottom: 0;
  padding: 14px 22px 14px;
  font-size: 18px;
  color: #000;
}

/* Second- and Third-level Lists */

.custom .menu .submenu {
  margin-top: 36px;
  width: 160px;
  background: #666;
}

.custom .menu .current-parent ul.submenu {
  margin: 46px 0 0 9px;
  border: 1px solid #ddd;
  background: #fff;
  border-top: 0;
}

.custom .menu .submenu li,
.custom .menu .submenu a {
  background-image: none;
}

.custom .menu .submenu a,
.custom .menu .submenu a:hover {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: none;
  color: #fff;
  background: #666;
  padding: 8px 12px;
  margin: 0;
  border: 0;
  border-top: 1px solid #444;
}

.custom .menu .current-parent .submenu a {
  border-top: 1px solid #ddd;
  background: #fff;
  color: #000;
}

.custom .menu .submenu a:hover {
  background: #222;
}

.custom .menu .current-parent .submenu a:hover {
  border-top: 1px solid #ddd;
  background: #eee;
  color: #000;
}



/* -------------------- End Header -------------------- */



/* --------------------- Content ---------------------- */

.custom #content_box {
  background: #fff url(images/sidebar-background.png) right top repeat-y;
}

.custom h1,
.custom h2 {
  line-height: 1;
  letter-spacing: -1px;
}

.custom .post_box h3 {
  font-size: 21px;
  font-weight: bold;
  color: #d71920;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
}

.custom .format_text li {
  margin: 1em 0;
}

.custom .format_text .meta {
  font-size: 13px;
}

.custom .format_text .meta a {
  color: #555;
}

.custom .format_text small { font-size: 10px; }

.custom .format_text small,
.custom .format_text small a { color: #444; }

.custom .post_box {
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid #ddd;
}

.custom #disqus_thread {
  margin: 1em 1.5em 1em 1em;
}

.custom #dsq-content a,
.custom .dsq-brlink {
  color: #111;
}

.custom .dsq-brlink { margin-left: 1em; }

.custom .share {
  font-size: 12px;
  margin-bottom: 10px;
}

.custom .prev_next {
  border-top: 1px solid #ccc;
  margin: 2em 1em;
}

.custom .prev_next a { color: #222; }

.custom .call_to_sub {
  border: 1px solid #ccc;
  background: #eee;
  padding: 15px;
  font-size: 12px;
}

.related {
  border-top: 1px solid #ddd;
}

.custom .format_text .related p {
  margin-bottom: 0;
  padding-top: 1em;
  font-size: 13px;
}

.custom .format_text .related li {
  margin: 0;
  font-size: 13px;
  line-height: normal;
}

.custom .related a { color: #222; }

/* ------------------- End Content -------------------- */



/* ---------------------- Sidebar --------------------- */

.custom .sidebar a {
  color: #222;
}

.custom .sidebar .widget li {
  line-height: 1;
}

.custom #sidebars .chipin {
  clear: both;
  text-align: center;
  background: #ccc;
  padding: 15px;
}

.custom .sidebar h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-variant: normal;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: normal;
  color: #555;
  margin: 0.5em 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ede6cc;
  text-align: left;
}

.custom #multimedia_box {
  position: relative;
  z-index: 300;
  padding: 0;
  margin-bottom: 1em;
  background: #e6e6e6;
}

.custom #multimedia_box .thesis {
  padding: 15px;
  text-align: center;
}

#lijit-search {
  padding: 8px 16px 12px;
  background: #ccc;
}

#lwp_f { width: 320px !important; }

#lijit-search #lwp_sfd,
#lijit-search #lwp_2_searchbutton {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  padding: 2px;
  line-height: 16px;
  margin-right: 5px;
  float: left;
  position: relative;
  z-index: 300;
}

#lwp_main img {
  float: right;
  padding-top: 4px;
}

#lijit-search #lwp_sfd {
  width: 200px;
  border: 1px solid #999;
  color: #666;
  margin-top: 4px;
}

#lijit-search #lwp_2_searchbutton {
  background: #444;
  padding: 6px 10px;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

*:first-child+html #lwp_2_searchbutton {
  padding: 4px 2px; /* for IE7 */
}

#sidebar-subscribe {
  margin: 0;
  background: #333;
  padding: 0 0 0 16px;
}

#sidebar-subscribe img {
  margin: -7px 6px -10px 0;
}

/* -------------------- End Sidebar ------------------- */



/* ---------------------- Footer --------------------- */

#footernav {
  clear: both;
  background: #ede6cc;
  min-height: 36px;
  border-top: 6px solid #000;
  list-style: none;
}

#footernav { text-align: center; }

#footernav li { display: inline; }

#footernav a {
  display: inline;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 13px;
  line-height: 36px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 10px;
  border-bottom: 0;
}

#footernav a:hover {
  border-bottom: 1px solid #000;
}

.custom #footer {
  text-align: center;
  padding: 0 0 1em;
}

.custom #copyright {
  margin: 2em 0;
}

/* -------------------- End Footer ------------------- */









