theme.css 89.5 KB
Newer Older
L.S. Cook's avatar
L.S. Cook committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

/* topbar */

/* stay-put menu */

div.menu-float {
  font-family: 'Nunito', 'Nunito Sans', sans-serif;
  position:fixed; 
  top: 1px;
  text-align: right;
   width: 100%;
   text-align: center;
  background: #393F4D;
  opacity: 0.9717; 
  padding: 3px;
  border-top: 1px solid #999999;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
  margin-top: -2px;
  margin-left: -2px;
  -webkit-border-radius: 0.1px;
  -moz-border-radius: 0.1px;
    border-radius: 0.1px;
   z-index:1000;
}

64
div.menu-float a, div.floating-menu h3 {display:inline-block; margin:0 0.5em; font-size: 133%; line-height: 1.31em; color: #fcfcfc; }
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97


#nav {
  margin: 0;
  height: auto;
  padding: 5px 3px 0;
  line-height: 88%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
    border-radius: 7px;
}

div.nav {position:fixed; z-index:100;}

#nav li {
  margin: 0 5px;
  padding-left: 100px;
  padding-right: 6px;
  float: left;
  position: relative;
  list-style: none;
   width: auto;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
    border-radius: 7px;

}

#nav a {
  color: #e3e3e3;
  text-decoration: none;
  display: block;
  padding:  3px 4px;
L.S. Cook's avatar
L.S. Cook committed
98
  margin: 0;
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
  font-size: 19px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  text-shadow: 0 1px 1px rgba(0,0,0, .3);
}
#nav a:hover {
  color: #5a3226;
  background: transparent;
}

#nav ul li:hover a, #nav li:hover li a {
  background: transparent;
   position: relative;
  border: 2px;
  color: #5a3226;
  font: 18px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
#nav ul a:hover {
  background: #fcfcfc -100px !important;
  color: #5a3226 !important;
  -webkit-border-radius: 1;
  -moz-border-radius: 1;
  text-shadow: 0 1px 1px rgba(0,0,0, .1);
}

#nav li:hover > ul {
  display: block;
   z-index: 1000;
}

#nav ul {
  display: none;
  margin: 5px;
  padding: 3px;
  width: 99%;
  top: 19px;
  left: 0;
  background: #efeae5;
  border: solid 1px #b4b4b4;
   z-index: 1000;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
  box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#nav ul li {
  float: none;
   width: auto;
   position: 3px;
  margin: 3px;
  padding-top: 4px;
}

#nav ul a {
  font-weight: normal;
   font-size: 15px;
  text-shadow: 0 1px 0 #fff;
   position: -5px;
  margin-top: -15px;
   margin-left: 3px;
  padding-top: 9px;
   background: #e7d899;
   opacity: 0.9973;

}

#nav ul ul {
  left: 181px;
  top: -3px;
L.S. Cook's avatar
L.S. Cook committed
172
}
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
#nav ul li:first-child > a {
  -webkit-border-top-left-radius: 7px;
  -moz-border-radius-topleft: 7px;
   padding: 3px;
   margin: 2px;
  -webkit-border-top-right-radius: 7px;
  -moz-border-radius-topright: 7px;
}
#nav ul li:last-child > a {
  -webkit-border-bottom-left-radius: 7px;
  -moz-border-radius-bottomleft: 7px;
   padding: 3px;
   margin: 2px;
  -webkit-border-bottom-right-radius: 7px;
  -moz-border-radius-bottomright: 7px;
}

#nav:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
   opacity: 0.9973;

}
#nav {
  display: inline-block;
} 


html[xmlns] #nav {
  display: block;
  height: auto;
}
 
* html #nav {
  height: 1%;
}

/* end topbar */

L.S. Cook's avatar
L.S. Cook committed
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 0;
}

pre, code, .rst-content tt, .rst-content code, kbd, samp {
L.S. Cook's avatar
L.S. Cook committed
234
  font-family: monospace, sans;
L.S. Cook's avatar
L.S. Cook committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

L.S. Cook's avatar
L.S. Cook committed
252 253

title {
254
  font-family: Nunito, 'Nunito Sans', "IntelClear-Bold", sans;
L.S. Cook's avatar
L.S. Cook committed
255 256
}

L.S. Cook's avatar
L.S. Cook committed
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
small {
  font-size: 85%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol, dl {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: none;
}

li {
  list-style: none;
}

dd {
  margin: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}

Leona C's avatar
Leona C committed
344
input[disabled] {
L.S. Cook's avatar
L.S. Cook committed
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
  cursor: default;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}


.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.relative {
  position: relative;
}

big, small {
  font-size: 100%;
}

@media print {
  html, body, section {
    background: none !important;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
Leona C's avatar
Leona C committed
424
    text-decoration: none;
L.S. Cook's avatar
L.S. Cook committed
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, .rst-content .toctree-wrapper p.caption, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, .rst-content .toctree-wrapper p.caption, h3 {
    page-break-after: avoid;
  }
}
.fa:before, .rst-content .admonition-title:before, .rst-content h1 .headerlink:before, .rst-content h2 .headerlink:before, .rst-content h3 .headerlink:before, .rst-content h4 .headerlink:before, .rst-content h5 .headerlink:before, .rst-content h6 .headerlink:before, .rst-content dl dt .headerlink:before, .rst-content p.caption .headerlink:before, .rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before, .icon:before, .wy-menu-vertical li span.toctree-expand:before, .wy-menu-vertical li.on a span.toctree-expand:before, .wy-menu-vertical li.current > a span.toctree-expand:before, .wy-dropdown .caret:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, .wy-alert, .rst-content .note, .rst-content .attention, .rst-content .caution, .rst-content .danger, .rst-content .error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .warning, .rst-content .seealso, .rst-content .admonition-todo, .btn, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .wy-menu-vertical li.on a, .wy-menu-vertical li.current > a, .wy-side-nav-search > a, .wy-side-nav-search .wy-dropdown > a, .wy-nav-top a {
  -webkit-font-smoothing: antialiased;
}

.icon {
  display: none !important;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

@font-face {
479
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans, 'Open Sans';
L.S. Cook's avatar
L.S. Cook committed
480 481
  font-weight: normal;
  font-style: normal;
482

L.S. Cook's avatar
L.S. Cook committed
483
}
484
.rst-content .admonition-title, .rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .rst-content p.caption .headerlink, .rst-content tt.download span:first-child, .rst-content code.download span:first-child, .icon, .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
485
  display: inline-block;
486
  font: normal normal normal 1.011em/1;
L.S. Cook's avatar
L.S. Cook committed
487 488 489 490 491 492 493 494 495 496 497 498 499 500
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

501
.rst-content .pull-left.admonition-title, .rst-content h1 .pull-left.headerlink, .rst-content h2 .pull-left.headerlink, .rst-content h3 .pull-left.headerlink, .rst-content h4 .pull-left.headerlink, .rst-content h5 .pull-left.headerlink, .rst-content h6 .pull-left.headerlink, .rst-content dl dt .pull-left.headerlink, .rst-content p.caption .pull-left.headerlink, .rst-content tt.download span.pull-left:first-child, .rst-content code.download span.pull-left:first-child, .pull-left.icon, .wy-menu-vertical li span.pull-left.toctree-expand, .wy-menu-vertical li.on a span.pull-left.toctree-expand, .wy-menu-vertical li.current > a span.pull-left.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
502 503
  margin-right: .3em;
}
504
.rst-content .pull-right.admonition-title, .rst-content h1 .pull-right.headerlink, .rst-content h2 .pull-right.headerlink, .rst-content h3 .pull-right.headerlink, .rst-content h4 .pull-right.headerlink, .rst-content h5 .pull-right.headerlink, .rst-content h6 .pull-right.headerlink, .rst-content dl dt .pull-right.headerlink, .rst-content p.caption .pull-right.headerlink, .rst-content tt.download span.pull-right:first-child, .rst-content code.download span.pull-right:first-child, .pull-right.icon, .wy-menu-vertical li span.pull-right.toctree-expand, .wy-menu-vertical li.on a span.pull-right.toctree-expand, .wy-menu-vertical li.current > a span.pull-right.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
505 506 507
  margin-left: .3em;
}

508 509
.rst-content .admonition-title:before, .rst-content h1 .headerlink:before, .rst-content h2 .headerlink:before, .rst-content h3 .headerlink:before, .rst-content h4 .headerlink:before, .rst-content h5 .headerlink:before, .rst-content h6 .headerlink:before, .rst-content dl dt .headerlink:before, .rst-content p.caption .headerlink:before, .rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before, .icon:before, .wy-menu-vertical li span.toctree-expand:before, .wy-menu-vertical li.on a span.toctree-expand:before, .wy-menu-vertical li.current > a span.toctree-expand:before, .wy-dropdown .caret:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before {
  font-family: Nunito, 'Nunito Sans', sans;
L.S. Cook's avatar
L.S. Cook committed
510 511 512 513 514 515 516 517 518 519 520 521
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: inherit;
}

a .fa, a .rst-content .admonition-title, .rst-content a .admonition-title, a .rst-content h1 .headerlink, .rst-content h1 a .headerlink, a .rst-content h2 .headerlink, .rst-content h2 a .headerlink, a .rst-content h3 .headerlink, .rst-content h3 a .headerlink, a .rst-content h4 .headerlink, .rst-content h4 a .headerlink, a .rst-content h5 .headerlink, .rst-content h5 a .headerlink, a .rst-content h6 .headerlink, .rst-content h6 a .headerlink, a .rst-content dl dt .headerlink, .rst-content dl dt a .headerlink, a .rst-content p.caption .headerlink, .rst-content p.caption a .headerlink, a .rst-content tt.download span:first-child, .rst-content tt.download a span:first-child, a .rst-content code.download span:first-child, .rst-content code.download a span:first-child, a .icon, a .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li a span.toctree-expand, .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand {
  display: inline-block;
  text-decoration: inherit;
}

522
.btn .btn .rst-content .admonition-title, .rst-content .btn .admonition-title, .btn .rst-content h1 .headerlink, .rst-content h1 .btn .headerlink, .btn .rst-content h2 .headerlink, .rst-content h2 .btn .headerlink, .btn .rst-content h3 .headerlink, .rst-content h3 .btn .headerlink, .btn .rst-content h4 .headerlink, .rst-content h4 .btn .headerlink, .btn .rst-content h5 .headerlink, .rst-content h5 .btn .headerlink, .btn .rst-content h6 .headerlink, .rst-content h6 .btn .headerlink, .btn .rst-content dl dt .headerlink, .rst-content dl dt .btn .headerlink, .btn .rst-content p.caption .headerlink, .rst-content p.caption .btn .headerlink, .btn .rst-content tt.download span:first-child, .rst-content tt.download .btn span:first-child, .btn .rst-content code.download span:first-child, .rst-content code.download .btn span:first-child, .btn .icon, .btn .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li .btn span.toctree-expand, .btn .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.on a .btn span.toctree-expand, .btn .wy-menu-vertical li.current > a span.toctree-expand, .wy-menu-vertical li.current > a .btn span.toctree-expand, .nav .fa, .nav .rst-content .admonition-title, .rst-content .nav .admonition-title, .nav .rst-content h1 .headerlink, .rst-content h1 .nav .headerlink, .nav .rst-content h2 .headerlink, .rst-content h2 .nav .headerlink, .nav .rst-content h3 .headerlink, .rst-content h3 .nav .headerlink, .nav .rst-content h4 .headerlink, .rst-content h4 .nav .headerlink, .nav .rst-content h5 .headerlink, .rst-content h5 .nav .headerlink, .nav .rst-content h6 .headerlink, .rst-content h6 .nav .headerlink, .nav .rst-content dl dt .headerlink, .rst-content dl dt .nav .headerlink, .nav .rst-content p.caption .headerlink, .rst-content p.caption .nav .headerlink, .nav .rst-content tt.download span:first-child, .rst-content tt.download .nav span:first-child, .nav .rst-content code.download span:first-child, .rst-content code.download .nav span:first-child, .nav .icon, .nav .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li .nav span.toctree-expand, .nav .wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.on a .nav span.toctree-expand, .nav .wy-menu-vertical li.current > a span.toctree-expand, .wy-menu-vertical li.current > a .nav span.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
523 524
  display: inline;
}
525
.btn .btn .rst-content .fa-large.admonition-title, .rst-content .btn .fa-large.admonition-title, .btn .rst-content h1 .fa-large.headerlink, .rst-content h1 .btn .fa-large.headerlink, .btn .rst-content h2 .fa-large.headerlink, .rst-content h2 .btn .fa-large.headerlink, .btn .rst-content h3 .fa-large.headerlink, .rst-content h3 .btn .fa-large.headerlink, .btn .rst-content h4 .fa-large.headerlink, .rst-content h4 .btn .fa-large.headerlink, .btn .rst-content h5 .fa-large.headerlink, .rst-content h5 .btn .fa-large.headerlink, .btn .rst-content h6 .fa-large.headerlink, .rst-content h6 .btn .fa-large.headerlink, .btn .rst-content dl dt .fa-large.headerlink, .rst-content dl dt .btn .fa-large.headerlink, .btn .rst-content p.caption .fa-large.headerlink, .rst-content p.caption .btn .fa-large.headerlink, .btn .rst-content tt.download span.fa-large:first-child, .rst-content tt.download .btn span.fa-large:first-child, .btn .rst-content code.download span.fa-large:first-child, .rst-content code.download .btn span.fa-large:first-child, .btn .fa-large.icon, .btn .wy-menu-vertical li span.fa-large.toctree-expand, .wy-menu-vertical li .btn span.fa-large.toctree-expand, .nav .fa.fa-large, .nav .rst-content .fa-large.admonition-title, .rst-content .nav .fa-large.admonition-title, .nav .rst-content h1 .fa-large.headerlink, .rst-content h1 .nav .fa-large.headerlink, .nav .rst-content h2 .fa-large.headerlink, .rst-content h2 .nav .fa-large.headerlink, .nav .rst-content h3 .fa-large.headerlink, .rst-content h3 .nav .fa-large.headerlink, .nav .rst-content h4 .fa-large.headerlink, .rst-content h4 .nav .fa-large.headerlink, .nav .rst-content h5 .fa-large.headerlink, .rst-content h5 .nav .fa-large.headerlink, .nav .rst-content h6 .fa-large.headerlink, .rst-content h6 .nav .fa-large.headerlink, .nav .rst-content dl dt .fa-large.headerlink, .rst-content dl dt .nav .fa-large.headerlink, .nav .rst-content p.caption .fa-large.headerlink, .rst-content p.caption .nav .fa-large.headerlink, .nav .rst-content tt.download span.fa-large:first-child, .rst-content tt.download .nav span.fa-large:first-child, .nav .rst-content code.download span.fa-large:first-child, .rst-content code.download .nav span.fa-large:first-child, .nav .fa-large.icon, .nav .wy-menu-vertical li span.fa-large.toctree-expand, .wy-menu-vertical li .nav span.fa-large.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
526 527
  line-height: 0.9em;
}
528
.btn .btn .rst-content .fa-spin.admonition-title, .rst-content .btn .fa-spin.admonition-title, .btn .rst-content h1 .fa-spin.headerlink, .rst-content h1 .btn .fa-spin.headerlink, .btn .rst-content h2 .fa-spin.headerlink, .rst-content h2 .btn .fa-spin.headerlink, .btn .rst-content h3 .fa-spin.headerlink, .rst-content h3 .btn .fa-spin.headerlink, .btn .rst-content h4 .fa-spin.headerlink, .rst-content h4 .btn .fa-spin.headerlink, .btn .rst-content h5 .fa-spin.headerlink, .rst-content h5 .btn .fa-spin.headerlink, .btn .rst-content h6 .fa-spin.headerlink, .rst-content h6 .btn .fa-spin.headerlink, .btn .rst-content dl dt .fa-spin.headerlink, .rst-content dl dt .btn .fa-spin.headerlink, .btn .rst-content p.caption .fa-spin.headerlink, .rst-content p.caption .btn .fa-spin.headerlink, .btn .rst-content tt.download span.fa-spin:first-child, .rst-content tt.download .btn span.fa-spin:first-child, .btn .rst-content code.download span.fa-spin:first-child, .rst-content code.download .btn span.fa-spin:first-child, .btn .fa-spin.icon, .btn .wy-menu-vertical li span.fa-spin.toctree-expand, .wy-menu-vertical li .btn span.fa-spin.toctree-expand, .nav .fa.fa-spin, .nav .rst-content .fa-spin.admonition-title, .rst-content .nav .fa-spin.admonition-title, .nav .rst-content h1 .fa-spin.headerlink, .rst-content h1 .nav .fa-spin.headerlink, .nav .rst-content h2 .fa-spin.headerlink, .rst-content h2 .nav .fa-spin.headerlink, .nav .rst-content h3 .fa-spin.headerlink, .rst-content h3 .nav .fa-spin.headerlink, .nav .rst-content h4 .fa-spin.headerlink, .rst-content h4 .nav .fa-spin.headerlink, .nav .rst-content h5 .fa-spin.headerlink, .rst-content h5 .nav .fa-spin.headerlink, .nav .rst-content h6 .fa-spin.headerlink, .rst-content h6 .nav .fa-spin.headerlink, .nav .rst-content dl dt .fa-spin.headerlink, .rst-content dl dt .nav .fa-spin.headerlink, .nav .rst-content p.caption .fa-spin.headerlink, .rst-content p.caption .nav .fa-spin.headerlink, .nav .rst-content tt.download span.fa-spin:first-child, .rst-content tt.download .nav span.fa-spin:first-child, .nav .rst-content code.download span.fa-spin:first-child, .rst-content code.download .nav span.fa-spin:first-child, .nav .fa-spin.icon, .nav .wy-menu-vertical li span.fa-spin.toctree-expand, .wy-menu-vertical li .nav span.fa-spin.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
529 530 531 532 533 534 535 536 537 538 539 540 541 542
  display: inline-block;
}

