@charset "UTF-8";

body {
    background: #fff;
	font-size:12px;
}

.wrap {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.wrap > h1 {
    position: relative;
    display: block;
    background: #156c8a;
    color: #fff;
    padding: 10px;
}
.wrap > ul {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
}
.wrap > ul > li {
    position: relative;
    display: block;
    padding: 20px 0px 20px 0px;
    border-bottom:1px solid #156c8a;
}
.wrap > ul > li > span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 0 3px;
    width: 400px;
}
.wrap > ul > li img {
    position: relative;
    width: 100%;
    height: auto;
}
.wrap > ul > li > h2 {
    position: relative;
    width: 100%;
    font-size: 13px;
    text-indent: 10px;
    padding: 3px;
    margin: 10px 0 10px 0;
    color: #156c8a;
}

.footer {
    position: relative;
    margin: 20px 0 0 0;
    width: 100%;
    text-align: center;
    line-height: 25px;
    color:#999999;
}
.footer > .logo {
    position: relative;
    display: block;
    width: 100px;
    left: 50%;
    margin: 0 0 0 -50px;
}
.footer > .logo img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (min-width: 500px) {
    .footer > br {
        display: none;
    }
}




.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(248,150,31,1);
    z-index: 999;
    top:0;

    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.loaded .loading {
    top:-100%;
}
.loadingBar {
    position: absolute;
    left: 50%;
    top:50%;
    margin: -20px 0 0 -30px;
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.loadingBar > span {
    position: relative;
    display: block;
    width: 200px;
    text-align: center;
    left:50%;
    margin: 0 0 0 -100px;
    line-height: 30px;
}

.loadingBar > div {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: loading 1.2s infinite ease-in-out;
    animation: loading 1.2s infinite ease-in-out;
}
.loaded .loadingBar > div {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.loadingBar .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.loadingBar .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.loadingBar .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.loadingBar .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}