/*
Theme Name: Studio-Worx vIII
Theme URI: http://www.studio-worx.com
Description: Studio-Worx theme designed by <a href="http://studio-worx.com/">Jason Skinner</a>.
Version: 3.0
Author: Jason Skinner
Author URI: http://www.studio-worx.com/
Tags: studio-worx
*/


/*CSS RESET - Jason Skinner-------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup, though tables suck */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Remove browser click state outlines*/
/*If you using a keyboard, I know this effects you greatly.  So, if you use the code below.  DON'T.  EVER.  EVER.*/
/*a {
   outline: none;
}*/

/*Remove link text decoration*/
a { text-decoration:none }

sup { text-decoration:none; }

/*Clear class to float properties - can use display:inline-block; on containers as well, but I still prefer this method*/
.clearer{
	clear:both;
}

/* Tell the browser to render HTML 5 elements as block */  
header, footer, aside, nav, article {  
    display: block;  
}  

/*Remove button padding in FF*/
input::-moz-focus-inner { border: 0; padding: 0;}


/*CSS RESET - Jason Skinner---------------------------------------------------*/


body{
	background-color: #FAFAFA;
	font-family: 'Droid Sans', arial, serif;
	font-size: .9em;
}

p{
	line-height: 1.6;
	color: #333;
	margin-bottom: 15px;
}

a{
	color: #000;
	text-decoration: underline;
}

a:visited{
	color: #999;
}


hr{
	border-top: 2px solid #fff;
	border-bottom: 1px solid #e6e6e6;
	border-left: 0px;
	border-right: 0px;
	margin: 15px 0 20px 0;
}

a.genbutton{
	color: #666;
	background-color: #DBDBDB;
	padding: 7px 12px;
	letter-spacing: 1px;
	text-decoration: none;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	a:hover.genbutton{
		background-color: #999;
		color: #fff;
	}
		

/*header styling start-------------*/

h1{
	font-size: 2em;
	color: #666;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: normal;
	border-bottom: 4px solid #dbdbdb;
	padding: 0 0 5px 0;
}

h2{
	font-size: 1.1em;
	line-height: 1.6;
	margin-bottom: 15px;
	font-weight: normal;
}

	/*sidebar header*/
h3{
	font-size: 1.1em;
	border-bottom: 1px solid #e6e6e6;
	padding: 0 0 5px 0;
	margin: 30px 0 0 0;
	font-weight: normal;
}

	/*large text*/
h4{ 
	font-size: 1.6em;
	line-height: 1.2em;
	margin-bottom: 8px;
	font-weight: normal;
} 

h5{
	display: block;
	background: #9FC2D6;
	padding: 10px 10px;
	color: #fff;
	font-size: 1.2em;
	margin: 40px 0 15px 0;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*bullet styling start-------------*/

ul.bullets{
	margin: 0 0 15px 19px;
	list-style-type: none;
}

	ul.bullets li{
		line-height: 1.6;
		list-style-image: url(images/bullet.png);
		margin: 0 0 5px 0;
	}
	
	ul.bullets li a{
	}
	
	

/*bullet styling stop--------------*/

/*code box styling start-----------*/

.code{
	background: #333;
	background-attachment: scroll;
	overflow: auto;
	color: #fff;
}

/*code box styling stop------------*/

/*header styling stop--------------*/

#header{
	position: fixed;
	width: 100%;
	margin: auto;
	height: 85px;
	background-color: #FAFAFA;
	margin-top: 20px;
	z-index: 1;
}

	#header_container{
		width: 940px;
		margin: auto;
		height: 85px;
	}


		/*main nav start---------------------*/

		ul#main_nav{
		margin: auto;
		float: right;
		}

		ul#main_nav li{
			list-style-type: none;
			float: left;
			margin-top: 33px;
		}
	
		ul#main_nav li a{
			color: #666;
			background-color: #DBDBDB;
			margin-left: 5px;
			text-transform: uppercase;
			padding: 7px 12px;
			letter-spacing: 1px;
			text-decoration: none;
			
			/*CSS3 Properties*/
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
		}
	
			ul#main_nav li a:hover{
				background-color: #999;
				color: #fff;
			}
			
			ul#main_nav li a.active, ul#main_nav li.current_page_item a, ul#main_nav li.current_page_parent a, .current_page_item a{	
				background-color: #9FC2D6;
				color: #fff;
			}
		
		/*main nav stop----------------------*/
		
		
		a#logo{
			display: block;
			float:left;
			width: 85px;
			height: 70px;
			background: url(images/logo.png) right no-repeat;
			text-indent: -9999px;
			margin-top: 7px;
		}
		
			a:hover#logo{
				background: url(images/logo.png) left no-repeat;
			}
		
		
