/* ---------------------------------------------------------------------
Original Author: Jansen Price
Contributors: N/A

Target Browsers: All
Media Type: Screen, Projection
Width: All Sizes
------------------------------------------------------------------------ */

/* ---------------------------------------------------------------------
RESET CSS (thanks Eric Meyer) {{{
------------------------------------------------------------------------ */
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-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

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

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

:focus {
    outline: 0;
}

/* Always show a vertical scrollbar, even when there is no scrolling */
html {
    overflow-y: scroll;
}

/* Don't let iOS and WinMobile mobile-optimize text for you */
/* Turn this rule on for mobile sites or sites using mediaqueries */
/*
html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}
*/
/* }}} */

/* ---------------------------------------------------------------------
 HTML5 Block / Inline Block declarations {{{
------------------------------------------------------------------------ */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

audio, canvas, video {
    display: inline-block;
}
/* }}} */

/* ---------------------------------------------------------------------
 Form Reset Styles {{{
------------------------------------------------------------------------ */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

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

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

::-moz-focus-inner {
    border: 0;
    padding: 0;
}
/* }}} */

/* ---------------------------------------------------------------------
 Base Styles
------------------------------------------------------------------------ */
html {
    font-family: "Noto Serif", Helvetica, sans-serif; 
}

body {
    background: transparent url('../images/bg_contain.png') repeat;
    font-size: 18px;
}

em {
    font-style: italic;
}

/* ---------------------------------------------------------------------
 Vertical Rhythm
------------------------------------------------------------------------ */

.vr{margin-bottom:1rem}

.vr_x2{margin-bottom:2rem}
.vr_x3{margin-bottom:3rem}
.vr_x4{margin-bottom:4rem}

/* ---------------------------------------------------------------------
 Blocks
------------------------------------------------------------------------ */
.blocks {
    margin: 0;
    font-size: 0;
}

.blocks>* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    padding: 0;
}

/* ---------------------------------------------------------------------
 Page
------------------------------------------------------------------------ */
.page {
    background-color: #ffffff;
    box-shadow: 0 3px 2px 0 rgba(45,45,45,0.15);
    margin-bottom: 20px;
}

.page-content {
    padding: 30px;
}

/* ---------------------------------------------------------------------
 Tier
------------------------------------------------------------------------ */
.tier {
}

.tier_stripe {
    background-color: rgba(196, 209, 135, 0.66);
    border-boxttom: 2px solid #ffffff;
}

.tier_hide {
    display: none;
    visibility: hidden;
}

/* ---------------------------------------------------------------------
 Wrapper
------------------------------------------------------------------------ */
.wrapper {
    max-width: 900px;
    min-width: 200px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------
 Masthead
------------------------------------------------------------------------ */
.masthead {
    padding: 16px;
    overflow: hidden;
}

.masthead-img {
    display: block;
    float: left;
    height: 50px;
}

.masthead-link {
    color: #2d5478;
    font-family: "Questrial", sans-serif;
    font-size: 3rem;
    text-decoration: none;
}

.masthead-siteName {
    overflow: hidden;
    padding-top: 0;
    padding-left: 26px;
}

/* ---------------------------------------------------------------------
 Nav
------------------------------------------------------------------------ */
.nav {
    margin-bottom: 20px;
}

.nav-list {
    list-style: none;
}

.nav-list > li {
    display: inline-block;
}

.nav-list > li + li {
    padding-left: 8px;
}

.nav-list a {
    font-size: 1rem;
    text-decoration: none;
    color: #2d5478;
    padding: 4px 46px;
    background-color: #ffffff;
}

.nav-list > li.active a {
    background: #2d5478;
    color: #ffffff;
}

.nav-list a:hover {
    background-color: #f5f5f5;
}

/* ---------------------------------------------------------------------
 Teaser
------------------------------------------------------------------------ */
.teaser-media {
    overflow: hidden;
}

.teaser-media_imgWrap {
    max-height: 230px;
}

.teaser-media_catWrap {
    height: 230px;
}

.teaser-media_vr {
    margin-bottom: 20px;
}

.teaser-media img {
    display: block;
    width: 100%;
    height: auto;
}

.teaser-media a {
    display: block;
    height: 100%;
}

.teaser-media_sm {
    height: 100px;
}

.teaser-media-category {
    height: 100%;
}

.teaser-media-category_tech {
    background: transparent url('../images/cat-tech.jpg') no-repeat;
}

.teaser-media-category_code {
    background: transparent url('../images/cat-code.jpg') no-repeat;
}

.teaser-media-category_art {
    background: transparent url('../images/cat-art.jpg') no-repeat;
}

.teaser-media-category_fun {
    background: transparent url('../images/cat-fun.jpg') no-repeat;
}

/* ---------------------------------------------------------------------
 Entry
------------------------------------------------------------------------ */
.entry {
    font-size: 1rem;
}

.entry_inset {
    padding: 0 0 0 30px;
}

.blocks_entries {
    margin-left: -30px;
    padding: 30px;
}

.entry-hdg {
}

.entry-date {
    color: #a9a9a9;
    margin-bottom: 1rem;
}

.entry-category,
.entry-author {
    color: #a9a9a9;
}

.entry a {
    text-decoration: none;
    color: #2d5478;
}

.entry a:hover {
    text-decoration: underline;
}

.entries-list {
    list-style-type: disc;
    margin-left: 20px;
}

.entries-list li {
    margin-bottom: 10px;
}

.entries-list a:visited,
.entries-list a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
}

