/* THEME **************************************************************************************************************/

:root {
    --color-raymond-red                 : #D9232E;
    }

/* STYLES *************************************************************************************************************/

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 12px;
}

body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: white;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

body.hStripes {
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.2) 2%, transparent 5%, transparent);
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1) 2%, transparent 5%, transparent);
  background-size: 100% 20px;
  background-position: 0px -10px;
}

body.vStripes {
  background-image: -moz-linear-gradient(left, #dddddd 0%, white 5%, white 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.2)), color-stop(5%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-size: 20px 100%;
  background-position: 0px -10px;
}

td {
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 20px;
}

td.CloserFirst {
  padding-top:  5px;
  line-height: 15px;
}

td.Closer{
  line-height: 15px;
}

td.CloserLast {
  line-height:   15px;
  padding-bottom: 5px;
}

th {
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 20px;
}

p {
  margin: 20px 0;
}

input:not([type]),
input[type="text"],
input[type="password"],
select,
textarea {
  font-family: Arial, sans-serif;
  border: 1px solid #555;
  border-color: #555 #CCC #CCC #555;
}

::placeholder,
.placeholder-like {
  font-style: italic;
  color: #003366;
  opacity: 1; /*FF*/
}

span[onclick],
div[onclick],
button {
  cursor: pointer;
}

span[onclick]:hover,
div[onclick]:hover,
#ShoppingActionsCommon span[onclick]:hover {
  color: #ee3424;
}

.superscript {
  line-height:  0;
  font-size:    75%;
}

.FlipH {
  transform: scaleX(-1);
}

th > span[onclick]:hover {
  color: white;
  font-weight: bold;
}

.Problem {
  border: 2px dotted #FF8B00;
}

.Description {
  color: gray;
  text-decoration: none;
  font-family: Arial Narrow, Arial, sans-serif;
  line-height: 10px;
  font-weight: normal;
}

.Faded {
  color: gray;
}

.ExtraFaded {
  color: #BBBBBB;
}

.Wait * {
  cursor: wait;
}

.Right {
  text-align: right;
}

.RightPad {
  text-align: right;
  padding-right: 0.5em;
}

.Left {
  text-align: left;
}

.LeftPlus {
  text-align: left;
  padding-right: 0.5em;
}

.NoSideMargin,
.Button.NoSideMargin {
  margin-left: 0px;
  margin-right: 0px;
}

.Warn {
  background-color: yellow;
  color: red;
  font-weight: bold;
}

.Beware {
  color: red;
  font-weight: bold;
}


.TableEnhancerWrap {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: scroll;
  border-bottom: 1px solid #EEEEEE;
  box-shadow: 1px 0 0 0 #EEEEEE inset;
}

a:hover {
  color: #ee3424;
}

.Fright {
  float: right;
}

.NoBorder {
  border: 0px;
}

.Pointer {
  cursor: pointer;
}

.DisplayNone {
  display: none;
}

.Notice {
  color: red;
  font-weight: bold;
  font-style: italic;
}

.Subtitle {
  font-size: 18pt;
  font-weight: normal;
}

#WaitMask {
  display: none;
}

.Wait #WaitMask {
  display: block;
  position: fixed;
  z-index: 32000; /* see other 3nnnn above and below 32000 */
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  top: 52px;
  left: 0px;
}

#WaitMain {
  position: absolute;
  background-color: white;
  z-index: 1000;
  text-align: center;
  font-size: 10pt;
  padding-right: 195px;
}

#Wrapper {
  margin: 0px;
  height: 100%;
}

#WrapperTable {
  width: 100%;
  height: 100%;
}

#WrapperTable td {
  text-align: left;
  vertical-align: top;
}

#OuterWrap {
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 28px;
  padding-right: 28px;
  transition: padding 300ms;
}
@media (max-width: 1044px) {
  #OuterWrap {
    padding-left: 18px;
    padding-right: 18px;
    transition: padding 300ms;
  }
}

#Outer {
  width: 100%;
  height: 100%;
  text-align: left;
}

#Outer td,
#Outer th {
  text-align: left;
  vertical-align: top;
}

#Outer .Right {
  text-align: right;
}

.Top {
  position: relative;
  height: 50px;
  padding: 1px; /* LD:2024-05-07: 7px causes vertical misalignment and box to exceed the desired 50px height. */
  padding-bottom: 7px;
  padding-left: 28px;
  padding-right: 28px;
  transition: padding 300ms;
  background: url("../images/topBack.gif") repeat-x;
}
@media (max-width: 1044px) {
  .Top {
    padding-left: 18px;
    padding-right: 18px;
    transition: padding 300ms;
  }
}

#Logo {
  position: relative;
  display: inline-block;
  top: 50%;
  color: #ee3424;
  transform: translateY(calc(-50% + 4px));
  width: 220px;
  height: 36px;
  background-image: url("../images/iPartsLogo.gif");
  background-position: 0 0;
  background-repeat: no-repeat;
  color: #F0F5F8;
  font-size: 0px;
  cursor: pointer;
}

.Top #SystemLabel {
  position: relative;
  display: inline-block;
  top: 50%;
  color: #ee3424;
  transform: translateY(calc(-50% + 4px));
  }

.Top #Title {
  position: absolute;
  top: 15px;  /* LD:2024-05-07: Fix vertical centering within the 50px box height. */
  left: 50%;
  margin-left: -250px;
  width: 500px;
  height: 36px;
  font-size: 22px;
  color: #ee3424;
  text-align: center;
  text-shadow: 0px 1px 1px white;
  cursor:default;
}

.TopLink {
  float: right;
  margin: 16px 0px 0px 1em;
  font-size: 11px;
  text-shadow: 0px 1px 1px white;
}

.TopLink a {
  color: black;
}

.TopLink a:hover {
  color: #ee3424;
}

.TopLinkDropHead {
  color: black;
  text-decoration: underline;
  position: relative;
  /*overflow:visble; s/be visible*/
  }

.TopLinkDropHead:hover {
  color: #ee3424;
  text-decoration: none;
}

.TopLinkDropHead > div {
  display:none;
  }

.TopLinkDropHead:hover > div {
  display:block;
  }

.TopLinkDropdown {
  position: absolute;
  top: 0;
  left: -0.5em;
  padding-left: 0.5em;
  padding-bottom: 0.3em;
  margin:0;
  z-index:100;
  background-color:#E0E0E0;
  }

.RelativeZero {
  position:relative;
  /*top0; s/be top:0;*/
  left:0;
  width:0;
  height:0;
  }

#BreadCrumbs {
  line-height: 20px;
  height: 20px;
  max-height: 20px;
  /*vertical-align: center; s/be middle */
  padding-top: 6px;
  padding-bottom: 0;
  padding-left: 28px;
  padding-right: 270px;
  transition: padding 300ms;
}
@media (max-width: 1044px) {
  #BreadCrumbs {
    padding-left: 18px;
    padding-right: 260px;
    transition: padding 300ms;
  }
}

#BreadCrumbs .Link {
  cursor: pointer;
  color: black;
  font-size: 11px;
  text-decoration: underline;
  white-space: nowrap;
}

#BreadCrumbs .Link:hover {
  color: #ee3424;
}

#BreadCrumbs .Link.Last {
  text-decoration: none;
}

#BreadCrumbs .Link.Last:hover {
  color: black;
}

#BreadCrumbs .Arrow {
  font-size: 11px;
  color: black;
}

#BottomBar {
  vertical-align: bottom;
  line-height: 25px;
  height: 25px;
  background: url("../images/bottomBack.gif") repeat-x;
}

#BottomBar div {
  text-align: center;
  line-height: 23px;
  height: 23px;
  font-size: 7pt;
}

#BottomBar div a {
  color: #333333;
  text-decoration: none;
}

