/*
   Mid-term Project for Info 1695--Web Design 1
   Author: Karie Funk
   Stylesheet for index.htm
*/



header, section, footer, aside, nav, article, figure, figcaption {
	display: block;
	background-color: #CED1A1;
	
}


/* Body style */

body {
	margin: 0px auto;
	width: 1000px;
	background-color: black;
}

/* Header styles */

header{
  
   background-image: url(header.gif); 
   background-position: 50% 50%;
   background-repeat: repeat-x;
   height: 180px;
   
   
}

/* Horizontal Navigation List styles */
nav.horizontal {
	padding-top: 5px;
	padding-bottom: 10px;
    height: 50px;
    width: 100%;
    background-color: white;
	border-bottom: 1px solid black;
}

nav.horizontal li {
   
    font-size: 16px;
    height: 50px;
    line-height: 30px;
    width: 180px;
    display: block;
    float: left;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
	font-family: helvetica, sans-serif;
	
}

nav.horizontal li a {
    display: block;
    background-color: black;
    color: white;
    text-decoration: none;
    
     border-radius: 30px/25px;
     -webkit-border-radius: 30px/25px;
	 -moz-border-radius: 30px/25px;
   
}

nav.horizontal li a:hover {
    color: white;
    background-color: #722540;
}

article {
	
	overflow: auto;
	width: 100%;
}

article.about h2 {
	margin-top: 10px;
	font-family: helvetica, sans-serif;
	color: white;
	letter-spacing: 1px;
	
}

article p{
	font-family: helvetica, geneva, sans-serif;
	padding-right: 15px;
}

figure {
	float: left;
	margin-left: 22px;
	margin-right: 25px;
}

figure img {
	float: left;
	width: 250px;
	height: 250px;
	
	
	border: 7px solid black;
	border-radius: 360%;
	-webkit-border-radius: 360%;
	-moz-border-radius: 360%;
	

	
}

article.info {
	float: left;
	width: 720px;
	height: 460px;
	text-align: left;
	
	
	
	
}

article.info h2{
	
	color: white;
	font-family: helvetica, sans-serif;
	font-size: 160%;
	padding-left: 25px;
	letter-spacing: 1px;
}

article.info p {
	color: black;
	padding-left: 25px;
	font-family: helvetica, geneva, sans-serif;
}




aside h2 {
	
	font-family: helvetica, sans-serif;
	color: black;
	font-size: 160%;
	text-align: center;
	background-color: #CED1A1;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 25px;
}


nav.vertical {
	text-align: center;
	float: right;
	width: 280px;
	height: 409px;
}


nav.vertical li {
   
    font-size: 18px;
    height: 100px;
    line-height: 100px;
	padding-top: 15px;
    width: 100px;
    display: block;
    margin-left: 55px;
    margin-right: 25px;
    text-align: center;
	font-family: helvetica, sans-serif;

	
	
}

nav.vertical li a {
    display: block;
    background-color: black;
    color: white;
    
    text-decoration: none;
    
     border-radius: 360%;
    -webkit-border-radius: 360px;
    -moz-border-radius: 360%;
    
}

nav.vertical li a:hover {
    color: white;
    background-color: #722540;
}


img.first {
	float: left;
	width: 205px;
	height: 180px;
	margin-left: 25px;
	margin-top: 23px;
	border: 3px solid black;
	
	
	
}

img.second {
	float: left;
	width: 205px;
	height: 180px;
	margin-top: 23px;
	margin-left: 25px;
	border: 3px solid black;
	
}

img.third {
	float: left;
	width: 205px;
	height: 180px;
	margin-top: 23px;
	margin-left: 25px;
	border: 3px solid black;
	
}


footer address {
   clear: right;
   border-top: 1px solid black;
   text-align: center;
   font-style: normal;
   font-family: sans-serif;
   padding-top: 5px;
}

