/*!
Created by Thiru, Ramesh Nimmagadda Cancer Foundation
*/
tabs {
  display: block;
  margin: 0 auto 20px;
  position: relative; }
  tabs > nav {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 0;
    border-bottom: 3px solid #3274cd; }
    tabs > nav > tab {
      cursor: pointer;
      display: inline-block;
      padding: 0 20px;
      line-height: 2em;
      font-size: 16px;
	color: #000000;
	background: #bdbdbd;
	border-radius: 10px 10px 0px 0px;
	margin-left: 5px; }
      tabs > nav > tab:hover {
        background-color: #79ccff; }
      tabs > nav > tab.active, tabs > nav > tab[active='true'] {
        background: #3274cd;
    color: #fff; }
      tabs > nav > tab > span {
        display: block;
        pointer-events: none; }
  tabs > tab {
    display: block;
    padding: 20px 20px 0;
    background: white; }
    tabs > tab:before, tabs > tab:after {
      content: " ";
      display: table; }
    tabs > tab:after {
      clear: both; }
  tabs[alive='true'] > tab {
    display: none; }
    tabs[alive='true'] > tab.active, tabs[alive='true'] > tab[active='true'] {
      display: block; }
