/*****************************************************************************************
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: url(background-top-2.jpg) repeat-x #DBDBDB;
        font-family: verdana;
     }



/*****************************************************************************************
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: #ffffff;
	border-width:0px; 
	border-color:white; 
	border-style:solid; 
      }


/*****************************************************************************************
text colors:
uses the same format as background-color
			color: [color] 		(can be color name or rgb(0,0,0) values)
****************************************************************************************/

h6 {color: #000000;}
h5 {color: #000000;}
h4 {color: rgb(100, 100, 100); padding: 5px;}
h3 {color: #000000; padding: 5px;}
h2 {color: #000000; margin: 5px; font-size: 10px;}
h1 {color: #000000;}
p {color: #000000;}
input {margin-top: 5px; margin-bottom: 5px;}


a {text-decoration: none; font-size: 16px;}
a:link{color: #000000;}

a:visited {color:rgb(200, 200, 200); }
a:hover {color:rgb(170, 170, 170); }
a:active {color:rgb(50, 50, 50);}
