@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Permanent+Marker);

body {
    margin: 0px;
    background: url(../img/background.jpg) repeat;
}
/* Interface */
div#interface {
    width: 920px;
    margin: 0px auto;
    position: relative;
}
/* Header of Interface */
header#interfaceHead {
    width: 920px;
    height: 100px;
}
header#interfaceHead h1 {
    font-family: 'Permanent Marker', cursive;
    margin: 0px;
    color: black;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .9);
}
header#interfaceHead img#interfaceIcon {
    position: absolute;
    left: 800px;
    top: 125px;
}
/* Navigation of Interface */
nav#interfaceMenu {
    width: 100%;
    margin: 10px 0;
}
nav#interfaceMenu ul.menuLvl1 {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    /* Width of the lvl 1 menu - dinamic */
    width: 488px;
}
nav#interfaceMenu ul.menuLvl1 li {
    position: relative;
    width: 120px;
    float: left;
}
nav#interfaceMenu ul.menuLvl1 li a {
    text-align: center;
    font-size: 1.3em;
    background-color: #CCC;
    color: black;
    border-radius: 10px 10px 0px 0px;
    text-decoration: none;
    display: block;
    margin: 0px 2px;
}
nav#interfaceMenu ul.menuLvl1 li a:hover {
    background: #333;
    color: white;
    box-shadow: 0px 0px 5px black;
    text-shadow:0px 0px 5px white;
}
nav#interfaceMenu ul.menuLvl2 {
    position: absolute;
    display: none;
    padding: 0px;
}
nav#interfaceMenu ul.menuLvl1 li:hover ul.menuLvl2, nav#interfaceMenu ul.menuLvl1 li.over ul.menuLvl2{
    display: block;
    width: 120px;
}
nav#interfaceMenu ul.menuLvl2 li{
    display: block;
    clear: both;
}
nav#interfaceMenu ul.menuLvl2 li a {
    display: block;
    width: 116px;
    border-radius: 0px;
    margin: 0px 0px 0px 2px;
}
/* Section of Interface */
section#interfaceSection {
    width: 900px;
    height: auto;
    clear: both;
    margin: 5px 0px;
    border: 10px darkgrey ridge;
    border-radius: 10px;
    box-shadow: 0px 0px 7.5px rgba(0, 0, 0, .75);
    background-color: white;
}
section#interfaceSection p.texto {
    text-indent: 40px;
    margin: 20px;
    text-align: justify;
    font-size: 16px;
}
section#interfaceSection hgroup h1 {
    color: white;
    background-color: #cccccc;
    padding: 0px 5px 5px 10px;
    margin: 15px 120px 10px 30px;
    font-size: 15px;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 1px 1px 2px black;
}
section#interfaceSection hgroup h2 {
    color: white;
    padding: 0px 5px 5px 10px;
    background-color: darkgrey;
    font-size: 25px;
    margin: 15px 120px 10px 55px;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 1px 1px 3px black;
}
section#interfaceSection hgroup h3 {
    color: darkgrey;
    text-align: right;
    font-size: 15px;
    margin: 15px 10px 20px 25px;
    border-bottom: 1px darkgrey solid;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .25);
}
section#interfaceSection article.indexArticle h2 {
    width: 95%;
    text-align: left;
    margin-left: 25px;
    margin-right: 35px;
    font-family: 'Permanent Marker', cursive;
    border-bottom: 1px solid lightgray;
    text-shadow: 1px 1px 1px white;
}
section#interfaceSection article span.noticiaData {
    float: right;
}
section#interfaceSection article p.noticiaTexto {
    margin: 20px 30px;
    font-size: 18px;
    text-align: justify;
    text-indent: 50px;
}
section#interfaceSection article p.noticiaTexto a {
    text-decoration: none;
    color: blue;
    font-family: 'Permanent Marker', cursive;
    font-size: 26px;
}
section#interfaceSection article p.noticiaTexto a:hover {
    color: darkblue;
}
section#interfaceSection article p.noticiaAssinatura {
    text-align: right;
    font-size: 20px;
    margin: 0px 30px;
}
section#interfaceSection article p.noticiaAssinatura:last-child {
    margin-bottom: 30px;
}
section#interfaceSection p.referenciaTexto {
    text-align: right;
    font-style: italic;
    text-decoration: underline;
    color: blue;
    margin-right: 20px;
}
section#interfaceSection ul {
    font-size: 20px;
    margin: 0px 100px;
}
/* Legenda da imagem */
figure.fotoLegenda {
    position: relative;
    border: 8px solid white;
    box-shadow: 1px 1px 4px black;
    display: block;
    margin: 30px auto;
}
figure.fotoLegenda figcaption {
    opacity: 0;
    position: absolute;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    width: 100%;
    height: 100%;
    padding: 10px;
    /* Box-sizing para o mozilla */
    -moz-box-sizing: border-box;
    /* Para acertar os 10px criados a mais pelo padding */
    box-sizing: border-box;
    /* transição da opacidade com duração de 1 segundo */
    transition: opacity 1s;
}
figure.fotoLegenda h4 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 10%;
}
figure.fotoLegenda figcaption p {
    background-color: black;
    border-radius: 5px;
    text-align: right !important;
    color: white;
    font-weight: bold;
    text-align: center !important;
}
figure.fotoLegenda:hover figcaption {
    opacity: 1;
}
/* Table Layout */
table {
    margin: 20px auto 20px auto;
    border: 4px rgba(50, 50, 50, 1) solid;
    border-collapse: collapse;
    box-shadow: 2px 2px 4px black;
    padding: 0px;
}
th, td {
    text-align: center;
    padding: 2px 10px;
    border: 2px rgba(200, 200, 200, 1) solid;
}
th {
    background-color: rgba(150, 150, 150, 1);
    color: white;
    border-color: white;
}
td.tdTitulo {
    background-color: #aaaaaa;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
}
td.tdIndex {
    font-weight: bold;
    background-color: #eeeeee;
}
table caption {
    caption-side: bottom;
    margin-top: 5px;
}
/* Footer of Interface */
footer#interfaceFooter {
    width: 920px;
    margin: 10px 0px 30px 0px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, .8);
    background-color: rgba(255, 255, 255, .5);
    color: black;

}
footer#interfaceFooter p {
    margin: 0px;
    text-align: center;
    font-weight: bolder;
}
footer#interfaceFooter p a {
    text-decoration: none;
    color: black;
}

