/* 
The body style below controls the color of scrollbars
as well as the outside background color.
*/
body {
	background-color: #DEE3E7;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	scrollbar-3dlight-color : #000099;
	scrollbar-darkshadow-color : #000066;
	scrollbar-highlight-color : #FFFFFF;
	scrollbar-shadow-color : #000099;
	scrollbar-arrow-color : #FFFFFF;
	scrollbar-face-color : #3399CC;
	scrollbar-track-color : #FFFFFF;	
}
/* 
The input style below controls the font of drop down lists
in your gallery.
*/
input  {
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size:12px;
}
/* 
The buttons class below controls the font and color of all buttons
in your gallery, such as the "add a comment" button
*/
.buttons {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	background-color: #3399CC;
}
/* 
The headercell class below controls the font and color and background
color of highlighted table rows in your gallery, such as the top of
the table containing your comments, or your sound gallery discography
*/
.headercell {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	background-color: #3399CC;
}
/* 
The smallcontent class below controls the font and color of all the 
smaller text in your gallery, most of this is found in the listing of
your gallery items, as well as all your profile information at the top
of the page.
*/
.smallcontent {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	background-color: #FFFFFF;
}
/* 
The normalcontent class below controls the font and color of all the 
normal size text in your gallery, most of this is found in your comments.
*/
.normalcontent {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #FFFFFF;
}
/* 
The selectedtab class below controls the font and color and background color 
of the gallery section menu found just above your item listing.  For example,
when a visitor is in your eye gallery, the "View Eye Gallery" tab at top will
be using the selectedtab class, and any other sections will be using the
nonselected tab class.
*/
.selectedtab {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #FFFFFF;
}
/* 
The nonselectedtab class below controls the font and color and background color 
of the gallery section menu found just above your item listing.  For example,
when a visitor is in your eye gallery, the "View Eye Gallery" tab at top will
be using the selectedtab class, and any other sections will be using the
nonselected tab class.
*/
.nonselectedtab {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #DEE3E7;
}
/*
The following 3 classes are very powerful.  They control the font and color
of all the links in your gallery, including the links found in the Art
Conspiracy's menu at the top of the page.

a:link - controls fresh, new, unclicked links.
a:hover - controls what the link will look like when a mouse cursor is over it.
a:visited - controls previously visited links.
*/
a:link {
	color: #3399CC;
	text-decoration: none;
}
a:hover {
	color: #006699;
	text-decoration: none;
}
a:visited {
	color: #3399CC;
	text-decoration: underline;
}
/*
the td style is used to catch any fonts that I may have forgotten
to assign a style to.  It is not recommended that you change
this style
*/
td{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}