

.top-bar {
  background-color:#6ec1cf;
  height: 32px;
}

.footertab {
  background-color:#777978;
  color:#fff;
  font-size:16px;
  padding:10px 0 10px 20px;
}

.titletab {
  background-color:#525e6a;
  color:#fff;
  font-size:20px;
  padding:5px 0 2px 20px;
}

.description {
  background-color:#f4d078;
  color:#6c6c6c;
  font-size:18px;
  padding:10px 0 10px 20px;
}

th,
td {
  padding: 0px 15px;
  text-align: left;
  border:none;}
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Larger than tablet */
@media (min-width: 750px) {
  /* Navbar */
  .navbar + .docs-section {
    border-top-width: 0; }
  .navbar,
  .navbar-spacer {
    display: block;
    width: 100%;
    background: #6ec1cf;
    z-index: 99;}
  .navbar-spacer {
    display: none; }
  .navbar > .container {
    width: 100%; }
  .navbar-list {
    list-style: none;
    margin-bottom: 0; }
  .navbar-item {
    position: relative;
    float: left;
    margin-bottom: 0; }
  .navbar-link {
    font-size: 16px;
    letter-spacing: .2rem;
    margin-right: 35px;
    text-decoration: none;
    line-height: 2.2em;
    color: #fff; }
  .navbar-link.active {
    color: #33C3F0; }
  .has-docked-nav .navbar {
    position: fixed;
    top: 0;
    left: 0; }
  .has-docked-nav .navbar-spacer {
    display: block; }
  /* Re-overiding the width 100% declaration to match size of % based container */
  .has-docked-nav .navbar > .container {
    width: 80%; }
}


form {
  margin-bottom: 0rem; }

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 0px;
  border:none;
  cursor: pointer;
  font-size: 20px;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  border:none;}

.button.button-green,
button.button-green,
input[type="submit"].button-green,
input[type="reset"].button-green,
input[type="button"].button-green {
  color: #FFF;
  background-color: #8ec572;
}

.button.button-pink,
button.button-pink,
input[type="submit"].button-pink,
input[type="reset"].button-pink,
input[type="button"].button-pink {
  color: #FFF;
  background-color: #c67184;
}

.button.button-brown,
button.button-brown,
input[type="submit"].button-brown,
input[type="reset"].button-brown,
input[type="button"].button-brown {
  color: #FFF;
  background-color: #966f48;
}

.button.button-blue,
button.button-blue,
input[type="submit"].button-blue,
input[type="reset"].button-blue,
input[type="button"].button-blue {
  color: #FFF;
  background-color: #6ec1cf;
}

.button.button-red,
button.button-red,
input[type="submit"].button-red,
input[type="reset"].button-red,
input[type="button"].button-red {
  color: #FFF;
  background-color: #ea7681;
}

.button.button-yellow,
button.button-yellow,
input[type="submit"].button-yellow,
input[type="reset"].button-yellow,
input[type="button"].button-yellow {
  color: #6d6b6c;
  background-color: #fac311;
}

.button.button-grey,
button.button-grey,
input[type="submit"].button-grey,
input[type="reset"].button-grey,
input[type="button"].button-grey {
  color: #FFFFFF;
  background-color:rgba(27, 0, 0, 0.5);
}



::-moz-selection {
 background: white;
}

::selection { background: white; }

@-webkit-keyframes 
icon-beat {  0% {
 -webkit-transform: scale(2);
 -ms-transform: scale(2);
 transform: scale(2);
}
 100% {
 -webkit-transform: scale(1);
 -ms-transform: scale(1);
 transform: scale(1);
}
}

@keyframes 
icon-beat {  0% {
 -webkit-transform: scale(2);
 -ms-transform: scale(2);
 transform: scale(2);
}
 100% {
 -webkit-transform: scale(1);
 -ms-transform: scale(1);
 transform: scale(1);
}
}

* {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

label {
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  line-height: 28px;
  font-weight: normal;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

label:last-of-type { margin-right: 1rem; }

label i {
  display: inline-block;
  height: 25px;
  position: relative;
  top: 6px;
  font-style: normal;
  color: #ccc;
}

label span {
  display: inline-block;
  margin-left: 5px;
  line-height: 25px;
  color: gray;
}

input[type="radio"],
input[type="checkbox"] { display: none; }

input[type="radio"] + i:before,
input[type="checkbox"] + i:before {
  font-family: 'FontAwesome';
  font-size: 28px;
  height: 25px;
  width: 25px;
  display: inline-block;
}

input[type="radio"]:checked + i,
input[type="checkbox"]:checked + i {
  position: relative;
  -webkit-animation: icon-beat 0.1s ease;
  animation: icon-beat 0.1s ease;
}

input[type="radio"]:checked + i + span,
input[type="checkbox"]:checked + i + span {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

input[type="radio"] + i:before { content: "\f10c"; }

input[type="radio"]:checked + i:before { content: "\f111"; }

input[type="radio"]:checked + i + span,
input[type="radio"]:checked + i:before { color: rgba(0, 128, 128, 0.5); }

input[type="checkbox"] + i:before { content: "\f096"; }

input[type="checkbox"]:checked + i:before { content: "\f046"; }

input[type="checkbox"]:checked + i + span,
input[type="checkbox"]:checked + i:before { color: rgba(0, 128, 0, 0.5); }


/*

NEW CSS
		GROWTH
*/

#ltg_td_header_col1{
	padding-top: 15px; color:#6c6c6c;	
}
#ltg_td_header_col2{
	width: 100%; padding-left: 15px; padding-right: 15px; text-align: right;	
}

.ltg_td_header_col4{
	padding:10px;   text-align: center; width: 10%;  border: 1px solid #bdc3c7;	
}


.ltg_td_row_col1{
	text-align: center; width:10%; border: 1px solid #bdc3c7;
}

.ltg_td_row_description{
	font-size:22px; color:#6c6c6c;
}

.ltg_td_row_data_col1{
	width:3%;  padding:10px;   text-align:center; border: 1px solid #bdc3c7;
}

.ltg_td_row_data_col2{
	width: 15%;  border: 1px solid #bdc3c7;
}

.ltg_td_row_data_col3{
	font-size:16px; color:#6c6c6c;
}

.ltg_td_row_data_col4{
	
	width: 15%;   border: 1px solid #bdc3c7;
}


.ltg_td_row_data_col5{
	font-size:13px; color:#6c6c6c;
}


.ltg_td_row_data_colimg{
	padding-left: 10px; width: 15%;  border: 1px solid #bdc3c;
}


@font-face {
    font-family: 'cs_prakasfdregular';
    src: url('csprakasfd-webfont.woff2') format('woff2'),
         url('csprakasfd-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body{font-family:'cs_prakasfdregular'}

h3{font-size:1.5em;}

























