/*
 * style_screen.css
 *
 * Primary Style Sheet for On-Screen Display
 *
 * Originally created by Kevin A. Barnes
 *
 * For personal or commercial use.
 * May be modified by the license holder.
 * May not be redistributed or resold.
 *
 *This style sheet is divided into sections:
 *
 * 1. Positioning
 * 2. Layout Styles
 * 3. Typography
 * 4. Callouts
 * 5. Forms
 * 
 * The CSS, XHTML and design is released under GPL:
 * http://www.opensource.org/licenses/gpl-license.php
 */
 
/* Additional Notes:
 * Use ID if only one occurance on a page = #
 * Use Class if multiple occurances on a page = .
 */
 
/**  __Positioning  **/

#page-wrapper {
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	z-index: 2;
/*	background: url(../images/bckgnd_stripe_1.png) repeat; */
	background-color: #efefef;
}

#content-wrapper {
	width: 960px; /* 960px minus left and right padding */
	background-color: #fff;
	padding: 0;
	margin: 0 auto;
	border-right-width:1px;
	border-right-style: solid;
	border-right-color: #444;
}

#last_next {
	display: block;
	margin: 0 auto;
	padding: 0;
	width: 960px;
}

	#l_n_inner {
		width: 820px;
		height: 18px;
		padding: 5px 10px 5px 10px;
		margin: 5px 60px 5px 60px;
	}

	#header {
		float: left;
		width: 820px;
		margin: 0 0 80px 70px;
		padding: 60px 0 0 0;
		position: relative;
	}
	
		#header #navigation {
			position: absolute;
			right: 0px;
			top: 80px;
		}

		.page_item, .home {
			float: left;
			margin: 0 0 0 15px;
		}
		
#content {
	float: left;
	clear: both;
	width: 460px;
	padding: 0 70px 50px 0;
	border-right: 2px dotted #eee;
	margin: 10px 0 0 70px;
}

	.post {
		margin: 0 0 60px 0;
	}

#sidebar {
	float: right;
	width: 220px;
	margin: 0 70px 20px 0;
}

#footer {
	width: 960px;
	margin: 0 auto;
	padding: 0;
	display: block;
}

	#inside-footer-left {
		width: 254px;
		padding: 10px 10px 10px 10px;
		margin: 20px 10px 10px 20px;
	}
	
	#inside-footer-middle {
		width: 254px;
		padding: 10px 10px 10px 10px;
		margin: 20px 10px 10px 10px;
	}
	
	#inside-footer-right {
		width: 309px;
		padding: 10px 10px 10px 10px;
		margin: 20px 20px 10px 10px;
	}
	
	#inside-footer-bottom {
		width: 860px;
		padding: 10px 30px 10px 20px;
	}
		#rollover-container {
			display: block;
		}

/**  __Layout Styles  **/

#last_next {
	background-color: #000;
	color: #fff;
}

	.l_n_inner_style {
		background-color: #222;
		border-top-width: 1px;
		border-top-style: solid;
		border-top-color: #444;
		border-right-width:1px;
		border-right-style: solid;
		border-right-color: #444;
		float: left;
		display: block;
	}

#footer {
	color: #fff;
	background-color: #000;
}

	.inside-footer-style  {
		float: left;
		background-color: #222;
		border-top-width: 1px;
		border-top-style: solid;
		border-top-color: #444;
		border-right-width:1px;
		border-right-style: solid;
		border-right-color: #444;
		display: block;
	}


/**  __Typography  **/

a {
	color:#d40000;
	border-bottom: 1px dotted #000;
	/*cursor: pointer;*/
}

a:hover {
	color:#000;
	border-bottom: 2px solid #d40000;
}

a:active {
	color: #aaa;
}

#content ul {
	clear: both;
	list-style: circle;
	list-style-position: outside;
	margin-left: 17px;
}

#content ol.footnotes {
	clear: both;
	list-style-type: decimal;
	color: #777;
	font-size: 11px;
	line-height: 16px;
	margin-left: 15px;
}

#sidebar li {
	clear: both;
	margin-bottom: 14px;
}

.site_title {
	font-family: 'gill sans','gill sans mt','gill sans mt pro','century gothic',corbel,san-serif;
	color: #222;
	font-size: 50px;
	letter-spacing: -2px;
	line-height: 45px;
	font-weight: normal;
}

.site_title_container {
	width: 375px;
}

.site_title a, .site_title_container a, .site_title a:hover, .site_title_container a:hover {
	border-bottom: 0 none;
	font-weight: normal;
}

