/*
   New Perspectives on HTML and CSS
   Tutorial 8
   Tutorial Case

   Special Effects style sheet
   Author: Burt Clark
   Date:   1 Mar 2016

   Filename:         effects.css
   Supporting Files: borderimg.png

*/
/* Heading text Style */
section#main h1 {
	color:rgb(99,127,0);
	text-shadow: white 1px 1px 0px,
	       rgba(99,127,0,0.7) 5px 5px 10px;
}
/*Box Shadows for Picts*/
figure img{
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
	border-radius:25px;
	
}
section#main{
	-moz-box-shadow: inset rgba (255,255,255,0.3) -5px -5px 10px;
	-webkit-box-shadow: inset rgba(255,255,255, 0.3) -5px -5px 10px;
	box-shadow: inset rgba (255,255,255, 0.3) -5px -5px 10px;
}
section#main table{
	-moz-box-shadow: white 5px 5px 5px;
	-moz-box-shadow: white 5px 5px 10px;
	-webkit-box-shadow: white 5px 5px 5px;
	box-shadow: white 5px 5px 5px;
}
