

/* My first external CSS sheet, for midterm project March 2011 of Al's class */

*  { margin: 0;
	padding: 0;
	}

body {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 80%;
	color: black;
	background-color: #ffbf40;
	margin: 1em;
	padding: 0;
	text-align: left;
}


h1 {
	font-size: 2em;
	color: red;
	margin: 0;
	padding-bottom: 5px;
	text-align: left;	
}

h2 {
	color: black;
	font-size: 1.5em;
	margin: 0;
	text-align: left;
}

h3 {
	color: red;
	font-size: 1.3em;
	margin-left: 0em;
	text-align: left;
	padding: 10px 0px 0px 0px;
	margin-bottom: .3em;
	}

h4 {
	color: black;
	font-size: 1.2em;	
	margin: 0;
	text-align: left;
}	

h5 {
	color: black;
	font-size: 1.0em;
	margin: 0;
	text-align: left;
	margin-bottom: 15px;
	margin-top: 4px;
}

h6 {
	color: black;
	font-size: .85em;
	margin: 0;
	text-align: center;
	margin-top: 0;
		}
		
p { line-height: 1.5;
	margin-bottom: .5em;
	}
	
a:link  { color: red;  }
a:visited  { color: purple;  }
a:hover  { color: green  }
a:active  { color: black  }
	
	
	
li {
	border: 8px white solid;
	background-color: white;
	text-align: right;
	margin: 3px;
	list-style-type: none;
	font-family: verdana, arial, helvetica, sans-serif;
	}
			

table  {
	background-color: white;
	float: left;
	margin-right: 6px;
}

img  {
	border: 0;
	float: left;
	margin: 6px;
	}

#header {
	background-color: transparent;
	color: black;
	padding: 28px 8px 28px 8px;
	background-image: url(images/Aloo-Gobi-2a-fade.jpg);
	border-bottom: 8px #ffbf40 solid;
	}

#nav {
	color: black;
	width: 150px;
	float: left;
	padding: 0px 8px 2px 8px;
	margin: 8px;
	}

#content {
	background-color: #ffbf40;
	color: black;
	width: 600px;
	padding: 8px 8px 2px 8px;
	float: left;
	}

#footer {
	background-color: #5CCCCC;
	color: black;
	clear: left;
	padding: 8px 8px 2px 8px;
	}
	
#wrapper {
	width: 800px;
	margin: auto;
	}



.table-right   {
	float: right;
	margin-left: 6px;
	}
	
	
.RedType   {
	color: red
	}
	
	
.quotebox {
	float: left;
	width: 200px;
	background: #900 url(images/ptg1.jpg) top no-repeat;
	color: #fc0;
	font-size: 0.9em;
	line-height: 1.2;
	padding-top: 71px;
	border: 2px solid #600;
	margin: 0 1em 1em 0;
}

.quotebox p {
	margin: 0;
}

.quotebox blockquote {
	line-height: 1.3;
	font-weight: bold;
	padding: 0.5em;
	border-top: 2px solid #600;
	margin: 0;
}

.quotebox .by {
	padding: 0.5em;
}


.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 130px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
