
    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_cd43309b1b64e2fc7a5bc6d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090000;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_faca66d44a6aaf093291e180.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.254000;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_0f4c9ba7cf2b4fa995a7faa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680000;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_c7299f0ea954cb5173421199.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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:ff5;src:url('chunks/assets/font_690df2f500efb93361ff6380.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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;}
.m28{transform:matrix(0.107147,0.225875,-0.225875,0.107147,0,0);-ms-transform:matrix(0.107147,0.225875,-0.225875,0.107147,0,0);-webkit-transform:matrix(0.107147,0.225875,-0.225875,0.107147,0,0);}
.m1{transform:matrix(0.107147,-0.225875,0.225875,0.107147,0,0);-ms-transform:matrix(0.107147,-0.225875,0.225875,0.107147,0,0);-webkit-transform:matrix(0.107147,-0.225875,0.225875,0.107147,0,0);}
.m27{transform:matrix(0.120665,0.218952,-0.218952,0.120665,0,0);-ms-transform:matrix(0.120665,0.218952,-0.218952,0.120665,0,0);-webkit-transform:matrix(0.120665,0.218952,-0.218952,0.120665,0,0);}
.m2{transform:matrix(0.123307,-0.217475,0.217475,0.123307,0,0);-ms-transform:matrix(0.123307,-0.217475,0.217475,0.123307,0,0);-webkit-transform:matrix(0.123307,-0.217475,0.217475,0.123307,0,0);}
.m3{transform:matrix(0.133659,-0.211271,0.211271,0.133659,0,0);-ms-transform:matrix(0.133659,-0.211271,0.211271,0.133659,0,0);-webkit-transform:matrix(0.133659,-0.211271,0.211271,0.133659,0,0);}
.m26{transform:matrix(0.136193,0.209646,-0.209646,0.136193,0,0);-ms-transform:matrix(0.136193,0.209646,-0.209646,0.136193,0,0);-webkit-transform:matrix(0.136193,0.209646,-0.209646,0.136193,0,0);}
.m4{transform:matrix(0.143659,-0.204602,0.204602,0.143659,0,0);-ms-transform:matrix(0.143659,-0.204602,0.204602,0.143659,0,0);-webkit-transform:matrix(0.143659,-0.204602,0.204602,0.143659,0,0);}
.m25{transform:matrix(0.150921,0.199306,-0.199306,0.150921,0,0);-ms-transform:matrix(0.150921,0.199306,-0.199306,0.150921,0,0);-webkit-transform:matrix(0.150921,0.199306,-0.199306,0.150921,0,0);}
.m5{transform:matrix(0.157973,-0.193765,0.193765,0.157973,0,0);-ms-transform:matrix(0.157973,-0.193765,0.193765,0.157973,0,0);-webkit-transform:matrix(0.157973,-0.193765,0.193765,0.157973,0,0);}
.m24{transform:matrix(0.162555,0.189937,-0.189937,0.162555,0,0);-ms-transform:matrix(0.162555,0.189937,-0.189937,0.162555,0,0);-webkit-transform:matrix(0.162555,0.189937,-0.189937,0.162555,0,0);}
.m6{transform:matrix(0.169248,-0.183998,0.183998,0.169248,0,0);-ms-transform:matrix(0.169248,-0.183998,0.183998,0.169248,0,0);-webkit-transform:matrix(0.169248,-0.183998,0.183998,0.169248,0,0);}
.m23{transform:matrix(0.171430,0.181966,-0.181966,0.171430,0,0);-ms-transform:matrix(0.171430,0.181966,-0.181966,0.171430,0,0);-webkit-transform:matrix(0.171430,0.181966,-0.181966,0.171430,0,0);}
.m7{transform:matrix(0.177828,-0.175720,0.175720,0.177828,0,0);-ms-transform:matrix(0.177828,-0.175720,0.175720,0.177828,0,0);-webkit-transform:matrix(0.177828,-0.175720,0.175720,0.177828,0,0);}
.m22{transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);-ms-transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);-webkit-transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);}
.m29{transform:matrix(0.187983,-0.164810,0.164810,0.187983,0,0);-ms-transform:matrix(0.187983,-0.164810,0.164810,0.187983,0,0);-webkit-transform:matrix(0.187983,-0.164810,0.164810,0.187983,0,0);}
.m8{transform:matrix(0.189937,-0.162555,0.162555,0.189937,0,0);-ms-transform:matrix(0.189937,-0.162555,0.162555,0.189937,0,0);-webkit-transform:matrix(0.189937,-0.162555,0.162555,0.189937,0,0);}
.m39{transform:matrix(0.191863,0.160276,-0.160276,0.191863,0,0);-ms-transform:matrix(0.191863,0.160276,-0.160276,0.191863,0,0);-webkit-transform:matrix(0.191863,0.160276,-0.160276,0.191863,0,0);}
.m21{transform:matrix(0.193765,0.157973,-0.157973,0.193765,0,0);-ms-transform:matrix(0.193765,0.157973,-0.157973,0.193765,0,0);-webkit-transform:matrix(0.193765,0.157973,-0.157973,0.193765,0,0);}
.m2a{transform:matrix(0.197486,-0.153294,0.153294,0.197486,0,0);-ms-transform:matrix(0.197486,-0.153294,0.153294,0.197486,0,0);-webkit-transform:matrix(0.197486,-0.153294,0.153294,0.197486,0,0);}
.m9{transform:matrix(0.201099,-0.148523,0.148523,0.201099,0,0);-ms-transform:matrix(0.201099,-0.148523,0.148523,0.201099,0,0);-webkit-transform:matrix(0.201099,-0.148523,0.148523,0.201099,0,0);}
.m20{transform:matrix(0.202865,0.146102,-0.146102,0.202865,0,0);-ms-transform:matrix(0.202865,0.146102,-0.146102,0.202865,0,0);-webkit-transform:matrix(0.202865,0.146102,-0.146102,0.202865,0,0);}
.m2b{transform:matrix(0.202865,-0.146102,0.146102,0.202865,0,0);-ms-transform:matrix(0.202865,-0.146102,0.146102,0.202865,0,0);-webkit-transform:matrix(0.202865,-0.146102,0.146102,0.202865,0,0);}
.m38{transform:matrix(0.204602,0.143659,-0.143659,0.204602,0,0);-ms-transform:matrix(0.204602,0.143659,-0.143659,0.204602,0,0);-webkit-transform:matrix(0.204602,0.143659,-0.143659,0.204602,0,0);}
.m1f{transform:matrix(0.209646,0.136193,-0.136193,0.209646,0,0);-ms-transform:matrix(0.209646,0.136193,-0.136193,0.209646,0,0);-webkit-transform:matrix(0.209646,0.136193,-0.136193,0.209646,0,0);}
.ma{transform:matrix(0.211271,-0.133659,0.133659,0.211271,0,0);-ms-transform:matrix(0.211271,-0.133659,0.133659,0.211271,0,0);-webkit-transform:matrix(0.211271,-0.133659,0.133659,0.211271,0,0);}
.m37{transform:matrix(0.214432,0.128526,-0.128526,0.214432,0,0);-ms-transform:matrix(0.214432,0.128526,-0.128526,0.214432,0,0);-webkit-transform:matrix(0.214432,0.128526,-0.128526,0.214432,0,0);}
.m1e{transform:matrix(0.217475,0.123307,-0.123307,0.217475,0,0);-ms-transform:matrix(0.217475,0.123307,-0.123307,0.217475,0,0);-webkit-transform:matrix(0.217475,0.123307,-0.123307,0.217475,0,0);}
.mb{transform:matrix(0.217475,-0.123307,0.123307,0.217475,0,0);-ms-transform:matrix(0.217475,-0.123307,0.123307,0.217475,0,0);-webkit-transform:matrix(0.217475,-0.123307,0.123307,0.217475,0,0);}
.m36{transform:matrix(0.220399,0.118002,-0.118002,0.220399,0,0);-ms-transform:matrix(0.220399,0.118002,-0.118002,0.220399,0,0);-webkit-transform:matrix(0.220399,0.118002,-0.118002,0.220399,0,0);}
.m2c{transform:matrix(0.221814,-0.115319,0.115319,0.221814,0,0);-ms-transform:matrix(0.221814,-0.115319,0.115319,0.221814,0,0);-webkit-transform:matrix(0.221814,-0.115319,0.115319,0.221814,0,0);}
.mc{transform:matrix(0.223199,-0.112615,0.112615,0.223199,0,0);-ms-transform:matrix(0.223199,-0.112615,0.112615,0.223199,0,0);-webkit-transform:matrix(0.223199,-0.112615,0.112615,0.223199,0,0);}
.m1d{transform:matrix(0.224553,0.109891,-0.109891,0.224553,0,0);-ms-transform:matrix(0.224553,0.109891,-0.109891,0.224553,0,0);-webkit-transform:matrix(0.224553,0.109891,-0.109891,0.224553,0,0);}
.m35{transform:matrix(0.228424,0.101599,-0.101599,0.228424,0,0);-ms-transform:matrix(0.228424,0.101599,-0.101599,0.228424,0,0);-webkit-transform:matrix(0.228424,0.101599,-0.101599,0.228424,0,0);}
.md{transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);-ms-transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);-webkit-transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);}
.m1c{transform:matrix(0.230844,0.095975,-0.095975,0.230844,0,0);-ms-transform:matrix(0.230844,0.095975,-0.095975,0.230844,0,0);-webkit-transform:matrix(0.230844,0.095975,-0.095975,0.230844,0,0);}
.m34{transform:matrix(0.234224,0.087401,-0.087401,0.234224,0,0);-ms-transform:matrix(0.234224,0.087401,-0.087401,0.234224,0,0);-webkit-transform:matrix(0.234224,0.087401,-0.087401,0.234224,0,0);}
.m1b{transform:matrix(0.235284,0.084507,-0.084507,0.235284,0,0);-ms-transform:matrix(0.235284,0.084507,-0.084507,0.235284,0,0);-webkit-transform:matrix(0.235284,0.084507,-0.084507,0.235284,0,0);}
.me{transform:matrix(0.236309,-0.081597,0.081597,0.236309,0,0);-ms-transform:matrix(0.236309,-0.081597,0.081597,0.236309,0,0);-webkit-transform:matrix(0.236309,-0.081597,0.081597,0.236309,0,0);}
.m2d{transform:matrix(0.237300,-0.078669,0.078669,0.237300,0,0);-ms-transform:matrix(0.237300,-0.078669,0.078669,0.237300,0,0);-webkit-transform:matrix(0.237300,-0.078669,0.078669,0.237300,0,0);}
.m1a{transform:matrix(0.239176,0.072767,-0.072767,0.239176,0,0);-ms-transform:matrix(0.239176,0.072767,-0.072767,0.239176,0,0);-webkit-transform:matrix(0.239176,0.072767,-0.072767,0.239176,0,0);}
.m33{transform:matrix(0.240060,0.069793,-0.069793,0.240060,0,0);-ms-transform:matrix(0.240060,0.069793,-0.069793,0.240060,0,0);-webkit-transform:matrix(0.240060,0.069793,-0.069793,0.240060,0,0);}
.mf{transform:matrix(0.240060,-0.069793,0.069793,0.240060,0,0);-ms-transform:matrix(0.240060,-0.069793,0.069793,0.240060,0,0);-webkit-transform:matrix(0.240060,-0.069793,0.069793,0.240060,0,0);}
.m2e{transform:matrix(0.241722,-0.063800,0.063800,0.241722,0,0);-ms-transform:matrix(0.241722,-0.063800,0.063800,0.241722,0,0);-webkit-transform:matrix(0.241722,-0.063800,0.063800,0.241722,0,0);}
.m3b{transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.242499,0.060782,-0.060782,0.242499,0,0);-ms-transform:matrix(0.242499,0.060782,-0.060782,0.242499,0,0);-webkit-transform:matrix(0.242499,0.060782,-0.060782,0.242499,0,0);}
.m10{transform:matrix(0.242499,-0.060782,0.060782,0.242499,0,0);-ms-transform:matrix(0.242499,-0.060782,0.060782,0.242499,0,0);-webkit-transform:matrix(0.242499,-0.060782,0.060782,0.242499,0,0);}
.m11{transform:matrix(0.244606,-0.051651,0.051651,0.244606,0,0);-ms-transform:matrix(0.244606,-0.051651,0.051651,0.244606,0,0);-webkit-transform:matrix(0.244606,-0.051651,0.051651,0.244606,0,0);}
.m18{transform:matrix(0.245234,0.048583,-0.048583,0.245234,0,0);-ms-transform:matrix(0.245234,0.048583,-0.048583,0.245234,0,0);-webkit-transform:matrix(0.245234,0.048583,-0.048583,0.245234,0,0);}
.m2f{transform:matrix(0.245824,-0.045503,0.045503,0.245824,0,0);-ms-transform:matrix(0.245824,-0.045503,0.045503,0.245824,0,0);-webkit-transform:matrix(0.245824,-0.045503,0.045503,0.245824,0,0);}
.m12{transform:matrix(0.247801,-0.033086,0.033086,0.247801,0,0);-ms-transform:matrix(0.247801,-0.033086,0.033086,0.247801,0,0);-webkit-transform:matrix(0.247801,-0.033086,0.033086,0.247801,0,0);}
.m17{transform:matrix(0.248198,0.029960,-0.029960,0.248198,0,0);-ms-transform:matrix(0.248198,0.029960,-0.029960,0.248198,0,0);-webkit-transform:matrix(0.248198,0.029960,-0.029960,0.248198,0,0);}
.m32{transform:matrix(0.248556,0.026827,-0.026827,0.248556,0,0);-ms-transform:matrix(0.248556,0.026827,-0.026827,0.248556,0,0);-webkit-transform:matrix(0.248556,0.026827,-0.026827,0.248556,0,0);}
.m30{transform:matrix(0.248875,-0.023688,0.023688,0.248875,0,0);-ms-transform:matrix(0.248875,-0.023688,0.023688,0.248875,0,0);-webkit-transform:matrix(0.248875,-0.023688,0.023688,0.248875,0,0);}
.m13{transform:matrix(0.249155,-0.020542,0.020542,0.249155,0,0);-ms-transform:matrix(0.249155,-0.020542,0.020542,0.249155,0,0);-webkit-transform:matrix(0.249155,-0.020542,0.020542,0.249155,0,0);}
.m16{transform:matrix(0.249394,0.017391,-0.017391,0.249394,0,0);-ms-transform:matrix(0.249394,0.017391,-0.017391,0.249394,0,0);-webkit-transform:matrix(0.249394,0.017391,-0.017391,0.249394,0,0);}
.m31{transform:matrix(0.249875,0.007912,-0.007912,0.249875,0,0);-ms-transform:matrix(0.249875,0.007912,-0.007912,0.249875,0,0);-webkit-transform:matrix(0.249875,0.007912,-0.007912,0.249875,0,0);}
.m14{transform:matrix(0.249875,-0.007912,0.007912,0.249875,0,0);-ms-transform:matrix(0.249875,-0.007912,0.007912,0.249875,0,0);-webkit-transform:matrix(0.249875,-0.007912,0.007912,0.249875,0,0);}
.m15{transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249955,0.004749,-0.004749,0.249955,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);}
.m3c{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls2{letter-spacing:-1.080000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.740000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-10.494000px;}
.ws2{word-spacing:-9.444600px;}
.ws3{word-spacing:-1.740000px;}
.ws1{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.299600px;}
._2{width:1.198800px;}
.fc6{color:rgb(61,60,59);}
.fc5{color:rgb(119,190,128);}
.fc4{color:rgb(2,2,3);}
.fc3{color:rgb(14,61,38);}
.fc2{color:rgb(236,99,56);}
.fc1{color:rgb(255,253,246);}
.fc0{color:rgb(255,255,255);}
.fs32{font-size:4.596600px;}
.fs31{font-size:11.916600px;}
.fs21{font-size:31.482000px;}
.fs2f{font-size:34.800000px;}
.fs30{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs20{font-size:54.000000px;}
.fs2e{font-size:60.000000px;}
.fs1f{font-size:120.000000px;}
.fsa{font-size:131.999646px;}
.fs1b{font-size:131.999663px;}
.fs16{font-size:131.999708px;}
.fs14{font-size:131.999712px;}
.fs1c{font-size:131.999724px;}
.fs8{font-size:131.999740px;}
.fs26{font-size:131.999754px;}
.fse{font-size:131.999767px;}
.fs7{font-size:131.999791px;}
.fs6{font-size:131.999807px;}
.fs9{font-size:131.999810px;}
.fs12{font-size:131.999817px;}
.fs28{font-size:131.999856px;}
.fs1{font-size:131.999902px;}
.fs27{font-size:131.999928px;}
.fs2{font-size:131.999944px;}
.fs3{font-size:131.999955px;}
.fs10{font-size:131.999961px;}
.fs13{font-size:131.999968px;}
.fs2c{font-size:131.999971px;}
.fsb{font-size:131.999990px;}
.fsc{font-size:132.000001px;}
.fs22{font-size:132.000002px;}
.fs17{font-size:132.000006px;}
.fs23{font-size:132.000012px;}
.fs4{font-size:132.000026px;}
.fs15{font-size:132.000066px;}
.fs1d{font-size:132.000090px;}
.fs2d{font-size:132.000100px;}
.fsf{font-size:132.000117px;}
.fs11{font-size:132.000130px;}
.fsd{font-size:132.000135px;}
.fs25{font-size:132.000160px;}
.fs5{font-size:132.000179px;}
.fs29{font-size:132.000205px;}
.fs2b{font-size:132.000206px;}
.fs19{font-size:132.000259px;}
.fs1a{font-size:132.000291px;}
.fs18{font-size:132.000317px;}
.fs2a{font-size:132.000327px;}
.fs24{font-size:132.000358px;}
.fs1e{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.143550px;}
.y1{bottom:57.140550px;}
.y36{bottom:84.676350px;}
.y35{bottom:100.876350px;}
.y34{bottom:125.144850px;}
.y5e{bottom:146.673150px;}
.y5d{bottom:150.084300px;}
.y33{bottom:196.719600px;}
.y56{bottom:200.726100px;}
.y32{bottom:212.919600px;}
.y55{bottom:217.223100px;}
.y31{bottom:237.188100px;}
.y54{bottom:238.223100px;}
.y53{bottom:259.229100px;}
.y52{bottom:275.726100px;}
.y51{bottom:292.223100px;}
.y30{bottom:311.118600px;}
.y50{bottom:313.223100px;}
.y2f{bottom:327.318600px;}
.y5c{bottom:340.192350px;}
.y4f{bottom:346.223100px;}
.y2e{bottom:351.587100px;}
.y5b{bottom:361.387350px;}
.y4e{bottom:364.223100px;}
.y4d{bottom:382.223100px;}
.y5a{bottom:390.592350px;}
.y4c{bottom:400.223100px;}
.y3{bottom:402.366900px;}
.y59{bottom:413.587350px;}
.y4{bottom:421.749600px;}
.y2a{bottom:423.721650px;}
.y2d{bottom:425.085450px;}
.y29{bottom:436.093500px;}
.y5{bottom:440.498100px;}
.y2c{bottom:441.285450px;}
.y58{bottom:444.592350px;}
.y6{bottom:448.072350px;}
.y28{bottom:454.541850px;}
.y2b{bottom:464.490900px;}
.y7{bottom:464.734350px;}
.y57{bottom:467.587350px;}
.y37{bottom:470.815500px;}
.y27{bottom:472.180650px;}
.y26{bottom:479.623500px;}
.y8{bottom:480.874950px;}
.y38{bottom:484.761000px;}
.y9{bottom:487.546200px;}
.y4b{bottom:489.241800px;}
.y39{bottom:490.242900px;}
.y25{bottom:493.909200px;}
.y3a{bottom:496.165650px;}
.y4a{bottom:502.000050px;}
.ya{bottom:502.719600px;}
.y49{bottom:506.388450px;}
.y3b{bottom:507.524700px;}
.y24{bottom:508.418700px;}
.yb{bottom:516.056100px;}
.y48{bottom:516.150750px;}
.y3c{bottom:516.906000px;}
.y23{bottom:517.163400px;}
.y47{bottom:521.769150px;}
.y3d{bottom:523.570350px;}
.y46{bottom:527.890350px;}
.yc{bottom:528.660300px;}
.y22{bottom:530.097000px;}
.y3e{bottom:530.277450px;}
.y45{bottom:533.265150px;}
.y3f{bottom:533.976300px;}
.y21{bottom:534.808350px;}
.y44{bottom:537.227550px;}
.y40{bottom:537.770550px;}
.yd{bottom:538.940100px;}
.y43{bottom:539.616300px;}
.y41{bottom:539.685000px;}
.y42{bottom:540.245550px;}
.ye{bottom:543.863100px;}
.y20{bottom:545.047950px;}
.yf{bottom:551.321250px;}
.y1f{bottom:554.285550px;}
.y1e{bottom:559.565850px;}
.y10{bottom:559.625850px;}
.y1d{bottom:562.503000px;}
.y11{bottom:564.348300px;}
.y12{bottom:568.316400px;}
.y1c{bottom:568.781700px;}
.y13{bottom:570.546750px;}
.y1b{bottom:571.038150px;}
.y14{bottom:574.072200px;}
.y1a{bottom:574.884150px;}
.y15{bottom:576.836550px;}
.y19{bottom:577.429800px;}
.y18{bottom:577.886850px;}
.y16{bottom:577.928400px;}
.y17{bottom:578.434500px;}
.h34{height:3.492339px;}
.h33{height:9.053823px;}
.h2{height:30.240000px;}
.h2f{height:34.939200px;}
.h31{height:35.119920px;}
.h21{height:45.414000px;}
.h2e{height:50.400000px;}
.h30{height:50.436000px;}
.h32{height:50.460000px;}
.hc{height:132.527644px;}
.h1d{height:132.527662px;}
.h18{height:132.527707px;}
.h16{height:132.527711px;}
.h1e{height:132.527723px;}
.ha{height:132.527739px;}
.h26{height:132.527754px;}
.h10{height:132.527766px;}
.h9{height:132.527791px;}
.h8{height:132.527807px;}
.hb{height:132.527809px;}
.h14{height:132.527816px;}
.h28{height:132.527855px;}
.h3{height:132.527902px;}
.h27{height:132.527928px;}
.h4{height:132.527944px;}
.h5{height:132.527955px;}
.h12{height:132.527961px;}
.h15{height:132.527968px;}
.h2c{height:132.527971px;}
.hd{height:132.527989px;}
.he{height:132.528001px;}
.h22{height:132.528002px;}
.h19{height:132.528006px;}
.h23{height:132.528013px;}
.h6{height:132.528026px;}
.h17{height:132.528067px;}
.h1f{height:132.528090px;}
.h2d{height:132.528101px;}
.h11{height:132.528117px;}
.h13{height:132.528131px;}
.hf{height:132.528136px;}
.h25{height:132.528161px;}
.h7{height:132.528180px;}
.h29{height:132.528206px;}
.h2b{height:132.528207px;}
.h1b{height:132.528260px;}
.h1c{height:132.528292px;}
.h1a{height:132.528318px;}
.h2a{height:132.528328px;}
.h24{height:132.528359px;}
.h20{height:160.080000px;}
.h1{height:637.500000px;}
.h0{height:637.795500px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x2{left:52.527000px;}
.x3{left:61.662150px;}
.x4{left:72.482550px;}
.x5{left:77.183250px;}
.x43{left:81.880050px;}
.x6{left:89.008500px;}
.x4a{left:90.115950px;}
.x7{left:102.423300px;}
.x8{left:108.340650px;}
.x9{left:123.789600px;}
.xa{left:139.444500px;}
.x30{left:146.388000px;}
.x42{left:148.259250px;}
.xb{left:156.644700px;}
.x44{left:160.369050px;}
.x31{left:162.512250px;}
.x32{left:169.537350px;}
.xc{left:173.179050px;}
.x33{left:177.483000px;}
.xd{left:181.771950px;}
.x2f{left:184.054350px;}
.x2e{left:188.009850px;}
.xe{left:196.533150px;}
.x48{left:204.741000px;}
.x2d{left:207.080550px;}
.x34{left:213.832200px;}
.xf{left:216.172200px;}
.x2c{left:217.459350px;}
.x10{left:229.593600px;}
.x1{left:240.496500px;}
.x11{left:243.252900px;}
.x46{left:245.829450px;}
.x35{left:249.567300px;}
.x12{left:251.881650px;}
.x2b{left:253.355850px;}
.x36{left:263.312550px;}
.x13{left:268.048800px;}
.x2a{left:276.808200px;}
.x37{left:283.534350px;}
.x14{left:289.519950px;}
.x47{left:290.691000px;}
.x49{left:295.811100px;}
.x45{left:302.372100px;}
.x15{left:303.702150px;}
.x38{left:305.098500px;}
.x16{left:312.608850px;}
.x39{left:314.998200px;}
.x17{left:334.513650px;}
.x3a{left:335.986650px;}
.x18{left:343.420050px;}
.x3b{left:357.513300px;}
.x19{left:364.596000px;}
.x3c{left:377.701650px;}
.x1a{left:383.683500px;}
.x1b{left:393.330750px;}
.x3d{left:396.426150px;}
.x1c{left:413.356050px;}
.x1d{left:421.773000px;}
.x3e{left:425.933400px;}
.x1e{left:434.993250px;}
.x3f{left:443.875350px;}
.x40{left:451.651200px;}
.x1f{left:453.843900px;}
.x41{left:469.886700px;}
.x20{left:471.518850px;}
.x21{left:479.090850px;}
.x22{left:496.779000px;}
.x23{left:507.583350px;}
.x24{left:523.208700px;}
.x25{left:536.435850px;}
.x26{left:542.978100px;}
.x27{left:556.265400px;}
.x28{left:568.096800px;}
.x29{left:575.138400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.546667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-9.328000pt;}
.ws2{word-spacing:-8.395200pt;}
.ws3{word-spacing:-1.546667pt;}
.ws1{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.155200pt;}
._2{width:1.065600pt;}
.fs32{font-size:4.085867pt;}
.fs31{font-size:10.592533pt;}
.fs21{font-size:27.984000pt;}
.fs2f{font-size:30.933333pt;}
.fs30{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs20{font-size:48.000000pt;}
.fs2e{font-size:53.333333pt;}
.fs1f{font-size:106.666667pt;}
.fsa{font-size:117.333018pt;}
.fs1b{font-size:117.333034pt;}
.fs16{font-size:117.333074pt;}
.fs14{font-size:117.333077pt;}
.fs1c{font-size:117.333088pt;}
.fs8{font-size:117.333102pt;}
.fs26{font-size:117.333115pt;}
.fse{font-size:117.333126pt;}
.fs7{font-size:117.333148pt;}
.fs6{font-size:117.333162pt;}
.fs9{font-size:117.333164pt;}
.fs12{font-size:117.333170pt;}
.fs28{font-size:117.333205pt;}
.fs1{font-size:117.333247pt;}
.fs27{font-size:117.333270pt;}
.fs2{font-size:117.333284pt;}
.fs3{font-size:117.333293pt;}
.fs10{font-size:117.333299pt;}
.fs13{font-size:117.333305pt;}
.fs2c{font-size:117.333307pt;}
.fsb{font-size:117.333324pt;}
.fsc{font-size:117.333334pt;}
.fs22{font-size:117.333335pt;}
.fs17{font-size:117.333339pt;}
.fs23{font-size:117.333344pt;}
.fs4{font-size:117.333356pt;}
.fs15{font-size:117.333392pt;}
.fs1d{font-size:117.333413pt;}
.fs2d{font-size:117.333422pt;}
.fsf{font-size:117.333437pt;}
.fs11{font-size:117.333449pt;}
.fsd{font-size:117.333454pt;}
.fs25{font-size:117.333476pt;}
.fs5{font-size:117.333493pt;}
.fs29{font-size:117.333516pt;}
.fs2b{font-size:117.333517pt;}
.fs19{font-size:117.333564pt;}
.fs1a{font-size:117.333592pt;}
.fs18{font-size:117.333615pt;}
.fs2a{font-size:117.333624pt;}
.fs24{font-size:117.333651pt;}
.fs1e{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.127600pt;}
.y1{bottom:50.791600pt;}
.y36{bottom:75.267867pt;}
.y35{bottom:89.667867pt;}
.y34{bottom:111.239867pt;}
.y5e{bottom:130.376133pt;}
.y5d{bottom:133.408267pt;}
.y33{bottom:174.861867pt;}
.y56{bottom:178.423200pt;}
.y32{bottom:189.261867pt;}
.y55{bottom:193.087200pt;}
.y31{bottom:210.833867pt;}
.y54{bottom:211.753867pt;}
.y53{bottom:230.425867pt;}
.y52{bottom:245.089867pt;}
.y51{bottom:259.753867pt;}
.y30{bottom:276.549867pt;}
.y50{bottom:278.420533pt;}
.y2f{bottom:290.949867pt;}
.y5c{bottom:302.393200pt;}
.y4f{bottom:307.753867pt;}
.y2e{bottom:312.521867pt;}
.y5b{bottom:321.233200pt;}
.y4e{bottom:323.753867pt;}
.y4d{bottom:339.753867pt;}
.y5a{bottom:347.193200pt;}
.y4c{bottom:355.753867pt;}
.y3{bottom:357.659467pt;}
.y59{bottom:367.633200pt;}
.y4{bottom:374.888533pt;}
.y2a{bottom:376.641467pt;}
.y2d{bottom:377.853733pt;}
.y29{bottom:387.638667pt;}
.y5{bottom:391.553867pt;}
.y2c{bottom:392.253733pt;}
.y58{bottom:395.193200pt;}
.y6{bottom:398.286533pt;}
.y28{bottom:404.037200pt;}
.y2b{bottom:412.880800pt;}
.y7{bottom:413.097200pt;}
.y57{bottom:415.633200pt;}
.y37{bottom:418.502667pt;}
.y27{bottom:419.716133pt;}
.y26{bottom:426.332000pt;}
.y8{bottom:427.444400pt;}
.y38{bottom:430.898667pt;}
.y9{bottom:433.374400pt;}
.y4b{bottom:434.881600pt;}
.y39{bottom:435.771467pt;}
.y25{bottom:439.030400pt;}
.y3a{bottom:441.036133pt;}
.y4a{bottom:446.222267pt;}
.ya{bottom:446.861867pt;}
.y49{bottom:450.123067pt;}
.y3b{bottom:451.133067pt;}
.y24{bottom:451.927733pt;}
.yb{bottom:458.716533pt;}
.y48{bottom:458.800667pt;}
.y3c{bottom:459.472000pt;}
.y23{bottom:459.700800pt;}
.y47{bottom:463.794800pt;}
.y3d{bottom:465.395867pt;}
.y46{bottom:469.235867pt;}
.yc{bottom:469.920267pt;}
.y22{bottom:471.197333pt;}
.y3e{bottom:471.357733pt;}
.y45{bottom:474.013467pt;}
.y3f{bottom:474.645600pt;}
.y21{bottom:475.385200pt;}
.y44{bottom:477.535600pt;}
.y40{bottom:478.018267pt;}
.yd{bottom:479.057867pt;}
.y43{bottom:479.658933pt;}
.y41{bottom:479.720000pt;}
.y42{bottom:480.218267pt;}
.ye{bottom:483.433867pt;}
.y20{bottom:484.487067pt;}
.yf{bottom:490.063333pt;}
.y1f{bottom:492.698267pt;}
.y1e{bottom:497.391867pt;}
.y10{bottom:497.445200pt;}
.y1d{bottom:500.002667pt;}
.y11{bottom:501.642933pt;}
.y12{bottom:505.170133pt;}
.y1c{bottom:505.583733pt;}
.y13{bottom:507.152667pt;}
.y1b{bottom:507.589467pt;}
.y14{bottom:510.286400pt;}
.y1a{bottom:511.008133pt;}
.y15{bottom:512.743600pt;}
.y19{bottom:513.270933pt;}
.y18{bottom:513.677200pt;}
.y16{bottom:513.714133pt;}
.y17{bottom:514.164000pt;}
.h34{height:3.104301pt;}
.h33{height:8.047843pt;}
.h2{height:26.880000pt;}
.h2f{height:31.057067pt;}
.h31{height:31.217707pt;}
.h21{height:40.368000pt;}
.h2e{height:44.800000pt;}
.h30{height:44.832000pt;}
.h32{height:44.853333pt;}
.hc{height:117.802350pt;}
.h1d{height:117.802366pt;}
.h18{height:117.802406pt;}
.h16{height:117.802409pt;}
.h1e{height:117.802420pt;}
.ha{height:117.802434pt;}
.h26{height:117.802448pt;}
.h10{height:117.802459pt;}
.h9{height:117.802481pt;}
.h8{height:117.802495pt;}
.hb{height:117.802497pt;}
.h14{height:117.802503pt;}
.h28{height:117.802538pt;}
.h3{height:117.802580pt;}
.h27{height:117.802603pt;}
.h4{height:117.802617pt;}
.h5{height:117.802627pt;}
.h12{height:117.802632pt;}
.h15{height:117.802638pt;}
.h2c{height:117.802641pt;}
.hd{height:117.802657pt;}
.he{height:117.802668pt;}
.h22{height:117.802669pt;}
.h19{height:117.802672pt;}
.h23{height:117.802678pt;}
.h6{height:117.802690pt;}
.h17{height:117.802726pt;}
.h1f{height:117.802747pt;}
.h2d{height:117.802756pt;}
.h11{height:117.802771pt;}
.h13{height:117.802783pt;}
.hf{height:117.802788pt;}
.h25{height:117.802810pt;}
.h7{height:117.802827pt;}
.h29{height:117.802850pt;}
.h2b{height:117.802851pt;}
.h1b{height:117.802898pt;}
.h1c{height:117.802927pt;}
.h1a{height:117.802949pt;}
.h2a{height:117.802958pt;}
.h24{height:117.802986pt;}
.h20{height:142.293333pt;}
.h1{height:566.666667pt;}
.h0{height:566.929333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x2{left:46.690667pt;}
.x3{left:54.810800pt;}
.x4{left:64.428933pt;}
.x5{left:68.607333pt;}
.x43{left:72.782267pt;}
.x6{left:79.118667pt;}
.x4a{left:80.103067pt;}
.x7{left:91.042933pt;}
.x8{left:96.302800pt;}
.x9{left:110.035200pt;}
.xa{left:123.950667pt;}
.x30{left:130.122667pt;}
.x42{left:131.786000pt;}
.xb{left:139.239733pt;}
.x44{left:142.550267pt;}
.x31{left:144.455333pt;}
.x32{left:150.699867pt;}
.xc{left:153.936933pt;}
.x33{left:157.762667pt;}
.xd{left:161.575067pt;}
.x2f{left:163.603867pt;}
.x2e{left:167.119867pt;}
.xe{left:174.696133pt;}
.x48{left:181.992000pt;}
.x2d{left:184.071600pt;}
.x34{left:190.073067pt;}
.xf{left:192.153067pt;}
.x2c{left:193.297200pt;}
.x10{left:204.083200pt;}
.x1{left:213.774667pt;}
.x11{left:216.224800pt;}
.x46{left:218.515067pt;}
.x35{left:221.837600pt;}
.x12{left:223.894800pt;}
.x2b{left:225.205200pt;}
.x36{left:234.055600pt;}
.x13{left:238.265600pt;}
.x2a{left:246.051733pt;}
.x37{left:252.030533pt;}
.x14{left:257.351067pt;}
.x47{left:258.392000pt;}
.x49{left:262.943200pt;}
.x45{left:268.775200pt;}
.x15{left:269.957467pt;}
.x38{left:271.198667pt;}
.x16{left:277.874533pt;}
.x39{left:279.998400pt;}
.x17{left:297.345467pt;}
.x3a{left:298.654800pt;}
.x18{left:305.262267pt;}
.x3b{left:317.789600pt;}
.x19{left:324.085333pt;}
.x3c{left:335.734800pt;}
.x1a{left:341.052000pt;}
.x1b{left:349.627333pt;}
.x3d{left:352.378800pt;}
.x1c{left:367.427600pt;}
.x1d{left:374.909333pt;}
.x3e{left:378.607467pt;}
.x1e{left:386.660667pt;}
.x3f{left:394.555867pt;}
.x40{left:401.467733pt;}
.x1f{left:403.416800pt;}
.x41{left:417.677067pt;}
.x20{left:419.127867pt;}
.x21{left:425.858533pt;}
.x22{left:441.581333pt;}
.x23{left:451.185200pt;}
.x24{left:465.074400pt;}
.x25{left:476.831867pt;}
.x26{left:482.647200pt;}
.x27{left:494.458133pt;}
.x28{left:504.974933pt;}
.x29{left:511.234133pt;}
}




    .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; }
  