
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0dbfbfe65b9407d03432cabb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9b2436b14050569321f0127b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a4b052e6e7d397556a9e7419.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fd421bb072020a08a405e52b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2ffca14e1df5718c015874e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_19b5b44b54b9b76ed18adc2f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_770ff508d588b1c4246e83c0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.513600px;}
.lse{letter-spacing:-0.452400px;}
.ls9{letter-spacing:-0.427200px;}
.lsf{letter-spacing:-0.232800px;}
.ls1b{letter-spacing:-0.216600px;}
.ls5{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.183000px;}
.ls12{letter-spacing:-0.160800px;}
.ls1a{letter-spacing:-0.153600px;}
.ls1d{letter-spacing:-0.125400px;}
.ls7{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.011160px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.116400px;}
.lsd{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.177000px;}
.ls18{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:11.253600px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.425600px;}
.ws16{word-spacing:-13.403400px;}
.ws9{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.ws11{word-spacing:-13.294800px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.215240px;}
.ws13{word-spacing:-13.160400px;}
.ws17{word-spacing:-13.101000px;}
.ws14{word-spacing:-13.072800px;}
.wsf{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.043400px;}
.ws1{word-spacing:-13.039800px;}
.ws15{word-spacing:-13.009800px;}
.wsb{word-spacing:-12.993600px;}
.ws7{word-spacing:-12.799200px;}
.wsa{word-spacing:-12.774000px;}
.wse{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._12{margin-left:-4.330680px;}
._3{margin-left:-3.246600px;}
._4{margin-left:-2.228400px;}
._0{margin-left:-1.020000px;}
._1{width:1.090188px;}
._6{width:2.156412px;}
._8{width:3.346141px;}
._a{width:4.400649px;}
._11{width:5.750304px;}
._13{width:7.094160px;}
._10{width:8.116200px;}
._b{width:9.919800px;}
._c{width:11.663400px;}
._9{width:14.488800px;}
._5{width:16.242720px;}
._7{width:17.821870px;}
._2{width:19.544376px;}
._d{width:21.087360px;}
._f{width:22.660799px;}
._e{width:24.412800px;}
._19{width:25.456560px;}
._1a{width:26.505120px;}
._15{width:34.448760px;}
._14{width:35.470800px;}
._20{width:36.995520px;}
._17{width:39.588840px;}
._1e{width:40.845240px;}
._1f{width:42.205680px;}
._28{width:43.585560px;}
._2b{width:44.971200px;}
._31{width:46.977480px;}
._32{width:48.507011px;}
._29{width:50.765040px;}
._2a{width:52.317000px;}
._27{width:53.927640px;}
._24{width:62.308080px;}
._1c{width:65.410560px;}
._26{width:66.997440px;}
._1b{width:69.829200px;}
._2f{width:81.522720px;}
._30{width:82.785240px;}
._25{width:84.129600px;}
._1d{width:89.458560px;}
._22{width:91.225800px;}
._23{width:92.380680px;}
._21{width:116.211960px;}
._2c{width:144.588600px;}
._2d{width:145.670760px;}
._2e{width:165.630600px;}
._18{width:183.516120px;}
._16{width:228.636360px;}
._33{width:340.880400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y75{bottom:112.080000px;}
.yf5{bottom:112.440000px;}
.y5f{bottom:113.340000px;}
.y101{bottom:114.870000px;}
.y1a0{bottom:117.570000px;}
.ya7{bottom:117.840000px;}
.y178{bottom:120.720000px;}
.y1bf{bottom:123.150000px;}
.y1f5{bottom:124.680000px;}
.yd8{bottom:124.860000px;}
.y74{bottom:129.720000px;}
.yf4{bottom:129.990000px;}
.y5e{bottom:130.980000px;}
.y19f{bottom:135.120000px;}
.ya6{bottom:135.390000px;}
.y177{bottom:138.360000px;}
.y1be{bottom:140.700000px;}
.y113{bottom:141.150000px;}
.y1f4{bottom:142.320000px;}
.yd7{bottom:142.500000px;}
.y29{bottom:142.860000px;}
.y166{bottom:144.930000px;}
.y73{bottom:147.270000px;}
.y5d{bottom:148.530000px;}
.y100{bottom:150.420000px;}
.y1e6{bottom:151.320000px;}
.y19e{bottom:152.670000px;}
.ya5{bottom:152.940000px;}
.y176{bottom:155.910000px;}
.y133{bottom:158.340000px;}
.y112{bottom:158.790000px;}
.yd6{bottom:160.050000px;}
.y28{bottom:160.500000px;}
.y165{bottom:162.570000px;}
.y72{bottom:164.910000px;}
.yf3{bottom:165.630000px;}
.y1bd{bottom:167.250000px;}
.y1e5{bottom:168.870000px;}
.y19d{bottom:170.310000px;}
.ya4{bottom:170.580000px;}
.y175{bottom:173.460000px;}
.y132{bottom:175.980000px;}
.y111{bottom:176.340000px;}
.yd5{bottom:177.600000px;}
.y27{bottom:178.050000px;}
.y164{bottom:180.120000px;}
.y71{bottom:182.370000px;}
.yf2{bottom:183.180000px;}
.y5c{bottom:184.170000px;}
.y1bc{bottom:184.890000px;}
.yff{bottom:186.060000px;}
.y1f3{bottom:186.510000px;}
.y19c{bottom:187.860000px;}
.y174{bottom:191.100000px;}
.y131{bottom:193.530000px;}
.y110{bottom:193.980000px;}
.yd4{bottom:195.240000px;}
.y1e4{bottom:195.510000px;}
.y26{bottom:195.600000px;}
.y163{bottom:197.670000px;}
.yf1{bottom:200.730000px;}
.y5b{bottom:201.720000px;}
.yfe{bottom:203.610000px;}
.y1f2{bottom:204.060000px;}
.ya3{bottom:206.130000px;}
.y70{bottom:207.930000px;}
.y173{bottom:208.650000px;}
.y130{bottom:211.170000px;}
.y1bb{bottom:211.440000px;}
.y1e3{bottom:213.060000px;}
.y25{bottom:213.240000px;}
.y19b{bottom:214.500000px;}
.y162{bottom:215.310000px;}
.yf0{bottom:218.370000px;}
.y5a{bottom:219.270000px;}
.yfd{bottom:221.160000px;}
.ya2{bottom:223.680000px;}
.y12f{bottom:228.720000px;}
.y1ba{bottom:229.080000px;}
.y10f{bottom:229.530000px;}
.y6f{bottom:230.340000px;}
.y1e2{bottom:230.610000px;}
.y24{bottom:230.790000px;}
.y161{bottom:232.860000px;}
.yef{bottom:235.920000px;}
.y59{bottom:236.910000px;}
.yfc{bottom:238.800000px;}
.ya1{bottom:241.320000px;}
.y172{bottom:244.290000px;}
.y12e{bottom:246.270000px;}
.y1f1{bottom:248.250000px;}
.y23{bottom:248.340000px;}
.yd3{bottom:248.430000px;}
.y19a{bottom:250.050000px;}
.y160{bottom:250.500000px;}
.y10e{bottom:252.750000px;}
.yee{bottom:253.560000px;}
.y58{bottom:254.460000px;}
.y1b9{bottom:255.630000px;}
.y1e1{bottom:257.250000px;}
.ya0{bottom:258.870000px;}
.yc2{bottom:259.590000px;}
.y171{bottom:261.840000px;}
.y12d{bottom:263.910000px;}
.y22{bottom:265.980000px;}
.y199{bottom:267.600000px;}
.y15f{bottom:268.050000px;}
.yed{bottom:271.110000px;}
.y57{bottom:272.100000px;}
.y1b8{bottom:273.180000px;}
.yfb{bottom:274.350000px;}
.y1e0{bottom:274.800000px;}
.y9f{bottom:276.510000px;}
.y170{bottom:279.390000px;}
.y12c{bottom:281.460000px;}
.y21{bottom:283.530000px;}
.y198{bottom:285.240000px;}
.y56{bottom:289.650000px;}
.y1df{bottom:292.440000px;}
.y9e{bottom:294.060000px;}
.yc1{bottom:294.870000px;}
.y15e{bottom:294.960000px;}
.y16f{bottom:297.030000px;}
.yfa{bottom:297.570000px;}
.yec{bottom:297.660000px;}
.y12b{bottom:299.100000px;}
.y1b7{bottom:299.820000px;}
.y20{bottom:301.170000px;}
.y197{bottom:302.790000px;}
.y55{bottom:307.200000px;}
.y9d{bottom:311.610000px;}
.yc0{bottom:312.510000px;}
.y16e{bottom:314.580000px;}
.y12a{bottom:316.650000px;}
.y1b6{bottom:317.370000px;}
.y1f{bottom:318.720000px;}
.y1de{bottom:318.990000px;}
.y196{bottom:320.430000px;}
.y54{bottom:324.840000px;}
.y9c{bottom:329.250000px;}
.ybf{bottom:330.060000px;}
.y16d{bottom:332.220000px;}
.yeb{bottom:333.300000px;}
.y129{bottom:334.200000px;}
.y1e{bottom:336.270000px;}
.yd2{bottom:336.360000px;}
.y1dd{bottom:336.540000px;}
.y195{bottom:337.980000px;}
.y53{bottom:342.390000px;}
.y15d{bottom:343.200000px;}
.y1b5{bottom:344.010000px;}
.y9b{bottom:346.800000px;}
.ybe{bottom:347.610000px;}
.y16c{bottom:349.770000px;}
.yea{bottom:350.850000px;}
.y128{bottom:351.840000px;}
.y1d{bottom:353.910000px;}
.y194{bottom:355.530000px;}
.y52{bottom:359.940000px;}
.y15c{bottom:360.840000px;}
.y1b4{bottom:361.560000px;}
.y1dc{bottom:363.180000px;}
.y9a{bottom:364.440000px;}
.ybd{bottom:365.250000px;}
.ye9{bottom:368.490000px;}
.y127{bottom:369.390000px;}
.y1c{bottom:371.460000px;}
.y51{bottom:377.580000px;}
.y15b{bottom:378.390000px;}
.y1db{bottom:380.730000px;}
.y99{bottom:381.990000px;}
.ybc{bottom:382.800000px;}
.y16b{bottom:385.320000px;}
.ye8{bottom:386.040000px;}
.y126{bottom:386.940000px;}
.y1b3{bottom:388.110000px;}
.yd1{bottom:389.100000px;}
.y193{bottom:391.170000px;}
.y50{bottom:395.130000px;}
.y15a{bottom:395.940000px;}
.y1b{bottom:398.370000px;}
.ybb{bottom:400.440000px;}
.ye7{bottom:403.590000px;}
.y125{bottom:404.580000px;}
.y1b2{bottom:405.750000px;}
.yd0{bottom:406.650000px;}
.y1da{bottom:407.370000px;}
.y16a{bottom:408.630000px;}
.y192{bottom:408.720000px;}
.y159{bottom:413.580000px;}
.y98{bottom:417.540000px;}
.yba{bottom:417.990000px;}
.ye6{bottom:421.230000px;}
.y124{bottom:422.130000px;}
.ycf{bottom:424.290000px;}
.y191{bottom:426.360000px;}
.y4f{bottom:430.770000px;}
.y158{bottom:431.130000px;}
.y1b1{bottom:432.300000px;}
.y1d9{bottom:433.920000px;}
.y97{bottom:435.180000px;}
.yb9{bottom:435.540000px;}
.ye5{bottom:438.780000px;}
.yce{bottom:441.840000px;}
.y190{bottom:443.910000px;}
.y1a{bottom:446.700000px;}
.y4e{bottom:448.320000px;}
.y157{bottom:448.770000px;}
.y1b0{bottom:449.940000px;}
.y1d8{bottom:451.470000px;}
.y96{bottom:452.730000px;}
.yb8{bottom:453.180000px;}
.ye4{bottom:456.420000px;}
.y123{bottom:457.770000px;}
.y18f{bottom:461.460000px;}
.y19{bottom:464.610000px;}
.y4d{bottom:465.870000px;}
.y156{bottom:466.320000px;}
.ycd{bottom:468.390000px;}
.y95{bottom:470.400000px;}
.yb7{bottom:470.760000px;}
.ye3{bottom:474.000000px;}
.y122{bottom:475.350000px;}
.y1af{bottom:476.520000px;}
.y1d7{bottom:478.140000px;}
.y18e{bottom:479.130000px;}
.y4c{bottom:483.540000px;}
.y155{bottom:483.900000px;}
.y94{bottom:487.950000px;}
.yb6{bottom:488.400000px;}
.ye2{bottom:491.550000px;}
.y121{bottom:492.900000px;}
.y1ae{bottom:494.070000px;}
.y1d6{bottom:495.690000px;}
.y18d{bottom:496.680000px;}
.y4b{bottom:501.090000px;}
.y154{bottom:501.540000px;}
.y18{bottom:501.630000px;}
.ycc{bottom:504.060000px;}
.y93{bottom:505.500000px;}
.yb5{bottom:505.950000px;}
.ye1{bottom:509.190000px;}
.y120{bottom:510.540000px;}
.y1ad{bottom:511.710000px;}
.y18c{bottom:514.230000px;}
.y6e{bottom:516.840000px;}
.y4a{bottom:518.730000px;}
.y17{bottom:519.180000px;}
.ycb{bottom:521.610000px;}
.y1d5{bottom:522.330000px;}
.ye0{bottom:526.740000px;}
.y11f{bottom:528.090000px;}
.y18b{bottom:531.870000px;}
.y92{bottom:532.140000px;}
.y6d{bottom:534.480000px;}
.y49{bottom:536.280000px;}
.y16{bottom:536.820000px;}
.y153{bottom:537.090000px;}
.y1ac{bottom:538.260000px;}
.yca{bottom:539.250000px;}
.y1d4{bottom:539.880000px;}
.yb4{bottom:541.500000px;}
.ydf{bottom:544.290000px;}
.y11e{bottom:545.730000px;}
.y18a{bottom:549.420000px;}
.y6c{bottom:552.030000px;}
.y48{bottom:553.830000px;}
.y15{bottom:554.370000px;}
.y152{bottom:554.730000px;}
.y1ab{bottom:555.900000px;}
.yc9{bottom:556.800000px;}
.y1d3{bottom:557.430000px;}
.yb3{bottom:559.140000px;}
.y11d{bottom:563.280000px;}
.y1f0{bottom:566.430000px;}
.y189{bottom:567.060000px;}
.y91{bottom:567.690000px;}
.y6b{bottom:569.580000px;}
.y47{bottom:571.470000px;}
.y14{bottom:571.920000px;}
.y151{bottom:572.280000px;}
.y1aa{bottom:573.450000px;}
.yc8{bottom:574.350000px;}
.yb2{bottom:576.690000px;}
.yde{bottom:579.930000px;}
.y11c{bottom:580.830000px;}
.y1d2{bottom:584.070000px;}
.y90{bottom:585.330000px;}
.y46{bottom:589.020000px;}
.y13{bottom:589.560000px;}
.y150{bottom:589.830000px;}
.yc7{bottom:591.990000px;}
.y1f9{bottom:593.070000px;}
.y188{bottom:593.970000px;}
.yb1{bottom:594.330000px;}
.ydd{bottom:597.480000px;}
.y11b{bottom:598.470000px;}
.y1a9{bottom:600.000000px;}
.y1d1{bottom:601.620000px;}
.y8f{bottom:602.880000px;}
.y6a{bottom:605.220000px;}
.y12{bottom:607.110000px;}
.y14f{bottom:607.470000px;}
.yc6{bottom:609.540000px;}
.y1ef{bottom:610.620000px;}
.yb0{bottom:611.880000px;}
.ydc{bottom:615.120000px;}
.y45{bottom:615.660000px;}
.y11a{bottom:616.020000px;}
.y1a8{bottom:617.640000px;}
.y10d{bottom:617.820000px;}
.y8e{bottom:620.430000px;}
.y11{bottom:624.750000px;}
.y14e{bottom:625.020000px;}
.y1d0{bottom:628.260000px;}
.y69{bottom:628.440000px;}
.yaf{bottom:629.430000px;}
.ydb{bottom:632.670000px;}
.y119{bottom:633.660000px;}
.y1a7{bottom:635.190000px;}
.y8d{bottom:638.070000px;}
.y187{bottom:642.210000px;}
.y10{bottom:642.300000px;}
.y14d{bottom:642.660000px;}
.yc5{bottom:644.370000px;}
.y1cf{bottom:645.810000px;}
.yae{bottom:647.070000px;}
.y118{bottom:651.210000px;}
.y44{bottom:651.570000px;}
.y1f8{bottom:654.810000px;}
.y8c{bottom:655.620000px;}
.y186{bottom:659.760000px;}
.yf{bottom:659.850000px;}
.y14c{bottom:660.210000px;}
.y1a6{bottom:662.100000px;}
.yad{bottom:664.620000px;}
.yda{bottom:668.220000px;}
.y117{bottom:668.760000px;}
.y1ce{bottom:672.360000px;}
.y8b{bottom:673.260000px;}
.yc4{bottom:677.220000px;}
.y185{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.y14b{bottom:677.760000px;}
.yac{bottom:682.260000px;}
.y116{bottom:686.400000px;}
.y1cd{bottom:690.000000px;}
.y8a{bottom:690.810000px;}
.yd9{bottom:691.530000px;}
.y184{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y14a{bottom:695.400000px;}
.y43{bottom:699.810000px;}
.yc3{bottom:700.440000px;}
.y115{bottom:703.950000px;}
.y1ee{bottom:707.550000px;}
.y89{bottom:708.360000px;}
.y1a5{bottom:710.340000px;}
.y183{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y149{bottom:712.950000px;}
.y1cc{bottom:716.550000px;}
.y42{bottom:717.360000px;}
.y88{bottom:726.000000px;}
.yb{bottom:730.230000px;}
.y148{bottom:730.590000px;}
.y114{bottom:730.860000px;}
.y1cb{bottom:734.190000px;}
.y41{bottom:735.000000px;}
.y1a4{bottom:737.250000px;}
.y87{bottom:743.550000px;}
.y10c{bottom:744.000000px;}
.y169{bottom:746.160000px;}
.y182{bottom:748.140000px;}
.y1ca{bottom:751.740000px;}
.y40{bottom:752.550000px;}
.ya{bottom:757.140000px;}
.y1f7{bottom:760.740000px;}
.y86{bottom:761.190000px;}
.yf9{bottom:761.550000px;}
.y181{bottom:765.690000px;}
.y147{bottom:766.140000px;}
.y3f{bottom:770.190000px;}
.y1a3{bottom:774.600000px;}
.y1c9{bottom:778.290000px;}
.y85{bottom:778.740000px;}
.yf8{bottom:779.190000px;}
.y168{bottom:781.440000px;}
.y180{bottom:783.330000px;}
.y146{bottom:783.690000px;}
.y3e{bottom:787.740000px;}
.yab{bottom:788.190000px;}
.y1c8{bottom:795.930000px;}
.y84{bottom:796.290000px;}
.yf7{bottom:796.740000px;}
.y17f{bottom:800.880000px;}
.y145{bottom:801.330000px;}
.y167{bottom:804.660000px;}
.y1ed{bottom:804.930000px;}
.y3d{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.yaa{bottom:805.740000px;}
.y1c7{bottom:813.480000px;}
.yf6{bottom:814.290000px;}
.y17e{bottom:818.520000px;}
.y144{bottom:818.880000px;}
.y1ec{bottom:822.480000px;}
.y3c{bottom:822.930000px;}
.ya9{bottom:823.290000px;}
.y83{bottom:831.930000px;}
.y17d{bottom:836.070000px;}
.y143{bottom:836.520000px;}
.y1c6{bottom:840.030000px;}
.y1a2{bottom:840.480000px;}
.ya8{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y1eb{bottom:849.030000px;}
.y82{bottom:849.480000px;}
.y17c{bottom:853.620000px;}
.y142{bottom:854.070000px;}
.y1c5{bottom:857.670000px;}
.y1a1{bottom:858.030000px;}
.y3b{bottom:858.480000px;}
.y1ea{bottom:866.670000px;}
.y81{bottom:867.030000px;}
.y17b{bottom:871.260000px;}
.y141{bottom:871.620000px;}
.y1c4{bottom:875.220000px;}
.y3a{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y1e9{bottom:884.220000px;}
.y80{bottom:884.670000px;}
.y140{bottom:889.260000px;}
.y1f6{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.y1c3{bottom:901.860000px;}
.y7f{bottom:902.220000px;}
.y13f{bottom:906.810000px;}
.y1e8{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y1c2{bottom:919.410000px;}
.y7e{bottom:919.860000px;}
.y13e{bottom:924.450000px;}
.y1e7{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y7d{bottom:937.410000px;}
.y13d{bottom:942.000000px;}
.y1c1{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y7c{bottom:954.960000px;}
.y10b{bottom:955.410000px;}
.y13c{bottom:959.550000px;}
.y1c0{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y68{bottom:964.410000px;}
.y7b{bottom:972.600000px;}
.y10a{bottom:972.960000px;}
.y17a{bottom:977.190000px;}
.y34{bottom:981.600000px;}
.y67{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y7a{bottom:990.150000px;}
.y109{bottom:990.600000px;}
.y179{bottom:994.740000px;}
.y13b{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.y66{bottom:999.600000px;}
.y79{bottom:1007.790000px;}
.y108{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y13a{bottom:1012.770000px;}
.y32{bottom:1016.820000px;}
.y65{bottom:1017.180000px;}
.y78{bottom:1025.370000px;}
.y107{bottom:1025.820000px;}
.y139{bottom:1030.320000px;}
.y31{bottom:1034.370000px;}
.y64{bottom:1034.820000px;}
.y77{bottom:1042.920000px;}
.y106{bottom:1043.370000px;}
.y138{bottom:1047.960000px;}
.y30{bottom:1051.920000px;}
.y63{bottom:1052.370000px;}
.y76{bottom:1060.560000px;}
.y105{bottom:1060.920000px;}
.y137{bottom:1065.510000px;}
.y2f{bottom:1069.560000px;}
.y62{bottom:1069.920000px;}
.y104{bottom:1078.560000px;}
.y136{bottom:1083.150000px;}
.y2e{bottom:1087.110000px;}
.y61{bottom:1087.560000px;}
.y103{bottom:1096.110000px;}
.y135{bottom:1100.700000px;}
.y60{bottom:1105.110000px;}
.y102{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y134{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hc{height:41.661211px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.hb{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.x13{left:129.689987px;}
.x11{left:161.099987px;}
.x7{left:178.319987px;}
.x2{left:201.539987px;}
.x15{left:241.589987px;}
.x5{left:266.429987px;}
.xd{left:290.279987px;}
.xf{left:302.249987px;}
.xa{left:343.289987px;}
.xb{left:365.699987px;}
.x8{left:445.349987px;}
.x10{left:670.379987px;}
.xc{left:700.799987px;}
.x6{left:725.549987px;}
.xe{left:740.129987px;}
.x4{left:750.299987px;}
.x14{left:751.379987px;}
.x12{left:752.549987px;}
.x9{left:764.879987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.456533pt;}
.lse{letter-spacing:-0.402133pt;}
.ls9{letter-spacing:-0.379733pt;}
.lsf{letter-spacing:-0.206933pt;}
.ls1b{letter-spacing:-0.192533pt;}
.ls5{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.162667pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls1d{letter-spacing:-0.111467pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.009920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.103467pt;}
.lsd{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.157333pt;}
.ls18{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:10.003200pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.933867pt;}
.ws16{word-spacing:-11.914133pt;}
.ws9{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.ws11{word-spacing:-11.817600pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.746880pt;}
.ws13{word-spacing:-11.698133pt;}
.ws17{word-spacing:-11.645333pt;}
.ws14{word-spacing:-11.620267pt;}
.wsf{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.594133pt;}
.ws1{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.564267pt;}
.wsb{word-spacing:-11.549867pt;}
.ws7{word-spacing:-11.377067pt;}
.wsa{word-spacing:-11.354667pt;}
.wse{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._12{margin-left:-3.849493pt;}
._3{margin-left:-2.885867pt;}
._4{margin-left:-1.980800pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.969056pt;}
._6{width:1.916811pt;}
._8{width:2.974347pt;}
._a{width:3.911688pt;}
._11{width:5.111381pt;}
._13{width:6.305920pt;}
._10{width:7.214400pt;}
._b{width:8.817600pt;}
._c{width:10.367467pt;}
._9{width:12.878933pt;}
._5{width:14.437973pt;}
._7{width:15.841662pt;}
._2{width:17.372778pt;}
._d{width:18.744320pt;}
._f{width:20.142933pt;}
._e{width:21.700267pt;}
._19{width:22.628053pt;}
._1a{width:23.560107pt;}
._15{width:30.621120pt;}
._14{width:31.529600pt;}
._20{width:32.884907pt;}
._17{width:35.190080pt;}
._1e{width:36.306880pt;}
._1f{width:37.516160pt;}
._28{width:38.742720pt;}
._2b{width:39.974400pt;}
._31{width:41.757760pt;}
._32{width:43.117343pt;}
._29{width:45.124480pt;}
._2a{width:46.504000pt;}
._27{width:47.935680pt;}
._24{width:55.384960pt;}
._1c{width:58.142720pt;}
._26{width:59.553280pt;}
._1b{width:62.070400pt;}
._2f{width:72.464640pt;}
._30{width:73.586880pt;}
._25{width:74.781867pt;}
._1d{width:79.518720pt;}
._22{width:81.089600pt;}
._23{width:82.116160pt;}
._21{width:103.299520pt;}
._2c{width:128.523200pt;}
._2d{width:129.485120pt;}
._2e{width:147.227200pt;}
._18{width:163.125440pt;}
._16{width:203.232320pt;}
._33{width:303.004800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y75{bottom:99.626667pt;}
.yf5{bottom:99.946667pt;}
.y5f{bottom:100.746667pt;}
.y101{bottom:102.106667pt;}
.y1a0{bottom:104.506667pt;}
.ya7{bottom:104.746667pt;}
.y178{bottom:107.306667pt;}
.y1bf{bottom:109.466667pt;}
.y1f5{bottom:110.826667pt;}
.yd8{bottom:110.986667pt;}
.y74{bottom:115.306667pt;}
.yf4{bottom:115.546667pt;}
.y5e{bottom:116.426667pt;}
.y19f{bottom:120.106667pt;}
.ya6{bottom:120.346667pt;}
.y177{bottom:122.986667pt;}
.y1be{bottom:125.066667pt;}
.y113{bottom:125.466667pt;}
.y1f4{bottom:126.506667pt;}
.yd7{bottom:126.666667pt;}
.y29{bottom:126.986667pt;}
.y166{bottom:128.826667pt;}
.y73{bottom:130.906667pt;}
.y5d{bottom:132.026667pt;}
.y100{bottom:133.706667pt;}
.y1e6{bottom:134.506667pt;}
.y19e{bottom:135.706667pt;}
.ya5{bottom:135.946667pt;}
.y176{bottom:138.586667pt;}
.y133{bottom:140.746667pt;}
.y112{bottom:141.146667pt;}
.yd6{bottom:142.266667pt;}
.y28{bottom:142.666667pt;}
.y165{bottom:144.506667pt;}
.y72{bottom:146.586667pt;}
.yf3{bottom:147.226667pt;}
.y1bd{bottom:148.666667pt;}
.y1e5{bottom:150.106667pt;}
.y19d{bottom:151.386667pt;}
.ya4{bottom:151.626667pt;}
.y175{bottom:154.186667pt;}
.y132{bottom:156.426667pt;}
.y111{bottom:156.746667pt;}
.yd5{bottom:157.866667pt;}
.y27{bottom:158.266667pt;}
.y164{bottom:160.106667pt;}
.y71{bottom:162.106667pt;}
.yf2{bottom:162.826667pt;}
.y5c{bottom:163.706667pt;}
.y1bc{bottom:164.346667pt;}
.yff{bottom:165.386667pt;}
.y1f3{bottom:165.786667pt;}
.y19c{bottom:166.986667pt;}
.y174{bottom:169.866667pt;}
.y131{bottom:172.026667pt;}
.y110{bottom:172.426667pt;}
.yd4{bottom:173.546667pt;}
.y1e4{bottom:173.786667pt;}
.y26{bottom:173.866667pt;}
.y163{bottom:175.706667pt;}
.yf1{bottom:178.426667pt;}
.y5b{bottom:179.306667pt;}
.yfe{bottom:180.986667pt;}
.y1f2{bottom:181.386667pt;}
.ya3{bottom:183.226667pt;}
.y70{bottom:184.826667pt;}
.y173{bottom:185.466667pt;}
.y130{bottom:187.706667pt;}
.y1bb{bottom:187.946667pt;}
.y1e3{bottom:189.386667pt;}
.y25{bottom:189.546667pt;}
.y19b{bottom:190.666667pt;}
.y162{bottom:191.386667pt;}
.yf0{bottom:194.106667pt;}
.y5a{bottom:194.906667pt;}
.yfd{bottom:196.586667pt;}
.ya2{bottom:198.826667pt;}
.y12f{bottom:203.306667pt;}
.y1ba{bottom:203.626667pt;}
.y10f{bottom:204.026667pt;}
.y6f{bottom:204.746667pt;}
.y1e2{bottom:204.986667pt;}
.y24{bottom:205.146667pt;}
.y161{bottom:206.986667pt;}
.yef{bottom:209.706667pt;}
.y59{bottom:210.586667pt;}
.yfc{bottom:212.266667pt;}
.ya1{bottom:214.506667pt;}
.y172{bottom:217.146667pt;}
.y12e{bottom:218.906667pt;}
.y1f1{bottom:220.666667pt;}
.y23{bottom:220.746667pt;}
.yd3{bottom:220.826667pt;}
.y19a{bottom:222.266667pt;}
.y160{bottom:222.666667pt;}
.y10e{bottom:224.666667pt;}
.yee{bottom:225.386667pt;}
.y58{bottom:226.186667pt;}
.y1b9{bottom:227.226667pt;}
.y1e1{bottom:228.666667pt;}
.ya0{bottom:230.106667pt;}
.yc2{bottom:230.746667pt;}
.y171{bottom:232.746667pt;}
.y12d{bottom:234.586667pt;}
.y22{bottom:236.426667pt;}
.y199{bottom:237.866667pt;}
.y15f{bottom:238.266667pt;}
.yed{bottom:240.986667pt;}
.y57{bottom:241.866667pt;}
.y1b8{bottom:242.826667pt;}
.yfb{bottom:243.866667pt;}
.y1e0{bottom:244.266667pt;}
.y9f{bottom:245.786667pt;}
.y170{bottom:248.346667pt;}
.y12c{bottom:250.186667pt;}
.y21{bottom:252.026667pt;}
.y198{bottom:253.546667pt;}
.y56{bottom:257.466667pt;}
.y1df{bottom:259.946667pt;}
.y9e{bottom:261.386667pt;}
.yc1{bottom:262.106667pt;}
.y15e{bottom:262.186667pt;}
.y16f{bottom:264.026667pt;}
.yfa{bottom:264.506667pt;}
.yec{bottom:264.586667pt;}
.y12b{bottom:265.866667pt;}
.y1b7{bottom:266.506667pt;}
.y20{bottom:267.706667pt;}
.y197{bottom:269.146667pt;}
.y55{bottom:273.066667pt;}
.y9d{bottom:276.986667pt;}
.yc0{bottom:277.786667pt;}
.y16e{bottom:279.626667pt;}
.y12a{bottom:281.466667pt;}
.y1b6{bottom:282.106667pt;}
.y1f{bottom:283.306667pt;}
.y1de{bottom:283.546667pt;}
.y196{bottom:284.826667pt;}
.y54{bottom:288.746667pt;}
.y9c{bottom:292.666667pt;}
.ybf{bottom:293.386667pt;}
.y16d{bottom:295.306667pt;}
.yeb{bottom:296.266667pt;}
.y129{bottom:297.066667pt;}
.y1e{bottom:298.906667pt;}
.yd2{bottom:298.986667pt;}
.y1dd{bottom:299.146667pt;}
.y195{bottom:300.426667pt;}
.y53{bottom:304.346667pt;}
.y15d{bottom:305.066667pt;}
.y1b5{bottom:305.786667pt;}
.y9b{bottom:308.266667pt;}
.ybe{bottom:308.986667pt;}
.y16c{bottom:310.906667pt;}
.yea{bottom:311.866667pt;}
.y128{bottom:312.746667pt;}
.y1d{bottom:314.586667pt;}
.y194{bottom:316.026667pt;}
.y52{bottom:319.946667pt;}
.y15c{bottom:320.746667pt;}
.y1b4{bottom:321.386667pt;}
.y1dc{bottom:322.826667pt;}
.y9a{bottom:323.946667pt;}
.ybd{bottom:324.666667pt;}
.ye9{bottom:327.546667pt;}
.y127{bottom:328.346667pt;}
.y1c{bottom:330.186667pt;}
.y51{bottom:335.626667pt;}
.y15b{bottom:336.346667pt;}
.y1db{bottom:338.426667pt;}
.y99{bottom:339.546667pt;}
.ybc{bottom:340.266667pt;}
.y16b{bottom:342.506667pt;}
.ye8{bottom:343.146667pt;}
.y126{bottom:343.946667pt;}
.y1b3{bottom:344.986667pt;}
.yd1{bottom:345.866667pt;}
.y193{bottom:347.706667pt;}
.y50{bottom:351.226667pt;}
.y15a{bottom:351.946667pt;}
.y1b{bottom:354.106667pt;}
.ybb{bottom:355.946667pt;}
.ye7{bottom:358.746667pt;}
.y125{bottom:359.626667pt;}
.y1b2{bottom:360.666667pt;}
.yd0{bottom:361.466667pt;}
.y1da{bottom:362.106667pt;}
.y16a{bottom:363.226667pt;}
.y192{bottom:363.306667pt;}
.y159{bottom:367.626667pt;}
.y98{bottom:371.146667pt;}
.yba{bottom:371.546667pt;}
.ye6{bottom:374.426667pt;}
.y124{bottom:375.226667pt;}
.ycf{bottom:377.146667pt;}
.y191{bottom:378.986667pt;}
.y4f{bottom:382.906667pt;}
.y158{bottom:383.226667pt;}
.y1b1{bottom:384.266667pt;}
.y1d9{bottom:385.706667pt;}
.y97{bottom:386.826667pt;}
.yb9{bottom:387.146667pt;}
.ye5{bottom:390.026667pt;}
.yce{bottom:392.746667pt;}
.y190{bottom:394.586667pt;}
.y1a{bottom:397.066667pt;}
.y4e{bottom:398.506667pt;}
.y157{bottom:398.906667pt;}
.y1b0{bottom:399.946667pt;}
.y1d8{bottom:401.306667pt;}
.y96{bottom:402.426667pt;}
.yb8{bottom:402.826667pt;}
.ye4{bottom:405.706667pt;}
.y123{bottom:406.906667pt;}
.y18f{bottom:410.186667pt;}
.y19{bottom:412.986667pt;}
.y4d{bottom:414.106667pt;}
.y156{bottom:414.506667pt;}
.ycd{bottom:416.346667pt;}
.y95{bottom:418.133333pt;}
.yb7{bottom:418.453333pt;}
.ye3{bottom:421.333333pt;}
.y122{bottom:422.533333pt;}
.y1af{bottom:423.573333pt;}
.y1d7{bottom:425.013333pt;}
.y18e{bottom:425.893333pt;}
.y4c{bottom:429.813333pt;}
.y155{bottom:430.133333pt;}
.y94{bottom:433.733333pt;}
.yb6{bottom:434.133333pt;}
.ye2{bottom:436.933333pt;}
.y121{bottom:438.133333pt;}
.y1ae{bottom:439.173333pt;}
.y1d6{bottom:440.613333pt;}
.y18d{bottom:441.493333pt;}
.y4b{bottom:445.413333pt;}
.y154{bottom:445.813333pt;}
.y18{bottom:445.893333pt;}
.ycc{bottom:448.053333pt;}
.y93{bottom:449.333333pt;}
.yb5{bottom:449.733333pt;}
.ye1{bottom:452.613333pt;}
.y120{bottom:453.813333pt;}
.y1ad{bottom:454.853333pt;}
.y18c{bottom:457.093333pt;}
.y6e{bottom:459.413333pt;}
.y4a{bottom:461.093333pt;}
.y17{bottom:461.493333pt;}
.ycb{bottom:463.653333pt;}
.y1d5{bottom:464.293333pt;}
.ye0{bottom:468.213333pt;}
.y11f{bottom:469.413333pt;}
.y18b{bottom:472.773333pt;}
.y92{bottom:473.013333pt;}
.y6d{bottom:475.093333pt;}
.y49{bottom:476.693333pt;}
.y16{bottom:477.173333pt;}
.y153{bottom:477.413333pt;}
.y1ac{bottom:478.453333pt;}
.yca{bottom:479.333333pt;}
.y1d4{bottom:479.893333pt;}
.yb4{bottom:481.333333pt;}
.ydf{bottom:483.813333pt;}
.y11e{bottom:485.093333pt;}
.y18a{bottom:488.373333pt;}
.y6c{bottom:490.693333pt;}
.y48{bottom:492.293333pt;}
.y15{bottom:492.773333pt;}
.y152{bottom:493.093333pt;}
.y1ab{bottom:494.133333pt;}
.yc9{bottom:494.933333pt;}
.y1d3{bottom:495.493333pt;}
.yb3{bottom:497.013333pt;}
.y11d{bottom:500.693333pt;}
.y1f0{bottom:503.493333pt;}
.y189{bottom:504.053333pt;}
.y91{bottom:504.613333pt;}
.y6b{bottom:506.293333pt;}
.y47{bottom:507.973333pt;}
.y14{bottom:508.373333pt;}
.y151{bottom:508.693333pt;}
.y1aa{bottom:509.733333pt;}
.yc8{bottom:510.533333pt;}
.yb2{bottom:512.613333pt;}
.yde{bottom:515.493333pt;}
.y11c{bottom:516.293333pt;}
.y1d2{bottom:519.173333pt;}
.y90{bottom:520.293333pt;}
.y46{bottom:523.573333pt;}
.y13{bottom:524.053333pt;}
.y150{bottom:524.293333pt;}
.yc7{bottom:526.213333pt;}
.y1f9{bottom:527.173333pt;}
.y188{bottom:527.973333pt;}
.yb1{bottom:528.293333pt;}
.ydd{bottom:531.093333pt;}
.y11b{bottom:531.973333pt;}
.y1a9{bottom:533.333333pt;}
.y1d1{bottom:534.773333pt;}
.y8f{bottom:535.893333pt;}
.y6a{bottom:537.973333pt;}
.y12{bottom:539.653333pt;}
.y14f{bottom:539.973333pt;}
.yc6{bottom:541.813333pt;}
.y1ef{bottom:542.773333pt;}
.yb0{bottom:543.893333pt;}
.ydc{bottom:546.773333pt;}
.y45{bottom:547.253333pt;}
.y11a{bottom:547.573333pt;}
.y1a8{bottom:549.013333pt;}
.y10d{bottom:549.173333pt;}
.y8e{bottom:551.493333pt;}
.y11{bottom:555.333333pt;}
.y14e{bottom:555.573333pt;}
.y1d0{bottom:558.453333pt;}
.y69{bottom:558.613333pt;}
.yaf{bottom:559.493333pt;}
.ydb{bottom:562.373333pt;}
.y119{bottom:563.253333pt;}
.y1a7{bottom:564.613333pt;}
.y8d{bottom:567.173333pt;}
.y187{bottom:570.853333pt;}
.y10{bottom:570.933333pt;}
.y14d{bottom:571.253333pt;}
.yc5{bottom:572.773333pt;}
.y1cf{bottom:574.053333pt;}
.yae{bottom:575.173333pt;}
.y118{bottom:578.853333pt;}
.y44{bottom:579.173333pt;}
.y1f8{bottom:582.053333pt;}
.y8c{bottom:582.773333pt;}
.y186{bottom:586.453333pt;}
.yf{bottom:586.533333pt;}
.y14c{bottom:586.853333pt;}
.y1a6{bottom:588.533333pt;}
.yad{bottom:590.773333pt;}
.yda{bottom:593.973333pt;}
.y117{bottom:594.453333pt;}
.y1ce{bottom:597.653333pt;}
.y8b{bottom:598.453333pt;}
.yc4{bottom:601.973333pt;}
.y185{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.y14b{bottom:602.453333pt;}
.yac{bottom:606.453333pt;}
.y116{bottom:610.133333pt;}
.y1cd{bottom:613.333333pt;}
.y8a{bottom:614.053333pt;}
.yd9{bottom:614.693333pt;}
.y184{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y14a{bottom:618.133333pt;}
.y43{bottom:622.053333pt;}
.yc3{bottom:622.613333pt;}
.y115{bottom:625.733333pt;}
.y1ee{bottom:628.933333pt;}
.y89{bottom:629.653333pt;}
.y1a5{bottom:631.413333pt;}
.y183{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y149{bottom:633.733333pt;}
.y1cc{bottom:636.933333pt;}
.y42{bottom:637.653333pt;}
.y88{bottom:645.333333pt;}
.yb{bottom:649.093333pt;}
.y148{bottom:649.413333pt;}
.y114{bottom:649.653333pt;}
.y1cb{bottom:652.613333pt;}
.y41{bottom:653.333333pt;}
.y1a4{bottom:655.333333pt;}
.y87{bottom:660.933333pt;}
.y10c{bottom:661.333333pt;}
.y169{bottom:663.253333pt;}
.y182{bottom:665.013333pt;}
.y1ca{bottom:668.213333pt;}
.y40{bottom:668.933333pt;}
.ya{bottom:673.013333pt;}
.y1f7{bottom:676.213333pt;}
.y86{bottom:676.613333pt;}
.yf9{bottom:676.933333pt;}
.y181{bottom:680.613333pt;}
.y147{bottom:681.013333pt;}
.y3f{bottom:684.613333pt;}
.y1a3{bottom:688.533333pt;}
.y1c9{bottom:691.813333pt;}
.y85{bottom:692.213333pt;}
.yf8{bottom:692.613333pt;}
.y168{bottom:694.613333pt;}
.y180{bottom:696.293333pt;}
.y146{bottom:696.613333pt;}
.y3e{bottom:700.213333pt;}
.yab{bottom:700.613333pt;}
.y1c8{bottom:707.493333pt;}
.y84{bottom:707.813333pt;}
.yf7{bottom:708.213333pt;}
.y17f{bottom:711.893333pt;}
.y145{bottom:712.293333pt;}
.y167{bottom:715.253333pt;}
.y1ed{bottom:715.493333pt;}
.y3d{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.yaa{bottom:716.213333pt;}
.y1c7{bottom:723.093333pt;}
.yf6{bottom:723.813333pt;}
.y17e{bottom:727.573333pt;}
.y144{bottom:727.893333pt;}
.y1ec{bottom:731.093333pt;}
.y3c{bottom:731.493333pt;}
.ya9{bottom:731.813333pt;}
.y83{bottom:739.493333pt;}
.y17d{bottom:743.173333pt;}
.y143{bottom:743.573333pt;}
.y1c6{bottom:746.693333pt;}
.y1a2{bottom:747.093333pt;}
.ya8{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y1eb{bottom:754.693333pt;}
.y82{bottom:755.093333pt;}
.y17c{bottom:758.773333pt;}
.y142{bottom:759.173333pt;}
.y1c5{bottom:762.373333pt;}
.y1a1{bottom:762.693333pt;}
.y3b{bottom:763.093333pt;}
.y1ea{bottom:770.373333pt;}
.y81{bottom:770.693333pt;}
.y17b{bottom:774.453333pt;}
.y141{bottom:774.773333pt;}
.y1c4{bottom:777.973333pt;}
.y3a{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y1e9{bottom:785.973333pt;}
.y80{bottom:786.373333pt;}
.y140{bottom:790.453333pt;}
.y1f6{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.y1c3{bottom:801.653333pt;}
.y7f{bottom:801.973333pt;}
.y13f{bottom:806.053333pt;}
.y1e8{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y1c2{bottom:817.253333pt;}
.y7e{bottom:817.653333pt;}
.y13e{bottom:821.733333pt;}
.y1e7{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y7d{bottom:833.253333pt;}
.y13d{bottom:837.333333pt;}
.y1c1{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y7c{bottom:848.853333pt;}
.y10b{bottom:849.253333pt;}
.y13c{bottom:852.933333pt;}
.y1c0{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y68{bottom:857.253333pt;}
.y7b{bottom:864.533333pt;}
.y10a{bottom:864.853333pt;}
.y17a{bottom:868.613333pt;}
.y34{bottom:872.533333pt;}
.y67{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y7a{bottom:880.133333pt;}
.y109{bottom:880.533333pt;}
.y179{bottom:884.213333pt;}
.y13b{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.y66{bottom:888.533333pt;}
.y79{bottom:895.813333pt;}
.y108{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y13a{bottom:900.240000pt;}
.y32{bottom:903.840000pt;}
.y65{bottom:904.160000pt;}
.y78{bottom:911.440000pt;}
.y107{bottom:911.840000pt;}
.y139{bottom:915.840000pt;}
.y31{bottom:919.440000pt;}
.y64{bottom:919.840000pt;}
.y77{bottom:927.040000pt;}
.y106{bottom:927.440000pt;}
.y138{bottom:931.520000pt;}
.y30{bottom:935.040000pt;}
.y63{bottom:935.440000pt;}
.y76{bottom:942.720000pt;}
.y105{bottom:943.040000pt;}
.y137{bottom:947.120000pt;}
.y2f{bottom:950.720000pt;}
.y62{bottom:951.040000pt;}
.y104{bottom:958.720000pt;}
.y136{bottom:962.800000pt;}
.y2e{bottom:966.320000pt;}
.y61{bottom:966.720000pt;}
.y103{bottom:974.320000pt;}
.y135{bottom:978.400000pt;}
.y60{bottom:982.320000pt;}
.y102{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y134{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hc{height:37.032187pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.hb{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.x13{left:115.279988pt;}
.x11{left:143.199988pt;}
.x7{left:158.506655pt;}
.x2{left:179.146655pt;}
.x15{left:214.746655pt;}
.x5{left:236.826655pt;}
.xd{left:258.026655pt;}
.xf{left:268.666655pt;}
.xa{left:305.146655pt;}
.xb{left:325.066655pt;}
.x8{left:395.866655pt;}
.x10{left:595.893322pt;}
.xc{left:622.933322pt;}
.x6{left:644.933322pt;}
.xe{left:657.893322pt;}
.x4{left:666.933322pt;}
.x14{left:667.893322pt;}
.x12{left:668.933322pt;}
.x9{left:679.893322pt;}
.x3{left:704.053322pt;}
}




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