#Welcome {
  margin-top: 0;
  padding-top: 5px;
  height: 40px;
}

#Main .CenteredInWindow {
  padding-right: 201px;
  text-align: center;
}

#Main {
  padding: 10px 0px 0px 10px;
}

#Main .Start {
  margin-top: 29px;
  margin-bottom: 29px;
}

#Main #Search.Minified {
  position: absolute;
  top: 6px; /*56px;*/
  right: 28px;
  transition: all 300ms;
}
@media (max-width: 1044px) {
  #Main #Search.Minified {
    right: 18px;
    transition: padding 300ms;
  }
}

#Main #Search.Minified #SearchField {
  width: 128px;
  transition: all 300ms;
}

#Main #Search #SearchButton {
  margin-right: 0px;
}

#Main #SearchField {
  width: 300px;
}

#Main #WelcomeMessage {
  text-align: center;
}

#Main #WelcomeMessageInner {
  width: 592px;
  margin: 0 auto 0 auto;
  text-align: left;
}

#Main #VirtualDomContent {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}

#Main .MessageBox {
  border: 1px solid #dddddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  padding: 19px;
}

#Main .Hidden {
  visibility: hidden;
}

#Main .Hidden * {
  visibility: hidden;
  width: 0px;
  height: 0px;
  font-size: 1pt;
  overflow: hidden;
}

#Main input.Error {
  background-color: #fffbbb;
  color: #ee3424;
}

#Main input.Error[title^="Error"], span.Error {
  font-weight: bold;
  background: yellow;
  box-shadow: 0 0 0 1px orange inset;
}

#Main .ServiceTable {
  margin: 20px 0;
}

#Main .ServiceTable td.Description {
  padding-top: 5px;
}

#HomePromos {
  display: none;
  height: 206px;
  margin-bottom: 34px;
}

#HomePromosInner.MessageBox {
  margin: 0 auto;
  padding: 5px;
  height: 206px;
  width: 592px;
  text-align: center;
}

#HomePromos .PromoPageButtons {
  float: right;
  margin-top: 16px;
}

#HomePromos .PromoPageButtons span {
  cursor: pointer;
}

.PromoImageLayout1x1 {
  float: left;
  margin: 5px;
  height: 180px;
  text-align: center;
  overflow: hidden;
  width: 180px;
}

.PromoImageLayout2x1 {
  float: left;
  margin: 5px;
  height: 180px;
  text-align: center;
  overflow: hidden;
  width: 380px;
}

.PromoImageLayout3x1 {
  float: left;
  margin: 5px;
  height: 180px;
  text-align: center;
  overflow: hidden;
  width: 580px;
}

.PromoImageError {
  padding: 20px;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  background: #fffbbb;
  box-shadow: inset 0 0 30px yellow;
  text-shadow: 0px 1px yellow;
  color: #ee3424;
}

.PromoImageLayout1x1 img {
  cursor: pointer;
  max-height: 180px;
  background: white url("../images/loading.gif") center center no-repeat;
  max-width: 180px;
}

.PromoImageLayout2x1 img {
  cursor: pointer;
  max-height: 180px;
  background: white url("../images/loading.gif") center center no-repeat;
  max-width: 380px;
}

.PromoImageLayout3x1 img {
  cursor: pointer;
  max-height: 180px;
  background: white url("../images/loading.gif") center center no-repeat;
  max-width: 580px;
}

.PromoText {
  float: left;
  margin: 5px;
  height: 180px;
  text-align: center;
  overflow: hidden;
  width: 380px;
  height: 180px;
  background: #fffbbb;
  box-shadow: inset 0 0 30px yellow;
  padding: 10px;
  text-align: left;
  overflow: hidden;
}

.PromoText .Item {
  padding-left: 22px;
  margin-bottom: 20px;
  background: url("../images/incentiveButton.png") top left no-repeat;
}

#PromoPageParts .PromoApplied .PromoPrice {
  color: green;
}

#PromoPageParts .PromoApplied .RegularPrice {
  color: #bbb;
}

#PromoPageParts .PromoNear .PromoPrice {
  background: #fffbbb;
  font-weight: bold;
}

#PromoPageParts {
  clear: both;
  width: 600px;
}

#PromoPageParts td {
  vertical-align: middle;
}

#PromoPageParts.WithPhotos td {
  line-height: 54px;
}

#PromoPageParts .Photo {
  width: 50px;
  height: 50px;
  float: left;
  margin: 3px 10px 3px 0px;
}

#PromoPageParts.WithPhotos .PhotoWrap span {
  /*display: inline-block; float forces display:block */
  float: left;
  line-height: 50px;
  height: 50px;
  text-decoration: underline;
}

.PromoAppliedCheckMark {
  margin: 0 4px;
}

.PanZoom .Small {
  visibility: hidden;
  float: left;
  position: absolute;
  z-index: 3;
  top: 0px;
  left: 0;
  border: 3px solid gray;
}

.PanZoom .Big {
  visibility: hidden;
  float: left;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0;
}

.PanZoom .Viewer {
  float: left;
  position: relative;
  z-index: 1;
  top: 0px;
  border: 1px solid gray;
  margin: 0px;
  cursor: move;
  overflow: hidden;
}

.PanZoom .Area {
  float: left;
  position: absolute;
  z-index: 4;
  border: 2px solid orange;
}

.DrawingScaleOff {
  float: left;
  font-weight: normal;
  cursor: pointer;
  margin-right: 8px;
}

.DrawingScaleOn {
  float: left;
  font-weight: bold;
  cursor: pointer;
  margin-right: 8px;
  color: black;
}

.DrawingRow {
  float: left;
  clear: both;
}

#NavBar {
  width: 190px;
  min-width: 190px;
  padding-top: 19px;
  padding-right: 20px;
}

#NavBarWrap {
  width: 190px;
  min-width: 190px;
}

#NavBar .NavItem {
  min-height: 20px;
  padding-bottom: 14px;
  margin-bottom: 5px;
  border-bottom: 1px solid #dddddd;
  line-height: 20px;
}

#NavBar h1 {
  font-size: 12px;
  font-weight: bold;
  color: black;
  margin: 0;
  height: 20px;
  line-height: 20px;
}

#NavBar h1.Over {
  color: #ee3424;
  text-decoration: underline;
}

#NavBar .Alert h1 {
  background: #fffbbb;
  border-left: 2px solid #FFFBBB;
  margin-left: -2px;
}

#NavBar .Link {
  cursor: pointer;
  display: block;
  margin: 0px;
  padding-top: 1px;
  padding-left: 11px;
  font-size: 11px;
  text-decoration: none;
  height: 20px;
  /*vertical-align: center; s/be middle */
}

#NavBar .ShopCart .Link .Choose {
  float: left;
  width: 26px;
  height: 20px;
  margin-left: -10px;
  margin-top: -1px;
  margin-right: 3px;
  cursor: pointer;
}

#NavBar .ShopCart .Link .Choose input {
  margin-left: 10px;
  margin-top: 4px;
  cursor: pointer;
}

#NavBar .ShopCart .Link .Text {
  float: left;
  width: 134px;
}

#NavBar .ShopCart .Link .Text .Count {
  float: right;
}

#NavBar .ShopCart.NavItem.Highlight {
  background: white;
}

#NavBar .ShopCart .Link.Highlight,
#NavBar .ShopCart.Highlight * {
  background-color: #f1f2ed;
  color: #972117;
}

#NavBar .ShopCart .Link.Highlight.S0,
#NavBar .ShopCart.Highlight.S0 * {
  background-color: #d0ffb8;
  color: #000000;
  border-color: #61854e;
}

#NavBar .ShopCart .Link.Highlight.S1,
#NavBar .ShopCart.Highlight.S1 * {
  background-color: #d5fcc0;
  color: #190503;
  border-color: #7b996b;
}

