﻿@charset "UTF-8";

/* SpryCollapsiblePanel.css - SGI Product Explorer */


/* 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.
 */
.CollapsiblePanel2 {
 	width: 230px;
	margin: 0px;
	padding: 0px;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:12px;
	line-height:17px;


}
.CollapsiblePanel {
	width: 230px;
	margin: 0px;
	padding: 0px;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:12px;
	line-height:17px;

}

/* 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, #applicationTable thead {
	font: bold 12px sans-serif;
	color:#333333;
	background-color: #ccc;
	margin: 0px;
	padding: 5px;
	padding-left:15px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image:url(/assets/images/icon_upArrow.gif);
	background-repeat: no-repeat;
	background-position: 5px center;
}
.CollapsiblePanel2Tab {
	font: bold 12px sans-serif;
	margin: 0px;
	padding: 5px;
	padding-left:15px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image:url(/assets/images/icon_upArrow.gif);
	background-repeat: no-repeat;
	background-position: 5px center;
}

/* 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 a .CollapsiblePanelContent  a:link, .CollapsiblePanelContent a:visited, .CollapsiblePanelContent a:hover, .CollapsiblePanelContent a:active {
text-decoration:none;
}
 
.CollapsiblePanelContent {
	font-family:Arial, Geneva, Helvetica, sans-serif;
	margin:10px;
	margin-left:10px;
	font-size:12px;
}

.CollapsiblePanelContent ul {
	padding:0px;
	margin-left:5px;
	margin-top:0px;
}
.CollapsiblePanelContent li  {
	background-image:url(/assets/images/products_bullet_square.gif);
	background-repeat:no-repeat;
	background-position:0px 8px;
	list-style-image:none;
	list-style-type:none;
	padding-left:10px;
	padding-bottom:5px;
	text-decoration:none;
	
}
.CollapsiblePanelContent p {
	font-size:12px;
	margin: 1px;
	padding: 1px;
	line-height:17px;

}
.CollapsiblePanelContent .fakeMore {
	font-weight: normal;
	color: #39c;
}
.CollapsiblePanelContent .fakeMore p {
	color: black;
	text-decoration:none;
}
.CollapsiblePanelContent .fakeMore:hover p {
	color: #39c;
}
.CollapsiblePanelContent .fakeHead  {
	background-image:none;
	padding-left:2px;
	padding-bottom:15px;
	padding-top:15px;
	text-decoration: none;
	font-size:14px;
	text-decoration:none;
}
.CollapsiblePanelContent li li {
	padding-top:10px;
	}

.CollapsiblePanelContent .fakeb {
	background-image:url(/assets/images/xml-bullet.gif);
	background-repeat:no-repeat;
	background-position:0px 3px;
	padding-left:15px;
	padding-bottom:4px;
}

/* 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 .CollapsiblePanelProductsTab {
	background-color: #CCC;
	background-image:url(/assets/images/icon_downArrow.gif);
	background-repeat: no-repeat;
	background-position: 5px center;

}

/* 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: #d7d7d7;
	background-image:url(/assets/images/icon_downArrow.gif);
	background-repeat: no-repeat;
	background-position: 5px center;
	}

/* 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 .CollapsiblePanelProductsTab {
	background-color: #e9f0f8;
	
}



/* Soldesign Styles */

#ProductContainer {
	text-align:left;
	margin-left:0px;
	margin-right: 10px;
	margin-top: 10px;
	width: 540px;
}
#pHeader {
	color: #333333;
	background-color: #cccccc;
	padding: 4px;
	font-weight: bold;
	padding-left:10px;
	padding-bottom:4px;
	padding-top:5px;
	font-size:12px;
	font: sans-serif;

}
#leftholder {
	width: 300px;
	border: 1px solid #CCCCCC;
	float: left;
	
}
#leftholder a {
	display:block;
	padding: 3px 5px 3px 5px;
	border-top:1px solid #eeeeee;
}

#selected {
	display:block;
	padding: 3px 5px 3px 5px;
	border-top:1px solid #eeeeee;
	background-color:#fffcd0;
}
#leftholder a:hover {
	background-color:#fffcd0;

}
#rightholder {
	width: 230px;
	float: right;
}
#container {
	width: inherit;
}
#midcolumn {
	padding-left: 5px;
	width: 535px;
}
.mainpage #midcolumn {
	padding-right: 0px;

}
.odd {
	background-color: #FFFFFF;
}
.tdhover {
	cursor: pointer;
}
body {
	font-family: Arial, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
p {
font-weight:normal;
line-height:13px;
}
.ProductTable {
	margin:0px;
	padding:0px;
	width:300px;
}
#products {
	width:300px;
	overflow: auto;
}
#family_a {
	color:#FF0000;
}
#Description_Detail_DIV {
	color: #000000;
}
#more_link { padding-left:10px;} 
#midcolumn #leftholder .outline li a {
	text-decoration:none;
} 
#midcolumn  .outline .root1 li {
	list-style-type:none;
	text-decoration:none;
	/*display: inline;  this gets rid of the gaps */
}
#midcolumn  .outline .root1 li {
	list-style-type:none;
	text-decoration:none;
	width:300px;
}
.product_a a{
	text-decoration:none;
	color:#000000;
}
#midcolumn li {
	padding-bottom: 0px;
	list-style-image:none;
}
#products li a {
	text-decoration:none;
	color:#000000;
	padding-left:15px;
}

#midcolumn .outline .productChild li a {
	text-decoration:none;
	color:#000000;
	padding-left:30px;
	vertical-align: bottom; /* This fixes the IE5 Win gap! */
}
#midcolumn .outline .root1 li a:active {
	color: #FF6600;
	font-size:12px;

}
#midcolumn .outline .root1 li a:link, #midcolumn  .outline .root1 li a:visited {
	color:#000000;
	font-size:12px;
	text-decoration:none;
	}
.outline ul, .outline {
	padding: 0px;
	margin: 0px;
}
#midcolumn li.root1 strong {
	cursor:pointer;
	padding: 3px 0px 3px 5px;
	display:block;
	color:#333333;
}
.odd {background: #dfeefe;}
.even {background-color: #f0f7ff; 
}
#midcolumn .outline li { padding-bottom: 0; text-decoration:none; }
	
.outline {
	list-style-type:none;
	text-decoration:none;
}
#applicationTable thead {
	
}
.clicked {
	background-color:#63a7ff;
	background-image:url(/assets/images/arrow_sgi-ProductExplorer.gif);
	background-repeat:no-repeat;
	background-position:5px;
}
.SpryHiddenRegion {
 visibility:hidden;
 }
 
.familyNameStyle {
 	font-style: italic;
	font-size: 0.8em;
 }
#CollapsiblePanel1 .CollapsiblePanelContent {
 height: 250px;
 	overflow-x:hidden;
 overflow-y:auto;
 
  }

