﻿@charset "UTF-8";
/**
 * Stylesheet: example.css
 *
 * (c) 2011-2012 Zazar Ltd
 * 
 * Description: Stylesheet for examples
 *
 **/



.weatherFeed {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	color:black;
	width: 98%;
   background: -moz-linear-gradient(top,  rgba(0,127,255,0.33) 1%, rgba(0,127,255,0.05) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(0,127,255,0.33)), color-stop(100%,rgba(0,127,255,0.05))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(0,127,255,0.33) 1%,rgba(0,127,255,0.05) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(0,127,255,0.33) 1%,rgba(0,127,255,0.05) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(0,127,255,0.33) 1%,rgba(0,127,255,0.05) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(0,127,255,0.33) 1%,rgba(0,127,255,0.05) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54007fff', endColorstr='#0d007fff',GradientType=0 ); /* IE6-9 */


    
   
    padding:3px;

}
.weatherFeed a { color: #888; }
.weatherFeed a:hover {
	color: #000;
	text-decoration: none;
}
.weatherItem {
	padding: 0.8em;
	text-align: right;
}
.weatherCity { 
    /*text-transform: uppercase;*/ 
    font-size: 2.8em;
}
.weatherTemp {
	font-size: 2.8em;
	font-weight: bold;
    margin-top:10px;
}
.weatherDesc, .weatherCity, .weatherForecastDay  { font-weight: bold; }
.weatherDesc { margin-bottom: 0.4em; }
.weatherRange, .weatherWind, .weatherLink, .weatherForecastItem { font-size: 0.8em; }
.weatherLink, .weatherForecastItem {
	margin-top: 0.5em;
	text-align: left;
}
.weatherForecastItem {
	padding: 0.5em 0.5em 0.5em 80px;
	background-color: #fff;
	background-position: left center;
}
.weatherForecastDay { font-size: 1.1em; }

/*.odd { background-color: white; }
.even { background-color: whitesmoke; }*/