.btn.fa:before, .rst-content .btn.admonition-title:before, .rst-content h1 .btn.headerlink:before, .rst-content h2 .btn.headerlink:before, .rst-content h3 .btn.headerlink:before, .rst-content h4 .btn.headerlink:before, .rst-content h5 .btn.headerlink:before, .rst-content h6 .btn.headerlink:before, .rst-content dl dt .btn.headerlink:before, .rst-content p.caption .btn.headerlink:before, .rst-content tt.download span.btn:first-child:before, .rst-content code.download span.btn:first-child:before, .btn.icon:before, .wy-menu-vertical li span.btn.toctree-expand:before {
  opacity: 0.5;
  -webkit-transition: opacity 0.05s ease-in;
  -moz-transition: opacity 0.05s ease-in;
  transition: opacity 0.05s ease-in;
}

.btn.fa:hover:before, .rst-content .btn.admonition-title:hover:before, .rst-content h1 .btn.headerlink:hover:before, .rst-content h2 .btn.headerlink:hover:before, .rst-content h3 .btn.headerlink:hover:before, .rst-content h4 .btn.headerlink:hover:before, .rst-content h5 .btn.headerlink:hover:before, .rst-content h6 .btn.headerlink:hover:before, .rst-content dl dt .btn.headerlink:hover:before, .rst-content p.caption .btn.headerlink:hover:before, .rst-content tt.download span.btn:first-child:hover:before, .rst-content code.download span.btn:first-child:hover:before, .btn.icon:hover:before, .wy-menu-vertical li span.btn.toctree-expand:hover:before {
  opacity: 1;
}

543
.btn-mini .btn-mini .rst-content .admonition-title:before, .rst-content .btn-mini .admonition-title:before, .btn-mini .rst-content h1 .headerlink:before, .rst-content h1 .btn-mini .headerlink:before, .btn-mini .rst-content h2 .headerlink:before, .rst-content h2 .btn-mini .headerlink:before, .btn-mini .rst-content h3 .headerlink:before, .rst-content h3 .btn-mini .headerlink:before, .btn-mini .rst-content h4 .headerlink:before, .rst-content h4 .btn-mini .headerlink:before, .btn-mini .rst-content h5 .headerlink:before, .rst-content h5 .btn-mini .headerlink:before, .btn-mini .rst-content h6 .headerlink:before, .rst-content h6 .btn-mini .headerlink:before, .btn-mini .rst-content dl dt .headerlink:before, .rst-content dl dt .btn-mini .headerlink:before, .btn-mini .rst-content p.caption .headerlink:before, .rst-content p.caption .btn-mini .headerlink:before, .btn-mini .rst-content tt.download span:first-child:before, .rst-content tt.download .btn-mini span:first-child:before, .btn-mini .rst-content code.download span:first-child:before, .rst-content code.download .btn-mini span:first-child:before, .btn-mini .icon:before, .btn-mini .wy-menu-vertical li span.toctree-expand:before, .wy-menu-vertical li .btn-mini span.toctree-expand:before {
L.S. Cook's avatar
L.S. Cook committed
544 545 546 547 548 549 550 551 552 553 554 555
  font-size: 14px;
  vertical-align: -15%;
}

.wy-alert, .rst-content .note, .rst-content .attention, .rst-content .caution, .rst-content .danger, .rst-content .error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .warning, .rst-content .seealso, .rst-content .admonition-todo {
  padding: 12px;
  line-height: 24px;
  margin-bottom: 24px;
  background: #e7f2fa;
}

.wy-alert-title, .rst-content .admonition-title {
Leona C's avatar
Leona C committed
556
  color: #1e2129;
L.S. Cook's avatar
L.S. Cook committed
557
  display: block;
558 559
  background: #638470;
  margin: -5px;
560
  font-family: Nunito, 'Nunito Sans', sans;
L.S. Cook's avatar
L.S. Cook committed
561
  font-weight: bolder;
562
  padding: 0.43em 0.74em;
563
  margin-bottom: 0.33em;
L.S. Cook's avatar
L.S. Cook committed
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
}

.wy-alert.wy-alert-danger, .rst-content .wy-alert-danger.note, .rst-content .wy-alert-danger.attention, .rst-content .wy-alert-danger.caution, .rst-content .danger, .rst-content .error, .rst-content .wy-alert-danger.hint, .rst-content .wy-alert-danger.important, .rst-content .wy-alert-danger.tip, .rst-content .wy-alert-danger.warning, .rst-content .wy-alert-danger.seealso, .rst-content .wy-alert-danger.admonition-todo {
  background: #fdf3f2;
}
.wy-alert.wy-alert-danger .wy-alert-title, .rst-content .wy-alert-danger.note .wy-alert-title, .rst-content .wy-alert-danger.attention .wy-alert-title, .rst-content .wy-alert-danger.caution .wy-alert-title, .rst-content .danger .wy-alert-title, .rst-content .error .wy-alert-title, .rst-content .wy-alert-danger.hint .wy-alert-title, .rst-content .wy-alert-danger.important .wy-alert-title, .rst-content .wy-alert-danger.tip .wy-alert-title, .rst-content .wy-alert-danger.warning .wy-alert-title, .rst-content .wy-alert-danger.seealso .wy-alert-title, .rst-content .wy-alert-danger.admonition-todo .wy-alert-title, .wy-alert.wy-alert-danger .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-danger .admonition-title, .rst-content .wy-alert-danger.note .admonition-title, .rst-content .wy-alert-danger.attention .admonition-title, .rst-content .wy-alert-danger.caution .admonition-title, .rst-content .danger .admonition-title, .rst-content .error .admonition-title, .rst-content .wy-alert-danger.hint .admonition-title, .rst-content .wy-alert-danger.important .admonition-title, .rst-content .wy-alert-danger.tip .admonition-title, .rst-content .wy-alert-danger.warning .admonition-title, .rst-content .wy-alert-danger.seealso .admonition-title, .rst-content .wy-alert-danger.admonition-todo .admonition-title {
  background: #f29f97;
}

.wy-alert.wy-alert-warning, .rst-content .wy-alert-warning.note, .rst-content .attention, .rst-content .caution, .rst-content .wy-alert-warning.danger, .rst-content .wy-alert-warning.error, .rst-content .wy-alert-warning.hint, .rst-content .wy-alert-warning.important, .rst-content .wy-alert-warning.tip, .rst-content .warning, .rst-content .wy-alert-warning.seealso, .rst-content .admonition-todo {
  background: #ffedcc;
}
.wy-alert.wy-alert-warning .wy-alert-title, .rst-content .wy-alert-warning.note .wy-alert-title, .rst-content .attention .wy-alert-title, .rst-content .caution .wy-alert-title, .rst-content .wy-alert-warning.danger .wy-alert-title, .rst-content .wy-alert-warning.error .wy-alert-title, .rst-content .wy-alert-warning.hint .wy-alert-title, .rst-content .wy-alert-warning.important .wy-alert-title, .rst-content .wy-alert-warning.tip .wy-alert-title, .rst-content .warning .wy-alert-title, .rst-content .wy-alert-warning.seealso .wy-alert-title, .rst-content .admonition-todo .wy-alert-title, .wy-alert.wy-alert-warning .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-warning .admonition-title, .rst-content .wy-alert-warning.note .admonition-title, .rst-content .attention .admonition-title, .rst-content .caution .admonition-title, .rst-content .wy-alert-warning.danger .admonition-title, .rst-content .wy-alert-warning.error .admonition-title, .rst-content .wy-alert-warning.hint .admonition-title, .rst-content .wy-alert-warning.important .admonition-title, .rst-content .wy-alert-warning.tip .admonition-title, .rst-content .warning .admonition-title, .rst-content .wy-alert-warning.seealso .admonition-title, .rst-content .admonition-todo .admonition-title {
  background: #f0b37e;
}

.wy-alert.wy-alert-info, .rst-content .note, .rst-content .wy-alert-info.attention, .rst-content .wy-alert-info.caution, .rst-content .wy-alert-info.danger, .rst-content .wy-alert-info.error, .rst-content .wy-alert-info.hint, .rst-content .wy-alert-info.important, .rst-content .wy-alert-info.tip, .rst-content .wy-alert-info.warning, .rst-content .seealso, .rst-content .wy-alert-info.admonition-todo {
L.S. Cook's avatar
L.S. Cook committed
581
  background: #c0e4ff;
L.S. Cook's avatar
L.S. Cook committed
582 583
}
.wy-alert.wy-alert-info .wy-alert-title, .rst-content .note .wy-alert-title, .rst-content .wy-alert-info.attention .wy-alert-title, .rst-content .wy-alert-info.caution .wy-alert-title, .rst-content .wy-alert-info.danger .wy-alert-title, .rst-content .wy-alert-info.error .wy-alert-title, .rst-content .wy-alert-info.hint .wy-alert-title, .rst-content .wy-alert-info.important .wy-alert-title, .rst-content .wy-alert-info.tip .wy-alert-title, .rst-content .wy-alert-info.warning .wy-alert-title, .rst-content .seealso .wy-alert-title, .rst-content .wy-alert-info.admonition-todo .wy-alert-title, .wy-alert.wy-alert-info .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-info .admonition-title, .rst-content .note .admonition-title, .rst-content .wy-alert-info.attention .admonition-title, .rst-content .wy-alert-info.caution .admonition-title, .rst-content .wy-alert-info.danger .admonition-title, .rst-content .wy-alert-info.error .admonition-title, .rst-content .wy-alert-info.hint .admonition-title, .rst-content .wy-alert-info.important .admonition-title, .rst-content .wy-alert-info.tip .admonition-title, .rst-content .wy-alert-info.warning .admonition-title, .rst-content .seealso .admonition-title, .rst-content .wy-alert-info.admonition-todo .admonition-title {
Leona C's avatar
Leona C committed
584
  background: #5da0d2;
L.S. Cook's avatar
L.S. Cook committed
585 586 587
}

