/*******************************************************************

	Site Specific CSS

********************************************************************/
/* Setup an empty body class for current */
body {
	}

/*******************************************************************
                              fonts                                
********************************************************************/
.mylinks{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:32pt;
}
	
/*******************************************************************
                              Lists                                
********************************************************************/
.site ul {
	list-style:square;	/*none, disc, circle, square*/
	text-align:left;
	margin:0px;
	padding-left: 20px;	/* add to show bullets */
	display:block; 		/* IE hack */
	/*background-color:#33FFFF;*/ /* display location */
	/*border:none;*/
}

.site li {
	/*float: left;*/
	width: auto;
 	}

.site_li_20px li {
	margin: 20px 0 20px 0;
 	}

.site_li_40px li {
	margin: 40px 0 20px 0;
 	}


/*Lists not indented in IE
The problem: List items have padding or margin by default. Mozilla's list items are padded 40 pixels; IE's list items have 40 pixels of margin.  Thus you cannot leave the list at default and have a consistent appearance.
The solution:
- If you want the bullets to use an outside list-style, set the margin and zero the padding. 
- If you want the bullets to use an inside list-style, set the padding and zero the margin. */



/*&&>> Hacks! <<&&*/

/** html li a {
	width: 1px;
	}
*/
/*&&>> IE5 Mac Hack <<&&*/
/*\*//*/
.site ul li a {
	display: inline-block;
	white-space: nowrap;
	width: 1px;
	}
.site ul {
	padding-bottom: 0;
	margin-bottom: -1px;
	}
/**/
