* {
    margin: 0;
    padding: 0;
    bottom: 0;
    outline: 0;
}
body {
    font-size: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
p {
    font-size: 1.4em;
    line-height: 1.4;
}
a {
    color: #0aa9ee;
    text-decoration: none;
    outline: none;
}
.wrapper {
    width: 940px;
    margin: 0 auto;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex.center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex.end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex.top {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.button {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    background-color: #5ba6ee;
    border-radius: 2px;
    padding: 8px 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.button.big {
    font-size: 1.3em;
    padding: 15px 20px;
}
.button:hover {
    background-color: #206cde;
    text-decoration: none !important;
}
.content {
    background: #f6f6f6 url(../images/media-bg.png) no-repeat scroll -269px top;
    min-height: 400px;
    padding-bottom: 50px;
}
.content.no-bg{
    background: #f6f6f6;
}
.breadcrumbs {
    padding: 20px 0;
}
.breadcrumbs ul {
    list-style: none;
}
.breadcrumbs ul li {
    list-style: none;
    display: inline-block;
    font-size: 1.2em;
    color: #5b5b5b;
}
.breadcrumbs a {
    color: #5b5b5b;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs ul li:nth-child(2n) {
    color: #1dafef;
    font-size: 1.4em;
    padding: 0 5px;
}
