
    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_b3ea8e9fba457bd8cec5936d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_5c02bf0a9fff543fd777b1eb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_2d5bbbb4b03fff4f1f25da57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_6208ce77192f0c40c2f3e45e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_0677f03c68913a56dd03c734.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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:ff6;src:url('chunks/assets/font_07f03236578751289e966baa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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:ff7;src:url('chunks/assets/font_ad8c44ec88820d00801d5116.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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:ff8;src:url('chunks/assets/font_d66292bd1b4d0d07848a62fb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,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);}
.m4{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,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);}
.mc{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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.989200px;}
.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;}
}
.ws33{word-spacing:-14.943900px;}
.ws17{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.614588px;}
.ws16{word-spacing:-8.966400px;}
.ws25{word-spacing:-1.613941px;}
.ws4{word-spacing:-1.494390px;}
.ws1c{word-spacing:-1.135736px;}
.ws30{word-spacing:-1.075961px;}
.ws26{word-spacing:-0.537980px;}
.ws12{word-spacing:-0.358654px;}
.ws1b{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.239102px;}
.wsa{word-spacing:-0.179327px;}
.ws20{word-spacing:-0.119551px;}
.ws32{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws2b{word-spacing:-0.053798px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:0.059776px;}
.ws18{word-spacing:0.119551px;}
.ws14{word-spacing:0.179327px;}
.ws1d{word-spacing:0.239102px;}
.ws11{word-spacing:0.298878px;}
.wsc{word-spacing:0.358654px;}
.ws27{word-spacing:0.418429px;}
.ws31{word-spacing:0.836858px;}
.ws39{word-spacing:0.896634px;}
.ws23{word-spacing:1.135736px;}
.ws13{word-spacing:1.195512px;}
.ws37{word-spacing:1.374839px;}
.ws2f{word-spacing:1.494390px;}
.ws22{word-spacing:1.793268px;}
.ws1f{word-spacing:1.853044px;}
.ws1e{word-spacing:1.912819px;}
.ws2a{word-spacing:2.271473px;}
.ws24{word-spacing:2.331248px;}
.ws21{word-spacing:2.510575px;}
.ws28{word-spacing:2.929004px;}
.wsb{word-spacing:3.347434px;}
.ws9{word-spacing:4.184292px;}
.ws29{word-spacing:4.662497px;}
.ws1a{word-spacing:4.782048px;}
.ws2e{word-spacing:5.917784px;}
.ws8{word-spacing:6.276438px;}
.ws15{word-spacing:7.470163px;}
.ws5{word-spacing:13.389734px;}
.wse{word-spacing:14.764573px;}
.ws38{word-spacing:14.824349px;}
.ws2{word-spacing:14.884124px;}
.ws36{word-spacing:14.943900px;}
.ws35{word-spacing:15.003676px;}
.ws6{word-spacing:15.123227px;}
.wsf{word-spacing:15.242778px;}
.ws3a{word-spacing:15.780758px;}
.wsd{word-spacing:17.861069px;}
.ws7{word-spacing:21.160562px;}
.ws1{word-spacing:25.719808px;}
.ws34{word-spacing:111.575517px;}
.ws3b{word-spacing:111.577847px;}
.ws2d{word-spacing:120.886289px;}
._e{margin-left:-255.581498px;}
._10{margin-left:-233.197909px;}
._11{margin-left:-7.651277px;}
._2{margin-left:-5.681082px;}
._d{margin-left:-4.151062px;}
._3{margin-left:-3.098772px;}
._1{margin-left:-1.494390px;}
._8{width:2.978141px;}
._a{width:13.987490px;}
._7{width:17.504692px;}
._0{width:18.530436px;}
._5{width:20.443255px;}
._f{width:21.698543px;}
._9{width:24.388445px;}
._c{width:25.583957px;}
._b{width:26.600142px;}
._4{width:31.441966px;}
._6{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs6{font-size:41.929920px;}
.fs3{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yc2{bottom:47.971905px;}
.y57{bottom:63.168000px;}
.y76{bottom:67.830963px;}
.y73{bottom:68.111661px;}
.y20{bottom:78.184500px;}
.y75{bottom:79.535235px;}
.y72{bottom:79.881739px;}
.y74{bottom:91.305313px;}
.y71{bottom:91.585428px;}
.y1f{bottom:93.129000px;}
.ya2{bottom:97.116101px;}
.ybb{bottom:103.009002px;}
.y8c{bottom:108.000000px;}
.ya1{bottom:108.886179px;}
.y56{bottom:113.713500px;}
.yba{bottom:114.713273px;}
.y8b{bottom:124.363500px;}
.yb9{bottom:126.467045px;}
.y6d{bottom:129.619942px;}
.y55{bottom:129.990000px;}
.y1e{bottom:137.154000px;}
.yb8{bottom:138.170734px;}
.y54{bottom:146.265000px;}
.ya5{bottom:151.277910px;}
.y8a{bottom:152.475000px;}
.y1d{bottom:153.517500px;}
.ya4{bottom:162.982181px;}
.ya0{bottom:163.279185px;}
.y1c{bottom:169.881000px;}
.y53{bottom:170.812500px;}
.y70{bottom:171.665169px;}
.ya3{bottom:174.752259px;}
.y64{bottom:179.473452px;}
.y6f{bottom:183.418941px;}
.y52{bottom:187.176000px;}
.y63{bottom:191.177723px;}
.y1b{bottom:194.463000px;}
.y89{bottom:197.833500px;}
.yc0{bottom:199.035507px;}
.y51{bottom:203.539500px;}
.y9f{bottom:205.209105px;}
.y9e{bottom:206.959097px;}
.ybf{bottom:210.805585px;}
.y1a{bottom:210.826500px;}
.y88{bottom:214.197000px;}
.y9d{bottom:218.712869px;}
.y50{bottom:219.903000px;}
.y19{bottom:227.190000px;}
.y9c{bottom:230.416558px;}
.y6e{bottom:239.215435px;}
.y62{bottom:242.417832px;}
.y18{bottom:243.555000px;}
.y87{bottom:250.527000px;}
.y61{bottom:254.187910px;}
.y96{bottom:254.765612px;}
.y4f{bottom:255.175500px;}
.yc1{bottom:257.621505px;}
.y17{bottom:259.918500px;}
.y60{bottom:265.892182px;}
.y95{bottom:266.535690px;}
.y16{bottom:276.282000px;}
.y9b{bottom:276.489969px;}
.y5f{bottom:277.645371px;}
.yb3{bottom:283.327500px;}
.y6c{bottom:284.810146px;}
.y9a{bottom:288.243741px;}
.y15{bottom:292.645500px;}
.y86{bottom:295.885500px;}
.y6b{bottom:296.513835px;}
.y4e{bottom:298.768500px;}
.yb2{bottom:299.691000px;}
.y99{bottom:299.964318px;}
.y6a{bottom:308.283913px;}
.y98{bottom:311.717508px;}
.y85{bottom:312.249000px;}
.y4d{bottom:315.132000px;}
.yb1{bottom:316.054500px;}
.y90{bottom:319.823377px;}
.y97{bottom:323.421779px;}
.y5e{bottom:325.699971px;}
.ybe{bottom:326.740066px;}
.y14{bottom:327.114000px;}
.y84{bottom:328.612500px;}
.y4c{bottom:331.495500px;}
.y8f{bottom:331.527066px;}
.y5d{bottom:337.404243px;}
.ybd{bottom:338.443755px;}
.y8e{bottom:343.280837px;}
.yb0{bottom:344.373000px;}
.y83{bottom:344.976000px;}
.y4b{bottom:347.859000px;}
.y5c{bottom:349.174321px;}
.ybc{bottom:350.213833px;}
.yc3{bottom:351.588000px;}
.y69{bottom:354.291518px;}
.y8d{bottom:354.985109px;}
.yaf{bottom:360.736500px;}
.y82{bottom:361.339500px;}
.y68{bottom:365.995789px;}
.y94{bottom:366.688798px;}
.y4a{bottom:372.442500px;}
.y13{bottom:376.419000px;}
.y67{bottom:377.765867px;}
.yb4{bottom:378.428806px;}
.y93{bottom:378.458876px;}
.y81{bottom:385.923000px;}
.y49{bottom:388.806000px;}
.yae{bottom:389.055000px;}
.y66{bottom:389.469556px;}
.yb7{bottom:390.163147px;}
.y92{bottom:390.228954px;}
.y12{bottom:392.784000px;}
.y5b{bottom:396.039742px;}
.y65{bottom:401.223328px;}
.y91{bottom:401.933225px;}
.y80{bottom:402.286500px;}
.y48{bottom:405.169500px;}
.yad{bottom:405.418500px;}
.y5a{bottom:407.744013px;}
.y11{bottom:409.147500px;}
.yb6{bottom:413.637496px;}
.y7f{bottom:418.650000px;}
.y59{bottom:419.514091px;}
.y47{bottom:421.533000px;}
.yb5{bottom:425.390686px;}
.y10{bottom:425.511000px;}
.yac{bottom:433.738500px;}
.y7e{bottom:435.013500px;}
.y46{bottom:437.896500px;}
.yf{bottom:441.874500px;}
.yab{bottom:450.102000px;}
.y7d{bottom:451.377000px;}
.y45{bottom:454.260000px;}
.ye{bottom:458.238000px;}
.yaa{bottom:466.465500px;}
.y7c{bottom:467.740500px;}
.yd{bottom:474.601500px;}
.y7b{bottom:484.104000px;}
.y44{bottom:489.532500px;}
.yc{bottom:490.965000px;}
.ya9{bottom:494.784000px;}
.yb{bottom:507.328500px;}
.y7a{bottom:508.687500px;}
.ya8{bottom:511.147500px;}
.ya{bottom:523.692000px;}
.y79{bottom:525.051000px;}
.ya7{bottom:527.511000px;}
.y43{bottom:533.125500px;}
.y78{bottom:541.414500px;}
.ya6{bottom:543.874500px;}
.y42{bottom:549.489000px;}
.y9{bottom:558.553500px;}
.y41{bottom:565.852500px;}
.y40{bottom:582.217500px;}
.y77{bottom:591.942000px;}
.y3f{bottom:598.581000px;}
.y58{bottom:618.782806px;}
.y8{bottom:620.325000px;}
.y3e{bottom:623.163000px;}
.y7{bottom:636.688500px;}
.y3d{bottom:639.526500px;}
.y6{bottom:653.053500px;}
.y3c{bottom:655.890000px;}
.y5{bottom:669.417000px;}
.y3b{bottom:672.253500px;}
.y4{bottom:685.780500px;}
.y39{bottom:688.618500px;}
.y3a{bottom:694.041000px;}
.y37{bottom:704.982000px;}
.y38{bottom:710.404500px;}
.y36{bottom:721.345500px;}
.y3{bottom:736.600500px;}
.y35{bottom:737.709000px;}
.y34{bottom:754.072500px;}
.y2{bottom:766.489500px;}
.y33{bottom:770.436000px;}
.y32{bottom:795.018000px;}
.y31{bottom:811.383000px;}
.y30{bottom:827.746500px;}
.y1{bottom:835.533000px;}
.y2f{bottom:844.110000px;}
.y2d{bottom:860.473500px;}
.y2e{bottom:865.896000px;}
.y2c{bottom:876.837000px;}
.y2b{bottom:893.200500px;}
.y2a{bottom:909.564000px;}
.y29{bottom:925.927500px;}
.y28{bottom:942.291000px;}
.y27{bottom:958.654500px;}
.y26{bottom:975.018000px;}
.y25{bottom:999.601500px;}
.y24{bottom:1015.965000px;}
.y23{bottom:1032.328500px;}
.y22{bottom:1048.692000px;}
.y21{bottom:1065.055500px;}
.h9{height:24.675533px;}
.h8{height:28.787846px;}
.hb{height:30.382813px;}
.h4{height:36.941321px;}
.h6{height:40.826735px;}
.h1{height:41.125613px;}
.h3{height:41.364715px;}
.h7{height:47.529533px;}
.h5{height:49.637990px;}
.h2{height:71.478341px;}
.ha{height:461.212232px;}
.h0{height:1188.000000px;}
.w1{width:356.387432px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:25.735653px;}
.x2b{left:35.640432px;}
.x2c{left:38.199322px;}
.x18{left:53.518302px;}
.x2e{left:54.971290px;}
.x17{left:59.048392px;}
.x1a{left:60.270183px;}
.x14{left:61.722589px;}
.x16{left:65.057183px;}
.x15{left:66.328475px;}
.x24{left:67.500765px;}
.x1b{left:72.155569px;}
.x1e{left:73.608557px;}
.x39{left:75.060963px;}
.x2f{left:77.685659px;}
.x1d{left:82.869246px;}
.x19{left:88.746423px;}
.x1c{left:91.073533px;}
.x43{left:93.418115px;}
.x45{left:96.025923px;}
.x44{left:97.841721px;}
.x28{left:102.910000px;}
.x29{left:110.767784px;}
.x42{left:114.613689px;}
.x3f{left:117.288469px;}
.x40{left:120.787870px;}
.x4b{left:122.653169px;}
.x3b{left:128.414457px;}
.x3c{left:132.492141px;}
.x3d{left:134.406941px;}
.x41{left:149.907617px;}
.x3e{left:155.140704px;}
.xa{left:162.000000px;}
.x2d{left:176.944500px;}
.x49{left:178.136353px;}
.x11{left:180.979500px;}
.x4a{left:185.135738px;}
.x48{left:188.915837px;}
.x47{left:194.742931px;}
.x2{left:197.671500px;}
.xd{left:204.162000px;}
.x46{left:210.177801px;}
.xe{left:213.858000px;}
.x9{left:215.799000px;}
.x30{left:232.066966px;}
.x33{left:233.816958px;}
.x36{left:234.989248px;}
.x31{left:237.481749px;}
.x1f{left:240.634646px;}
.x22{left:241.790631px;}
.x35{left:245.752426px;}
.x26{left:249.714221px;}
.x21{left:252.503725px;}
.x34{left:254.484914px;}
.x32{left:257.109611px;}
.x20{left:261.253102px;}
.x27{left:267.427283px;}
.x37{left:273.072681px;}
.x23{left:274.575169px;}
.x13{left:280.798500px;}
.x3a{left:287.728500px;}
.x38{left:292.172341px;}
.x25{left:296.183637px;}
.x4c{left:336.295500px;}
.x5{left:358.981500px;}
.x7{left:364.876500px;}
.x1{left:371.055000px;}
.x3{left:377.206500px;}
.x4{left:384.624000px;}
.x8{left:425.637000px;}
.x6{left:431.601000px;}
.x12{left:455.263500px;}
.xf{left:532.348500px;}
.x10{left:538.326000px;}
.xb{left:712.830000px;}
.xc{left:722.535000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.657067pt;}
.ws33{word-spacing:-13.283467pt;}
.ws17{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.324078pt;}
.ws16{word-spacing:-7.970133pt;}
.ws25{word-spacing:-1.434614pt;}
.ws4{word-spacing:-1.328347pt;}
.ws1c{word-spacing:-1.009543pt;}
.ws30{word-spacing:-0.956410pt;}
.ws26{word-spacing:-0.478205pt;}
.ws12{word-spacing:-0.318803pt;}
.ws1b{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.212535pt;}
.wsa{word-spacing:-0.159402pt;}
.ws20{word-spacing:-0.106268pt;}
.ws32{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws2b{word-spacing:-0.047821pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:0.053134pt;}
.ws18{word-spacing:0.106268pt;}
.ws14{word-spacing:0.159402pt;}
.ws1d{word-spacing:0.212535pt;}
.ws11{word-spacing:0.265669pt;}
.wsc{word-spacing:0.318803pt;}
.ws27{word-spacing:0.371937pt;}
.ws31{word-spacing:0.743874pt;}
.ws39{word-spacing:0.797008pt;}
.ws23{word-spacing:1.009543pt;}
.ws13{word-spacing:1.062677pt;}
.ws37{word-spacing:1.222079pt;}
.ws2f{word-spacing:1.328347pt;}
.ws22{word-spacing:1.594016pt;}
.ws1f{word-spacing:1.647150pt;}
.ws1e{word-spacing:1.700284pt;}
.ws2a{word-spacing:2.019087pt;}
.ws24{word-spacing:2.072221pt;}
.ws21{word-spacing:2.231622pt;}
.ws28{word-spacing:2.603559pt;}
.wsb{word-spacing:2.975497pt;}
.ws9{word-spacing:3.719371pt;}
.ws29{word-spacing:4.144442pt;}
.ws1a{word-spacing:4.250709pt;}
.ws2e{word-spacing:5.260253pt;}
.ws8{word-spacing:5.579056pt;}
.ws15{word-spacing:6.640145pt;}
.ws5{word-spacing:11.901986pt;}
.wse{word-spacing:13.124065pt;}
.ws38{word-spacing:13.177199pt;}
.ws2{word-spacing:13.230333pt;}
.ws36{word-spacing:13.283467pt;}
.ws35{word-spacing:13.336601pt;}
.ws6{word-spacing:13.442868pt;}
.wsf{word-spacing:13.549136pt;}
.ws3a{word-spacing:14.027341pt;}
.wsd{word-spacing:15.876506pt;}
.ws7{word-spacing:18.809389pt;}
.ws1{word-spacing:22.862051pt;}
.ws34{word-spacing:99.178237pt;}
.ws3b{word-spacing:99.180308pt;}
.ws2d{word-spacing:107.454479pt;}
._e{margin-left:-227.183554pt;}
._10{margin-left:-207.287030pt;}
._11{margin-left:-6.801135pt;}
._2{margin-left:-5.049851pt;}
._d{margin-left:-3.689833pt;}
._3{margin-left:-2.754464pt;}
._1{margin-left:-1.328347pt;}
._8{width:2.647236pt;}
._a{width:12.433325pt;}
._7{width:15.559726pt;}
._0{width:16.471499pt;}
._5{width:18.171782pt;}
._f{width:19.287594pt;}
._9{width:21.678618pt;}
._c{width:22.741295pt;}
._b{width:23.644571pt;}
._4{width:27.948414pt;}
._6{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs6{font-size:37.271040pt;}
.fs3{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:42.641693pt;}
.y57{bottom:56.149333pt;}
.y76{bottom:60.294190pt;}
.y73{bottom:60.543699pt;}
.y20{bottom:69.497333pt;}
.y75{bottom:70.697986pt;}
.y72{bottom:71.005990pt;}
.y74{bottom:81.160278pt;}
.y71{bottom:81.409269pt;}
.y1f{bottom:82.781333pt;}
.ya2{bottom:86.325423pt;}
.ybb{bottom:91.563557pt;}
.y8c{bottom:96.000000pt;}
.ya1{bottom:96.787714pt;}
.y56{bottom:101.078667pt;}
.yba{bottom:101.967354pt;}
.y8b{bottom:110.545333pt;}
.yb9{bottom:112.415151pt;}
.y6d{bottom:115.217726pt;}
.y55{bottom:115.546667pt;}
.y1e{bottom:121.914667pt;}
.yb8{bottom:122.818430pt;}
.y54{bottom:130.013333pt;}
.ya5{bottom:134.469253pt;}
.y8a{bottom:135.533333pt;}
.y1d{bottom:136.460000pt;}
.ya4{bottom:144.873050pt;}
.ya0{bottom:145.137053pt;}
.y1c{bottom:151.005333pt;}
.y53{bottom:151.833333pt;}
.y70{bottom:152.591261pt;}
.ya3{bottom:155.335342pt;}
.y64{bottom:159.531957pt;}
.y6f{bottom:163.039059pt;}
.y52{bottom:166.378667pt;}
.y63{bottom:169.935754pt;}
.y1b{bottom:172.856000pt;}
.y89{bottom:175.852000pt;}
.yc0{bottom:176.920450pt;}
.y51{bottom:180.924000pt;}
.y9f{bottom:182.408093pt;}
.y9e{bottom:183.963642pt;}
.ybf{bottom:187.382742pt;}
.y1a{bottom:187.401333pt;}
.y88{bottom:190.397333pt;}
.y9d{bottom:194.411439pt;}
.y50{bottom:195.469333pt;}
.y19{bottom:201.946667pt;}
.y9c{bottom:204.814718pt;}
.y6e{bottom:212.635942pt;}
.y62{bottom:215.482518pt;}
.y18{bottom:216.493333pt;}
.y87{bottom:222.690667pt;}
.y61{bottom:225.944809pt;}
.y96{bottom:226.458321pt;}
.y4f{bottom:226.822667pt;}
.yc1{bottom:228.996893pt;}
.y17{bottom:231.038667pt;}
.y60{bottom:236.348606pt;}
.y95{bottom:236.920613pt;}
.y16{bottom:245.584000pt;}
.y9b{bottom:245.768861pt;}
.y5f{bottom:246.795886pt;}
.yb3{bottom:251.846667pt;}
.y6c{bottom:253.164575pt;}
.y9a{bottom:256.216659pt;}
.y15{bottom:260.129333pt;}
.y86{bottom:263.009333pt;}
.y6b{bottom:263.567854pt;}
.y4e{bottom:265.572000pt;}
.yb2{bottom:266.392000pt;}
.y99{bottom:266.634950pt;}
.y6a{bottom:274.030145pt;}
.y98{bottom:277.082229pt;}
.y85{bottom:277.554667pt;}
.y4d{bottom:280.117333pt;}
.yb1{bottom:280.937333pt;}
.y90{bottom:284.287446pt;}
.y97{bottom:287.486026pt;}
.y5e{bottom:289.511086pt;}
.ybe{bottom:290.435615pt;}
.y14{bottom:290.768000pt;}
.y84{bottom:292.100000pt;}
.y4c{bottom:294.662667pt;}
.y8f{bottom:294.690725pt;}
.y5d{bottom:299.914882pt;}
.ybd{bottom:300.838894pt;}
.y8e{bottom:305.138522pt;}
.yb0{bottom:306.109333pt;}
.y83{bottom:306.645333pt;}
.y4b{bottom:309.208000pt;}
.y5c{bottom:310.377174pt;}
.ybc{bottom:311.301185pt;}
.yc3{bottom:312.522667pt;}
.y69{bottom:314.925794pt;}
.y8d{bottom:315.542319pt;}
.yaf{bottom:320.654667pt;}
.y82{bottom:321.190667pt;}
.y68{bottom:325.329590pt;}
.y94{bottom:325.945598pt;}
.y4a{bottom:331.060000pt;}
.y13{bottom:334.594667pt;}
.y67{bottom:335.791882pt;}
.yb4{bottom:336.381161pt;}
.y93{bottom:336.407889pt;}
.y81{bottom:343.042667pt;}
.y49{bottom:345.605333pt;}
.yae{bottom:345.826667pt;}
.y66{bottom:346.195161pt;}
.yb7{bottom:346.811686pt;}
.y92{bottom:346.870181pt;}
.y12{bottom:349.141333pt;}
.y5b{bottom:352.035326pt;}
.y65{bottom:356.642958pt;}
.y91{bottom:357.273978pt;}
.y80{bottom:357.588000pt;}
.y48{bottom:360.150667pt;}
.yad{bottom:360.372000pt;}
.y5a{bottom:362.439123pt;}
.y11{bottom:363.686667pt;}
.yb6{bottom:367.677774pt;}
.y7f{bottom:372.133333pt;}
.y59{bottom:372.901414pt;}
.y47{bottom:374.696000pt;}
.yb5{bottom:378.125054pt;}
.y10{bottom:378.232000pt;}
.yac{bottom:385.545333pt;}
.y7e{bottom:386.678667pt;}
.y46{bottom:389.241333pt;}
.yf{bottom:392.777333pt;}
.yab{bottom:400.090667pt;}
.y7d{bottom:401.224000pt;}
.y45{bottom:403.786667pt;}
.ye{bottom:407.322667pt;}
.yaa{bottom:414.636000pt;}
.y7c{bottom:415.769333pt;}
.yd{bottom:421.868000pt;}
.y7b{bottom:430.314667pt;}
.y44{bottom:435.140000pt;}
.yc{bottom:436.413333pt;}
.ya9{bottom:439.808000pt;}
.yb{bottom:450.958667pt;}
.y7a{bottom:452.166667pt;}
.ya8{bottom:454.353333pt;}
.ya{bottom:465.504000pt;}
.y79{bottom:466.712000pt;}
.ya7{bottom:468.898667pt;}
.y43{bottom:473.889333pt;}
.y78{bottom:481.257333pt;}
.ya6{bottom:483.444000pt;}
.y42{bottom:488.434667pt;}
.y9{bottom:496.492000pt;}
.y41{bottom:502.980000pt;}
.y40{bottom:517.526667pt;}
.y77{bottom:526.170667pt;}
.y3f{bottom:532.072000pt;}
.y58{bottom:550.029161pt;}
.y8{bottom:551.400000pt;}
.y3e{bottom:553.922667pt;}
.y7{bottom:565.945333pt;}
.y3d{bottom:568.468000pt;}
.y6{bottom:580.492000pt;}
.y3c{bottom:583.013333pt;}
.y5{bottom:595.037333pt;}
.y3b{bottom:597.558667pt;}
.y4{bottom:609.582667pt;}
.y39{bottom:612.105333pt;}
.y3a{bottom:616.925333pt;}
.y37{bottom:626.650667pt;}
.y38{bottom:631.470667pt;}
.y36{bottom:641.196000pt;}
.y3{bottom:654.756000pt;}
.y35{bottom:655.741333pt;}
.y34{bottom:670.286667pt;}
.y2{bottom:681.324000pt;}
.y33{bottom:684.832000pt;}
.y32{bottom:706.682667pt;}
.y31{bottom:721.229333pt;}
.y30{bottom:735.774667pt;}
.y1{bottom:742.696000pt;}
.y2f{bottom:750.320000pt;}
.y2d{bottom:764.865333pt;}
.y2e{bottom:769.685333pt;}
.y2c{bottom:779.410667pt;}
.y2b{bottom:793.956000pt;}
.y2a{bottom:808.501333pt;}
.y29{bottom:823.046667pt;}
.y28{bottom:837.592000pt;}
.y27{bottom:852.137333pt;}
.y26{bottom:866.682667pt;}
.y25{bottom:888.534667pt;}
.y24{bottom:903.080000pt;}
.y23{bottom:917.625333pt;}
.y22{bottom:932.170667pt;}
.y21{bottom:946.716000pt;}
.h9{height:21.933807pt;}
.h8{height:25.589197pt;}
.hb{height:27.006945pt;}
.h4{height:32.836730pt;}
.h6{height:36.290431pt;}
.h1{height:36.556100pt;}
.h3{height:36.768636pt;}
.h7{height:42.248474pt;}
.h5{height:44.122658pt;}
.h2{height:63.536303pt;}
.ha{height:409.966428pt;}
.h0{height:1056.000000pt;}
.w1{width:316.788828pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:22.876136pt;}
.x2b{left:31.680384pt;}
.x2c{left:33.954953pt;}
.x18{left:47.571824pt;}
.x2e{left:48.863369pt;}
.x17{left:52.487460pt;}
.x1a{left:53.573496pt;}
.x14{left:54.864524pt;}
.x16{left:57.828607pt;}
.x15{left:58.958644pt;}
.x24{left:60.000680pt;}
.x1b{left:64.138283pt;}
.x1e{left:65.429828pt;}
.x39{left:66.720856pt;}
.x2f{left:69.053919pt;}
.x1d{left:73.661552pt;}
.x19{left:78.885709pt;}
.x1c{left:80.954252pt;}
.x43{left:83.038324pt;}
.x45{left:85.356376pt;}
.x44{left:86.970419pt;}
.x28{left:91.475556pt;}
.x29{left:98.460252pt;}
.x42{left:101.878835pt;}
.x3f{left:104.256417pt;}
.x40{left:107.366996pt;}
.x4b{left:109.025039pt;}
.x3b{left:114.146184pt;}
.x3c{left:117.770792pt;}
.x3d{left:119.472836pt;}
.x41{left:133.251215pt;}
.x3e{left:137.902848pt;}
.xa{left:144.000000pt;}
.x2d{left:157.284000pt;}
.x49{left:158.343425pt;}
.x11{left:160.870667pt;}
.x4a{left:164.565101pt;}
.x48{left:167.925188pt;}
.x47{left:173.104828pt;}
.x2{left:175.708000pt;}
.xd{left:181.477333pt;}
.x46{left:186.824712pt;}
.xe{left:190.096000pt;}
.x9{left:191.821333pt;}
.x30{left:206.281747pt;}
.x33{left:207.837296pt;}
.x36{left:208.879332pt;}
.x31{left:211.094888pt;}
.x1f{left:213.897463pt;}
.x22{left:214.925005pt;}
.x35{left:218.446601pt;}
.x26{left:221.968196pt;}
.x21{left:224.447756pt;}
.x34{left:226.208812pt;}
.x32{left:228.541876pt;}
.x20{left:232.224980pt;}
.x27{left:237.713140pt;}
.x37{left:242.731272pt;}
.x23{left:244.066817pt;}
.x13{left:249.598667pt;}
.x3a{left:255.758667pt;}
.x38{left:259.708748pt;}
.x25{left:263.274344pt;}
.x4c{left:298.929333pt;}
.x5{left:319.094667pt;}
.x7{left:324.334667pt;}
.x1{left:329.826667pt;}
.x3{left:335.294667pt;}
.x4{left:341.888000pt;}
.x8{left:378.344000pt;}
.x6{left:383.645333pt;}
.x12{left:404.678667pt;}
.xf{left:473.198667pt;}
.x10{left:478.512000pt;}
.xb{left:633.626667pt;}
.xc{left:642.253333pt;}
}




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