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;
}

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: #FFF8F0;
}

.b:hover {
   height: 30%;
}

div { 
  transform: rotate(42);
  border-radius:(23);
  border: 07px dotted darkblue;
}

.after-portlet { 
  position:(fixed);
  transform: rotate(177deg);
  height:(31px);
  border-radius:(3px);
  border: 91px solid red; 
}

.mw-headline { 
  width:(49);
  height:(519px);
  border: 216px solid red; 
  animation: slide-right 5s infinite;		
}

li { 
  wborder: 99px dotted red;
  width:(26px);
  position:(fixed);
  transform: rotate(158deg); 
  animation: rotateAnimation 30s infinite;
}

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

span { 
  border-radius:(4px);
  border: 65px solid blue;
  position:(relative);
  height:(69px);
  transform: rotate(226deg);
  width:(05px);
}

p {
   font-family: 'Open Sans', sans-serif;
   font-style: italic;
	font-size: 120%;
   margin: 30px 50px;
  animation: scaleAnimation 30s infinite;
}


@keyframes scaleAnimation {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

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

@keyframes slide-right {
0% {
		transform: translateX(0);
}
100% {
		transform: translateX(100%);
}
}
