
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_980d4d2b6ed17216b1255473.woff')format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c08a7c305bbb8f3bbf5ab950.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_83136e39db1c1ebf6f677e33.woff')format("woff");}.ff3{font-family:ff3;line-height:1.085000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a347d110da9409e3977f37e2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2a{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245417,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245647,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246103,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246259,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252547,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252888,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253885,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253997,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.380000px;}
.ls13{letter-spacing:-1.320000px;}
.ls15{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-1.140000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-1.056000px;}
.ls16{letter-spacing:-1.020000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.120000px;}
.ls1c{letter-spacing:-0.060000px;}
.ls20{letter-spacing:-0.054000px;}
.ls10{letter-spacing:0.000000px;}
.lse{letter-spacing:0.027000px;}
.ls4{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.672000px;}
.ls9{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.960000px;}
.lsd{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.260000px;}
.ls7{letter-spacing:1.320000px;}
.ls6{letter-spacing:1.380000px;}
.ls0{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.130000px;}
.lsc{letter-spacing:5.400000px;}
.ls23{letter-spacing:9.600000px;}
.ls22{letter-spacing:23.816430px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-276.270588px;}
.ws2b{word-spacing:-111.360000px;}
.ws0{word-spacing:-31.800000px;}
.ws6{word-spacing:-17.952000px;}
.ws2{word-spacing:-16.380000px;}
.ws3{word-spacing:-15.900000px;}
.ws1{word-spacing:-15.180000px;}
.ws7{word-spacing:-13.608000px;}
.ws4{word-spacing:-13.104000px;}
.ws5{word-spacing:-12.720000px;}
.ws22{word-spacing:-5.400000px;}
.ws29{word-spacing:-2.130000px;}
.wsa{word-spacing:-1.440000px;}
.ws1b{word-spacing:-1.380000px;}
.ws15{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.260000px;}
.ws24{word-spacing:-1.080000px;}
.ws18{word-spacing:-0.960000px;}
.ws1d{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.672000px;}
.wsb{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.480000px;}
.wse{word-spacing:-0.240000px;}
.ws1c{word-spacing:-0.180000px;}
.wsf{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.060000px;}
.ws26{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws27{word-spacing:0.054000px;}
.ws1e{word-spacing:0.060000px;}
.ws9{word-spacing:0.120000px;}
.ws14{word-spacing:0.600000px;}
.ws28{word-spacing:0.648000px;}
.ws21{word-spacing:0.720000px;}
.ws17{word-spacing:0.960000px;}
.ws1a{word-spacing:1.008000px;}
.ws12{word-spacing:1.020000px;}
.ws19{word-spacing:1.056000px;}
.ws25{word-spacing:1.080000px;}
.ws13{word-spacing:1.140000px;}
.ws10{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.wsd{word-spacing:1.320000px;}
.ws23{word-spacing:1.380000px;}
._f{margin-left:-23.816430px;}
._d{margin-left:-16.440000px;}
._4{margin-left:-10.800000px;}
._3{margin-left:-9.600000px;}
._e{margin-left:-7.194000px;}
._a{margin-left:-5.580000px;}
._1{margin-left:-4.200000px;}
._2{margin-left:-3.000000px;}
._0{margin-left:-1.212000px;}
._7{width:1.020000px;}
._8{width:2.034000px;}
._b{width:3.126000px;}
._5{width:4.164000px;}
._9{width:5.766000px;}
._c{width:6.768000px;}
._6{width:7.968000px;}
.fc2{color:transparent;}
.fc4{color:rgb(80,119,71);}
.fc3{color:rgb(80,119,71);}
.fc1{color:rgb(190,75,33);}
.fc0{color:rgb(63,67,75);}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:85.200000px;}
.fs0{font-size:120.000000px;}
.fs3{font-size:216.000000px;}
.fs8{font-size:384.000000px;}
.fs7{font-size:952.657200px;}
.y0{bottom:0.000000px;}
.y97{bottom:18.744000px;}
.y6f{bottom:53.838300px;}
.y6e{bottom:74.838300px;}
.y6d{bottom:95.838300px;}
.y6c{bottom:116.838300px;}
.y6b{bottom:137.838300px;}
.y6a{bottom:179.838300px;}
.y69{bottom:200.838300px;}
.y68{bottom:221.838300px;}
.y91{bottom:223.087650px;}
.y90{bottom:242.581650px;}
.y67{bottom:242.838300px;}
.y66{bottom:263.838300px;}
.y65{bottom:284.838300px;}
.y64{bottom:305.838300px;}
.y63{bottom:326.838300px;}
.y62{bottom:347.838300px;}
.y61{bottom:368.838300px;}
.y60{bottom:389.838300px;}
.y5f{bottom:410.838300px;}
.y5e{bottom:452.838300px;}
.y5d{bottom:473.838300px;}
.y5c{bottom:494.838300px;}
.y5b{bottom:515.838300px;}
.y22{bottom:532.338300px;}
.y5a{bottom:536.838300px;}
.y21{bottom:551.838300px;}
.y59{bottom:557.838300px;}
.y8d{bottom:562.570800px;}
.y20{bottom:571.338300px;}
.y58{bottom:578.838300px;}
.y1f{bottom:590.838300px;}
.y57{bottom:599.838300px;}
.y8c{bottom:602.170800px;}
.y1e{bottom:610.338300px;}
.y56{bottom:620.838300px;}
.y8b{bottom:621.970800px;}
.y1d{bottom:629.838300px;}
.y8a{bottom:641.770800px;}
.y55{bottom:641.838300px;}
.y1c{bottom:649.338300px;}
.y89{bottom:661.570800px;}
.y54{bottom:662.838300px;}
.y1b{bottom:668.838300px;}
.y1a{bottom:688.338300px;}
.y53{bottom:704.838300px;}
.y19{bottom:707.838300px;}
.y52{bottom:725.838300px;}
.y18{bottom:727.338300px;}
.y17{bottom:746.838300px;}
.y9{bottom:762.288150px;}
.y8{bottom:798.288150px;}
.y5{bottom:799.578150px;}
.y7{bottom:834.288150px;}
.y2{bottom:835.578150px;}
.y6{bottom:870.288150px;}
.y1{bottom:871.578150px;}
.y4e{bottom:958.429200px;}
.y4d{bottom:974.929200px;}
.y51{bottom:977.081850px;}
.y4c{bottom:991.429200px;}
.y8e{bottom:1065.853200px;}
.y3d{bottom:1107.437550px;}
.y4b{bottom:1114.163400px;}
.y8f{bottom:1123.161600px;}
.y3c{bottom:1123.937550px;}
.y4a{bottom:1133.663400px;}
.y3b{bottom:1140.437550px;}
.y49{bottom:1153.163400px;}
.y86{bottom:1155.251550px;}
.y3a{bottom:1156.937550px;}
.y48{bottom:1172.663400px;}
.y39{bottom:1173.437550px;}
.y85{bottom:1189.751550px;}
.y38{bottom:1189.937550px;}
.y47{bottom:1192.163400px;}
.y37{bottom:1206.437550px;}
.y46{bottom:1211.663400px;}
.y84{bottom:1219.751550px;}
.y36{bottom:1222.937550px;}
.y83{bottom:1234.751550px;}
.y35{bottom:1239.437550px;}
.y34{bottom:1255.937550px;}
.y82{bottom:1264.751550px;}
.y95{bottom:1278.588000px;}
.y81{bottom:1279.751550px;}
.y50{bottom:1284.421200px;}
.y80{bottom:1294.751550px;}
.y94{bottom:1296.588000px;}
.y4f{bottom:1300.921200px;}
.y93{bottom:1314.588000px;}
.y7f{bottom:1324.751550px;}
.y92{bottom:1332.588000px;}
.y7e{bottom:1339.751550px;}
.y30{bottom:1366.539000px;}
.y7d{bottom:1369.751550px;}
.y7c{bottom:1384.751550px;}
.y2f{bottom:1386.039000px;}
.y9a{bottom:1387.875000px;}
.y2e{bottom:1405.539000px;}
.y16{bottom:1405.751550px;}
.y7b{bottom:1414.751550px;}
.y45{bottom:1421.384400px;}
.y2d{bottom:1425.039000px;}
.y15{bottom:1425.251550px;}
.y7a{bottom:1429.751550px;}
.y44{bottom:1440.884400px;}
.y2c{bottom:1444.539000px;}
.y14{bottom:1444.751550px;}
.y43{bottom:1460.384400px;}
.y2b{bottom:1464.039000px;}
.y13{bottom:1464.251550px;}
.y79{bottom:1474.751550px;}
.y42{bottom:1479.884400px;}
.y99{bottom:1480.131000px;}
.y2a{bottom:1483.539000px;}
.y12{bottom:1483.751550px;}
.y78{bottom:1489.751550px;}
.y41{bottom:1499.384400px;}
.y29{bottom:1503.039000px;}
.y11{bottom:1503.251550px;}
.y40{bottom:1518.884400px;}
.y77{bottom:1519.751550px;}
.y28{bottom:1522.539000px;}
.y10{bottom:1522.751550px;}
.y76{bottom:1534.751550px;}
.y3f{bottom:1538.384400px;}
.yf{bottom:1542.251550px;}
.y75{bottom:1549.751550px;}
.y3e{bottom:1557.884400px;}
.y98{bottom:1558.038000px;}
.y27{bottom:1561.533300px;}
.ye{bottom:1561.751550px;}
.y74{bottom:1564.751550px;}
.y73{bottom:1579.751550px;}
.y26{bottom:1581.033300px;}
.yd{bottom:1581.251550px;}
.y72{bottom:1594.751550px;}
.y25{bottom:1600.533300px;}
.y33{bottom:1600.751400px;}
.yc{bottom:1600.751550px;}
.y71{bottom:1609.751550px;}
.y24{bottom:1620.033300px;}
.y32{bottom:1620.251400px;}
.yb{bottom:1620.251550px;}
.y96{bottom:1635.514500px;}
.y23{bottom:1639.533300px;}
.y31{bottom:1639.751400px;}
.ya{bottom:1639.751550px;}
.y70{bottom:1639.758300px;}
.y88{bottom:1682.042250px;}
.y4{bottom:1728.498150px;}
.y87{bottom:1746.842250px;}
.y3{bottom:1764.498150px;}
.h4{height:41.376000px;}
.h7{height:41.472000px;}
.h6{height:41.760000px;}
.ha{height:46.548000px;}
.hb{height:51.816000px;}
.h3{height:51.840000px;}
.h5{height:52.200000px;}
.h9{height:56.892000px;}
.hc{height:73.612800px;}
.h2{height:104.400000px;}
.h8{height:187.920000px;}
.hf{height:334.080000px;}
.he{height:828.811764px;}
.hd{height:1811.338500px;}
.h1{height:1848.750000px;}
.h0{height:1848.825000px;}
.w2{width:2551.180500px;}
.w0{width:2588.670000px;}
.w1{width:2589.000000px;}
.x0{left:0.000000px;}
.x11{left:18.744000px;}
.x1{left:54.035400px;}
.x12{left:67.038300px;}
.x14{left:87.874800px;}
.x13{left:91.522800px;}
.xa{left:158.076450px;}
.xb{left:159.210450px;}
.x10{left:161.254500px;}
.x3{left:685.445400px;}
.x7{left:725.740200px;}
.x9{left:765.388200px;}
.x8{left:793.600200px;}
.x6{left:1001.698500px;}
.xe{left:1076.421150px;}
.x2{left:1316.855400px;}
.x4{left:1317.935400px;}
.xd{left:1632.578850px;}
.xf{left:1673.849550px;}
.x5{left:1948.295400px;}
.xc{left:2263.996050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.226667pt;}
.ls13{letter-spacing:-1.173333pt;}
.ls15{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-1.013333pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.938667pt;}
.ls16{letter-spacing:-0.906667pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls1c{letter-spacing:-0.053333pt;}
.ls20{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.024000pt;}
.ls4{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.597333pt;}
.ls9{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.853333pt;}
.lsd{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.120000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls6{letter-spacing:1.226667pt;}
.ls0{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.893333pt;}
.lsc{letter-spacing:4.800000pt;}
.ls23{letter-spacing:8.533333pt;}
.ls22{letter-spacing:21.170160pt;}
.ws2a{word-spacing:-245.573856pt;}
.ws2b{word-spacing:-98.986667pt;}
.ws0{word-spacing:-28.266667pt;}
.ws6{word-spacing:-15.957333pt;}
.ws2{word-spacing:-14.560000pt;}
.ws3{word-spacing:-14.133333pt;}
.ws1{word-spacing:-13.493333pt;}
.ws7{word-spacing:-12.096000pt;}
.ws4{word-spacing:-11.648000pt;}
.ws5{word-spacing:-11.306667pt;}
.ws22{word-spacing:-4.800000pt;}
.ws29{word-spacing:-1.893333pt;}
.wsa{word-spacing:-1.280000pt;}
.ws1b{word-spacing:-1.226667pt;}
.ws15{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws24{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.853333pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.597333pt;}
.wsb{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.426667pt;}
.wse{word-spacing:-0.213333pt;}
.ws1c{word-spacing:-0.160000pt;}
.wsf{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.053333pt;}
.ws26{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws27{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.053333pt;}
.ws9{word-spacing:0.106667pt;}
.ws14{word-spacing:0.533333pt;}
.ws28{word-spacing:0.576000pt;}
.ws21{word-spacing:0.640000pt;}
.ws17{word-spacing:0.853333pt;}
.ws1a{word-spacing:0.896000pt;}
.ws12{word-spacing:0.906667pt;}
.ws19{word-spacing:0.938667pt;}
.ws25{word-spacing:0.960000pt;}
.ws13{word-spacing:1.013333pt;}
.ws10{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.wsd{word-spacing:1.173333pt;}
.ws23{word-spacing:1.226667pt;}
._f{margin-left:-21.170160pt;}
._d{margin-left:-14.613333pt;}
._4{margin-left:-9.600000pt;}
._3{margin-left:-8.533333pt;}
._e{margin-left:-6.394667pt;}
._a{margin-left:-4.960000pt;}
._1{margin-left:-3.733333pt;}
._2{margin-left:-2.666667pt;}
._0{margin-left:-1.077333pt;}
._7{width:0.906667pt;}
._8{width:1.808000pt;}
._b{width:2.778667pt;}
._5{width:3.701333pt;}
._9{width:5.125333pt;}
._c{width:6.016000pt;}
._6{width:7.082667pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:75.733333pt;}
.fs0{font-size:106.666667pt;}
.fs3{font-size:192.000000pt;}
.fs8{font-size:341.333333pt;}
.fs7{font-size:846.806400pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:16.661333pt;}
.y6f{bottom:47.856267pt;}
.y6e{bottom:66.522933pt;}
.y6d{bottom:85.189600pt;}
.y6c{bottom:103.856267pt;}
.y6b{bottom:122.522933pt;}
.y6a{bottom:159.856267pt;}
.y69{bottom:178.522933pt;}
.y68{bottom:197.189600pt;}
.y91{bottom:198.300133pt;}
.y90{bottom:215.628133pt;}
.y67{bottom:215.856267pt;}
.y66{bottom:234.522933pt;}
.y65{bottom:253.189600pt;}
.y64{bottom:271.856267pt;}
.y63{bottom:290.522933pt;}
.y62{bottom:309.189600pt;}
.y61{bottom:327.856267pt;}
.y60{bottom:346.522933pt;}
.y5f{bottom:365.189600pt;}
.y5e{bottom:402.522933pt;}
.y5d{bottom:421.189600pt;}
.y5c{bottom:439.856267pt;}
.y5b{bottom:458.522933pt;}
.y22{bottom:473.189600pt;}
.y5a{bottom:477.189600pt;}
.y21{bottom:490.522933pt;}
.y59{bottom:495.856267pt;}
.y8d{bottom:500.062933pt;}
.y20{bottom:507.856267pt;}
.y58{bottom:514.522933pt;}
.y1f{bottom:525.189600pt;}
.y57{bottom:533.189600pt;}
.y8c{bottom:535.262933pt;}
.y1e{bottom:542.522933pt;}
.y56{bottom:551.856267pt;}
.y8b{bottom:552.862933pt;}
.y1d{bottom:559.856267pt;}
.y8a{bottom:570.462933pt;}
.y55{bottom:570.522933pt;}
.y1c{bottom:577.189600pt;}
.y89{bottom:588.062933pt;}
.y54{bottom:589.189600pt;}
.y1b{bottom:594.522933pt;}
.y1a{bottom:611.856267pt;}
.y53{bottom:626.522933pt;}
.y19{bottom:629.189600pt;}
.y52{bottom:645.189600pt;}
.y18{bottom:646.522933pt;}
.y17{bottom:663.856267pt;}
.y9{bottom:677.589467pt;}
.y8{bottom:709.589467pt;}
.y5{bottom:710.736133pt;}
.y7{bottom:741.589467pt;}
.y2{bottom:742.736133pt;}
.y6{bottom:773.589467pt;}
.y1{bottom:774.736133pt;}
.y4e{bottom:851.937067pt;}
.y4d{bottom:866.603733pt;}
.y51{bottom:868.517200pt;}
.y4c{bottom:881.270400pt;}
.y8e{bottom:947.425067pt;}
.y3d{bottom:984.388933pt;}
.y4b{bottom:990.367467pt;}
.y8f{bottom:998.365867pt;}
.y3c{bottom:999.055600pt;}
.y4a{bottom:1007.700800pt;}
.y3b{bottom:1013.722267pt;}
.y49{bottom:1025.034133pt;}
.y86{bottom:1026.890267pt;}
.y3a{bottom:1028.388933pt;}
.y48{bottom:1042.367467pt;}
.y39{bottom:1043.055600pt;}
.y85{bottom:1057.556933pt;}
.y38{bottom:1057.722267pt;}
.y47{bottom:1059.700800pt;}
.y37{bottom:1072.388933pt;}
.y46{bottom:1077.034133pt;}
.y84{bottom:1084.223600pt;}
.y36{bottom:1087.055600pt;}
.y83{bottom:1097.556933pt;}
.y35{bottom:1101.722267pt;}
.y34{bottom:1116.388933pt;}
.y82{bottom:1124.223600pt;}
.y95{bottom:1136.522667pt;}
.y81{bottom:1137.556933pt;}
.y50{bottom:1141.707733pt;}
.y80{bottom:1150.890267pt;}
.y94{bottom:1152.522667pt;}
.y4f{bottom:1156.374400pt;}
.y93{bottom:1168.522667pt;}
.y7f{bottom:1177.556933pt;}
.y92{bottom:1184.522667pt;}
.y7e{bottom:1190.890267pt;}
.y30{bottom:1214.701333pt;}
.y7d{bottom:1217.556933pt;}
.y7c{bottom:1230.890267pt;}
.y2f{bottom:1232.034667pt;}
.y9a{bottom:1233.666667pt;}
.y2e{bottom:1249.368000pt;}
.y16{bottom:1249.556933pt;}
.y7b{bottom:1257.556933pt;}
.y45{bottom:1263.452800pt;}
.y2d{bottom:1266.701333pt;}
.y15{bottom:1266.890267pt;}
.y7a{bottom:1270.890267pt;}
.y44{bottom:1280.786133pt;}
.y2c{bottom:1284.034667pt;}
.y14{bottom:1284.223600pt;}
.y43{bottom:1298.119467pt;}
.y2b{bottom:1301.368000pt;}
.y13{bottom:1301.556933pt;}
.y79{bottom:1310.890267pt;}
.y42{bottom:1315.452800pt;}
.y99{bottom:1315.672000pt;}
.y2a{bottom:1318.701333pt;}
.y12{bottom:1318.890267pt;}
.y78{bottom:1324.223600pt;}
.y41{bottom:1332.786133pt;}
.y29{bottom:1336.034667pt;}
.y11{bottom:1336.223600pt;}
.y40{bottom:1350.119467pt;}
.y77{bottom:1350.890267pt;}
.y28{bottom:1353.368000pt;}
.y10{bottom:1353.556933pt;}
.y76{bottom:1364.223600pt;}
.y3f{bottom:1367.452800pt;}
.yf{bottom:1370.890267pt;}
.y75{bottom:1377.556933pt;}
.y3e{bottom:1384.786133pt;}
.y98{bottom:1384.922667pt;}
.y27{bottom:1388.029600pt;}
.ye{bottom:1388.223600pt;}
.y74{bottom:1390.890267pt;}
.y73{bottom:1404.223600pt;}
.y26{bottom:1405.362933pt;}
.yd{bottom:1405.556933pt;}
.y72{bottom:1417.556933pt;}
.y25{bottom:1422.696267pt;}
.y33{bottom:1422.890133pt;}
.yc{bottom:1422.890267pt;}
.y71{bottom:1430.890267pt;}
.y24{bottom:1440.029600pt;}
.y32{bottom:1440.223467pt;}
.yb{bottom:1440.223600pt;}
.y96{bottom:1453.790667pt;}
.y23{bottom:1457.362933pt;}
.y31{bottom:1457.556800pt;}
.ya{bottom:1457.556933pt;}
.y70{bottom:1457.562933pt;}
.y88{bottom:1495.148667pt;}
.y4{bottom:1536.442800pt;}
.y87{bottom:1552.748667pt;}
.y3{bottom:1568.442800pt;}
.h4{height:36.778667pt;}
.h7{height:36.864000pt;}
.h6{height:37.120000pt;}
.ha{height:41.376000pt;}
.hb{height:46.058667pt;}
.h3{height:46.080000pt;}
.h5{height:46.400000pt;}
.h9{height:50.570667pt;}
.hc{height:65.433600pt;}
.h2{height:92.800000pt;}
.h8{height:167.040000pt;}
.hf{height:296.960000pt;}
.he{height:736.721568pt;}
.hd{height:1610.078667pt;}
.h1{height:1643.333333pt;}
.h0{height:1643.400000pt;}
.w2{width:2267.716000pt;}
.w0{width:2301.040000pt;}
.w1{width:2301.333333pt;}
.x0{left:0.000000pt;}
.x11{left:16.661333pt;}
.x1{left:48.031467pt;}
.x12{left:59.589600pt;}
.x14{left:78.110933pt;}
.x13{left:81.353600pt;}
.xa{left:140.512400pt;}
.xb{left:141.520400pt;}
.x10{left:143.337333pt;}
.x3{left:609.284800pt;}
.x7{left:645.102400pt;}
.x9{left:680.345067pt;}
.x8{left:705.422400pt;}
.x6{left:890.398667pt;}
.xe{left:956.818800pt;}
.x2{left:1170.538133pt;}
.x4{left:1171.498133pt;}
.xd{left:1451.181200pt;}
.xf{left:1487.866267pt;}
.x5{left:1731.818133pt;}
.xc{left:2012.440933pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  