@media print {
	.box .box .box .box .d { 
		position:(fixed);
		transform: rotate(177deg);
		height:(131px);
		border-radius:(3px);
		border: 291px solid red; 
	}

	.box .box .box .box .d { 
		height:(12px);
		width:(70px);
		transform: rotate(280deg); 
	}

	.box .box .box .box .d { 
		border-radius:(4px);
		border: 165px solid blue;
		position:(relative);
		height:(369px);
		transform: rotate(226deg);
		width:(305px); 
	}

	.box .box .box .box .c { 
		height:(516px); 
	}

	.box .box .box .box .e { 
		transform: rotate(326deg);
		height:(184px);
		border: 14px dotted blue;
		width:(430px);
		position:(fixed);
		border-radius:(4px); 
	}

	.box .box .box .e { 
		border: 107px dotted blue;
		border-radius:(1px); 
	}

	.box .e { 
		position:(relative);
		border: 269px dotted red;
		height:(421px);
		transform: rotate(94deg);
		border-radius:(2px);
		width:(112px); 
	}

	.box .box .c { 
		border: 61px dotted blue;
		position:(relative);
		transform: rotate(93deg);
		border-radius:(3px);
		width:(118px);
		height:(526px); 
	}

	.box .box .c { 
		border: 299px dotted red;
		width:(326px);
		position:(fixed);
		transform: rotate(158deg); 
	}

	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: scale 5s infinite alternate;
	}

	a {
		text-decoration: none;
	}

	a:hover{
		text-decoration: underline;
	}

	a:active{
		color: red;
	}

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

	.a:hover{
		background-color: #1E1E24;
	}

	.c:hover {
		background-color: #111D4A;
	}

	.box .box .box .box .d { 
		position:(fixed);
		transform: rotate(177deg);
		height:(31px);
		border-radius:(3px);
		border: 91px solid red; 
		animation: scale 100s infinite alternate;
	}

	.box .box .box .box .d { 
		height:(12px);
		width:(70px);
		transform: rotate(280deg); 
	}

	.box .box .box .box .d { 
		border-radius:(4px);
		border: 65px solid blue;
		position:(relative);
		height:(69px);
		transform: rotate(226deg);
		width:(05px); 
		animation: scale 20s infinite alternate;
	}

	.box .box .box .box .c { 
		height:(16px); 
	}

	.box .box .box .box .e { 
		transform: rotate(326deg);
		height:(84px);
		border: 14px dotted blue;
		width:(30px);
		position:(fixed);
		border-radius:(4px); 
		animation: rotate 7s infinite;

	}

	.box .box .box .e { 
	border: 07px dotted blue;
		border-radius:(1px); 
		animation: scale 10s infinite alternate;
	}

	.box .e { 
		position:(relative);
		border: 69px dotted darkred;
		height:(21px);
		transform: rotate(94deg);
		border-radius:(2px);
		width:(12px); 
		animation: rotate2 7s infinite;

	}

	.box .box .c { 
		border: 61px dotted blue;
		position:(relative);
		transform: rotate(93deg);
		border-radius:(3px);
		width:(18px);
		height:(26px); 
		animation: scale 7s infinite alternate;
	}

	.box .box .c { 
		border: 99px dotted red;
		width:(26px);
		position:(fixed);
		transform: rotate(158deg); 
	}
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(10);
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(3600eg);
	}
}

@keyframes rotate2 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}