#wrapper{
	width: 940px;
	margin: 0 auto;
	padding-top: 135px;
	
}

	#left_column{
		width: 700px;
		float:left;
		display: inline-block;
		margin: 0 20px 0 0;
	}
	
	
	#right_column{
		width: 220px;
		float:left;
		display: inline-block;
	}
	

#masonry{
	width: 940px;
}


/*home recent start------------*/

.home_recent_thumb{
	float:left;
	width: 215px;
	padding: 10px 10px;
	margin-bottom: 2px;
	
	/*CSS3 properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	.home_recent_thumb img{
		border: 1px solid #f2f2f2;
	}


	.home_recent_title a{
		display: block;
		color: #666;
		padding: 7px 0px;
		letter-spacing: 1px;
		text-decoration: none;
		margin: 0px 0 0 0;
		font-size: 1.3em;
		line-height: 1.2;
		
	}
	
.home_recent_cat{
	position: absolute;
	top: 25px;
	left: 0px;
	background: #9FC2D6;
	padding: 5px 10px;
	color: #fff;
	
	/*CSS3 properties*/
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;

}


/*home recent stop-------------*/


/*journal styling start--------*/

	/*post styling start---------*/
		
		ul.journal_post{
			list-style-type: none;
			display: inline-block;
		}
		
			ul.journal_post li{
				float: left;
			}
			
		.journal_excerpt{
			display: block;
			width: 275px;
			margin: -5px 15px 0 15px;
		}
		
		.journal_thumbnail{
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
			
		
		}
		
		.journal_title a{
			display: block;	
			color: #666;
			background-color: #DBDBDB;
			padding: 7px 12px;
			letter-spacing: 1px;
			text-decoration: none;
			width: 155px;
			line-height: 1.2;
			font-size: 1.5em;
			
			/*CSS3 Properties*/
			-webkit-border-top-left-radius: 5px;
			-webkit-border-top-right-radius: 5px;
			-moz-border-radius-topleft: 5px;
			-moz-border-radius-topright: 5px;
			border-top-left-radius: 5px;
			border-top-right-radius: 5px;
			
		}
		
			.journal_title a:hover{
				background-color: #999;
				color: #fff;
			}
		
		
		.journal_metabtn a{
			display: block;
			width: 169px;
			background-color: #9FC2D6;
			padding: 5px 5px;
			text-decoration: none;
			color: #fff;
			
			/*CSS3 Properties*/
			-webkit-border-bottom-right-radius: 5px;
			-webkit-border-bottom-left-radius: 5px;
			-moz-border-radius-bottomright: 5px;
			-moz-border-radius-bottomleft: 5px;
			border-bottom-right-radius: 5px;
			border-bottom-left-radius: 5px;
			
		}
		
			.journal_metabtn a:hover{
				color: #e6e6e6;
			}	

		
		.journal_extmeta{
			display: block;
			width: 170px;
			margin: 5px 0 0 0;
			line-height: 1.2;
			font-size: 1em;
			color: #999;
		}
		
		
		
		
	/*post styling stop----------*/

a.subscriberss{
	display: block;
	color: #666;
	height: 25px;
	padding: 12px 0 0 12px;
	letter-spacing: 1px;
	text-decoration: none;
	background: url(images/rss_icon.png) no-repeat bottom right #dbdbdb;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	a:hover.subscriberss{
		color: #fff;
		background: url(images/rss_icon.png) no-repeat top right #999;
	}
	

	
ul.journal_list{
	list-style-type: none;	
}

	ul.journal_list li{
		margin-top: 10px;
	}
	
	/*Remove children list-style*/
	
	ul.journal_list ul.children li{
	list-style-type: none;
	margin-left: 15px;
	}
	
		ul.journal_list li a{
			display: block;
			background-color: #dbdbdb;
			color: #666;
			padding: 7px 12px;
			letter-spacing: 1px;
			text-decoration: none;
			line-height: 1.2;
			list-style-image: none;
			
			/*CSS3 Properties*/
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
		}
		
			ul.journal_list li a:hover{
				background-color: #999;
				color: #fff;
			}
			
			/******************NOTE:  MAY NEED TO ADD ACTIVE STATE*********************/
			
