body
{
  color: black;
  background-color: white;
}

/*
simple list 1 
*/

#simple-list-1 ul
{
  color: white;
  background-color: blue;
}

#simple-list-1 li
{
  color: yellow;
  background-color: green;
}

/*
simple list 2 
*/

#simple-list-2 ul
{
  color: white;
  background-color: blue;
  margin-left: 0;
  padding-left: 2.5em;
}

#simple-list-2 li
{
  color: yellow;
  background-color: green;
  margin-bottom: 0;
  margin-top: 0;
}

/*
nested list 1 
*/

#nested-list-1 ul
{
  color: white;
  background-color: blue;
}

#nested-list-1 li
{
  color: yellow;
  background-color: green;
}

/*
nested list 2 
*/

#nested-list-2 ul
{
  color: white;
  background-color: blue;
  margin-left: 0;
  padding-left: 2.5em;
}

#nested-list-2 li
{
  color: yellow;
  background-color: green;
  margin-bottom: 0;
  margin-top: 0;
}

