/***********************************************/
/* 2col_leftNav.css                            */
/* Use with template 2col_leftNav.html          */
/***********************************************/

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body{
	font-family: "Courier New", Courier, monospace;
	color: #666666;
	line-height: 1.5;
	margin-left: 40px;
	padding: 5px;
	font-size: 20px;
}
  
a {color: #000000;
	text-decoration: none;
}

a:hover {
	color: #FF0000;
	text-decoration: none;
}

h1 {
 font-size: 50px; 
}

ul {padding: 2px;
}

/* Turn off list bullets */
ul.aqtree3clickable li {list-style: none; }

/* This controls the indent for each sublist */
ul.aqtree3clickable ul {
  padding-left: 20px;
}

/* Provide space for our own "bullet" inside the link */
ul.aqtree3clickable li a { padding-left: 20px; color: #000000; }

ul.aqtree3clickable li a:hover { padding-left: 20px; color: #FF0000; }

/* Show "bullets" in the links, depending on the class of the
   LI that the link's in */
ul.aqtree3clickable li.aq3open a {
    background: url(minus.gif) center left no-repeat;
}
ul.aqtree3clickable li.aq3closed a {
    background: url(plus.gif) center left no-repeat;
}
ul.aqtree3clickable li.aq3bullet a {
    background: url(bullet.gif) center left no-repeat;
}

/* Actually show and hide sublists */
ul.aqtree3clickable li.aq3open ul { display: block; }
ul.aqtree3clickable li.aq3closed ul { display: none; }