#NavBar .ShopCart .Link.Highlight.S2,
#NavBar .ShopCart.Highlight.S2 * {
  background-color: #dbfac9;
  color: #320b07;
  border-color: #95ad89;
}

#NavBar .ShopCart .Link.Highlight.S3,
#NavBar .ShopCart.Highlight.S3 * {
  background-color: #e0f8d2;
  color: #4b100b;
  border-color: #b0c2a6;
}

#NavBar .ShopCart .Link.Highlight.S4,
#NavBar .ShopCart.Highlight.S4 * {
  background-color: #e6f6db;
  color: #64160f;
  border-color: #cad6c4;
}

#NavBar .ShopCart .Link.Highlight.S5,
#NavBar .ShopCart.Highlight.S5 * {
  background-color: #ebf4e4;
  color: #7d1b13;
  border-color: #e4eae1;
}

#NavBar .ShopCart .Link.Highlight.S6,
#NavBar .ShopCart.Highlight.S6 * {
  background-color: #f1f2ed;
  color: #972117;
  border-color: #ffffff;
}

#NavBar #ShopCart #NavBar_Group_Transfers .Text {
  width: 153px;
}

#NavBar .ShopCart .Link.Highlight *,
#NavBar .ShopCart .Link.Highlight.S0 *,
#NavBar .ShopCart .Link.Highlight.S1 *,
#NavBar .ShopCart .Link.Highlight.S2 *,
#NavBar .ShopCart .Link.Highlight.S3 *,
#NavBar .ShopCart .Link.Highlight.S4 *,
#NavBar .ShopCart .Link.Highlight.S5 *,
#NavBar .ShopCart .Link.Highlight.S6 * {
  background-color: transparent;
}

#NavBar .ShopCart .Link.Over {
  text-decoration: none;
}

#NavBar .ShopCart .Link.Over .Text .Name {
  text-decoration: underline;
  color: #ee3424;
}

#NavBar .ShopCart .Link.Over .Text .Current {
  text-decoration: underline;
  color: #ee3424;
}

#NavBar .Link.On,
#NavBar .ShopCart.On h1 {
  font-weight: bold;
  color: #ee3424;
}

#NavBar .Link.Over,
#NavBar .ShopCart.SingleCart:hover h1 {
  text-decoration: underline;
  color: #ee3424;
}

#NavBar .Link.TwoLine {
  padding-top: 3px;
  height: 27px;
  line-height:100%;
}

/*#NavBar .Link.On.TwoLine {
  padding-top: 3px;
  height: 27px;
}*/

/*#NavBar .Link.Over.TwoLine {
  padding-top: 3px;
  height: 27px;
}*/

#NavBar .italic {
  font-style: italic;
}

#NavBar #NavBar_IrmnPunchout,
#NavBar #NavBar_ShopHistory {
  float: right;
  font-weight: normal;
  color: black;
  margin-right: 6px;
  text-decoration: underline;
}

#NavBar #NavBar_IrmnPunchout:hover,
#NavBar #NavBar_ShopHistory:hover {
  color: #ee3424;
}

#NavBar #NavBar_IrmnPunchout.On,
#NavBar #NavBar_ShopHistory.On {
  font-weight: bold;
}

#NavBar #NavBar_Shopping,
#NavBar #Trader h1 {
  color: black;
  text-decoration: none;
}

#NavBar .VanDiv, #NavBar .WatDiv {
  padding-bottom: 4px;
  min-height: 10px
}

#NavBar .VanLink {
  height: auto;
  line-height: 120%;
}

#NavBar .VanLink:hover {
  color: #ee3424;
  text-decoration: underline;
}

#NavBar #NavBar_Shopping:hover,
#NavBar #Trader h1:hover {
  color: #ee3424;
  text-decoration: underline;
}

#NavBar #Trader.On h1,
#NavBar #BrokenOrders.On h1 {
  color: #ee3424;
}

#BottomBar #Scoding {
  /*position: absolute;*/
  /*bottom: 0px;*/
  /*left: 0px;*/
  float: left;
  z-index: 2;
  font-size: 12px;
  color: black;
  font-weight: bold;
  padding-left: 28px;
}

#BottomBar #Scoding:hover {
  color: #ee3424;
  text-decoration: underline;
}

#Results #PartView h2,
#Results #OtrPartView h2 {
  padding-top: 20px;
}

#Results #PartView .LessH2 h2,
#Results #OtrPartView .LessH2 h2 {
  padding-top: 10px;
}

#Results .ShopField,
#Results .ShopFieldLike {
  text-align: right;
  width: 4em;
  margin-top: -1px;
  height: 16px;
  padding-top: 0px;
  font-size: 12px;
  border: 1px inset;
}

#Results .PartView .ShopField {
  position: relative;
  top: -1px;
  width: 40px;
  height: 20px;
}

#Results .ShopPartsWide {
  text-align: left;
  width: 95%;
  margin-top: -1px;
  height: 16px;
  padding-top: 0px;
  font-size: 12px;
  border: 1px inset;
}

#ShoppingCartActions {
  margin-top: 20px;
}

#ShoppingActionsCommon,
.ActionLinks {
  padding: 10px 20px;
  float: right;
  text-align: right;
}

#ShoppingActionsCommon span {
  color: gray;
  font-size: 11px;
  cursor: pointer;
  margin-left: 20px;
}

.MainSubmitForm {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dddddd;
  clear: both;
  min-width: 250px;
}

#Results .MainSubmitForm h2 {
  color: black;
  margin-bottom: 20px;
}

.MainSubmitForm input[type=text],
.MainSubmitForm select,
.MainSubmitForm textarea {
  width: 250px;
  font-size: 11px;
}

#ShoppingCartActionsJde .MainSubmitForm input[type=text] {
  width: 125px;
}

#ShoppingCart.Update .NormalTable td {
  color: gray;
}

#ShoppingCart.Update .NormalTable td input {
  color: gray;
  border-style: solid;
  border-color: #dddddd;
}

#ShoppingCart.Update .NormalTable th {
  background-color: #a0a0a0;
  background-image: none;
}

#ShoppingCart .HighTop {
  background: url("../images/shoppingCartIncentiveBack.gif") top left repeat-x #fffbbb;
}

#ShoppingCart .IncentButton {
  width: 85px;
}

.IncentNear {
  background: url("../images/shoppingCartIncentiveBack.gif") bottom left repeat-x #fffbbb;
}

#ShoppingCart .Incent td.LeftBorder {
  border-right: none;
}

#ShoppingCart .Incent select {
  font-size: 11px;
}

#ShoppingCart .IncentNear {
  box-shadow: inset 0 -10px white;
}

.CoreCharge {
  background: #fffbbb;
}

#ShoppingCart .CoreCharge td.LeftBorder {
  border-right: none;
}

#ShoppingCart tr[class$='NotMetLine'] {
  box-shadow: inset 0 -10px white;
  height: 30px;
}

#ShoppingCart .NormalTable .IncentNear td {
  padding: 0px 2px 10px 17px;
  font-weight: bold;
  text-align: right;
  height: 59px;
  vertical-align: middle;
}

#ShoppingCart .IncentNear td.Confirming {
  font-weight: normal;
  padding-right: 2px;
  text-align: left;
}

#ShoppingCart .IncentSurcharge td {
  padding: 8px 5px 24px 11px;
  color: red;
  font-weight: bold;
  text-align: right;
  height: 32px;
  line-height: 16px;
}

#ShoppingCart .IncentDiscounted td {
  padding: 0px 5px 16px 11px;
  color: green;
  text-align: right;
  height: 16px;
  line-height: 16px;
}

.Button.IncentAccept {
  background: url("../images/shoppingCartIncentiveButtonAccept.gif") center left gray;
  padding-left: 28px;
}

