﻿/* Category bars that can be expanded or collapses */
.reportCategoryBar {
	background: azure;
	border: 2px solid lightskyblue;
	padding: 0.25em 1em 0.25em 1em;
	min-width: 20em;
  min-height: 3em;
}
.categoryTitle {
	font-weight: bold;
}

/* Button in category bar to show or hide the report list */
.expandButton {
	float: right;
  text-decoration: none;
  cursor: pointer;
}
.expandButton:hover {
	background: skyblue;
	color: black;
}

/* Unordered list of reports */
.reportList {
	display: none;
	list-style: none;
  padding-top: 2em;
}
.reportList li {
  clear: both;
  border-top: 1px solid lightskyblue;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 1em 0 0 0;
}
.reportList li .yearSelect {
	float: right;
}

/* Name of the report in a list item */
.reportName {
  float: left;
  margin-right: 1em;
  text-align: left;
}

/* Report selection tools: drop-down list and submit button */
.yearSelect {
	vertical-align: top;
  display: inline-block;
}
.yearSelect select, button {
  float: right;
  height: 1.75em;
  margin: 0;
  width: auto;
  display: inline-block;
}
.yearSelect select {
padding: 0px;
padding-right: 1.5rem;
	
}

.reportButton {
	padding: 0 0.25em 0 0.25em;
  color: black;
	background: lightgray;
	border: darkslategray;
	font-weight: normal;
	border-width: medium;
	margin: 0;
	width: auto;
	min-height: 0;
	border: 0;
	
}

#s4-workspace button,
#s4-workspace .button, #s4-workspace .fc-button,
.reveal a.button,
[type="submit"] {
	margin: 0;
	width: auto;
	min-height: 0;
	border: 0;
}

.reportButton:hover {
	background: skyblue;
	color: black;
	border: 0;
}