@charset "UTF-8";

/* Created with references from "Head First HTML" book, in class examples and personal notes from class
Summer 2012 AiCaLA HTML & CSS - Instructor: Pete Markiewic */


/* CSS Style */

#logo {
		padding-right: 20px;
		position:relative;
		float:right;	
}

body{	/*USING APPLE'S HUMAN INTERFACE GUIDELINES-"HIG"*/
		background-color:#FFFFFF;	/*APPLE'S standard bkgd color*/
		color:#666;	 /*APPLE'S standard text color*/
		font-family:Helvetica, Arial, sans-serif;	/* Helvetica-APPLE'S standard typeface*/
		font-size:14px;	 /*APPLE'S standard font size*/
		padding:0;
}
		
#header h1 {
		margin-left:20px;
		padding-top: 100px;
		
}
		
		
#header h2, h3 {
		background-color:#ccc;
		border-bottom: none;
		color:#666;
		font-size:20px;
		font-weight:bold;
		padding:2px 2px 2px 2px;
		text-align:left;
		text-decoration:none;
		margin-left:20px;
		
}


#header h2 {
		background-color:#FFFFFF;
		border-bottom: none;
		color:#666;
		font-size:20px;
		font-weight:bold;
		padding:2px 2px 2px 2px;
		text-align:left;
		text-decoration:none;
		margin-left:20px;
		
}


#p {
		margin-left:60px;
		padding: 0px;
		
}

a:link {
	color: #666;
}

a:visited {
	color:#333;
}

a:hover {
	color:#7E95A3;

}

#footer {
		color: #222;
		text-align: center;
		margin: 2px 2px 2px 2px;
		padding: 15px;
		font-size: 11px;
}