.Button.IncentFix {
  background: url("../images/shoppingCartIncentiveButtonFix.gif") center left gray;
  padding-left: 28px;
}

#ShoppingCart .ExtSurcharge {
  color: red;
  font-weight: bold;
}

#ShoppingCart .ExtDiscounted {
  color: green;
}

.IncentCancel {
  float: right;
  color: gray;
  cursor: pointer;
  text-decoration: underline;
}

.BulkAdd {
  width: 85px;
  margin-right: 2px;
}

.BulkTextarea {
  border-width: 1px;
  font-size: 11px;
  font-weight: bold;
  color: #999;
  height: 28px;
  transition: all 200ms;
}

.BulkTextarea.BulkFocus {
  font-weight: normal;
  color: black;
  height: 90px;
  /*borderWidth: 2px; s/be border-width */
  transition: all 200ms;
}


#Shopping_bulkAddParts {
  resize:vertical;
}

#Trader_updateParts,
.BulkTextareaWide {
  width: 650px;
  margin-right: 10px;
}

.MiscTextarea {
  border-width: 1px;
  font-size: 11px;
  color: #aaa;
  height: 28px;
  transition: all 200ms;
}

.MiscTextarea.MiscTextareaFocus {
  /*borderWidth: 2px; s/be border-width */
  color: black;
  height: 90px;
}

#Trader_DealerBlock {
  border-top: #dddddd 2px solid;
  padding-top: 18px;
}

#ShoppingCart .PoNums {
  margin-bottom: 22px;
}

#ShoppingCart .PoNums td {
  line-height: 20px;
}

#Shopping_bulkAddAsTvh,
#Shopping_bulkAddParts {
  width: 640px;
}

.MainSubmitButtons {
  float: right;
}

.MainSubmitButtons .Button {
  margin-right: 0px;
}

.MainSubmitButtons .LargeButton {
  min-width: 150px;
}

.MainSubmitButtons a {
  color: gray;
  margin: 0 10px;
}

#ShipToOverride {
  width: 718px;
  background: #F1F2ED;
  padding: 13px 10px 10px 10px;
  margin: 10px 0px 10px 10px;
}

#ShipToOverride th {
  width: 120px;
  font-weight: normal;
  text-align: left;
  text-indent: 20px;
  padding-right: 10px;
}

#ShipToOverride td input,
#ShipToOverride td select {
  border-width: 1px;
  width: 240px;
}

#ShipToOverride .ShipToOverrideInstruction {
  text-indent: 10px;
  color: gray;
  padding-bottom: 12px;
}

#ShipToOverride .ShipToOverrideCancel {
  float: right;
  font-size: 11px;
}

#ShipToOverride .ShipToOverrideCancel a {
  color: gray;
}

#ShipToOverride #ShipToOverride_Postal {
  width: 80px;
}

#ShipToOverride .Faded {
  font-size: 11px;
}

#BrokenOrderView_Table button {
  margin-left: 1em;
  border: 0px;
  background: transparent;
  font-family: Arial;
  height: 18px;
}
#BrokenOrderView_Table button input {
  margin: 0 4px 0 0;
}

#Results .NormalTable .GroupSeperator td {
  text-align: left;
  font-weight: bold;
  font-size: 12px;
  padding-top: 20px;
  border-right: transparent;
  border-bottom: 2px solid #EEEEEE;
  color: gray;
}

.ShopHistory_Status {
  float: left;
  margin-left: 10px;
  color: gray;
}
.ShopHistory_Status td {
  color: gray;
}

#Results .NormalTable .ShopHistory_Status th {
  background-image: none;
  background-color: #87888C;
}
#Results .NormalTable .ShopHistory_Status td {
  border-bottom: 0px;
  border-right: 0px;
}

#Results {
  height: 200px;
  font-size: 12px;
  padding-top: 9px;
}

#Results.Center {
  padding: 100px;
  height: 500px;
  margin: 0px;
}

#Results.Scroll {
  height: 500px;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: scroll;
}

#Results h1,
#Results .h1Like {
  margin: 0px;
  height: 20px;
  font-size: 12px;
}

#Results h1 span,
#Results .h1Like span,
#Results .h1LinkLike {
  position: relative;
  float: right;
  color: gray;
  font-size: 11px;
  font-weight: normal;
  margin-left: 20px;
}

#Results h1 span:hover,
#Results .h1Like span:hover,
#Results .h1LinkLike:hover {
  color: #ee3424;
}

#Results h1 span .PlainSpan {
  float: none;
}

#Results h1 span.Title {
  float: left;
  margin-top: -2px;
  font-size: 18px;
  margin-left: 0px;
  color: #ee3424;
}

#Results h1 span.TitleDetail {
  float: left;
  margin-top: -2px;
  font-size: 15px;
  margin-left: 15px;
  color: #ee3424;
}

#Results .FindInPage input {
  width: 100px;
}

#Results .FindInPage img {
  cursor: pointer;
}

#Results #FindInBom_message {
  background-color: #fffbbb;
  display: none;
  color: red;
  font-weight: bold;
  font-style: normal;
  padding: 4px 0px 4px 8px;
  margin: -4px 8px 8px 0px;
  border: 1px solid #dddddd;
}

#Results #FindInBom_message .Close {
  margin-left: 8px;
  float: none;
  font-weight: normal;
}

#Results h1 span.NotesOn {
  background-color: #fffbc0;
  color: black;
  font-weight: bold;
  padding: 0px 2px 0 8px;
  border-color: #EEEEEE #DDDDDD #CCCCCC;
  border-style: solid;
  border-width: 1px 1px 2px;
  border-radius: 4px;
}

#Results h2 {
  font-size: 12px;
  color: gray;
  margin: 0px;
}

#Results .Link {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

#Results .LinkColor {
  color: blue;
}

#Results .Link:hover {
  color: #ee3424;
}

#Results .IncentNear {
  background-image: none;
}

.Wait #Results .Link {
  cursor: wait;
}

img {
  border: 0px;
  margin: 0px;
}

#Results .TreeLines0 {
  margin: 0px;
  width: 14px;
  height: 20px;
  margin-bottom: -6px;
}

#Results .TreeLines1 {
  margin: 0px;
  width: 14px;
  height: 20px;
  margin-bottom: -6px;
  background-image: url("../images/treeLinesThru.gif");
}

#Results .TreeLines2 {
  margin: 0px;
  width: 14px;
  height: 20px;
  margin-bottom: -6px;
  background-image: url("../images/treeLinesMid.gif");
}

#Results .TreeLines3 {
  margin: 0px;
  width: 14px;
  height: 20px;
  margin-bottom: -6px;
  background-image: url("../images/treeLinesEnd.gif");
}

#Results .TreeLines4 {
  margin: 0px;
  width: 14px;
  height: 20px;
  margin-bottom: -6px;
  background-image: url("../images/treeLinesMid.gif");
  background-position: top right;
}

#Results .TwoLines1m {
  background-image: url("../images/twoLines.gif");
  background-position: 0px    0px;
  background-repeat: no-repeat;
}

#Results .TwoLines1m2u {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -60px;
  background-repeat: no-repeat;
}

#Results .TwoLines1m2m {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -120px;
  background-repeat: no-repeat;
}

#Results .TwoLines1m2e {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -180px;
  background-repeat: no-repeat;
}

#Results .TwoLines1e {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -240px;
  background-repeat: no-repeat;
}

#Results .TwoLines1e2u {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -300px;
  background-repeat: no-repeat;
}

#Results .TwoLines1e2m {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -360px;
  background-repeat: no-repeat;
}

#Results .TwoLines1e2e {
  background-image: url("../images/twoLines.gif");
  background-position: 0px -420px;
  background-repeat: no-repeat;
}

