@charset "UTF-8";

/* SpryCollapsiblePanel.css - Revision: Spry Preview Release 1.4 */

/* 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 {
	padding: 0px;
	border-top: solid 1px #999;
	margin-top: 25px;
}

/* 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 {
	background-color: #DCB9B6;
	border-bottom: solid 1px #CCC;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
}


/* 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.
 */
.CollapsiblePanelContent {
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0px;
	background-image: url(../images/toolspanel.jpg);
	padding-top: 5px;
	background-repeat: no-repeat;
	line-height: 28px;
	padding-bottom: 5px;
}
.CollapsiblePanelContent a {
	color: #27447e;
	text-decoration: none;
}
.CollapsiblePanelContent a:hover {
	color: #336633;
}

/* 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: black;
	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 {
	background-color: #EEE;
}

/* 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 {
	background-color: #FFFFFF;
}
.CollapsiblePanel2 {
	padding: 0px;
	margin-bottom: 10px;
}
.CollapsiblePanelTab2 {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #CC0000;
	background-color: #CCCCFF;
	border: solid 1px #999999;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: 5px center;
	padding: 2px;
	text-indent: 25px;
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
}
.CollapsiblePanelOpen .CollapsiblePanelTab2 {
	background-image: url(../images/arrow_down.png);
	background-repeat: no-repeat;
	background-position: 5px center;
}
.CollapsiblePanelContent2 {
	margin: 0px;
	padding: 5px;
	background-color: #FFFFCC;
	overflow: hidden;
}








/* Sidebar */







.CollapsiblePanel3 {
	padding: 0px;
}

/* This is the selector for the CollapsiblePanelTab3. 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 ("CollapsiblePanelTab3") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel3 panel tab container.
 */
.CollapsiblePanelTab3 {
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image: url(../images/nav/blank.jpg);
	background-repeat: no-repeat;
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	color: #333333;
}

.CollapsiblePanelTab3:hover {
	background-image: url(../images/nav/blank_hover.jpg);
}

/* This is the selector for a CollapsiblePanel3'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 CollapsiblePanel3's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel3 to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent3") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel3 content container.
 */
.CollapsiblePanelContent3 {
	margin: 0px;
	background-color: #CADEE0;
	padding: 1px;
}

.CollapsiblePanelContent3 a {
	color: #003366;
	text-decoration: none;
}
.CollapsiblePanelContent3 a:hover {
	color: #336633;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab3 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.
 */
.CollapsiblePanelTab3 a {
	color: #333333;
	text-decoration: none;
}
.CollapsiblePanelTab3 a:hover {
	color: #336633;
}

/* 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 CollapsiblePanel3.
 *.CollapsiblePanelOpen .CollapsiblePanelTab3 {
	background-color: #EEE;
}/


/* 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.
 */

