html
{
    color: #444;
}

a
{
    color: #f68a1d; /* Orange. */
}

a:hover
{
    text-decoration: none;
}

h1, h2, h3, h4
{
    font-family: 'Roboto', sans-serif;
    margin: 0 0 .25em 0;
    color: #1a5371;
}

h2
{
    color: #000;
    font-size: 1.3em;
}

.error
{
    font-weight: bold;
    color: red;
}

.well
{
/*
    background: #e5eff4;
    padding: 1.5em 1.5em .1em 1.5em;
    box-shadow: inset 0 3px 10px #a9bec9;
    border-radius: 3px;
    margin: 0 0 2em 0;
    clear: both;
*/
    background: #f5f5f5;
    padding: 1.5em 1.5em .1em 1.5em;
    box-shadow: inset 0 1px 10px #d5d5d5;
    border-radius: 3px;
    margin: 0 0 2em 0;
    clear: both;
    overflow: hidden;
}

p, ul, ol
{
    margin: 0 0 1.5em 0;
}

header
{
    min-height: 80px;
    background: #dadada url(../img/header-background.png) top left repeat-x;
}

header h1 a
{
    display: block;
    width: 229px;
    height: 42px;
    background: url(../img/premeditated-culture-logo.png);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 22px;
}

header nav ul
{
    margin: 0;
    padding: 0 2px 0 0;
    background: url(../img/nav-ul-background.png) top right no-repeat;
}

header nav ul li
{
    float: left;
}

header nav li a
{
    display: block;
    height: 47px;
    padding-top: 33px;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: uppercase;
    font-size: 13px;
    color: #616161;
    background: url(../img/nav-li-background.png) top left no-repeat;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

header nav li a.active,
header nav li a:hover
{
    color: #f68a1d; /* Orange. */
    background: url(../img/nav-li-background-active.png) top left no-repeat;
}

@media only screen
and (max-width : 600px)
{
    header nav li a
    {
        background: none;
        padding: 10px 10px 0 10px;
        height: 40px;
    }

    header nav li a.active,
    header nav li a:hover
    {
        background: none;
    }
}

.banner
{
    color: #fff;
    min-height: 324px;
    background: url(../img/banner-background.jpg) top left repeat-x;
/*
    margin-bottom: 30px;
*/
}

.banner img
{
    min-width: 275px;
}

.banner h1
{
    color: #fff;
    margin-top: 64px;
    font-size: 60px;
    text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.75);
}

.banner h2
{
    color: #fff;
    opacity: 0.8;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.75);
}

@media only screen
and (max-width : 600px)
{
    .banner h1
        {
        color: #000;
        font-size: 40px;
        margin-top: 0;
        text-shadow: none;
        text-align: center;
    }

    .banner h2
        {
        color: #555;
        font-size: 20px;
        text-shadow: none;
        text-align: center;
        margin-bottom: 40px;
    }
}

.content
{
    clear: both;
    margin-bottom: 50px;
}

.big-icon
{
    box-shadow: inset 0 10px 10px #0f374a;
    background: #1d4f6a;
    border-radius: 100%;
    border: 11px solid #e0e0e0;
    max-height: 160px;
    margin-bottom: 25px;
}

section
{
    margin-bottom: 10px;
}

hr
{
    border: 0;
    background: url(../img/horizontal-divider.png) top center no-repeat;
    margin-bottom: 30px;
}

a.button
{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding-top: 9px;
    text-align: center;
    display: inline-block;
    background: url(../img/button.png) top left no-repeat;
    width: 167px;
    height: 28px;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

a.button:hover
{
    background: url(../img/button-active.png) top left no-repeat;
}

a.button strong
{
    color: #f68a1d; /* Orange. */
}

/* Preload images. */
body:after
{
    display: none;
    content: url(../img/button-active.png);
}

/*********************************************************************
    Syndicated Blog
*********************************************************************/

.recent-posts
{
    text-align: left;
}

.recent-posts .content
{
    margin: 0;
}

.recent-posts .post
{
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1em;
    padding: 1em 1em 0 1em;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.4s;
}

.recent-posts .post:hover
{
    border: 1px solid #aaa;
}

.recent-posts h1
{
    text-align: center;
    font-size: 25px;
/*
    border-bottom: 1px solid #e0e0e0;
*/
    margin-bottom: 20px;
}

.recent-posts h2 a
{
    font-size: 18px;
    text-decoration: none;
}

.recent-posts h2 a:hover
{
    text-decoration: underline;
}

.recent-posts .date
{
    font-weight: bold;
}

.recent-posts a.more
{
    color: #1a5371;
}

.href
{
    cursor: pointer;
}

/* Margin, so focus outline isn't cut off. */
form
{
    margin-bottom: 5px;
}

form input,
form select,
form textarea,
form button
{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #bbb;
}

form button,
form input[type=submit]
{
    background: #ddd;
    transition: background 0.4s;
}

form button:hover,
form input[type=submit]:hover
{
    background: #fff;
}
