/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;body&gt; tag 
will be appended with the "custom" class, like so: <body class="custom"&gt;. 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; }	&lt;--- 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/
*/


/*  page background changes */
.custom div#page { background-image: url(http://www.larryswanson.com/image/hand-small.gif); 
background-repeat: no-repeat; background-position: 14px 30px; }

/*  breadcrumb trail changes */
.custom div#breadcrumb { margin-left: -1em; margin-top: -1em; padding: 0 0 0 1em; 
font-size: 11px; font-weight: normal; color: #999; text-align: left; }
.custom div#breadcrumb a { color: #669; }

/*  header changes */
.custom div#header  { margin-left: 60px; padding-left: 0; border: none; padding-top: 1em; }
.custom div#header p#logo a { font-size: 20px; font-weight:bold; color:#669; }
.custom p#logo { margin-bottom: -.3em; margin-top: .2em; }

/*  nav menu changes */
.custom ul.menu li a {text-transform: none; font-weight:bold; color:#666; margin-bottom: 0; }
.custom .menu .current-parent > a, .menu .current-cat-parent > a { color: #111111; background: #FFFFFF; border-bottom-color: #FFFFFF; }
.custom .menu a { text-transform: uppercase; letter-spacing: 1px; }

/*  content format changes */
.custom div#content { margin-left: -1em; }
.custom h1,h2,h3,h4 { font-weight: bold; color:#006; }
.custom blockquote { border: 1px solid #006; color: #666; padding-top: .3em;  }
.custom p.small{ margin: 0; padding: 0; font-size: 11px;}
.custom p.date { color: #999; font-size: 11px; text-align: left; padding-top:3em; }

.custom h3.table { font-size: 14px; font-weight: bold; padding: 5px; margin: 0; }
.custom h4.table { font-size: 12px; font-weight: normal; padding: 0 5px 0 5px; margin: 0; }
.custom p.table { font-size: 12px; line-height: 1.2em; padding: 5px; margin: 0; }

.custom p.to_comments { color:#eee; }
.custom p.to_comments span.bracket { color:#eee; }
.custom div.comments_closed p { color:#eee; }

.custom code { background-color: #fff; }
.custom pre { background-color: #fff; border: none; padding-left: 0; margin-left: 0;}


/*  footer changes */
.custom div#footer { margin-left: -1em; border-bottom: 3px double #ccc; }
.custom p.footer { text-align: left; margin-top: .7em; }

/* sidebar changes */
.custom .sidebar ul.sidebar_list { padding-top: 1em; padding-left: 1.5em; padding-right: 0; }
.custom .sidebar h3  { color: #fff; background-color: #669; letter-spacing: 1px; text-align: center;
margin-bottom: 0; padding: 1px 0 3px 0;  
border-top: thin solid #006; border-left: thin solid #006; border-right: thin solid #006;}
.custom div.textwidget { line-height: 1.4em; padding: 4px 4px 4px 6px; 
background-color: #fff; 
border-bottom: thin solid #006; border-left: thin solid #006; border-right: thin solid #006;}
.custom li.widget { padding: 0; margin: 0 0 12px 0; }
.custom div.textwidget p { margin:0; padding: 2px 0 ; }

/* sidebar lists */
.custom ul.xoxo { font-weight: 600; font-size: 1.1em; line-height: 1.3em; 
margin-bottom: .7em; margin-top: .3em; text-align: center; }
.custom li.widget ul { font-weight: 500; font-size: 1em; line-height: 1.3em; 
margin-bottom: .7em; margin-top: .3em; text-align: left; }
/* ORIG: li.widget { font-size: 1.1em; line-height: 1.455em; margin-bottom: 2.909em; } */


/* remove vertical line between content and sidebar - http://mattflies.com/tech/10-ways-to-customize-thesis-and-enhance-your-blog/ */
.custom #content_box {background:none;}

/* .sidebar h3 { font-variant: small-caps; letter-spacing: 2px; }  */
/* .custom .sidebar h3 { font-variant: none; color: #fff; background-color: #669; } */



/* border: thin solid #333333; padding: 0; margin: 0; */

/* PORTFOLIO PAGE STYLES */ 
.custom h3.portfoliotitle	{margin:0; padding:0; color:#666;}
.custom h3.portfolio {margin:0; padding:0;}
.custom h4.portfolio {margin:0 0 16 0; padding:0; font-weight:normal;}
.custom .company	{font-weight:bold;}
.custom .companydetails	{font-weight:normal;}
.custom .school	{font-weight:bold;}
.custom .position	{font-weight:bold;}


/* for resume page */
.custom dl	{margin:0 0 0 20px;padding:0;}
.custom dt	{margin-left: -20px; font-weight:normal; }