#Results #ShoppingCart .Highlight * {
  background-color: #C8FFC0;
}

#Results #ShoppingCart .Highlight.S0 * {
  background-color: #C8FFC0;
}

#Results #ShoppingCart .Highlight.S1 * {
  background-color: #D1FFCA;
}

#Results #ShoppingCart .Highlight.S2 * {
  background-color: #DAFFD5;
}

#Results #ShoppingCart .Highlight.S3 * {
  background-color: #E3FFDF;
}

#Results #ShoppingCart .Highlight.S4 * {
  background-color: #ECFFEA;
}

#Results #ShoppingCart .Highlight.S5 * {
  background-color: #F5FFF4;
}

#Results #ShoppingCart .Highlight.S6 * {
  background-color: #FFFFFF;
}

#Results .NormalTable {
  width: 100%;
  border-left: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  margin-top: 20px;
}

#Results .NormalTable.TableEnhancerHead {
  margin-top: 19px;
}

#Results .NormalTable th {
  text-align: center;
  font-size: 7pt;
  font-weight: normal;
  padding: 0 1px;
  background-color: #999999;
  background-image: url("../images/tableHeaderBack.gif");
  background-repeat: repeat-x;
  color: white;
  text-transform: uppercase;
  height: 20px;
}

#Results .NormalTable th.TableEnhancerDirectionAsc {
  background-image: url("../images/tableHeaderBackAsc.gif");
  background-repeat: no-repeat;
  background-position: top left;
  text-indent: 12px;
  cursor: pointer;
}

#Results .NormalTable th.TableEnhancerDirectionDesc {
  background-image: url("../images/tableHeaderBackDesc.gif");
  background-repeat: no-repeat;
  background-position: top left;
  text-indent: 12px;
  cursor: pointer;
}

#Results .NormalTable td {
  box-sizing: border-box;
  text-align: center;
  font-size: 11px;
  padding: 0px 1px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  height: 19px;
  line-height: 19px;
}

#Results .NormalTable td input {
  font-size: 11px;
}

#Results .NormalTable th.NoBorder {
  border: 0px;
}

#Results .NormalTable td.NoBorder {
  border: 0px;
}

#Results .NormalTable td.LeftBorder,
#Results .NormalTable th.LeftBorder {
  border-left: 1px solid #eeeeee;
}

#Results .NormalTable td.NoLeftBorder {
  border-left: 0;
}

#Results .NormalTable td.NoRightBorder {
  border-right: 0;
}

#Results .NormalTable td.emphasis {
  background-color: #FFFFBF;
}

#Results .NormalTable .ThreeLine {
  line-height: 135%;
}

#Results .NormalTable .Center {
  text-align: center;
}

#Results .NormalTable .Left {
  text-align: left;
}

#Results .NormalTable .LeftPad {
  text-align: left;
  padding-left: .5em;
}

#Results .LeftPadCell {
  text-align: left;
  padding-left: .5em;
}

#Results .NormalTable .Right {
  text-align: right;
}

#Results .NormalTable .High {
  background-color: #FFFFBF;
}

#Results .NormalTable .Desc {
  position: relative;
  top: 0px;
  background-color: white;
  z-index: 3;
}

#Results .NormalTable .DescUnindent {
  position: static;
}

#Results .NormalTable .High .Desc {
  background-color: #FFFFBF;
}

#Results .NormalTable .Expand {
  padding: 0px;
  border-right: 0px;
  margin: 0px;
}

#Results .NormalTable .High .Expand {
  padding: 0px;
  border-right: 0px;
  margin: 0px;
}

#Results .PartListRow_ChooseRadio {
  border: solid #eeeeee;
  border-width: 0px 1px 1px 1px;
}

#Results .PartListRow_ChooseArrow {
  background-image: url("../images/treeLinesEndUp.gif");
  background-repeat: no-repeat;
  background-position: 1px 1px;
  margin-left: 14px;
}

#Results .PartPhotoThumb {
  width: 100px;
  height: 100px;
  border-top: 2px groove;
  border-left: 2px groove;
  border-bottom: 2px ridge;
  border-right: 2px ridge;
  visibility: hidden;
  cursor: pointer;
}

#Results .PartPhotoThumbHover {
  position: relative;
  z-index: 100;
  float: left;
  line-height: 16px;
  margin: -42px -108px -66px 8px;
  width: 100px;
  height: 100px;
  display: none;
  cursor: pointer;
  border-width: 1px 1px 2px 1px;
  border-style: solid;
  border-color: #ddd #ccc #bbb #ccc;
  font-size: 11px;
  padding: 10px;
  text-align: left;
  padding-top: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
}

#Results .Column {
  float: left;
  margin-right: 20px;
  padding-left: 10px;
}

#Results .Column h1 {
  height: auto;
  /*for whatever reason, without this IE8 won't float the columns!*/
}

#Results .Overflow {
  color: gray;
  font-style: italic;
  font-family: Arial;
}

.ManageSmartSearch {
  margin-left: 16px;
}

.ManageSmartSearch * {
  font-size: 12px;
}

.ManageSmartSearch h1 {
  font-size: 10pt;
  margin: 16px 0px 0px 0px;
}

.ManageSmartSearch h2 {
  font-size: 12px;
  color: gray;
  margin: 16px 0px 8px 0px;
}

.ManageSmartSearch th {
  text-align: left;
  /*vertical-align: center; s/be middle */
}

.ManageSmartSearch td {
  text-align: left;
  /*vertical-align: center; s/be middle */
}

.ManageSmartSearch .checkbox {
  margin-top: 0px;
}

.ManageSmartSearch input {
  margin-top: -2px;
  width: 100%;
}

#Results .PartView th {
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  padding-right: 1em;
  vertical-align: top;
}

#Results .PartView {
  margin-right: 20px;
}

#Results .PartView td {
  font-size: 12px;
  line-height: 18px;
  vertical-align: top;
}

#Results .PartView.Closer th,
#Results .PartView.Closer td {
  line-height: 145%
} /* any smaller and Photo overlays BOM description */


#Results .PartViewAvail th, #Results .PartViewAvail td {
  line-height: 0.8em;
  height: 0.8em;
}

#Results .PartViewAvail td {
  text-align: right;
}

#Results .PartView .IncentApplied .IncentFlag {
  position: fixed;
  margin: 0px;
  float: none;
}

#Results .IncentApplied {
  color: green;
}

#Results .IncentBubble {
  width: 200px;
  height: 90px;
  background: #fffbbb;
  box-shadow: 0px 2px 2px #444444, inset 0px -10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  line-height: 15px;
  border-width: 1px 1px 2px 1px;
  border-style: solid;
  border-color: #ddd #ccc #bbb #ccc;
  font-size: 11px;
  padding: 10px;
  text-align: left;
}

#Results .IncentBubble .IncentText {
  font-weight: bold;
  height: 50px;
  overflow: hidden;
}

#Results .NormalTable .IncentAvailable {
  background: #FFFBBB;
}

#Results .NormalTable .IncentFlag {
  position: relative;
  z-index: 100;
  float: right;
  margin: -2px -11px -2px -27px;
}

#Results .NormalTable .IncentFlag:hover {
  background: #ff8;
  box-shadow: 0px 1px 2px #f82;
  border-radius: 20px;
}

#Results .NormalTable .IncentBubble {
  position: absolute;
  z-index: 200;
  left: 0px;
  float: none;
  margin: 5px 0px 0px 0px;
}

#Results .NormalTable .IncentBubble .Button {
  float: right;
}

#Results .NormalTable .IncentBubble .IncentBubblePoint {
  position: absolute;
  right: 7px;
  top: -7px;
}

#Results .NormalTable .IncentBubble .IncentCancel {
  float: left;
  padding-top: 3px;
  padding-left: 8px;
}