/* What Taekwondo */
div#tkdLogoFrame {
    width: 600px;
    height: 214px;
    margin: 0px auto;
    overflow: hidden;
}
div#tkdLogoFrame img {
    height: 214px;
    float: left;
}
div#tkdLogoFrame iframe#tkdDefinitionIframeId {
    width: 450px;
    height: 280px;
    float: right;
    border: none;
    overflow: hidden;
}
div#tkdLogoFrame iframe#tkdDefinitionIframeId::-webkit-scrollbar {
    display: none;
}

/* História Taekwondo */
article h3 {
    margin-left: 30px;
    border-bottom: 1px solid black;
    width: 25%;
    margin-top: 50px;
}
section#interfaceSection figure#intBarcelona, section#interfaceSection figure#campNacional {
    width: 250px;
}
section#interfaceSection figure#medalhaInter {
    width: 520px;
}

/* Princípios */
section#interfaceSection article h2 {
    text-align: center;
}
section#interfaceSection article.principios {
    padding: 10px;
    width: 95%;
    margin: 20px 0px 20px 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px black;
}
section#interfaceSection article.principios h2 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, .7);
    border: none;
    border-radius: 10px;
}
section#interfaceSection article.principios p {
    background-color: rgba(255, 255, 255, .7);
    padding: 0px 15px;
    border-radius: 5px;
}
section#interfaceSection article#cortesia {
    background: url(../img/bannerCortesia.jpg) no-repeat;
    background-size: 100% 100%;
}
section#interfaceSection article#integridade {
    background: url(../img/bannerIntegridade.jpg) no-repeat;
    background-size: 100% 100%;
}
section#interfaceSection article#perseveranca {
    background: url(../img/bannerPerseveranca.jpg) no-repeat;
    background-size: 100% 100%;
}
section#interfaceSection article#autoDominio {
    background: url(../img/bannerAutoDominio.jpg) no-repeat;
    background-size: 100% 100%;
}
section#interfaceSection article#espiritoIndomavel {
    background: url(../img/bannerEspiritoIndomavel.jpg) no-repeat;
    background-size: 100% 100%;
}
section#interfaceSection p#quoting {
    margin: 50px 20px 7.5px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 2px black;
    text-indent: 0px;
}
section#interfaceSection p#autorQuoting {
    text-align: right;
    font-size: 15px;
    margin: 0px 15px 30px 0px;
}

