			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding:0;
				background-color: #f4f4f4;
			}

			.wrapper {
				text-align: center;
				height:66%;
				width:100%;
				background-color: #e8e8e8;
				background-image:url('../img/banner.jpg');
				background-repeat: repeat-x;
				background-size: cover;
				border-top:5px solid green; border-bottom: 5px solid green;
				background-position: 
					0 50%,
					0 100%,
					0 0,
					0 100%,
					0 0;
				background-size: 
					2500px,
					800px,
					500px 200px,
					1000px,
					400px 260px;
				animation: 300s para infinite linear;
			}

			@keyframes para {
				100% {
					background-position: 
						-5000px 20%,
						-800px 95%,
						500px 0,
						1000px 100%,
						400px 0;
				}
			}

			.bttn{
				padding: 0px;
				margin-top:15%;
			}

			.bttn:hover {
				background-color: green;
				color: white;
				border: 2px solid white;
			}

			.buttSmall{
				border-radius: 10px; 
				margin-bottom: 5px; 
				color: white;
				background-color: #00743a;
				border: none;
				outline:none;
			}

			.buttSmall:hover {
			background-color: #4CAF50;
			color: white;
			}

			#buttnInside{
				font-size: 1.2vw; height:100%; 
				vertical-align: middle;    
				display: -webkit-flexbox;
				display: -ms-flexbox;
				display: -webkit-flex;
				display: flex;
				-webkit-flex-align: center;
				-ms-flex-align: center;
				-webkit-align-items: center;
				align-items: center;
				justify-content: center;
			}
			
			#version_number{
				text-align: right;
				margin-bottom: 5px;
				position: fixed;
				bottom: 0;
				width: 100%;
			}
			
			#loginImg{
				max-height:100%;
				display:inline
			}