.entries-list a:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------------------------
 TileImg
------------------------------------------------------------------------ */

.tileImg {
    width: 5rem;
    height: 5rem;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* ---------------------------------------------------------------------
 Footer
------------------------------------------------------------------------ */
.footer {
    margin-top: 10px;
    padding-bottom: 20px;
}

.footer-message {
    text-align: center;
}

.footer-message small {
    color: #666666;
    font-size: 11px;
}

/* ---------------------------------------------------------------------
 Panel
------------------------------------------------------------------------ */

.panel {
    background: #ffffff url('../images/bg_panel1.png') bottom left no-repeat;
    color: #2d5478;
    border: 1px solid #9999aa;
    margin-bottom: 1rem;
}

.panel_inset {
    padding: 2px;
}

.panel-hdg {
    background: #2d5478 url('../images/bg_panel1-hed.png') bottom right no-repeat;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding: 8px;
}

.panel-bd {
    padding: 8px;
    font-size: 0.9rem;
}

.panel-bd > * {
    margin-bottom: 8px;
    line-height:1.4;
}

/* ---------------------------------------------------------------------
User Content {{{
Original Author: Anthony Ticknor
Contributors: N/A

Quarantine styles applied to areas where content is dynamic and
generated by a content editor / CMS. 

Usage
<div class="user-content">
...
</div>
------------------------------------------------------------------------ */

/* ---------------------------------------------------------------------
user-content default
------------------------------------------------------------------------ */
.user-content {
    font: normal 18px/1.6 "Noto Serif", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #333333;
}

/* ---------------------------------------------------------------------
user-content paragraphs
------------------------------------------------------------------------ */
.user-content p {
    margin: 0 0 1.2rem 0;
}

.user-content p:first-of-type {
    font-size: 1.1rem;
}

/* ---------------------------------------------------------------------
user-content headings
------------------------------------------------------------------------ */
.user-content h1 {
    font-size: 24px;
    font-family: "Questrial", sans-serif;
    line-height: 1.2;
    font-weight: bold;
    color: #849147;
    margin: 0 0 12px 0;
}

.user-content h2 {
    font-size: 21px;
    font-family: "Questrial", sans-serif;
    line-height: 1.2;
    font-weight: bold;
    color: #2d5478;
    margin: 0 0 12px 0;
}

.user-content h3 {
    font-size: 18px;
    font-family: "Questrial", sans-serif;
    line-height: 1.2;
    font-weight: bold;
    color: #2d5478;
    margin: 0 0 12px 0;
}

.user-content h4 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: #0066ff;
    margin: 0 0 12px 0;
}

.user-content h5 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    color: #0066ff;
    margin: 0 0 12px 0;
}

.user-content h6 {
    font-size: 12px;
    line-height: 1.2;
    font-weight: bold;
    color: #0066ff;
    margin: 0 0 12px 0;
}

/* ---------------------------------------------------------------------
user-content sections
------------------------------------------------------------------------ */
.user-content blockquote {
    margin: 0 24px 12px 24px;
    padding: 12px;
    background: #eeeeee;
    font-style: italic;
}

.user-content address {
    margin: 0 0 12px 0;
    font-style: italic;
}

/* ---------------------------------------------------------------------
user-content anchors
------------------------------------------------------------------------ */
.user-content a:link {
    color: #0066ff;
}

.user-content a:visited {
}

.user-content a:focus,
.user-content a:hover {
    color: #0066aa;
}

.user-content a:active {

}

/* ---------------------------------------------------------------------
user-content text formatting
------------------------------------------------------------------------ */
.user-content strong,
.user-content b {
    font-weight: bold;
}

.user-content em,
.user-content i {
    font-style: italic;
}

.user-content del,
.user-content strike,
.user-content s {
    text-decoration: line-through;
}

.user-content u,
.user-content ins {
    text-decoration: underline;
}

.user-content sup {
    vertical-align: super;
    font-size: smaller;
}

.user-content sub {
    vertical-align: sub;
    font-size: smaller;
}

.user-content big {
    font-size: larger;
}

.user-content small {
    font-size: smaller;
}

.user-content abbr,
.user-content acronym {
    border-bottom: dotted 1px;
}

.user-content cite,
.user-content dfn {
    font-style: italic;
}

.user-content q {
    font-style: italic;
}

.user-content q::before {
    content: open-quote;
}

.user-content q::after  {
    content: close-quote;
}

