

/* navigation */

nav#blog-nav {
    background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.7);
    float: left;
    margin: 15px;
    padding: 0px;
    width: 90%;
}

nav#blog-nav h2 {
    margin-left: 20px;
}


/* the latest featured entry */

article.featured-entry {
    position: relative;
    margin-bottom: 50px;
}

article.featured-entry img {
    display: block;
    width: 100%;
    height: auto;
}

/* summary container */

article.featured-entry div {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    background: rgba(255,255,255,0.85);
    padding: 20px;
}

/* anchor styles */

article.featured-entry a p {
    color: #333;
}

article.featured-entry a:hover,
article.featured-entry a:focus {
    text-decoration: none;
}

/* on hover, show a read more link after the h1 */

article.featured-entry a h1:after {
    opacity: 0;
    visibility: hidden;
    content: '... read more \2192';
    font-size: 16px;

    -webkit-transition: margin 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    -moz-transition: margin 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    transition: margin 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

article.featured-entry a:hover h1:after,
article.featured-entry a:focus h1:after {
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
}

/* lists */

ul.latest-entries {
    list-style: none outside none;
    padding: 0;
    margin: 0;
}

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

ul.latest-entries li a {
    display: block;
    padding: 10px;
    background: #f8f8f8;

    -webkit-transition: -webkit-box-shadow 0.3s ease;
    -moz-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
}

ul.latest-entries li a h2 {
    margin-top: 5px;
}

ul.latest-entries li a p {
    color: #333;
}

ul.latest-entries li a:hover,
ul.latest-entries li a:focus {
    text-decoration: none;

    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.35);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.35);
    box-shadow: 0 0 5px rgba(0,0,0,0.35);
}

ul.latest-entries li a h2:after {
    opacity: 0;
    font-weight: 300;
    visibility: hidden;
    content: '... read more \2192';

    -webkit-transition: margin 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    -moz-transition: margin 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    transition: margin 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

ul.latest-entries li a:hover h2:after,
ul.latest-entries li a:focus h2:after {
    opacity: 1;
    visibility: visible;
    margin-left: 5px;
}


/* entry summaries */

article.entry-summary h3 {
    margin-bottom: 5px;
}

article.entry-summary h3 + p {
    margin-top: 0;
    margin-bottom: 0;
}

article.entry-summary img,
article.entry-summary iframe {
    display: block;
    float: left;
    margin: 0px 10px 0 0px;
}

article.entry-summary a {
    display: block;
    position: relative;
    overflow: hidden;
}

article.entry-summary span.pending-draft {
    position: absolute;
    top: 20px;
    right: -70px;
    background: #fff;
    padding: 5px 0;
    font-size: 10px;
    width: 195px;
    text-align: center;

    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.35);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.35);
    box-shadow: 0 0 3px rgba(0,0,0,0.35);

    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}


/* detail of an entry */


