@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic,700,700italic%7COswald:300,400");
@import url("font-awesome.min.css");
@import url("container.css");

/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

body {
    line-height: 1;
    background: #2f353a;
}

ol, ul {
    list-style-position: inside;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none;
}

/* Box Model */

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Basic */

body, input, textarea, select {
    font-family: 'Open Sans', sans-serif;
    line-height: normal;
    color: black;
}

body.is-loading *, input.is-loading *, textarea.is-loading *, select.is-loading * {
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
    -moz-animation: none !important;
    -webkit-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
}

a {
    -moz-transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    color: #43B3E0;
    text-decoration: underline;
}

a:hover {
    color: #43bff0;
}

a img {
    border: 0;
}

b, strong {
    font-weight: 600;
    color: #3e3e3e;
}

i, em {
    font-style: italic;
}

sub {
    position: relative;
    top: 0.5em;
    font-size: 0.8em;
}

sup {
    position: relative;
    top: -0.5em;
    font-size: 0.8em;
}

blockquote {
    border-left: solid 0.75em #eee;
    padding: 1em 0 1em 1.5em;
    font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
    color: #3e3e3e;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-weight: 700;
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

br.clear {
    clear: both;
}

hr {
    border: 0;
    border-top: solid 1px #444;
    border-top-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
    height: 1px;
    margin: 1em 0 1em 0;
}

hr.dotted {
    border-style: dotted;
}

hr.content-end {
    border: thin solid #2f353a;
}

/* Form */

form label {
    color: #3e3e3e;
    font-weight: 700;
    display: block;
    margin: 0 0 0.5em 0;
}

form input[type=text],
form input[type=email],
form input[type=password],
form select,
form textarea {
    -moz-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
    -ms-transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
    transition: background .2s ease-in-out, box-shadow .2s ease-in-out;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0.75em;
    font-size: 1em;
    border-radius: 8px;
    border: solid 1px #ddd;
    background: #fff;
    color: #3e3e3e;
    box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025);
    width: 100%;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form select:focus,
form textarea:focus {
    background: #fafafa;
    box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025), inset 0px 0px 2px 1px #43bff0;
}

form textarea {
    height: 15em;
}

form .formerize-placeholder {
    color: #555 !important;
}

form ::-webkit-input-placeholder {
    color: #555 !important;
}

form :-moz-placeholder {
    color: #555 !important;
}

form ::-moz-placeholder {
    color: #555 !important;
}

form :-ms-input-placeholder {
    color: #555 !important;
}

form ::-moz-focus-inner {
    border: 0;
}

/* Tables */

table {
    width: 100%;
}

table.default {
    width: 100%;
}

table.default tr {
    border-top: solid 1px #eee;
}

table.default tr:first-child {
    border-top: 0;
}

table.default td {
    padding: 0.5em 1em 0.5em 1em;
}

table.default th {
    text-align: left;
    padding: 0.5em 1em 0.5em 1em;
    font-weight: 600;
    margin: 0 0 1em 0;
}

table.default thead {
    background: #4f4f4f;
    color: #fff;
}

/* Section/Article */

section, article {
    margin-bottom: 3em;
}

section > :last-child,
article > :last-child,
section:last-child,
article:last-child {
    margin-bottom: 0;
}

/* Image */

.image {
    display: inline-block;
    position: relative;
}

/* Button */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
    background-image: url("images/bg.png"), -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    background-image: url("images/bg.png"), -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    background-image: url("images/bg.png"), -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    background-image: url("images/bg.png"), linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    -moz-transition: background-color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
    -ms-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    -webkit-appearance: none;
    position: relative;
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    outline: 0;
    cursor: pointer;
    border-radius: 8px;
    text-shadow: -1px -1px 0.5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.75);
    background-color: #43B3E0;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
    background-color: #43bff0;
    color: #fff !important;
}

input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active,
.button:active {
    background-color: #3BA8D3;
    top: 1px;
}

