/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;

  /*gradient*/
  /*Fallback*/
  background-color: #EFF8FF;
  background:url('gradient_background.png');
  background-repeat:repeat-x;
  /*Image*/
  /*Fallback*/
  background-color:#F0F8FF;
  
  /*Safari 5.1, Chrome 10+ 
  background: -webkit-linear-gradient(top,#86A1B2,#F0F8FF);

  /* Safari 4-5, Chrome 1-9  
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#86A1B2), to(#F0F8FF));
  
  /* Firefox 3.6+  
  background: -moz-linear-gradient(top, #86A1B2, #F0F8FF);
  
  /* IE 10 
  background: -ms-linear-gradient(top, #86A1B2, #F0F8FF);
  
  /* Opera 11.10+  
  background: -o-linear-gradient(top, #86A1B2, #F0F8FF);
 */
}

#page-wrapper {
}

#page {
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/*
 * Header
 */
#header {
}

#header .section {
}

#logo /* Wrapping link for logo */ {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

#logo img {
  vertical-align: bottom;
  width:960px;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
  float: left;
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
  clear: both; /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
}

#main {
  background-color:white;
}

/*
 * Content
 */
#content {
}

#content .section {
margin-top:15px;
/*
border-style:solid;
border-radius:5px;
-moz-border-radius:5px;
border-color:#DADADA;
margin-top: 15px;
border-width:1px;
*/
}

#main-content {
  padding:10px;

}

#content .block {
  border-style:solid;
  border-radius:5px;
  -moz-border-radius:5px;
  border-color:#DADADA;
  margin-top: 15px;
  border-width:0px;
}
#content .region-highlighted
{
  margin-top:5px;
  border-width:0px;
}
.region-highlighted #content{
  border-width: 0px;
  position:relative;
}

.region-highlighted p
{
  padding-left:2px;
  padding-right:2px;
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  padding-bottom: 0; /* Undo system.css */
}

h1.title, /* The title of the page */
h2.node-title, /* Title of a piece of content when it is given in a list of content */
h2.block-title, /* Block title */
h2.title, /* Comment section heading */
h2.comment-form, /* Comment form heading */
h3.title /* Comment title */ {
  margin:0;
  /*color:#86A1B2;*/
  color:#111111;
  font-size: 1.25em;
  /*text-align:center;*/
}

/*Titles*/
h1.title
{
  /*padding:7.5px;*/
  /*height:30px;*/
  /*margin-top:13px;
  margin-bottom:26px;
  */
  /*Background Fallback*/
  background-color:#EFF8FF;
  /*Gradients*/
  /*Safari 4-5, Chrome 1-9*/
  background: -webkit-gradient(linear,0%,0%,0%,100%,from(#FFFBFB),to(#EAEAEA));
  /*Safari 5.1, Chrome 10+*/
  background: -webkit-linear-gradient(top,#FFFBFB,#EAEAEA);
  /*Firefox 3.6+*/
  background: -moz-linear-gradient(top,#FFFBFB,#EAEAEA);
  /*IE 10*/
  background: -ms-linear-gradient(top,#FFFBFB,#EAEAEA);
  /*Opera 11.10+*/
  background: -o-linear-gradient(top,#FFFBFB,#EAEAEA);  
  border: .1em solid #DADADA;
  border-radius:5px;
  -moz-border-radius:5px;
  border-top:0px;
  border-right:0px;
  border-left:0px;
  /*box-shadow: 2px 2px 2px #DADADA;*/
  z-index:1;
}


tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
  margin: 1.5em 0; /* Drupal core uses "6px 0" margin */
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.region-help /* Help text on a page */ {
}

.more-help-link /* Link to more help */ {
}

.region-content /* Wrapper for the actual page content */ {
}

ul.links /* List of links */ {
}

ul.links.inline {
  display: block; /* Let the links be inline, but the container be a block. */
}

ul.links li {
  padding: 0 1em 0 0; /* LTR */
}

.item-list .pager /* A list of page numbers when more than 1 page of content is available */ {
  padding: 0;
}

.item-list .pager li /* Each page number in the pager list */ {
  padding: 0 0.5em;
}

.feed-icon
{
  position:absolute;
  margin-top:-25px;
  margin-left:415px;
}

.feed-icon img /* The link to the RSS or Atom feed for the current list of content */ {
}

.more-link /* Aggregator, blog, and forum more link */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first h2
{
  width:150px;
  border: .1em solid #DADADA;
}
.region-sidebar-first {
  position:relative;
  z-index:0;
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
.region-footer {
}

/*
 * Page bottom
 */
.region-bottom /* Wrapper for any blocks placed in the page bottom region */ {
}

#temp-change-body
{
  text-align:justify;
}

.temp-change img
{
  width:338px;
  height:320px;
}

.section-temperature-change #logo img
{
  height:182px;
}

.climate-spotlight
{
  margin-top:5px;
  margin-bottom:10px;
}

.climate-spotlight .content
{
  padding-left:5px;
  padding-right:5px;
  text-align:justify;
}

.climate-spotlight p
{
  margin:1px;
/*
  line-height:12px;
*/
}

.climate-normals table
{
  margin-left:auto;
  margin-right:auto;
}

.climate-normals td
{
  text-align:justify;
}

.normals-grey
{
  background-color:#EEEEEE;
}

.normals-white
{
  background-color:#FFFFFF;
}

#chart-container {
	box-sizing: border-box;
	width: 440px;
	height: 300px;
	padding: 20px 15px 15px 15px;
	margin: 15px auto 30px auto;
	border: 1px solid #ddd;
	background: #fff;
	background: linear-gradient(#f6f6f6 0, #fff 50px);
	background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	-o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.chart-placeholder {
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 1.2em;
}

#climograph-container, #acis-container {
	box-sizing: border-box;
	width: 640px;
	height: 400px;
	padding: 20px 15px 15px 15px;
	margin: 15px auto 30px auto;
	border: 1px solid #ddd;
	background: #fff;
	background: linear-gradient(#f6f6f6 0, #fff 50px);
	background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	-o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.climograph-placeholder, .acis-placeholder {
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 1.2em;
}

#acis-browser .ui-button
{
  width:160px;
}

#acis-browser .ui-state-hover
{
  background: #8FCFFF;
}

#acis-browser .ui-state-active
{
  background: #1C94C4;
  color:#F6F6F6;
}

#acis-browser td
{
  text-align:center;
}

#acis-browser .grey
{
  background-color: #CCCCCC;
}

#acis-browser .station-title th
{
  font-size:14px;
  text-align:center;
  background-color:#86A1B2;
  color:#FFFFFF;
}

#acis-browser .elements
{
  background-color:#86A1B2;
  color:#FFFFFF;
}

#acis-browswer .data-row td
{
  width:10px;
  text-align:center;
}

.yaxisLabel
{
  color: red;
}

.weather-table
{
  text-align:justify;
}

.weather-title
{
  background-color: #86A1B2;
  color:#FFFFFF;
  text-align:center;
}

.weather-table .tr-even
{
  background-color:#CCCCCC;
}

#city-title
{
  color: #38629C;
}

.webcam-table p
{
  display:inline;
}