/*=========================== TAGS ============================*/

* { 
	margin:0; 
	padding:0;
}


body { 
	background:#ffffff; 
	font-family:Arial, Helvetica, sans-serif; 
	font-size:16px;
	color:#000000;
}

.text {
	font-size:14px;
}

.title1 {
	font-size:16px;
	line-height:1.2em;
	font-weight:bold;
	color:#000;
}
.title2 {
	font-size:38px;
	color:#000;
	font-weight:bold;
}

.title3 {
	font-size:38px;
	color:#ffffff;
	font-weight:bold;
}
.title4 {
	font-size:26px;
	font-weight:bold;
}
.title5 {
	font-size:26px;
	line-height:1.2em;
	color:#000;
}

/**********************************live search****************************/

/*
http://ninetofive.me/blog/build-a-live-search-with-ajax-php-and-mysql
*/

.highlight {
	background-color:#f3cb14;
}

input#search {
	width: 92%;
	min-width:260px;
	height: 30px;
	padding: 5px;
	margin-top: 15px;
	margin-bottom: 15px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	outline: none;
	border: 1px solid #ababab;
	font-size: 16px;
	line-height: 25px;
	color: #ababab;
}
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: 100%;
	margin-top: 4px;
	border: 1px solid #ababab;
	list-style: none;
    margin-left:0;
	padding-left:0;
	-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;
}
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;
}

.search_link:link {color:#03F; font-size:14px; text-decoration: none; }
.search_link:active {color:#03F; font-size:14px; text-decoration: none; }
.search_link:visited {color:#03F; font-size:14px; text-decoration: none; }
.search_link:hover {color:#03F; font-size:14px; text-decoration: none; }
