
    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_be4468a844c61fa6906c7cb3.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_1c2437faed920ba92b33e7d2.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_b98f57dd1c302aa4c02ff8b8.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_0064ba102d23b527185a86b0.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_1d239d83276ffb00ebe80a38.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_1deb944c091cfaed316cacfa.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_a0f761ce066167e251cade73.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_564fa5e7fda6c840f44b05e3.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_e30b622dc8911d99bcb55e7e.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_1f65dc7191bf2b4031f36c6d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7f2dfa7bb1c4c863891ab6a7.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_a45f0331c04a054e0c3eea29.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_70336672482b248c8697c193.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_34e5ac1b3354614f477deec2.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_7dcfe238fd3861aeb9d28369.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_6a4c0e5c6989a11130fc7f50.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.038160px;}
.lsb{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.066240px;}
.lsf{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.573120px;}
.ls4{letter-spacing:0.786240px;}
.ls16{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.620000px;}
.ls1b{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls15{letter-spacing:64.026720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.wsd{word-spacing:-34.063200px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws1{word-spacing:-16.488000px;}
.wsa{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.wse{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.118880px;}
.ws9{word-spacing:-12.816720px;}
.ws6{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.186000px;}
.ws7{word-spacing:-12.114000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsf{word-spacing:0.000000px;}
._a{margin-left:-4.882320px;}
._3{margin-left:-3.438720px;}
._2{margin-left:-2.106000px;}
._0{margin-left:-1.026000px;}
._1{width:1.254000px;}
._9{width:2.532000px;}
._b{width:3.884400px;}
._6{width:5.020800px;}
._5{width:6.358560px;}
._4{width:8.282640px;}
._f{width:10.279680px;}
._15{width:11.295600px;}
._13{width:12.909120px;}
._14{width:13.921200px;}
._12{width:15.959760px;}
._18{width:17.868240px;}
._19{width:19.051920px;}
._1a{width:20.199840px;}
._10{width:21.221040px;}
._7{width:22.291440px;}
._8{width:23.304480px;}
._1b{width:24.531120px;}
._17{width:26.624640px;}
._d{width:28.028400px;}
._c{width:29.342160px;}
._11{width:30.549360px;}
._e{width:31.858320px;}
._16{width:35.318160px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.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;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y19{bottom:7.380000px;}
.yee{bottom:8.460000px;}
.yec{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y50{bottom:9.720000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:15.876000px;}
.y2{bottom:20.196000px;}
.y4c{bottom:20.520000px;}
.y51{bottom:21.240000px;}
.y18{bottom:23.985000px;}
.y4f{bottom:24.300000px;}
.yb{bottom:30.240000px;}
.y5{bottom:34.920000px;}
.y4b{bottom:37.800000px;}
.y17{bottom:40.365000px;}
.ya{bottom:46.440000px;}
.y16{bottom:53.145000px;}
.y4a{bottom:54.900000px;}
.y1{bottom:55.980000px;}
.y49{bottom:72.180000px;}
.y15{bottom:72.765000px;}
.y9{bottom:73.440000px;}
.y14{bottom:82.485000px;}
.y48{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y13{bottom:97.785000px;}
.y58{bottom:101.196000px;}
.ycf{bottom:104.796000px;}
.y96{bottom:105.876000px;}
.y47{bottom:106.785000px;}
.yf5{bottom:108.396000px;}
.y7{bottom:111.270000px;}
.y12b{bottom:112.356000px;}
.y156{bottom:113.976000px;}
.y170{bottom:115.596000px;}
.y12{bottom:116.865000px;}
.y57{bottom:118.296000px;}
.yce{bottom:122.076000px;}
.y46{bottom:124.065000px;}
.y95{bottom:124.236000px;}
.y12a{bottom:129.636000px;}
.yf4{bottom:130.176000px;}
.y155{bottom:131.256000px;}
.y16f{bottom:132.876000px;}
.y56{bottom:135.576000px;}
.ycd{bottom:139.356000px;}
.y45{bottom:141.345000px;}
.y94{bottom:142.596000px;}
.y11{bottom:142.605000px;}
.y129{bottom:146.916000px;}
.y154{bottom:148.356000px;}
.y16e{bottom:149.976000px;}
.yf3{bottom:151.770000px;}
.y55{bottom:152.850000px;}
.ycc{bottom:156.450000px;}
.y44{bottom:158.445000px;}
.y93{bottom:159.690000px;}
.y128{bottom:164.190000px;}
.y153{bottom:165.630000px;}
.y10{bottom:166.905000px;}
.y16d{bottom:167.250000px;}
.y54{bottom:170.130000px;}
.yf2{bottom:173.550000px;}
.ycb{bottom:173.730000px;}
.y43{bottom:175.725000px;}
.y92{bottom:176.970000px;}
.y127{bottom:181.470000px;}
.y152{bottom:182.910000px;}
.y16c{bottom:184.530000px;}
.y53{bottom:187.410000px;}
.yca{bottom:191.010000px;}
.y42{bottom:193.005000px;}
.y91{bottom:194.250000px;}
.yf1{bottom:195.330000px;}
.y126{bottom:198.750000px;}
.y151{bottom:200.190000px;}
.y16b{bottom:201.810000px;}
.y52{bottom:204.690000px;}
.yc9{bottom:208.290000px;}
.y41{bottom:210.285000px;}
.y90{bottom:211.530000px;}
.y125{bottom:215.850000px;}
.yf0{bottom:217.110000px;}
.y150{bottom:217.470000px;}
.y4e{bottom:218.550000px;}
.y16a{bottom:219.090000px;}
.yc8{bottom:225.570000px;}
.y40{bottom:227.565000px;}
.y8f{bottom:228.810000px;}
.y124{bottom:233.130000px;}
.y14f{bottom:234.570000px;}
.y169{bottom:236.370000px;}
.yef{bottom:238.890000px;}
.yc7{bottom:242.850000px;}
.y3f{bottom:244.845000px;}
.y8e{bottom:246.090000px;}
.y123{bottom:250.410000px;}
.y14e{bottom:251.850000px;}
.y168{bottom:253.470000px;}
.y1c{bottom:254.190000px;}
.yc6{bottom:259.950000px;}
.yed{bottom:260.670000px;}
.y3e{bottom:261.945000px;}
.y8d{bottom:263.190000px;}
.y122{bottom:267.690000px;}
.y14d{bottom:269.130000px;}
.y167{bottom:270.750000px;}
.yc5{bottom:278.310000px;}
.y3d{bottom:279.225000px;}
.y8c{bottom:280.470000px;}
.yeb{bottom:282.270000px;}
.y121{bottom:284.970000px;}
.y14c{bottom:286.410000px;}
.y2c{bottom:286.605000px;}
.y166{bottom:288.030000px;}
.y3c{bottom:296.505000px;}
.yc4{bottom:296.670000px;}
.y8b{bottom:297.750000px;}
.y2b{bottom:301.905000px;}
.y120{bottom:302.070000px;}
.y14b{bottom:303.690000px;}
.yea{bottom:304.050000px;}
.y165{bottom:305.310000px;}
.y3b{bottom:313.785000px;}
.y8a{bottom:315.030000px;}
.y11f{bottom:319.350000px;}
.y2a{bottom:319.365000px;}
.y14a{bottom:320.970000px;}
.y164{bottom:322.590000px;}
.ye9{bottom:325.830000px;}
.y3a{bottom:331.065000px;}
.y89{bottom:332.310000px;}
.yc3{bottom:333.390000px;}
.y29{bottom:336.645000px;}
.y11e{bottom:336.675000px;}
.y149{bottom:338.115000px;}
.y163{bottom:339.915000px;}
.y39{bottom:348.165000px;}
.y88{bottom:349.635000px;}
.ye8{bottom:351.255000px;}
.yc2{bottom:351.615000px;}
.y28{bottom:353.955000px;}
.y148{bottom:355.395000px;}
.y162{bottom:357.015000px;}
.y38{bottom:365.475000px;}
.y87{bottom:366.735000px;}
.ye7{bottom:368.535000px;}
.yc1{bottom:369.975000px;}
.y11d{bottom:371.235000px;}
.y27{bottom:371.775000px;}
.y147{bottom:372.675000px;}
.y161{bottom:374.295000px;}
.y37{bottom:382.755000px;}
.y86{bottom:384.015000px;}
.yc0{bottom:387.255000px;}
.ye6{bottom:387.435000px;}
.y11c{bottom:388.515000px;}
.y26{bottom:389.055000px;}
.y146{bottom:389.955000px;}
.y160{bottom:391.575000px;}
.y36{bottom:400.035000px;}
.y85{bottom:401.295000px;}
.ybf{bottom:404.535000px;}
.y11b{bottom:405.615000px;}
.y25{bottom:406.515000px;}
.y145{bottom:407.235000px;}
.y15f{bottom:408.855000px;}
.ye5{bottom:409.035000px;}
.y35{bottom:417.315000px;}
.y84{bottom:418.575000px;}
.ybe{bottom:421.815000px;}
.y11a{bottom:422.895000px;}
.y24{bottom:423.255000px;}
.y144{bottom:426.135000px;}
.ye4{bottom:430.815000px;}
.y34{bottom:434.595000px;}
.y83{bottom:436.935000px;}
.ybd{bottom:439.095000px;}
.y119{bottom:440.175000px;}
.y23{bottom:440.355000px;}
.y15e{bottom:443.415000px;}
.y143{bottom:447.735000px;}
.y33{bottom:451.695000px;}
.ye3{bottom:452.595000px;}
.y82{bottom:455.115000px;}
.ybc{bottom:456.195000px;}
.y118{bottom:457.455000px;}
.y22{bottom:457.635000px;}
.y15d{bottom:460.515000px;}
.y32{bottom:468.975000px;}
.y142{bottom:469.515000px;}
.y81{bottom:473.475000px;}
.ye2{bottom:474.375000px;}
.y117{bottom:474.735000px;}
.y21{bottom:475.095000px;}
.y15c{bottom:477.795000px;}
.y31{bottom:486.255000px;}
.y80{bottom:490.755000px;}
.y141{bottom:491.295000px;}
.y20{bottom:492.555000px;}
.y116{bottom:493.095000px;}
.y15b{bottom:495.075000px;}
.ye1{bottom:496.155000px;}
.y30{bottom:503.535000px;}
.y7f{bottom:508.035000px;}
.y115{bottom:511.275000px;}
.y15a{bottom:512.355000px;}
.y1f{bottom:512.715000px;}
.y140{bottom:513.075000px;}
.ye0{bottom:517.935000px;}
.y2f{bottom:520.815000px;}
.ybb{bottom:525.315000px;}
.y7e{bottom:526.395000px;}
.y114{bottom:529.635000px;}
.y13f{bottom:534.855000px;}
.y2e{bottom:538.095000px;}
.ydf{bottom:539.535000px;}
.y1e{bottom:540.255000px;}
.yba{bottom:542.595000px;}
.y7d{bottom:543.675000px;}
.y159{bottom:546.735000px;}
.y113{bottom:547.995000px;}
.y2d{bottom:555.195000px;}
.y1d{bottom:557.895000px;}
.yb9{bottom:559.695000px;}
.y13e{bottom:560.235000px;}
.yde{bottom:561.315000px;}
.y7c{bottom:561.855000px;}
.y158{bottom:564.015000px;}
.y112{bottom:566.355000px;}
.yb8{bottom:576.975000px;}
.y13d{bottom:577.515000px;}
.y7b{bottom:580.215000px;}
.y157{bottom:581.295000px;}
.y111{bottom:583.635000px;}
.ydd{bottom:586.695000px;}
.yb7{bottom:594.255000px;}
.y13c{bottom:596.235000px;}
.y7a{bottom:598.575000px;}
.y110{bottom:600.735000px;}
.ydc{bottom:604.005000px;}
.yb6{bottom:611.565000px;}
.y79{bottom:615.885000px;}
.y10f{bottom:618.045000px;}
.ydb{bottom:621.285000px;}
.yb5{bottom:628.845000px;}
.y78{bottom:633.165000px;}
.y10e{bottom:635.325000px;}
.yda{bottom:639.645000px;}
.y13b{bottom:639.825000px;}
.yb4{bottom:645.945000px;}
.y77{bottom:650.265000px;}
.y10d{bottom:652.605000px;}
.yd9{bottom:657.825000px;}
.y13a{bottom:661.605000px;}
.yb3{bottom:663.225000px;}
.y76{bottom:667.545000px;}
.y10c{bottom:669.885000px;}
.yd8{bottom:675.105000px;}
.yb2{bottom:680.505000px;}
.y139{bottom:683.385000px;}
.y75{bottom:684.825000px;}
.y10b{bottom:688.785000px;}
.yd7{bottom:693.465000px;}
.yb1{bottom:697.785000px;}
.y74{bottom:702.105000px;}
.y138{bottom:705.165000px;}
.y10a{bottom:710.385000px;}
.yd6{bottom:711.825000px;}
.yb0{bottom:715.065000px;}
.y73{bottom:719.385000px;}
.y137{bottom:726.765000px;}
.yd5{bottom:730.185000px;}
.y109{bottom:732.165000px;}
.yaf{bottom:732.345000px;}
.y72{bottom:736.665000px;}
.yd4{bottom:748.365000px;}
.y136{bottom:748.545000px;}
.yae{bottom:749.445000px;}
.y71{bottom:753.765000px;}
.y108{bottom:753.945000px;}
.yd3{bottom:765.645000px;}
.yad{bottom:766.725000px;}
.y135{bottom:770.325000px;}
.y70{bottom:771.045000px;}
.y107{bottom:775.725000px;}
.yac{bottom:784.005000px;}
.y6f{bottom:788.325000px;}
.y134{bottom:792.105000px;}
.y106{bottom:797.505000px;}
.yab{bottom:801.285000px;}
.yd2{bottom:802.365000px;}
.y6e{bottom:805.605000px;}
.y133{bottom:817.485000px;}
.yaa{bottom:818.565000px;}
.y105{bottom:819.285000px;}
.yd1{bottom:820.725000px;}
.y6d{bottom:822.885000px;}
.y1a{bottom:823.425000px;}
.y132{bottom:834.765000px;}
.ya9{bottom:835.845000px;}
.yd0{bottom:839.085000px;}
.y6c{bottom:839.985000px;}
.y104{bottom:844.485000px;}
.y131{bottom:851.865000px;}
.yf{bottom:852.945000px;}
.y6b{bottom:857.265000px;}
.y103{bottom:861.765000px;}
.y130{bottom:869.145000px;}
.ya8{bottom:871.350000px;}
.y6a{bottom:874.590000px;}
.y102{bottom:880.710000px;}
.y12f{bottom:886.470000px;}
.ya7{bottom:889.710000px;}
.y69{bottom:891.870000px;}
.y101{bottom:902.490000px;}
.y12e{bottom:904.830000px;}
.ya6{bottom:906.990000px;}
.y68{bottom:909.150000px;}
.y12d{bottom:923.190000px;}
.ya5{bottom:924.270000px;}
.y67{bottom:926.430000px;}
.ya4{bottom:941.370000px;}
.y66{bottom:943.530000px;}
.y100{bottom:946.050000px;}
.ya3{bottom:958.650000px;}
.y12c{bottom:959.730000px;}
.y65{bottom:960.810000px;}
.yff{bottom:967.650000px;}
.ya2{bottom:975.930000px;}
.y64{bottom:978.090000px;}
.yfe{bottom:989.430000px;}
.ya1{bottom:993.210000px;}
.y63{bottom:995.370000px;}
.ya0{bottom:1010.490000px;}
.yfd{bottom:1011.210000px;}
.y62{bottom:1012.650000px;}
.y9f{bottom:1027.770000px;}
.y61{bottom:1029.930000px;}
.yfc{bottom:1032.990000px;}
.yd{bottom:1034.970000px;}
.y9e{bottom:1044.870000px;}
.y60{bottom:1047.030000px;}
.yfb{bottom:1054.770000px;}
.y6{bottom:1060.350000px;}
.y9d{bottom:1062.150000px;}
.y5f{bottom:1064.310000px;}
.yfa{bottom:1076.550000px;}
.y9c{bottom:1079.430000px;}
.y5e{bottom:1081.590000px;}
.y9b{bottom:1096.710000px;}
.y5d{bottom:1098.870000px;}
.yf9{bottom:1101.930000px;}
.y9a{bottom:1113.990000px;}
.y5c{bottom:1116.150000px;}
.yf8{bottom:1119.030000px;}
.y99{bottom:1131.270000px;}
.y5b{bottom:1133.430000px;}
.yf7{bottom:1137.960000px;}
.y98{bottom:1148.400000px;}
.y5a{bottom:1150.560000px;}
.yf6{bottom:1159.740000px;}
.y97{bottom:1166.760000px;}
.y59{bottom:1167.840000px;}
.h21{height:17.100000px;}
.h20{height:17.280000px;}
.h22{height:17.316000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h1e{height:35.640000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1b{height:38.818125px;}
.h18{height:40.243711px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1a{height:42.281367px;}
.h1f{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h16{height:47.980898px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h8{height:71.613281px;}
.h5{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:182.010000px;}
.h15{height:569.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w13{width:86.760000px;}
.w18{width:130.860000px;}
.we{width:142.740000px;}
.w10{width:147.240000px;}
.w5{width:151.950000px;}
.w15{width:162.570000px;}
.w12{width:180.030000px;}
.w8{width:216.075000px;}
.w17{width:235.875000px;}
.wb{width:236.730000px;}
.wc{width:259.095000px;}
.wd{width:317.775000px;}
.w16{width:353.055000px;}
.w11{width:452.985000px;}
.wa{width:485.385000px;}
.w9{width:515.055000px;}
.w14{width:559.365000px;}
.wf{width:574.710000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xe{left:20.376000px;}
.xb{left:23.256000px;}
.x1{left:81.000000px;}
.x16{left:84.420000px;}
.x4{left:98.130000px;}
.x13{left:108.035987px;}
.xd{left:117.210000px;}
.x14{left:135.035987px;}
.x10{left:142.770000px;}
.xc{left:207.975000px;}
.xf{left:214.275000px;}
.x5{left:232.950000px;}
.x15{left:255.809987px;}
.x22{left:265.349987px;}
.x8{left:272.235000px;}
.x19{left:273.269987px;}
.x11{left:297.075000px;}
.x20{left:303.914987px;}
.x6{left:331.995000px;}
.x1c{left:336.674987px;}
.x1a{left:345.855000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x9{left:439.500000px;}
.x1e{left:539.565000px;}
.x18{left:571.965000px;}
.x21{left:646.125000px;}
.x1d{left:661.470000px;}
.x1b{left:665.970000px;}
.x23{left:677.850000px;}
.x1f{left:721.950000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.033920pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.058880pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.509440pt;}
.ls4{letter-spacing:0.698880pt;}
.ls16{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls15{letter-spacing:56.912640pt;}
.ws10{word-spacing:-53.120000pt;}
.wsd{word-spacing:-30.278400pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws1{word-spacing:-14.656000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.661227pt;}
.ws9{word-spacing:-11.392640pt;}
.ws6{word-spacing:-11.184000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws7{word-spacing:-10.768000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsf{word-spacing:0.000000pt;}
._a{margin-left:-4.339840pt;}
._3{margin-left:-3.056640pt;}
._2{margin-left:-1.872000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.114667pt;}
._9{width:2.250667pt;}
._b{width:3.452800pt;}
._6{width:4.462933pt;}
._5{width:5.652053pt;}
._4{width:7.362347pt;}
._f{width:9.137493pt;}
._15{width:10.040533pt;}
._13{width:11.474773pt;}
._14{width:12.374400pt;}
._12{width:14.186453pt;}
._18{width:15.882880pt;}
._19{width:16.935040pt;}
._1a{width:17.955413pt;}
._10{width:18.863147pt;}
._7{width:19.814613pt;}
._8{width:20.715093pt;}
._1b{width:21.805440pt;}
._17{width:23.666347pt;}
._d{width:24.914133pt;}
._c{width:26.081920pt;}
._11{width:27.154987pt;}
._e{width:28.318507pt;}
._16{width:31.393920pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y19{bottom:6.560000pt;}
.yee{bottom:7.520000pt;}
.yec{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y50{bottom:8.640000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:14.112000pt;}
.y2{bottom:17.952000pt;}
.y4c{bottom:18.240000pt;}
.y51{bottom:18.880000pt;}
.y18{bottom:21.320000pt;}
.y4f{bottom:21.600000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:31.040000pt;}
.y4b{bottom:33.600000pt;}
.y17{bottom:35.880000pt;}
.ya{bottom:41.280000pt;}
.y16{bottom:47.240000pt;}
.y4a{bottom:48.800000pt;}
.y1{bottom:49.760000pt;}
.y49{bottom:64.160000pt;}
.y15{bottom:64.680000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:73.320000pt;}
.y48{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:86.920000pt;}
.y58{bottom:89.952000pt;}
.ycf{bottom:93.152000pt;}
.y96{bottom:94.112000pt;}
.y47{bottom:94.920000pt;}
.yf5{bottom:96.352000pt;}
.y7{bottom:98.906667pt;}
.y12b{bottom:99.872000pt;}
.y156{bottom:101.312000pt;}
.y170{bottom:102.752000pt;}
.y12{bottom:103.880000pt;}
.y57{bottom:105.152000pt;}
.yce{bottom:108.512000pt;}
.y46{bottom:110.280000pt;}
.y95{bottom:110.432000pt;}
.y12a{bottom:115.232000pt;}
.yf4{bottom:115.712000pt;}
.y155{bottom:116.672000pt;}
.y16f{bottom:118.112000pt;}
.y56{bottom:120.512000pt;}
.ycd{bottom:123.872000pt;}
.y45{bottom:125.640000pt;}
.y94{bottom:126.752000pt;}
.y11{bottom:126.760000pt;}
.y129{bottom:130.592000pt;}
.y154{bottom:131.872000pt;}
.y16e{bottom:133.312000pt;}
.yf3{bottom:134.906667pt;}
.y55{bottom:135.866667pt;}
.ycc{bottom:139.066667pt;}
.y44{bottom:140.840000pt;}
.y93{bottom:141.946667pt;}
.y128{bottom:145.946667pt;}
.y153{bottom:147.226667pt;}
.y10{bottom:148.360000pt;}
.y16d{bottom:148.666667pt;}
.y54{bottom:151.226667pt;}
.yf2{bottom:154.266667pt;}
.ycb{bottom:154.426667pt;}
.y43{bottom:156.200000pt;}
.y92{bottom:157.306667pt;}
.y127{bottom:161.306667pt;}
.y152{bottom:162.586667pt;}
.y16c{bottom:164.026667pt;}
.y53{bottom:166.586667pt;}
.yca{bottom:169.786667pt;}
.y42{bottom:171.560000pt;}
.y91{bottom:172.666667pt;}
.yf1{bottom:173.626667pt;}
.y126{bottom:176.666667pt;}
.y151{bottom:177.946667pt;}
.y16b{bottom:179.386667pt;}
.y52{bottom:181.946667pt;}
.yc9{bottom:185.146667pt;}
.y41{bottom:186.920000pt;}
.y90{bottom:188.026667pt;}
.y125{bottom:191.866667pt;}
.yf0{bottom:192.986667pt;}
.y150{bottom:193.306667pt;}
.y4e{bottom:194.266667pt;}
.y16a{bottom:194.746667pt;}
.yc8{bottom:200.506667pt;}
.y40{bottom:202.280000pt;}
.y8f{bottom:203.386667pt;}
.y124{bottom:207.226667pt;}
.y14f{bottom:208.506667pt;}
.y169{bottom:210.106667pt;}
.yef{bottom:212.346667pt;}
.yc7{bottom:215.866667pt;}
.y3f{bottom:217.640000pt;}
.y8e{bottom:218.746667pt;}
.y123{bottom:222.586667pt;}
.y14e{bottom:223.866667pt;}
.y168{bottom:225.306667pt;}
.y1c{bottom:225.946667pt;}
.yc6{bottom:231.066667pt;}
.yed{bottom:231.706667pt;}
.y3e{bottom:232.840000pt;}
.y8d{bottom:233.946667pt;}
.y122{bottom:237.946667pt;}
.y14d{bottom:239.226667pt;}
.y167{bottom:240.666667pt;}
.yc5{bottom:247.386667pt;}
.y3d{bottom:248.200000pt;}
.y8c{bottom:249.306667pt;}
.yeb{bottom:250.906667pt;}
.y121{bottom:253.306667pt;}
.y14c{bottom:254.586667pt;}
.y2c{bottom:254.760000pt;}
.y166{bottom:256.026667pt;}
.y3c{bottom:263.560000pt;}
.yc4{bottom:263.706667pt;}
.y8b{bottom:264.666667pt;}
.y2b{bottom:268.360000pt;}
.y120{bottom:268.506667pt;}
.y14b{bottom:269.946667pt;}
.yea{bottom:270.266667pt;}
.y165{bottom:271.386667pt;}
.y3b{bottom:278.920000pt;}
.y8a{bottom:280.026667pt;}
.y11f{bottom:283.866667pt;}
.y2a{bottom:283.880000pt;}
.y14a{bottom:285.306667pt;}
.y164{bottom:286.746667pt;}
.ye9{bottom:289.626667pt;}
.y3a{bottom:294.280000pt;}
.y89{bottom:295.386667pt;}
.yc3{bottom:296.346667pt;}
.y29{bottom:299.240000pt;}
.y11e{bottom:299.266667pt;}
.y149{bottom:300.546667pt;}
.y163{bottom:302.146667pt;}
.y39{bottom:309.480000pt;}
.y88{bottom:310.786667pt;}
.ye8{bottom:312.226667pt;}
.yc2{bottom:312.546667pt;}
.y28{bottom:314.626667pt;}
.y148{bottom:315.906667pt;}
.y162{bottom:317.346667pt;}
.y38{bottom:324.866667pt;}
.y87{bottom:325.986667pt;}
.ye7{bottom:327.586667pt;}
.yc1{bottom:328.866667pt;}
.y11d{bottom:329.986667pt;}
.y27{bottom:330.466667pt;}
.y147{bottom:331.266667pt;}
.y161{bottom:332.706667pt;}
.y37{bottom:340.226667pt;}
.y86{bottom:341.346667pt;}
.yc0{bottom:344.226667pt;}
.ye6{bottom:344.386667pt;}
.y11c{bottom:345.346667pt;}
.y26{bottom:345.826667pt;}
.y146{bottom:346.626667pt;}
.y160{bottom:348.066667pt;}
.y36{bottom:355.586667pt;}
.y85{bottom:356.706667pt;}
.ybf{bottom:359.586667pt;}
.y11b{bottom:360.546667pt;}
.y25{bottom:361.346667pt;}
.y145{bottom:361.986667pt;}
.y15f{bottom:363.426667pt;}
.ye5{bottom:363.586667pt;}
.y35{bottom:370.946667pt;}
.y84{bottom:372.066667pt;}
.ybe{bottom:374.946667pt;}
.y11a{bottom:375.906667pt;}
.y24{bottom:376.226667pt;}
.y144{bottom:378.786667pt;}
.ye4{bottom:382.946667pt;}
.y34{bottom:386.306667pt;}
.y83{bottom:388.386667pt;}
.ybd{bottom:390.306667pt;}
.y119{bottom:391.266667pt;}
.y23{bottom:391.426667pt;}
.y15e{bottom:394.146667pt;}
.y143{bottom:397.986667pt;}
.y33{bottom:401.506667pt;}
.ye3{bottom:402.306667pt;}
.y82{bottom:404.546667pt;}
.ybc{bottom:405.506667pt;}
.y118{bottom:406.626667pt;}
.y22{bottom:406.786667pt;}
.y15d{bottom:409.346667pt;}
.y32{bottom:416.866667pt;}
.y142{bottom:417.346667pt;}
.y81{bottom:420.866667pt;}
.ye2{bottom:421.666667pt;}
.y117{bottom:421.986667pt;}
.y21{bottom:422.306667pt;}
.y15c{bottom:424.706667pt;}
.y31{bottom:432.226667pt;}
.y80{bottom:436.226667pt;}
.y141{bottom:436.706667pt;}
.y20{bottom:437.826667pt;}
.y116{bottom:438.306667pt;}
.y15b{bottom:440.066667pt;}
.ye1{bottom:441.026667pt;}
.y30{bottom:447.586667pt;}
.y7f{bottom:451.586667pt;}
.y115{bottom:454.466667pt;}
.y15a{bottom:455.426667pt;}
.y1f{bottom:455.746667pt;}
.y140{bottom:456.066667pt;}
.ye0{bottom:460.386667pt;}
.y2f{bottom:462.946667pt;}
.ybb{bottom:466.946667pt;}
.y7e{bottom:467.906667pt;}
.y114{bottom:470.786667pt;}
.y13f{bottom:475.426667pt;}
.y2e{bottom:478.306667pt;}
.ydf{bottom:479.586667pt;}
.y1e{bottom:480.226667pt;}
.yba{bottom:482.306667pt;}
.y7d{bottom:483.266667pt;}
.y159{bottom:485.986667pt;}
.y113{bottom:487.106667pt;}
.y2d{bottom:493.506667pt;}
.y1d{bottom:495.906667pt;}
.yb9{bottom:497.506667pt;}
.y13e{bottom:497.986667pt;}
.yde{bottom:498.946667pt;}
.y7c{bottom:499.426667pt;}
.y158{bottom:501.346667pt;}
.y112{bottom:503.426667pt;}
.yb8{bottom:512.866667pt;}
.y13d{bottom:513.346667pt;}
.y7b{bottom:515.746667pt;}
.y157{bottom:516.706667pt;}
.y111{bottom:518.786667pt;}
.ydd{bottom:521.506667pt;}
.yb7{bottom:528.226667pt;}
.y13c{bottom:529.986667pt;}
.y7a{bottom:532.066667pt;}
.y110{bottom:533.986667pt;}
.ydc{bottom:536.893333pt;}
.yb6{bottom:543.613333pt;}
.y79{bottom:547.453333pt;}
.y10f{bottom:549.373333pt;}
.ydb{bottom:552.253333pt;}
.yb5{bottom:558.973333pt;}
.y78{bottom:562.813333pt;}
.y10e{bottom:564.733333pt;}
.yda{bottom:568.573333pt;}
.y13b{bottom:568.733333pt;}
.yb4{bottom:574.173333pt;}
.y77{bottom:578.013333pt;}
.y10d{bottom:580.093333pt;}
.yd9{bottom:584.733333pt;}
.y13a{bottom:588.093333pt;}
.yb3{bottom:589.533333pt;}
.y76{bottom:593.373333pt;}
.y10c{bottom:595.453333pt;}
.yd8{bottom:600.093333pt;}
.yb2{bottom:604.893333pt;}
.y139{bottom:607.453333pt;}
.y75{bottom:608.733333pt;}
.y10b{bottom:612.253333pt;}
.yd7{bottom:616.413333pt;}
.yb1{bottom:620.253333pt;}
.y74{bottom:624.093333pt;}
.y138{bottom:626.813333pt;}
.y10a{bottom:631.453333pt;}
.yd6{bottom:632.733333pt;}
.yb0{bottom:635.613333pt;}
.y73{bottom:639.453333pt;}
.y137{bottom:646.013333pt;}
.yd5{bottom:649.053333pt;}
.y109{bottom:650.813333pt;}
.yaf{bottom:650.973333pt;}
.y72{bottom:654.813333pt;}
.yd4{bottom:665.213333pt;}
.y136{bottom:665.373333pt;}
.yae{bottom:666.173333pt;}
.y71{bottom:670.013333pt;}
.y108{bottom:670.173333pt;}
.yd3{bottom:680.573333pt;}
.yad{bottom:681.533333pt;}
.y135{bottom:684.733333pt;}
.y70{bottom:685.373333pt;}
.y107{bottom:689.533333pt;}
.yac{bottom:696.893333pt;}
.y6f{bottom:700.733333pt;}
.y134{bottom:704.093333pt;}
.y106{bottom:708.893333pt;}
.yab{bottom:712.253333pt;}
.yd2{bottom:713.213333pt;}
.y6e{bottom:716.093333pt;}
.y133{bottom:726.653333pt;}
.yaa{bottom:727.613333pt;}
.y105{bottom:728.253333pt;}
.yd1{bottom:729.533333pt;}
.y6d{bottom:731.453333pt;}
.y1a{bottom:731.933333pt;}
.y132{bottom:742.013333pt;}
.ya9{bottom:742.973333pt;}
.yd0{bottom:745.853333pt;}
.y6c{bottom:746.653333pt;}
.y104{bottom:750.653333pt;}
.y131{bottom:757.213333pt;}
.yf{bottom:758.173333pt;}
.y6b{bottom:762.013333pt;}
.y103{bottom:766.013333pt;}
.y130{bottom:772.573333pt;}
.ya8{bottom:774.533333pt;}
.y6a{bottom:777.413333pt;}
.y102{bottom:782.853333pt;}
.y12f{bottom:787.973333pt;}
.ya7{bottom:790.853333pt;}
.y69{bottom:792.773333pt;}
.y101{bottom:802.213333pt;}
.y12e{bottom:804.293333pt;}
.ya6{bottom:806.213333pt;}
.y68{bottom:808.133333pt;}
.y12d{bottom:820.613333pt;}
.ya5{bottom:821.573333pt;}
.y67{bottom:823.493333pt;}
.ya4{bottom:836.773333pt;}
.y66{bottom:838.693333pt;}
.y100{bottom:840.933333pt;}
.ya3{bottom:852.133333pt;}
.y12c{bottom:853.093333pt;}
.y65{bottom:854.053333pt;}
.yff{bottom:860.133333pt;}
.ya2{bottom:867.493333pt;}
.y64{bottom:869.413333pt;}
.yfe{bottom:879.493333pt;}
.ya1{bottom:882.853333pt;}
.y63{bottom:884.773333pt;}
.ya0{bottom:898.213333pt;}
.yfd{bottom:898.853333pt;}
.y62{bottom:900.133333pt;}
.y9f{bottom:913.573333pt;}
.y61{bottom:915.493333pt;}
.yfc{bottom:918.213333pt;}
.yd{bottom:919.973333pt;}
.y9e{bottom:928.773333pt;}
.y60{bottom:930.693333pt;}
.yfb{bottom:937.573333pt;}
.y6{bottom:942.533333pt;}
.y9d{bottom:944.133333pt;}
.y5f{bottom:946.053333pt;}
.yfa{bottom:956.933333pt;}
.y9c{bottom:959.493333pt;}
.y5e{bottom:961.413333pt;}
.y9b{bottom:974.853333pt;}
.y5d{bottom:976.773333pt;}
.yf9{bottom:979.493333pt;}
.y9a{bottom:990.213333pt;}
.y5c{bottom:992.133333pt;}
.yf8{bottom:994.693333pt;}
.y99{bottom:1005.573333pt;}
.y5b{bottom:1007.493333pt;}
.yf7{bottom:1011.520000pt;}
.y98{bottom:1020.800000pt;}
.y5a{bottom:1022.720000pt;}
.yf6{bottom:1030.880000pt;}
.y97{bottom:1037.120000pt;}
.y59{bottom:1038.080000pt;}
.h21{height:15.200000pt;}
.h20{height:15.360000pt;}
.h22{height:15.392000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h1e{height:31.680000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h18{height:35.772188pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h1f{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h16{height:42.649687pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h8{height:63.656250pt;}
.h5{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:161.786667pt;}
.h15{height:505.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w13{width:77.120000pt;}
.w18{width:116.320000pt;}
.we{width:126.880000pt;}
.w10{width:130.880000pt;}
.w5{width:135.066667pt;}
.w15{width:144.506667pt;}
.w12{width:160.026667pt;}
.w8{width:192.066667pt;}
.w17{width:209.666667pt;}
.wb{width:210.426667pt;}
.wc{width:230.306667pt;}
.wd{width:282.466667pt;}
.w16{width:313.826667pt;}
.w11{width:402.653333pt;}
.wa{width:431.453333pt;}
.w9{width:457.826667pt;}
.w14{width:497.213333pt;}
.wf{width:510.853333pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xe{left:18.112000pt;}
.xb{left:20.672000pt;}
.x1{left:72.000000pt;}
.x16{left:75.040000pt;}
.x4{left:87.226667pt;}
.x13{left:96.031988pt;}
.xd{left:104.186667pt;}
.x14{left:120.031988pt;}
.x10{left:126.906667pt;}
.xc{left:184.866667pt;}
.xf{left:190.466667pt;}
.x5{left:207.066667pt;}
.x15{left:227.386655pt;}
.x22{left:235.866655pt;}
.x8{left:241.986667pt;}
.x19{left:242.906655pt;}
.x11{left:264.066667pt;}
.x20{left:270.146655pt;}
.x6{left:295.106667pt;}
.x1c{left:299.266655pt;}
.x1a{left:307.426667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x9{left:390.666667pt;}
.x1e{left:479.613333pt;}
.x18{left:508.413333pt;}
.x21{left:574.333333pt;}
.x1d{left:587.973333pt;}
.x1b{left:591.973333pt;}
.x23{left:602.533333pt;}
.x1f{left:641.733333pt;}
.x3{left:656.933333pt;}
}




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