BODY   {
background-image:  url(../images-kohls/b-ground.gif);
color: #000000;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px;
font-family: tahoma, verdana, arial;
}


P   {
font-size:12px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}

.errors   {
color: Black;
background-color : yellow;
font-weight:bold;
font-size:14px;
}

H1   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:16px;
}

H2   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

H3   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

H4   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

/* ------------------------------- */

P.links   {
font: bold normal 11px
}

A:link {
color: Blue
}     /* unvisited link */

A:visited {
color: Maroon
}  /* visited link */

A:hover    {
color: Blue;
text-decoration:none;
}   /* mouse over link */

A:active {
color: Blue
}   /* selected link */

/* ---  Link on Images  ---------------------------- */

A.links_image:link {
color: #A3B3C3
}     /* unvisited link */

A.links_image:visited {
color: #A3B3C3
}  /* visited link */

A.links_image:hover    {
color: White;
}   /* mouse over link */

A.links_image:active {
	color: White;
}   /* selected link */

/* ------------------------------- */

.medium
{
font-size:13px;
}

.small
{
font-size:11px;
}

/* ------------------------------- */
/*  Controlling the Unordered List - UL and LI */
UL {
margin-left: 12px;
padding-left: 5px;
} 

LI   
{
    font-size:12px;

}

/*  Controlling the Ordered List - UL and LI */
OL {
margin-left: 12px;
padding-left: 5px;
} 
/* ------------------------------- */

/* Adding Borders to Tables  */

TD.borderleft {  
border-style: solid; 
border-top-width: 0px; 
border-right-width: 0px; 
border-bottom-width: 0px; 
border-left-width: 2px;
}

TD.borderbottom {  
border-style: solid; 
border-top-width: 0px; 
border-right-width: 0px; 
border-bottom-width: 1px; 
border-left-width: 0px;
}

TABLE.picture {
background-image:  url(../images-kohls/b-ground-pic.jpg);
  border-color: Gray;
  border-style: solid;
  border-width: 2px;
}

TABLE.frame_picture {
  background: #000000;
  border-color: #000000;
  border-style: solid;
  border-width: 8px;
}

TABLE.matte_picture {
  background: #FFFFFF;
  border-color: #FFFFFF;
  border-style: solid;
  border-width: 16px;
}

TABLE.drop_shadow_picture {
  background: #FFFFFF;
  border-color: #CCC0A7;
  border-style: solid;
  border-width: 2px;
}

TABLE.clearance_picture {
  border-style: solid;
  border-width: 0px;
}

TABLE.thumb {
  background: #FFFFFF;
  border-color: #CCC0A7;
  border-style: solid;
  border-width: 1px;
}

/* ------------------------------- */

/*
Notes:
- a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!
- a:active MUST come after a:hover in the CSS definition in order to be effective!!
- Pseudo-class names are not case-sensitive.
- IE 4 and higher supports the anchor pseudo-class. NN 4.5 and Netscape 6 support the anchor pseudo-class only partially.

- font property: (weight, style, size/leading, font family) i.e. 
	font: medium italic 24pt/30pt Georgia, serif;
	Order must be correct
*/