
    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_d56947b90632a1f0a208fbbc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_187d66163c04f959e1c9eb45.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_69d7e9e82e56197863ec9754.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_7546f684d6fcf198efada0c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c268d270962f38732fa5a6b6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_41db7863b2c78c600e9b1cba.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cc3c532fc0e5545b60521aaf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_48a10cfac0d2b08b8622f1a6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_85cfcf6f6e551eecd7287e28.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls38{letter-spacing:-4.680000px;}
.lse{letter-spacing:-2.520000px;}
.ls13{letter-spacing:-1.692000px;}
.ls11{letter-spacing:-1.386000px;}
.ls12{letter-spacing:-1.284000px;}
.ls10{letter-spacing:-1.182000px;}
.lsf{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.924000px;}
.ls2f{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls2e{letter-spacing:1.080000px;}
.ls16{letter-spacing:2.340000px;}
.ls37{letter-spacing:7.380000px;}
.ls1b{letter-spacing:8.820000px;}
.ls32{letter-spacing:9.540000px;}
.ls31{letter-spacing:10.980000px;}
.ls35{letter-spacing:16.020000px;}
.ls36{letter-spacing:16.506720px;}
.ls33{letter-spacing:21.060000px;}
.ls15{letter-spacing:26.820000px;}
.ls18{letter-spacing:31.860000px;}
.ls30{letter-spacing:40.500000px;}
.ls20{letter-spacing:44.100000px;}
.ls9{letter-spacing:46.026720px;}
.ls3{letter-spacing:50.580000px;}
.ls23{letter-spacing:51.300000px;}
.ls2c{letter-spacing:68.580000px;}
.ls29{letter-spacing:81.540000px;}
.ls22{letter-spacing:86.580000px;}
.ls2{letter-spacing:102.396000px;}
.ls14{letter-spacing:124.020000px;}
.ls26{letter-spacing:126.180000px;}
.ls1d{letter-spacing:155.700000px;}
.ls19{letter-spacing:155.844000px;}
.ls17{letter-spacing:169.524000px;}
.ls1a{letter-spacing:185.220000px;}
.ls24{letter-spacing:185.400000px;}
.ls1e{letter-spacing:185.940000px;}
.ls21{letter-spacing:191.700000px;}
.ls1f{letter-spacing:227.700000px;}
.ls27{letter-spacing:259.524000px;}
.ls1c{letter-spacing:319.860000px;}
.ls2b{letter-spacing:570.420000px;}
.ls2a{letter-spacing:646.020000px;}
.ls28{letter-spacing:654.120000px;}
.ls2d{letter-spacing:819.120000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.758000px;}
.wsc{word-spacing:-13.656000px;}
.wsb{word-spacing:-13.554000px;}
.ws2{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.248000px;}
.ws8{word-spacing:-12.420000px;}
.ws10{word-spacing:-10.260000px;}
.ws4{word-spacing:0.000000px;}
._33{margin-left:-8.480400px;}
._28{margin-left:-6.274800px;}
._1f{margin-left:-5.023440px;}
._5{margin-left:-3.841920px;}
._13{margin-left:-2.395440px;}
._1{margin-left:-1.059840px;}
._0{width:1.185840px;}
._a{width:2.696400px;}
._9{width:3.877200px;}
._e{width:5.189760px;}
._22{width:6.215040px;}
._f{width:7.230960px;}
._15{width:8.287920px;}
._d{width:9.511200px;}
._21{width:11.055600px;}
._8{width:12.310560px;}
._23{width:13.335840px;}
._20{width:16.006800px;}
._1b{width:17.125920px;}
._12{width:18.355680px;}
._11{width:20.028960px;}
._10{width:21.155040px;}
._16{width:22.328400px;}
._14{width:23.913360px;}
._c{width:25.646400px;}
._32{width:27.907920px;}
._1a{width:29.286000px;}
._1e{width:31.190880px;}
._19{width:34.481520px;}
._1d{width:35.655120px;}
._1c{width:36.931680px;}
._17{width:41.137200px;}
._18{width:43.044240px;}
._31{width:44.562000px;}
._30{width:46.015200px;}
._b{width:50.424480px;}
._2d{width:51.871680px;}
._4{width:60.129360px;}
._3{width:62.407200px;}
._2{width:63.420960px;}
._2e{width:69.091920px;}
._2f{width:92.867040px;}
._2a{width:95.220000px;}
._6{width:98.076240px;}
._7{width:115.509600px;}
._27{width:122.483760px;}
._26{width:127.521840px;}
._25{width:131.119920px;}
._29{width:153.475680px;}
._2b{width:176.650560px;}
._2c{width:219.319200px;}
._24{width:297.963360px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc6{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y15{bottom:5.760000px;}
.y88{bottom:5.805000px;}
.y2d{bottom:5.940000px;}
.y121{bottom:5.985000px;}
.y7{bottom:14.760000px;}
.y94{bottom:19.800000px;}
.y7a{bottom:25.560000px;}
.y87{bottom:25.605000px;}
.y2c{bottom:25.740000px;}
.y120{bottom:25.785000px;}
.y9a{bottom:37.620000px;}
.y6{bottom:43.920000px;}
.y8a{bottom:45.360000px;}
.y2b{bottom:45.540000px;}
.y86{bottom:45.585000px;}
.yd{bottom:58.320000px;}
.y5{bottom:64.080000px;}
.y2a{bottom:65.340000px;}
.y78{bottom:65.385000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.ye0{bottom:80.460000px;}
.y29{bottom:85.140000px;}
.y77{bottom:85.185000px;}
.y4{bottom:86.400000px;}
.y74{bottom:88.200000px;}
.y103{bottom:89.280000px;}
.y150{bottom:97.200000px;}
.ydf{bottom:100.260000px;}
.ybc{bottom:100.620000px;}
.y12c{bottom:100.980000px;}
.y92{bottom:104.040000px;}
.y123{bottom:104.940000px;}
.y85{bottom:104.985000px;}
.y28{bottom:105.120000px;}
.y9{bottom:107.490000px;}
.y73{bottom:108.180000px;}
.y102{bottom:109.080000px;}
.y3c{bottom:111.060000px;}
.y14f{bottom:117.180000px;}
.yde{bottom:120.060000px;}
.ybb{bottom:120.600000px;}
.y12b{bottom:120.780000px;}
.y3{bottom:122.610000px;}
.y91{bottom:123.840000px;}
.y84{bottom:124.785000px;}
.y27{bottom:124.920000px;}
.y72{bottom:127.980000px;}
.y101{bottom:129.060000px;}
.y3b{bottom:131.040000px;}
.y8{bottom:136.650000px;}
.y14e{bottom:136.980000px;}
.ydd{bottom:139.860000px;}
.yba{bottom:140.400000px;}
.y12a{bottom:140.580000px;}
.y90{bottom:143.820000px;}
.y26{bottom:144.720000px;}
.y83{bottom:144.765000px;}
.y71{bottom:147.780000px;}
.y100{bottom:148.860000px;}
.y3a{bottom:150.840000px;}
.y14d{bottom:156.810000px;}
.ydc{bottom:159.690000px;}
.yb9{bottom:160.230000px;}
.y129{bottom:160.410000px;}
.y8f{bottom:163.650000px;}
.y25{bottom:164.520000px;}
.y82{bottom:164.565000px;}
.y70{bottom:167.610000px;}
.yff{bottom:168.690000px;}
.y39{bottom:170.670000px;}
.y14c{bottom:176.610000px;}
.ydb{bottom:179.670000px;}
.yb8{bottom:180.030000px;}
.y128{bottom:180.210000px;}
.y8e{bottom:183.450000px;}
.y24{bottom:184.320000px;}
.y81{bottom:184.365000px;}
.y6f{bottom:187.410000px;}
.yfe{bottom:188.490000px;}
.y38{bottom:190.470000px;}
.y14b{bottom:196.410000px;}
.yda{bottom:199.470000px;}
.yb7{bottom:199.830000px;}
.y127{bottom:200.190000px;}
.y8d{bottom:203.250000px;}
.y80{bottom:204.165000px;}
.y23{bottom:204.300000px;}
.y6e{bottom:207.390000px;}
.yfd{bottom:208.290000px;}
.y37{bottom:210.270000px;}
.y14a{bottom:216.390000px;}
.y8c{bottom:218.010000px;}
.yd9{bottom:219.270000px;}
.yb6{bottom:219.810000px;}
.y126{bottom:219.990000px;}
.y7f{bottom:223.965000px;}
.y22{bottom:224.100000px;}
.y6d{bottom:227.190000px;}
.yfc{bottom:228.270000px;}
.y36{bottom:230.250000px;}
.y149{bottom:236.190000px;}
.y8b{bottom:239.070000px;}
.yb5{bottom:239.610000px;}
.y125{bottom:239.790000px;}
.y21{bottom:243.900000px;}
.y7e{bottom:243.945000px;}
.y6c{bottom:246.990000px;}
.yfb{bottom:248.070000px;}
.y35{bottom:250.050000px;}
.y124{bottom:255.270000px;}
.y148{bottom:255.990000px;}
.yd8{bottom:258.870000px;}
.yb4{bottom:259.410000px;}
.y20{bottom:263.730000px;}
.y6b{bottom:266.790000px;}
.yfa{bottom:267.870000px;}
.y34{bottom:269.850000px;}
.y147{bottom:275.790000px;}
.y122{bottom:276.330000px;}
.yd7{bottom:278.850000px;}
.yb3{bottom:279.210000px;}
.y1f{bottom:283.530000px;}
.y6a{bottom:286.590000px;}
.yf9{bottom:287.670000px;}
.y33{bottom:289.650000px;}
.y146{bottom:295.590000px;}
.yd6{bottom:298.650000px;}
.yb2{bottom:299.010000px;}
.y1e{bottom:303.510000px;}
.y69{bottom:306.570000px;}
.yf8{bottom:307.470000px;}
.y32{bottom:309.450000px;}
.y145{bottom:315.570000px;}
.yd5{bottom:318.450000px;}
.yb1{bottom:318.990000px;}
.y1d{bottom:323.310000px;}
.y68{bottom:326.370000px;}
.yf7{bottom:327.450000px;}
.y31{bottom:329.430000px;}
.y144{bottom:335.370000px;}
.yd4{bottom:338.250000px;}
.yb0{bottom:338.790000px;}
.y89{bottom:339.510000px;}
.y1c{bottom:343.110000px;}
.y67{bottom:346.170000px;}
.yf6{bottom:347.250000px;}
.y30{bottom:349.230000px;}
.y143{bottom:355.170000px;}
.yd3{bottom:358.050000px;}
.yaf{bottom:358.590000px;}
.y1b{bottom:362.910000px;}
.y66{bottom:365.970000px;}
.yf5{bottom:367.050000px;}
.y2f{bottom:369.030000px;}
.y142{bottom:374.970000px;}
.yd2{bottom:378.030000px;}
.yae{bottom:378.390000px;}
.y1a{bottom:382.710000px;}
.y65{bottom:385.770000px;}
.yf4{bottom:386.850000px;}
.y2e{bottom:388.830000px;}
.y141{bottom:394.770000px;}
.yd1{bottom:397.830000px;}
.y11f{bottom:398.010000px;}
.yad{bottom:398.190000px;}
.y7d{bottom:400.170000px;}
.y19{bottom:402.690000px;}
.y16{bottom:403.635000px;}
.y64{bottom:405.795000px;}
.yf3{bottom:406.695000px;}
.y140{bottom:414.795000px;}
.yd0{bottom:417.675000px;}
.yac{bottom:418.215000px;}
.y18{bottom:422.490000px;}
.y63{bottom:425.595000px;}
.yf2{bottom:426.675000px;}
.y13f{bottom:434.595000px;}
.ycf{bottom:437.475000px;}
.yab{bottom:438.015000px;}
.y17{bottom:442.290000px;}
.y62{bottom:445.395000px;}
.y11e{bottom:446.295000px;}
.yf1{bottom:446.475000px;}
.y13e{bottom:454.395000px;}
.yce{bottom:457.275000px;}
.yaa{bottom:457.815000px;}
.y61{bottom:465.195000px;}
.y11d{bottom:466.095000px;}
.yf0{bottom:466.275000px;}
.y13d{bottom:474.195000px;}
.ycd{bottom:477.255000px;}
.ya9{bottom:477.615000px;}
.y60{bottom:484.995000px;}
.y11c{bottom:485.895000px;}
.yef{bottom:486.075000px;}
.y13c{bottom:493.995000px;}
.ycc{bottom:497.055000px;}
.ya8{bottom:497.415000px;}
.y5f{bottom:504.975000px;}
.yee{bottom:505.875000px;}
.y13b{bottom:513.975000px;}
.ycb{bottom:516.855000px;}
.ya7{bottom:517.395000px;}
.y5e{bottom:524.775000px;}
.y11b{bottom:525.675000px;}
.yed{bottom:525.855000px;}
.yca{bottom:532.335000px;}
.y13a{bottom:533.775000px;}
.ya6{bottom:537.195000px;}
.y5d{bottom:544.575000px;}
.y11a{bottom:545.475000px;}
.yec{bottom:545.655000px;}
.y139{bottom:553.575000px;}
.ya5{bottom:556.995000px;}
.y5c{bottom:564.375000px;}
.y119{bottom:565.275000px;}
.yeb{bottom:565.455000px;}
.yc9{bottom:573.195000px;}
.y138{bottom:573.375000px;}
.ya4{bottom:576.795000px;}
.y5b{bottom:584.175000px;}
.y118{bottom:585.075000px;}
.yea{bottom:585.255000px;}
.y137{bottom:593.175000px;}
.yc8{bottom:594.075000px;}
.ya3{bottom:596.595000px;}
.y5a{bottom:604.155000px;}
.ye9{bottom:605.055000px;}
.y136{bottom:613.155000px;}
.yc7{bottom:615.135000px;}
.ya2{bottom:616.575000px;}
.y59{bottom:623.955000px;}
.y117{bottom:624.855000px;}
.ye8{bottom:625.035000px;}
.y135{bottom:632.955000px;}
.yc6{bottom:636.015000px;}
.ya1{bottom:636.375000px;}
.y58{bottom:643.755000px;}
.y116{bottom:644.655000px;}
.ye7{bottom:644.835000px;}
.ya0{bottom:650.445000px;}
.y134{bottom:652.785000px;}
.yc5{bottom:657.105000px;}
.y7c{bottom:659.265000px;}
.y57{bottom:663.585000px;}
.y115{bottom:664.485000px;}
.ye6{bottom:664.665000px;}
.y133{bottom:672.585000px;}
.yc4{bottom:677.985000px;}
.y56{bottom:683.385000px;}
.y114{bottom:684.285000px;}
.ye5{bottom:684.465000px;}
.y9f{bottom:690.045000px;}
.y132{bottom:692.385000px;}
.yc3{bottom:699.045000px;}
.y55{bottom:703.365000px;}
.ye4{bottom:704.265000px;}
.y131{bottom:712.365000px;}
.yc2{bottom:719.925000px;}
.y54{bottom:723.165000px;}
.y113{bottom:724.065000px;}
.ye3{bottom:724.245000px;}
.y9e{bottom:729.825000px;}
.y130{bottom:732.165000px;}
.ye2{bottom:739.005000px;}
.yc1{bottom:740.985000px;}
.y53{bottom:742.965000px;}
.y112{bottom:743.865000px;}
.y9d{bottom:749.625000px;}
.y12f{bottom:751.965000px;}
.y7b{bottom:759.705000px;}
.y52{bottom:762.765000px;}
.yc0{bottom:763.305000px;}
.y111{bottom:763.665000px;}
.y9c{bottom:769.425000px;}
.y12e{bottom:771.765000px;}
.y51{bottom:782.565000px;}
.y110{bottom:783.465000px;}
.y9b{bottom:789.225000px;}
.y12d{bottom:791.565000px;}
.y79{bottom:800.565000px;}
.y50{bottom:802.545000px;}
.y10f{bottom:803.445000px;}
.y99{bottom:809.025000px;}
.ybf{bottom:811.545000px;}
.ye1{bottom:821.985000px;}
.y4f{bottom:822.345000px;}
.y10e{bottom:823.245000px;}
.ybe{bottom:831.345000px;}
.y76{bottom:841.425000px;}
.y4e{bottom:842.145000px;}
.y10d{bottom:843.045000px;}
.ybd{bottom:851.145000px;}
.y14{bottom:860.685000px;}
.y98{bottom:862.125000px;}
.y10c{bottom:862.845000px;}
.y4d{bottom:870.945000px;}
.y97{bottom:882.105000px;}
.y10b{bottom:882.645000px;}
.y13{bottom:886.425000px;}
.y4c{bottom:890.745000px;}
.y96{bottom:901.950000px;}
.y10a{bottom:902.670000px;}
.y12{bottom:906.270000px;}
.y4b{bottom:910.770000px;}
.y95{bottom:921.750000px;}
.y109{bottom:922.470000px;}
.y11{bottom:926.610000px;}
.y4a{bottom:930.570000px;}
.y108{bottom:942.270000px;}
.y75{bottom:942.630000px;}
.y93{bottom:942.990000px;}
.y10{bottom:947.850000px;}
.y49{bottom:950.370000px;}
.y107{bottom:962.070000px;}
.y48{bottom:970.170000px;}
.yf{bottom:971.430000px;}
.y106{bottom:977.730000px;}
.y47{bottom:989.970000px;}
.y105{bottom:998.610000px;}
.ye{bottom:1003.110000px;}
.y46{bottom:1009.950000px;}
.yc{bottom:1029.390000px;}
.y45{bottom:1029.750000px;}
.y1{bottom:1046.850000px;}
.y44{bottom:1049.550000px;}
.y43{bottom:1069.350000px;}
.y42{bottom:1089.150000px;}
.y41{bottom:1109.130000px;}
.y104{bottom:1120.470000px;}
.y40{bottom:1128.930000px;}
.y3f{bottom:1148.760000px;}
.y3e{bottom:1168.560000px;}
.y3d{bottom:1194.840000px;}
.h3{height:2.581875px;}
.hb{height:19.800000px;}
.h16{height:19.836000px;}
.h17{height:19.980000px;}
.h19{height:20.016000px;}
.h10{height:39.600000px;}
.h1b{height:39.636000px;}
.h14{height:39.780000px;}
.h1d{height:39.816000px;}
.he{height:41.843672px;}
.hc{height:42.164648px;}
.h15{height:49.255313px;}
.h18{height:51.660000px;}
.ha{height:53.573906px;}
.h1f{height:55.735313px;}
.h7{height:59.383125px;}
.h13{height:59.400000px;}
.h6{height:64.546875px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h1a{height:79.380000px;}
.h9{height:85.847344px;}
.h11{height:99.180000px;}
.hf{height:99.216000px;}
.h4{height:105.060586px;}
.h1e{height:118.980000px;}
.h1c{height:119.160000px;}
.h2{height:161.310000px;}
.h12{height:258.015000px;}
.hd{height:456.330000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:34.020000px;}
.w25{width:34.200000px;}
.w1c{width:44.496000px;}
.w1b{width:51.660000px;}
.w17{width:54.216000px;}
.w18{width:66.780000px;}
.w1a{width:72.900000px;}
.w14{width:77.616000px;}
.w1e{width:79.560000px;}
.w1d{width:81.180000px;}
.we{width:83.556000px;}
.w10{width:85.356000px;}
.w16{width:92.916000px;}
.w15{width:93.420000px;}
.wf{width:110.160000px;}
.w21{width:115.740000px;}
.w20{width:115.956000px;}
.w1f{width:116.280000px;}
.w22{width:116.496000px;}
.w11{width:120.816000px;}
.wd{width:120.996000px;}
.w24{width:143.316000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w28{width:160.950000px;}
.wa{width:161.850000px;}
.wb{width:162.000000px;}
.w9{width:171.030000px;}
.w26{width:175.890000px;}
.w12{width:178.230000px;}
.w2a{width:195.870000px;}
.w13{width:196.410000px;}
.w27{width:258.690000px;}
.w7{width:287.895000px;}
.w23{width:296.130000px;}
.wc{width:358.095000px;}
.w19{width:361.695000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xd{left:-1.080000px;}
.x0{left:0.000000px;}
.x2f{left:1.080000px;}
.x38{left:3.060000px;}
.x31{left:6.840000px;}
.xa{left:8.100000px;}
.x13{left:9.360000px;}
.x3b{left:13.500000px;}
.x2c{left:17.100000px;}
.x32{left:18.360000px;}
.x1f{left:22.320000px;}
.x1e{left:23.400000px;}
.x25{left:28.980000px;}
.x26{left:31.536000px;}
.x23{left:33.120000px;}
.x21{left:35.316000px;}
.x1c{left:36.900000px;}
.x28{left:39.600000px;}
.x24{left:43.740000px;}
.xe{left:52.919987px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xb{left:58.319987px;}
.x1a{left:60.510000px;}
.x22{left:66.270000px;}
.x34{left:77.214000px;}
.x10{left:79.919987px;}
.x17{left:81.720000px;}
.x3c{left:96.156000px;}
.x33{left:100.836000px;}
.x2a{left:104.790000px;}
.xf{left:106.235987px;}
.x11{left:108.035987px;}
.x8{left:109.485000px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.x12{left:122.256000px;}
.x30{left:134.496000px;}
.x2{left:136.290000px;}
.x18{left:171.030000px;}
.x27{left:201.270000px;}
.x3{left:208.470000px;}
.x3d{left:213.150000px;}
.x6{left:236.385000px;}
.x14{left:293.295000px;}
.x3e{left:329.835000px;}
.xc{left:343.875000px;}
.x29{left:379.515000px;}
.x41{left:417.855000px;}
.x19{left:439.815000px;}
.x3f{left:447.045000px;}
.x15{left:455.145000px;}
.x35{left:462.525000px;}
.x36{left:535.425000px;}
.x43{left:541.365000px;}
.x1b{left:560.805000px;}
.x40{left:563.505000px;}
.x2b{left:575.925000px;}
.x37{left:587.085000px;}
.x42{left:595.365000px;}
.x16{left:617.145000px;}
.x39{left:631.590000px;}
.x1d{left:644.370000px;}
.x2d{left:653.550000px;}
.x9{left:681.270000px;}
.x3a{left:712.770000px;}
.x2e{left:746.970000px;}
.x20{left:754.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls38{letter-spacing:-4.160000pt;}
.lse{letter-spacing:-2.240000pt;}
.ls13{letter-spacing:-1.504000pt;}
.ls11{letter-spacing:-1.232000pt;}
.ls12{letter-spacing:-1.141333pt;}
.ls10{letter-spacing:-1.050667pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.821333pt;}
.ls2f{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls37{letter-spacing:6.560000pt;}
.ls1b{letter-spacing:7.840000pt;}
.ls32{letter-spacing:8.480000pt;}
.ls31{letter-spacing:9.760000pt;}
.ls35{letter-spacing:14.240000pt;}
.ls36{letter-spacing:14.672640pt;}
.ls33{letter-spacing:18.720000pt;}
.ls15{letter-spacing:23.840000pt;}
.ls18{letter-spacing:28.320000pt;}
.ls30{letter-spacing:36.000000pt;}
.ls20{letter-spacing:39.200000pt;}
.ls9{letter-spacing:40.912640pt;}
.ls3{letter-spacing:44.960000pt;}
.ls23{letter-spacing:45.600000pt;}
.ls2c{letter-spacing:60.960000pt;}
.ls29{letter-spacing:72.480000pt;}
.ls22{letter-spacing:76.960000pt;}
.ls2{letter-spacing:91.018667pt;}
.ls14{letter-spacing:110.240000pt;}
.ls26{letter-spacing:112.160000pt;}
.ls1d{letter-spacing:138.400000pt;}
.ls19{letter-spacing:138.528000pt;}
.ls17{letter-spacing:150.688000pt;}
.ls1a{letter-spacing:164.640000pt;}
.ls24{letter-spacing:164.800000pt;}
.ls1e{letter-spacing:165.280000pt;}
.ls21{letter-spacing:170.400000pt;}
.ls1f{letter-spacing:202.400000pt;}
.ls27{letter-spacing:230.688000pt;}
.ls1c{letter-spacing:284.320000pt;}
.ls2b{letter-spacing:507.040000pt;}
.ls2a{letter-spacing:574.240000pt;}
.ls28{letter-spacing:581.440000pt;}
.ls2d{letter-spacing:728.106667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.229333pt;}
.wsc{word-spacing:-12.138667pt;}
.wsb{word-spacing:-12.048000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.776000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws10{word-spacing:-9.120000pt;}
.ws4{word-spacing:0.000000pt;}
._33{margin-left:-7.538133pt;}
._28{margin-left:-5.577600pt;}
._1f{margin-left:-4.465280pt;}
._5{margin-left:-3.415040pt;}
._13{margin-left:-2.129280pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._a{width:2.396800pt;}
._9{width:3.446400pt;}
._e{width:4.613120pt;}
._22{width:5.524480pt;}
._f{width:6.427520pt;}
._15{width:7.367040pt;}
._d{width:8.454400pt;}
._21{width:9.827200pt;}
._8{width:10.942720pt;}
._23{width:11.854080pt;}
._20{width:14.228267pt;}
._1b{width:15.223040pt;}
._12{width:16.316160pt;}
._11{width:17.803520pt;}
._10{width:18.804480pt;}
._16{width:19.847467pt;}
._14{width:21.256320pt;}
._c{width:22.796800pt;}
._32{width:24.807040pt;}
._1a{width:26.032000pt;}
._1e{width:27.725227pt;}
._19{width:30.650240pt;}
._1d{width:31.693440pt;}
._1c{width:32.828160pt;}
._17{width:36.566400pt;}
._18{width:38.261547pt;}
._31{width:39.610667pt;}
._30{width:40.902400pt;}
._b{width:44.821760pt;}
._2d{width:46.108160pt;}
._4{width:53.448320pt;}
._3{width:55.473067pt;}
._2{width:56.374187pt;}
._2e{width:61.415040pt;}
._2f{width:82.548480pt;}
._2a{width:84.640000pt;}
._6{width:87.178880pt;}
._7{width:102.675200pt;}
._27{width:108.874453pt;}
._26{width:113.352747pt;}
._25{width:116.551040pt;}
._29{width:136.422827pt;}
._2b{width:157.022720pt;}
._2c{width:194.950400pt;}
._24{width:264.856320pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y15{bottom:5.120000pt;}
.y88{bottom:5.160000pt;}
.y2d{bottom:5.280000pt;}
.y121{bottom:5.320000pt;}
.y7{bottom:13.120000pt;}
.y94{bottom:17.600000pt;}
.y7a{bottom:22.720000pt;}
.y87{bottom:22.760000pt;}
.y2c{bottom:22.880000pt;}
.y120{bottom:22.920000pt;}
.y9a{bottom:33.440000pt;}
.y6{bottom:39.040000pt;}
.y8a{bottom:40.320000pt;}
.y2b{bottom:40.480000pt;}
.y86{bottom:40.520000pt;}
.yd{bottom:51.840000pt;}
.y5{bottom:56.960000pt;}
.y2a{bottom:58.080000pt;}
.y78{bottom:58.120000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.ye0{bottom:71.520000pt;}
.y29{bottom:75.680000pt;}
.y77{bottom:75.720000pt;}
.y4{bottom:76.800000pt;}
.y74{bottom:78.400000pt;}
.y103{bottom:79.360000pt;}
.y150{bottom:86.400000pt;}
.ydf{bottom:89.120000pt;}
.ybc{bottom:89.440000pt;}
.y12c{bottom:89.760000pt;}
.y92{bottom:92.480000pt;}
.y123{bottom:93.280000pt;}
.y85{bottom:93.320000pt;}
.y28{bottom:93.440000pt;}
.y9{bottom:95.546667pt;}
.y73{bottom:96.160000pt;}
.y102{bottom:96.960000pt;}
.y3c{bottom:98.720000pt;}
.y14f{bottom:104.160000pt;}
.yde{bottom:106.720000pt;}
.ybb{bottom:107.200000pt;}
.y12b{bottom:107.360000pt;}
.y3{bottom:108.986667pt;}
.y91{bottom:110.080000pt;}
.y84{bottom:110.920000pt;}
.y27{bottom:111.040000pt;}
.y72{bottom:113.760000pt;}
.y101{bottom:114.720000pt;}
.y3b{bottom:116.480000pt;}
.y8{bottom:121.466667pt;}
.y14e{bottom:121.760000pt;}
.ydd{bottom:124.320000pt;}
.yba{bottom:124.800000pt;}
.y12a{bottom:124.960000pt;}
.y90{bottom:127.840000pt;}
.y26{bottom:128.640000pt;}
.y83{bottom:128.680000pt;}
.y71{bottom:131.360000pt;}
.y100{bottom:132.320000pt;}
.y3a{bottom:134.080000pt;}
.y14d{bottom:139.386667pt;}
.ydc{bottom:141.946667pt;}
.yb9{bottom:142.426667pt;}
.y129{bottom:142.586667pt;}
.y8f{bottom:145.466667pt;}
.y25{bottom:146.240000pt;}
.y82{bottom:146.280000pt;}
.y70{bottom:148.986667pt;}
.yff{bottom:149.946667pt;}
.y39{bottom:151.706667pt;}
.y14c{bottom:156.986667pt;}
.ydb{bottom:159.706667pt;}
.yb8{bottom:160.026667pt;}
.y128{bottom:160.186667pt;}
.y8e{bottom:163.066667pt;}
.y24{bottom:163.840000pt;}
.y81{bottom:163.880000pt;}
.y6f{bottom:166.586667pt;}
.yfe{bottom:167.546667pt;}
.y38{bottom:169.306667pt;}
.y14b{bottom:174.586667pt;}
.yda{bottom:177.306667pt;}
.yb7{bottom:177.626667pt;}
.y127{bottom:177.946667pt;}
.y8d{bottom:180.666667pt;}
.y80{bottom:181.480000pt;}
.y23{bottom:181.600000pt;}
.y6e{bottom:184.346667pt;}
.yfd{bottom:185.146667pt;}
.y37{bottom:186.906667pt;}
.y14a{bottom:192.346667pt;}
.y8c{bottom:193.786667pt;}
.yd9{bottom:194.906667pt;}
.yb6{bottom:195.386667pt;}
.y126{bottom:195.546667pt;}
.y7f{bottom:199.080000pt;}
.y22{bottom:199.200000pt;}
.y6d{bottom:201.946667pt;}
.yfc{bottom:202.906667pt;}
.y36{bottom:204.666667pt;}
.y149{bottom:209.946667pt;}
.y8b{bottom:212.506667pt;}
.yb5{bottom:212.986667pt;}
.y125{bottom:213.146667pt;}
.y21{bottom:216.800000pt;}
.y7e{bottom:216.840000pt;}
.y6c{bottom:219.546667pt;}
.yfb{bottom:220.506667pt;}
.y35{bottom:222.266667pt;}
.y124{bottom:226.906667pt;}
.y148{bottom:227.546667pt;}
.yd8{bottom:230.106667pt;}
.yb4{bottom:230.586667pt;}
.y20{bottom:234.426667pt;}
.y6b{bottom:237.146667pt;}
.yfa{bottom:238.106667pt;}
.y34{bottom:239.866667pt;}
.y147{bottom:245.146667pt;}
.y122{bottom:245.626667pt;}
.yd7{bottom:247.866667pt;}
.yb3{bottom:248.186667pt;}
.y1f{bottom:252.026667pt;}
.y6a{bottom:254.746667pt;}
.yf9{bottom:255.706667pt;}
.y33{bottom:257.466667pt;}
.y146{bottom:262.746667pt;}
.yd6{bottom:265.466667pt;}
.yb2{bottom:265.786667pt;}
.y1e{bottom:269.786667pt;}
.y69{bottom:272.506667pt;}
.yf8{bottom:273.306667pt;}
.y32{bottom:275.066667pt;}
.y145{bottom:280.506667pt;}
.yd5{bottom:283.066667pt;}
.yb1{bottom:283.546667pt;}
.y1d{bottom:287.386667pt;}
.y68{bottom:290.106667pt;}
.yf7{bottom:291.066667pt;}
.y31{bottom:292.826667pt;}
.y144{bottom:298.106667pt;}
.yd4{bottom:300.666667pt;}
.yb0{bottom:301.146667pt;}
.y89{bottom:301.786667pt;}
.y1c{bottom:304.986667pt;}
.y67{bottom:307.706667pt;}
.yf6{bottom:308.666667pt;}
.y30{bottom:310.426667pt;}
.y143{bottom:315.706667pt;}
.yd3{bottom:318.266667pt;}
.yaf{bottom:318.746667pt;}
.y1b{bottom:322.586667pt;}
.y66{bottom:325.306667pt;}
.yf5{bottom:326.266667pt;}
.y2f{bottom:328.026667pt;}
.y142{bottom:333.306667pt;}
.yd2{bottom:336.026667pt;}
.yae{bottom:336.346667pt;}
.y1a{bottom:340.186667pt;}
.y65{bottom:342.906667pt;}
.yf4{bottom:343.866667pt;}
.y2e{bottom:345.626667pt;}
.y141{bottom:350.906667pt;}
.yd1{bottom:353.626667pt;}
.y11f{bottom:353.786667pt;}
.yad{bottom:353.946667pt;}
.y7d{bottom:355.706667pt;}
.y19{bottom:357.946667pt;}
.y16{bottom:358.786667pt;}
.y64{bottom:360.706667pt;}
.yf3{bottom:361.506667pt;}
.y140{bottom:368.706667pt;}
.yd0{bottom:371.266667pt;}
.yac{bottom:371.746667pt;}
.y18{bottom:375.546667pt;}
.y63{bottom:378.306667pt;}
.yf2{bottom:379.266667pt;}
.y13f{bottom:386.306667pt;}
.ycf{bottom:388.866667pt;}
.yab{bottom:389.346667pt;}
.y17{bottom:393.146667pt;}
.y62{bottom:395.906667pt;}
.y11e{bottom:396.706667pt;}
.yf1{bottom:396.866667pt;}
.y13e{bottom:403.906667pt;}
.yce{bottom:406.466667pt;}
.yaa{bottom:406.946667pt;}
.y61{bottom:413.506667pt;}
.y11d{bottom:414.306667pt;}
.yf0{bottom:414.466667pt;}
.y13d{bottom:421.506667pt;}
.ycd{bottom:424.226667pt;}
.ya9{bottom:424.546667pt;}
.y60{bottom:431.106667pt;}
.y11c{bottom:431.906667pt;}
.yef{bottom:432.066667pt;}
.y13c{bottom:439.106667pt;}
.ycc{bottom:441.826667pt;}
.ya8{bottom:442.146667pt;}
.y5f{bottom:448.866667pt;}
.yee{bottom:449.666667pt;}
.y13b{bottom:456.866667pt;}
.ycb{bottom:459.426667pt;}
.ya7{bottom:459.906667pt;}
.y5e{bottom:466.466667pt;}
.y11b{bottom:467.266667pt;}
.yed{bottom:467.426667pt;}
.yca{bottom:473.186667pt;}
.y13a{bottom:474.466667pt;}
.ya6{bottom:477.506667pt;}
.y5d{bottom:484.066667pt;}
.y11a{bottom:484.866667pt;}
.yec{bottom:485.026667pt;}
.y139{bottom:492.066667pt;}
.ya5{bottom:495.106667pt;}
.y5c{bottom:501.666667pt;}
.y119{bottom:502.466667pt;}
.yeb{bottom:502.626667pt;}
.yc9{bottom:509.506667pt;}
.y138{bottom:509.666667pt;}
.ya4{bottom:512.706667pt;}
.y5b{bottom:519.266667pt;}
.y118{bottom:520.066667pt;}
.yea{bottom:520.226667pt;}
.y137{bottom:527.266667pt;}
.yc8{bottom:528.066667pt;}
.ya3{bottom:530.306667pt;}
.y5a{bottom:537.026667pt;}
.ye9{bottom:537.826667pt;}
.y136{bottom:545.026667pt;}
.yc7{bottom:546.786667pt;}
.ya2{bottom:548.066667pt;}
.y59{bottom:554.626667pt;}
.y117{bottom:555.426667pt;}
.ye8{bottom:555.586667pt;}
.y135{bottom:562.626667pt;}
.yc6{bottom:565.346667pt;}
.ya1{bottom:565.666667pt;}
.y58{bottom:572.226667pt;}
.y116{bottom:573.026667pt;}
.ye7{bottom:573.186667pt;}
.ya0{bottom:578.173333pt;}
.y134{bottom:580.253333pt;}
.yc5{bottom:584.093333pt;}
.y7c{bottom:586.013333pt;}
.y57{bottom:589.853333pt;}
.y115{bottom:590.653333pt;}
.ye6{bottom:590.813333pt;}
.y133{bottom:597.853333pt;}
.yc4{bottom:602.653333pt;}
.y56{bottom:607.453333pt;}
.y114{bottom:608.253333pt;}
.ye5{bottom:608.413333pt;}
.y9f{bottom:613.373333pt;}
.y132{bottom:615.453333pt;}
.yc3{bottom:621.373333pt;}
.y55{bottom:625.213333pt;}
.ye4{bottom:626.013333pt;}
.y131{bottom:633.213333pt;}
.yc2{bottom:639.933333pt;}
.y54{bottom:642.813333pt;}
.y113{bottom:643.613333pt;}
.ye3{bottom:643.773333pt;}
.y9e{bottom:648.733333pt;}
.y130{bottom:650.813333pt;}
.ye2{bottom:656.893333pt;}
.yc1{bottom:658.653333pt;}
.y53{bottom:660.413333pt;}
.y112{bottom:661.213333pt;}
.y9d{bottom:666.333333pt;}
.y12f{bottom:668.413333pt;}
.y7b{bottom:675.293333pt;}
.y52{bottom:678.013333pt;}
.yc0{bottom:678.493333pt;}
.y111{bottom:678.813333pt;}
.y9c{bottom:683.933333pt;}
.y12e{bottom:686.013333pt;}
.y51{bottom:695.613333pt;}
.y110{bottom:696.413333pt;}
.y9b{bottom:701.533333pt;}
.y12d{bottom:703.613333pt;}
.y79{bottom:711.613333pt;}
.y50{bottom:713.373333pt;}
.y10f{bottom:714.173333pt;}
.y99{bottom:719.133333pt;}
.ybf{bottom:721.373333pt;}
.ye1{bottom:730.653333pt;}
.y4f{bottom:730.973333pt;}
.y10e{bottom:731.773333pt;}
.ybe{bottom:738.973333pt;}
.y76{bottom:747.933333pt;}
.y4e{bottom:748.573333pt;}
.y10d{bottom:749.373333pt;}
.ybd{bottom:756.573333pt;}
.y14{bottom:765.053333pt;}
.y98{bottom:766.333333pt;}
.y10c{bottom:766.973333pt;}
.y4d{bottom:774.173333pt;}
.y97{bottom:784.093333pt;}
.y10b{bottom:784.573333pt;}
.y13{bottom:787.933333pt;}
.y4c{bottom:791.773333pt;}
.y96{bottom:801.733333pt;}
.y10a{bottom:802.373333pt;}
.y12{bottom:805.573333pt;}
.y4b{bottom:809.573333pt;}
.y95{bottom:819.333333pt;}
.y109{bottom:819.973333pt;}
.y11{bottom:823.653333pt;}
.y4a{bottom:827.173333pt;}
.y108{bottom:837.573333pt;}
.y75{bottom:837.893333pt;}
.y93{bottom:838.213333pt;}
.y10{bottom:842.533333pt;}
.y49{bottom:844.773333pt;}
.y107{bottom:855.173333pt;}
.y48{bottom:862.373333pt;}
.yf{bottom:863.493333pt;}
.y106{bottom:869.093333pt;}
.y47{bottom:879.973333pt;}
.y105{bottom:887.653333pt;}
.ye{bottom:891.653333pt;}
.y46{bottom:897.733333pt;}
.yc{bottom:915.013333pt;}
.y45{bottom:915.333333pt;}
.y1{bottom:930.533333pt;}
.y44{bottom:932.933333pt;}
.y43{bottom:950.533333pt;}
.y42{bottom:968.133333pt;}
.y41{bottom:985.893333pt;}
.y104{bottom:995.973333pt;}
.y40{bottom:1003.493333pt;}
.y3f{bottom:1021.120000pt;}
.y3e{bottom:1038.720000pt;}
.y3d{bottom:1062.080000pt;}
.h3{height:2.295000pt;}
.hb{height:17.600000pt;}
.h16{height:17.632000pt;}
.h17{height:17.760000pt;}
.h19{height:17.792000pt;}
.h10{height:35.200000pt;}
.h1b{height:35.232000pt;}
.h14{height:35.360000pt;}
.h1d{height:35.392000pt;}
.he{height:37.194375pt;}
.hc{height:37.479688pt;}
.h15{height:43.782500pt;}
.h18{height:45.920000pt;}
.ha{height:47.621250pt;}
.h1f{height:49.542500pt;}
.h7{height:52.785000pt;}
.h13{height:52.800000pt;}
.h6{height:57.375000pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h1a{height:70.560000pt;}
.h9{height:76.308750pt;}
.h11{height:88.160000pt;}
.hf{height:88.192000pt;}
.h4{height:93.387187pt;}
.h1e{height:105.760000pt;}
.h1c{height:105.920000pt;}
.h2{height:143.386667pt;}
.h12{height:229.346667pt;}
.hd{height:405.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:30.240000pt;}
.w25{width:30.400000pt;}
.w1c{width:39.552000pt;}
.w1b{width:45.920000pt;}
.w17{width:48.192000pt;}
.w18{width:59.360000pt;}
.w1a{width:64.800000pt;}
.w14{width:68.992000pt;}
.w1e{width:70.720000pt;}
.w1d{width:72.160000pt;}
.we{width:74.272000pt;}
.w10{width:75.872000pt;}
.w16{width:82.592000pt;}
.w15{width:83.040000pt;}
.wf{width:97.920000pt;}
.w21{width:102.880000pt;}
.w20{width:103.072000pt;}
.w1f{width:103.360000pt;}
.w22{width:103.552000pt;}
.w11{width:107.392000pt;}
.wd{width:107.552000pt;}
.w24{width:127.392000pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w28{width:143.066667pt;}
.wa{width:143.866667pt;}
.wb{width:144.000000pt;}
.w9{width:152.026667pt;}
.w26{width:156.346667pt;}
.w12{width:158.426667pt;}
.w2a{width:174.106667pt;}
.w13{width:174.586667pt;}
.w27{width:229.946667pt;}
.w7{width:255.906667pt;}
.w23{width:263.226667pt;}
.wc{width:318.306667pt;}
.w19{width:321.506667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xd{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x2f{left:0.960000pt;}
.x38{left:2.720000pt;}
.x31{left:6.080000pt;}
.xa{left:7.200000pt;}
.x13{left:8.320000pt;}
.x3b{left:12.000000pt;}
.x2c{left:15.200000pt;}
.x32{left:16.320000pt;}
.x1f{left:19.840000pt;}
.x1e{left:20.800000pt;}
.x25{left:25.760000pt;}
.x26{left:28.032000pt;}
.x23{left:29.440000pt;}
.x21{left:31.392000pt;}
.x1c{left:32.800000pt;}
.x28{left:35.200000pt;}
.x24{left:38.880000pt;}
.xe{left:47.039988pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xb{left:51.839988pt;}
.x1a{left:53.786667pt;}
.x22{left:58.906667pt;}
.x34{left:68.634667pt;}
.x10{left:71.039988pt;}
.x17{left:72.640000pt;}
.x3c{left:85.472000pt;}
.x33{left:89.632000pt;}
.x2a{left:93.146667pt;}
.xf{left:94.431988pt;}
.x11{left:96.031988pt;}
.x8{left:97.320000pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.x12{left:108.672000pt;}
.x30{left:119.552000pt;}
.x2{left:121.146667pt;}
.x18{left:152.026667pt;}
.x27{left:178.906667pt;}
.x3{left:185.306667pt;}
.x3d{left:189.466667pt;}
.x6{left:210.120000pt;}
.x14{left:260.706667pt;}
.x3e{left:293.186667pt;}
.xc{left:305.666667pt;}
.x29{left:337.346667pt;}
.x41{left:371.426667pt;}
.x19{left:390.946667pt;}
.x3f{left:397.373333pt;}
.x15{left:404.573333pt;}
.x35{left:411.133333pt;}
.x36{left:475.933333pt;}
.x43{left:481.213333pt;}
.x1b{left:498.493333pt;}
.x40{left:500.893333pt;}
.x2b{left:511.933333pt;}
.x37{left:521.853333pt;}
.x42{left:529.213333pt;}
.x16{left:548.573333pt;}
.x39{left:561.413333pt;}
.x1d{left:572.773333pt;}
.x2d{left:580.933333pt;}
.x9{left:605.573333pt;}
.x3a{left:633.573333pt;}
.x2e{left:663.973333pt;}
.x20{left:670.693333pt;}
}




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