#Results .Alternatives {
  clear: both;
  font-size: 12px;
}

#Results .Supersession {
  clear: both;
  font-size: 12px;
}

#Results .Supersession td {
  font-size: 12px;
}

#Results .Supersession td.Legend {
  padding-left: 1em;
  color: gray;
}

#Results .Supersession .bold {
  font-weight: bold;
  font-size: 12px;
}

#Results .Supersession div.Notice {
  font-size: 14px;
  line-height: 20px;
}

#Results .Supersession .TreeLines0 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
}

#Results .Supersession .TreeLines1 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
  background-image: url("../images/treeLinesThru.gif");
}

#Results .Supersession .TreeLines2 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
  background-image: url("../images/treeLinesUp.gif");
}

#Results .Supersession .TreeLines3 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
  background-image: url("../images/treeLinesEndUp.gif");
  background-position: 0px -1px;
}

#Results .Supersession .TreeLines4 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
  background-image: url("../images/treeLinesMid.gif");
  background-position: top right;
}

#Results .Supersession .Replacements .TreeLines2 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
  background-image: url("../images/treeLinesArrow.gif");
}

#Results .Supersession .Replacements .TreeLines3 {
  margin: 0 0 -4px 0;
  width: 14px;
  height: 18px;
  background-image: url("../images/treeLinesEndDown.gif");
  background-position: 0px -4px;
}

#Results .Hidden {
  visibility: hidden;
  width: 0px;
  height: 0px;
  overflow: hidden;
}

#Results .Hidden * {
  visibility: hidden;
  width: 0px;
  height: 0px;
  overflow: hidden;
}

#Results .WhereUsed .BrightBar {
  background-image: url("../images/solid.gif");
}

#Results .Xref {
  clear: both;
  width: 600px;
}

#Results .Xref .XrefFilterWrap {
  margin-left: 2px;
  width: 110px;
  height: 20px;
  /*whitespace: nowrap; s/be white-space */
  text-align: right;
}

#Results .Xref #XrefFilter {
  width: 50px;
}

#Results .Xref #XrefTable {
  width: 600px;
}

#Results .Xref #XrefTable .XrefCol {
  width: 190px;
  float: left;
}

#Results .Xref .XrefPrefix.Description {
  line-height: 20px;
}

#Results .Xref #XrefTable .XrefPart {
  padding-left: 14px;
}

#Results #PartView .NormalTable {
  margin-top: 0;
}

.BrightBar {
  background-image: url("../images/progress.gif");
  background-position: 100% -1px;
  width: 1%;
  height: 13px;
}

#Results .ScgList {
  width: 99%;
  border-left: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}

#Results .ScgList th {
  text-align: center;
  font-size: 7pt;
  padding: 1px;
  background-color: #AAAAAA;
  color: white;
  text-transform: uppercase;
  border-bottom: 1px solid #888888;
}

#Results .ScgList td {
  text-align: center;
  font-size: 10pt;
  padding: 1px;
  padding-bottom: 4px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #dddddd;
}

#Results .ScgList .Left {
  text-align: left;
}

#Results .ScgList .LeftPad {
  text-align: left;
  padding-left: .5em;
}

#Results .ScgList .Right {
  text-align: right;
}

#Results .ScgList .New .DragHandle {
  position: relative;
  top: 4px;
}

#Results .ScgList .Old .DragHandle {
  visibility: hidden;
}

#Results .ScgList .Old * {
  color: #888888;
}

#Results .ScgList .Old td {
  padding-top: 12px;
  padding-bottom: 4px;
  border-bottom: 0px;
}

#Results .ScgList .Changed {
  background-image: url("../images/changedArrow.gif");
  background-repeat: no-repeat;
  background-position: center bottom;
}

#Results .ScgList .Short {
  width: 2em;
  text-align: right;
}

#Results .ScgSteps {
  margin-top: 13px;
}

#Results .ScgStepList {
  font-size: 11px;
  font-family: Arial Narrow;
}

#Results .ScgStepList .current {
  font-weight: bold;
}

#Results .NormalTable.ScManual td {
  border-width: 0px;
}

#ProblemReport {
  position: absolute;
  z-index: 100;
  right: 5px;
  top: 5px;
  width: 500px;
  height: 100px;
  background-color: white;
  border-width: 1px 1px 2px 1px;
  border-style: solid;
  border-color: #ddd #ccc #bbb #ccc;
  font-size: 11px;
  padding: 10px;
  text-align: left;
  padding-top: 5px;
}

#ProblemReport h1 {
  margin: 0;
  font-size: 11px;
}

#ProblemReport h1 span {
  text-decoration: underline;
}

#ProblemReport h1 a {
  display: block;
  float: right;
  border: 1px solid #dddddd;
  text-decoration: none;
  color: red;
  font-size: 7pt;
  margin-right: 2px;
}

#ProblemReport div {
  font-size: 11px;
  padding: 0px;
}

.Close {
  border: 1px solid transparent;
  color: red;
  cursor: pointer;
  float: right;
  font-size: 7pt;
  height: 12px;
  line-height: 9px;
  max-height: 12px;
  max-width: 12px;
  text-decoration: none;
  top: -2px;
  width: 12px;
}

#Notes.Off {
  display: none;
}

#Notes.On {
  position: absolute;
  z-index: 90;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../images/blank.gif");
}

#Notes.On #NotesDismiss {
  position: absolute;
  z-index: 91;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../images/blank.gif");
}

#Notes.On #NotesBody {
  position: absolute;
  z-index: 92;
  width: 260px;
  border: 2px solid #ff8a00;
  background: #fffbbb;
  border-width: 1px 1px 2px 1px;
  border-style: solid;
  border-color: #ddd #ccc #bbb #ccc;
  font-size: 11px;
  padding: 10px;
  text-align: left;
}

#Notes.On .Header {
  height: 20px;
}

#Notes.On .Header .Title {
  float: left;
  font-weight: bold;
  font-size: 12px;
}

#Notes.On textarea {
  width: 100%;
  height: 64px;
  font-family: arial;
  font-size: 12px;
}

#Notes.On select {
  width: 100%;
  margin-top: 2px;
  font-family: arial;
  font-size: 12px;
}

#Notes.On input {
  width: 100%;
  margin-top: 2px;
  font-family: arial;
  font-size: 12px;
}

#Notes.On .Row {
  width: 100%;
  clear: both;
  border-width: 0;
  border-top: 1px #D8D8D0 solid;
  padding-top: 5px;
  margin-top: 3px;
}

#Notes.On .Pending {
  color: gray;
  border-width: 0px;
  padding-top: 0px;
  margin-top: 3px;
}

#Notes.On .Row .Text {
  float: left;
}

#Notes.On .Row .Overflow {
  width: 100%;
  height: 54px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
}

#Notes.On .Row .Source {
  float: right;
  color: gray;
  margin-bottom: 4px;
}

#Notes.On .Button {
  float: left;
  width: 100%;
  margin: 2px 0px 2px 0px;
}

#Notes.On .Button img {
  margin: 1px 0px -3px 2px;
  width: 14px;
  height: 14px;
  color: gray;
}

.ScManual td {
  padding: 1px;
  height: 24px;
}

.ScManual .Selected {
  background-color: #880000;
}

.ScManual .Selected td {
  color: white;
}

.ScManual .Copying {
  background-color: #888888;
}

.ScManual .Copying td {
  color: white;
}

.ScManual input {
  width: 100%;
  font-size: 11px;
  border-width: 1px;
}

#ScManual_Message {
  padding: .5em 0 .5em 0;
  visibility: hidden;
  font-style: italic;
}

#ScManual_Message.Visible {
  visibility: visible;
}

#ScManual_Message.Highlight {
  visibility: hidden;
}