input[type="button"].alt,
input[type="submit"].alt,
input[type="reset"].alt,
button.alt,
.button.alt {
    background-color: #444;
    box-shadow: inset 0px 0px 0px 1px #242424, inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2);
}

input[type="button"].alt:hover,
input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
button.alt:hover,
.button.alt:hover {
    background-color: #4f4f4f;
    color: #fff !important;
}

input[type="button"].alt:active,
input[type="submit"].alt:active,
input[type="reset"].alt:active,
button.alt:active,
.button.alt:active {
    background-color: #3f3f3f;
}

/* List */

ul.default {
    list-style: disc;
    padding-left: 1em;
}

ul.default li {
    padding-left: 0.5em;
}

ul.social {
    cursor: default;
    margin: 0;
}

ul.social li {
    position: relative;
    display: inline-block;
    margin: 0.25em;
    top: 0;
}

ul.social li a {
    -moz-transition: top .2s ease-in-out;
    -webkit-transition: top .2s ease-in-out;
    -ms-transition: top .2s ease-in-out;
    transition: top .2s ease-in-out;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    top: 0;
    position: relative;
}

ul.social li a:before {
    background-image: url("images/bg.png"), -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    background-image: url("images/bg.png"), -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    background-image: url("images/bg.png"), -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    background-image: url("images/bg.png"), linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    -moz-transition: background-color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
    -ms-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    background-color: #444;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px #282828, inset 0 2px 1px 0 rgba(255, 255, 255, 0.1);
    color: #2E2E2E !important;
    display: block;
    font-size: 26px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    outline: 0;
    overflow: hidden;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.1);
    width: 48px;
}

ul.social li a.fa-twitter {
    background-color: #2DAAE4;
}

ul.social li a.fa-facebook {
    background-color: #3C5A98;
}

ul.social li a.fa-dribbble {
    background-color: #C4376B;
}

ul.social li a.fa-linkedin {
    background-color: #006599;
}

ul.social li a.fa-tumblr {
    background-color: #51718A;
}

ul.social li a.fa-google-plus {
    background-color: #DA2713;
}

ul.social li a.fa-github {
    background-color: #FAFAFA;
}

ul.social li a.fa-rss {
    background-color: #F2600B;
}

ul.social li a.fa-instagram {
    background-color: #E0D7C8;
}

ul.social li a.fa-foursquare {
    background-color: #39A3D4;
}

ul.social li a.fa-skype {
    background-color: #10BEF1;
}

ul.social li a.fa-soundcloud {
    background-color: #FE5419;
}

ul.social li a.fa-youtube {
    background-color: #BF2E25;
}

ul.social li a.fa-blogger {
    background-color: #FF6501;
}

ul.social li a.fa-flickr {
    background-color: #0062DB;
}

ul.social li a.fa-vimeo {
    background-color: #4C8AB0;
}

ul.social li a:hover {
    top: -5px;
}

ul.social li a:hover:before {
    background-color: transparent;
}

ul.actions li {
    display: inline-block;
    margin: 0 0 0 1em;
}

ul.actions li:first-child {
    margin-left: 0;
}

ol.default {
    list-style: decimal;
    padding-left: 1.25em;
}

ol.default li {
    padding-left: 0.25em;
}

/* Box */

.box {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Icons */

.icon {
    text-decoration: none;
}

.icon:before {
    display: inline-block;
    font-family: FontAwesome;
    font-size: 1.25em;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon > .label {
    display: none;
}

.icon.featured {
    color: #EA8A95;
    display: block;
    margin: 0 0 1.5em 0;
    cursor: default;
}

.icon.featured:before {
    font-size: 6em;
}

/* Wrappers */

.wrapper {
    box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05), inset 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
}

.wrapper.first {
    box-shadow: none;
}

.wrapper.style1 {
    background: #fff none;
}

.wrapper.style2 {
    background: #fafafa url("images/bg.png");
    text-shadow: 1px 1px 0px #fff;
}

.wrapper.style3 {
    background: #f4f4f4 url("images/bg.png");
    text-shadow: 1px 1px 0px #fff;
}

.wrapper.style-center {
    background: #fff none;
}

/* Nav */
#header {
    border-bottom: 7px solid #7c6f64;
    background-color: #2f353a;
    color: #d0cac5;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 80px;
    width: 100%;
    z-index: 10000;
    cursor: default;
    padding-left: 0.5em;
}

