/**
 * .widget-* classes provides structural markup for creating small widgets that normally has borders in it.
 * widget-header - defines the markup for the title location
 * widget-content - defines the border and the placeholder of module output and interactions
 */
.widget-header {
	background: #794d89;
	padding: 7px 15px;
}
.widget-header .title {
	color: #fff;
	font-size: 15px;
	line-height: 28px;
	margin: 0;
	display: inline-block;
}
.widget-header .button-right {
	float: right;
}
.widget-content {
	border: 1px solid #ddd;
}
.widget-content form {
	box-shadow: none;
	background: transparent;
	padding: 0;
	border: 0;
}
/*
 * Utility classes that can be transferred to graph_v2.css or main stylesheet
 * .clearfix - a good way of clearing floated elements inside a container
 */
.clearfix:before,
.clearfix:after
{
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
table.oddeven .odd .odd {
	background-color: #f2f2f2;
}
table.oddeven .odd .even {
	background-color: #f8f8f8;
}
table.oddeven .even .even {
	background-color: #f2f2f2;
}
table.oddeven .even .odd {
	background-color: #ebebeb;
}