/* grey 3px x 2px bordered boxes */
.box {
	border-top: 3px solid #E1E1E1;
	border-bottom: 3px solid #E1E1E1;
	border-left: 2px solid #E1E1E1;
	border-right: 2px solid #E1E1E1;
	display: block;
	clear: both;
	padding: 10px;
	/*
		- must set the width to avoid incorect display due to the different understanding of the box model by ie and firefox
		- to use different widths, the box can be included in a borderless wrapper. ex: <div style="width: 50%;"><div class="box">[box_content]</div></div>
	*/
	width: auto !important;
	width: 100%;
	width/**/:/**/100%;
}
/* 1px grey border boxes */
.sub-box {
	border: 1px solid #E1E1E1;
	padding: 10px 15px;
}
/* grey underlined title spans */
.grey-border {
	padding-right: 30px;
	border-bottom: 1px solid #E1E1E1;
}
/* very small text*/
.note {
	font-size: 9px;
	font-family: Tahoma, Arial, Helvetica, sans-serif, Geneva;
	font-weight: normal;
}
tr.activity-graph-row {
	background: url(images/userActGraphBg.gif) bottom repeat-x;
}
tr.activity-graph-row td {
	font-size: 9px;
	font-family: Tahoma, Arial, Helvetica, sans-serif, Geneva;
	font-weight: normal;
	color: #3B3131;
	border-right: 1px solid #ca9193;
	height: 68px;
}
/* text on graph bars */
tr.activity-graph-row td.last-graph-bar {
	border-right: 0;
}

/* hover box for screenshot popups */
a.popup {
	display:block;
	margin: 0;
}
a.popup img {
	width: 330px;
	height: 300px;
	margin: 4px;
	border: 0;
}
a.popup, a.popup:visited {
	border: 1px solid #e1e1e1;
}
a.popup:hover {
	border: 5px solid #008442;
}
a.popup:hover img {
	margin: 0;
}