h1 {
	font-family: Georgia,'Times New Roman',Times,serif;
	font-size: 30px;
	font-weight: normal;
	line-height: 45px;
	text-align: center;
	border-bottom:4px double #000;
}

h2 {
	border-bottom :4px double #000;
	clear: both;
	color: #333;
	float: left;
	font-family: Georgia,'Times New Roman',Times,serif;
	font-size: 20px;
	font-weight: normal;
	line-height: 35px;
	margin: 20px 0 10px;
	text-align: center;
	width: 100%;
}

h3 {
	font-family: 'gill sans','gill sans mt','gill sans mt pro','century gothic',corbel,san-serif;
	font-size: 30px;
	font-weight: normal;
	font-variant: small-caps;
	line-height: 45px;
	text-align: center;
}

h4 {
	clear: both;
	color: #777;
	float: left;
	font-size: 13px;
	font-style: italic;
	font-weight: normal;
	line-height: 20px;
	margin: 0 0 10px;
	text-align: center;
	width: 100%;
}

h5 {
	border-bottom :2px single #000;
	clear: both;
	color: #333;
	float: left;
	font-family: Georgia,'Times New Roman',Times,serif;
	font-size: 24px;
	font-weight: normal;
	line-height: 36px;
	margin: 20px 0 10px;
	text-align: center;
	width: 100%;
}

h6 {
}

.page_item a, .home a {
	color: #aaa;
	border: none;
	font-size: 18px;
	font-family: Georgia, 'Times New Roman', Times, serif;
}

.page_item a:hover, .home a:hover {
	color: #000;
}

.current_page_item a, .current_page_item a:hover, .homecurrent a, .homecurrent a:hover {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 25px;
}

	.l_n_inner_style {
		font-family: 'gill sans','gill sans mt','gill sans mt pro','century gothic',corbel,sans-serif;
		font-size: 12px;
		font-weight: normal;
		line-height: 18px;
	}
	
	.l_n_inner_style li {
		display: inline;
		list-style: none outside none;
	}
	
	.l_n_inner_style a {
		border-bottom: 0 none;
		color: #D40000;
	}

	.l_n_inner_style a:hover {
		border-bottom: 0 none;
		color: #F40000;
	}

#sidebar p {
	float: left;
	clear: both;
	font-family: Georgia,'Times New Roman',Times, serif;
	font-size: 15px;
	font-weight: normal;
	font-style: italic;
	line-height: 22px;
	width: 100%;
	padding:0 0 10px 0;
	margin: 0 0 10px 0;
	border-bottom: 1px dotted #aaa;
	color: #777;
}

#footer {
}

	.inside-footer-style, .copyright-style  {
	font-family: 'gill sans','gill sans mt','gill sans mt pro','century gothic',corbel,sans-serif;
	font-size: 12px;
	line-height: 18px; 
	font-weight: normal;
	}

	.inside-footer-style a, .copyright-style a {
	font-size: 12px;
	line-height: 18px;
	padding: 10px 0 0 0;
	border-bottom: 0 none;
	color: #D40000;
	}

	.inside-footer-style a:hover, .copyright-style a:hover  {
	border-bottom: 0 none;
	color: #F40000;
	}

	.inside-footer-style ul, .inside-footer-style li {
	list-style: circle;
	list-style-position: outside;
	margin-left: 7px;
	}

.description {
	font-family: Georgia,'Times New Roman',Times,serif;
	color: #444;
	font-size: 15px;
	line-height: 22px;
}

.comments {
	border-bottom :4px double #000;
	clear: both;
	color: #333;
	float: left;
	font-family: Georgia'Times New Roman',Times,serif;
	font-size: 24px;
	font-weight: normal;
	line-height: 36px;
	margin: 20px 0 10px;
	text-align: center;
	width: 100%;
}

.index_nav {
	font-size: 16px;
}


/**  __Callouts  **/

/*
blockquote p {
	width: 200px;
}

blockquote {
	padding: 0 100px 0 10px;
	text-align: justify;
	color: #999;
	margin: 10px 0 10px 30px;
	border-left: 5px solid #333;
	font-family:Arial, Helvetica, sans-serif;
	font-style: italic;
}
*/
#content blockquote p {
	float: left;
	width: 350px;
	padding: 10px 10px 10px 10px;
	color: #999;
	margin: 10px 30px 10px 30px;
	border-left: 0 none;
	font-family:Arial, Helvetica, sans-serif;
	font-style: italic;
	background: none;
	border-top: #555 1px solid;
	border-bottom: #555 1px solid;
}

