/* SelectCategoryTagCloud Mediawiki Extension
 *
 * @author Andreas Rindler (mediawiki at jenandi dot com)
 * @credits Leon Weber <leon.weber@leonweber.de> & Manuel Schneider <manuel.schneider@wikimedia.ch>, Daniel Friesen http://wiki-tools.com
 * @licence GNU General Public Licence 2.0 or later
 * @description Adds a category selection tag cloud to the edit and upload pages and enables a Google Suggest like completion of categories entered by the user.
 *
*/

	/*Suggest search results DIV*/
	#searchResults {
	  max-height: 200px;
	  width : 660px;
	  margin-top : -1px;
	  float : none;
	  visibility: hidden;
	  opacity:.80;
	  position: absolute;
	  color: #c21731;
	  background-color: white;
	  z-index: 1;
	}

	/*Highlighted category in search results list*/
	.highlight {
	  background-color: #515256;
	  color: white;
      cursor: pointer;
	}
	
	/*Category Select Master DIV*/
	#categoryselectmaster {
	  border: 1px solid #c21731;
	  background-color: #e9e9e9;
	  max-height: 550px;
	}
	
	
	
	.tooltip {
      cursor: pointer;
      text-decoration: underline;
      color: #2d5381;
	}
	
	