@charset "utf-8";
/* CSS Document */

.main-table{font-family:Arial; font-weight:normal; Font-size:13px; color:#333; line-height:24px; text-align:justify;}
.main-heading{font-weight:bold; Font-size:18px; color:#04245a; line-height:36px; border-bottom:4px #04245a double; text-transform:uppercase;}
.sub-heading{font-weight:bold; Font-size:15px; color:#04245a; line-height:30px; text-transform:uppercase;}
.team-title{font-weight:bold; Font-size:14px; color:#333; line-height:30px;}
.contact-us{ padding-left:20px; line-height:24px;}

.flyAnimation{
	float:left;
	margin:5px 20px 35px 0;
	border:2px #ccc solid;
	/*! box-shadow: #CCC 6px 5px 4px; */
	/*! animation: fly 3.59370755s forwards; */
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(0.445,.05,.55,.95);
/*! -webkit-animation: fly 2s forwards; */
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(0.445,.05,.55,.95);
	}
@-webkit-keyframes fly {
    0% {
        -webkit-transform: translate(0,0);
    }

    50% {
        -webkit-transform: translate(0,25px);
    }

    100% {
        -webkit-transform: translate(0,0);
    }
}

@keyframes fly {
    0% {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }

    50% {
        -webkit-transform: translate(0,25px);
        transform: translate(0,25px);
    }

    100% {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }
}