#ScManual_Message.Highlight.S0 {
  visibility: visible;
  background-color: #FFFFA0;
}

#ScManual_Message.Highlight.S1 {
  visibility: visible;
  background-color: #FFFFAF;
}

#ScManual_Message.Highlight.S2 {
  visibility: visible;
  background-color: #FFFFBF;
}

#ScManual_Message.Highlight.S3 {
  visibility: visible;
  background-color: #FFFFCF;
}

#ScManual_Message.Highlight.S4 {
  visibility: visible;
  background-color: #FFFFDF;
}

#ScManual_Message.Highlight.S5 {
  visibility: visible;
  background-color: #FFFFEF;
}

#ScManual_Message.Highlight.S6 {
  visibility: visible;
  background-color: #FFFFFF;
}

#ScManualStructure_Message {
  padding: .5em 0 .5em 0;
  visibility: hidden;
  font-style: italic;
}

#ScManualStructure_Message.Visible {
  visibility: visible;
}

#ScManualStructure_Message.Highlight {
  visibility: hidden;
}

#ScManualStructure_Message.Highlight.S0 {
  visibility: visible;
  background-color: #FFFFA0;
}

#ScManualStructure_Message.Highlight.S1 {
  visibility: visible;
  background-color: #FFFFAF;
}

#ScManualStructure_Message.Highlight.S2 {
  visibility: visible;
  background-color: #FFFFBF;
}

#ScManualStructure_Message.Highlight.S3 {
  visibility: visible;
  background-color: #FFFFCF;
}

#ScManualStructure_Message.Highlight.S4 {
  visibility: visible;
  background-color: #FFFFDF;
}

#ScManualStructure_Message.Highlight.S5 {
  visibility: visible;
  background-color: #FFFFEF;
}

#ScManualStructure_Message.Highlight.S6 {
  visibility: visible;
  background-color: #FFFFFF;
}

.ScManualStructure .Active {
  background-color: #DBFFD7;
}

#ScManualStructure_PasteMultiple {
  width: 100%;
  height: 40px;
  margin-bottom: -3px;
  transition: height 300ms;
  font-size: 11px;
  font-family: Lucida Console, Courier New, monospace;
}

.ScCodingStepRow {
  height: 22px;
}

#GeneratePdf_Status .Error {
  color: red;
  font-weight: bold;
}

#Results .Details {
  width: 500px;
  padding: 0px;
  margin: 0px;
  padding: 0px;
}

#Results .Details table {
  width: auto;
}

#Results .Details table th {
  text-align: left;
  font-size: 12px;
  padding: 0 1em 0 0em;
  height: 20px;
  width: 25%;
  white-space: nowrap;
}

#Results .Details table td {
  text-align: left;
  font-size: 12px;
  height: 20px;
  padding: 0 4em 0 0em;
  width: 25%;
  white-space: nowrap;
}

#Results .Specifications {
  margin-bottom: 1em;
}

#Results .Specifications .Options {
  width: 500px;
  padding-top: 20px;
}

#Results .Specifications .Options .NormalTable {
  margin-top: 0px;
}

#Results .Details.ScChangeRequest {
  width: 450px;
}

#Results .Details.ScChangeRequest table th {
  vertical-align: top;
}

#Results .Details.ScChangeRequest table td {
  white-space: normal;
}

#Results .Details.ScChangeRequest table td input,
#Results .Details.ScChangeRequest table td select,
#Results .Details.ScChangeRequest table td textarea {
  width: 250px;
}

#Results .Details.ScChangeRequest table td textarea {
  font-size: 11px;
}

#Results .NormalTable.ScChangeRequest input {
  width: 100%;
}

.UsedOnBottom {
  float: left;
  margin-right: 2em;
}

.Scg td {
  font-size: 12px;
}

.ScgSvg .Side {
  float: left;
  margin: 0px 40px 20px 40px;
  text-align: center;
}

.ScgSvg .Side input {
  font-size: 12px;
  width: 160px;
}

.ScgSvg .SvgFrame {
  margin-top: 2px;
  width: 157px;
  height: 158px;
  border: 1px solid gray;
}

.ScgSvg .NoImage {
  display: block;
  line-height: 158px;
  margin-top: 2px;
  width: 159px;
  height: 158px;
  border: 1px dotted #bbbbbb;
  font-size: 12pt;
  font-weight: bold;
  color: #bbbbbb;
}

.ScgSvg .Cube {
  position: relative;
  top: 6px;
}

.ScgSvg h2 {
  margin: 0px;
  padding: 0px 10px 0px 0px;
}

.Cube {
  background-image: url("../images/cubeSprite.gif");
  width: 24px;
  height: 24px;
}

.Cube_1 {
  background-position: -4px -4px;
}

.Cube_2 {
  background-position: -36px -4px;
}

.Cube_3 {
  background-position: -68px -4px;
}

.Cube_4 {
  background-position: -4px -36px;
}

.Cube_5 {
  background-position: -36px -36px;
}

.Cube_6 {
  background-position: -68px -36px;
}

.Disabled {
  opacity: .75;
}

.Disabled td {
  color: gray;
}

.Disabled .Button {
  background: #ccc;
  color: #eee;
  box-shadow: none;
  text-shadow: none;
}

.Disabled .Button:hover {
  background: #ccc;
  color: #eee;
  box-shadow: none;
}

.Disabled a {
  color: gray;
}

.Disabled a:hover {
  color: gray;
}

.Button {
  margin: -1px 6px 0 6px;
  padding: 0px 4px 0px 0px;
  text-align: left;
  font-size: 12px;
  line-height: 20px;
  height: 22px;
  max-height: 22px;
  color: white;
  cursor: pointer;
  background: #999;
  box-shadow: inset 0px -8px 12px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  border: 0px;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  transition: all 300ms;
}

.Button:hover {
  background: #EE3424;
  box-shadow: inset 0px 8px 8px rgba(0, 0, 0, 0.1);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
  transition: all 300ms;
}

.Button .IcSm,
#Results .NormalTable .IncentBubble .IcSm {
  margin-bottom: -3px;
}

.Button.Submitting,
.Button.Submitting:hover {
  background: none repeat scroll 0 0 #EE3424;
  box-shadow: 0 0 8px yellow;
  color: #FFFF88;
  text-shadow: 0 0 1px yellow;
  transition: all 300ms;
}

.LargeButton {
  height: 40px;
  line-height: 40px;
  max-height: 42px;
  background-color: #888;
  box-shadow: inset 0px -18px 18px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 0px 18px 0px 10px;
  font-weight: bold;
}

.LargeButton:hover {
  box-shadow: inset 0px 28px 28px rgba(0, 0, 0, 0.1);
}

.IconOnlyButton {
  padding-right: 0px;
  border-radius: 8px;
}

.LeftButtons {
  clear: both;
}

.LeftButtons .Button {
  float: left;
  margin-left: 0px;
}

.RightButtons {
  clear: both;
}

.RightButtons .Button {
  float: right;
  margin-right: 0px;
}

.pointer {
  cursor: pointer;
}

.IcSm {
  margin: -4px 4px -4px 4px;
}

.IcSm img {
  width: 16px;
  height: 16px;
}

.Highlight {
  background-color: #ffffff;
}

.Highlight.S0 {
  background-color: #FFFFA0;
}

.Highlight.S1 {
  background-color: #FFFFAF;
}

.Highlight.S2 {
  background-color: #FFFFBF;
}

.Highlight.S3 {
  background-color: #FFFFCF;
}

.Highlight.S4 {
  background-color: #FFFFDF;
}

.Highlight.S5 {
  background-color: #FFFFEF;
}

.Highlight.S6 {
  background-color: #FFFFFF;
}

.Highlight * {
  background-color: #ffffff;
}

.Highlight.S0 * {
  background-color: #FFFFA0;
}