#content .initial {
	float: left;
	width: auto;
	clear: none;
	font-size: 100px;
	line-height: 65px;
	padding: 0;
	margin: -15px 5px 10px 0;
	color: #333;
}

#content .meta, #content .autor {
	width: 160px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	font-size: 11px;
	line-height: 20px;
	padding: 0 0 0 10px;
	margin: 0 0 20px 20px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
}

.meta_internal {
	text-align: left;
	font-size: 11px;
	line-height: 16px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0 0 20px 0;
}

.meta_internal_top {
	text-align: left;
	border-top: 1px solid #555;
	font-size: 11px;
	line-height: 16px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
}

#content .photo_96 {
	width: 96px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}

#content .photo_99 {
	width: 99px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}

#content .photo_102 {
	width: 102px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}

#content .photo_148 {
	width: 148px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}

#content .photo_250 {
	width: 250px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}

#content .photo_264 {
	width: 264px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}


#content .photo_300 {
	width: 300px;
	float: right;
	clear: none;
	text-align: left;
	border-left: 1px solid #555;
	padding: 10px 0 10px 10px;
	margin: 10px 0 10px 20px;
}

.footnote_header {
	border-top:thin;
	border-top-style:solid;
	border-top-color: #777;
	border-top-width: 100%;
	clear: both;
	color: #777;
	float: left;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
	line-height: 20px;
	margin: 10px 0 0 0;
	width: 100%;
	text-align: left;
}


/**  __Forms  **/

div.row {
  clear: both;
  padding-top: 10px;
  }

div.row span.label {
  float: left;
  width: 125px;
  text-align: right;
  }

div.row span.formw {
  float: right;
  width: 285px;
  text-align: left;
  vertical-align: top;
  }
  
div.row span.label2 {
  float: right;
  width: 395px;
  text-align: left;
  }
  

/* __ Left Box */


#content p {
	float: left;
	clear: both;
	width: 470px;
	padding: 10px 0;
}

#content .autor {
	width: 50px;
	height: 50px;
}


#content .more-articles {
	float: left;
	clear: both;
	width: 620px;
	border-top:2px dotted #eee;
	margin: 40px 0 0 0;
	padding: 20px 0 0 0;
}

#content .more-articles li {
	float: left;
	width: 470px;
	margin: 10px 0 30px 0;
}

#content .more-articles li.right {
	float: right;
}

#content .more-articles li h2 {
	font-size: 25px;
	line-height: 40px;
	margin: 0 0 5px 0;
}

/* __Comments 

#content .comments {
	float: left;
	clear: both;
	width: 470px;
	border-top:2px dotted #eee;
	margin: 40px 0 0 0;
	padding: 20px 0 0 0;
}

#content .comments li {
	float: left;
	width: 470px;
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px dotted #aaa;
}

#content .comments li.admin {
	width: 430px;
	padding: 15px;
	border: 5px solid #d40000;
	background: #fefefe;
}

#content .comments li.admin p {
	width: 430px;
}

#content .comments li.form {
	width: 440px;
	padding: 15px;
	background: #000;
	color: #fff;
	float: left;
}

#content .comments li.form label, #content .comments li.form input, #content .comments li.form textarea {
	float: left;
	clear: both;
	margin: 0 0 5px 0;	
	font-family:Arial, Helvetica, sans-serif;
	font-size: 15px;
}

#content .comments li.form input, #content .comments li.form textarea {
	background: #eee;
	border: 5px solid #666;
	padding: 5px;
	width: 200px;
	float: left;
	clear: both;
}

#content .comments li.form textarea {
	width: 410px;
	float: left;
	clear: both;
}

#content .comments li.form input.button {
	background: #d40000;
	border: 5px solid #d40000;
	padding: 5px;
	float: left;
	clear: both;
	cursor: pointer;
	color: #fff;
	margin: 10px 0 0 0;
	font-weight: bold;
}

#content .comments li.form input.button:hover {
	background: #b40000;
}

#content .comments li.form input:focus, #content .comments li.form textarea:focus {
	background: #fff;
	border: 5px solid #eee;
}

#content .comments li.headline {
	border-bottom:none;
}

#content .comments li h2 {
	font-size: 25px;
	line-height: 40px;
	margin: 0 0 5px 0;
	float: left;
}

#content .comments li h3 {
	font-size: 18px;
	font-weight: normal;
	margin: 20px 0 5px 0;
	float: left;
} */


