/*
 * LEGEND FOR ATTR SELECTORS
 * 
 * ///
 * [att=value]
 * The attribute has to have the exact value specified.
 * ///
 * [att~=value]
 * The attribute?s value needs to be a whitespace separated list of words(for example,
 * class=?title featured home?), and one of the words is exactly the specified value.
 * ///
 * [att|=value]
 * The attribute?s value is exactly ?value? or starts with the word ?value? and is
 * immediately followed by ?-?, so it would be ?value-?.
 * ///
 * [att^=value]
 * The attribute?s value starts with the specified value.
 * ///
 * [att$=value]
 * The attribute?s value ends with the specified value.
 * ///
 * [att*=value]
 * The attribute?s value contains the specified value.
 * ///
 */

/**
 * 	SOCCER
 */
*[teamname="Manchester_United"]
	{
	background: url(/i/teams/soccer/manchester_united.png) no-repeat left bottom;
	}
*[teamname="Chelsea"]
	{
	background: url(/i/teams/soccer/chelsea.png) no-repeat left bottom;
	}










10/30/2017 1:57:38 PM