/*
	reports menu
*/

div.reports-menu,
div.reports-menu-bg,
div.reports-menu-closed {
	width: 186px;
	position: absolute;
	top: 100px; /* top is actually set by javascript */
	left: 0px;
	margin: 0;
	padding: 0;
}

div.reports-menu-bg {
	/* This is used for the reports menu backgrouind color only. It expands to the bottom page
	regardless of reports menu or reports height. */
	top: 0px;
	height: 100%;
	z-index: -10; /* set it to the back*/
	
	/* Vertical background gradient */
	background: #f5f5f4; /* No-gradient support fallback */
	background: -moz-linear-gradient(top, #f1f0f0, #f7f7f7);
	background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#f7f7f7));
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#f4f4f4', EndColorStr='#f7f7f7', GradientType=0);
}

div.reports-menu-closed {
	width: 100%;
}

div.reports-menu-switch {

	border-color: white;
	border-style: solid;
	border-width: 1px 0;
	text-align: left;
	margin: 0;
	
	/* Horizontal background gradient */
	background: #eaebed; /* No-gradient support fallback */
	background: -moz-linear-gradient(left, #d6d6d7, #eaebed);
	background: -webkit-gradient(linear, left top, right top, from(#d6d6d7), to(#eaebed));
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#d6d6d7', EndColorStr='#eaebed', GradientType=1);
}

div.reports-menu-items {
	background-color: transparent;
}

div.reports-menu-items li {
	padding: 0;
	list-style: none;
	/*border-bottom: 1px solid White;*/
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.94em;
}

div.reports-menu-items li.active {
	background-color: #cfd3e7;
}

div.reports-menu-items a {
	display: block;
	text-decoration: none;
	padding: 5px 0px 5px 0px;
	width: 100%;
}

div.reports-menu-items span { /* We use a span as IE hack so that we can set the anchor to 100% width wher hover will work in IE on none text areas*/
	padding-left: 7px;
	padding-right: 14px;
	display: block;
}

div.reports-menu-items img {
	padding-right: 3px;
}

div.reports-menu-items a:link,
div.reports-menu-items a:visited,
div.reports-menu-items a:hover {
	color: #1b1b1b;
	line-height: 1.3em;
}

div.reports-menu-items a:hover {
	background-color: white;
}

