
    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_0111276f4b04a0843d4fd826.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_6da7d023a6064f05cdd0c25d.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_f94b1c6e41917ac8306e913f.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_e71d8d94979a822d25e605e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_abe0d341040817c7faae1e23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m2{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);}
.v6{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.776000px;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.385800px;}
.ls3{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.334200px;}
.ls4{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.089400px;}
.ls10{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.219000px;}
.lsf{letter-spacing:0.220800px;}
.ls7{letter-spacing:0.305400px;}
.lse{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.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.000000px;}
.wsa{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.174200px;}
.wsf{word-spacing:-16.059000px;}
.wsd{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.505800px;}
.ws12{word-spacing:-15.454200px;}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.440800px;}
.ws16{word-spacing:-14.220000px;}
.wsb{word-spacing:-14.064000px;}
.ws17{word-spacing:-13.860000px;}
.ws11{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.529400px;}
.ws7{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:212.700000px;}
._19{margin-left:-5.111520px;}
._12{margin-left:-3.958080px;}
._7{margin-left:-2.533440px;}
._0{margin-left:-1.324800px;}
._1{width:1.020000px;}
._2{width:2.720640px;}
._5{width:4.541760px;}
._13{width:5.542560px;}
._6{width:6.808560px;}
._3{width:8.007840px;}
._4{width:9.011520px;}
._8{width:10.107600px;}
._16{width:11.459520px;}
._15{width:12.585600px;}
._18{width:13.761120px;}
._14{width:14.771520px;}
._a{width:17.569440px;}
._9{width:18.884160px;}
._17{width:20.758080px;}
._11{width:22.230720px;}
._10{width:23.246640px;}
._1a{width:24.520320px;}
._e{width:26.104560px;}
._d{width:27.131040px;}
._c{width:29.786160px;}
._b{width:31.766640px;}
._f{width:69.735840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fsb{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsa{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs7{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.240000px;}
.yaf{bottom:3.420000px;}
.yad{bottom:4.500000px;}
.y11{bottom:14.400000px;}
.y18{bottom:21.240000px;}
.y11c{bottom:23.145000px;}
.y2f{bottom:29.340000px;}
.y17{bottom:38.520000px;}
.y11a{bottom:42.810000px;}
.y2e{bottom:46.620000px;}
.y16{bottom:55.650000px;}
.y2d{bottom:63.900000px;}
.y111{bottom:63.930000px;}
.y15{bottom:72.930000px;}
.y2c{bottom:81.225000px;}
.y14{bottom:90.210000px;}
.y112{bottom:94.395000px;}
.y19{bottom:95.430000px;}
.y2b{bottom:98.505000px;}
.y13{bottom:105.150000px;}
.y121{bottom:109.005000px;}
.y2a{bottom:115.785000px;}
.y113{bottom:124.815000px;}
.y11b{bottom:128.955000px;}
.y29{bottom:132.885000px;}
.y120{bottom:140.970000px;}
.y38{bottom:142.065000px;}
.y28{bottom:150.165000px;}
.y114{bottom:155.235000px;}
.ya6{bottom:158.760000px;}
.y37{bottom:159.345000px;}
.y42{bottom:162.930000px;}
.y18e{bottom:167.430000px;}
.y27{bottom:167.445000px;}
.y10f{bottom:168.690000px;}
.y11f{bottom:172.950000px;}
.y36{bottom:176.445000px;}
.ya5{bottom:176.970000px;}
.y41{bottom:182.010000px;}
.y18d{bottom:183.810000px;}
.y26{bottom:184.725000px;}
.y115{bottom:185.655000px;}
.y10e{bottom:186.870000px;}
.y159{bottom:189.570000px;}
.yb8{bottom:190.650000px;}
.y35{bottom:193.725000px;}
.y76{bottom:194.970000px;}
.ya4{bottom:195.150000px;}
.y40{bottom:200.910000px;}
.y25{bottom:202.005000px;}
.y18c{bottom:204.690000px;}
.y10d{bottom:204.870000px;}
.y11e{bottom:204.915000px;}
.y158{bottom:205.950000px;}
.yb7{bottom:208.830000px;}
.y34{bottom:211.005000px;}
.ya3{bottom:213.150000px;}
.y75{bottom:214.050000px;}
.y116{bottom:216.105000px;}
.y24{bottom:219.285000px;}
.y3f{bottom:219.990000px;}
.y18b{bottom:221.070000px;}
.y10c{bottom:223.050000px;}
.yb6{bottom:226.830000px;}
.y33{bottom:228.285000px;}
.ya2{bottom:231.330000px;}
.y74{bottom:233.130000px;}
.y13a{bottom:235.830000px;}
.y23{bottom:236.385000px;}
.ye3{bottom:236.730000px;}
.y11d{bottom:236.880000px;}
.y3e{bottom:238.890000px;}
.y10b{bottom:241.050000px;}
.y18a{bottom:241.950000px;}
.y157{bottom:243.210000px;}
.yb5{bottom:245.010000px;}
.y32{bottom:245.565000px;}
.y117{bottom:246.525000px;}
.ya1{bottom:249.510000px;}
.y39{bottom:250.785000px;}
.y73{bottom:252.030000px;}
.y22{bottom:253.665000px;}
.y139{bottom:254.010000px;}
.ye2{bottom:254.910000px;}
.y3d{bottom:257.790000px;}
.y189{bottom:258.330000px;}
.y10a{bottom:259.230000px;}
.y31{bottom:260.505000px;}
.yb4{bottom:263.010000px;}
.y156{bottom:264.090000px;}
.y21{bottom:270.945000px;}
.y72{bottom:271.110000px;}
.y138{bottom:272.010000px;}
.ye1{bottom:272.910000px;}
.ya0{bottom:276.690000px;}
.y3c{bottom:276.870000px;}
.y118{bottom:276.945000px;}
.y109{bottom:277.410000px;}
.y188{bottom:279.210000px;}
.y155{bottom:280.470000px;}
.y20{bottom:288.225000px;}
.y71{bottom:290.010000px;}
.y137{bottom:290.190000px;}
.yb3{bottom:290.370000px;}
.ye0{bottom:291.090000px;}
.y108{bottom:295.410000px;}
.y187{bottom:295.590000px;}
.y154{bottom:301.350000px;}
.y9f{bottom:304.410000px;}
.y3b{bottom:304.590000px;}
.y1f{bottom:305.505000px;}
.y119{bottom:307.365000px;}
.y136{bottom:308.190000px;}
.y70{bottom:308.910000px;}
.ydf{bottom:309.090000px;}
.y186{bottom:311.970000px;}
.y107{bottom:314.310000px;}
.y153{bottom:317.730000px;}
.yb2{bottom:318.090000px;}
.y9e{bottom:322.590000px;}
.y1e{bottom:322.635000px;}
.y3a{bottom:323.310000px;}
.y135{bottom:326.370000px;}
.y6f{bottom:327.990000px;}
.y185{bottom:332.850000px;}
.y1ad{bottom:333.930000px;}
.y152{bottom:334.110000px;}
.yde{bottom:336.270000px;}
.y1a{bottom:339.690000px;}
.y1d{bottom:339.915000px;}
.y9d{bottom:340.770000px;}
.yb1{bottom:341.850000px;}
.y134{bottom:344.550000px;}
.y106{bottom:345.450000px;}
.y6e{bottom:346.890000px;}
.y184{bottom:349.230000px;}
.y151{bottom:350.490000px;}
.y1c{bottom:357.195000px;}
.y1ac{bottom:358.230000px;}
.y9c{bottom:358.770000px;}
.y133{bottom:362.550000px;}
.ydd{bottom:363.270000px;}
.y183{bottom:370.110000px;}
.y6d{bottom:370.290000px;}
.y1b{bottom:372.135000px;}
.y105{bottom:372.630000px;}
.ycf{bottom:374.430000px;}
.y1ab{bottom:374.610000px;}
.y9b{bottom:376.950000px;}
.y150{bottom:385.410000px;}
.y182{bottom:386.490000px;}
.ydc{bottom:387.030000px;}
.y6c{bottom:389.370000px;}
.y132{bottom:389.730000px;}
.y104{bottom:390.810000px;}
.yce{bottom:392.610000px;}
.y1aa{bottom:395.490000px;}
.y181{bottom:407.415000px;}
.y6b{bottom:408.315000px;}
.y103{bottom:409.035000px;}
.ycd{bottom:410.835000px;}
.y1a9{bottom:411.915000px;}
.y14f{bottom:413.355000px;}
.y9a{bottom:413.715000px;}
.y131{bottom:417.675000px;}
.y180{bottom:423.795000px;}
.y102{bottom:427.035000px;}
.y6a{bottom:427.395000px;}
.ycc{bottom:429.015000px;}
.y1a8{bottom:432.795000px;}
.y17f{bottom:440.175000px;}
.y130{bottom:441.255000px;}
.y14e{bottom:441.435000px;}
.y99{bottom:441.615000px;}
.y101{bottom:445.215000px;}
.y69{bottom:446.295000px;}
.ycb{bottom:447.015000px;}
.y1a7{bottom:449.175000px;}
.y17e{bottom:461.055000px;}
.y100{bottom:463.395000px;}
.yca{bottom:465.195000px;}
.y68{bottom:465.375000px;}
.y1a6{bottom:465.555000px;}
.y14d{bottom:469.155000px;}
.y17d{bottom:477.435000px;}
.y98{bottom:478.695000px;}
.yff{bottom:481.395000px;}
.yc9{bottom:483.195000px;}
.y67{bottom:484.275000px;}
.y1a5{bottom:486.435000px;}
.y14c{bottom:487.335000px;}
.y97{bottom:497.775000px;}
.y17c{bottom:498.315000px;}
.yfe{bottom:499.575000px;}
.y1a4{bottom:502.815000px;}
.y14b{bottom:505.515000px;}
.y66{bottom:507.495000px;}
.yc8{bottom:510.375000px;}
.y17b{bottom:514.695000px;}
.y96{bottom:516.675000px;}
.yfd{bottom:517.575000px;}
.y14a{bottom:523.515000px;}
.y1a3{bottom:523.695000px;}
.y65{bottom:526.755000px;}
.y17a{bottom:531.075000px;}
.yfc{bottom:535.755000px;}
.yc7{bottom:538.275000px;}
.y95{bottom:540.075000px;}
.y149{bottom:541.695000px;}
.y64{bottom:545.655000px;}
.y179{bottom:551.955000px;}
.yfb{bottom:553.935000px;}
.y94{bottom:559.155000px;}
.y148{bottom:559.875000px;}
.y1a2{bottom:560.955000px;}
.yc6{bottom:562.035000px;}
.y63{bottom:564.735000px;}
.y178{bottom:568.335000px;}
.yfa{bottom:571.935000px;}
.y1a1{bottom:577.335000px;}
.y147{bottom:577.875000px;}
.y93{bottom:578.235000px;}
.y62{bottom:583.635000px;}
.y177{bottom:589.215000px;}
.yf9{bottom:590.115000px;}
.y146{bottom:596.055000px;}
.y92{bottom:597.135000px;}
.y1a0{bottom:598.215000px;}
.y61{bottom:602.535000px;}
.y176{bottom:605.595000px;}
.y12{bottom:606.675000px;}
.yf8{bottom:608.115000px;}
.y145{bottom:614.055000px;}
.y19f{bottom:614.595000px;}
.y91{bottom:616.035000px;}
.y60{bottom:621.615000px;}
.y175{bottom:621.975000px;}
.yf7{bottom:626.295000px;}
.y19e{bottom:630.975000px;}
.y144{bottom:632.235000px;}
.y90{bottom:635.115000px;}
.y174{bottom:643.035000px;}
.yf6{bottom:644.475000px;}
.y5f{bottom:644.835000px;}
.y143{bottom:650.415000px;}
.y19d{bottom:652.035000px;}
.y8f{bottom:654.045000px;}
.y173{bottom:659.445000px;}
.ydb{bottom:661.245000px;}
.yf5{bottom:662.505000px;}
.y5e{bottom:664.125000px;}
.y142{bottom:668.445000px;}
.y8e{bottom:673.125000px;}
.yda{bottom:679.425000px;}
.y172{bottom:680.325000px;}
.yf4{bottom:680.685000px;}
.y5d{bottom:683.025000px;}
.y141{bottom:686.625000px;}
.y19c{bottom:689.325000px;}
.y8d{bottom:692.025000px;}
.y171{bottom:696.705000px;}
.yd9{bottom:697.605000px;}
.yf3{bottom:698.865000px;}
.y5c{bottom:701.925000px;}
.y140{bottom:704.805000px;}
.y19b{bottom:705.705000px;}
.y8c{bottom:710.925000px;}
.yd8{bottom:715.605000px;}
.yf2{bottom:716.865000px;}
.y170{bottom:717.585000px;}
.y10{bottom:718.305000px;}
.y5b{bottom:721.005000px;}
.y13f{bottom:722.805000px;}
.y19a{bottom:726.585000px;}
.y8b{bottom:730.005000px;}
.yd7{bottom:733.785000px;}
.y16f{bottom:733.965000px;}
.yf1{bottom:735.045000px;}
.y13e{bottom:740.985000px;}
.y199{bottom:742.965000px;}
.y5a{bottom:744.225000px;}
.y8a{bottom:748.905000px;}
.yd6{bottom:751.785000px;}
.y16e{bottom:754.845000px;}
.y198{bottom:759.345000px;}
.yf0{bottom:762.225000px;}
.yf{bottom:762.765000px;}
.y59{bottom:763.485000px;}
.y89{bottom:767.985000px;}
.y13d{bottom:768.165000px;}
.yd5{bottom:769.965000px;}
.y16d{bottom:771.225000px;}
.yb0{bottom:773.925000px;}
.ye{bottom:780.045000px;}
.y197{bottom:780.225000px;}
.y58{bottom:782.385000px;}
.y88{bottom:786.885000px;}
.yd4{bottom:788.145000px;}
.yef{bottom:789.945000px;}
.yae{bottom:792.105000px;}
.y13c{bottom:795.885000px;}
.y196{bottom:796.605000px;}
.yd{bottom:797.325000px;}
.y57{bottom:801.465000px;}
.y87{bottom:805.965000px;}
.yd3{bottom:806.145000px;}
.y16c{bottom:808.485000px;}
.y110{bottom:808.560000px;}
.yac{bottom:810.105000px;}
.y195{bottom:812.985000px;}
.yc{bottom:815.145000px;}
.y13b{bottom:819.645000px;}
.y56{bottom:820.365000px;}
.y86{bottom:824.865000px;}
.y16b{bottom:829.365000px;}
.yd2{bottom:833.325000px;}
.y194{bottom:833.865000px;}
.yee{bottom:835.305000px;}
.y55{bottom:839.265000px;}
.yb{bottom:840.345000px;}
.y85{bottom:843.765000px;}
.y16a{bottom:845.745000px;}
.y193{bottom:850.245000px;}
.yc5{bottom:851.145000px;}
.ya{bottom:852.405000px;}
.y54{bottom:858.345000px;}
.yd1{bottom:861.225000px;}
.yed{bottom:862.305000px;}
.y84{bottom:862.845000px;}
.y169{bottom:866.625000px;}
.yc4{bottom:869.325000px;}
.y9{bottom:869.685000px;}
.y12f{bottom:870.045000px;}
.y53{bottom:877.245000px;}
.y83{bottom:881.745000px;}
.y168{bottom:883.005000px;}
.yd0{bottom:884.805000px;}
.yc3{bottom:887.505000px;}
.y12e{bottom:888.225000px;}
.yec{bottom:889.485000px;}
.y52{bottom:896.325000px;}
.y167{bottom:899.385000px;}
.y82{bottom:900.870000px;}
.y192{bottom:903.930000px;}
.yc2{bottom:905.550000px;}
.y8{bottom:905.730000px;}
.y12d{bottom:906.450000px;}
.y51{bottom:915.270000px;}
.yeb{bottom:916.710000px;}
.y81{bottom:919.770000px;}
.y166{bottom:920.310000px;}
.yc1{bottom:923.730000px;}
.y12c{bottom:924.450000px;}
.y50{bottom:934.170000px;}
.y165{bottom:936.690000px;}
.y191{bottom:941.190000px;}
.yc0{bottom:941.910000px;}
.y12b{bottom:942.630000px;}
.y80{bottom:942.990000px;}
.yea{bottom:943.710000px;}
.y7{bottom:944.430000px;}
.y164{bottom:953.070000px;}
.y4f{bottom:953.250000px;}
.y190{bottom:957.570000px;}
.ybf{bottom:959.910000px;}
.y12a{bottom:960.630000px;}
.y7f{bottom:962.250000px;}
.y6{bottom:965.130000px;}
.ye9{bottom:970.890000px;}
.y163{bottom:973.950000px;}
.y4e{bottom:976.470000px;}
.ybe{bottom:978.090000px;}
.y129{bottom:978.810000px;}
.y7e{bottom:981.150000px;}
.y162{bottom:990.330000px;}
.y18f{bottom:994.830000px;}
.y4d{bottom:995.730000px;}
.ybd{bottom:996.270000px;}
.y128{bottom:996.990000px;}
.ye8{bottom:997.890000px;}
.y7d{bottom:1000.230000px;}
.y5{bottom:1003.830000px;}
.y161{bottom:1011.210000px;}
.ybc{bottom:1014.270000px;}
.y4c{bottom:1014.630000px;}
.y127{bottom:1014.990000px;}
.y7c{bottom:1019.130000px;}
.ye7{bottom:1025.070000px;}
.y160{bottom:1027.590000px;}
.ybb{bottom:1032.450000px;}
.y126{bottom:1033.170000px;}
.y4b{bottom:1033.530000px;}
.y7b{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y15f{bottom:1048.470000px;}
.y125{bottom:1051.350000px;}
.ye6{bottom:1052.250000px;}
.y4a{bottom:1052.610000px;}
.y7a{bottom:1057.110000px;}
.yba{bottom:1059.630000px;}
.yab{bottom:1061.070000px;}
.y15e{bottom:1064.850000px;}
.y124{bottom:1069.350000px;}
.y49{bottom:1071.510000px;}
.y79{bottom:1076.010000px;}
.yaa{bottom:1079.250000px;}
.y15d{bottom:1081.230000px;}
.yb9{bottom:1087.530000px;}
.y48{bottom:1090.590000px;}
.y78{bottom:1095.090000px;}
.ya9{bottom:1097.430000px;}
.y15c{bottom:1102.110000px;}
.y123{bottom:1105.530000px;}
.ye5{bottom:1106.430000px;}
.y47{bottom:1113.810000px;}
.y77{bottom:1113.990000px;}
.ya8{bottom:1115.430000px;}
.y15b{bottom:1118.490000px;}
.y122{bottom:1132.710000px;}
.y46{bottom:1132.890000px;}
.ye4{bottom:1133.430000px;}
.ya7{bottom:1133.610000px;}
.y15a{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hd{height:17.657227px;}
.h16{height:18.000000px;}
.h17{height:18.180000px;}
.h7{height:38.158594px;}
.ha{height:40.500000px;}
.h14{height:45.818438px;}
.h10{height:49.255313px;}
.h1a{height:55.824609px;}
.h1b{height:57.324375px;}
.he{height:58.621992px;}
.h6{height:58.651172px;}
.h5{height:59.038594px;}
.h9{height:60.226875px;}
.h13{height:62.184375px;}
.h18{height:63.855000px;}
.h2{height:65.010937px;}
.hb{height:66.757500px;}
.h8{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.hc{height:109.476000px;}
.h12{height:153.341016px;}
.h15{height:238.530000px;}
.h11{height:264.630000px;}
.h19{height:323.100000px;}
.hf{height:376.455000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.wa{width:94.500000px;}
.w6{width:200.910000px;}
.w9{width:209.010000px;}
.w7{width:223.275000px;}
.w3{width:237.810000px;}
.w5{width:407.055000px;}
.w8{width:424.185000px;}
.wb{width:570.780000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x22{left:19.440000px;}
.x20{left:30.885000px;}
.x1f{left:39.885000px;}
.x12{left:65.385000px;}
.x13{left:76.890000px;}
.x14{left:81.405000px;}
.x21{left:93.060000px;}
.x5{left:108.035987px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x1e{left:154.620000px;}
.xc{left:173.189987px;}
.xa{left:185.430000px;}
.xf{left:191.565000px;}
.x11{left:215.175000px;}
.x25{left:245.729987px;}
.xe{left:262.830000px;}
.x16{left:270.029987px;}
.x1b{left:286.994987px;}
.x1c{left:294.915000px;}
.x18{left:310.574987px;}
.x3{left:314.354987px;}
.x27{left:317.054987px;}
.x8{left:360.615000px;}
.xd{left:375.374987px;}
.x9{left:378.255000px;}
.x23{left:415.155000px;}
.x10{left:463.755000px;}
.x1d{left:503.925000px;}
.x17{left:711.329987px;}
.x24{left:713.309987px;}
.x19{left:715.469987px;}
.x26{left:718.349987px;}
.x1a{left:730.229987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
.x15{left:792.149987px;}
@media print{
.v6{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.578667pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.342933pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.297067pt;}
.ls4{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.079467pt;}
.ls10{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.194667pt;}
.lsf{letter-spacing:0.196267pt;}
.ls7{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.377067pt;}
.wsf{word-spacing:-14.274667pt;}
.wsd{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.782933pt;}
.ws12{word-spacing:-13.737067pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.836267pt;}
.ws16{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.501333pt;}
.ws17{word-spacing:-12.320000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.359467pt;}
.ws7{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:189.066667pt;}
._19{margin-left:-4.543573pt;}
._12{margin-left:-3.518293pt;}
._7{margin-left:-2.251947pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.906667pt;}
._2{width:2.418347pt;}
._5{width:4.037120pt;}
._13{width:4.926720pt;}
._6{width:6.052053pt;}
._3{width:7.118080pt;}
._4{width:8.010240pt;}
._8{width:8.984533pt;}
._16{width:10.186240pt;}
._15{width:11.187200pt;}
._18{width:12.232107pt;}
._14{width:13.130240pt;}
._a{width:15.617280pt;}
._9{width:16.785920pt;}
._17{width:18.451627pt;}
._11{width:19.760640pt;}
._10{width:20.663680pt;}
._1a{width:21.795840pt;}
._e{width:23.204053pt;}
._d{width:24.116480pt;}
._c{width:26.476587pt;}
._b{width:28.237013pt;}
._f{width:61.987413pt;}
.fs6{font-size:16.000000pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsa{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs7{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.880000pt;}
.yaf{bottom:3.040000pt;}
.yad{bottom:4.000000pt;}
.y11{bottom:12.800000pt;}
.y18{bottom:18.880000pt;}
.y11c{bottom:20.573333pt;}
.y2f{bottom:26.080000pt;}
.y17{bottom:34.240000pt;}
.y11a{bottom:38.053333pt;}
.y2e{bottom:41.440000pt;}
.y16{bottom:49.466667pt;}
.y2d{bottom:56.800000pt;}
.y111{bottom:56.826667pt;}
.y15{bottom:64.826667pt;}
.y2c{bottom:72.200000pt;}
.y14{bottom:80.186667pt;}
.y112{bottom:83.906667pt;}
.y19{bottom:84.826667pt;}
.y2b{bottom:87.560000pt;}
.y13{bottom:93.466667pt;}
.y121{bottom:96.893333pt;}
.y2a{bottom:102.920000pt;}
.y113{bottom:110.946667pt;}
.y11b{bottom:114.626667pt;}
.y29{bottom:118.120000pt;}
.y120{bottom:125.306667pt;}
.y38{bottom:126.280000pt;}
.y28{bottom:133.480000pt;}
.y114{bottom:137.986667pt;}
.ya6{bottom:141.120000pt;}
.y37{bottom:141.640000pt;}
.y42{bottom:144.826667pt;}
.y18e{bottom:148.826667pt;}
.y27{bottom:148.840000pt;}
.y10f{bottom:149.946667pt;}
.y11f{bottom:153.733333pt;}
.y36{bottom:156.840000pt;}
.ya5{bottom:157.306667pt;}
.y41{bottom:161.786667pt;}
.y18d{bottom:163.386667pt;}
.y26{bottom:164.200000pt;}
.y115{bottom:165.026667pt;}
.y10e{bottom:166.106667pt;}
.y159{bottom:168.506667pt;}
.yb8{bottom:169.466667pt;}
.y35{bottom:172.200000pt;}
.y76{bottom:173.306667pt;}
.ya4{bottom:173.466667pt;}
.y40{bottom:178.586667pt;}
.y25{bottom:179.560000pt;}
.y18c{bottom:181.946667pt;}
.y10d{bottom:182.106667pt;}
.y11e{bottom:182.146667pt;}
.y158{bottom:183.066667pt;}
.yb7{bottom:185.626667pt;}
.y34{bottom:187.560000pt;}
.ya3{bottom:189.466667pt;}
.y75{bottom:190.266667pt;}
.y116{bottom:192.093333pt;}
.y24{bottom:194.920000pt;}
.y3f{bottom:195.546667pt;}
.y18b{bottom:196.506667pt;}
.y10c{bottom:198.266667pt;}
.yb6{bottom:201.626667pt;}
.y33{bottom:202.920000pt;}
.ya2{bottom:205.626667pt;}
.y74{bottom:207.226667pt;}
.y13a{bottom:209.626667pt;}
.y23{bottom:210.120000pt;}
.ye3{bottom:210.426667pt;}
.y11d{bottom:210.560000pt;}
.y3e{bottom:212.346667pt;}
.y10b{bottom:214.266667pt;}
.y18a{bottom:215.066667pt;}
.y157{bottom:216.186667pt;}
.yb5{bottom:217.786667pt;}
.y32{bottom:218.280000pt;}
.y117{bottom:219.133333pt;}
.ya1{bottom:221.786667pt;}
.y39{bottom:222.920000pt;}
.y73{bottom:224.026667pt;}
.y22{bottom:225.480000pt;}
.y139{bottom:225.786667pt;}
.ye2{bottom:226.586667pt;}
.y3d{bottom:229.146667pt;}
.y189{bottom:229.626667pt;}
.y10a{bottom:230.426667pt;}
.y31{bottom:231.560000pt;}
.yb4{bottom:233.786667pt;}
.y156{bottom:234.746667pt;}
.y21{bottom:240.840000pt;}
.y72{bottom:240.986667pt;}
.y138{bottom:241.786667pt;}
.ye1{bottom:242.586667pt;}
.ya0{bottom:245.946667pt;}
.y3c{bottom:246.106667pt;}
.y118{bottom:246.173333pt;}
.y109{bottom:246.586667pt;}
.y188{bottom:248.186667pt;}
.y155{bottom:249.306667pt;}
.y20{bottom:256.200000pt;}
.y71{bottom:257.786667pt;}
.y137{bottom:257.946667pt;}
.yb3{bottom:258.106667pt;}
.ye0{bottom:258.746667pt;}
.y108{bottom:262.586667pt;}
.y187{bottom:262.746667pt;}
.y154{bottom:267.866667pt;}
.y9f{bottom:270.586667pt;}
.y3b{bottom:270.746667pt;}
.y1f{bottom:271.560000pt;}
.y119{bottom:273.213333pt;}
.y136{bottom:273.946667pt;}
.y70{bottom:274.586667pt;}
.ydf{bottom:274.746667pt;}
.y186{bottom:277.306667pt;}
.y107{bottom:279.386667pt;}
.y153{bottom:282.426667pt;}
.yb2{bottom:282.746667pt;}
.y9e{bottom:286.746667pt;}
.y1e{bottom:286.786667pt;}
.y3a{bottom:287.386667pt;}
.y135{bottom:290.106667pt;}
.y6f{bottom:291.546667pt;}
.y185{bottom:295.866667pt;}
.y1ad{bottom:296.826667pt;}
.y152{bottom:296.986667pt;}
.yde{bottom:298.906667pt;}
.y1a{bottom:301.946667pt;}
.y1d{bottom:302.146667pt;}
.y9d{bottom:302.906667pt;}
.yb1{bottom:303.866667pt;}
.y134{bottom:306.266667pt;}
.y106{bottom:307.066667pt;}
.y6e{bottom:308.346667pt;}
.y184{bottom:310.426667pt;}
.y151{bottom:311.546667pt;}
.y1c{bottom:317.506667pt;}
.y1ac{bottom:318.426667pt;}
.y9c{bottom:318.906667pt;}
.y133{bottom:322.266667pt;}
.ydd{bottom:322.906667pt;}
.y183{bottom:328.986667pt;}
.y6d{bottom:329.146667pt;}
.y1b{bottom:330.786667pt;}
.y105{bottom:331.226667pt;}
.ycf{bottom:332.826667pt;}
.y1ab{bottom:332.986667pt;}
.y9b{bottom:335.066667pt;}
.y150{bottom:342.586667pt;}
.y182{bottom:343.546667pt;}
.ydc{bottom:344.026667pt;}
.y6c{bottom:346.106667pt;}
.y132{bottom:346.426667pt;}
.y104{bottom:347.386667pt;}
.yce{bottom:348.986667pt;}
.y1aa{bottom:351.546667pt;}
.y181{bottom:362.146667pt;}
.y6b{bottom:362.946667pt;}
.y103{bottom:363.586667pt;}
.ycd{bottom:365.186667pt;}
.y1a9{bottom:366.146667pt;}
.y14f{bottom:367.426667pt;}
.y9a{bottom:367.746667pt;}
.y131{bottom:371.266667pt;}
.y180{bottom:376.706667pt;}
.y102{bottom:379.586667pt;}
.y6a{bottom:379.906667pt;}
.ycc{bottom:381.346667pt;}
.y1a8{bottom:384.706667pt;}
.y17f{bottom:391.266667pt;}
.y130{bottom:392.226667pt;}
.y14e{bottom:392.386667pt;}
.y99{bottom:392.546667pt;}
.y101{bottom:395.746667pt;}
.y69{bottom:396.706667pt;}
.ycb{bottom:397.346667pt;}
.y1a7{bottom:399.266667pt;}
.y17e{bottom:409.826667pt;}
.y100{bottom:411.906667pt;}
.yca{bottom:413.506667pt;}
.y68{bottom:413.666667pt;}
.y1a6{bottom:413.826667pt;}
.y14d{bottom:417.026667pt;}
.y17d{bottom:424.386667pt;}
.y98{bottom:425.506667pt;}
.yff{bottom:427.906667pt;}
.yc9{bottom:429.506667pt;}
.y67{bottom:430.466667pt;}
.y1a5{bottom:432.386667pt;}
.y14c{bottom:433.186667pt;}
.y97{bottom:442.466667pt;}
.y17c{bottom:442.946667pt;}
.yfe{bottom:444.066667pt;}
.y1a4{bottom:446.946667pt;}
.y14b{bottom:449.346667pt;}
.y66{bottom:451.106667pt;}
.yc8{bottom:453.666667pt;}
.y17b{bottom:457.506667pt;}
.y96{bottom:459.266667pt;}
.yfd{bottom:460.066667pt;}
.y14a{bottom:465.346667pt;}
.y1a3{bottom:465.506667pt;}
.y65{bottom:468.226667pt;}
.y17a{bottom:472.066667pt;}
.yfc{bottom:476.226667pt;}
.yc7{bottom:478.466667pt;}
.y95{bottom:480.066667pt;}
.y149{bottom:481.506667pt;}
.y64{bottom:485.026667pt;}
.y179{bottom:490.626667pt;}
.yfb{bottom:492.386667pt;}
.y94{bottom:497.026667pt;}
.y148{bottom:497.666667pt;}
.y1a2{bottom:498.626667pt;}
.yc6{bottom:499.586667pt;}
.y63{bottom:501.986667pt;}
.y178{bottom:505.186667pt;}
.yfa{bottom:508.386667pt;}
.y1a1{bottom:513.186667pt;}
.y147{bottom:513.666667pt;}
.y93{bottom:513.986667pt;}
.y62{bottom:518.786667pt;}
.y177{bottom:523.746667pt;}
.yf9{bottom:524.546667pt;}
.y146{bottom:529.826667pt;}
.y92{bottom:530.786667pt;}
.y1a0{bottom:531.746667pt;}
.y61{bottom:535.586667pt;}
.y176{bottom:538.306667pt;}
.y12{bottom:539.266667pt;}
.yf8{bottom:540.546667pt;}
.y145{bottom:545.826667pt;}
.y19f{bottom:546.306667pt;}
.y91{bottom:547.586667pt;}
.y60{bottom:552.546667pt;}
.y175{bottom:552.866667pt;}
.yf7{bottom:556.706667pt;}
.y19e{bottom:560.866667pt;}
.y144{bottom:561.986667pt;}
.y90{bottom:564.546667pt;}
.y174{bottom:571.586667pt;}
.yf6{bottom:572.866667pt;}
.y5f{bottom:573.186667pt;}
.y143{bottom:578.146667pt;}
.y19d{bottom:579.586667pt;}
.y8f{bottom:581.373333pt;}
.y173{bottom:586.173333pt;}
.ydb{bottom:587.773333pt;}
.yf5{bottom:588.893333pt;}
.y5e{bottom:590.333333pt;}
.y142{bottom:594.173333pt;}
.y8e{bottom:598.333333pt;}
.yda{bottom:603.933333pt;}
.y172{bottom:604.733333pt;}
.yf4{bottom:605.053333pt;}
.y5d{bottom:607.133333pt;}
.y141{bottom:610.333333pt;}
.y19c{bottom:612.733333pt;}
.y8d{bottom:615.133333pt;}
.y171{bottom:619.293333pt;}
.yd9{bottom:620.093333pt;}
.yf3{bottom:621.213333pt;}
.y5c{bottom:623.933333pt;}
.y140{bottom:626.493333pt;}
.y19b{bottom:627.293333pt;}
.y8c{bottom:631.933333pt;}
.yd8{bottom:636.093333pt;}
.yf2{bottom:637.213333pt;}
.y170{bottom:637.853333pt;}
.y10{bottom:638.493333pt;}
.y5b{bottom:640.893333pt;}
.y13f{bottom:642.493333pt;}
.y19a{bottom:645.853333pt;}
.y8b{bottom:648.893333pt;}
.yd7{bottom:652.253333pt;}
.y16f{bottom:652.413333pt;}
.yf1{bottom:653.373333pt;}
.y13e{bottom:658.653333pt;}
.y199{bottom:660.413333pt;}
.y5a{bottom:661.533333pt;}
.y8a{bottom:665.693333pt;}
.yd6{bottom:668.253333pt;}
.y16e{bottom:670.973333pt;}
.y198{bottom:674.973333pt;}
.yf0{bottom:677.533333pt;}
.yf{bottom:678.013333pt;}
.y59{bottom:678.653333pt;}
.y89{bottom:682.653333pt;}
.y13d{bottom:682.813333pt;}
.yd5{bottom:684.413333pt;}
.y16d{bottom:685.533333pt;}
.yb0{bottom:687.933333pt;}
.ye{bottom:693.373333pt;}
.y197{bottom:693.533333pt;}
.y58{bottom:695.453333pt;}
.y88{bottom:699.453333pt;}
.yd4{bottom:700.573333pt;}
.yef{bottom:702.173333pt;}
.yae{bottom:704.093333pt;}
.y13c{bottom:707.453333pt;}
.y196{bottom:708.093333pt;}
.yd{bottom:708.733333pt;}
.y57{bottom:712.413333pt;}
.y87{bottom:716.413333pt;}
.yd3{bottom:716.573333pt;}
.y16c{bottom:718.653333pt;}
.y110{bottom:718.720000pt;}
.yac{bottom:720.093333pt;}
.y195{bottom:722.653333pt;}
.yc{bottom:724.573333pt;}
.y13b{bottom:728.573333pt;}
.y56{bottom:729.213333pt;}
.y86{bottom:733.213333pt;}
.y16b{bottom:737.213333pt;}
.yd2{bottom:740.733333pt;}
.y194{bottom:741.213333pt;}
.yee{bottom:742.493333pt;}
.y55{bottom:746.013333pt;}
.yb{bottom:746.973333pt;}
.y85{bottom:750.013333pt;}
.y16a{bottom:751.773333pt;}
.y193{bottom:755.773333pt;}
.yc5{bottom:756.573333pt;}
.ya{bottom:757.693333pt;}
.y54{bottom:762.973333pt;}
.yd1{bottom:765.533333pt;}
.yed{bottom:766.493333pt;}
.y84{bottom:766.973333pt;}
.y169{bottom:770.333333pt;}
.yc4{bottom:772.733333pt;}
.y9{bottom:773.053333pt;}
.y12f{bottom:773.373333pt;}
.y53{bottom:779.773333pt;}
.y83{bottom:783.773333pt;}
.y168{bottom:784.893333pt;}
.yd0{bottom:786.493333pt;}
.yc3{bottom:788.893333pt;}
.y12e{bottom:789.533333pt;}
.yec{bottom:790.653333pt;}
.y52{bottom:796.733333pt;}
.y167{bottom:799.453333pt;}
.y82{bottom:800.773333pt;}
.y192{bottom:803.493333pt;}
.yc2{bottom:804.933333pt;}
.y8{bottom:805.093333pt;}
.y12d{bottom:805.733333pt;}
.y51{bottom:813.573333pt;}
.yeb{bottom:814.853333pt;}
.y81{bottom:817.573333pt;}
.y166{bottom:818.053333pt;}
.yc1{bottom:821.093333pt;}
.y12c{bottom:821.733333pt;}
.y50{bottom:830.373333pt;}
.y165{bottom:832.613333pt;}
.y191{bottom:836.613333pt;}
.yc0{bottom:837.253333pt;}
.y12b{bottom:837.893333pt;}
.y80{bottom:838.213333pt;}
.yea{bottom:838.853333pt;}
.y7{bottom:839.493333pt;}
.y164{bottom:847.173333pt;}
.y4f{bottom:847.333333pt;}
.y190{bottom:851.173333pt;}
.ybf{bottom:853.253333pt;}
.y12a{bottom:853.893333pt;}
.y7f{bottom:855.333333pt;}
.y6{bottom:857.893333pt;}
.ye9{bottom:863.013333pt;}
.y163{bottom:865.733333pt;}
.y4e{bottom:867.973333pt;}
.ybe{bottom:869.413333pt;}
.y129{bottom:870.053333pt;}
.y7e{bottom:872.133333pt;}
.y162{bottom:880.293333pt;}
.y18f{bottom:884.293333pt;}
.y4d{bottom:885.093333pt;}
.ybd{bottom:885.573333pt;}
.y128{bottom:886.213333pt;}
.ye8{bottom:887.013333pt;}
.y7d{bottom:889.093333pt;}
.y5{bottom:892.293333pt;}
.y161{bottom:898.853333pt;}
.ybc{bottom:901.573333pt;}
.y4c{bottom:901.893333pt;}
.y127{bottom:902.213333pt;}
.y7c{bottom:905.893333pt;}
.ye7{bottom:911.173333pt;}
.y160{bottom:913.413333pt;}
.ybb{bottom:917.733333pt;}
.y126{bottom:918.373333pt;}
.y4b{bottom:918.693333pt;}
.y7b{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y15f{bottom:931.973333pt;}
.y125{bottom:934.533333pt;}
.ye6{bottom:935.333333pt;}
.y4a{bottom:935.653333pt;}
.y7a{bottom:939.653333pt;}
.yba{bottom:941.893333pt;}
.yab{bottom:943.173333pt;}
.y15e{bottom:946.533333pt;}
.y124{bottom:950.533333pt;}
.y49{bottom:952.453333pt;}
.y79{bottom:956.453333pt;}
.yaa{bottom:959.333333pt;}
.y15d{bottom:961.093333pt;}
.yb9{bottom:966.693333pt;}
.y48{bottom:969.413333pt;}
.y78{bottom:973.413333pt;}
.ya9{bottom:975.493333pt;}
.y15c{bottom:979.653333pt;}
.y123{bottom:982.693333pt;}
.ye5{bottom:983.493333pt;}
.y47{bottom:990.053333pt;}
.y77{bottom:990.213333pt;}
.ya8{bottom:991.493333pt;}
.y15b{bottom:994.213333pt;}
.y122{bottom:1006.853333pt;}
.y46{bottom:1007.013333pt;}
.ye4{bottom:1007.493333pt;}
.ya7{bottom:1007.653333pt;}
.y15a{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hd{height:15.695312pt;}
.h16{height:16.000000pt;}
.h17{height:16.160000pt;}
.h7{height:33.918750pt;}
.ha{height:36.000000pt;}
.h14{height:40.727500pt;}
.h10{height:43.782500pt;}
.h1a{height:49.621875pt;}
.h1b{height:50.955000pt;}
.he{height:52.108438pt;}
.h6{height:52.134375pt;}
.h5{height:52.478750pt;}
.h9{height:53.535000pt;}
.h13{height:55.275000pt;}
.h18{height:56.760000pt;}
.h2{height:57.787500pt;}
.hb{height:59.340000pt;}
.h8{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.hc{height:97.312000pt;}
.h12{height:136.303125pt;}
.h15{height:212.026667pt;}
.h11{height:235.226667pt;}
.h19{height:287.200000pt;}
.hf{height:334.626667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.wa{width:84.000000pt;}
.w6{width:178.586667pt;}
.w9{width:185.786667pt;}
.w7{width:198.466667pt;}
.w3{width:211.386667pt;}
.w5{width:361.826667pt;}
.w8{width:377.053333pt;}
.wb{width:507.360000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x22{left:17.280000pt;}
.x20{left:27.453333pt;}
.x1f{left:35.453333pt;}
.x12{left:58.120000pt;}
.x13{left:68.346667pt;}
.x14{left:72.360000pt;}
.x21{left:82.720000pt;}
.x5{left:96.031988pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x1e{left:137.440000pt;}
.xc{left:153.946655pt;}
.xa{left:164.826667pt;}
.xf{left:170.280000pt;}
.x11{left:191.266667pt;}
.x25{left:218.426655pt;}
.xe{left:233.626667pt;}
.x16{left:240.026655pt;}
.x1b{left:255.106655pt;}
.x1c{left:262.146667pt;}
.x18{left:276.066655pt;}
.x3{left:279.426655pt;}
.x27{left:281.826655pt;}
.x8{left:320.546667pt;}
.xd{left:333.666655pt;}
.x9{left:336.226667pt;}
.x23{left:369.026667pt;}
.x10{left:412.226667pt;}
.x1d{left:447.933333pt;}
.x17{left:632.293322pt;}
.x24{left:634.053322pt;}
.x19{left:635.973322pt;}
.x26{left:638.533322pt;}
.x1a{left:649.093322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
.x15{left:704.133322pt;}
}




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