/*-- Nove vytvorena sablona: --*/
/*-- Nove vytvorena sablona:
  pro scrollovani textu
  pod obrazkem.
--*/

.scroll_t1 {
 height: 40px;
 overflow: hidden;
 position: relative;
}
.scroll_t1 h3 {
 font-size: 2em;
 color: white;
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 40px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);
 transform:translateX(100%);
 /* Apply animation to this element */
 -moz-animation: scroll_t1 15s linear infinite;
 -webkit-animation: scroll_t1 15s linear infinite;
 animation: scroll_t1 15s linear infinite;
}
/* Scrolling: */
@-moz-keyframes scroll_t1 {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll_t1 {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll_t1 {
 0%   { 
 -moz-transform: translateX(100%); /* Firefox bug fix */
 -webkit-transform: translateX(100%); /* Firefox bug fix */
 transform: translateX(100%);           
 }
 100% { 
 -moz-transform: translateX(-100%); /* Firefox bug fix */
 -webkit-transform: translateX(-100%); /* Firefox bug fix */
 transform: translateX(-100%); 
 }
}