#header p {
    float: left;
    color: #d0cac5;
    font: 300 20px/1.5 Oswald, "Open Sans Condensed", "Arial Narrow", Impact, sans-serif;
    margin: 0;
    text-transform: uppercase;
}

#header p b, #header p strong {
    color: #d0cac5;
    font-weight: 600;
}

#header p a {
    position: relative;
    display: inline-block;
    font-weight: 300;
    text-decoration: none;
    color: #d0cac5;
    vertical-align: middle;
}

#header p a:hover {
    outline: 0;
    color: #dbd7d3;
    text-decoration: none;
}

#header p a:hover b {
    color: #dbd7d3;
    text-decoration: none
}


#nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#nav p img {
    vertical-align: middle;
}

#nav p a {
    vertical-align: middle;
    padding-left: 10px;
}

#nav ul {
    margin-bottom: 0;
}

#nav li {
    display: inline-block;
    padding-right: 2em;
    line-height: 32px;
}

#nav li a {
    outline: 0;
    position: relative;
    display: block;
    color: #d0cac5;
    text-decoration: none;
}

#nav li a:hover {
    outline: 0;
    color: #dbd7d3;
}

#nav a.active:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -0.6em;
    left: 50%;
    margin-left: -0.75em;
    border-left: solid 0.75em transparent;
    border-right: solid 0.75em transparent;
    border-top: solid 0.6em #282828;
}

#used-tecnologies ul {
    list-style-type: square;
    padding-left: 4em;
}

#used-tecnologies li {
    padding: 0;
}

#portfolio table {
    padding: 10px;
    display: table;
    width: 100%;
}

#portfolio tr {
    border: 2px solid;
}

#portfolio td {
    border: 1px solid;
    padding: 0.5em;
}

#portfolio hr {
    border-style: dotted;
}

#portfolio ul {
    list-style-type: disc;
    padding-left: 1em;
}

#footer {
    border-top: 10px solid #464f56;
    color: #5f6264;
    font: 300 20px/1.5 Oswald, "Open Sans Condensed", "Arial Narrow", Impact, sans-serif;
    padding: 15px 0 10px 0;
    text-align: center;
    background: #2f353a;
    clear: both;
    font-size: medium;
}

#footer a {
    color: #5f6264;
    text-decoration: none;
}

#footer a:hover {
    color: gray;
    text-decoration: none;
}

#footer a:active {
    color: #5d5f60;
    text-decoration: none;
}

#footer img {
    padding: 10px;
}

#footer .ssg34 {
    text-decoration: none;
    text-transform: none;
}

#footer .ssg34 a:hover {
    color: #F90;
}

/* Articles */
#about .image {
    float: left;
    clear: none;
    margin: 0 1em 0 0;
}

.about_image {
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	-ms-border-radius: 0.3em;
	-o-border-radius: 0.3em;
	border-radius: 0.3em;
	-webkit-box-shadow: rgba(0,0,0,0.15) 0 1px 4px;
	-moz-box-shadow: rgba(0,0,0,0.15) 0 1px 4px;
	box-shadow: rgba(0,0,0,0.15) 0 1px 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: #fff 0.1em solid;
}

#about p a {
    color: inherit;
}

/* Copyright */

#copyright {
    color: #666;
}

#copyright a {
    -moz-transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    color: inherit;
}

#copyright a:hover {
    color: #777;
}

.email-box {
	height: 2em;
}

.email-box span {
	color: gray;
	cursor: pointer;
}

