body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    background-color: #eee;
}
h1 {
    font-weight: normal;
}
a {
    color: #008acb;
}
.wrapper {
    margin: 0 auto;
    width: 900px;
}
.header {
    margin: 20px 0;
    position: relative;
    height: 80px;
}
.logo {
    position: absolute;
}
.navigation {
    position: absolute;
    right: 0;
    top: 12px;
}
.navigation ul {
    position: absolute;
    display: none;
    padding-left: 0;
}
.navigation ul li {
    margin: 20px 0;
}
.navigation span {
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    background-color: #0095d9;
}
.navigation li {
    display: inline-block;
    margin: 0 6px;
}
.navigation li:hover ul {
    display: block;
}
.navigation a {
    text-decoration: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    background-color: #0095d9;
    transition: all ease 0.3s;
}
.navigation a:hover {
    background-color: #00b6f0;
}
.line {
    position: absolute;
    width: 176px;
    height: 8px;
    top: 35px;
    left: 152px;
    background-color: #5acbf5;
    border-radius: 20px 0 20px 0;
    /*box-shadow: inset 0 0 2px #fff;*/
}
.line2 {
    position: absolute;
    width: 176px;
    height: 8px;
    top: 45px;
    left: 125px;
    background-color: #0095d9;
    border-radius: 0 0 20px 20px;
    /*box-shadow: inset 0 0 2px #fff;*/
}
.line3 {
    position: absolute;
    width: 176px;
    height: 8px;
    top: 25px;
    left: 180px;
    background-color: #8ae9ff;
    border-radius: 20px 20px 0 0;
    /*box-shadow: inset 0 0 2px #fff;*/
}
.content {
    background-color: #fff;
    padding: 1px 34px 20px;
    box-shadow: 0 0 10px #ccc;
}
.footer {
    margin: 12px 0;
    color: #888;
    font-size: 0.8em;
}
table.bordered {
    border-collapse: collapse;
}
table.bordered td {
    border: 1px solid #555;
    padding: 0 14px;
}
