/* Jello */
html{overflow: auto;}
body {
	padding: 0px 10px 10px 10px; /* these side paddings together determine the natural min-width */
	margin: 0;
	text-align: center; /* this centers the wrappers in older IEwin versions */
	background: gray;
}
		
#sizer {
	margin: 0 auto 0 auto; /* this centers the wrappers in standards browsers */
	width: 100%; /* here is the critical value for customizing the Jello behavior */
	max-width: 100%;  /* version for IE is at the bottom of this style block */
}

#expander {
	background: white;
	/*margin: 0 -50% 0 -50%; /* these side margins should be the same or slightly less than body paddings */
	min-width: 700px; /* This prevents Safari from losing the negative margins in narrow windows */
	position: relative;
	width: 100%;
}

/* Holly hack for IE. Must be zero, not the usual 1% value, due to IE bug \*/
* html #expander { height: 0; }
/* */

/* helps IE get the child percentages right. */
#wrapper { width: 100%; } 


/* * * * * * * * * * * * * * * * * */

#sidebar {
	width: 20%;
	float: left;
	display: inline; /* IEwin doubled margin bug fix */
	text-align: left;
	margin-left: 1%;
	padding-top: 3px;
	overflow: hidden;
	font-size:0.875em; /* sized per ALA */
}

#content {
	width: 77.5%;
	margin-right: 1%;
	text-align: left;
	float: right;
	display: inline; /* IEwin doubled margin bug fix */
	margin-bottom:10px;
	font-size:0.875em; /* sized per ALA */
	padding-top: 5px;
}


/* http://positioniseverything.net/easyclearing */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