.email-box a {
	color: gray;
}

.row p {
    text-align: justify;
}

.scroll-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background: url('images/top.png') no-repeat;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    cursor: pointer;
}

.loading {
    z-index: 10000;
    background: url('images/loading.gif') 50% 50% no-repeat;
}

.left {
    float: left;
}
.right {
    float: right;
}
.clear {
    clear: both;
}

.right-panel {
    float: right;
    display:inline-block;
}

.content-panel {
    float: left;
    display:inline-block;
}

a.category-title {
    color: #3e3e3e;
    text-decoration: none;
}

a.category-title:hover {
    color: #C4376B;
}

.content-top-head {
    color: #959595;
    font-size: small;
    display: block;
}

a.content-top-links {
    color: #959595;
    text-decoration: none;
}

a.content-top-links:hover {
    color: #C4376B;
}

a.content-excerpt {
    color: #959595;
    font-size: small;
    display: block;
    text-decoration: none;
}

a.content-headline{
    color: #3e3e3e;
    text-decoration: none;
    font-weight: bold;
}

a.content-headline:hover {
    color: #C4376B;
    text-decoration: none;
}

table.portfolio td{
    vertical-align:top;
}

table.portfolio td:first-child{
    width:100px;
    font-weight: bold;
}

img.content {
	object-fit: fill;
	width: 50%;
}

/* Desktop */
@media screen and (min-width: 737px) {

    /* Basic */
    body, input, textarea, select {
        font-size: 13pt;
    }
/* 
    h1 {
        font-size: 1.5em;
        letter-spacing: -0.025em;
    }

    h2 {
        font-size: 1.5em;
        letter-spacing: -0.015em;
    }

    h3 {
        font-size: 1.5em;
        letter-spacing: -0.015em;
    }
 */
    h1, h2, h3, h4, h5, h6 {
        margin: 0 0 0.75em 0;
    }

    header {
        margin: 0 0 3em 0;
    }

    header > p {
        font-size: 1.25em;
        margin: 0;
    }

    footer {
        margin: 3em 0 0 0;
    }

    footer > p {
        font-size: 1.25em;
    }

    /* Form */
    form input[type="button"],
    form input[type="submit"],
    form input[type="reset"],
    form button,
    form .button {
        margin: 0 0.5em 0 0.5em;
    }

    /* Button */
    input[type="button"],
    input[type="submit"],
    input[type="reset"],
    button,
    .button {
        padding: 1em 2.35em 1em 2.35em;
        font-size: 1.1em;
    }

    input[type="button"].big,
    input[type="submit"].big,
    input[type="reset"].big,
    button.big,
    .button.big {
        font-size: 1.5em;
        letter-spacing: -0.025em;
    }

    /* Box */
    .box {
        padding: 2em;
    }

    .box.style1 {
        padding: 3em 2em 3.5em 2em;
    }

    .box.style1 h3 {
        margin-bottom: 0.5em;
    }

    .box.style2 h3 {
        margin-bottom: 0.25em;
    }

    .box.style2 .image {
        position: relative;
        left: 2em;
        top: 2em;
        margin: -4em 0 4em -4em;
        width: auto;
    }

    /* Wrappers */
    .wrapper {
        padding: 8em 1em 8em 1em;
    }

    .wrapper.first {
        padding-top: 12em;
    }

    .wrapper.style-center {
        padding: 8em 0 8em 0;
        text-align: center;
    }

    #header {
        border-bottom-width: 7px;
        height: 80px;
    }

    /* Nav */
    #nav a {
        -moz-transition: background-color .2s ease-in-out;
        -webkit-transition: background-color .2s ease-in-out;
        -ms-transition: background-color .2s ease-in-out;
        transition: background-color .2s ease-in-out;
        font-weight: 600;
        border-radius: 8px;
        color: #fff;
    }

    #nav a:hover {
        background: #383838;
    }

    #nav a:active {
        background: #484848;
    }

    #about h1 {
        margin-top: 0.35em;
    }

    #contact footer {
        font-size: 0.9em;
    }

    /* Copyright */
    #copyright {
        font-size: 1em;
        line-height: 1em;
    }

    #copyright li {
        display: inline-block;
        border-left: solid 1px rgba(0, 0, 0, 0.5);
        box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1);
        padding: 0 0 0 1em;
        margin: 0 0 0 1em;
    }

    #copyright li:first-child {
        border: 0;
        box-shadow: none;
        padding-left: 0;
        margin-left: 0;
    }

}

