/**
 * Weather icon sprite
 */
.tick .localweather_icon {
	display:block;
	margin:auto;
	width:64px;
	height:64px;
	background-color:#8cbcd5;
	border:1px solid #e1e1e1;
	background-image:url('../icons/tick.png');
}

	/* Sprite positions for weather conditions */
	.localweather_icon.black_low_cloud              { background-position:0px 0; }
	.localweather_icon.clear_sky_night              { background-position:-64px 0; }
	.localweather_icon.cloudy_with_heavy_rain       { background-position:-128px 0; }
	.localweather_icon.cloudy_with_heavy_rain_night { background-position:-192px 0; }
	.localweather_icon.cloudy_with_heavy_snow       { background-position:-256px 0; }
	.localweather_icon.cloudy_with_heavy_snow_night { background-position:-320px 0; }
	.localweather_icon.cloudy_with_light_rain       { background-position:-384px 0; }
	.localweather_icon.cloudy_with_light_rain_night { background-position:-448px 0; }
	.localweather_icon.cloudy_with_light_snow       { background-position:-512px 0; }
	.localweather_icon.cloudy_with_light_snow_night { background-position:-576px 0; }
	.localweather_icon.cloudy_with_sleet            { background-position:-640px 0; }
	.localweather_icon.cloudy_with_sleet_night      { background-position:-704px 0; }
	.localweather_icon.fog                          { background-position:-768px 0; }
	.localweather_icon.heavy_rain_showers           { background-position:-832px 0; }
	.localweather_icon.heavy_rain_showers_night     { background-position:-896px 0; }
	.localweather_icon.heavy_snow_showers           { background-position:-960px 0; }
	.localweather_icon.heavy_snow_showers_night     { background-position:-1024px 0; }
	.localweather_icon.light_rain_showers           { background-position:-1088px 0; }
	.localweather_icon.light_rain_showers_night     { background-position:-1152px 0; }
	.localweather_icon.light_snow_showers           { background-position:-1216px 0; }
	.localweather_icon.light_snow_showers_night     { background-position:-1280px 0; }
	.localweather_icon.mist                         { background-position:-1344px 0; }
	.localweather_icon.sleet_showers                { background-position:-1408px 0; }
	.localweather_icon.sleet_showers_night          { background-position:-1472px 0; }
	.localweather_icon.sunny                        { background-position:-1536px 0; }
	.localweather_icon.sunny_intervals              { background-position:-1600px 0; }
	.localweather_icon.thunderstorms                { background-position:-1664px 0; }
	.localweather_icon.thunderstorms_night          { background-position:-1728px 0; }
	.localweather_icon.thundery_showers             { background-position:-1792px 0; }
	.localweather_icon.thundery_showers_night       { background-position:-1856px 0; }
	.localweather_icon.white_cloud                  { background-position:-1920px 0; }

/**
 * Windrose sprite
 */
.tick .localweather_windrose {
	position:relative;
	display:block;
	margin:auto;
	margin-bottom:1%;
	font-size:10px;
	font-weight:bold;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	background-position:-800px 0;
}

	.tick .localweather_windrose.dark {
		color:#eee;
		background-image:url('../icons/windroses-dark.png');
	}

	.tick .localweather_windrose.light {
		color:#111;
		background-image:url('../icons/windroses-light.png');
	}

	/* Sprite positions */
	.localweather_windrose.direction_S   { background-position:0px 0; }
	.localweather_windrose.direction_SSW { background-position:-50px 0; }
	.localweather_windrose.direction_SW  { background-position:-100px 0; }
	.localweather_windrose.direction_WSW { background-position:-150px 0; }
	.localweather_windrose.direction_W   { background-position:-200px 0; }
	.localweather_windrose.direction_WNW { background-position:-250px 0; }
	.localweather_windrose.direction_NW  { background-position:-300px 0; }
	.localweather_windrose.direction_NNW { background-position:-350px 0; }
	.localweather_windrose.direction_N   { background-position:-400px 0; }
	.localweather_windrose.direction_NNE { background-position:-450px 0; }
	.localweather_windrose.direction_NE  { background-position:-500px 0; }
	.localweather_windrose.direction_ENE { background-position:-550px 0; }
	.localweather_windrose.direction_E   { background-position:-600px 0; }
	.localweather_windrose.direction_ESE { background-position:-650px 0; }
	.localweather_windrose.direction_SE  { background-position:-700px 0; }
	.localweather_windrose.direction_SSE { background-position:-750px 0; }