.wy-alert.wy-alert-success, .rst-content .wy-alert-success.note, .rst-content .wy-alert-success.attention, .rst-content .wy-alert-success.caution, .rst-content .wy-alert-success.danger, .rst-content .wy-alert-success.error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .wy-alert-success.warning, .rst-content .wy-alert-success.seealso, .rst-content .wy-alert-success.admonition-todo {
L.S. Cook's avatar
L.S. Cook committed
588
  background: #f1e2c6;
L.S. Cook's avatar
L.S. Cook committed
589 590
}
.wy-alert.wy-alert-success .wy-alert-title, .rst-content .wy-alert-success.note .wy-alert-title, .rst-content .wy-alert-success.attention .wy-alert-title, .rst-content .wy-alert-success.caution .wy-alert-title, .rst-content .wy-alert-success.danger .wy-alert-title, .rst-content .wy-alert-success.error .wy-alert-title, .rst-content .hint .wy-alert-title, .rst-content .important .wy-alert-title, .rst-content .tip .wy-alert-title, .rst-content .wy-alert-success.warning .wy-alert-title, .rst-content .wy-alert-success.seealso .wy-alert-title, .rst-content .wy-alert-success.admonition-todo .wy-alert-title, .wy-alert.wy-alert-success .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-success .admonition-title, .rst-content .wy-alert-success.note .admonition-title, .rst-content .wy-alert-success.attention .admonition-title, .rst-content .wy-alert-success.caution .admonition-title, .rst-content .wy-alert-success.danger .admonition-title, .rst-content .wy-alert-success.error .admonition-title, .rst-content .hint .admonition-title, .rst-content .important .admonition-title, .rst-content .tip .admonition-title, .rst-content .wy-alert-success.warning .admonition-title, .rst-content .wy-alert-success.seealso .admonition-title, .rst-content .wy-alert-success.admonition-todo .admonition-title {
L.S. Cook's avatar
L.S. Cook committed
591
  background: #d8a335;
L.S. Cook's avatar
L.S. Cook committed
592 593 594 595 596 597
}

.wy-alert.wy-alert-neutral, .rst-content .wy-alert-neutral.note, .rst-content .wy-alert-neutral.attention, .rst-content .wy-alert-neutral.caution, .rst-content .wy-alert-neutral.danger, .rst-content .wy-alert-neutral.error, .rst-content .wy-alert-neutral.hint, .rst-content .wy-alert-neutral.important, .rst-content .wy-alert-neutral.tip, .rst-content .wy-alert-neutral.warning, .rst-content .wy-alert-neutral.seealso, .rst-content .wy-alert-neutral.admonition-todo {
  background: #f3f6f6;
}
.wy-alert.wy-alert-neutral .wy-alert-title, .rst-content .wy-alert-neutral.note .wy-alert-title, .rst-content .wy-alert-neutral.attention .wy-alert-title, .rst-content .wy-alert-neutral.caution .wy-alert-title, .rst-content .wy-alert-neutral.danger .wy-alert-title, .rst-content .wy-alert-neutral.error .wy-alert-title, .rst-content .wy-alert-neutral.hint .wy-alert-title, .rst-content .wy-alert-neutral.important .wy-alert-title, .rst-content .wy-alert-neutral.tip .wy-alert-title, .rst-content .wy-alert-neutral.warning .wy-alert-title, .rst-content .wy-alert-neutral.seealso .wy-alert-title, .rst-content .wy-alert-neutral.admonition-todo .wy-alert-title, .wy-alert.wy-alert-neutral .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-neutral .admonition-title, .rst-content .wy-alert-neutral.note .admonition-title, .rst-content .wy-alert-neutral.attention .admonition-title, .rst-content .wy-alert-neutral.caution .admonition-title, .rst-content .wy-alert-neutral.danger .admonition-title, .rst-content .wy-alert-neutral.error .admonition-title, .rst-content .wy-alert-neutral.hint .admonition-title, .rst-content .wy-alert-neutral.important .admonition-title, .rst-content .wy-alert-neutral.tip .admonition-title, .rst-content .wy-alert-neutral.warning .admonition-title, .rst-content .wy-alert-neutral.seealso .admonition-title, .rst-content .wy-alert-neutral.admonition-todo .admonition-title {
L.S. Cook's avatar
L.S. Cook committed
598
  background: #88b8c8;
L.S. Cook's avatar
L.S. Cook committed
599 600
}
.wy-alert.wy-alert-neutral a, .rst-content .wy-alert-neutral.note a, .rst-content .wy-alert-neutral.attention a, .rst-content .wy-alert-neutral.caution a, .rst-content .wy-alert-neutral.danger a, .rst-content .wy-alert-neutral.error a, .rst-content .wy-alert-neutral.hint a, .rst-content .wy-alert-neutral.important a, .rst-content .wy-alert-neutral.tip a, .rst-content .wy-alert-neutral.warning a, .rst-content .wy-alert-neutral.seealso a, .rst-content .wy-alert-neutral.admonition-todo a {
L.S. Cook's avatar
L.S. Cook committed
601
  color: #2995b8;
L.S. Cook's avatar
L.S. Cook committed
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
}

.wy-alert p:last-child, .rst-content .note p:last-child, .rst-content .attention p:last-child, .rst-content .caution p:last-child, .rst-content .danger p:last-child, .rst-content .error p:last-child, .rst-content .hint p:last-child, .rst-content .important p:last-child, .rst-content .tip p:last-child, .rst-content .warning p:last-child, .rst-content .seealso p:last-child, .rst-content .admonition-todo p:last-child {
  margin-bottom: 0;
}

