body, html{
	width:100%;
	height:100%;
	background:#fff;
	font-family: 'Muli', sans-serif;
	font-size:11px;
	overflow:hidden; 
	width: 100%;
	height: 100%;
	margin: 0;
    padding: 0;
}


.background, #page{
	width: 100%;
	height: 100%;
}

#page{
    position: fixed;
    z-index: 1001;
    top: 0;
}

.background{
	 background: url('../images/dashboard/background.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  
  /* Required for IE 5, 6, 7 */
	/* ...or something to trigger hasLayout, like zoom: 1; */
	width: 100%; 
		
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	
	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=30);
	
	/* Older than Firefox 0.9 */
	-moz-opacity:0.2;
	
	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.2;
    
	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.2;
 }

 #dashboardTitle{
	height: 200px;
    left: 50%;
    margin-left: -200px;
    margin-top: -100px;
    position: absolute;
    top: 15%;
    width: 400px;
    color:#25A0DA;
    text-align:center;
}

#dashboardTitle h1{
	font-size:24px;
	font-weight:bold;
}

#controlPanel{
    height: 400px;
    left: 50%;
    margin-left: -300px;
    margin-top: -200px;
    position: absolute;
    top: 50%;
    width: 600px;
    -moz-box-shadow: 0 0 20px #000;
    -webkit-box-shadow: 0 0 20px #000;
    box-shadow: 0 0 20px #000;
    background: #fff;
		-moz-animation-name: dropHeader;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: 0.3s;

    -webkit-animation-name: dropHeader;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: 0.3s;

    animation-name: dropHeader;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}

#dashboard{
	margin:0 auto;
	text-align:center;
	
}

#dashboard tr{
	height:200px;	
}


#dashboard td{
	margin:5px;
}


#dashboard span {
    display: block;
    float: left;
    line-height: 30px;
    margin-top: 20px;
    vertical-align: middle;
    width: 100%;
}

#dashboard h1{
	font-size:18px;
	margin: 0;
}

#dashboard a{
	width:200px;
	height:200px;
	display:block;
}

#dashboard a span{
	background: white;
	margin-top: 50px;
}

#dashboard a:link, #dashboard a:hover, #dashboard a:visited{
	color:#fff; 
	text-decoration:none;
	width:200px;
	height:200px;
	display:block;
}

#dashboard a:hover{
	background:#FFC000; 
	text-decoration:none;
}

#dashboard a:hover span{
	background:white; 
	text-decoration:none;
	margin-top: 40px;
	padding: 1px;
}

#dashboard a:hover img{
    padding-top: 50px;
    display: block;
    margin: 0 auto;
    height: 50%;
    margin-top: -30px;
}

@-moz-keyframes dropHeader {
    0% {
        -moz-transform: translateY(-500px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-webkit-keyframes dropHeader {
    0% {
        -webkit-transform: translateY(-500px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@keyframes dropHeader {
    0% {
        transform: translateY(-500px);
    }
    100% {
        transform: translateY(0);
    }
}

.elemData{
 display: block;
    float: left;
    height: 200px;
    overflow: hidden;
}

.elemData img{
	margin-top:30px;
}

.coneglianoClass{
	 background: #25A0DA;
}
.threediClassText{
	 color: #25A0DA;
}

.colleumbertoClass{
	 background:#ff9900;
}

.sensorClassText{
	color: #ff9900;
}

.marenoClass{
	background:#449748;
}

.routingClassText{
	color: #4F8E40;
}

.sluciaClass{
	background:#323B87;
}

.vazzolaClass{
	background:#F27A5F;
}

.vendemianoClass{
	background:#F2CC8F;
}

.undercostructionClass{
	background:#ccc;
}

.textHighlight{
	color: #666;
}