@charset "utf-8";
#contentMain #TabbedPanels1 {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 40px;
	margin-left: 0px;
	position: static;
}


/* 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 {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	font-size: 12px;
}

/* 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.
 */
.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.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	background-color: #DDD;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family: sans-serif;
	font-size: 13px;
	font-weight: bold;
	height: 20px;
	width: 130px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-image: url(../_assets/general/TabbedStatesOff.png);
	line-height: 20px;
}

/* 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.
 */
.TabbedPanelsTabHover {
	background-image: url(../_assets/general/tabbedStatesHover.png);
}

/* 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.
 */
.TabbedPanelsTabSelected {
	background-image: url(../_assets/general/tabbedStatesSelected.png);
	font-size: 13px;
	font-weight: bold;
	color: #FFF;
}


/* 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;
	background-color: #fff;
	border: 1px solid #ccc;
}

/* 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: 10px;
}

/* 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 {
}
#TabbedPanels1 .TabbedPanelsContentGroup h1{
	font-size: 14px;
	font-weight: bold;
	color: #0033ff;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 10px;
}
#TabbedPanels1 .TabbedPanelsContentGroup h2{
	font-size: 13px;
	font-weight: normal;
	color: #0033ff;
	line-height: normal;
	margin-bottom: 10px;
}
#TabbedPanels1 .TabbedPanelsContentGroup h3{
	font-size: 12px;
	font-weight: normal;
	color: #004d80;
	line-height: normal;
	margin-bottom: 5px;
}
#TabbedPanels1 .TabbedPanelsContentGroup h6  {
	font-size: 11px;
	font-style: normal;
	color: #666;
	font-weight: normal;
	font-variant: normal;
	margin-bottom: 5px;
	line-height: 10px;
	vertical-align: text-top;
	display: block;
	margin-left: 10px;
}

#TabbedPanels1 .TabbedPanelsContentGroup a {
	font-size: 12px;
	font-weight: normal;
	color: #0066ff;
	line-height: normal;
}
#TabbedPanels1 .TabbedPanelsContentGroup p{
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	margin-top: 10px;
	margin-bottom: 10px;
}

#TabbedPanels1 .TabbedPanelsContentGroup ul{
	list-style-type: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 15px;
	margin-left: 10px;
}

#TabbedPanels1 .TabbedPanelsContentGroup ul li{
	list-style-type: none;
	background-image: url(../_images/greenLightArrow8px.gif);
	font-size: 12px;
	background-repeat: no-repeat;
	background-position: 0px 3px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}
#TabbedPanels1 .TabbedPanelsContentGroup table  {
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: arial, Verdana, tahoma, sans-serif;
	font-size: 12px;
	line-height: normal;
	font-weight: normal;

}
#TabbedPanels1 .TabbedPanelsContentGroup table tr {
	vertical-align: top;
}
#TabbedPanels1 .TabbedPanelsContentGroup table tr td {
	padding-left: 8px;
}
#TabbedPanels1 .TabbedPanelsContentGroup table .shadegrey td  h3{
	text-align: left;
	text-indent: -8px;
	padding: 0px;
	line-height: normal;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#TabbedPanels1 .TabbedPanelsContentGroup table .shadegrey  {
	background-color: #eee;
	font-size: 12px;
	line-height: 25px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	vertical-align: text-bottom;
}
#TabbedPanels1 .TabbedPanelsContentGroup table .alternategreyA {
	background-color: #eee;
}
#TabbedPanels1 .TabbedPanelsContentGroup table .alternategreyA td {
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
#TabbedPanels1 .TabbedPanelsContentGroup table .alternategreyB {

}
#TabbedPanels1 .TabbedPanelsContentGroup table .alternategreyB td {
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
#TabbedPanels1 .TabbedPanelsContentGroup table.table-infortrend   {

}

#TabbedPanels1 .TabbedPanelsContentGroup iframe {

}
#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab {
	margin: 0px;
	padding: 0px;
}
#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab  .warrantybox1{
	height: 210px;
	width: 380px;
	float: left;
	background-image: url(../_assets/products/warrantybox01.png);
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: 10px;
	margin-bottom: 30px;
	padding-right: 20px;
	padding-left: 20px;
}
#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab .warrantybox2{
	height: 210px;
	width: 380px;
	float: right;
	background-image: url(../_assets/products/warrantybox02.png);
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: 10px;
	margin-bottom: 30px;
	padding-right: 20px;
	padding-left: 20px;
}
#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab h1 {
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: left;
	font-size: 13px;
	color: #000;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
}
#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab .table1 {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;

}

#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab .table1 p {
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
#TabbedPanels1 .TabbedPanelsContentGroup #warrantyTab .table1 ul {
	margin: 0px;
	padding: 0px;
}
















/* CSS Document for Products under Storage */



