
    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_f47a4a45799b7835c1ab1178.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_18f201f504153208770292c3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca6a0d1ed07fde195a95ec73.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_347fd18b0efac67373d763b5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c9aa9cfda48333edbd57ff57.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_84aeabf4b7d3664d2b77db43.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5780e1b016eb6949f707561c.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.000000,-0.249908,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249908,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249908,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249908,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249908,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249908,0.250000,0.000000,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(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-45.549673px;}
.v5{vertical-align:-34.167647px;}
.v4{vertical-align:-28.473039px;}
.v8{vertical-align:-25.625735px;}
.v3{vertical-align:-22.778431px;}
.v9{vertical-align:-21.311639px;}
.v15{vertical-align:-9.742669px;}
.v16{vertical-align:-7.945128px;}
.v10{vertical-align:-6.111637px;}
.v13{vertical-align:-1.186377px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:1.833491px;}
.va{vertical-align:3.019868px;}
.v6{vertical-align:4.055251px;}
.vb{vertical-align:7.333965px;}
.v2{vertical-align:11.389216px;}
.v7{vertical-align:12.769727px;}
.vf{vertical-align:19.844846px;}
.v11{vertical-align:21.318829px;}
.vc{vertical-align:22.864713px;}
.vd{vertical-align:47.203410px;}
.v12{vertical-align:50.295179px;}
.ve{vertical-align:54.860932px;}
.ls12{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.566400px;}
.lsd{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.111807px;}
.ls9{letter-spacing:-0.063992px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:3.756000px;}
.ls11{letter-spacing:52.829280px;}
.ls10{letter-spacing:76.589280px;}
.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;}
}
.ws0{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.280000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.426400px;}
.ws1e{word-spacing:-14.373600px;}
.ws1c{word-spacing:-14.328000px;}
.ws19{word-spacing:-14.274000px;}
.ws1a{word-spacing:-14.166000px;}
.ws1d{word-spacing:-13.860000px;}
.ws1f{word-spacing:-12.420000px;}
.ws20{word-spacing:-12.060000px;}
.ws13{word-spacing:-9.978333px;}
.wsc{word-spacing:-9.954347px;}
.wsd{word-spacing:-9.018878px;}
.ws6{word-spacing:-8.994892px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:19.773174px;}
.wse{word-spacing:19.810189px;}
.ws7{word-spacing:37.369167px;}
.ws15{word-spacing:37.397928px;}
.ws17{word-spacing:37.405118px;}
.ws10{word-spacing:37.431980px;}
.wsf{word-spacing:37.446361px;}
.ws11{word-spacing:37.467931px;}
.ws16{word-spacing:37.477020px;}
.wsa{word-spacing:37.496692px;}
.ws9{word-spacing:37.532643px;}
.ws12{word-spacing:37.539833px;}
.ws14{word-spacing:37.597354px;}
.ws8{word-spacing:37.604544px;}
._e{margin-left:-2.433600px;}
._6{margin-left:-1.296000px;}
._0{width:1.149120px;}
._1{width:2.318880px;}
._8{width:3.483360px;}
._4{width:5.040000px;}
._5{width:6.408000px;}
._7{width:7.848000px;}
._9{width:9.144000px;}
._a{width:10.418880px;}
._2{width:11.592000px;}
._3{width:12.744000px;}
._b{width:13.752000px;}
._c{width:14.832000px;}
._10{width:15.926400px;}
._d{width:16.992000px;}
._13{width:19.036800px;}
._f{width:20.332800px;}
._11{width:27.187200px;}
._12{width:28.987200px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.355726px;}
.fs5{font-size:32.442008px;}
.fs6{font-size:35.807004px;}
.fs8{font-size:35.820162px;}
.fs7{font-size:35.893286px;}
.fs9{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y50{bottom:3.240000px;}
.y88{bottom:11.703308px;}
.y73{bottom:11.703328px;}
.y7e{bottom:11.724879px;}
.y66{bottom:11.724898px;}
.y86{bottom:26.824218px;}
.y71{bottom:26.824252px;}
.y7c{bottom:26.867359px;}
.y64{bottom:26.867392px;}
.y80{bottom:37.544748px;}
.y6b{bottom:37.544784px;}
.y77{bottom:37.566319px;}
.y5e{bottom:37.566355px;}
.y72{bottom:39.054720px;}
.y65{bottom:40.586225px;}
.y1{bottom:57.060000px;}
.y2{bottom:58.140000px;}
.y87{bottom:60.215327px;}
.y81{bottom:68.023843px;}
.y6c{bottom:68.023879px;}
.y5f{bottom:68.067020px;}
.y78{bottom:75.681365px;}
.y7d{bottom:79.046360px;}
.y6a{bottom:84.568427px;}
.y15e{bottom:88.416000px;}
.yc0{bottom:90.036000px;}
.y5d{bottom:91.706463px;}
.y59{bottom:92.376000px;}
.yfe{bottom:94.356000px;}
.y69{bottom:96.299179px;}
.y35{bottom:96.876000px;}
.y82{bottom:98.528103px;}
.y6d{bottom:98.528139px;}
.y60{bottom:98.546115px;}
.y129{bottom:99.936000px;}
.y15d{bottom:102.276000px;}
.y5c{bottom:105.925011px;}
.ybf{bottom:107.316000px;}
.y58{bottom:109.656000px;}
.y68{bottom:111.227755px;}
.yfd{bottom:111.456000px;}
.y79{bottom:113.771245px;}
.y34{bottom:117.576000px;}
.y15c{bottom:120.456000px;}
.ybe{bottom:124.596000px;}
.y128{bottom:126.216000px;}
.y57{bottom:126.936000px;}
.yfc{bottom:128.736000px;}
.y83{bottom:129.005399px;}
.y6e{bottom:129.005436px;}
.y61{bottom:129.023411px;}
.y75{bottom:133.058853px;}
.y15b{bottom:134.316000px;}
.y33{bottom:138.276000px;}
.ybd{bottom:141.876000px;}
.y127{bottom:143.496000px;}
.y56{bottom:145.476000px;}
.yfb{bottom:146.016000px;}
.y7a{bottom:151.888088px;}
.y15a{bottom:152.490000px;}
.y32{bottom:158.970000px;}
.y84{bottom:159.482696px;}
.y6f{bottom:159.482733px;}
.y62{bottom:159.500708px;}
.y126{bottom:160.770000px;}
.y5b{bottom:161.406098px;}
.y55{bottom:162.750000px;}
.yfa{bottom:163.290000px;}
.y76{bottom:163.536150px;}
.y74{bottom:163.981035px;}
.y159{bottom:166.350000px;}
.y67{bottom:166.708842px;}
.y7f{bottom:174.644949px;}
.ybc{bottom:176.250000px;}
.y125{bottom:177.870000px;}
.y31{bottom:179.670000px;}
.yf9{bottom:180.570000px;}
.y158{bottom:184.710000px;}
.y85{bottom:189.959993px;}
.y70{bottom:189.960030px;}
.y7b{bottom:190.004931px;}
.y63{bottom:190.004968px;}
.ybb{bottom:193.530000px;}
.y124{bottom:195.150000px;}
.yf8{bottom:197.670000px;}
.y157{bottom:198.570000px;}
.y30{bottom:200.370000px;}
.yba{bottom:210.810000px;}
.y123{bottom:212.430000px;}
.yf7{bottom:214.950000px;}
.y156{bottom:216.750000px;}
.y2f{bottom:221.070000px;}
.yb9{bottom:228.090000px;}
.y122{bottom:229.710000px;}
.y155{bottom:230.610000px;}
.yf6{bottom:232.230000px;}
.yb8{bottom:245.370000px;}
.y121{bottom:246.990000px;}
.y154{bottom:248.790000px;}
.yf5{bottom:249.510000px;}
.y2e{bottom:250.770000px;}
.yb7{bottom:262.470000px;}
.y153{bottom:262.650000px;}
.y120{bottom:264.270000px;}
.yf4{bottom:266.790000px;}
.y2d{bottom:271.470000px;}
.yb6{bottom:279.750000px;}
.y152{bottom:281.010000px;}
.y11f{bottom:281.370000px;}
.yf3{bottom:284.070000px;}
.y2c{bottom:292.170000px;}
.y151{bottom:294.870000px;}
.yb5{bottom:297.030000px;}
.y11e{bottom:298.650000px;}
.yf2{bottom:301.170000px;}
.y2b{bottom:312.870000px;}
.y150{bottom:313.050000px;}
.yb4{bottom:314.310000px;}
.y11d{bottom:315.930000px;}
.yf1{bottom:318.450000px;}
.y14f{bottom:331.410000px;}
.yb3{bottom:331.590000px;}
.y11c{bottom:333.210000px;}
.y2a{bottom:333.570000px;}
.yf0{bottom:335.730000px;}
.yb2{bottom:348.915000px;}
.y14e{bottom:349.635000px;}
.y11b{bottom:350.535000px;}
.yef{bottom:353.055000px;}
.y29{bottom:354.315000px;}
.y14d{bottom:363.495000px;}
.yb1{bottom:366.015000px;}
.y11a{bottom:367.815000px;}
.yee{bottom:370.335000px;}
.y54{bottom:370.695000px;}
.y28{bottom:375.015000px;}
.yb0{bottom:383.295000px;}
.y119{bottom:384.915000px;}
.yed{bottom:387.615000px;}
.y53{bottom:387.975000px;}
.y14c{bottom:389.235000px;}
.y27{bottom:395.715000px;}
.yaf{bottom:400.575000px;}
.y118{bottom:402.195000px;}
.yec{bottom:404.715000px;}
.y52{bottom:405.255000px;}
.yae{bottom:417.855000px;}
.y14b{bottom:418.935000px;}
.y117{bottom:419.475000px;}
.yeb{bottom:421.995000px;}
.y51{bottom:422.535000px;}
.y26{bottom:425.415000px;}
.yad{bottom:435.135000px;}
.y116{bottom:436.755000px;}
.yea{bottom:439.275000px;}
.y14a{bottom:439.635000px;}
.y4f{bottom:440.895000px;}
.y25{bottom:446.115000px;}
.yac{bottom:452.415000px;}
.y115{bottom:454.035000px;}
.ye9{bottom:456.555000px;}
.y4e{bottom:458.175000px;}
.y5a{bottom:459.480995px;}
.y149{bottom:460.155000px;}
.y24{bottom:466.815000px;}
.yab{bottom:469.515000px;}
.y114{bottom:471.135000px;}
.ye8{bottom:473.835000px;}
.y148{bottom:480.855000px;}
.yaa{bottom:486.795000px;}
.y23{bottom:487.515000px;}
.y113{bottom:488.415000px;}
.ye7{bottom:490.935000px;}
.y147{bottom:501.555000px;}
.ya9{bottom:504.075000px;}
.y112{bottom:505.695000px;}
.y22{bottom:508.215000px;}
.ya8{bottom:521.355000px;}
.y146{bottom:522.255000px;}
.y111{bottom:522.975000px;}
.ye6{bottom:525.495000px;}
.y21{bottom:528.915000px;}
.ya7{bottom:538.635000px;}
.y110{bottom:540.255000px;}
.ye5{bottom:542.775000px;}
.y145{bottom:542.955000px;}
.y20{bottom:549.615000px;}
.ya6{bottom:555.735000px;}
.y10f{bottom:557.535000px;}
.ye4{bottom:560.055000px;}
.y144{bottom:563.655000px;}
.y1f{bottom:570.315000px;}
.ya5{bottom:573.015000px;}
.y10e{bottom:574.635000px;}
.ye3{bottom:577.335000px;}
.y143{bottom:584.355000px;}
.ya4{bottom:590.295000px;}
.y10d{bottom:591.915000px;}
.ye2{bottom:594.435000px;}
.y142{bottom:605.085000px;}
.ya3{bottom:607.605000px;}
.y1e{bottom:610.485000px;}
.ye1{bottom:611.745000px;}
.y10c{bottom:613.725000px;}
.ya2{bottom:624.885000px;}
.y141{bottom:625.785000px;}
.ye0{bottom:629.025000px;}
.y1d{bottom:631.185000px;}
.y10b{bottom:640.725000px;}
.ya1{bottom:642.165000px;}
.ydf{bottom:646.305000px;}
.y140{bottom:646.485000px;}
.y1c{bottom:651.885000px;}
.ya0{bottom:659.265000px;}
.y10a{bottom:661.425000px;}
.yde{bottom:663.585000px;}
.y13f{bottom:667.185000px;}
.y1b{bottom:672.585000px;}
.y4d{bottom:676.005000px;}
.y9f{bottom:676.545000px;}
.ydd{bottom:680.865000px;}
.y109{bottom:682.125000px;}
.y13e{bottom:687.885000px;}
.y1a{bottom:693.285000px;}
.y9e{bottom:693.825000px;}
.y4c{bottom:696.705000px;}
.ydc{bottom:697.965000px;}
.y108{bottom:702.825000px;}
.y13d{bottom:708.585000px;}
.y9d{bottom:711.105000px;}
.y19{bottom:713.985000px;}
.ydb{bottom:715.245000px;}
.y4b{bottom:717.405000px;}
.y107{bottom:723.525000px;}
.y9c{bottom:728.385000px;}
.yda{bottom:732.525000px;}
.y18{bottom:734.685000px;}
.y4a{bottom:738.105000px;}
.y106{bottom:744.225000px;}
.y9b{bottom:745.665000px;}
.yd9{bottom:749.805000px;}
.y17{bottom:755.385000px;}
.y49{bottom:758.805000px;}
.y105{bottom:764.925000px;}
.yd8{bottom:767.085000px;}
.y9a{bottom:767.265000px;}
.y16{bottom:776.085000px;}
.y48{bottom:779.505000px;}
.y13c{bottom:784.185000px;}
.yd7{bottom:784.365000px;}
.y104{bottom:785.625000px;}
.y15{bottom:796.785000px;}
.y99{bottom:798.765000px;}
.y47{bottom:800.205000px;}
.yd6{bottom:801.465000px;}
.y13b{bottom:804.165000px;}
.y103{bottom:806.325000px;}
.y14{bottom:817.485000px;}
.yd5{bottom:818.745000px;}
.y98{bottom:819.465000px;}
.y46{bottom:820.905000px;}
.y13a{bottom:821.445000px;}
.y102{bottom:827.025000px;}
.yd4{bottom:836.025000px;}
.y13{bottom:838.005000px;}
.y139{bottom:838.725000px;}
.y97{bottom:840.165000px;}
.y45{bottom:841.605000px;}
.yd3{bottom:853.305000px;}
.y138{bottom:856.005000px;}
.y12{bottom:858.705000px;}
.y96{bottom:860.865000px;}
.y44{bottom:862.305000px;}
.y101{bottom:866.985000px;}
.yd2{bottom:870.630000px;}
.y137{bottom:873.330000px;}
.y11{bottom:879.450000px;}
.y95{bottom:881.610000px;}
.y43{bottom:883.050000px;}
.yd1{bottom:887.730000px;}
.y136{bottom:890.430000px;}
.y10{bottom:900.150000px;}
.y94{bottom:902.310000px;}
.y42{bottom:903.750000px;}
.yd0{bottom:905.010000px;}
.y100{bottom:907.170000px;}
.y135{bottom:907.710000px;}
.yf{bottom:920.850000px;}
.ycf{bottom:922.290000px;}
.y93{bottom:923.010000px;}
.y41{bottom:924.450000px;}
.y134{bottom:924.990000px;}
.yff{bottom:936.870000px;}
.yce{bottom:939.570000px;}
.y133{bottom:942.270000px;}
.y92{bottom:943.710000px;}
.y40{bottom:945.150000px;}
.ycd{bottom:956.850000px;}
.y132{bottom:959.550000px;}
.ye{bottom:960.990000px;}
.y91{bottom:964.410000px;}
.y3f{bottom:965.850000px;}
.ycc{bottom:974.130000px;}
.y131{bottom:976.830000px;}
.yd{bottom:980.970000px;}
.y90{bottom:985.110000px;}
.ycb{bottom:991.230000px;}
.y130{bottom:993.930000px;}
.y3e{bottom:995.550000px;}
.yc{bottom:998.250000px;}
.y8f{bottom:1005.810000px;}
.yca{bottom:1008.510000px;}
.yb{bottom:1015.530000px;}
.y12f{bottom:1015.710000px;}
.y3d{bottom:1016.250000px;}
.yc9{bottom:1025.790000px;}
.y8e{bottom:1026.510000px;}
.ya{bottom:1032.630000px;}
.y3c{bottom:1036.950000px;}
.y12e{bottom:1042.710000px;}
.yc8{bottom:1043.070000px;}
.y8d{bottom:1047.210000px;}
.y9{bottom:1049.910000px;}
.y3b{bottom:1057.650000px;}
.yc7{bottom:1060.350000px;}
.y12d{bottom:1063.410000px;}
.y8{bottom:1067.190000px;}
.y8c{bottom:1067.910000px;}
.yc6{bottom:1077.630000px;}
.y3a{bottom:1078.350000px;}
.y12c{bottom:1084.110000px;}
.y7{bottom:1085.190000px;}
.y8b{bottom:1088.610000px;}
.yc5{bottom:1094.730000px;}
.y39{bottom:1099.050000px;}
.y12b{bottom:1104.810000px;}
.y6{bottom:1105.890000px;}
.y8a{bottom:1109.310000px;}
.yc4{bottom:1112.010000px;}
.y38{bottom:1119.750000px;}
.y12a{bottom:1125.510000px;}
.y5{bottom:1127.850000px;}
.yc3{bottom:1129.290000px;}
.y89{bottom:1130.010000px;}
.y37{bottom:1140.480000px;}
.yc2{bottom:1146.600000px;}
.y4{bottom:1155.600000px;}
.y36{bottom:1161.180000px;}
.yc1{bottom:1163.880000px;}
.h3{height:15.516000px;}
.ha{height:17.280000px;}
.he{height:33.746012px;}
.hf{height:33.836001px;}
.h17{height:35.579503px;}
.h10{height:37.345586px;}
.h12{height:37.359310px;}
.h11{height:37.435576px;}
.h13{height:46.515738px;}
.h19{height:47.344922px;}
.h18{height:50.312812px;}
.h4{height:52.998047px;}
.h6{height:58.651172px;}
.hb{height:60.226875px;}
.h8{height:64.546875px;}
.h2{height:70.664062px;}
.h7{height:72.562500px;}
.h16{height:84.041191px;}
.h15{height:88.606943px;}
.h5{height:96.508125px;}
.h14{height:203.517520px;}
.hd{height:203.517560px;}
.hc{height:204.690000px;}
.h9{height:204.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:6.660000px;}
.wb{width:13.500000px;}
.wa{width:311.484360px;}
.w8{width:311.484370px;}
.w9{width:311.484401px;}
.w4{width:348.150000px;}
.w5{width:348.375000px;}
.w6{width:353.730000px;}
.w7{width:353.955000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:19.387265px;}
.x1e{left:25.083960px;}
.x20{left:27.608632px;}
.x18{left:30.111734px;}
.x17{left:35.096348px;}
.xe{left:45.390000px;}
.xd{left:47.520000px;}
.x19{left:51.560676px;}
.x14{left:53.610619px;}
.x15{left:81.036782px;}
.xf{left:92.736000px;}
.x12{left:93.810000px;}
.xb{left:98.316000px;}
.x1{left:106.415987px;}
.x16{left:108.462943px;}
.x11{left:110.514000px;}
.x3{left:114.515987px;}
.x13{left:116.626459px;}
.xa{left:127.655987px;}
.x1d{left:135.867542px;}
.x27{left:137.915987px;}
.x1b{left:160.745638px;}
.x1f{left:163.335037px;}
.x7{left:203.249987px;}
.x25{left:212.609987px;}
.x4{left:286.454987px;}
.x8{left:290.774987px;}
.xc{left:329.979000px;}
.x10{left:332.679000px;}
.x9{left:348.914987px;}
.x22{left:361.514987px;}
.x6{left:401.294987px;}
.x24{left:439.815000px;}
.x2{left:443.235000px;}
.x5{left:446.474987px;}
.x1c{left:464.851429px;}
.x21{left:467.656429px;}
.x26{left:579.344987px;}
.x23{left:595.364987px;}
@media print{
.v1{vertical-align:-40.488598pt;}
.v5{vertical-align:-30.371242pt;}
.v4{vertical-align:-25.309368pt;}
.v8{vertical-align:-22.778431pt;}
.v3{vertical-align:-20.247495pt;}
.v9{vertical-align:-18.943679pt;}
.v15{vertical-align:-8.660150pt;}
.v16{vertical-align:-7.062336pt;}
.v10{vertical-align:-5.432566pt;}
.v13{vertical-align:-1.054557pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.629770pt;}
.va{vertical-align:2.684327pt;}
.v6{vertical-align:3.604668pt;}
.vb{vertical-align:6.519080pt;}
.v2{vertical-align:10.123747pt;}
.v7{vertical-align:11.350868pt;}
.vf{vertical-align:17.639863pt;}
.v11{vertical-align:18.950070pt;}
.vc{vertical-align:20.324190pt;}
.vd{vertical-align:41.958587pt;}
.v12{vertical-align:44.706826pt;}
.ve{vertical-align:48.765273pt;}
.ls12{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.503467pt;}
.lsd{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.099384pt;}
.ls9{letter-spacing:-0.056882pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:3.338667pt;}
.ls11{letter-spacing:46.959360pt;}
.ls10{letter-spacing:68.079360pt;}
.ws0{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.360000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.823467pt;}
.ws1e{word-spacing:-12.776533pt;}
.ws1c{word-spacing:-12.736000pt;}
.ws19{word-spacing:-12.688000pt;}
.ws1a{word-spacing:-12.592000pt;}
.ws1d{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-11.040000pt;}
.ws20{word-spacing:-10.720000pt;}
.ws13{word-spacing:-8.869630pt;}
.wsc{word-spacing:-8.848309pt;}
.wsd{word-spacing:-8.016781pt;}
.ws6{word-spacing:-7.995460pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:17.576155pt;}
.wse{word-spacing:17.609057pt;}
.ws7{word-spacing:33.217038pt;}
.ws15{word-spacing:33.242603pt;}
.ws17{word-spacing:33.248994pt;}
.ws10{word-spacing:33.272872pt;}
.wsf{word-spacing:33.285654pt;}
.ws11{word-spacing:33.304828pt;}
.ws16{word-spacing:33.312906pt;}
.wsa{word-spacing:33.330393pt;}
.ws9{word-spacing:33.362349pt;}
.ws12{word-spacing:33.368740pt;}
.ws14{word-spacing:33.419870pt;}
.ws8{word-spacing:33.426262pt;}
._e{margin-left:-2.163200pt;}
._6{margin-left:-1.152000pt;}
._0{width:1.021440pt;}
._1{width:2.061227pt;}
._8{width:3.096320pt;}
._4{width:4.480000pt;}
._5{width:5.696000pt;}
._7{width:6.976000pt;}
._9{width:8.128000pt;}
._a{width:9.261227pt;}
._2{width:10.304000pt;}
._3{width:11.328000pt;}
._b{width:12.224000pt;}
._c{width:13.184000pt;}
._10{width:14.156800pt;}
._d{width:15.104000pt;}
._13{width:16.921600pt;}
._f{width:18.073600pt;}
._11{width:24.166400pt;}
._12{width:25.766400pt;}
.fs4{font-size:28.760646pt;}
.fs5{font-size:28.837341pt;}
.fs6{font-size:31.828448pt;}
.fs8{font-size:31.840144pt;}
.fs7{font-size:31.905143pt;}
.fs9{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y50{bottom:2.880000pt;}
.y88{bottom:10.402940pt;}
.y73{bottom:10.402958pt;}
.y7e{bottom:10.422114pt;}
.y66{bottom:10.422132pt;}
.y86{bottom:23.843749pt;}
.y71{bottom:23.843779pt;}
.y7c{bottom:23.882096pt;}
.y64{bottom:23.882127pt;}
.y80{bottom:33.373110pt;}
.y6b{bottom:33.373142pt;}
.y77{bottom:33.392283pt;}
.y5e{bottom:33.392315pt;}
.y72{bottom:34.715307pt;}
.y65{bottom:36.076644pt;}
.y1{bottom:50.720000pt;}
.y2{bottom:51.680000pt;}
.y87{bottom:53.524735pt;}
.y81{bottom:60.465638pt;}
.y6c{bottom:60.465671pt;}
.y5f{bottom:60.504018pt;}
.y78{bottom:67.272324pt;}
.y7d{bottom:70.263431pt;}
.y6a{bottom:75.171935pt;}
.y15e{bottom:78.592000pt;}
.yc0{bottom:80.032000pt;}
.y5d{bottom:81.516856pt;}
.y59{bottom:82.112000pt;}
.yfe{bottom:83.872000pt;}
.y69{bottom:85.599270pt;}
.y35{bottom:86.112000pt;}
.y82{bottom:87.580536pt;}
.y6d{bottom:87.580568pt;}
.y60{bottom:87.596546pt;}
.y129{bottom:88.832000pt;}
.y15d{bottom:90.912000pt;}
.y5c{bottom:94.155566pt;}
.ybf{bottom:95.392000pt;}
.y58{bottom:97.472000pt;}
.y68{bottom:98.869116pt;}
.yfd{bottom:99.072000pt;}
.y79{bottom:101.129995pt;}
.y34{bottom:104.512000pt;}
.y15c{bottom:107.072000pt;}
.ybe{bottom:110.752000pt;}
.y128{bottom:112.192000pt;}
.y57{bottom:112.832000pt;}
.yfc{bottom:114.432000pt;}
.y83{bottom:114.671466pt;}
.y6e{bottom:114.671499pt;}
.y61{bottom:114.687477pt;}
.y75{bottom:118.274536pt;}
.y15b{bottom:119.392000pt;}
.y33{bottom:122.912000pt;}
.ybd{bottom:126.112000pt;}
.y127{bottom:127.552000pt;}
.y56{bottom:129.312000pt;}
.yfb{bottom:129.792000pt;}
.y7a{bottom:135.011634pt;}
.y15a{bottom:135.546667pt;}
.y32{bottom:141.306667pt;}
.y84{bottom:141.762397pt;}
.y6f{bottom:141.762429pt;}
.y62{bottom:141.778407pt;}
.y126{bottom:142.906667pt;}
.y5b{bottom:143.472087pt;}
.y55{bottom:144.666667pt;}
.yfa{bottom:145.146667pt;}
.y76{bottom:145.365466pt;}
.y74{bottom:145.760920pt;}
.y159{bottom:147.866667pt;}
.y67{bottom:148.185637pt;}
.y7f{bottom:155.239955pt;}
.ybc{bottom:156.666667pt;}
.y125{bottom:158.106667pt;}
.y31{bottom:159.706667pt;}
.yf9{bottom:160.506667pt;}
.y158{bottom:164.186667pt;}
.y85{bottom:168.853327pt;}
.y70{bottom:168.853360pt;}
.y7b{bottom:168.893272pt;}
.y63{bottom:168.893305pt;}
.ybb{bottom:172.026667pt;}
.y124{bottom:173.466667pt;}
.yf8{bottom:175.706667pt;}
.y157{bottom:176.506667pt;}
.y30{bottom:178.106667pt;}
.yba{bottom:187.386667pt;}
.y123{bottom:188.826667pt;}
.yf7{bottom:191.066667pt;}
.y156{bottom:192.666667pt;}
.y2f{bottom:196.506667pt;}
.yb9{bottom:202.746667pt;}
.y122{bottom:204.186667pt;}
.y155{bottom:204.986667pt;}
.yf6{bottom:206.426667pt;}
.yb8{bottom:218.106667pt;}
.y121{bottom:219.546667pt;}
.y154{bottom:221.146667pt;}
.yf5{bottom:221.786667pt;}
.y2e{bottom:222.906667pt;}
.yb7{bottom:233.306667pt;}
.y153{bottom:233.466667pt;}
.y120{bottom:234.906667pt;}
.yf4{bottom:237.146667pt;}
.y2d{bottom:241.306667pt;}
.yb6{bottom:248.666667pt;}
.y152{bottom:249.786667pt;}
.y11f{bottom:250.106667pt;}
.yf3{bottom:252.506667pt;}
.y2c{bottom:259.706667pt;}
.y151{bottom:262.106667pt;}
.yb5{bottom:264.026667pt;}
.y11e{bottom:265.466667pt;}
.yf2{bottom:267.706667pt;}
.y2b{bottom:278.106667pt;}
.y150{bottom:278.266667pt;}
.yb4{bottom:279.386667pt;}
.y11d{bottom:280.826667pt;}
.yf1{bottom:283.066667pt;}
.y14f{bottom:294.586667pt;}
.yb3{bottom:294.746667pt;}
.y11c{bottom:296.186667pt;}
.y2a{bottom:296.506667pt;}
.yf0{bottom:298.426667pt;}
.yb2{bottom:310.146667pt;}
.y14e{bottom:310.786667pt;}
.y11b{bottom:311.586667pt;}
.yef{bottom:313.826667pt;}
.y29{bottom:314.946667pt;}
.y14d{bottom:323.106667pt;}
.yb1{bottom:325.346667pt;}
.y11a{bottom:326.946667pt;}
.yee{bottom:329.186667pt;}
.y54{bottom:329.506667pt;}
.y28{bottom:333.346667pt;}
.yb0{bottom:340.706667pt;}
.y119{bottom:342.146667pt;}
.yed{bottom:344.546667pt;}
.y53{bottom:344.866667pt;}
.y14c{bottom:345.986667pt;}
.y27{bottom:351.746667pt;}
.yaf{bottom:356.066667pt;}
.y118{bottom:357.506667pt;}
.yec{bottom:359.746667pt;}
.y52{bottom:360.226667pt;}
.yae{bottom:371.426667pt;}
.y14b{bottom:372.386667pt;}
.y117{bottom:372.866667pt;}
.yeb{bottom:375.106667pt;}
.y51{bottom:375.586667pt;}
.y26{bottom:378.146667pt;}
.yad{bottom:386.786667pt;}
.y116{bottom:388.226667pt;}
.yea{bottom:390.466667pt;}
.y14a{bottom:390.786667pt;}
.y4f{bottom:391.906667pt;}
.y25{bottom:396.546667pt;}
.yac{bottom:402.146667pt;}
.y115{bottom:403.586667pt;}
.ye9{bottom:405.826667pt;}
.y4e{bottom:407.266667pt;}
.y5a{bottom:408.427551pt;}
.y149{bottom:409.026667pt;}
.y24{bottom:414.946667pt;}
.yab{bottom:417.346667pt;}
.y114{bottom:418.786667pt;}
.ye8{bottom:421.186667pt;}
.y148{bottom:427.426667pt;}
.yaa{bottom:432.706667pt;}
.y23{bottom:433.346667pt;}
.y113{bottom:434.146667pt;}
.ye7{bottom:436.386667pt;}
.y147{bottom:445.826667pt;}
.ya9{bottom:448.066667pt;}
.y112{bottom:449.506667pt;}
.y22{bottom:451.746667pt;}
.ya8{bottom:463.426667pt;}
.y146{bottom:464.226667pt;}
.y111{bottom:464.866667pt;}
.ye6{bottom:467.106667pt;}
.y21{bottom:470.146667pt;}
.ya7{bottom:478.786667pt;}
.y110{bottom:480.226667pt;}
.ye5{bottom:482.466667pt;}
.y145{bottom:482.626667pt;}
.y20{bottom:488.546667pt;}
.ya6{bottom:493.986667pt;}
.y10f{bottom:495.586667pt;}
.ye4{bottom:497.826667pt;}
.y144{bottom:501.026667pt;}
.y1f{bottom:506.946667pt;}
.ya5{bottom:509.346667pt;}
.y10e{bottom:510.786667pt;}
.ye3{bottom:513.186667pt;}
.y143{bottom:519.426667pt;}
.ya4{bottom:524.706667pt;}
.y10d{bottom:526.146667pt;}
.ye2{bottom:528.386667pt;}
.y142{bottom:537.853333pt;}
.ya3{bottom:540.093333pt;}
.y1e{bottom:542.653333pt;}
.ye1{bottom:543.773333pt;}
.y10c{bottom:545.533333pt;}
.ya2{bottom:555.453333pt;}
.y141{bottom:556.253333pt;}
.ye0{bottom:559.133333pt;}
.y1d{bottom:561.053333pt;}
.y10b{bottom:569.533333pt;}
.ya1{bottom:570.813333pt;}
.ydf{bottom:574.493333pt;}
.y140{bottom:574.653333pt;}
.y1c{bottom:579.453333pt;}
.ya0{bottom:586.013333pt;}
.y10a{bottom:587.933333pt;}
.yde{bottom:589.853333pt;}
.y13f{bottom:593.053333pt;}
.y1b{bottom:597.853333pt;}
.y4d{bottom:600.893333pt;}
.y9f{bottom:601.373333pt;}
.ydd{bottom:605.213333pt;}
.y109{bottom:606.333333pt;}
.y13e{bottom:611.453333pt;}
.y1a{bottom:616.253333pt;}
.y9e{bottom:616.733333pt;}
.y4c{bottom:619.293333pt;}
.ydc{bottom:620.413333pt;}
.y108{bottom:624.733333pt;}
.y13d{bottom:629.853333pt;}
.y9d{bottom:632.093333pt;}
.y19{bottom:634.653333pt;}
.ydb{bottom:635.773333pt;}
.y4b{bottom:637.693333pt;}
.y107{bottom:643.133333pt;}
.y9c{bottom:647.453333pt;}
.yda{bottom:651.133333pt;}
.y18{bottom:653.053333pt;}
.y4a{bottom:656.093333pt;}
.y106{bottom:661.533333pt;}
.y9b{bottom:662.813333pt;}
.yd9{bottom:666.493333pt;}
.y17{bottom:671.453333pt;}
.y49{bottom:674.493333pt;}
.y105{bottom:679.933333pt;}
.yd8{bottom:681.853333pt;}
.y9a{bottom:682.013333pt;}
.y16{bottom:689.853333pt;}
.y48{bottom:692.893333pt;}
.y13c{bottom:697.053333pt;}
.yd7{bottom:697.213333pt;}
.y104{bottom:698.333333pt;}
.y15{bottom:708.253333pt;}
.y99{bottom:710.013333pt;}
.y47{bottom:711.293333pt;}
.yd6{bottom:712.413333pt;}
.y13b{bottom:714.813333pt;}
.y103{bottom:716.733333pt;}
.y14{bottom:726.653333pt;}
.yd5{bottom:727.773333pt;}
.y98{bottom:728.413333pt;}
.y46{bottom:729.693333pt;}
.y13a{bottom:730.173333pt;}
.y102{bottom:735.133333pt;}
.yd4{bottom:743.133333pt;}
.y13{bottom:744.893333pt;}
.y139{bottom:745.533333pt;}
.y97{bottom:746.813333pt;}
.y45{bottom:748.093333pt;}
.yd3{bottom:758.493333pt;}
.y138{bottom:760.893333pt;}
.y12{bottom:763.293333pt;}
.y96{bottom:765.213333pt;}
.y44{bottom:766.493333pt;}
.y101{bottom:770.653333pt;}
.yd2{bottom:773.893333pt;}
.y137{bottom:776.293333pt;}
.y11{bottom:781.733333pt;}
.y95{bottom:783.653333pt;}
.y43{bottom:784.933333pt;}
.yd1{bottom:789.093333pt;}
.y136{bottom:791.493333pt;}
.y10{bottom:800.133333pt;}
.y94{bottom:802.053333pt;}
.y42{bottom:803.333333pt;}
.yd0{bottom:804.453333pt;}
.y100{bottom:806.373333pt;}
.y135{bottom:806.853333pt;}
.yf{bottom:818.533333pt;}
.ycf{bottom:819.813333pt;}
.y93{bottom:820.453333pt;}
.y41{bottom:821.733333pt;}
.y134{bottom:822.213333pt;}
.yff{bottom:832.773333pt;}
.yce{bottom:835.173333pt;}
.y133{bottom:837.573333pt;}
.y92{bottom:838.853333pt;}
.y40{bottom:840.133333pt;}
.ycd{bottom:850.533333pt;}
.y132{bottom:852.933333pt;}
.ye{bottom:854.213333pt;}
.y91{bottom:857.253333pt;}
.y3f{bottom:858.533333pt;}
.ycc{bottom:865.893333pt;}
.y131{bottom:868.293333pt;}
.yd{bottom:871.973333pt;}
.y90{bottom:875.653333pt;}
.ycb{bottom:881.093333pt;}
.y130{bottom:883.493333pt;}
.y3e{bottom:884.933333pt;}
.yc{bottom:887.333333pt;}
.y8f{bottom:894.053333pt;}
.yca{bottom:896.453333pt;}
.yb{bottom:902.693333pt;}
.y12f{bottom:902.853333pt;}
.y3d{bottom:903.333333pt;}
.yc9{bottom:911.813333pt;}
.y8e{bottom:912.453333pt;}
.ya{bottom:917.893333pt;}
.y3c{bottom:921.733333pt;}
.y12e{bottom:926.853333pt;}
.yc8{bottom:927.173333pt;}
.y8d{bottom:930.853333pt;}
.y9{bottom:933.253333pt;}
.y3b{bottom:940.133333pt;}
.yc7{bottom:942.533333pt;}
.y12d{bottom:945.253333pt;}
.y8{bottom:948.613333pt;}
.y8c{bottom:949.253333pt;}
.yc6{bottom:957.893333pt;}
.y3a{bottom:958.533333pt;}
.y12c{bottom:963.653333pt;}
.y7{bottom:964.613333pt;}
.y8b{bottom:967.653333pt;}
.yc5{bottom:973.093333pt;}
.y39{bottom:976.933333pt;}
.y12b{bottom:982.053333pt;}
.y6{bottom:983.013333pt;}
.y8a{bottom:986.053333pt;}
.yc4{bottom:988.453333pt;}
.y38{bottom:995.333333pt;}
.y12a{bottom:1000.453333pt;}
.y5{bottom:1002.533333pt;}
.yc3{bottom:1003.813333pt;}
.y89{bottom:1004.453333pt;}
.y37{bottom:1013.760000pt;}
.yc2{bottom:1019.200000pt;}
.y4{bottom:1027.200000pt;}
.y36{bottom:1032.160000pt;}
.yc1{bottom:1034.560000pt;}
.h3{height:13.792000pt;}
.ha{height:15.360000pt;}
.he{height:29.996455pt;}
.hf{height:30.076445pt;}
.h17{height:31.626225pt;}
.h10{height:33.196077pt;}
.h12{height:33.208275pt;}
.h11{height:33.276067pt;}
.h13{height:41.347323pt;}
.h19{height:42.084375pt;}
.h18{height:44.722500pt;}
.h4{height:47.109375pt;}
.h6{height:52.134375pt;}
.hb{height:53.535000pt;}
.h8{height:57.375000pt;}
.h2{height:62.812500pt;}
.h7{height:64.500000pt;}
.h16{height:74.703281pt;}
.h15{height:78.761727pt;}
.h5{height:85.785000pt;}
.h14{height:180.904462pt;}
.hd{height:180.904498pt;}
.hc{height:181.946667pt;}
.h9{height:182.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.920000pt;}
.wb{width:12.000000pt;}
.wa{width:276.874987pt;}
.w8{width:276.874996pt;}
.w9{width:276.875023pt;}
.w4{width:309.466667pt;}
.w5{width:309.666667pt;}
.w6{width:314.426667pt;}
.w7{width:314.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:17.233125pt;}
.x1e{left:22.296854pt;}
.x20{left:24.541006pt;}
.x18{left:26.765986pt;}
.x17{left:31.196754pt;}
.xe{left:40.346667pt;}
.xd{left:42.240000pt;}
.x19{left:45.831712pt;}
.x14{left:47.653883pt;}
.x15{left:72.032695pt;}
.xf{left:82.432000pt;}
.x12{left:83.386667pt;}
.xb{left:87.392000pt;}
.x1{left:94.591988pt;}
.x16{left:96.411504pt;}
.x11{left:98.234667pt;}
.x3{left:101.791988pt;}
.x13{left:103.667964pt;}
.xa{left:113.471988pt;}
.x1d{left:120.771149pt;}
.x27{left:122.591988pt;}
.x1b{left:142.885011pt;}
.x1f{left:145.186700pt;}
.x7{left:180.666655pt;}
.x25{left:188.986655pt;}
.x4{left:254.626655pt;}
.x8{left:258.466655pt;}
.xc{left:293.314667pt;}
.x10{left:295.714667pt;}
.x9{left:310.146655pt;}
.x22{left:321.346655pt;}
.x6{left:356.706655pt;}
.x24{left:390.946667pt;}
.x2{left:393.986667pt;}
.x5{left:396.866655pt;}
.x1c{left:413.201270pt;}
.x21{left:415.694603pt;}
.x26{left:514.973322pt;}
.x23{left:529.213322pt;}
}




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