/*
	custom.css ? custom styles for any WordPress theme that YOU define
	------------------------------------------------------------------
	
	This stylesheet will allow you to futureproof your CSS changes
  against future releases and upgrades on ANY WordPress theme. I 
	know you work hard on your modified styles, and I don't want you 
	to feel like every theme upgrade is a total drag!
	
	Also, if you're a designer who makes use of GPL themes in your
	work, you'll find this incredibly handy! You can come up with a
	set of core modifications for any WordPress theme, and by
	isolating these mods in a separate stylesheet, you'll be better
	able to track the changes that you make and their associated
	effects. Best of all, when the theme's designer releases a new
	version, you won't have to go back through and make all your
	changes anew. Plus, this is *definitely* the smartest way to scale
	out sites if you find yourself using one or two theme frameworks
	consistently.
	
	Instructions:
	
	Modifying existing theme styles to your liking is a breeze with
	this handy stylesheet. In order to turn on the CSS styles that you
	define here, you'll need to append the <body> tag (usually found
	within the header.php file) with a CSS class called "custom".
	Thanks to this, you now have the ability to override ANY style
	that's declared in the theme's original stylesheet.
	
	In practice, you simply need to copy the CSS for the element that
	you want to change (from style.css) and then paste it here. Prefix
	the new CSS declaration with .custom, and then make your tweaks as
	necessary.
	
	Here's an example:
	
	To change the default color of the <a> tag (let's say you want to 
	make them a cherry red [#c00]) and to remove the default
	underline, this is what you would do:
	
	.custom a { color: #c00; text-decoration: none; }
	
	Oh, but remember, none of these changes will work unless you call
	custom.css from wihtin your header file!
	
	Cool? Now get to hackin!
*/

.custom	.posts h2 { margin: 0 0 0.1em 0; font-size: 2.0em; line-height: 3.0em; border-bottom: solid 1px #D9D9D9; }
	
.custom	.pages h2, h2.page_header { margin: 0 0 0.75em 0; font-size: 2.0em; line-height: 3.0em; border-bottom: solid 1px #D9D9D9; }

div.imgcaptR 
{
  float: right;
  width: 204px;
  border: 2px solid #636363;
  margin: 0.5em;
  padding: 0.5em;
  clear: both;
}

div.imgcaptR p 
{
  text-align: center;
  font-style: italic;
  font-size: small;
  text-indent: 0;
}

div.imgcaptL 
{
  float: left;
  width: 204px;
  border: 2px solid #636363;
  margin: 0.5em;
  padding: 0.5em;
  clear: both;
}

div.imgcaptL p 
{
  text-align: center;
  font-style: italic;
  font-size: small;
  text-indent: 0;
}

img.l200 {
width: 200px;
float: left;
border: 2px solid #636363;
margin-right: 4px;
}

img.r200 {
width: 200px;
float: right;
border: 2px solid #636363;
margin-left: 4px;
}

img.clear200 
{
  width: 200px;
}