/*  
	**************************************************
	               Styles for Agenda Nested Agenda Listing
	**************************************************
	
	Ordered List ................................... OL.normal

	Ordered List - Small Alpha......... OL.lower-alpha		
	
	"Sub" Ordered List....................... OL.sub (indented)
	
	
	Bullet List.............................................. UL.normal (disc)
	
	"Sub" Bullet List.................................... UL.sub (circle)

	Check List............................................... UL.checklist (checkmark)

	
	List Item................................................ LI.normal (disc for UL)

	List Item -- "Normal-Indented".... LI.indented (disc for UL)

	List Item -- Check Mark................... LI.checkmark (checkmark for UL)
	
	list-style-type property

	disc Default. The marker is a filled circle 
	circle The marker is a circle 
	square The marker is a square 
	
	decimal The marker is a number 
	lower-roman The marker is lower-roman (i, ii, iii, iv, v, etc.) 
	lower-alpha The marker is lower-alpha (a, b, c, d, e, etc.) 
	upper-alpha The marker is upper-alpha (A, B, C, D, E, etc.)  
*/ 

/*  
	%%%%%    "Normal" Ordered List Item     %%%%%
*/ 
	OL.Level1
	{

/*		margins top  right  bottom  left  	*/
		margin: 0 20 3 30;

		list-style-type:decimal;
		
		list-style-position: outside;	
		
		font-size: 105%;
		
		line-height: 120%;				
	}	

/*  
	%%%%%    lower case alpha Ordered List Item     %%%%%
*/ 
	OL.Level1LowerAlpha
	{
 /*		margins top  right  bottom  left  	*/
		margin: 0 20 3 30;
		
		list-style-type:lower-alpha;
		
		list-style-position: outside;	
		
		font-size: 100%;

		line-height: 120%;			
	}	

/*  
	%%%%%      Level 2 Numeric List Entry   %%%%%
	second level numbered item list
*/ 
	OL.Level2
	{
/*		margins top  right  bottom  left  	*/
		margin: 0 20 3 30;

		list-style-type:decimal;
		
		list-style-position: outside;
		
		font-size: 95%;
		line-height: 105%;
	}


/*  
	%%%%%      Level 2 Small Alpha List Entry        %%%%%
	second level numbered item list
*/ 
	OL.Level2LowerAlpha
	{
 		
/*		margins top  right  bottom  left  	*/
		margin: 0 20 3 30;

		list-style-type:lower-alpha;
		
		list-style-position: outside;
		
		font-size: 95%;
		line-height: 105%;
	}


/*  
	%%%%%      Level 3 Numeric List Entry       %%%%%
	second level numbered item list
*/ 
	OL.Level3
	{
/*		margins top  right  bottom  left  	*/
		margin: 0 15 2 20;

		list-style-type:lower-roman;
		
		list-style-position: outside;
		
		font-size: 90%;
		line-height: 105%;
	}


/*  
	%%%%%       Level 3 Small Alpha List Entry      %%%%%
	second level numbered item list
*/ 
	OL.Level3LowerAlpha
	{
 		
/*		margins top  right  bottom  left  	*/
		margin: 0 15 2 20;

		list-style-type:lower-alpha;
		
		list-style-position: outside;
		
		font-size: 90%;
		line-height: 105%;
	}
	
	
/*  
	*******************************************
	***                    Unordered Lists
	*******************************************
*/ 	
/*  
	%%%%%    "Normal" Bullet List Item     %%%%%
	
	solid circular bullet
*/ 
	UL.Level1Normal
	{
/*		margins top  right  bottom  left  	*/
		margin: 10 20 10 30;

 		list-style-type: disc; 
		list-style-position: outside;
		font-size: 105%;
		line-height: 120%;			
	}	
	
/*  
	%%%%%   Unordered List -- "sub" bullets   %%%%%
	"sub-bullet" type with circle, not a solid bullet
*/ 
	UL.Level2Normal
	{
/*		margins top  right  bottom  left  	*/
		margin: 10 30 10 50;

		list-style-type: circle;
		list-style-position: outside;
		font-size: 90%;	
		line-height: 100%;			
	}	

/*  
	%%%%%   Unordered List -- Check marks   %%%%%
*/ 
	UL.CheckmarkNormal
	{
/*		margins top  right  bottom  left  	*/
		margin: 10 20 10 30;
		
		list-style-image: url(../graphics/checkblack.gif);
		list-style-position: outside;
		font-size: 105%;
		line-height: 120%;				
	}	

/*  
	*******************************************
	***                        List Items
	*******************************************
*/ 		
/*  
	%%%%%        List Item -- "Normal"       %%%%%

	"bullet" is "disc" (solid circle)

*/ 
	LI.Level1Normal
	{
		margin-top: 10;
		margin-bottom: 10;		
	}

	LI.Level2Normal
	{
		margin-top: 0;
		margin-bottom: 8;		
	}
