/*****************************************************************************************
Style Sheet

These values change the look of the gallery. It uses standard CSS coding.
To download more styles, visit http://www.on3Galleries.com/forums



body setup
This is the main page background color and/or background image.

background color can take standard color names  - background-color:black;
or you can use rgb values:                      - background-color:rgb(0,0,0);

if you want to use an image, use this:          - background-image:url(myimage.jpg);
****************************************************************************************/


body {
	background-color:white;
	background-color:rgb(f, f, f);
     }



/*****************************************************************************************
table setup
This is the tables where your images will be shown.

background color can take standard color names  - background-color:black;
or you can use rgb values:                      - background-color:rgb(0,0,0);

if you want to use an image, use this:          - background-image:url(myimage.jpg);

other options          
		border-width:1              (can be any number, it is pixel width)
		border-color:[color]        (see background-color for options)
              border-style:ridge;         (can use solid, dotted, dashed, double, groove, ridge, inset, outset)
****************************************************************************************/

table {
	background-color: white;
	border-width:1; 
	border-color:silver; 
	border-style:ridge; 
      }


/*****************************************************************************************
text colors:
uses the same format as background-color
			color: [color] 		(can be color name or rgb(0,0,0) values)
****************************************************************************************/

h6 {color: rgb(100, 100, 100);}
h5 {color: rgb(100, 100, 100);}
h4 {color: rgb(100, 100, 100);}
h3 {color: rgb(255, 0, 0);}
h2 {color:silver;
h1 {color:grey;}
p {color:black;}




link { color:rgb(250, 250, 250); }
vlink {color:rgb(250, 250, 250); }
alink {color:rgb(250, 250, 250); };
