
    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_3a1cda9d47302bdf69994907.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_6c786deb4eccf8f8591638f0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_e7e9be81643b86b58eea652c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8fd028863713e8ed773bb3c2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_37a66846f0f8eaf01c097206.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_5f47deb207993537f9262cb6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_447ca825cccc8960bfcf09eb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_7122669905a3888918268d3a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8a21987aae82df1e081330a2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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_1be7ee842ee23a9291f35c03.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_919846df6b5ca5162369c031.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_a6e14d53c8b77472be99ecaf.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_29f75d2a12bc6582690a856e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8481dae73339ef02bb5c64ab.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8f0904c6443329fedb423012.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff13{font-family:ff13;line-height:0.960449;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:ff14;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff14{font-family:ff14;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsa{letter-spacing:-2.160000px;}
.ls14{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.600000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.222000px;}
.ls11{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.276000px;}
.ls3{letter-spacing:0.322800px;}
.ls9{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.382800px;}
.ls6{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.600000px;}
.ls7{letter-spacing:1.800000px;}
.ls13{letter-spacing:15.720000px;}
.lsd{letter-spacing:17.400000px;}
.ls12{letter-spacing:45.720000px;}
.lsf{letter-spacing:55.290000px;}
.lse{letter-spacing:55.320000px;}
.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;}
}
.ws1{word-spacing:-21.360000px;}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.420000px;}
.wsb{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.220000px;}
.ws3{word-spacing:-13.017600px;}
.ws5{word-spacing:-10.848000px;}
.ws6{word-spacing:-9.900000px;}
.ws8{word-spacing:-9.300000px;}
.ws2{word-spacing:-8.136000px;}
.wsa{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-5.700000px;}
._3{margin-left:-3.540000px;}
._2{margin-left:-2.376000px;}
._0{margin-left:-1.020000px;}
._1{width:1.296000px;}
._4{width:2.376000px;}
._5{width:3.672000px;}
._18{width:4.680000px;}
._c{width:5.820000px;}
._b{width:7.020000px;}
._d{width:8.136000px;}
._7{width:9.540000px;}
._8{width:10.740000px;}
._6{width:11.940000px;}
._f{width:13.656000px;}
._e{width:16.020000px;}
._a{width:17.400000px;}
._9{width:18.480000px;}
._13{width:19.620000px;}
._12{width:20.820000px;}
._19{width:21.900000px;}
._1b{width:23.580000px;}
._1a{width:25.020000px;}
._20{width:26.184000px;}
._1f{width:27.300000px;}
._1e{width:28.500000px;}
._21{width:29.700000px;}
._11{width:38.232000px;}
._10{width:39.660000px;}
._1d{width:44.376000px;}
._1c{width:45.480000px;}
._17{width:75.300000px;}
._16{width:99.120000px;}
._15{width:102.960000px;}
.fc5{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y7{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.300000px;}
.y76{bottom:3.300000px;}
.y37{bottom:3.315000px;}
.y6f{bottom:3.600000px;}
.y8f{bottom:3.615000px;}
.y106{bottom:3.645000px;}
.y52{bottom:3.900000px;}
.yb5{bottom:4.200000px;}
.ybb{bottom:4.215000px;}
.yb7{bottom:4.500000px;}
.yc7{bottom:4.800000px;}
.yb9{bottom:4.815000px;}
.y89{bottom:5.100000px;}
.y87{bottom:5.400000px;}
.y8e{bottom:5.415000px;}
.y146{bottom:5.685000px;}
.yf2{bottom:5.700000px;}
.y144{bottom:5.715000px;}
.yee{bottom:6.000000px;}
.y142{bottom:6.015000px;}
.yf4{bottom:6.045000px;}
.y51{bottom:6.315000px;}
.y9c{bottom:7.200000px;}
.yf{bottom:9.600000px;}
.y74{bottom:10.800000px;}
.y78{bottom:12.000000px;}
.yd{bottom:14.100000px;}
.y4f{bottom:14.115000px;}
.y1d{bottom:15.300000px;}
.y3{bottom:18.000000px;}
.y1a{bottom:20.130000px;}
.y79{bottom:20.685000px;}
.y9a{bottom:20.700000px;}
.y8b{bottom:20.745000px;}
.y5{bottom:26.100000px;}
.yc{bottom:30.300000px;}
.y4e{bottom:31.200000px;}
.y36{bottom:32.700000px;}
.y4{bottom:36.600000px;}
.y19{bottom:36.630000px;}
.y2{bottom:37.800000px;}
.yb{bottom:46.800000px;}
.y35{bottom:47.415000px;}
.y4d{bottom:48.600000px;}
.y1{bottom:48.637500px;}
.y18{bottom:53.130000px;}
.y34{bottom:62.100000px;}
.y4c{bottom:65.700000px;}
.y17{bottom:69.630000px;}
.ya{bottom:73.800000px;}
.y33{bottom:76.815000px;}
.y4b{bottom:83.115000px;}
.y16{bottom:86.130000px;}
.y32{bottom:91.200000px;}
.y9{bottom:93.300000px;}
.y4a{bottom:100.200000px;}
.y15{bottom:101.730000px;}
.y31{bottom:105.900000px;}
.y8{bottom:111.330000px;}
.y184{bottom:111.637500px;}
.ya3{bottom:114.037500px;}
.y49{bottom:117.615000px;}
.y60{bottom:119.737500px;}
.y30{bottom:120.615000px;}
.y14{bottom:125.430000px;}
.y157{bottom:126.037500px;}
.ye0{bottom:127.537500px;}
.y183{bottom:129.037500px;}
.ya2{bottom:133.237500px;}
.y48{bottom:134.745000px;}
.y2f{bottom:135.345000px;}
.y5f{bottom:136.837500px;}
.y11b{bottom:141.037500px;}
.y13{bottom:141.930000px;}
.y156{bottom:143.137500px;}
.y182{bottom:146.137500px;}
.ydf{bottom:147.637500px;}
.y2e{bottom:150.045000px;}
.ya1{bottom:150.630000px;}
.y47{bottom:152.145000px;}
.y11a{bottom:155.730000px;}
.y155{bottom:160.530000px;}
.y181{bottom:163.545000px;}
.y5e{bottom:164.730000px;}
.y2d{bottom:164.745000px;}
.yde{bottom:167.430000px;}
.y12{bottom:167.730000px;}
.ya0{bottom:167.745000px;}
.y46{bottom:169.245000px;}
.y119{bottom:173.730000px;}
.y154{bottom:177.630000px;}
.y2c{bottom:179.145000px;}
.y180{bottom:180.630000px;}
.y5d{bottom:181.830000px;}
.y9f{bottom:185.130000px;}
.y45{bottom:186.645000px;}
.y118{bottom:191.730000px;}
.y11{bottom:191.775000px;}
.y2b{bottom:194.145000px;}
.y153{bottom:195.030000px;}
.y17f{bottom:198.030000px;}
.y5c{bottom:199.230000px;}
.y9e{bottom:202.275000px;}
.y44{bottom:203.745000px;}
.y117{bottom:209.775000px;}
.y2a{bottom:211.245000px;}
.y152{bottom:212.175000px;}
.y17e{bottom:215.175000px;}
.y5b{bottom:216.375000px;}
.y9d{bottom:219.375000px;}
.ydd{bottom:219.675000px;}
.y43{bottom:221.145000px;}
.y116{bottom:227.775000px;}
.y29{bottom:228.645000px;}
.y151{bottom:229.575000px;}
.y5a{bottom:233.475000px;}
.y9b{bottom:236.175000px;}
.ydc{bottom:236.775000px;}
.y42{bottom:238.245000px;}
.y17d{bottom:238.275000px;}
.y115{bottom:245.775000px;}
.y28{bottom:246.345000px;}
.y150{bottom:246.675000px;}
.ydb{bottom:254.175000px;}
.y41{bottom:255.645000px;}
.y17c{bottom:255.675000px;}
.y99{bottom:258.075000px;}
.y59{bottom:261.375000px;}
.y27{bottom:263.745000px;}
.y14f{bottom:264.075000px;}
.y114{bottom:267.075000px;}
.yda{bottom:271.875000px;}
.y40{bottom:272.745000px;}
.y17b{bottom:273.075000px;}
.y58{bottom:278.475000px;}
.y26{bottom:281.145000px;}
.y14e{bottom:281.175000px;}
.y113{bottom:284.475000px;}
.yd9{bottom:289.575000px;}
.y3f{bottom:290.145000px;}
.y17a{bottom:290.175000px;}
.y98{bottom:293.175000px;}
.y57{bottom:295.875000px;}
.y25{bottom:298.575000px;}
.y112{bottom:301.575000px;}
.yd8{bottom:306.975000px;}
.y3e{bottom:307.275000px;}
.y179{bottom:307.575000px;}
.y97{bottom:311.175000px;}
.y56{bottom:312.975000px;}
.y24{bottom:315.975000px;}
.y14d{bottom:316.275000px;}
.y111{bottom:318.975000px;}
.yd7{bottom:324.075000px;}
.y3d{bottom:324.675000px;}
.y55{bottom:330.375000px;}
.y1b0{bottom:330.675000px;}
.y96{bottom:332.775000px;}
.y23{bottom:333.375000px;}
.y14c{bottom:333.975000px;}
.y110{bottom:336.075000px;}
.yd6{bottom:341.475000px;}
.y3c{bottom:341.775000px;}
.y54{bottom:347.475000px;}
.y1af{bottom:347.775000px;}
.y95{bottom:349.875000px;}
.y22{bottom:350.775000px;}
.y14b{bottom:351.375000px;}
.y10f{bottom:353.475000px;}
.y178{bottom:353.775000px;}
.yd5{bottom:358.575000px;}
.y3b{bottom:359.190000px;}
.y53{bottom:365.220000px;}
.y94{bottom:367.320000px;}
.y21{bottom:368.175000px;}
.y14a{bottom:368.505000px;}
.y10e{bottom:370.605000px;}
.y177{bottom:371.205000px;}
.yd4{bottom:376.005000px;}
.y3a{bottom:376.290000px;}
.y50{bottom:379.605000px;}
.y1ae{bottom:382.320000px;}
.y93{bottom:384.405000px;}
.y149{bottom:385.920000px;}
.y10d{bottom:388.005000px;}
.y176{bottom:388.620000px;}
.yd3{bottom:393.120000px;}
.y39{bottom:393.690000px;}
.y20{bottom:395.475000px;}
.y1e{bottom:397.005000px;}
.y1ad{bottom:399.705000px;}
.y92{bottom:401.505000px;}
.y148{bottom:403.005000px;}
.y10c{bottom:405.105000px;}
.yd2{bottom:410.505000px;}
.y38{bottom:410.775000px;}
.y175{bottom:411.405000px;}
.y1f{bottom:413.190000px;}
.y1ac{bottom:416.820000px;}
.y91{bottom:418.320000px;}
.y10b{bottom:422.505000px;}
.yd1{bottom:427.620000px;}
.y147{bottom:428.505000px;}
.y174{bottom:429.120000px;}
.y1ab{bottom:434.205000px;}
.y10a{bottom:440.205000px;}
.y145{bottom:443.820000px;}
.yd0{bottom:445.005000px;}
.y173{bottom:446.205000px;}
.y1aa{bottom:451.320000px;}
.y90{bottom:453.405000px;}
.y109{bottom:455.205000px;}
.ycf{bottom:462.120000px;}
.y172{bottom:463.620000px;}
.y143{bottom:464.205000px;}
.y1a9{bottom:468.705000px;}
.y8d{bottom:473.205000px;}
.yce{bottom:479.820000px;}
.y171{bottom:480.705000px;}
.y141{bottom:484.605000px;}
.y1a8{bottom:485.820000px;}
.y108{bottom:491.205000px;}
.y8c{bottom:497.205000px;}
.ycd{bottom:497.820000px;}
.y170{bottom:498.105000px;}
.y1a7{bottom:503.205000px;}
.y140{bottom:505.005000px;}
.y107{bottom:509.205000px;}
.ycc{bottom:514.905000px;}
.y16f{bottom:515.205000px;}
.y8a{bottom:516.405000px;}
.y1a6{bottom:520.320000px;}
.y13f{bottom:525.405000px;}
.y105{bottom:527.205000px;}
.ycb{bottom:532.350000px;}
.y16e{bottom:532.650000px;}
.y1a5{bottom:537.750000px;}
.y104{bottom:545.250000px;}
.y13e{bottom:546.150000px;}
.yca{bottom:549.450000px;}
.y16d{bottom:549.750000px;}
.y88{bottom:551.850000px;}
.y1a4{bottom:554.850000px;}
.yc9{bottom:564.150000px;}
.y13d{bottom:566.550000px;}
.y103{bottom:566.850000px;}
.y16c{bottom:567.150000px;}
.y86{bottom:571.350000px;}
.y1a3{bottom:572.250000px;}
.yc8{bottom:584.250000px;}
.y102{bottom:585.450000px;}
.y1a2{bottom:589.350000px;}
.y13c{bottom:590.250000px;}
.y85{bottom:594.750000px;}
.y16b{bottom:601.650000px;}
.yc6{bottom:604.650000px;}
.y101{bottom:605.850000px;}
.y1a1{bottom:606.750000px;}
.y13b{bottom:607.650000px;}
.y16a{bottom:618.750000px;}
.y84{bottom:620.250000px;}
.y100{bottom:623.250000px;}
.y1a0{bottom:623.850000px;}
.y13a{bottom:624.750000px;}
.yc5{bottom:625.650000px;}
.y169{bottom:636.150000px;}
.y83{bottom:640.350000px;}
.y19f{bottom:641.250000px;}
.y139{bottom:642.150000px;}
.yc4{bottom:649.350000px;}
.y168{bottom:653.250000px;}
.yff{bottom:657.750000px;}
.y19e{bottom:658.350000px;}
.y138{bottom:659.250000px;}
.y82{bottom:660.450000px;}
.y167{bottom:670.650000px;}
.yfe{bottom:674.850000px;}
.y19d{bottom:675.750000px;}
.yc3{bottom:676.350000px;}
.y137{bottom:676.650000px;}
.y81{bottom:677.850000px;}
.y166{bottom:687.750000px;}
.y19c{bottom:692.850000px;}
.y136{bottom:693.780000px;}
.yfd{bottom:694.680000px;}
.y80{bottom:695.280000px;}
.y165{bottom:705.195000px;}
.yc2{bottom:706.080000px;}
.y19b{bottom:710.280000px;}
.y135{bottom:711.180000px;}
.y7f{bottom:712.380000px;}
.yfc{bottom:715.080000px;}
.y164{bottom:722.280000px;}
.yc1{bottom:723.180000px;}
.y19a{bottom:727.380000px;}
.y134{bottom:728.280000px;}
.y7e{bottom:729.780000px;}
.yfb{bottom:731.280000px;}
.y163{bottom:739.695000px;}
.yc0{bottom:740.595000px;}
.y199{bottom:744.780000px;}
.y133{bottom:745.695000px;}
.y7d{bottom:746.880000px;}
.yfa{bottom:748.680000px;}
.y162{bottom:756.780000px;}
.ybf{bottom:757.695000px;}
.y198{bottom:761.880000px;}
.y132{bottom:762.780000px;}
.y7c{bottom:764.280000px;}
.yf9{bottom:765.780000px;}
.y161{bottom:774.195000px;}
.ybe{bottom:775.080000px;}
.y197{bottom:779.280000px;}
.y131{bottom:780.195000px;}
.y7b{bottom:781.380000px;}
.yf8{bottom:783.195000px;}
.y160{bottom:791.295000px;}
.ybd{bottom:792.195000px;}
.y196{bottom:796.380000px;}
.y130{bottom:797.295000px;}
.y7a{bottom:798.795000px;}
.yf7{bottom:800.295000px;}
.y15f{bottom:808.695000px;}
.ybc{bottom:810.195000px;}
.y77{bottom:813.195000px;}
.y195{bottom:813.795000px;}
.y12f{bottom:814.695000px;}
.yf6{bottom:817.695000px;}
.y1b{bottom:821.580000px;}
.y15e{bottom:825.795000px;}
.yba{bottom:827.580000px;}
.y194{bottom:830.880000px;}
.y12e{bottom:831.795000px;}
.yf5{bottom:832.080000px;}
.y15d{bottom:843.195000px;}
.yb8{bottom:847.380000px;}
.y193{bottom:848.295000px;}
.y75{bottom:848.580000px;}
.y12d{bottom:849.195000px;}
.y10{bottom:851.295000px;}
.yf3{bottom:852.480000px;}
.y15c{bottom:860.325000px;}
.y192{bottom:865.425000px;}
.y73{bottom:866.625000px;}
.y12c{bottom:866.925000px;}
.yb6{bottom:868.125000px;}
.yf1{bottom:873.225000px;}
.y15b{bottom:877.725000px;}
.y191{bottom:882.825000px;}
.y12b{bottom:887.025000px;}
.yb4{bottom:888.825000px;}
.yf0{bottom:893.625000px;}
.y15a{bottom:894.825000px;}
.y72{bottom:899.625000px;}
.y190{bottom:899.925000px;}
.y12a{bottom:904.425000px;}
.yb3{bottom:912.225000px;}
.yef{bottom:914.025000px;}
.y18f{bottom:917.325000px;}
.y71{bottom:917.625000px;}
.y129{bottom:921.525000px;}
.yb2{bottom:929.325000px;}
.yed{bottom:934.425000px;}
.y70{bottom:935.625000px;}
.y128{bottom:938.925000px;}
.yb1{bottom:946.725000px;}
.y18e{bottom:951.825000px;}
.y6e{bottom:953.625000px;}
.y127{bottom:956.025000px;}
.yec{bottom:960.825000px;}
.yb0{bottom:963.825000px;}
.y18d{bottom:968.925000px;}
.y126{bottom:973.425000px;}
.y6d{bottom:975.225000px;}
.yeb{bottom:978.525000px;}
.yaf{bottom:981.225000px;}
.y18c{bottom:986.325000px;}
.y125{bottom:990.525000px;}
.y6c{bottom:992.325000px;}
.yea{bottom:995.625000px;}
.yae{bottom:998.325000px;}
.y18b{bottom:1003.425000px;}
.y124{bottom:1007.925000px;}
.y6b{bottom:1009.725000px;}
.ye9{bottom:1013.025000px;}
.yad{bottom:1015.725000px;}
.y18a{bottom:1020.825000px;}
.y159{bottom:1021.125000px;}
.y123{bottom:1025.370000px;}
.y6a{bottom:1026.855000px;}
.ye8{bottom:1030.155000px;}
.yac{bottom:1032.870000px;}
.y189{bottom:1037.955000px;}
.y69{bottom:1044.255000px;}
.yab{bottom:1050.255000px;}
.ye7{bottom:1050.855000px;}
.ye{bottom:1055.070000px;}
.y188{bottom:1055.355000px;}
.y122{bottom:1061.355000px;}
.y68{bottom:1067.070000px;}
.yaa{bottom:1067.355000px;}
.ye6{bottom:1068.570000px;}
.y187{bottom:1072.455000px;}
.y121{bottom:1078.755000px;}
.y6{bottom:1080.270000px;}
.y67{bottom:1084.755000px;}
.ye5{bottom:1085.955000px;}
.ya9{bottom:1092.855000px;}
.y186{bottom:1095.570000px;}
.y120{bottom:1095.855000px;}
.y66{bottom:1101.870000px;}
.ye4{bottom:1103.070000px;}
.ya8{bottom:1110.570000px;}
.y11f{bottom:1113.255000px;}
.y185{bottom:1118.955000px;}
.y65{bottom:1119.255000px;}
.ye3{bottom:1120.455000px;}
.ya7{bottom:1127.655000px;}
.y11e{bottom:1130.355000px;}
.y64{bottom:1136.355000px;}
.ye2{bottom:1137.570000px;}
.y158{bottom:1141.755000px;}
.ya6{bottom:1145.070000px;}
.y11d{bottom:1147.755000px;}
.y63{bottom:1153.755000px;}
.ya5{bottom:1162.155000px;}
.y11c{bottom:1164.870000px;}
.ye1{bottom:1170.255000px;}
.y62{bottom:1170.870000px;}
.ya4{bottom:1187.700000px;}
.y61{bottom:1188.000000px;}
.h32{height:17.100000px;}
.h20{height:17.137500px;}
.h1c{height:17.400000px;}
.h31{height:17.437500px;}
.h24{height:18.900000px;}
.h23{height:19.200000px;}
.h2c{height:19.500000px;}
.h29{height:19.800000px;}
.h2f{height:19.837500px;}
.h2d{height:20.100000px;}
.h2a{height:20.137500px;}
.h27{height:21.000000px;}
.hb{height:24.900000px;}
.h34{height:27.650391px;}
.h11{height:28.968750px;}
.h12{height:29.700000px;}
.h1f{height:32.400000px;}
.h21{height:34.500000px;}
.h25{height:34.537500px;}
.hd{height:35.343750px;}
.h8{height:36.000000px;}
.h10{height:36.861328px;}
.h19{height:38.625000px;}
.h1b{height:41.894531px;}
.h1a{height:42.333984px;}
.h18{height:42.451172px;}
.h28{height:43.681641px;}
.ha{height:45.000000px;}
.h33{height:46.083984px;}
.h17{height:46.350000px;}
.h15{height:47.742188px;}
.h4{height:48.281250px;}
.h35{height:49.190391px;}
.h1d{height:49.250391px;}
.h22{height:49.310391px;}
.h1e{height:49.430391px;}
.h26{height:50.273438px;}
.h2b{height:50.800781px;}
.h2{height:52.200000px;}
.h30{height:53.709961px;}
.h9{height:54.000000px;}
.h2e{height:57.128906px;}
.h3{height:59.677734px;}
.h16{height:61.435547px;}
.hf{height:62.147461px;}
.he{height:63.000000px;}
.h5{height:67.579102px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.522500px;}
.hc{height:203.775000px;}
.h14{height:424.575000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w14{width:49.200000px;}
.we{width:57.000000px;}
.w11{width:60.300000px;}
.w3{width:74.700000px;}
.w29{width:125.437500px;}
.w1c{width:130.237500px;}
.w23{width:134.737500px;}
.w1f{width:136.537500px;}
.w5{width:145.537500px;}
.w2a{width:151.230000px;}
.w19{width:153.030000px;}
.w26{width:158.145000px;}
.wb{width:159.630000px;}
.w21{width:159.945000px;}
.wd{width:193.875000px;}
.w9{width:199.545000px;}
.w25{width:207.675000px;}
.w28{width:218.175000px;}
.w1b{width:220.875000px;}
.w20{width:222.375000px;}
.w22{width:227.175000px;}
.w27{width:247.875000px;}
.w18{width:259.875000px;}
.w10{width:268.275000px;}
.w13{width:270.075000px;}
.w1d{width:291.975000px;}
.w1e{width:314.205000px;}
.w16{width:317.220000px;}
.w17{width:332.505000px;}
.w15{width:378.705000px;}
.w24{width:379.320000px;}
.wc{width:391.920000px;}
.w1a{width:394.320000px;}
.w12{width:417.750000px;}
.wf{width:418.350000px;}
.wa{width:497.580000px;}
.w6{width:601.695000px;}
.w2{width:673.725000px;}
.w8{width:697.125000px;}
.w7{width:747.225000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.500000px;}
.x2{left:8.700000px;}
.x1d{left:11.700000px;}
.xd{left:33.600000px;}
.x10{left:47.400000px;}
.x23{left:54.037487px;}
.x27{left:57.000000px;}
.x29{left:58.800000px;}
.xf{left:68.100000px;}
.x1{left:72.337500px;}
.x11{left:74.700000px;}
.x4{left:81.037487px;}
.x15{left:82.837487px;}
.x12{left:86.992500px;}
.x5{left:98.137500px;}
.x22{left:108.037487px;}
.x20{left:123.037500px;}
.x28{left:126.030000px;}
.x1a{left:131.737500px;}
.x1c{left:132.937500px;}
.x2e{left:135.037487px;}
.x2d{left:140.437487px;}
.x13{left:215.182500px;}
.x6{left:218.475000px;}
.x16{left:233.475000px;}
.x1f{left:252.074987px;}
.xe{left:261.682500px;}
.x18{left:269.774987px;}
.x14{left:272.475000px;}
.x9{left:294.975000px;}
.x32{left:296.520000px;}
.x31{left:301.319987px;}
.x24{left:310.904987px;}
.x2a{left:318.719987px;}
.x37{left:322.920000px;}
.xc{left:348.412500px;}
.x7{left:354.405000px;}
.x2f{left:367.020000px;}
.x8{left:373.620000px;}
.x25{left:406.350000px;}
.xb{left:438.750000px;}
.x1e{left:446.549987px;}
.x35{left:453.150000px;}
.x33{left:457.050000px;}
.xa{left:462.150000px;}
.x2b{left:468.150000px;}
.x21{left:502.650000px;}
.x38{left:541.995000px;}
.x1b{left:550.995000px;}
.x17{left:625.995000px;}
.x36{left:661.725000px;}
.x26{left:666.825000px;}
.x39{left:668.025000px;}
.x30{left:682.125000px;}
.x34{left:685.125000px;}
.x2c{left:689.625000px;}
.x3{left:746.070000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls14{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.197333pt;}
.ls11{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.245333pt;}
.ls3{letter-spacing:0.286933pt;}
.ls9{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.340267pt;}
.ls6{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.533333pt;}
.ls7{letter-spacing:1.600000pt;}
.ls13{letter-spacing:13.973333pt;}
.lsd{letter-spacing:15.466667pt;}
.ls12{letter-spacing:40.640000pt;}
.lsf{letter-spacing:49.146667pt;}
.lse{letter-spacing:49.173333pt;}
.ws1{word-spacing:-18.986667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.706667pt;}
.wsb{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.640000pt;}
.ws3{word-spacing:-11.571200pt;}
.ws5{word-spacing:-9.642667pt;}
.ws6{word-spacing:-8.800000pt;}
.ws8{word-spacing:-8.266667pt;}
.ws2{word-spacing:-7.232000pt;}
.wsa{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-5.066667pt;}
._3{margin-left:-3.146667pt;}
._2{margin-left:-2.112000pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.152000pt;}
._4{width:2.112000pt;}
._5{width:3.264000pt;}
._18{width:4.160000pt;}
._c{width:5.173333pt;}
._b{width:6.240000pt;}
._d{width:7.232000pt;}
._7{width:8.480000pt;}
._8{width:9.546667pt;}
._6{width:10.613333pt;}
._f{width:12.138667pt;}
._e{width:14.240000pt;}
._a{width:15.466667pt;}
._9{width:16.426667pt;}
._13{width:17.440000pt;}
._12{width:18.506667pt;}
._19{width:19.466667pt;}
._1b{width:20.960000pt;}
._1a{width:22.240000pt;}
._20{width:23.274667pt;}
._1f{width:24.266667pt;}
._1e{width:25.333333pt;}
._21{width:26.400000pt;}
._11{width:33.984000pt;}
._10{width:35.253333pt;}
._1d{width:39.445333pt;}
._1c{width:40.426667pt;}
._17{width:66.933333pt;}
._16{width:88.106667pt;}
._15{width:91.520000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y7{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.266667pt;}
.y76{bottom:2.933333pt;}
.y37{bottom:2.946667pt;}
.y6f{bottom:3.200000pt;}
.y8f{bottom:3.213333pt;}
.y106{bottom:3.240000pt;}
.y52{bottom:3.466667pt;}
.yb5{bottom:3.733333pt;}
.ybb{bottom:3.746667pt;}
.yb7{bottom:4.000000pt;}
.yc7{bottom:4.266667pt;}
.yb9{bottom:4.280000pt;}
.y89{bottom:4.533333pt;}
.y87{bottom:4.800000pt;}
.y8e{bottom:4.813333pt;}
.y146{bottom:5.053333pt;}
.yf2{bottom:5.066667pt;}
.y144{bottom:5.080000pt;}
.yee{bottom:5.333333pt;}
.y142{bottom:5.346667pt;}
.yf4{bottom:5.373333pt;}
.y51{bottom:5.613333pt;}
.y9c{bottom:6.400000pt;}
.yf{bottom:8.533333pt;}
.y74{bottom:9.600000pt;}
.y78{bottom:10.666667pt;}
.yd{bottom:12.533333pt;}
.y4f{bottom:12.546667pt;}
.y1d{bottom:13.600000pt;}
.y3{bottom:16.000000pt;}
.y1a{bottom:17.893333pt;}
.y79{bottom:18.386667pt;}
.y9a{bottom:18.400000pt;}
.y8b{bottom:18.440000pt;}
.y5{bottom:23.200000pt;}
.yc{bottom:26.933333pt;}
.y4e{bottom:27.733333pt;}
.y36{bottom:29.066667pt;}
.y4{bottom:32.533333pt;}
.y19{bottom:32.560000pt;}
.y2{bottom:33.600000pt;}
.yb{bottom:41.600000pt;}
.y35{bottom:42.146667pt;}
.y4d{bottom:43.200000pt;}
.y1{bottom:43.233333pt;}
.y18{bottom:47.226667pt;}
.y34{bottom:55.200000pt;}
.y4c{bottom:58.400000pt;}
.y17{bottom:61.893333pt;}
.ya{bottom:65.600000pt;}
.y33{bottom:68.280000pt;}
.y4b{bottom:73.880000pt;}
.y16{bottom:76.560000pt;}
.y32{bottom:81.066667pt;}
.y9{bottom:82.933333pt;}
.y4a{bottom:89.066667pt;}
.y15{bottom:90.426667pt;}
.y31{bottom:94.133333pt;}
.y8{bottom:98.960000pt;}
.y184{bottom:99.233333pt;}
.ya3{bottom:101.366667pt;}
.y49{bottom:104.546667pt;}
.y60{bottom:106.433333pt;}
.y30{bottom:107.213333pt;}
.y14{bottom:111.493333pt;}
.y157{bottom:112.033333pt;}
.ye0{bottom:113.366667pt;}
.y183{bottom:114.700000pt;}
.ya2{bottom:118.433333pt;}
.y48{bottom:119.773333pt;}
.y2f{bottom:120.306667pt;}
.y5f{bottom:121.633333pt;}
.y11b{bottom:125.366667pt;}
.y13{bottom:126.160000pt;}
.y156{bottom:127.233333pt;}
.y182{bottom:129.900000pt;}
.ydf{bottom:131.233333pt;}
.y2e{bottom:133.373333pt;}
.ya1{bottom:133.893333pt;}
.y47{bottom:135.240000pt;}
.y11a{bottom:138.426667pt;}
.y155{bottom:142.693333pt;}
.y181{bottom:145.373333pt;}
.y5e{bottom:146.426667pt;}
.y2d{bottom:146.440000pt;}
.yde{bottom:148.826667pt;}
.y12{bottom:149.093333pt;}
.ya0{bottom:149.106667pt;}
.y46{bottom:150.440000pt;}
.y119{bottom:154.426667pt;}
.y154{bottom:157.893333pt;}
.y2c{bottom:159.240000pt;}
.y180{bottom:160.560000pt;}
.y5d{bottom:161.626667pt;}
.y9f{bottom:164.560000pt;}
.y45{bottom:165.906667pt;}
.y118{bottom:170.426667pt;}
.y11{bottom:170.466667pt;}
.y2b{bottom:172.573333pt;}
.y153{bottom:173.360000pt;}
.y17f{bottom:176.026667pt;}
.y5c{bottom:177.093333pt;}
.y9e{bottom:179.800000pt;}
.y44{bottom:181.106667pt;}
.y117{bottom:186.466667pt;}
.y2a{bottom:187.773333pt;}
.y152{bottom:188.600000pt;}
.y17e{bottom:191.266667pt;}
.y5b{bottom:192.333333pt;}
.y9d{bottom:195.000000pt;}
.ydd{bottom:195.266667pt;}
.y43{bottom:196.573333pt;}
.y116{bottom:202.466667pt;}
.y29{bottom:203.240000pt;}
.y151{bottom:204.066667pt;}
.y5a{bottom:207.533333pt;}
.y9b{bottom:209.933333pt;}
.ydc{bottom:210.466667pt;}
.y42{bottom:211.773333pt;}
.y17d{bottom:211.800000pt;}
.y115{bottom:218.466667pt;}
.y28{bottom:218.973333pt;}
.y150{bottom:219.266667pt;}
.ydb{bottom:225.933333pt;}
.y41{bottom:227.240000pt;}
.y17c{bottom:227.266667pt;}
.y99{bottom:229.400000pt;}
.y59{bottom:232.333333pt;}
.y27{bottom:234.440000pt;}
.y14f{bottom:234.733333pt;}
.y114{bottom:237.400000pt;}
.yda{bottom:241.666667pt;}
.y40{bottom:242.440000pt;}
.y17b{bottom:242.733333pt;}
.y58{bottom:247.533333pt;}
.y26{bottom:249.906667pt;}
.y14e{bottom:249.933333pt;}
.y113{bottom:252.866667pt;}
.yd9{bottom:257.400000pt;}
.y3f{bottom:257.906667pt;}
.y17a{bottom:257.933333pt;}
.y98{bottom:260.600000pt;}
.y57{bottom:263.000000pt;}
.y25{bottom:265.400000pt;}
.y112{bottom:268.066667pt;}
.yd8{bottom:272.866667pt;}
.y3e{bottom:273.133333pt;}
.y179{bottom:273.400000pt;}
.y97{bottom:276.600000pt;}
.y56{bottom:278.200000pt;}
.y24{bottom:280.866667pt;}
.y14d{bottom:281.133333pt;}
.y111{bottom:283.533333pt;}
.yd7{bottom:288.066667pt;}
.y3d{bottom:288.600000pt;}
.y55{bottom:293.666667pt;}
.y1b0{bottom:293.933333pt;}
.y96{bottom:295.800000pt;}
.y23{bottom:296.333333pt;}
.y14c{bottom:296.866667pt;}
.y110{bottom:298.733333pt;}
.yd6{bottom:303.533333pt;}
.y3c{bottom:303.800000pt;}
.y54{bottom:308.866667pt;}
.y1af{bottom:309.133333pt;}
.y95{bottom:311.000000pt;}
.y22{bottom:311.800000pt;}
.y14b{bottom:312.333333pt;}
.y10f{bottom:314.200000pt;}
.y178{bottom:314.466667pt;}
.yd5{bottom:318.733333pt;}
.y3b{bottom:319.280000pt;}
.y53{bottom:324.640000pt;}
.y94{bottom:326.506667pt;}
.y21{bottom:327.266667pt;}
.y14a{bottom:327.560000pt;}
.y10e{bottom:329.426667pt;}
.y177{bottom:329.960000pt;}
.yd4{bottom:334.226667pt;}
.y3a{bottom:334.480000pt;}
.y50{bottom:337.426667pt;}
.y1ae{bottom:339.840000pt;}
.y93{bottom:341.693333pt;}
.y149{bottom:343.040000pt;}
.y10d{bottom:344.893333pt;}
.y176{bottom:345.440000pt;}
.yd3{bottom:349.440000pt;}
.y39{bottom:349.946667pt;}
.y20{bottom:351.533333pt;}
.y1e{bottom:352.893333pt;}
.y1ad{bottom:355.293333pt;}
.y92{bottom:356.893333pt;}
.y148{bottom:358.226667pt;}
.y10c{bottom:360.093333pt;}
.yd2{bottom:364.893333pt;}
.y38{bottom:365.133333pt;}
.y175{bottom:365.693333pt;}
.y1f{bottom:367.280000pt;}
.y1ac{bottom:370.506667pt;}
.y91{bottom:371.840000pt;}
.y10b{bottom:375.560000pt;}
.yd1{bottom:380.106667pt;}
.y147{bottom:380.893333pt;}
.y174{bottom:381.440000pt;}
.y1ab{bottom:385.960000pt;}
.y10a{bottom:391.293333pt;}
.y145{bottom:394.506667pt;}
.yd0{bottom:395.560000pt;}
.y173{bottom:396.626667pt;}
.y1aa{bottom:401.173333pt;}
.y90{bottom:403.026667pt;}
.y109{bottom:404.626667pt;}
.ycf{bottom:410.773333pt;}
.y172{bottom:412.106667pt;}
.y143{bottom:412.626667pt;}
.y1a9{bottom:416.626667pt;}
.y8d{bottom:420.626667pt;}
.yce{bottom:426.506667pt;}
.y171{bottom:427.293333pt;}
.y141{bottom:430.760000pt;}
.y1a8{bottom:431.840000pt;}
.y108{bottom:436.626667pt;}
.y8c{bottom:441.960000pt;}
.ycd{bottom:442.506667pt;}
.y170{bottom:442.760000pt;}
.y1a7{bottom:447.293333pt;}
.y140{bottom:448.893333pt;}
.y107{bottom:452.626667pt;}
.ycc{bottom:457.693333pt;}
.y16f{bottom:457.960000pt;}
.y8a{bottom:459.026667pt;}
.y1a6{bottom:462.506667pt;}
.y13f{bottom:467.026667pt;}
.y105{bottom:468.626667pt;}
.ycb{bottom:473.200000pt;}
.y16e{bottom:473.466667pt;}
.y1a5{bottom:478.000000pt;}
.y104{bottom:484.666667pt;}
.y13e{bottom:485.466667pt;}
.yca{bottom:488.400000pt;}
.y16d{bottom:488.666667pt;}
.y88{bottom:490.533333pt;}
.y1a4{bottom:493.200000pt;}
.yc9{bottom:501.466667pt;}
.y13d{bottom:503.600000pt;}
.y103{bottom:503.866667pt;}
.y16c{bottom:504.133333pt;}
.y86{bottom:507.866667pt;}
.y1a3{bottom:508.666667pt;}
.yc8{bottom:519.333333pt;}
.y102{bottom:520.400000pt;}
.y1a2{bottom:523.866667pt;}
.y13c{bottom:524.666667pt;}
.y85{bottom:528.666667pt;}
.y16b{bottom:534.800000pt;}
.yc6{bottom:537.466667pt;}
.y101{bottom:538.533333pt;}
.y1a1{bottom:539.333333pt;}
.y13b{bottom:540.133333pt;}
.y16a{bottom:550.000000pt;}
.y84{bottom:551.333333pt;}
.y100{bottom:554.000000pt;}
.y1a0{bottom:554.533333pt;}
.y13a{bottom:555.333333pt;}
.yc5{bottom:556.133333pt;}
.y169{bottom:565.466667pt;}
.y83{bottom:569.200000pt;}
.y19f{bottom:570.000000pt;}
.y139{bottom:570.800000pt;}
.yc4{bottom:577.200000pt;}
.y168{bottom:580.666667pt;}
.yff{bottom:584.666667pt;}
.y19e{bottom:585.200000pt;}
.y138{bottom:586.000000pt;}
.y82{bottom:587.066667pt;}
.y167{bottom:596.133333pt;}
.yfe{bottom:599.866667pt;}
.y19d{bottom:600.666667pt;}
.yc3{bottom:601.200000pt;}
.y137{bottom:601.466667pt;}
.y81{bottom:602.533333pt;}
.y166{bottom:611.333333pt;}
.y19c{bottom:615.866667pt;}
.y136{bottom:616.693333pt;}
.yfd{bottom:617.493333pt;}
.y80{bottom:618.026667pt;}
.y165{bottom:626.840000pt;}
.yc2{bottom:627.626667pt;}
.y19b{bottom:631.360000pt;}
.y135{bottom:632.160000pt;}
.y7f{bottom:633.226667pt;}
.yfc{bottom:635.626667pt;}
.y164{bottom:642.026667pt;}
.yc1{bottom:642.826667pt;}
.y19a{bottom:646.560000pt;}
.y134{bottom:647.360000pt;}
.y7e{bottom:648.693333pt;}
.yfb{bottom:650.026667pt;}
.y163{bottom:657.506667pt;}
.yc0{bottom:658.306667pt;}
.y199{bottom:662.026667pt;}
.y133{bottom:662.840000pt;}
.y7d{bottom:663.893333pt;}
.yfa{bottom:665.493333pt;}
.y162{bottom:672.693333pt;}
.ybf{bottom:673.506667pt;}
.y198{bottom:677.226667pt;}
.y132{bottom:678.026667pt;}
.y7c{bottom:679.360000pt;}
.yf9{bottom:680.693333pt;}
.y161{bottom:688.173333pt;}
.ybe{bottom:688.960000pt;}
.y197{bottom:692.693333pt;}
.y131{bottom:693.506667pt;}
.y7b{bottom:694.560000pt;}
.yf8{bottom:696.173333pt;}
.y160{bottom:703.373333pt;}
.ybd{bottom:704.173333pt;}
.y196{bottom:707.893333pt;}
.y130{bottom:708.706667pt;}
.y7a{bottom:710.040000pt;}
.yf7{bottom:711.373333pt;}
.y15f{bottom:718.840000pt;}
.ybc{bottom:720.173333pt;}
.y77{bottom:722.840000pt;}
.y195{bottom:723.373333pt;}
.y12f{bottom:724.173333pt;}
.yf6{bottom:726.840000pt;}
.y1b{bottom:730.293333pt;}
.y15e{bottom:734.040000pt;}
.yba{bottom:735.626667pt;}
.y194{bottom:738.560000pt;}
.y12e{bottom:739.373333pt;}
.yf5{bottom:739.626667pt;}
.y15d{bottom:749.506667pt;}
.yb8{bottom:753.226667pt;}
.y193{bottom:754.040000pt;}
.y75{bottom:754.293333pt;}
.y12d{bottom:754.840000pt;}
.y10{bottom:756.706667pt;}
.yf3{bottom:757.760000pt;}
.y15c{bottom:764.733333pt;}
.y192{bottom:769.266667pt;}
.y73{bottom:770.333333pt;}
.y12c{bottom:770.600000pt;}
.yb6{bottom:771.666667pt;}
.yf1{bottom:776.200000pt;}
.y15b{bottom:780.200000pt;}
.y191{bottom:784.733333pt;}
.y12b{bottom:788.466667pt;}
.yb4{bottom:790.066667pt;}
.yf0{bottom:794.333333pt;}
.y15a{bottom:795.400000pt;}
.y72{bottom:799.666667pt;}
.y190{bottom:799.933333pt;}
.y12a{bottom:803.933333pt;}
.yb3{bottom:810.866667pt;}
.yef{bottom:812.466667pt;}
.y18f{bottom:815.400000pt;}
.y71{bottom:815.666667pt;}
.y129{bottom:819.133333pt;}
.yb2{bottom:826.066667pt;}
.yed{bottom:830.600000pt;}
.y70{bottom:831.666667pt;}
.y128{bottom:834.600000pt;}
.yb1{bottom:841.533333pt;}
.y18e{bottom:846.066667pt;}
.y6e{bottom:847.666667pt;}
.y127{bottom:849.800000pt;}
.yec{bottom:854.066667pt;}
.yb0{bottom:856.733333pt;}
.y18d{bottom:861.266667pt;}
.y126{bottom:865.266667pt;}
.y6d{bottom:866.866667pt;}
.yeb{bottom:869.800000pt;}
.yaf{bottom:872.200000pt;}
.y18c{bottom:876.733333pt;}
.y125{bottom:880.466667pt;}
.y6c{bottom:882.066667pt;}
.yea{bottom:885.000000pt;}
.yae{bottom:887.400000pt;}
.y18b{bottom:891.933333pt;}
.y124{bottom:895.933333pt;}
.y6b{bottom:897.533333pt;}
.ye9{bottom:900.466667pt;}
.yad{bottom:902.866667pt;}
.y18a{bottom:907.400000pt;}
.y159{bottom:907.666667pt;}
.y123{bottom:911.440000pt;}
.y6a{bottom:912.760000pt;}
.ye8{bottom:915.693333pt;}
.yac{bottom:918.106667pt;}
.y189{bottom:922.626667pt;}
.y69{bottom:928.226667pt;}
.yab{bottom:933.560000pt;}
.ye7{bottom:934.093333pt;}
.ye{bottom:937.840000pt;}
.y188{bottom:938.093333pt;}
.y122{bottom:943.426667pt;}
.y68{bottom:948.506667pt;}
.yaa{bottom:948.760000pt;}
.ye6{bottom:949.840000pt;}
.y187{bottom:953.293333pt;}
.y121{bottom:958.893333pt;}
.y6{bottom:960.240000pt;}
.y67{bottom:964.226667pt;}
.ye5{bottom:965.293333pt;}
.ya9{bottom:971.426667pt;}
.y186{bottom:973.840000pt;}
.y120{bottom:974.093333pt;}
.y66{bottom:979.440000pt;}
.ye4{bottom:980.506667pt;}
.ya8{bottom:987.173333pt;}
.y11f{bottom:989.560000pt;}
.y185{bottom:994.626667pt;}
.y65{bottom:994.893333pt;}
.ye3{bottom:995.960000pt;}
.ya7{bottom:1002.360000pt;}
.y11e{bottom:1004.760000pt;}
.y64{bottom:1010.093333pt;}
.ye2{bottom:1011.173333pt;}
.y158{bottom:1014.893333pt;}
.ya6{bottom:1017.840000pt;}
.y11d{bottom:1020.226667pt;}
.y63{bottom:1025.560000pt;}
.ya5{bottom:1033.026667pt;}
.y11c{bottom:1035.440000pt;}
.ye1{bottom:1040.226667pt;}
.y62{bottom:1040.773333pt;}
.ya4{bottom:1055.733333pt;}
.y61{bottom:1056.000000pt;}
.h32{height:15.200000pt;}
.h20{height:15.233333pt;}
.h1c{height:15.466667pt;}
.h31{height:15.500000pt;}
.h24{height:16.800000pt;}
.h23{height:17.066667pt;}
.h2c{height:17.333333pt;}
.h29{height:17.600000pt;}
.h2f{height:17.633333pt;}
.h2d{height:17.866667pt;}
.h2a{height:17.900000pt;}
.h27{height:18.666667pt;}
.hb{height:22.133333pt;}
.h34{height:24.578125pt;}
.h11{height:25.750000pt;}
.h12{height:26.400000pt;}
.h1f{height:28.800000pt;}
.h21{height:30.666667pt;}
.h25{height:30.700000pt;}
.hd{height:31.416667pt;}
.h8{height:32.000000pt;}
.h10{height:32.765625pt;}
.h19{height:34.333333pt;}
.h1b{height:37.239583pt;}
.h1a{height:37.630208pt;}
.h18{height:37.734375pt;}
.h28{height:38.828125pt;}
.ha{height:40.000000pt;}
.h33{height:40.963542pt;}
.h17{height:41.200000pt;}
.h15{height:42.437500pt;}
.h4{height:42.916667pt;}
.h35{height:43.724792pt;}
.h1d{height:43.778125pt;}
.h22{height:43.831458pt;}
.h1e{height:43.938125pt;}
.h26{height:44.687500pt;}
.h2b{height:45.156250pt;}
.h2{height:46.400000pt;}
.h30{height:47.742188pt;}
.h9{height:48.000000pt;}
.h2e{height:50.781250pt;}
.h3{height:53.046875pt;}
.h16{height:54.609375pt;}
.hf{height:55.242187pt;}
.he{height:56.000000pt;}
.h5{height:60.070312pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.020000pt;}
.hc{height:181.133333pt;}
.h14{height:377.400000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w14{width:43.733333pt;}
.we{width:50.666667pt;}
.w11{width:53.600000pt;}
.w3{width:66.400000pt;}
.w29{width:111.500000pt;}
.w1c{width:115.766667pt;}
.w23{width:119.766667pt;}
.w1f{width:121.366667pt;}
.w5{width:129.366667pt;}
.w2a{width:134.426667pt;}
.w19{width:136.026667pt;}
.w26{width:140.573333pt;}
.wb{width:141.893333pt;}
.w21{width:142.173333pt;}
.wd{width:172.333333pt;}
.w9{width:177.373333pt;}
.w25{width:184.600000pt;}
.w28{width:193.933333pt;}
.w1b{width:196.333333pt;}
.w20{width:197.666667pt;}
.w22{width:201.933333pt;}
.w27{width:220.333333pt;}
.w18{width:231.000000pt;}
.w10{width:238.466667pt;}
.w13{width:240.066667pt;}
.w1d{width:259.533333pt;}
.w1e{width:279.293333pt;}
.w16{width:281.973333pt;}
.w17{width:295.560000pt;}
.w15{width:336.626667pt;}
.w24{width:337.173333pt;}
.wc{width:348.373333pt;}
.w1a{width:350.506667pt;}
.w12{width:371.333333pt;}
.wf{width:371.866667pt;}
.wa{width:442.293333pt;}
.w6{width:534.840000pt;}
.w2{width:598.866667pt;}
.w8{width:619.666667pt;}
.w7{width:664.200000pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.666667pt;}
.x2{left:7.733333pt;}
.x1d{left:10.400000pt;}
.xd{left:29.866667pt;}
.x10{left:42.133333pt;}
.x23{left:48.033322pt;}
.x27{left:50.666667pt;}
.x29{left:52.266667pt;}
.xf{left:60.533333pt;}
.x1{left:64.300000pt;}
.x11{left:66.400000pt;}
.x4{left:72.033322pt;}
.x15{left:73.633322pt;}
.x12{left:77.326667pt;}
.x5{left:87.233333pt;}
.x22{left:96.033322pt;}
.x20{left:109.366667pt;}
.x28{left:112.026667pt;}
.x1a{left:117.100000pt;}
.x1c{left:118.166667pt;}
.x2e{left:120.033322pt;}
.x2d{left:124.833322pt;}
.x13{left:191.273333pt;}
.x6{left:194.200000pt;}
.x16{left:207.533333pt;}
.x1f{left:224.066655pt;}
.xe{left:232.606667pt;}
.x18{left:239.799988pt;}
.x14{left:242.200000pt;}
.x9{left:262.200000pt;}
.x32{left:263.573333pt;}
.x31{left:267.839988pt;}
.x24{left:276.359988pt;}
.x2a{left:283.306655pt;}
.x37{left:287.040000pt;}
.xc{left:309.700000pt;}
.x7{left:315.026667pt;}
.x2f{left:326.240000pt;}
.x8{left:332.106667pt;}
.x25{left:361.200000pt;}
.xb{left:390.000000pt;}
.x1e{left:396.933322pt;}
.x35{left:402.800000pt;}
.x33{left:406.266667pt;}
.xa{left:410.800000pt;}
.x2b{left:416.133333pt;}
.x21{left:446.800000pt;}
.x38{left:481.773333pt;}
.x1b{left:489.773333pt;}
.x17{left:556.440000pt;}
.x36{left:588.200000pt;}
.x26{left:592.733333pt;}
.x39{left:593.800000pt;}
.x30{left:606.333333pt;}
.x34{left:609.000000pt;}
.x2c{left:613.000000pt;}
.x3{left:663.173333pt;}
}




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