/*These are the different tab sections
	tbSplitView contains Splitter splitViewNavSection which contains splitNav and SplitSection
	SplitSection contains splitter splitViewSection Which contains splitImage and splitParts
	The only items to scroll is splitNav, splitImage and splitParts. These are the final containers that hold data
	splitImage should never scroll as D3 image control handles the image. This is set when the image is loaded.
	splitNav and splitParts are set to auto*/
/*tbSectionList is the navigation one. All by it's self*/
#tbHLSM_Tabs_Section_List {
    overflow: auto; /*If the nav has to scroll, let it*/
}

#tbHLSM_Tabs_Section_List_html {
    text-align: center;
}

/*This is the split view with the image, nav two and parts list*/
#tbHLSM_Tabs_Split_View {
    overflow: hidden; /*The individual panels will scroll, not the container*/
}
.svHLSM_Splitter_Sections_html{
    overflow: auto;
    height: 100%;
}
#svHLSM_Splitter_Image_Parts {
    overflow: hidden; /*This is a splitter. Let the panels scroll, not this*/
}

#svHLSM_Splitter_Parts {
    overflow: auto; /*This is the parts list within the second splitter. Needs to scroll*/
}

#tbHLSM_Tabs_Partst_List { /*This is the parts list tab that used if the height is to small*/
    overflow: auto; /*Needs to scroll*/
}

#tbHLSM_Tabs_ShopCart { /*This is the tab section that has the cart*/
    overflow: auto; /*Needs to scroll*/
}

/*These are for the image items*/
#idImage_Incr {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 25px;
    border: 0;
}

#idImage_Decr {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 71px;
    border: 0
}

#idImgCopyright {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    left: 25px;
}

