/* 
MMSuggest stylesheet.
Contains the styles used by the client side MatchMakerSuggest component.
Copyright exorbyte GmbH, 2005, 2006. All rights reserved.
Author: Leo Meyer, leo.meyer_at_exorbyte.com
*/

/* Suggest box style */
	.suggBox {
	border: 3px solid #6F705F;
	color: #000;
	font-family: arial,sans-serif;
		z-index: 9999;
		padding-right: 0;
		padding-left: 0;
		padding-top: 0;
		padding-bottom: 0;
		visibility: hidden;
		position: absolute;
		background-color: white;
		min-width: 250px;
/*
		opacity: 0.9;
		-moz-opacity: 0.9;
		-khtml-opacity: 0.9;
		filter: alpha(opacity=90);			
*/
	}	

	.suggItem {
		font-size: 12pt;
		padding-left: 10px;
  		padding-top: 3px;
  		padding-bottom: 3px;
		/*height: 16px;*/
		overflow: hidden;
	}

	.suggRow {
/* Attention! These must match the colors provided for SetupMMSuggest! */
	   	color: black;
    	background-color: white;
		width: 100%;
	}
	
	.suggHead {
	font-size: 12px;
	color: #545846;
	text-align: left;
	font-weight: bold;
	background-color: white;
	}

/* Default column styles */
	.suggProduct {
/* Attention! Do not specify colors here! */
		font-size: 12px; 
	 	max-width: 65%; 
	 	overflow: hidden; 
	 	white-space: nowrap; 
	 	float: left; 
	 	text-align: left; 
	 }

	.suggCat {
/* Attention! Do not specify colors here! */
		font-size: 10px; 
		max-width: 35%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		font-size: 10px; 
		text-align: right; 
		color: green; 
		padding-top: 3px;
	}	

/* Styles to be used with flag AS_HIERARCHICAL */
	.suggHierarchicalProduct {
/* Attention! Do not specify colors here! */
		font-size: 10px; 
	 	max-width: 100%; 
	 	overflow: hidden; 
	 	white-space: nowrap; 
	 	float: left; 
	 	text-align: left; 
	 	padding-left: 3; 
	 	padding-right: 3;
	 }

	.suggHierarchicalCat {
/* Attention! Do not specify colors here! */
		font-size: 10px; 
		max-width: 35%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		font-size: 10px; 
		text-align: right; 
		color: green; 
		padding-top: 3px;
	}	

/* Styles to be used with flag AS_GROUPED and AS_GROUPED_DISPLAYCAT */

	.suggGroupCaption {
/* Generated group caption with flags AS_GROUPED and AS_GROUPED_DISPLAYCAT */
/* Attention! Do not specify colors here! */
		font-size: 10px; 
		font-weight: bold;
	 	max-width: 100%; 
	 	overflow: hidden; 
	 	white-space: nowrap; 
	 	float: left; 
	 	text-align: left; 
	 	padding-left: 3; 
	 	padding-right: 3;
	 }

	.suggGroupProduct {
/* Item when flag AS_GROUPED_DISPLAYCAT */
/* Attention! Do not specify colors here! */
		font-size: 10px; 
	 	max-width: 65%; 
	 	overflow: hidden; 
	 	white-space: nowrap; 
	 	float: left; 
	 	text-align: left; 
	 	padding-left: 3; 
	 	padding-right: 3;
	 }

	.suggGroupCat {
/* Category when flag AS_GROUPED_DISPLAYCAT and oneColumn = false*/
/* Attention! Do not specify colors here! */
		font-size: 10px; 
		max-width: 35%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		font-size: 10px; 
		text-align: right; 
		color: green; 
		padding-top: 3px;
	 }

	.suggGroupProductOnly {
/* Item when flag AS_GROUPED (oneColumn mode) */
/* Attention! Do not specify colors here! */
		font-size: 10px; 
	 	max-width: 100%; 
	 	overflow: hidden; 
	 	white-space: nowrap; 
	 	float: left; 
	 	text-align: left; 
	 	padding-left: 3; 
	 	padding-right: 3;
	 }

