/* Custom CSS for Sphinx */

/* Import the sphinx_rtd_theme's CSS file */
@import "css/theme.css";

.bolditalic {
    font-weight: bold;
    font-style: italic;
}

.sub {
    vertical-align: sub;
    font-size: 50%;
}

.sup {
    vertical-align: super;
    font-size: 50%;
}

.strikethrough {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline;
}

.smaller {
    font-size: .8em;
}

.larger {
    font-size: 1.2em;
}

/* We need borders around each cell to clearly demonstrate table boundaries
 * in markup documentation */
table.docutils th,
table.docutils td {
    border-style: solid;
    border-width: 1px;
    border-color: #E1E4E5;
    white-space: normal;  /* override rtd's "nowrap" rule */
}

/* improve formatting of lists */
ul {
    margin: 0 0 1em 2em;
}
ul ul {
    margin-bottom: 0;
}
li {
    list-style-type: disc;
}
li li {
    list-style-type: square;
}
li li li {
    list-style-type: circle;
}
li > p {
    margin: 0;
}
p {
    margin-bottom: 1em;
}
