body {
    background-image: url("/image/logosmall2.jpg");
    background-repeat: no-repeat;
    background-position: left top;
/*    margin-left: 100px;
*/
}

article {
    width: 100px;
    height:100px;
    background-color: red;
    position: relative;
    -webkit-animation-name: example; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
    -webkit-animation-delay: 1s; /* Chrome, Safari, Opera */
    animation-name: example;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes example {
    0%   {background-color:red; left:0px; top:0px; opacity:0.6;}
    25%  {background-color:pink; left:50px; top:0px; transform: rotateZ(720deg);}
    50%  {background-color:orange; left:100px; top:0px; width: 170px; opacity:0.7;}
    75%  {background-color:red; left:50px; top:0px;transform: rotateZ(720deg); width: 300px;opacity:0.4;}
    100% {background-color:red; left:0px; top:0px;opacity:0.6;}
}

/* Standard syntax */
@keyframes example {
    0%   {background-color:red; left:0px; top:0px; opacity:0.6;}
    25%  {background-color:pink; left:50px; top:0px; transform: rotateZ(720deg);}
    50%  {background-color:orange; left:100px; top:0px; width: 170px;opacity:0.7;}
    75%  {background-color:red; left:50px; top:0px;transform: rotateZ(720deg); width: 300px;opacity:0.4;}
    100% {background-color:red; left:0px; top:0px;opacity:0.6;}
}
/*
div {
  width: 230px;
  height: 75px;
  margin:  5px;
  padding: 4px;
}
*/

* {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
}
.de {
    position: fixed;
    right: 30px;
    top: 130px;
    width: 140px;
    height: 40px;
    z-index: 10;
}
.row:after {
    content: "";
    clear: both;
    display: block;
}
[class*="col-"] {
    float: left;
    padding: 15px;
    width:   100%;
}
@media only screen and (min-width: 600px) {
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}
html {
    font-family: "Lucida Sans", sans-serif;
}
.header {
    background-color:rgba(50,20,200,0.2); /*  #0099cc;*/
    color: #000000;
    padding: 3px;
    height: 40;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color :rgba(50,20,200,0.2); /*#33b5e5;*/
    color: #000000;
    box-shadow: 0 1px 3px rgba(250,250,250,0.3), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color:rgba(250,250,250,0.1); /* #0099cc;*/
}
.aside {
    background-color:rgba(50,20,200,0.2); /* #33b5e5;*/
    padding: 15px;
    color: #000000;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#pda {
    border-radius: 10px;
    background: rgba(255,0,255,0.3);
    padding: 15px; 
    width: 320px;
    height: 65px;    
}
#pda2 {
    border-radius: 10px;
    background: rgba(255,0,255,0.3);
    padding: 15px; 
    width: 320px;
    height: 65px;    
}
#pda3 {
    border-radius: 10px;
    background: rgba(255,0,255,0.3);
    padding: 15px; 
    width: 320px;
    height: 65px;    
}
.footer {
    background-color:rgba(50,20,200,0.2); /*  #0099cc;*/
    color: #000000;
    text-align: center;
    font-size: 12px;
    padding:   15px;
}
video {
    max-width: 100%;
    height: auto;
}
a#core {
    display: block;
    width: 100%;
    background-color: #ddddee;
}