#contentMain #productImg  {
	margin: 0px;
	padding: 0px;
	height: 250px;
	width: 610px;
	float: left;
	position: relative;
	text-align: center;
	border: 1px solid #eeeeee;
	overflow: hidden;
}
#contentMain #productImg h1 {
	font-size: 14px;
	font-style: normal;
	line-height: 15px;
	font-weight: bold;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#contentMain #productImg h2 {
	font-size: 12px;
	font-style: normal;
	line-height: 12px;
	font-weight: normal;
	font-variant: normal;
	color: #333;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


#contentMain #productImg img {
	padding: 0px;
	text-align: center;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	vertical-align: top;
}
#contentMain #productImg #Open-E {
	background-image: url(../_images/logo-open-e.gif);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 33px;
	width: 100px;
	position: absolute;
	left: 10px;
	bottom: 10px;
}
#contentMain #productImg #MServer {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 46px;
	width: 115px;
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-image: url(../_assets/logo/Microsoft-StorageServer.jpg);
}
#contentMain #productImg #microsoftGenericProd {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 55px;
	width: 78px;
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-image: url(../_assets/logo/logo-Windows-generic.jpg);
}

#contentMain #productImg #xyratex {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-image: url(../_assets/logo/logo-Xyratex123x25.jpg);
	height: 25px;
	width: 123px;
}
#contentMain #productImg #infortrendESVA {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-image: url(../_assets/logo/logo-vmware-ready.jpg);
	height: 46px;
	width: 85px;
}
#contentMain #productImg #infortrendEonStorDS {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-image: url(../_assets/logo/logo-infortrend-EonStorDS.jpg);
	height: 46px;
	width: 85px;
}
#contentMain #productImg #vmwareready {
	background-image: url(../_assets/logo/logo-vmware-ready.jpg);
	background-repeat: no-repeat;
	position: absolute;
	margin: 0px;
	padding: 0px;
	left: 97px;
	bottom: 11px;
	height: 46px;
	width: 76px;
}

#contentMain #productImg #infortrendES {
	background-image: url(../_assets/logo/logo-infortrend-ES.jpg);
	margin: 0px;
	padding: 0px;
	height: 46px;
	width: 85px;
	background-repeat: no-repeat;
	position: absolute;
	left: 10px;
	bottom: 10px;
}



#contentMain #productImg #intel {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 62px;
	width: 68px;
	position: absolute;
	bottom: 10px;
	background-image: url(../_assets/logo/Intel%20Logo%20Channel%20Partner%20Premier%202010.gif);
	right: 10px;
}
#contentMain #productImg #intelServerBoardLogo {
	background-image: url(../_assets/logo/intel-server-board-logo-68x62.png);
	height: 51px;
	width: 68px;
	position: absolute;
	left: 8px;
	bottom: 10px;
}

#contentMain #productImg #supermicro {
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0px;
	height: 33px;
	width: 165px;
	position: absolute;
	left: 10px;
	bottom: 10px;
	background-image: url(../_assets/logo/supermicro-logo.gif);
}


