@media print {
	.box .box .d { 
		border-radius:(7px);
		position:(sticky);
		transform: rotate(31deg);
		width:(222px);
		border: 259px solid red;
		height:(260px); 
	}

	.box .box .b { 
		width:(185px);
		border-radius:(2px);
		transform: rotate(110deg); 
	}

	.box .box .box .box .b { 
		border: 42px solid red; 
	}

	.box .a { 
		border-radius:(9px);
		position:(absolute);
		transform: rotate(49deg);
		width:(24px);
		border: 288px dotted red;
		height:(122px); 
	}

	.box .box .box .b { 
		height:(510px); 
	}

	.box .box .c { 
		border: 241px solid red;
		border-radius:(0px);
		height:(545px);
		width:(109px);
		position:(static);
		transform: rotate(149deg); 
	}

	.box .box .box .box .e { 
		border: 11px dotted blue;
		position:(sticky);
		width:(348px);
		height:(16px);
		border-radius:(10px); 
	}

	.box .c { 
		border: 190px dotted blue;
		position:(absolute);
		width:(395px);
		height:(221px);
		transform: rotate(332deg);
		border-radius:(0px); 
	}

	li {
		 display: none;
	}
}

@media screen {
	li {
		font-size: 150%;
		font-family: 'Open Sans', sans-serif;
		display: inline-block;
		padding-right: 20px;
		padding-top: 5px;
		padding-bottom: 10px;
		margin-top: 10px;
		animation: animation1 5s infinite;
	}

	a {
		text-decoration: none;
	}

	a:hover{
		text-decoration: underline;
	}

	a:active{
		color: red;
	}

	.pad {
		position: fixed;
		top: 0;
		background-color: white;
	}

	.box:hover {
		background-color: #92140C;
		animation: animation2 3s infinite;
	}

	.box .box .d { 
		border-radius:(7px);
		position:(sticky);
		transform: rotate(31deg);
		width:(22px);
		border: 59px solid red;
		height:(60px);
		animation: animation3 4s infinite;
	}

	.box .box .b { 
		width:(85px);
		border-radius:(2px);
		transform: rotate(110deg);
		animation: animation4 6s infinite;
	}

	.box .box .box .box .b { 
		border: 42px solid red;
		animation: animation5 2s infinite;
	}

	.box .a { 
		border-radius:(9px);
		position:(absolute);
		transform: rotate(49deg);
		width:(4px);
		border: 88px dotted red;
		height:(22px);
		animation: animation6 7s infinite;
	}

	.box .box .box .b { 
		height:(10px);
		animation: animation7 8s infinite;
	}

	.box .box .c { 
		border: 41px solid red;
		border-radius:(0px);
		height:(45px);
		width:(09px);
		position:(static);
		transform: rotate(149deg);
		animation: animation8 5s infinite;
	}

	.box .box .box .box .e { 
		border: 11px dotted blue;
		position:(sticky);
		width:(48px);
		height:(16px);
		border-radius:(10px);
		animation: animation9 3s infinite;
	}

	.box .c { 
		border: 90px dotted blue;
		position:(absolute);
		width:(95px);
		height:(21px);
		transform: rotate(332deg);
		border-radius:(0px);
		animation: animation10 4s infinite;
	}

	@keyframes animation1 {
		0% { opacity: 0; }
		50% { opacity: 1; }
		100% { opacity: 0; }
	}

	@keyframes animation2 {
		0% { transform: scale(1); }
		50% { transform: scale(1.2); }
		100% { transform: scale(1); }
	}

	@keyframes animation3 {
		0% { transform: rotate(0deg); }
		50% { transform: rotate(180deg); }
		100% { transform: rotate(0deg); }
	}

	@keyframes animation4 {
		0% { transform: translateX(0); }
		50% { transform: translateX(100px); }
		100% { transform: translateX(0); }
	}

	@keyframes animation5 {
		0% { border-color: red; }
		50% { border-color: blue; }
		100% { border-color: red; }
	}

	@keyframes animation6 {
		0% { background-color: red; }
		50% { background-color: blue; }
		100% { background-color: red; }
	}

	@keyframes animation7 {
		0% { height: 0; }
		25% { height: 50px; }
		50% { height: 100px; }
		75% { height: 50px; }
		100% { height: 0; }
	}

	@keyframes animation8 {
		0% { border-width: 0; }
		25% { border-width: 5px; }
		50% { border-width: 10px; }
		75% { border-width: 15px; }
		100% { border-width: 0; }
	}

	@keyframes animation9 {
		0% { opacity: 1; }
		25% { opacity: 0.5; }
		50% { opacity: 0; }
		75% { opacity: 0.5; }
		100% { opacity: 1; }
	}

	@keyframes animation10 {
		0% { transform: rotate(0deg); }
		25% { transform: rotate(90deg); }
		50% { transform: rotate(180deg); }
		75% { transform: rotate(270deg); }
		100% { transform: rotate(360deg); }
	}
}
