/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 johnalbin Exp $ */


/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/

body {}

#page,
#closure-blocks {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 1020px;
}

#page-inner {}

#navigation-top,
#navigation {
    position: absolute;
    /* Take the named anchors out of the doc flow    */
    left: -10000px;
    /* and prevent any anchor styles from appearing. */
}


/*
  #skip-to-nav
  {
    float: right;
    margin: 0 !important;
    font-size: 0.8em;
  }

  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff;
  }

  #skip-to-nav a:hover
  {
    color: #000;
    text-decoration: none;
  }
*/


/* Alternatively, the skip-to-nav link can be completely hidden until a user tabs
     to the link. Un-comment the following CSS to use this technique. */

#skip-to-nav a,
#skip-to-nav a:hover,
#skip-to-nav a:visited {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#skip-to-nav a:active,
#skip-to-nav a:focus {
    position: static;
    width: auto;
    height: auto;
}


/** header **/

#header {}

#header-inner {}

#logo-title {}

#logo {
    float: left;
}

#site-name {}

#site-slogan {}

#header-blocks {
    clear: both;
    /* Clear the logo */
}


/** main (container for everything else) **/

#main {
    position: relative;
}

#main-inner {}


/** content **/

#content,
.no-sidebars #content {
    float: left;
    width: 985px;
    margin-left: 0;
    margin-right: -985px;
    /* Negative value of #content's width + left margin. */
    padding: 0;
    /* DO NOT CHANGE. Add padding or margin to #content-inner. */
}

.sidebar-left #content {
    width: 747px;
    margin-left: 238px;
    /* The width of #sidebar-left. */
    margin-right: -985px;
    /* Negative value of #content's width + left margin. */
}

.sidebar-right #content {
    width: 747px;
    margin-left: 0;
    margin-right: -747px;
    /* Negative value of #content's width + left margin. */
}

.two-sidebars #content {
    width: 509px;
    margin-left: 238px;
    /* The width of #sidebar-left */
    margin-right: -747px;
    /* Negative value of #content's width + left margin. */
}

#content-inner {
    margin: 0;
    padding: 0 11px;
}

.no-sidebars #content-inner {
    padding: 0;
}

.sidebar-left #content-inner {
    padding: 0 0 0 11px;
}

.sidebar-right #content-inner {
    padding: 0 11px 0 0;
}


/** navbar **/

#navbar {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%;
    /* Negative value of #navbar's width + left margin. */
    padding: 0;
    /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
    /* height: 3.6em;  The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
    height: 35px;
}

.with-navbar #content,
.with-navbar #sidebar-left,
.with-navbar #sidebar-right {
    /* margin-top: 3.6em;  Set this to the same value as the navbar height above. */
    margin-top: 46px;
}

#navbar-inner {}

#search-box {
    /*	
    width: 200px;
    margin-right: -200px; */
    /* Negative value of #search-box's width. */
    /* float: left;*/
}

#primary {
    /* margin-left: 200px;  Width of search-box */
}

#secondary {
    margin-left: 200px;
    /* Width of search-box */
}

#navbar ul
/* Primary and secondary links */

{
    margin: 0;
    padding: 0;
    text-align: left;
}

#navbar li
/* A simple method to get navbar links to appear in one line. */

{
    float: left;
    padding: 0;
}


/* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */


/*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */


/** BOOK READ STYLING **/
.bookRead {
    margin: auto;
    max-width: 33em;
    position: relative;
    font-size: 19px;
    line-height: 1.6em;
    font-family: "Times New Roman", Times, serif; 
}

