@keyframes empanim
{
from {color: #faa;}
to {color: #e00;}
}
@-moz-keyframes empanim /* Firefox */
{
from {color: #faa;}
to {color: #e00;}
}

@-webkit-keyframes empanim /* Safari and Chrome */
{
from {color: #faa;}
to {color: #e00;}
}

@-o-keyframes empanim /* Opera */
{
from {color: #faa;}
to {color: #e00;}
} 

/*animaiton for communication*/

@keyframes commanim
{
from {left: 0%;}
to {left:10%;}
}
@-moz-keyframes commanim /* Firefox */
{
from {left: 0%;}
to {left:10%;}
-webkit-transition-timing-function: cubic-bezier(0.305, 0.015, 0.410, 1); /* older webkit */
-webkit-transition-timing-function: cubic-bezier(0.305, 0.015, 0.410, 1.650);
   -moz-transition-timing-function: cubic-bezier(0.305, 0.015, 0.410, 1.650);
    -ms-transition-timing-function: cubic-bezier(0.305, 0.015, 0.410, 1.650);
     -o-transition-timing-function: cubic-bezier(0.305, 0.015, 0.410, 1.650);
        transition-timing-function: cubic-bezier(0.305, 0.015, 0.410, 1.650); /* custom */

}

@-webkit-keyframes commanim /* Safari and Chrome */
{
from {left: 0%;}
to {left:10%;}
}

@-o-keyframes commanim /* Opera */
{
from {left: 0%;}
to {left:10%;}
} 


#comm{
position:absolute;
font-family:OpenSans;
font-size: 60px;
animation: commanim 3s;
-moz-animation: commanim 3s; /* Firefox */
-webkit-animation: commanim 3s; /* Safari and Chrome */
-o-animation: commanim 3s; /* Opera */


color:#8e0;
top: -30%;
left: 10%;
}

#emp{

position:absolute;
top: 12%;
left: 30%;
font-family:OpenSans;
font-size: 50px;
color:#e00;

text-shadow: 1px 1px 2px #eee, 2px 2px 3px #aaa;
    -webkit-transition: text-shadow 0.3s ease-in-out;
    -moz-transition: text-shadow 0.5s ease-in-out;
    -o-transition: text-shadow 0.5s ease-in-out;
    transition: text-shadow 0.5s ease-in-out;


animation: empanim 5s;
-moz-animation: empanim 5s; /* Firefox */
-webkit-animation: empanim 5s; /* Safari and Chrome */
-o-animation: empanim 5s; /* Opera */


}
#lab{
position:absolute;
top: 23%;
left: 57%;
font-family:OpenSans;
font-size: 30px;
color:#666;
}
#iit {
position:absolute;
top: 89%;
left: 69.5%;
font-family:OpenSans;
font-size: 15px;
color:#bbb;
}
#iit:hover{
color:#a00;
}
#iitlink:link{
color:#bbb;
text-decoration: none;
}
#iitlink:hover{
color:#a00;
}
#iitlink:visited{
color:#bbb;
}

