/* 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 {
	line-height: 1.6; 
	overflow: auto;
	max-height: 150px;
	height: expression(
		this.scrollHeight > 170? "150px" : "auto" );
	/*width: 50%;*/
	width:365px;
	margin-top : -1px;
	float : none;
	visibility: hidden;
	position: absolute;
	color: #17375E;
	background-color: white;
	z-index: 100;
	border: solid 1px black;
	
	}

/*Highlighted category in search results list*/
span.highlight {
	background-color: #17375E;
	color: white;
	cursor: pointer;
	line-Height: 1.6;
	padding: 3px 4px;
/*	width: 278px; */
	margin: 0px;
}
	input#txtSelectedCategories {
	/*width: 50%;*/
	width:363px;
	FONT-SIZE: 8pt; 
	FONT-FAMILY:Verdana, Geneva, Arial, sans-serif; 
}

	/*Category Select Master DIV*/
	#categoryselectmaster {
		border: 1px solid #DFE6FF;
		background-color: #EDEDEB;
		max-height: 550px;
		padding: 5px;
		margin: 0px 0px 15px 0px;
		/*JORGE */
		position:relative;
		#z-index: 2;
	}
	
	/*Tag cloud area*/
	#tagcloud {
	  text-align: center;
	  /*padding: 10px 0 10px 0;*/
	  color:#888888;
	  line-height:2em;
	  #line-height:2.4em;
	}

	/*Each individual tag*/
	.tagselected {
/*		 background-color: #515256;*/
		 background-color:#6C83A8;
		 color: white;
		 padding: 2px;
	 }
	
	.tag {
		padding: 2px;
	}
	
	.tag:hover {
      cursor: pointer;
	  color:#CD0039;
      text-decoration: underline;
	}
	
	.tagselected:hover {
		cursor:pointer;
		text-decoration:none;
		color:white;
	}
	
	.tooltip {
      cursor: pointer;
      text-decoration: underline;
      color: #2d5381;
	}
	
		
span.cs {
	color: #17375E;
	background-color: white;
	cursor: pointer;
	line-height: 1.6;  
	padding: 3px 4px;
/*	width: 278px; */
	margin: 0px;
}

span.csSelect {
	text-decoration: underline;
	font-weight: bold;
}



/*Highlighted category in search results list*/
.highlight {
	background-color: #6C83A8;
	color: white;
	cursor: pointer;
/*	line-height: 1;*/
	padding: 0.1em 2px;
/*	width: 278px; */
	margin: 0px;
}

.unhighlight {
	color: #17375E;
	background-color: white;
	cursor: pointer;
/*	line-height: 1;*/
	padding: 0.1em 2px;
/*	width: 278px;*/
	margin: 0px;
}
