@charset "UTF-8";
/* CSS Document */

body {
margin : 0px;
padding : 0px;
font-family : Helvetica, "Helvetica", sansserif;
font-size : 1.2em;
height : 100%;
width : 100%;


background-color : #ffffff;
}

#wrapper {
     width: 1115px;
     margin: 0 auto;
}

#header {
    background-image : url(images/argyleIndex.jpg);
	background-repeat : no-repeat;
	background-position : top;
	margin-top: -100px; 
	margin-left: 1%;
	margin-right:15%;
	width: 1115px; 
	height: 380px; 
	float: left;

}

#avatar {
    background-image : url(images/avatar.png); 
	background-repeat : no-repeat;
	background-position : top;
    margin-top: -150px;
	height: 305px;
	width:305px; 
	margin-left: 1%;  
	float: left;

}

#container {
	background-color:#efefef;
	color : #000000;
	width: 1115px;
	height:100%;
	margin-top: -100px;
	margin-left: 1%;
	margin-right:15%;
	float: left;
	}

#navigation {
	
	width: 1115px;
	margin-left: 1%;
	margin-right:15%;
	}

p { 
	margin-top: 10px; 
	text-align: justify;
	padding-left:10px;
	padding-right:10px;
	}

h1 { 
	margin-top: 10px; 
	padding-left:10px;
	padding-right:10px;
	}	
	
	
h3 { 
	font: italic normal 1.4em georgia, sans-serif;
	letter-spacing: 1px; 
	margin-bottom: 0; 
	color: #7D775C;
	}
a:link { 
	font-weight: bold; 
	text-decoration: none; 
	color: #000099;
	}
a:visited { 
	font-weight: bold; 
	text-decoration: none; 
	color: #000000;
	}
a:hover, a:active { 
	text-decoration: underline; 
	color: #009933;
	}


/* site navigation css */

nav {
	margin: 100px auto; 
	text-align: center;
}

nav ul ul {
	display: none;
}

	nav ul li:hover > ul {
		display: block;
	}


nav ul {
	background: #efefef; 
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 20px;
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}

	nav ul li {
		float: left;
	}
		nav ul li:hover {
			background: #4b545f;
			background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
			background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
			background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
		}
			nav ul li:hover a {
				color: #fff;
			}
		
		nav ul li a {
			display: block; padding: 25px 40px;
			color: #757575; text-decoration: none;
		}
			
		
	nav ul ul {
		background: #5f6975; border-radius: 0px; padding: 0;
		position: absolute; top: 100%;
	}
		nav ul ul li {
			float: none; 
			border-top: 1px solid #6b727c;
			border-bottom: 1px solid #575f6a; position: relative;
		}
			nav ul ul li a {
				padding: 15px 40px;
				color: #fff;
			}	
				nav ul ul li a:hover {
					background: #4b545f;
				}
		
	nav ul ul ul {
		position: absolute; left: 100%; top:0;
	}
		