/* CSS Document */

/* 気温単位の表示切り替え */
body.temp_unit_f .span_f { display:inline;}
body.temp_unit_f .span_c { display:none;}
body.temp_unit_c .span_c { display:inline;}
body.temp_unit_c .span_f { display:none;}

/* 最高気温・最低気温の色設定 */
.span_max { font-weight:bold; color:#EE3113; }
.span_min { font-weight:bold; color:#4187DD;}