@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels { /* Width of tabbed panel on main drives page */
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: auto; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}
.Products { /* Width of tabbed panel on all products pages */
	margin: 0px;
	padding: 0px;
	/*	float: left; */
	clear: none;
	width: 920px;
}
/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
 
/*************Copied and modified from #ProductsTabs below  */
#MasterTabbedPanel { /* keeps the choices for Product Tables and Automated Servo Drive Selection Tool from collapsing */
	width: 850px;
}
#MasterTabbedPanel .TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}
#MasterTabbedPanel .TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 2px 10px;
	margin: 0px 30px 0px 40px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: transparent; /* was #DDD  */
	list-style: none;
	border: none;
/*	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;*/
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	color: #CB2026;
	text-decoration: none;
}
#MasterTabbedPanel .TabbedPanelsTabHover {
/*	background-color: #CCC;*/
	color: #999;
}
#MasterTabbedPanel .TabbedPanelsTabSelected {
/*	background-color: #F8F8F8;
	border-bottom: 1px solid #EEE;*/
	color: #333;
	text-decoration: none;
	cursor: default;
}

.TabbedPanelsContentGroupMaster {
	clear: both;
/*	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;*/
	background-color: #FFFFFF;
}
#MasterTabbedPanel h4.MasterTabHeader {
	text-align: center;
	font-size: 12px;
	color: #444444;
	margin: 10px 0 20px 0;
	padding: 0px;
}
/************* End Copy                   */

#ProductTabs .TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
#ProductTabs .TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 2px 10px;
	margin: 0px 1px 0px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #CCC; /* was #DDD */
	list-style: none;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	color: black; /* added to undo the effects from #MasterTabbedPanel  */
	text-decoration: none; /* added to undo the effects from #MasterTabbedPanel  */
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
#ProductTabs .TabbedPanelsTabHover {
	background-color: #999; /* was #CCC */
}
#ProductTabs .TabbedPanelsTabGroup .TabOne {
	width: 137px;
}
/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
#ProductTabs .TabbedPanelsTabSelected {
	background-color: #FFFFFF; /* was #f8f8f8 */
	border-bottom: 1px solid #FCF8D6;/* choose same color as surrounding background to hide division between tab and content */
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 2px #333;
	border-top: solid 1px #CCC;
	border-right: solid 2px #333;
	background-color: FFFFFF;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 4px;
/*	min-height: 360px;/* Set specifically for each page on internal style sheet, don't set here */
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/*   Styles for the tables inside the spry tabbed panel **********************************************************************/
.TabbedPanels table.ProductInfo{ /* Tables that contain information and images for product families. These tables are placed above the product tables. */
	border-width: 0px;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	margin: 10px 0px 5px 0px;
	border: 0;
}
.TabbedPanels table.ProductInfo td {
	vertical-align: top;
}
#mainContent .TabbedPanels table.ProductInfo li {
	font-weight: bold;
}
#mainContent .TabbedPanels table.ProductInfo li:first-child {
	list-style-type: none;
	margin-left: -15px;
	font-size: 12px;
}

.TabbedPanels table.Header{ /* Separate header table for the features tables on the drives page */
	width: 100%;
	border-collapse: collapse;
	border-width: 0px;
	text-align: left;
	vertical-align: middle;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	font-style: normal;
/*	color: #CB2026;*/
}
.TabbedPanels table.Header td {
	margin: 0px;
	padding: 10px 2px 8px 30px;
	white-space: nowrap;
}
.TabbedPanels table.DriveFeatures {/* Features table for the drives page */
	width: 900px;
	background-color: #FFFFFF;
	margin-bottom: 10px;
	border-collapse: collapse;
	border-width: 1px;
	border-color: #77777F;
	border-style: solid;
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.TabbedPanels table.DriveFeatures th {
	background-color: #EEEEEE;
	margin: 0px;
	padding: 2px 2px 2px 2px;
	border-width: 1px;
	border-color: #77777F;
	border-style: solid;
	/*	font-style: italic;*/
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.TabbedPanels table.DriveFeatures th.tall {
	height: 70px;
}
.TabbedPanels table.DriveFeatures td {
	margin: 0px;
	border-width: 1px;
	border-color: #77777F;
	border-style: solid;
	font-weight: bold;
	white-space: nowrap;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}
/*.TabbedPanels table.DriveFeatures td a, table.DriveFeatures td a:hover {
	display: block;
	cursor: pointer;
	text-decoration: none !important;
	color: #000000 !important;
}*/
.TabbedPanels table.DriveFeatures td {
	cursor: pointer;
	padding-left: 2px;
	padding-right: 0;
}

.TabbedPanels table.DriveFeatures tr:hover { /* Row hover */
	background-color: #C0C0C0;
}
.TabbedPanels table.DriveFeatures tr .mergedown { /* Overwrites the mouseover effects for merged rows */
	background-color: #FFFFFF;
}
.TabbedPanels table.DriveFeatures .colTwo {
	width: 85px;
}
.TabbedPanels table.DriveFeatures .colThree {
	width: 260px;
}
.TabbedPanels table.DriveFeatures .colFourA {
	width: 50px;
	font-size: 9px;
	margin: 0;
	padding: 0;
}
.TabbedPanels table.DriveFeatures .colFourB {
	width: 50px;
	font-size: 9px;
	margin: 0;
	padding: 0;
}
.TabbedPanels table.DriveFeatures .colFive {
	width:73px;
}
.TabbedPanels table.DriveFeatures .colSix {
	width:70px;
}
.TabbedPanels table.DriveFeatures .colSeven {
	width:70px;
}
.TabbedPanels table.DriveFeatures .ContentColFirst {
	width:100px;
}
.TabbedPanels table.DriveFeatures .ContentColWidth {
	width:90px;
}

#ServoTabMain {
	padding: 5px 10px;
    display: inline;
    background: #FC9;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	
	}