#searchform{
	margin: 10px 0 0 0;
}
				
	#searchbar{
		padding: 7px 10px;
		width: 172px;
		float:left;
		background-color: #e6e6e6;
		border: 0px;
		color: #666;
		outline: none; /*that's for you chrome/safari.  haters*/
		
		/*CSS3 Properties*/
		-webkit-border-top-left-radius: 5px;
		-webkit-border-bottom-left-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-moz-border-radius-bottomleft: 5px;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	
		#searchbar.active{
			background-color: #D6D6D6;
			color: #000;
		}
		
	#searchbtn{
		width: 28px;
		padding: 7px 0 7px 0;
		float: right;
	    cursor: pointer;
		background: #e6e6e6;
		color: #666;
		text-align: center;
		border: 0px;
		vertical-align: middle;
		
		/*CSS3 Properties*/
		-webkit-border-top-right-radius: 5px;
		-webkit-border-bottom-right-radius: 5px;
		-moz-border-radius-topright: 5px;
		-moz-border-radius-bottomright: 5px;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	
	
	
		#searchbtn:hover{
			background: #999;
			color: #fff;
		}
		
ul.journal_ads{
	list-style-type: none;
	margin: 30px 0 0 0;
	}
	
	ul.journal_ads li{
		float: left;
	}
	
		ul.journal_ads li a{
			width: 105px;
			height: 105px;
			display: block;
			text-indent: -9999px;
			margin-bottom: 10px;
			
			/*CSS3*/
			-moz-box-shadow: 1px 1px 2px #ccc;
			-webkit-box-shadow: 1px 1px 2px #ccc;
			box-shadow: 1px 1px 2px #ccc;
			-khtml-box-shadow: 1px 1px 2px #ccc;

		}
		
			.ad_freshbooks a{
				background: url(images/ad_freshbooks.png) no-repeat;
			}
			
			.ad_siteground a{
				background: url(images/ad_siteground.png) no-repeat;
			}
			
			.ad_blank a{
				background: #F0F0F0;
			}
		

/*journal styling stop---------*/


/*about styling start----------*/

#about_column_left{
	width: 470px;
	display: inline-block;
	float: left;
}

#about_column_right{
	width: 210px;
	display: inline-block;
	float: left;
	padding: 0 0 0 20px;
}

	ul.about_list{
	list-style-type: none;
	
}

	ul.about_list li{
		margin-top: 10px;
		list-style-image: url(images/checkmark.png);
		margin-left: 25px;
		line-height: 1.2;
	}
	
		ul.about_list li a{
			
			
		}
		
			ul.about_list li a:hover{
			}
			
