/*
	custom.css &#239;&#191;? 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!
*/

body {
font-family: "Frutiger", "Helvetica Neue", helvetica, arial, sans-serif;
}

a { color: #8FBE47; text-decoration: underline; }

	a:visited { color: #8FBE47; text-decoration: underline; }

	a:hover { color: #8FBE47; text-decoration: underline; cursor: pointer; }
	
#masthead {
	background-color: #F3AEBC;
	border-bottom: 2px solid #67471B;
	border-top: 2px solid #67471B;
}
	#masthead h1 { padding: 0.4em 0; border-top: 1px solid #ccc; text-align: center; clear: both; }
	#masthead h3 {color: #67471B;}
	
	h1 a, h1 a:visited, h1 a:hover { color: #67471B; text-decoration: none; }
	
h2 { font-size: 2.0em; }

	h2 a { color: #8FBE47; text-decoration: none; }
	
	h2 a:hover { color: #67471B; text-decoration: none; }
	
	h2 a:visited { color: #67471B; text-decoration: none; }

ul#nav { list-style: none; padding: 0 10px; border-bottom: 3px solid #67471B; float: left; clear: both; background: #DDDDDD none repeat scroll 0 0 }

		ul#nav li a, ul#nav li a:visited { color: #67471B; text-decoration: none; }
	
		ul#nav li a:hover { color: #67471B; text-decoration: underline; }
		
		ul#nav li a.current, ul#nav li a.current:visited, ul#nav li a.current:hover { color: #8FBE47; text-decoration: underline; }
		
.entry a,
.entry a:link,
.entry a:visited,
.entry a:hover {
color: #B989BA;
}
	.entry p { margin: 0 0 1.5em 0; text-indent: 2em;}
.entry p.noindent {text-indent: 0;}

		
		.entry dt { font-weight: bold; margin: 0 0 0.5em 0; color: #F3AEBC; }
ul.sidebar_list { list-style: none; }
ul.sidebar_list h2 {color: #F3AEBC;}
ul.sidebar_list a:visited {color: #67471B;}
ul.sidebar_list li.widget, ul.sidebar_list li.linkcat {
float:left;
font-size:1.3em;
line-height:1.4em;
margin:0pt 0pt 1.5em;
width:230px;
}
li.widget p{margin: 0;}
	li.widget .search_input { font-size: 1.1em !important; }
	
		#search_form .search_input:focus { border-top: 1px solid #666; border-left: 1px solid #666; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; }

.tagged { margin: 0 0 4.0em 0; padding: 0.4em 0 0 0; background: url('images/hr_tag_sep.gif') no-repeat; font-size: 1.2em; line-height: 1.6em; color: #888; clear: both; }

	.tagged a, .tagged a:visited { padding: 3px; color: #B989BA; text-decoration: none; }
	
	.tagged a:hover { color: #fff; background: #B989BA; text-decoration: none; }
	
	.add_comment { display: block; padding: 0 0 0 20px; font-weight: bold; float: right; }
	
		.add_comment a, .add_comment a:visited { padding: 0; color: #67471B; text-decoration: none; }

		.add_comment a:hover { color: #67471B; background: none; text-decoration: underline; }

		li.widget h2, li.linkcat h2 { border-top: 3px solid #67471B; }

hr {
border: 0;
padding: 0;
margin: 0;
height: 20px;
background: transparent url(http://blog.mayyan.net/wp-content/uploads/2007/02/hr.gif) no-repeat center center;
}
/*---:[ footer styles ]:---*/

#footer a, #footer a:visited, #footer a:hover { color: #B989BA; text-decoration: none; }


/* progress bar */
.progressbar {

height: 10px;
display: block;
}

.progressbarback {
border: 2px solid #67471B;
background: transparent;
height: 10px;
width: 100px;
} 

.entry table {margin: 10px 5px;
border: 1px #67471B solid;}
.entry table th {
	color: #B989BA;
	border-bottom: 1px #67471B solid;
	background: #fff;
	font-size: medium;
        text-align: right;
        padding: 5px 10px;
}
.entry table td {
	font-size: small;
	line-height: 140%;
	padding: 5px 10px;
	text-align: right;
	border-top: 1px #67471B solid;
	color: #333;
}
.extlink {
background: url(http://blog.mayyan.net/wp-content/uploads/2007/02/externalLink.gif) no-repeat right top;
padding-right: 10px;
}
hr {
border: 0;
padding: 0;
margin: 0;
height: 20px;
background: transparent url(http://blog.mayyan.net/wp-content/uploads/2007/02/hr.gif) no-repeat center center;
}

.pullquote_left { width: 200px; margin: 5px 15px 5px 0; font-size: 1.4em; text-align: center; float: left; }

.pullquote_right { width: 200px; margin: 5px 0 5px 15px; font-size: 1.4em; text-align: center; float: right; }

pre {

    white-space: pre-wrap; /* css-3 */

    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */

    white-space: -pre-wrap; /* Opera 4-6 */

    white-space: -o-pre-wrap; /* Opera 7 */

    word-wrap: break-word; /* Internet Explorer 5.5+ */
}
code {font-size: 80%; whitespace: nowrap; color: #B989BA;}

/* Ravelry Progress Bar stuff */
          .rav_project {
            margin-bottom: 5px;
            margin-left: 20px;
          }
          
          .rav_project a.rav_title {
            font-size: .9em;
          }
          
          .rav_project .rav_progress_text {
            position: relative;
            text-align: center;
          }
        
          .rav_project .rav_progress_bar_wrapper {
            border: 1px solid #67471B;
            margin-top: 2px;
          } 
        
          .rav_project .rav_progress_bar { 
            position: relative;
            padding: 1px;
            border-left: 1px solid #67471B;
            border-top: 1px solid #67471B;
            border-bottom: 1px solid #67471B;
            border-right: 1px solid #67471B;
            background-color: #eee;
          }
        
          .rav_project .rav_progress_bar .rav_progress_filled { 
            position: absolute;
          }
          
          .rav_project .rav_photo_link {
            margin-bottom: 5px;
            display: block;
            width: 77px;
            height: 77px;
            margin-left: 1px;
            margin-top: 5px;
            border: 1px solid #67471B;
          }
          
          .rav_project .rav_photo_link img {
            width: 75px;
            height: 75px;
            border: 1px solid #ffffff;
          }
          
          .rav_project_with_photos {
            margin-bottom: 20px;
          }
