/* CSS file for the Instromet Climatica */
/* Created by Mark Crossley July 2013 */
/* Copyright ©2013 Prodata Weather Systems */

@font-face {
	font-family: 'DroidSansMono2';
	src: url('../climatica/fonts/DroidSansMono2.woff') format('woff'), url('../climatica/fonts/DroidSansMono2.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

html {
    background-image: url(../images/clouds_0.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.slowTransition {
    /* not supported in IE9, so no CSS animation */
    animation-timing-function: ease-in-out;
    transition: transform 2.5s;
    -webkit-transition: -webkit-transform 2.5s;
    -moz-transition: -moz-transform 2.5s;
    -o-transition: -o-transform 2.5s;
}

.fastTransition {
    /* not supported in IE9, so no CSS animation */
    animation-timing-function: ease-in-out;
    transition: transform 1s;
    -webkit-transition: -webkit-transform 1s;
    -moz-transition: -moz-transform 1s;
    -o-transition: -o-transform 1s;
}

.matrix {
    position: absolute;
    color: #47F0FF;
/*    font: 18px Lucida Console, Monaco, monospace; */
    font: 18px DroidSansMono2;
/*    font-weight: lighter; */
    /* Force the text into GPU otherwise we get 'odd' effects on some mobile browsers */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    visibility: hidden;
}

.absolute {
    position: absolute;
    /* hide all the components until they are scaled and positioned */
    visibility: hidden;
	/* and place them at the top of the page and small to avoid scroll bars in browser */
	top: 0px;
	width: 0px;
	height: 0px;
}

/* put the wind speed pointer and max indicator to zero when the page loads */
.initSpd {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
}

.hotLink {
    position: absolute;
    display: block;
    /* hack for IE to get empty links to work >8[ */
    background-image: url(../images/clouds_0.png);
}

.hotLink:hover {
    cursor: pointer;
}

#screen {
    position: relative;
    width: 100%;
}

#imgStation {
    cursor: progress;
    width: 100%;
}

#imgInfo {
    cursor: pointer;
    right: 0px;
    top: -5px;
}

#imgSpdDial {
	top: 0%;
	left: 0%;
	width: 100%;
}

#prodata1 {
    height: 3.6%;
    width: 10.5%;
    top: 80%;
    left: 16.9%;
}

#prodata2 {
    height: 6.5%;
    width: 62.5%;
    top: 83%;
    left: 19%;
}

#settings {
    height: 6.5%;
    width: 17.5%;
    top: 74%;
    left: 41.4%;
}

#imgBarBoss  {
	cursor: pointer;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 100;
    display: none;
}

#close:hover {
    cursor: pointer;
}

.unitsTable {
    font-size: 12px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
}

.cellRight {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

input[type='radio'] {
    width: 15px;
    height: auto;
    position:relative;
    vertical-align: -5%;
}
label {
    height: 15px;
    text-align: left;
    vertical-align: 15%;
}