/*
	custom.css � custom styles for Cutline that YOU define
	------------------------------------------------------
	
	This stylesheet will allow you to futureproof your
	changes against future releases and upgrades. I know
	you work hard on your modified styles, and I don't
	want you to feel like every upgrade is a total drag!
	
	Instructions:
	
	Modifying existing Cutline styles to your liking is a
	breeze with this handy stylesheet. The <body> tag
	within the header.php file has been appended with a
	CSS class called "custom," and thanks to this, you now
	have the ability to override ANY style that's declared
	in the original Cutline 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 unvisited links from 
	blue to red (#c00) and remove the default underline, 
	this is what you would do:
	
	.custom a { color: #c00; text-decoration: none; }
	
	Cool? Now get to hackin!
*/
.custom a { color: #777; text-decoration: none; }

.custom	a:visited { color: #777; text-decoration: none; }

.custom	a:hover { color: #AA7652; border-bottom: 1px dotted #ba0000;
}

.custom h2 a { color: #000; text-decoration: none; }
	
.custom		h2 a:visited { color: #555; text-decoration: none; }
	
.custom		h2 a:hover { color: #555; text-decoration: none; }

.custom #container { width: 1000px; margin: 15px auto 0 auto; }
					
.custom	#content_box { width: 1000px; text-align: left; float: left; clear: both; }
	
		#content { width: 750px; padding: 0 40px 0 0; float: left; }
		
		#sidebar { width: 200px; float: left; }
		
	#footer { width: 1000px; padding: 1.2em 0 0 0; border-top: 2px solid #ccc; float: left; clear: both; }

.custom #masthead { width: 1000px; /*height: 270px; background: url('images/logo.gif') no-repeat;*/ /* uncomment the height and background declarations here if you intend to use a graphic in the header instead of the h1 */ }

.custom	/* #masthead a { display: block; width: 1000px; height: 270px; } */ /* uncomment this line if you use a graphic in the header - make sure the height of your header graphic is equal to the height declared in this line of code! */

.custom ul#nav { list-style: none; width: 1000px; padding: 0 10px; background: url('images/hr_dot_black.gif') repeat-x; border-bottom: 3px solid #000; float: left; clear: both; }

.custom ul#nav li.current_page_item a, ul#nav li.current_page_item a:visited, ul#nav li.current_page_item 
.custom a:hover { color: #777; text-decoration: underline; }

.custom /*.entry img { max-width: 700px; }*/
 	.entry img, .entry .gallery img { border: none; }