/******************************************************************
*******************************************************************

	Description: Tutorial CSS
	Author: ninetofive.me
	Author URI: http://www.ninetofive.me
	Version: 1.0
	
	Designed & Handcrafted by Zan from ninetofive.me
	
*******************************************************************
******************************************************************/


/******************************************************************
This is the CSS Reset
******************************************************************/

#searchDescription h1 { font-size:20px; }
#results a:link, #results a:visited { text-decoration:none; }
#results a:hover { text-decoration:underline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

#searchContainer ol,  #searchContainer ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

/******************************************************************
Print Styles
******************************************************************/


/******************************************************************
Main CSS
******************************************************************/

input#search {
	width: 200px;
	/*height: 15px;*/
	padding: 4px 4px 3px 4px;
	margin: 2px 0 0px 0px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	outline: none;
	border: 0;
	font-size: 15px;
	line-height: 15px;
	color: #ababab;
	background-image: url(../images/magnify-simple.png);
	background-position:right;
	background-repeat:no-repeat;
}
input#search:hover, input#search:focus {
	color: #3b3b3b;
	/*border: 1px solid #36a2d2;*/
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1);
}
h4#results-text {
	display: none;
}
ul#results {
	display: none;
	width: 360px;
	margin-top: 4px;
	border: 1px solid #ababab;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
	-moz-box-shadow: rgba(0,0,0,.15) 0 1px 3px;
	box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
	position: relative; 
	left:0; 
	top:0;
	z-index:9999; 
	background-color:#fff;
}
ul#results li {
	padding: 8px;
	cursor: pointer;
	border-top: 1px solid #cdcdcd;
	transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	-webkit-transition: background-color .3s ease-in-out;
}
ul#results li:hover {
	background-color: #F7F7F7;
}
ul#results li:first-child {
	border-top: none;
}
ul#results li h3, ul#results li h4 {
	transition: color .3s ease-in-out;
	-moz-transition: color .3s ease-in-out;
	-webkit-transition: color .3s ease-in-out;
	color: #616161;
	line-height: 1.2em;
}
ul#results li:hover h3, ul#results li:hover h4  {
	color: #3b3b3b;
	font-weight: bold;
}
