/*
    Document   : arka-player.css
    Created on : 29 janv. 2013
    Author     : m.meausoone
    Description:
        Regroupe les styles indispensables au fonctionnement du player html5

*/

body {
    /*-ms-touch-action: none;*/
    /*touch-action: none;*/
    /*touch-action: manipulation;*/
}


.arka-player{
    position: relative;
    top: 0;
    left: 0;
    overflow: visible;
    margin: 0 auto;
    padding: 0;
    /*min-height: 200px;*/
    max-width: 100%;
    background: transparent;
    font-family: Arial, sans-serif;
    z-index: 0;
    zoom: 1;
    /*border: 3px solid red;*/
    -ms-touch-action: none;
    touch-action: none;
}

.arka-player *:focus,
.arka-player:focus {
    outline: none;
}

.arka-player canvas {
    margin: 0;
    max-width: 100%;
}



/* palette et contenus player 3d */
.palette{
    display: none;
    z-index: 1000;
    /*border: thin solid #999;*/
}


/* Mode plein écran */

.arka-player.plein-ecran {
    width: 100%;
    height: 100%;
}
.arka-player.plein-ecran #content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.arka-player.plein-ecran #header {
    display: none;
}
.arka-player.plein-ecran #footer {
    display: none;
}
.arka-player.plein-ecran .arka-player {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}





.gradient-programme1 {
    background: #999;
}
.gradient-programme1:hover {
    background: #666;
}


#messagesLog {
    display: block;
    clear: both;
    overflow: hidden;
    border: 4px solid #fff;
    font-size: 12px;
    font-weight: normal;
    width: 350px;
    height: 250px;
    background: #333;
    color: #eee;
    line-height: 140%;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 8px;
    font-family: Arial, sans-serif;
}


#messagesLog .logs {
    height: 230px;
    overflow: auto;

}
#messagesLog .clear {
    position: absolute;
    top: 0;
    right: 0;
    background: #999;
    border: 2px solid #000;
}
