/*
   New Perspectives on HTML, XHTML, and DHTML
   Tutorial 11
   Tutorial Case
   Filename: styles.css

   This file contains styles used in the avalon.htm file
*/

body {color:white; background-color:black}
#avalon {background-color: black; font-size: 24pt; font-weight: bold;
         position: absolute; z-index: 2; left: 175px; top: 260px}
#books {color:red; font-style: italic; font-size: 24pt; font-weight: bold;
        position: absolute; z-index: 1; left: 320px; top: 260px}
#ab {width: 150px; height: 225px; position: absolute; left: 230px; top: 40px}
#ab img {border-width: 0px}
#fiction {font-family: Arial, Helvetica, sans-serif; font-size: x-small;
          width: 120px; position: absolute; left: 5px; top: 5px;
          text-align: center}
#nfiction {font-family: Arial, Helvetica, sans-serif; font-size: x-small;
          width: 120px; position: absolute; left: 475px; top: 5px;
          
          
          text-align: center}
          function placeObjects() {
	  	placeIt("avalon",175,10);
	  	placeIt("books",175,10);
	  	placeIt("ab",230,40);
	  	placeIt("fiction",5,5);
	  	placeIt("nfiction",475,5):
	  	hideIt("ab");
	  	hideIt("fiction");
	  	hideIt("nfiction");
}