.user-content q:lang(en) {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

.user-content bdo {
    direction: rtl;
}

.user-content blink {
    text-decoration: blink;
}

/* ---------------------------------------------------------------------
user-content computer output
------------------------------------------------------------------------ */
.user-content pre {
    margin: 0 0 12px 0;
    font-family: monospace;
    white-space: normal;
    overflow-x: scroll;
}

.user-content code,
.user-content samp,
.user-content tt,
.user-content kbd {
    font-family: monospace;
    background-color: #dcdcdc;
    padding: 1px 2px;
}

.user-content pre code {
    background-color: transparent;
}

.user-content var {
    font-style: italic;
}

/* ---------------------------------------------------------------------
user-content lists
------------------------------------------------------------------------ */
.user-content ul,
.user-content ol,
.user-content dl {
    margin-top: 0;
    margin-bottom: 12px;
}

.user-content ul {
    list-style-type: disc;
    margin: 0 0 12px 0;
}

.user-content ol {
    list-style-type: decimal;
    margin: 0 0 12px 0;
}

.user-content dt {
    font-weight: bold;
}

.user-content li,
.user-content dd {
    margin: 0 0 0 24px;
}

/* nested lists have no top/bottom margins */
.user-content ul ul,
.user-content ul ol,
.user-content ul dl,
.user-content ol ul,
.user-content ol ol,
.user-content ol dl,
.user-content dl ul,
.user-content dl ol,
.user-content dl dl {
    margin-top: 0;
    margin-bottom: 0;
}

/* 2 deep unordered lists use a circle */
.user-content ol ul,
.user-content ul ul {
    list-style-type: circle;
}

/* 3 deep (or more) unordered lists use a square */
.user-content ol ol ul,
.user-content ol ul ul, 
.user-content ul ol ul,
.user-content ul ul ul {
    list-style-type: square;
}

/* ---------------------------------------------------------------------
user-content tables
------------------------------------------------------------------------ */
.user-content table {
    margin: 0 0 20px 0;
    width: 100% !important;
    border-spacing: 2px;
    border-collapse: separate;
}

.user-content colgroup {
    
}

.user-content col {
    
}

.user-content caption {
    font-size: smaller;
}

.user-content tr {
    vertical-align: middle;
}

.user-content tbody {
    vertical-align: middle;
}

.user-content thead {
    vertical-align: middle;
}

.user-content tfoot {
    vertical-align: middle;
}

.user-content td {
    vertical-align: inherit;
    text-align: inherit;
    padding: 2px 4px;
}

.user-content th {
    vertical-align: inherit;
    text-align: inherit; 
    font-weight: bold;
    padding: 2px 4px;
    background-color: #666666;
    color: #ffffff;
}

.user-content tr:nth-child(even) td {
    background-color: #cccccc;
}

/* ---------------------------------------------------------------------
user-content horizontal rule
------------------------------------------------------------------------ */
.user-content hr {
    margin: 0 0 12px 0;
    background: #666666;
    color: #666666;
    height: 1px;
    border: none;
    line-height: 1px;
    font-size: 1px;
}

/* ---------------------------------------------------------------------
user-content media
------------------------------------------------------------------------ */
.user-content img,
.user-content video,
.user-content audio {
    max-width: 100% !important;
}

/* ---------------------------------------------------------------------
user-content undefined elements
------------------------------------------------------------------------ */
.user-content html,
.user-content head,
.user-content body,
.user-content title,
.user-content meta,
.user-content link,
.user-content style,
.user-content script,
.user-content noscript,
.user-content base,
.user-content basefont,
.user-content div,
.user-content span,
.user-content header,
.user-content hgroup,
.user-content footer,
.user-content main,
.user-content section,
.user-content article,
.user-content aside,
.user-content nav,
.user-content figcaption,
.user-content figure,
.user-content menu,
.user-content command,
.user-content summary,
.user-content details,
.user-content canvas
.user-content applet,
.user-content object,
.user-content embed,
.user-content source,
.user-content param,
.user-content track,
.user-content map,
.user-content area
.user-content iframe,
.user-content frame,
.user-content frameset,
.user-content noframes,
.user-content fieldset,
.user-content legend,
.user-content form,
.user-content label,
.user-content isindex,
.user-content input,
.user-content select,
.user-content option,
.user-content optgroup,
.user-content textarea,
.user-content button,
.user-content datalist,
.user-content meter,
.user-content progress,
.user-content output,
.user-content keygen,
.user-content ruby,
.user-content rt,
.user-content rp,
.user-content mark,
.user-content time,
.user-content wbr,
.user-content br,
.user-content dir,
.user-content font,
.user-content center {
    /* nil */
}
/* }}} */

.user-content h2 {
    margin-top: 2rem;
}

.user-content pre {
    background-color: #f5f5f5;
    padding: 20px;
    white-space: pre;
    font-size: 1rem;
}

.portfolio .entry {
    padding-bottom: 40px;
}

.portfolio .entry .img {
    display: block;
}

.portfolio .entry .image {
    display: block;
    padding: 4px;
    border: 1px solid #eee;
    border-radius: 3px;
}

.portfolio .entry a {
    color: #777;
}

.image .notes {
    font-size: 0.9rem;
}
