/*<meta />*/

/* Layout-related styles */

*
{
	box-sizing: border-box;
}

/* Create two columns that float next to each other */

.column
{
	float: left;
	padding: 10px;
}

.content
{
	width: 75%;
	overflow: hidden;
}

.sidebar
{
	width: 25%;
}

/* Clear floats after the columns */

.row:after
{
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 700px)
{
	.column
	{
		width: 100%;
	}
}

/* Hide community details */

#blog_results_content .context
{
	display: none;
}

#blog_results_content .description
{
	display: none;
}

#blog_results_content .category
{
	display: none;
}

#blog_results_content .infoline
{
	display: none;
}

#kb_results_content .context
{
	display: none;
}

#kb_results_content .description
{
	display: none;
}

#kb_results_content .category
{
	display: none;
}

#kb_results_content .infoline
{
	display: none;
}

/* Forum details */

#forum_results_content .context
{
	display: none;
}

#forum_results_content .description
{
	display: none;
}

#forum_results_content .category
{
	display: none;
}

#forum_results_content .infoline
{
	display: none;
}

/* Styles for search */

.highlight
{
	background: #FFFF40;
}

.searchheading
{
	font-size: 130%;
	font-weight: bold;
}

.summary
{
	font-size: 80%;
	font-style: italic;
}

.suggestion
{
	font-size: 100%;
}

.results
{
	font-size: 100%;
}

.category
{
	color: #999999;
}

.sorting
{
	text-align: right;
}

.result_title
{
	font-size: 100%;
}

.description
{
	font-size: 100%;
	color: #008000;
}

.context
{
	font-size: 100%;
}

.infoline
{
	font-size: 80%;
	font-style: normal;
	color: #808080;
}

.zoom_searchform
{
	font-size: 100%;
}

.zoom_results_per_page
{
	font-size: 80%;
	margin-left: 10px;
}

.zoom_match
{
	font-size: 80%;
	margin-left: 10px;
}

.zoom_categories
{
	font-size: 80%;
}

.zoom_categories ul
{
	display: inline;
	margin: 0px;
	padding: 0px;
}

.zoom_categories li
{
	display: inline;
	margin-left: 15px;
	list-style-type: none;
}

.cat_summary ul
{
	margin: 0px;
	padding: 0px;
	display: inline;
}

.cat_summary li
{
	display: inline;
	margin-left: 15px;
	list-style-type: none;
}

input.zoom_button
{
	
}

input.zoom_searchbox
{
	
}

.result_image
{
	float: left;
	display: block;
}

.result_image img
{
	margin: 10px;
	width: 80px;
	border: 0px;
}

.result_block
{
	margin-top: 15px;
	margin-bottom: 15px;
	clear: left;
}

.result_altblock
{
	margin-top: 15px;
	margin-bottom: 15px;
	clear: left;
}

.result_pages
{
	font-size: 100%;
}

.result_pagescount
{
	font-size: 100%;
}

.searchtime
{
	font-size: 80%;
}

.recommended
{
	background: #2FD6C3;
	border-top: 1px dotted #808080;
	border-bottom: 1px dotted #808080;
	margin-top: 15px;
	margin-bottom: 15px;
}

.recommended_heading
{
	float: right;
	font-weight: bold;
}

.recommend_block
{
	margin-top: 15px;
	margin-bottom: 15px;
	clear: left;
}

.recommend_title
{
	font-size: 100%;
}

.recommend_description
{
	font-size: 100%;
	color: #008000;
}

.recommend_infoline
{
	font-size: 80%;
	font-style: normal;
	color: #808080;
}

.recommend_image
{
	float: left;
	display: block;
}

.recommend_image img
{
	margin: 10px;
	width: 80px;
	border: 0px;
}

/* Customizations to search styles */

.searchheading
{
	margin-top: 2em;
}

/* Button doesn;t show pointer indicating it is clickable for some reason.
   this fixes that */

input[type="submit"],
button
{
	cursor: pointer;
}

/* ZoomSearh insists on putting in line breaks in places (and sometimes,
    multiple br's!), even if we do not
    want them. So, we override them here to remove them  via css */

.summary br
{
	display: none;
}

.searchheading br
{
	display: none;
}

.result_pagescount br
{
	display: none;
}

.zoom_match br
{
	display: none;
}

.zoom_results_per_page br
{
	display: none;
}

/* Style for error text when loading community results */

.load_error
{
	color: #e5004c;
	font-size: 70%;
}

/* Shows spinner in background of community results when page is first loaded. It 
   is removed later via JQuery */

.community_results
{
	background-image: url('spinner.gif');
	background-repeat: no-repeat;
	background-position: center;
	min-height: 50px;
	width: 100%;
}