.Highlight.S1 * {
  background-color: #FFFFAF;
}

.Highlight.S2 * {
  background-color: #FFFFBF;
}

.Highlight.S3 * {
  background-color: #FFFFCF;
}

.Highlight.S4 * {
  background-color: #FFFFDF;
}

.Highlight.S5 * {
  background-color: #FFFFEF;
}

.Highlight.S6 * {
  background-color: #FFFFFF;
}

#PartView_NoPrintMessage {
  display: none;
}

.IcSm {
  /*hover: cursor; s/be cursor: hand */
  background-image: url("../images/IconSmall.png");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}

.IcSm img {
  width: 16px;
  height: 16px;
}

.Ic_0 {
  background-position: 0px -20px;
}

.Ic_sale {
  background-position: 0px -40px;
}

.Ic_agt_action_fail {
  background-position: 0px -60px;
}

.Ic_agt_action_success {
  background-position: 0px -80px;
}

.Ic_button_cancel {
  background-position: 0px -100px;
}

.Ic_cancel {
  background-position: 0px -120px;
}

.Ic_create {
  background-position: 0px -140px;
}

.Ic_db {
  background-position: -20px 0px;
}

.Ic_gpgsm {
  background-position: -20px -20px;
}

.Ic_iconview2_ps3 {
  background-position: -20px -40px;
}

.Ic_important {
  background-position: -20px -60px;
}

.Ic_kblackbox {
  background-position: -20px -80px;
}

.Ic_kgreenbox {
  background-position: -20px -100px;
}

.Ic_knotes {
  background-position: -20px -120px;
}

.Ic_lphoto {
  background-position: -20px -140px;
}

.Ic_mail_new {
  background-position: -40px 0px;
}

.Ic_pdf {
  background-position: -40px -20px;
}

.Ic_player_fwd {
  background-position: -40px -40px;
}

.Ic_prioritylow {
  background-position: -40px -60px;
}

.Ic_prioritymed {
  background-position: -40px -80px;
}

.Ic_priorityurgent {
  background-position: -40px -100px;
}

.Ic_refresh {
  background-position: -40px -120px;
}

.Ic_s100_1-20_81 {
  background-position: -40px -140px;
}

.Ic_s900_button_19b {
  background-position: -60px 0px;
}

.Ic_s900_button_19 {
  background-position: -60px -20px;
}

.Ic_s900_button_22 {
  background-position: -60px -40px;
}

.Ic_s900_button_37 {
  background-position: -60px -60px;
}

.Ic_s900_button_49 {
  background-position: -60px -80px;
}

.Ic_s900_filesandfolders_1 {
  background-position: -60px -100px;
}

.Ic_s900_filesandfolders_21 {
  background-position: -60px -120px;
}

.Ic_s900_filesandfolders_25 {
  background-position: -60px -140px;
}

.Ic_s900_filesandfolders_37 {
  background-position: -80px 0px;
}

.Ic_s900_filesandfolders_41 {
  background-position: -80px -20px;
}

.Ic_s900_filesandfolders_49 {
  background-position: -80px -40px;
}

.Ic_s900_misc_49 {
  background-position: -80px -60px;
}

.Ic_s900_tool_37 {
  background-position: -80px -80px;
}

.Ic_s900_tool_61 {
  background-position: -80px -100px;
}

.Ic_s900_tool_73 {
  background-position: -80px -120px;
}

.Ic_s900_tool_73b {
  background-position: -80px -140px;
}

.Ic_s900_tool_9 {
  background-position: -100px 0px;
}

.Ic_view_text {
  background-position: -100px -20px;
}

.Ic_winxp_disk_2 {
  background-position: -100px -40px;
}

.Ic_winxp_printer_6 {
  background-position: -100px -60px;
}

.Ic_winxp_system_13 {
  background-position: -100px -80px;
}

.Ic_winxp_system_23 {
  background-position: -100px -100px;
}

.Ic_winxp_system_35 {
  background-position: -100px -120px;
}

.Ic_wrench {
  background-position: -100px -140px;
}

.Ic_xls {
  background-position: -120px 0px;
}

.Ic_yellow_up {
  background-position: -120px -20px;
}

.Ic_spray_can {
  background-position: -120px -40px;
}

#CssBoxWrap {
  display: none;
  /* z-index (with position:relative) had odd effects */
}
#CssBoxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4; /* replaced dynamically */
  cursor: default;
  /* z-index: 31001 or 33001 set dynamically */
}
#CssBoxPosition {
  position: absolute;
  left: 30%;
  top: 10%;
  width: 35%; /*oldIE*/
}
#CssBox {
  position: relative;
  display: inline-block;
  width: auto; /*400px;*/
  margin: 0 auto;
  background-color: white;
  padding: 15px;
  border: 2px solid black;
  cursor: default;
  /* z-index: 31002 or 33002 set dynamically */
}
#CssBoxBody {
  overflow: auto;
  max-height: 450px;
  height: auto !important;
  height: 450px; /*oldIE*/
  cursor: default;
}
#CssBoxHr {
  cursor: default;
}
#CssBoxOk {
  float: right;
  cursor: pointer;
}
@media print {
  html {
    width: 100%;
    height: 100%;
    margin: 0px;
  }

  body {
    width: 100%;
    height: 100%;
    margin: 0px;
    background-image: none;
    background-color: white;
  }

  .Top {
    height: 20px;
    padding: 0px;
  }

  .TopLink {
    display: none;
  }

  .Top #Title {
    position: static;
    margin-left: 0px;
    width: auto;
    font-size: 15pt;
  }

  #Logo {
    font-size: 8pt;
    color: black;
    background-image: none;
    height: 20px;
  }

  #Wrapper {
    margin: 0px;
  }

  #OuterWrap {
    height: auto;
    padding: 0px;
  }

  #NavBar,
  #NavBarBottom,
  #NavBarWrap {
    display: none;
  }

  #Results h1 span {
    display: none;
  }

  #Results h1 span.Title {
    display: inline;
  }

  #BreadCrumbs {
    float: left;
    line-height: 18px;
    height: 18px;
    max-height: 18px;
    padding: 0px;
  }

  #BreadCrumbs .Link {
    color: black;
    font-size: 8pt;
  }

  #BreadCrumbs .Arrow {
    font-size: 7pt;
    color: black;
  }

  #Main {
    padding: 8px 0px 0px 0px;
  }

  #Results.Scroll {
    height: auto;
    overflow: visible;
  }

  #Results h1 {
    margin-top: 0px;
  }

  #Search {
    display: none;
  }

  #Results .Print {
    display: none;
  }

  .Button {
    display: none;
  }

  * input {
    border-width: 0px 0px 1px 0px;
    border-color: black;
    border-style: solid;
  }

  #Results .ShopField {
    border-width: 0px 0px 1px 0px;
    border-color: black;
    border-style: solid;
    font-size: 8pt;
  }

  #Results #ShoppingCart .IncentNear {
    display: none;
  }

  #Results #ShoppingCart .IncentSurcharge {
    display: none;
  }

  #Results #ShoppingCart .NormalTable #Shopping_BulkAdd {
    display: none;
  }

  #Results #ShoppingCart .HighTop {
    background-image: none;
  }

  #Results #ShoppingCart .NoBottom td {
    border-bottom: 1px solid #eeeeee;
  }

  #PartView.NoPrint {
    display: none;
  }

  #PartView_NoPrintMessage.NoPrint {
    display: block;
    font-style: italic;
    margin-top: 20px;
  }

  #PartView_NoPrintMessage.YesPrint {
    display: none;
  }

  .TableEnhancerWrap {
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    page-break-inside: auto;
  }

  .TableEnhancerWrap table {
    page-break-inside: auto;
  }

  div {
    display: inline;
  }

}
