
    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_9c9c5ff68a3a13bf8665a915.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_49bbb57160749cc48397b78c.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_cf3a900539c24e62e3114112.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_08b477ea35e26c945d6cfbc3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_626738bfff6ed95cbbce03a6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fdf2faaf2aa017119bd5b1cb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_49cf1a25103cf9bf244b0c28.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.258000px;}
.ls16{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls1c{letter-spacing:-0.160800px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.013320px;}
.ls21{letter-spacing:-0.011160px;}
.ls15{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.097800px;}
.ls1d{letter-spacing:0.098400px;}
.ls12{letter-spacing:0.105600px;}
.ls11{letter-spacing:0.113400px;}
.ls19{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls20{letter-spacing:47.726640px;}
.ls1e{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.ws18{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws16{word-spacing:-13.342800px;}
.wse{word-spacing:-13.339800px;}
.wsf{word-spacing:-13.332000px;}
.ws1a{word-spacing:-13.324800px;}
.ws15{word-spacing:-13.324200px;}
.ws7{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.242600px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.217400px;}
.ws1b{word-spacing:-13.215240px;}
.ws17{word-spacing:-13.213080px;}
.ws4{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.072800px;}
.ws19{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws14{word-spacing:-12.968400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._1{margin-left:-4.194000px;}
._4{margin-left:-2.229000px;}
._0{margin-left:-1.110000px;}
._2{width:1.102248px;}
._3{width:2.103913px;}
._10{width:3.727200px;}
._7{width:5.456040px;}
._8{width:7.244521px;}
._6{width:9.138000px;}
._d{width:10.191960px;}
._c{width:11.302800px;}
._5{width:14.673600px;}
._f{width:16.407360px;}
._e{width:17.434800px;}
._11{width:18.943200px;}
._12{width:20.058480px;}
._13{width:21.112920px;}
._9{width:22.545000px;}
._14{width:23.626799px;}
._b{width:25.222800px;}
._a{width:26.420400px;}
._36{width:28.168560px;}
._41{width:29.611800px;}
._1e{width:31.142160px;}
._23{width:32.585040px;}
._15{width:33.907680px;}
._37{width:35.374320px;}
._46{width:36.449880px;}
._20{width:41.843520px;}
._3f{width:43.070160px;}
._1f{width:44.071560px;}
._3a{width:47.170440px;}
._35{width:48.336480px;}
._33{width:50.260320px;}
._2d{width:56.308200px;}
._3e{width:59.879520px;}
._42{width:63.787320px;}
._1b{width:65.410560px;}
._17{width:67.334400px;}
._3c{width:68.732280px;}
._39{width:69.859440px;}
._38{width:70.881480px;}
._31{width:72.023760px;}
._2c{width:74.007720px;}
._44{width:75.029760px;}
._32{width:80.364000px;}
._30{width:88.977600px;}
._2a{width:95.507040px;}
._26{width:98.656920px;}
._25{width:100.520640px;}
._43{width:109.057680px;}
._34{width:125.378040px;}
._18{width:129.197880px;}
._29{width:140.560560px;}
._2f{width:145.803240px;}
._21{width:149.067480px;}
._1d{width:150.441480px;}
._1c{width:156.251880px;}
._2e{width:164.067480px;}
._2b{width:165.342960px;}
._3d{width:169.418160px;}
._3b{width:174.107520px;}
._1a{width:197.241480px;}
._24{width:207.654480px;}
._16{width:211.021200px;}
._45{width:218.600520px;}
._40{width:229.299480px;}
._27{width:241.682400px;}
._19{width:264.528000px;}
._22{width:296.992800px;}
._28{width:322.856640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:7.830000px;}
.yaf{bottom:7.920000px;}
.yac{bottom:25.380000px;}
.ya5{bottom:25.470000px;}
.ya9{bottom:43.020000px;}
.yae{bottom:43.110000px;}
.y119{bottom:43.140000px;}
.yb1{bottom:60.570000px;}
.ya8{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y196{bottom:112.170000px;}
.y134{bottom:113.250000px;}
.yd1{bottom:115.500000px;}
.yab{bottom:117.570000px;}
.yff{bottom:119.190000px;}
.y92{bottom:121.440000px;}
.y1b6{bottom:125.580000px;}
.y59{bottom:129.270000px;}
.y195{bottom:129.720000px;}
.yd0{bottom:133.050000px;}
.yfe{bottom:136.740000px;}
.y91{bottom:138.990000px;}
.y28{bottom:139.800000px;}
.y1b5{bottom:143.130000px;}
.y116{bottom:144.750000px;}
.y58{bottom:146.910000px;}
.y133{bottom:148.800000px;}
.ye4{bottom:150.510000px;}
.ycf{bottom:150.600000px;}
.y194{bottom:156.270000px;}
.y90{bottom:156.630000px;}
.y27{bottom:157.350000px;}
.y1b4{bottom:160.680000px;}
.yfd{bottom:163.380000px;}
.y57{bottom:164.460000px;}
.y132{bottom:166.350000px;}
.ye3{bottom:168.060000px;}
.yce{bottom:168.240000px;}
.y193{bottom:173.910000px;}
.y26{bottom:174.990000px;}
.yaa{bottom:180.030000px;}
.y165{bottom:180.120000px;}
.y8f{bottom:183.180000px;}
.y131{bottom:183.990000px;}
.y1b3{bottom:187.320000px;}
.y25{bottom:192.540000px;}
.ycd{bottom:194.790000px;}
.yfc{bottom:198.930000px;}
.y56{bottom:200.100000px;}
.y192{bottom:200.460000px;}
.y130{bottom:201.540000px;}
.ye2{bottom:203.610000px;}
.y1b2{bottom:204.870000px;}
.y164{bottom:206.940000px;}
.y115{bottom:207.300000px;}
.y24{bottom:210.090000px;}
.yfb{bottom:216.480000px;}
.y55{bottom:217.650000px;}
.y191{bottom:218.100000px;}
.y8e{bottom:218.730000px;}
.y12f{bottom:219.180000px;}
.ye1{bottom:221.250000px;}
.y1b1{bottom:222.510000px;}
.y23{bottom:227.730000px;}
.ycc{bottom:230.430000px;}
.yfa{bottom:234.120000px;}
.y54{bottom:235.200000px;}
.y190{bottom:235.650000px;}
.y8d{bottom:236.370000px;}
.y12e{bottom:236.730000px;}
.y75{bottom:238.800000px;}
.y1b0{bottom:240.060000px;}
.y163{bottom:244.290000px;}
.ycb{bottom:247.980000px;}
.y53{bottom:252.840000px;}
.y8c{bottom:253.920000px;}
.y22{bottom:254.280000px;}
.ye0{bottom:256.440000px;}
.ya7{bottom:260.130000px;}
.y18f{bottom:262.200000px;}
.yca{bottom:265.530000px;}
.y1af{bottom:266.610000px;}
.yf9{bottom:269.670000px;}
.y52{bottom:270.390000px;}
.y8b{bottom:271.560000px;}
.y12d{bottom:272.280000px;}
.y114{bottom:273.540000px;}
.y74{bottom:274.440000px;}
.yc9{bottom:283.170000px;}
.y1ae{bottom:284.250000px;}
.yf8{bottom:287.310000px;}
.y51{bottom:287.940000px;}
.y18e{bottom:288.840000px;}
.y12c{bottom:289.920000px;}
.y21{bottom:290.190000px;}
.y73{bottom:291.990000px;}
.y162{bottom:292.620000px;}
.yc8{bottom:300.720000px;}
.y1ad{bottom:301.800000px;}
.y1d0{bottom:302.250000px;}
.yf7{bottom:304.860000px;}
.y18d{bottom:306.390000px;}
.y8a{bottom:307.110000px;}
.y12b{bottom:307.470000px;}
.y113{bottom:309.180000px;}
.ydf{bottom:309.540000px;}
.y161{bottom:310.170000px;}
.y50{bottom:314.580000px;}
.y1cf{bottom:319.800000px;}
.y89{bottom:324.660000px;}
.y12a{bottom:325.110000px;}
.y112{bottom:326.730000px;}
.yde{bottom:327.180000px;}
.y72{bottom:327.540000px;}
.y160{bottom:327.810000px;}
.y1ac{bottom:328.440000px;}
.y18c{bottom:332.940000px;}
.yc7{bottom:336.360000px;}
.y1ce{bottom:337.440000px;}
.y20{bottom:338.520000px;}
.ya4{bottom:340.230000px;}
.yf6{bottom:340.410000px;}
.y88{bottom:342.300000px;}
.y129{bottom:342.660000px;}
.ydd{bottom:344.730000px;}
.y71{bottom:345.180000px;}
.y15f{bottom:345.360000px;}
.y1ab{bottom:345.990000px;}
.y4f{bottom:350.490000px;}
.y18b{bottom:350.580000px;}
.yc6{bottom:353.910000px;}
.y1f{bottom:356.430000px;}
.yf5{bottom:358.050000px;}
.y87{bottom:359.850000px;}
.ydc{bottom:362.370000px;}
.y70{bottom:362.730000px;}
.y15e{bottom:362.910000px;}
.y1aa{bottom:363.540000px;}
.y1cd{bottom:363.990000px;}
.y18a{bottom:368.130000px;}
.yc5{bottom:371.460000px;}
.yf4{bottom:375.600000px;}
.y86{bottom:377.490000px;}
.y128{bottom:378.210000px;}
.y111{bottom:379.920000px;}
.y14a{bottom:380.730000px;}
.y1cc{bottom:381.540000px;}
.y189{bottom:385.770000px;}
.ydb{bottom:388.920000px;}
.yc4{bottom:389.100000px;}
.y1a9{bottom:390.180000px;}
.y1e{bottom:393.420000px;}
.y85{bottom:395.040000px;}
.y127{bottom:395.850000px;}
.y110{bottom:397.470000px;}
.y6f{bottom:398.370000px;}
.y15d{bottom:398.550000px;}
.y4e{bottom:398.730000px;}
.y1cb{bottom:399.180000px;}
.ya3{bottom:406.470000px;}
.y1a8{bottom:407.730000px;}
.y1d{bottom:410.970000px;}
.yf3{bottom:411.240000px;}
.y188{bottom:412.320000px;}
.y126{bottom:413.400000px;}
.y10f{bottom:415.110000px;}
.y6e{bottom:415.920000px;}
.y15c{bottom:416.100000px;}
.y4d{bottom:416.370000px;}
.yda{bottom:424.470000px;}
.yc3{bottom:424.650000px;}
.y1ca{bottom:425.730000px;}
.y1c{bottom:428.610000px;}
.yf2{bottom:428.790000px;}
.y187{bottom:429.870000px;}
.y84{bottom:430.590000px;}
.y125{bottom:431.040000px;}
.y6d{bottom:433.470000px;}
.y15b{bottom:433.740000px;}
.y4c{bottom:433.920000px;}
.y1a7{bottom:434.370000px;}
.ya2{bottom:442.110000px;}
.yc2{bottom:442.290000px;}
.y1c9{bottom:443.370000px;}
.y1b{bottom:446.160000px;}
.yf1{bottom:446.340000px;}
.y186{bottom:447.510000px;}
.y83{bottom:448.230000px;}
.y124{bottom:448.590000px;}
.y10e{bottom:450.660000px;}
.y6c{bottom:451.110000px;}
.y15a{bottom:451.290000px;}
.y4b{bottom:451.470000px;}
.y1a6{bottom:451.920000px;}
.ya1{bottom:459.660000px;}
.yc1{bottom:459.840000px;}
.y1c8{bottom:460.920000px;}
.y1a{bottom:463.800000px;}
.yf0{bottom:463.980000px;}
.y82{bottom:465.780000px;}
.y123{bottom:466.140000px;}
.y10d{bottom:468.300000px;}
.y159{bottom:468.840000px;}
.y149{bottom:469.110000px;}
.y1a5{bottom:469.470000px;}
.y185{bottom:474.090000px;}
.ya0{bottom:477.330000px;}
.yc0{bottom:477.420000px;}
.yd9{bottom:477.690000px;}
.y19{bottom:481.380000px;}
.yef{bottom:481.560000px;}
.y81{bottom:483.450000px;}
.y122{bottom:483.810000px;}
.y10c{bottom:485.880000px;}
.y6b{bottom:486.690000px;}
.y4a{bottom:487.140000px;}
.y1c7{bottom:487.500000px;}
.y184{bottom:491.730000px;}
.ybf{bottom:495.060000px;}
.yd8{bottom:495.330000px;}
.y1a4{bottom:496.140000px;}
.y18{bottom:498.930000px;}
.y80{bottom:501.000000px;}
.y10b{bottom:503.430000px;}
.y6a{bottom:504.330000px;}
.y158{bottom:504.510000px;}
.y49{bottom:504.690000px;}
.y1c6{bottom:505.140000px;}
.y183{bottom:509.280000px;}
.y121{bottom:510.360000px;}
.y9f{bottom:512.880000px;}
.y1a3{bottom:513.690000px;}
.y17{bottom:516.570000px;}
.yee{bottom:517.200000px;}
.y69{bottom:521.880000px;}
.y157{bottom:522.060000px;}
.y48{bottom:522.330000px;}
.y1c5{bottom:522.690000px;}
.y10a{bottom:530.070000px;}
.y9e{bottom:530.430000px;}
.ybe{bottom:530.610000px;}
.y1a2{bottom:531.330000px;}
.y16{bottom:534.120000px;}
.yed{bottom:534.750000px;}
.y182{bottom:535.830000px;}
.y7f{bottom:536.550000px;}
.y68{bottom:539.430000px;}
.y156{bottom:539.700000px;}
.y47{bottom:539.880000px;}
.y1c4{bottom:540.330000px;}
.y120{bottom:546.270000px;}
.yd7{bottom:548.070000px;}
.ybd{bottom:548.160000px;}
.y15{bottom:551.670000px;}
.yec{bottom:552.300000px;}
.y181{bottom:553.470000px;}
.y7e{bottom:554.190000px;}
.y155{bottom:557.250000px;}
.y46{bottom:557.430000px;}
.y1a1{bottom:557.880000px;}
.y109{bottom:565.620000px;}
.ybc{bottom:565.800000px;}
.y67{bottom:566.070000px;}
.y1c3{bottom:566.880000px;}
.y14{bottom:569.310000px;}
.yeb{bottom:569.940000px;}
.y180{bottom:571.020000px;}
.y7d{bottom:571.740000px;}
.y154{bottom:574.800000px;}
.y148{bottom:575.070000px;}
.y1a0{bottom:575.430000px;}
.y108{bottom:583.260000px;}
.ybb{bottom:583.350000px;}
.y9d{bottom:583.620000px;}
.y45{bottom:584.070000px;}
.y1c2{bottom:584.430000px;}
.y13{bottom:586.860000px;}
.yea{bottom:587.490000px;}
.y7c{bottom:589.290000px;}
.y11f{bottom:591.900000px;}
.y147{bottom:592.620000px;}
.y19f{bottom:593.070000px;}
.y17f{bottom:597.660000px;}
.y107{bottom:600.810000px;}
.yba{bottom:600.990000px;}
.y9c{bottom:601.260000px;}
.y66{bottom:601.620000px;}
.y1c1{bottom:602.070000px;}
.y12{bottom:604.500000px;}
.ye9{bottom:605.040000px;}
.y7b{bottom:606.930000px;}
.y153{bottom:610.440000px;}
.y17e{bottom:615.210000px;}
.yb9{bottom:618.540000px;}
.y9b{bottom:618.810000px;}
.y65{bottom:619.260000px;}
.y44{bottom:619.620000px;}
.y11{bottom:622.050000px;}
.y7a{bottom:624.480000px;}
.y152{bottom:627.990000px;}
.y146{bottom:628.260000px;}
.y1c0{bottom:628.620000px;}
.ye8{bottom:631.680000px;}
.y17d{bottom:632.760000px;}
.yb8{bottom:636.090000px;}
.y106{bottom:636.360000px;}
.y64{bottom:636.810000px;}
.y43{bottom:637.260000px;}
.y10{bottom:639.600000px;}
.y151{bottom:645.540000px;}
.y145{bottom:645.810000px;}
.y1bf{bottom:646.260000px;}
.y79{bottom:651.120000px;}
.y105{bottom:654.000000px;}
.y63{bottom:654.360000px;}
.y11e{bottom:654.450000px;}
.y42{bottom:654.810000px;}
.yf{bottom:657.240000px;}
.y17c{bottom:659.400000px;}
.yb7{bottom:662.730000px;}
.y150{bottom:663.180000px;}
.y144{bottom:663.360000px;}
.y19e{bottom:663.810000px;}
.ye7{bottom:667.590000px;}
.y104{bottom:671.550000px;}
.y9a{bottom:672.000000px;}
.y41{bottom:672.360000px;}
.ye{bottom:674.790000px;}
.y17b{bottom:676.950000px;}
.y14f{bottom:680.730000px;}
.y143{bottom:681.000000px;}
.y19d{bottom:681.360000px;}
.y78{bottom:687.030000px;}
.y99{bottom:689.550000px;}
.y40{bottom:690.000000px;}
.y1be{bottom:690.360000px;}
.yd{bottom:692.430000px;}
.y14e{bottom:698.370000px;}
.y142{bottom:698.550000px;}
.yb6{bottom:698.640000px;}
.y19c{bottom:699.000000px;}
.y17a{bottom:703.590000px;}
.y98{bottom:707.190000px;}
.y3f{bottom:707.550000px;}
.y1bd{bottom:708.000000px;}
.yc{bottom:709.980000px;}
.ye6{bottom:715.830000px;}
.y19b{bottom:716.550000px;}
.y11d{bottom:716.910000px;}
.y179{bottom:721.140000px;}
.yd6{bottom:724.740000px;}
.y3e{bottom:725.190000px;}
.y14d{bottom:725.280000px;}
.y1bc{bottom:725.550000px;}
.y77{bottom:735.270000px;}
.yb{bottom:736.890000px;}
.y178{bottom:738.690000px;}
.y103{bottom:742.290000px;}
.y62{bottom:742.740000px;}
.y19a{bottom:743.190000px;}
.yb5{bottom:744.270000px;}
.ye5{bottom:748.050000px;}
.yd5{bottom:751.290000px;}
.y1bb{bottom:752.190000px;}
.y102{bottom:759.930000px;}
.y61{bottom:760.290000px;}
.y3d{bottom:760.740000px;}
.y177{bottom:765.330000px;}
.y76{bottom:767.490000px;}
.y1ba{bottom:769.740000px;}
.y14c{bottom:773.520000px;}
.y60{bottom:777.930000px;}
.y3c{bottom:778.290000px;}
.y11c{bottom:779.460000px;}
.y176{bottom:782.880000px;}
.ya{bottom:785.130000px;}
.yd4{bottom:786.930000px;}
.y1b9{bottom:787.290000px;}
.y97{bottom:795.480000px;}
.y3b{bottom:795.930000px;}
.yd3{bottom:804.480000px;}
.y199{bottom:804.930000px;}
.y14b{bottom:805.740000px;}
.yb4{bottom:806.820000px;}
.y175{bottom:809.520000px;}
.y96{bottom:813.030000px;}
.y3a{bottom:813.480000px;}
.y9{bottom:820.950000px;}
.yd2{bottom:822.030000px;}
.y198{bottom:822.480000px;}
.y174{bottom:827.070000px;}
.y101{bottom:830.670000px;}
.y39{bottom:831.030000px;}
.y1b8{bottom:831.480000px;}
.y95{bottom:839.670000px;}
.y197{bottom:840.030000px;}
.y11b{bottom:841.920000px;}
.y173{bottom:844.620000px;}
.y5f{bottom:848.670000px;}
.y1b7{bottom:849.030000px;}
.y8{bottom:856.950000px;}
.y100{bottom:857.220000px;}
.y38{bottom:857.670000px;}
.y5e{bottom:866.220000px;}
.y141{bottom:866.670000px;}
.y172{bottom:871.260000px;}
.y94{bottom:875.220000px;}
.y5d{bottom:883.860000px;}
.y140{bottom:884.220000px;}
.yb3{bottom:886.920000px;}
.y171{bottom:888.810000px;}
.y93{bottom:892.860000px;}
.y37{bottom:893.220000px;}
.y7{bottom:896.730000px;}
.y13f{bottom:901.860000px;}
.y11a{bottom:904.470000px;}
.y5c{bottom:910.410000px;}
.y36{bottom:910.860000px;}
.y6{bottom:914.730000px;}
.y170{bottom:915.450000px;}
.y35{bottom:928.410000px;}
.y16f{bottom:933.000000px;}
.y13e{bottom:937.410000px;}
.y34{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.yb2{bottom:949.380000px;}
.y16e{bottom:950.550000px;}
.y13d{bottom:954.960000px;}
.y33{bottom:963.600000px;}
.y118{bottom:966.930000px;}
.y13c{bottom:972.600000px;}
.y16d{bottom:977.190000px;}
.y32{bottom:981.150000px;}
.y4{bottom:985.380000px;}
.y13b{bottom:990.150000px;}
.y16c{bottom:994.740000px;}
.y5b{bottom:998.790000px;}
.y3{bottom:1010.070000px;}
.yb0{bottom:1011.960000px;}
.y16b{bottom:1012.320000px;}
.y5a{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.y13a{bottom:1025.820000px;}
.y117{bottom:1029.510000px;}
.y30{bottom:1034.370000px;}
.y16a{bottom:1038.960000px;}
.y139{bottom:1043.370000px;}
.y2f{bottom:1051.920000px;}
.y169{bottom:1056.510000px;}
.y138{bottom:1060.920000px;}
.y2e{bottom:1069.560000px;}
.y137{bottom:1078.560000px;}
.y168{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.yad{bottom:1091.970000px;}
.y136{bottom:1096.110000px;}
.y167{bottom:1100.700000px;}
.y135{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y166{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.ha{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:61.740000px;}
.hf{height:61.770000px;}
.h11{height:61.793886px;}
.hd{height:61.830000px;}
.h10{height:61.860000px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:79.290000px;}
.hb{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:121.440000px;}
.w8{width:133.680000px;}
.w4{width:143.100000px;}
.w9{width:152.100000px;}
.w6{width:152.940000px;}
.w5{width:157.140000px;}
.w7{width:178.110000px;}
.wa{width:197.940000px;}
.wb{width:269.730000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.x5{left:141.119987px;}
.xc{left:172.469987px;}
.x7{left:191.010000px;}
.xd{left:203.250000px;}
.x2{left:211.079987px;}
.x10{left:234.029987px;}
.x8{left:334.830000px;}
.xe{left:356.070000px;}
.x9{left:492.690000px;}
.xf{left:554.730000px;}
.xa{left:646.350000px;}
.xb{left:781.889987px;}
.x4{left:787.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.229333pt;}
.ls16{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls1c{letter-spacing:-0.142933pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.011840pt;}
.ls21{letter-spacing:-0.009920pt;}
.ls15{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.086933pt;}
.ls1d{letter-spacing:0.087467pt;}
.ls12{letter-spacing:0.093867pt;}
.ls11{letter-spacing:0.100800pt;}
.ls19{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls20{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.ws18{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws16{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.857600pt;}
.wsf{word-spacing:-11.850667pt;}
.ws1a{word-spacing:-11.844267pt;}
.ws15{word-spacing:-11.843733pt;}
.ws7{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.771200pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.748800pt;}
.ws1b{word-spacing:-11.746880pt;}
.ws17{word-spacing:-11.744960pt;}
.ws4{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.620267pt;}
.ws19{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws14{word-spacing:-11.527467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._1{margin-left:-3.728000pt;}
._4{margin-left:-1.981334pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.979776pt;}
._3{width:1.870145pt;}
._10{width:3.313066pt;}
._7{width:4.849813pt;}
._8{width:6.439574pt;}
._6{width:8.122666pt;}
._d{width:9.059520pt;}
._c{width:10.046934pt;}
._5{width:13.043200pt;}
._f{width:14.584320pt;}
._e{width:15.497600pt;}
._11{width:16.838400pt;}
._12{width:17.829760pt;}
._13{width:18.767040pt;}
._9{width:20.040000pt;}
._14{width:21.001599pt;}
._b{width:22.420267pt;}
._a{width:23.484800pt;}
._36{width:25.038720pt;}
._41{width:26.321600pt;}
._1e{width:27.681920pt;}
._23{width:28.964480pt;}
._15{width:30.140160pt;}
._37{width:31.443840pt;}
._46{width:32.399894pt;}
._20{width:37.194240pt;}
._3f{width:38.284587pt;}
._1f{width:39.174720pt;}
._3a{width:41.929280pt;}
._35{width:42.965760pt;}
._33{width:44.675840pt;}
._2d{width:50.051733pt;}
._3e{width:53.226240pt;}
._42{width:56.699840pt;}
._1b{width:58.142720pt;}
._17{width:59.852800pt;}
._3c{width:61.095360pt;}
._39{width:62.097280pt;}
._38{width:63.005760pt;}
._31{width:64.021120pt;}
._2c{width:65.784640pt;}
._44{width:66.693120pt;}
._32{width:71.434667pt;}
._30{width:79.091200pt;}
._2a{width:84.895147pt;}
._26{width:87.695040pt;}
._25{width:89.351680pt;}
._43{width:96.940160pt;}
._34{width:111.447147pt;}
._18{width:114.842560pt;}
._29{width:124.942720pt;}
._2f{width:129.602880pt;}
._21{width:132.504427pt;}
._1d{width:133.725760pt;}
._1c{width:138.890560pt;}
._2e{width:145.837760pt;}
._2b{width:146.971520pt;}
._3d{width:150.593920pt;}
._3b{width:154.762240pt;}
._1a{width:175.325760pt;}
._24{width:184.581760pt;}
._16{width:187.574400pt;}
._45{width:194.311573pt;}
._40{width:203.821760pt;}
._27{width:214.828800pt;}
._19{width:235.136000pt;}
._22{width:263.993600pt;}
._28{width:286.983680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:6.960000pt;}
.yaf{bottom:7.040000pt;}
.yac{bottom:22.560000pt;}
.ya5{bottom:22.640000pt;}
.ya9{bottom:38.240000pt;}
.yae{bottom:38.320000pt;}
.y119{bottom:38.346667pt;}
.yb1{bottom:53.840000pt;}
.ya8{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y196{bottom:99.706667pt;}
.y134{bottom:100.666667pt;}
.yd1{bottom:102.666667pt;}
.yab{bottom:104.506667pt;}
.yff{bottom:105.946667pt;}
.y92{bottom:107.946667pt;}
.y1b6{bottom:111.626667pt;}
.y59{bottom:114.906667pt;}
.y195{bottom:115.306667pt;}
.yd0{bottom:118.266667pt;}
.yfe{bottom:121.546667pt;}
.y91{bottom:123.546667pt;}
.y28{bottom:124.266667pt;}
.y1b5{bottom:127.226667pt;}
.y116{bottom:128.666667pt;}
.y58{bottom:130.586667pt;}
.y133{bottom:132.266667pt;}
.ye4{bottom:133.786667pt;}
.ycf{bottom:133.866667pt;}
.y194{bottom:138.906667pt;}
.y90{bottom:139.226667pt;}
.y27{bottom:139.866667pt;}
.y1b4{bottom:142.826667pt;}
.yfd{bottom:145.226667pt;}
.y57{bottom:146.186667pt;}
.y132{bottom:147.866667pt;}
.ye3{bottom:149.386667pt;}
.yce{bottom:149.546667pt;}
.y193{bottom:154.586667pt;}
.y26{bottom:155.546667pt;}
.yaa{bottom:160.026667pt;}
.y165{bottom:160.106667pt;}
.y8f{bottom:162.826667pt;}
.y131{bottom:163.546667pt;}
.y1b3{bottom:166.506667pt;}
.y25{bottom:171.146667pt;}
.ycd{bottom:173.146667pt;}
.yfc{bottom:176.826667pt;}
.y56{bottom:177.866667pt;}
.y192{bottom:178.186667pt;}
.y130{bottom:179.146667pt;}
.ye2{bottom:180.986667pt;}
.y1b2{bottom:182.106667pt;}
.y164{bottom:183.946667pt;}
.y115{bottom:184.266667pt;}
.y24{bottom:186.746667pt;}
.yfb{bottom:192.426667pt;}
.y55{bottom:193.466667pt;}
.y191{bottom:193.866667pt;}
.y8e{bottom:194.426667pt;}
.y12f{bottom:194.826667pt;}
.ye1{bottom:196.666667pt;}
.y1b1{bottom:197.786667pt;}
.y23{bottom:202.426667pt;}
.ycc{bottom:204.826667pt;}
.yfa{bottom:208.106667pt;}
.y54{bottom:209.066667pt;}
.y190{bottom:209.466667pt;}
.y8d{bottom:210.106667pt;}
.y12e{bottom:210.426667pt;}
.y75{bottom:212.266667pt;}
.y1b0{bottom:213.386667pt;}
.y163{bottom:217.146667pt;}
.ycb{bottom:220.426667pt;}
.y53{bottom:224.746667pt;}
.y8c{bottom:225.706667pt;}
.y22{bottom:226.026667pt;}
.ye0{bottom:227.946667pt;}
.ya7{bottom:231.226667pt;}
.y18f{bottom:233.066667pt;}
.yca{bottom:236.026667pt;}
.y1af{bottom:236.986667pt;}
.yf9{bottom:239.706667pt;}
.y52{bottom:240.346667pt;}
.y8b{bottom:241.386667pt;}
.y12d{bottom:242.026667pt;}
.y114{bottom:243.146667pt;}
.y74{bottom:243.946667pt;}
.yc9{bottom:251.706667pt;}
.y1ae{bottom:252.666667pt;}
.yf8{bottom:255.386667pt;}
.y51{bottom:255.946667pt;}
.y18e{bottom:256.746667pt;}
.y12c{bottom:257.706667pt;}
.y21{bottom:257.946667pt;}
.y73{bottom:259.546667pt;}
.y162{bottom:260.106667pt;}
.yc8{bottom:267.306667pt;}
.y1ad{bottom:268.266667pt;}
.y1d0{bottom:268.666667pt;}
.yf7{bottom:270.986667pt;}
.y18d{bottom:272.346667pt;}
.y8a{bottom:272.986667pt;}
.y12b{bottom:273.306667pt;}
.y113{bottom:274.826667pt;}
.ydf{bottom:275.146667pt;}
.y161{bottom:275.706667pt;}
.y50{bottom:279.626667pt;}
.y1cf{bottom:284.266667pt;}
.y89{bottom:288.586667pt;}
.y12a{bottom:288.986667pt;}
.y112{bottom:290.426667pt;}
.yde{bottom:290.826667pt;}
.y72{bottom:291.146667pt;}
.y160{bottom:291.386667pt;}
.y1ac{bottom:291.946667pt;}
.y18c{bottom:295.946667pt;}
.yc7{bottom:298.986667pt;}
.y1ce{bottom:299.946667pt;}
.y20{bottom:300.906667pt;}
.ya4{bottom:302.426667pt;}
.yf6{bottom:302.586667pt;}
.y88{bottom:304.266667pt;}
.y129{bottom:304.586667pt;}
.ydd{bottom:306.426667pt;}
.y71{bottom:306.826667pt;}
.y15f{bottom:306.986667pt;}
.y1ab{bottom:307.546667pt;}
.y4f{bottom:311.546667pt;}
.y18b{bottom:311.626667pt;}
.yc6{bottom:314.586667pt;}
.y1f{bottom:316.826667pt;}
.yf5{bottom:318.266667pt;}
.y87{bottom:319.866667pt;}
.ydc{bottom:322.106667pt;}
.y70{bottom:322.426667pt;}
.y15e{bottom:322.586667pt;}
.y1aa{bottom:323.146667pt;}
.y1cd{bottom:323.546667pt;}
.y18a{bottom:327.226667pt;}
.yc5{bottom:330.186667pt;}
.yf4{bottom:333.866667pt;}
.y86{bottom:335.546667pt;}
.y128{bottom:336.186667pt;}
.y111{bottom:337.706667pt;}
.y14a{bottom:338.426667pt;}
.y1cc{bottom:339.146667pt;}
.y189{bottom:342.906667pt;}
.ydb{bottom:345.706667pt;}
.yc4{bottom:345.866667pt;}
.y1a9{bottom:346.826667pt;}
.y1e{bottom:349.706667pt;}
.y85{bottom:351.146667pt;}
.y127{bottom:351.866667pt;}
.y110{bottom:353.306667pt;}
.y6f{bottom:354.106667pt;}
.y15d{bottom:354.266667pt;}
.y4e{bottom:354.426667pt;}
.y1cb{bottom:354.826667pt;}
.ya3{bottom:361.306667pt;}
.y1a8{bottom:362.426667pt;}
.y1d{bottom:365.306667pt;}
.yf3{bottom:365.546667pt;}
.y188{bottom:366.506667pt;}
.y126{bottom:367.466667pt;}
.y10f{bottom:368.986667pt;}
.y6e{bottom:369.706667pt;}
.y15c{bottom:369.866667pt;}
.y4d{bottom:370.106667pt;}
.yda{bottom:377.306667pt;}
.yc3{bottom:377.466667pt;}
.y1ca{bottom:378.426667pt;}
.y1c{bottom:380.986667pt;}
.yf2{bottom:381.146667pt;}
.y187{bottom:382.106667pt;}
.y84{bottom:382.746667pt;}
.y125{bottom:383.146667pt;}
.y6d{bottom:385.306667pt;}
.y15b{bottom:385.546667pt;}
.y4c{bottom:385.706667pt;}
.y1a7{bottom:386.106667pt;}
.ya2{bottom:392.986667pt;}
.yc2{bottom:393.146667pt;}
.y1c9{bottom:394.106667pt;}
.y1b{bottom:396.586667pt;}
.yf1{bottom:396.746667pt;}
.y186{bottom:397.786667pt;}
.y83{bottom:398.426667pt;}
.y124{bottom:398.746667pt;}
.y10e{bottom:400.586667pt;}
.y6c{bottom:400.986667pt;}
.y15a{bottom:401.146667pt;}
.y4b{bottom:401.306667pt;}
.y1a6{bottom:401.706667pt;}
.ya1{bottom:408.586667pt;}
.yc1{bottom:408.746667pt;}
.y1c8{bottom:409.706667pt;}
.y1a{bottom:412.266667pt;}
.yf0{bottom:412.426667pt;}
.y82{bottom:414.026667pt;}
.y123{bottom:414.346667pt;}
.y10d{bottom:416.266667pt;}
.y159{bottom:416.746667pt;}
.y149{bottom:416.986667pt;}
.y1a5{bottom:417.306667pt;}
.y185{bottom:421.413333pt;}
.ya0{bottom:424.293333pt;}
.yc0{bottom:424.373333pt;}
.yd9{bottom:424.613333pt;}
.y19{bottom:427.893333pt;}
.yef{bottom:428.053333pt;}
.y81{bottom:429.733333pt;}
.y122{bottom:430.053333pt;}
.y10c{bottom:431.893333pt;}
.y6b{bottom:432.613333pt;}
.y4a{bottom:433.013333pt;}
.y1c7{bottom:433.333333pt;}
.y184{bottom:437.093333pt;}
.ybf{bottom:440.053333pt;}
.yd8{bottom:440.293333pt;}
.y1a4{bottom:441.013333pt;}
.y18{bottom:443.493333pt;}
.y80{bottom:445.333333pt;}
.y10b{bottom:447.493333pt;}
.y6a{bottom:448.293333pt;}
.y158{bottom:448.453333pt;}
.y49{bottom:448.613333pt;}
.y1c6{bottom:449.013333pt;}
.y183{bottom:452.693333pt;}
.y121{bottom:453.653333pt;}
.y9f{bottom:455.893333pt;}
.y1a3{bottom:456.613333pt;}
.y17{bottom:459.173333pt;}
.yee{bottom:459.733333pt;}
.y69{bottom:463.893333pt;}
.y157{bottom:464.053333pt;}
.y48{bottom:464.293333pt;}
.y1c5{bottom:464.613333pt;}
.y10a{bottom:471.173333pt;}
.y9e{bottom:471.493333pt;}
.ybe{bottom:471.653333pt;}
.y1a2{bottom:472.293333pt;}
.y16{bottom:474.773333pt;}
.yed{bottom:475.333333pt;}
.y182{bottom:476.293333pt;}
.y7f{bottom:476.933333pt;}
.y68{bottom:479.493333pt;}
.y156{bottom:479.733333pt;}
.y47{bottom:479.893333pt;}
.y1c4{bottom:480.293333pt;}
.y120{bottom:485.573333pt;}
.yd7{bottom:487.173333pt;}
.ybd{bottom:487.253333pt;}
.y15{bottom:490.373333pt;}
.yec{bottom:490.933333pt;}
.y181{bottom:491.973333pt;}
.y7e{bottom:492.613333pt;}
.y155{bottom:495.333333pt;}
.y46{bottom:495.493333pt;}
.y1a1{bottom:495.893333pt;}
.y109{bottom:502.773333pt;}
.ybc{bottom:502.933333pt;}
.y67{bottom:503.173333pt;}
.y1c3{bottom:503.893333pt;}
.y14{bottom:506.053333pt;}
.yeb{bottom:506.613333pt;}
.y180{bottom:507.573333pt;}
.y7d{bottom:508.213333pt;}
.y154{bottom:510.933333pt;}
.y148{bottom:511.173333pt;}
.y1a0{bottom:511.493333pt;}
.y108{bottom:518.453333pt;}
.ybb{bottom:518.533333pt;}
.y9d{bottom:518.773333pt;}
.y45{bottom:519.173333pt;}
.y1c2{bottom:519.493333pt;}
.y13{bottom:521.653333pt;}
.yea{bottom:522.213333pt;}
.y7c{bottom:523.813333pt;}
.y11f{bottom:526.133333pt;}
.y147{bottom:526.773333pt;}
.y19f{bottom:527.173333pt;}
.y17f{bottom:531.253333pt;}
.y107{bottom:534.053333pt;}
.yba{bottom:534.213333pt;}
.y9c{bottom:534.453333pt;}
.y66{bottom:534.773333pt;}
.y1c1{bottom:535.173333pt;}
.y12{bottom:537.333333pt;}
.ye9{bottom:537.813333pt;}
.y7b{bottom:539.493333pt;}
.y153{bottom:542.613333pt;}
.y17e{bottom:546.853333pt;}
.yb9{bottom:549.813333pt;}
.y9b{bottom:550.053333pt;}
.y65{bottom:550.453333pt;}
.y44{bottom:550.773333pt;}
.y11{bottom:552.933333pt;}
.y7a{bottom:555.093333pt;}
.y152{bottom:558.213333pt;}
.y146{bottom:558.453333pt;}
.y1c0{bottom:558.773333pt;}
.ye8{bottom:561.493333pt;}
.y17d{bottom:562.453333pt;}
.yb8{bottom:565.413333pt;}
.y106{bottom:565.653333pt;}
.y64{bottom:566.053333pt;}
.y43{bottom:566.453333pt;}
.y10{bottom:568.533333pt;}
.y151{bottom:573.813333pt;}
.y145{bottom:574.053333pt;}
.y1bf{bottom:574.453333pt;}
.y79{bottom:578.773333pt;}
.y105{bottom:581.333333pt;}
.y63{bottom:581.653333pt;}
.y11e{bottom:581.733333pt;}
.y42{bottom:582.053333pt;}
.yf{bottom:584.213333pt;}
.y17c{bottom:586.133333pt;}
.yb7{bottom:589.093333pt;}
.y150{bottom:589.493333pt;}
.y144{bottom:589.653333pt;}
.y19e{bottom:590.053333pt;}
.ye7{bottom:593.413333pt;}
.y104{bottom:596.933333pt;}
.y9a{bottom:597.333333pt;}
.y41{bottom:597.653333pt;}
.ye{bottom:599.813333pt;}
.y17b{bottom:601.733333pt;}
.y14f{bottom:605.093333pt;}
.y143{bottom:605.333333pt;}
.y19d{bottom:605.653333pt;}
.y78{bottom:610.693333pt;}
.y99{bottom:612.933333pt;}
.y40{bottom:613.333333pt;}
.y1be{bottom:613.653333pt;}
.yd{bottom:615.493333pt;}
.y14e{bottom:620.773333pt;}
.y142{bottom:620.933333pt;}
.yb6{bottom:621.013333pt;}
.y19c{bottom:621.333333pt;}
.y17a{bottom:625.413333pt;}
.y98{bottom:628.613333pt;}
.y3f{bottom:628.933333pt;}
.y1bd{bottom:629.333333pt;}
.yc{bottom:631.093333pt;}
.ye6{bottom:636.293333pt;}
.y19b{bottom:636.933333pt;}
.y11d{bottom:637.253333pt;}
.y179{bottom:641.013333pt;}
.yd6{bottom:644.213333pt;}
.y3e{bottom:644.613333pt;}
.y14d{bottom:644.693333pt;}
.y1bc{bottom:644.933333pt;}
.y77{bottom:653.573333pt;}
.yb{bottom:655.013333pt;}
.y178{bottom:656.613333pt;}
.y103{bottom:659.813333pt;}
.y62{bottom:660.213333pt;}
.y19a{bottom:660.613333pt;}
.yb5{bottom:661.573333pt;}
.ye5{bottom:664.933333pt;}
.yd5{bottom:667.813333pt;}
.y1bb{bottom:668.613333pt;}
.y102{bottom:675.493333pt;}
.y61{bottom:675.813333pt;}
.y3d{bottom:676.213333pt;}
.y177{bottom:680.293333pt;}
.y76{bottom:682.213333pt;}
.y1ba{bottom:684.213333pt;}
.y14c{bottom:687.573333pt;}
.y60{bottom:691.493333pt;}
.y3c{bottom:691.813333pt;}
.y11c{bottom:692.853333pt;}
.y176{bottom:695.893333pt;}
.ya{bottom:697.893333pt;}
.yd4{bottom:699.493333pt;}
.y1b9{bottom:699.813333pt;}
.y97{bottom:707.093333pt;}
.y3b{bottom:707.493333pt;}
.yd3{bottom:715.093333pt;}
.y199{bottom:715.493333pt;}
.y14b{bottom:716.213333pt;}
.yb4{bottom:717.173333pt;}
.y175{bottom:719.573333pt;}
.y96{bottom:722.693333pt;}
.y3a{bottom:723.093333pt;}
.y9{bottom:729.733333pt;}
.yd2{bottom:730.693333pt;}
.y198{bottom:731.093333pt;}
.y174{bottom:735.173333pt;}
.y101{bottom:738.373333pt;}
.y39{bottom:738.693333pt;}
.y1b8{bottom:739.093333pt;}
.y95{bottom:746.373333pt;}
.y197{bottom:746.693333pt;}
.y11b{bottom:748.373333pt;}
.y173{bottom:750.773333pt;}
.y5f{bottom:754.373333pt;}
.y1b7{bottom:754.693333pt;}
.y8{bottom:761.733333pt;}
.y100{bottom:761.973333pt;}
.y38{bottom:762.373333pt;}
.y5e{bottom:769.973333pt;}
.y141{bottom:770.373333pt;}
.y172{bottom:774.453333pt;}
.y94{bottom:777.973333pt;}
.y5d{bottom:785.653333pt;}
.y140{bottom:785.973333pt;}
.yb3{bottom:788.373333pt;}
.y171{bottom:790.053333pt;}
.y93{bottom:793.653333pt;}
.y37{bottom:793.973333pt;}
.y7{bottom:797.093333pt;}
.y13f{bottom:801.653333pt;}
.y11a{bottom:803.973333pt;}
.y5c{bottom:809.253333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:813.093333pt;}
.y170{bottom:813.733333pt;}
.y35{bottom:825.253333pt;}
.y16f{bottom:829.333333pt;}
.y13e{bottom:833.253333pt;}
.y34{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.yb2{bottom:843.893333pt;}
.y16e{bottom:844.933333pt;}
.y13d{bottom:848.853333pt;}
.y33{bottom:856.533333pt;}
.y118{bottom:859.493333pt;}
.y13c{bottom:864.533333pt;}
.y16d{bottom:868.613333pt;}
.y32{bottom:872.133333pt;}
.y4{bottom:875.893333pt;}
.y13b{bottom:880.133333pt;}
.y16c{bottom:884.213333pt;}
.y5b{bottom:887.813333pt;}
.y3{bottom:897.840000pt;}
.yb0{bottom:899.520000pt;}
.y16b{bottom:899.840000pt;}
.y5a{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.y13a{bottom:911.840000pt;}
.y117{bottom:915.120000pt;}
.y30{bottom:919.440000pt;}
.y16a{bottom:923.520000pt;}
.y139{bottom:927.440000pt;}
.y2f{bottom:935.040000pt;}
.y169{bottom:939.120000pt;}
.y138{bottom:943.040000pt;}
.y2e{bottom:950.720000pt;}
.y137{bottom:958.720000pt;}
.y168{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.yad{bottom:970.640000pt;}
.y136{bottom:974.320000pt;}
.y167{bottom:978.400000pt;}
.y135{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y166{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.ha{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:54.880000pt;}
.hf{height:54.906667pt;}
.h11{height:54.927899pt;}
.hd{height:54.960000pt;}
.h10{height:54.986667pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:70.480000pt;}
.hb{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:107.946667pt;}
.w8{width:118.826667pt;}
.w4{width:127.200000pt;}
.w9{width:135.200000pt;}
.w6{width:135.946667pt;}
.w5{width:139.680000pt;}
.w7{width:158.320000pt;}
.wa{width:175.946667pt;}
.wb{width:239.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.x5{left:125.439988pt;}
.xc{left:153.306655pt;}
.x7{left:169.786667pt;}
.xd{left:180.666667pt;}
.x2{left:187.626655pt;}
.x10{left:208.026655pt;}
.x8{left:297.626667pt;}
.xe{left:316.506667pt;}
.x9{left:437.946667pt;}
.xf{left:493.093333pt;}
.xa{left:574.533333pt;}
.xb{left:695.013322pt;}
.x4{left:700.053322pt;}
.x3{left:711.413322pt;}
}




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