#contentMain #productImg #cm-oval {
	margin: 0px;
	padding: 0px;
	position: absolute;
	right: 10px;
	bottom: 10px;
	background-image: url(../_images/CM-Oval.jpg);
	width: 60px;
	height: 33px;
}
#contentMain #productImg #cm-oval.intel {
	margin: 0px;
	padding: 0px;
	position: absolute;
	right: 15px;
	bottom: 80px;
	background-image: url(../_images/CM-Oval.jpg);
	width: 60px;
	height: 33px;
}

#contentMain #productImg #cm-oval.xyratex {
	margin: 0px;
	padding: 0px;
	position: absolute;
	right: 10px;
	background-image: url(../_images/CM-Oval.jpg);
	width: 60px;
	height: 33px;
	top: 5px;
}

#contentMain #productImg #prodImg-xcse {
	background-image: url(../_assets/logo/Xyratex-XCSE-Certified-70x.png);
	background-repeat: no-repeat;
	right: 5px;
	position: absolute;
	height: 59px;
	width: 70px;
	top: 45px;
}
#contentMain #productImg #prodImg-xcps {
	background-image: url(../_assets/logo/Xyratex-XCPS-Certified-70x59.png);
	background-repeat: no-repeat;
	height: 59px;
	position: absolute;
	width: 70px;
	right: 5px;
	top: 113px;
}
#contentMain #productImg #prodImg-xcst {
	background-image: url(../_assets/logo/Xyratex-XCST-Certified-70x59.png);
	background-repeat: no-repeat;
	height: 59px;
	width: 70px;
	position: absolute;
	right: 5px;
	bottom: 10px;
}


#contentMain #productShortcuts {
	margin: 0px;
	padding: 0px;
	width: 300px;
	float: right;
	height: 250px;
	background-image: url(../_images/productShortcut-bkgdGrdt.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#contentMain #productShortcuts a {
	color: #0066ff;
	text-decoration: none;
	font-weight: normal;
	font-style: normal;
	line-height: normal;
	font-size: 12px;
	font-variant: normal;
	text-transform: none;
}
#contentMain #productShortcuts a:hover {
	text-decoration: underline;
}

#contentMain #productShortcuts h1 {
	font-size: 13px;
	font-style: normal;
	line-height: 20px;
	font-weight: bold;
	color: #000;
	text-align: center;
	margin-top: 3px;
}
#contentMain #productShortcuts h2 {
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #333;
	text-align: left;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#contentMain #productShortcuts h3 {
	font-size: 12px;
	line-height: 12px;
	color: #333;
	padding-left: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	padding-top: 3px;
	margin-bottom: -2px;
}

#contentMain #productShortcuts ul {
	padding: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#contentMain #productShortcuts ul li {
	list-style-type: none;
	background-image: url(../_images/green-grey-LightArrow8px.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 12px;
	font-size: 12px;
	color: #00F;
	margin: 0px;
}
#contentMain #productShortcuts ul .pShortcutHeader{
	text-decoration: none;
	list-style-type: none;
}
#contentMain #productShortcuts .psColumn {
	width: 49%;
	position: relative;
}
#contentMain #productShortcuts .psColumnLeft {
	float: left;
}
#contentMain #productShortcuts .psColumnRight {
	float: right;
}


#contentMain #supermicroIframe {
	padding: 0px;
	height: 600px;
	width: 930px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#contentMain .supermicroInfo {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
#contentMain .supermicroInfo p {
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
}
#contentMain .supermicroInfo a {
	font-size: 12px;
	color: #0066ff;
	text-decoration: none;
}
#contentMain .supermicroInfo a:hover {
	text-decoration: underline;
}
#contentMain .supermicroInfo ul {
	padding: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
#contentMain .supermicroInfo ul li {
	list-style-type: none;
	background-image: url(../_images/green-grey-LightArrow8px.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	font-size: 12px;
	color: #000;
	margin: 0px;
}

