
    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_3901c0f1f836e0038463992f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_a851c762d2bfbad8820aea03.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056641;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_a7acfa7a714320f27663a00d.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f3becfa94152788ee1b8cdba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ccada575a8bd12d48292b24c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_4df3a9745ceeb418940b7005.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_601ed64bdd69a6de15d46896.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_e53f5c19b5ac1f7d26451e6d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_dfc34e085d78c240c2901df1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_c8c367823415a755c8515ff3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_259b2f12818bb5fd833454fa.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_34c4a0360568a6eaa6a12e5b.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.m3{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.371800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371800,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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls3a{letter-spacing:-2.466000px;}
.ls3c{letter-spacing:-2.052000px;}
.ls36{letter-spacing:-1.524000px;}
.ls33{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.332000px;}
.ls17{letter-spacing:-1.008000px;}
.ls39{letter-spacing:-0.924000px;}
.ls3e{letter-spacing:-0.870000px;}
.ls1b{letter-spacing:-0.834000px;}
.ls14{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.708000px;}
.ls8{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.457800px;}
.ls21{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.413400px;}
.ls5{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.330000px;}
.ls20{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.285000px;}
.ls30{letter-spacing:-0.233400px;}
.ls3{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.202800px;}
.ls2a{letter-spacing:-0.193200px;}
.ls3d{letter-spacing:-0.152400px;}
.ls29{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.085200px;}
.ls7{letter-spacing:-0.053280px;}
.ls32{letter-spacing:-0.043200px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.011520px;}
.ls2f{letter-spacing:0.075000px;}
.lsb{letter-spacing:0.109200px;}
.ls12{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.187200px;}
.ls1{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.305400px;}
.ls31{letter-spacing:0.308400px;}
.ls6{letter-spacing:0.360000px;}
.ls1e{letter-spacing:1.627200px;}
.ls10{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.906000px;}
.ls15{letter-spacing:5.040000px;}
.ls1d{letter-spacing:5.760000px;}
.lse{letter-spacing:6.480000px;}
.ls35{letter-spacing:7.200000px;}
.ls38{letter-spacing:10.080000px;}
.lsd{letter-spacing:10.944000px;}
.ls1c{letter-spacing:14.400000px;}
.lsc{letter-spacing:15.840000px;}
.ls2d{letter-spacing:21.024000px;}
.ls3b{letter-spacing:30.240000px;}
.ls37{letter-spacing:33.960000px;}
.ls25{letter-spacing:34.841280px;}
.ls2c{letter-spacing:35.561280px;}
.ls26{letter-spacing:36.281280px;}
.ls24{letter-spacing:38.441280px;}
.ls23{letter-spacing:39.881280px;}
.ls27{letter-spacing:43.481280px;}
.ls2e{letter-spacing:51.401280px;}
.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;}
}
.ws21{word-spacing:-66.240000px;}
.ws10{word-spacing:-21.600000px;}
.wsd{word-spacing:-20.466000px;}
.wsb{word-spacing:-16.865400px;}
.ws1c{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.450800px;}
.ws2a{word-spacing:-16.407600px;}
.ws18{word-spacing:-16.254600px;}
.ws19{word-spacing:-16.145400px;}
.ws17{word-spacing:-16.102200px;}
.wsf{word-spacing:-15.948000px;}
.wse{word-spacing:-15.840000px;}
.ws2b{word-spacing:-15.690000px;}
.ws0{word-spacing:-15.624000px;}
.wsc{word-spacing:-15.552000px;}
.ws3{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.228000px;}
.ws24{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.940000px;}
.ws22{word-spacing:-14.881200px;}
.ws1f{word-spacing:-14.647800px;}
.ws23{word-spacing:-14.529600px;}
.ws6{word-spacing:-14.526600px;}
.ws29{word-spacing:-14.508000px;}
.ws20{word-spacing:-14.339400px;}
.ws28{word-spacing:-14.094000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws13{word-spacing:-10.624320px;}
.ws1a{word-spacing:-10.612800px;}
.ws14{word-spacing:-10.527600px;}
.ws1b{word-spacing:-10.410000px;}
.ws1e{word-spacing:-10.327800px;}
.ws15{word-spacing:-10.282800px;}
.ws25{word-spacing:-9.904800px;}
.ws16{word-spacing:-9.778800px;}
.ws5{word-spacing:-9.720000px;}
.ws27{word-spacing:-9.688800px;}
.ws12{word-spacing:-9.604800px;}
.ws26{word-spacing:-9.088800px;}
.ws8{word-spacing:0.000000px;}
._1a{margin-left:-31.416000px;}
._17{margin-left:-30.249840px;}
._18{margin-left:-28.630800px;}
._1b{margin-left:-9.110400px;}
._21{margin-left:-6.745920px;}
._13{margin-left:-5.155680px;}
._12{margin-left:-3.761280px;}
._4{margin-left:-2.744160px;}
._0{margin-left:-1.254240px;}
._3{width:1.374480px;}
._7{width:2.629440px;}
._9{width:4.224480px;}
._8{width:5.258880px;}
._f{width:6.341760px;}
._e{width:7.759920px;}
._6{width:9.142560px;}
._5{width:10.159200px;}
._10{width:11.937120px;}
._16{width:13.578000px;}
._14{width:15.127200px;}
._11{width:18.414720px;}
._d{width:20.224800px;}
._c{width:21.817680px;}
._a{width:23.362320px;}
._1f{width:24.912960px;}
._20{width:25.928640px;}
._15{width:27.318720px;}
._1c{width:28.978320px;}
._1d{width:30.647040px;}
._22{width:32.936640px;}
._1e{width:34.296960px;}
._19{width:35.513280px;}
._23{width:37.110720px;}
._24{width:39.184320px;}
._b{width:41.190720px;}
._2{width:301.140000px;}
._1{width:827.248800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:7.020000px;}
.y42{bottom:44.100000px;}
.y8{bottom:45.180000px;}
.y7{bottom:63.360000px;}
.y7e{bottom:110.556000px;}
.y7d{bottom:113.616000px;}
.y117{bottom:113.796000px;}
.y41{bottom:124.236000px;}
.y7c{bottom:124.596000px;}
.y9f{bottom:127.656000px;}
.y116{bottom:135.576000px;}
.y7b{bottom:138.816000px;}
.ye5{bottom:139.716000px;}
.y7a{bottom:141.876000px;}
.y40{bottom:146.016000px;}
.y79{bottom:152.850000px;}
.yde{bottom:153.750000px;}
.ybf{bottom:155.910000px;}
.y115{bottom:157.350000px;}
.y78{bottom:166.890000px;}
.y3f{bottom:167.790000px;}
.y77{bottom:169.950000px;}
.ye4{bottom:179.130000px;}
.y76{bottom:180.930000px;}
.y75{bottom:183.990000px;}
.y112{bottom:187.950000px;}
.y3e{bottom:189.570000px;}
.ydd{bottom:194.790000px;}
.y74{bottom:196.050000px;}
.ybe{bottom:196.590000px;}
.ye3{bottom:201.090000px;}
.y111{bottom:209.910000px;}
.y3d{bottom:211.530000px;}
.ydc{bottom:216.570000px;}
.ybd{bottom:218.370000px;}
.y9d{bottom:222.870000px;}
.y9e{bottom:228.810000px;}
.y110{bottom:231.690000px;}
.y3c{bottom:233.310000px;}
.ydb{bottom:238.530000px;}
.y73{bottom:239.610000px;}
.ybc{bottom:240.150000px;}
.y9c{bottom:244.650000px;}
.y10f{bottom:253.470000px;}
.y3b{bottom:255.090000px;}
.yda{bottom:260.310000px;}
.y71{bottom:261.390000px;}
.ybb{bottom:261.930000px;}
.y9b{bottom:266.430000px;}
.y72{bottom:267.330000px;}
.y10e{bottom:275.250000px;}
.y3a{bottom:276.870000px;}
.yd9{bottom:282.090000px;}
.y70{bottom:283.170000px;}
.yba{bottom:283.710000px;}
.y9a{bottom:288.210000px;}
.y10b{bottom:297.030000px;}
.y39{bottom:298.650000px;}
.y10d{bottom:301.530000px;}
.y10c{bottom:302.970000px;}
.yd8{bottom:303.870000px;}
.y6f{bottom:304.950000px;}
.yb8{bottom:305.670000px;}
.y99{bottom:310.170000px;}
.yb9{bottom:311.610000px;}
.ye2{bottom:314.670000px;}
.ye1{bottom:316.110000px;}
.y10a{bottom:318.990000px;}
.y38{bottom:320.610000px;}
.yd7{bottom:325.650000px;}
.y6e{bottom:326.910000px;}
.yb7{bottom:327.450000px;}
.y98{bottom:331.950000px;}
.y109{bottom:340.815000px;}
.y37{bottom:342.435000px;}
.yd6{bottom:347.655000px;}
.y6d{bottom:348.735000px;}
.yb6{bottom:349.275000px;}
.y97{bottom:353.775000px;}
.y36{bottom:360.435000px;}
.y108{bottom:362.595000px;}
.yd5{bottom:369.435000px;}
.y6c{bottom:370.515000px;}
.yb5{bottom:371.055000px;}
.y35{bottom:374.295000px;}
.y96{bottom:375.555000px;}
.y107{bottom:384.375000px;}
.y34{bottom:388.695000px;}
.yd4{bottom:391.215000px;}
.y6b{bottom:392.295000px;}
.yb4{bottom:393.015000px;}
.y95{bottom:397.515000px;}
.y33{bottom:405.975000px;}
.y106{bottom:406.335000px;}
.yd3{bottom:412.995000px;}
.y6a{bottom:414.075000px;}
.yb3{bottom:414.795000px;}
.y94{bottom:419.295000px;}
.y32{bottom:423.255000px;}
.y105{bottom:428.115000px;}
.yd2{bottom:434.955000px;}
.y69{bottom:436.035000px;}
.yb2{bottom:436.575000px;}
.y31{bottom:440.535000px;}
.y93{bottom:441.075000px;}
.y104{bottom:449.895000px;}
.yd1{bottom:456.735000px;}
.y30{bottom:457.635000px;}
.y68{bottom:457.815000px;}
.yb1{bottom:458.355000px;}
.y90{bottom:462.855000px;}
.y92{bottom:467.355000px;}
.y91{bottom:468.795000px;}
.y103{bottom:471.675000px;}
.y2f{bottom:474.915000px;}
.yd0{bottom:478.515000px;}
.y65{bottom:479.595000px;}
.yaf{bottom:480.135000px;}
.y67{bottom:484.095000px;}
.y8f{bottom:484.635000px;}
.y66{bottom:485.535000px;}
.yb0{bottom:486.075000px;}
.y2e{bottom:492.195000px;}
.y102{bottom:493.455000px;}
.ycf{bottom:500.295000px;}
.y64{bottom:501.375000px;}
.yae{bottom:502.095000px;}
.y8e{bottom:506.595000px;}
.y2d{bottom:509.475000px;}
.y114{bottom:511.095000px;}
.y113{bottom:512.535000px;}
.y101{bottom:515.415000px;}
.yce{bottom:522.075000px;}
.y63{bottom:523.335000px;}
.yad{bottom:523.875000px;}
.y2c{bottom:526.755000px;}
.y8d{bottom:528.375000px;}
.y100{bottom:537.195000px;}
.y2b{bottom:544.035000px;}
.y60{bottom:545.115000px;}
.yac{bottom:545.655000px;}
.y62{bottom:549.615000px;}
.y8c{bottom:550.155000px;}
.y61{bottom:551.055000px;}
.yff{bottom:558.975000px;}
.y2a{bottom:561.135000px;}
.ycd{bottom:565.815000px;}
.y5f{bottom:566.895000px;}
.yab{bottom:567.435000px;}
.y8b{bottom:571.935000px;}
.y29{bottom:578.415000px;}
.yfe{bottom:580.755000px;}
.y5e{bottom:588.675000px;}
.yaa{bottom:589.395000px;}
.y8a{bottom:593.895000px;}
.y28{bottom:595.695000px;}
.ye0{bottom:598.395000px;}
.ydf{bottom:599.835000px;}
.yfd{bottom:602.715000px;}
.y5d{bottom:610.485000px;}
.ya9{bottom:611.205000px;}
.y27{bottom:613.005000px;}
.y89{bottom:615.705000px;}
.yfc{bottom:624.525000px;}
.y26{bottom:630.285000px;}
.y5c{bottom:632.445000px;}
.ya8{bottom:632.985000px;}
.ycc{bottom:634.785000px;}
.y88{bottom:637.485000px;}
.yfb{bottom:646.305000px;}
.y25{bottom:647.565000px;}
.y5b{bottom:654.225000px;}
.ya7{bottom:654.765000px;}
.ycb{bottom:658.185000px;}
.y87{bottom:659.265000px;}
.y24{bottom:664.665000px;}
.yfa{bottom:672.585000px;}
.y5a{bottom:676.185000px;}
.ya6{bottom:676.545000px;}
.yca{bottom:679.965000px;}
.y86{bottom:681.045000px;}
.y23{bottom:681.945000px;}
.yf9{bottom:694.365000px;}
.ya5{bottom:698.505000px;}
.y22{bottom:699.225000px;}
.y59{bottom:699.585000px;}
.yc9{bottom:701.925000px;}
.y85{bottom:703.005000px;}
.yf8{bottom:716.325000px;}
.y21{bottom:716.505000px;}
.ya4{bottom:720.285000px;}
.y58{bottom:721.365000px;}
.yc7{bottom:723.885000px;}
.y84{bottom:724.785000px;}
.yc8{bottom:729.825000px;}
.y20{bottom:733.785000px;}
.yf7{bottom:738.105000px;}
.ya2{bottom:742.065000px;}
.y57{bottom:744.945000px;}
.yc6{bottom:745.845000px;}
.y83{bottom:746.565000px;}
.ya3{bottom:748.005000px;}
.y1f{bottom:751.065000px;}
.yf6{bottom:759.885000px;}
.ya1{bottom:763.845000px;}
.yc5{bottom:767.805000px;}
.y1e{bottom:768.165000px;}
.y56{bottom:768.345000px;}
.yf5{bottom:781.665000px;}
.y1d{bottom:785.445000px;}
.ya0{bottom:785.625000px;}
.yc4{bottom:789.765000px;}
.y55{bottom:790.125000px;}
.y1c{bottom:802.725000px;}
.yf4{bottom:803.625000px;}
.yc3{bottom:811.725000px;}
.y54{bottom:812.085000px;}
.y1b{bottom:820.005000px;}
.yf3{bottom:825.405000px;}
.yc2{bottom:833.685000px;}
.y53{bottom:833.865000px;}
.y1a{bottom:837.285000px;}
.yf2{bottom:847.185000px;}
.y19{bottom:854.385000px;}
.y52{bottom:855.645000px;}
.yf1{bottom:869.145000px;}
.y18{bottom:871.710000px;}
.y51{bottom:877.470000px;}
.yc1{bottom:881.970000px;}
.yc0{bottom:883.410000px;}
.y17{bottom:888.990000px;}
.yf0{bottom:892.590000px;}
.y50{bottom:899.430000px;}
.y16{bottom:906.270000px;}
.yef{bottom:914.370000px;}
.y4f{bottom:921.210000px;}
.y15{bottom:923.550000px;}
.y82{bottom:925.710000px;}
.y81{bottom:927.150000px;}
.yee{bottom:937.950000px;}
.y14{bottom:940.830000px;}
.y4e{bottom:942.990000px;}
.y13{bottom:957.930000px;}
.yed{bottom:959.730000px;}
.y4d{bottom:964.770000px;}
.y12{bottom:975.210000px;}
.yec{bottom:981.690000px;}
.y4c{bottom:986.550000px;}
.y11{bottom:995.550000px;}
.yeb{bottom:1005.090000px;}
.y4b{bottom:1008.510000px;}
.y80{bottom:1013.010000px;}
.y7f{bottom:1014.450000px;}
.y10{bottom:1015.530000px;}
.yea{bottom:1026.870000px;}
.y48{bottom:1030.290000px;}
.yf{bottom:1034.610000px;}
.y4a{bottom:1034.790000px;}
.y49{bottom:1036.230000px;}
.ye9{bottom:1048.650000px;}
.y47{bottom:1052.070000px;}
.ye{bottom:1057.290000px;}
.ye8{bottom:1070.610000px;}
.yd{bottom:1071.870000px;}
.y46{bottom:1073.850000px;}
.yc{bottom:1089.150000px;}
.ye7{bottom:1094.010000px;}
.y45{bottom:1095.810000px;}
.yb{bottom:1106.430000px;}
.ye6{bottom:1115.970000px;}
.y44{bottom:1117.590000px;}
.ya{bottom:1123.530000px;}
.y43{bottom:1139.400000px;}
.y9{bottom:1140.840000px;}
.y6{bottom:1162.080000px;}
.y4{bottom:1177.740000px;}
.y3{bottom:1208.520000px;}
.y2{bottom:1227.960000px;}
.y1{bottom:1247.220000px;}
.h11{height:25.603594px;}
.h3{height:27.180000px;}
.h10{height:29.158594px;}
.he{height:33.683203px;}
.h8{height:34.036523px;}
.h5{height:39.760312px;}
.h12{height:40.843828px;}
.hb{height:41.726953px;}
.h6{height:42.164648px;}
.h7{height:46.251562px;}
.ha{height:46.736719px;}
.hc{height:48.027656px;}
.h14{height:48.224531px;}
.hd{height:49.255313px;}
.h15{height:53.755312px;}
.hf{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:56.084062px;}
.h4{height:60.960938px;}
.h13{height:64.251563px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:72.000000px;}
.w4{width:616.605000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.035987px;}
.x16{left:112.175987px;}
.x5{left:115.235987px;}
.x26{left:116.315987px;}
.x8{left:131.795987px;}
.x2a{left:133.415987px;}
.x22{left:135.035987px;}
.x40{left:140.075987px;}
.x1b{left:156.089973px;}
.xb{left:161.129987px;}
.xe{left:171.929987px;}
.x3{left:180.030000px;}
.x10{left:184.349987px;}
.xf{left:193.349987px;}
.x37{left:198.929987px;}
.xc{left:218.009973px;}
.x17{left:220.349973px;}
.xd{left:223.229987px;}
.x18{left:225.569987px;}
.x2b{left:232.409987px;}
.x3c{left:255.089973px;}
.x3d{left:265.529987px;}
.x6{left:270.209987px;}
.x23{left:276.509973px;}
.x2c{left:281.054987px;}
.x24{left:286.994987px;}
.x20{left:292.934973px;}
.x11{left:296.894973px;}
.x12{left:302.114987px;}
.x21{left:303.374987px;}
.x15{left:324.074987px;}
.x2d{left:326.054987px;}
.x29{left:333.794987px;}
.x7{left:337.754987px;}
.x2e{left:338.834987px;}
.x1e{left:373.934973px;}
.x1f{left:379.154987px;}
.xa{left:418.574987px;}
.x9{left:420.194987px;}
.x4{left:446.474987px;}
.x13{left:452.234973px;}
.x2f{left:453.494987px;}
.x14{left:457.454987px;}
.x30{left:466.274987px;}
.x35{left:489.164973px;}
.x36{left:499.604987px;}
.x31{left:511.304987px;}
.x32{left:524.084987px;}
.x25{left:571.424973px;}
.x33{left:573.044987px;}
.x1c{left:577.184973px;}
.x1d{left:582.404987px;}
.x34{left:585.824987px;}
.x3e{left:607.244973px;}
.x3f{left:617.684987px;}
.x38{left:632.444973px;}
.x39{left:642.884987px;}
.x19{left:654.044973px;}
.x27{left:658.049973px;}
.x1a{left:659.309987px;}
.x28{left:668.489987px;}
.x3a{left:703.589973px;}
.x3b{left:714.029987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls3a{letter-spacing:-2.192000pt;}
.ls3c{letter-spacing:-1.824000pt;}
.ls36{letter-spacing:-1.354667pt;}
.ls33{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.184000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls39{letter-spacing:-0.821333pt;}
.ls3e{letter-spacing:-0.773333pt;}
.ls1b{letter-spacing:-0.741333pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.629333pt;}
.ls8{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.406933pt;}
.ls21{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.367467pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls20{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.253333pt;}
.ls30{letter-spacing:-0.207467pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.180267pt;}
.ls2a{letter-spacing:-0.171733pt;}
.ls3d{letter-spacing:-0.135467pt;}
.ls29{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.075733pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls32{letter-spacing:-0.038400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010240pt;}
.ls2f{letter-spacing:0.066667pt;}
.lsb{letter-spacing:0.097067pt;}
.ls12{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.166400pt;}
.ls1{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.271467pt;}
.ls31{letter-spacing:0.274133pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:1.446400pt;}
.ls10{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.472000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.120000pt;}
.lse{letter-spacing:5.760000pt;}
.ls35{letter-spacing:6.400000pt;}
.ls38{letter-spacing:8.960000pt;}
.lsd{letter-spacing:9.728000pt;}
.ls1c{letter-spacing:12.800000pt;}
.lsc{letter-spacing:14.080000pt;}
.ls2d{letter-spacing:18.688000pt;}
.ls3b{letter-spacing:26.880000pt;}
.ls37{letter-spacing:30.186667pt;}
.ls25{letter-spacing:30.970027pt;}
.ls2c{letter-spacing:31.610027pt;}
.ls26{letter-spacing:32.250027pt;}
.ls24{letter-spacing:34.170027pt;}
.ls23{letter-spacing:35.450027pt;}
.ls27{letter-spacing:38.650027pt;}
.ls2e{letter-spacing:45.690027pt;}
.ws21{word-spacing:-58.880000pt;}
.ws10{word-spacing:-19.200000pt;}
.wsd{word-spacing:-18.192000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws1c{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.622933pt;}
.ws2a{word-spacing:-14.584533pt;}
.ws18{word-spacing:-14.448533pt;}
.ws19{word-spacing:-14.351467pt;}
.ws17{word-spacing:-14.313067pt;}
.wsf{word-spacing:-14.176000pt;}
.wse{word-spacing:-14.080000pt;}
.ws2b{word-spacing:-13.946667pt;}
.ws0{word-spacing:-13.888000pt;}
.wsc{word-spacing:-13.824000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.536000pt;}
.ws24{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws22{word-spacing:-13.227733pt;}
.ws1f{word-spacing:-13.020267pt;}
.ws23{word-spacing:-12.915200pt;}
.ws6{word-spacing:-12.912533pt;}
.ws29{word-spacing:-12.896000pt;}
.ws20{word-spacing:-12.746133pt;}
.ws28{word-spacing:-12.528000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.443840pt;}
.ws1a{word-spacing:-9.433600pt;}
.ws14{word-spacing:-9.357867pt;}
.ws1b{word-spacing:-9.253333pt;}
.ws1e{word-spacing:-9.180267pt;}
.ws15{word-spacing:-9.140267pt;}
.ws25{word-spacing:-8.804267pt;}
.ws16{word-spacing:-8.692267pt;}
.ws5{word-spacing:-8.640000pt;}
.ws27{word-spacing:-8.612267pt;}
.ws12{word-spacing:-8.537600pt;}
.ws26{word-spacing:-8.078933pt;}
.ws8{word-spacing:0.000000pt;}
._1a{margin-left:-27.925333pt;}
._17{margin-left:-26.888747pt;}
._18{margin-left:-25.449600pt;}
._1b{margin-left:-8.098133pt;}
._21{margin-left:-5.996373pt;}
._13{margin-left:-4.582827pt;}
._12{margin-left:-3.343360pt;}
._4{margin-left:-2.439253pt;}
._0{margin-left:-1.114880pt;}
._3{width:1.221760pt;}
._7{width:2.337280pt;}
._9{width:3.755093pt;}
._8{width:4.674560pt;}
._f{width:5.637120pt;}
._e{width:6.897707pt;}
._6{width:8.126720pt;}
._5{width:9.030400pt;}
._10{width:10.610773pt;}
._16{width:12.069333pt;}
._14{width:13.446400pt;}
._11{width:16.368640pt;}
._d{width:17.977600pt;}
._c{width:19.393493pt;}
._a{width:20.766507pt;}
._1f{width:22.144853pt;}
._20{width:23.047680pt;}
._15{width:24.283307pt;}
._1c{width:25.758507pt;}
._1d{width:27.241813pt;}
._22{width:29.277013pt;}
._1e{width:30.486187pt;}
._19{width:31.567360pt;}
._23{width:32.987307pt;}
._24{width:34.830507pt;}
._b{width:36.613973pt;}
._2{width:267.680000pt;}
._1{width:735.332267pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.240000pt;}
.y42{bottom:39.200000pt;}
.y8{bottom:40.160000pt;}
.y7{bottom:56.320000pt;}
.y7e{bottom:98.272000pt;}
.y7d{bottom:100.992000pt;}
.y117{bottom:101.152000pt;}
.y41{bottom:110.432000pt;}
.y7c{bottom:110.752000pt;}
.y9f{bottom:113.472000pt;}
.y116{bottom:120.512000pt;}
.y7b{bottom:123.392000pt;}
.ye5{bottom:124.192000pt;}
.y7a{bottom:126.112000pt;}
.y40{bottom:129.792000pt;}
.y79{bottom:135.866667pt;}
.yde{bottom:136.666667pt;}
.ybf{bottom:138.586667pt;}
.y115{bottom:139.866667pt;}
.y78{bottom:148.346667pt;}
.y3f{bottom:149.146667pt;}
.y77{bottom:151.066667pt;}
.ye4{bottom:159.226667pt;}
.y76{bottom:160.826667pt;}
.y75{bottom:163.546667pt;}
.y112{bottom:167.066667pt;}
.y3e{bottom:168.506667pt;}
.ydd{bottom:173.146667pt;}
.y74{bottom:174.266667pt;}
.ybe{bottom:174.746667pt;}
.ye3{bottom:178.746667pt;}
.y111{bottom:186.586667pt;}
.y3d{bottom:188.026667pt;}
.ydc{bottom:192.506667pt;}
.ybd{bottom:194.106667pt;}
.y9d{bottom:198.106667pt;}
.y9e{bottom:203.386667pt;}
.y110{bottom:205.946667pt;}
.y3c{bottom:207.386667pt;}
.ydb{bottom:212.026667pt;}
.y73{bottom:212.986667pt;}
.ybc{bottom:213.466667pt;}
.y9c{bottom:217.466667pt;}
.y10f{bottom:225.306667pt;}
.y3b{bottom:226.746667pt;}
.yda{bottom:231.386667pt;}
.y71{bottom:232.346667pt;}
.ybb{bottom:232.826667pt;}
.y9b{bottom:236.826667pt;}
.y72{bottom:237.626667pt;}
.y10e{bottom:244.666667pt;}
.y3a{bottom:246.106667pt;}
.yd9{bottom:250.746667pt;}
.y70{bottom:251.706667pt;}
.yba{bottom:252.186667pt;}
.y9a{bottom:256.186667pt;}
.y10b{bottom:264.026667pt;}
.y39{bottom:265.466667pt;}
.y10d{bottom:268.026667pt;}
.y10c{bottom:269.306667pt;}
.yd8{bottom:270.106667pt;}
.y6f{bottom:271.066667pt;}
.yb8{bottom:271.706667pt;}
.y99{bottom:275.706667pt;}
.yb9{bottom:276.986667pt;}
.ye2{bottom:279.706667pt;}
.ye1{bottom:280.986667pt;}
.y10a{bottom:283.546667pt;}
.y38{bottom:284.986667pt;}
.yd7{bottom:289.466667pt;}
.y6e{bottom:290.586667pt;}
.yb7{bottom:291.066667pt;}
.y98{bottom:295.066667pt;}
.y109{bottom:302.946667pt;}
.y37{bottom:304.386667pt;}
.yd6{bottom:309.026667pt;}
.y6d{bottom:309.986667pt;}
.yb6{bottom:310.466667pt;}
.y97{bottom:314.466667pt;}
.y36{bottom:320.386667pt;}
.y108{bottom:322.306667pt;}
.yd5{bottom:328.386667pt;}
.y6c{bottom:329.346667pt;}
.yb5{bottom:329.826667pt;}
.y35{bottom:332.706667pt;}
.y96{bottom:333.826667pt;}
.y107{bottom:341.666667pt;}
.y34{bottom:345.506667pt;}
.yd4{bottom:347.746667pt;}
.y6b{bottom:348.706667pt;}
.yb4{bottom:349.346667pt;}
.y95{bottom:353.346667pt;}
.y33{bottom:360.866667pt;}
.y106{bottom:361.186667pt;}
.yd3{bottom:367.106667pt;}
.y6a{bottom:368.066667pt;}
.yb3{bottom:368.706667pt;}
.y94{bottom:372.706667pt;}
.y32{bottom:376.226667pt;}
.y105{bottom:380.546667pt;}
.yd2{bottom:386.626667pt;}
.y69{bottom:387.586667pt;}
.yb2{bottom:388.066667pt;}
.y31{bottom:391.586667pt;}
.y93{bottom:392.066667pt;}
.y104{bottom:399.906667pt;}
.yd1{bottom:405.986667pt;}
.y30{bottom:406.786667pt;}
.y68{bottom:406.946667pt;}
.yb1{bottom:407.426667pt;}
.y90{bottom:411.426667pt;}
.y92{bottom:415.426667pt;}
.y91{bottom:416.706667pt;}
.y103{bottom:419.266667pt;}
.y2f{bottom:422.146667pt;}
.yd0{bottom:425.346667pt;}
.y65{bottom:426.306667pt;}
.yaf{bottom:426.786667pt;}
.y67{bottom:430.306667pt;}
.y8f{bottom:430.786667pt;}
.y66{bottom:431.586667pt;}
.yb0{bottom:432.066667pt;}
.y2e{bottom:437.506667pt;}
.y102{bottom:438.626667pt;}
.ycf{bottom:444.706667pt;}
.y64{bottom:445.666667pt;}
.yae{bottom:446.306667pt;}
.y8e{bottom:450.306667pt;}
.y2d{bottom:452.866667pt;}
.y114{bottom:454.306667pt;}
.y113{bottom:455.586667pt;}
.y101{bottom:458.146667pt;}
.yce{bottom:464.066667pt;}
.y63{bottom:465.186667pt;}
.yad{bottom:465.666667pt;}
.y2c{bottom:468.226667pt;}
.y8d{bottom:469.666667pt;}
.y100{bottom:477.506667pt;}
.y2b{bottom:483.586667pt;}
.y60{bottom:484.546667pt;}
.yac{bottom:485.026667pt;}
.y62{bottom:488.546667pt;}
.y8c{bottom:489.026667pt;}
.y61{bottom:489.826667pt;}
.yff{bottom:496.866667pt;}
.y2a{bottom:498.786667pt;}
.ycd{bottom:502.946667pt;}
.y5f{bottom:503.906667pt;}
.yab{bottom:504.386667pt;}
.y8b{bottom:508.386667pt;}
.y29{bottom:514.146667pt;}
.yfe{bottom:516.226667pt;}
.y5e{bottom:523.266667pt;}
.yaa{bottom:523.906667pt;}
.y8a{bottom:527.906667pt;}
.y28{bottom:529.506667pt;}
.ye0{bottom:531.906667pt;}
.ydf{bottom:533.186667pt;}
.yfd{bottom:535.746667pt;}
.y5d{bottom:542.653333pt;}
.ya9{bottom:543.293333pt;}
.y27{bottom:544.893333pt;}
.y89{bottom:547.293333pt;}
.yfc{bottom:555.133333pt;}
.y26{bottom:560.253333pt;}
.y5c{bottom:562.173333pt;}
.ya8{bottom:562.653333pt;}
.ycc{bottom:564.253333pt;}
.y88{bottom:566.653333pt;}
.yfb{bottom:574.493333pt;}
.y25{bottom:575.613333pt;}
.y5b{bottom:581.533333pt;}
.ya7{bottom:582.013333pt;}
.ycb{bottom:585.053333pt;}
.y87{bottom:586.013333pt;}
.y24{bottom:590.813333pt;}
.yfa{bottom:597.853333pt;}
.y5a{bottom:601.053333pt;}
.ya6{bottom:601.373333pt;}
.yca{bottom:604.413333pt;}
.y86{bottom:605.373333pt;}
.y23{bottom:606.173333pt;}
.yf9{bottom:617.213333pt;}
.ya5{bottom:620.893333pt;}
.y22{bottom:621.533333pt;}
.y59{bottom:621.853333pt;}
.yc9{bottom:623.933333pt;}
.y85{bottom:624.893333pt;}
.yf8{bottom:636.733333pt;}
.y21{bottom:636.893333pt;}
.ya4{bottom:640.253333pt;}
.y58{bottom:641.213333pt;}
.yc7{bottom:643.453333pt;}
.y84{bottom:644.253333pt;}
.yc8{bottom:648.733333pt;}
.y20{bottom:652.253333pt;}
.yf7{bottom:656.093333pt;}
.ya2{bottom:659.613333pt;}
.y57{bottom:662.173333pt;}
.yc6{bottom:662.973333pt;}
.y83{bottom:663.613333pt;}
.ya3{bottom:664.893333pt;}
.y1f{bottom:667.613333pt;}
.yf6{bottom:675.453333pt;}
.ya1{bottom:678.973333pt;}
.yc5{bottom:682.493333pt;}
.y1e{bottom:682.813333pt;}
.y56{bottom:682.973333pt;}
.yf5{bottom:694.813333pt;}
.y1d{bottom:698.173333pt;}
.ya0{bottom:698.333333pt;}
.yc4{bottom:702.013333pt;}
.y55{bottom:702.333333pt;}
.y1c{bottom:713.533333pt;}
.yf4{bottom:714.333333pt;}
.yc3{bottom:721.533333pt;}
.y54{bottom:721.853333pt;}
.y1b{bottom:728.893333pt;}
.yf3{bottom:733.693333pt;}
.yc2{bottom:741.053333pt;}
.y53{bottom:741.213333pt;}
.y1a{bottom:744.253333pt;}
.yf2{bottom:753.053333pt;}
.y19{bottom:759.453333pt;}
.y52{bottom:760.573333pt;}
.yf1{bottom:772.573333pt;}
.y18{bottom:774.853333pt;}
.y51{bottom:779.973333pt;}
.yc1{bottom:783.973333pt;}
.yc0{bottom:785.253333pt;}
.y17{bottom:790.213333pt;}
.yf0{bottom:793.413333pt;}
.y50{bottom:799.493333pt;}
.y16{bottom:805.573333pt;}
.yef{bottom:812.773333pt;}
.y4f{bottom:818.853333pt;}
.y15{bottom:820.933333pt;}
.y82{bottom:822.853333pt;}
.y81{bottom:824.133333pt;}
.yee{bottom:833.733333pt;}
.y14{bottom:836.293333pt;}
.y4e{bottom:838.213333pt;}
.y13{bottom:851.493333pt;}
.yed{bottom:853.093333pt;}
.y4d{bottom:857.573333pt;}
.y12{bottom:866.853333pt;}
.yec{bottom:872.613333pt;}
.y4c{bottom:876.933333pt;}
.y11{bottom:884.933333pt;}
.yeb{bottom:893.413333pt;}
.y4b{bottom:896.453333pt;}
.y80{bottom:900.453333pt;}
.y7f{bottom:901.733333pt;}
.y10{bottom:902.693333pt;}
.yea{bottom:912.773333pt;}
.y48{bottom:915.813333pt;}
.yf{bottom:919.653333pt;}
.y4a{bottom:919.813333pt;}
.y49{bottom:921.093333pt;}
.ye9{bottom:932.133333pt;}
.y47{bottom:935.173333pt;}
.ye{bottom:939.813333pt;}
.ye8{bottom:951.653333pt;}
.yd{bottom:952.773333pt;}
.y46{bottom:954.533333pt;}
.yc{bottom:968.133333pt;}
.ye7{bottom:972.453333pt;}
.y45{bottom:974.053333pt;}
.yb{bottom:983.493333pt;}
.ye6{bottom:991.973333pt;}
.y44{bottom:993.413333pt;}
.ya{bottom:998.693333pt;}
.y43{bottom:1012.800000pt;}
.y9{bottom:1014.080000pt;}
.y6{bottom:1032.960000pt;}
.y4{bottom:1046.880000pt;}
.y3{bottom:1074.240000pt;}
.y2{bottom:1091.520000pt;}
.y1{bottom:1108.640000pt;}
.h11{height:22.758750pt;}
.h3{height:24.160000pt;}
.h10{height:25.918750pt;}
.he{height:29.940625pt;}
.h8{height:30.254687pt;}
.h5{height:35.342500pt;}
.h12{height:36.305625pt;}
.hb{height:37.090625pt;}
.h6{height:37.479688pt;}
.h7{height:41.112500pt;}
.ha{height:41.543750pt;}
.hc{height:42.691250pt;}
.h14{height:42.866250pt;}
.hd{height:43.782500pt;}
.h15{height:47.782500pt;}
.hf{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:49.852500pt;}
.h4{height:54.187500pt;}
.h13{height:57.112500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w4{width:548.093333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.031988pt;}
.x16{left:99.711988pt;}
.x5{left:102.431988pt;}
.x26{left:103.391988pt;}
.x8{left:117.151988pt;}
.x2a{left:118.591988pt;}
.x22{left:120.031988pt;}
.x40{left:124.511988pt;}
.x1b{left:138.746643pt;}
.xb{left:143.226655pt;}
.xe{left:152.826655pt;}
.x3{left:160.026667pt;}
.x10{left:163.866655pt;}
.xf{left:171.866655pt;}
.x37{left:176.826655pt;}
.xc{left:193.786643pt;}
.x17{left:195.866643pt;}
.xd{left:198.426655pt;}
.x18{left:200.506655pt;}
.x2b{left:206.586655pt;}
.x3c{left:226.746643pt;}
.x3d{left:236.026655pt;}
.x6{left:240.186655pt;}
.x23{left:245.786643pt;}
.x2c{left:249.826655pt;}
.x24{left:255.106655pt;}
.x20{left:260.386643pt;}
.x11{left:263.906643pt;}
.x12{left:268.546655pt;}
.x21{left:269.666655pt;}
.x15{left:288.066655pt;}
.x2d{left:289.826655pt;}
.x29{left:296.706655pt;}
.x7{left:300.226655pt;}
.x2e{left:301.186655pt;}
.x1e{left:332.386643pt;}
.x1f{left:337.026655pt;}
.xa{left:372.066655pt;}
.x9{left:373.506655pt;}
.x4{left:396.866655pt;}
.x13{left:401.986643pt;}
.x2f{left:403.106655pt;}
.x14{left:406.626655pt;}
.x30{left:414.466655pt;}
.x35{left:434.813310pt;}
.x36{left:444.093322pt;}
.x31{left:454.493322pt;}
.x32{left:465.853322pt;}
.x25{left:507.933310pt;}
.x33{left:509.373322pt;}
.x1c{left:513.053310pt;}
.x1d{left:517.693322pt;}
.x34{left:520.733322pt;}
.x3e{left:539.773310pt;}
.x3f{left:549.053322pt;}
.x38{left:562.173310pt;}
.x39{left:571.453322pt;}
.x19{left:581.373310pt;}
.x27{left:584.933310pt;}
.x1a{left:586.053322pt;}
.x28{left:594.213322pt;}
.x3a{left:625.413310pt;}
.x3b{left:634.693322pt;}
}




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