@charset "UTF-8";

/* 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: #CD0505;
	color: #FFFFFF;
}

/* 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: #FFFFFF;
	color: #333333; /* background-color: #EFEFEF */
}
.CollapsiblePanelTabHover/* 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.
 */
,    {
	background-color: #FFFFFF;
	color: #CD0505;
}

/* 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 {
	border-bottom: solid 1px #CCC;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	text-transform: uppercase;
	text-indent: 6px;
	line-height: 30px;
	letter-spacing: 1px;
}
.CollapsiblePanelClosed .CollapsiblePanelTabVisited {
	color: #333333;
	background-color: #FFFFFF;
}
.CollapsiblePanelTabInfo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;
	font-weight: bold;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CD0505;
}
.CollapsiblePanelTab fltrt {
	text-align: right;
}
.CollapsiblePanelPicture {
	border-bottom-style: none;
	text-align: left;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 0px;
	vertical-align: top;
}

/* 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: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 135%;
	list-style-position: inside;
	list-style-type: square;
	left: 4px;
	vertical-align: bottom;
}
.CollapsiblePanelContent ul {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.3em;
	width: auto;
	color: #333333;
	margin-bottom: 8px;
	text-indent: 0px;
}

/* 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;
	background-color: #FFFFFF;
}
.CollapsiblePanelContentMinimum {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 125%;
	list-style-position: inside;
	list-style-type: square;
	height: 100%;
	vertical-align: top;
}
p {
	color: #333333;
}
blockquote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	list-style-type: circle;
}
.quotes {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: italic;
	line-height: 20px;
	font-variant: normal;
	margin-left: 25px;
}
.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: 22px;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
	color: #666666;
}
.CollapsiblePanelClosed .CollapsiblePanelTabHover {
	color: #CD0505;
}
active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #FF0000;
	text-decoration: blink;
	float: right;
}
img {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
