
    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_4fcdcc390e7a762f5d803d79.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_06837a760e9232adf6d74ea2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_09a727fb1fdefed93eac0a9d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_50b2d889fe7ad9f5031805ef.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_033a377fb0599bd55df139ff.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5843d4ffe953ffb9aa377436.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cbb3f1e27f16ef0abd320d17.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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:ffc;src:url('chunks/assets/font_8cda6d71eae6c9c1d0efb9c8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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:ffd;src:url('chunks/assets/font_acef385a1566d1df04719a53.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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:ffe;src:url('chunks/assets/font_5320bed1c0d924580081e2bd.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_762e65c735b996c976f31cb0.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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:ff10;src:url('chunks/assets/font_2df460a7f299186fd7c23ee0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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;}
.m4{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,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);}
.m2{transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.310800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310800,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.539775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539775,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-1.896000px;}
.ls27{letter-spacing:-1.854000px;}
.ls34{letter-spacing:-1.590000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.176000px;}
.ls35{letter-spacing:-0.852000px;}
.lsb{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.457800px;}
.ls32{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.190200px;}
.ls23{letter-spacing:-0.170400px;}
.ls29{letter-spacing:-0.153600px;}
.ls37{letter-spacing:-0.147600px;}
.lsa{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.114000px;}
.ls24{letter-spacing:-0.109200px;}
.ls7{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.033660px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls22{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls31{letter-spacing:0.188400px;}
.lse{letter-spacing:0.262080px;}
.ls2a{letter-spacing:0.265200px;}
.ls1e{letter-spacing:0.265706px;}
.ls2f{letter-spacing:0.326400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.361753px;}
.ls17{letter-spacing:0.375600px;}
.ls10{letter-spacing:0.463680px;}
.lsd{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.530400px;}
.ls13{letter-spacing:0.531412px;}
.ls12{letter-spacing:0.547200px;}
.lsc{letter-spacing:0.564000px;}
.ls33{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.684000px;}
.ls2b{letter-spacing:0.794880px;}
.ls30{letter-spacing:0.966000px;}
.ls19{letter-spacing:1.026000px;}
.ls1d{letter-spacing:1.062824px;}
.ls1a{letter-spacing:1.074000px;}
.ls25{letter-spacing:1.077426px;}
.ls2e{letter-spacing:6.785280px;}
.ls1c{letter-spacing:10.080000px;}
.ls26{letter-spacing:14.544000px;}
.ls2d{letter-spacing:14.988199px;}
.ls36{letter-spacing:24.803194px;}
.ls1b{letter-spacing:33.917118px;}
.ls2c{letter-spacing:39.905280px;}
.ls11{letter-spacing:68.269601px;}
.ls5{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-66.240000px;}
.wsb{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws1d{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.586000px;}
.ws16{word-spacing:-17.244000px;}
.ws21{word-spacing:-17.127600px;}
.ws8{word-spacing:-17.124000px;}
.ws13{word-spacing:-17.107200px;}
.ws7{word-spacing:-17.090400px;}
.ws10{word-spacing:-17.073600px;}
.ws12{word-spacing:-17.023680px;}
.wse{word-spacing:-16.935600px;}
.ws1f{word-spacing:-16.748400px;}
.ws17{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.593660px;}
.ws9{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.450800px;}
.ws24{word-spacing:-16.412400px;}
.ws1e{word-spacing:-16.406400px;}
.ws1c{word-spacing:-16.389600px;}
.ws15{word-spacing:-16.297800px;}
.ws20{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.840000px;}
.ws23{word-spacing:-15.708000px;}
.ws5{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.384000px;}
.ws14{word-spacing:-15.120000px;}
.ws22{word-spacing:-14.970000px;}
.ws1b{word-spacing:-14.664000px;}
.ws3{word-spacing:-14.650800px;}
.ws18{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._52{margin-left:-9.570634px;}
._5a{margin-left:-8.517317px;}
._55{margin-left:-6.391089px;}
._59{margin-left:-4.717922px;}
._f{margin-left:-3.487200px;}
._3{margin-left:-2.221920px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._b{width:2.226240px;}
._8{width:3.450240px;}
._7{width:4.551120px;}
._9{width:6.262560px;}
._a{width:7.377120px;}
._4a{width:8.724960px;}
._d{width:9.773280px;}
._c{width:11.628000px;}
._21{width:12.816958px;}
._2f{width:14.187362px;}
._43{width:15.248143px;}
._23{width:18.348480px;}
._36{width:19.739343px;}
._2{width:21.306960px;}
._4{width:23.153760px;}
._3f{width:24.521760px;}
._13{width:25.637760px;}
._10{width:26.742240px;}
._11{width:27.754560px;}
._6{width:29.349360px;}
._5{width:30.807360px;}
._e{width:32.234400px;}
._22{width:33.896160px;}
._37{width:35.303957px;}
._2b{width:36.627840px;}
._2c{width:38.318400px;}
._48{width:39.327840px;}
._16{width:40.371840px;}
._30{width:42.144480px;}
._1d{width:43.256260px;}
._19{width:44.427550px;}
._56{width:45.554400px;}
._12{width:46.765440px;}
._2d{width:48.021120px;}
._18{width:49.550556px;}
._3d{width:51.373830px;}
._1b{width:52.766619px;}
._17{width:53.797331px;}
._49{width:54.878400px;}
._14{width:55.903680px;}
._3e{width:57.565440px;}
._24{width:58.688640px;}
._35{width:60.757920px;}
._4f{width:61.778058px;}
._42{width:62.826999px;}
._25{width:65.111649px;}
._39{width:66.846096px;}
._31{width:67.962240px;}
._32{width:69.481182px;}
._1c{width:70.842240px;}
._2a{width:72.432000px;}
._33{width:74.557877px;}
._29{width:76.289760px;}
._15{width:77.433221px;}
._26{width:78.459840px;}
._3a{width:79.493659px;}
._51{width:80.778240px;}
._50{width:81.888480px;}
._58{width:83.280960px;}
._4e{width:85.860000px;}
._34{width:87.555727px;}
._54{width:88.569205px;}
._53{width:91.432920px;}
._40{width:98.895240px;}
._4d{width:100.332467px;}
._47{width:104.400000px;}
._3c{width:107.056800px;}
._5b{width:109.627200px;}
._44{width:110.933280px;}
._38{width:112.043520px;}
._1a{width:113.368320px;}
._45{width:116.100094px;}
._57{width:121.754160px;}
._4c{width:128.864160px;}
._3b{width:132.362050px;}
._4b{width:135.773280px;}
._20{width:152.566560px;}
._1e{width:162.319680px;}
._1f{width:163.562400px;}
._41{width:174.122655px;}
._27{width:189.617520px;}
._28{width:197.647200px;}
._46{width:235.271314px;}
._2e{width:362.368800px;}
._5c{width:846.876000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.yf0{bottom:3.600000px;}
.yf6{bottom:3.780000px;}
.yf4{bottom:3.960000px;}
.yf2{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y3f{bottom:75.240000px;}
.y13{bottom:93.465000px;}
.y3a{bottom:113.940000px;}
.y12{bottom:116.145000px;}
.y10c{bottom:120.240000px;}
.ya2{bottom:125.820000px;}
.y7b{bottom:128.700000px;}
.ye7{bottom:129.960000px;}
.yc5{bottom:132.660000px;}
.y6a{bottom:134.100000px;}
.y39{bottom:138.600000px;}
.y10b{bottom:144.540000px;}
.ya1{bottom:151.740000px;}
.y7a{bottom:154.620000px;}
.yc4{bottom:157.320000px;}
.y69{bottom:158.760000px;}
.y38{bottom:163.260000px;}
.y10a{bottom:165.780000px;}
.ya0{bottom:176.400000px;}
.y79{bottom:179.280000px;}
.yc3{bottom:181.980000px;}
.y68{bottom:183.420000px;}
.y37{bottom:187.920000px;}
.y9f{bottom:201.240000px;}
.ye6{bottom:203.940000px;}
.y78{bottom:204.120000px;}
.yc2{bottom:206.670000px;}
.y67{bottom:208.110000px;}
.y119{bottom:211.530000px;}
.y36{bottom:212.610000px;}
.y9e{bottom:226.830000px;}
.ye5{bottom:228.630000px;}
.y77{bottom:230.070000px;}
.yc1{bottom:231.330000px;}
.y118{bottom:231.510000px;}
.y66{bottom:232.770000px;}
.y35{bottom:237.270000px;}
.y9d{bottom:251.490000px;}
.ye4{bottom:252.930000px;}
.y76{bottom:254.730000px;}
.yc0{bottom:255.990000px;}
.y65{bottom:257.430000px;}
.y34{bottom:261.930000px;}
.y9c{bottom:276.150000px;}
.ye3{bottom:277.590000px;}
.y75{bottom:279.390000px;}
.ybf{bottom:280.650000px;}
.y64{bottom:282.090000px;}
.y33{bottom:286.590000px;}
.y117{bottom:300.990000px;}
.y9b{bottom:301.170000px;}
.ye2{bottom:302.610000px;}
.y74{bottom:305.490000px;}
.y63{bottom:306.750000px;}
.y32{bottom:311.250000px;}
.y116{bottom:325.650000px;}
.y9a{bottom:325.830000px;}
.ye1{bottom:327.270000px;}
.y73{bottom:330.150000px;}
.y62{bottom:331.410000px;}
.y31{bottom:335.910000px;}
.y115{bottom:350.310000px;}
.y99{bottom:350.490000px;}
.ye0{bottom:351.930000px;}
.y72{bottom:354.810000px;}
.y61{bottom:356.070000px;}
.y30{bottom:360.570000px;}
.y114{bottom:374.970000px;}
.y98{bottom:375.150000px;}
.ydf{bottom:376.590000px;}
.y71{bottom:379.470000px;}
.y60{bottom:380.730000px;}
.y2f{bottom:385.230000px;}
.y97{bottom:399.450000px;}
.y113{bottom:399.630000px;}
.yde{bottom:401.250000px;}
.y70{bottom:404.130000px;}
.y5f{bottom:405.390000px;}
.y2e{bottom:409.890000px;}
.y109{bottom:412.410000px;}
.y112{bottom:424.290000px;}
.y96{bottom:424.470000px;}
.ydd{bottom:425.910000px;}
.ybe{bottom:428.790000px;}
.y5e{bottom:430.050000px;}
.y2d{bottom:434.550000px;}
.y108{bottom:437.070000px;}
.y111{bottom:448.995000px;}
.y95{bottom:449.175000px;}
.ydc{bottom:450.615000px;}
.ybd{bottom:453.495000px;}
.y6f{bottom:454.395000px;}
.y5d{bottom:454.755000px;}
.y2c{bottom:459.255000px;}
.y107{bottom:461.775000px;}
.y110{bottom:473.655000px;}
.y94{bottom:473.835000px;}
.ydb{bottom:475.275000px;}
.ybc{bottom:478.155000px;}
.y5c{bottom:479.595000px;}
.y2b{bottom:484.095000px;}
.y106{bottom:486.435000px;}
.y10f{bottom:498.315000px;}
.y93{bottom:498.495000px;}
.yda{bottom:499.935000px;}
.ybb{bottom:502.455000px;}
.y5b{bottom:504.255000px;}
.y2a{bottom:508.395000px;}
.y3c{bottom:508.755000px;}
.y105{bottom:511.095000px;}
.y10e{bottom:522.615000px;}
.y92{bottom:523.155000px;}
.yd9{bottom:524.595000px;}
.yba{bottom:527.115000px;}
.y5a{bottom:528.915000px;}
.y29{bottom:533.055000px;}
.y3b{bottom:533.415000px;}
.y104{bottom:535.755000px;}
.y10d{bottom:543.675000px;}
.y91{bottom:547.815000px;}
.yd8{bottom:549.255000px;}
.yb9{bottom:552.135000px;}
.y6e{bottom:553.215000px;}
.y59{bottom:553.575000px;}
.y28{bottom:556.995000px;}
.y103{bottom:560.415000px;}
.y90{bottom:572.655000px;}
.yd7{bottom:573.915000px;}
.yb8{bottom:576.795000px;}
.y6d{bottom:577.875000px;}
.y58{bottom:578.235000px;}
.y27{bottom:578.955000px;}
.y102{bottom:585.075000px;}
.y8f{bottom:596.955000px;}
.yd6{bottom:598.575000px;}
.yb7{bottom:601.455000px;}
.y57{bottom:602.895000px;}
.y26{bottom:603.255000px;}
.y101{bottom:609.735000px;}
.y8e{bottom:621.975000px;}
.yd5{bottom:623.235000px;}
.y25{bottom:625.035000px;}
.yb6{bottom:626.115000px;}
.y56{bottom:627.555000px;}
.y100{bottom:634.395000px;}
.y8d{bottom:646.635000px;}
.y24{bottom:646.995000px;}
.yd4{bottom:647.895000px;}
.yb5{bottom:650.775000px;}
.y55{bottom:652.215000px;}
.yff{bottom:659.055000px;}
.y23{bottom:668.775000px;}
.y8c{bottom:671.295000px;}
.yd3{bottom:672.555000px;}
.yb4{bottom:675.435000px;}
.y54{bottom:676.905000px;}
.yfe{bottom:683.385000px;}
.y22{bottom:690.585000px;}
.y8b{bottom:695.985000px;}
.yd2{bottom:697.245000px;}
.yb3{bottom:700.125000px;}
.y53{bottom:701.565000px;}
.y21{bottom:712.365000px;}
.y8a{bottom:720.645000px;}
.yd1{bottom:721.545000px;}
.yb2{bottom:724.785000px;}
.y52{bottom:726.225000px;}
.yfd{bottom:732.705000px;}
.y20{bottom:734.325000px;}
.y89{bottom:744.945000px;}
.yd0{bottom:746.385000px;}
.yb1{bottom:749.445000px;}
.y51{bottom:750.885000px;}
.y1f{bottom:756.105000px;}
.yfc{bottom:757.365000px;}
.y88{bottom:769.965000px;}
.ycf{bottom:771.405000px;}
.yb0{bottom:774.105000px;}
.y50{bottom:775.545000px;}
.y1e{bottom:777.885000px;}
.yfb{bottom:782.385000px;}
.y87{bottom:794.625000px;}
.yce{bottom:796.065000px;}
.yaf{bottom:798.765000px;}
.y1d{bottom:799.665000px;}
.y4f{bottom:800.205000px;}
.yfa{bottom:807.045000px;}
.y86{bottom:819.465000px;}
.y1c{bottom:821.445000px;}
.ycd{bottom:821.985000px;}
.yae{bottom:823.425000px;}
.y4e{bottom:824.865000px;}
.yf9{bottom:831.705000px;}
.y1b{bottom:843.405000px;}
.y85{bottom:845.385000px;}
.ycc{bottom:846.645000px;}
.yad{bottom:848.085000px;}
.y4d{bottom:849.525000px;}
.yf8{bottom:856.365000px;}
.y1a{bottom:864.825000px;}
.y84{bottom:870.045000px;}
.ycb{bottom:871.485000px;}
.yac{bottom:872.745000px;}
.y4c{bottom:874.185000px;}
.y18{bottom:880.125000px;}
.yf7{bottom:881.025000px;}
.y11{bottom:887.325000px;}
.y17{bottom:891.291275px;}
.y83{bottom:894.705000px;}
.yf5{bottom:896.685000px;}
.yab{bottom:897.405000px;}
.y4b{bottom:898.845000px;}
.yf3{bottom:916.530000px;}
.y82{bottom:920.670000px;}
.yaa{bottom:922.110000px;}
.yca{bottom:922.290000px;}
.y4a{bottom:923.550000px;}
.yf1{bottom:936.150000px;}
.y81{bottom:945.510000px;}
.ya9{bottom:946.770000px;}
.y49{bottom:948.210000px;}
.yef{bottom:955.950000px;}
.y80{bottom:970.170000px;}
.ya8{bottom:971.430000px;}
.y48{bottom:972.870000px;}
.yee{bottom:985.470000px;}
.y7f{bottom:996.090000px;}
.yc7{bottom:997.170000px;}
.y47{bottom:997.530000px;}
.yed{bottom:1010.130000px;}
.y7e{bottom:1020.750000px;}
.yc6{bottom:1021.830000px;}
.y46{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yec{bottom:1034.790000px;}
.yd{bottom:1035.510000px;}
.ya7{bottom:1045.410000px;}
.y7d{bottom:1045.590000px;}
.y45{bottom:1046.850000px;}
.yeb{bottom:1059.450000px;}
.ya6{bottom:1069.710000px;}
.y44{bottom:1071.150000px;}
.y6c{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yea{bottom:1084.110000px;}
.ya5{bottom:1094.730000px;}
.y43{bottom:1095.810000px;}
.y6b{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.ye9{bottom:1108.770000px;}
.ya4{bottom:1119.570000px;}
.y7c{bottom:1120.470000px;}
.y42{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.ye8{bottom:1133.070000px;}
.ya3{bottom:1144.230000px;}
.yc9{bottom:1145.130000px;}
.y41{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.yc8{bottom:1169.820000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h21{height:18.885000px;}
.h11{height:19.008000px;}
.h22{height:19.065000px;}
.h23{height:19.102500px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1b{height:30.480469px;}
.he{height:41.025000px;}
.h1f{height:46.251562px;}
.h1d{height:50.273438px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1c{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h19{height:65.010937px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h20{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h1e{height:74.004654px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:141.862500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:94.305000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w9{width:137.901000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w8{width:321.180000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x66{left:26.280000px;}
.xb{left:34.185000px;}
.x13{left:46.783500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x17{left:99.883500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x27{left:113.976000px;}
.x39{left:128.196000px;}
.x59{left:135.036000px;}
.x3a{left:141.876000px;}
.x37{left:150.510000px;}
.x1b{left:162.030000px;}
.x5b{left:165.270000px;}
.x4{left:168.885000px;}
.x67{left:171.570000px;}
.x18{left:174.628500px;}
.x6e{left:178.230000px;}
.x63{left:181.665000px;}
.x51{left:184.530000px;}
.x5f{left:189.390000px;}
.x40{left:194.430000px;}
.x53{left:201.810000px;}
.x6a{left:203.070000px;}
.x38{left:205.590000px;}
.x6{left:209.010000px;}
.x23{left:216.210000px;}
.x16{left:220.168500px;}
.x26{left:223.050000px;}
.x22{left:226.470000px;}
.x14{left:229.348500px;}
.x5d{left:230.790000px;}
.x41{left:233.130000px;}
.x44{left:243.030000px;}
.x3c{left:244.470000px;}
.x28{left:253.110000px;}
.x3b{left:255.090000px;}
.x15{left:264.268500px;}
.x6b{left:268.275000px;}
.x24{left:270.975000px;}
.x43{left:275.835000px;}
.x52{left:276.915000px;}
.x5a{left:297.975000px;}
.x3d{left:299.235000px;}
.x3f{left:312.555000px;}
.x19{left:324.965515px;}
.x42{left:334.515000px;}
.x12{left:335.578500px;}
.x5c{left:367.275000px;}
.x5e{left:369.975000px;}
.x3e{left:388.155000px;}
.x25{left:411.555000px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x1f{left:479.265000px;}
.x2f{left:493.665000px;}
.x58{left:500.505000px;}
.x64{left:503.580000px;}
.x30{left:507.345000px;}
.x2b{left:515.805000px;}
.x29{left:518.325000px;}
.x1e{left:527.505000px;}
.x57{left:530.745000px;}
.x48{left:531.825000px;}
.x2c{left:532.905000px;}
.x49{left:538.485000px;}
.x32{left:539.925000px;}
.x2d{left:543.345000px;}
.x4a{left:562.425000px;}
.x4b{left:569.085000px;}
.x33{left:574.845000px;}
.x55{left:576.645000px;}
.x2e{left:578.445000px;}
.x6c{left:609.225000px;}
.x35{left:614.445000px;}
.x4c{left:616.650000px;}
.x69{left:622.050000px;}
.x36{left:629.070000px;}
.x34{left:630.870000px;}
.x65{left:642.210000px;}
.x20{left:643.650000px;}
.x1d{left:655.890000px;}
.x46{left:667.770000px;}
.x4f{left:669.390000px;}
.x60{left:672.990000px;}
.x31{left:676.770000px;}
.x50{left:681.810000px;}
.x68{left:687.570000px;}
.x2a{left:692.250000px;}
.x47{left:694.410000px;}
.x62{left:696.930000px;}
.x6d{left:700.170000px;}
.x21{left:711.150000px;}
.x7{left:722.490000px;}
.x4d{left:723.930000px;}
.x61{left:726.090000px;}
.x1{left:748.950000px;}
.x4e{left:750.030000px;}
.x45{left:760.470000px;}
.x54{left:777.570000px;}
.x56{left:780.270000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-1.685333pt;}
.ls27{letter-spacing:-1.648000pt;}
.ls34{letter-spacing:-1.413333pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls35{letter-spacing:-0.757333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls32{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.169067pt;}
.ls23{letter-spacing:-0.151467pt;}
.ls29{letter-spacing:-0.136533pt;}
.ls37{letter-spacing:-0.131200pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.101333pt;}
.ls24{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.029920pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls22{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls31{letter-spacing:0.167467pt;}
.lse{letter-spacing:0.232960pt;}
.ls2a{letter-spacing:0.235733pt;}
.ls1e{letter-spacing:0.236183pt;}
.ls2f{letter-spacing:0.290133pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.321558pt;}
.ls17{letter-spacing:0.333867pt;}
.ls10{letter-spacing:0.412160pt;}
.lsd{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.471467pt;}
.ls13{letter-spacing:0.472366pt;}
.ls12{letter-spacing:0.486400pt;}
.lsc{letter-spacing:0.501333pt;}
.ls33{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.608000pt;}
.ls2b{letter-spacing:0.706560pt;}
.ls30{letter-spacing:0.858667pt;}
.ls19{letter-spacing:0.912000pt;}
.ls1d{letter-spacing:0.944732pt;}
.ls1a{letter-spacing:0.954667pt;}
.ls25{letter-spacing:0.957712pt;}
.ls2e{letter-spacing:6.031360pt;}
.ls1c{letter-spacing:8.960000pt;}
.ls26{letter-spacing:12.928000pt;}
.ls2d{letter-spacing:13.322843pt;}
.ls36{letter-spacing:22.047283pt;}
.ls1b{letter-spacing:30.148549pt;}
.ls2c{letter-spacing:35.471360pt;}
.ls11{letter-spacing:60.684090pt;}
.ls5{letter-spacing:177.258667pt;}
.ws19{word-spacing:-58.880000pt;}
.wsb{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws1d{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.632000pt;}
.ws16{word-spacing:-15.328000pt;}
.ws21{word-spacing:-15.224533pt;}
.ws8{word-spacing:-15.221333pt;}
.ws13{word-spacing:-15.206400pt;}
.ws7{word-spacing:-15.191467pt;}
.ws10{word-spacing:-15.176533pt;}
.ws12{word-spacing:-15.132160pt;}
.wse{word-spacing:-15.053867pt;}
.ws1f{word-spacing:-14.887467pt;}
.ws17{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.749920pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.622933pt;}
.ws24{word-spacing:-14.588800pt;}
.ws1e{word-spacing:-14.583467pt;}
.ws1c{word-spacing:-14.568533pt;}
.ws15{word-spacing:-14.486933pt;}
.ws20{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.313067pt;}
.ws4{word-spacing:-14.144000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws23{word-spacing:-13.962667pt;}
.ws5{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.674667pt;}
.ws14{word-spacing:-13.440000pt;}
.ws22{word-spacing:-13.306667pt;}
.ws1b{word-spacing:-13.034667pt;}
.ws3{word-spacing:-13.022933pt;}
.ws18{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._52{margin-left:-8.507231pt;}
._5a{margin-left:-7.570948pt;}
._55{margin-left:-5.680968pt;}
._59{margin-left:-4.193709pt;}
._f{margin-left:-3.099733pt;}
._3{margin-left:-1.975040pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._b{width:1.978880pt;}
._8{width:3.066880pt;}
._7{width:4.045440pt;}
._9{width:5.566720pt;}
._a{width:6.557440pt;}
._4a{width:7.755520pt;}
._d{width:8.687360pt;}
._c{width:10.336000pt;}
._21{width:11.392851pt;}
._2f{width:12.610989pt;}
._43{width:13.553905pt;}
._23{width:16.309760pt;}
._36{width:17.546082pt;}
._2{width:18.939520pt;}
._4{width:20.581120pt;}
._3f{width:21.797120pt;}
._13{width:22.789120pt;}
._10{width:23.770880pt;}
._11{width:24.670720pt;}
._6{width:26.088320pt;}
._5{width:27.384320pt;}
._e{width:28.652800pt;}
._22{width:30.129920pt;}
._37{width:31.381295pt;}
._2b{width:32.558080pt;}
._2c{width:34.060800pt;}
._48{width:34.958080pt;}
._16{width:35.886080pt;}
._30{width:37.461760pt;}
._1d{width:38.450008pt;}
._19{width:39.491156pt;}
._56{width:40.492800pt;}
._12{width:41.569280pt;}
._2d{width:42.685440pt;}
._18{width:44.044938pt;}
._3d{width:45.665626pt;}
._1b{width:46.903661pt;}
._17{width:47.819849pt;}
._49{width:48.780800pt;}
._14{width:49.692160pt;}
._3e{width:51.169280pt;}
._24{width:52.167680pt;}
._35{width:54.007040pt;}
._4f{width:54.913829pt;}
._42{width:55.846222pt;}
._25{width:57.877021pt;}
._39{width:59.418752pt;}
._31{width:60.410880pt;}
._32{width:61.761051pt;}
._1c{width:62.970880pt;}
._2a{width:64.384000pt;}
._33{width:66.273669pt;}
._29{width:67.813120pt;}
._15{width:68.829530pt;}
._26{width:69.742080pt;}
._3a{width:70.661030pt;}
._51{width:71.802880pt;}
._50{width:72.789760pt;}
._58{width:74.027520pt;}
._4e{width:76.320000pt;}
._34{width:77.827313pt;}
._54{width:78.728182pt;}
._53{width:81.273707pt;}
._40{width:87.906880pt;}
._4d{width:89.184415pt;}
._47{width:92.800000pt;}
._3c{width:95.161600pt;}
._5b{width:97.446400pt;}
._44{width:98.607360pt;}
._38{width:99.594240pt;}
._1a{width:100.771840pt;}
._45{width:103.200084pt;}
._57{width:108.225920pt;}
._4c{width:114.545920pt;}
._3b{width:117.655156pt;}
._4b{width:120.687360pt;}
._20{width:135.614720pt;}
._1e{width:144.284160pt;}
._1f{width:145.388800pt;}
._41{width:154.775694pt;}
._27{width:168.548907pt;}
._28{width:175.686400pt;}
._46{width:209.130057pt;}
._2e{width:322.105600pt;}
._5c{width:752.778667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.yf0{bottom:3.200000pt;}
.yf6{bottom:3.360000pt;}
.yf4{bottom:3.520000pt;}
.yf2{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y3f{bottom:66.880000pt;}
.y13{bottom:83.080000pt;}
.y3a{bottom:101.280000pt;}
.y12{bottom:103.240000pt;}
.y10c{bottom:106.880000pt;}
.ya2{bottom:111.840000pt;}
.y7b{bottom:114.400000pt;}
.ye7{bottom:115.520000pt;}
.yc5{bottom:117.920000pt;}
.y6a{bottom:119.200000pt;}
.y39{bottom:123.200000pt;}
.y10b{bottom:128.480000pt;}
.ya1{bottom:134.880000pt;}
.y7a{bottom:137.440000pt;}
.yc4{bottom:139.840000pt;}
.y69{bottom:141.120000pt;}
.y38{bottom:145.120000pt;}
.y10a{bottom:147.360000pt;}
.ya0{bottom:156.800000pt;}
.y79{bottom:159.360000pt;}
.yc3{bottom:161.760000pt;}
.y68{bottom:163.040000pt;}
.y37{bottom:167.040000pt;}
.y9f{bottom:178.880000pt;}
.ye6{bottom:181.280000pt;}
.y78{bottom:181.440000pt;}
.yc2{bottom:183.706667pt;}
.y67{bottom:184.986667pt;}
.y119{bottom:188.026667pt;}
.y36{bottom:188.986667pt;}
.y9e{bottom:201.626667pt;}
.ye5{bottom:203.226667pt;}
.y77{bottom:204.506667pt;}
.yc1{bottom:205.626667pt;}
.y118{bottom:205.786667pt;}
.y66{bottom:206.906667pt;}
.y35{bottom:210.906667pt;}
.y9d{bottom:223.546667pt;}
.ye4{bottom:224.826667pt;}
.y76{bottom:226.426667pt;}
.yc0{bottom:227.546667pt;}
.y65{bottom:228.826667pt;}
.y34{bottom:232.826667pt;}
.y9c{bottom:245.466667pt;}
.ye3{bottom:246.746667pt;}
.y75{bottom:248.346667pt;}
.ybf{bottom:249.466667pt;}
.y64{bottom:250.746667pt;}
.y33{bottom:254.746667pt;}
.y117{bottom:267.546667pt;}
.y9b{bottom:267.706667pt;}
.ye2{bottom:268.986667pt;}
.y74{bottom:271.546667pt;}
.y63{bottom:272.666667pt;}
.y32{bottom:276.666667pt;}
.y116{bottom:289.466667pt;}
.y9a{bottom:289.626667pt;}
.ye1{bottom:290.906667pt;}
.y73{bottom:293.466667pt;}
.y62{bottom:294.586667pt;}
.y31{bottom:298.586667pt;}
.y115{bottom:311.386667pt;}
.y99{bottom:311.546667pt;}
.ye0{bottom:312.826667pt;}
.y72{bottom:315.386667pt;}
.y61{bottom:316.506667pt;}
.y30{bottom:320.506667pt;}
.y114{bottom:333.306667pt;}
.y98{bottom:333.466667pt;}
.ydf{bottom:334.746667pt;}
.y71{bottom:337.306667pt;}
.y60{bottom:338.426667pt;}
.y2f{bottom:342.426667pt;}
.y97{bottom:355.066667pt;}
.y113{bottom:355.226667pt;}
.yde{bottom:356.666667pt;}
.y70{bottom:359.226667pt;}
.y5f{bottom:360.346667pt;}
.y2e{bottom:364.346667pt;}
.y109{bottom:366.586667pt;}
.y112{bottom:377.146667pt;}
.y96{bottom:377.306667pt;}
.ydd{bottom:378.586667pt;}
.ybe{bottom:381.146667pt;}
.y5e{bottom:382.266667pt;}
.y2d{bottom:386.266667pt;}
.y108{bottom:388.506667pt;}
.y111{bottom:399.106667pt;}
.y95{bottom:399.266667pt;}
.ydc{bottom:400.546667pt;}
.ybd{bottom:403.106667pt;}
.y6f{bottom:403.906667pt;}
.y5d{bottom:404.226667pt;}
.y2c{bottom:408.226667pt;}
.y107{bottom:410.466667pt;}
.y110{bottom:421.026667pt;}
.y94{bottom:421.186667pt;}
.ydb{bottom:422.466667pt;}
.ybc{bottom:425.026667pt;}
.y5c{bottom:426.306667pt;}
.y2b{bottom:430.306667pt;}
.y106{bottom:432.386667pt;}
.y10f{bottom:442.946667pt;}
.y93{bottom:443.106667pt;}
.yda{bottom:444.386667pt;}
.ybb{bottom:446.626667pt;}
.y5b{bottom:448.226667pt;}
.y2a{bottom:451.906667pt;}
.y3c{bottom:452.226667pt;}
.y105{bottom:454.306667pt;}
.y10e{bottom:464.546667pt;}
.y92{bottom:465.026667pt;}
.yd9{bottom:466.306667pt;}
.yba{bottom:468.546667pt;}
.y5a{bottom:470.146667pt;}
.y29{bottom:473.826667pt;}
.y3b{bottom:474.146667pt;}
.y104{bottom:476.226667pt;}
.y10d{bottom:483.266667pt;}
.y91{bottom:486.946667pt;}
.yd8{bottom:488.226667pt;}
.yb9{bottom:490.786667pt;}
.y6e{bottom:491.746667pt;}
.y59{bottom:492.066667pt;}
.y28{bottom:495.106667pt;}
.y103{bottom:498.146667pt;}
.y90{bottom:509.026667pt;}
.yd7{bottom:510.146667pt;}
.yb8{bottom:512.706667pt;}
.y6d{bottom:513.666667pt;}
.y58{bottom:513.986667pt;}
.y27{bottom:514.626667pt;}
.y102{bottom:520.066667pt;}
.y8f{bottom:530.626667pt;}
.yd6{bottom:532.066667pt;}
.yb7{bottom:534.626667pt;}
.y57{bottom:535.906667pt;}
.y26{bottom:536.226667pt;}
.y101{bottom:541.986667pt;}
.y8e{bottom:552.866667pt;}
.yd5{bottom:553.986667pt;}
.y25{bottom:555.586667pt;}
.yb6{bottom:556.546667pt;}
.y56{bottom:557.826667pt;}
.y100{bottom:563.906667pt;}
.y8d{bottom:574.786667pt;}
.y24{bottom:575.106667pt;}
.yd4{bottom:575.906667pt;}
.yb5{bottom:578.466667pt;}
.y55{bottom:579.746667pt;}
.yff{bottom:585.826667pt;}
.y23{bottom:594.466667pt;}
.y8c{bottom:596.706667pt;}
.yd3{bottom:597.826667pt;}
.yb4{bottom:600.386667pt;}
.y54{bottom:601.693333pt;}
.yfe{bottom:607.453333pt;}
.y22{bottom:613.853333pt;}
.y8b{bottom:618.653333pt;}
.yd2{bottom:619.773333pt;}
.yb3{bottom:622.333333pt;}
.y53{bottom:623.613333pt;}
.y21{bottom:633.213333pt;}
.y8a{bottom:640.573333pt;}
.yd1{bottom:641.373333pt;}
.yb2{bottom:644.253333pt;}
.y52{bottom:645.533333pt;}
.yfd{bottom:651.293333pt;}
.y20{bottom:652.733333pt;}
.y89{bottom:662.173333pt;}
.yd0{bottom:663.453333pt;}
.yb1{bottom:666.173333pt;}
.y51{bottom:667.453333pt;}
.y1f{bottom:672.093333pt;}
.yfc{bottom:673.213333pt;}
.y88{bottom:684.413333pt;}
.ycf{bottom:685.693333pt;}
.yb0{bottom:688.093333pt;}
.y50{bottom:689.373333pt;}
.y1e{bottom:691.453333pt;}
.yfb{bottom:695.453333pt;}
.y87{bottom:706.333333pt;}
.yce{bottom:707.613333pt;}
.yaf{bottom:710.013333pt;}
.y1d{bottom:710.813333pt;}
.y4f{bottom:711.293333pt;}
.yfa{bottom:717.373333pt;}
.y86{bottom:728.413333pt;}
.y1c{bottom:730.173333pt;}
.ycd{bottom:730.653333pt;}
.yae{bottom:731.933333pt;}
.y4e{bottom:733.213333pt;}
.yf9{bottom:739.293333pt;}
.y1b{bottom:749.693333pt;}
.y85{bottom:751.453333pt;}
.ycc{bottom:752.573333pt;}
.yad{bottom:753.853333pt;}
.y4d{bottom:755.133333pt;}
.yf8{bottom:761.213333pt;}
.y1a{bottom:768.733333pt;}
.y84{bottom:773.373333pt;}
.ycb{bottom:774.653333pt;}
.yac{bottom:775.773333pt;}
.y4c{bottom:777.053333pt;}
.y18{bottom:782.333333pt;}
.yf7{bottom:783.133333pt;}
.y11{bottom:788.733333pt;}
.y17{bottom:792.258911pt;}
.y83{bottom:795.293333pt;}
.yf5{bottom:797.053333pt;}
.yab{bottom:797.693333pt;}
.y4b{bottom:798.973333pt;}
.yf3{bottom:814.693333pt;}
.y82{bottom:818.373333pt;}
.yaa{bottom:819.653333pt;}
.yca{bottom:819.813333pt;}
.y4a{bottom:820.933333pt;}
.yf1{bottom:832.133333pt;}
.y81{bottom:840.453333pt;}
.ya9{bottom:841.573333pt;}
.y49{bottom:842.853333pt;}
.yef{bottom:849.733333pt;}
.y80{bottom:862.373333pt;}
.ya8{bottom:863.493333pt;}
.y48{bottom:864.773333pt;}
.yee{bottom:875.973333pt;}
.y7f{bottom:885.413333pt;}
.yc7{bottom:886.373333pt;}
.y47{bottom:886.693333pt;}
.yed{bottom:897.893333pt;}
.y7e{bottom:907.333333pt;}
.yc6{bottom:908.293333pt;}
.y46{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yec{bottom:919.813333pt;}
.yd{bottom:920.453333pt;}
.ya7{bottom:929.253333pt;}
.y7d{bottom:929.413333pt;}
.y45{bottom:930.533333pt;}
.yeb{bottom:941.733333pt;}
.ya6{bottom:950.853333pt;}
.y44{bottom:952.133333pt;}
.y6c{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yea{bottom:963.653333pt;}
.ya5{bottom:973.093333pt;}
.y43{bottom:974.053333pt;}
.y6b{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.ye9{bottom:985.573333pt;}
.ya4{bottom:995.173333pt;}
.y7c{bottom:995.973333pt;}
.y42{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.ye8{bottom:1007.173333pt;}
.ya3{bottom:1017.093333pt;}
.yc9{bottom:1017.893333pt;}
.y41{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.yc8{bottom:1039.840000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h21{height:16.786667pt;}
.h11{height:16.896000pt;}
.h22{height:16.946667pt;}
.h23{height:16.980000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1b{height:27.093750pt;}
.he{height:36.466667pt;}
.h1f{height:41.112500pt;}
.h1d{height:44.687500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1c{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h19{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h20{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:126.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:83.826667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w9{width:122.578667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w8{width:285.493333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x66{left:23.360000pt;}
.xb{left:30.386667pt;}
.x13{left:41.585333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x17{left:88.785333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x27{left:101.312000pt;}
.x39{left:113.952000pt;}
.x59{left:120.032000pt;}
.x3a{left:126.112000pt;}
.x37{left:133.786667pt;}
.x1b{left:144.026667pt;}
.x5b{left:146.906667pt;}
.x4{left:150.120000pt;}
.x67{left:152.506667pt;}
.x18{left:155.225333pt;}
.x6e{left:158.426667pt;}
.x63{left:161.480000pt;}
.x51{left:164.026667pt;}
.x5f{left:168.346667pt;}
.x40{left:172.826667pt;}
.x53{left:179.386667pt;}
.x6a{left:180.506667pt;}
.x38{left:182.746667pt;}
.x6{left:185.786667pt;}
.x23{left:192.186667pt;}
.x16{left:195.705333pt;}
.x26{left:198.266667pt;}
.x22{left:201.306667pt;}
.x14{left:203.865333pt;}
.x5d{left:205.146667pt;}
.x41{left:207.226667pt;}
.x44{left:216.026667pt;}
.x3c{left:217.306667pt;}
.x28{left:224.986667pt;}
.x3b{left:226.746667pt;}
.x15{left:234.905333pt;}
.x6b{left:238.466667pt;}
.x24{left:240.866667pt;}
.x43{left:245.186667pt;}
.x52{left:246.146667pt;}
.x5a{left:264.866667pt;}
.x3d{left:265.986667pt;}
.x3f{left:277.826667pt;}
.x19{left:288.858236pt;}
.x42{left:297.346667pt;}
.x12{left:298.292000pt;}
.x5c{left:326.466667pt;}
.x5e{left:328.866667pt;}
.x3e{left:345.026667pt;}
.x25{left:365.826667pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x1f{left:426.013333pt;}
.x2f{left:438.813333pt;}
.x58{left:444.893333pt;}
.x64{left:447.626667pt;}
.x30{left:450.973333pt;}
.x2b{left:458.493333pt;}
.x29{left:460.733333pt;}
.x1e{left:468.893333pt;}
.x57{left:471.773333pt;}
.x48{left:472.733333pt;}
.x2c{left:473.693333pt;}
.x49{left:478.653333pt;}
.x32{left:479.933333pt;}
.x2d{left:482.973333pt;}
.x4a{left:499.933333pt;}
.x4b{left:505.853333pt;}
.x33{left:510.973333pt;}
.x55{left:512.573333pt;}
.x2e{left:514.173333pt;}
.x6c{left:541.533333pt;}
.x35{left:546.173333pt;}
.x4c{left:548.133333pt;}
.x69{left:552.933333pt;}
.x36{left:559.173333pt;}
.x34{left:560.773333pt;}
.x65{left:570.853333pt;}
.x20{left:572.133333pt;}
.x1d{left:583.013333pt;}
.x46{left:593.573333pt;}
.x4f{left:595.013333pt;}
.x60{left:598.213333pt;}
.x31{left:601.573333pt;}
.x50{left:606.053333pt;}
.x68{left:611.173333pt;}
.x2a{left:615.333333pt;}
.x47{left:617.253333pt;}
.x62{left:619.493333pt;}
.x6d{left:622.373333pt;}
.x21{left:632.133333pt;}
.x7{left:642.213333pt;}
.x4d{left:643.493333pt;}
.x61{left:645.413333pt;}
.x1{left:665.733333pt;}
.x4e{left:666.693333pt;}
.x45{left:675.973333pt;}
.x54{left:691.173333pt;}
.x56{left:693.573333pt;}
}




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