		@font-face {
		  font-family: 'Source Sans Pro';
		  src: 	url('//www.infineon.com/export/system/modules/com.infineon.corporatewebsite.frontend/resources/fonts/source-sans-pro/Source_Sans_Pro_400.eot?') format('eot'), 
				url('//www.infineon.com/export/system/modules/com.infineon.corporatewebsite.frontend/resources/fonts/source-sans-pro/Source_Sans_Pro_400.woff') format('woff'), 
				url('//www.infineon.com/export/system/modules/com.infineon.corporatewebsite.frontend/resources/fonts/source-sans-pro/Source_Sans_Pro_400.ttf') format('truetype');
		} 
        body {
            margin: 0;
        }
		.header
		{
			/* background: linear-gradient(#928285,#f0f0f0); background: -webkit-linear-gradient(#928285,#f0f0f0); */background: #3e567e; height: 30px; font-weight:bold !important; color:white; font-size:16px !important; /* cursor:pointer;   */text-align: center; align-content:center !important; 
		}
        .filterPromo{
            background-color:#e3eef2;
        }
		.even{
			background-color:#f0f0f0; background: #f0f0f0
		}
		.uneven{
			background-color:#ffffff; background: #ffffff
		}
		
		.vc-multiselect-opt { /*Doesnt work since its invisible at start*/
            /*width: 160px !important;*/
            /*font-size: 11.5px;
                font-weight: 400;*/
            max-width: 100%;
            margin-left:2px;
            
        }
        .ui-state-default{
            background: linear-gradient(to bottom,#fff 0,#e3eef2 100%);
            background: -webkit-linear-gradient(to bottom,#fff 0,#e3eef2 100%);
        }
        .ui-widget-header{
            border: 1px solid #abbbd0;
            background: linear-gradient(to bottom,#fff 0,#e3eef2 100%);
            background: -webkit-linear-gradient(to bottom,#fff 0,#e3eef2 100%);
        }
        .ui-state-hover, .ui-widget-content .ui-state-hover{
            border: 1px solid #abbbd0;
            background: linear-gradient(to bottom,#fff 0,#e3eef2 100%);
            background: -webkit-linear-gradient(to bottom,#fff 0,#e3eef2 100%);
        }
        .dhtmlxslider_dhx_skyblue .dhxsl_runner{
            background: linear-gradient(to bottom,#fff 0,#e3eef2 100%);
            background: -webkit-linear-gradient(to bottom,#fff 0,#e3eef2 100%);
        }
        .ui-state-active{
            border: 1px solid #abbbd0;
        }
        .multiselected {
            /*font-size: 10px;*/
        }

        .txtInputBox {
            text-align: center;
            padding: 0;
            /*font-size: 12px;
            font-family: "Source Sans Pro",Arial,sans-serif;*/
            transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
            /* width: 31px; */
            display: inline-block;
            border: 1px solid #ABBBD0;
            border-radius: 3px;
            margin-left: 1px;
            text-align: center;
            vertical-align: top;
            line-height: 20px;
            height: 2em;
            width:50%;
        }

		.txtInputBox:focus {
			outline: none;
			box-shadow: 0 0 10px #3e567e;
			border-color: #3e567e;
		}

        td {
            vertical-align: top;
        }

        .ui-find-opt {
            color: #ffffff;
            cursor: pointer;
        }

        .btn-find-opt {
            float: left;
            height: 25px;
            border: 0;
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
			border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            background: linear-gradient(to bottom,#fff 0,#e3eef2 100%);
            background: -webkit-linear-gradient(to bottom,#fff 0,#e3eef2 100%);
            text-align: center;
            font-family: Arial,Verdana,Helvetica,sans-serif;
            font-size: 14px;
            line-height: 15px;
            font-weight: bold;
            color: #999;
            border: 1px solid #39638b;
            border-color: #abbbd0;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            padding-left: 0; /* background:#ab377a no-repeat center right */
        }

            .btn-find-opt:hover {
                text-decoration: underline;
            }

        /* table.hdr tr td {
            background-color: #5ea290;
        } */

        div.gridbox_dhx_skyblue.gridbox .xhdr {
            background-color: #e3eef2;
            background: linear-gradient(##e3eef2,#f0f0f0);
            background: -webkit-linear-gradient(##e3eef2,#f0f0f0);
            filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=##e3eef2,endColorStr=#f0f0f0) progid:DXImageTransform.Microsoft.Alpha(opacity=100);
        }

        
/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 0%;
  margin-bottom: 5px;
  margin-left: -65px;
  padding: 7px;
  width: 140px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}