/* 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.
 *
*/

	#searchResults {
	  /* max-height: 200px; */
	  /* width : 650px; */
	  overflow : auto;
	  margin-top : -1px;
	  float : none;
	  visibility: hidden;
	  /* opacity:.90; */
	  position: absolute;
          background-color: #ffffff;
          background-image: url("/wiki/extensions/SelectCategoryTagCloud/WhiteBox.jpg");
	  color: #000000;
	}

	.highlight {
	  background-color: #515256;
	  color: white;
	}
	
	#categoryselectmaster {
	  border: 1px solid #c21731;
	  background-color: #e9e9e9;
	}
	
	#tagcloud {
	  text-align: center;
	  margin: 10px;
	}

        /* Make input box for category list be variable width. */
        input#txtSelectedCategories {
          margin-left: 1em;
          width: 90%;
        }
