/*****************************************************************************************
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:rgb(255, 255, 255);
     }



/*****************************************************************************************
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: rgb(255, 255, 255);
	border-width:1; 
	border-color: #3f3205; 
	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: #fd7cbc;}
h5 {color: #fd7cbc;}
h4 {color: #fd7cbc;}
h3 {color: #fd7cbc;}
h2 {color: #fd7cbc;}
h1 {color: #3f3205;}
p {color: #3f3205;}




link { color:rgb(50, 50, 50); }
vlink {color:rgb(50, 50, 50); }
alink {color:rgb(50, 50, 50); };

