html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Ubuntu, sans-serif;
  font-size: 85%; 
  line-height: 1; 
  padding-bottom: 65px; 
  background-color: #ffffff;
}

#content{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 80 160;
}

.center-content{
  margin-top: -150px;
}

#left{
	float: left;
	width: 40%;
	height: 100%;
	background:url(index.png) no-repeat center center
}

#right{
	float: right;
	width: 60%;
	height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

}

#right-content{
	margin: 0 auto;
}

a {
  font-size: 16px;
  text-decoration: none;
  color: gray;
}

a:hover{
  color:#1097E1;
}

div.table-title {
  display: block;
  margin: auto;
  padding:5px;
  width: 100%;
}

.title{
  color: #108CDD !important;
  font-weight: normal;
  text-align: center;
  width: 100%;
  font-size: 2.75em;
  line-height: 2.35em;
}

table{
  margin: 0 auto !important;
}


/*
  Table Versions styling
*/

table.custom-table {
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 20px;
    display: table;
}


table.custom-table td, table.custom-table th {
    padding-bottom: 0.75em;
    padding-top: 0.75em;
    text-align: center;
}

td.err {
  background-color: #e992b9;
  color: #fff;
  font-size: 0.75em;
  text-align: center;
  line-height: 1;
}

th {
    background-color: #108CDD;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}

tbody th {
  background-color: #108CDD;
}

tbody tr:nth-child(2n-1) {
    background-color: #E2E2E2;
}

tbody tr {
    background-color: #f5f5f5;

}


th.apidoc, td.apidoc{
    width: 10%;
}

th.version, td.version{
    width: 10%;
}

th.samples, td.samples{
    width: 50%;
}


/*---------------------*/
/*  Dropdown styling  */


ol, ul { list-style: none; }

.dropdown { 
  font-size: 1.2em !important;
  display: block;
  padding: 4px 3px;
  width: 266px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  border-left: 4px solid #739cda;
  background: #fff;
  font-size: 1.55em;
  color: #656565;
  font-weight: normal;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.dropdown:hover { color: #898989; }

.dropdown.open {
  background: #5a90e0;
  color: #fff;
  border-left-color: #6c6d70;
}

.dropdown ul { 
  position: absolute;
  top: 100%;
  left: -4px; /* move content -4px because of container left border */
  width: 266px;
  z-index: 1;
  max-height: 200px;
  overflow: auto;
  padding: 5px 0px;
  display: none;
  border-left: 4px solid #8e9196;
  background: #fff;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.dropdown ul li { font-size: 0.9em; }

.dropdown ul li a { 
  text-decoration: none;
  display: block;
  color: #447dd3;
  padding: 7px 15px;
  font-size: 90%;
}
.dropdown ul li a:hover {
  color: #6fa0e9;
  background: #e7f0f7;
}