/* 
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-color: #CCE3EA;
		border-style:solid;
		border-width:1px;
		padding: 10px;
		visibility: hidden;
		position: absolute;
		background-color: #ffffff;
		min-width: 150px;
	}	
	
	.navRow 
	{
		font-size: 11px; 
		width: 100%;
		overflow: hidden;
		padding-bottom: 3px;
		padding-left: 22px;
	}
	 
	.suggRow {
/* Attention! These must match the colors provided for SetupMMSuggest! */
		font-size: 11px;
		width: 100%;
		overflow: hidden;
		margin-bottom: 1px;
	}
	
	.suggSides {
		height: 100%;
	}
	
/* 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! */
		font-size: 11px; 
		max-width: 35%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		text-align: right; 
		color: green; 
		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: 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! */
		background-color: #FFFFFF;
		font-size: 11px; 
		font-weight: bold;
		width:100%;
		white-space: nowrap; 
		float: left; 
		text-align: left; 
		height: 20px;
		color: #003366;
		padding-left: 10px;
		padding-top: 5px;
	}

	.suggGroupProduct {
/* Item when flag AS_GROUPED_DISPLAYCAT */
/* Attention! Do not specify colors here! */
		background: #FFFFFF;
		font-size: 11px; 
	 	max-width: 75%; 
	 	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: 11px; 
		max-width: 25%; 
		overflow: visible; 
		white-space: nowrap; 
		float: right; 
		text-align: right; 
		color: #666666; 
	 }

	.suggGroupProductOnly {
/* Item when flag AS_GROUPED (oneColumn mode) */
/* Attention! Do not specify colors here! */
		font-size: 11px; 
		max-width: 100%; 
		overflow: hidden; 
		white-space: nowrap; 
		
		text-align: left; 
		padding-left: 10px; 
		padding-right: 10px;
		line-height: 20px;
	}


/* Additional Styles for MMSuggest which are not in the standard package */

.suggLeftCorner {
	position: absolute;
	left:0px; 
	width: 5px;
	height: 5px;
	padding: 0px;
	margin: 0px;
	border-width: 0px;
}

.suggRightCorner {
	position: absolute;
	right: 0px; 
	width: 5px;
	height: 5px;
	padding: 0px;
	margin: 0px;
	border-width: 0px;
}

.suggMiddlePart {
	position: absolute;
	left:0px; 
  background-color: #0C5798;
	width: 300px;
	height: 1px;
	padding: 0px;
	margin: 0px;
	border-width: 0px;
	overflow: hidden;
}

.suggBorder {
	height: 1px;
	padding: 0px;
	margin: 0px;
	border-width: 0px;
}

.suggSides {
	height: 100%;
	border-right:  #0C5798 1px solid; 
	border-left:  #0C5798 1px solid;
}

.suggGroupProductOnly .productName {
	float: left;
}

.suggGroupProductOnly .productWKN {
	float: right;
}