@charset "UTF-8";

* {
    margin: 0;
}
body {

    background-color: #fff;
    font-family: Myriad Pro
}
body, div {
    margin: 0;
    padding: 0;
}
html, body, #bg, #bg table {
    width: 100%; height: 100%;
    overflow: hidden;
}
img {
    display: block;
}


/* Background Images */
#bg div {
    width: 200%;
    height: 200%;
    
    position: absolute;
    top: -50%;
    left: -50%;
}
#bg .bgImage {
    min-height: 50%;
    min-width: 50%;
    margin: 0 auto;
}


/* layout */
.wrapper {
    width: 100%;
    height: 100%;
    
    top: 0;
    left: 0;
    
    overflow: auto;
    position: absolute;
    z-index: 50;
}
.wrapperAutoMain {
    width: 1200px;
    margin: auto;
}


/* Menu Bar */
.layoutLeft {
    width: 210px;
    
    margin-left: 1%;
    float: left;
}
.menubar {
    background: url(../img/tag.png) center;
    background-repeat: repeat-y;
    margin-left: 1px;
}

/* Fixed in firefox browser */
@-moz-document url-prefix() {
    .menubar {
        background: url(../img/tag.png) center;
        background-repeat: repeat-y;
        margin-left: 2px;
    }
}

.menubar p {
    padding: 10px;
    margin-bottom: 10px;
    
    text-align: center;
}
.menubar p > span {
    padding: 10px 12px;
    
    font-size: 17px;
    color: #fff;
    
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.menubar p > span:hover {
    background: #d35050;
    text-decoration: none;
    cursor: pointer;
}
p#info span {
    background: #e35050;
    text-decoration: none;
    font-weight: bold;
    
    cursor: pointer;
}


/* Content */
.boxContent {
    width: 77%;
    margin-left: 4%;
    margin-top: 15%;
    
    float: left;
}
.showContent {
    padding: 3%;
    height: auto;
    
    background: #FFF;
    opacity: 0.9;
    border-radius: 5px;
}
.detailWeb h1 {
    text-decoration: underline;
    margin-bottom: 20px;
    color: #CB3C3C;
}
.detailWeb p {
    font-size: 18px;
    color: #666;
    
    text-indent: 1.5em;
    line-height: 1.8em;
}
.detailWeb p:first-child {
    margin-bottom: 25px;
}


/* Footer */
.footer {
    width: 100%;
    
    margin-top: 2%;
    padding: 10px;
    text-align: center;
}
.footer span {
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    font-style: italic;
    
    padding: 5px;
    
    background-color: #444;
    opacity: 0.9;
    border-radius: 5px;
}