/*
   New Perspectives on HTML and XHTML 5th Edition
   Tutorial 6
   Case Problem 2

   Quiz Form Style Sheet
   Author: Zeina Nasreldine
   Date:   March 1, 2010

   Filename:         qform.css
   Supporting Files: tan.jpg

*/

.question	{
			float: left;
			width: 200px;
			text-align: right;
			clear: left;
			}
			
fieldset	{
			display: block;
			float: left;
			width: 400px;
			height: 50px;
			margin: 0px 0px 5px 20px;
			position: relative;
			background-image: url(tan.jpg);
			}


.answerA	{
			position: absolute;
			left: 0px;
			top: 0px;
			}
			
.answerB	{
			position: absolute;
			left: 200px;
			top: 0px;
			}
			
.answerC	{
			position: absolute;
			left: 0px;
			top: 25px;
			}
			
.answerD	{
			position: absolute;
			left: 200px;
			top: 25px;
			}
			
#buttons	{
			text-align: center;
			width: 600px;
			padding: 10px 0px 10px 0px;
			}
			
#buttons BUTTON	{
				width: 100px;
				margin: 0px 10px 0px 10px;
				}






