
.adminicon {
	display: inline;
}
.gridsubtitle {
	/* Static */
	height: 25px;
	line-height: 25px;
	text-align: center;
}

.coltitle{
	width:100%;
}

.tblock {
	float: left;
	width: 14%;
	height: 25px;
	font-weight: bold;
}

.tblocklast{
	float: left;
	/* testing for width in IE
		- 20 is too much, 19 is too little
		- may have to apply a negative margin somewhere to correct for it
			- margin of -2px fixes in front end view
			- shifting window size in admin view can cause some with changes and overlap issues, no wrapping though
	*/
	*margin-left:-2px;
	*padding-left:2px;
	width: 16%;
	*width:auto;
	height: 25px;
	font-weight: bold;
	
}

.tblock .caldata, .tblocklast .caldata {
	height: 25px;
	overflow: hidden;
}

.dblock {
	float: left;
	width: 14%;
	
}

.dblocklast{
	float:left;
	width:16%;
	*width:auto;
	/*
		Adding margin/padding hack for IE big grid view
			- 1px right margin does not work
			-  will try em widths for padding to get something dynamic (doesn't work)
		- new issue with cells not expanding vertically
	*/
	
}

.dblock_half { /* only used in Sat/Sun "wider" view */
	float: left;
	width:20%;
	/*
		- margin left of -2px fixes wrapping issue in IE but causes over lap
		- testing margin-right
			- margin-right of 2px has no wrapping but clips right of box, including border
			- margin-right of 1px causes wrapping again
		- add padding to re-shift contents (works, IE is teh suck)
	
	*/
	*margin-left:-2px;
	*padding-left:2px;
	
}

.eventcon {
	width: 70%;
}





