/* 
	index.css
	Manning School for Girls
	
	This stylesheet provides information for the 'index-cards'
	present in aapplications
*/
.indexCardWrapper
{
	clear: both;
	display: block;
	margin-left: 2px;
}
.indexStrip
{
	clear: both;
}
.indexCard{
	float: left;
	min-width: 30px;
	min-height: 35px;
	border: 1px solid black;
	background-image:url("/image/apps/index-card-off.png");
}
.indexCard:hover{
	background-color: #EAEAEA;
	cursor: pointer;
	background-image:url("/image/apps/index-card-hov.png");
}
.indexCard p{
	color: #181818;
	font-size: 11px;
	padding: 3px;
	margin: auto;
}
.indexHighlight {
	background-image:url("/image/apps/index-card-sel.png");
}
.indexHighlight:hover{
	background-image:url("/image/apps/index-card-sel.png");
	cursor: auto;
}