.wy-tray-container {
  position: fixed;
  bottom: 0px;
  left: 0;
  z-index: 600;
}
.wy-tray-container li {
  display: block;
  width: 300px;
  background: transparent;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 0 24px;
  min-width: 20%;
  opacity: 0;
  height: 0;
  line-height: 56px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.wy-tray-container li.wy-tray-item-success {
  background: #c9c8c7;
}
.wy-tray-container li.wy-tray-item-info {
  background: #807b78;
}
.wy-tray-container li.wy-tray-item-warning {
  background: #d5c9c3;
}
.wy-tray-container li.wy-tray-item-danger {
  background: #ffeab7;
}
.wy-tray-container li.on {
  opacity: 1;
  height: 56px;
}

@media screen and (max-width: 768px) {
  .wy-tray-container {
    bottom: auto;
    top: 0;
    width: 100%;
  }
  .wy-tray-container li {
    width: 100%;
  }
}
button {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  cursor: pointer;
  line-height: normal;
  -webkit-appearance: button;
  *overflow: visible;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.btn {
  /* Structure */
  display: inline-block;
  border-radius: 2px;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
Leona C's avatar
Leona C committed
682 683
  font-size: 123%;
  padding: 7px 13px 9px 13px;
L.S. Cook's avatar
L.S. Cook committed
684 685
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
Leona C's avatar
Leona C committed
686
  background-color: #c1c7d7;
L.S. Cook's avatar
L.S. Cook committed
687
  text-decoration: none;
Leona C's avatar
Leona C committed
688
  font-weight: bolder;
689
  font-family: Nunito, "Nunito Sans","RobotoSlab", Arial, sans;
L.S. Cook's avatar
L.S. Cook committed
690 691 692 693
  box-shadow: 0px 1px 2px -1px rgba(255, 255, 255, 0.5) inset, 0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset;
  outline-none: false;
  vertical-align: middle;
  *display: inline;
694
  zoom: 1.3;
L.S. Cook's avatar
L.S. Cook committed
695 696 697 698 699 700 701 702 703 704 705
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.btn-hover {
Leona C's avatar
Leona C committed
706
  background: #dbe0ee;
L.S. Cook's avatar
L.S. Cook committed
707 708 709 710
  color: #fff;
}

.btn:hover {
Leona C's avatar
Leona C committed
711
  background: #c38f4a;
L.S. Cook's avatar
L.S. Cook committed
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
  color: #fff;
}
.btn:focus {
  background: #2cc36b;
  outline: 0;
}
.btn:active {
  box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.05) inset, 0px 2px 0px 0px rgba(0, 0, 0, 0.1) inset;
  padding: 8px 12px 6px 12px;
}
.btn:visited {
  color: #fff;
}

.btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.btn-small {
  font-size: 80%;
}

.btn-info {
  background-color: #2980B9 !important;
}
.btn-info:hover {
  background-color: #2e8ece !important;
}

.btn-neutral {
  background-color: #f3f6f6 !important;
L.S. Cook's avatar
L.S. Cook committed
744
  color: #7b7064 !important;
L.S. Cook's avatar
L.S. Cook committed
745 746 747
}
.btn-neutral:hover {
  background-color: #e5ebeb !important;
L.S. Cook's avatar
L.S. Cook committed
748
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
749 750
}
.btn-neutral:visited {
L.S. Cook's avatar
L.S. Cook committed
751
  color: #7b7064 !important;
L.S. Cook's avatar
L.S. Cook committed
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
}

.btn-success {
  background-color: #27AE60 !important;
}
.btn-success:hover {
  background-color: #229955 !important;
}

.btn-danger {
  background-color: #E74C3C !important;
}
.btn-danger:hover {
  background-color: #ea6153 !important;
}

.btn-warning {
  background-color: #E67E22 !important;
}
.btn-warning:hover {
  background-color: #e98b39 !important;
}

.btn-invert {
  background-color: #222;
}
.btn-invert:hover {
  background-color: #2f2f2f !important;
}

.btn-link {
  background-color: transparent !important;
  color: #2980B9;
  box-shadow: none;
  border-color: transparent !important;
}
.btn-link:hover {
  background-color: transparent !important;
  color: #409ad5 !important;
  box-shadow: none;
}
.btn-link:active {
  background-color: transparent !important;
  color: #409ad5 !important;
  box-shadow: none;
}
.btn-link:visited {
  color: #9B59B6;
}

.wy-btn-group .btn, .wy-control .btn {
  vertical-align: middle;
}

.wy-btn-group {
  margin-bottom: 24px;
  *zoom: 1;
}
.wy-btn-group:before, .wy-btn-group:after {
  display: table;
  content: "";
}
.wy-btn-group:after {
  clear: both;
}

.wy-dropdown {
  position: relative;
  display: inline-block;
}

.wy-dropdown-active .wy-dropdown-menu {
  display: block;
}

.wy-dropdown-menu {
  position: absolute;
  left: 0;
830
  display: visible;
L.S. Cook's avatar
L.S. Cook committed
831 832 833
  float: left;
  top: 100%;
  min-width: 100%;
Leona C's avatar
Leona C committed
834
  background: #FDC939;
L.S. Cook's avatar
L.S. Cook committed
835 836 837 838 839 840 841 842
  z-index: 100;
  border: solid 1px #cfd7dd;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  padding: 12px;
}
.wy-dropdown-menu > dd > a {
  display: block;
  clear: both;
L.S. Cook's avatar
L.S. Cook committed
843
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
  white-space: nowrap;
  font-size: 90%;
  padding: 0 12px;
  cursor: pointer;
}
.wy-dropdown-menu > dd > a:hover {
  background: #2980B9;
  color: #fff;
}
.wy-dropdown-menu > dd.divider {
  border-top: solid 1px #cfd7dd;
  margin: 6px 0;
}
.wy-dropdown-menu > dd.search {
  padding-bottom: 12px;
}
.wy-dropdown-menu > dd.search input[type="search"] {
  width: 100%;
}
.wy-dropdown-menu > dd.call-to-action {
  background: #e3e3e3;
  font-weight: 500;
  font-size: 80%;
}
.wy-dropdown-menu > dd.call-to-action:hover {
  background: #e3e3e3;
}
.wy-dropdown-menu > dd.call-to-action .btn {
  color: #fff;
}

.wy-dropdown.wy-dropdown-up .wy-dropdown-menu {
  bottom: 100%;
  top: auto;
  left: auto;
  right: 0;
}

.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu {
Leona C's avatar
Leona C committed
883
  background: #FDC939;
L.S. Cook's avatar
L.S. Cook committed
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
  margin-top: 2px;
}
.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a {
  padding: 6px 12px;
}
.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover {
  background: #2980B9;
  color: #fff;
}

.wy-dropdown.wy-dropdown-left .wy-dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

.wy-dropdown-arrow:before {
  border-bottom: 5px solid whitesmoke;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  display: block;
  top: -4px;
  left: 50%;
  margin-left: -3px;
}
.wy-dropdown-arrow.wy-dropdown-arrow-left:before {
  left: 11px;
}

.wy-form-stacked select {
  display: block;
}

.wy-form-aligned input, .wy-form-aligned textarea, .wy-form-aligned select, .wy-form-aligned .wy-help-inline, .wy-form-aligned label {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.wy-form-aligned .wy-control-group > label {
  display: inline-block;
  vertical-align: middle;
  width: 10em;
  margin: 6px 12px 0 0;
  float: left;
}
.wy-form-aligned .wy-control {
  float: left;
}
.wy-form-aligned .wy-control label {
  display: block;
}
.wy-form-aligned .wy-control select {
  margin-top: 6px;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  white-space: normal;
  margin-bottom: 24px;
  font-size: 150%;
  *margin-left: -7px;
}

label {
  display: block;
  margin: 0 0 0.3125em 0;
  color: #333;
  font-size: 90%;
}

input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

.wy-control-group {
  margin-bottom: 24px;
  *zoom: 1;
  max-width: 68em;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
}
.wy-control-group:before, .wy-control-group:after {
  display: table;
  content: "";
}
.wy-control-group:after {
  clear: both;
}
.wy-control-group:before, .wy-control-group:after {
  display: table;
  content: "";
}
.wy-control-group:after {
  clear: both;
}

.wy-control-group.wy-control-group-required > label:after {
  content: " *";
  color: #E74C3C;
}

.wy-control-group .wy-form-full, .wy-control-group .wy-form-halves, .wy-control-group .wy-form-thirds {
  padding-bottom: 12px;
}
.wy-control-group .wy-form-full select, .wy-control-group .wy-form-halves select, .wy-control-group .wy-form-thirds select {
  width: 100%;
}
.wy-control-group .wy-form-full input[type="text"], .wy-control-group .wy-form-full input[type="password"], .wy-control-group .wy-form-full input[type="email"], .wy-control-group .wy-form-full input[type="url"], .wy-control-group .wy-form-full input[type="date"], .wy-control-group .wy-form-full input[type="month"], .wy-control-group .wy-form-full input[type="time"], .wy-control-group .wy-form-full input[type="datetime"], .wy-control-group .wy-form-full input[type="datetime-local"], .wy-control-group .wy-form-full input[type="week"], .wy-control-group .wy-form-full input[type="number"], .wy-control-group .wy-form-full input[type="search"], .wy-control-group .wy-form-full input[type="tel"], .wy-control-group .wy-form-full input[type="color"], .wy-control-group .wy-form-halves input[type="text"], .wy-control-group .wy-form-halves input[type="password"], .wy-control-group .wy-form-halves input[type="email"], .wy-control-group .wy-form-halves input[type="url"], .wy-control-group .wy-form-halves input[type="date"], .wy-control-group .wy-form-halves input[type="month"], .wy-control-group .wy-form-halves input[type="time"], .wy-control-group .wy-form-halves input[type="datetime"], .wy-control-group .wy-form-halves input[type="datetime-local"], .wy-control-group .wy-form-halves input[type="week"], .wy-control-group .wy-form-halves input[type="number"], .wy-control-group .wy-form-halves input[type="search"], .wy-control-group .wy-form-halves input[type="tel"], .wy-control-group .wy-form-halves input[type="color"], .wy-control-group .wy-form-thirds input[type="text"], .wy-control-group .wy-form-thirds input[type="password"], .wy-control-group .wy-form-thirds input[type="email"], .wy-control-group .wy-form-thirds input[type="url"], .wy-control-group .wy-form-thirds input[type="date"], .wy-control-group .wy-form-thirds input[type="month"], .wy-control-group .wy-form-thirds input[type="time"], .wy-control-group .wy-form-thirds input[type="datetime"], .wy-control-group .wy-form-thirds input[type="datetime-local"], .wy-control-group .wy-form-thirds input[type="week"], .wy-control-group .wy-form-thirds input[type="number"], .wy-control-group .wy-form-thirds input[type="search"], .wy-control-group .wy-form-thirds input[type="tel"], .wy-control-group .wy-form-thirds input[type="color"] {
  width: 100%;
}

.wy-control-group .wy-form-full {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
}
.wy-control-group .wy-form-full:last-child {
  margin-right: 0;
}

.wy-control-group .wy-form-halves {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.wy-control-group .wy-form-halves:last-child {
  margin-right: 0;
}
.wy-control-group .wy-form-halves:nth-of-type(2n) {
  margin-right: 0;
}
.wy-control-group .wy-form-halves:nth-of-type(2n+1) {
  clear: left;
}

.wy-control-group .wy-form-thirds {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.wy-control-group .wy-form-thirds:last-child {
  margin-right: 0;
}
.wy-control-group .wy-form-thirds:nth-of-type(3n) {
  margin-right: 0;
}
.wy-control-group .wy-form-thirds:nth-of-type(3n+1) {
  clear: left;
}

.wy-control-group.wy-control-group-no-input .wy-control {
  margin: 6px 0 0 0;
  font-size: 90%;
}

.wy-control-no-input {
  display: inline-block;
  margin: 6px 0 0 0;
  font-size: 90%;
}

.wy-control-group.fluid-input input[type="text"], .wy-control-group.fluid-input input[type="password"], .wy-control-group.fluid-input input[type="email"], .wy-control-group.fluid-input input[type="url"], .wy-control-group.fluid-input input[type="date"], .wy-control-group.fluid-input input[type="month"], .wy-control-group.fluid-input input[type="time"], .wy-control-group.fluid-input input[type="datetime"], .wy-control-group.fluid-input input[type="datetime-local"], .wy-control-group.fluid-input input[type="week"], .wy-control-group.fluid-input input[type="number"], .wy-control-group.fluid-input input[type="search"], .wy-control-group.fluid-input input[type="tel"], .wy-control-group.fluid-input input[type="color"] {
  width: 100%;
}

.wy-form-message-inline {
  display: inline-block;
  padding-left: 0.3em;
  color: #666;
  vertical-align: middle;
  font-size: 90%;
}

.wy-form-message {
  display: block;
  color: #999;
  font-size: 70%;
  margin-top: 0.3125em;
  font-style: italic;
}
.wy-form-message p {
  font-size: inherit;
  font-style: italic;
  margin-bottom: 6px;
}
.wy-form-message p:last-child {
  margin-bottom: 0;
}

input {
  line-height: normal;
}

input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
1100
  font-family: 'Nunito Sans', "RobotoSlab", Arial, sans;
L.S. Cook's avatar
L.S. Cook committed
1101 1102 1103 1104 1105 1106 1107 1108
  *overflow: visible;
}
input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"] {
  -webkit-appearance: none;
  padding: 6px;
  display: inline-block;
  border: 1px solid #ccc;
  font-size: 80%;
1109
  font-family: 'Nunito Sans', "RobotoSlab", Arial, sans;
L.S. Cook's avatar
L.S. Cook committed
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 0;
  -webkit-transition: border 0.3s linear;
  -moz-transition: border 0.3s linear;
  transition: border 0.3s linear;
}
input[type="datetime-local"] {
  padding: 0.34375em 0.625em;
}
input[disabled] {
  cursor: default;
}
input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin-right: 0.3125em;
  *height: 13px;
  *width: 13px;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
  outline: 0;
  outline: thin dotted \9;
  border-color: #333;
}
input.no-focus:focus {
  border-color: #ccc !important;
}
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 1px auto #129FEA;
}
input[type="text"][disabled], input[type="password"][disabled], input[type="email"][disabled], input[type="url"][disabled], input[type="date"][disabled], input[type="month"][disabled], input[type="time"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="week"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="color"][disabled] {
  cursor: not-allowed;
  background-color: #fafafa;
}

input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
  color: #E74C3C;
  border: 1px solid #E74C3C;
}

input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus {
  border-color: #E74C3C;
}

input[type="file"]:focus:invalid:focus, input[type="radio"]:focus:invalid:focus, input[type="checkbox"]:focus:invalid:focus {
  outline-color: #E74C3C;
}

input.wy-input-large {
  padding: 12px;
  font-size: 100%;
}

textarea {
  overflow: auto;
  vertical-align: top;
  width: 100%;
1178
  font-family: "RobotoSlab", Arial, sans;
L.S. Cook's avatar
L.S. Cook committed
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
}

select, textarea {
  padding: 0.5em 0.625em;
  display: inline-block;
  border: 1px solid #ccc;
  font-size: 80%;
  box-shadow: inset 0 1px 3px #ddd;
  -webkit-transition: border 0.3s linear;
  -moz-transition: border 0.3s linear;
  transition: border 0.3s linear;
}

select {
  border: 1px solid #ccc;
  background-color: #fff;
}
select[multiple] {
  height: auto;
}

select:focus, textarea:focus {
  outline: 0;
}

select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  cursor: not-allowed;
  background-color: #fafafa;
}

input[type="radio"][disabled], input[type="checkbox"][disabled] {
  cursor: not-allowed;
}

.wy-checkbox, .wy-radio {
  margin: 6px 0;
L.S. Cook's avatar
L.S. Cook committed
1215
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
  display: block;
}
.wy-checkbox input, .wy-radio input {
  vertical-align: baseline;
}

.wy-form-message-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

.wy-input-prefix, .wy-input-suffix {
  white-space: nowrap;
  padding: 6px;
}
.wy-input-prefix .wy-input-context, .wy-input-suffix .wy-input-context {
  line-height: 27px;
  padding: 0 8px;
  display: inline-block;
  font-size: 80%;
  background-color: #f3f6f6;
  border: solid 1px #ccc;
  color: #999;
}

.wy-input-suffix .wy-input-context {
  border-left: 0;
}

.wy-input-prefix .wy-input-context {
  border-right: 0;
}

