
@import url(init.css);
@import url(screen.css);
@import url(forms.css);
@import url(game.css);
@import url(lists.css);

/*
 *  CSS3 Media queries
 */

@media all and (orientation:portrait) { 
  
}

@media all and (orientation:landscape) { 
  
}

@media screen and (max-device-width: 480px) {
  
}

@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


.service_table {
  width: 100%;
}
.service_table THEAD TH {
  background: #333;
  padding: 10px;
  color: #fff;
}
.service_table TBODY TD {
  padding: 10px;
  vertical-align: middle;
  border-bottom: 1px solid #666;
}
.service_table TFOOT TD {
  padding: 10px;
  vertical-align: middle;
}


/*TOOLTIP*/
.with-tip {
  position: relative;
}
.tool-tip {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  padding: 10px 20px;
  display: block;
  position: absolute;
  top: 100%;
  left: -33%;
  background: #333;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 100ms linear 0ms;
  -moz-transition: all 100ms linear 0ms;
  -ms-transition: all 100ms linear 0ms;
  -o-transition: all 100ms linear 0ms;
  transition: all 100ms linear 0ms;
}
.tool-tip SPAN {
  padding: 0.2em 0;
  border: 1px solid #d2524c;
}
.tool-tip:after {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: #333 transparent;
}
.show-tip .tool-tip {
  visibility: visible;
  margin-top: 10px;
  opacity:1;
}


