.bx{
	float:right;
}

.marquee {
	width: 100%;
	margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 30s linear infinite;
	color:#E24E26;
	font-size:14px;
}
 
.marquee:hover {
    animation-play-state: paused
}

 
/* Make it move */
@keyframes marquee {
    0%   { text-indent: 40.5em }
    100% { text-indent: -105em }
}
 
.logo{
	background:url(../images/logo_org.jpg) no-repeat;
	width:150%;
	height:80;
	
}

.box{
	background-color:#F7E9C7;
}

.logo2{
	background:url(../images/inner_logo1.gif) no-repeat;
	width:100%;
	height:110px;
}



.innerlogoimg
{
background:url(../images/inner_logo1.gif) no-repeat;
width:125%;
 height:110px;
}
/*.box1{
	background-color:#F8EAC7;*/

}

.innertop
{
background:url(../images/inner_top_back.jpg) no-repeat;
}

.scroll-left {
 height: 50px;	
 overflow: hidden;
 position: relative;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);	
 transform:translateX(100%);
 /* Apply animation to this element */	
 -moz-animation: scroll-left 40s linear infinite;
 -webkit-animation: scroll-left 10s linear infinite;
 animation: scroll-left 40s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}