/* __ Portfolio */

ul#portfolio, ul#portfolio-detail {
	float: left;
	clear: both;
	width: 940px;
}

ul#portfolio li, ul#portfolio-detail li {
	float: left;
	width: 440px;
	margin: 0 0 20px 20px;
	padding: 0 0 10px 0;
	border: none;
	border-bottom: 1px dotted #aaa;
}

ul#portfolio-detail li {
	width: 900px;
}

ul#portfolio-detail li .textbox {
	width: 280px;
	margin: 10px;
	float: left;
}

ul#portfolio-detail li .textbox h3 {
	width: 280px;
	float: left;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 25px;
	color: #000;
	margin: 0 0 15px 0;
}

ul#portfolio-detail li .textbox p {
	width: 280px;
	float: left;
	padding:0 0 10px 0;
}

ul#portfolio-detail li .textbox p .green {
	color: #62be00;
}




ul#portfolio li a, ul#portfolio li a:hover {
	border:none;
	margin: 0;
	padding: 0;
}

ul#portfolio li a img, ul#portfolio-detail li img {
	border: 9px solid #ddd;
	padding: 1px;
	margin: 0 0  10px 0;
}


ul#portfolio li a:hover img {
	border: 9px solid #d40000;
}

ul#portfolio li h2, ul#portfolio-detail li h2  {
	float: left;
	clear: both;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 30px;
	font-weight: normal;
	line-height: 45px;
	width: 100%;
	text-align: center;
	border-bottom: 4px double #000;
	color: #333;
	margin: 0 0 10px 0;
}

ul#portfolio-detail li h2  {
	width: 900px;
}

/* __ About */


ul#about {
	float: left;
	clear: both;
	width: 940px;
}

ul#about li {
	float: left;
	width: 287px;
	margin: 0 0 20px 20px;
	padding: 0 0 10px 0;
	border: none;
}

ul#about li h2  {
	float: left;
	clear: both;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 30px;
	font-weight: normal;
	line-height: 45px;
	width: 100%;
	text-align: center;
	border-bottom: 4px double #000;
	color: #333;
	margin: 0 0 11px 0;
}




/* __ Sidebar */

#sidebar #cats, #sidebar #tags, #sidebar #latest-work, #sidebar #articles {
	float: left;
	width: 175px;
	padding: 10px 0;
	border-bottom: 1px dotted #aaa;
}

#sidebar #latest-work, #sidebar #articles {
	width: 225px;
}

#sidebar #articles {
	border: none;
}


#sidebar #tags {
	float: right;
}

#sidebar #cats li, #sidebar #tags li, #sidebar #latest-work li, #sidebar #articles li {
	float: left;
	clear: both;
	width: 100%;
	margin: 0 0 2px 0;
}

#sidebar #cats li a, #sidebar #tags li a, #sidebar #latest-work li a, #sidebar #articles li a {
	font-size: 13px;
}

#sidebar #latest-work li a, #sidebar #latest-work li a img {
	border: none;
}

#sidebar #latest-work li a {
	position: relative;
	display: block;
}

#sidebar #latest-work li a span {
	position: absolute;
	display: none;
}

#sidebar #latest-work li a:hover span {
	background: #fff;
	color: #000;
	padding:2px 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	line-height: 11px;
	right: 5px;
	top: 60px;
	position: absolute;
	display: block;
}

#sidebar #cats li.h2, #sidebar #tags li.h2, #sidebar #latest-work li.h2  {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 20px;
	font-weight: normal;
	line-height: 35px;
}

#sidebar #articles li.h3 {
	float: left;
	clear: both;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: bold;
	line-height: 22px;
	width: 100%;
	color: #333;
	margin: 0 0 5px 0;
}

#sidebar #articles li.h3 span {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: normal;
	line-height: 22px;
	color: #aaa;
}


#sidebar h3 {
	float: left;
	clear: both;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 15px;
	font-weight: bold;
	line-height: 22px;
	width: 100%;
	text-align: left;
	color: #333;
	margin: 10px 0 0 0;
}

/**  __Comments  **/

#content ul.children p {
	width: 100%;
}

ul.children li {
	list-style: none outside none;
	border: 1px solid #999;
	margin: 5px 2px 7px 4px;
	padding: 4px 2px 2px 4px;
}

li.comment {
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: solid 1px;
}

li.bypostauthor {
	background-color: #eceef3;
}