
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3ed790d2244d2e3b16f6d09.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c881b878010434388d7f5b7e.woff2')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_deda2caeaf0cc3d2b3e2f816.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0411a5bed769e2faab6d964.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ae8ce0f0289ae7a9654efbd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8ca61d3b69232e5aca95c593.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_31c4a7c8d3d9d77c6f9c2507.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls29{letter-spacing:-0.368400px;}
.ls13{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.160800px;}
.lsd{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.038880px;}
.ls1d{letter-spacing:-0.037800px;}
.ls23{letter-spacing:-0.018360px;}
.ls22{letter-spacing:-0.014760px;}
.ls1f{letter-spacing:-0.011160px;}
.ls2d{letter-spacing:-0.009000px;}
.lsb{letter-spacing:-0.008400px;}
.ls1b{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls25{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls20{letter-spacing:0.098400px;}
.ls28{letter-spacing:0.105600px;}
.ls26{letter-spacing:0.113400px;}
.ls27{letter-spacing:0.115800px;}
.ls19{letter-spacing:0.116400px;}
.ls21{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.160800px;}
.ls12{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.173520px;}
.ls4{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.180600px;}
.ls1e{letter-spacing:0.199200px;}
.ls2a{letter-spacing:0.233400px;}
.ls14{letter-spacing:0.273600px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.534600px;}
.ls2c{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls2b{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;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws5{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.387200px;}
.wsc{word-spacing:-13.342800px;}
.ws17{word-spacing:-13.342200px;}
.ws18{word-spacing:-13.332000px;}
.ws14{word-spacing:-13.324800px;}
.ws15{word-spacing:-13.287000px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.218840px;}
.ws19{word-spacing:-13.217400px;}
.ws11{word-spacing:-13.215240px;}
.ws12{word-spacing:-13.211640px;}
.ws13{word-spacing:-13.208040px;}
.wse{word-spacing:-13.188600px;}
.ws8{word-spacing:-13.187520px;}
.ws3{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.858000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-4.025066px;}
._1{margin-left:-3.019848px;}
._0{margin-left:-1.110000px;}
._3{width:1.089266px;}
._9{width:2.765400px;}
._6{width:4.085387px;}
._4{width:5.863188px;}
._5{width:7.428264px;}
._7{width:9.108228px;}
._a{width:10.231368px;}
._e{width:11.317297px;}
._8{width:14.248200px;}
._f{width:15.267723px;}
._b{width:16.292400px;}
._12{width:18.269615px;}
._11{width:19.719360px;}
._21{width:21.097680px;}
._10{width:22.364640px;}
._1c{width:23.807520px;}
._3d{width:25.218120px;}
._20{width:26.512920px;}
._17{width:27.835560px;}
._16{width:28.977840px;}
._18{width:31.142160px;}
._13{width:32.344560px;}
._14{width:33.634920px;}
._1e{width:35.470800px;}
._47{width:36.966694px;}
._d{width:38.536920px;}
._c{width:40.100160px;}
._25{width:41.903640px;}
._34{width:43.767360px;}
._49{width:45.330480px;}
._3f{width:49.747080px;}
._35{width:51.102000px;}
._1b{width:53.085960px;}
._1d{width:54.168120px;}
._22{width:55.552320px;}
._1a{width:58.435200px;}
._3a{width:60.181560px;}
._24{width:61.202160px;}
._26{width:63.546840px;}
._32{width:64.747920px;}
._40{width:66.432600px;}
._4a{width:67.576200px;}
._3b{width:69.799320px;}
._43{width:72.144000px;}
._39{width:74.188080px;}
._15{width:76.352400px;}
._28{width:77.909760px;}
._19{width:81.368880px;}
._42{width:83.266200px;}
._27{width:84.348360px;}
._1f{width:96.380400px;}
._31{width:97.454520px;}
._37{width:101.723040px;}
._2f{width:107.013600px;}
._23{width:112.244040px;}
._33{width:113.266080px;}
._3c{width:115.250040px;}
._46{width:120.360240px;}
._44{width:128.115720px;}
._41{width:129.137760px;}
._2b{width:131.722920px;}
._30{width:138.456360px;}
._45{width:143.626680px;}
._29{width:150.660720px;}
._2e{width:158.476320px;}
._2d{width:160.099560px;}
._2a{width:161.301960px;}
._48{width:163.683720px;}
._36{width:174.227760px;}
._38{width:179.879040px;}
._3e{width:181.863000px;}
._2c{width:192.744720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y80{bottom:7.830000px;}
.y88{bottom:7.920000px;}
.y85{bottom:25.380000px;}
.yc9{bottom:25.410000px;}
.y82{bottom:25.470000px;}
.yac{bottom:25.500000px;}
.ycb{bottom:26.550000px;}
.ycd{bottom:26.640000px;}
.y8a{bottom:43.020000px;}
.yab{bottom:43.050000px;}
.ya5{bottom:43.110000px;}
.yd7{bottom:44.190000px;}
.ya7{bottom:60.570000px;}
.ya4{bottom:60.660000px;}
.yaa{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.ya3{bottom:78.210000px;}
.yf2{bottom:78.240000px;}
.yf8{bottom:95.760000px;}
.yf1{bottom:95.790000px;}
.ya2{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.yee{bottom:113.400000px;}
.yf0{bottom:113.430000px;}
.y198{bottom:115.950000px;}
.y114{bottom:116.760000px;}
.y58{bottom:124.950000px;}
.y16e{bottom:126.840000px;}
.yc6{bottom:127.830000px;}
.y84{bottom:131.790000px;}
.y197{bottom:133.500000px;}
.ya6{bottom:137.820000px;}
.ydf{bottom:140.340000px;}
.y143{bottom:140.520000px;}
.y57{bottom:142.500000px;}
.y113{bottom:144.120000px;}
.yf4{bottom:146.910000px;}
.y142{bottom:158.160000px;}
.y196{bottom:160.140000px;}
.y56{bottom:160.950000px;}
.y27{bottom:163.200000px;}
.yc5{bottom:163.380000px;}
.y16d{bottom:163.920000px;}
.y112{bottom:171.480000px;}
.y141{bottom:175.710000px;}
.y83{bottom:176.700000px;}
.y195{bottom:177.690000px;}
.y55{bottom:178.500000px;}
.y26{bottom:180.840000px;}
.yc4{bottom:180.930000px;}
.yde{bottom:185.250000px;}
.y16c{bottom:190.740000px;}
.y140{bottom:193.350000px;}
.y54{bottom:196.950000px;}
.y25{bottom:198.390000px;}
.yc3{bottom:198.570000px;}
.y111{bottom:198.750000px;}
.y194{bottom:204.330000px;}
.y13f{bottom:210.900000px;}
.ydd{bottom:212.610000px;}
.y53{bottom:215.400000px;}
.y24{bottom:215.940000px;}
.yc2{bottom:216.120000px;}
.ya1{bottom:217.830000px;}
.y81{bottom:221.610000px;}
.y193{bottom:221.880000px;}
.y110{bottom:226.110000px;}
.y16b{bottom:228.090000px;}
.y13e{bottom:228.450000px;}
.y52{bottom:232.950000px;}
.y23{bottom:233.580000px;}
.yc1{bottom:233.760000px;}
.y13d{bottom:246.090000px;}
.y192{bottom:248.430000px;}
.y22{bottom:251.130000px;}
.yc0{bottom:251.310000px;}
.y10f{bottom:253.470000px;}
.y13c{bottom:263.640000px;}
.y191{bottom:266.070000px;}
.y7f{bottom:266.520000px;}
.y21{bottom:268.770000px;}
.ybf{bottom:268.860000px;}
.y51{bottom:269.400000px;}
.ydc{bottom:275.160000px;}
.y16a{bottom:276.420000px;}
.yf3{bottom:279.750000px;}
.y10e{bottom:280.830000px;}
.y13b{bottom:281.190000px;}
.y20{bottom:286.320000px;}
.y190{bottom:292.620000px;}
.y169{bottom:293.970000px;}
.y13a{bottom:298.830000px;}
.y1f{bottom:303.870000px;}
.ybe{bottom:304.500000px;}
.y50{bottom:304.950000px;}
.y10d{bottom:308.100000px;}
.y18f{bottom:310.260000px;}
.y168{bottom:312.330000px;}
.y7e{bottom:315.210000px;}
.ybd{bottom:322.050000px;}
.y4f{bottom:322.590000px;}
.y167{bottom:330.780000px;}
.ya0{bottom:333.120000px;}
.y139{bottom:334.380000px;}
.y10c{bottom:335.460000px;}
.y18e{bottom:336.810000px;}
.y1e{bottom:339.510000px;}
.ybc{bottom:339.690000px;}
.y4e{bottom:340.140000px;}
.y166{bottom:348.330000px;}
.y7d{bottom:350.760000px;}
.y138{bottom:352.020000px;}
.y18d{bottom:354.360000px;}
.ydb{bottom:355.260000px;}
.y1d{bottom:357.060000px;}
.ybb{bottom:357.240000px;}
.y4d{bottom:357.690000px;}
.y10b{bottom:362.820000px;}
.y7c{bottom:368.400000px;}
.y137{bottom:369.570000px;}
.y1c{bottom:374.700000px;}
.yba{bottom:374.790000px;}
.y4c{bottom:375.330000px;}
.y165{bottom:376.140000px;}
.y18c{bottom:381.000000px;}
.yda{bottom:382.530000px;}
.y7b{bottom:385.950000px;}
.y136{bottom:387.120000px;}
.y10a{bottom:390.090000px;}
.y1b{bottom:392.250000px;}
.yb9{bottom:392.430000px;}
.y4b{bottom:392.880000px;}
.yef{bottom:395.040000px;}
.y18b{bottom:398.550000px;}
.y9f{bottom:399.450000px;}
.y135{bottom:404.760000px;}
.y1a{bottom:409.800000px;}
.yd9{bottom:409.890000px;}
.y4a{bottom:410.520000px;}
.y7a{bottom:412.860000px;}
.y164{bottom:413.130000px;}
.y109{bottom:417.450000px;}
.y134{bottom:422.310000px;}
.y1b7{bottom:424.920000px;}
.y18a{bottom:425.190000px;}
.y19{bottom:427.440000px;}
.yb8{bottom:427.980000px;}
.y49{bottom:428.070000px;}
.y163{bottom:430.770000px;}
.y9e{bottom:435.000000px;}
.y133{bottom:439.950000px;}
.y1b6{bottom:442.470000px;}
.y108{bottom:444.810000px;}
.yb7{bottom:445.620000px;}
.y162{bottom:448.320000px;}
.y189{bottom:451.740000px;}
.y9d{bottom:452.550000px;}
.yd8{bottom:454.800000px;}
.y48{bottom:454.980000px;}
.y132{bottom:457.500000px;}
.y79{bottom:461.190000px;}
.y18{bottom:462.990000px;}
.yb6{bottom:463.170000px;}
.y161{bottom:465.870000px;}
.y76{bottom:465.960000px;}
.y1b5{bottom:469.110000px;}
.y188{bottom:469.290000px;}
.y9c{bottom:470.220000px;}
.y17{bottom:480.660000px;}
.yb5{bottom:480.750000px;}
.y160{bottom:483.540000px;}
.y1b4{bottom:486.690000px;}
.y9b{bottom:487.770000px;}
.y131{bottom:493.080000px;}
.y107{bottom:493.530000px;}
.y187{bottom:495.960000px;}
.y78{bottom:496.770000px;}
.y16{bottom:498.210000px;}
.yb4{bottom:498.390000px;}
.y15f{bottom:501.090000px;}
.y75{bottom:501.630000px;}
.y47{bottom:503.250000px;}
.y1b3{bottom:504.330000px;}
.y9a{bottom:505.410000px;}
.y130{bottom:510.720000px;}
.y15{bottom:515.760000px;}
.yb3{bottom:515.940000px;}
.y15e{bottom:518.730000px;}
.y74{bottom:519.180000px;}
.y46{bottom:520.890000px;}
.y1b2{bottom:521.880000px;}
.y186{bottom:522.510000px;}
.yed{bottom:527.910000px;}
.y12f{bottom:528.270000px;}
.y77{bottom:528.990000px;}
.y106{bottom:529.080000px;}
.yd6{bottom:534.930000px;}
.y15d{bottom:536.280000px;}
.y73{bottom:536.730000px;}
.y45{bottom:538.440000px;}
.y185{bottom:540.150000px;}
.y99{bottom:540.960000px;}
.y12e{bottom:545.910000px;}
.y105{bottom:546.720000px;}
.y1b1{bottom:548.430000px;}
.yb2{bottom:548.970000px;}
.y14{bottom:551.400000px;}
.y15c{bottom:553.830000px;}
.y72{bottom:554.370000px;}
.y44{bottom:556.890000px;}
.y98{bottom:558.510000px;}
.y12d{bottom:563.460000px;}
.y104{bottom:564.270000px;}
.y1b0{bottom:566.070000px;}
.y184{bottom:566.700000px;}
.y13{bottom:568.950000px;}
.y15b{bottom:571.470000px;}
.y43{bottom:574.440000px;}
.y97{bottom:576.150000px;}
.yd5{bottom:579.840000px;}
.y71{bottom:580.920000px;}
.y12c{bottom:581.010000px;}
.y103{bottom:581.910000px;}
.y183{bottom:584.250000px;}
.y12{bottom:586.590000px;}
.y1af{bottom:592.620000px;}
.y42{bottom:592.890000px;}
.y96{bottom:593.700000px;}
.y15a{bottom:598.380000px;}
.y12b{bottom:598.650000px;}
.y102{bottom:599.460000px;}
.yd4{bottom:607.200000px;}
.y1ae{bottom:610.260000px;}
.y41{bottom:610.440000px;}
.y182{bottom:610.890000px;}
.y95{bottom:611.340000px;}
.y12a{bottom:616.200000px;}
.y70{bottom:616.560000px;}
.y101{bottom:617.010000px;}
.y11{bottom:622.140000px;}
.y181{bottom:628.440000px;}
.yb1{bottom:628.980000px;}
.y6f{bottom:634.110000px;}
.y100{bottom:634.650000px;}
.y1ad{bottom:636.810000px;}
.y40{bottom:638.160000px;}
.y10{bottom:639.690000px;}
.y129{bottom:643.110000px;}
.y159{bottom:646.620000px;}
.y94{bottom:646.890000px;}
.y6e{bottom:651.660000px;}
.yd3{bottom:652.110000px;}
.yff{bottom:652.200000px;}
.y1ac{bottom:654.360000px;}
.y180{bottom:655.080000px;}
.yf{bottom:657.330000px;}
.yec{bottom:660.750000px;}
.y158{bottom:664.260000px;}
.y93{bottom:664.440000px;}
.y17f{bottom:672.630000px;}
.ye{bottom:674.880000px;}
.y3f{bottom:675.240000px;}
.y1ab{bottom:681.000000px;}
.y6d{bottom:681.180000px;}
.y157{bottom:681.810000px;}
.y92{bottom:682.080000px;}
.yfe{bottom:687.840000px;}
.y128{bottom:691.440000px;}
.y3e{bottom:692.790000px;}
.y1aa{bottom:698.550000px;}
.y6c{bottom:698.820000px;}
.y17e{bottom:699.180000px;}
.y156{bottom:699.360000px;}
.y91{bottom:699.630000px;}
.yd{bottom:701.790000px;}
.yfd{bottom:705.390000px;}
.y127{bottom:708.990000px;}
.yb0{bottom:709.080000px;}
.y3d{bottom:710.340000px;}
.y17d{bottom:716.820000px;}
.y155{bottom:717.000000px;}
.y6b{bottom:717.270000px;}
.yfc{bottom:722.940000px;}
.y1a9{bottom:725.190000px;}
.y126{bottom:726.540000px;}
.y3c{bottom:727.980000px;}
.yd2{bottom:732.210000px;}
.y6a{bottom:735.720000px;}
.yfb{bottom:740.580000px;}
.y1a8{bottom:742.740000px;}
.y17c{bottom:743.370000px;}
.yc{bottom:750.030000px;}
.y90{bottom:750.210000px;}
.y154{bottom:752.550000px;}
.y69{bottom:753.270000px;}
.yfa{bottom:758.130000px;}
.yeb{bottom:758.490000px;}
.yd1{bottom:759.570000px;}
.y125{bottom:762.180000px;}
.y3b{bottom:763.530000px;}
.y1a7{bottom:769.290000px;}
.y17b{bottom:769.920000px;}
.y153{bottom:770.190000px;}
.y68{bottom:770.820000px;}
.yaf{bottom:771.630000px;}
.yf9{bottom:775.770000px;}
.y124{bottom:779.730000px;}
.y3a{bottom:781.170000px;}
.yb{bottom:785.850000px;}
.yd0{bottom:786.840000px;}
.y1a6{bottom:786.930000px;}
.y17a{bottom:787.560000px;}
.y152{bottom:787.740000px;}
.y67{bottom:789.270000px;}
.y8f{bottom:795.120000px;}
.y123{bottom:797.280000px;}
.y39{bottom:798.720000px;}
.y151{bottom:805.290000px;}
.yf7{bottom:808.710000px;}
.y1a5{bottom:813.480000px;}
.y179{bottom:814.110000px;}
.y122{bottom:814.920000px;}
.y38{bottom:816.270000px;}
.ya{bottom:821.850000px;}
.y150{bottom:822.930000px;}
.y66{bottom:825.720000px;}
.ycf{bottom:831.750000px;}
.y121{bottom:832.470000px;}
.y37{bottom:833.910000px;}
.y8e{bottom:840.030000px;}
.y14f{bottom:840.480000px;}
.y120{bottom:850.110000px;}
.y36{bottom:851.460000px;}
.yae{bottom:851.730000px;}
.y65{bottom:852.270000px;}
.yea{bottom:856.140000px;}
.y1a4{bottom:857.670000px;}
.y178{bottom:858.660000px;}
.y9{bottom:861.630000px;}
.y11f{bottom:867.660000px;}
.y14e{bottom:876.030000px;}
.y8{bottom:879.630000px;}
.y1a3{bottom:884.220000px;}
.y8d{bottom:884.940000px;}
.y11e{bottom:885.210000px;}
.y35{bottom:887.100000px;}
.y64{bottom:887.820000px;}
.y14d{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y1a2{bottom:901.860000px;}
.y11d{bottom:902.850000px;}
.y34{bottom:904.650000px;}
.y63{bottom:905.460000px;}
.y177{bottom:906.900000px;}
.y14c{bottom:911.220000px;}
.yce{bottom:911.850000px;}
.y33{bottom:922.200000px;}
.ye9{bottom:922.380000px;}
.y62{bottom:923.010000px;}
.yf6{bottom:924.000000px;}
.y1a1{bottom:928.410000px;}
.y14b{bottom:928.860000px;}
.y8c{bottom:929.850000px;}
.y6{bottom:929.940000px;}
.yad{bottom:931.830000px;}
.y176{bottom:933.810000px;}
.y11c{bottom:935.790000px;}
.ycc{bottom:939.210000px;}
.y32{bottom:939.840000px;}
.y61{bottom:940.650000px;}
.y1a0{bottom:945.960000px;}
.y14a{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y31{bottom:957.390000px;}
.ye8{bottom:958.020000px;}
.y60{bottom:958.200000px;}
.y11b{bottom:963.150000px;}
.y149{bottom:963.960000px;}
.yca{bottom:966.570000px;}
.y175{bottom:970.800000px;}
.y19f{bottom:972.600000px;}
.y8b{bottom:974.850000px;}
.ye7{bottom:975.570000px;}
.y148{bottom:981.600000px;}
.y30{bottom:984.300000px;}
.y4{bottom:987.630000px;}
.y174{bottom:988.440000px;}
.y19e{bottom:990.150000px;}
.y11a{bottom:990.510000px;}
.ye6{bottom:993.210000px;}
.y5f{bottom:993.750000px;}
.yc8{bottom:993.930000px;}
.ya9{bottom:994.290000px;}
.y173{bottom:1005.990000px;}
.ye5{bottom:1010.790000px;}
.y5e{bottom:1012.230000px;}
.y3{bottom:1012.320000px;}
.y19d{bottom:1016.820000px;}
.y147{bottom:1017.180000px;}
.y119{bottom:1017.810000px;}
.y89{bottom:1019.790000px;}
.y172{bottom:1023.570000px;}
.ye4{bottom:1028.340000px;}
.y5d{bottom:1030.590000px;}
.y2f{bottom:1032.570000px;}
.y19c{bottom:1034.370000px;}
.y146{bottom:1034.820000px;}
.yc7{bottom:1038.870000px;}
.yf5{bottom:1039.230000px;}
.y171{bottom:1041.210000px;}
.y118{bottom:1045.170000px;}
.ye3{bottom:1045.980000px;}
.y5c{bottom:1049.040000px;}
.y2e{bottom:1050.480000px;}
.y19b{bottom:1051.920000px;}
.y145{bottom:1052.370000px;}
.y170{bottom:1058.760000px;}
.ye2{bottom:1063.530000px;}
.y5b{bottom:1067.400000px;}
.y144{bottom:1069.920000px;}
.y117{bottom:1072.530000px;}
.ya8{bottom:1074.420000px;}
.y19a{bottom:1078.560000px;}
.ye1{bottom:1081.170000px;}
.y87{bottom:1082.250000px;}
.y16f{bottom:1085.670000px;}
.y2d{bottom:1087.560000px;}
.y199{bottom:1096.110000px;}
.y116{bottom:1099.890000px;}
.y5a{bottom:1103.850000px;}
.y2c{bottom:1105.110000px;}
.y86{bottom:1109.610000px;}
.ye0{bottom:1114.110000px;}
.y2b{bottom:1122.750000px;}
.y115{bottom:1127.160000px;}
.y59{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h1e{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h18{height:39.690000px;}
.hf{height:44.100000px;}
.h12{height:44.130000px;}
.he{height:44.190000px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:61.740000px;}
.ha{height:61.793886px;}
.h17{height:61.830000px;}
.hb{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h14{height:79.290000px;}
.h15{height:79.380000px;}
.h16{height:79.410000px;}
.h19{height:96.930000px;}
.h1d{height:114.480000px;}
.h1c{height:114.510000px;}
.h13{height:114.570000px;}
.h1a{height:132.120000px;}
.h1b{height:132.150000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:38.250000px;}
.w6{width:60.840000px;}
.w12{width:92.070000px;}
.we{width:126.180000px;}
.w8{width:129.870000px;}
.w14{width:133.500000px;}
.w7{width:139.890000px;}
.w15{width:150.480000px;}
.w9{width:153.540000px;}
.w3{width:170.310000px;}
.wf{width:178.410000px;}
.w10{width:189.900000px;}
.wc{width:232.860000px;}
.w4{width:253.260000px;}
.w5{width:269.130000px;}
.wa{width:291.090000px;}
.w11{width:292.980000px;}
.w13{width:350.580000px;}
.wd{width:395.130000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x15{left:109.170000px;}
.x18{left:111.239987px;}
.x5{left:122.039987px;}
.x6{left:149.039987px;}
.xd{left:209.460000px;}
.xa{left:239.790000px;}
.x12{left:247.890000px;}
.x2{left:251.759987px;}
.x10{left:302.340000px;}
.x8{left:320.969987px;}
.xe{left:340.050000px;}
.x13{left:438.600000px;}
.xb{left:493.770000px;}
.x16{left:499.440000px;}
.x17{left:633.660000px;}
.x11{left:698.280000px;}
.x7{left:702.059987px;}
.x14{left:732.390000px;}
.xc{left:763.620000px;}
.xf{left:786.210000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls29{letter-spacing:-0.327467pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.142933pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.034560pt;}
.ls1d{letter-spacing:-0.033600pt;}
.ls23{letter-spacing:-0.016320pt;}
.ls22{letter-spacing:-0.013120pt;}
.ls1f{letter-spacing:-0.009920pt;}
.ls2d{letter-spacing:-0.008000pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls1b{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls25{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls20{letter-spacing:0.087467pt;}
.ls28{letter-spacing:0.093867pt;}
.ls26{letter-spacing:0.100800pt;}
.ls27{letter-spacing:0.102933pt;}
.ls19{letter-spacing:0.103467pt;}
.ls21{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.142933pt;}
.ls12{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.154240pt;}
.ls4{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.160533pt;}
.ls1e{letter-spacing:0.177067pt;}
.ls2a{letter-spacing:0.207467pt;}
.ls14{letter-spacing:0.243200pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.475200pt;}
.ls2c{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls2b{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws5{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.899733pt;}
.wsc{word-spacing:-11.860267pt;}
.ws17{word-spacing:-11.859733pt;}
.ws18{word-spacing:-11.850667pt;}
.ws14{word-spacing:-11.844267pt;}
.ws15{word-spacing:-11.810667pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.750080pt;}
.ws19{word-spacing:-11.748800pt;}
.ws11{word-spacing:-11.746880pt;}
.ws12{word-spacing:-11.743680pt;}
.ws13{word-spacing:-11.740480pt;}
.wse{word-spacing:-11.723200pt;}
.ws8{word-spacing:-11.722240pt;}
.ws3{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.429333pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-3.577836pt;}
._1{margin-left:-2.684309pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.968236pt;}
._9{width:2.458133pt;}
._6{width:3.631455pt;}
._4{width:5.211723pt;}
._5{width:6.602901pt;}
._7{width:8.096203pt;}
._a{width:9.094549pt;}
._e{width:10.059820pt;}
._8{width:12.665066pt;}
._f{width:13.571310pt;}
._b{width:14.482133pt;}
._12{width:16.239658pt;}
._11{width:17.528320pt;}
._21{width:18.753493pt;}
._10{width:19.879680pt;}
._1c{width:21.162240pt;}
._3d{width:22.416107pt;}
._20{width:23.567040pt;}
._17{width:24.742720pt;}
._16{width:25.758080pt;}
._18{width:27.681920pt;}
._13{width:28.750720pt;}
._14{width:29.897707pt;}
._1e{width:31.529600pt;}
._47{width:32.859284pt;}
._d{width:34.255040pt;}
._c{width:35.644587pt;}
._25{width:37.247680pt;}
._34{width:38.904320pt;}
._49{width:40.293760pt;}
._3f{width:44.219627pt;}
._35{width:45.424000pt;}
._1b{width:47.187520pt;}
._1d{width:48.149440pt;}
._22{width:49.379840pt;}
._1a{width:51.942400pt;}
._3a{width:53.494720pt;}
._24{width:54.401920pt;}
._26{width:56.486080pt;}
._32{width:57.553707pt;}
._40{width:59.051200pt;}
._4a{width:60.067733pt;}
._3b{width:62.043840pt;}
._43{width:64.128000pt;}
._39{width:65.944960pt;}
._15{width:67.868800pt;}
._28{width:69.253120pt;}
._19{width:72.327893pt;}
._42{width:74.014400pt;}
._27{width:74.976320pt;}
._1f{width:85.671467pt;}
._31{width:86.626240pt;}
._37{width:90.420480pt;}
._2f{width:95.123200pt;}
._23{width:99.772480pt;}
._33{width:100.680960pt;}
._3c{width:102.444480pt;}
._46{width:106.986880pt;}
._44{width:113.880640pt;}
._41{width:114.789120pt;}
._2b{width:117.087040pt;}
._30{width:123.072320pt;}
._45{width:127.668160pt;}
._29{width:133.920640pt;}
._2e{width:140.867840pt;}
._2d{width:142.310720pt;}
._2a{width:143.379520pt;}
._48{width:145.496640pt;}
._36{width:154.869120pt;}
._38{width:159.892480pt;}
._3e{width:161.656000pt;}
._2c{width:171.328640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:6.960000pt;}
.y88{bottom:7.040000pt;}
.y85{bottom:22.560000pt;}
.yc9{bottom:22.586667pt;}
.y82{bottom:22.640000pt;}
.yac{bottom:22.666667pt;}
.ycb{bottom:23.600000pt;}
.ycd{bottom:23.680000pt;}
.y8a{bottom:38.240000pt;}
.yab{bottom:38.266667pt;}
.ya5{bottom:38.320000pt;}
.yd7{bottom:39.280000pt;}
.ya7{bottom:53.840000pt;}
.ya4{bottom:53.920000pt;}
.yaa{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.ya3{bottom:69.520000pt;}
.yf2{bottom:69.546667pt;}
.yf8{bottom:85.120000pt;}
.yf1{bottom:85.146667pt;}
.ya2{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.yee{bottom:100.800000pt;}
.yf0{bottom:100.826667pt;}
.y198{bottom:103.066667pt;}
.y114{bottom:103.786667pt;}
.y58{bottom:111.066667pt;}
.y16e{bottom:112.746667pt;}
.yc6{bottom:113.626667pt;}
.y84{bottom:117.146667pt;}
.y197{bottom:118.666667pt;}
.ya6{bottom:122.506667pt;}
.ydf{bottom:124.746667pt;}
.y143{bottom:124.906667pt;}
.y57{bottom:126.666667pt;}
.y113{bottom:128.106667pt;}
.yf4{bottom:130.586667pt;}
.y142{bottom:140.586667pt;}
.y196{bottom:142.346667pt;}
.y56{bottom:143.066667pt;}
.y27{bottom:145.066667pt;}
.yc5{bottom:145.226667pt;}
.y16d{bottom:145.706667pt;}
.y112{bottom:152.426667pt;}
.y141{bottom:156.186667pt;}
.y83{bottom:157.066667pt;}
.y195{bottom:157.946667pt;}
.y55{bottom:158.666667pt;}
.y26{bottom:160.746667pt;}
.yc4{bottom:160.826667pt;}
.yde{bottom:164.666667pt;}
.y16c{bottom:169.546667pt;}
.y140{bottom:171.866667pt;}
.y54{bottom:175.066667pt;}
.y25{bottom:176.346667pt;}
.yc3{bottom:176.506667pt;}
.y111{bottom:176.666667pt;}
.y194{bottom:181.626667pt;}
.y13f{bottom:187.466667pt;}
.ydd{bottom:188.986667pt;}
.y53{bottom:191.466667pt;}
.y24{bottom:191.946667pt;}
.yc2{bottom:192.106667pt;}
.ya1{bottom:193.626667pt;}
.y81{bottom:196.986667pt;}
.y193{bottom:197.226667pt;}
.y110{bottom:200.986667pt;}
.y16b{bottom:202.746667pt;}
.y13e{bottom:203.066667pt;}
.y52{bottom:207.066667pt;}
.y23{bottom:207.626667pt;}
.yc1{bottom:207.786667pt;}
.y13d{bottom:218.746667pt;}
.y192{bottom:220.826667pt;}
.y22{bottom:223.226667pt;}
.yc0{bottom:223.386667pt;}
.y10f{bottom:225.306667pt;}
.y13c{bottom:234.346667pt;}
.y191{bottom:236.506667pt;}
.y7f{bottom:236.906667pt;}
.y21{bottom:238.906667pt;}
.ybf{bottom:238.986667pt;}
.y51{bottom:239.466667pt;}
.ydc{bottom:244.586667pt;}
.y16a{bottom:245.706667pt;}
.yf3{bottom:248.666667pt;}
.y10e{bottom:249.626667pt;}
.y13b{bottom:249.946667pt;}
.y20{bottom:254.506667pt;}
.y190{bottom:260.106667pt;}
.y169{bottom:261.306667pt;}
.y13a{bottom:265.626667pt;}
.y1f{bottom:270.106667pt;}
.ybe{bottom:270.666667pt;}
.y50{bottom:271.066667pt;}
.y10d{bottom:273.866667pt;}
.y18f{bottom:275.786667pt;}
.y168{bottom:277.626667pt;}
.y7e{bottom:280.186667pt;}
.ybd{bottom:286.266667pt;}
.y4f{bottom:286.746667pt;}
.y167{bottom:294.026667pt;}
.ya0{bottom:296.106667pt;}
.y139{bottom:297.226667pt;}
.y10c{bottom:298.186667pt;}
.y18e{bottom:299.386667pt;}
.y1e{bottom:301.786667pt;}
.ybc{bottom:301.946667pt;}
.y4e{bottom:302.346667pt;}
.y166{bottom:309.626667pt;}
.y7d{bottom:311.786667pt;}
.y138{bottom:312.906667pt;}
.y18d{bottom:314.986667pt;}
.ydb{bottom:315.786667pt;}
.y1d{bottom:317.386667pt;}
.ybb{bottom:317.546667pt;}
.y4d{bottom:317.946667pt;}
.y10b{bottom:322.506667pt;}
.y7c{bottom:327.466667pt;}
.y137{bottom:328.506667pt;}
.y1c{bottom:333.066667pt;}
.yba{bottom:333.146667pt;}
.y4c{bottom:333.626667pt;}
.y165{bottom:334.346667pt;}
.y18c{bottom:338.666667pt;}
.yda{bottom:340.026667pt;}
.y7b{bottom:343.066667pt;}
.y136{bottom:344.106667pt;}
.y10a{bottom:346.746667pt;}
.y1b{bottom:348.666667pt;}
.yb9{bottom:348.826667pt;}
.y4b{bottom:349.226667pt;}
.yef{bottom:351.146667pt;}
.y18b{bottom:354.266667pt;}
.y9f{bottom:355.066667pt;}
.y135{bottom:359.786667pt;}
.y1a{bottom:364.266667pt;}
.yd9{bottom:364.346667pt;}
.y4a{bottom:364.906667pt;}
.y7a{bottom:366.986667pt;}
.y164{bottom:367.226667pt;}
.y109{bottom:371.066667pt;}
.y134{bottom:375.386667pt;}
.y1b7{bottom:377.706667pt;}
.y18a{bottom:377.946667pt;}
.y19{bottom:379.946667pt;}
.yb8{bottom:380.426667pt;}
.y49{bottom:380.506667pt;}
.y163{bottom:382.906667pt;}
.y9e{bottom:386.666667pt;}
.y133{bottom:391.066667pt;}
.y1b6{bottom:393.306667pt;}
.y108{bottom:395.386667pt;}
.yb7{bottom:396.106667pt;}
.y162{bottom:398.506667pt;}
.y189{bottom:401.546667pt;}
.y9d{bottom:402.266667pt;}
.yd8{bottom:404.266667pt;}
.y48{bottom:404.426667pt;}
.y132{bottom:406.666667pt;}
.y79{bottom:409.946667pt;}
.y18{bottom:411.546667pt;}
.yb6{bottom:411.706667pt;}
.y161{bottom:414.106667pt;}
.y76{bottom:414.186667pt;}
.y1b5{bottom:416.986667pt;}
.y188{bottom:417.146667pt;}
.y9c{bottom:417.973333pt;}
.y17{bottom:427.253333pt;}
.yb5{bottom:427.333333pt;}
.y160{bottom:429.813333pt;}
.y1b4{bottom:432.613333pt;}
.y9b{bottom:433.573333pt;}
.y131{bottom:438.293333pt;}
.y107{bottom:438.693333pt;}
.y187{bottom:440.853333pt;}
.y78{bottom:441.573333pt;}
.y16{bottom:442.853333pt;}
.yb4{bottom:443.013333pt;}
.y15f{bottom:445.413333pt;}
.y75{bottom:445.893333pt;}
.y47{bottom:447.333333pt;}
.y1b3{bottom:448.293333pt;}
.y9a{bottom:449.253333pt;}
.y130{bottom:453.973333pt;}
.y15{bottom:458.453333pt;}
.yb3{bottom:458.613333pt;}
.y15e{bottom:461.093333pt;}
.y74{bottom:461.493333pt;}
.y46{bottom:463.013333pt;}
.y1b2{bottom:463.893333pt;}
.y186{bottom:464.453333pt;}
.yed{bottom:469.253333pt;}
.y12f{bottom:469.573333pt;}
.y77{bottom:470.213333pt;}
.y106{bottom:470.293333pt;}
.yd6{bottom:475.493333pt;}
.y15d{bottom:476.693333pt;}
.y73{bottom:477.093333pt;}
.y45{bottom:478.613333pt;}
.y185{bottom:480.133333pt;}
.y99{bottom:480.853333pt;}
.y12e{bottom:485.253333pt;}
.y105{bottom:485.973333pt;}
.y1b1{bottom:487.493333pt;}
.yb2{bottom:487.973333pt;}
.y14{bottom:490.133333pt;}
.y15c{bottom:492.293333pt;}
.y72{bottom:492.773333pt;}
.y44{bottom:495.013333pt;}
.y98{bottom:496.453333pt;}
.y12d{bottom:500.853333pt;}
.y104{bottom:501.573333pt;}
.y1b0{bottom:503.173333pt;}
.y184{bottom:503.733333pt;}
.y13{bottom:505.733333pt;}
.y15b{bottom:507.973333pt;}
.y43{bottom:510.613333pt;}
.y97{bottom:512.133333pt;}
.yd5{bottom:515.413333pt;}
.y71{bottom:516.373333pt;}
.y12c{bottom:516.453333pt;}
.y103{bottom:517.253333pt;}
.y183{bottom:519.333333pt;}
.y12{bottom:521.413333pt;}
.y1af{bottom:526.773333pt;}
.y42{bottom:527.013333pt;}
.y96{bottom:527.733333pt;}
.y15a{bottom:531.893333pt;}
.y12b{bottom:532.133333pt;}
.y102{bottom:532.853333pt;}
.yd4{bottom:539.733333pt;}
.y1ae{bottom:542.453333pt;}
.y41{bottom:542.613333pt;}
.y182{bottom:543.013333pt;}
.y95{bottom:543.413333pt;}
.y12a{bottom:547.733333pt;}
.y70{bottom:548.053333pt;}
.y101{bottom:548.453333pt;}
.y11{bottom:553.013333pt;}
.y181{bottom:558.613333pt;}
.yb1{bottom:559.093333pt;}
.y6f{bottom:563.653333pt;}
.y100{bottom:564.133333pt;}
.y1ad{bottom:566.053333pt;}
.y40{bottom:567.253333pt;}
.y10{bottom:568.613333pt;}
.y129{bottom:571.653333pt;}
.y159{bottom:574.773333pt;}
.y94{bottom:575.013333pt;}
.y6e{bottom:579.253333pt;}
.yd3{bottom:579.653333pt;}
.yff{bottom:579.733333pt;}
.y1ac{bottom:581.653333pt;}
.y180{bottom:582.293333pt;}
.yf{bottom:584.293333pt;}
.yec{bottom:587.333333pt;}
.y158{bottom:590.453333pt;}
.y93{bottom:590.613333pt;}
.y17f{bottom:597.893333pt;}
.ye{bottom:599.893333pt;}
.y3f{bottom:600.213333pt;}
.y1ab{bottom:605.333333pt;}
.y6d{bottom:605.493333pt;}
.y157{bottom:606.053333pt;}
.y92{bottom:606.293333pt;}
.yfe{bottom:611.413333pt;}
.y128{bottom:614.613333pt;}
.y3e{bottom:615.813333pt;}
.y1aa{bottom:620.933333pt;}
.y6c{bottom:621.173333pt;}
.y17e{bottom:621.493333pt;}
.y156{bottom:621.653333pt;}
.y91{bottom:621.893333pt;}
.yd{bottom:623.813333pt;}
.yfd{bottom:627.013333pt;}
.y127{bottom:630.213333pt;}
.yb0{bottom:630.293333pt;}
.y3d{bottom:631.413333pt;}
.y17d{bottom:637.173333pt;}
.y155{bottom:637.333333pt;}
.y6b{bottom:637.573333pt;}
.yfc{bottom:642.613333pt;}
.y1a9{bottom:644.613333pt;}
.y126{bottom:645.813333pt;}
.y3c{bottom:647.093333pt;}
.yd2{bottom:650.853333pt;}
.y6a{bottom:653.973333pt;}
.yfb{bottom:658.293333pt;}
.y1a8{bottom:660.213333pt;}
.y17c{bottom:660.773333pt;}
.yc{bottom:666.693333pt;}
.y90{bottom:666.853333pt;}
.y154{bottom:668.933333pt;}
.y69{bottom:669.573333pt;}
.yfa{bottom:673.893333pt;}
.yeb{bottom:674.213333pt;}
.yd1{bottom:675.173333pt;}
.y125{bottom:677.493333pt;}
.y3b{bottom:678.693333pt;}
.y1a7{bottom:683.813333pt;}
.y17b{bottom:684.373333pt;}
.y153{bottom:684.613333pt;}
.y68{bottom:685.173333pt;}
.yaf{bottom:685.893333pt;}
.yf9{bottom:689.573333pt;}
.y124{bottom:693.093333pt;}
.y3a{bottom:694.373333pt;}
.yb{bottom:698.533333pt;}
.yd0{bottom:699.413333pt;}
.y1a6{bottom:699.493333pt;}
.y17a{bottom:700.053333pt;}
.y152{bottom:700.213333pt;}
.y67{bottom:701.573333pt;}
.y8f{bottom:706.773333pt;}
.y123{bottom:708.693333pt;}
.y39{bottom:709.973333pt;}
.y151{bottom:715.813333pt;}
.yf7{bottom:718.853333pt;}
.y1a5{bottom:723.093333pt;}
.y179{bottom:723.653333pt;}
.y122{bottom:724.373333pt;}
.y38{bottom:725.573333pt;}
.ya{bottom:730.533333pt;}
.y150{bottom:731.493333pt;}
.y66{bottom:733.973333pt;}
.ycf{bottom:739.333333pt;}
.y121{bottom:739.973333pt;}
.y37{bottom:741.253333pt;}
.y8e{bottom:746.693333pt;}
.y14f{bottom:747.093333pt;}
.y120{bottom:755.653333pt;}
.y36{bottom:756.853333pt;}
.yae{bottom:757.093333pt;}
.y65{bottom:757.573333pt;}
.yea{bottom:761.013333pt;}
.y1a4{bottom:762.373333pt;}
.y178{bottom:763.253333pt;}
.y9{bottom:765.893333pt;}
.y11f{bottom:771.253333pt;}
.y14e{bottom:778.693333pt;}
.y8{bottom:781.893333pt;}
.y1a3{bottom:785.973333pt;}
.y8d{bottom:786.613333pt;}
.y11e{bottom:786.853333pt;}
.y35{bottom:788.533333pt;}
.y64{bottom:789.173333pt;}
.y14d{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y1a2{bottom:801.653333pt;}
.y11d{bottom:802.533333pt;}
.y34{bottom:804.133333pt;}
.y63{bottom:804.853333pt;}
.y177{bottom:806.133333pt;}
.y14c{bottom:809.973333pt;}
.yce{bottom:810.533333pt;}
.y33{bottom:819.733333pt;}
.ye9{bottom:819.893333pt;}
.y62{bottom:820.453333pt;}
.yf6{bottom:821.333333pt;}
.y1a1{bottom:825.253333pt;}
.y14b{bottom:825.653333pt;}
.y8c{bottom:826.533333pt;}
.y6{bottom:826.613333pt;}
.yad{bottom:828.293333pt;}
.y176{bottom:830.053333pt;}
.y11c{bottom:831.813333pt;}
.ycc{bottom:834.853333pt;}
.y32{bottom:835.413333pt;}
.y61{bottom:836.133333pt;}
.y1a0{bottom:840.853333pt;}
.y14a{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y31{bottom:851.013333pt;}
.ye8{bottom:851.573333pt;}
.y60{bottom:851.733333pt;}
.y11b{bottom:856.133333pt;}
.y149{bottom:856.853333pt;}
.yca{bottom:859.173333pt;}
.y175{bottom:862.933333pt;}
.y19f{bottom:864.533333pt;}
.y8b{bottom:866.533333pt;}
.ye7{bottom:867.173333pt;}
.y148{bottom:872.533333pt;}
.y30{bottom:874.933333pt;}
.y4{bottom:877.893333pt;}
.y174{bottom:878.613333pt;}
.y19e{bottom:880.133333pt;}
.y11a{bottom:880.453333pt;}
.ye6{bottom:882.853333pt;}
.y5f{bottom:883.333333pt;}
.yc8{bottom:883.493333pt;}
.ya9{bottom:883.813333pt;}
.y173{bottom:894.213333pt;}
.ye5{bottom:898.480000pt;}
.y5e{bottom:899.760000pt;}
.y3{bottom:899.840000pt;}
.y19d{bottom:903.840000pt;}
.y147{bottom:904.160000pt;}
.y119{bottom:904.720000pt;}
.y89{bottom:906.480000pt;}
.y172{bottom:909.840000pt;}
.ye4{bottom:914.080000pt;}
.y5d{bottom:916.080000pt;}
.y2f{bottom:917.840000pt;}
.y19c{bottom:919.440000pt;}
.y146{bottom:919.840000pt;}
.yc7{bottom:923.440000pt;}
.yf5{bottom:923.760000pt;}
.y171{bottom:925.520000pt;}
.y118{bottom:929.040000pt;}
.ye3{bottom:929.760000pt;}
.y5c{bottom:932.480000pt;}
.y2e{bottom:933.760000pt;}
.y19b{bottom:935.040000pt;}
.y145{bottom:935.440000pt;}
.y170{bottom:941.120000pt;}
.ye2{bottom:945.360000pt;}
.y5b{bottom:948.800000pt;}
.y144{bottom:951.040000pt;}
.y117{bottom:953.360000pt;}
.ya8{bottom:955.040000pt;}
.y19a{bottom:958.720000pt;}
.ye1{bottom:961.040000pt;}
.y87{bottom:962.000000pt;}
.y16f{bottom:965.040000pt;}
.y2d{bottom:966.720000pt;}
.y199{bottom:974.320000pt;}
.y116{bottom:977.680000pt;}
.y5a{bottom:981.200000pt;}
.y2c{bottom:982.320000pt;}
.y86{bottom:986.320000pt;}
.ye0{bottom:990.320000pt;}
.y2b{bottom:998.000000pt;}
.y115{bottom:1001.920000pt;}
.y59{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h1e{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h18{height:35.280000pt;}
.hf{height:39.200000pt;}
.h12{height:39.226667pt;}
.he{height:39.280000pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:54.880000pt;}
.ha{height:54.927899pt;}
.h17{height:54.960000pt;}
.hb{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h14{height:70.480000pt;}
.h15{height:70.560000pt;}
.h16{height:70.586667pt;}
.h19{height:86.160000pt;}
.h1d{height:101.760000pt;}
.h1c{height:101.786667pt;}
.h13{height:101.840000pt;}
.h1a{height:117.440000pt;}
.h1b{height:117.466667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:34.000000pt;}
.w6{width:54.080000pt;}
.w12{width:81.840000pt;}
.we{width:112.160000pt;}
.w8{width:115.440000pt;}
.w14{width:118.666667pt;}
.w7{width:124.346667pt;}
.w15{width:133.760000pt;}
.w9{width:136.480000pt;}
.w3{width:151.386667pt;}
.wf{width:158.586667pt;}
.w10{width:168.800000pt;}
.wc{width:206.986667pt;}
.w4{width:225.120000pt;}
.w5{width:239.226667pt;}
.wa{width:258.746667pt;}
.w11{width:260.426667pt;}
.w13{width:311.626667pt;}
.wd{width:351.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x15{left:97.040000pt;}
.x18{left:98.879988pt;}
.x5{left:108.479988pt;}
.x6{left:132.479988pt;}
.xd{left:186.186667pt;}
.xa{left:213.146667pt;}
.x12{left:220.346667pt;}
.x2{left:223.786655pt;}
.x10{left:268.746667pt;}
.x8{left:285.306655pt;}
.xe{left:302.266667pt;}
.x13{left:389.866667pt;}
.xb{left:438.906667pt;}
.x16{left:443.946667pt;}
.x17{left:563.253333pt;}
.x11{left:620.693333pt;}
.x7{left:624.053322pt;}
.x14{left:651.013333pt;}
.xc{left:678.773333pt;}
.xf{left:698.853333pt;}
.x3{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  