.wy-switch {
  width: 36px;
  height: 12px;
  margin: 12px 0;
  position: relative;
  border-radius: 4px;
  background: #ccc;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wy-switch:before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #999;
  left: -3px;
  top: -3px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wy-switch:after {
  content: "false";
  position: absolute;
  left: 48px;
  display: block;
  font-size: 12px;
  color: #ccc;
}

.wy-switch.active {
  background: #1e8449;
}
.wy-switch.active:before {
  left: 24px;
  background: #27AE60;
}
.wy-switch.active:after {
  content: "true";
}

.wy-switch.disabled, .wy-switch.active.disabled {
  cursor: not-allowed;
}

.wy-control-group.wy-control-group-error .wy-form-message, .wy-control-group.wy-control-group-error > label {
  color: #E74C3C;
}
.wy-control-group.wy-control-group-error input[type="text"], .wy-control-group.wy-control-group-error input[type="password"], .wy-control-group.wy-control-group-error input[type="email"], .wy-control-group.wy-control-group-error input[type="url"], .wy-control-group.wy-control-group-error input[type="date"], .wy-control-group.wy-control-group-error input[type="month"], .wy-control-group.wy-control-group-error input[type="time"], .wy-control-group.wy-control-group-error input[type="datetime"], .wy-control-group.wy-control-group-error input[type="datetime-local"], .wy-control-group.wy-control-group-error input[type="week"], .wy-control-group.wy-control-group-error input[type="number"], .wy-control-group.wy-control-group-error input[type="search"], .wy-control-group.wy-control-group-error input[type="tel"], .wy-control-group.wy-control-group-error input[type="color"] {
  border: solid 1px #E74C3C;
}
.wy-control-group.wy-control-group-error textarea {
  border: solid 1px #E74C3C;
}

.wy-inline-validate {
  white-space: nowrap;
}
.wy-inline-validate .wy-input-context {
  padding: 0.5em 0.625em;
  display: inline-block;
  font-size: 80%;
}

.wy-inline-validate.wy-inline-validate-success .wy-input-context {
  color: #27AE60;
}

.wy-inline-validate.wy-inline-validate-danger .wy-input-context {
  color: #E74C3C;
}

.wy-inline-validate.wy-inline-validate-warning .wy-input-context {
  color: #E67E22;
}

.wy-inline-validate.wy-inline-validate-info .wy-input-context {
  color: #2980B9;
}


@media only screen and (max-width: 480px) {
  .wy-form button[type="submit"] {
    margin: 0.7em 0 0;
  }
  .wy-form input[type="text"], .wy-form input[type="password"], .wy-form input[type="email"], .wy-form input[type="url"], .wy-form input[type="date"], .wy-form input[type="month"], .wy-form input[type="time"], .wy-form input[type="datetime"], .wy-form input[type="datetime-local"], .wy-form input[type="week"], .wy-form input[type="number"], .wy-form input[type="search"], .wy-form input[type="tel"], .wy-form input[type="color"] {
    margin-bottom: 0.3em;
    display: block;
  }
  .wy-form label {
    margin-bottom: 0.3em;
    display: block;
  }

  .wy-form input[type="password"], .wy-form input[type="email"], .wy-form input[type="url"], .wy-form input[type="date"], .wy-form input[type="month"], .wy-form input[type="time"], .wy-form input[type="datetime"], .wy-form input[type="datetime-local"], .wy-form input[type="week"], .wy-form input[type="number"], .wy-form input[type="search"], .wy-form input[type="tel"], .wy-form input[type="color"] {
    margin-bottom: 0;
  }

  .wy-form-aligned .wy-control-group label {
    margin-bottom: 0.3em;
    text-align: left;
    display: block;
    width: 100%;
  }
  .wy-form-aligned .wy-control {
    margin: 1.5em 0 0 0;
  }

  .wy-form .wy-help-inline, .wy-form-message-inline, .wy-form-message {
    display: block;
    font-size: 80%;
    padding: 6px 0;
  }
}
@media screen and (max-width: 768px) {
  .tablet-hide {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .mobile-hide {
    display: none;
  }
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.full-width {
  width: 100%;
}

1394

L.S. Cook's avatar
L.S. Cook committed
1395 1396 1397 1398 1399 1400 1401 1402
.wy-table, .rst-content table.docutils, .rst-content table.field-list {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  margin-bottom: 24px;
}
.wy-table caption, .rst-content table.docutils caption, .rst-content table.field-list caption {
  color: #000;
L.S. Cook's avatar
L.S. Cook committed
1403
  font: italic 85%/1 arial, sans;
L.S. Cook's avatar
L.S. Cook committed
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
  padding: 1em 0;
  text-align: center;
}
.wy-table td, .rst-content table.docutils td, .rst-content table.field-list td, .wy-table th, .rst-content table.docutils th, .rst-content table.field-list th {
  font-size: 90%;
  margin: 0;
  overflow: visible;
  padding: 8px 16px;
}
.wy-table td:first-child, .rst-content table.docutils td:first-child, .rst-content table.field-list td:first-child, .wy-table th:first-child, .rst-content table.docutils th:first-child, .rst-content table.field-list th:first-child {
  border-left-width: 0;
}
.wy-table thead, .rst-content table.docutils thead, .rst-content table.field-list thead {
  color: #000;
  text-align: left;
  vertical-align: bottom;
  white-space: nowrap;
}
.wy-table thead th, .rst-content table.docutils thead th, .rst-content table.field-list thead th {
1423 1424
  font-family: Nunito, 'Nunito Sans', sans;
  font-variant: small-caps;
Leona C's avatar
Leona C committed
1425
  border-bottom: solid 1px #c1c7d7;
L.S. Cook's avatar
L.S. Cook committed
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
}
.wy-table td, .rst-content table.docutils td, .rst-content table.field-list td {
  background-color: transparent;
  vertical-align: middle;
}

.wy-table td p, .rst-content table.docutils td p, .rst-content table.field-list td p {
  line-height: 18px;
}
.wy-table td p:last-child, .rst-content table.docutils td p:last-child, .rst-content table.field-list td p:last-child {
  margin-bottom: 0;
}

.wy-table .wy-table-cell-min, .rst-content table.docutils .wy-table-cell-min, .rst-content table.field-list .wy-table-cell-min {
  width: 1%;
  padding-right: 0;
}
.wy-table .wy-table-cell-min input[type=checkbox], .rst-content table.docutils .wy-table-cell-min input[type=checkbox], .rst-content table.field-list .wy-table-cell-min input[type=checkbox], .wy-table .wy-table-cell-min input[type=checkbox], .rst-content table.docutils .wy-table-cell-min input[type=checkbox], .rst-content table.field-list .wy-table-cell-min input[type=checkbox] {
  margin: 0;
}

.wy-table-secondary {
  color: gray;
  font-size: 90%;
}

.wy-table-tertiary {
  color: gray;
  font-size: 80%;
}

.wy-table-odd td, .wy-table-striped tr:nth-child(2n-1) td, .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
1458
  background-color: #e8e8e8;
L.S. Cook's avatar
L.S. Cook committed
1459 1460 1461 1462 1463 1464 1465 1466
}

.wy-table-backed {
  background-color: #f3f6f6;
}

/* BORDERED TABLES */
.wy-table-bordered-all, .rst-content table.docutils {
1467
  border: 1px solid #e5e2dd;
L.S. Cook's avatar
L.S. Cook committed
1468 1469
}
.wy-table-bordered-all td, .rst-content table.docutils td {
1470 1471
  border-bottom: 1px solid #e5e2dd;
  border-left: 1px solid #e0e0e0;
L.S. Cook's avatar
L.S. Cook committed
1472 1473 1474 1475 1476 1477
}
.wy-table-bordered-all tbody > tr:last-child td, .rst-content table.docutils tbody > tr:last-child td {
  border-bottom-width: 0;
}

.wy-table-bordered {
1478
  border: 1px solid #e5e2dd;
L.S. Cook's avatar
L.S. Cook committed
1479 1480 1481
}

.wy-table-bordered-rows td {
1482
  border-bottom: 1px solid #e5e2dd;
L.S. Cook's avatar
L.S. Cook committed
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
}
.wy-table-bordered-rows tbody > tr:last-child td {
  border-bottom-width: 0;
}

.wy-table-horizontal tbody > tr:last-child td {
  border-bottom-width: 0;
}
.wy-table-horizontal td, .wy-table-horizontal th {
  border-width: 0 0 1px 0;
  border-bottom: 1px solid #e1e4e5;
1494
  font-variant: small-caps;
L.S. Cook's avatar
L.S. Cook committed
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
}
.wy-table-horizontal tbody > tr:last-child td {
  border-bottom-width: 0;
}

/* RESPONSIVE TABLES */
.wy-table-responsive {
  margin-bottom: 24px;
  max-width: 100%;
  overflow: auto;
}
.wy-table-responsive table {
  margin-bottom: 0 !important;
}
1509
.wy-table-responsive table td {
L.S. Cook's avatar
L.S. Cook committed
1510 1511 1512
  white-space: pre-wrap;
}

1513 1514 1515 1516 1517 1518 1519
.wy-table-responsive table th {
  white-space: pre-wrap;
  font-family: Nunito, 'Nunito Sans', sans;
  font-variant: small-caps;
}


L.S. Cook's avatar
L.S. Cook committed
1520
a {
1521 1522
  color: #DC700D;
  background: transparent;
L.S. Cook's avatar
L.S. Cook committed
1523 1524 1525 1526
  text-decoration: none;
  cursor: pointer;
}
a:hover {
1527 1528
  background: #D4D4D4;
  color: #FFA400;
L.S. Cook's avatar
L.S. Cook committed
1529 1530

}
1531

L.S. Cook's avatar
L.S. Cook committed
1532
a:visited {
1533
  color: #DC700D;
L.S. Cook's avatar
L.S. Cook committed
1534 1535 1536 1537 1538 1539 1540 1541
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
1542
  font-family: Nunito, 'Nunito Sans', Sans, sans;
L.S. Cook's avatar
L.S. Cook committed
1543
  font-weight: normal;
Leona C's avatar
Leona C committed
1544
  color: #31343D;
L.S. Cook's avatar
L.S. Cook committed
1545
  min-height: 100%;
1546
  overflow-x: visible;
L.S. Cook's avatar
L.S. Cook committed
1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585
}

.wy-text-left {
  text-align: left;
}

.wy-text-center {
  text-align: center;
}

.wy-text-right {
  text-align: right;
}

.wy-text-large {
  font-size: 120%;
}

.wy-text-normal {
  font-size: 100%;
}

.wy-text-small, small {
  font-size: 80%;
}

.wy-text-strike {
  text-decoration: line-through;
}

.wy-text-warning {
  color: #E67E22 !important;
}

a.wy-text-warning:hover {
  color: #eb9950 !important;
}

.wy-text-info {
1586 1587
  color: #e0e0e0 !important;
  font-size: 1.33em;
L.S. Cook's avatar
L.S. Cook committed
1588 1589 1590
}

a.wy-text-info:hover {
1591
  color: #018791 !important;
L.S. Cook's avatar
L.S. Cook committed
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
}

.wy-text-success {
  color: #27AE60 !important;
}

a.wy-text-success:hover {
  color: #36d278 !important;
}

.wy-text-danger {
  color: #E74C3C !important;
}

a.wy-text-danger:hover {
  color: #ed7669 !important;
}

.wy-text-neutral {
L.S. Cook's avatar
L.S. Cook committed
1611
  color: #7b7064 !important;
L.S. Cook's avatar
L.S. Cook committed
1612 1613 1614 1615 1616 1617 1618
}

a.wy-text-neutral:hover {
  color: #595959 !important;
}

h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
1619
  margin-top: 0.33em;
1620
  padding-top: 0.31em;
L.S. Cook's avatar
L.S. Cook committed
1621
  font-weight: 700;
1622
  font-family: Nunito, 'Nunito Sans', "IntelClear-Regular", Lato, Helvetica, "Helvetica Neue", sans;
L.S. Cook's avatar
L.S. Cook committed
1623 1624 1625
}

p {
1626 1627 1628
  line-height: 23px;
  padding-bottom: 0.11em;
  padding-top: 0.11em;
1629 1630
  font-size: 1.07em;
  margin-bottom: 0.31em;
1631
  margin-top: 0.27em;
1632
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
L.S. Cook's avatar
L.S. Cook committed
1633 1634 1635
}

h1 {
L.S. Cook's avatar
L.S. Cook committed
1636
  font-size: 153%;
1637 1638 1639 1640 1641
  color: #393F4D;
}

h2 {
  font-size: 133%;
1642
  margin-top: -2px;
L.S. Cook's avatar
L.S. Cook committed
1643 1644 1645
}

h2, .rst-content .toctree-wrapper p.caption {
1646
  font-size: 139%;
1647 1648
  font-weight: normal;
  color: #393F4D;
L.S. Cook's avatar
L.S. Cook committed
1649 1650 1651
}

h3 {
L.S. Cook's avatar
L.S. Cook committed
1652
  font-size: 127%;
1653 1654
  color: #393F4D;
  text-decoration: underline 1px solid #999999;
L.S. Cook's avatar
L.S. Cook committed
1655 1656 1657
}

h4 {
1658
  font-size: 115%;
1659
  color: #393F4D;
1660

L.S. Cook's avatar
L.S. Cook committed
1661 1662 1663
}

h5 {
1664
  font-size: 107%;
L.S. Cook's avatar
L.S. Cook committed
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
}

h6 {
  font-size: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e1e4e5;
  margin: 24px 0;
  padding: 0;
}

code, .rst-content tt, .rst-content code {
  white-space: nowrap;
  max-width: 100%;
  font-size: 100%;
  padding: 0 5px;
1685
  font-family: Inconsolata-Regular, "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
1686
  color: #201c0f;
L.S. Cook's avatar
L.S. Cook committed
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
  overflow-x: auto;
}
code.code-large, .rst-content tt.code-large {
  font-size: 90%;
}

.wy-plain-list-disc, .rst-content .section ul, .rst-content .toctree-wrapper ul, article ul {
  list-style: disc;
  margin-bottom: 24px;
}
.wy-plain-list-disc li, .rst-content .section ul li, .rst-content .toctree-wrapper ul li, article ul li {
  list-style: disc;
  margin-left: 24px;
}
.wy-plain-list-disc li p:last-child, .rst-content .section ul li p:last-child, .rst-content .toctree-wrapper ul li p:last-child, article ul li p:last-child {
  margin-bottom: 0;
}
.wy-plain-list-disc li ul, .rst-content .section ul li ul, .rst-content .toctree-wrapper ul li ul, article ul li ul {
  margin-bottom: 0;
}
.wy-plain-list-disc li li, .rst-content .section ul li li, .rst-content .toctree-wrapper ul li li, article ul li li {
  list-style: circle;
}
.wy-plain-list-disc li li li, .rst-content .section ul li li li, .rst-content .toctree-wrapper ul li li li, article ul li li li {
  list-style: square;
}
.wy-plain-list-disc li ol li, .rst-content .section ul li ol li, .rst-content .toctree-wrapper ul li ol li, article ul li ol li {
  list-style: decimal;
}

.wy-plain-list-decimal, .rst-content .section ol, .rst-content ol.arabic, article ol {
  list-style: decimal;
  margin-bottom: 0.5em;
}
.wy-plain-list-decimal li, .rst-content .section ol li, .rst-content ol.arabic li, article ol li {
  list-style: decimal;
  margin-left: 20px;
}
.wy-plain-list-decimal li p:last-child, .rst-content .section ol li p:last-child, .rst-content ol.arabic li p:last-child, article ol li p:last-child {
  margin-bottom: 0;
}
.wy-plain-list-decimal li ul, .rst-content .section ol li ul, .rst-content ol.arabic li ul, article ol li ul {
  margin-bottom: 0;
}
.wy-plain-list-decimal li ul li, .rst-content .section ol li ul li, .rst-content ol.arabic li ul li, article ol li ul li {
  list-style: disc;
}

1735
pre, .codeblock, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'] {
Leona C's avatar
Leona C committed
1736
  border: 0.079em solid #d1d5e3;
L.S. Cook's avatar
L.S. Cook committed
1737 1738 1739 1740
  caption-side: bottom; 
  overflow-x: auto;
  font-size: 0.97em;
  line-height: 1.013em;
1741
  background: #F4F2F0;
L.S. Cook's avatar
L.S. Cook committed
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
  margin: 1px 0 20px 0;
}

.codeblock div[class^='highlight'], pre.literal-block div[class^='highlight'], .rst-content .literal-block div[class^='highlight'], div[class^='highlight'] div[class^='highlight'] {
  border: none;
  background: none;
  margin: 0;

}

div[class^='highlight'] td.code {
  width: 100%;
}

1756
.wy-menu-vertical p.caption {
1757
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
1758
  /* text-decoration: underline 2px #393F4D; */
1759
  font-size: 110%;
1760 1761
  color: #23221d;
  background-color: #FAFBFD;
1762 1763 1764
  white-space: nowrap;
}

1765
code, p.caption { 
1766 1767
  font-family: monospace;
  color: #23221d;
1768
  font-size: 0.99em;
1769
  line-height: 1.31em;
L.S. Cook's avatar
L.S. Cook committed
1770 1771
  }

1772 1773

caption-text {
1774
   font-family: Courier, monospace;
1775 1776 1777
   font-family: monospace;
   font-size: 1.03em;
   line-height: 1.43em;
1778 1779 1780
}


