
    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_a4adc3b89de46c77e2931c74.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2e8fdd07b2d6e0d8fa12a2a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222168;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_beaf1f39bbd3f5a6de4f273b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_15d66228b342af43b5f07c76.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0447d3fb7a67dc8111f06013.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0b3e3ef70ce3de2c58529ecf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_aa84268239f1656298afd6dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_c5835e5251f1d4bfc5e2a09c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_46d8fdc70c0104594b844a9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091797;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_bdab98b64a57cc3454501dc8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d2f251f85d7c278577cd0fd7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_8ae5095a90e8d5815315f06c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_d0af208f903a14dddf2f77e7.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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:-96.480000px;}
.vc{vertical-align:-23.760000px;}
.v8{vertical-align:-14.400000px;}
.va{vertical-align:-10.080000px;}
.v3{vertical-align:-7.920000px;}
.vb{vertical-align:-5.040000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v2{vertical-align:7.920000px;}
.v9{vertical-align:10.080000px;}
.v7{vertical-align:14.400000px;}
.v6{vertical-align:23.760000px;}
.ls13{letter-spacing:-22.500000px;}
.lsc{letter-spacing:-21.780000px;}
.lse{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.684000px;}
.ls30{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.341400px;}
.lsd{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.106800px;}
.ls1f{letter-spacing:-0.053280px;}
.ls25{letter-spacing:-0.017280px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls2a{letter-spacing:0.090720px;}
.ls7{letter-spacing:0.172080px;}
.ls19{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.190080px;}
.ls2b{letter-spacing:0.190200px;}
.ls1e{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.341280px;}
.ls14{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.369600px;}
.ls9{letter-spacing:0.378600px;}
.ls23{letter-spacing:0.385200px;}
.ls24{letter-spacing:0.612000px;}
.ls21{letter-spacing:0.666720px;}
.ls2{letter-spacing:0.720000px;}
.ls31{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.880000px;}
.ls5{letter-spacing:14.940000px;}
.ls10{letter-spacing:30.780000px;}
.ls18{letter-spacing:122.021280px;}
.ls16{letter-spacing:164.802720px;}
.ls1a{letter-spacing:182.664000px;}
.ls1d{letter-spacing:212.490720px;}
.ls2d{letter-spacing:360.642720px;}
.ls2c{letter-spacing:362.082720px;}
.ls15{letter-spacing:536.400000px;}
.ls20{letter-spacing:738.000000px;}
.ls28{letter-spacing:757.380000px;}
.ls17{letter-spacing:830.982720px;}
.ls4{letter-spacing:872.580000px;}
.ls12{letter-spacing:964.740000px;}
.ls29{letter-spacing:1218.216000px;}
.ls1{letter-spacing:1491.960000px;}
.ls2e{letter-spacing:1537.422720px;}
.ls26{letter-spacing:1693.740000px;}
.ls2f{letter-spacing:1771.422720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws11{word-spacing:-22.198967px;}
.ws13{word-spacing:-22.140000px;}
.ws0{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.429600px;}
.ws8{word-spacing:-21.420000px;}
.ws10{word-spacing:-21.250200px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.880000px;}
.ws1{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.376000px;}
.wsf{word-spacing:-17.225280px;}
.wse{word-spacing:-16.998480px;}
.wsa{word-spacing:-16.613280px;}
.wsd{word-spacing:-16.506480px;}
.wsc{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.940000px;}
.ws5{word-spacing:0.000000px;}
.ws12{word-spacing:752.160000px;}
.ws14{word-spacing:1240.320000px;}
._6a{margin-left:-2893.761600px;}
._56{margin-left:-2891.862240px;}
._59{margin-left:-2885.103600px;}
._58{margin-left:-2876.770320px;}
._49{margin-left:-2874.840000px;}
._7a{margin-left:-2871.416400px;}
._6b{margin-left:-2862.551760px;}
._57{margin-left:-2859.879120px;}
._12{margin-left:-2856.177600px;}
._77{margin-left:-2834.357280px;}
._79{margin-left:-2828.260320px;}
._68{margin-left:-2824.460400px;}
._5e{margin-left:-2809.871520px;}
._40{margin-left:-2807.468640px;}
._74{margin-left:-2802.348720px;}
._5a{margin-left:-2794.534320px;}
._71{margin-left:-2792.083920px;}
._65{margin-left:-2782.972560px;}
._66{margin-left:-2781.486240px;}
._4a{margin-left:-2745.728160px;}
._3b{margin-left:-2731.833600px;}
._7d{margin-left:-2711.185200px;}
._78{margin-left:-2685.163680px;}
._69{margin-left:-2645.815680px;}
._73{margin-left:-2629.500000px;}
._64{margin-left:-2619.963840px;}
._53{margin-left:-2592.357600px;}
._5f{margin-left:-2569.055760px;}
._67{margin-left:-2533.134000px;}
._75{margin-left:-2232.028560px;}
._c{margin-left:-2170.638960px;}
._4b{margin-left:-2108.371920px;}
._a{margin-left:-2055.874080px;}
._47{margin-left:-2053.642320px;}
._4e{margin-left:-2023.800000px;}
._41{margin-left:-1976.929440px;}
._7b{margin-left:-1967.232720px;}
._3d{margin-left:-1823.496000px;}
._5c{margin-left:-1754.191200px;}
._62{margin-left:-1748.239920px;}
._3f{margin-left:-1713.467520px;}
._3e{margin-left:-1685.167680px;}
._91{margin-left:-1606.620000px;}
._45{margin-left:-1541.635920px;}
._10{margin-left:-1531.200000px;}
._55{margin-left:-1524.696000px;}
._70{margin-left:-1460.288880px;}
._83{margin-left:-1444.142400px;}
._5{margin-left:-1377.046800px;}
._f{margin-left:-1316.031840px;}
._8b{margin-left:-1203.636960px;}
._63{margin-left:-1192.566240px;}
._80{margin-left:-980.139600px;}
._54{margin-left:-940.229520px;}
._8a{margin-left:-926.640000px;}
._3{margin-left:-841.345440px;}
._89{margin-left:-788.782080px;}
._3c{margin-left:-777.051360px;}
._8{margin-left:-749.509440px;}
._6e{margin-left:-741.219840px;}
._4d{margin-left:-730.602000px;}
._60{margin-left:-717.751680px;}
._87{margin-left:-680.237280px;}
._9{margin-left:-669.900000px;}
._90{margin-left:-581.424000px;}
._85{margin-left:-557.874960px;}
._d{margin-left:-536.520000px;}
._17{margin-left:-526.845600px;}
._16{margin-left:-525.052560px;}
._13{margin-left:-512.305920px;}
._7e{margin-left:-483.059280px;}
._1a{margin-left:-460.072080px;}
._19{margin-left:-422.076960px;}
._4{margin-left:-381.900000px;}
._42{margin-left:-359.429040px;}
._93{margin-left:-312.032880px;}
._72{margin-left:-296.757840px;}
._8f{margin-left:-288.184080px;}
._18{margin-left:-279.412560px;}
._8d{margin-left:-277.616880px;}
._1b{margin-left:-267.119760px;}
._8e{margin-left:-245.520000px;}
._14{margin-left:-241.711920px;}
._15{margin-left:-239.709600px;}
._94{margin-left:-235.543680px;}
._95{margin-left:-202.656000px;}
._81{margin-left:-196.560000px;}
._44{margin-left:-154.771920px;}
._43{margin-left:-153.720000px;}
._51{margin-left:-148.866480px;}
._50{margin-left:-147.384000px;}
._96{margin-left:-113.968080px;}
._4f{margin-left:-63.884880px;}
._52{margin-left:-46.440000px;}
._1{margin-left:-22.584720px;}
._5b{margin-left:-21.397680px;}
._7{margin-left:-7.920000px;}
._38{margin-left:-5.835600px;}
._2b{margin-left:-4.341840px;}
._b{margin-left:-2.412960px;}
._0{margin-left:-1.179360px;}
._2{width:1.019280px;}
._26{width:2.165280px;}
._29{width:3.445440px;}
._20{width:5.054400px;}
._1f{width:6.149520px;}
._34{width:7.160400px;}
._6{width:8.446800px;}
._2a{width:10.024560px;}
._37{width:11.470080px;}
._2e{width:12.551760px;}
._3a{width:13.899600px;}
._2d{width:16.133520px;}
._2c{width:17.184960px;}
._27{width:19.290960px;}
._39{width:22.716240px;}
._28{width:24.682320px;}
._1e{width:25.777440px;}
._35{width:28.557360px;}
._36{width:29.989440px;}
._2f{width:31.168800px;}
._30{width:32.432400px;}
._23{width:35.737920px;}
._22{width:37.655280px;}
._21{width:38.750400px;}
._32{width:40.519440px;}
._31{width:41.530320px;}
._24{width:44.815680px;}
._25{width:46.036800px;}
._1d{width:64.172640px;}
._1c{width:65.452800px;}
._33{width:118.609920px;}
._6c{width:136.286640px;}
._7f{width:243.218640px;}
._46{width:514.535280px;}
._6f{width:522.902640px;}
._86{width:558.928080px;}
._92{width:582.822960px;}
._88{width:680.608080px;}
._61{width:696.900000px;}
._97{width:843.240000px;}
._82{width:980.128080px;}
._e{width:994.128720px;}
._5d{width:1191.831360px;}
._84{width:1220.916720px;}
._11{width:1241.557680px;}
._48{width:1388.394240px;}
._8c{width:1548.098160px;}
._4c{width:1683.926160px;}
._7c{width:1710.207360px;}
._6d{width:1806.753600px;}
._76{width:2080.809840px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:62.991941px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y54{bottom:88.416000px;}
.y41{bottom:88.596000px;}
.y53{bottom:92.916000px;}
.y40{bottom:93.816000px;}
.y52{bottom:105.696000px;}
.y3f{bottom:105.876000px;}
.y64{bottom:106.956000px;}
.y51{bottom:110.196000px;}
.y2a{bottom:110.736000px;}
.y50{bottom:122.976000px;}
.y3e{bottom:123.156000px;}
.y4f{bottom:127.476000px;}
.y3d{bottom:128.376000px;}
.y29{bottom:134.856000px;}
.y4e{bottom:140.256000px;}
.y3c{bottom:140.436000px;}
.y5e{bottom:144.756000px;}
.y3b{bottom:145.656000px;}
.y4d{bottom:157.530000px;}
.y3a{bottom:157.710000px;}
.y28{bottom:159.150000px;}
.y4c{bottom:162.030000px;}
.y39{bottom:162.930000px;}
.y4b{bottom:174.630000px;}
.y38{bottom:174.990000px;}
.y4a{bottom:179.130000px;}
.y27{bottom:183.270000px;}
.y49{bottom:191.910000px;}
.y37{bottom:192.450000px;}
.y62{bottom:193.170000px;}
.y5d{bottom:196.410000px;}
.y48{bottom:197.130000px;}
.y36{bottom:197.670000px;}
.y26{bottom:207.390000px;}
.y5c{bottom:210.450000px;}
.y47{bottom:210.630000px;}
.y35{bottom:210.990000px;}
.y25{bottom:231.510000px;}
.y24{bottom:255.630000px;}
.y23{bottom:279.795000px;}
.y22{bottom:303.915000px;}
.y34{bottom:311.475000px;}
.y21{bottom:328.215000px;}
.y20{bottom:352.335000px;}
.y1f{bottom:376.455000px;}
.y1e{bottom:400.575000px;}
.y33{bottom:408.135000px;}
.y1d{bottom:424.695000px;}
.y2f{bottom:448.815000px;}
.y1c{bottom:473.115000px;}
.y2e{bottom:497.235000px;}
.y61{bottom:504.795000px;}
.y1b{bottom:521.355000px;}
.y2d{bottom:545.475000px;}
.y32{bottom:553.035000px;}
.y2c{bottom:569.625000px;}
.y46{bottom:577.185000px;}
.y1a{bottom:593.745000px;}
.y19{bottom:618.045000px;}
.y60{bottom:625.605000px;}
.y18{bottom:642.165000px;}
.y45{bottom:649.725000px;}
.y2b{bottom:666.285000px;}
.y31{bottom:673.845000px;}
.y17{bottom:690.405000px;}
.y5f{bottom:697.965000px;}
.y16{bottom:714.525000px;}
.y15{bottom:738.645000px;}
.y14{bottom:762.765000px;}
.y44{bottom:770.325000px;}
.y13{bottom:787.065000px;}
.y12{bottom:811.185000px;}
.y11{bottom:835.305000px;}
.y10{bottom:859.470000px;}
.y5b{bottom:867.030000px;}
.yf{bottom:883.590000px;}
.ye{bottom:907.710000px;}
.y5a{bottom:908.970000px;}
.yd{bottom:932.010000px;}
.y59{bottom:939.570000px;}
.yc{bottom:956.130000px;}
.yb{bottom:980.250000px;}
.y58{bottom:981.510000px;}
.y43{bottom:987.810000px;}
.ya{bottom:1004.370000px;}
.y57{bottom:1011.930000px;}
.y9{bottom:1028.490000px;}
.y30{bottom:1036.050000px;}
.y8{bottom:1052.610000px;}
.y56{bottom:1053.870000px;}
.y63{bottom:1060.170000px;}
.y7{bottom:1076.730000px;}
.y42{bottom:1084.290000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y55{bottom:1132.740000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.he{height:38.158594px;}
.h17{height:40.550625px;}
.ha{height:52.998047px;}
.h13{height:55.425526px;}
.hf{height:58.651172px;}
.h10{height:58.778125px;}
.h11{height:61.423863px;}
.h18{height:62.327813px;}
.h12{height:74.121328px;}
.h5{height:74.820586px;}
.h8{height:75.519844px;}
.h6{height:78.604805px;}
.hc{height:79.324805px;}
.h2{height:82.676953px;}
.h19{height:82.855911px;}
.h4{height:84.898125px;}
.h3{height:85.103789px;}
.h14{height:86.585445px;}
.hd{height:87.244805px;}
.h15{height:87.695156px;}
.hb{height:87.859687px;}
.h16{height:88.684805px;}
.h9{height:93.004805px;}
.h7{height:102.364805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:80.279987px;}
.x1{left:85.319987px;}
.x9{left:87.299987px;}
.x29{left:90.179987px;}
.x24{left:92.159987px;}
.xb{left:94.679987px;}
.x7{left:96.659987px;}
.x38{left:98.999987px;}
.x3{left:101.555987px;}
.x2f{left:102.635987px;}
.x3d{left:104.255987px;}
.x48{left:113.435987px;}
.x37{left:117.575987px;}
.x46{left:124.775987px;}
.x19{left:128.195987px;}
.x2c{left:129.995987px;}
.x16{left:134.135987px;}
.x12{left:139.355987px;}
.x63{left:140.975987px;}
.x2d{left:142.415987px;}
.x5b{left:150.149987px;}
.x6{left:166.709987px;}
.xc{left:175.169987px;}
.x8{left:176.609987px;}
.x55{left:187.769987px;}
.x22{left:191.369987px;}
.xa{left:198.029987px;}
.x5e{left:199.109987px;}
.x5d{left:211.169987px;}
.x49{left:212.609973px;}
.x68{left:216.929987px;}
.x15{left:219.809987px;}
.x39{left:226.289987px;}
.x56{left:239.609987px;}
.x67{left:264.989987px;}
.x36{left:284.609973px;}
.x2a{left:291.089987px;}
.x31{left:297.029973px;}
.x28{left:301.394987px;}
.x32{left:303.914987px;}
.xf{left:306.434987px;}
.x1b{left:316.694973px;}
.x11{left:317.774987px;}
.x69{left:321.914987px;}
.x1c{left:323.534987px;}
.x54{left:328.754987px;}
.x2e{left:343.514987px;}
.x1a{left:344.594987px;}
.x64{left:348.734987px;}
.x3f{left:349.814973px;}
.x52{left:355.574973px;}
.x45{left:358.634987px;}
.x40{left:363.494987px;}
.x53{left:369.254987px;}
.x10{left:377.174987px;}
.x3c{left:378.434987px;}
.xe{left:380.774987px;}
.xd{left:385.094987px;}
.x4{left:386.354987px;}
.x4a{left:409.034987px;}
.x5c{left:411.374987px;}
.x5f{left:425.054987px;}
.x2{left:430.814987px;}
.x33{left:436.754987px;}
.x2b{left:439.094987px;}
.x5{left:446.474987px;}
.x61{left:454.034987px;}
.x20{left:479.234973px;}
.x21{left:486.074987px;}
.x18{left:508.244987px;}
.x35{left:511.664987px;}
.x30{left:515.264987px;}
.x4f{left:522.284973px;}
.x4b{left:530.564973px;}
.x50{left:535.964987px;}
.x17{left:544.424987px;}
.x26{left:559.184973px;}
.x27{left:566.024987px;}
.x57{left:579.704973px;}
.x60{left:583.664987px;}
.x23{left:586.184987px;}
.x58{left:593.384987px;}
.x14{left:599.504987px;}
.x44{left:648.104987px;}
.x1f{left:653.144987px;}
.x4d{left:654.944973px;}
.x34{left:657.464987px;}
.x62{left:661.604987px;}
.x59{left:663.764987px;}
.x4e{left:668.624987px;}
.x4c{left:675.464987px;}
.x3b{left:681.044987px;}
.x47{left:701.609987px;}
.x25{left:706.469987px;}
.x66{left:708.809987px;}
.x1d{left:714.749987px;}
.x3a{left:719.609987px;}
.x65{left:729.509987px;}
.x51{left:737.429987px;}
.x1e{left:751.649973px;}
.x5a{left:756.329987px;}
.x3e{left:769.289987px;}
.x41{left:772.709987px;}
.x42{left:776.669973px;}
.x43{left:790.349987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.vc{vertical-align:-21.120000pt;}
.v8{vertical-align:-12.800000pt;}
.va{vertical-align:-8.960000pt;}
.v3{vertical-align:-7.040000pt;}
.vb{vertical-align:-4.480000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v2{vertical-align:7.040000pt;}
.v9{vertical-align:8.960000pt;}
.v7{vertical-align:12.800000pt;}
.v6{vertical-align:21.120000pt;}
.ls13{letter-spacing:-20.000000pt;}
.lsc{letter-spacing:-19.360000pt;}
.lse{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.608000pt;}
.ls30{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.303467pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls25{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls2a{letter-spacing:0.080640pt;}
.ls7{letter-spacing:0.152960pt;}
.ls19{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.168960pt;}
.ls2b{letter-spacing:0.169067pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.303360pt;}
.ls14{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.328533pt;}
.ls9{letter-spacing:0.336533pt;}
.ls23{letter-spacing:0.342400pt;}
.ls24{letter-spacing:0.544000pt;}
.ls21{letter-spacing:0.592640pt;}
.ls2{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls11{letter-spacing:2.560000pt;}
.ls5{letter-spacing:13.280000pt;}
.ls10{letter-spacing:27.360000pt;}
.ls18{letter-spacing:108.463360pt;}
.ls16{letter-spacing:146.491307pt;}
.ls1a{letter-spacing:162.368000pt;}
.ls1d{letter-spacing:188.880640pt;}
.ls2d{letter-spacing:320.571307pt;}
.ls2c{letter-spacing:321.851307pt;}
.ls15{letter-spacing:476.800000pt;}
.ls20{letter-spacing:656.000000pt;}
.ls28{letter-spacing:673.226667pt;}
.ls17{letter-spacing:738.651307pt;}
.ls4{letter-spacing:775.626667pt;}
.ls12{letter-spacing:857.546667pt;}
.ls29{letter-spacing:1082.858667pt;}
.ls1{letter-spacing:1326.186667pt;}
.ls2e{letter-spacing:1366.597973pt;}
.ls26{letter-spacing:1505.546667pt;}
.ls2f{letter-spacing:1574.597973pt;}
.ws7{word-spacing:-53.120000pt;}
.ws11{word-spacing:-19.732415pt;}
.ws13{word-spacing:-19.680000pt;}
.ws0{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.048533pt;}
.ws8{word-spacing:-19.040000pt;}
.ws10{word-spacing:-18.889067pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.560000pt;}
.ws1{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.112000pt;}
.wsf{word-spacing:-15.311360pt;}
.wse{word-spacing:-15.109760pt;}
.wsa{word-spacing:-14.767360pt;}
.wsd{word-spacing:-14.672427pt;}
.wsc{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.280000pt;}
.ws5{word-spacing:0.000000pt;}
.ws12{word-spacing:668.586667pt;}
.ws14{word-spacing:1102.506667pt;}
._6a{margin-left:-2572.232533pt;}
._56{margin-left:-2570.544213pt;}
._59{margin-left:-2564.536533pt;}
._58{margin-left:-2557.129173pt;}
._49{margin-left:-2555.413333pt;}
._7a{margin-left:-2552.370133pt;}
._6b{margin-left:-2544.490453pt;}
._57{margin-left:-2542.114773pt;}
._12{margin-left:-2538.824533pt;}
._77{margin-left:-2519.428693pt;}
._79{margin-left:-2514.009173pt;}
._68{margin-left:-2510.631467pt;}
._5e{margin-left:-2497.663573pt;}
._40{margin-left:-2495.527680pt;}
._74{margin-left:-2490.976640pt;}
._5a{margin-left:-2484.030507pt;}
._71{margin-left:-2481.852373pt;}
._65{margin-left:-2473.753387pt;}
._66{margin-left:-2472.432213pt;}
._4a{margin-left:-2440.647253pt;}
._3b{margin-left:-2428.296533pt;}
._7d{margin-left:-2409.942400pt;}
._78{margin-left:-2386.812160pt;}
._69{margin-left:-2351.836160pt;}
._73{margin-left:-2337.333333pt;}
._64{margin-left:-2328.856747pt;}
._53{margin-left:-2304.317867pt;}
._5f{margin-left:-2283.605120pt;}
._67{margin-left:-2251.674667pt;}
._75{margin-left:-1984.025387pt;}
._c{margin-left:-1929.456853pt;}
._4b{margin-left:-1874.108373pt;}
._a{margin-left:-1827.443627pt;}
._47{margin-left:-1825.459840pt;}
._4e{margin-left:-1798.933333pt;}
._41{margin-left:-1757.270613pt;}
._7b{margin-left:-1748.651307pt;}
._3d{margin-left:-1620.885333pt;}
._5c{margin-left:-1559.281067pt;}
._62{margin-left:-1553.991040pt;}
._3f{margin-left:-1523.082240pt;}
._3e{margin-left:-1497.926827pt;}
._91{margin-left:-1428.106667pt;}
._45{margin-left:-1370.343040pt;}
._10{margin-left:-1361.066667pt;}
._55{margin-left:-1355.285333pt;}
._70{margin-left:-1298.034560pt;}
._83{margin-left:-1283.682133pt;}
._5{margin-left:-1224.041600pt;}
._f{margin-left:-1169.806080pt;}
._8b{margin-left:-1069.899520pt;}
._63{margin-left:-1060.058880pt;}
._80{margin-left:-871.235200pt;}
._54{margin-left:-835.759573pt;}
._8a{margin-left:-823.680000pt;}
._3{margin-left:-747.862613pt;}
._89{margin-left:-701.139627pt;}
._3c{margin-left:-690.712320pt;}
._8{margin-left:-666.230613pt;}
._6e{margin-left:-658.862080pt;}
._4d{margin-left:-649.424000pt;}
._60{margin-left:-638.001493pt;}
._87{margin-left:-604.655360pt;}
._9{margin-left:-595.466667pt;}
._90{margin-left:-516.821333pt;}
._85{margin-left:-495.888853pt;}
._d{margin-left:-476.906667pt;}
._17{margin-left:-468.307200pt;}
._16{margin-left:-466.713387pt;}
._13{margin-left:-455.383040pt;}
._7e{margin-left:-429.386027pt;}
._1a{margin-left:-408.952960pt;}
._19{margin-left:-375.179520pt;}
._4{margin-left:-339.466667pt;}
._42{margin-left:-319.492480pt;}
._93{margin-left:-277.362560pt;}
._72{margin-left:-263.784747pt;}
._8f{margin-left:-256.163627pt;}
._18{margin-left:-248.366720pt;}
._8d{margin-left:-246.770560pt;}
._1b{margin-left:-237.439787pt;}
._8e{margin-left:-218.240000pt;}
._14{margin-left:-214.855040pt;}
._15{margin-left:-213.075200pt;}
._94{margin-left:-209.372160pt;}
._95{margin-left:-180.138667pt;}
._81{margin-left:-174.720000pt;}
._44{margin-left:-137.575040pt;}
._43{margin-left:-136.640000pt;}
._51{margin-left:-132.325760pt;}
._50{margin-left:-131.008000pt;}
._96{margin-left:-101.304960pt;}
._4f{margin-left:-56.786560pt;}
._52{margin-left:-41.280000pt;}
._1{margin-left:-20.075307pt;}
._5b{margin-left:-19.020160pt;}
._7{margin-left:-7.040000pt;}
._38{margin-left:-5.187200pt;}
._2b{margin-left:-3.859413pt;}
._b{margin-left:-2.144853pt;}
._0{margin-left:-1.048320pt;}
._2{width:0.906027pt;}
._26{width:1.924693pt;}
._29{width:3.062613pt;}
._20{width:4.492800pt;}
._1f{width:5.466240pt;}
._34{width:6.364800pt;}
._6{width:7.508267pt;}
._2a{width:8.910720pt;}
._37{width:10.195627pt;}
._2e{width:11.157120pt;}
._3a{width:12.355200pt;}
._2d{width:14.340907pt;}
._2c{width:15.275520pt;}
._27{width:17.147520pt;}
._39{width:20.192213pt;}
._28{width:21.939840pt;}
._1e{width:22.913280pt;}
._35{width:25.384320pt;}
._36{width:26.657280pt;}
._2f{width:27.705600pt;}
._30{width:28.828800pt;}
._23{width:31.767040pt;}
._22{width:33.471360pt;}
._21{width:34.444800pt;}
._32{width:36.017280pt;}
._31{width:36.915840pt;}
._24{width:39.836160pt;}
._25{width:40.921600pt;}
._1d{width:57.042347pt;}
._1c{width:58.180267pt;}
._33{width:105.431040pt;}
._6c{width:121.143680pt;}
._7f{width:216.194347pt;}
._46{width:457.364693pt;}
._6f{width:464.802347pt;}
._86{width:496.824960pt;}
._92{width:518.064853pt;}
._88{width:604.984960pt;}
._61{width:619.466667pt;}
._97{width:749.546667pt;}
._82{width:871.224960pt;}
._e{width:883.669973pt;}
._5d{width:1059.405653pt;}
._84{width:1085.259307pt;}
._11{width:1103.606827pt;}
._48{width:1234.128213pt;}
._8c{width:1376.087253pt;}
._4c{width:1496.823253pt;}
._7c{width:1520.184320pt;}
._6d{width:1606.003200pt;}
._76{width:1849.608747pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:55.992837pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y54{bottom:78.592000pt;}
.y41{bottom:78.752000pt;}
.y53{bottom:82.592000pt;}
.y40{bottom:83.392000pt;}
.y52{bottom:93.952000pt;}
.y3f{bottom:94.112000pt;}
.y64{bottom:95.072000pt;}
.y51{bottom:97.952000pt;}
.y2a{bottom:98.432000pt;}
.y50{bottom:109.312000pt;}
.y3e{bottom:109.472000pt;}
.y4f{bottom:113.312000pt;}
.y3d{bottom:114.112000pt;}
.y29{bottom:119.872000pt;}
.y4e{bottom:124.672000pt;}
.y3c{bottom:124.832000pt;}
.y5e{bottom:128.672000pt;}
.y3b{bottom:129.472000pt;}
.y4d{bottom:140.026667pt;}
.y3a{bottom:140.186667pt;}
.y28{bottom:141.466667pt;}
.y4c{bottom:144.026667pt;}
.y39{bottom:144.826667pt;}
.y4b{bottom:155.226667pt;}
.y38{bottom:155.546667pt;}
.y4a{bottom:159.226667pt;}
.y27{bottom:162.906667pt;}
.y49{bottom:170.586667pt;}
.y37{bottom:171.066667pt;}
.y62{bottom:171.706667pt;}
.y5d{bottom:174.586667pt;}
.y48{bottom:175.226667pt;}
.y36{bottom:175.706667pt;}
.y26{bottom:184.346667pt;}
.y5c{bottom:187.066667pt;}
.y47{bottom:187.226667pt;}
.y35{bottom:187.546667pt;}
.y25{bottom:205.786667pt;}
.y24{bottom:227.226667pt;}
.y23{bottom:248.706667pt;}
.y22{bottom:270.146667pt;}
.y34{bottom:276.866667pt;}
.y21{bottom:291.746667pt;}
.y20{bottom:313.186667pt;}
.y1f{bottom:334.626667pt;}
.y1e{bottom:356.066667pt;}
.y33{bottom:362.786667pt;}
.y1d{bottom:377.506667pt;}
.y2f{bottom:398.946667pt;}
.y1c{bottom:420.546667pt;}
.y2e{bottom:441.986667pt;}
.y61{bottom:448.706667pt;}
.y1b{bottom:463.426667pt;}
.y2d{bottom:484.866667pt;}
.y32{bottom:491.586667pt;}
.y2c{bottom:506.333333pt;}
.y46{bottom:513.053333pt;}
.y1a{bottom:527.773333pt;}
.y19{bottom:549.373333pt;}
.y60{bottom:556.093333pt;}
.y18{bottom:570.813333pt;}
.y45{bottom:577.533333pt;}
.y2b{bottom:592.253333pt;}
.y31{bottom:598.973333pt;}
.y17{bottom:613.693333pt;}
.y5f{bottom:620.413333pt;}
.y16{bottom:635.133333pt;}
.y15{bottom:656.573333pt;}
.y14{bottom:678.013333pt;}
.y44{bottom:684.733333pt;}
.y13{bottom:699.613333pt;}
.y12{bottom:721.053333pt;}
.y11{bottom:742.493333pt;}
.y10{bottom:763.973333pt;}
.y5b{bottom:770.693333pt;}
.yf{bottom:785.413333pt;}
.ye{bottom:806.853333pt;}
.y5a{bottom:807.973333pt;}
.yd{bottom:828.453333pt;}
.y59{bottom:835.173333pt;}
.yc{bottom:849.893333pt;}
.yb{bottom:871.333333pt;}
.y58{bottom:872.453333pt;}
.y43{bottom:878.053333pt;}
.ya{bottom:892.773333pt;}
.y57{bottom:899.493333pt;}
.y9{bottom:914.213333pt;}
.y30{bottom:920.933333pt;}
.y8{bottom:935.653333pt;}
.y56{bottom:936.773333pt;}
.y63{bottom:942.373333pt;}
.y7{bottom:957.093333pt;}
.y42{bottom:963.813333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y55{bottom:1006.880000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.he{height:33.918750pt;}
.h17{height:36.045000pt;}
.ha{height:47.109375pt;}
.h13{height:49.267134pt;}
.hf{height:52.134375pt;}
.h10{height:52.247222pt;}
.h11{height:54.598989pt;}
.h18{height:55.402500pt;}
.h12{height:65.885625pt;}
.h5{height:66.507188pt;}
.h8{height:67.128750pt;}
.h6{height:69.870937pt;}
.hc{height:70.510937pt;}
.h2{height:73.490625pt;}
.h19{height:73.649698pt;}
.h4{height:75.465000pt;}
.h3{height:75.647813pt;}
.h14{height:76.964840pt;}
.hd{height:77.550937pt;}
.h15{height:77.951250pt;}
.hb{height:78.097500pt;}
.h16{height:78.830937pt;}
.h9{height:82.670938pt;}
.h7{height:90.990938pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:71.359988pt;}
.x1{left:75.839988pt;}
.x9{left:77.599988pt;}
.x29{left:80.159988pt;}
.x24{left:81.919988pt;}
.xb{left:84.159988pt;}
.x7{left:85.919988pt;}
.x38{left:87.999988pt;}
.x3{left:90.271988pt;}
.x2f{left:91.231988pt;}
.x3d{left:92.671988pt;}
.x48{left:100.831988pt;}
.x37{left:104.511988pt;}
.x46{left:110.911988pt;}
.x19{left:113.951988pt;}
.x2c{left:115.551988pt;}
.x16{left:119.231988pt;}
.x12{left:123.871988pt;}
.x63{left:125.311988pt;}
.x2d{left:126.591988pt;}
.x5b{left:133.466655pt;}
.x6{left:148.186655pt;}
.xc{left:155.706655pt;}
.x8{left:156.986655pt;}
.x55{left:166.906655pt;}
.x22{left:170.106655pt;}
.xa{left:176.026655pt;}
.x5e{left:176.986655pt;}
.x5d{left:187.706655pt;}
.x49{left:188.986643pt;}
.x68{left:192.826655pt;}
.x15{left:195.386655pt;}
.x39{left:201.146655pt;}
.x56{left:212.986655pt;}
.x67{left:235.546655pt;}
.x36{left:252.986643pt;}
.x2a{left:258.746655pt;}
.x31{left:264.026643pt;}
.x28{left:267.906655pt;}
.x32{left:270.146655pt;}
.xf{left:272.386655pt;}
.x1b{left:281.506643pt;}
.x11{left:282.466655pt;}
.x69{left:286.146655pt;}
.x1c{left:287.586655pt;}
.x54{left:292.226655pt;}
.x2e{left:305.346655pt;}
.x1a{left:306.306655pt;}
.x64{left:309.986655pt;}
.x3f{left:310.946643pt;}
.x52{left:316.066643pt;}
.x45{left:318.786655pt;}
.x40{left:323.106655pt;}
.x53{left:328.226655pt;}
.x10{left:335.266655pt;}
.x3c{left:336.386655pt;}
.xe{left:338.466655pt;}
.xd{left:342.306655pt;}
.x4{left:343.426655pt;}
.x4a{left:363.586655pt;}
.x5c{left:365.666655pt;}
.x5f{left:377.826655pt;}
.x2{left:382.946655pt;}
.x33{left:388.226655pt;}
.x2b{left:390.306655pt;}
.x5{left:396.866655pt;}
.x61{left:403.586655pt;}
.x20{left:425.986643pt;}
.x21{left:432.066655pt;}
.x18{left:451.773322pt;}
.x35{left:454.813322pt;}
.x30{left:458.013322pt;}
.x4f{left:464.253310pt;}
.x4b{left:471.613310pt;}
.x50{left:476.413322pt;}
.x17{left:483.933322pt;}
.x26{left:497.053310pt;}
.x27{left:503.133322pt;}
.x57{left:515.293310pt;}
.x60{left:518.813322pt;}
.x23{left:521.053322pt;}
.x58{left:527.453322pt;}
.x14{left:532.893322pt;}
.x44{left:576.093322pt;}
.x1f{left:580.573322pt;}
.x4d{left:582.173310pt;}
.x34{left:584.413322pt;}
.x62{left:588.093322pt;}
.x59{left:590.013322pt;}
.x4e{left:594.333322pt;}
.x4c{left:600.413322pt;}
.x3b{left:605.373322pt;}
.x47{left:623.653322pt;}
.x25{left:627.973322pt;}
.x66{left:630.053322pt;}
.x1d{left:635.333322pt;}
.x3a{left:639.653322pt;}
.x65{left:648.453322pt;}
.x51{left:655.493322pt;}
.x1e{left:668.133310pt;}
.x5a{left:672.293322pt;}
.x3e{left:683.813322pt;}
.x41{left:686.853322pt;}
.x42{left:690.373310pt;}
.x43{left:702.533322pt;}
}




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