/**
 * The main CSS file for the Semantic Drilldown extension.
 */

/* Normal (sidebar) display of categories list */

div#drilldown-categories-wrapper {
	float: right;
	background: transparent;
	padding: 0px 25px 25px 25px;
}

ul#drilldown-categories {
	border: 2px #ff9933 solid;
	list-style: none;
	border-radius: 5px;
}

ul#drilldown-categories li {
        padding: 3px 8px 3px 8px;
        margin: 0px;
}

p#categories-header {
	font-weight: bold;
}

ul#drilldown-categories li.category {
        border-top: 1px #1a1a1a solid;
        background: #121212;
}

ul#drilldown-categories li.selected {
        background: #1a1a1a;
}

/* Tab-based display of categories list
 * - based in part on
 * http://unraveled.com/publications/assets/css_tabs/index3.html
 */

div#drilldown-categories-tabs-wrapper {
}

ul#drilldown-categories-tabs {
	padding-bottom: 40px;
	list-style: none;
	padding: 0px 5px 0px 5px;
	border-bottom: 1px #999999 solid;
	margin: 1em 0 1em 0; /* set margins as desired */
}

ul#drilldown-categories-tabs a:hover {
}

li#categories-header {
	font-weight: bold;
	background: #c9c9c9;
}

ul#drilldown-categories-tabs li.category {
	white-space: nowrap;
	margin: 0px 2px 0px 2px;
	padding: 3px;
	background: black;
	font-size: smaller;
	display: inline;
}

ul#drilldown-categories-tabs li.category a {
	padding: 3px 4px 3px 4px;
}

ul#drilldown-categories-tabs li.selected {
	padding: 3px 4px 3px 4px;
	background: black;
	border: 1px #ff9933 solid;
	border-radius: 5px;
}

/* End of categories-list CSS */

div#drilldown-header {
	font-size: large;
	font-weight: bold;
}

span.drilldown-header-value {
	font-weight: normal;
}

div.drilldown-filters {
	margin-top: 10px;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px #aaaaaa solid;
}
span.drilldown-or {
	color: gray;
	font-weight: normal;
}

div.drilldown-filter-label {
	font-weight: bold;
}

span.drilldown-filter-notes {
	font-weight: normal;
}

div.drilldown-filter-values {
}
