
    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_d0481032bf6143e48b5f0fa3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_aa8d89fe00a9029c0172c318.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d03ab934257103424998499.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_1816d7e7d2e4ecf658c031e6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_4f3354900eb9813fb709b4e5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_f9f14b09f9a6b8e815bb2b4f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4e79c5c348d5a9bc41f44e20.woff')format("woff");}.ff9{font-family:ff9;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_89bc0f29bc3caba8e642d4f7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls17{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.334200px;}
.ls1e{letter-spacing:-0.332400px;}
.ls19{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.262200px;}
.ls23{letter-spacing:-0.220800px;}
.ls14{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.197400px;}
.ls11{letter-spacing:-0.193800px;}
.ls16{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.053280px;}
.ls22{letter-spacing:-0.027360px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.900000px;}
.lsf{letter-spacing:54.864000px;}
.ls15{letter-spacing:846.120000px;}
.ls18{letter-spacing:846.156000px;}
.lsd{letter-spacing:846.180000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws1a{word-spacing:-66.240000px;}
.ws1c{word-spacing:-41.760000px;}
.ws7{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws1b{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.450800px;}
.ws11{word-spacing:-16.407600px;}
.ws15{word-spacing:-16.297800px;}
.ws12{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.840000px;}
.ws19{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.220000px;}
.ws20{word-spacing:-14.192640px;}
.wsc{word-spacing:-14.026200px;}
.ws21{word-spacing:-13.999200px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws17{word-spacing:-10.800000px;}
.ws16{word-spacing:-10.440000px;}
.ws1f{word-spacing:-10.242600px;}
.ws1d{word-spacing:-10.008000px;}
.ws1e{word-spacing:-9.864000px;}
.ws18{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-5.004000px;}
._6{margin-left:-3.792000px;}
._8{margin-left:-2.592000px;}
._0{margin-left:-1.392000px;}
._2{width:1.080000px;}
._1{width:2.388000px;}
._4{width:8.256000px;}
._5{width:10.212000px;}
._9{width:54.000000px;}
._3{width:846.156000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:3.600000px;}
.ycf{bottom:3.780000px;}
.y12d{bottom:5.760000px;}
.ye2{bottom:6.300000px;}
.y155{bottom:6.330000px;}
.y136{bottom:6.345000px;}
.y131{bottom:6.480000px;}
.ye4{bottom:7.020000px;}
.yf8{bottom:7.050000px;}
.yd2{bottom:22.500000px;}
.yd5{bottom:22.680000px;}
.y12c{bottom:25.560000px;}
.ye1{bottom:28.080000px;}
.y134{bottom:28.260000px;}
.y4{bottom:57.780000px;}
.yae{bottom:57.816000px;}
.y3{bottom:78.516000px;}
.y10c{bottom:116.316000px;}
.y57{bottom:122.796000px;}
.y1c4{bottom:123.696000px;}
.y74{bottom:125.316000px;}
.y10b{bottom:128.376000px;}
.y196{bottom:129.096000px;}
.y4e{bottom:129.996000px;}
.y36{bottom:131.616000px;}
.y153{bottom:133.596000px;}
.y62{bottom:139.176000px;}
.y22{bottom:140.256000px;}
.y1c3{bottom:144.396000px;}
.y10a{bottom:145.656000px;}
.y17f{bottom:146.376000px;}
.ybe{bottom:146.736000px;}
.y152{bottom:150.870000px;}
.y56{bottom:151.770000px;}
.y90{bottom:152.310000px;}
.y73{bottom:156.270000px;}
.y4d{bottom:160.950000px;}
.y35{bottom:162.750000px;}
.y151{bottom:162.930000px;}
.y1c2{bottom:165.090000px;}
.y109{bottom:168.150000px;}
.ybd{bottom:168.690000px;}
.y61{bottom:170.310000px;}
.y21{bottom:171.210000px;}
.y8f{bottom:173.010000px;}
.y55{bottom:178.950000px;}
.yc3{bottom:179.490000px;}
.y108{bottom:180.030000px;}
.y194{bottom:180.750000px;}
.y17e{bottom:185.070000px;}
.y150{bottom:185.250000px;}
.y1c1{bottom:185.790000px;}
.y72{bottom:187.410000px;}
.y4c{bottom:192.090000px;}
.y34{bottom:193.710000px;}
.y14f{bottom:198.030000px;}
.y60{bottom:201.270000px;}
.y20{bottom:202.350000px;}
.y107{bottom:202.530000px;}
.y54{bottom:206.130000px;}
.y1c0{bottom:206.490000px;}
.y17d{bottom:207.570000px;}
.y193{bottom:208.290000px;}
.ybc{bottom:209.190000px;}
.yc2{bottom:213.690000px;}
.y8e{bottom:214.410000px;}
.y106{bottom:214.590000px;}
.y71{bottom:218.370000px;}
.y4b{bottom:223.050000px;}
.y33{bottom:224.850000px;}
.y1bf{bottom:227.190000px;}
.y17c{bottom:230.070000px;}
.y192{bottom:230.790000px;}
.y5f{bottom:232.410000px;}
.y1f{bottom:233.310000px;}
.y8d{bottom:235.110000px;}
.y14e{bottom:235.650000px;}
.y105{bottom:237.090000px;}
.yc1{bottom:242.310000px;}
.y1be{bottom:247.890000px;}
.y104{bottom:249.150000px;}
.y70{bottom:249.330000px;}
.ybb{bottom:250.995000px;}
.y17b{bottom:252.750000px;}
.y191{bottom:253.470000px;}
.y4a{bottom:254.190000px;}
.y32{bottom:255.810000px;}
.y14d{bottom:258.150000px;}
.y53{bottom:260.490000px;}
.y5e{bottom:263.370000px;}
.y1e{bottom:264.450000px;}
.y1bd{bottom:268.590000px;}
.y97{bottom:268.950000px;}
.yc0{bottom:270.795000px;}
.y103{bottom:271.650000px;}
.y17a{bottom:275.250000px;}
.y190{bottom:275.970000px;}
.y8c{bottom:276.510000px;}
.y195{bottom:280.290000px;}
.y14c{bottom:280.650000px;}
.y6f{bottom:281.730000px;}
.y66{bottom:284.250000px;}
.y49{bottom:285.150000px;}
.y31{bottom:286.950000px;}
.y52{bottom:287.670000px;}
.y1bc{bottom:289.290000px;}
.yba{bottom:292.755000px;}
.y5d{bottom:294.510000px;}
.y1d{bottom:295.410000px;}
.y8b{bottom:297.210000px;}
.y179{bottom:297.750000px;}
.y18f{bottom:298.650000px;}
.y14b{bottom:303.330000px;}
.ybf{bottom:307.335000px;}
.y1bb{bottom:309.990000px;}
.y6e{bottom:312.870000px;}
.y65{bottom:313.410000px;}
.y51{bottom:314.850000px;}
.y48{bottom:316.290000px;}
.yc6{bottom:317.415000px;}
.y30{bottom:317.955000px;}
.y102{bottom:318.270000px;}
.y178{bottom:320.430000px;}
.y5c{bottom:325.515000px;}
.y14a{bottom:325.830000px;}
.yab{bottom:326.595000px;}
.y1ba{bottom:330.690000px;}
.y1c{bottom:331.095000px;}
.yb9{bottom:334.695000px;}
.y8a{bottom:338.655000px;}
.y64{bottom:340.455000px;}
.y101{bottom:341.535000px;}
.y50{bottom:342.075000px;}
.y177{bottom:342.975000px;}
.y6d{bottom:343.695000px;}
.yc5{bottom:345.855000px;}
.y47{bottom:347.295000px;}
.y149{bottom:348.555000px;}
.y2f{bottom:349.095000px;}
.y1b9{bottom:351.435000px;}
.y5b{bottom:354.675000px;}
.yaa{bottom:357.555000px;}
.y89{bottom:359.355000px;}
.y100{bottom:364.755000px;}
.y176{bottom:365.655000px;}
.y63{bottom:367.635000px;}
.y4f{bottom:371.055000px;}
.y1b8{bottom:372.135000px;}
.y6c{bottom:376.275000px;}
.yb8{bottom:376.455000px;}
.y46{bottom:378.435000px;}
.y1b{bottom:380.055000px;}
.y5a{bottom:381.855000px;}
.yc4{bottom:382.395000px;}
.yff{bottom:387.975000px;}
.y175{bottom:388.155000px;}
.ya9{bottom:388.695000px;}
.y1b7{bottom:392.835000px;}
.y148{bottom:393.555000px;}
.y88{bottom:400.755000px;}
.y6b{bottom:407.055000px;}
.y59{bottom:409.035000px;}
.y45{bottom:409.395000px;}
.y174{bottom:410.655000px;}
.y1a{bottom:411.195000px;}
.y1b6{bottom:413.535000px;}
.y147{bottom:416.235000px;}
.y96{bottom:418.035000px;}
.yb7{bottom:418.215000px;}
.ya8{bottom:419.655000px;}
.y87{bottom:421.455000px;}
.y173{bottom:433.335000px;}
.y58{bottom:434.055000px;}
.y1b5{bottom:434.235000px;}
.yfe{bottom:434.415000px;}
.y146{bottom:438.735000px;}
.y6a{bottom:439.635000px;}
.y44{bottom:440.355000px;}
.y2e{bottom:442.155000px;}
.y19{bottom:448.995000px;}
.ya7{bottom:450.795000px;}
.y1b4{bottom:454.935000px;}
.y172{bottom:455.835000px;}
.yfd{bottom:457.815000px;}
.yb6{bottom:460.005000px;}
.y86{bottom:462.855000px;}
.y128{bottom:463.035000px;}
.y69{bottom:470.595000px;}
.y43{bottom:471.495000px;}
.y2d{bottom:473.295000px;}
.y1b3{bottom:475.635000px;}
.y171{bottom:478.515000px;}
.y18{bottom:480.135000px;}
.y127{bottom:480.495000px;}
.yfc{bottom:481.035000px;}
.ya6{bottom:481.755000px;}
.y145{bottom:483.195000px;}
.y85{bottom:483.555000px;}
.y1b2{bottom:496.335000px;}
.y170{bottom:501.015000px;}
.yb5{bottom:501.945000px;}
.y42{bottom:502.455000px;}
.y68{bottom:502.995000px;}
.y126{bottom:503.715000px;}
.y2c{bottom:504.255000px;}
.y144{bottom:505.695000px;}
.y17{bottom:511.095000px;}
.ya5{bottom:512.895000px;}
.y1b1{bottom:517.035000px;}
.y18e{bottom:523.515000px;}
.y84{bottom:524.955000px;}
.y125{bottom:526.935000px;}
.yfb{bottom:527.475000px;}
.y143{bottom:528.375000px;}
.y41{bottom:533.595000px;}
.y67{bottom:533.955000px;}
.y2b{bottom:535.395000px;}
.y1b0{bottom:537.735000px;}
.y16{bottom:542.235000px;}
.yb4{bottom:543.705000px;}
.ya4{bottom:543.855000px;}
.y16f{bottom:545.475000px;}
.y83{bottom:545.655000px;}
.y18d{bottom:546.195000px;}
.y124{bottom:550.335000px;}
.yfa{bottom:550.695000px;}
.y142{bottom:550.875000px;}
.y1af{bottom:558.435000px;}
.y40{bottom:564.555000px;}
.y2a{bottom:566.355000px;}
.y16e{bottom:567.975000px;}
.y18c{bottom:568.695000px;}
.y15{bottom:573.225000px;}
.y141{bottom:573.375000px;}
.y123{bottom:573.555000px;}
.yf9{bottom:573.915000px;}
.ya3{bottom:575.025000px;}
.y1ae{bottom:579.135000px;}
.yb3{bottom:585.465000px;}
.y82{bottom:587.085000px;}
.y16d{bottom:590.475000px;}
.y18b{bottom:591.375000px;}
.y3f{bottom:595.725000px;}
.y140{bottom:596.055000px;}
.y122{bottom:596.775000px;}
.yf7{bottom:597.315000px;}
.y29{bottom:597.525000px;}
.y1ad{bottom:599.835000px;}
.y14{bottom:604.365000px;}
.ya2{bottom:605.985000px;}
.y81{bottom:607.785000px;}
.y16c{bottom:613.185000px;}
.y18a{bottom:613.905000px;}
.y13f{bottom:618.585000px;}
.y121{bottom:620.025000px;}
.yf6{bottom:620.565000px;}
.y3e{bottom:626.685000px;}
.yb2{bottom:627.225000px;}
.y13{bottom:628.485000px;}
.y95{bottom:635.325000px;}
.y16b{bottom:635.685000px;}
.y189{bottom:636.405000px;}
.ya1{bottom:637.125000px;}
.y13e{bottom:641.085000px;}
.y1ac{bottom:641.265000px;}
.y120{bottom:643.245000px;}
.yf5{bottom:643.785000px;}
.y80{bottom:649.185000px;}
.y3d{bottom:657.825000px;}
.y16a{bottom:658.185000px;}
.y188{bottom:659.085000px;}
.y28{bottom:659.625000px;}
.y1ab{bottom:661.965000px;}
.y13d{bottom:663.765000px;}
.y12{bottom:666.465000px;}
.yf4{bottom:667.005000px;}
.ya0{bottom:668.085000px;}
.yb1{bottom:669.210000px;}
.y7f{bottom:669.885000px;}
.y169{bottom:680.865000px;}
.y187{bottom:681.585000px;}
.y1aa{bottom:682.665000px;}
.y13c{bottom:686.265000px;}
.y3c{bottom:686.985000px;}
.y11f{bottom:689.865000px;}
.yf3{bottom:690.225000px;}
.y27{bottom:690.585000px;}
.y11{bottom:697.425000px;}
.ydd{bottom:698.145000px;}
.y9f{bottom:699.225000px;}
.y93{bottom:701.025000px;}
.y168{bottom:703.365000px;}
.y186{bottom:704.085000px;}
.yb0{bottom:710.970000px;}
.y7e{bottom:711.285000px;}
.y11e{bottom:713.085000px;}
.yf2{bottom:713.445000px;}
.y3b{bottom:714.165000px;}
.ydc{bottom:715.605000px;}
.y26{bottom:721.725000px;}
.y1a9{bottom:724.065000px;}
.y167{bottom:726.045000px;}
.y185{bottom:726.765000px;}
.y10{bottom:728.565000px;}
.y9e{bottom:730.185000px;}
.y13b{bottom:730.725000px;}
.y7d{bottom:731.985000px;}
.ydb{bottom:735.225000px;}
.y11d{bottom:736.305000px;}
.yf1{bottom:736.845000px;}
.y3a{bottom:741.345000px;}
.y1a8{bottom:744.765000px;}
.y166{bottom:748.545000px;}
.y184{bottom:749.265000px;}
.y25{bottom:752.685000px;}
.yaf{bottom:752.730000px;}
.yf{bottom:759.525000px;}
.yf0{bottom:760.065000px;}
.y9d{bottom:761.325000px;}
.y1a7{bottom:765.465000px;}
.y39{bottom:768.525000px;}
.y165{bottom:771.045000px;}
.y183{bottom:771.945000px;}
.y7c{bottom:773.385000px;}
.yda{bottom:773.925000px;}
.y13a{bottom:775.005000px;}
.y11c{bottom:782.745000px;}
.yef{bottom:783.285000px;}
.ye{bottom:783.825000px;}
.y1a6{bottom:786.165000px;}
.y94{bottom:790.665000px;}
.y9c{bottom:792.285000px;}
.y164{bottom:793.725000px;}
.y7b{bottom:794.085000px;}
.y182{bottom:794.445000px;}
.y38{bottom:795.705000px;}
.y139{bottom:797.685000px;}
.y11b{bottom:805.965000px;}
.yee{bottom:806.505000px;}
.y1a5{bottom:806.865000px;}
.yd9{bottom:812.625000px;}
.y24{bottom:814.785000px;}
.y163{bottom:816.225000px;}
.y181{bottom:816.945000px;}
.y138{bottom:820.185000px;}
.yd{bottom:821.670000px;}
.y9b{bottom:823.470000px;}
.y37{bottom:824.730000px;}
.y1a4{bottom:827.565000px;}
.y11a{bottom:829.365000px;}
.yed{bottom:829.725000px;}
.yad{bottom:829.980000px;}
.yd8{bottom:832.425000px;}
.y7a{bottom:835.530000px;}
.y162{bottom:838.905000px;}
.y180{bottom:839.625000px;}
.y137{bottom:842.865000px;}
.y23{bottom:845.970000px;}
.y1a3{bottom:848.265000px;}
.yac{bottom:849.960000px;}
.yd7{bottom:852.225000px;}
.y119{bottom:852.585000px;}
.yc{bottom:852.810000px;}
.yec{bottom:852.945000px;}
.y9a{bottom:854.430000px;}
.y79{bottom:856.230000px;}
.y161{bottom:861.405000px;}
.y135{bottom:865.365000px;}
.y1a2{bottom:868.965000px;}
.yd6{bottom:871.890000px;}
.y118{bottom:875.850000px;}
.yeb{bottom:876.390000px;}
.yb{bottom:876.930000px;}
.y160{bottom:883.950000px;}
.y99{bottom:885.570000px;}
.y133{bottom:887.910000px;}
.y1a1{bottom:889.710000px;}
.y78{bottom:897.630000px;}
.y117{bottom:899.070000px;}
.yea{bottom:899.610000px;}
.y15f{bottom:906.630000px;}
.ya{bottom:908.070000px;}
.y1a0{bottom:910.410000px;}
.yd4{bottom:910.590000px;}
.y77{bottom:918.330000px;}
.y98{bottom:921.030000px;}
.y116{bottom:922.290000px;}
.ye9{bottom:922.830000px;}
.y15e{bottom:929.130000px;}
.y19f{bottom:931.110000px;}
.y132{bottom:932.370000px;}
.y9{bottom:939.030000px;}
.y115{bottom:945.510000px;}
.ye8{bottom:946.050000px;}
.yd3{bottom:949.290000px;}
.y15d{bottom:951.810000px;}
.y130{bottom:954.870000px;}
.y76{bottom:959.730000px;}
.y114{bottom:968.910000px;}
.yd1{bottom:969.090000px;}
.ye7{bottom:969.270000px;}
.y8{bottom:970.170000px;}
.y19e{bottom:972.510000px;}
.y15c{bottom:974.310000px;}
.y12f{bottom:977.550000px;}
.y75{bottom:980.430000px;}
.y113{bottom:992.130000px;}
.ye6{bottom:992.490000px;}
.y19d{bottom:993.210000px;}
.y15b{bottom:996.810000px;}
.y12e{bottom:1000.050000px;}
.y7{bottom:1001.130000px;}
.yd0{bottom:1007.790000px;}
.y19c{bottom:1013.910000px;}
.y112{bottom:1015.350000px;}
.ye5{bottom:1015.890000px;}
.y15a{bottom:1019.490000px;}
.y92{bottom:1021.830000px;}
.y12b{bottom:1022.730000px;}
.yce{bottom:1027.410000px;}
.y6{bottom:1032.270000px;}
.y19b{bottom:1034.610000px;}
.y111{bottom:1038.570000px;}
.ye3{bottom:1039.110000px;}
.y159{bottom:1041.990000px;}
.y91{bottom:1042.530000px;}
.ycc{bottom:1047.210000px;}
.y19a{bottom:1055.310000px;}
.y110{bottom:1061.790000px;}
.ye0{bottom:1062.330000px;}
.y5{bottom:1063.230000px;}
.y158{bottom:1064.490000px;}
.y12a{bottom:1073.850000px;}
.y199{bottom:1076.010000px;}
.ycb{bottom:1077.810000px;}
.y10f{bottom:1085.010000px;}
.y157{bottom:1087.170000px;}
.y129{bottom:1095.810000px;}
.y1c6{bottom:1096.710000px;}
.yca{bottom:1099.590000px;}
.y2{bottom:1099.980000px;}
.y198{bottom:1107.150000px;}
.y10e{bottom:1108.410000px;}
.y156{bottom:1109.670000px;}
.y1c5{bottom:1117.410000px;}
.ydf{bottom:1117.590000px;}
.y1{bottom:1119.960000px;}
.yc9{bottom:1121.370000px;}
.y10d{bottom:1131.630000px;}
.y154{bottom:1132.350000px;}
.y197{bottom:1138.140000px;}
.yde{bottom:1139.400000px;}
.yc8{bottom:1174.860000px;}
.yc7{bottom:1194.840000px;}
.h10{height:18.900000px;}
.h16{height:18.936000px;}
.h11{height:19.080000px;}
.h1e{height:21.780000px;}
.h22{height:21.816000px;}
.h20{height:21.960000px;}
.h24{height:21.996000px;}
.h18{height:22.500000px;}
.h19{height:22.536000px;}
.h1a{height:34.114922px;}
.h25{height:37.241719px;}
.h13{height:37.800000px;}
.h15{height:37.980000px;}
.h1c{height:39.600000px;}
.h1d{height:42.164648px;}
.h5{height:42.327773px;}
.h17{height:43.560000px;}
.h26{height:43.596000px;}
.h21{height:43.740000px;}
.ha{height:44.704687px;}
.hf{height:46.736719px;}
.h3{height:50.800781px;}
.h1{height:52.435898px;}
.h1b{height:52.581797px;}
.h1f{height:53.224453px;}
.h23{height:53.344453px;}
.h9{height:54.246094px;}
.h7{height:55.594687px;}
.h8{height:55.749375px;}
.h12{height:58.121719px;}
.hc{height:58.283437px;}
.h14{height:60.401953px;}
.h2{height:63.175781px;}
.h6{height:63.351562px;}
.h4{height:69.687773px;}
.hb{height:918.000000px;}
.h0{height:1188.000000px;}
.hd{height:1262.880000px;}
.he{height:1263.000000px;}
.w13{width:82.620000px;}
.wb{width:84.780000px;}
.w11{width:84.960000px;}
.we{width:89.496000px;}
.w12{width:95.796000px;}
.wc{width:102.276000px;}
.wd{width:104.220000px;}
.w14{width:106.236000px;}
.w8{width:109.836000px;}
.wf{width:111.240000px;}
.w9{width:113.976000px;}
.w10{width:131.256000px;}
.w7{width:219.450000px;}
.w15{width:331.770000px;}
.wa{width:343.470000px;}
.w6{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w3{width:1187.999982px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.x13{left:8.145000px;}
.x20{left:9.720000px;}
.x2c{left:11.520000px;}
.x35{left:13.140000px;}
.x1d{left:15.300000px;}
.x38{left:16.734000px;}
.x28{left:18.000000px;}
.x2d{left:19.620000px;}
.x24{left:20.700000px;}
.x33{left:22.680000px;}
.x2a{left:23.940000px;}
.x2f{left:25.014000px;}
.x23{left:27.000000px;}
.x15{left:28.080000px;}
.x1e{left:36.720000px;}
.x27{left:41.625000px;}
.x25{left:42.660000px;}
.x1f{left:43.965000px;}
.x26{left:45.360000px;}
.x1c{left:47.556000px;}
.x37{left:49.005000px;}
.x10{left:50.040000px;}
.x19{left:52.065000px;}
.x1a{left:54.180000px;}
.x18{left:55.296000px;}
.x29{left:60.876000px;}
.x22{left:63.936000px;}
.x11{left:66.276000px;}
.x1b{left:70.200000px;}
.x2b{left:71.316000px;}
.x2e{left:84.816000px;}
.x7{left:99.035986px;}
.xa{left:107.999982px;}
.x2{left:135.035986px;}
.x21{left:152.460000px;}
.x17{left:157.860000px;}
.x5{left:162.029986px;}
.x8{left:171.029986px;}
.x3d{left:183.089987px;}
.x6{left:189.029986px;}
.x30{left:219.810000px;}
.x12{left:269.490000px;}
.x3a{left:315.795000px;}
.x31{left:322.095000px;}
.x39{left:351.074987px;}
.x14{left:379.335000px;}
.x3b{left:398.415000px;}
.x32{left:426.315000px;}
.xf{left:437.474987px;}
.x4{left:450.074986px;}
.x3{left:454.574986px;}
.xd{left:472.574982px;}
.x16{left:493.305000px;}
.x3c{left:504.645000px;}
.x34{left:515.805000px;}
.xb{left:585.074982px;}
.x36{left:626.865000px;}
.xe{left:758.129987px;}
.xc{left:780.764982px;}
.x1{left:783.149986px;}
.x9{left:1080.149982px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.297067pt;}
.ls1e{letter-spacing:-0.295467pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls23{letter-spacing:-0.196267pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.175467pt;}
.ls11{letter-spacing:-0.172267pt;}
.ls16{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls22{letter-spacing:-0.024320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.800000pt;}
.lsf{letter-spacing:48.768000pt;}
.ls15{letter-spacing:752.106667pt;}
.ls18{letter-spacing:752.138667pt;}
.lsd{letter-spacing:752.160000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-58.880000pt;}
.ws1c{word-spacing:-37.120000pt;}
.ws7{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.622933pt;}
.ws11{word-spacing:-14.584533pt;}
.ws15{word-spacing:-14.486933pt;}
.ws12{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.640000pt;}
.ws20{word-spacing:-12.615680pt;}
.wsc{word-spacing:-12.467733pt;}
.ws21{word-spacing:-12.443733pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws17{word-spacing:-9.600000pt;}
.ws16{word-spacing:-9.280000pt;}
.ws1f{word-spacing:-9.104533pt;}
.ws1d{word-spacing:-8.896000pt;}
.ws1e{word-spacing:-8.768000pt;}
.ws18{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-4.448000pt;}
._6{margin-left:-3.370667pt;}
._8{margin-left:-2.304000pt;}
._0{margin-left:-1.237333pt;}
._2{width:0.960000pt;}
._1{width:2.122667pt;}
._4{width:7.338667pt;}
._5{width:9.077333pt;}
._9{width:48.000000pt;}
._3{width:752.138667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:3.200000pt;}
.ycf{bottom:3.360000pt;}
.y12d{bottom:5.120000pt;}
.ye2{bottom:5.600000pt;}
.y155{bottom:5.626667pt;}
.y136{bottom:5.640000pt;}
.y131{bottom:5.760000pt;}
.ye4{bottom:6.240000pt;}
.yf8{bottom:6.266667pt;}
.yd2{bottom:20.000000pt;}
.yd5{bottom:20.160000pt;}
.y12c{bottom:22.720000pt;}
.ye1{bottom:24.960000pt;}
.y134{bottom:25.120000pt;}
.y4{bottom:51.360000pt;}
.yae{bottom:51.392000pt;}
.y3{bottom:69.792000pt;}
.y10c{bottom:103.392000pt;}
.y57{bottom:109.152000pt;}
.y1c4{bottom:109.952000pt;}
.y74{bottom:111.392000pt;}
.y10b{bottom:114.112000pt;}
.y196{bottom:114.752000pt;}
.y4e{bottom:115.552000pt;}
.y36{bottom:116.992000pt;}
.y153{bottom:118.752000pt;}
.y62{bottom:123.712000pt;}
.y22{bottom:124.672000pt;}
.y1c3{bottom:128.352000pt;}
.y10a{bottom:129.472000pt;}
.y17f{bottom:130.112000pt;}
.ybe{bottom:130.432000pt;}
.y152{bottom:134.106667pt;}
.y56{bottom:134.906667pt;}
.y90{bottom:135.386667pt;}
.y73{bottom:138.906667pt;}
.y4d{bottom:143.066667pt;}
.y35{bottom:144.666667pt;}
.y151{bottom:144.826667pt;}
.y1c2{bottom:146.746667pt;}
.y109{bottom:149.466667pt;}
.ybd{bottom:149.946667pt;}
.y61{bottom:151.386667pt;}
.y21{bottom:152.186667pt;}
.y8f{bottom:153.786667pt;}
.y55{bottom:159.066667pt;}
.yc3{bottom:159.546667pt;}
.y108{bottom:160.026667pt;}
.y194{bottom:160.666667pt;}
.y17e{bottom:164.506667pt;}
.y150{bottom:164.666667pt;}
.y1c1{bottom:165.146667pt;}
.y72{bottom:166.586667pt;}
.y4c{bottom:170.746667pt;}
.y34{bottom:172.186667pt;}
.y14f{bottom:176.026667pt;}
.y60{bottom:178.906667pt;}
.y20{bottom:179.866667pt;}
.y107{bottom:180.026667pt;}
.y54{bottom:183.226667pt;}
.y1c0{bottom:183.546667pt;}
.y17d{bottom:184.506667pt;}
.y193{bottom:185.146667pt;}
.ybc{bottom:185.946667pt;}
.yc2{bottom:189.946667pt;}
.y8e{bottom:190.586667pt;}
.y106{bottom:190.746667pt;}
.y71{bottom:194.106667pt;}
.y4b{bottom:198.266667pt;}
.y33{bottom:199.866667pt;}
.y1bf{bottom:201.946667pt;}
.y17c{bottom:204.506667pt;}
.y192{bottom:205.146667pt;}
.y5f{bottom:206.586667pt;}
.y1f{bottom:207.386667pt;}
.y8d{bottom:208.986667pt;}
.y14e{bottom:209.466667pt;}
.y105{bottom:210.746667pt;}
.yc1{bottom:215.386667pt;}
.y1be{bottom:220.346667pt;}
.y104{bottom:221.466667pt;}
.y70{bottom:221.626667pt;}
.ybb{bottom:223.106667pt;}
.y17b{bottom:224.666667pt;}
.y191{bottom:225.306667pt;}
.y4a{bottom:225.946667pt;}
.y32{bottom:227.386667pt;}
.y14d{bottom:229.466667pt;}
.y53{bottom:231.546667pt;}
.y5e{bottom:234.106667pt;}
.y1e{bottom:235.066667pt;}
.y1bd{bottom:238.746667pt;}
.y97{bottom:239.066667pt;}
.yc0{bottom:240.706667pt;}
.y103{bottom:241.466667pt;}
.y17a{bottom:244.666667pt;}
.y190{bottom:245.306667pt;}
.y8c{bottom:245.786667pt;}
.y195{bottom:249.146667pt;}
.y14c{bottom:249.466667pt;}
.y6f{bottom:250.426667pt;}
.y66{bottom:252.666667pt;}
.y49{bottom:253.466667pt;}
.y31{bottom:255.066667pt;}
.y52{bottom:255.706667pt;}
.y1bc{bottom:257.146667pt;}
.yba{bottom:260.226667pt;}
.y5d{bottom:261.786667pt;}
.y1d{bottom:262.586667pt;}
.y8b{bottom:264.186667pt;}
.y179{bottom:264.666667pt;}
.y18f{bottom:265.466667pt;}
.y14b{bottom:269.626667pt;}
.ybf{bottom:273.186667pt;}
.y1bb{bottom:275.546667pt;}
.y6e{bottom:278.106667pt;}
.y65{bottom:278.586667pt;}
.y51{bottom:279.866667pt;}
.y48{bottom:281.146667pt;}
.yc6{bottom:282.146667pt;}
.y30{bottom:282.626667pt;}
.y102{bottom:282.906667pt;}
.y178{bottom:284.826667pt;}
.y5c{bottom:289.346667pt;}
.y14a{bottom:289.626667pt;}
.yab{bottom:290.306667pt;}
.y1ba{bottom:293.946667pt;}
.y1c{bottom:294.306667pt;}
.yb9{bottom:297.506667pt;}
.y8a{bottom:301.026667pt;}
.y64{bottom:302.626667pt;}
.y101{bottom:303.586667pt;}
.y50{bottom:304.066667pt;}
.y177{bottom:304.866667pt;}
.y6d{bottom:305.506667pt;}
.yc5{bottom:307.426667pt;}
.y47{bottom:308.706667pt;}
.y149{bottom:309.826667pt;}
.y2f{bottom:310.306667pt;}
.y1b9{bottom:312.386667pt;}
.y5b{bottom:315.266667pt;}
.yaa{bottom:317.826667pt;}
.y89{bottom:319.426667pt;}
.y100{bottom:324.226667pt;}
.y176{bottom:325.026667pt;}
.y63{bottom:326.786667pt;}
.y4f{bottom:329.826667pt;}
.y1b8{bottom:330.786667pt;}
.y6c{bottom:334.466667pt;}
.yb8{bottom:334.626667pt;}
.y46{bottom:336.386667pt;}
.y1b{bottom:337.826667pt;}
.y5a{bottom:339.426667pt;}
.yc4{bottom:339.906667pt;}
.yff{bottom:344.866667pt;}
.y175{bottom:345.026667pt;}
.ya9{bottom:345.506667pt;}
.y1b7{bottom:349.186667pt;}
.y148{bottom:349.826667pt;}
.y88{bottom:356.226667pt;}
.y6b{bottom:361.826667pt;}
.y59{bottom:363.586667pt;}
.y45{bottom:363.906667pt;}
.y174{bottom:365.026667pt;}
.y1a{bottom:365.506667pt;}
.y1b6{bottom:367.586667pt;}
.y147{bottom:369.986667pt;}
.y96{bottom:371.586667pt;}
.yb7{bottom:371.746667pt;}
.ya8{bottom:373.026667pt;}
.y87{bottom:374.626667pt;}
.y173{bottom:385.186667pt;}
.y58{bottom:385.826667pt;}
.y1b5{bottom:385.986667pt;}
.yfe{bottom:386.146667pt;}
.y146{bottom:389.986667pt;}
.y6a{bottom:390.786667pt;}
.y44{bottom:391.426667pt;}
.y2e{bottom:393.026667pt;}
.y19{bottom:399.106667pt;}
.ya7{bottom:400.706667pt;}
.y1b4{bottom:404.386667pt;}
.y172{bottom:405.186667pt;}
.yfd{bottom:406.946667pt;}
.yb6{bottom:408.893333pt;}
.y86{bottom:411.426667pt;}
.y128{bottom:411.586667pt;}
.y69{bottom:418.306667pt;}
.y43{bottom:419.106667pt;}
.y2d{bottom:420.706667pt;}
.y1b3{bottom:422.786667pt;}
.y171{bottom:425.346667pt;}
.y18{bottom:426.786667pt;}
.y127{bottom:427.106667pt;}
.yfc{bottom:427.586667pt;}
.ya6{bottom:428.226667pt;}
.y145{bottom:429.506667pt;}
.y85{bottom:429.826667pt;}
.y1b2{bottom:441.186667pt;}
.y170{bottom:445.346667pt;}
.yb5{bottom:446.173333pt;}
.y42{bottom:446.626667pt;}
.y68{bottom:447.106667pt;}
.y126{bottom:447.746667pt;}
.y2c{bottom:448.226667pt;}
.y144{bottom:449.506667pt;}
.y17{bottom:454.306667pt;}
.ya5{bottom:455.906667pt;}
.y1b1{bottom:459.586667pt;}
.y18e{bottom:465.346667pt;}
.y84{bottom:466.626667pt;}
.y125{bottom:468.386667pt;}
.yfb{bottom:468.866667pt;}
.y143{bottom:469.666667pt;}
.y41{bottom:474.306667pt;}
.y67{bottom:474.626667pt;}
.y2b{bottom:475.906667pt;}
.y1b0{bottom:477.986667pt;}
.y16{bottom:481.986667pt;}
.yb4{bottom:483.293333pt;}
.ya4{bottom:483.426667pt;}
.y16f{bottom:484.866667pt;}
.y83{bottom:485.026667pt;}
.y18d{bottom:485.506667pt;}
.y124{bottom:489.186667pt;}
.yfa{bottom:489.506667pt;}
.y142{bottom:489.666667pt;}
.y1af{bottom:496.386667pt;}
.y40{bottom:501.826667pt;}
.y2a{bottom:503.426667pt;}
.y16e{bottom:504.866667pt;}
.y18c{bottom:505.506667pt;}
.y15{bottom:509.533333pt;}
.y141{bottom:509.666667pt;}
.y123{bottom:509.826667pt;}
.yf9{bottom:510.146667pt;}
.ya3{bottom:511.133333pt;}
.y1ae{bottom:514.786667pt;}
.yb3{bottom:520.413333pt;}
.y82{bottom:521.853333pt;}
.y16d{bottom:524.866667pt;}
.y18b{bottom:525.666667pt;}
.y3f{bottom:529.533333pt;}
.y140{bottom:529.826667pt;}
.y122{bottom:530.466667pt;}
.yf7{bottom:530.946667pt;}
.y29{bottom:531.133333pt;}
.y1ad{bottom:533.186667pt;}
.y14{bottom:537.213333pt;}
.ya2{bottom:538.653333pt;}
.y81{bottom:540.253333pt;}
.y16c{bottom:545.053333pt;}
.y18a{bottom:545.693333pt;}
.y13f{bottom:549.853333pt;}
.y121{bottom:551.133333pt;}
.yf6{bottom:551.613333pt;}
.y3e{bottom:557.053333pt;}
.yb2{bottom:557.533333pt;}
.y13{bottom:558.653333pt;}
.y95{bottom:564.733333pt;}
.y16b{bottom:565.053333pt;}
.y189{bottom:565.693333pt;}
.ya1{bottom:566.333333pt;}
.y13e{bottom:569.853333pt;}
.y1ac{bottom:570.013333pt;}
.y120{bottom:571.773333pt;}
.yf5{bottom:572.253333pt;}
.y80{bottom:577.053333pt;}
.y3d{bottom:584.733333pt;}
.y16a{bottom:585.053333pt;}
.y188{bottom:585.853333pt;}
.y28{bottom:586.333333pt;}
.y1ab{bottom:588.413333pt;}
.y13d{bottom:590.013333pt;}
.y12{bottom:592.413333pt;}
.yf4{bottom:592.893333pt;}
.ya0{bottom:593.853333pt;}
.yb1{bottom:594.853333pt;}
.y7f{bottom:595.453333pt;}
.y169{bottom:605.213333pt;}
.y187{bottom:605.853333pt;}
.y1aa{bottom:606.813333pt;}
.y13c{bottom:610.013333pt;}
.y3c{bottom:610.653333pt;}
.y11f{bottom:613.213333pt;}
.yf3{bottom:613.533333pt;}
.y27{bottom:613.853333pt;}
.y11{bottom:619.933333pt;}
.ydd{bottom:620.573333pt;}
.y9f{bottom:621.533333pt;}
.y93{bottom:623.133333pt;}
.y168{bottom:625.213333pt;}
.y186{bottom:625.853333pt;}
.yb0{bottom:631.973333pt;}
.y7e{bottom:632.253333pt;}
.y11e{bottom:633.853333pt;}
.yf2{bottom:634.173333pt;}
.y3b{bottom:634.813333pt;}
.ydc{bottom:636.093333pt;}
.y26{bottom:641.533333pt;}
.y1a9{bottom:643.613333pt;}
.y167{bottom:645.373333pt;}
.y185{bottom:646.013333pt;}
.y10{bottom:647.613333pt;}
.y9e{bottom:649.053333pt;}
.y13b{bottom:649.533333pt;}
.y7d{bottom:650.653333pt;}
.ydb{bottom:653.533333pt;}
.y11d{bottom:654.493333pt;}
.yf1{bottom:654.973333pt;}
.y3a{bottom:658.973333pt;}
.y1a8{bottom:662.013333pt;}
.y166{bottom:665.373333pt;}
.y184{bottom:666.013333pt;}
.y25{bottom:669.053333pt;}
.yaf{bottom:669.093333pt;}
.yf{bottom:675.133333pt;}
.yf0{bottom:675.613333pt;}
.y9d{bottom:676.733333pt;}
.y1a7{bottom:680.413333pt;}
.y39{bottom:683.133333pt;}
.y165{bottom:685.373333pt;}
.y183{bottom:686.173333pt;}
.y7c{bottom:687.453333pt;}
.yda{bottom:687.933333pt;}
.y13a{bottom:688.893333pt;}
.y11c{bottom:695.773333pt;}
.yef{bottom:696.253333pt;}
.ye{bottom:696.733333pt;}
.y1a6{bottom:698.813333pt;}
.y94{bottom:702.813333pt;}
.y9c{bottom:704.253333pt;}
.y164{bottom:705.533333pt;}
.y7b{bottom:705.853333pt;}
.y182{bottom:706.173333pt;}
.y38{bottom:707.293333pt;}
.y139{bottom:709.053333pt;}
.y11b{bottom:716.413333pt;}
.yee{bottom:716.893333pt;}
.y1a5{bottom:717.213333pt;}
.yd9{bottom:722.333333pt;}
.y24{bottom:724.253333pt;}
.y163{bottom:725.533333pt;}
.y181{bottom:726.173333pt;}
.y138{bottom:729.053333pt;}
.yd{bottom:730.373333pt;}
.y9b{bottom:731.973333pt;}
.y37{bottom:733.093333pt;}
.y1a4{bottom:735.613333pt;}
.y11a{bottom:737.213333pt;}
.yed{bottom:737.533333pt;}
.yad{bottom:737.760000pt;}
.yd8{bottom:739.933333pt;}
.y7a{bottom:742.693333pt;}
.y162{bottom:745.693333pt;}
.y180{bottom:746.333333pt;}
.y137{bottom:749.213333pt;}
.y23{bottom:751.973333pt;}
.y1a3{bottom:754.013333pt;}
.yac{bottom:755.520000pt;}
.yd7{bottom:757.533333pt;}
.y119{bottom:757.853333pt;}
.yc{bottom:758.053333pt;}
.yec{bottom:758.173333pt;}
.y9a{bottom:759.493333pt;}
.y79{bottom:761.093333pt;}
.y161{bottom:765.693333pt;}
.y135{bottom:769.213333pt;}
.y1a2{bottom:772.413333pt;}
.yd6{bottom:775.013333pt;}
.y118{bottom:778.533333pt;}
.yeb{bottom:779.013333pt;}
.yb{bottom:779.493333pt;}
.y160{bottom:785.733333pt;}
.y99{bottom:787.173333pt;}
.y133{bottom:789.253333pt;}
.y1a1{bottom:790.853333pt;}
.y78{bottom:797.893333pt;}
.y117{bottom:799.173333pt;}
.yea{bottom:799.653333pt;}
.y15f{bottom:805.893333pt;}
.ya{bottom:807.173333pt;}
.y1a0{bottom:809.253333pt;}
.yd4{bottom:809.413333pt;}
.y77{bottom:816.293333pt;}
.y98{bottom:818.693333pt;}
.y116{bottom:819.813333pt;}
.ye9{bottom:820.293333pt;}
.y15e{bottom:825.893333pt;}
.y19f{bottom:827.653333pt;}
.y132{bottom:828.773333pt;}
.y9{bottom:834.693333pt;}
.y115{bottom:840.453333pt;}
.ye8{bottom:840.933333pt;}
.yd3{bottom:843.813333pt;}
.y15d{bottom:846.053333pt;}
.y130{bottom:848.773333pt;}
.y76{bottom:853.093333pt;}
.y114{bottom:861.253333pt;}
.yd1{bottom:861.413333pt;}
.ye7{bottom:861.573333pt;}
.y8{bottom:862.373333pt;}
.y19e{bottom:864.453333pt;}
.y15c{bottom:866.053333pt;}
.y12f{bottom:868.933333pt;}
.y75{bottom:871.493333pt;}
.y113{bottom:881.893333pt;}
.ye6{bottom:882.213333pt;}
.y19d{bottom:882.853333pt;}
.y15b{bottom:886.053333pt;}
.y12e{bottom:888.933333pt;}
.y7{bottom:889.893333pt;}
.yd0{bottom:895.813333pt;}
.y19c{bottom:901.253333pt;}
.y112{bottom:902.533333pt;}
.ye5{bottom:903.013333pt;}
.y15a{bottom:906.213333pt;}
.y92{bottom:908.293333pt;}
.y12b{bottom:909.093333pt;}
.yce{bottom:913.253333pt;}
.y6{bottom:917.573333pt;}
.y19b{bottom:919.653333pt;}
.y111{bottom:923.173333pt;}
.ye3{bottom:923.653333pt;}
.y159{bottom:926.213333pt;}
.y91{bottom:926.693333pt;}
.ycc{bottom:930.853333pt;}
.y19a{bottom:938.053333pt;}
.y110{bottom:943.813333pt;}
.ye0{bottom:944.293333pt;}
.y5{bottom:945.093333pt;}
.y158{bottom:946.213333pt;}
.y12a{bottom:954.533333pt;}
.y199{bottom:956.453333pt;}
.ycb{bottom:958.053333pt;}
.y10f{bottom:964.453333pt;}
.y157{bottom:966.373333pt;}
.y129{bottom:974.053333pt;}
.y1c6{bottom:974.853333pt;}
.yca{bottom:977.413333pt;}
.y2{bottom:977.760000pt;}
.y198{bottom:984.133333pt;}
.y10e{bottom:985.253333pt;}
.y156{bottom:986.373333pt;}
.y1c5{bottom:993.253333pt;}
.ydf{bottom:993.413333pt;}
.y1{bottom:995.520000pt;}
.yc9{bottom:996.773333pt;}
.y10d{bottom:1005.893333pt;}
.y154{bottom:1006.533333pt;}
.y197{bottom:1011.680000pt;}
.yde{bottom:1012.800000pt;}
.yc8{bottom:1044.320000pt;}
.yc7{bottom:1062.080000pt;}
.h10{height:16.800000pt;}
.h16{height:16.832000pt;}
.h11{height:16.960000pt;}
.h1e{height:19.360000pt;}
.h22{height:19.392000pt;}
.h20{height:19.520000pt;}
.h24{height:19.552000pt;}
.h18{height:20.000000pt;}
.h19{height:20.032000pt;}
.h1a{height:30.324375pt;}
.h25{height:33.103750pt;}
.h13{height:33.600000pt;}
.h15{height:33.760000pt;}
.h1c{height:35.200000pt;}
.h1d{height:37.479688pt;}
.h5{height:37.624687pt;}
.h17{height:38.720000pt;}
.h26{height:38.752000pt;}
.h21{height:38.880000pt;}
.ha{height:39.737500pt;}
.hf{height:41.543750pt;}
.h3{height:45.156250pt;}
.h1{height:46.609688pt;}
.h1b{height:46.739375pt;}
.h1f{height:47.310625pt;}
.h23{height:47.417292pt;}
.h9{height:48.218750pt;}
.h7{height:49.417500pt;}
.h8{height:49.555000pt;}
.h12{height:51.663750pt;}
.hc{height:51.807500pt;}
.h14{height:53.690625pt;}
.h2{height:56.156250pt;}
.h6{height:56.312500pt;}
.h4{height:61.944687pt;}
.hb{height:816.000000pt;}
.h0{height:1056.000000pt;}
.hd{height:1122.560000pt;}
.he{height:1122.666667pt;}
.w13{width:73.440000pt;}
.wb{width:75.360000pt;}
.w11{width:75.520000pt;}
.we{width:79.552000pt;}
.w12{width:85.152000pt;}
.wc{width:90.912000pt;}
.wd{width:92.640000pt;}
.w14{width:94.432000pt;}
.w8{width:97.632000pt;}
.wf{width:98.880000pt;}
.w9{width:101.312000pt;}
.w10{width:116.672000pt;}
.w7{width:195.066667pt;}
.w15{width:294.906667pt;}
.wa{width:305.306667pt;}
.w6{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w3{width:1055.999984pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.240000pt;}
.x20{left:8.640000pt;}
.x2c{left:10.240000pt;}
.x35{left:11.680000pt;}
.x1d{left:13.600000pt;}
.x38{left:14.874667pt;}
.x28{left:16.000000pt;}
.x2d{left:17.440000pt;}
.x24{left:18.400000pt;}
.x33{left:20.160000pt;}
.x2a{left:21.280000pt;}
.x2f{left:22.234667pt;}
.x23{left:24.000000pt;}
.x15{left:24.960000pt;}
.x1e{left:32.640000pt;}
.x27{left:37.000000pt;}
.x25{left:37.920000pt;}
.x1f{left:39.080000pt;}
.x26{left:40.320000pt;}
.x1c{left:42.272000pt;}
.x37{left:43.560000pt;}
.x10{left:44.480000pt;}
.x19{left:46.280000pt;}
.x1a{left:48.160000pt;}
.x18{left:49.152000pt;}
.x29{left:54.112000pt;}
.x22{left:56.832000pt;}
.x11{left:58.912000pt;}
.x1b{left:62.400000pt;}
.x2b{left:63.392000pt;}
.x2e{left:75.392000pt;}
.x7{left:88.031988pt;}
.xa{left:95.999984pt;}
.x2{left:120.031988pt;}
.x21{left:135.520000pt;}
.x17{left:140.320000pt;}
.x5{left:144.026655pt;}
.x8{left:152.026655pt;}
.x3d{left:162.746655pt;}
.x6{left:168.026655pt;}
.x30{left:195.386667pt;}
.x12{left:239.546667pt;}
.x3a{left:280.706667pt;}
.x31{left:286.306667pt;}
.x39{left:312.066655pt;}
.x14{left:337.186667pt;}
.x3b{left:354.146667pt;}
.x32{left:378.946667pt;}
.xf{left:388.866655pt;}
.x4{left:400.066655pt;}
.x3{left:404.066655pt;}
.xd{left:420.066651pt;}
.x16{left:438.493333pt;}
.x3c{left:448.573333pt;}
.x34{left:458.493333pt;}
.xb{left:520.066651pt;}
.x36{left:557.213333pt;}
.xe{left:673.893322pt;}
.xc{left:694.013318pt;}
.x1{left:696.133321pt;}
.x9{left:960.133318pt;}
}




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