@charset "UTF-8";

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab_forsamling {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 110%;
	font-weight: bold;
	color: #FFFFFF;
	background-image: url(../bilder/forsamling/sidhuvud_forsamling_165px.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 15px;
	padding-right: 2px;
	padding-bottom: 5px;
	padding-left: 10px;
	text-decoration: none;
}
.CollapsiblePanelContent_forsamling {
	background-image: url(../bilder/forsamling/bkg_forsamling_165px.jpg);
	background-repeat: repeat;
	padding-left: 10px;
	padding-right: 10px;
	color: #FFFFFF;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab_forsamling a {
	color: #FFFFFF;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab_forsamling {
	background-color: #FFFFFF;
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	color: #FFFFFF;
	text-decoration: none;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab_forsamling {
	background-color: #FFFFFF;
	color: #FFFFFF;
}
