/* LINKY */

a {
    color : #404040;
    text-decoration : none;
}
a:hover {
    color : #B6FF00;
    text-decoration : none;
}

/* TELO */

body {
    font-family: Comic Sans MS;                              
    font-size: 11px;
    color: #B6FF00;
    background-color: #000;

}

.center-body {
    background-color: #404040;
    color: #000;
}

.left-body {
    background-color: #404040;
    color: #000;
}

.right-body {
    background-color: #404040;
    color: #000;
}

/* PANEL LEFT */

.panel-left {
    background-color: #000000;
    color: #B6FF00;
}

.panel-left-title {
    text-align: center;
    background-color: #B6FF00;
    color: #000000;
    font-weight: bold;
}

.panel-left-body {
    padding-left: 5px;
    padding-right: 5px;
}

/* PANEL RIGHT */

.panel-right {
    background-color: #000000;
    color: #B6FF00;
}

.panel-right-title {
    text-align: center;
    background-color: #B6FF00;
    color: #000000;
    font-weight: bold;
}

.panel-right-body {
    padding-left: 5px;
    padding-right: 5px;
}

/* PANEL CENTER */

.panel-center {
    background-color: #000000;
    color: #B6FF00;
}

.panel-center-title {
    text-align: center;
    background-color: #B6FF00;
    color: #000000;
    font-weight: bold;
}

.panel-center-body {
    padding-left: 5px;
    padding-right: 5px;
}

/* MENU */

.menu {
    background-color: #000000;
    padding: 5px 10px 5px 10px;  

}

.menu a {
    font-family: "Arial"; 
    font-size: 15px;
    text-decoration: none;
    color: #B6FF00;
    font-weight: bold;
    padding: 5px 10px 5px 10px;  
}

.menu a:hover {   
    background-color: #B6FF00;
    color: #000;
    text-decoration: none;   
}

.menu ul{
    margin: 0;
    padding: 0;  
}

.menu ul li{
    display: inline; 
    padding: 4px 0px 6px 0px;
}

.menu ul li.first-link a span {
    padding: 5px 10px 5px 10px; 
    background-color: #B6FF00;
    color: #000;
}

/* BLIKANIE */

.blink_text {
-webkit-animation-name: blinker;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;

-moz-animation-name: blinker;
-moz-animation-duration: 1s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;

 animation-name: blinker;
 animation-duration: 1s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;
}

@-moz-keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }

@-webkit-keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }

@keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.0; }
 100% { opacity: 1.0; }
 }