﻿  #LeftColumnD
	{
	    width:40%;
	    
      
	    height:330px;
	    float:left;
    font-size: xx-small;
     margin-right:3%;
	    
	    }
	    
	
	 #MiddleColumn
	{
	    width:140px;
	          
	    height:330px;
	    float:left;
    font-size: xx-small;
   
	    
	    }
	        
	    	
	    #RightColumnD
	{
	    width:40%;
	    
         text-align:center;
	    height:330px;
	    float:right;
    font-size: xx-small;
}


  #LeftColumnD2
	{
	    width:47%;
	    
      
	    height:50px;
	    float:left;
    font-size: xx-small;
     margin-right:3%;
	    
	    }
	    
	    
	    	
	    #RightColumnD2
	{
	    width:47%;
	    
         text-align:center;
	    height:50px;
	    float:right;
    font-size: xx-small;
}
	    
	     .visitors{
				
				margin-top:10px;
				width:403px;
				height:31px;
				background-color:#0b98c0;
				border-radius:10px;
				font-family:Tahoma, Geneva, sans-serif;
				color:#fff;
				font-weight:bold;
				margin-left:auto;
				margin-right:auto;
				text-align:right;
				padding:12px 0px;
				text-shadow:#333 1px 1px;
				font-size:12px;
				
			}
			

	/* ----------------------------------------------marquee-------------------------------------*/


.marquee {
    width: 900px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    
    text-indent: 0;
    animation: marquee 60s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused
}


/* Make it move */
@keyframes marquee {
    100%   { transform: translate(100%, 0); }
    0%     { transform: translate(-100%, 0); }
}