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

/* Changed the typeface. */
.custom body { color: #333; font: 62.5% Helvetica, Arial, sans-serif; text-align: center; }

/* Added to have a white background color for container div, and to also modify the margins, paddings.
Added white border to force Firefox to extend the div to the very bottom of the page's edge. */
.custom #container { width: 770px; margin: 0 auto 0 auto; padding: 15px 25px 0 25px; background-color: white; border-bottom: 1px solid white;}

/* No biggie. Changed the typeface */

.custom blockquote { font-style: italic; font-family: Helvetica, Arial, sans-serif; color: #555; margin: 0 30px 1.5em 30px; padding: 0 0 0 10px; border-left: 1px solid #aaa; }

.custom .entry blockquote { font-size: 2.0em; line-height: 1.3em; color: #999 }

/* Trying to add a house icon for home */

.custom ul#nav li.home { padding: 0.8em 15px 0.7em 0; float: left; }
.custom ul#nav li.home a:hover { color: #000; text-decoration: none; }
			
		.custom ul#nav li.home a { padding: 3px 18px 0 0; background: url('images/icon_home.gif') 100% 50% no-repeat; }

/* Changing the spacing between header links */

.custom ul#nav li { padding: 0.85em 20px 0.7em 0; font: bold 1.4em Helvetica, Arial, sans-serif; text-transform: uppercase; float: left; }

/* Get rid of right spacing on last link item so not to throw off icons */

.custom ul#nav li.last { padding: 0.85em 0px 0.7em 0; font: bold 1.4em Helvetica, Arial, sans-serif; text-transform: uppercase; float: left; }

/* Doing lots with the icons in the header */

.custom ul#nav li.rss { padding: 0.85em 0 0.7em 0; float: right; }
			
		.custom ul#nav li.rss a { padding: 3px 18px 0 0; background: url('images/icon_rss.gif') 100% 50% no-repeat; }
		
.custom ul#nav li.flickr { padding: 0.85em 0 0.7em 0; float: right; }
.custom ul#nav li.flickr a:hover { color: #000; text-decoration: none; }
			
		.custom ul#nav li.flickr a { padding: 3px 18px 0 0; background: url('images/icon_flickr.gif') 100% 50% no-repeat; }
		
.custom ul#nav li.facebook { padding: 0.85em 0 0.7em 0; float: right; }
.custom ul#nav li.facebook a:hover { color: #000; text-decoration: none; }
			
		.custom ul#nav li.facebook a { padding: 3px 18px 0 0; background: url('images/icon_facebook.gif') 100% 50% no-repeat; }
		
.custom ul#nav li.linkedin { padding: 0.85em 0 0.7em 0; float: right; }
.custom ul#nav li.linkedin a:hover { color: #000; text-decoration: none; }
			
		.custom ul#nav li.linkedin a { padding: 3px 18px 0 0; background: url('images/icon_linkedin.gif') 100% 50% no-repeat; }
		
.custom ul#nav li.twitter { padding: 0.85em 0 0.7em 0; float: right; }
.custom ul#nav li.twitter a:hover { color: #000; text-decoration: none; }
			
		.custom ul#nav li.twitter a { padding: 3px 18px 0 0; background: url('images/icon_twitter.gif') 100% 50% no-repeat; }
		
.custom ul#nav li.lastfm { padding: 0.85em 0 0.7em 0; float: right; }
.custom ul#nav li.lastfm a:hover { color: #000; text-decoration: none; }
			
		.custom ul#nav li.lastfm a { padding: 3px 18px 0 0; background: url('images/icon_lastfm.gif') 100% 50% no-repeat; }

/* I extended the rule above the tags */

.custom .tagged { padding: 0.4em 0 0 0; background: url('images/hr_tag_sep.gif') repeat-x; font-size: 1.2em; line-height: 1.6em; color: #888; clear: both; }

/* I got rid of border-bottom, which was 3 pixel black line */

.custom ul#nav { list-style: none; width: 750px; padding: 0 10px; background: url('images/hr_dot_black.gif') repeat-x; border-bottom: 0px solid #fff; float: left; clear: both; }

/* Changed the marguin and made the bottom border white so it wouldn't show. */

.custom #header_img { position: relative; margin: 0 0 1.5em 0; border-bottom: 1px solid #fff; float: left; clear: both; }

/* Removed the line under the post title. */

.custom .posts h4 { margin: 0 0 1.25em 0; padding: 0 0 1.0em 0; }

/* Changed typeface in search box */

.custom #search_form .search_input { width: 221px; padding: 3px; color: #090; font: normal 1.0em Helvetica, Arial, sans-serif; border-top: 1px solid #999; border-left: 1px solid #999; border-right: 1px solid #f5f5f5; border-bottom: 1px solid #f5f5f5; }