
/*tabbed nav bars*/
  #header {
margin:0px,0px,0px,0px;
      float:left; /*can be changed to right if you prefer*/
      width:100%;
/*change to your url*/
      background:#ffffff repeat-x bottom;

      font-size:86%; /* use either 86% 93% or 100%*/
      line-height:normal;
      }
    #header ul {
      margin:0;
      padding:10px 10px 0;
      list-style:none;
      }
    #header li {
 
     float:left;
/*change to your url*/
      background:url('http://www.ageless-beauty.com/images/left_both.gif') no-repeat left top;
      margin:0;
      padding:0 0 0 9px;
      border-bottom:1px solid #765;      
      }


    #header a {
      white-space:nowrap;
      float:left; /* if you change the first instance of the float to right, then this must be changed as well*/
      display:block;
      width:.1em;
/*change to your url*/
      background:url('http://www.ageless-beauty.com/images/right_both.gif') no-repeat right top;
      padding:5px 15px 4px 6px;
      text-decoration:none; /* options are none or underline*/
      font-weight:bold; /*use either bold or normal*/
      color:#9b886c; /* set the link font color*/
      }



#header > ul a {width:auto;}
    /* Commented Backslash Hack hides rule from IE5-Mac \*/
    #header a {float:none;}
    /* End IE5-Mac hack */
    #header a:hover {
      color:#39b886c;/*sets the color of the links "at rest"*/
      }
/* below, is the name of the ids for your pages. They are grouped in pairs. The first of the pair, is the id you will give to the <body> tag of the page. The second one, is the id you will give to the link itself*/
#page-1 #page-1-nav, /*this if for your first page*/
#page-2 #page-2-nav, /*this if for your second page*/
#page-3 #page-3-nav,
#page-4 #page-4-nav,
#page-5 #page-5-nav,
#page-6 #page-6-nav,
#page-7 #page-7-nav,
#page-8 #page-8-nav
 {
  background-position:0% -150px;
  border-width:0;
  }

/* you will need to use the same ids as above*/
#page-1 #page-1-nav a, /*this if for your first page*/
#page-2 #page-2-nav a, /*this if for your second page*/
#page-3 #page-3-nav a,
#page-4 #page-4-nav a,
#page-5 #page-5-nav a,
#page-6 #page-6-nav a,
#page-7 #page-7-nav a,
#page-8 #page-8-nav a
{
  background-position:100% -150px;
  color:#9b886c;/*sets the color of the "currrent tab link font*/
  padding-bottom:5px;
  }
    #header li:hover, #header li:hover a {
      background-position:0% -150px;
      color:#9b886c;
      }
    #header li:hover a {
      background-position:100% -150px;
      }



