/********************************************************
*  Silvia - CSS framework
*  Auth: Simone D'Argliano - simone.dargliano@gmail.com
*********************************************************/
html, body{
	height: 100%;
}

.sil-container{
	display: block;
	position: relative;
	padding: 0;
	margin-left: 5px;
	margin-right: 5px;
	height: 100%;
	/*background-color: blue;*/
}

.sil-header{
	display: block;
	float: left;
	clear: both;
	margin: 0x;
	padding: 0;
	width: 100%;
	/*background-color: green;*/
}

.sil-work{
	display: block;
	float: left;
	clear: both;
	margin: 0;
	padding: 0;
	width: 100%;
	/*min-height: 100%;*/
	max-height: 100%;
	/*background-color: #BBBBBB;*/
	background: white;
	background-image: linear-gradient(white, #3C7E49);
}

.sil-footer{
   /*position: absolute;*/
	bottom: 0;
	display: block;
	float: left;
	clear: both;
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 20px;
	background-color: gray;
}

.sil-hide{
	display: none;
}

.sil-split-30{
	width: 30%;
	float: left;
}

.sil-split-70{
	width: 70%;
	float: left;
}

.sil-split-100{
	width: 100%;
	clear: both;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}