.bookread table {
    width: 100%;
}
/*
.bookRead td, .bookRead th {
    font-family: Times New Roman;
}
*/
.bookRead:lang(zh) { font-family: sans-serif; }
.bookRead { --xl: 72px; --lg: 36px; --md: 27px; --mmd: -27px; --sm: 18px; --xs: 9px; --no: 0; --si: 120px; --di: 147px; --mdi: -147px; --ti: 174px; }
.bookRead p { font-size: 1em; margin: 0; line-height: 1.6em; } /* text-align: left; } BWM: removed for RTL. Allow site defaults here. */ 
.bookRead h1, .bookRead h2, .bookRead .title, .bookRead .paper { text-align: center; font-weight: bold; }
.bookRead h1:lang(zh), .bookRead h2:lang(zh), .bookRead .title:lang(zh), .bookRead .paper:lang(zh) { font-family: serif; font-weight: normal; }
.bookRead h1, .bookRead .paper { font-size: 2em; }
.bookRead h1 { padding-bottom: 0.5em; }
.bookRead h2 { font-size: 1.5em; padding: 1em 0; }
.bookRead hr { width: 100%; color: #777; }
.bookRead img { margin-left: auto; margin-right: auto; }
.bookRead small { display: inline-block; font-size: 0.7em; color: #777; width: 8em; }
.bookRead small:lang(ar) { text-align: right; }
.bookRead em { font-style: italic; }
.bookRead em:lang(ar) { font-style: normal; font-weight: bold; }
.bookRead sup a, span.note a { text-decoration: none; }
.bookRead sup a:hover, span.note a:hover { text-decoration: underline; }
.bookRead section.endnotes p a { text-decoration: none; }
.bookRead section.endnotes p a:hover { text-decoration: underline; }
.bookRead div.container { display: block; margin-left: auto; margin-right: auto; }
.bookRead .title { font-size: 1.5em; padding-bottom: 0.5em; }
.bookRead .fmtitle { font-size: 2.5em; font-weight: 600; }
.bookRead .fmlogo { width: 4.75em; height: 4.75em; } 
.bookRead .fmico { display: inline-block; width:16px; height:16px; }
.bookRead .tm { color: #1295d8; font-weight: 600; }
.bookRead .tl { margin-top: 2em; }
.bookRead .ctr { text-align: center; }
.bookRead .ctr:lang(zh) { text-align: center !important; }
.bookRead .btn { padding-bottom: 0; }
.bookRead .bts { padding-bottom: 1em; }
.bookRead .btl { padding-bottom: 2em; } 
.bookRead .bte { padding-bottom: 3em; } 
.bookRead .fln { padding: 0; text-align: center; }
.bookRead .fln > small { float: left; text-align: left; }
.bookRead .fll { padding: 3em 0; text-align: center; }
.bookRead .fll > small { float: left; text-align: left; }
.bookRead .l2n { padding-bottom: 0; }
.bookRead .l2n > small { width: 9em; }
.bookRead .l2s { margin-bottom: 1em; }
.bookRead .l2s > small { width: 9em; }
.bookRead .l3n { margin-bottom: 0; }
.bookRead .l3n > small { width: 11em; }
.bookRead .l3s { margin-bottom: 1em; }
.bookRead .l3s > small { width: 11em; }
.bookRead .btn:lang(zh), .bookRead .bts:lang(zh), .bookRead .btl:lang(zh), .bookRead .bte:lang(zh), .bookRead .l2n:lang(zh), .bookRead .l2s:lang(zh), .bookRead .l3n:lang(zh), .bookRead .l3s:lang(zh) { text-align: justify; text-justify: auto; }
.bookRead .bhi { margin-bottom: 0; text-indent: -9em; padding-left: 11em; }
.bookRead .bhi:lang(ar) { padding-right: 11em; padding-left: initial; }
.bookRead .bhi > small { text-indent: -3em; }
.bookRead .note { font-size: 0.7em; color: #777; }
.bookRead .scaps { font-variant: small-caps; }
.bookRead .pti { text-indent: 1em; }
.bookRead .pnr { display: inline-block; width: 2.5em; }
.bookRead .ptc { display: inline-block; width: 45%; }
.bookRead .pac { display: inline-block; }
.bookRead .pac:lang(ar) { width: auto; }
.bookRead .ppg { display: inline-block; float: right; }
.bookRead .ppg:lang(ar) { width: 2.5em; text-align: left; float: left; }
.bookRead .phd { margin-left: 0; }
.bookRead .psc { margin-left: 2em; }
.bookRead .psc:lang(ar) { margin-left: auto; margin-right: 2em; }
.bookRead .pra { white-space: nowrap; display: inline-flex; width:82%; }
.bookRead .dot { border-bottom: 2px dotted black; width: 100%; }
.bookRead .ran { float: right; }

/*
.bookRead td.tl1 { width: 92%; padding: var(--xs) var(--no); }
.bookRead td.tl2 { padding-left: var(--lg); }
.bookRead td.tl3 { padding-left: var(--xl); }
*/
@media only screen and (max-width: 767px) { .bookRead .ppg { display: none; }}
@media only screen and (min-width: 768px) { .bookRead { width: 96%; }} 
@media only screen and (min-width: 992px) { .bookRead { width: 86%; }} 
@media only screen and (min-width: 1200px) { .bookRead { width: 66%; }}


/* Title Papers Page */
#node-9999 .bookRead,
#node-9999 .bookRead,
#node-14132 .bookRead,
#node-2857 .bookRead,
#node-10865 .bookRead,
#node-3599 .bookRead,
#node-1738 .bookRead,
#node-1717 .bookRead,
#node-10398 .bookRead,
#node-6331 .bookRead,
#node-3846 .bookRead,
#node-4358 .bookRead,
#node-2860 .bookRead,
#node-3218 .bookRead,
#node-4110 .bookRead,
#node-7468 .bookRead,
#node-7222 .bookRead,
#node-12812 .bookRead,
#node-14476 .bookRead,
#node-1713 .bookRead,
#node-10865 .bookRead {
    max-width: 50.5em;
}

#node-9999 .bookRead td:first-child, 
#node-9999 .bookRead td:first-child, 
#node-9999 .bookRead td:first-child, 
#node-9999 .bookRead td:first-child, 
#node-14132 .bookRead td:first-child, 
#node-2857 .bookRead td:first-child, 
#node-10865 .bookRead td:first-child, 
#node-3599 .bookRead td:first-child, 
#node-1738 .bookRead td:first-child, 
#node-1717 .bookRead td:first-child, 
#node-10398 .bookRead td:first-child, 
#node-6331 .bookRead td:first-child, 
#node-3846 .bookRead td:first-child, 
#node-4358 .bookRead td:first-child, 
#node-2860 .bookRead td:first-child, 
#node-3218 .bookRead td:first-child, 
#node-4110 .bookRead td:first-child, 
#node-7468 .bookRead td:first-child, 
#node-7222 .bookRead td:first-child, 
#node-12812 .bookRead td:first-child, 
#node-14476 .bookRead td:first-child, 
#node-1713 .bookRead td:first-child, 
#node-10865 .bookRead td:first-child {
    padding-right: 10px;
}




/*
 *
 * There are words in the book where the physical printed book uses small caps ( https://en.wikipedia.org/wiki/Small_caps )
 *
 * The people at the Foundation want to online version to match these small caps. 
 *
 * If you look at Paper 42  https://www.urantia.org/urantia-book-standardized/paper-42-energy-mind-and-matter you will see - for example - code that says: <span class="SCaps">triata</span>
 */
.SCaps { font-size: smaller; text-transform: uppercase; }

/** sidebar-left **/

#sidebar-left {
    float: left;
    width: 200px;
    margin-left: 0;
    margin-right: -200px;
    /* Negative value of #sidebar-left's width + left margin. */
    padding: 0;
    /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
}

#sidebar-left-inner {
    margin: 0 0;
    padding: 0;
}


/** sidebar-right **/

#sidebar-right {
    float: left;
    width: 200px;
    margin-left: 760px;
    /* Width of content + sidebar-left. */
    margin-right: -960px;
    /* Negative value of #sidebar-right's width + left margin. */
    padding: 0;
    /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
}

#sidebar-right-inner {
    margin: 0;
    padding: 0;
}


/** footer **/

#footer {}

#footer-inner {}


/** closure **/

#closure-blocks
/* See also the #page declaration above that this div shares. */

{}


/** Prevent overflowing content **/

#header,
#content,
#navbar,
#sidebar-left,
#sidebar-right,
#footer,
#closure-blocks {
    overflow: visible;
    word-wrap: break-word;
    /* A very nice CSS3 property */
}

#navbar {
    overflow: hidden;
    /* May need to be removed if using a dynamic drop-down menu */
}


/* If a div.clear-block doesn't have any content after it and its bottom edge
     touches the bottom of the viewport, Firefox and Safari will mistakenly
     place several pixels worth of space between the bottom of the div and the
     bottom of the viewport. Uncomment this CSS property to fix this.
     Note: with some over-large content, this property might cause scrollbars
     to appear on the #page div.
  */


/*
  #page
  {
    overflow-y: hidden;
  }
  */
