.icon-leagues { background-image: url(./images/football-pitch-16px.png); }
.icon-leagues-winner { background-image: url(./images/winner.png); }

.imageset.leagues-table { 
  background-image: url("./images/go-home.png");
  padding-left: 16px;
  padding-top: 5px;
  background-repeat: no-repeat;
}

.imageset.leagues-winner { 
  background: url("./images/winner.png") no-repeat right top;
  padding-right: 10px;
}

.imageset.leagues-marker {
  background: url("./images/marker.png") no-repeat left center; 
  width: 6px;
  height: 6px;
  padding-left: 6px;
}

.imageset.leagues-green-up { 
  background-image: url("./images/green_up.png"); 
  padding-right: 16px;
  padding-top: 5px;
  background-repeat: no-repeat;
}

.imageset.leagues-red-down { 
  background-image: url("./images/red_down.png"); 
  padding-right: 16px;
  padding-top: 5px;
  background-repeat: no-repeat;
}

.imageset.leagues-blue-right { 
  background-image: url("./images/blue_right.png"); 
  padding-right: 16px;
  padding-top: 5px;
  background-repeat: no-repeat;
}

span.not_submitted_round_bg { background-color:#ffffc8; }
span.submitted_round_bg { background-color:#c8ffc8; }
span.user_titles_bg {background-color:#FFC8C8;}

td { padding: 3px; }

/**
 * Start of Tooltip css code here.
 */
a.info {
    position:relative;           /*this is the key*/
    z-index:24;
    /*background-color:#e0e0e0;*/    /* background colour of display text */
    color:#000000;               /* colour of display text */
    /*border:1px dotted #999;*/      /* border colour */
    text-decoration:none;
/*font-style:italic;*/
}

a.info:hover {
    z-index:25;
    /*background-color:#ffff66;*/
}

a.info span {
    display: none;               /* hide the span text using this css */
}

a.info:hover span {            /* the span will display just on :hover state*/
    display:block;
    position:absolute;
    top: 1.5em;
    left: 3em;
    width:30em;
    /*border:1px solid #ff0000;*/    /* border colour */
    border:1px solid #444444;    /* border colour */
    /*background-color:#ffffff;*/    /* background colour here */
    background-color:#ffff99;    /* background colour here */
    color:#000000;               /* text colour */
    text-align: center;
    /*font-size: .8em;*/
    /*font-style:italic;*/
    z-index:30;
}
