body {
	font-family: 'Bree Serif', Georgia, serif;
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

.pure-g [class *= "pure-u"] {
	font-family: 'Bree Serif', Georgia, serif;
}
	
.pure-g > div {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.l-box {
	padding: 1em;
}

.hcenter {
	text-align: center;
}

.venus {
	background-color: #333366;
    color: #ffff33;
}

/*
Add transition to containers so they can push in and out.
*/
#layout,
#menu,
.menu-link {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/*
This is the parent `<div>` that contains the menu and the content area.
*/
#layout {
    position: relative;
    left: 0;
    padding-left: 0;
}

/*
The content `<div>` is where all your content goes.
*/
.content {
    margin: 0 auto;
    padding: 0 2em;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.6em;
	font-size: larger;
}

.header {
	margin: 0;
	font-size: larger;
	text-align: center;
	padding: 2.5em 2em 0;
	border-bottom: 1px solid #eee;
}
    .header h1 {
		margin: 0.2em 0;
		font-size: xx-large;
		font-weight: 300;
    }
     .header h2 {
		font-weight: 300;
		font-size: x-large;
		padding: 0;
		margin-top: 0;
    }

.footer {
	margin: 0;
	font-size: larger;
	text-align: center;
	padding: 2.5em 2em 0;
	border-top: 1px solid #eee;
}
	
.content-subhead {
    margin: 50px 0 20px 0;
    font-weight: 300;
}


/* -- Responsive Styles (Media Queries) ------------------------------------- */

/*
Hides the menu at `48em`, but modify this based on your app's needs.
*/
@media (min-width: 48em) {

    .header,
    .content {
        padding-left: 2em;
        padding-right: 2em;
    }

    #layout {
        left: 0;
    }
}

@media (max-width: 48em) {
    /* Only apply this when the window is small. Otherwise, the following
    case results in extra padding on the left:
        * Make the window small.
        * Tap the menu to trigger the active state.
        * Make the window large again.
    */
    #layout.active {
        position: relative;
    }
}