L.S. Cook's avatar
L.S. Cook committed
1781
  .code-block-caption { 
Leona C's avatar
Leona C committed
1782 1783
    color: #d1d5e3;
    background-color: #393f4d;
L.S. Cook's avatar
L.S. Cook committed
1784
    padding-right: 0.43em;
1785
    padding-top: 0.29em;
1786
    padding-left: 0.11em;
L.S. Cook's avatar
L.S. Cook committed
1787
    padding-bottom: 0.23em;
1788
    text-align: right; 
L.S. Cook's avatar
L.S. Cook committed
1789 1790 1791 1792 1793
    }

div[class^='highlight'] pre {
  margin: 0;
  padding: 12px 12px;
1794
  font-family: 'Inconsolata-Regular', 'Courier New', Monaco, Consolas, "Lucida Console", monospace;
L.S. Cook's avatar
L.S. Cook committed
1795
  font-size: 1.03em;
1796
  line-height: 1.05;
L.S. Cook's avatar
L.S. Cook committed
1797 1798 1799 1800 1801
  display: block;
  overflow: wrap;
}

  .linenodiv pre {
Leona C's avatar
Leona C committed
1802
    border-right: solid 1px #31343D;
L.S. Cook's avatar
L.S. Cook committed
1803 1804 1805 1806 1807
    margin: 0;
    padding: 12px 12px;
    font-family: Monaco, Consolas, "Lucida Console", monospace;
    font-size: 1.0em;
    line-height: 1.01;
1808 1809
    color: #d2af71;
    background-color: #393F4D;
L.S. Cook's avatar
L.S. Cook committed
1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
    }

@media print {
  .codeblock, pre.literal-block, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'], div[class^='highlight'] pre {
    white-space: pre-wrap;
    caption-side: bottom;
  }
}
.hll {
  background-color: #ffffcc;
  margin: 0 -12px;
  padding: 0 12px;
  display: block;
}

.c {
  color: #dd4422 !important;
  font-style: italic;
}

.err {
  color: #a61717;
  background-color: #e3d2d2;
}

.k {
  font-weight: bold;
}

.o {
  font-weight: bold;
}

.cm {
  color: #999988;
  font-style: italic;
}

.cp {
  color: #999999;
  font-weight: bold;
}

.c1 {
1854
  color: #201c0f;
L.S. Cook's avatar
L.S. Cook committed
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
  font-style: italic;
}

.cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}

.gd {
  color: #000000;
  background-color: #ffdddd;
}

.gd .x {
  color: #000000;
  background-color: #ffaaaa;
}

.ge {
  font-style: italic;
}

.gr {
  color: #aa0000;
}

.gh {
  color: #999999;
}

.gi {
  color: #000000;
  background-color: #ddffdd;
}

.gi .x {
  color: #000000;
  background-color: #aaffaa;
}

.go {
  /* Original white wasn't visible */
1898
  color: #2e2b27;
L.S. Cook's avatar
L.S. Cook committed
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
}

.gp {
  color: #555555;
}

.gs {
  font-weight: bold;
}

.gu {
  color: #800080;
  font-weight: bold;
}

.gt {
  color: #aa0000;
}

.kc {
  font-weight: bold;
}

.kd {
  font-weight: bold;
}

.kn {
  font-weight: bold;
}

.kp {
  font-weight: bold;
}

.kr {
  font-weight: bold;
}

.kt {
  color: #445588;
  font-weight: bold;
}

.m {
  color: #009999;
}

.s {
  color: #dd1144;
}

.n {
L.S. Cook's avatar
L.S. Cook committed
1952
  color: #554d2f;
L.S. Cook's avatar
L.S. Cook committed
1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
}

.na {
  color: teal;
}

.nb {
  color: #0086b3;
}

.nc {
  color: #445588;
  font-weight: bold;
}

.no {
  color: teal;
}

.ni {
  color: purple;
}

.ne {
  color: #990000;
  font-weight: bold;
}

.nf {
  color: #990000;
  font-weight: bold;
}

.nn {
  color: #555555;
}

.nt {
  color: navy;
}

.nv {
  color: teal;
}

.ow {
  font-weight: bold;
}

.w {
  color: #bbbbbb;
}

.mf {
  color: #009999;
}

.mh {
  color: #009999;
}

.mi {
  color: #009999;
}

.mo {
  color: #009999;
}

.sb {
  color: #dd1144;
}

.sc {
  color: #dd1144;
}

.sd {
  color: #dd1144;
}

.s2 {
  color: #dd1144;
}

.se {
  color: #dd1144;
}

.sh {
  color: #dd1144;
}

.si {
  color: #dd1144;
}

.sx {
  color: #dd1144;
}

.sr {
  color: #009926;
}

.s1 {
  color: #dd1144;
}

.ss {
  color: #990073;
}

.bp {
  color: #999999;
}

.vc {
  color: teal;
}

.vg {
  color: teal;
}

.vi {
  color: teal;
}

.il {
  color: #009999;
}

.gc {
  color: #999;
  background-color: #EAF2F5;
}

.wy-breadcrumbs li {
  display: inline-block;
}
.wy-breadcrumbs li.wy-breadcrumbs-aside {
  float: right;
}
.wy-breadcrumbs li a {
  display: inline-block;
  padding: 5px;
}
.wy-breadcrumbs li a:first-child {
  padding-left: 0;
}
.wy-breadcrumbs li code, .wy-breadcrumbs li .rst-content tt, .rst-content .wy-breadcrumbs li tt {
  padding: 5px;
  border: none;
  background: none;
}
.wy-breadcrumbs li code.literal, .wy-breadcrumbs li .rst-content tt.literal, .rst-content .wy-breadcrumbs li tt.literal {
L.S. Cook's avatar
L.S. Cook committed
2110
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138
}

.wy-breadcrumbs-extra {
  margin-bottom: 0;
  color: #dadada;
  font-size: 80%;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .wy-breadcrumbs-extra {
    display: none;
  }

  .wy-breadcrumbs li.wy-breadcrumbs-aside {
    display: none;
  }
}
@media print {
  .wy-breadcrumbs li.wy-breadcrumbs-aside {
    display: none;
  }
}
.rst-versions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 300px;
Leona C's avatar
Leona C committed
2139
  color: #FDC939;
2140
  font-family: monospace;
L.S. Cook's avatar
L.S. Cook committed
2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
  background: #1f1d1d;
  border-top: solid 10px #5f5f5f;
  z-index: 400;
}
.rst-versions a {
  color: #2980B9;
  text-decoration: none;
}
.rst-versions .rst-badge-small {
  display: none;
}
.rst-versions .rst-current-version {
  padding: 12px;
  background-color: #272525;
  display: block;
  text-align: right;
L.S. Cook's avatar
L.S. Cook committed
2157
  font-size: 90%;
L.S. Cook's avatar
L.S. Cook committed
2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169
  cursor: pointer;
  color: #27AE60;
  *zoom: 1;
}
.rst-versions .rst-current-version:before, .rst-versions .rst-current-version:after {
  display: table;
  content: "";
}
.rst-versions .rst-current-version:after {
  clear: both;
}
.rst-versions .rst-current-version .fa, .rst-versions .rst-current-version .rst-content .admonition-title, .rst-content .rst-versions .rst-current-version .admonition-title, .rst-versions .rst-current-version .rst-content h1 .headerlink, .rst-content h1 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h2 .headerlink, .rst-content h2 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h3 .headerlink, .rst-content h3 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h4 .headerlink, .rst-content h4 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h5 .headerlink, .rst-content h5 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h6 .headerlink, .rst-content h6 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content dl dt .headerlink, .rst-content dl dt .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content p.caption .headerlink, .rst-content p.caption .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content tt.download span:first-child, .rst-content tt.download .rst-versions .rst-current-version span:first-child, .rst-versions .rst-current-version .rst-content code.download span:first-child, .rst-content code.download .rst-versions .rst-current-version span:first-child, .rst-versions .rst-current-version .icon, .rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand, .wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand {
2170
  color: #f0f0f2;
L.S. Cook's avatar
L.S. Cook committed
2171 2172 2173 2174 2175 2176 2177 2178
}
.rst-versions .rst-current-version .fa-book, .rst-versions .rst-current-version .icon-book {
  float: left;
}
.rst-versions .rst-current-version .icon-book {
  float: left;
}
.rst-versions .rst-current-version.rst-out-of-date {
2179 2180
  background-color: #23221d;
  color: #23221d;
L.S. Cook's avatar
L.S. Cook committed
2181 2182
}
.rst-versions .rst-current-version.rst-active-old-version {
2183 2184
  background-color: 23221d;
  color: #23221d;
L.S. Cook's avatar
L.S. Cook committed
2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209
}
.rst-versions.shift-up .rst-other-versions {
  display: block;
}
.rst-versions .rst-other-versions {
  font-size: 90%;
  padding: 12px;
  color: gray;
  display: none;
}
.rst-versions .rst-other-versions hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 20px 0;
  padding: 0;
  border-top: solid 1px #413d3d;
}
.rst-versions .rst-other-versions dd {
  display: inline-block;
  margin: 0;
}
.rst-versions .rst-other-versions dd a {
  display: inline-block;
  padding: 6px;
Leona C's avatar
Leona C committed
2210
  color: #FDC939;
L.S. Cook's avatar
L.S. Cook committed
2211
}
2212 2213 2214 2215
.rst-other-versions a:hover {
  color: #555;
  background-color: #e0e0e0;
}
L.S. Cook's avatar
L.S. Cook committed
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
.rst-versions.rst-badge {
  width: auto;
  bottom: 20px;
  right: 20px;
  left: auto;
  border: none;
  max-width: 300px;
}
.rst-versions.rst-badge .icon-book {
  float: none;
}
.rst-versions.rst-badge .fa-book, .rst-versions.rst-badge .icon-book {
  float: none;
}
.rst-versions.rst-badge.shift-up .rst-current-version {
  text-align: right;
}
.rst-versions.rst-badge.shift-up .rst-current-version .fa-book, .rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
  float: left;
}
.rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
  float: left;
}
.rst-versions.rst-badge .rst-current-version {
  width: auto;
  height: 30px;
  line-height: 30px;
  padding: 0 6px;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .rst-versions {
    width: 85%;
    display: none;
  }
  .rst-versions.shift {
    display: block;
  }

  img {
    width: 100%;
    height: auto;
  }
}
.rst-content img {
  max-width: 100%;
  height: auto !important;
}
.rst-content div.figure {
  margin-bottom: 24px;
}
.rst-content div.figure p.caption {
  font-style: italic;
}
.rst-content div.figure.align-center {
  text-align: center;
}
.rst-content .section > img, .rst-content .section > a > img {
  margin-bottom: 24px;
}
.rst-content blockquote {
  margin-left: 24px;
  line-height: 24px;
  margin-bottom: 24px;
}
.rst-content .note .last, .rst-content .attention .last, .rst-content .caution .last, .rst-content .danger .last, .rst-content .error .last, .rst-content .hint .last, .rst-content .important .last, .rst-content .tip .last, .rst-content .warning .last, .rst-content .seealso .last, .rst-content .admonition-todo .last {
  margin-bottom: 0;
}
.rst-content .admonition-title:before {
  margin-right: 4px;
}
.rst-content .admonition table {
  border-color: rgba(0, 0, 0, 0.1);
}
.rst-content .admonition table td, .rst-content .admonition table th {
  background: transparent !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}
.rst-content .section ol.loweralpha, .rst-content .section ol.loweralpha li {
  list-style: lower-alpha;
}
.rst-content .section ol.upperalpha, .rst-content .section ol.upperalpha li {
  list-style: upper-alpha;
}
.rst-content .section ol p, .rst-content .section ul p {
  margin-bottom: 12px;
}
.rst-content .line-block {
  margin-left: 24px;
}
.rst-content .topic-title {
  font-weight: bold;
  margin-bottom: 12px;
}
.rst-content .toc-backref {
L.S. Cook's avatar
L.S. Cook committed
2313
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333
}
.rst-content .align-right {
  float: right;
  margin: 0px 0px 24px 24px;
}
.rst-content .align-left {
  float: left;
  margin: 0px 24px 24px 0px;
}
.rst-content .align-center {
  margin: auto;
  display: block;
}
.rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content .toctree-wrapper p.caption .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .rst-content p.caption .headerlink {
  display: none;
  visibility: hidden;
  font-size: 16px;
}
.rst-content h1 .headerlink:after, .rst-content h2 .headerlink:after, .rst-content .toctree-wrapper p.caption .headerlink:after, .rst-content h3 .headerlink:after, .rst-content h4 .headerlink:after, .rst-content h5 .headerlink:after, .rst-content h6 .headerlink:after, .rst-content dl dt .headerlink:after, .rst-content p.caption .headerlink:after {
  visibility: visible;
2334
  content: "";
2335
  font-family: 'sans-serif';
L.S. Cook's avatar
L.S. Cook committed
2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
  display: inline-block;
}
.rst-content h1:hover .headerlink, .rst-content h2:hover .headerlink, .rst-content .toctree-wrapper p.caption:hover .headerlink, .rst-content h3:hover .headerlink, .rst-content h4:hover .headerlink, .rst-content h5:hover .headerlink, .rst-content h6:hover .headerlink, .rst-content dl dt:hover .headerlink, .rst-content p.caption:hover .headerlink {
  display: inline-block;
}
.rst-content .sidebar {
  float: right;
  width: 40%;
  display: block;
  margin: 0 0 24px 24px;
2346 2347
  padding: 11px;
  background: #574BB1;
L.S. Cook's avatar
L.S. Cook committed
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
  border: solid 1px #e1e4e5;
}
.rst-content .sidebar p, .rst-content .sidebar ul, .rst-content .sidebar dl {
  font-size: 90%;
}
.rst-content .sidebar .last {
  margin-bottom: 0;
}
.rst-content .sidebar .sidebar-title {
  display: block;
2358 2359 2360
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', Arial, sans;
  font-weight: normal;
  background: #f1f4fa;
L.S. Cook's avatar
L.S. Cook committed
2361 2362 2363 2364 2365 2366
  padding: 6px 12px;
  margin: -24px;
  margin-bottom: 24px;
  font-size: 100%;
}
.rst-content .highlighted {
2367
  background: #F1C301;
L.S. Cook's avatar
L.S. Cook committed
2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
  display: inline-block;
  font-weight: bold;
  padding: 0 6px;
}

