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

.ves-nomer{
font-style:italic;
text-align:center;
}

.nom-aktual{
background-color:#FF0000;
}

.nom-rubrika{
font-style:italic;
text-align:left;
text-decoration:underline;
}

.nom-title{
text-align:center;
font-size:24px;
padding: 5px;
}

.nom-title h2{
// background-color: rgb(245, 245, 245);
}

.vremya{
font-size:9px;
padding:0px;
font-style:italic;
}

.vremya p{
// color: rgb(245, 245, 245);
}

.nom-vrezka{

}

.nom-vrezka img{
max-width: 250px;
max-height: 210px;
padding: 1px 5px 15px 15px;
//border-top-left-radius: 50px;
//border-top-right-radius: 50px;
//border-bottom-right-radius: 50px;
//border-bottom-left-radius: 50px;
}

.nom-post{
padding: 5px;
//background: url(/img/dub.png) no-repeat rgb(254, 254, 254) ;
background: rgb(254, 254, 254) ;
border-top-left-radius: 0;
border-top-right-radius: 20px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 30px;
border: 1px solid gray;
}

.citer{
position: absolute;
top: 49px; /* Положение от нижнего края */
right: 120px; /* Положение от правого края */
width:250px;
}


.body-fon{
background-image: url(/img/fonosen1.png);
}



.arrow {
  width: 0; height: 0;
  border: 3px solid;
  border-left-color: blue;
}


.nom-podr{
padding:12px;
}







#slider {
    height: 300px;
    overflow: hidden;
    width: 960px;
    margin: 0 auto;
    border:5;
}
#slider div {
    position: relative;
    height: 300px;

}
#slider img {display: block;}
#slider h1 {
    color: white;
    font-size: 300%;
    left: 60px;
    position: relative;
    text-shadow: 0 0 3px #000000, 0 0 3px #000000; /* Only CSS3, no prefix */
    top: -260px;
}
#slider p {
    background-color: rgba(0, 0, 0, 0.8);
    color: #EEEEEE;
    line-height: 140%;
    padding: 10px 20px;
    position: relative;
    top: -250px;
}










#slider div {
    animation: mymove 5s linear infinite alternate;
    -moz-animation: mymove 5s linear infinite alternate; /* Firefox */
    -webkit-animation: mymove 5s linear infinite alternate; /* Safari and Chrome */
}

@keyframes mymove {
    0% {top: 0px;}
    45% {top: 0px;}
    55% {top: -300px;}
    100% {top: -300px;}
}
/* Firefox */
@-moz-keyframes mymove {
    0% {top: 0px;}
    45% {top: 0px;}
    55% {top: -300px;}
    100% {top: -300px;}
}
/*Safari and Chrome*/
@-webkit-keyframes mymove {
    0% {top: 0px;}
    45% {top: 0px;}
    55% {top: -300px;}
    100% {top: -300px;}
}