/* Cinto */
article h2 {
    text-align: center;
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: black;
    text-shadow: 1px 1px 1px #666;
    border-top: 1px black solid;
}
article h3 {
    margin-left: 30px;
    border-bottom: 1px solid black;
    width: 25%;
    margin-top: 50px;
}
section#interfaceSection figure#sistemaGraduacoes, section#interfaceSection figure#sistemaGraduacoes img {
    width: 600px;
}

/* Combates */
section#interfaceSection figure#combate {
    width: 320px;
}
section#interfaceSection figure#kyongGo, section#interfaceSection figure#gamJeom {
    width: 589px;
}
section#interfaceSection figure#protecoes {
    width: 369px;
}
/* Divisão para mostrar sistema de pontuação */
div#tkdFighterFrame {
    width: 600px;
    height: 214px;
    margin: 0px auto;
    overflow: hidden;
}
div#tkdFighterFrame img {
    height: 214px;
    float: left;
}
div#tkdFighterFrame iframe#tkdFighterIframeId {
    width: 450px;
    height: 280px;
    float: right;
    border: none;
    overflow: hidden;
}
div#tkdFighterFrame iframe#tkdFighterIframeId::-webkit-scrollbar {
    display: none;
}

/* Técnica */
article h3 {
    margin-left: 30px;
    border-bottom: 1px solid black;
    width: 25%;
    margin-top: 50px;
}
article h5 {
    margin-left: 60px;
    border-bottom: 1px solid black;
    width: 40%;
    margin-top: 25px;
    font-size: 18px;
    clear: both;
}
article li {
    margin-bottom: 10px;
}
article article img.taegeuk {
    margin: 0px 30px 30px 30px;
    float: left;
}
section#interfaceSection figure#simbTaegeukOld {
    width: 275px;
}
section#interfaceSection figure#simbTaegeukNew {
    width: 400px;
}

/* Dojang */
section#interfaceSection p.dojang {
    text-align: center;
    text-indent: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
section#interfaceSection p.dojang a {
    text-decoration: none;
    color: blue;
}
section#interfaceSection p.dojang a:hover {
    color: darkblue;
}
section#interfaceSection h3.tituloInterno {
    width: 75%;
    margin: 0px auto;
    background-color: rgb(225, 225, 225);
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px black;
}
iframe#dojangMapa {
    display: block;
    margin: 20px auto;
    box-shadow: 1px 1px 3px black;
    border: 10px white solid;
}

/* Visita Guida */
section#interfaceSection figure#interior1 {
    width: 300px;
}

/* Back-to-Top */
.back-to-top {
    position: fixed;
    bottom: 2em;
    right: 0px;
    text-decoration: none;
    color: #000000;
    background-color: rgba(235, 235, 235, 0.80);
    font-size: 12px;
    padding: 1em;
    display: none;
    border-radius: 5px 0px 0px 5px;
    box-shadow: -3px -3px 5px black;
    font-weight: bold;
}
.back-to-top:hover {    
    background-color: rgba(135, 135, 135, 0.50);
}