.sidebar ul {
  margin-left: 2.0em;
} 

.rst-content .footnote-reference, .rst-content .citation-reference {
  vertical-align: super;
  font-size: 90%;
}
.rst-content table.docutils.citation, .rst-content table.docutils.footnote {
  background: none;
  border: none;
  color: #999;
}

.rst-content table.docutils.citation td, .rst-content table.docutils.citation tr, .rst-content table.docutils.footnote td, .rst-content table.docutils.footnote tr {
  border: none;
  background-color: transparent !important;
  white-space: normal;
}
.rst-content table.docutils.citation td.label, .rst-content table.docutils.footnote td.label {
  padding-left: 0;
  padding-right: 0;
  vertical-align: top;
}
.rst-content table.docutils.citation tt, .rst-content table.docutils.citation code, .rst-content table.docutils.footnote tt, .rst-content table.docutils.footnote code {
  color: #555;
}
.rst-content table.field-list {
  border: none;
}
.rst-content table.field-list td {
  border: none;
  padding-top: 5px;
}
.rst-content table.field-list td > strong {
  display: inline-block;
  margin-top: 3px;
}
.rst-content table.field-list .field-name {
  padding-right: 1px;
  text-align: left;
  white-space: nowrap;
}
.rst-content table.field-list .field-body {
  text-align: left;
  padding-left: 0;
}
.rst-content tt, .rst-content tt, .rst-content code {
  color: #000;
  padding: 2px 5px;
}
.rst-content tt big, .rst-content tt em, .rst-content tt big, .rst-content code big, .rst-content tt em, .rst-content code em {
  font-size: 100% !important;
L.S. Cook's avatar
L.S. Cook committed
2426
  line-height: 1.0em;
L.S. Cook's avatar
L.S. Cook committed
2427 2428
}
.rst-content tt.literal, .rst-content tt.literal, .rst-content code.literal {
2429 2430
  font-size: 91% !important;
  color: #152a58;
2431 2432
  background-color: #fff;
  line-height: 0.8955em;
L.S. Cook's avatar
L.S. Cook committed
2433 2434 2435
}
.rst-content tt.xref, a .rst-content tt, .rst-content tt.xref, .rst-content code.xref, a .rst-content tt, a .rst-content code {
  font-weight: bold;
L.S. Cook's avatar
L.S. Cook committed
2436
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458
}
.rst-content a tt, .rst-content a tt, .rst-content a code {
  color: #2980B9;
}
.rst-content dl {
  margin-bottom: 24px;
}
.rst-content dl dt {
  font-weight: bold;
}
.rst-content dl p, .rst-content dl table, .rst-content dl ul, .rst-content dl ol {
  margin-bottom: 12px !important;
}
.rst-content dl dd {
  margin: 0 0 12px 24px;
}
.rst-content dl:not(.docutils) {
  margin-bottom: 24px;
}
.rst-content dl:not(.docutils) dt {
  display: inline-block;
  margin: 6px 0;
L.S. Cook's avatar
L.S. Cook committed
2459
  font-size: 100%;
2460 2461 2462 2463 2464
  font-family: monospace;
  line-height: 1.1em;
  background-color: #393F4D;
  border-top: solid 0.31em #ffa400;
  color: #d9d9d9;
L.S. Cook's avatar
L.S. Cook committed
2465 2466 2467
  padding: 6px;
  position: relative;
}
L.S. Cook's avatar
L.S. Cook committed
2468 2469 2470

.rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) code.descname {
  font-weight: normal;
2471
  line-height: 1.1em; /* 1.21 gigawatts in nano */
L.S. Cook's avatar
L.S. Cook committed
2472 2473 2474
}

.rst-content dl:not(.docutils) tt, .rst-content dl:not(.docutils) tt, .rst-content dl:not(.docutils) code {
2475
  /* font-weight: bold; */
2476 2477
  line-height: 1.177em;
  font-size: 103%; 
L.S. Cook's avatar
L.S. Cook committed
2478
}
L.S. Cook's avatar
L.S. Cook committed
2479 2480 2481
.rst-content dl:not(.docutils) dt:before {
  color: #d5dfb8;
}
L.S. Cook's avatar
L.S. Cook committed
2482 2483

.function {
2484 2485 2486 2487
    border-right: dotted 0.41em #999999;
    border-bottom: solid 0.31em #FFA400;
    border-top: solid 0.31em #FFA400;
    background: #fcfcfc;
L.S. Cook's avatar
L.S. Cook committed
2488 2489
}

2490 2491 2492
code.descname {
  color: #009C07;
}
L.S. Cook's avatar
L.S. Cook committed
2493

L.S. Cook's avatar
L.S. Cook committed
2494
.rst-content dl:not(.docutils) dt .headerlink {
L.S. Cook's avatar
L.S. Cook committed
2495
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2496 2497 2498 2499 2500
  font-size: 100% !important;
}
.rst-content dl:not(.docutils) dl dt {
  margin-bottom: 6px;
  border: none;
L.S. Cook's avatar
L.S. Cook committed
2501
  border-left: solid 3px #f4f2f0;
2502 2503 2504
  background: #f4f2f0;
  color: #555; ;
 
L.S. Cook's avatar
L.S. Cook committed
2505 2506
}
.rst-content dl:not(.docutils) dl dt .headerlink {
L.S. Cook's avatar
L.S. Cook committed
2507
  color: #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2508 2509 2510 2511 2512
  font-size: 100% !important;
}
.rst-content dl:not(.docutils) dt:first-child {
  margin-top: 0;
}
L.S. Cook's avatar
L.S. Cook committed
2513 2514 2515 2516

.rst-content dl:not(.docutils) em {
  font-size: 17px;
  font-weight: bolder;
L.S. Cook's avatar
L.S. Cook committed
2517
}
L.S. Cook's avatar
L.S. Cook committed
2518 2519 2520 2521 2522

.rst-content dl:not(.docutils) dt {
  font-size: 17px;
}

L.S. Cook's avatar
L.S. Cook committed
2523 2524 2525 2526 2527 2528
.rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) tt.descclassname, .rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) code.descname, .rst-content dl:not(.docutils) tt.descclassname, .rst-content dl:not(.docutils) code.descclassname {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 100% !important;
}
L.S. Cook's avatar
L.S. Cook committed
2529

L.S. Cook's avatar
L.S. Cook committed
2530 2531 2532 2533
.rst-content dl:not(.docutils) .optional {
  display: inline-block;
  padding: 0 4px;
  color: #000;
L.S. Cook's avatar
L.S. Cook committed
2534
  font-weight: lighter;
L.S. Cook's avatar
L.S. Cook committed
2535 2536 2537 2538
}
.rst-content dl:not(.docutils) .property {
  display: inline-block;
  padding-right: 8px;
L.S. Cook's avatar
L.S. Cook committed
2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551
    font-size: 17px;
}

.sig-paren {
    font-weight: bold;
    font-size: 19px;
    color: #727270;
    padding-left: 0.09em;
    padding-right: 0.09em;
 }
    
.rst-content dl:not(.docutils) .em { 
    font-size: 123%; 
L.S. Cook's avatar
L.S. Cook committed
2552
}
L.S. Cook's avatar
L.S. Cook committed
2553

L.S. Cook's avatar
L.S. Cook committed
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565
.rst-content .viewcode-link, .rst-content .viewcode-back {
  display: inline-block;
  color: #27AE60;
  font-size: 80%;
  padding-left: 24px;
}
.rst-content .viewcode-back {
  display: block;
  float: right;
}
.rst-content p.rubric {
  margin-bottom: 12px;
2566 2567 2568 2569
  font-weight: lighter;
  font-size: 110%;
  line-height: 0.87em;
  color: #9d9d9c;
2570
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;  
L.S. Cook's avatar
L.S. Cook committed
2571
}
2572

L.S. Cook's avatar
L.S. Cook committed
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600
.rst-content tt.download, .rst-content code.download {
  background: inherit;
  padding: inherit;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: inherit;
  white-space: inherit;
}
.rst-content tt.download span:first-child:before, .rst-content code.download span:first-child:before {
  margin-right: 4px;
}

.docbws {
  font-family: monospace;
  color: #A79992;
}

.crt-size {
  font-size: 0.85em;
}

@media screen and (max-width: 480px) {
  .rst-content .sidebar {
    width: 100%;
  }
}
span[id*='MathJax-Span'] {
2601
  color: #3f3b37;
L.S. Cook's avatar
L.S. Cook committed
2602 2603 2604 2605 2606 2607 2608 2609 2610 2611
}

.math {
  text-align: center;
}

.wy-affix {
  position: fixed;
  top: 1.618em;
}
2612 2613 2614 2615 2616
.wy-menu a {
  background-color: #FAFBFD;
  color: #23221d;
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
}
L.S. Cook's avatar
L.S. Cook committed
2617
.wy-menu a:hover {
2618
  background-color: #bba95e;
L.S. Cook's avatar
L.S. Cook committed
2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637
}

.wy-menu-horiz {
  *zoom: 1;
}
.wy-menu-horiz:before, .wy-menu-horiz:after {
  display: table;
  content: "";
}
.wy-menu-horiz:after {
  clear: both;
}
.wy-menu-horiz ul, .wy-menu-horiz li {
  display: inline-block;
}
.wy-menu-horiz li:hover {
  background: rgba(255, 255, 255, 0.1);
}
.wy-menu-horiz li.divide-left {
L.S. Cook's avatar
L.S. Cook committed
2638
  border-left: solid 1px #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2639 2640
}
.wy-menu-horiz li.divide-right {
L.S. Cook's avatar
L.S. Cook committed
2641
  border-right: solid 1px #7b7064;
L.S. Cook's avatar
L.S. Cook committed
2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
}
.wy-menu-horiz a {
  height: 32px;
  display: inline-block;
  line-height: 32px;
  padding: 0 16px;
}

.wy-menu-vertical {
  width: 300px;
2652
  /* border-right: 5px solid #999;*/
L.S. Cook's avatar
L.S. Cook committed
2653 2654
}
.wy-menu-vertical header, .wy-menu-vertical p.caption {
2655
  height: 29.1px;
L.S. Cook's avatar
L.S. Cook committed
2656
  display: inline-block;
2657
  line-height: 31.3px;
2658
  padding: 0.1 0.1 0.1 0.1;
2659
  margin-left: 0.43em;
2660 2661
  padding-left: 0.23em;
  margin-bottom: 0.22em;
L.S. Cook's avatar
L.S. Cook committed
2662
  display: block;
2663
  font-family: 'Nunito Sans', Nunito, Helvetica, 'Helvetica Neue', sans;
Leona C's avatar
Leona C committed
2664
  font-weight: bolder;
2665
  border-top: 5px dotted #FFA400;
2666
  border-bottom: 28px solid #d3d3d3;
2667
  font-size: 131%;
2668 2669
  color: #393F4D;
  width: auto;
L.S. Cook's avatar
L.S. Cook committed
2670 2671
  white-space: nowrap;
}
2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684

.wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand {
    display: block;
    font-size: 1.07em;
    line-height: 1.6em;
    color: #333;
    font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
}

.wy-menu-vertical header {
  border-bottom: 50px solid #999;
}

L.S. Cook's avatar
L.S. Cook committed
2685 2686 2687 2688
.wy-menu-vertical ul {
  margin-bottom: 0;
}
.wy-menu-vertical li.divide-top {
Leona C's avatar
Leona C committed
2689
  border-top: solid 1px #d1d5e3;
L.S. Cook's avatar
L.S. Cook committed
2690 2691
}
.wy-menu-vertical li.divide-bottom {
Leona C's avatar
Leona C committed
2692
  border-bottom: solid 1px #d1d5e3;
L.S. Cook's avatar
L.S. Cook committed
2693 2694
}
.wy-menu-vertical li.current {
2695
  background: #FAFBFD;
L.S. Cook's avatar
L.S. Cook committed
2696 2697
}
.wy-menu-vertical li.current a {
2698
  color: #23221D;
L.S. Cook's avatar
L.S. Cook committed
2699 2700 2701
  padding: 0.4045em 2.427em;
}
.wy-menu-vertical li.current a:hover {
2702 2703
  background: #FAFBFD;

L.S. Cook's avatar
L.S. Cook committed
2704 2705 2706 2707 2708 2709 2710
}
.wy-menu-vertical li code, .wy-menu-vertical li .rst-content tt, .rst-content .wy-menu-vertical li tt {
  border: none;
  background: inherit;
  color: inherit;
  padding-left: 0;
  padding-right: 0;
2711 2712
  margin-right: 20%;
  width: auto;
L.S. Cook's avatar
L.S. Cook committed
2713 2714 2715 2716
}
.wy-menu-vertical li span.toctree-expand {
  display: block;
  float: left;
2717
  margin-left: -0.2em;
L.S. Cook's avatar
L.S. Cook committed
2718 2719
  font-size: 0.8em;
  line-height: 1.6em;
Leona C's avatar
Leona C committed
2720
  color: #393f4d;
2721 2722 2723
    max-height: 0;
  overflow: hidden;

L.S. Cook's avatar
L.S. Cook committed
2724 2725
}
.wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
2726
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
2727
  padding-left: 0.55em;
