/* -- Copyright © 2018 Gammill, Inc. All Rights Reserved -- */


   /* Style the tab */
        .tab, .tabstatic {
          overflow: hidden;
          border: 1px solid #f8f8f8;
          background-color: #f8f8f8;
        }

        /* Style the buttons inside the tab */
        .tab button, .tabstatic button {
          background-color: #ebebeb;
          float: left;
          border: none;
          outline: none;
          padding: 14px 16px;
          transition: 0.3s;
          font-size: 17px;
          cursor: pointer;
        }

        /* Change background color of buttons on hover */
        .tab button:hover, .tabstatic button:hover{
          background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
          background-color: #ccc;
        }

        /* Style the tab content */
        .tabcontent {
          display: none;
          border-top: none;
        }

        /* Scroll Arrow */
        .scrollArrow {
            display: inline-block;
            cursor: pointer;
            position: absolute;
            z-index: 1;
            top: 0px;
            height: 100%;
            box-shadow: 0px 10px 6px 6px #f8f8f8;
        }
        .scrollArrowLeft {left:0px;}
        .scrollArrowRight {right: 0px;} 

        .scrollArrow img {
            height: 50%;
            transform: translate(0, 50%);
            width: 55px;
        }
        
		.SideToSide{
			overflow-y: hidden; 
			overflow-x: hidden; 
			position: relative;     
			white-space: nowrap;
            height:100%; }
		.ShiftRight { cursor: pointer; background-color: #eee; width: 52px; height: 100%; 
			position: absolute; top: 0px; right: 0px; z-index: 2000; 
			border-radius: 10px; display: none;
			border: 1px solid #999;
			 background-repeat: no-repeat;
			 background-position: center center; background-image: url('/images/icons/page_next_hover2.png'); }
		.ShiftLeft { cursor: pointer; background-color: #eee; width: 52px; height: 100%; 
			position: absolute; top: 0px; left: 2px; z-index: 2000; 
			border-radius: 10px;display: none;
			border: 1px solid #999;
			 background-repeat: no-repeat;
			 background-position: center center; background-image: url('/images/icons/page_previous_hover2.png'); }