/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

.custom #portfolio_box { width:100%; }
.custom #portfolio { float:left; margin-bottom:2em; }
.custom .post_box { }
.custom #portfolio-div { margin:0; }
.custom #portfolio-div li { margin:0 7px 7px 0;
	display:-moz-inline-stack;/*Firefox need this to simulate display:inline-block*/
	display:inline-block; /*IE does not apply this to Block Element, and Firefox does not render this, too*/
	_overflow:hidden;/*fix IE6 to expanded content*/
	zoom:1;/*trigger hasLayout*/
	*display:inline;/*once hasLayout is true, set display:inline to block element will make display:inline behave like display:inline-block*/
}
.custom #portfolio img {clear:left;}

.custom .clrfx{zoom:1;}
.custom .clrfx:after{content:".";display:block;height:0;width:0;line-height:0;clear:both;visibility:hidden;}

.custom {
  background:#736878;
}
.custom #page {
  background:#fff;
  padding:2em 5px;
  width:960px;
  border-left:1px solid #000;
  border-right:1px solid #000;
}
.custom #tabs {
  background:none;
}
.custom #header {
  background:url("http://jcrakow.com/wp-content/themes/thesisML/images/bf_header.jpg");
  height:107px;
  width:972px;
  text-indent:-8888px;
  padding:0;
  border:none;
  margin:5px 0 0 -6px;
}
.custom #content {
  padding-top:20px;
}
.custom #sidebars_box {
  padding-top:45px;
}


