/* HTML5 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* Base */

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Links */

a {
    color: #7230a9;
    text-decoration: none;
}

a:focus {
    outline: 1px dotted;
}

a:hover {
    text-decoration: underline;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    margin: 14px 0 0 0;
    padding: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.25em;
}

blockquote {
    margin: 1em 2em;
}

p {
    margin: 1em 0;
}

pre {
    margin: 1em 0;
    white-space: pre-wrap;
}

address,
cite,
dfn,
em,
i,
var {
    font-style: italic;
}

b,
strong {
    font-weight: bold;
}

code,
kbd,
pre,
samp,
tt {
    font-family: monospace, monospace;
    font-size: 0.875em;
}

sub,
sup {
    font-size: smaller;
    line-height: 0;
}

sub {
    vertical-align: sub;
}

sup {
    vertical-align: super;
}

/* Lists */

dl {
    margin: 1em 0;
    padding: 0;
}

dd {
    margin-left: 2em;
}

ol,
ul {
    margin: 1em 0 1em 2em;
    padding: 0;
}

li {
    margin: 0.25em 0;
}

ol li {
    list-style: decimal outside none;
}

ol li li {
    list-style: lower-alpha outside none;
}

ol li li li {
    list-style: lower-roman outside none;
}

ul li {
    list-style: disc outside none;
}

ul li li {
    list-style: circle outside none;
}

/* Images */

img {
    border: 0;
    /* height: auto; */
    /* max-width: 100%; */
}

/* Tables */

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 1em auto;
}

.experience-table tr {
    -moz-transition: 400ms ease;
    -ms-transition: 400ms ease;
    -o-transition: 400ms ease;
    -webkit-transition: 400ms ease;
    transition: 400ms ease;
}

.experience-table tr:hover {
    background: #f9f9f9;
}

td,
th {
    border-top: 2px solid #ebebeb;
    border-bottom: 2px solid #ebebeb;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

/* Forms */

button,
input,
select,
textarea {
    font: inherit;
    font-size: 13px;
    margin: 0;
    vertical-align: baseline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
}

input[type="checkbox"],
input[type="radio"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

.label-text {
    display: block;
    margin: 0.5em 0;
}

.input-text {
    border: 2px solid #ebebeb;
    display: block;
    margin: 0.5em 0;
    padding: 4px;
    width: 400px;
}

.input-text:focus {
    border-color: #ddd;
}

textarea.input-text {
    height: 12em;
}

.input-submit {
    background: #74c8ba url("/static/images/submit.png") 0 0 repeat-x;
    border: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    height: 30px;
    padding: 0 10px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.input-submit:focus,
.input-submit:hover {
    background-color: #90d0c5;
    background-position: 0 -30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.input-submit:active {
    background: #5da095;
    background-position: 0 -60px;
    box-shadow: none;
}

.error {
    color: #c00;
    font-style: italic;
}

span.error {
    display: block;
    font-size: 13px;
    text-align: right;
    width: 412px;
}

/* Common */

.introduction {
    font-size: 16px;
    font-weight: bold;
}

.column {
    float: left;
    width: 50%;
}

.plain {
    margin: 1em 0;
}

.plain li {
    list-style: none;
}

.references {
    text-indent: -2em;
}

.references li {
    list-style: none;
    margin: 0.5em 0;
}

.experience-table td:nth-of-type(1) { width: 140px; }
.experience-table td:nth-of-type(2) { width: 340px; }
.experience-table td:nth-of-type(3) { width:  80px; }

.block-link {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #333;
    display: block;
    margin: 1em auto;
    padding: 1em 0;
    text-align: center;
    -moz-transition: 400ms ease;
    -ms-transition: 400ms ease;
    -o-transition: 400ms ease;
    -webkit-transition: 400ms ease;
    transition: 400ms ease;
}

.block-link:hover {
    background: #e9e9e9;
    text-decoration: none;
}

/* Header */

.header-title {
    text-transform: uppercase;
}

.header-description {
    font-size: 15px;
    margin: 5px 0 0 0;
    text-transform: uppercase;
}

.header-description li {
    display: inline;
    margin-right: 1.5em;
}

/* Sidebar */

.profile {
    text-align: center;
}

.profile-heading {
    font-size: 24px;
    margin: 10px 0 0 0;
}

.profile-subheading {
    font-size: 18px;
    font-weight: normal;
    margin: 0;
}

.membership-caption {
    font-style: italic;
    margin-top: 10px;
}

.cv-icon {
    margin-right: 0.5em;
    vertical-align: text-top;
}

/* Screen */

@media screen {

body {
    background: #eef4f5;
    color: #333;
    min-width: 960px;
}

h1,
h2,
h3 {
    color: #74c8ba;
}

/* Screen | Common */

.wrap {
    margin: 0 auto;
    width: 960px;
}

.clearfix:after {
    clear: both;
    content: " ";
    display: block;
}

/* Screen | Header */

.header {
    background: #7230a9;
    color: #fff;
    height: 120px;
}

.header .wrap {
    position: relative;
    padding: 10px 0;
}

.header a {
    color: #fff;
}

.header-title {
    height: 54px;
    margin: 10px 0 0 18px;
    overflow: hidden;
    position: relative;
    width: 491px;
}

.header-title-logo {
    background: url("/static/images/logo.png") left top no-repeat;
    display: block;
    height: 54px;
    position: absolute;
    left: 0;
    top: 0;
    width: 491px;
}

.header-description {
    margin-left: 20px;
}

.header-email {
    font-size: 18px;
    line-height: 120px;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 0;
}

/* Screen | Navigation */

.navigation {
    background: #333;
    border-bottom: 5px solid #74c8ba;
    color: #fff;
    font-size: 15px;
    height: 35px;
}

.navigation ul {
    margin: 0 20px;
}

.navigation li {
    display: inline;
    margin-right: 40px;
}

.navigation a {
    color: #fff;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    -moz-transition: 200ms ease;
    -ms-transition: 200ms ease;
    -o-transition: 200ms ease;
    -webkit-transition: 200ms ease;
    transition: 200ms ease;
}

.navigation a:hover {
    color: #74c8ba;
    text-decoration: none;
}

.navigation .active a {
    background: url("/static/images/nav.png") center bottom no-repeat;
    color: #74c8ba;
}

/* Screen | Content */

.content {
    background: #fff;
    -moz-box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    display: table;
    position: relative;
    z-index: 20;
}

/* Screen | Content | Main */

.main {
    display: table-cell;
    padding: 10px 30px;
    vertical-align: top;
    width: 600px;
}

/* Screen | Content | Sidebar */

.sidebar {
    background: #f8f8f8;
    display: table-cell;
    padding: 20px;
    vertical-align: top;
    width: 260px;
}

/* Screen | Woodcut */

.woodcut {
    background: #9a72c3;
    margin-top: -30px;
    padding-top: 30px;
    position: relative;
    z-index: 10;
}

.woodcut-image {
    display: block;
    margin: 0 auto;
    padding: 30px;
}

/* Screen | Footer */

.footer {
    border-top: 5px solid #74c8ba;
    background: #333;
    color: #898989;
    font-size: 13px;
    height: 75px;
    line-height: 75px;
}

.footer p {
    margin: 0 20px;
}

.footer-left {
    float: left;
}

.footer-right {
    float: right;
}

.footer a {
    color: #898989;
}

}

/* Print */

@media print {

h1,
h2,
h3,
h4,
h5,
h6 {
    page-break-after: avoid;
}

.no-print {
    display: none;
}

}
