/* 
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-right: black 1px solid;
		border-left: black 1px solid;
		border-top: black 1px solid;
		border-bottom: black 1px solid;
/*		z-index: 1; */
		padding-right: 0px;
		padding-left: 0px;
		padding-top: 0px;
		padding-bottom: 0px;
		visibility: hidden;
		position: absolute;
		background-color: white;
		min-width: 250px;

/* Optional styles to make the suggest box slightly transparent

		opacity: 0.9;
		-moz-opacity: 0.9;
		-khtml-opacity: 0.9;
		filter: alpha(opacity=90);			
*/
	}	
	
	.navRow {
		font-size: 11px; 
	   	color: black;
	   	background-color: white;
		font-family: Verdana, Arial, Helvetica, Sans-Serif;
		width: 100%;
		height: 16px;
		overflow: hidden;
		padding-bottom: 3px;
		border-bottom: black 1px solid;
	}
	 
	.suggRow {
/* Attention! These must match the colors provided for SetupMMSuggest! */
	   	color: #092A57;
    	background-color: #E5F2F7;
		font-size: 11pt;
		font-family: Verdana, Arial, Helvetica, Sans-Serif;
		width: 100%;
		height: 16px;
		overflow: hidden;
	}
	
/* Default column styles */
	.suggProduct {
/* Attention! Do not specify colors here! */
		font-size: 11px; 
	 	max-width: 65%; 
	 	overflow: hidden; 
	 	white-space: nowrap; 
	 	float: left; 
	 	text-align: left; 
	 	padding-left: 3px; 
	 	padding-right: 3px;
	 }

	.suggCat {
/* Attention! Do not specify colors here! */
		color: #0099ff;
		font-size: 11px; 
		max-width: 35%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		text-align: right;
		padding-right: 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: 3px; 
	 	padding-right: 3px;
	 }

	.suggHierarchicalCat {
/* Attention! Do not specify colors here! */
		font-size: 10px; 
		max-width: 35%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		text-align: right; 
		color: #0099ff; 
		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: 3px; 
	 	padding-right: 3px;
	 }

	.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: 3px; 
	 	padding-right: 3px;
	 }

	.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; 
		text-align: right; 
		color: #0099ff; 
		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: 3px; 
	 	padding-right: 3px;
	 }

