/* -*- css -*-
 *
 * pynl.css_t
 * ~~~~~~~~~~~~~~~
 *
 * Sphinx stylesheet -- pynl theme.

 * Based on scipy sphinx theme, originally created by
 * Armin Ronacher for Werkzeug.
 *
 * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
 * :license: BSD, see LICENSE for details.
 *
 */


@import url("scipy.css");

/*
 * RW Top logo
 */
div.top-roguewave_logo-header {
    text-align: left;
    background-color: rgb(255, 255, 255);
    border-bottom: 6px solid rgb(255, 255, 255);
    margin-top: 12px;
    padding: 5px;
    box-shadow: 0px 0px 3px rgb(136, 136, 136);
}
/* 
 * RW color for nav buttons  
*/
.spc-navbar .nav-pills > li > a {
  background-color: #266092
}
/* 
 * Avoid overflow of left sidebar text 
*/
.spc-rightsidebar {
  word-break: break-all;
} 
/* 
 * Avoid overflow of header text 
*/  
div#spc-section-body h1 {
  word-break: break-all;
}
/* 
 * Ensure that backticks are rendered as italic which for some
 * reason was overridden in spc-bootstrap.css. 
*/
cite {
  font-style: italic;
}
/*
 * Ensure that examples display a horizontal scrollbar instead
 * of wrapping the text to the next line.
*/
pre {
  word-wrap: normal;
  white-space: pre;
}
/*
 * Specify that the text in <td> elements (table.nowrap) will
 * never wrap.
*/
table.nowrap td {
  white-space: nowrap
}