 
 * {
	margin: 0;
	padding: 0;
	outline: none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro.eot');
    src: url('../fonts/DINPro.woff2') format('woff2'),url('../fonts/DINPro.woff') format('woff'),url('../fonts/DINPro.ttf') format('truetype'),url('../fonts/DINPro.svg#DINPro') format('svg'),url('../fonts/DINPro.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal
}

body {
	background: url('/img/page-bg.jpg');
        background: url('/img/page-bg.jpg');
        background-size: 100%;
        background-repeat: repeat-y;
	color: #444;
	-webkit-font-smoothing: antialiased;
	font-family: DinPro, "Open Sans", Arial, Helvetica, Geneva, sans-serif;
	font-size: 18px;
	font-weight: 400;
	height: auto !important;
	height: 100%;
	line-height: 1.6em;
	min-height: 100%;
}

h2 {
	color: rgb(34,34,34);
	font-size: 2.2em;	
	font-weight: 200;
	margin: 0 0 24px 0;
}

/*BUTTON DESIGN*/
[class*='btn-'] {
	border: none;
	border-bottom: 2px solid rgba(0,0,0,.15);
	border-top: 1px solid rgba(255,255,255,.15);
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font: -webkit-small-control;
	font-size: .9em;
	letter-spacing: 1px;
	line-height: 140%;
	padding: 10px 20px;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
	text-transform: uppercase;
	
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	  transition: all 0.1s linear;
}

	.btn-minimal {
		background-color: rgb(255,255,255);
		border-radius: 0;
		border: 1px solid rgb( 34, 34, 34 );
		color: rgb( 34, 34, 34 );
		text-shadow: 0 1px 1px rgba(255, 255, 255, 1);
	}
	
		.btn-minimal:hover {
			background-color: #4195fc;
			border: 1px solid rgba(0,0,0,.1);
			color: rgb(255,255,255);
			cursor: pointer;
			text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
		}
		
		.btn-minimal:active {
			box-shadow: 0 1px 1px rgba(0,0,0,0.15) inset;
			text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
		}

/*SECTION CONTAINER*/
div.loginBox {
	background-color: rgb(255,255,255);
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 0 4px rgba(0,0,0,0.2);
	margin: 40px auto; /*aligns center*/
	padding: 24px;
	width: 600px;
}

table.minimal {
	width: 450px;
}

div.right {
	float: right;
	text-align: right;
	color: black;
}

/*FORM*/
form.minimal label {
	display: block;
	margin: 6px 0;	
}

form.minimal input[type="text"],
form.minimal input[type="email"],
form.minimal input[type="number"],
form.minimal input[type="search"],
form.minimal input[type="password"],
form.minimal textarea {
	background-color: rgb(255,255,255);
	border: 1px solid rgb( 186, 186, 186 );
	border-radius: 2px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
	  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
	display: block;
	font-size: 22px;
	margin: 6px 0 12px 0;
	padding: 8px;	
	text-shadow: 0 1px 1px rgba(255, 255, 255, 1);
	width: 90%;
	
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	  transition: all 0.1s linear;
}

form.minimal input[type="text"]:focus,
form.minimal input[type="email"]:focus,
form.minimal input[type="number"]:focus,
form.minimal input[type="search"]:focus,
form.minimal input[type="password"]:focus,
form.minimal textarea:focus,
form.minimal select:focus { 
	border-color: #4195fc;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #4195fc;
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #4195fc;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #4195fc;
	color: rgb(0,0,0);
}

form.minimal input[type="text"]:invalid:focus,
form.minimal input[type="email"]:invalid:focus,
form.minimal input[type="number"]:invalid:focus,
form.minimal input[type="search"]:invalid:focus,
form.minimal input[type="password"]:invalid:focus,
form.minimal textarea:invalid:focus,
form.minimal select:invalid:focus { 
	border-color: rgb(248,66,66);
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgb(248,66,66);
	-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgb(248,66,66);
	  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgb(248,66,66);
}

a:link, a:visited { 
	color: black;
    text-decoration: none;
    cursor: auto;
}

a.showlink:link, a.showlink:visited { 
	color: blue;
    text-decoration: underline;
    cursor: default;
}

table.unit_table {
	width: 450px;
	border-spacing:0px;
    /*border-collapse:collapse;*/
    
    border-top: 1.5px solid #888888;
    border-left: 1.5px solid #888888;
    border-right: 1.5px solid #888888;    
    border-bottom: 1.5px solid #888888;    
	padding:5px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;	
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;	
}

tr.button {
	background-image: url('button_background.png');
    background-repeat: repeat-x;
    height: 50px;
}

tr.button_alarm {
	background-color: #ee0000;
    height: 50px;
}

img.button_alarm {
	background-color: #ee0000;
    height: 50px;
}

td.temp_alarm {
	background-color: #ee0000;
}

tr.row_alarm {
	background-color: #ee0000;
}

table.settings {
 	border: 1px solid black;
 	width: 100%;
 	border-collapse: collapse;
 	padding: 2px;
 }
 
 .clickable {
	cursor: pointer;
}

.gobacklink {
	float: right;
	text-decoration: underline;
	cursor: pointer;
}

a.islink, .islink {
	text-decoration: underline;
	cursor: pointer;
}
