﻿@charset "utf-8";
/* CSS Document */


/* first level */
ul.sitemap {
  margin: 1em 0;																/* top/bottom are 1, left/right are 0 */
  list-style-type: none;
  background: url("images/dot.gif") repeat-y 3px 0;				/* vertical left line, left and down */
  padding: 0;
  font-size: 12px;                                  				/* size of letters in list */
}
ul.sitemap li {
  margin-bottom: .5em;                              				/* vertical space between first level entries */
}
ul.sitemap li a {
  background: url("images/bullet1.gif") no-repeat 0 .3em; 		/* bullet for 1st lvl left and vertical*/
  padding-left: 15px;                               				/* indentation for level 1 words */
}

ul.sitemap_nodots {															/* no vertical line on this class */
  margin: 1em 0;																/* top/bottom are 1, left/right are 0 */
  list-style-type: none;
  padding: 0;
  font-size: 12px;                                  				/* size of letters in list */
}
ul.sitemap_nodots li {
  margin-bottom: .5em;                              				/* vertical space between first level entries */
}
ul.sitemap_nodots li a {
  background: url("images/bullet1.gif") no-repeat 0 .3em; 		/* bullet for 1st lvl left and vertical*/
  padding-left: 15px;                               				/* indentation for level 1 words */
}


/* second level */
ul.sitemap ul {
  margin: .5em 0 0 0;                               				/* distance above indented items */
  padding: 0;
  list-style-type: none;
}
ul.sitemap li li {
  background: url("images/dot2.gif") no-repeat 2px .6em; 		/* horiz line left and vertical offsets */
}
ul.sitemap li li a {
  padding: 0 0 0 30px;                              				/* indentation for level 2 words */
  background: url("images/bullet2.gif") no-repeat 15px .3em;	/* bullet for 2nd level left and vertical offsets*/
}


/* third level */
ul.sitemap ul ul {
  background: url("images/dot.gif") repeat-y 0 0;   				/* 2nd vertical bar */
  margin-left:30px;
}
ul.sitemap li li li {
  background: url("images/dot2.gif") no-repeat 0 .6em; 			/* 2nd horiz line left and vertical offsets */
}
ul.sitemap li li li a {
  padding: 0 0 0 30px;                              				/* indentation for level 3 words */
  background: url("images/bullet3.gif") no-repeat 15px .3em;	/* bullet for 3rd level left and vertical offsets */
}


/* fourth level */
ul.sitemap ul ul ul {
  background: url("images/dot.gif") repeat-y 0 0;					/* 3rd vertical bar */
  margin-left:30px;
}
ul.sitemap li li li li {
  background: url("images/dot2.gif") no-repeat 0 .6em;			/* 2nd horiz line left and vertical offsets */
}
ul.sitemap li li li li a {
  padding: 0 0 0 30px;                             				/* indentation for level 4 words */
  background: url("images/bullet1.gif") no-repeat 15px .3em;	/* bullet for 4th level left and vertical offsets */
}