2728 2729 2730 2731
  background-color: #fafbfd;
  color: #5c5955;
  border-right: 4px solid #FFA400;

L.S. Cook's avatar
L.S. Cook committed
2732 2733
}
.wy-menu-vertical li.on a:hover, .wy-menu-vertical li.current > a:hover {
2734 2735 2736
  background-color: #D4D4D4;
  color: #FFA400;
  border-right: 4px solid #999;
L.S. Cook's avatar
L.S. Cook committed
2737 2738
}
.wy-menu-vertical li.on a:hover span.toctree-expand, .wy-menu-vertical li.current > a:hover span.toctree-expand {
2739
  color: #FAFBFD;
L.S. Cook's avatar
L.S. Cook committed
2740 2741 2742 2743 2744
}
.wy-menu-vertical li.on a span.toctree-expand, .wy-menu-vertical li.current > a span.toctree-expand {
  display: block;
  font-size: 0.8em;
  line-height: 1.6em;
2745
  color: #23221d;
L.S. Cook's avatar
L.S. Cook committed
2746 2747 2748 2749 2750 2751 2752 2753
}
.wy-menu-vertical li.toctree-l1.current li.toctree-l2 > ul, .wy-menu-vertical li.toctree-l2.current li.toctree-l3 > ul {
  display: none; margin-left: 0.33em; padding-left: 0.22em;
}
.wy-menu-vertical li.toctree-l1.current li.toctree-l2.current > ul, .wy-menu-vertical li.toctree-l2.current li.toctree-l3.current > ul {
  display: block; margin-left: 0.33em; padding-left: 0.22em;
}
.wy-menu-vertical li.toctree-l2.current > a {
Leona C's avatar
Leona C committed
2754
  background: #efeeed;
L.S. Cook's avatar
L.S. Cook committed
2755 2756 2757 2758
  padding: 0.4045em 2.427em;
}
.wy-menu-vertical li.toctree-l2.current li.toctree-l3 > a {
  display: block;
2759
  background: #FAFBFD;
L.S. Cook's avatar
L.S. Cook committed
2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771
  padding: 0.4045em 4.045em;
}
.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand {
  color: gray;
}
.wy-menu-vertical li.toctree-l2 span.toctree-expand {
  color: #a3a3a3;
}
.wy-menu-vertical li.toctree-l3 {
  font-size: 0.9em;
}
.wy-menu-vertical li.toctree-l3.current > a {
2772
  background: #555;
L.S. Cook's avatar
L.S. Cook committed
2773 2774 2775 2776
  padding: 0.4045em 4.045em;
}
.wy-menu-vertical li.toctree-l3.current li.toctree-l4 > a {
  display: block;
2777
  background: #555;
L.S. Cook's avatar
L.S. Cook committed
2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
  padding: 0.4045em 5.663em;
  border-top: none;
  border-bottom: none;
}
.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand {
  color: gray;
}
.wy-menu-vertical li.toctree-l3 span.toctree-expand {
  color: #969696;
}
.wy-menu-vertical li.toctree-l4 {
  font-size: 0.9em;
}
.wy-menu-vertical li.current ul {
  display: block;
}
.wy-menu-vertical li ul {
  margin-bottom: 0;
  display: none;
}
2798
.wy-menu-vertical . local-toc li ul {
L.S. Cook's avatar
L.S. Cook committed
2799 2800 2801 2802
  display: block;
}
.wy-menu-vertical li ul li a {
  margin-bottom: 0;
L.S. Cook's avatar
L.S. Cook committed
2803
  color: #e8e8e8;
L.S. Cook's avatar
L.S. Cook committed
2804 2805 2806 2807
  font-weight: normal;
}
.wy-menu-vertical a {
  display: inline-block;
2808
  line-height: 0.93em;
2809
  padding: 0.4045em 1.31em;
L.S. Cook's avatar
L.S. Cook committed
2810
  display: block;
2811 2812
  font-size: 96%;
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
L.S. Cook's avatar
L.S. Cook committed
2813 2814
}
.wy-menu-vertical a:hover {
Leona C's avatar
Leona C committed
2815
  background-color: #fafbfd;
L.S. Cook's avatar
L.S. Cook committed
2816 2817
}
.wy-menu-vertical a:hover span.toctree-expand {
L.S. Cook's avatar
L.S. Cook committed
2818
  color: #e8e8e8;
L.S. Cook's avatar
L.S. Cook committed
2819 2820
}
.wy-menu-vertical a:active {
2821 2822
  background-color: #FAFBFD;
  color: #555;
L.S. Cook's avatar
L.S. Cook committed
2823 2824
}
.wy-menu-vertical a:active span.toctree-expand {
2825
  color: #555;
L.S. Cook's avatar
L.S. Cook committed
2826 2827
}

2828 2829


L.S. Cook's avatar
L.S. Cook committed
2830 2831 2832 2833 2834 2835
.wy-side-nav-search {
  display: block;
  width: 300px;
  padding: 0.809em;
  margin-bottom: 0.809em;
  z-index: 200;
2836
  background-color: #FAFBFD;
L.S. Cook's avatar
L.S. Cook committed
2837 2838 2839
  text-align: center;
  padding: 0.809em;
  display: block;
Leona C's avatar
Leona C committed
2840
  color: #393f4d;
2841
  font-family: Nunito, 'Nunito Sans', Helvetica, 'Helvetica Neue', sans;
L.S. Cook's avatar
L.S. Cook committed
2842 2843 2844 2845
  margin-bottom: 0.809em;
}
.wy-side-nav-search input[type=text] {
  width: 100%;
L.S. Cook's avatar
L.S. Cook committed
2846
    line-height: 1.3em;
L.S. Cook's avatar
L.S. Cook committed
2847 2848
  border-radius: 50px;
  padding: 6px 12px;
2849
  border-color: #aba09b;
L.S. Cook's avatar
L.S. Cook committed
2850 2851 2852 2853 2854 2855
}
.wy-side-nav-search img {
  display: block;
  margin: auto auto 0.809em auto;
  height: 45px;
  width: 45px;
2856
  background-color: #aba09b;
L.S. Cook's avatar
L.S. Cook committed
2857 2858 2859 2860
  padding: 5px;
  border-radius: 100%;
}
.wy-side-nav-search > a, .wy-side-nav-search .wy-dropdown > a {
2861
  color: #999;
Leona C's avatar
Leona C committed
2862
  font-size: 91%;
2863
  font-family: Nunito, 'Nunito Sans', Helvetica, Arial, sans;
L.S. Cook's avatar
L.S. Cook committed
2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879
  font-weight: bold;
  display: inline-block;
  padding: 4px 6px;
  margin-bottom: 0.809em;
}
.wy-side-nav-search > a:hover, .wy-side-nav-search .wy-dropdown > a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.wy-side-nav-search > a img.logo, .wy-side-nav-search .wy-dropdown > a img.logo {
  display: block;
  margin: 0 auto;
  height: auto;
  width: auto;
  border-radius: 0;
  max-width: 100%;
  background: transparent;
2880
  z-index: 1001;
L.S. Cook's avatar
L.S. Cook committed
2881 2882
}
.wy-side-nav-search > a.icon img.logo, .wy-side-nav-search .wy-dropdown > a.icon img.logo {
2883
  margin-top: 1.15em;
L.S. Cook's avatar
L.S. Cook committed
2884 2885 2886 2887 2888
}
.wy-side-nav-search > div.version {
  margin-top: -0.4045em;
  margin-bottom: 0.809em;
  font-weight: normal;
2889
  color: #3f3c3d;
L.S. Cook's avatar
L.S. Cook committed
2890 2891 2892
}

.wy-nav .wy-menu-vertical header {
2893
  color: #23221D;
L.S. Cook's avatar
L.S. Cook committed
2894 2895
}
.wy-nav .wy-menu-vertical a {
2896
  color: #23221D;
L.S. Cook's avatar
L.S. Cook committed
2897 2898
}
.wy-nav .wy-menu-vertical a:hover {
2899 2900
  background-color: #fcfcfc;
  color: #23221D;
L.S. Cook's avatar
L.S. Cook committed
2901 2902 2903
}

.wy-body-for-nav {
2904 2905
  background-color: #FAFBFD;
  margin-top: 43px;  
L.S. Cook's avatar
L.S. Cook committed
2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923
}

.wy-grid-for-nav {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wy-nav-side {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2em;
  width: 300px;
  overflow-x: hidden;
  overflow-y: hidden;
  min-height: 100%;
2924 2925
  background: #fafbfd;
  /* border-right: 5px solid #999; */
L.S. Cook's avatar
L.S. Cook committed
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938
  z-index: 200;
}

.wy-side-scroll {
  width: 320px;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
}

.wy-nav-top {
  display: none;
2939 2940
  background: #fafbfd;
  color: #23221D;
L.S. Cook's avatar
L.S. Cook committed
2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955
  padding: 0.4045em 0.809em;
  position: relative;
  line-height: 50px;
  text-align: center;
  font-size: 100%;
  *zoom: 1;
}
.wy-nav-top:before, .wy-nav-top:after {
  display: table;
  content: "";
}
.wy-nav-top:after {
  clear: both;
}
.wy-nav-top a {
Leona C's avatar
Leona C committed
2956
  color: #393f4d;
2957
  font-family: "Nunito Sans", sans;
L.S. Cook's avatar
L.S. Cook committed
2958 2959 2960 2961 2962
}
.wy-nav-top img {
  margin-right: 12px;
  height: 45px;
  width: 45px;
Leona C's avatar
Leona C committed
2963
  background-color: #31343d;
L.S. Cook's avatar
L.S. Cook committed
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980
  padding: 5px;
  border-radius: 100%;
}
.wy-nav-top i {
  font-size: 30px;
  float: left;
  cursor: pointer;
}

.wy-nav-content-wrap {
  margin-left: 300px;
  min-height: 100%;
}

.wy-nav-content {
  padding: 1.618em 3.236em;
  height: 100%;
2981
  max-width: 979px !important;
L.S. Cook's avatar
L.S. Cook committed
2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014
  margin: auto;
}


footer {
  color: #999;
  font-size: 0.81em;
}
footer p {
  margin-bottom: 12px;
}
footer span.commit code, footer span.commit .rst-content tt, .rst-content footer span.commit tt {
  padding: 0px;
  font-family: Monaco, Consolas, "Menlo", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
  font-size: 0.81em;
  background: none;
  border: none;
  color: #999;
}

.rst-footer-buttons {
  *zoom: 1;
}
.rst-footer-buttons:before, .rst-footer-buttons:after {
  display: table;
  content: "";
}
.rst-footer-buttons:after {
  clear: both;
}

#search-results .search li {
  margin-bottom: 24px;
3015
  border-bottom: solid 1px #f3cdba;
L.S. Cook's avatar
L.S. Cook committed
3016 3017 3018
  padding-bottom: 24px;
}
#search-results .search li:first-child {
3019
  border-top: solid 1px #f3cdba;
L.S. Cook's avatar
L.S. Cook committed
3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033
  padding-top: 24px;
}
#search-results .search li a {
  font-size: 120%;
  margin-bottom: 12px;
  display: inline-block;
}
#search-results .context {
  color: gray;
  font-size: 90%;
}

@media screen and (max-width: 768px) {
  .wy-body-for-nav {
Leona C's avatar
Leona C committed
3034
    background: #fafbfd;
L.S. Cook's avatar
L.S. Cook committed
3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072
  }

  .wy-nav-top {
    display: block;
  }

  .wy-nav-side {
    left: -300px;
  }
  .wy-nav-side.shift {
    width: 85%;
    left: 0;
  }

  .wy-side-scroll {
    width: auto;
  }

  .wy-side-nav-search {
    width: auto;
  }

  .wy-menu.wy-menu-vertical {
    width: auto;
  }

  .wy-nav-content-wrap {
    margin-left: 0;
  }
  .wy-nav-content-wrap .wy-nav-content {
    padding: 1.618em;
  }
  .wy-nav-content-wrap.shift {
    position: fixed;
    min-width: 100%;
    left: 85%;
    top: 0;
    height: 100%;
3073
    overflow: visible;
L.S. Cook's avatar
L.S. Cook committed
3074 3075
  }
}
3076
@media screen and (min-width: 950px) {
L.S. Cook's avatar
L.S. Cook committed
3077
  .wy-nav-content-wrap {
3078 3079
    background-size: cover;
    background-repeat: no-repeat;
L.S. Cook's avatar
L.S. Cook committed
3080 3081 3082 3083
  }

  .wy-nav-content {
    margin: 0;
Leona C's avatar
Leona C committed
3084
    background: #fafbfd;
L.S. Cook's avatar
L.S. Cook committed
3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097
  }
}
@media print {
  .rst-versions, footer, .wy-nav-side {
    display: none;
  }

  .wy-nav-content-wrap {
    margin-left: 0;
  }
}

/*# sourceMappingURL=theme.css.map */