	html {
		overflow-x: hidden;
		width: 100vw;
		}

	body {
	    width: 100vw;
	    min-height:100vh
	}

	body {
	    background-size: cover;
	    background-repeat: no-repeat;
	    color: rgba(255, 255, 255, 0.90);
	    background: url('/Editor/Fondos/FonCol_13.jpg') center center fixed;
	    font-size:120%;
	    font-family: 'Texto';
	}

	.AlturaPantalla {
		min-height:100vh
		}
	.Superior, .Inferior {
	    display none;
	}

	.BordeInferior {
		    box-shadow:inset 0 -1px 0px 1px rgba(255, 255, 255, 0.50);

	}

	.BordeDerecho {
		    border-right: 1px dashed rgba(255, 255, 255, 0.50);

	}


	.Superior {

			-webkit-animation-delay: 4s;
			animation-delay: 4s;

			-webkit-animation: blurFadeIn 3s ease-in backwards;
			animation: blurFadeIn 6s ease-in backwards;
	}

	.Inferior {
			-webkit-animation-delay: 1s;
			animation-delay: 1s;

			-webkit-animation: blurFadeIn 5s ease-in backwards;
			animation: blurFadeIn 2s ease-in backwards;

		    	font-family: 'Inferior';
	}
	@-moz-keyframes blurFadeIn{
		0%{

			opacity: 0;
			-moz-transform: scale(0);
			transform: scale(0);
		}
		100%{
			-moz-transform: scale(1);
			transform: scale(1);
		}
	}

