
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_91ba200816b6c5b03006f72b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a64f683e86dbfefb6a32fda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_bb0bcb19fe37a85271714f65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5bf41ba48d016804f97571a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_462317e8d863bdee4834bb59.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac132a7c6fc407b8bb416635.woff2')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_4794176a898d5a9ac9f401dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_32d66b4fc2f859036e6d7788.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_8ecf21fbae232a953a593391.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a202eb068aed9aacae4116a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_53c87f36675109b5e8898947.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-77.760000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.089400px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.466800px;}
.ls9{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.869760px;}
.lse{letter-spacing:2.160000px;}
.lsd{letter-spacing:6.480000px;}
.lsf{letter-spacing:9.360000px;}
.ls12{letter-spacing:16.306560px;}
.ls11{letter-spacing:46.546560px;}
.lsb{letter-spacing:63.826560px;}
.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;}
}
.ws9{word-spacing:-60.480000px;}
.wsa{word-spacing:-15.586800px;}
.ws8{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-3.456960px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:5.299200px;}
._13{width:6.313440px;}
._f{width:7.390080px;}
._7{width:8.418240px;}
._6{width:9.547200px;}
._b{width:11.427840px;}
._12{width:13.032000px;}
._e{width:14.032800px;}
._9{width:15.557760px;}
._8{width:16.712640px;}
._c{width:18.743040px;}
._14{width:20.027520px;}
._15{width:21.205440px;}
._11{width:22.524480px;}
._d{width:23.708160px;}
._5{width:1170.924000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.595500px;}
.y46{bottom:3.600000px;}
.y5{bottom:3.960000px;}
.yd5{bottom:4.665000px;}
.y40{bottom:4.680000px;}
.yd0{bottom:5.025000px;}
.yeb{bottom:5.029500px;}
.yee{bottom:5.035500px;}
.y42{bottom:5.040000px;}
.y5d{bottom:5.370000px;}
.yd2{bottom:5.385000px;}
.yec{bottom:5.389500px;}
.yef{bottom:5.395500px;}
.y43{bottom:5.400000px;}
.y3f{bottom:6.120000px;}
.y2{bottom:7.920000px;}
.y5a{bottom:8.995500px;}
.y4{bottom:21.240000px;}
.ycf{bottom:23.385000px;}
.y3e{bottom:23.400000px;}
.ye7{bottom:23.745000px;}
.y59{bottom:24.475500px;}
.y4d{bottom:33.151500px;}
.y58{bottom:42.154500px;}
.y3{bottom:44.280000px;}
.y4c{bottom:54.034500px;}
.y7{bottom:57.636000px;}
.y57{bottom:57.994500px;}
.y4b{bottom:66.994500px;}
.y56{bottom:73.474500px;}
.y55{bottom:86.434500px;}
.y4a{bottom:86.794500px;}
.y54{bottom:92.554500px;}
.yf1{bottom:94.356000px;}
.ycc{bottom:95.436000px;}
.yb4{bottom:96.516000px;}
.y5b{bottom:97.596000px;}
.y86{bottom:102.636000px;}
.y53{bottom:108.394500px;}
.yf0{bottom:111.276000px;}
.y47{bottom:111.640500px;}
.y130{bottom:112.356000px;}
.ycb{bottom:112.716000px;}
.yb3{bottom:113.796000px;}
.y3c{bottom:117.765000px;}
.y85{bottom:119.916000px;}
.y52{bottom:123.874500px;}
.yed{bottom:125.680500px;}
.yca{bottom:129.636000px;}
.yb2{bottom:131.076000px;}
.y84{bottom:137.196000px;}
.y51{bottom:139.354500px;}
.y3b{bottom:144.405000px;}
.yea{bottom:145.165500px;}
.yc9{bottom:146.592000px;}
.y12f{bottom:146.952000px;}
.yb1{bottom:148.392000px;}
.y49{bottom:148.714500px;}
.y83{bottom:154.515000px;}
.y50{bottom:154.834500px;}
.y48{bottom:159.514500px;}
.yc8{bottom:160.635000px;}
.y3a{bottom:161.685000px;}
.y12e{bottom:164.235000px;}
.ye9{bottom:164.610000px;}
.yb0{bottom:165.315000px;}
.y4f{bottom:170.344500px;}
.y82{bottom:171.795000px;}
.y39{bottom:178.965000px;}
.y12d{bottom:181.515000px;}
.ye8{bottom:183.690000px;}
.y81{bottom:189.075000px;}
.yaf{bottom:191.955000px;}
.y38{bottom:196.245000px;}
.y12c{bottom:198.795000px;}
.ye6{bottom:203.130000px;}
.y80{bottom:205.995000px;}
.yae{bottom:209.235000px;}
.y37{bottom:213.525000px;}
.y12b{bottom:216.075000px;}
.yad{bottom:226.515000px;}
.y36{bottom:230.805000px;}
.y7f{bottom:232.275000px;}
.y12a{bottom:233.355000px;}
.yac{bottom:243.795000px;}
.ye5{bottom:244.875000px;}
.y35{bottom:247.755000px;}
.y7e{bottom:249.555000px;}
.y129{bottom:250.635000px;}
.yab{bottom:261.075000px;}
.y10c{bottom:261.435000px;}
.y34{bottom:265.035000px;}
.y7d{bottom:266.835000px;}
.y128{bottom:267.915000px;}
.ye4{bottom:271.515000px;}
.yaa{bottom:278.385000px;}
.y33{bottom:282.315000px;}
.y7c{bottom:284.145000px;}
.y127{bottom:285.225000px;}
.ye3{bottom:288.465000px;}
.ya9{bottom:295.305000px;}
.y10b{bottom:295.665000px;}
.y32{bottom:299.595000px;}
.ye{bottom:300.705000px;}
.y7b{bottom:301.425000px;}
.y126{bottom:302.145000px;}
.ye2{bottom:305.745000px;}
.ya8{bottom:312.585000px;}
.y10a{bottom:312.945000px;}
.y31{bottom:316.875000px;}
.y45{bottom:318.705000px;}
.y125{bottom:319.425000px;}
.ye1{bottom:323.025000px;}
.ya7{bottom:329.865000px;}
.y109{bottom:330.225000px;}
.y30{bottom:334.155000px;}
.y7a{bottom:335.985000px;}
.y124{bottom:336.705000px;}
.y44{bottom:338.145000px;}
.ye0{bottom:340.305000px;}
.y1c{bottom:347.115000px;}
.ya6{bottom:347.145000px;}
.y2f{bottom:351.435000px;}
.y79{bottom:353.265000px;}
.y123{bottom:353.985000px;}
.y108{bottom:356.145000px;}
.y41{bottom:357.585000px;}
.ya5{bottom:364.425000px;}
.y2e{bottom:368.385000px;}
.y78{bottom:370.545000px;}
.y1b{bottom:371.265000px;}
.ydf{bottom:374.865000px;}
.y3d{bottom:377.025000px;}
.ya4{bottom:381.705000px;}
.y77{bottom:387.825000px;}
.y122{bottom:388.545000px;}
.y107{bottom:389.985000px;}
.yde{bottom:392.145000px;}
.y2d{bottom:394.305000px;}
.y1a{bottom:395.385000px;}
.ya3{bottom:398.985000px;}
.y76{bottom:405.150000px;}
.ydd{bottom:405.510000px;}
.y121{bottom:406.230000px;}
.y106{bottom:409.470000px;}
.y2c{bottom:409.785000px;}
.ya2{bottom:416.310000px;}
.y19{bottom:419.505000px;}
.y75{bottom:422.070000px;}
.y2b{bottom:425.265000px;}
.y105{bottom:428.910000px;}
.y149{bottom:432.510000px;}
.y120{bottom:432.870000px;}
.ya1{bottom:433.590000px;}
.y74{bottom:439.350000px;}
.y2a{bottom:440.745000px;}
.y18{bottom:443.625000px;}
.y104{bottom:447.990000px;}
.y11f{bottom:450.150000px;}
.ya0{bottom:450.870000px;}
.y29{bottom:456.225000px;}
.y73{bottom:456.630000px;}
.y148{bottom:459.150000px;}
.y11e{bottom:467.070000px;}
.y103{bottom:467.430000px;}
.y17{bottom:467.745000px;}
.y9f{bottom:468.150000px;}
.y28{bottom:472.065000px;}
.y72{bottom:473.910000px;}
.y147{bottom:476.430000px;}
.y11d{bottom:484.350000px;}
.y9e{bottom:485.430000px;}
.y102{bottom:486.870000px;}
.y27{bottom:487.545000px;}
.y71{bottom:491.190000px;}
.y16{bottom:492.225000px;}
.y146{bottom:493.350000px;}
.y11c{bottom:501.630000px;}
.y9d{bottom:502.350000px;}
.y26{bottom:503.070000px;}
.y70{bottom:508.470000px;}
.y101{bottom:509.910000px;}
.y145{bottom:510.630000px;}
.y15{bottom:516.390000px;}
.y25{bottom:518.550000px;}
.y11b{bottom:518.910000px;}
.y9c{bottom:519.630000px;}
.y6f{bottom:525.750000px;}
.y144{bottom:527.910000px;}
.y24{bottom:534.030000px;}
.y11a{bottom:536.190000px;}
.y100{bottom:536.550000px;}
.y9b{bottom:536.910000px;}
.y14{bottom:540.510000px;}
.y6e{bottom:543.060000px;}
.y143{bottom:545.220000px;}
.y23{bottom:549.510000px;}
.yff{bottom:553.500000px;}
.y9a{bottom:554.220000px;}
.y6d{bottom:560.340000px;}
.y142{bottom:562.500000px;}
.y13{bottom:564.630000px;}
.y22{bottom:564.990000px;}
.yfe{bottom:570.780000px;}
.y99{bottom:571.500000px;}
.y6c{bottom:577.620000px;}
.y141{bottom:579.780000px;}
.y21{bottom:580.470000px;}
.yfd{bottom:588.060000px;}
.y12{bottom:588.750000px;}
.y98{bottom:588.780000px;}
.y6b{bottom:594.900000px;}
.y20{bottom:596.310000px;}
.y140{bottom:597.060000px;}
.yfc{bottom:605.340000px;}
.y97{bottom:606.060000px;}
.y6a{bottom:608.220000px;}
.y1f{bottom:611.790000px;}
.y11{bottom:612.870000px;}
.y13f{bottom:614.340000px;}
.yfb{bottom:622.620000px;}
.y96{bottom:623.340000px;}
.y1e{bottom:627.270000px;}
.y13e{bottom:631.620000px;}
.y10{bottom:637.020000px;}
.y119{bottom:639.540000px;}
.yfa{bottom:639.900000px;}
.y95{bottom:640.620000px;}
.y13d{bottom:648.900000px;}
.yc7{bottom:652.860000px;}
.yf9{bottom:657.180000px;}
.y1d{bottom:657.900000px;}
.yf{bottom:661.140000px;}
.y118{bottom:666.180000px;}
.yc6{bottom:670.170000px;}
.ydc{bottom:672.690000px;}
.yf8{bottom:674.490000px;}
.y94{bottom:675.210000px;}
.y117{bottom:683.130000px;}
.yc5{bottom:686.730000px;}
.ydb{bottom:689.970000px;}
.yf7{bottom:691.770000px;}
.y93{bottom:692.130000px;}
.y116{bottom:700.410000px;}
.yda{bottom:707.250000px;}
.yf6{bottom:709.050000px;}
.y92{bottom:709.410000px;}
.yc4{bottom:713.370000px;}
.y115{bottom:717.690000px;}
.yd9{bottom:724.530000px;}
.yf5{bottom:726.330000px;}
.y91{bottom:726.690000px;}
.yc3{bottom:730.650000px;}
.y114{bottom:734.970000px;}
.yd8{bottom:741.810000px;}
.yf4{bottom:743.250000px;}
.y90{bottom:743.970000px;}
.yc2{bottom:747.930000px;}
.y113{bottom:752.250000px;}
.yd7{bottom:759.090000px;}
.yf3{bottom:760.530000px;}
.y8f{bottom:761.250000px;}
.yc1{bottom:765.210000px;}
.y112{bottom:769.530000px;}
.yf2{bottom:774.210000px;}
.yd6{bottom:776.010000px;}
.y8e{bottom:778.530000px;}
.yc0{bottom:782.490000px;}
.y111{bottom:786.810000px;}
.yd4{bottom:790.425000px;}
.y8d{bottom:795.810000px;}
.ybf{bottom:799.410000px;}
.y110{bottom:804.135000px;}
.yd3{bottom:809.550000px;}
.y8c{bottom:813.135000px;}
.ybe{bottom:816.735000px;}
.y10f{bottom:821.415000px;}
.yd1{bottom:828.990000px;}
.y8b{bottom:830.415000px;}
.ybd{bottom:834.375000px;}
.y10e{bottom:838.695000px;}
.y8a{bottom:847.695000px;}
.yce{bottom:848.430000px;}
.ybc{bottom:851.655000px;}
.y10d{bottom:852.015000px;}
.y13c{bottom:855.975000px;}
.y89{bottom:864.975000px;}
.ybb{bottom:868.935000px;}
.y13b{bottom:873.255000px;}
.y88{bottom:882.255000px;}
.yba{bottom:886.935000px;}
.ycd{bottom:889.815000px;}
.y13a{bottom:890.175000px;}
.y87{bottom:899.175000px;}
.yb9{bottom:905.295000px;}
.y139{bottom:907.455000px;}
.y69{bottom:916.455000px;}
.yb8{bottom:923.655000px;}
.y138{bottom:924.735000px;}
.y68{bottom:933.765000px;}
.yb7{bottom:942.045000px;}
.y67{bottom:951.045000px;}
.yb6{bottom:958.965000px;}
.y137{bottom:959.325000px;}
.y66{bottom:968.325000px;}
.y136{bottom:976.605000px;}
.yd{bottom:983.805000px;}
.y65{bottom:985.605000px;}
.yc{bottom:991.725000px;}
.y135{bottom:993.885000px;}
.y64{bottom:1002.885000px;}
.yb{bottom:1009.005000px;}
.y134{bottom:1011.165000px;}
.y63{bottom:1020.165000px;}
.y133{bottom:1028.445000px;}
.y62{bottom:1037.445000px;}
.ya{bottom:1045.005000px;}
.y132{bottom:1045.725000px;}
.y61{bottom:1054.725000px;}
.y131{bottom:1062.645000px;}
.y9{bottom:1069.530000px;}
.y60{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5f{bottom:1088.970000px;}
.y5c{bottom:1091.520000px;}
.yb5{bottom:1105.890000px;}
.y5e{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h14{height:5.650313px;}
.h1d{height:18.345000px;}
.h9{height:18.372656px;}
.h1b{height:18.381000px;}
.h1a{height:18.705000px;}
.h1e{height:18.706500px;}
.hf{height:18.720000px;}
.h20{height:18.750000px;}
.h1f{height:18.751500px;}
.h6{height:24.348516px;}
.h15{height:27.720000px;}
.h12{height:29.678906px;}
.h19{height:37.065000px;}
.he{height:37.116000px;}
.h1c{height:37.425000px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h17{height:42.229688px;}
.hd{height:53.677969px;}
.h13{height:55.147500px;}
.h21{height:59.328281px;}
.h5{height:59.357813px;}
.h10{height:60.155156px;}
.h8{height:60.952500px;}
.h18{height:62.163910px;}
.h16{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h11{height:188.325000px;}
.ha{height:670.485000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:65.196000px;}
.w1a{width:66.270000px;}
.w19{width:77.040000px;}
.w18{width:82.101000px;}
.w10{width:84.270000px;}
.w17{width:85.356000px;}
.w13{width:96.870000px;}
.w8{width:100.116000px;}
.w2{width:103.702500px;}
.w12{width:114.150000px;}
.w7{width:115.632000px;}
.wf{width:117.360000px;}
.wa{width:129.636000px;}
.w15{width:129.645000px;}
.w4{width:132.502500px;}
.wc{width:154.845000px;}
.w6{width:157.350000px;}
.we{width:162.795000px;}
.wb{width:163.080000px;}
.w14{width:169.935000px;}
.w11{width:170.325000px;}
.wd{width:175.755000px;}
.w16{width:300.682500px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:6.876000px;}
.x16{left:8.266500px;}
.x3a{left:10.830000px;}
.x4{left:13.305000px;}
.x3d{left:16.215000px;}
.x14{left:17.266500px;}
.x1f{left:18.360000px;}
.x5{left:19.425000px;}
.x39{left:21.990000px;}
.x1d{left:28.080000px;}
.x25{left:29.146500px;}
.x15{left:31.666500px;}
.x21{left:34.200000px;}
.x22{left:36.720000px;}
.x38{left:38.925000px;}
.xe{left:43.906500px;}
.x3e{left:46.455000px;}
.x24{left:47.542500px;}
.x6{left:48.615000px;}
.xf{left:50.782500px;}
.x13{left:54.022500px;}
.xd{left:55.102500px;}
.x26{left:57.262500px;}
.x18{left:62.295000px;}
.x33{left:68.070000px;}
.x3f{left:71.625000px;}
.x32{left:74.565000px;}
.x12{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x11{left:90.025500px;}
.x2{left:95.425500px;}
.x19{left:96.540000px;}
.x2d{left:97.609500px;}
.x27{left:102.985500px;}
.x36{left:104.809500px;}
.x23{left:106.945500px;}
.x48{left:113.436000px;}
.x10{left:124.585500px;}
.x42{left:139.414500px;}
.x35{left:180.435000px;}
.x3{left:182.250000px;}
.x41{left:197.715000px;}
.x17{left:218.970000px;}
.x2c{left:228.345000px;}
.x1a{left:231.945000px;}
.x2e{left:253.185000px;}
.x37{left:275.865000px;}
.xa{left:277.665000px;}
.x2b{left:339.270000px;}
.x1b{left:390.030000px;}
.x2f{left:429.660000px;}
.x43{left:440.820000px;}
.x3b{left:488.385000px;}
.x1c{left:506.370000px;}
.x44{left:526.905000px;}
.x30{left:593.550000px;}
.x1e{left:607.215000px;}
.x45{left:610.110000px;}
.xb{left:618.375000px;}
.x40{left:648.255000px;}
.x3c{left:659.070000px;}
.x20{left:673.125000px;}
.x2a{left:685.365000px;}
.x46{left:687.885000px;}
.x29{left:702.285000px;}
.x47{left:703.365000px;}
.x31{left:711.645000px;}
.x34{left:723.525000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.414933pt;}
.ls9{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.773120pt;}
.lse{letter-spacing:1.920000pt;}
.lsd{letter-spacing:5.760000pt;}
.lsf{letter-spacing:8.320000pt;}
.ls12{letter-spacing:14.494720pt;}
.ls11{letter-spacing:41.374720pt;}
.lsb{letter-spacing:56.734720pt;}
.ws9{word-spacing:-53.760000pt;}
.wsa{word-spacing:-13.854933pt;}
.ws8{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-3.072853pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.710400pt;}
._13{width:5.611947pt;}
._f{width:6.568960pt;}
._7{width:7.482880pt;}
._6{width:8.486400pt;}
._b{width:10.158080pt;}
._12{width:11.584000pt;}
._e{width:12.473600pt;}
._9{width:13.829120pt;}
._8{width:14.855680pt;}
._c{width:16.660480pt;}
._14{width:17.802240pt;}
._15{width:18.849280pt;}
._11{width:20.021760pt;}
._d{width:21.073920pt;}
._5{width:1040.821333pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.196000pt;}
.y46{bottom:3.200000pt;}
.y5{bottom:3.520000pt;}
.yd5{bottom:4.146667pt;}
.y40{bottom:4.160000pt;}
.yd0{bottom:4.466667pt;}
.yeb{bottom:4.470667pt;}
.yee{bottom:4.476000pt;}
.y42{bottom:4.480000pt;}
.y5d{bottom:4.773333pt;}
.yd2{bottom:4.786667pt;}
.yec{bottom:4.790667pt;}
.yef{bottom:4.796000pt;}
.y43{bottom:4.800000pt;}
.y3f{bottom:5.440000pt;}
.y2{bottom:7.040000pt;}
.y5a{bottom:7.996000pt;}
.y4{bottom:18.880000pt;}
.ycf{bottom:20.786667pt;}
.y3e{bottom:20.800000pt;}
.ye7{bottom:21.106667pt;}
.y59{bottom:21.756000pt;}
.y4d{bottom:29.468000pt;}
.y58{bottom:37.470667pt;}
.y3{bottom:39.360000pt;}
.y4c{bottom:48.030667pt;}
.y7{bottom:51.232000pt;}
.y57{bottom:51.550667pt;}
.y4b{bottom:59.550667pt;}
.y56{bottom:65.310667pt;}
.y55{bottom:76.830667pt;}
.y4a{bottom:77.150667pt;}
.y54{bottom:82.270667pt;}
.yf1{bottom:83.872000pt;}
.ycc{bottom:84.832000pt;}
.yb4{bottom:85.792000pt;}
.y5b{bottom:86.752000pt;}
.y86{bottom:91.232000pt;}
.y53{bottom:96.350667pt;}
.yf0{bottom:98.912000pt;}
.y47{bottom:99.236000pt;}
.y130{bottom:99.872000pt;}
.ycb{bottom:100.192000pt;}
.yb3{bottom:101.152000pt;}
.y3c{bottom:104.680000pt;}
.y85{bottom:106.592000pt;}
.y52{bottom:110.110667pt;}
.yed{bottom:111.716000pt;}
.yca{bottom:115.232000pt;}
.yb2{bottom:116.512000pt;}
.y84{bottom:121.952000pt;}
.y51{bottom:123.870667pt;}
.y3b{bottom:128.360000pt;}
.yea{bottom:129.036000pt;}
.yc9{bottom:130.304000pt;}
.y12f{bottom:130.624000pt;}
.yb1{bottom:131.904000pt;}
.y49{bottom:132.190667pt;}
.y83{bottom:137.346667pt;}
.y50{bottom:137.630667pt;}
.y48{bottom:141.790667pt;}
.yc8{bottom:142.786667pt;}
.y3a{bottom:143.720000pt;}
.y12e{bottom:145.986667pt;}
.ye9{bottom:146.320000pt;}
.yb0{bottom:146.946667pt;}
.y4f{bottom:151.417333pt;}
.y82{bottom:152.706667pt;}
.y39{bottom:159.080000pt;}
.y12d{bottom:161.346667pt;}
.ye8{bottom:163.280000pt;}
.y81{bottom:168.066667pt;}
.yaf{bottom:170.626667pt;}
.y38{bottom:174.440000pt;}
.y12c{bottom:176.706667pt;}
.ye6{bottom:180.560000pt;}
.y80{bottom:183.106667pt;}
.yae{bottom:185.986667pt;}
.y37{bottom:189.800000pt;}
.y12b{bottom:192.066667pt;}
.yad{bottom:201.346667pt;}
.y36{bottom:205.160000pt;}
.y7f{bottom:206.466667pt;}
.y12a{bottom:207.426667pt;}
.yac{bottom:216.706667pt;}
.ye5{bottom:217.666667pt;}
.y35{bottom:220.226667pt;}
.y7e{bottom:221.826667pt;}
.y129{bottom:222.786667pt;}
.yab{bottom:232.066667pt;}
.y10c{bottom:232.386667pt;}
.y34{bottom:235.586667pt;}
.y7d{bottom:237.186667pt;}
.y128{bottom:238.146667pt;}
.ye4{bottom:241.346667pt;}
.yaa{bottom:247.453333pt;}
.y33{bottom:250.946667pt;}
.y7c{bottom:252.573333pt;}
.y127{bottom:253.533333pt;}
.ye3{bottom:256.413333pt;}
.ya9{bottom:262.493333pt;}
.y10b{bottom:262.813333pt;}
.y32{bottom:266.306667pt;}
.ye{bottom:267.293333pt;}
.y7b{bottom:267.933333pt;}
.y126{bottom:268.573333pt;}
.ye2{bottom:271.773333pt;}
.ya8{bottom:277.853333pt;}
.y10a{bottom:278.173333pt;}
.y31{bottom:281.666667pt;}
.y45{bottom:283.293333pt;}
.y125{bottom:283.933333pt;}
.ye1{bottom:287.133333pt;}
.ya7{bottom:293.213333pt;}
.y109{bottom:293.533333pt;}
.y30{bottom:297.026667pt;}
.y7a{bottom:298.653333pt;}
.y124{bottom:299.293333pt;}
.y44{bottom:300.573333pt;}
.ye0{bottom:302.493333pt;}
.y1c{bottom:308.546667pt;}
.ya6{bottom:308.573333pt;}
.y2f{bottom:312.386667pt;}
.y79{bottom:314.013333pt;}
.y123{bottom:314.653333pt;}
.y108{bottom:316.573333pt;}
.y41{bottom:317.853333pt;}
.ya5{bottom:323.933333pt;}
.y2e{bottom:327.453333pt;}
.y78{bottom:329.373333pt;}
.y1b{bottom:330.013333pt;}
.ydf{bottom:333.213333pt;}
.y3d{bottom:335.133333pt;}
.ya4{bottom:339.293333pt;}
.y77{bottom:344.733333pt;}
.y122{bottom:345.373333pt;}
.y107{bottom:346.653333pt;}
.yde{bottom:348.573333pt;}
.y2d{bottom:350.493333pt;}
.y1a{bottom:351.453333pt;}
.ya3{bottom:354.653333pt;}
.y76{bottom:360.133333pt;}
.ydd{bottom:360.453333pt;}
.y121{bottom:361.093333pt;}
.y106{bottom:363.973333pt;}
.y2c{bottom:364.253333pt;}
.ya2{bottom:370.053333pt;}
.y19{bottom:372.893333pt;}
.y75{bottom:375.173333pt;}
.y2b{bottom:378.013333pt;}
.y105{bottom:381.253333pt;}
.y149{bottom:384.453333pt;}
.y120{bottom:384.773333pt;}
.ya1{bottom:385.413333pt;}
.y74{bottom:390.533333pt;}
.y2a{bottom:391.773333pt;}
.y18{bottom:394.333333pt;}
.y104{bottom:398.213333pt;}
.y11f{bottom:400.133333pt;}
.ya0{bottom:400.773333pt;}
.y29{bottom:405.533333pt;}
.y73{bottom:405.893333pt;}
.y148{bottom:408.133333pt;}
.y11e{bottom:415.173333pt;}
.y103{bottom:415.493333pt;}
.y17{bottom:415.773333pt;}
.y9f{bottom:416.133333pt;}
.y28{bottom:419.613333pt;}
.y72{bottom:421.253333pt;}
.y147{bottom:423.493333pt;}
.y11d{bottom:430.533333pt;}
.y9e{bottom:431.493333pt;}
.y102{bottom:432.773333pt;}
.y27{bottom:433.373333pt;}
.y71{bottom:436.613333pt;}
.y16{bottom:437.533333pt;}
.y146{bottom:438.533333pt;}
.y11c{bottom:445.893333pt;}
.y9d{bottom:446.533333pt;}
.y26{bottom:447.173333pt;}
.y70{bottom:451.973333pt;}
.y101{bottom:453.253333pt;}
.y145{bottom:453.893333pt;}
.y15{bottom:459.013333pt;}
.y25{bottom:460.933333pt;}
.y11b{bottom:461.253333pt;}
.y9c{bottom:461.893333pt;}
.y6f{bottom:467.333333pt;}
.y144{bottom:469.253333pt;}
.y24{bottom:474.693333pt;}
.y11a{bottom:476.613333pt;}
.y100{bottom:476.933333pt;}
.y9b{bottom:477.253333pt;}
.y14{bottom:480.453333pt;}
.y6e{bottom:482.720000pt;}
.y143{bottom:484.640000pt;}
.y23{bottom:488.453333pt;}
.yff{bottom:492.000000pt;}
.y9a{bottom:492.640000pt;}
.y6d{bottom:498.080000pt;}
.y142{bottom:500.000000pt;}
.y13{bottom:501.893333pt;}
.y22{bottom:502.213333pt;}
.yfe{bottom:507.360000pt;}
.y99{bottom:508.000000pt;}
.y6c{bottom:513.440000pt;}
.y141{bottom:515.360000pt;}
.y21{bottom:515.973333pt;}
.yfd{bottom:522.720000pt;}
.y12{bottom:523.333333pt;}
.y98{bottom:523.360000pt;}
.y6b{bottom:528.800000pt;}
.y20{bottom:530.053333pt;}
.y140{bottom:530.720000pt;}
.yfc{bottom:538.080000pt;}
.y97{bottom:538.720000pt;}
.y6a{bottom:540.640000pt;}
.y1f{bottom:543.813333pt;}
.y11{bottom:544.773333pt;}
.y13f{bottom:546.080000pt;}
.yfb{bottom:553.440000pt;}
.y96{bottom:554.080000pt;}
.y1e{bottom:557.573333pt;}
.y13e{bottom:561.440000pt;}
.y10{bottom:566.240000pt;}
.y119{bottom:568.480000pt;}
.yfa{bottom:568.800000pt;}
.y95{bottom:569.440000pt;}
.y13d{bottom:576.800000pt;}
.yc7{bottom:580.320000pt;}
.yf9{bottom:584.160000pt;}
.y1d{bottom:584.800000pt;}
.yf{bottom:587.680000pt;}
.y118{bottom:592.160000pt;}
.yc6{bottom:595.706667pt;}
.ydc{bottom:597.946667pt;}
.yf8{bottom:599.546667pt;}
.y94{bottom:600.186667pt;}
.y117{bottom:607.226667pt;}
.yc5{bottom:610.426667pt;}
.ydb{bottom:613.306667pt;}
.yf7{bottom:614.906667pt;}
.y93{bottom:615.226667pt;}
.y116{bottom:622.586667pt;}
.yda{bottom:628.666667pt;}
.yf6{bottom:630.266667pt;}
.y92{bottom:630.586667pt;}
.yc4{bottom:634.106667pt;}
.y115{bottom:637.946667pt;}
.yd9{bottom:644.026667pt;}
.yf5{bottom:645.626667pt;}
.y91{bottom:645.946667pt;}
.yc3{bottom:649.466667pt;}
.y114{bottom:653.306667pt;}
.yd8{bottom:659.386667pt;}
.yf4{bottom:660.666667pt;}
.y90{bottom:661.306667pt;}
.yc2{bottom:664.826667pt;}
.y113{bottom:668.666667pt;}
.yd7{bottom:674.746667pt;}
.yf3{bottom:676.026667pt;}
.y8f{bottom:676.666667pt;}
.yc1{bottom:680.186667pt;}
.y112{bottom:684.026667pt;}
.yf2{bottom:688.186667pt;}
.yd6{bottom:689.786667pt;}
.y8e{bottom:692.026667pt;}
.yc0{bottom:695.546667pt;}
.y111{bottom:699.386667pt;}
.yd4{bottom:702.600000pt;}
.y8d{bottom:707.386667pt;}
.ybf{bottom:710.586667pt;}
.y110{bottom:714.786667pt;}
.yd3{bottom:719.600000pt;}
.y8c{bottom:722.786667pt;}
.ybe{bottom:725.986667pt;}
.y10f{bottom:730.146667pt;}
.yd1{bottom:736.880000pt;}
.y8b{bottom:738.146667pt;}
.ybd{bottom:741.666667pt;}
.y10e{bottom:745.506667pt;}
.y8a{bottom:753.506667pt;}
.yce{bottom:754.160000pt;}
.ybc{bottom:757.026667pt;}
.y10d{bottom:757.346667pt;}
.y13c{bottom:760.866667pt;}
.y89{bottom:768.866667pt;}
.ybb{bottom:772.386667pt;}
.y13b{bottom:776.226667pt;}
.y88{bottom:784.226667pt;}
.yba{bottom:788.386667pt;}
.ycd{bottom:790.946667pt;}
.y13a{bottom:791.266667pt;}
.y87{bottom:799.266667pt;}
.yb9{bottom:804.706667pt;}
.y139{bottom:806.626667pt;}
.y69{bottom:814.626667pt;}
.yb8{bottom:821.026667pt;}
.y138{bottom:821.986667pt;}
.y68{bottom:830.013333pt;}
.yb7{bottom:837.373333pt;}
.y67{bottom:845.373333pt;}
.yb6{bottom:852.413333pt;}
.y137{bottom:852.733333pt;}
.y66{bottom:860.733333pt;}
.y136{bottom:868.093333pt;}
.yd{bottom:874.493333pt;}
.y65{bottom:876.093333pt;}
.yc{bottom:881.533333pt;}
.y135{bottom:883.453333pt;}
.y64{bottom:891.453333pt;}
.yb{bottom:896.893333pt;}
.y134{bottom:898.813333pt;}
.y63{bottom:906.813333pt;}
.y133{bottom:914.173333pt;}
.y62{bottom:922.173333pt;}
.ya{bottom:928.893333pt;}
.y132{bottom:929.533333pt;}
.y61{bottom:937.533333pt;}
.y131{bottom:944.573333pt;}
.y9{bottom:950.693333pt;}
.y60{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5f{bottom:967.973333pt;}
.y5c{bottom:970.240000pt;}
.yb5{bottom:983.013333pt;}
.y5e{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h14{height:5.022500pt;}
.h1d{height:16.306667pt;}
.h9{height:16.331250pt;}
.h1b{height:16.338667pt;}
.h1a{height:16.626667pt;}
.h1e{height:16.628000pt;}
.hf{height:16.640000pt;}
.h20{height:16.666667pt;}
.h1f{height:16.668000pt;}
.h6{height:21.643125pt;}
.h15{height:24.640000pt;}
.h12{height:26.381250pt;}
.h19{height:32.946667pt;}
.he{height:32.992000pt;}
.h1c{height:33.266667pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h17{height:37.537500pt;}
.hd{height:47.713750pt;}
.h13{height:49.020000pt;}
.h21{height:52.736250pt;}
.h5{height:52.762500pt;}
.h10{height:53.471250pt;}
.h8{height:54.180000pt;}
.h18{height:55.256809pt;}
.h16{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h11{height:167.400000pt;}
.ha{height:595.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:57.952000pt;}
.w1a{width:58.906667pt;}
.w19{width:68.480000pt;}
.w18{width:72.978667pt;}
.w10{width:74.906667pt;}
.w17{width:75.872000pt;}
.w13{width:86.106667pt;}
.w8{width:88.992000pt;}
.w2{width:92.180000pt;}
.w12{width:101.466667pt;}
.w7{width:102.784000pt;}
.wf{width:104.320000pt;}
.wa{width:115.232000pt;}
.w15{width:115.240000pt;}
.w4{width:117.780000pt;}
.wc{width:137.640000pt;}
.w6{width:139.866667pt;}
.we{width:144.706667pt;}
.wb{width:144.960000pt;}
.w14{width:151.053333pt;}
.w11{width:151.400000pt;}
.wd{width:156.226667pt;}
.w16{width:267.273333pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.112000pt;}
.x16{left:7.348000pt;}
.x3a{left:9.626667pt;}
.x4{left:11.826667pt;}
.x3d{left:14.413333pt;}
.x14{left:15.348000pt;}
.x1f{left:16.320000pt;}
.x5{left:17.266667pt;}
.x39{left:19.546667pt;}
.x1d{left:24.960000pt;}
.x25{left:25.908000pt;}
.x15{left:28.148000pt;}
.x21{left:30.400000pt;}
.x22{left:32.640000pt;}
.x38{left:34.600000pt;}
.xe{left:39.028000pt;}
.x3e{left:41.293333pt;}
.x24{left:42.260000pt;}
.x6{left:43.213333pt;}
.xf{left:45.140000pt;}
.x13{left:48.020000pt;}
.xd{left:48.980000pt;}
.x26{left:50.900000pt;}
.x18{left:55.373333pt;}
.x33{left:60.506667pt;}
.x3f{left:63.666667pt;}
.x32{left:66.280000pt;}
.x12{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x11{left:80.022667pt;}
.x2{left:84.822667pt;}
.x19{left:85.813333pt;}
.x2d{left:86.764000pt;}
.x27{left:91.542667pt;}
.x36{left:93.164000pt;}
.x23{left:95.062667pt;}
.x48{left:100.832000pt;}
.x10{left:110.742667pt;}
.x42{left:123.924000pt;}
.x35{left:160.386667pt;}
.x3{left:162.000000pt;}
.x41{left:175.746667pt;}
.x17{left:194.640000pt;}
.x2c{left:202.973333pt;}
.x1a{left:206.173333pt;}
.x2e{left:225.053333pt;}
.x37{left:245.213333pt;}
.xa{left:246.813333pt;}
.x2b{left:301.573333pt;}
.x1b{left:346.693333pt;}
.x2f{left:381.920000pt;}
.x43{left:391.840000pt;}
.x3b{left:434.120000pt;}
.x1c{left:450.106667pt;}
.x44{left:468.360000pt;}
.x30{left:527.600000pt;}
.x1e{left:539.746667pt;}
.x45{left:542.320000pt;}
.xb{left:549.666667pt;}
.x40{left:576.226667pt;}
.x3c{left:585.840000pt;}
.x20{left:598.333333pt;}
.x2a{left:609.213333pt;}
.x46{left:611.453333pt;}
.x29{left:624.253333pt;}
.x47{left:625.213333pt;}
.x31{left:632.573333pt;}
.x34{left:643.133333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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