/*
 * Tweak the overal size to better match RTD.
 */
html {
    font-size: 14px;
}

h3, h4, h5, h6 {
    color: #2980b9;
    font-weight: 300
}

/*
 * Sphinx doesn't have support for section dividers like we do in
 * MkDocs, this styles the section titles in the nav
 *
 * https://github.com/mkdocs/mkdocs/issues/175
 */
.wy-menu-vertical span {
    line-height: 18px;
    padding: 0.4045em 2.427em;
    display: block;
    position: relative;
    font-size: 14px;
    color: #838383;
    background: #F7F7F7;
}

.wy-menu-vertical .subnav a {
    padding: 0.4045em 2.427em;
    font-size: 12px;
    color: #4A4A4A;
    line-height: 30px;
}

.wy-menu-vertical .subnav a:hover{
  color: #00936d;
}

/*
 * readthedocs theme hides nav items when the window height is
 * too small to contain them.
 *
 * https://github.com/mkdocs/mkdocs/issues/#348
 */
.wy-menu-vertical ul {
  margin-bottom: 2em;
}

/*
 * Fix wrapping in the code highlighting
 *
 * https://github.com/mkdocs/mkdocs/issues/233
 */
code {
    white-space: pre;
}

/*
 * Wrap inline code samples otherwise they shoot of the side and
 * can't be read at all.
 *
 * https://github.com/mkdocs/mkdocs/issues/313
 */
p code {
    word-wrap: break-word;
}

/*
 * The CSS classes from highlight.js seem to clash with the
 * ReadTheDocs theme causing some code to be incorrectly made
 * bold and italic.
 *
 * https://github.com/mkdocs/mkdocs/issues/411
 */
code.cs, code.c {
    font-weight: inherit;
    font-style: inherit;
}

/*
 * Fix some issues with the theme and non-highlighted code
 * samples. Without and highlighting styles attached the
 * formatting is broken.
 *
 * https://github.com/mkdocs/mkdocs/issues/319
 */
.no-highlight {
  display: block;
  padding: 0.5em;
  color: #333;
}


/*
 * Additions specific to the search functionality provided by MkDocs
 */

#mkdocs-search-results article h3
{
    margin-top: 23px;
    border-top: 1px solid #E1E4E5;
    padding-top: 24px;
}

#mkdocs-search-results article:first-child h3 {
    border-top: none;
}

#mkdocs-search-query{
    width: 100%;
    border-radius: 50px;
    padding: 6px 12px;
    border-color: #D1D4D5;
}

.wy-menu-vertical li ul {
    display: inherit;
}



/*
 * Improve inline code blocks within admonitions.
 *
 * https://github.com/mkdocs/mkdocs/issues/656
 */
 div.admonition code {
  color: #404040;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

img{
    vertical-align:middle;
    max-width:100%;
    display: block;
    margin: auto;
}

+img.img-left{
  vertical-align:inherit;
  max-width:100%;
  max-height: 500px;
  display: inline;
  margin: none;
}

table{
  width: 100%;
}

span.tag {
display: inline-block;
color: #FFE;
font-weight: 700;
margin: -15px 5px 10px 0px;
padding: 5px;
font-size: 85%;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.1em;
}

.red {
background-color: #d9524e;
}

.yellow {
background-color: #ff9900;
}

.green {
background-color: #5db95c;
}

.blue {
background-color: #327bb7;
}

.black {
background-color: #000;
}

.gray {
background-color: #666;
}

.orange {
background-color: #ff6600;
}

#platform-supported-table table {
table-layout: fixed;
width: 100%;
font-size: 90%;
}

#platform-supported-table td, th {
width: 20%;
}

#platform-supported-table img
{
  vertical-align:middle;
  max-width:100%;
  width: 100%;
  display: block;
  margin: auto;
}

.plat-table-note
{
font-size: 50%;
font-weight: normal;
}
