/*This BODY Element defintion is used to declare a 0px margin for the page*/
/*NN4 will not recognize this, so you also have to use the marginwidth*/
/*and marginheight properties in the DW Page Properties Menu: modify>page properties*/

BODY,  {
	background-color : #FFFFFF;
	margin : 0px;
}

BODY, TD, DIV {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 13px;
	font-style : normal;
	color : #575757;
}

A:LINK {
	color : #FFFFFF;
; text-decoration: none
}

A:VISITED {
	color : #FFFFFF;
; text-decoration: none
}

A:HOVER {
	color : #FF5000;
	text-decoration : underline;
}

A:ACTIVE {
	color : #FFFFFF;
; text-decoration: none
}


/* style used for the tool-tip */
/* this is actually being applied to a <td> tag */
.kwtooltip {
	border : 1px solid #000000; /* nn4 will not display a border with the too-tip */
	background-color : #9933FF;
	color : #FFFFFF;
	font-size : 12px;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	padding : 3px; /* nn4 is 'buggy' with padding */
}


/* This is the ID that holds the Thumbnails */
/* the kwthumbs DIV is 10 pixels higher than the kwimages DIV */
/* because the table that holds the thumbnails has a 10px padding */
#kwthumbs {
	top : 120px;
	left : 20px;
	width : 240px;
	height :auto;
	position : absolute;
	z-index : auto;
	visibility : visible;

/* If you want to use a background color for this DIV, be sure to use  */
/* the attributes in the order they are listed - the border 0.1px is so that */
/* nn4 doesn't choke when rendering the DIV */
/* backround-color is for all browsers, but you will also need to use */
/* layer-backround-color for nn4 */
	/*border : 0.1px solid #E7E7E7;*/
	/*background-color : #E7E7E7;*/
	/*layer-background-color : #E7E7E7;*/
}


/* The next ID is used to hide the main images after a */
/* thumbnail is clicked */
/* MAKE SURE THIS DIV HAS THE SAME LOCATION PROPERTIES */
/* AS THE KWIMAGES DIV SO THAT IT HIDES THE IMAGES */
/* AS THEY ARE BEING LOADED */
/* You will need to adjust these dimensions according to */
/* the size of the images as well as */
/* the border size of the image DIV  - so, if you have a 1px*/
/* border, then this DIV will need to be 2 pixels wider (1 pixel */
/* for each left/right side) and 2 pixles taller (1 pixel for each top/bottom)  */
/* don't forget about adjusting height also */
#kwimagecover {
	top : 130px;
	left : 275px;
	width : 400px;
	height : 150px;
	position : absolute;
	z-index : 99;
	visibility : hidden;
	border : 0.1px solid #000000; /* need this for NN4 to display the entire width of the loading DIV - you can use a shim that is as wide as your picture as an alternative */
/* see the refernce in the #kwthumbs above for more information */
	background-color : #000000;
	layer-background-color : #000000;
	color : #F7F7F7;
}

/* This ID is used to hold the main images - only 1 main image */
/* is displayed at one time */
/*Set these background colors the same as body background color*/
/*if you do not want any difference in background colors */
/* Alternately, you could use "transparent" for a bg-color */
#kwimages {
	top : 130px;
	left : 275px;
	width : 400px;
	height : 150px;
	position : absolute;
	z-index : 40;
	visibility : visible;
	background-color : #FFFFFF;
	layer-background-color : #FFFFFF; /* need for nn4 */
}

/* This style is used to control the LOCATION and style properties */
/* of all the captions */
.kwcaption {
	top : 320px;
	left : 275px;
	width : 400px;
	height : auto;
	position : absolute;
	z-index : auto;
	visibility : hidden; /* the initial value MUST be set to hidden */
	color : #6B6B6B;

	/* may want to use a larger font in NN4 with a second sytle sheet */
	font-size : 12px;

	/*if padding is needed in conjunction WITH a border and backround color */
	/*then, use a separate sheet for NN4 with no padding, otherwise you */
	/*will have a strange border in NN4  */
	padding : 5px;
	
	font-family : Verdana, Arial, Helvetica, sans-serif;
	border-left : 1px solid #000000;
	border-right : 0px solid #000000;
	border-top : 1px solid #000000;
	border-bottom : 0px solid #000000;
}

/* ID used for the 'click to enlarge' text - degrades gracefully in NN4*/
/* this is nested inside of the #kwimages DIV */
#kwclickme {
	position : absolute;
	z-index : 50;
	visibility : visible;
	top : 0px;
	right : 0px;
	height : auto;
	width : auto;
	background-color : #000000;
	layer-background-color : #000000;
	color : #DBDBDB;
}