ul#about_network{
	list-style-type: none;
}

	ul#about_network li{
		margin-top: 10px;
	}
	
		ul#about_network li a{
			display: block;
			color: #666;
			padding: 7px 12px;
			height: 16px;
			letter-spacing: 1px;
			text-decoration: none;
			line-height: 1.2;
			
			/*CSS3 Properties*/
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
		}
		
			ul#about_network li a:hover{
				color: #fff;
			}
			
				a.social_twitter{background: url(images/social_twitter.png) top right no-repeat #dbdbdb;}
					a:hover.social_twitter{background: url(images/social_twitter.png) bottom right no-repeat #999;}
				
				a.social_facebook{background: url(images/social_facebook.png) top right no-repeat #dbdbdb;}
					a:hover.social_facebook{background: url(images/social_facebook.png) bottom right no-repeat #999;}
				
				a.social_flickr{background: url(images/social_flickr.png) top right no-repeat #dbdbdb;}
					a:hover.social_flickr{background: url(images/social_flickr.png) bottom right no-repeat #999;}
				
				a.social_tumblr{background: url(images/social_tumblr.png) top right no-repeat #dbdbdb;}
					a:hover.social_tumblr{background: url(images/social_tumblr.png) bottom right no-repeat #999;}
				
				a.social_behance{background: url(images/social_behance.png) top right no-repeat #dbdbdb;}
					a:hover.social_behance{background: url(images/social_behance.png) bottom right no-repeat #999;}
				
				a.social_digg{background: url(images/social_digg.png) top right no-repeat #dbdbdb;}
					a:hover.social_digg{background: url(images/social_digg.png) bottom right no-repeat #999;}
				
				a.social_vimeo{background: url(images/social_vimeo.png) top right no-repeat #dbdbdb;}
					a:hover.social_vimeo{background: url(images/social_vimeo.png) bottom right no-repeat #999;}
				
				a.social_lastfm{background: url(images/social_lastfm.png) top right no-repeat #dbdbdb;}
					a:hover.social_lastfm{background: url(images/social_lastfm.png) bottom right no-repeat #999;}
					
				a.social_linkedin{background: url(images/social_linkedin.png) top right no-repeat #dbdbdb;}
					a:hover.social_linkedin{background: url(images/social_linkedin.png) bottom right no-repeat #999;}

			
	/*lifestream styling start----*/
	
	ul.simplepie{
		width: 220px;
		display: inline-block;
	}
		
			ul.simplepie li{
				list-style: none;
				display: inline-block;
				margin: 10px 0 0 0;
				width: 220px;
			}
			
			
			h4.simplepie_title{
				font-size: 1em;
				margin-top: -10px;
			}
			
			ul.simplepie .simplepie_favicon{
				float: right;
				clear:both;
			}
			
				.simplepie_date p{
					font-size: .8em;
				}
			
			.simplepie_title a{
				display: block;
				background-color: #dbdbdb;
				color: #666;
				padding: 7px 12px;
				letter-spacing: 1px;
				text-decoration: none;
				line-height: 1.2;
			}
				
				.simplepie_title a:hover{
					background-color: #999;
					color: #fff;
				}
	
	
	/*lifestream styling stop-----*/


	/*last.fm styling start----*/
		
		#lastfmrecords{
			margin-top: 10px;
		}
		
			#lastfmrecrods ol li{
				
			}
		
			#lastfmrecords img{
				width: 110px;
				height: 110px;
				margin-top: -2px;
			}
	
		a#lastfmicon{
			display: block;
			text-indent: -9999px;
			width: 20px;
			height: 20px;
			float: right;
			background: url(images/lastfm_icon.png) top;
			margin: -4px 0 0 0;
			border:1px solid #e6e6e6;
		}
		
			a:hover#lastfmicon{
				background: url(images/lastfm_icon.png) bottom;
				border: 1px solid #ccc;
			}
	/*last.fm styling stop-----*/
	
	/*flickr styling start-----*/
		
		a#flickricon{
			display: block;
			text-indent: -9999px;
			width: 20px;
			height: 20px;
			float: right;
			background: url(images/flickr_icon.png) top;
			margin: -4px 0 0 0;
			border:1px solid #e6e6e6;
		}
		
			a:hover#flickricon{
				background: url(images/flickr_icon.png) bottom;
				border: 1px solid #ccc;
			}
	
	/*flickr styling stop------*/
	
.about_column{
	background: url(images/profile_pic.png) top no-repeat;
	padding-top: 360px;
}

	.services_column{
		width: 175px;
		display: inline-block;
		margin-top: -25px;
	}

	/*POD Styling start--------*/
	.pod{
		display: inline-block;
	}
	
	.pod a img{
		float:left;
		display: block;
	}
	
	/*POD Styling stop---------*/
	
/*Contact Us Form styling*/

#contact_container{
	width: 700px;
	display: inline-block;
	margin: -19px 0 0 0;
	padding: 15px 0px 20px 0px;
}


#contact_container .standardForm .field
{
	
}
#contact_container .standardForm label
{
	
	display:block;
	font-weight: bold;
	margin: 0 0 5px 0;
	font-weight: normal;
}
#contact_container .standardForm .textbox
{
	
	padding: 10px 10px;
	width: 700px;
	background-color: #e6e6e6;
	border: 0px;
	color: #666;
	outline: none; /*that's for you chrome/safari.  haters*/
	font-size: 1em;
}
#contact_container .standardForm .textarea
{
	height:100px;
	width: 700px;
	font-size: 14px;
	padding: 5px 5px 5px 5px;
	color: #666;
	background-color: #e6e6e6;
	border: 0px;
}
#contact_container .standardForm .submit,
#contact_container #commentform #submit
{
	color: #666;
	background-color: #DBDBDB;
	text-transform: uppercase;
	padding: 7px 12px;
	letter-spacing: 1px;
	text-decoration: none;
	cursor: pointer;
	border: 0px;
	font-size: .9em;
	float: right;
	text-transform: capitalize;
	margin: 10px 40px 0 0;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	#contact_container .standardForm .submit:hover,
	#contact_container #commentform #submit:hover{
		background-color: #999;
		color: #fff;
	}

#contact_container .standardForm .textbox, .standardForm .textarea,
#contact_container #commentform input, #commentform textarea
{
	padding: 10px 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	font-family: 'Droid Sans', arial, serif;
	max-width: 640px;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}	
	
	/*jquery active states*/
	
	#contact_container #contact_name.active{
		background-color: #fff;
		color: #000;
	}
	
	#contact_container #contact_email.active{
		background-color: #fff;
		color: #000;
	}
	
	#contact_container #contact_phone.active{
		background-color: #fff;
		color: #000;
	}
	
	#contact_container #contact_message.active{
		background-color: #fff;
		color: #000;
	}

/*contact form styling stop----*/


/*about styling stop-----------*/

/*worx styling start-----------*/

.worx_recent_thumb{
	float:left;
	width: 215px;
	padding: 10px 10px;
	margin-bottom: 2px;
	
	/*CSS3 properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	}

	.worx_recent_thumb img{
		border: 1px solid #F2F2F2;
	}


	.worx_recent_title a{
		display: block;
		color: #666;
		padding: 7px 0px;
		letter-spacing: 1px;
		text-decoration: none;
		margin: -2px 0 0 0;
		font-size: 1.3em;
		line-height: 1.2;
	}
	
.worx_recent_cat{
	position: absolute;
	top: 25px;
	left: 0px;
	background: #9FC2D6;
	padding: 5px 10px;
	color: #fff;
	
	/*CSS3 properties*/
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;

}

a.visiturl{
	display: block;
	background-color: #dbdbdb;
	color: #666;
	padding: 5px 12px;
	letter-spacing: 1px;
	text-decoration: none;
	line-height: 1.2;
	text-align: center;
	margin: 25px 0 0 0;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	a:hover.visiturl{
		background-color: #999;
				color: #fff;
	}
	
	
	/*single navigation start--------*/
		
		ul.single_nav{
			margin-bottom: 10px;
			list-style-type: none;
			display: inline-block;
			width: 220px;
		}
		
			ul.single_nav li a{
				float: left;
				display: block;
				width: 30px;
				height: 30px;
				margin-right: 10px;
				text-indent: -9999px;
				background-color: #DBDBDB;
				
				/*CSS3 Properties*/
				-webkit-border-radius: 5px;
				-moz-border-radius: 5px;
				border-radius: 5px;
			}
			
				ul.single_nav li a:hover{
					background-color: #999;
				}
				
					li.single_next a{
						background: url(images/single_next.png) bottom;
					}
					
						li.single_next a:hover{
							background: url(images/single_next.png) top;
						}
						
					li.single_previous a{
						background: url(images/single_previous.png) bottom;
						
					}
					
						li.single_previous a:hover{
							background: url(images/single_previous.png) top;
						}
						
					li.single_worx a{
						background: url(images/single_worx.png) bottom;
					}
					
						li.single_worx a:hover{
							background: url(images/single_worx.png) top;
						}
	
	/*singl navigation stop----------*/


/*worx styling stop------------*/

#footer{
	width: 940px;
	margin: auto;
	clear: both;
	padding: 10px 0 90px 0;
}

	#footer p{
		font-size: .85em;
		float: left;
		padding-top: 6px;
	}

/*footer styling start---------*/

.totop a{
	float: right;
	display: block;	
	color: #666;
	background-color: #DBDBDB;
	padding: 7px 12px;
	letter-spacing: 1px;
	text-decoration: none;
	line-height: 1.2;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	a:hover.totop{
		background-color: #999;
		color: #fff;
	}


/*footer styling stop----------*/


/*comments styling start-------*/

#comments{
	padding:20px 0px 20px 0px;
	}
#comments h2{
	padding:2px 5px;
	}
#comments p{
	clear:both;
	line-height:1.6em;
	margin-bottom:10px;
	}
#comments form label small{ 
	font-size: .9em;
	}
#comments form p{
	margin-bottom:5px;
	}
#comments form input{
	margin-right:5px;
	width:260px;
	}
