
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2ac03335eadd3119ed9f8d1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5df401f073f06339211ed88a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_65e6930784061c9787c5c9fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f3a4101012b8d552d7bc96fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_ca90ef093569743ff1d6ad6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_b41908bc5dac563117cea483.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_270c101052e8b2e12895213e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_701c1b87a1bb7c47c2c85fa3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_19c5927080e2b3ff8ea9665d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_b72e9065d02539929e968e84.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.993652;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_1dedd36782aecd970a50d397.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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;}
.m3{transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.444600px;}
.ls28{letter-spacing:-0.266400px;}
.ls13{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.067200px;}
.ls1c{letter-spacing:-0.064800px;}
.ls1e{letter-spacing:-0.040320px;}
.ls1d{letter-spacing:-0.022320px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls19{letter-spacing:0.068400px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.098400px;}
.ls20{letter-spacing:0.113400px;}
.ls17{letter-spacing:0.115800px;}
.ls15{letter-spacing:0.127080px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls24{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.273600px;}
.ls1a{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.429600px;}
.ls16{letter-spacing:0.453600px;}
.ls8{letter-spacing:0.534600px;}
.ls21{letter-spacing:4.053600px;}
.ls14{letter-spacing:5.133600px;}
.ls26{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls23{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.324800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.wsc{word-spacing:-10.963200px;}
.wsb{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._b{margin-left:-3.720002px;}
._8{margin-left:-2.452800px;}
._0{margin-left:-1.014000px;}
._2{width:1.439712px;}
._a{width:2.681831px;}
._c{width:4.517387px;}
._4{width:5.574613px;}
._5{width:6.586547px;}
._3{width:8.187840px;}
._9{width:9.361608px;}
._6{width:10.409760px;}
._7{width:11.534040px;}
._1{width:17.279364px;}
._d{width:18.487657px;}
._e{width:102.823825px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs9{font-size:43.885729px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:46.710991px;}
.fsa{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.745538px;}
.fs1{font-size:60.120000px;}
.fsb{font-size:65.293674px;}
.fsd{font-size:65.561776px;}
.fs5{font-size:65.880000px;}
.fsc{font-size:76.067130px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:2.039885px;}
.y7a{bottom:2.118961px;}
.y90{bottom:2.121502px;}
.y9e{bottom:7.621556px;}
.y9c{bottom:7.703509px;}
.y78{bottom:8.852501px;}
.y8c{bottom:11.622816px;}
.y9a{bottom:15.919219px;}
.y76{bottom:17.859099px;}
.y8b{bottom:42.745590px;}
.y99{bottom:47.224967px;}
.y2{bottom:73.380000px;}
.y8a{bottom:73.923319px;}
.y29{bottom:74.190000px;}
.y98{bottom:78.476080px;}
.y1{bottom:101.640000px;}
.y89{bottom:105.046637px;}
.y97{bottom:109.781828px;}
.yf2{bottom:115.410000px;}
.y74{bottom:115.680000px;}
.y5a{bottom:127.650000px;}
.yf1{bottom:133.050000px;}
.y73{bottom:133.230000px;}
.y88{bottom:136.218925px;}
.y96{bottom:141.026111px;}
.y59{bottom:145.200000px;}
.yf0{bottom:150.600000px;}
.y72{bottom:150.870000px;}
.y58{bottom:162.840000px;}
.yba{bottom:164.640000px;}
.y87{bottom:167.342243px;}
.yef{bottom:168.240000px;}
.y115{bottom:172.290000px;}
.y95{bottom:172.331859px;}
.y27{bottom:176.430000px;}
.y57{bottom:180.390000px;}
.yee{bottom:185.790000px;}
.y71{bottom:186.420000px;}
.y114{bottom:189.840000px;}
.y26{bottom:194.070000px;}
.y56{bottom:198.030000px;}
.y86{bottom:198.519972px;}
.yb9{bottom:200.190000px;}
.yed{bottom:203.340000px;}
.y94{bottom:203.582972px;}
.y70{bottom:204.060000px;}
.y113{bottom:207.480000px;}
.y25{bottom:211.620000px;}
.yec{bottom:220.980000px;}
.y6f{bottom:221.610000px;}
.yab{bottom:222.060000px;}
.y55{bottom:224.580000px;}
.y24{bottom:229.260000px;}
.yb8{bottom:232.410000px;}
.y112{bottom:234.030000px;}
.y93{bottom:234.888720px;}
.y85{bottom:237.560148px;}
.yeb{bottom:238.530000px;}
.y6e{bottom:239.160000px;}
.yaa{bottom:239.610000px;}
.y23{bottom:246.810000px;}
.y111{bottom:251.580000px;}
.yea{bottom:256.170000px;}
.y6d{bottom:256.800000px;}
.ya9{bottom:257.160000px;}
.y54{bottom:260.130000px;}
.y22{bottom:264.360000px;}
.y92{bottom:266.139833px;}
.y110{bottom:269.220000px;}
.ye9{bottom:273.720000px;}
.ya8{bottom:274.800000px;}
.y53{bottom:277.770000px;}
.y83{bottom:289.920000px;}
.y21{bottom:291.270000px;}
.y6c{bottom:292.350000px;}
.y52{bottom:295.320000px;}
.y10f{bottom:295.770000px;}
.ye8{bottom:308.910000px;}
.ya7{bottom:309.900000px;}
.y6b{bottom:309.990000px;}
.y10e{bottom:313.410000px;}
.y82{bottom:325.560000px;}
.ye7{bottom:326.460000px;}
.y6a{bottom:327.540000px;}
.y51{bottom:330.960000px;}
.y20{bottom:339.870000px;}
.y10d{bottom:339.960000px;}
.ye6{bottom:344.100000px;}
.y69{bottom:345.090000px;}
.y50{bottom:348.510000px;}
.ya6{bottom:354.090000px;}
.y10c{bottom:357.510000px;}
.y81{bottom:357.780000px;}
.y91{bottom:359.820000px;}
.ye5{bottom:361.650000px;}
.y68{bottom:362.730000px;}
.y4f{bottom:366.060000px;}
.y10b{bottom:375.150000px;}
.y1f{bottom:376.950000px;}
.ye4{bottom:379.200000px;}
.y9d{bottom:383.688584px;}
.y4e{bottom:383.700000px;}
.y9b{bottom:383.934441px;}
.ya5{bottom:389.730000px;}
.y1e{bottom:394.500000px;}
.ye3{bottom:396.840000px;}
.y67{bottom:398.280000px;}
.y136{bottom:398.730000px;}
.y4d{bottom:401.250000px;}
.y10a{bottom:401.700000px;}
.y1d{bottom:412.050000px;}
.ye2{bottom:414.390000px;}
.y66{bottom:415.920000px;}
.y4c{bottom:418.800000px;}
.y109{bottom:419.340000px;}
.ya4{bottom:424.560000px;}
.y135{bottom:425.370000px;}
.y1c{bottom:429.690000px;}
.ye1{bottom:431.940000px;}
.y4b{bottom:436.440000px;}
.ya3{bottom:438.600000px;}
.y134{bottom:442.920000px;}
.y108{bottom:445.890000px;}
.y1b{bottom:447.240000px;}
.ye0{bottom:449.580000px;}
.y65{bottom:451.470000px;}
.ya2{bottom:452.730000px;}
.y4a{bottom:453.990000px;}
.y133{bottom:460.470000px;}
.y107{bottom:463.440000px;}
.ya1{bottom:464.160000px;}
.y1a{bottom:464.880000px;}
.ydf{bottom:467.130000px;}
.y64{bottom:469.020000px;}
.y49{bottom:471.660000px;}
.y19{bottom:482.460000px;}
.yde{bottom:484.800000px;}
.y63{bottom:486.690000px;}
.y132{bottom:487.140000px;}
.y48{bottom:489.210000px;}
.y106{bottom:490.110000px;}
.y18{bottom:500.010000px;}
.ydd{bottom:502.350000px;}
.y62{bottom:504.240000px;}
.y47{bottom:506.760000px;}
.y105{bottom:507.660000px;}
.y131{bottom:513.690000px;}
.y17{bottom:517.650000px;}
.ydc{bottom:519.900000px;}
.y61{bottom:521.790000px;}
.y130{bottom:531.330000px;}
.y46{bottom:533.400000px;}
.y104{bottom:534.570000px;}
.y16{bottom:535.200000px;}
.ydb{bottom:537.540000px;}
.y60{bottom:539.430000px;}
.y12f{bottom:548.880000px;}
.y15{bottom:552.840000px;}
.yda{bottom:555.090000px;}
.y5f{bottom:556.980000px;}
.y45{bottom:569.310000px;}
.y14{bottom:570.390000px;}
.yd9{bottom:572.730000px;}
.y12e{bottom:575.430000px;}
.yb7{bottom:582.360000px;}
.y103{bottom:582.900000px;}
.y5e{bottom:583.620000px;}
.y13{bottom:587.940000px;}
.yd8{bottom:590.280000px;}
.y12d{bottom:593.070000px;}
.yb6{bottom:599.910000px;}
.y12{bottom:605.580000px;}
.yd7{bottom:607.830000px;}
.y102{bottom:609.720000px;}
.yb5{bottom:617.460000px;}
.y44{bottom:617.550000px;}
.y5d{bottom:619.530000px;}
.y12c{bottom:619.620000px;}
.y11{bottom:623.130000px;}
.yd6{bottom:625.470000px;}
.yb4{bottom:635.100000px;}
.y43{bottom:635.190000px;}
.y12b{bottom:637.260000px;}
.yd5{bottom:643.020000px;}
.y101{bottom:647.070000px;}
.y10{bottom:650.040000px;}
.yb3{bottom:652.650000px;}
.y42{bottom:652.740000px;}
.yd4{bottom:660.660000px;}
.y12a{bottom:663.810000px;}
.y80{bottom:664.890000px;}
.y5c{bottom:667.770000px;}
.y41{bottom:670.290000px;}
.yd3{bottom:678.210000px;}
.y129{bottom:681.360000px;}
.y7f{bottom:682.440000px;}
.yb2{bottom:687.840000px;}
.y40{bottom:687.930000px;}
.y100{bottom:695.400000px;}
.yd2{bottom:695.760000px;}
.yf{bottom:698.280000px;}
.y128{bottom:699.000000px;}
.y5b{bottom:699.990000px;}
.y75{bottom:702.270000px;}
.yb1{bottom:705.390000px;}
.y3f{bottom:705.480000px;}
.yff{bottom:712.950000px;}
.yd1{bottom:713.400000px;}
.y7e{bottom:717.360000px;}
.y77{bottom:722.079797px;}
.yb0{bottom:723.030000px;}
.y3e{bottom:723.120000px;}
.y127{bottom:725.550000px;}
.yfe{bottom:730.590000px;}
.yd0{bottom:730.950000px;}
.y7d{bottom:731.400000px;}
.ye{bottom:734.100000px;}
.yaf{bottom:740.580000px;}
.y3d{bottom:740.670000px;}
.y126{bottom:743.190000px;}
.y7c{bottom:745.440000px;}
.yfd{bottom:748.140000px;}
.y7b{bottom:756.870000px;}
.yae{bottom:758.220000px;}
.y84{bottom:758.340000px;}
.y125{bottom:760.740000px;}
.yfc{bottom:765.690000px;}
.ycf{bottom:766.590000px;}
.y3c{bottom:767.220000px;}
.yd{bottom:770.100000px;}
.y8f{bottom:770.207625px;}
.y8d{bottom:770.370900px;}
.yfb{bottom:783.330000px;}
.yce{bottom:784.140000px;}
.y124{bottom:787.290000px;}
.yad{bottom:793.770000px;}
.yfa{bottom:800.880000px;}
.ycd{bottom:801.690000px;}
.y3b{bottom:802.770000px;}
.y123{bottom:804.930000px;}
.yc{bottom:809.880000px;}
.ya0{bottom:811.770000px;}
.yf9{bottom:818.520000px;}
.ycc{bottom:819.330000px;}
.y3a{bottom:821.220000px;}
.yb{bottom:824.100000px;}
.yac{bottom:825.990000px;}
.y122{bottom:831.480000px;}
.ycb{bottom:836.880000px;}
.y39{bottom:839.670000px;}
.y9f{bottom:843.990000px;}
.ya{bottom:845.880000px;}
.y121{bottom:849.030000px;}
.yf8{bottom:854.070000px;}
.yca{bottom:854.520000px;}
.y9{bottom:863.880000px;}
.y120{bottom:866.670000px;}
.yf7{bottom:871.620000px;}
.yc9{bottom:872.070000px;}
.y38{bottom:876.030000px;}
.y8{bottom:878.100000px;}
.yf6{bottom:889.260000px;}
.yc8{bottom:889.620000px;}
.y11f{bottom:893.220000px;}
.y37{bottom:893.670000px;}
.y7{bottom:899.880000px;}
.yf5{bottom:906.810000px;}
.yc7{bottom:907.260000px;}
.y11e{bottom:910.860000px;}
.y36{bottom:911.220000px;}
.yf4{bottom:924.450000px;}
.yc6{bottom:924.810000px;}
.y35{bottom:928.860000px;}
.y6{bottom:932.190000px;}
.y11d{bottom:937.410000px;}
.yc5{bottom:942.450000px;}
.y34{bottom:946.410000px;}
.yf3{bottom:951.270000px;}
.y5{bottom:951.540000px;}
.y11c{bottom:954.960000px;}
.yc4{bottom:960.000000px;}
.y33{bottom:963.960000px;}
.y11b{bottom:972.600000px;}
.yc3{bottom:977.550000px;}
.y4{bottom:989.880000px;}
.yc2{bottom:995.190000px;}
.y11a{bottom:999.150000px;}
.y32{bottom:999.600000px;}
.yc1{bottom:1012.770000px;}
.y3{bottom:1014.570000px;}
.y119{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.yc0{bottom:1030.320000px;}
.y30{bottom:1034.820000px;}
.y118{bottom:1043.370000px;}
.ybf{bottom:1047.960000px;}
.y2f{bottom:1052.370000px;}
.y117{bottom:1060.920000px;}
.ybe{bottom:1065.510000px;}
.y2e{bottom:1069.920000px;}
.y116{bottom:1078.560000px;}
.ybd{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.ybc{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y79{bottom:1110.650702px;}
.y2b{bottom:1122.750000px;}
.ybb{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h10{height:12.384079px;}
.h15{height:19.860162px;}
.h17{height:19.941779px;}
.h1b{height:22.946621px;}
.h1a{height:23.028574px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h12{height:41.661211px;}
.h11{height:43.650015px;}
.hf{height:45.844283px;}
.h1d{height:50.667539px;}
.hd{height:51.985619px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h1c{height:60.589687px;}
.h9{height:61.793886px;}
.ha{height:62.585859px;}
.h14{height:64.082170px;}
.h19{height:64.345297px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h16{height:74.655728px;}
.h13{height:252.822546px;}
.h18{height:281.464898px;}
.he{height:425.691739px;}
.hc{height:450.000000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:27.630761px;}
.w7{width:27.685205px;}
.wa{width:33.948802px;}
.w5{width:132.073873px;}
.w4{width:418.147396px;}
.w3{width:679.751751px;}
.w9{width:680.674835px;}
.w6{width:680.696699px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.083259px;}
.x14{left:9.800073px;}
.x12{left:15.516772px;}
.x1{left:68.040000px;}
.xd{left:71.099987px;}
.x1c{left:74.249987px;}
.xe{left:81.359987px;}
.x4{left:95.039987px;}
.xf{left:102.869987px;}
.x10{left:104.759987px;}
.x6{left:106.837500px;}
.x13{left:107.917515px;}
.x17{left:110.891129px;}
.x1e{left:125.729987px;}
.x1a{left:183.809987px;}
.x1d{left:196.499987px;}
.x22{left:225.929987px;}
.x20{left:236.729987px;}
.x2{left:251.759987px;}
.x11{left:300.359987px;}
.x8{left:342.160373px;}
.x9{left:416.295755px;}
.x18{left:448.872133px;}
.x15{left:451.518944px;}
.xa{left:517.987799px;}
.x16{left:637.163370px;}
.x7{left:655.662166px;}
.x19{left:714.389987px;}
.x1b{left:717.809987px;}
.x21{left:718.889987px;}
.x1f{left:724.559987px;}
.x5{left:788.639987px;}
.xc{left:789.809987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.395200pt;}
.ls28{letter-spacing:-0.236800pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.059733pt;}
.ls1c{letter-spacing:-0.057600pt;}
.ls1e{letter-spacing:-0.035840pt;}
.ls1d{letter-spacing:-0.019840pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls19{letter-spacing:0.060800pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.087467pt;}
.ls20{letter-spacing:0.100800pt;}
.ls17{letter-spacing:0.102933pt;}
.ls15{letter-spacing:0.112960pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls24{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.243200pt;}
.ls1a{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.381867pt;}
.ls16{letter-spacing:0.403200pt;}
.ls8{letter-spacing:0.475200pt;}
.ls21{letter-spacing:3.603200pt;}
.ls14{letter-spacing:4.563200pt;}
.ls26{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls23{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.844267pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.wsc{word-spacing:-9.745067pt;}
.wsb{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._b{margin-left:-3.306668pt;}
._8{margin-left:-2.180266pt;}
._0{margin-left:-0.901333pt;}
._2{width:1.279744pt;}
._a{width:2.383850pt;}
._c{width:4.015455pt;}
._4{width:4.955211pt;}
._5{width:5.854708pt;}
._3{width:7.278080pt;}
._9{width:8.321430pt;}
._6{width:9.253120pt;}
._7{width:10.252480pt;}
._1{width:15.359435pt;}
._d{width:16.433473pt;}
._e{width:91.398955pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs9{font-size:39.009537pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:41.520881pt;}
.fsa{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.107145pt;}
.fs1{font-size:53.440000pt;}
.fsb{font-size:58.038821pt;}
.fsd{font-size:58.277134pt;}
.fs5{font-size:58.560000pt;}
.fsc{font-size:67.615227pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:1.813231pt;}
.y7a{bottom:1.883521pt;}
.y90{bottom:1.885780pt;}
.y9e{bottom:6.774717pt;}
.y9c{bottom:6.847563pt;}
.y78{bottom:7.868890pt;}
.y8c{bottom:10.331392pt;}
.y9a{bottom:14.150417pt;}
.y76{bottom:15.874754pt;}
.y8b{bottom:37.996080pt;}
.y99{bottom:41.977748pt;}
.y2{bottom:65.226667pt;}
.y8a{bottom:65.709617pt;}
.y29{bottom:65.946667pt;}
.y98{bottom:69.756515pt;}
.y1{bottom:90.346667pt;}
.y89{bottom:93.374788pt;}
.y97{bottom:97.583847pt;}
.yf2{bottom:102.586667pt;}
.y74{bottom:102.826667pt;}
.y5a{bottom:113.466667pt;}
.yf1{bottom:118.266667pt;}
.y73{bottom:118.426667pt;}
.y88{bottom:121.083489pt;}
.y96{bottom:125.356543pt;}
.y59{bottom:129.066667pt;}
.yf0{bottom:133.866667pt;}
.y72{bottom:134.106667pt;}
.y58{bottom:144.746667pt;}
.yba{bottom:146.346667pt;}
.y87{bottom:148.748660pt;}
.yef{bottom:149.546667pt;}
.y115{bottom:153.146667pt;}
.y95{bottom:153.183875pt;}
.y27{bottom:156.826667pt;}
.y57{bottom:160.346667pt;}
.yee{bottom:165.146667pt;}
.y71{bottom:165.706667pt;}
.y114{bottom:168.746667pt;}
.y26{bottom:172.506667pt;}
.y56{bottom:176.026667pt;}
.y86{bottom:176.462197pt;}
.yb9{bottom:177.946667pt;}
.yed{bottom:180.746667pt;}
.y94{bottom:180.962642pt;}
.y70{bottom:181.386667pt;}
.y113{bottom:184.426667pt;}
.y25{bottom:188.106667pt;}
.yec{bottom:196.426667pt;}
.y6f{bottom:196.986667pt;}
.yab{bottom:197.386667pt;}
.y55{bottom:199.626667pt;}
.y24{bottom:203.786667pt;}
.yb8{bottom:206.586667pt;}
.y112{bottom:208.026667pt;}
.y93{bottom:208.789973pt;}
.y85{bottom:211.164576pt;}
.yeb{bottom:212.026667pt;}
.y6e{bottom:212.586667pt;}
.yaa{bottom:212.986667pt;}
.y23{bottom:219.386667pt;}
.y111{bottom:223.626667pt;}
.yea{bottom:227.706667pt;}
.y6d{bottom:228.266667pt;}
.ya9{bottom:228.586667pt;}
.y54{bottom:231.226667pt;}
.y22{bottom:234.986667pt;}
.y92{bottom:236.568741pt;}
.y110{bottom:239.306667pt;}
.ye9{bottom:243.306667pt;}
.ya8{bottom:244.266667pt;}
.y53{bottom:246.906667pt;}
.y83{bottom:257.706667pt;}
.y21{bottom:258.906667pt;}
.y6c{bottom:259.866667pt;}
.y52{bottom:262.506667pt;}
.y10f{bottom:262.906667pt;}
.ye8{bottom:274.586667pt;}
.ya7{bottom:275.466667pt;}
.y6b{bottom:275.546667pt;}
.y10e{bottom:278.586667pt;}
.y82{bottom:289.386667pt;}
.ye7{bottom:290.186667pt;}
.y6a{bottom:291.146667pt;}
.y51{bottom:294.186667pt;}
.y20{bottom:302.106667pt;}
.y10d{bottom:302.186667pt;}
.ye6{bottom:305.866667pt;}
.y69{bottom:306.746667pt;}
.y50{bottom:309.786667pt;}
.ya6{bottom:314.746667pt;}
.y10c{bottom:317.786667pt;}
.y81{bottom:318.026667pt;}
.y91{bottom:319.840000pt;}
.ye5{bottom:321.466667pt;}
.y68{bottom:322.426667pt;}
.y4f{bottom:325.386667pt;}
.y10b{bottom:333.466667pt;}
.y1f{bottom:335.066667pt;}
.ye4{bottom:337.066667pt;}
.y9d{bottom:341.056519pt;}
.y4e{bottom:341.066667pt;}
.y9b{bottom:341.275058pt;}
.ya5{bottom:346.426667pt;}
.y1e{bottom:350.666667pt;}
.ye3{bottom:352.746667pt;}
.y67{bottom:354.026667pt;}
.y136{bottom:354.426667pt;}
.y4d{bottom:356.666667pt;}
.y10a{bottom:357.066667pt;}
.y1d{bottom:366.266667pt;}
.ye2{bottom:368.346667pt;}
.y66{bottom:369.706667pt;}
.y4c{bottom:372.266667pt;}
.y109{bottom:372.746667pt;}
.ya4{bottom:377.386667pt;}
.y135{bottom:378.106667pt;}
.y1c{bottom:381.946667pt;}
.ye1{bottom:383.946667pt;}
.y4b{bottom:387.946667pt;}
.ya3{bottom:389.866667pt;}
.y134{bottom:393.706667pt;}
.y108{bottom:396.346667pt;}
.y1b{bottom:397.546667pt;}
.ye0{bottom:399.626667pt;}
.y65{bottom:401.306667pt;}
.ya2{bottom:402.426667pt;}
.y4a{bottom:403.546667pt;}
.y133{bottom:409.306667pt;}
.y107{bottom:411.946667pt;}
.ya1{bottom:412.586667pt;}
.y1a{bottom:413.226667pt;}
.ydf{bottom:415.226667pt;}
.y64{bottom:416.906667pt;}
.y49{bottom:419.253333pt;}
.y19{bottom:428.853333pt;}
.yde{bottom:430.933333pt;}
.y63{bottom:432.613333pt;}
.y132{bottom:433.013333pt;}
.y48{bottom:434.853333pt;}
.y106{bottom:435.653333pt;}
.y18{bottom:444.453333pt;}
.ydd{bottom:446.533333pt;}
.y62{bottom:448.213333pt;}
.y47{bottom:450.453333pt;}
.y105{bottom:451.253333pt;}
.y131{bottom:456.613333pt;}
.y17{bottom:460.133333pt;}
.ydc{bottom:462.133333pt;}
.y61{bottom:463.813333pt;}
.y130{bottom:472.293333pt;}
.y46{bottom:474.133333pt;}
.y104{bottom:475.173333pt;}
.y16{bottom:475.733333pt;}
.ydb{bottom:477.813333pt;}
.y60{bottom:479.493333pt;}
.y12f{bottom:487.893333pt;}
.y15{bottom:491.413333pt;}
.yda{bottom:493.413333pt;}
.y5f{bottom:495.093333pt;}
.y45{bottom:506.053333pt;}
.y14{bottom:507.013333pt;}
.yd9{bottom:509.093333pt;}
.y12e{bottom:511.493333pt;}
.yb7{bottom:517.653333pt;}
.y103{bottom:518.133333pt;}
.y5e{bottom:518.773333pt;}
.y13{bottom:522.613333pt;}
.yd8{bottom:524.693333pt;}
.y12d{bottom:527.173333pt;}
.yb6{bottom:533.253333pt;}
.y12{bottom:538.293333pt;}
.yd7{bottom:540.293333pt;}
.y102{bottom:541.973333pt;}
.yb5{bottom:548.853333pt;}
.y44{bottom:548.933333pt;}
.y5d{bottom:550.693333pt;}
.y12c{bottom:550.773333pt;}
.y11{bottom:553.893333pt;}
.yd6{bottom:555.973333pt;}
.yb4{bottom:564.533333pt;}
.y43{bottom:564.613333pt;}
.y12b{bottom:566.453333pt;}
.yd5{bottom:571.573333pt;}
.y101{bottom:575.173333pt;}
.y10{bottom:577.813333pt;}
.yb3{bottom:580.133333pt;}
.y42{bottom:580.213333pt;}
.yd4{bottom:587.253333pt;}
.y12a{bottom:590.053333pt;}
.y80{bottom:591.013333pt;}
.y5c{bottom:593.573333pt;}
.y41{bottom:595.813333pt;}
.yd3{bottom:602.853333pt;}
.y129{bottom:605.653333pt;}
.y7f{bottom:606.613333pt;}
.yb2{bottom:611.413333pt;}
.y40{bottom:611.493333pt;}
.y100{bottom:618.133333pt;}
.yd2{bottom:618.453333pt;}
.yf{bottom:620.693333pt;}
.y128{bottom:621.333333pt;}
.y5b{bottom:622.213333pt;}
.y75{bottom:624.240000pt;}
.yb1{bottom:627.013333pt;}
.y3f{bottom:627.093333pt;}
.yff{bottom:633.733333pt;}
.yd1{bottom:634.133333pt;}
.y7e{bottom:637.653333pt;}
.y77{bottom:641.848708pt;}
.yb0{bottom:642.693333pt;}
.y3e{bottom:642.773333pt;}
.y127{bottom:644.933333pt;}
.yfe{bottom:649.413333pt;}
.yd0{bottom:649.733333pt;}
.y7d{bottom:650.133333pt;}
.ye{bottom:652.533333pt;}
.yaf{bottom:658.293333pt;}
.y3d{bottom:658.373333pt;}
.y126{bottom:660.613333pt;}
.y7c{bottom:662.613333pt;}
.yfd{bottom:665.013333pt;}
.y7b{bottom:672.773333pt;}
.yae{bottom:673.973333pt;}
.y84{bottom:674.080000pt;}
.y125{bottom:676.213333pt;}
.yfc{bottom:680.613333pt;}
.ycf{bottom:681.413333pt;}
.y3c{bottom:681.973333pt;}
.yd{bottom:684.533333pt;}
.y8f{bottom:684.629000pt;}
.y8d{bottom:684.774133pt;}
.yfb{bottom:696.293333pt;}
.yce{bottom:697.013333pt;}
.y124{bottom:699.813333pt;}
.yad{bottom:705.573333pt;}
.yfa{bottom:711.893333pt;}
.ycd{bottom:712.613333pt;}
.y3b{bottom:713.573333pt;}
.y123{bottom:715.493333pt;}
.yc{bottom:719.893333pt;}
.ya0{bottom:721.573333pt;}
.yf9{bottom:727.573333pt;}
.ycc{bottom:728.293333pt;}
.y3a{bottom:729.973333pt;}
.yb{bottom:732.533333pt;}
.yac{bottom:734.213333pt;}
.y122{bottom:739.093333pt;}
.ycb{bottom:743.893333pt;}
.y39{bottom:746.373333pt;}
.y9f{bottom:750.213333pt;}
.ya{bottom:751.893333pt;}
.y121{bottom:754.693333pt;}
.yf8{bottom:759.173333pt;}
.yca{bottom:759.573333pt;}
.y9{bottom:767.893333pt;}
.y120{bottom:770.373333pt;}
.yf7{bottom:774.773333pt;}
.yc9{bottom:775.173333pt;}
.y38{bottom:778.693333pt;}
.y8{bottom:780.533333pt;}
.yf6{bottom:790.453333pt;}
.yc8{bottom:790.773333pt;}
.y11f{bottom:793.973333pt;}
.y37{bottom:794.373333pt;}
.y7{bottom:799.893333pt;}
.yf5{bottom:806.053333pt;}
.yc7{bottom:806.453333pt;}
.y11e{bottom:809.653333pt;}
.y36{bottom:809.973333pt;}
.yf4{bottom:821.733333pt;}
.yc6{bottom:822.053333pt;}
.y35{bottom:825.653333pt;}
.y6{bottom:828.613333pt;}
.y11d{bottom:833.253333pt;}
.yc5{bottom:837.733333pt;}
.y34{bottom:841.253333pt;}
.yf3{bottom:845.573333pt;}
.y5{bottom:845.813333pt;}
.y11c{bottom:848.853333pt;}
.yc4{bottom:853.333333pt;}
.y33{bottom:856.853333pt;}
.y11b{bottom:864.533333pt;}
.yc3{bottom:868.933333pt;}
.y4{bottom:879.893333pt;}
.yc2{bottom:884.613333pt;}
.y11a{bottom:888.133333pt;}
.y32{bottom:888.533333pt;}
.yc1{bottom:900.240000pt;}
.y3{bottom:901.840000pt;}
.y119{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.yc0{bottom:915.840000pt;}
.y30{bottom:919.840000pt;}
.y118{bottom:927.440000pt;}
.ybf{bottom:931.520000pt;}
.y2f{bottom:935.440000pt;}
.y117{bottom:943.040000pt;}
.ybe{bottom:947.120000pt;}
.y2e{bottom:951.040000pt;}
.y116{bottom:958.720000pt;}
.ybd{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.ybc{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y79{bottom:987.245068pt;}
.y2b{bottom:998.000000pt;}
.ybb{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h10{height:11.008070pt;}
.h15{height:17.653478pt;}
.h17{height:17.726026pt;}
.h1b{height:20.396997pt;}
.h1a{height:20.469843pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h12{height:37.032187pt;}
.h11{height:38.800013pt;}
.hf{height:40.750474pt;}
.h1d{height:45.037812pt;}
.hd{height:46.209440pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h1c{height:53.857500pt;}
.h9{height:54.927899pt;}
.ha{height:55.631875pt;}
.h14{height:56.961929pt;}
.h19{height:57.195820pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h16{height:66.360647pt;}
.h13{height:224.731152pt;}
.h18{height:250.191021pt;}
.he{height:378.392657pt;}
.hc{height:400.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:24.560676pt;}
.w7{width:24.609072pt;}
.wa{width:30.176713pt;}
.w5{width:117.398998pt;}
.w4{width:371.686574pt;}
.w3{width:604.223778pt;}
.w9{width:605.044298pt;}
.w6{width:605.063733pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.296231pt;}
.x14{left:8.711176pt;}
.x12{left:13.792686pt;}
.x1{left:60.480000pt;}
.xd{left:63.199988pt;}
.x1c{left:65.999988pt;}
.xe{left:72.319988pt;}
.x4{left:84.479988pt;}
.xf{left:91.439988pt;}
.x10{left:93.119988pt;}
.x6{left:94.966667pt;}
.x13{left:95.926680pt;}
.x17{left:98.569892pt;}
.x1e{left:111.759988pt;}
.x1a{left:163.386655pt;}
.x1d{left:174.666655pt;}
.x22{left:200.826655pt;}
.x20{left:210.426655pt;}
.x2{left:223.786655pt;}
.x11{left:266.986655pt;}
.x8{left:304.142554pt;}
.x9{left:370.040671pt;}
.x18{left:398.997451pt;}
.x15{left:401.350173pt;}
.xa{left:460.433599pt;}
.x16{left:566.367440pt;}
.x7{left:582.810814pt;}
.x19{left:635.013322pt;}
.x1b{left:638.053322pt;}
.x21{left:639.013322pt;}
.x1f{left:644.053322pt;}
.x5{left:701.013322pt;}
.xc{left:702.053322pt;}
.x3{left:718.773322pt;}
}




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