/* 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: 170px;
	height: expression(
		this.scrollHeight > 170? "170px" : "auto" );
	width: 95%;
	margin-top : -1px;
	float : none;
	visibility: hidden;
	position: absolute;
	color: #17375E;
	background-color: white;
	z-index: 1;
	border: solid 1px black;
	}

/*Highlighted category in search results list*/
span.highlight {
	background-color: #17375E;
	color: white;
	cursor: pointer;
	cursor: hand;

	line-Height: 1.6;
	padding: 3px 4px;
/*	width: 278px; */
	margin: 0px;
}
	input#txtSelectedCategories {
	width: 90%;
}

	/*Category Select Master DIV*/
	#categoryselectmaster {
	border: 1px solid #17375E;
	/* background-color: #e9e9e9;
	*/
	max-height: 550px;
	padding: 5px;
	margin: 0px 0px 15px 0px;
	}
	
	
	/*Tag cloud area*/
	#tagcloud {
	  text-align: center;
	   
	   background-color:#FEFEFE;
	  background-image:url("../../skins/gumax/img/subbarbg.png");
	  background-repeat:repeat-x;
    
	}

	.tag 
	{
  color:#285BA6;
   padding-left:15px;
  }
  
	span.tag:hover {
	cursor: pointer;
	cursor: hand;
 color:grey;
      text-decoration: underline;
        background-image:url("ok.png");
        background-repeat:no-repeat;
          
          
            
	}
	
	
	/*Each individual tag*/
	.tagselected {
		 
		 color: #515256;
		  
         text-decoration: underline;   
        /* border:2px solid #ECECEC; 
         background-color:#819AA2;
         color:white;
         font-weight:bold;
         padding:5px;
          	 
         background-image:url("extension/SelectCategoryTagCloud/ok.png");
         */
         background-color:#BCD9E3;
         background-image:url("ok.png");
         background-repeat:no-repeat;
         padding:4px;
         font-weight:bold;
         padding-left:15px;
         border:1px dotted #ECECEC;
         
          

	 }
	 span.tagselected:hover
	 {
	 cursor: pointer;
	cursor: hand;
	   background-color:#BCD9E3;
         background-image:url("no.png");
         background-repeat:no-repeat;
          
	
   }
	
	.tooltip {
     	cursor: pointer;
	cursor: hand;

      text-decoration: underline;
      color: #2d5381;
	}
	
		
span.cs {
	color: #17375E;
	background-color: white;
	cursor: pointer;
	cursor: hand;

	line-Height: 1.6;  
	padding: 3px 4px;
/*	width: 278px; */
	margin: 0px;
}

span.csSelect {
/*	color: rgb(255,0,0); */
	text-decoration: underline;
	font-weight: bold;
}

/*Highlighted category in search results list*/
p.highlight {
	background-color: #17375E;
	color: white;
	cursor: pointer;
	cursor: hand;

	line-Height: 1;
	padding: 0.1em 2px;
/*	width: 278px; */
	margin: 0px;
}

	
p.cs {
	color: #17375E;
	background-color: white;
	cursor: pointer;
	cursor: hand;

	line-Height: 1;
	padding: 0.1em 2px;
/*	width: 278px;*/
	margin: 0px;
}

