/* Imports */
@import url("reset.css");
@import url("global-forms.css");

/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
	display: block;
}
 
/***** Global *****/
/* Body */
	body {
		background: #E1E5E3;
		color: #084E29;
		font-size: 97.5%; /* Base font size: 14px */
		font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
		line-height: 1.429;
		margin: 0;
		padding: 0;
		text-align: left;
	}

.body {clear: both; margin: 0 auto; width: 1000px;}

header {
    position: relative;
    height: 200px;
    padding: 10px;
}

header img {
    float: left;
    width: 200px;
    margin-right: 30px;
    border-radius: 6px;
}

header a {
    color: #E1E5E3;
    text-decoration: none;
    font-weight: 800;
    font-size: 116%;
    padding: 10px 30px;
    background: #2E764F;
}

#welcome {
    position: relative;
    top: 36px;
    display: inline;
    width: 575px;
}

header nav {
    position: absolute;
    bottom: 18px;
    left: 200px
}
header nav ul {list-style: none;}
header nav li {
    float: left; 
    display: inline; 
     
}
header nav a:hover {
    background: #04A04D;
}
header nav li:first-child a {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
header nav li:last-child a {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

#projects ol {
    list-style: none;
    padding-left: 0;
}

#projects li {
    background: #FFFEFC;
    height: 300px;
    margin: 30px 0px;
    border-radius: 6px;
    position: relative;
}

#projects a {
    color: #084E29;
    text-decoration: none;
}

a#credit {
    text-decoration: underline;
}

p#credit {
    position: absolute;
    bottom: 20px;
}

#projects img {
    height: 260px;
    margin: 20px;
    border-radius: 6px;
    float: left;
}

#projects div {
    float: right;
    width: 290px;
    padding-right: 34px;
}
