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

/* Category Nav Menu */

ul#cat_tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
  ul#cat_tabs li { margin-bottom: 0.25em; background: #efefef; border: 1px solid #ddd; border-left: 0; float: left; }
  ul#cat_tabs li.current_page_item, ul#cat_tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
	ul#cat_tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; padding:0.545em 0.818em; }
	ul#cat_tabs li a:hover { color: #111; text-decoration: underline; }

      ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}
	  ul#cat_tabs li:hover ul {display:block;}
	  ul#cat_tabs li ul li {float:none;}

ul#cat_tabs:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }

.custom #header #logo a { display: block; height: 100px; width: 350px; background: url(images/logo.png) no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; } .custom #header { padding: 0; }
.custom #header {border-bottom:none;}

.sidebar_box {margin-bottom: 0.25em; text-align:center;}

.custom div.adblock img {
  padding: 4px;
  background-color: #FFFFFF;
  display: inline;
}
.custom .cenx {text-align: center;}

/* paste the code in  custom.css   */
.custom #header #header_ad {
float:right;
margin-top:-9.25em;
width:728px;
}

.custom_box { background: #FFFFFF; }
.custom #multimedia_box  { margin-bottom:0.25em; }

.custom_1_box { 
background: #F7F7F7;
list-style-position:inside;
list-style-type:circle;
padding:0 0 10px; 
font-size:1.1em;

}

.custom #sidebars li.widget ul {
background:none repeat scroll 0 0 transparent;
border:0 none;
list-style-position:inside;
list-style-type:circle;
padding:0 0 10px;

}

.custom #sidebars li.widget li {
   padding: 0px;
}

.custom #sidebar_1 { background: #F7F7F7; }

.custom .teaser { text-align: justify; }

/*-- Highlight admin comment --*/
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #F7F7F7 none repeat scroll 0 0; padding-top:20px;}

/* Nav Search */
.custom ul.menu li.nav_right {
  float:right;
  font-size:10px;
  height: 22px;
  letter-spacing:1px;
  overflow:hidden;
  text-transform: uppercase;
}

.custom ul.menu li.search {
  background-color: #EFEFEF;
  border-bottom:none;
  height:25px;
  margin-bottom:0;
}

.custom ul.menu li.search input {
  background-color: #EFEFEF;
  border:0.05px solid #EFEFEF;
  color:#333;
  font-size:10px;
  height:18px;
  letter-spacing:1px;
  padding:4px 10px 0 22px;
  text-transform: uppercase;
  width:125px;
}

.headline_meta {
  font-style: normal;
  a img: margin-left:5px;
}

div.social_icons img {padding: 3px;}	

/* Page Navigation */
.custom .full_width #content_box .wp-pagenavi .page {
  margin: 2px;
  padding: 2px 4px;
}

<code>/* NUMBERED PAGE NAV */
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #efefef; border: .1em solid #ccc; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #efefef; border: .1em solid #ccc; }
.elipses { float: left; padding: .3em .2em; }</code>

/* Breadcrumbs */
#crumbs {
	font-size: 11px; /*font size, change this to whatever you want*/
	padding: 10px 0px 0px 10px; /*10 padding top, 10 padding left*/
}
#crumbs a {
	color: #2255AA /*change this to whatever color you want*/
}
#crumbs a:hover {
	text-decoration: underline; /*underline the links on a mouse over*/
}