/* Tablet */
@media screen and (min-width: 737px) and (max-width: 1200px) {

    /* Basic */
    body {
        min-width: 960px;
        font-size: 11pt;
    }

    input, textarea, select {
        font-size: 11pt;
    }

    header {
        margin: 0 0 4em 0;
    }

    /* Wrappers */
    .wrapper {
        padding: 5em 1em 5em 1em;
    }

    .wrapper.first {
        padding-top: 9em;
    }

    .wrapper.style-center .row-special {
        margin: 2em 0 0 0;
        padding: 2em 0 2em 0;
    }

    #header {
        border-bottom-width: 5px;
        height: 60px;
    }

    .scroll-top {
        bottom: 10px;
        right: 10px;
    }

}

/* Mobile */
@media screen and (max-width: 736px) {

    body, input, textarea, select {
        line-height: 1.75em;
        font-size: 10pt;
        letter-spacing: 0;
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 1.25em;
        margin: 0 0 0.4em 0;
    }

    header {
        margin: 0 0 2em 0;
    }

    header > p {
        font-size: 1.25em;
    }

    footer {
        margin: 2.5em 0 0 0;
    }

    footer > p {
        font-size: 1.25em;
    }

    hr {
        margin: 1.5em 0 2em 0;
    }

    /* Section/Article */
    section, article {
        clear: both;
    }

    /* Button */
    input[type="button"],
    input[type="submit"],
    input[type="reset"],
    button,
    .button {
        text-align: center;
        font-size: 1.2em;
        width: 100%;
        padding: 1em 0 1em 0;
    }

    /* List */
    ul.social {
        padding: 1em 0.5em 0 0.5em;
    }

    ul.social li {
        margin: 0.5em 0.5em 0.5em 0.5em;
    }

    ul.social li a {
        top: 0 !important;
    }

    ul.social li a:before {
        background-color: transparent !important;
    }

    ul.actions {
        margin: 0;
    }

    ul.actions li {
        display: block;
        margin: 10px 0 0 0;
    }

    ul.actions li:first-child {
        margin-top: 0;
    }

    /* Box */
    .box {
        padding: 30px 20px 30px 20px;
        margin: 0 0 20px 0 !important;
    }

    .box h3 {
        margin-bottom: 0.25em;
    }

    .box .image.centered {
        margin-bottom: 1em;
    }

    .box .image.featured {
        position: relative;
        left: 20px;
        top: 20px;
        margin: -50px 0 50px -40px;
        width: auto;
    }

    /* Wrappers */
    .wrapper {
        padding: 5em 15px 5em 15px;
    }

    .wrapper.first {
        padding-top: 5em;
    }

    /* Nav */
    #nav li {
        padding-right: 1.5em;
    }

    #contact footer {
        margin: 0;
    }

    /* Copyright */
    #copyright {
        font-size: 1em;
        margin: 0;
    }

    #copyright li {
        display: block;
    }

    #header {
        border-bottom-width: 3px;
        height: 40px;
    }

    #nav p img {
        width: 80%;
    }

    #nav p a {
        display: none;
    }


    #footer {
        border-top: 5px;
        padding: 14px 0 20px 0;
        font-size: 1.2em;
    }

    .scroll-top {
        width: 0;
        height: 0;
    }

    .right-panel {
        display: none;
    }
	
	img.content {
		width: 100%;
	}
}
