
    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_fc5d0af851a488c81852ebdc.woff2')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_5a2f80e6d32e28afbd642f57.woff2')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_a9be9180a2592528a4e49909.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_30d62777e0eff1317163942b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_c9dc2c16333cbbf1116188fc.woff2')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_da499426f170ebac787d807c.woff2')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_c655788af93a8c543ce96dab.woff2')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_f6e0fbd31336bab014e3b053.woff2')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_0eaec121e9fec8eefea2bd4f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_acd859dfbb36f1a74b452955.woff2')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_888135f7229c5df15966daa5.woff2')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_cbd788dd67ba2bd2437b4d2c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_59b4cf170947eda89588aa30.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f1e200315cf78b0c1eb906b9.woff2')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_8b07867a27c1056029dfe407.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8fd5a4bd7aef45dc8ce19a86.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_dc894ec751ef4b2b3de570ef.woff2')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_3002f7ed7d7737625b673daa.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a3834ede4e66cf1f8c2dbe22.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.063477;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_58985701b4c755d552b4c977.woff2')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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_906765924608a66dc447ae29.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:40.320000px;}
.v3{vertical-align:46.080000px;}
.v4{vertical-align:68.400000px;}
.lsf{letter-spacing:-4.680000px;}
.ls1b{letter-spacing:-4.266000px;}
.ls10{letter-spacing:-3.960000px;}
.ls8{letter-spacing:-2.076000px;}
.ls9{letter-spacing:-1.500000px;}
.lsa{letter-spacing:-1.356000px;}
.ls22{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.298200px;}
.ls7{letter-spacing:-0.127200px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.087600px;}
.lsb{letter-spacing:0.093000px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.195000px;}
.ls1e{letter-spacing:0.206640px;}
.ls18{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.lse{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.460080px;}
.ls21{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.786240px;}
.ls4{letter-spacing:0.894240px;}
.ls14{letter-spacing:2.059200px;}
.ls12{letter-spacing:2.062080px;}
.ls13{letter-spacing:3.180960px;}
.ls20{letter-spacing:15.786720px;}
.ls1f{letter-spacing:45.306720px;}
.ls17{letter-spacing:64.026720px;}
.ls15{letter-spacing:114.180960px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws12{word-spacing:-46.667040px;}
.ws11{word-spacing:-42.480720px;}
.ws5{word-spacing:-22.231200px;}
.ws4{word-spacing:-22.087200px;}
.ws3{word-spacing:-21.511200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws14{word-spacing:-15.552000px;}
.wsa{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.700760px;}
.ws6{word-spacing:-13.598760px;}
.wse{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.366000px;}
.wsd{word-spacing:-10.980000px;}
.wsc{word-spacing:-10.260000px;}
.ws7{word-spacing:-8.786880px;}
.ws9{word-spacing:-8.136000px;}
.wsf{word-spacing:0.000000px;}
._d{margin-left:-6.991920px;}
._16{margin-left:-5.856480px;}
._3{margin-left:-4.840560px;}
._2{margin-left:-3.156240px;}
._e{margin-left:-2.148960px;}
._0{margin-left:-1.140000px;}
._1{width:1.194000px;}
._7{width:2.249280px;}
._5{width:3.324000px;}
._a{width:4.492320px;}
._4{width:5.821440px;}
._10{width:7.014000px;}
._11{width:8.545680px;}
._12{width:9.636720px;}
._14{width:10.889280px;}
._13{width:11.914800px;}
._b{width:13.087440px;}
._6{width:16.886880px;}
._17{width:17.996640px;}
._c{width:19.377120px;}
._15{width:21.066240px;}
._8{width:22.339200px;}
._9{width:23.630640px;}
._f{width:26.354160px;}
.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;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.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;}
.y1b{bottom:0.180000px;}
.ye8{bottom:3.240000px;}
.yd7{bottom:3.420000px;}
.y19{bottom:3.600000px;}
.yee{bottom:3.630000px;}
.y3{bottom:3.780000px;}
.y52{bottom:4.140000px;}
.ye{bottom:9.720000px;}
.y50{bottom:10.620000px;}
.y1c{bottom:12.600000px;}
.yc{bottom:14.040000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y4d{bottom:20.880000px;}
.y51{bottom:22.500000px;}
.y18{bottom:23.940000px;}
.y4f{bottom:25.380000px;}
.yb{bottom:30.420000px;}
.y5{bottom:31.500000px;}
.y4c{bottom:38.160000px;}
.y17{bottom:40.365000px;}
.yec{bottom:40.530000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.000000px;}
.y4b{bottom:55.485000px;}
.y16{bottom:56.925000px;}
.yeb{bottom:57.630000px;}
.y15{bottom:70.065000px;}
.y4a{bottom:72.765000px;}
.y9{bottom:73.440000px;}
.y14{bottom:88.245000px;}
.y49{bottom:90.045000px;}
.y8{bottom:93.090000px;}
.y125{bottom:100.656000px;}
.y13{bottom:106.605000px;}
.y48{bottom:107.145000px;}
.y7{bottom:111.450000px;}
.yfd{bottom:111.636000px;}
.yd3{bottom:116.316000px;}
.y97{bottom:117.036000px;}
.y124{bottom:117.936000px;}
.y5a{bottom:121.176000px;}
.y47{bottom:124.425000px;}
.y12{bottom:125.145000px;}
.yfc{bottom:128.736000px;}
.yd2{bottom:133.596000px;}
.y96{bottom:135.036000px;}
.y123{bottom:135.216000px;}
.y59{bottom:138.276000px;}
.y46{bottom:141.705000px;}
.yfb{bottom:142.776000px;}
.yd1{bottom:150.870000px;}
.y11{bottom:150.885000px;}
.y95{bottom:152.310000px;}
.y122{bottom:152.490000px;}
.y58{bottom:155.550000px;}
.y45{bottom:158.985000px;}
.y143{bottom:163.650000px;}
.yd0{bottom:167.970000px;}
.y121{bottom:169.590000px;}
.y94{bottom:169.950000px;}
.y57{bottom:172.830000px;}
.y10{bottom:175.365000px;}
.y44{bottom:176.265000px;}
.y142{bottom:180.930000px;}
.y30{bottom:184.365000px;}
.ycf{bottom:184.890000px;}
.y120{bottom:186.870000px;}
.y93{bottom:188.310000px;}
.y56{bottom:190.110000px;}
.y43{bottom:193.545000px;}
.y141{bottom:198.210000px;}
.y2f{bottom:199.665000px;}
.yce{bottom:202.170000px;}
.y11f{bottom:204.150000px;}
.y92{bottom:206.490000px;}
.y55{bottom:207.390000px;}
.y42{bottom:210.645000px;}
.y140{bottom:215.490000px;}
.y2e{bottom:217.665000px;}
.ycd{bottom:219.450000px;}
.y11e{bottom:221.430000px;}
.y54{bottom:224.310000px;}
.y91{bottom:224.850000px;}
.y41{bottom:227.925000px;}
.y13f{bottom:232.770000px;}
.y2d{bottom:234.945000px;}
.ycc{bottom:237.090000px;}
.y11d{bottom:238.710000px;}
.y53{bottom:242.130000px;}
.y90{bottom:242.850000px;}
.y40{bottom:245.205000px;}
.y13e{bottom:249.870000px;}
.y2c{bottom:252.225000px;}
.ycb{bottom:254.370000px;}
.y11c{bottom:255.990000px;}
.y4e{bottom:256.350000px;}
.y8f{bottom:260.490000px;}
.y3f{bottom:262.485000px;}
.y13d{bottom:267.150000px;}
.y2b{bottom:269.505000px;}
.yca{bottom:271.470000px;}
.y11b{bottom:273.090000px;}
.y8e{bottom:277.410000px;}
.y3e{bottom:279.765000px;}
.y13c{bottom:284.430000px;}
.y2a{bottom:286.965000px;}
.yc9{bottom:289.830000px;}
.y11a{bottom:290.370000px;}
.y1d{bottom:293.070000px;}
.y8d{bottom:294.870000px;}
.y3d{bottom:297.045000px;}
.y13b{bottom:301.710000px;}
.y29{bottom:304.425000px;}
.y119{bottom:307.650000px;}
.yc8{bottom:308.190000px;}
.y8c{bottom:312.150000px;}
.y3c{bottom:314.175000px;}
.y13a{bottom:318.990000px;}
.y28{bottom:321.735000px;}
.y118{bottom:324.930000px;}
.yc7{bottom:325.470000px;}
.y8b{bottom:330.510000px;}
.y3b{bottom:331.455000px;}
.y139{bottom:336.090000px;}
.y27{bottom:339.195000px;}
.y117{bottom:342.255000px;}
.yc6{bottom:343.875000px;}
.y3a{bottom:348.735000px;}
.y8a{bottom:348.915000px;}
.y138{bottom:353.415000px;}
.y26{bottom:356.655000px;}
.y116{bottom:359.535000px;}
.yc5{bottom:361.695000px;}
.y39{bottom:366.015000px;}
.y89{bottom:367.275000px;}
.y137{bottom:370.695000px;}
.yfa{bottom:373.755000px;}
.y25{bottom:373.935000px;}
.y115{bottom:376.635000px;}
.yc4{bottom:378.975000px;}
.y38{bottom:383.295000px;}
.y88{bottom:385.635000px;}
.yf9{bottom:387.975000px;}
.y24{bottom:391.395000px;}
.y114{bottom:393.915000px;}
.yc3{bottom:396.615000px;}
.y37{bottom:400.395000px;}
.y87{bottom:402.375000px;}
.y136{bottom:405.255000px;}
.yf8{bottom:405.975000px;}
.y23{bottom:408.675000px;}
.y113{bottom:411.195000px;}
.yc2{bottom:413.895000px;}
.y36{bottom:417.675000px;}
.y86{bottom:420.015000px;}
.y135{bottom:422.535000px;}
.yf7{bottom:423.975000px;}
.y22{bottom:426.135000px;}
.y112{bottom:428.475000px;}
.yc1{bottom:432.255000px;}
.y35{bottom:434.955000px;}
.y85{bottom:437.295000px;}
.y134{bottom:439.635000px;}
.yf6{bottom:441.975000px;}
.y21{bottom:443.595000px;}
.y111{bottom:445.755000px;}
.yc0{bottom:449.355000px;}
.y34{bottom:452.235000px;}
.y84{bottom:454.575000px;}
.y133{bottom:456.915000px;}
.yf5{bottom:459.975000px;}
.y20{bottom:461.055000px;}
.y110{bottom:462.855000px;}
.ybf{bottom:467.355000px;}
.y33{bottom:469.515000px;}
.y83{bottom:472.935000px;}
.y132{bottom:474.195000px;}
.yf4{bottom:477.975000px;}
.y10f{bottom:480.135000px;}
.ybe{bottom:484.635000px;}
.y32{bottom:486.795000px;}
.y1f{bottom:488.595000px;}
.y82{bottom:489.675000px;}
.y131{bottom:491.475000px;}
.yf3{bottom:495.975000px;}
.y10e{bottom:497.415000px;}
.ybd{bottom:502.275000px;}
.y31{bottom:503.895000px;}
.y1e{bottom:506.055000px;}
.y81{bottom:507.315000px;}
.y130{bottom:508.755000px;}
.yf2{bottom:513.975000px;}
.y10d{bottom:514.695000px;}
.ybc{bottom:519.555000px;}
.y80{bottom:524.595000px;}
.y12f{bottom:526.035000px;}
.y10c{bottom:531.975000px;}
.yf1{bottom:535.395000px;}
.ybb{bottom:536.475000px;}
.y7f{bottom:541.875000px;}
.y12e{bottom:543.135000px;}
.y10b{bottom:549.255000px;}
.yf0{bottom:552.855000px;}
.yba{bottom:553.575000px;}
.y7e{bottom:559.155000px;}
.y12d{bottom:560.415000px;}
.y10a{bottom:566.355000px;}
.yea{bottom:567.255000px;}
.yb9{bottom:571.215000px;}
.y7d{bottom:572.835000px;}
.y12c{bottom:577.695000px;}
.y7c{bottom:582.915000px;}
.y109{bottom:583.635000px;}
.yef{bottom:585.255000px;}
.yb8{bottom:589.575000px;}
.y12b{bottom:594.975000px;}
.y108{bottom:600.915000px;}
.yed{bottom:603.255000px;}
.yb7{bottom:607.965000px;}
.y7b{bottom:612.285000px;}
.y107{bottom:618.225000px;}
.ye9{bottom:621.285000px;}
.yb6{bottom:626.325000px;}
.y7a{bottom:629.565000px;}
.y106{bottom:635.505000px;}
.ye7{bottom:639.285000px;}
.yb5{bottom:644.505000px;}
.y12a{bottom:646.305000px;}
.y79{bottom:646.665000px;}
.y105{bottom:652.785000px;}
.ye6{bottom:660.525000px;}
.yb4{bottom:661.425000px;}
.y78{bottom:663.585000px;}
.y129{bottom:663.945000px;}
.y104{bottom:669.885000px;}
.ye5{bottom:678.165000px;}
.yb3{bottom:678.705000px;}
.y77{bottom:681.225000px;}
.y103{bottom:687.165000px;}
.ye4{bottom:695.085000px;}
.yb2{bottom:696.345000px;}
.y76{bottom:698.505000px;}
.y102{bottom:704.445000px;}
.ye3{bottom:709.125000px;}
.yb1{bottom:714.705000px;}
.y75{bottom:715.785000px;}
.y101{bottom:721.365000px;}
.y74{bottom:732.885000px;}
.yb0{bottom:733.065000px;}
.y100{bottom:738.645000px;}
.y73{bottom:749.805000px;}
.y128{bottom:750.165000px;}
.yaf{bottom:751.245000px;}
.yff{bottom:755.745000px;}
.y72{bottom:767.085000px;}
.y127{bottom:767.445000px;}
.yae{bottom:769.605000px;}
.y71{bottom:784.725000px;}
.yad{bottom:787.965000px;}
.y70{bottom:802.005000px;}
.yac{bottom:804.885000px;}
.y1a{bottom:810.465000px;}
.y6f{bottom:819.285000px;}
.yab{bottom:822.165000px;}
.y6e{bottom:836.385000px;}
.yaa{bottom:839.625000px;}
.yf{bottom:840.165000px;}
.y6d{bottom:853.665000px;}
.ya9{bottom:856.905000px;}
.y126{bottom:870.630000px;}
.y6c{bottom:870.990000px;}
.ya8{bottom:875.310000px;}
.y6b{bottom:888.270000px;}
.ya7{bottom:892.590000px;}
.y6a{bottom:905.550000px;}
.ya6{bottom:910.950000px;}
.y69{bottom:922.830000px;}
.ya5{bottom:929.310000px;}
.ye2{bottom:930.930000px;}
.y68{bottom:939.930000px;}
.ye1{bottom:945.330000px;}
.ya4{bottom:947.490000px;}
.y67{bottom:957.210000px;}
.ye0{bottom:963.330000px;}
.ya3{bottom:965.850000px;}
.y66{bottom:974.490000px;}
.ydf{bottom:981.330000px;}
.ya2{bottom:984.210000px;}
.y65{bottom:991.770000px;}
.yde{bottom:999.150000px;}
.ya1{bottom:1002.210000px;}
.y64{bottom:1009.050000px;}
.ydd{bottom:1017.150000px;}
.ya0{bottom:1019.490000px;}
.y63{bottom:1026.150000px;}
.yd{bottom:1030.830000px;}
.ydc{bottom:1035.150000px;}
.y9f{bottom:1036.950000px;}
.yfe{bottom:1038.570000px;}
.y62{bottom:1043.430000px;}
.ydb{bottom:1053.150000px;}
.y9e{bottom:1055.310000px;}
.y6{bottom:1056.210000px;}
.y61{bottom:1060.710000px;}
.yda{bottom:1071.150000px;}
.y9d{bottom:1073.310000px;}
.y60{bottom:1077.990000px;}
.yd9{bottom:1089.150000px;}
.y9c{bottom:1090.590000px;}
.y5f{bottom:1095.270000px;}
.yd8{bottom:1107.150000px;}
.y9b{bottom:1108.230000px;}
.y5e{bottom:1112.550000px;}
.yd6{bottom:1125.150000px;}
.y9a{bottom:1126.410000px;}
.y5d{bottom:1129.650000px;}
.y99{bottom:1144.800000px;}
.yd5{bottom:1146.600000px;}
.y5c{bottom:1146.960000px;}
.y98{bottom:1163.160000px;}
.yd4{bottom:1163.880000px;}
.y5b{bottom:1164.240000px;}
.h25{height:17.100000px;}
.h27{height:17.136000px;}
.h24{height:17.280000px;}
.h23{height:17.316000px;}
.hb{height:25.020000px;}
.h12{height:29.700000px;}
.h11{height:32.103633px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1d{height:36.720000px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h19{height:42.186445px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h15{height:47.980898px;}
.h17{height:49.742227px;}
.h1e{height:52.260820px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h18{height:58.621992px;}
.h1c{height:58.651172px;}
.hf{height:59.439023px;}
.h1f{height:60.226875px;}
.h10{height:61.189805px;}
.h22{height:61.423863px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h26{height:71.136000px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h21{height:98.971172px;}
.h20{height:103.594219px;}
.h7{height:121.536000px;}
.hc{height:190.650000px;}
.h14{height:517.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wf{width:79.560000px;}
.w13{width:88.560000px;}
.w16{width:118.620000px;}
.wc{width:132.516000px;}
.w5{width:151.950000px;}
.w11{width:183.810000px;}
.w12{width:212.790000px;}
.w8{width:223.455000px;}
.w10{width:243.435000px;}
.wd{width:244.290000px;}
.w14{width:265.755000px;}
.we{width:272.055000px;}
.wa{width:343.695000px;}
.w15{width:344.595000px;}
.wb{width:385.635000px;}
.w9{width:507.675000px;}
.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;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xb{left:27.936000px;}
.xf{left:41.436000px;}
.xe{left:52.956000px;}
.x1{left:81.000000px;}
.x29{left:92.195987px;}
.x23{left:93.995987px;}
.x4{left:98.130000px;}
.x1e{left:102.455987px;}
.x16{left:108.035987px;}
.xc{left:120.450000px;}
.x17{left:135.035987px;}
.xd{left:140.970000px;}
.x10{left:145.110000px;}
.x1b{left:177.689987px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x18{left:241.409987px;}
.x25{left:249.149987px;}
.x8{left:272.235000px;}
.x24{left:291.854987px;}
.x12{left:304.455000px;}
.x1f{left:325.515000px;}
.x6{left:331.995000px;}
.x26{left:347.835000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x2a{left:374.834987px;}
.x14{left:396.434987px;}
.x19{left:425.775000px;}
.x9{left:439.500000px;}
.x15{left:452.954987px;}
.x1c{left:459.435000px;}
.x20{left:509.685000px;}
.x1a{left:678.389987px;}
.x22{left:686.309987px;}
.x27{left:692.790000px;}
.x28{left:714.749987px;}
.x21{left:722.850000px;}
.x1d{left:731.850000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:35.840000pt;}
.v3{vertical-align:40.960000pt;}
.v4{vertical-align:60.800000pt;}
.lsf{letter-spacing:-4.160000pt;}
.ls1b{letter-spacing:-3.792000pt;}
.ls10{letter-spacing:-3.520000pt;}
.ls8{letter-spacing:-1.845333pt;}
.ls9{letter-spacing:-1.333333pt;}
.lsa{letter-spacing:-1.205333pt;}
.ls22{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.265067pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.077867pt;}
.lsb{letter-spacing:0.082667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.173333pt;}
.ls1e{letter-spacing:0.183680pt;}
.ls18{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.408960pt;}
.ls21{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls4{letter-spacing:0.794880pt;}
.ls14{letter-spacing:1.830400pt;}
.ls12{letter-spacing:1.832960pt;}
.ls13{letter-spacing:2.827520pt;}
.ls20{letter-spacing:14.032640pt;}
.ls1f{letter-spacing:40.272640pt;}
.ls17{letter-spacing:56.912640pt;}
.ls15{letter-spacing:101.494187pt;}
.ws13{word-spacing:-53.120000pt;}
.ws12{word-spacing:-41.481813pt;}
.ws11{word-spacing:-37.760640pt;}
.ws5{word-spacing:-19.761067pt;}
.ws4{word-spacing:-19.633067pt;}
.ws3{word-spacing:-19.121067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws14{word-spacing:-13.824000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.178453pt;}
.ws6{word-spacing:-12.087787pt;}
.wse{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.992000pt;}
.wsd{word-spacing:-9.760000pt;}
.wsc{word-spacing:-9.120000pt;}
.ws7{word-spacing:-7.810560pt;}
.ws9{word-spacing:-7.232000pt;}
.wsf{word-spacing:0.000000pt;}
._d{margin-left:-6.215040pt;}
._16{margin-left:-5.205760pt;}
._3{margin-left:-4.302720pt;}
._2{margin-left:-2.805547pt;}
._e{margin-left:-1.910187pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.061333pt;}
._7{width:1.999360pt;}
._5{width:2.954667pt;}
._a{width:3.993173pt;}
._4{width:5.174613pt;}
._10{width:6.234667pt;}
._11{width:7.596160pt;}
._12{width:8.565973pt;}
._14{width:9.679360pt;}
._13{width:10.590933pt;}
._b{width:11.633280pt;}
._6{width:15.010560pt;}
._17{width:15.997013pt;}
._c{width:17.224107pt;}
._15{width:18.725547pt;}
._8{width:19.857067pt;}
._9{width:21.005013pt;}
._f{width:23.425920pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.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;}
.y1b{bottom:0.160000pt;}
.ye8{bottom:2.880000pt;}
.yd7{bottom:3.040000pt;}
.y19{bottom:3.200000pt;}
.yee{bottom:3.226667pt;}
.y3{bottom:3.360000pt;}
.y52{bottom:3.680000pt;}
.ye{bottom:8.640000pt;}
.y50{bottom:9.440000pt;}
.y1c{bottom:11.200000pt;}
.yc{bottom:12.480000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y4d{bottom:18.560000pt;}
.y51{bottom:20.000000pt;}
.y18{bottom:21.280000pt;}
.y4f{bottom:22.560000pt;}
.yb{bottom:27.040000pt;}
.y5{bottom:28.000000pt;}
.y4c{bottom:33.920000pt;}
.y17{bottom:35.880000pt;}
.yec{bottom:36.026667pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.000000pt;}
.y4b{bottom:49.320000pt;}
.y16{bottom:50.600000pt;}
.yeb{bottom:51.226667pt;}
.y15{bottom:62.280000pt;}
.y4a{bottom:64.680000pt;}
.y9{bottom:65.280000pt;}
.y14{bottom:78.440000pt;}
.y49{bottom:80.040000pt;}
.y8{bottom:82.746667pt;}
.y125{bottom:89.472000pt;}
.y13{bottom:94.760000pt;}
.y48{bottom:95.240000pt;}
.y7{bottom:99.066667pt;}
.yfd{bottom:99.232000pt;}
.yd3{bottom:103.392000pt;}
.y97{bottom:104.032000pt;}
.y124{bottom:104.832000pt;}
.y5a{bottom:107.712000pt;}
.y47{bottom:110.600000pt;}
.y12{bottom:111.240000pt;}
.yfc{bottom:114.432000pt;}
.yd2{bottom:118.752000pt;}
.y96{bottom:120.032000pt;}
.y123{bottom:120.192000pt;}
.y59{bottom:122.912000pt;}
.y46{bottom:125.960000pt;}
.yfb{bottom:126.912000pt;}
.yd1{bottom:134.106667pt;}
.y11{bottom:134.120000pt;}
.y95{bottom:135.386667pt;}
.y122{bottom:135.546667pt;}
.y58{bottom:138.266667pt;}
.y45{bottom:141.320000pt;}
.y143{bottom:145.466667pt;}
.yd0{bottom:149.306667pt;}
.y121{bottom:150.746667pt;}
.y94{bottom:151.066667pt;}
.y57{bottom:153.626667pt;}
.y10{bottom:155.880000pt;}
.y44{bottom:156.680000pt;}
.y142{bottom:160.826667pt;}
.y30{bottom:163.880000pt;}
.ycf{bottom:164.346667pt;}
.y120{bottom:166.106667pt;}
.y93{bottom:167.386667pt;}
.y56{bottom:168.986667pt;}
.y43{bottom:172.040000pt;}
.y141{bottom:176.186667pt;}
.y2f{bottom:177.480000pt;}
.yce{bottom:179.706667pt;}
.y11f{bottom:181.466667pt;}
.y92{bottom:183.546667pt;}
.y55{bottom:184.346667pt;}
.y42{bottom:187.240000pt;}
.y140{bottom:191.546667pt;}
.y2e{bottom:193.480000pt;}
.ycd{bottom:195.066667pt;}
.y11e{bottom:196.826667pt;}
.y54{bottom:199.386667pt;}
.y91{bottom:199.866667pt;}
.y41{bottom:202.600000pt;}
.y13f{bottom:206.906667pt;}
.y2d{bottom:208.840000pt;}
.ycc{bottom:210.746667pt;}
.y11d{bottom:212.186667pt;}
.y53{bottom:215.226667pt;}
.y90{bottom:215.866667pt;}
.y40{bottom:217.960000pt;}
.y13e{bottom:222.106667pt;}
.y2c{bottom:224.200000pt;}
.ycb{bottom:226.106667pt;}
.y11c{bottom:227.546667pt;}
.y4e{bottom:227.866667pt;}
.y8f{bottom:231.546667pt;}
.y3f{bottom:233.320000pt;}
.y13d{bottom:237.466667pt;}
.y2b{bottom:239.560000pt;}
.yca{bottom:241.306667pt;}
.y11b{bottom:242.746667pt;}
.y8e{bottom:246.586667pt;}
.y3e{bottom:248.680000pt;}
.y13c{bottom:252.826667pt;}
.y2a{bottom:255.080000pt;}
.yc9{bottom:257.626667pt;}
.y11a{bottom:258.106667pt;}
.y1d{bottom:260.506667pt;}
.y8d{bottom:262.106667pt;}
.y3d{bottom:264.040000pt;}
.y13b{bottom:268.186667pt;}
.y29{bottom:270.600000pt;}
.y119{bottom:273.466667pt;}
.yc8{bottom:273.946667pt;}
.y8c{bottom:277.466667pt;}
.y3c{bottom:279.266667pt;}
.y13a{bottom:283.546667pt;}
.y28{bottom:285.986667pt;}
.y118{bottom:288.826667pt;}
.yc7{bottom:289.306667pt;}
.y8b{bottom:293.786667pt;}
.y3b{bottom:294.626667pt;}
.y139{bottom:298.746667pt;}
.y27{bottom:301.506667pt;}
.y117{bottom:304.226667pt;}
.yc6{bottom:305.666667pt;}
.y3a{bottom:309.986667pt;}
.y8a{bottom:310.146667pt;}
.y138{bottom:314.146667pt;}
.y26{bottom:317.026667pt;}
.y116{bottom:319.586667pt;}
.yc5{bottom:321.506667pt;}
.y39{bottom:325.346667pt;}
.y89{bottom:326.466667pt;}
.y137{bottom:329.506667pt;}
.yfa{bottom:332.226667pt;}
.y25{bottom:332.386667pt;}
.y115{bottom:334.786667pt;}
.yc4{bottom:336.866667pt;}
.y38{bottom:340.706667pt;}
.y88{bottom:342.786667pt;}
.yf9{bottom:344.866667pt;}
.y24{bottom:347.906667pt;}
.y114{bottom:350.146667pt;}
.yc3{bottom:352.546667pt;}
.y37{bottom:355.906667pt;}
.y87{bottom:357.666667pt;}
.y136{bottom:360.226667pt;}
.yf8{bottom:360.866667pt;}
.y23{bottom:363.266667pt;}
.y113{bottom:365.506667pt;}
.yc2{bottom:367.906667pt;}
.y36{bottom:371.266667pt;}
.y86{bottom:373.346667pt;}
.y135{bottom:375.586667pt;}
.yf7{bottom:376.866667pt;}
.y22{bottom:378.786667pt;}
.y112{bottom:380.866667pt;}
.yc1{bottom:384.226667pt;}
.y35{bottom:386.626667pt;}
.y85{bottom:388.706667pt;}
.y134{bottom:390.786667pt;}
.yf6{bottom:392.866667pt;}
.y21{bottom:394.306667pt;}
.y111{bottom:396.226667pt;}
.yc0{bottom:399.426667pt;}
.y34{bottom:401.986667pt;}
.y84{bottom:404.066667pt;}
.y133{bottom:406.146667pt;}
.yf5{bottom:408.866667pt;}
.y20{bottom:409.826667pt;}
.y110{bottom:411.426667pt;}
.ybf{bottom:415.426667pt;}
.y33{bottom:417.346667pt;}
.y83{bottom:420.386667pt;}
.y132{bottom:421.506667pt;}
.yf4{bottom:424.866667pt;}
.y10f{bottom:426.786667pt;}
.ybe{bottom:430.786667pt;}
.y32{bottom:432.706667pt;}
.y1f{bottom:434.306667pt;}
.y82{bottom:435.266667pt;}
.y131{bottom:436.866667pt;}
.yf3{bottom:440.866667pt;}
.y10e{bottom:442.146667pt;}
.ybd{bottom:446.466667pt;}
.y31{bottom:447.906667pt;}
.y1e{bottom:449.826667pt;}
.y81{bottom:450.946667pt;}
.y130{bottom:452.226667pt;}
.yf2{bottom:456.866667pt;}
.y10d{bottom:457.506667pt;}
.ybc{bottom:461.826667pt;}
.y80{bottom:466.306667pt;}
.y12f{bottom:467.586667pt;}
.y10c{bottom:472.866667pt;}
.yf1{bottom:475.906667pt;}
.ybb{bottom:476.866667pt;}
.y7f{bottom:481.666667pt;}
.y12e{bottom:482.786667pt;}
.y10b{bottom:488.226667pt;}
.yf0{bottom:491.426667pt;}
.yba{bottom:492.066667pt;}
.y7e{bottom:497.026667pt;}
.y12d{bottom:498.146667pt;}
.y10a{bottom:503.426667pt;}
.yea{bottom:504.226667pt;}
.yb9{bottom:507.746667pt;}
.y7d{bottom:509.186667pt;}
.y12c{bottom:513.506667pt;}
.y7c{bottom:518.146667pt;}
.y109{bottom:518.786667pt;}
.yef{bottom:520.226667pt;}
.yb8{bottom:524.066667pt;}
.y12b{bottom:528.866667pt;}
.y108{bottom:534.146667pt;}
.yed{bottom:536.226667pt;}
.yb7{bottom:540.413333pt;}
.y7b{bottom:544.253333pt;}
.y107{bottom:549.533333pt;}
.ye9{bottom:552.253333pt;}
.yb6{bottom:556.733333pt;}
.y7a{bottom:559.613333pt;}
.y106{bottom:564.893333pt;}
.ye7{bottom:568.253333pt;}
.yb5{bottom:572.893333pt;}
.y12a{bottom:574.493333pt;}
.y79{bottom:574.813333pt;}
.y105{bottom:580.253333pt;}
.ye6{bottom:587.133333pt;}
.yb4{bottom:587.933333pt;}
.y78{bottom:589.853333pt;}
.y129{bottom:590.173333pt;}
.y104{bottom:595.453333pt;}
.ye5{bottom:602.813333pt;}
.yb3{bottom:603.293333pt;}
.y77{bottom:605.533333pt;}
.y103{bottom:610.813333pt;}
.ye4{bottom:617.853333pt;}
.yb2{bottom:618.973333pt;}
.y76{bottom:620.893333pt;}
.y102{bottom:626.173333pt;}
.ye3{bottom:630.333333pt;}
.yb1{bottom:635.293333pt;}
.y75{bottom:636.253333pt;}
.y101{bottom:641.213333pt;}
.y74{bottom:651.453333pt;}
.yb0{bottom:651.613333pt;}
.y100{bottom:656.573333pt;}
.y73{bottom:666.493333pt;}
.y128{bottom:666.813333pt;}
.yaf{bottom:667.773333pt;}
.yff{bottom:671.773333pt;}
.y72{bottom:681.853333pt;}
.y127{bottom:682.173333pt;}
.yae{bottom:684.093333pt;}
.y71{bottom:697.533333pt;}
.yad{bottom:700.413333pt;}
.y70{bottom:712.893333pt;}
.yac{bottom:715.453333pt;}
.y1a{bottom:720.413333pt;}
.y6f{bottom:728.253333pt;}
.yab{bottom:730.813333pt;}
.y6e{bottom:743.453333pt;}
.yaa{bottom:746.333333pt;}
.yf{bottom:746.813333pt;}
.y6d{bottom:758.813333pt;}
.ya9{bottom:761.693333pt;}
.y126{bottom:773.893333pt;}
.y6c{bottom:774.213333pt;}
.ya8{bottom:778.053333pt;}
.y6b{bottom:789.573333pt;}
.ya7{bottom:793.413333pt;}
.y6a{bottom:804.933333pt;}
.ya6{bottom:809.733333pt;}
.y69{bottom:820.293333pt;}
.ya5{bottom:826.053333pt;}
.ye2{bottom:827.493333pt;}
.y68{bottom:835.493333pt;}
.ye1{bottom:840.293333pt;}
.ya4{bottom:842.213333pt;}
.y67{bottom:850.853333pt;}
.ye0{bottom:856.293333pt;}
.ya3{bottom:858.533333pt;}
.y66{bottom:866.213333pt;}
.ydf{bottom:872.293333pt;}
.ya2{bottom:874.853333pt;}
.y65{bottom:881.573333pt;}
.yde{bottom:888.133333pt;}
.ya1{bottom:890.853333pt;}
.y64{bottom:896.933333pt;}
.ydd{bottom:904.133333pt;}
.ya0{bottom:906.213333pt;}
.y63{bottom:912.133333pt;}
.yd{bottom:916.293333pt;}
.ydc{bottom:920.133333pt;}
.y9f{bottom:921.733333pt;}
.yfe{bottom:923.173333pt;}
.y62{bottom:927.493333pt;}
.ydb{bottom:936.133333pt;}
.y9e{bottom:938.053333pt;}
.y6{bottom:938.853333pt;}
.y61{bottom:942.853333pt;}
.yda{bottom:952.133333pt;}
.y9d{bottom:954.053333pt;}
.y60{bottom:958.213333pt;}
.yd9{bottom:968.133333pt;}
.y9c{bottom:969.413333pt;}
.y5f{bottom:973.573333pt;}
.yd8{bottom:984.133333pt;}
.y9b{bottom:985.093333pt;}
.y5e{bottom:988.933333pt;}
.yd6{bottom:1000.133333pt;}
.y9a{bottom:1001.253333pt;}
.y5d{bottom:1004.133333pt;}
.y99{bottom:1017.600000pt;}
.yd5{bottom:1019.200000pt;}
.y5c{bottom:1019.520000pt;}
.y98{bottom:1033.920000pt;}
.yd4{bottom:1034.560000pt;}
.y5b{bottom:1034.880000pt;}
.h25{height:15.200000pt;}
.h27{height:15.232000pt;}
.h24{height:15.360000pt;}
.h23{height:15.392000pt;}
.hb{height:22.240000pt;}
.h12{height:26.400000pt;}
.h11{height:28.536563pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.640000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h19{height:37.499062pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h15{height:42.649687pt;}
.h17{height:44.215312pt;}
.h1e{height:46.454062pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h18{height:52.108438pt;}
.h1c{height:52.134375pt;}
.hf{height:52.834688pt;}
.h1f{height:53.535000pt;}
.h10{height:54.390938pt;}
.h22{height:54.598989pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h26{height:63.232000pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h21{height:87.974375pt;}
.h20{height:92.083750pt;}
.h7{height:108.032000pt;}
.hc{height:169.466667pt;}
.h14{height:459.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wf{width:70.720000pt;}
.w13{width:78.720000pt;}
.w16{width:105.440000pt;}
.wc{width:117.792000pt;}
.w5{width:135.066667pt;}
.w11{width:163.386667pt;}
.w12{width:189.146667pt;}
.w8{width:198.626667pt;}
.w10{width:216.386667pt;}
.wd{width:217.146667pt;}
.w14{width:236.226667pt;}
.we{width:241.826667pt;}
.wa{width:305.506667pt;}
.w15{width:306.306667pt;}
.wb{width:342.786667pt;}
.w9{width:451.266667pt;}
.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;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xb{left:24.832000pt;}
.xf{left:36.832000pt;}
.xe{left:47.072000pt;}
.x1{left:72.000000pt;}
.x29{left:81.951988pt;}
.x23{left:83.551988pt;}
.x4{left:87.226667pt;}
.x1e{left:91.071988pt;}
.x16{left:96.031988pt;}
.xc{left:107.066667pt;}
.x17{left:120.031988pt;}
.xd{left:125.306667pt;}
.x10{left:128.986667pt;}
.x1b{left:157.946655pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x18{left:214.586655pt;}
.x25{left:221.466655pt;}
.x8{left:241.986667pt;}
.x24{left:259.426655pt;}
.x12{left:270.626667pt;}
.x1f{left:289.346667pt;}
.x6{left:295.106667pt;}
.x26{left:309.186667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x2a{left:333.186655pt;}
.x14{left:352.386655pt;}
.x19{left:378.466667pt;}
.x9{left:390.666667pt;}
.x15{left:402.626655pt;}
.x1c{left:408.386667pt;}
.x20{left:453.053333pt;}
.x1a{left:603.013322pt;}
.x22{left:610.053322pt;}
.x27{left:615.813333pt;}
.x28{left:635.333322pt;}
.x21{left:642.533333pt;}
.x1d{left:650.533333pt;}
.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; }
  