@charset "UTF-8";
/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 10px 0;
	padding: 0px;
	border:0;
}
/*Panel del menú lateral*/
#menu-buttons .CollapsiblePanel {
	margin: 0px;
	padding: 0;
	border:0;
}
/* 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.
 */
#content .CollapsiblePanelTab {
	font-weight: bold;
	margin: 0px;
	padding: 5px 0 5px 23px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	text-decoration: none;
	background-image: url(../css/img/plus.png);
	background-repeat: no-repeat;
	background-position: left center;
}
/*Panel del menú lateral*/
#menu-buttons .CollapsiblePanelTab {
	background-image: url(../css/img/plus.png);
	background-position: left center;
	background-color: transparent;
	background-repeat: no-repeat;
	border: 0;
	color: white;
	margin: 5px 0 0 0;
	padding: 5px 0 5px 23px;
	cursor: pointer;
	font-size: 1.125em;
	-moz-user-select: none;
	-khtml-user-select: none;
	text-align: justify;
	width: 170px;
}
/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
#content .CollapsiblePanelContent {
	background: #f9f9f9;
	background: -moz-linear-gradient(top, #f9f9f9 0%, #eaeaea 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #eaeaea));
	background: -webkit-linear-gradient(top, #f9f9f9 0%, #eaeaea 100%);
	background: -o-linear-gradient(top, #f9f9f9 0%, #eaeaea 100%);
	background: -ms-linear-gradient(top, #f9f9f9 0%, #eaeaea 100%);
	background: linear-gradient(to bottom, #f9f9f9 0%, #eaeaea 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#eaeaea', GradientType=0 );
	border:#CCCCCC solid 1px;
	margin: 0px;
	padding: 20px 23px 0 23px;
	text-align:justify;
}
#menu-buttons .CollapsiblePanelContent {
	background:none;
	border:0;
	margin: 0px;
	padding: 0 10px 0 23px;
	text-align:justify;
}
/* 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 a {
	color: #FFF;
	text-decoration: none;
}
#menu-buttons .CollapsiblePanelContent ul {
	font-size: 0.875em;
	margin: 0;
	padding: 0;
	text-align: justify;
	width: 150px;
	background-image: url(../css/img/tree-liner.png);
	background-repeat: no-repeat;
	background-position: left;
}
#menu-buttons .CollapsiblePanelContent ul li {
	list-style:none;
}
#menu-buttons .CollapsiblePanelContent ul li#initial {
	margin-top:10px;
}
#menu-buttons .CollapsiblePanelContent a, #menu-buttons .CollapsiblePanelContent a:link {
	/*border:yellow thin solid;*/
	color: white;
	display: block;
	line-height: 100%;
	min-height: 30px;
	padding: 10px 0 0 20px;
	text-decoration: none;
	background-image: url(../css/img/tree-horizontal-line.png);
	background-repeat: no-repeat;
	background-position: left center;
}
#menu-buttons .CollapsiblePanelContent ul li a:hover {
	text-decoration: underline;
}
/* 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.
 */
#content .CollapsiblePanelOpen .CollapsiblePanelTab {
	background: url(../css/css-images/minus.png) no-repeat center left;
}
/*Panel del menú lateral*/
#menu-buttons .CollapsiblePanelOpen .CollapsiblePanelTab {
	background-image:url(../css/css-images/minus.png);
	background-position:center left;
	background-color:transparent;
	background-repeat:no-repeat;
}
/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
/* background-color: #EFEFEF */
}
/* 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.
 */
#content .CollapsiblePanelTabHover, #content .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	text-decoration: underline;
}

#menu-buttons .CollapsiblePanelTabHover, #menu-buttons .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	text-decoration: underline;
}
