
    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_19ddf584a4dfea3d1458312b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_998cec8665a09aaa00362980.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_a53a9528721b7971fe73d23e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_1d9c5046c8551ad5433edefb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_357786bdd0500db8c3513966.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111816;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_26a539114005a83b33295860.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_057cad2a3b22b0b2787e6cf4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_1c5d269e2ea7617db2c02562.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.022000;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:ff9;src:url('chunks/assets/font_045b2de73a159a02649eb13e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-3.960000px;}
.ls49{letter-spacing:-1.080000px;}
.ls4d{letter-spacing:-0.561600px;}
.ls40{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.273600px;}
.ls32{letter-spacing:-0.201600px;}
.ls45{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.115200px;}
.ls30{letter-spacing:-0.093600px;}
.ls22{letter-spacing:-0.086400px;}
.ls2c{letter-spacing:-0.079200px;}
.ls2a{letter-spacing:-0.072000px;}
.ls66{letter-spacing:-0.065880px;}
.ls31{letter-spacing:-0.064800px;}
.ls1c{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.050400px;}
.ls27{letter-spacing:-0.043200px;}
.ls1d{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.033552px;}
.ls59{letter-spacing:-0.032940px;}
.ls21{letter-spacing:-0.028800px;}
.ls1a{letter-spacing:-0.021600px;}
.ls63{letter-spacing:-0.019764px;}
.ls16{letter-spacing:-0.014400px;}
.ls68{letter-spacing:-0.013176px;}
.ls17{letter-spacing:-0.007200px;}
.ls64{letter-spacing:-0.006588px;}
.ls13{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.006588px;}
.ls10{letter-spacing:0.007200px;}
.ls58{letter-spacing:0.013176px;}
.lse{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.016776px;}
.ls61{letter-spacing:0.019764px;}
.ls5{letter-spacing:0.021600px;}
.ls4{letter-spacing:0.024048px;}
.ls62{letter-spacing:0.026352px;}
.ls12{letter-spacing:0.028800px;}
.ls52{letter-spacing:0.032940px;}
.ls9{letter-spacing:0.036000px;}
.ls3b{letter-spacing:0.039528px;}
.ls1{letter-spacing:0.041940px;}
.lsd{letter-spacing:0.043200px;}
.ls54{letter-spacing:0.046116px;}
.lsa{letter-spacing:0.050400px;}
.ls3d{letter-spacing:0.052704px;}
.ls8{letter-spacing:0.057600px;}
.ls0{letter-spacing:0.058716px;}
.ls39{letter-spacing:0.059292px;}
.lsf{letter-spacing:0.064800px;}
.ls3c{letter-spacing:0.065880px;}
.lsb{letter-spacing:0.072000px;}
.ls55{letter-spacing:0.072468px;}
.ls36{letter-spacing:0.079056px;}
.ls6{letter-spacing:0.079200px;}
.ls15{letter-spacing:0.084168px;}
.ls5d{letter-spacing:0.085644px;}
.ls7{letter-spacing:0.086400px;}
.ls57{letter-spacing:0.092232px;}
.ls2{letter-spacing:0.092268px;}
.ls20{letter-spacing:0.093600px;}
.ls37{letter-spacing:0.098820px;}
.ls11{letter-spacing:0.100800px;}
.ls5c{letter-spacing:0.105408px;}
.ls1f{letter-spacing:0.108000px;}
.ls5f{letter-spacing:0.111996px;}
.ls24{letter-spacing:0.115200px;}
.ls5e{letter-spacing:0.118584px;}
.ls26{letter-spacing:0.122400px;}
.ls5b{letter-spacing:0.125172px;}
.ls23{letter-spacing:0.129600px;}
.ls3a{letter-spacing:0.131760px;}
.ls25{letter-spacing:0.136800px;}
.ls56{letter-spacing:0.138348px;}
.lsc{letter-spacing:0.144000px;}
.ls5a{letter-spacing:0.144936px;}
.ls1e{letter-spacing:0.151200px;}
.ls65{letter-spacing:0.151524px;}
.ls60{letter-spacing:0.158112px;}
.ls34{letter-spacing:0.158400px;}
.ls2d{letter-spacing:0.165600px;}
.ls18{letter-spacing:0.172800px;}
.ls38{letter-spacing:0.177876px;}
.ls4b{letter-spacing:0.273600px;}
.ls4e{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.504000px;}
.ls67{letter-spacing:0.540216px;}
.ls4a{letter-spacing:1.440000px;}
.ls2e{letter-spacing:3.111120px;}
.ls46{letter-spacing:3.240000px;}
.ls47{letter-spacing:3.960000px;}
.ls1b{letter-spacing:4.320000px;}
.ls50{letter-spacing:5.040000px;}
.ls2f{letter-spacing:5.400000px;}
.ls33{letter-spacing:6.840000px;}
.ls28{letter-spacing:7.380000px;}
.ls48{letter-spacing:9.720000px;}
.ls43{letter-spacing:11.520000px;}
.ls3f{letter-spacing:12.960000px;}
.ls44{letter-spacing:15.120000px;}
.ls41{letter-spacing:15.660000px;}
.ls4f{letter-spacing:16.200000px;}
.ls3e{letter-spacing:22.680000px;}
.ls4c{letter-spacing:28.440000px;}
.ls51{letter-spacing:62.322480px;}
.ls69{letter-spacing:847.533024px;}
.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;}
}
.ws1{word-spacing:-20.986776px;}
.ws0{word-spacing:-20.936448px;}
.ws3d{word-spacing:-18.064800px;}
.ws20{word-spacing:-18.050400px;}
.ws33{word-spacing:-18.036000px;}
.ws2{word-spacing:-18.021600px;}
.wsa{word-spacing:-18.014400px;}
.ws18{word-spacing:-17.992800px;}
.ws3c{word-spacing:-17.985600px;}
.ws43{word-spacing:-17.978400px;}
.ws21{word-spacing:-17.956800px;}
.ws51{word-spacing:-16.595172px;}
.ws53{word-spacing:-16.581996px;}
.ws49{word-spacing:-16.549056px;}
.ws52{word-spacing:-16.529292px;}
.ws5c{word-spacing:-16.516116px;}
.ws22{word-spacing:-4.406400px;}
.ws36{word-spacing:-3.974400px;}
.ws2d{word-spacing:-3.607200px;}
.ws3b{word-spacing:-3.304800px;}
.ws1d{word-spacing:-2.167200px;}
.ws30{word-spacing:-1.872000px;}
.ws37{word-spacing:-1.512000px;}
.ws38{word-spacing:-1.497600px;}
.ws40{word-spacing:-1.123200px;}
.ws39{word-spacing:-1.101600px;}
.ws8{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.388800px;}
.ws59{word-spacing:-0.355752px;}
.ws5{word-spacing:-0.354708px;}
.ws9{word-spacing:-0.302400px;}
.ws1c{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.109044px;}
.ws5e{word-spacing:-0.026352px;}
.ws5d{word-spacing:-0.019764px;}
.ws3{word-spacing:0.000000px;}
.ws56{word-spacing:0.006588px;}
.ws55{word-spacing:0.013176px;}
.ws54{word-spacing:0.019764px;}
.ws5b{word-spacing:0.026352px;}
.ws5a{word-spacing:0.032940px;}
.ws4f{word-spacing:0.039528px;}
.ws4d{word-spacing:0.046116px;}
.ws50{word-spacing:0.052704px;}
.ws4e{word-spacing:0.059292px;}
.ws58{word-spacing:0.065880px;}
.ws61{word-spacing:0.072468px;}
.ws60{word-spacing:0.079056px;}
.ws5f{word-spacing:0.092232px;}
.ws57{word-spacing:0.098820px;}
.ws3f{word-spacing:0.273600px;}
.wsb{word-spacing:0.374400px;}
.ws3a{word-spacing:1.404000px;}
.ws17{word-spacing:1.728000px;}
.ws35{word-spacing:1.785600px;}
.ws19{word-spacing:2.469600px;}
.ws28{word-spacing:2.800800px;}
.ws16{word-spacing:3.211200px;}
.ws46{word-spacing:3.218400px;}
.ws47{word-spacing:3.391200px;}
.ws1f{word-spacing:3.585600px;}
.ws15{word-spacing:4.032000px;}
.ws7{word-spacing:4.096800px;}
.wsd{word-spacing:4.118400px;}
.ws24{word-spacing:4.248000px;}
.ws12{word-spacing:4.298400px;}
.ws23{word-spacing:4.305600px;}
.ws4c{word-spacing:4.312800px;}
.ws32{word-spacing:4.615200px;}
.ws10{word-spacing:4.665600px;}
.wsf{word-spacing:4.687200px;}
.ws31{word-spacing:4.744800px;}
.ws42{word-spacing:6.465600px;}
.ws25{word-spacing:6.868800px;}
.ws14{word-spacing:7.502400px;}
.ws4b{word-spacing:8.460000px;}
.ws4a{word-spacing:8.503200px;}
.ws3e{word-spacing:9.705600px;}
.ws2e{word-spacing:11.448000px;}
.ws2f{word-spacing:11.462400px;}
.wse{word-spacing:12.844800px;}
.ws13{word-spacing:13.975200px;}
.ws48{word-spacing:14.500800px;}
.wsc{word-spacing:14.709600px;}
.ws2b{word-spacing:15.076800px;}
.ws2a{word-spacing:15.112800px;}
.ws1b{word-spacing:15.768000px;}
.ws1a{word-spacing:15.811200px;}
.ws6{word-spacing:16.120800px;}
.ws45{word-spacing:16.128000px;}
.ws34{word-spacing:17.640000px;}
.ws26{word-spacing:19.540800px;}
.ws27{word-spacing:19.771200px;}
.ws29{word-spacing:20.152800px;}
.ws1e{word-spacing:20.908800px;}
.ws44{word-spacing:22.291200px;}
.ws2c{word-spacing:23.025600px;}
.ws41{word-spacing:28.382400px;}
._2c{margin-left:-28.108800px;}
._1e{margin-left:-23.112000px;}
._1f{margin-left:-21.888000px;}
._21{margin-left:-16.473600px;}
._22{margin-left:-14.774400px;}
._20{margin-left:-12.880800px;}
._27{margin-left:-10.699920px;}
._28{margin-left:-9.414720px;}
._19{margin-left:-8.179200px;}
._18{margin-left:-6.364800px;}
._e{margin-left:-4.490640px;}
._b{margin-left:-3.384000px;}
._9{margin-left:-2.232000px;}
._1{margin-left:-1.082160px;}
._0{width:1.006560px;}
._13{width:2.016000px;}
._a{width:3.024000px;}
._3{width:4.320000px;}
._4{width:5.544000px;}
._8{width:6.552000px;}
._11{width:7.560000px;}
._12{width:8.568000px;}
._1a{width:10.296000px;}
._f{width:11.306160px;}
._17{width:12.316320px;}
._7{width:13.320000px;}
._d{width:14.400000px;}
._2{width:16.200000px;}
._24{width:18.250560px;}
._15{width:19.432800px;}
._14{width:20.520000px;}
._c{width:21.960000px;}
._1b{width:23.328000px;}
._23{width:24.771312px;}
._29{width:25.920000px;}
._1c{width:26.925840px;}
._16{width:28.298160px;}
._6{width:29.592000px;}
._5{width:30.600000px;}
._10{width:32.400000px;}
._2d{width:35.568000px;}
._26{width:38.376000px;}
._1d{width:39.960000px;}
._25{width:43.704000px;}
._2b{width:45.000000px;}
._2a{width:50.400000px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.684000px;}
.y27{bottom:4.999500px;}
.y26{bottom:34.428082px;}
.y66{bottom:110.550450px;}
.y58{bottom:110.640450px;}
.ya8{bottom:117.660450px;}
.y103{bottom:123.002400px;}
.y9d{bottom:129.630450px;}
.y47{bottom:129.720450px;}
.ydf{bottom:131.707830px;}
.y81{bottom:136.740450px;}
.y88{bottom:141.323340px;}
.y57{bottom:141.690450px;}
.y102{bottom:144.874560px;}
.ya7{bottom:148.710450px;}
.y23{bottom:152.040450px;}
.yba{bottom:153.209460px;}
.yde{bottom:153.481170px;}
.y46{bottom:160.770450px;}
.y80{bottom:167.790450px;}
.y87{bottom:169.767030px;}
.y56{bottom:172.740450px;}
.yb9{bottom:174.982800px;}
.ydd{bottom:175.353330px;}
.ya6{bottom:179.760450px;}
.y101{bottom:179.790960px;}
.y22{bottom:183.180450px;}
.y45{bottom:191.820450px;}
.yb8{bottom:196.854960px;}
.y86{bottom:198.210720px;}
.y7f{bottom:198.840450px;}
.y55{bottom:203.790450px;}
.ydc{bottom:210.269730px;}
.y100{bottom:214.707360px;}
.y8f{bottom:215.670450px;}
.ya5{bottom:222.780450px;}
.y44{bottom:222.870450px;}
.y21{bottom:226.110450px;}
.y85{bottom:226.654410px;}
.y7e{bottom:229.890450px;}
.yb7{bottom:231.771360px;}
.ydb{bottom:232.141890px;}
.y54{bottom:234.840450px;}
.y8e{bottom:246.810450px;}
.yff{bottom:249.722580px;}
.yb6{bottom:253.643520px;}
.y43{bottom:253.920450px;}
.y84{bottom:255.180450px;}
.y7d{bottom:260.940450px;}
.y53{bottom:265.890450px;}
.yda{bottom:267.058290px;}
.y20{bottom:269.130450px;}
.yfe{bottom:271.594740px;}
.y8d{bottom:277.860450px;}
.y9c{bottom:284.970450px;}
.yb5{bottom:288.559920px;}
.yd9{bottom:288.921450px;}
.y7c{bottom:291.990450px;}
.y96{bottom:296.670450px;}
.y42{bottom:296.850450px;}
.y52{bottom:296.940450px;}
.y1f{bottom:300.270450px;}
.yfd{bottom:306.511140px;}
.y8c{bottom:308.910450px;}
.yb4{bottom:310.432080px;}
.y9b{bottom:316.020450px;}
.y7b{bottom:323.040450px;}
.yd8{bottom:323.837850px;}
.y95{bottom:327.810450px;}
.y41{bottom:327.990450px;}
.yfc{bottom:328.284480px;}
.y1e{bottom:331.320450px;}
.y51{bottom:339.870450px;}
.y8b{bottom:339.960450px;}
.yb3{bottom:345.266130px;}
.yd7{bottom:345.710010px;}
.ya4{bottom:347.070450px;}
.yfb{bottom:350.057820px;}
.y7a{bottom:354.090450px;}
.y9a{bottom:358.770450px;}
.y40{bottom:359.040450px;}
.y1d{bottom:362.370450px;}
.yb2{bottom:367.138290px;}
.y94{bottom:370.920450px;}
.y50{bottom:371.010450px;}
.yfa{bottom:371.929980px;}
.ya3{bottom:378.120450px;}
.yd6{bottom:380.544060px;}
.yb1{bottom:389.010450px;}
.y99{bottom:389.910450px;}
.y3f{bottom:390.090450px;}
.y1c{bottom:393.420450px;}
.y79{bottom:396.840450px;}
.y4f{bottom:402.060450px;}
.yd5{bottom:402.416220px;}
.yf9{bottom:406.846380px;}
.ya2{bottom:409.080450px;}
.y3e{bottom:421.140450px;}
.yb0{bottom:423.922230px;}
.y1b{bottom:424.470450px;}
.y78{bottom:427.980450px;}
.yf8{bottom:428.718540px;}
.y98{bottom:433.020450px;}
.y4e{bottom:433.110450px;}
.yd4{bottom:437.332620px;}
.ya1{bottom:440.130450px;}
.yaf{bottom:445.794390px;}
.yf7{bottom:450.491880px;}
.y3d{bottom:452.190450px;}
.y1a{bottom:455.520450px;}
.y83{bottom:464.070450px;}
.y4d{bottom:464.160450px;}
.y77{bottom:471.090450px;}
.ya0{bottom:471.180450px;}
.yd3{bottom:472.249020px;}
.yf6{bottom:472.364040px;}
.yae{bottom:480.628440px;}
.y3c{bottom:483.240450px;}
.y19{bottom:486.570450px;}
.yd2{bottom:494.121180px;}
.y4c{bottom:495.210450px;}
.y76{bottom:502.230450px;}
.yad{bottom:502.500600px;}
.yf5{bottom:507.280440px;}
.y65{bottom:514.290450px;}
.y18{bottom:517.620450px;}
.y3b{bottom:526.170450px;}
.y4b{bottom:526.260450px;}
.yd1{bottom:529.037580px;}
.yf4{bottom:529.053780px;}
.y75{bottom:533.280450px;}
.yac{bottom:545.070450px;}
.y17{bottom:548.670450px;}
.yd0{bottom:550.909740px;}
.yf3{bottom:550.925940px;}
.y64{bottom:557.220450px;}
.y3a{bottom:557.310450px;}
.y74{bottom:564.330450px;}
.y93{bottom:569.190450px;}
.y16{bottom:579.720450px;}
.ycf{bottom:585.826140px;}
.yf2{bottom:585.842340px;}
.yab{bottom:588.270450px;}
.y39{bottom:588.360450px;}
.y73{bottom:595.380450px;}
.y92{bottom:600.330450px;}
.yce{bottom:607.599480px;}
.yf1{bottom:607.714500px;}
.y15{bottom:610.770450px;}
.y38{bottom:619.410450px;}
.y72{bottom:626.430450px;}
.ycd{bottom:629.471640px;}
.yaa{bottom:631.290450px;}
.y91{bottom:631.380450px;}
.y9f{bottom:638.220450px;}
.y14{bottom:641.820450px;}
.yf0{bottom:642.630900px;}
.y37{bottom:650.460450px;}
.ycc{bottom:651.343800px;}
.y71{bottom:657.480450px;}
.y5c{bottom:662.340450px;}
.y90{bottom:662.430450px;}
.yef{bottom:664.503060px;}
.y13{bottom:672.870450px;}
.y9e{bottom:681.420450px;}
.y36{bottom:681.510450px;}
.ycb{bottom:686.260200px;}
.y5b{bottom:693.480450px;}
.yee{bottom:699.337110px;}
.y70{bottom:700.320450px;}
.y12{bottom:703.920450px;}
.yca{bottom:708.132360px;}
.y63{bottom:712.560450px;}
.yed{bottom:721.209270px;}
.y35{bottom:724.440450px;}
.y5a{bottom:724.530450px;}
.y11{bottom:734.970450px;}
.yc9{bottom:742.966410px;}
.yec{bottom:743.081430px;}
.y6f{bottom:743.520450px;}
.y62{bottom:743.610450px;}
.y8a{bottom:755.490450px;}
.y34{bottom:755.580450px;}
.yc8{bottom:764.838570px;}
.y10{bottom:766.020450px;}
.y61{bottom:774.660450px;}
.yeb{bottom:777.997830px;}
.y6e{bottom:786.540450px;}
.y33{bottom:786.630450px;}
.yf{bottom:797.070450px;}
.yc7{bottom:799.754970px;}
.yea{bottom:799.869990px;}
.y60{bottom:805.710450px;}
.y82{bottom:817.590450px;}
.y32{bottom:817.680450px;}
.yc6{bottom:821.627130px;}
.ye{bottom:828.120450px;}
.ye9{bottom:834.704040px;}
.y5f{bottom:836.760450px;}
.y31{bottom:848.730450px;}
.yc5{bottom:856.461180px;}
.ye8{bottom:856.576200px;}
.yd{bottom:859.170450px;}
.y5e{bottom:867.810450px;}
.y30{bottom:879.780450px;}
.yc{bottom:890.220450px;}
.yc4{bottom:891.476400px;}
.ye7{bottom:891.492600px;}
.y6d{bottom:891.660450px;}
.y5d{bottom:910.740450px;}
.y2f{bottom:910.830450px;}
.ye6{bottom:913.265940px;}
.yc3{bottom:913.348560px;}
.y6c{bottom:922.800450px;}
.yb{bottom:932.970450px;}
.ye5{bottom:935.220450px;}
.y2e{bottom:941.880450px;}
.yc2{bottom:948.264960px;}
.y6b{bottom:953.850450px;}
.ye4{bottom:970.038300px;}
.yc1{bottom:970.137120px;}
.y106{bottom:971.224140px;}
.y2d{bottom:972.930450px;}
.ya{bottom:975.990450px;}
.y89{bottom:984.810450px;}
.y6a{bottom:984.900450px;}
.ye3{bottom:991.910460px;}
.y9{bottom:996.321990px;}
.y2c{bottom:1003.980450px;}
.y105{bottom:1004.971170px;}
.yc0{bottom:1005.053520px;}
.y8{bottom:1013.426130px;}
.ya9{bottom:1015.860450px;}
.y69{bottom:1015.950450px;}
.ye2{bottom:1026.826860px;}
.ybf{bottom:1026.925680px;}
.y7{bottom:1030.620450px;}
.y2b{bottom:1035.030450px;}
.y104{bottom:1039.986390px;}
.y97{bottom:1046.910450px;}
.y68{bottom:1047.000450px;}
.y6{bottom:1047.630450px;}
.ye1{bottom:1048.699020px;}
.ybe{bottom:1061.759730px;}
.y5{bottom:1064.639100px;}
.y2a{bottom:1066.080450px;}
.y4a{bottom:1077.960450px;}
.y67{bottom:1078.050450px;}
.ye0{bottom:1083.533070px;}
.ybd{bottom:1083.631890px;}
.y4{bottom:1088.859450px;}
.y29{bottom:1097.130450px;}
.y59{bottom:1109.010450px;}
.y49{bottom:1109.100450px;}
.y3{bottom:1112.974950px;}
.ybc{bottom:1118.548290px;}
.y2{bottom:1137.090450px;}
.y28{bottom:1139.880450px;}
.y48{bottom:1140.150450px;}
.ybb{bottom:1140.420450px;}
.y1{bottom:1193.250450px;}
.y24{bottom:1207.841853px;}
.h8{height:16.716000px;}
.ha{height:20.674515px;}
.h9{height:43.265625px;}
.h4{height:47.961914px;}
.hb{height:49.886719px;}
.h6{height:52.898555px;}
.h5{height:53.397598px;}
.hc{height:58.706543px;}
.he{height:59.060391px;}
.h7{height:63.949219px;}
.h1{height:64.160156px;}
.hd{height:70.628906px;}
.h3{height:74.500840px;}
.h2{height:82.282676px;}
.h0{height:1263.000000px;}
.we{width:36.498000px;}
.w5{width:36.597000px;}
.w3{width:36.729000px;}
.wb{width:37.801500px;}
.w9{width:38.230500px;}
.wf{width:38.511000px;}
.w7{width:38.626500px;}
.w6{width:38.725500px;}
.w8{width:38.841000px;}
.wa{width:38.857500px;}
.wc{width:39.352500px;}
.wd{width:39.534000px;}
.w4{width:39.649500px;}
.w2{width:692.016000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x8{left:100.403984px;}
.x1{left:148.770000px;}
.x2{left:161.460000px;}
.xc{left:175.500000px;}
.x3{left:194.403870px;}
.xd{left:202.313160px;}
.xb{left:233.820000px;}
.x7{left:320.583870px;}
.x4{left:376.465410px;}
.x6{left:380.252970px;}
.xa{left:426.590973px;}
.x9{left:428.049728px;}
.x5{left:446.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-3.520000pt;}
.ls49{letter-spacing:-0.960000pt;}
.ls4d{letter-spacing:-0.499200pt;}
.ls40{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.243200pt;}
.ls32{letter-spacing:-0.179200pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.102400pt;}
.ls30{letter-spacing:-0.083200pt;}
.ls22{letter-spacing:-0.076800pt;}
.ls2c{letter-spacing:-0.070400pt;}
.ls2a{letter-spacing:-0.064000pt;}
.ls66{letter-spacing:-0.058560pt;}
.ls31{letter-spacing:-0.057600pt;}
.ls1c{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.044800pt;}
.ls27{letter-spacing:-0.038400pt;}
.ls1d{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.029824pt;}
.ls59{letter-spacing:-0.029280pt;}
.ls21{letter-spacing:-0.025600pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls63{letter-spacing:-0.017568pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls68{letter-spacing:-0.011712pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls64{letter-spacing:-0.005856pt;}
.ls13{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.005856pt;}
.ls10{letter-spacing:0.006400pt;}
.ls58{letter-spacing:0.011712pt;}
.lse{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.014912pt;}
.ls61{letter-spacing:0.017568pt;}
.ls5{letter-spacing:0.019200pt;}
.ls4{letter-spacing:0.021376pt;}
.ls62{letter-spacing:0.023424pt;}
.ls12{letter-spacing:0.025600pt;}
.ls52{letter-spacing:0.029280pt;}
.ls9{letter-spacing:0.032000pt;}
.ls3b{letter-spacing:0.035136pt;}
.ls1{letter-spacing:0.037280pt;}
.lsd{letter-spacing:0.038400pt;}
.ls54{letter-spacing:0.040992pt;}
.lsa{letter-spacing:0.044800pt;}
.ls3d{letter-spacing:0.046848pt;}
.ls8{letter-spacing:0.051200pt;}
.ls0{letter-spacing:0.052192pt;}
.ls39{letter-spacing:0.052704pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3c{letter-spacing:0.058560pt;}
.lsb{letter-spacing:0.064000pt;}
.ls55{letter-spacing:0.064416pt;}
.ls36{letter-spacing:0.070272pt;}
.ls6{letter-spacing:0.070400pt;}
.ls15{letter-spacing:0.074816pt;}
.ls5d{letter-spacing:0.076128pt;}
.ls7{letter-spacing:0.076800pt;}
.ls57{letter-spacing:0.081984pt;}
.ls2{letter-spacing:0.082016pt;}
.ls20{letter-spacing:0.083200pt;}
.ls37{letter-spacing:0.087840pt;}
.ls11{letter-spacing:0.089600pt;}
.ls5c{letter-spacing:0.093696pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls5f{letter-spacing:0.099552pt;}
.ls24{letter-spacing:0.102400pt;}
.ls5e{letter-spacing:0.105408pt;}
.ls26{letter-spacing:0.108800pt;}
.ls5b{letter-spacing:0.111264pt;}
.ls23{letter-spacing:0.115200pt;}
.ls3a{letter-spacing:0.117120pt;}
.ls25{letter-spacing:0.121600pt;}
.ls56{letter-spacing:0.122976pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5a{letter-spacing:0.128832pt;}
.ls1e{letter-spacing:0.134400pt;}
.ls65{letter-spacing:0.134688pt;}
.ls60{letter-spacing:0.140544pt;}
.ls34{letter-spacing:0.140800pt;}
.ls2d{letter-spacing:0.147200pt;}
.ls18{letter-spacing:0.153600pt;}
.ls38{letter-spacing:0.158112pt;}
.ls4b{letter-spacing:0.243200pt;}
.ls4e{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.448000pt;}
.ls67{letter-spacing:0.480192pt;}
.ls4a{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:2.765440pt;}
.ls46{letter-spacing:2.880000pt;}
.ls47{letter-spacing:3.520000pt;}
.ls1b{letter-spacing:3.840000pt;}
.ls50{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:4.800000pt;}
.ls33{letter-spacing:6.080000pt;}
.ls28{letter-spacing:6.560000pt;}
.ls48{letter-spacing:8.640000pt;}
.ls43{letter-spacing:10.240000pt;}
.ls3f{letter-spacing:11.520000pt;}
.ls44{letter-spacing:13.440000pt;}
.ls41{letter-spacing:13.920000pt;}
.ls4f{letter-spacing:14.400000pt;}
.ls3e{letter-spacing:20.160000pt;}
.ls4c{letter-spacing:25.280000pt;}
.ls51{letter-spacing:55.397760pt;}
.ls69{letter-spacing:753.362688pt;}
.ws1{word-spacing:-18.654912pt;}
.ws0{word-spacing:-18.610176pt;}
.ws3d{word-spacing:-16.057600pt;}
.ws20{word-spacing:-16.044800pt;}
.ws33{word-spacing:-16.032000pt;}
.ws2{word-spacing:-16.019200pt;}
.wsa{word-spacing:-16.012800pt;}
.ws18{word-spacing:-15.993600pt;}
.ws3c{word-spacing:-15.987200pt;}
.ws43{word-spacing:-15.980800pt;}
.ws21{word-spacing:-15.961600pt;}
.ws51{word-spacing:-14.751264pt;}
.ws53{word-spacing:-14.739552pt;}
.ws49{word-spacing:-14.710272pt;}
.ws52{word-spacing:-14.692704pt;}
.ws5c{word-spacing:-14.680992pt;}
.ws22{word-spacing:-3.916800pt;}
.ws36{word-spacing:-3.532800pt;}
.ws2d{word-spacing:-3.206400pt;}
.ws3b{word-spacing:-2.937600pt;}
.ws1d{word-spacing:-1.926400pt;}
.ws30{word-spacing:-1.664000pt;}
.ws37{word-spacing:-1.344000pt;}
.ws38{word-spacing:-1.331200pt;}
.ws40{word-spacing:-0.998400pt;}
.ws39{word-spacing:-0.979200pt;}
.ws8{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.345600pt;}
.ws59{word-spacing:-0.316224pt;}
.ws5{word-spacing:-0.315296pt;}
.ws9{word-spacing:-0.268800pt;}
.ws1c{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.096928pt;}
.ws5e{word-spacing:-0.023424pt;}
.ws5d{word-spacing:-0.017568pt;}
.ws3{word-spacing:0.000000pt;}
.ws56{word-spacing:0.005856pt;}
.ws55{word-spacing:0.011712pt;}
.ws54{word-spacing:0.017568pt;}
.ws5b{word-spacing:0.023424pt;}
.ws5a{word-spacing:0.029280pt;}
.ws4f{word-spacing:0.035136pt;}
.ws4d{word-spacing:0.040992pt;}
.ws50{word-spacing:0.046848pt;}
.ws4e{word-spacing:0.052704pt;}
.ws58{word-spacing:0.058560pt;}
.ws61{word-spacing:0.064416pt;}
.ws60{word-spacing:0.070272pt;}
.ws5f{word-spacing:0.081984pt;}
.ws57{word-spacing:0.087840pt;}
.ws3f{word-spacing:0.243200pt;}
.wsb{word-spacing:0.332800pt;}
.ws3a{word-spacing:1.248000pt;}
.ws17{word-spacing:1.536000pt;}
.ws35{word-spacing:1.587200pt;}
.ws19{word-spacing:2.195200pt;}
.ws28{word-spacing:2.489600pt;}
.ws16{word-spacing:2.854400pt;}
.ws46{word-spacing:2.860800pt;}
.ws47{word-spacing:3.014400pt;}
.ws1f{word-spacing:3.187200pt;}
.ws15{word-spacing:3.584000pt;}
.ws7{word-spacing:3.641600pt;}
.wsd{word-spacing:3.660800pt;}
.ws24{word-spacing:3.776000pt;}
.ws12{word-spacing:3.820800pt;}
.ws23{word-spacing:3.827200pt;}
.ws4c{word-spacing:3.833600pt;}
.ws32{word-spacing:4.102400pt;}
.ws10{word-spacing:4.147200pt;}
.wsf{word-spacing:4.166400pt;}
.ws31{word-spacing:4.217600pt;}
.ws42{word-spacing:5.747200pt;}
.ws25{word-spacing:6.105600pt;}
.ws14{word-spacing:6.668800pt;}
.ws4b{word-spacing:7.520000pt;}
.ws4a{word-spacing:7.558400pt;}
.ws3e{word-spacing:8.627200pt;}
.ws2e{word-spacing:10.176000pt;}
.ws2f{word-spacing:10.188800pt;}
.wse{word-spacing:11.417600pt;}
.ws13{word-spacing:12.422400pt;}
.ws48{word-spacing:12.889600pt;}
.wsc{word-spacing:13.075200pt;}
.ws2b{word-spacing:13.401600pt;}
.ws2a{word-spacing:13.433600pt;}
.ws1b{word-spacing:14.016000pt;}
.ws1a{word-spacing:14.054400pt;}
.ws6{word-spacing:14.329600pt;}
.ws45{word-spacing:14.336000pt;}
.ws34{word-spacing:15.680000pt;}
.ws26{word-spacing:17.369600pt;}
.ws27{word-spacing:17.574400pt;}
.ws29{word-spacing:17.913600pt;}
.ws1e{word-spacing:18.585600pt;}
.ws44{word-spacing:19.814400pt;}
.ws2c{word-spacing:20.467200pt;}
.ws41{word-spacing:25.228800pt;}
._2c{margin-left:-24.985600pt;}
._1e{margin-left:-20.544000pt;}
._1f{margin-left:-19.456000pt;}
._21{margin-left:-14.643200pt;}
._22{margin-left:-13.132800pt;}
._20{margin-left:-11.449600pt;}
._27{margin-left:-9.511040pt;}
._28{margin-left:-8.368640pt;}
._19{margin-left:-7.270400pt;}
._18{margin-left:-5.657600pt;}
._e{margin-left:-3.991680pt;}
._b{margin-left:-3.008000pt;}
._9{margin-left:-1.984000pt;}
._1{margin-left:-0.961920pt;}
._0{width:0.894720pt;}
._13{width:1.792000pt;}
._a{width:2.688000pt;}
._3{width:3.840000pt;}
._4{width:4.928000pt;}
._8{width:5.824000pt;}
._11{width:6.720000pt;}
._12{width:7.616000pt;}
._1a{width:9.152000pt;}
._f{width:10.049920pt;}
._17{width:10.947840pt;}
._7{width:11.840000pt;}
._d{width:12.800000pt;}
._2{width:14.400000pt;}
._24{width:16.222720pt;}
._15{width:17.273600pt;}
._14{width:18.240000pt;}
._c{width:19.520000pt;}
._1b{width:20.736000pt;}
._23{width:22.018944pt;}
._29{width:23.040000pt;}
._1c{width:23.934080pt;}
._16{width:25.153920pt;}
._6{width:26.304000pt;}
._5{width:27.200000pt;}
._10{width:28.800000pt;}
._2d{width:31.616000pt;}
._26{width:34.112000pt;}
._1d{width:35.520000pt;}
._25{width:38.848000pt;}
._2b{width:40.000000pt;}
._2a{width:44.800000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:3.274667pt;}
.y27{bottom:4.444000pt;}
.y26{bottom:30.602740pt;}
.y66{bottom:98.267067pt;}
.y58{bottom:98.347067pt;}
.ya8{bottom:104.587067pt;}
.y103{bottom:109.335467pt;}
.y9d{bottom:115.227067pt;}
.y47{bottom:115.307067pt;}
.ydf{bottom:117.073627pt;}
.y81{bottom:121.547067pt;}
.y88{bottom:125.620747pt;}
.y57{bottom:125.947067pt;}
.y102{bottom:128.777387pt;}
.ya7{bottom:132.187067pt;}
.y23{bottom:135.147067pt;}
.yba{bottom:136.186187pt;}
.yde{bottom:136.427707pt;}
.y46{bottom:142.907067pt;}
.y80{bottom:149.147067pt;}
.y87{bottom:150.904027pt;}
.y56{bottom:153.547067pt;}
.yb9{bottom:155.540267pt;}
.ydd{bottom:155.869627pt;}
.ya6{bottom:159.787067pt;}
.y101{bottom:159.814187pt;}
.y22{bottom:162.827067pt;}
.y45{bottom:170.507067pt;}
.yb8{bottom:174.982187pt;}
.y86{bottom:176.187307pt;}
.y7f{bottom:176.747067pt;}
.y55{bottom:181.147067pt;}
.ydc{bottom:186.906427pt;}
.y100{bottom:190.850987pt;}
.y8f{bottom:191.707067pt;}
.ya5{bottom:198.027067pt;}
.y44{bottom:198.107067pt;}
.y21{bottom:200.987067pt;}
.y85{bottom:201.470587pt;}
.y7e{bottom:204.347067pt;}
.yb7{bottom:206.018987pt;}
.ydb{bottom:206.348347pt;}
.y54{bottom:208.747067pt;}
.y8e{bottom:219.387067pt;}
.yff{bottom:221.975627pt;}
.yb6{bottom:225.460907pt;}
.y43{bottom:225.707067pt;}
.y84{bottom:226.827067pt;}
.y7d{bottom:231.947067pt;}
.y53{bottom:236.347067pt;}
.yda{bottom:237.385147pt;}
.y20{bottom:239.227067pt;}
.yfe{bottom:241.417547pt;}
.y8d{bottom:246.987067pt;}
.y9c{bottom:253.307067pt;}
.yb5{bottom:256.497707pt;}
.yd9{bottom:256.819067pt;}
.y7c{bottom:259.547067pt;}
.y96{bottom:263.707067pt;}
.y42{bottom:263.867067pt;}
.y52{bottom:263.947067pt;}
.y1f{bottom:266.907067pt;}
.yfd{bottom:272.454347pt;}
.y8c{bottom:274.587067pt;}
.yb4{bottom:275.939627pt;}
.y9b{bottom:280.907067pt;}
.y7b{bottom:287.147067pt;}
.yd8{bottom:287.855867pt;}
.y95{bottom:291.387067pt;}
.y41{bottom:291.547067pt;}
.yfc{bottom:291.808427pt;}
.y1e{bottom:294.507067pt;}
.y51{bottom:302.107067pt;}
.y8b{bottom:302.187067pt;}
.yb3{bottom:306.903227pt;}
.yd7{bottom:307.297787pt;}
.ya4{bottom:308.507067pt;}
.yfb{bottom:311.162507pt;}
.y7a{bottom:314.747067pt;}
.y9a{bottom:318.907067pt;}
.y40{bottom:319.147067pt;}
.y1d{bottom:322.107067pt;}
.yb2{bottom:326.345147pt;}
.y94{bottom:329.707067pt;}
.y50{bottom:329.787067pt;}
.yfa{bottom:330.604427pt;}
.ya3{bottom:336.107067pt;}
.yd6{bottom:338.261387pt;}
.yb1{bottom:345.787067pt;}
.y99{bottom:346.587067pt;}
.y3f{bottom:346.747067pt;}
.y1c{bottom:349.707067pt;}
.y79{bottom:352.747067pt;}
.y4f{bottom:357.387067pt;}
.yd5{bottom:357.703307pt;}
.yf9{bottom:361.641227pt;}
.ya2{bottom:363.627067pt;}
.y3e{bottom:374.347067pt;}
.yb0{bottom:376.819760pt;}
.y1b{bottom:377.307067pt;}
.y78{bottom:380.427067pt;}
.yf8{bottom:381.083147pt;}
.y98{bottom:384.907067pt;}
.y4e{bottom:384.987067pt;}
.yd4{bottom:388.740107pt;}
.ya1{bottom:391.227067pt;}
.yaf{bottom:396.261680pt;}
.yf7{bottom:400.437227pt;}
.y3d{bottom:401.947067pt;}
.y1a{bottom:404.907067pt;}
.y83{bottom:412.507067pt;}
.y4d{bottom:412.587067pt;}
.y77{bottom:418.747067pt;}
.ya0{bottom:418.827067pt;}
.yd3{bottom:419.776907pt;}
.yf6{bottom:419.879147pt;}
.yae{bottom:427.225280pt;}
.y3c{bottom:429.547067pt;}
.y19{bottom:432.507067pt;}
.yd2{bottom:439.218827pt;}
.y4c{bottom:440.187067pt;}
.y76{bottom:446.427067pt;}
.yad{bottom:446.667200pt;}
.yf5{bottom:450.915947pt;}
.y65{bottom:457.147067pt;}
.y18{bottom:460.107067pt;}
.y3b{bottom:467.707067pt;}
.y4b{bottom:467.787067pt;}
.yd1{bottom:470.255627pt;}
.yf4{bottom:470.270027pt;}
.y75{bottom:474.027067pt;}
.yac{bottom:484.507067pt;}
.y17{bottom:487.707067pt;}
.yd0{bottom:489.697547pt;}
.yf3{bottom:489.711947pt;}
.y64{bottom:495.307067pt;}
.y3a{bottom:495.387067pt;}
.y74{bottom:501.627067pt;}
.y93{bottom:505.947067pt;}
.y16{bottom:515.307067pt;}
.ycf{bottom:520.734347pt;}
.yf2{bottom:520.748747pt;}
.yab{bottom:522.907067pt;}
.y39{bottom:522.987067pt;}
.y73{bottom:529.227067pt;}
.y92{bottom:533.627067pt;}
.yce{bottom:540.088427pt;}
.yf1{bottom:540.190667pt;}
.y15{bottom:542.907067pt;}
.y38{bottom:550.587067pt;}
.y72{bottom:556.827067pt;}
.ycd{bottom:559.530347pt;}
.yaa{bottom:561.147067pt;}
.y91{bottom:561.227067pt;}
.y9f{bottom:567.307067pt;}
.y14{bottom:570.507067pt;}
.yf0{bottom:571.227467pt;}
.y37{bottom:578.187067pt;}
.ycc{bottom:578.972267pt;}
.y71{bottom:584.427067pt;}
.y5c{bottom:588.747067pt;}
.y90{bottom:588.827067pt;}
.yef{bottom:590.669387pt;}
.y13{bottom:598.107067pt;}
.y9e{bottom:605.707067pt;}
.y36{bottom:605.787067pt;}
.ycb{bottom:610.009067pt;}
.y5b{bottom:616.427067pt;}
.yee{bottom:621.632987pt;}
.y70{bottom:622.507067pt;}
.y12{bottom:625.707067pt;}
.yca{bottom:629.450987pt;}
.y63{bottom:633.387067pt;}
.yed{bottom:641.074907pt;}
.y35{bottom:643.947067pt;}
.y5a{bottom:644.027067pt;}
.y11{bottom:653.307067pt;}
.yc9{bottom:660.414587pt;}
.yec{bottom:660.516827pt;}
.y6f{bottom:660.907067pt;}
.y62{bottom:660.987067pt;}
.y8a{bottom:671.547067pt;}
.y34{bottom:671.627067pt;}
.yc8{bottom:679.856507pt;}
.y10{bottom:680.907067pt;}
.y61{bottom:688.587067pt;}
.yeb{bottom:691.553627pt;}
.y6e{bottom:699.147067pt;}
.y33{bottom:699.227067pt;}
.yf{bottom:708.507067pt;}
.yc7{bottom:710.893307pt;}
.yea{bottom:710.995547pt;}
.y60{bottom:716.187067pt;}
.y82{bottom:726.747067pt;}
.y32{bottom:726.827067pt;}
.yc6{bottom:730.335227pt;}
.ye{bottom:736.107067pt;}
.ye9{bottom:741.959147pt;}
.y5f{bottom:743.787067pt;}
.y31{bottom:754.427067pt;}
.yc5{bottom:761.298827pt;}
.ye8{bottom:761.401067pt;}
.yd{bottom:763.707067pt;}
.y5e{bottom:771.387067pt;}
.y30{bottom:782.027067pt;}
.yc{bottom:791.307067pt;}
.yc4{bottom:792.423467pt;}
.ye7{bottom:792.437867pt;}
.y6d{bottom:792.587067pt;}
.y5d{bottom:809.547067pt;}
.y2f{bottom:809.627067pt;}
.ye6{bottom:811.791947pt;}
.yc3{bottom:811.865387pt;}
.y6c{bottom:820.267067pt;}
.yb{bottom:829.307067pt;}
.ye5{bottom:831.307067pt;}
.y2e{bottom:837.227067pt;}
.yc2{bottom:842.902187pt;}
.y6b{bottom:847.867067pt;}
.ye4{bottom:862.256267pt;}
.yc1{bottom:862.344107pt;}
.y106{bottom:863.310347pt;}
.y2d{bottom:864.827067pt;}
.ya{bottom:867.547067pt;}
.y89{bottom:875.387067pt;}
.y6a{bottom:875.467067pt;}
.ye3{bottom:881.698187pt;}
.y9{bottom:885.619547pt;}
.y2c{bottom:892.427067pt;}
.y105{bottom:893.307707pt;}
.yc0{bottom:893.380907pt;}
.y8{bottom:900.823227pt;}
.ya9{bottom:902.987067pt;}
.y69{bottom:903.067067pt;}
.ye2{bottom:912.734987pt;}
.ybf{bottom:912.822827pt;}
.y7{bottom:916.107067pt;}
.y2b{bottom:920.027067pt;}
.y104{bottom:924.432347pt;}
.y97{bottom:930.587067pt;}
.y68{bottom:930.667067pt;}
.y6{bottom:931.227067pt;}
.ye1{bottom:932.176907pt;}
.ybe{bottom:943.786427pt;}
.y5{bottom:946.345867pt;}
.y2a{bottom:947.627067pt;}
.y4a{bottom:958.187067pt;}
.y67{bottom:958.267067pt;}
.ye0{bottom:963.140507pt;}
.ybd{bottom:963.228347pt;}
.y4{bottom:967.875067pt;}
.y29{bottom:975.227067pt;}
.y59{bottom:985.787067pt;}
.y49{bottom:985.867067pt;}
.y3{bottom:989.311067pt;}
.ybc{bottom:994.265147pt;}
.y2{bottom:1010.747067pt;}
.y28{bottom:1013.227067pt;}
.y48{bottom:1013.467067pt;}
.ybb{bottom:1013.707067pt;}
.y1{bottom:1060.667067pt;}
.y24{bottom:1073.637203pt;}
.h8{height:14.858667pt;}
.ha{height:18.377347pt;}
.h9{height:38.458333pt;}
.h4{height:42.632812pt;}
.hb{height:44.343750pt;}
.h6{height:47.020937pt;}
.h5{height:47.464531pt;}
.hc{height:52.183594pt;}
.he{height:52.498125pt;}
.h7{height:56.843750pt;}
.h1{height:57.031250pt;}
.hd{height:62.781250pt;}
.h3{height:66.222969pt;}
.h2{height:73.140156pt;}
.h0{height:1122.666667pt;}
.we{width:32.442667pt;}
.w5{width:32.530667pt;}
.w3{width:32.648000pt;}
.wb{width:33.601333pt;}
.w9{width:33.982667pt;}
.wf{width:34.232000pt;}
.w7{width:34.334667pt;}
.w6{width:34.422667pt;}
.w8{width:34.525333pt;}
.wa{width:34.540000pt;}
.wc{width:34.980000pt;}
.wd{width:35.141333pt;}
.w4{width:35.244000pt;}
.w2{width:615.125333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x8{left:89.247986pt;}
.x1{left:132.240000pt;}
.x2{left:143.520000pt;}
.xc{left:156.000000pt;}
.x3{left:172.803440pt;}
.xd{left:179.833920pt;}
.xb{left:207.840000pt;}
.x7{left:284.963440pt;}
.x4{left:334.635920pt;}
.x6{left:338.002640pt;}
.xa{left:379.191976pt;}
.x9{left:380.488647pt;}
.x5{left:396.800000pt;}
}




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