/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 22 Nov, 2016, 5:45:31 PM
    Author     : sukriti
*/

 .canvasjs-chart-credit{
                display:none;
            }
            //.dropdown {
             //   position: relative;
              //  display: inline-block;
           // }

            .dropdown-content {
               display: none;
                position: absolute;
               background-color: #f9f9f9;
                 border:2px solid #3385ff;;
                min-width: 450px;
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                padding: 12px 16px;
               z-index: 1;
            }

            .dropdown:hover .dropdown-content {
                display: block;

            }
            table {
	//font-family:Arial, Helvetica, sans-serif;
	//color:#666;
	//font-size:12px;
	//text-shadow: 1px 1px 0px #fff;
	//background:#eaebec;
	//margin:5px;
	//border:#ccc 2px solid;

	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;

	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
}
table tr:hover td{
	background: #ccebff;
	//background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	//background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}
table tr:last-child td:first-child{
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}
table tr:last-child td:last-child{
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}


 /* .tooltip {
                 position: relative;
                display: inline-block;
              
             }*/

            /* Tooltip text */
            .tooltip .tooltiptext {
                visibility: hidden;
                width: 80px;
                background-color: #f9f9f9;/*#ffff80;#555;*/
                border:2px solid #3385ff;  

                color: #555; /*#fff;*/
                text-align: center;
                // padding: 5px 0;
                // border-radius: 6px;

                /* Position the tooltip text */
                position: absolute;
                z-index: 1;
                top: 60%;
                left: 90%;
                margin-left: 20px;

                /* Fade in tooltip */
                opacity: 0;
                transition: opacity 1s;
            }

            /* Tooltip arrow 
            .tooltip .tooltiptext::after {
                content: "";
                position: absolute;
                top: 300px;
                left: 50%;
                margin-left: -5px;
                border-width: 5px;
                border-style: solid;
                border-color: #555 transparent transparent transparent;
            }*/

            /* Show the tooltip text when you mouse over the tooltip container */
            .tooltip:hover .tooltiptext {
                visibility: visible;
                opacity: 3;
            }