﻿div.kSimplePlot {
    height: auto;
    width: 100%;
    color: #333;
}

div.kSimplePlot table {
    width: 100%;
}

div.ksp_plot
{
    width:100%;
    height: 350px;
}


.ksp_xaxis, .ksp_yaxis, .ksp_title
{
    display: block;
    width: 100%;
}

.ksp_xaxis
{
    
    text-align: left ;
}
.ksp_yaxis
{
    text-align: right ;
}

.ksp_title
{
    text-align: center ;
    font-size: 200%;
    font-weight: bold;
    padding-top: 5px;
}

.ksp_tooltip
{
    position: absolute;
    display:none;
    border: 1px solid #fdd;
    background-color: #fee;
    opacity: 0.9;
    padding: 2px;
}

.ksp_tooltip p {
    margin: 0;
}
.ksp_tooltip span:first-child {
    margin-right: 10px;
}

.ksp_yaxis, .ksp_xaxis {
    font-size: 120%;
    font-weight: bold;
}


.ksp_option {
    background-color: #ddd;
    background-size: 100% 100%;
    border: 1px solid #333;
    border-radius: 5px;
    cursor: pointer;
    float: left;
    height: 30px;
    margin-right: 4px;
    width: 30px;
}

.ksp_option.lines
{
    background-image: url('images/graph/line.png')
}

.ksp_option.bars
{
    background-image: url('images/graph/bars.png')
}

.ksp_option.multipleBars
{
    background-image: url('images/graph/multiple.png')
}

.ksp_option.pie
{
    background-image: url('images/graph/pie.png')
}

.ksp_option.stackedBars
{
    background-image: url('images/graph/stacked.png')
}


.ksp_pieInfo:hover {
    opacity: 1;
    z-index: 2;
    border: 1px solid white;
}
.ksp_pieInfo {
    background: none repeat scroll 0 0 #555;
    border-radius: 5px;
    color: #eee;
    opacity: 0.8;
    padding: 5px;
    position: absolute;
    z-index: 1;
}