
    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_23d247ca483da1a9254bda30.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f24addfa25cbfbf1cddfdb06.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2b84b4bef454eea9b2ca4ddf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fb2369189367264ddf87f41a.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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e28ea8b608fba66ac762a553.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_176ab5d2c755728d60dc0c78.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_6e4186a851dc0050bdf159e1.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_f62ccc91e13d86e4200358f3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f7b8a4de8df7bac5ed80a762.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_d4c2f18ad1b76ef701a80445.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_359405739506a430d0fdc04f.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_52fb5a844b65d2f4a7fdf16e.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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_4555900f56e08965294a4c8a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_647b9482a50c59d86965f066.woff')format("woff");}.ff11{font-family:ff11;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: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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.052980px;}
.ls12{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.087600px;}
.ls14{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.lsd{letter-spacing:8.100000px;}
.ls16{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.lse{letter-spacing:55.386720px;}
.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;}
}
.wse{word-spacing:-21.060000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.wsd{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.711360px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:73.344000px;}
._1c{margin-left:-5.175600px;}
._2{margin-left:-3.174240px;}
._3{margin-left:-2.159760px;}
._0{margin-left:-1.122000px;}
._1{width:1.068000px;}
._4{width:2.155440px;}
._5{width:3.944160px;}
._6{width:5.456400px;}
._f{width:7.290720px;}
._11{width:8.919600px;}
._10{width:9.979920px;}
._14{width:10.995840px;}
._13{width:12.131280px;}
._20{width:13.752480px;}
._9{width:16.089360px;}
._d{width:17.709600px;}
._c{width:18.751680px;}
._b{width:20.617200px;}
._22{width:22.589280px;}
._21{width:23.784480px;}
._a{width:26.063040px;}
._8{width:27.216720px;}
._7{width:28.419840px;}
._1f{width:30.477600px;}
._23{width:33.525360px;}
._12{width:34.655040px;}
._e{width:35.706960px;}
._15{width:36.779760px;}
._24{width:40.098960px;}
._16{width:41.592960px;}
._26{width:75.672240px;}
._25{width:77.150160px;}
._1d{width:83.305440px;}
._17{width:108.570000px;}
._1e{width:142.288560px;}
._1b{width:225.738000px;}
._18{width:244.848000px;}
._19{width:281.538000px;}
._1a{width:302.016000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.240000px;}
.ya3{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y46{bottom:3.960000px;}
.ya2{bottom:3.990000px;}
.yfb{bottom:5.865000px;}
.yef{bottom:5.910000px;}
.yf9{bottom:5.940000px;}
.yf5{bottom:5.970000px;}
.yed{bottom:6.015000px;}
.yf1{bottom:6.045000px;}
.y83{bottom:9.360000px;}
.ye{bottom:9.540000px;}
.y44{bottom:10.620000px;}
.y85{bottom:12.060000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y108{bottom:17.610000px;}
.yeb{bottom:17.715000px;}
.y2{bottom:20.196000px;}
.y40{bottom:20.520000px;}
.y10a{bottom:20.550000px;}
.y116{bottom:21.240000px;}
.ya1{bottom:21.270000px;}
.y45{bottom:22.320000px;}
.y1a{bottom:23.760000px;}
.y43{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.760000px;}
.y3f{bottom:37.800000px;}
.y105{bottom:38.265000px;}
.y19{bottom:39.645000px;}
.ya{bottom:46.620000px;}
.y18{bottom:52.785000px;}
.y104{bottom:54.750000px;}
.ya8{bottom:54.900000px;}
.y3e{bottom:55.080000px;}
.y1{bottom:55.260000px;}
.y17{bottom:66.105000px;}
.yfd{bottom:72.330000px;}
.y3d{bottom:72.360000px;}
.y9{bottom:73.470000px;}
.y16{bottom:79.245000px;}
.y15{bottom:88.965000px;}
.y3c{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y143{bottom:98.316000px;}
.y2c{bottom:98.640000px;}
.y9d{bottom:98.856000px;}
.y58{bottom:99.036000px;}
.y14{bottom:103.725000px;}
.ye6{bottom:103.896000px;}
.y16e{bottom:105.156000px;}
.y3b{bottom:106.740000px;}
.yfe{bottom:108.000000px;}
.y7{bottom:111.450000px;}
.y2b{bottom:113.940000px;}
.y142{bottom:115.596000px;}
.y9c{bottom:116.136000px;}
.y57{bottom:119.016000px;}
.y13{bottom:119.025000px;}
.y16d{bottom:122.256000px;}
.y3a{bottom:124.020000px;}
.y81{bottom:128.196000px;}
.ye9{bottom:130.785000px;}
.y2a{bottom:131.580000px;}
.y141{bottom:132.876000px;}
.y9b{bottom:133.416000px;}
.y56{bottom:136.296000px;}
.y12{bottom:137.925000px;}
.ye5{bottom:139.176000px;}
.y16c{bottom:139.536000px;}
.y39{bottom:141.300000px;}
.yff{bottom:143.670000px;}
.y80{bottom:145.296000px;}
.y29{bottom:148.860000px;}
.y140{bottom:149.976000px;}
.y9a{bottom:150.690000px;}
.y55{bottom:153.570000px;}
.y16b{bottom:156.810000px;}
.ye4{bottom:157.170000px;}
.y38{bottom:158.610000px;}
.ye8{bottom:161.175000px;}
.y7f{bottom:162.570000px;}
.y11{bottom:163.665000px;}
.y28{bottom:166.170000px;}
.y13f{bottom:167.250000px;}
.y99{bottom:167.790000px;}
.y54{bottom:170.670000px;}
.y16a{bottom:174.090000px;}
.y37{bottom:175.890000px;}
.y100{bottom:179.385000px;}
.y7e{bottom:179.850000px;}
.y27{bottom:183.990000px;}
.y13e{bottom:184.530000px;}
.y98{bottom:185.070000px;}
.yd0{bottom:187.590000px;}
.y53{bottom:187.950000px;}
.y10{bottom:188.145000px;}
.y169{bottom:191.370000px;}
.ye3{bottom:192.270000px;}
.y36{bottom:192.990000px;}
.y7d{bottom:197.130000px;}
.y26{bottom:201.270000px;}
.y13d{bottom:201.810000px;}
.y97{bottom:202.350000px;}
.y52{bottom:205.230000px;}
.y168{bottom:208.470000px;}
.y35{bottom:210.270000px;}
.y7c{bottom:214.410000px;}
.y101{bottom:215.070000px;}
.y25{bottom:218.730000px;}
.y13c{bottom:219.090000px;}
.y96{bottom:219.630000px;}
.ycf{bottom:220.350000px;}
.y51{bottom:222.510000px;}
.y167{bottom:225.750000px;}
.y34{bottom:227.550000px;}
.y7b{bottom:231.690000px;}
.y24{bottom:236.010000px;}
.y13b{bottom:236.370000px;}
.y95{bottom:236.910000px;}
.yce{bottom:238.350000px;}
.y50{bottom:239.790000px;}
.y166{bottom:243.030000px;}
.y33{bottom:244.830000px;}
.ye2{bottom:245.550000px;}
.y7a{bottom:248.790000px;}
.y102{bottom:250.740000px;}
.y23{bottom:253.470000px;}
.y94{bottom:254.190000px;}
.ycd{bottom:256.350000px;}
.y4f{bottom:257.070000px;}
.y165{bottom:260.310000px;}
.y32{bottom:262.110000px;}
.y79{bottom:266.070000px;}
.y13a{bottom:270.750000px;}
.y22{bottom:270.930000px;}
.y93{bottom:271.290000px;}
.yea{bottom:273.600000px;}
.y4e{bottom:274.170000px;}
.ycc{bottom:274.350000px;}
.y164{bottom:277.590000px;}
.y31{bottom:279.390000px;}
.y78{bottom:283.350000px;}
.ye1{bottom:284.070000px;}
.y103{bottom:286.455000px;}
.y139{bottom:288.030000px;}
.y21{bottom:288.210000px;}
.y92{bottom:288.570000px;}
.y107{bottom:289.110000px;}
.y4d{bottom:291.450000px;}
.ycb{bottom:292.350000px;}
.y163{bottom:294.870000px;}
.y30{bottom:296.490000px;}
.y77{bottom:300.630000px;}
.ye0{bottom:301.350000px;}
.y138{bottom:305.310000px;}
.y20{bottom:305.850000px;}
.y4c{bottom:308.730000px;}
.yca{bottom:310.350000px;}
.y162{bottom:311.970000px;}
.y106{bottom:313.230000px;}
.y2f{bottom:313.770000px;}
.y76{bottom:317.910000px;}
.ydf{bottom:318.630000px;}
.y137{bottom:322.590000px;}
.y91{bottom:323.130000px;}
.y4b{bottom:326.010000px;}
.yc9{bottom:328.350000px;}
.y161{bottom:329.250000px;}
.y2e{bottom:331.050000px;}
.y1f{bottom:333.210000px;}
.y75{bottom:335.190000px;}
.yde{bottom:335.910000px;}
.y136{bottom:339.915000px;}
.y90{bottom:340.455000px;}
.y4a{bottom:343.335000px;}
.yc8{bottom:346.395000px;}
.y160{bottom:346.575000px;}
.y2d{bottom:348.330000px;}
.y1e{bottom:351.030000px;}
.y74{bottom:352.335000px;}
.ydd{bottom:353.055000px;}
.y135{bottom:357.015000px;}
.y8f{bottom:357.735000px;}
.y49{bottom:360.615000px;}
.y15f{bottom:363.855000px;}
.yc7{bottom:364.395000px;}
.y73{bottom:369.615000px;}
.ydc{bottom:370.335000px;}
.y134{bottom:374.295000px;}
.y8e{bottom:374.835000px;}
.y48{bottom:377.715000px;}
.y15e{bottom:381.135000px;}
.yc6{bottom:382.395000px;}
.y72{bottom:386.895000px;}
.ydb{bottom:387.615000px;}
.y133{bottom:391.575000px;}
.y8d{bottom:392.115000px;}
.y47{bottom:395.715000px;}
.y15d{bottom:398.415000px;}
.yc5{bottom:400.395000px;}
.y71{bottom:404.175000px;}
.yda{bottom:404.895000px;}
.y132{bottom:408.855000px;}
.y8c{bottom:409.395000px;}
.y42{bottom:410.115000px;}
.y15c{bottom:415.515000px;}
.y70{bottom:421.455000px;}
.yc4{bottom:421.635000px;}
.yd9{bottom:422.175000px;}
.y131{bottom:426.135000px;}
.y8b{bottom:426.675000px;}
.y15b{bottom:432.795000px;}
.y6f{bottom:438.735000px;}
.yc3{bottom:438.915000px;}
.yd8{bottom:439.455000px;}
.y130{bottom:443.415000px;}
.y8a{bottom:443.955000px;}
.y1d{bottom:446.655000px;}
.y15a{bottom:450.075000px;}
.y6e{bottom:455.835000px;}
.yc2{bottom:456.015000px;}
.yd7{bottom:456.555000px;}
.y12f{bottom:460.515000px;}
.y89{bottom:461.055000px;}
.y159{bottom:467.355000px;}
.y6d{bottom:469.875000px;}
.yd6{bottom:470.595000px;}
.yfc{bottom:470.880000px;}
.y82{bottom:473.295000px;}
.y84{bottom:475.275000px;}
.y12e{bottom:477.795000px;}
.y88{bottom:478.335000px;}
.y158{bottom:484.635000px;}
.yc1{bottom:490.575000px;}
.y12d{bottom:495.075000px;}
.y87{bottom:495.615000px;}
.y157{bottom:501.735000px;}
.yc0{bottom:507.855000px;}
.y86{bottom:509.655000px;}
.y12c{bottom:512.355000px;}
.y156{bottom:519.015000px;}
.ybf{bottom:525.135000px;}
.y12b{bottom:529.635000px;}
.y155{bottom:536.295000px;}
.ybe{bottom:539.895000px;}
.y12a{bottom:546.735000px;}
.y154{bottom:553.575000px;}
.ybd{bottom:557.895000px;}
.y129{bottom:564.015000px;}
.y153{bottom:570.855000px;}
.ybc{bottom:575.895000px;}
.y128{bottom:581.295000px;}
.y152{bottom:588.135000px;}
.ybb{bottom:593.895000px;}
.y127{bottom:598.575000px;}
.y151{bottom:605.265000px;}
.yba{bottom:611.925000px;}
.y126{bottom:615.885000px;}
.y150{bottom:622.545000px;}
.yb9{bottom:629.925000px;}
.y125{bottom:633.165000px;}
.y14f{bottom:639.825000px;}
.y124{bottom:650.265000px;}
.yb8{bottom:651.165000px;}
.y14e{bottom:657.105000px;}
.y123{bottom:667.545000px;}
.yb7{bottom:668.265000px;}
.y14d{bottom:674.385000px;}
.y122{bottom:684.825000px;}
.yf3{bottom:685.440000px;}
.yb6{bottom:685.545000px;}
.y14c{bottom:691.665000px;}
.y121{bottom:702.105000px;}
.yb5{bottom:702.825000px;}
.y14b{bottom:708.765000px;}
.yf7{bottom:709.560000px;}
.yf4{bottom:719.100000px;}
.y120{bottom:719.385000px;}
.yb4{bottom:720.105000px;}
.yf8{bottom:720.720000px;}
.y14a{bottom:726.045000px;}
.yfa{bottom:729.000000px;}
.yf0{bottom:729.540000px;}
.yec{bottom:735.300000px;}
.y11f{bottom:736.665000px;}
.yb3{bottom:737.385000px;}
.yf6{bottom:738.540000px;}
.y149{bottom:743.325000px;}
.yee{bottom:747.180000px;}
.yf2{bottom:750.240000px;}
.y11e{bottom:753.765000px;}
.yb2{bottom:754.665000px;}
.y148{bottom:760.605000px;}
.y11d{bottom:771.045000px;}
.yb1{bottom:771.765000px;}
.y147{bottom:777.885000px;}
.y11c{bottom:788.325000px;}
.yb0{bottom:789.045000px;}
.y146{bottom:795.165000px;}
.y11b{bottom:805.605000px;}
.yaf{bottom:806.325000px;}
.y1b{bottom:809.025000px;}
.y145{bottom:812.265000px;}
.yd5{bottom:818.205000px;}
.y11a{bottom:822.885000px;}
.yae{bottom:823.605000px;}
.y144{bottom:829.545000px;}
.yd4{bottom:835.485000px;}
.yf{bottom:838.545000px;}
.y119{bottom:839.985000px;}
.yad{bottom:840.885000px;}
.y6c{bottom:846.825000px;}
.yd3{bottom:852.765000px;}
.y118{bottom:857.265000px;}
.yac{bottom:857.985000px;}
.y6b{bottom:864.105000px;}
.yd2{bottom:870.045000px;}
.y117{bottom:874.590000px;}
.yab{bottom:875.310000px;}
.y6a{bottom:881.430000px;}
.yd1{bottom:883.950000px;}
.ye7{bottom:884.160000px;}
.y115{bottom:889.350000px;}
.yaa{bottom:892.590000px;}
.y69{bottom:898.530000px;}
.y114{bottom:907.350000px;}
.ya9{bottom:909.870000px;}
.y68{bottom:915.810000px;}
.ya7{bottom:924.630000px;}
.y113{bottom:925.350000px;}
.y67{bottom:933.090000px;}
.y66{bottom:950.370000px;}
.y112{bottom:963.870000px;}
.y65{bottom:967.650000px;}
.y111{bottom:981.150000px;}
.y64{bottom:984.930000px;}
.ya6{bottom:994.290000px;}
.y110{bottom:998.430000px;}
.y63{bottom:1002.030000px;}
.y10f{bottom:1015.530000px;}
.y62{bottom:1019.310000px;}
.y10e{bottom:1032.810000px;}
.y61{bottom:1036.590000px;}
.yd{bottom:1041.810000px;}
.ya5{bottom:1046.850000px;}
.y10d{bottom:1050.090000px;}
.y60{bottom:1053.870000px;}
.y10c{bottom:1064.850000px;}
.y6{bottom:1067.010000px;}
.y5f{bottom:1071.150000px;}
.y5e{bottom:1088.430000px;}
.ya4{bottom:1099.410000px;}
.y10b{bottom:1100.130000px;}
.y5d{bottom:1105.530000px;}
.y5c{bottom:1122.810000px;}
.ya0{bottom:1134.690000px;}
.y109{bottom:1135.410000px;}
.y5b{bottom:1140.120000px;}
.y9f{bottom:1152.720000px;}
.y5a{bottom:1157.400000px;}
.y9e{bottom:1170.720000px;}
.y59{bottom:1174.680000px;}
.h24{height:17.100000px;}
.h26{height:17.136000px;}
.h2a{height:17.280000px;}
.h2b{height:17.316000px;}
.h31{height:21.060000px;}
.h2f{height:21.240000px;}
.hb{height:24.840000px;}
.h21{height:26.460000px;}
.h11{height:28.968750px;}
.h22{height:29.160000px;}
.h12{height:29.520000px;}
.h2{height:33.156000px;}
.h27{height:34.380000px;}
.h33{height:34.416000px;}
.h2c{height:34.560000px;}
.h25{height:35.136000px;}
.h34{height:35.280000px;}
.h8{height:36.180000px;}
.h1c{height:36.540000px;}
.h19{height:38.818125px;}
.h1e{height:42.164648px;}
.h18{height:42.281367px;}
.h1a{height:43.215117px;}
.h20{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.088125px;}
.h23{height:48.312422px;}
.h35{height:48.971859px;}
.h1b{height:48.995859px;}
.h28{height:51.840000px;}
.h1f{height:52.066406px;}
.h4{height:53.709961px;}
.h30{height:53.853187px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h2e{height:59.436914px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h29{height:68.940000px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:203.250000px;}
.h2d{height:304.380000px;}
.h32{height:344.160000px;}
.h14{height:362.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:39.240000px;}
.wb{width:40.896000px;}
.w1e{width:49.320000px;}
.w1f{width:49.500000px;}
.wf{width:63.216000px;}
.w1c{width:66.060000px;}
.w3{width:74.880000px;}
.wc{width:74.916000px;}
.w18{width:90.180000px;}
.w1a{width:91.440000px;}
.w15{width:107.460000px;}
.w1b{width:110.556000px;}
.w19{width:115.776000px;}
.w17{width:124.596000px;}
.w25{width:129.456000px;}
.w23{width:129.816000px;}
.w14{width:137.736000px;}
.w16{width:143.496000px;}
.w24{width:143.820000px;}
.w21{width:146.556000px;}
.w5{width:151.950000px;}
.w22{width:152.310000px;}
.w11{width:186.150000px;}
.w8{width:223.275000px;}
.w13{width:227.370000px;}
.w12{width:271.875000px;}
.w10{width:308.910000px;}
.wd{width:323.355000px;}
.we{width:346.890000px;}
.w1d{width:521.640000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w20{width:685.620000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:4.350000px;}
.x30{left:7.560000px;}
.x2{left:8.640000px;}
.xe{left:10.440000px;}
.x15{left:12.600000px;}
.x1c{left:15.300000px;}
.xc{left:34.056000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.xd{left:82.470000px;}
.x40{left:88.380000px;}
.x19{left:91.655987px;}
.x1b{left:93.276000px;}
.x5{left:98.130000px;}
.x3f{left:103.320000px;}
.x18{left:108.035987px;}
.x42{left:109.155000px;}
.xf{left:117.390000px;}
.x1a{left:118.655987px;}
.x10{left:128.730000px;}
.x23{left:137.196000px;}
.x11{left:144.750000px;}
.x20{left:148.896000px;}
.x12{left:152.670000px;}
.x35{left:178.275000px;}
.x33{left:185.400000px;}
.x34{left:190.230000px;}
.x13{left:215.175000px;}
.x2d{left:217.470000px;}
.x45{left:220.530000px;}
.x6{left:224.850000px;}
.x3a{left:228.960000px;}
.x22{left:254.909987px;}
.x9{left:288.435000px;}
.x26{left:290.414987px;}
.x14{left:296.175000px;}
.x1f{left:299.054987px;}
.x43{left:306.330000px;}
.x37{left:309.420000px;}
.x2b{left:315.434987px;}
.x17{left:324.614987px;}
.x44{left:340.454987px;}
.x2e{left:342.795000px;}
.x27{left:345.855000px;}
.x7{left:348.195000px;}
.x3b{left:359.820000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1d{left:432.615000px;}
.x2f{left:433.875000px;}
.x24{left:446.835000px;}
.xa{left:455.700000px;}
.x3c{left:469.800000px;}
.x21{left:472.965000px;}
.x46{left:504.105000px;}
.x31{left:550.365000px;}
.x38{left:559.080000px;}
.x41{left:572.910000px;}
.x28{left:573.945000px;}
.x3d{left:594.720000px;}
.x25{left:633.705000px;}
.x32{left:642.525000px;}
.x47{left:648.645000px;}
.x39{left:684.000000px;}
.x1e{left:706.289987px;}
.x2a{left:707.549987px;}
.x29{left:712.410000px;}
.x3e{left:719.640000px;}
.x3{left:745.890000px;}
.x16{left:752.909987px;}
.x2c{left:789.629987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.047093pt;}
.ls12{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.077867pt;}
.ls14{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsd{letter-spacing:7.200000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.lse{letter-spacing:49.232640pt;}
.wse{word-spacing:-18.720000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.632320pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:65.194667pt;}
._1c{margin-left:-4.600533pt;}
._2{margin-left:-2.821547pt;}
._3{margin-left:-1.919787pt;}
._0{margin-left:-0.997333pt;}
._1{width:0.949333pt;}
._4{width:1.915947pt;}
._5{width:3.505920pt;}
._6{width:4.850133pt;}
._f{width:6.480640pt;}
._11{width:7.928533pt;}
._10{width:8.871040pt;}
._14{width:9.774080pt;}
._13{width:10.783360pt;}
._20{width:12.224427pt;}
._9{width:14.301653pt;}
._d{width:15.741867pt;}
._c{width:16.668160pt;}
._b{width:18.326400pt;}
._22{width:20.079360pt;}
._21{width:21.141760pt;}
._a{width:23.167147pt;}
._8{width:24.192640pt;}
._7{width:25.262080pt;}
._1f{width:27.091200pt;}
._23{width:29.800320pt;}
._12{width:30.804480pt;}
._e{width:31.739520pt;}
._15{width:32.693120pt;}
._24{width:35.643520pt;}
._16{width:36.971520pt;}
._26{width:67.264213pt;}
._25{width:68.577920pt;}
._1d{width:74.049280pt;}
._17{width:96.506667pt;}
._1e{width:126.478720pt;}
._1b{width:200.656000pt;}
._18{width:217.642667pt;}
._19{width:250.256000pt;}
._1a{width:268.458667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.880000pt;}
.ya3{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y46{bottom:3.520000pt;}
.ya2{bottom:3.546667pt;}
.yfb{bottom:5.213333pt;}
.yef{bottom:5.253333pt;}
.yf9{bottom:5.280000pt;}
.yf5{bottom:5.306667pt;}
.yed{bottom:5.346667pt;}
.yf1{bottom:5.373333pt;}
.y83{bottom:8.320000pt;}
.ye{bottom:8.480000pt;}
.y44{bottom:9.440000pt;}
.y85{bottom:10.720000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y108{bottom:15.653333pt;}
.yeb{bottom:15.746667pt;}
.y2{bottom:17.952000pt;}
.y40{bottom:18.240000pt;}
.y10a{bottom:18.266667pt;}
.y116{bottom:18.880000pt;}
.ya1{bottom:18.906667pt;}
.y45{bottom:19.840000pt;}
.y1a{bottom:21.120000pt;}
.y43{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.120000pt;}
.y3f{bottom:33.600000pt;}
.y105{bottom:34.013333pt;}
.y19{bottom:35.240000pt;}
.ya{bottom:41.440000pt;}
.y18{bottom:46.920000pt;}
.y104{bottom:48.666667pt;}
.ya8{bottom:48.800000pt;}
.y3e{bottom:48.960000pt;}
.y1{bottom:49.120000pt;}
.y17{bottom:58.760000pt;}
.yfd{bottom:64.293333pt;}
.y3d{bottom:64.320000pt;}
.y9{bottom:65.306667pt;}
.y16{bottom:70.440000pt;}
.y15{bottom:79.080000pt;}
.y3c{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y143{bottom:87.392000pt;}
.y2c{bottom:87.680000pt;}
.y9d{bottom:87.872000pt;}
.y58{bottom:88.032000pt;}
.y14{bottom:92.200000pt;}
.ye6{bottom:92.352000pt;}
.y16e{bottom:93.472000pt;}
.y3b{bottom:94.880000pt;}
.yfe{bottom:96.000000pt;}
.y7{bottom:99.066667pt;}
.y2b{bottom:101.280000pt;}
.y142{bottom:102.752000pt;}
.y9c{bottom:103.232000pt;}
.y57{bottom:105.792000pt;}
.y13{bottom:105.800000pt;}
.y16d{bottom:108.672000pt;}
.y3a{bottom:110.240000pt;}
.y81{bottom:113.952000pt;}
.ye9{bottom:116.253333pt;}
.y2a{bottom:116.960000pt;}
.y141{bottom:118.112000pt;}
.y9b{bottom:118.592000pt;}
.y56{bottom:121.152000pt;}
.y12{bottom:122.600000pt;}
.ye5{bottom:123.712000pt;}
.y16c{bottom:124.032000pt;}
.y39{bottom:125.600000pt;}
.yff{bottom:127.706667pt;}
.y80{bottom:129.152000pt;}
.y29{bottom:132.320000pt;}
.y140{bottom:133.312000pt;}
.y9a{bottom:133.946667pt;}
.y55{bottom:136.506667pt;}
.y16b{bottom:139.386667pt;}
.ye4{bottom:139.706667pt;}
.y38{bottom:140.986667pt;}
.ye8{bottom:143.266667pt;}
.y7f{bottom:144.506667pt;}
.y11{bottom:145.480000pt;}
.y28{bottom:147.706667pt;}
.y13f{bottom:148.666667pt;}
.y99{bottom:149.146667pt;}
.y54{bottom:151.706667pt;}
.y16a{bottom:154.746667pt;}
.y37{bottom:156.346667pt;}
.y100{bottom:159.453333pt;}
.y7e{bottom:159.866667pt;}
.y27{bottom:163.546667pt;}
.y13e{bottom:164.026667pt;}
.y98{bottom:164.506667pt;}
.yd0{bottom:166.746667pt;}
.y53{bottom:167.066667pt;}
.y10{bottom:167.240000pt;}
.y169{bottom:170.106667pt;}
.ye3{bottom:170.906667pt;}
.y36{bottom:171.546667pt;}
.y7d{bottom:175.226667pt;}
.y26{bottom:178.906667pt;}
.y13d{bottom:179.386667pt;}
.y97{bottom:179.866667pt;}
.y52{bottom:182.426667pt;}
.y168{bottom:185.306667pt;}
.y35{bottom:186.906667pt;}
.y7c{bottom:190.586667pt;}
.y101{bottom:191.173333pt;}
.y25{bottom:194.426667pt;}
.y13c{bottom:194.746667pt;}
.y96{bottom:195.226667pt;}
.ycf{bottom:195.866667pt;}
.y51{bottom:197.786667pt;}
.y167{bottom:200.666667pt;}
.y34{bottom:202.266667pt;}
.y7b{bottom:205.946667pt;}
.y24{bottom:209.786667pt;}
.y13b{bottom:210.106667pt;}
.y95{bottom:210.586667pt;}
.yce{bottom:211.866667pt;}
.y50{bottom:213.146667pt;}
.y166{bottom:216.026667pt;}
.y33{bottom:217.626667pt;}
.ye2{bottom:218.266667pt;}
.y7a{bottom:221.146667pt;}
.y102{bottom:222.880000pt;}
.y23{bottom:225.306667pt;}
.y94{bottom:225.946667pt;}
.ycd{bottom:227.866667pt;}
.y4f{bottom:228.506667pt;}
.y165{bottom:231.386667pt;}
.y32{bottom:232.986667pt;}
.y79{bottom:236.506667pt;}
.y13a{bottom:240.666667pt;}
.y22{bottom:240.826667pt;}
.y93{bottom:241.146667pt;}
.yea{bottom:243.200000pt;}
.y4e{bottom:243.706667pt;}
.ycc{bottom:243.866667pt;}
.y164{bottom:246.746667pt;}
.y31{bottom:248.346667pt;}
.y78{bottom:251.866667pt;}
.ye1{bottom:252.506667pt;}
.y103{bottom:254.626667pt;}
.y139{bottom:256.026667pt;}
.y21{bottom:256.186667pt;}
.y92{bottom:256.506667pt;}
.y107{bottom:256.986667pt;}
.y4d{bottom:259.066667pt;}
.ycb{bottom:259.866667pt;}
.y163{bottom:262.106667pt;}
.y30{bottom:263.546667pt;}
.y77{bottom:267.226667pt;}
.ye0{bottom:267.866667pt;}
.y138{bottom:271.386667pt;}
.y20{bottom:271.866667pt;}
.y4c{bottom:274.426667pt;}
.yca{bottom:275.866667pt;}
.y162{bottom:277.306667pt;}
.y106{bottom:278.426667pt;}
.y2f{bottom:278.906667pt;}
.y76{bottom:282.586667pt;}
.ydf{bottom:283.226667pt;}
.y137{bottom:286.746667pt;}
.y91{bottom:287.226667pt;}
.y4b{bottom:289.786667pt;}
.yc9{bottom:291.866667pt;}
.y161{bottom:292.666667pt;}
.y2e{bottom:294.266667pt;}
.y1f{bottom:296.186667pt;}
.y75{bottom:297.946667pt;}
.yde{bottom:298.586667pt;}
.y136{bottom:302.146667pt;}
.y90{bottom:302.626667pt;}
.y4a{bottom:305.186667pt;}
.yc8{bottom:307.906667pt;}
.y160{bottom:308.066667pt;}
.y2d{bottom:309.626667pt;}
.y1e{bottom:312.026667pt;}
.y74{bottom:313.186667pt;}
.ydd{bottom:313.826667pt;}
.y135{bottom:317.346667pt;}
.y8f{bottom:317.986667pt;}
.y49{bottom:320.546667pt;}
.y15f{bottom:323.426667pt;}
.yc7{bottom:323.906667pt;}
.y73{bottom:328.546667pt;}
.ydc{bottom:329.186667pt;}
.y134{bottom:332.706667pt;}
.y8e{bottom:333.186667pt;}
.y48{bottom:335.746667pt;}
.y15e{bottom:338.786667pt;}
.yc6{bottom:339.906667pt;}
.y72{bottom:343.906667pt;}
.ydb{bottom:344.546667pt;}
.y133{bottom:348.066667pt;}
.y8d{bottom:348.546667pt;}
.y47{bottom:351.746667pt;}
.y15d{bottom:354.146667pt;}
.yc5{bottom:355.906667pt;}
.y71{bottom:359.266667pt;}
.yda{bottom:359.906667pt;}
.y132{bottom:363.426667pt;}
.y8c{bottom:363.906667pt;}
.y42{bottom:364.546667pt;}
.y15c{bottom:369.346667pt;}
.y70{bottom:374.626667pt;}
.yc4{bottom:374.786667pt;}
.yd9{bottom:375.266667pt;}
.y131{bottom:378.786667pt;}
.y8b{bottom:379.266667pt;}
.y15b{bottom:384.706667pt;}
.y6f{bottom:389.986667pt;}
.yc3{bottom:390.146667pt;}
.yd8{bottom:390.626667pt;}
.y130{bottom:394.146667pt;}
.y8a{bottom:394.626667pt;}
.y1d{bottom:397.026667pt;}
.y15a{bottom:400.066667pt;}
.y6e{bottom:405.186667pt;}
.yc2{bottom:405.346667pt;}
.yd7{bottom:405.826667pt;}
.y12f{bottom:409.346667pt;}
.y89{bottom:409.826667pt;}
.y159{bottom:415.426667pt;}
.y6d{bottom:417.666667pt;}
.yd6{bottom:418.306667pt;}
.yfc{bottom:418.560000pt;}
.y82{bottom:420.706667pt;}
.y84{bottom:422.466667pt;}
.y12e{bottom:424.706667pt;}
.y88{bottom:425.186667pt;}
.y158{bottom:430.786667pt;}
.yc1{bottom:436.066667pt;}
.y12d{bottom:440.066667pt;}
.y87{bottom:440.546667pt;}
.y157{bottom:445.986667pt;}
.yc0{bottom:451.426667pt;}
.y86{bottom:453.026667pt;}
.y12c{bottom:455.426667pt;}
.y156{bottom:461.346667pt;}
.ybf{bottom:466.786667pt;}
.y12b{bottom:470.786667pt;}
.y155{bottom:476.706667pt;}
.ybe{bottom:479.906667pt;}
.y12a{bottom:485.986667pt;}
.y154{bottom:492.066667pt;}
.ybd{bottom:495.906667pt;}
.y129{bottom:501.346667pt;}
.y153{bottom:507.426667pt;}
.ybc{bottom:511.906667pt;}
.y128{bottom:516.706667pt;}
.y152{bottom:522.786667pt;}
.ybb{bottom:527.906667pt;}
.y127{bottom:532.066667pt;}
.y151{bottom:538.013333pt;}
.yba{bottom:543.933333pt;}
.y126{bottom:547.453333pt;}
.y150{bottom:553.373333pt;}
.yb9{bottom:559.933333pt;}
.y125{bottom:562.813333pt;}
.y14f{bottom:568.733333pt;}
.y124{bottom:578.013333pt;}
.yb8{bottom:578.813333pt;}
.y14e{bottom:584.093333pt;}
.y123{bottom:593.373333pt;}
.yb7{bottom:594.013333pt;}
.y14d{bottom:599.453333pt;}
.y122{bottom:608.733333pt;}
.yf3{bottom:609.280000pt;}
.yb6{bottom:609.373333pt;}
.y14c{bottom:614.813333pt;}
.y121{bottom:624.093333pt;}
.yb5{bottom:624.733333pt;}
.y14b{bottom:630.013333pt;}
.yf7{bottom:630.720000pt;}
.yf4{bottom:639.200000pt;}
.y120{bottom:639.453333pt;}
.yb4{bottom:640.093333pt;}
.yf8{bottom:640.640000pt;}
.y14a{bottom:645.373333pt;}
.yfa{bottom:648.000000pt;}
.yf0{bottom:648.480000pt;}
.yec{bottom:653.600000pt;}
.y11f{bottom:654.813333pt;}
.yb3{bottom:655.453333pt;}
.yf6{bottom:656.480000pt;}
.y149{bottom:660.733333pt;}
.yee{bottom:664.160000pt;}
.yf2{bottom:666.880000pt;}
.y11e{bottom:670.013333pt;}
.yb2{bottom:670.813333pt;}
.y148{bottom:676.093333pt;}
.y11d{bottom:685.373333pt;}
.yb1{bottom:686.013333pt;}
.y147{bottom:691.453333pt;}
.y11c{bottom:700.733333pt;}
.yb0{bottom:701.373333pt;}
.y146{bottom:706.813333pt;}
.y11b{bottom:716.093333pt;}
.yaf{bottom:716.733333pt;}
.y1b{bottom:719.133333pt;}
.y145{bottom:722.013333pt;}
.yd5{bottom:727.293333pt;}
.y11a{bottom:731.453333pt;}
.yae{bottom:732.093333pt;}
.y144{bottom:737.373333pt;}
.yd4{bottom:742.653333pt;}
.yf{bottom:745.373333pt;}
.y119{bottom:746.653333pt;}
.yad{bottom:747.453333pt;}
.y6c{bottom:752.733333pt;}
.yd3{bottom:758.013333pt;}
.y118{bottom:762.013333pt;}
.yac{bottom:762.653333pt;}
.y6b{bottom:768.093333pt;}
.yd2{bottom:773.373333pt;}
.y117{bottom:777.413333pt;}
.yab{bottom:778.053333pt;}
.y6a{bottom:783.493333pt;}
.yd1{bottom:785.733333pt;}
.ye7{bottom:785.920000pt;}
.y115{bottom:790.533333pt;}
.yaa{bottom:793.413333pt;}
.y69{bottom:798.693333pt;}
.y114{bottom:806.533333pt;}
.ya9{bottom:808.773333pt;}
.y68{bottom:814.053333pt;}
.ya7{bottom:821.893333pt;}
.y113{bottom:822.533333pt;}
.y67{bottom:829.413333pt;}
.y66{bottom:844.773333pt;}
.y112{bottom:856.773333pt;}
.y65{bottom:860.133333pt;}
.y111{bottom:872.133333pt;}
.y64{bottom:875.493333pt;}
.ya6{bottom:883.813333pt;}
.y110{bottom:887.493333pt;}
.y63{bottom:890.693333pt;}
.y10f{bottom:902.693333pt;}
.y62{bottom:906.053333pt;}
.y10e{bottom:918.053333pt;}
.y61{bottom:921.413333pt;}
.yd{bottom:926.053333pt;}
.ya5{bottom:930.533333pt;}
.y10d{bottom:933.413333pt;}
.y60{bottom:936.773333pt;}
.y10c{bottom:946.533333pt;}
.y6{bottom:948.453333pt;}
.y5f{bottom:952.133333pt;}
.y5e{bottom:967.493333pt;}
.ya4{bottom:977.253333pt;}
.y10b{bottom:977.893333pt;}
.y5d{bottom:982.693333pt;}
.y5c{bottom:998.053333pt;}
.ya0{bottom:1008.613333pt;}
.y109{bottom:1009.253333pt;}
.y5b{bottom:1013.440000pt;}
.y9f{bottom:1024.640000pt;}
.y5a{bottom:1028.800000pt;}
.y9e{bottom:1040.640000pt;}
.y59{bottom:1044.160000pt;}
.h24{height:15.200000pt;}
.h26{height:15.232000pt;}
.h2a{height:15.360000pt;}
.h2b{height:15.392000pt;}
.h31{height:18.720000pt;}
.h2f{height:18.880000pt;}
.hb{height:22.080000pt;}
.h21{height:23.520000pt;}
.h11{height:25.750000pt;}
.h22{height:25.920000pt;}
.h12{height:26.240000pt;}
.h2{height:29.472000pt;}
.h27{height:30.560000pt;}
.h33{height:30.592000pt;}
.h2c{height:30.720000pt;}
.h25{height:31.232000pt;}
.h34{height:31.360000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1e{height:37.479688pt;}
.h18{height:37.583438pt;}
.h1a{height:38.413438pt;}
.h20{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h23{height:42.944375pt;}
.h35{height:43.530542pt;}
.h1b{height:43.551875pt;}
.h28{height:46.080000pt;}
.h1f{height:46.281250pt;}
.h4{height:47.742188pt;}
.h30{height:47.869500pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h2e{height:52.832812pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h29{height:61.280000pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:180.666667pt;}
.h2d{height:270.560000pt;}
.h32{height:305.920000pt;}
.h14{height:322.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:34.880000pt;}
.wb{width:36.352000pt;}
.w1e{width:43.840000pt;}
.w1f{width:44.000000pt;}
.wf{width:56.192000pt;}
.w1c{width:58.720000pt;}
.w3{width:66.560000pt;}
.wc{width:66.592000pt;}
.w18{width:80.160000pt;}
.w1a{width:81.280000pt;}
.w15{width:95.520000pt;}
.w1b{width:98.272000pt;}
.w19{width:102.912000pt;}
.w17{width:110.752000pt;}
.w25{width:115.072000pt;}
.w23{width:115.392000pt;}
.w14{width:122.432000pt;}
.w16{width:127.552000pt;}
.w24{width:127.840000pt;}
.w21{width:130.272000pt;}
.w5{width:135.066667pt;}
.w22{width:135.386667pt;}
.w11{width:165.466667pt;}
.w8{width:198.466667pt;}
.w13{width:202.106667pt;}
.w12{width:241.666667pt;}
.w10{width:274.586667pt;}
.wd{width:287.426667pt;}
.we{width:308.346667pt;}
.w1d{width:463.680000pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w20{width:609.440000pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:3.866667pt;}
.x30{left:6.720000pt;}
.x2{left:7.680000pt;}
.xe{left:9.280000pt;}
.x15{left:11.200000pt;}
.x1c{left:13.600000pt;}
.xc{left:30.272000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.xd{left:73.306667pt;}
.x40{left:78.560000pt;}
.x19{left:81.471988pt;}
.x1b{left:82.912000pt;}
.x5{left:87.226667pt;}
.x3f{left:91.840000pt;}
.x18{left:96.031988pt;}
.x42{left:97.026667pt;}
.xf{left:104.346667pt;}
.x1a{left:105.471988pt;}
.x10{left:114.426667pt;}
.x23{left:121.952000pt;}
.x11{left:128.666667pt;}
.x20{left:132.352000pt;}
.x12{left:135.706667pt;}
.x35{left:158.466667pt;}
.x33{left:164.800000pt;}
.x34{left:169.093333pt;}
.x13{left:191.266667pt;}
.x2d{left:193.306667pt;}
.x45{left:196.026667pt;}
.x6{left:199.866667pt;}
.x3a{left:203.520000pt;}
.x22{left:226.586655pt;}
.x9{left:256.386667pt;}
.x26{left:258.146655pt;}
.x14{left:263.266667pt;}
.x1f{left:265.826655pt;}
.x43{left:272.293333pt;}
.x37{left:275.040000pt;}
.x2b{left:280.386655pt;}
.x17{left:288.546655pt;}
.x44{left:302.626655pt;}
.x2e{left:304.706667pt;}
.x27{left:307.426667pt;}
.x7{left:309.506667pt;}
.x3b{left:319.840000pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1d{left:384.546667pt;}
.x2f{left:385.666667pt;}
.x24{left:397.186667pt;}
.xa{left:405.066667pt;}
.x3c{left:417.600000pt;}
.x21{left:420.413333pt;}
.x46{left:448.093333pt;}
.x31{left:489.213333pt;}
.x38{left:496.960000pt;}
.x41{left:509.253333pt;}
.x28{left:510.173333pt;}
.x3d{left:528.640000pt;}
.x25{left:563.293333pt;}
.x32{left:571.133333pt;}
.x47{left:576.573333pt;}
.x39{left:608.000000pt;}
.x1e{left:627.813322pt;}
.x2a{left:628.933322pt;}
.x29{left:633.253333pt;}
.x3e{left:639.680000pt;}
.x3{left:663.013333pt;}
.x16{left:669.253322pt;}
.x2c{left:701.893322pt;}
}




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