/* Advanced Web interface for DSLstats running integrated webserver
 * Author & copyright - kitz @ http://kitz.co.uk 
 * For use with DSLstats available from http://dslstats.me.uk/
 * Free for use as long as this credit remains in place.
 * See included README file
 * V2  06/06/2018 - Updated CSS to add a container to try and make it easier for those for integration with Stuarts code for zoom graphs etc 
 */




body {
	margin: 0;
	padding:0;
	height:100%;
	font-family: Arial, Helvetica, sans-serif;	
	background-color:#708090; /* For browsers that do not support gradients */
	background: linear-gradient(to bottom right, rgba(110,120,130,1), rgba(180,190,200,1)) fixed;
}

/* Using a container so it's easier to segment parts of the page */

#container {
   min-height:100%;
   position:relative;
}

/* Header section with reversed gradient */
#header {
    height: 100px;
    background: #708090; 
    background: linear-gradient(to bottom right, rgba(180,190,200,1), rgba(110,120,130,1)); 	
	}
	
/* Body and main content section */
#body {
   padding:10px;
   padding-bottom:60px;   /* Allow space for the footer */
   font-size: 14px;
}

#navbox {
   background:#333;
   padding:1px;   
}

/* Nav Menu */
.navmenu {
  overflow: hidden;
  background-color: #333;
  margin-left: 20px;
}

.navmenu a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 18px;
}

.navmenu a:hover {
	background-color: #CCCCCC;
	color: black;
}

.navmenu a.active {
	background-color: #000000;
	color: white;
}

h1 {
    margin: 15px 15px 15px 40px;
}

.graphs { 
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
	font-size: 16px;
}

.frame {
	padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
}

#footerbox {
   position:absolute;
   bottom:0;
   width:100%;
   height:55px;   /* Height of the footer - this must be the same as the bottom body padding  */
   background:#708090;
}	
	
#footer {
	width: 100%;
    overflow: hidden;
	background-color: #333;
	margin: 5px auto 10px auto;
	text-align: center;
	color: #f2f2f2;
	font-size: 14px;	
}

#footer a{
	color: white;
}

.alignleft {
	float: left;
	margin: 15px 15px 15px 30px;
}
.alignright {
	float: right;
	margin: 15px 30px 15px 15px;
}