#comments form input,textarea{
	padding: 7px 10px;
	width: 300px;
	float:left;
	background-color: #e6e6e6;
	border: 0px;
	color: #666;
	outline: none; /*that's for you chrome/safari.  haters*/
	margin: 0 10px 10px 0;
	font-size: .9em;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	}
#comments form textarea{
	height:100px;
	width: 600px;
	font-size: 14px;
	padding: 10px 10px;
	color: #666;
	background-color: #e6e6e6;
	border: 0px;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	}
	
#comments form button{
	color: #666;
	background-color: #DBDBDB;
	text-transform: uppercase;
	padding: 7px 12px;
	letter-spacing: 1px;
	text-decoration: none;
	cursor: pointer;
	border: 0px;
	font-size: .9em;
	float: left;
	text-transform: capitalize;
	margin: 5px 0 10px 0;
	
	/*CSS3 Properties*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
	#comments form button:hover{
		cursor: pointer;
		color: #fff;
		background-color: #999;
	}

.commentdetails{
	margin-top:25px;
	}
.commentauthor{
	font-weight:700;
	margin-bottom:5px!important;
	}
.commentdate{
	color:#909090;
	font-size:.8em;
	margin-bottom:5px;
	}
.required{ 
	color: #9FC2D6;
	}
.notfound{
	padding:40px;
	}
.notfound h2{
	font-size:18px;
	font-weight:400
	;margin-bottom:10px;
	}
.commentlist .respond{
	position:relative;
	}
.commentlist .respond .cancel-comment-reply{
	position:absolute;
	right:6px;
	top:6px;
	}
.commentlist .respond .cancel-comment-reply a{
	display:block;
	height:16px;
	width:16px;
	}

a.comment-reply-link{
	color: #9FC2D6;
	text-decoration: none;
	font-size: .85em;
}

	a:hover.comment-reply-link{
	
	}

.respond .cancel-comment-reply{
	padding:10px 0;
	}
#comments ol{
	clear:both;
	list-style-type:none;
	margin:0;
	padding:0;
	}
#comments ol li{
	margin-bottom:10px;
	}
#comments ol li div.comment-body{
	position:relative;
	}
#comments ol li div.comment-body em{
	color:#000;
	font-size:11px;
	font-style:normal;
	}
#comments ol li.even div.comment-body{
	padding: 10px 0 10px 0;
	}
#comments ol li.odd div.comment-body{
	padding: 10px 0 10px 0;
	}
#comments ol li .avatar{
	background:#fff;
	border:1px solid #ccc;
	float:left;
	margin:0 10px 0 0;
	padding:1px;
	}
#comments ol li .comment-author{
	float:left;
	padding:0 0 10px;
	width:100%;
	}
#comments ol li .comment-author cite.fn{
	font-size: 1.5em;
	color:#000;
	font-style:normal;
	}
#comments ol li .comment-author cite.fn a{
	text-decoration: none; 
	color: #9FC2D6;
	}
#comments ol li .comment-author .fn{
	font-size:14px;
	font-weight:700;
	height:32px;
	line-height:31px;
	}
#comments ol li .url{
	color:#777;
	text-decoration:none;
	}
#comments ol li .comment-meta{
	position:absolute;
	right:10px;
	top:10px;
	}
#comments ol li .comment-meta a{
	color:#666;
	display:block;
	font-size:11px;
	height:32px;
	line-height:32px; 
	text-decoration: none;
	}
#comments ol li .reply{
	font-size:1em;
	font-weight:400;
	padding-bottom:10px;
	}
#comments ol li .url{ 
	color: #000; 
	text-decoration: underline;
	}
	#comments ol li .url:hover{ 
	color: #F02311;  
	}
#comments .children{
	list-style-type:none;
	padding:9px;
	}
#comments .navigation{
	font-size:.9em;
	padding:10px 0 20px;
	}
#comments .navigation a{
	border:1px solid #ccc;
	color:#999;
	padding:3px 8px;
	}
#comments .navigation a:hover{
	border-color:#000;
	color:#000;
	text-decoration:none;
	}
.comment-edit-link{
	position:absolute;
	right:0;
	top:16px;
	}
.says {
	display:none;
	}


/*comments styling stop-------------*/

/*search styling start--------------*/

.searchresults{
	width: 940px;
	display: inline-block;
	margin: -10px 0 15px 0;
}

	.searchresults h3 a{
		text-decoration: none;
		color: #9FC2D6;
		font-size: 1.3em;
	}

	.searchdate{
		float: right;
		margin-top: 35px;
		font-size: .8em;
	}
	
	.searchthumb{
		margin: 10px 15px 10px 0;
		float: left;
	}
	
	.searchpost{
		float: left;
		width: 710px;
	}
	
	.searchexcerpt{
		margin: 4px 0 0 0;
	}
	
	.searchmeta{
		display: inline-block;
		color: #666;
		font-size: .8em;
	}
	
/*highlight search results*/
strong.search-excerpt{ }


/*search styling stop---------------*/


/*404 styling start-----------------*/

.fourofour{
	width: 940px;
	height: 530px;
	background: url(images/fourofour.png) bottom right no-repeat;
	display: inline-block;
}
/*404 styling stop------------------*/
