
    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_25bee2b10badfa96351203c5.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_e1a662713949eedca865af9a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_63aa7fbb4b958d1eca2769c6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6b3f9dfa040ac8921cf4f210.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_f2f58b381daeede027ac33db.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_39722ae25dfc9bbc61e26d87.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_f9712f44e0fada895d53108c.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_3cffd3174e67359a616182d3.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_c653957d9f3006978321a3c8.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_d3ad4716c2073eb048813706.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cd32466684fd72adfc0e1cf4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3fd6c2f28baf7c3ce8058883.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_32bb9192a436990a492b6951.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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_68e8371a088e7f6aaeeffa39.woff')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_6c7c1cc154c3ce9e082d6a00.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_9b1b01ff1d6ea0af9fa853ff.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3d39f2bf7322051b2b88a82a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c61a336a1f82055422ef2546.woff')format("woff");}.ff16{font-family:ff16;line-height:0.867676;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:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-2.724000px;}
.ls10{letter-spacing:-2.250000px;}
.ls19{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.596000px;}
.lsf{letter-spacing:-1.482000px;}
.ls14{letter-spacing:-1.128000px;}
.lsd{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.378000px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.994500px;}
.ls0{letter-spacing:1.536000px;}
.ls1{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.086500px;}
.ls2{letter-spacing:2.146500px;}
.ls7{letter-spacing:2.164500px;}
.ls17{letter-spacing:2.190000px;}
.ls6{letter-spacing:2.250000px;}
.ls1a{letter-spacing:2.370000px;}
.ls8{letter-spacing:4.779000px;}
.ls1d{letter-spacing:15.387000px;}
.ls1c{letter-spacing:46.887000px;}
.ls16{letter-spacing:55.737000px;}
.ls13{letter-spacing:64.887000px;}
.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;}
}
.ws8{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws7{word-spacing:-15.619500px;}
.ws3{word-spacing:-15.354000px;}
.wsd{word-spacing:-14.881200px;}
.ws9{word-spacing:-14.625000px;}
.ws6{word-spacing:-13.221000px;}
.wse{word-spacing:-12.885000px;}
.ws2{word-spacing:-12.531000px;}
.wsa{word-spacing:-12.375000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._8{margin-left:-10.943850px;}
._6{margin-left:-9.879600px;}
._9{margin-left:-8.131500px;}
._18{margin-left:-6.459000px;}
._7{margin-left:-4.974900px;}
._2{margin-left:-2.916000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.096000px;}
._b{width:4.183500px;}
._4{width:5.232000px;}
._c{width:6.457500px;}
._d{width:7.540500px;}
._a{width:8.652000px;}
._5{width:9.858000px;}
._f{width:11.479500px;}
._10{width:12.993000px;}
._1b{width:14.569500px;}
._1a{width:15.936000px;}
._e{width:16.989000px;}
._1c{width:20.736000px;}
._19{width:21.880500px;}
._12{width:24.924000px;}
._13{width:26.188500px;}
._11{width:29.686500px;}
._17{width:30.985500px;}
._16{width:35.026500px;}
._15{width:44.004000px;}
._14{width:48.666000px;}
.fc6{color:transparent;}
.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:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.y10b{bottom:3.382500px;}
.yb5{bottom:3.390000px;}
.yb9{bottom:3.420000px;}
.y51{bottom:4.500000px;}
.yc2{bottom:4.515000px;}
.yf9{bottom:4.530000px;}
.ycf{bottom:4.545000px;}
.y1c{bottom:6.780000px;}
.ye{bottom:11.250000px;}
.y50{bottom:11.280000px;}
.y1f{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y4d{bottom:21.420000px;}
.y1b{bottom:22.530000px;}
.y4f{bottom:25.905000px;}
.yb{bottom:30.405000px;}
.y5{bottom:31.500000px;}
.y4c{bottom:38.295000px;}
.y1a{bottom:39.405000px;}
.ya{bottom:46.155000px;}
.y1{bottom:55.162500px;}
.y4b{bottom:55.170000px;}
.y19{bottom:56.325000px;}
.y18{bottom:72.075000px;}
.y9{bottom:73.185000px;}
.y4a{bottom:73.200000px;}
.y17{bottom:85.620000px;}
.y49{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.y58{bottom:97.950000px;}
.y153{bottom:102.450000px;}
.y10d{bottom:103.575000px;}
.y16{bottom:104.745000px;}
.y48{bottom:106.980000px;}
.y94{bottom:109.200000px;}
.y7{bottom:110.310000px;}
.y57{bottom:115.950000px;}
.ye1{bottom:118.237500px;}
.y15{bottom:118.245000px;}
.y152{bottom:119.362500px;}
.y13a{bottom:120.487500px;}
.y47{bottom:124.980000px;}
.y10c{bottom:126.112500px;}
.y93{bottom:127.237500px;}
.y56{bottom:132.862500px;}
.y14{bottom:135.150000px;}
.y151{bottom:136.237500px;}
.y139{bottom:138.487500px;}
.ye0{bottom:140.737500px;}
.y46{bottom:141.900000px;}
.y92{bottom:145.237500px;}
.y10a{bottom:148.612500px;}
.y55{bottom:149.737500px;}
.y13{bottom:153.150000px;}
.y150{bottom:154.245000px;}
.y138{bottom:155.370000px;}
.y45{bottom:158.775000px;}
.y91{bottom:162.150000px;}
.ydf{bottom:163.275000px;}
.yc8{bottom:164.400000px;}
.y32{bottom:167.775000px;}
.y109{bottom:171.150000px;}
.y137{bottom:172.275000px;}
.y12{bottom:172.320000px;}
.y44{bottom:176.775000px;}
.y90{bottom:180.150000px;}
.yc7{bottom:181.275000px;}
.y31{bottom:182.445000px;}
.y54{bottom:184.650000px;}
.yde{bottom:185.775000px;}
.y14f{bottom:188.025000px;}
.y136{bottom:190.275000px;}
.y43{bottom:193.695000px;}
.y108{bottom:195.900000px;}
.y8f{bottom:197.025000px;}
.y11{bottom:198.195000px;}
.y30{bottom:200.445000px;}
.y53{bottom:201.570000px;}
.yc6{bottom:203.820000px;}
.y14e{bottom:206.070000px;}
.y135{bottom:207.195000px;}
.ydd{bottom:208.320000px;}
.y42{bottom:210.570000px;}
.y8e{bottom:213.945000px;}
.y2f{bottom:218.430000px;}
.y52{bottom:218.445000px;}
.y14d{bottom:222.945000px;}
.y10{bottom:222.975000px;}
.y134{bottom:224.070000px;}
.yc5{bottom:226.320000px;}
.y41{bottom:228.600000px;}
.ydc{bottom:230.820000px;}
.y4e{bottom:233.070000px;}
.y2e{bottom:235.350000px;}
.y14c{bottom:239.820000px;}
.y133{bottom:242.070000px;}
.y40{bottom:245.475000px;}
.yc4{bottom:248.850000px;}
.y8d{bottom:249.975000px;}
.y2d{bottom:252.225000px;}
.y107{bottom:254.475000px;}
.ydb{bottom:255.600000px;}
.y14b{bottom:257.850000px;}
.y132{bottom:258.975000px;}
.y3f{bottom:262.350000px;}
.y8c{bottom:267.975000px;}
.y20{bottom:270.225000px;}
.y2c{bottom:270.270000px;}
.yc3{bottom:271.350000px;}
.yda{bottom:273.600000px;}
.y14a{bottom:274.725000px;}
.y131{bottom:275.850000px;}
.y106{bottom:276.975000px;}
.y3e{bottom:280.395000px;}
.y8b{bottom:286.005000px;}
.y2b{bottom:287.145000px;}
.yd9{bottom:290.505000px;}
.y149{bottom:291.645000px;}
.yc1{bottom:293.880000px;}
.y3d{bottom:297.270000px;}
.y105{bottom:301.770000px;}
.y8a{bottom:302.880000px;}
.y2a{bottom:305.130000px;}
.yd8{bottom:307.380000px;}
.y148{bottom:309.630000px;}
.y130{bottom:310.755000px;}
.y3c{bottom:314.175000px;}
.yc0{bottom:316.380000px;}
.y89{bottom:319.755000px;}
.y29{bottom:322.050000px;}
.yd7{bottom:325.395000px;}
.y147{bottom:326.550000px;}
.y12f{bottom:327.675000px;}
.y3b{bottom:332.175000px;}
.y104{bottom:336.675000px;}
.y88{bottom:338.925000px;}
.y28{bottom:340.050000px;}
.yd6{bottom:342.300000px;}
.y146{bottom:343.425000px;}
.y12e{bottom:345.675000px;}
.y3a{bottom:349.095000px;}
.y87{bottom:355.800000px;}
.y27{bottom:356.970000px;}
.yd5{bottom:359.175000px;}
.ybf{bottom:361.425000px;}
.y12d{bottom:362.550000px;}
.y39{bottom:365.970000px;}
.y86{bottom:373.830000px;}
.y26{bottom:374.970000px;}
.yd4{bottom:377.205000px;}
.y145{bottom:378.330000px;}
.y12c{bottom:379.470000px;}
.y103{bottom:381.705000px;}
.y38{bottom:383.970000px;}
.ybe{bottom:387.330000px;}
.y85{bottom:391.830000px;}
.y25{bottom:391.875000px;}
.yd3{bottom:394.080000px;}
.y144{bottom:395.205000px;}
.y12b{bottom:397.455000px;}
.y37{bottom:400.875000px;}
.ybd{bottom:404.205000px;}
.yd2{bottom:407.580000px;}
.y84{bottom:408.705000px;}
.y24{bottom:409.875000px;}
.y143{bottom:413.250000px;}
.y12a{bottom:414.375000px;}
.y36{bottom:417.750000px;}
.yf1{bottom:420.000000px;}
.ybc{bottom:422.250000px;}
.y83{bottom:425.625000px;}
.y23{bottom:426.750000px;}
.y142{bottom:430.125000px;}
.y129{bottom:431.250000px;}
.y35{bottom:435.795000px;}
.yf0{bottom:442.500000px;}
.y82{bottom:443.625000px;}
.ybb{bottom:444.750000px;}
.y141{bottom:447.000000px;}
.y102{bottom:449.250000px;}
.y34{bottom:452.670000px;}
.y22{bottom:453.780000px;}
.y81{bottom:460.545000px;}
.yef{bottom:465.030000px;}
.y128{bottom:466.170000px;}
.yba{bottom:467.280000px;}
.y33{bottom:469.545000px;}
.y21{bottom:471.780000px;}
.y80{bottom:477.420000px;}
.y140{bottom:481.905000px;}
.y127{bottom:483.045000px;}
.yee{bottom:487.530000px;}
.yb8{bottom:489.780000px;}
.y101{bottom:494.325000px;}
.y7f{bottom:495.450000px;}
.y13f{bottom:498.825000px;}
.y126{bottom:501.075000px;}
.yed{bottom:510.075000px;}
.yb7{bottom:512.325000px;}
.y7e{bottom:514.575000px;}
.y13e{bottom:516.825000px;}
.y125{bottom:517.950000px;}
.y100{bottom:520.200000px;}
.y7d{bottom:532.575000px;}
.y13d{bottom:533.700000px;}
.yb6{bottom:534.855000px;}
.yff{bottom:537.120000px;}
.y7c{bottom:549.495000px;}
.y13c{bottom:550.620000px;}
.y124{bottom:552.870000px;}
.yfe{bottom:553.995000px;}
.yec{bottom:555.105000px;}
.yb4{bottom:557.355000px;}
.y7b{bottom:567.495000px;}
.y13b{bottom:568.605000px;}
.y123{bottom:569.745000px;}
.yfd{bottom:571.980000px;}
.yeb{bottom:577.650000px;}
.yb3{bottom:579.900000px;}
.y7a{bottom:585.525000px;}
.y122{bottom:586.650000px;}
.yfc{bottom:588.900000px;}
.yea{bottom:600.150000px;}
.y79{bottom:602.400000px;}
.y121{bottom:604.650000px;}
.yfb{bottom:611.400000px;}
.y78{bottom:620.445000px;}
.y120{bottom:621.570000px;}
.ye9{bottom:622.695000px;}
.yb2{bottom:624.945000px;}
.yfa{bottom:633.945000px;}
.y77{bottom:637.320000px;}
.y11f{bottom:644.070000px;}
.yb1{bottom:647.445000px;}
.y76{bottom:654.195000px;}
.yf8{bottom:656.445000px;}
.ye8{bottom:664.350000px;}
.y11e{bottom:666.600000px;}
.yb0{bottom:669.975000px;}
.y75{bottom:672.225000px;}
.yf7{bottom:678.975000px;}
.ye7{bottom:682.350000px;}
.y74{bottom:689.100000px;}
.yaf{bottom:692.475000px;}
.ye6{bottom:695.850000px;}
.yf6{bottom:701.475000px;}
.yd1{bottom:702.645000px;}
.y73{bottom:706.020000px;}
.y11d{bottom:711.630000px;}
.yae{bottom:717.255000px;}
.yd0{bottom:719.505000px;}
.y72{bottom:724.005000px;}
.yf5{bottom:727.380000px;}
.yad{bottom:734.130000px;}
.y71{bottom:740.880000px;}
.yce{bottom:742.005000px;}
.yf4{bottom:744.300000px;}
.yac{bottom:752.175000px;}
.y1d{bottom:753.300000px;}
.y11c{bottom:756.675000px;}
.y70{bottom:757.800000px;}
.yf3{bottom:761.175000px;}
.ycd{bottom:764.550000px;}
.yab{bottom:769.050000px;}
.y6f{bottom:775.800000px;}
.yf2{bottom:779.175000px;}
.y11b{bottom:782.550000px;}
.yf{bottom:783.675000px;}
.yaa{bottom:785.955000px;}
.ycc{bottom:787.080000px;}
.y6e{bottom:792.705000px;}
.y11a{bottom:799.455000px;}
.ya9{bottom:803.955000px;}
.y6d{bottom:809.580000px;}
.y119{bottom:817.455000px;}
.ya8{bottom:820.830000px;}
.y6c{bottom:827.625000px;}
.ycb{bottom:835.500000px;}
.ya7{bottom:837.750000px;}
.y118{bottom:840.000000px;}
.y6b{bottom:844.500000px;}
.yca{bottom:852.375000px;}
.ya6{bottom:855.750000px;}
.y6a{bottom:861.375000px;}
.y117{bottom:862.500000px;}
.yc9{bottom:865.875000px;}
.ya5{bottom:872.670000px;}
.y69{bottom:879.420000px;}
.y116{bottom:885.045000px;}
.ya4{bottom:889.545000px;}
.y68{bottom:896.295000px;}
.y115{bottom:907.530000px;}
.ya3{bottom:907.545000px;}
.y67{bottom:913.200000px;}
.ya2{bottom:924.450000px;}
.y66{bottom:931.200000px;}
.y114{bottom:932.325000px;}
.ya1{bottom:941.325000px;}
.y65{bottom:948.075000px;}
.y113{bottom:949.200000px;}
.ya0{bottom:959.370000px;}
.y64{bottom:964.995000px;}
.y112{bottom:967.245000px;}
.y9f{bottom:976.245000px;}
.y63{bottom:982.995000px;}
.y111{bottom:989.730000px;}
.y9e{bottom:993.120000px;}
.y62{bottom:999.900000px;}
.y9d{bottom:1011.150000px;}
.y110{bottom:1012.275000px;}
.y61{bottom:1016.775000px;}
.yd{bottom:1021.275000px;}
.y9c{bottom:1029.150000px;}
.y60{bottom:1034.775000px;}
.y9b{bottom:1046.070000px;}
.y6{bottom:1047.195000px;}
.y5f{bottom:1051.695000px;}
.y10f{bottom:1057.320000px;}
.y9a{bottom:1064.070000px;}
.y5e{bottom:1068.570000px;}
.y10e{bottom:1079.850000px;}
.y99{bottom:1083.225000px;}
.ye5{bottom:1084.350000px;}
.y5d{bottom:1086.600000px;}
.y98{bottom:1100.100000px;}
.ye4{bottom:1102.350000px;}
.y5c{bottom:1103.475000px;}
.y97{bottom:1116.975000px;}
.y5b{bottom:1120.380000px;}
.ye3{bottom:1124.880000px;}
.y96{bottom:1136.130000px;}
.y5a{bottom:1138.380000px;}
.ye2{bottom:1147.380000px;}
.y95{bottom:1154.130000px;}
.y59{bottom:1155.255000px;}
.h22{height:16.860000px;}
.h1f{height:16.875000px;}
.h1e{height:16.912500px;}
.h21{height:18.000000px;}
.h20{height:18.037500px;}
.hb{height:25.912500px;}
.h13{height:28.968750px;}
.h12{height:29.953125px;}
.h14{height:30.375000px;}
.h2{height:32.662500px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h1a{height:39.832031px;}
.h1d{height:41.275635px;}
.hd{height:43.075195px;}
.h11{height:43.453125px;}
.ha{height:43.875000px;}
.h18{height:47.074219px;}
.h19{height:48.216797px;}
.h17{height:49.234131px;}
.h1b{height:52.444336px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:237.600000px;}
.h16{height:483.075000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1a{width:49.575000px;}
.w2{width:74.362500px;}
.w4{width:145.275000px;}
.w20{width:147.562500px;}
.w1b{width:153.180000px;}
.w22{width:154.305000px;}
.w17{width:166.680000px;}
.w1c{width:171.225000px;}
.w1f{width:177.975000px;}
.w11{width:185.895000px;}
.w21{width:191.505000px;}
.w25{width:191.520000px;}
.w1d{width:197.130000px;}
.w1e{width:200.520000px;}
.w7{width:214.020000px;}
.wa{width:215.175000px;}
.w12{width:218.520000px;}
.w16{width:220.800000px;}
.w9{width:221.895000px;}
.w24{width:224.175000px;}
.w15{width:242.175000px;}
.w19{width:243.300000px;}
.w14{width:263.595000px;}
.w18{width:264.720000px;}
.wc{width:288.375000px;}
.wb{width:289.500000px;}
.wf{width:291.750000px;}
.w23{width:312.000000px;}
.we{width:439.320000px;}
.wd{width:441.570000px;}
.w13{width:512.550000px;}
.w8{width:533.925000px;}
.w10{width:545.175000px;}
.w5{width:602.670000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:1.125000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.x18{left:20.250000px;}
.x11{left:21.375000px;}
.x14{left:47.287500px;}
.x13{left:48.412500px;}
.x10{left:61.950000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x1d{left:79.987500px;}
.x4{left:81.112487px;}
.x39{left:94.612487px;}
.x6{left:97.987500px;}
.x15{left:100.237500px;}
.x19{left:108.149987px;}
.x1a{left:135.187487px;}
.x32{left:159.929987px;}
.x1b{left:162.224987px;}
.x30{left:194.894987px;}
.xf{left:197.092500px;}
.x40{left:205.019987px;}
.x3d{left:211.769987px;}
.x16{left:214.012500px;}
.x1c{left:216.254987px;}
.x7{left:218.520000px;}
.x35{left:229.799987px;}
.x3a{left:236.550000px;}
.x2f{left:246.674987px;}
.x36{left:250.095000px;}
.x2d{left:251.219987px;}
.x2c{left:255.719987px;}
.x29{left:259.094987px;}
.x3e{left:261.345000px;}
.x21{left:284.999987px;}
.x17{left:287.250000px;}
.xb{left:296.280000px;}
.x31{left:301.875000px;}
.x1f{left:305.250000px;}
.x27{left:314.279987px;}
.x24{left:322.169987px;}
.x12{left:335.662500px;}
.x33{left:348.075000px;}
.x9{left:351.450000px;}
.xa{left:370.605000px;}
.x22{left:372.870000px;}
.xe{left:373.957500px;}
.x41{left:395.370000px;}
.x3b{left:412.275000px;}
.xd{left:437.055000px;}
.x28{left:447.194987px;}
.xc{left:459.600000px;}
.x37{left:518.175000px;}
.x25{left:522.675000px;}
.x20{left:524.925000px;}
.x34{left:593.625000px;}
.x3f{left:607.155000px;}
.x3c{left:613.905000px;}
.x42{left:622.905000px;}
.x2a{left:628.530000px;}
.x26{left:633.074987px;}
.x2e{left:684.869987px;}
.x2b{left:687.104987px;}
.x23{left:734.444987px;}
.x3{left:746.820000px;}
.x38{left:764.850000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls10{letter-spacing:-2.000000pt;}
.ls19{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.418667pt;}
.lsf{letter-spacing:-1.317333pt;}
.ls14{letter-spacing:-1.002667pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.884000pt;}
.ls0{letter-spacing:1.365333pt;}
.ls1{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.854667pt;}
.ls2{letter-spacing:1.908000pt;}
.ls7{letter-spacing:1.924000pt;}
.ls17{letter-spacing:1.946667pt;}
.ls6{letter-spacing:2.000000pt;}
.ls1a{letter-spacing:2.106667pt;}
.ls8{letter-spacing:4.248000pt;}
.ls1d{letter-spacing:13.677333pt;}
.ls1c{letter-spacing:41.677333pt;}
.ls16{letter-spacing:49.544000pt;}
.ls13{letter-spacing:57.677333pt;}
.ws8{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws7{word-spacing:-13.884000pt;}
.ws3{word-spacing:-13.648000pt;}
.wsd{word-spacing:-13.227733pt;}
.ws9{word-spacing:-13.000000pt;}
.ws6{word-spacing:-11.752000pt;}
.wse{word-spacing:-11.453333pt;}
.ws2{word-spacing:-11.138667pt;}
.wsa{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._8{margin-left:-9.727867pt;}
._6{margin-left:-8.781867pt;}
._9{margin-left:-7.228000pt;}
._18{margin-left:-5.741333pt;}
._7{margin-left:-4.422133pt;}
._2{margin-left:-2.592000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.752000pt;}
._b{width:3.718667pt;}
._4{width:4.650667pt;}
._c{width:5.740000pt;}
._d{width:6.702667pt;}
._a{width:7.690667pt;}
._5{width:8.762667pt;}
._f{width:10.204000pt;}
._10{width:11.549333pt;}
._1b{width:12.950667pt;}
._1a{width:14.165333pt;}
._e{width:15.101333pt;}
._1c{width:18.432000pt;}
._19{width:19.449333pt;}
._12{width:22.154667pt;}
._13{width:23.278667pt;}
._11{width:26.388000pt;}
._17{width:27.542667pt;}
._16{width:31.134667pt;}
._15{width:39.114667pt;}
._14{width:43.258667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.y10b{bottom:3.006667pt;}
.yb5{bottom:3.013333pt;}
.yb9{bottom:3.040000pt;}
.y51{bottom:4.000000pt;}
.yc2{bottom:4.013333pt;}
.yf9{bottom:4.026667pt;}
.ycf{bottom:4.040000pt;}
.y1c{bottom:6.026667pt;}
.ye{bottom:10.000000pt;}
.y50{bottom:10.026667pt;}
.y1f{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y4d{bottom:19.040000pt;}
.y1b{bottom:20.026667pt;}
.y4f{bottom:23.026667pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:28.000000pt;}
.y4c{bottom:34.040000pt;}
.y1a{bottom:35.026667pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:49.033333pt;}
.y4b{bottom:49.040000pt;}
.y19{bottom:50.066667pt;}
.y18{bottom:64.066667pt;}
.y9{bottom:65.053333pt;}
.y4a{bottom:65.066667pt;}
.y17{bottom:76.106667pt;}
.y49{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.y58{bottom:87.066667pt;}
.y153{bottom:91.066667pt;}
.y10d{bottom:92.066667pt;}
.y16{bottom:93.106667pt;}
.y48{bottom:95.093333pt;}
.y94{bottom:97.066667pt;}
.y7{bottom:98.053333pt;}
.y57{bottom:103.066667pt;}
.ye1{bottom:105.100000pt;}
.y15{bottom:105.106667pt;}
.y152{bottom:106.100000pt;}
.y13a{bottom:107.100000pt;}
.y47{bottom:111.093333pt;}
.y10c{bottom:112.100000pt;}
.y93{bottom:113.100000pt;}
.y56{bottom:118.100000pt;}
.y14{bottom:120.133333pt;}
.y151{bottom:121.100000pt;}
.y139{bottom:123.100000pt;}
.ye0{bottom:125.100000pt;}
.y46{bottom:126.133333pt;}
.y92{bottom:129.100000pt;}
.y10a{bottom:132.100000pt;}
.y55{bottom:133.100000pt;}
.y13{bottom:136.133333pt;}
.y150{bottom:137.106667pt;}
.y138{bottom:138.106667pt;}
.y45{bottom:141.133333pt;}
.y91{bottom:144.133333pt;}
.ydf{bottom:145.133333pt;}
.yc8{bottom:146.133333pt;}
.y32{bottom:149.133333pt;}
.y109{bottom:152.133333pt;}
.y137{bottom:153.133333pt;}
.y12{bottom:153.173333pt;}
.y44{bottom:157.133333pt;}
.y90{bottom:160.133333pt;}
.yc7{bottom:161.133333pt;}
.y31{bottom:162.173333pt;}
.y54{bottom:164.133333pt;}
.yde{bottom:165.133333pt;}
.y14f{bottom:167.133333pt;}
.y136{bottom:169.133333pt;}
.y43{bottom:172.173333pt;}
.y108{bottom:174.133333pt;}
.y8f{bottom:175.133333pt;}
.y11{bottom:176.173333pt;}
.y30{bottom:178.173333pt;}
.y53{bottom:179.173333pt;}
.yc6{bottom:181.173333pt;}
.y14e{bottom:183.173333pt;}
.y135{bottom:184.173333pt;}
.ydd{bottom:185.173333pt;}
.y42{bottom:187.173333pt;}
.y8e{bottom:190.173333pt;}
.y2f{bottom:194.160000pt;}
.y52{bottom:194.173333pt;}
.y14d{bottom:198.173333pt;}
.y10{bottom:198.200000pt;}
.y134{bottom:199.173333pt;}
.yc5{bottom:201.173333pt;}
.y41{bottom:203.200000pt;}
.ydc{bottom:205.173333pt;}
.y4e{bottom:207.173333pt;}
.y2e{bottom:209.200000pt;}
.y14c{bottom:213.173333pt;}
.y133{bottom:215.173333pt;}
.y40{bottom:218.200000pt;}
.yc4{bottom:221.200000pt;}
.y8d{bottom:222.200000pt;}
.y2d{bottom:224.200000pt;}
.y107{bottom:226.200000pt;}
.ydb{bottom:227.200000pt;}
.y14b{bottom:229.200000pt;}
.y132{bottom:230.200000pt;}
.y3f{bottom:233.200000pt;}
.y8c{bottom:238.200000pt;}
.y20{bottom:240.200000pt;}
.y2c{bottom:240.240000pt;}
.yc3{bottom:241.200000pt;}
.yda{bottom:243.200000pt;}
.y14a{bottom:244.200000pt;}
.y131{bottom:245.200000pt;}
.y106{bottom:246.200000pt;}
.y3e{bottom:249.240000pt;}
.y8b{bottom:254.226667pt;}
.y2b{bottom:255.240000pt;}
.yd9{bottom:258.226667pt;}
.y149{bottom:259.240000pt;}
.yc1{bottom:261.226667pt;}
.y3d{bottom:264.240000pt;}
.y105{bottom:268.240000pt;}
.y8a{bottom:269.226667pt;}
.y2a{bottom:271.226667pt;}
.yd8{bottom:273.226667pt;}
.y148{bottom:275.226667pt;}
.y130{bottom:276.226667pt;}
.y3c{bottom:279.266667pt;}
.yc0{bottom:281.226667pt;}
.y89{bottom:284.226667pt;}
.y29{bottom:286.266667pt;}
.yd7{bottom:289.240000pt;}
.y147{bottom:290.266667pt;}
.y12f{bottom:291.266667pt;}
.y3b{bottom:295.266667pt;}
.y104{bottom:299.266667pt;}
.y88{bottom:301.266667pt;}
.y28{bottom:302.266667pt;}
.yd6{bottom:304.266667pt;}
.y146{bottom:305.266667pt;}
.y12e{bottom:307.266667pt;}
.y3a{bottom:310.306667pt;}
.y87{bottom:316.266667pt;}
.y27{bottom:317.306667pt;}
.yd5{bottom:319.266667pt;}
.ybf{bottom:321.266667pt;}
.y12d{bottom:322.266667pt;}
.y39{bottom:325.306667pt;}
.y86{bottom:332.293333pt;}
.y26{bottom:333.306667pt;}
.yd4{bottom:335.293333pt;}
.y145{bottom:336.293333pt;}
.y12c{bottom:337.306667pt;}
.y103{bottom:339.293333pt;}
.y38{bottom:341.306667pt;}
.ybe{bottom:344.293333pt;}
.y85{bottom:348.293333pt;}
.y25{bottom:348.333333pt;}
.yd3{bottom:350.293333pt;}
.y144{bottom:351.293333pt;}
.y12b{bottom:353.293333pt;}
.y37{bottom:356.333333pt;}
.ybd{bottom:359.293333pt;}
.yd2{bottom:362.293333pt;}
.y84{bottom:363.293333pt;}
.y24{bottom:364.333333pt;}
.y143{bottom:367.333333pt;}
.y12a{bottom:368.333333pt;}
.y36{bottom:371.333333pt;}
.yf1{bottom:373.333333pt;}
.ybc{bottom:375.333333pt;}
.y83{bottom:378.333333pt;}
.y23{bottom:379.333333pt;}
.y142{bottom:382.333333pt;}
.y129{bottom:383.333333pt;}
.y35{bottom:387.373333pt;}
.yf0{bottom:393.333333pt;}
.y82{bottom:394.333333pt;}
.ybb{bottom:395.333333pt;}
.y141{bottom:397.333333pt;}
.y102{bottom:399.333333pt;}
.y34{bottom:402.373333pt;}
.y22{bottom:403.360000pt;}
.y81{bottom:409.373333pt;}
.yef{bottom:413.360000pt;}
.y128{bottom:414.373333pt;}
.yba{bottom:415.360000pt;}
.y33{bottom:417.373333pt;}
.y21{bottom:419.360000pt;}
.y80{bottom:424.373333pt;}
.y140{bottom:428.360000pt;}
.y127{bottom:429.373333pt;}
.yee{bottom:433.360000pt;}
.yb8{bottom:435.360000pt;}
.y101{bottom:439.400000pt;}
.y7f{bottom:440.400000pt;}
.y13f{bottom:443.400000pt;}
.y126{bottom:445.400000pt;}
.yed{bottom:453.400000pt;}
.yb7{bottom:455.400000pt;}
.y7e{bottom:457.400000pt;}
.y13e{bottom:459.400000pt;}
.y125{bottom:460.400000pt;}
.y100{bottom:462.400000pt;}
.y7d{bottom:473.400000pt;}
.y13d{bottom:474.400000pt;}
.yb6{bottom:475.426667pt;}
.yff{bottom:477.440000pt;}
.y7c{bottom:488.440000pt;}
.y13c{bottom:489.440000pt;}
.y124{bottom:491.440000pt;}
.yfe{bottom:492.440000pt;}
.yec{bottom:493.426667pt;}
.yb4{bottom:495.426667pt;}
.y7b{bottom:504.440000pt;}
.y13b{bottom:505.426667pt;}
.y123{bottom:506.440000pt;}
.yfd{bottom:508.426667pt;}
.yeb{bottom:513.466667pt;}
.yb3{bottom:515.466667pt;}
.y7a{bottom:520.466667pt;}
.y122{bottom:521.466667pt;}
.yfc{bottom:523.466667pt;}
.yea{bottom:533.466667pt;}
.y79{bottom:535.466667pt;}
.y121{bottom:537.466667pt;}
.yfb{bottom:543.466667pt;}
.y78{bottom:551.506667pt;}
.y120{bottom:552.506667pt;}
.ye9{bottom:553.506667pt;}
.yb2{bottom:555.506667pt;}
.yfa{bottom:563.506667pt;}
.y77{bottom:566.506667pt;}
.y11f{bottom:572.506667pt;}
.yb1{bottom:575.506667pt;}
.y76{bottom:581.506667pt;}
.yf8{bottom:583.506667pt;}
.ye8{bottom:590.533333pt;}
.y11e{bottom:592.533333pt;}
.yb0{bottom:595.533333pt;}
.y75{bottom:597.533333pt;}
.yf7{bottom:603.533333pt;}
.ye7{bottom:606.533333pt;}
.y74{bottom:612.533333pt;}
.yaf{bottom:615.533333pt;}
.ye6{bottom:618.533333pt;}
.yf6{bottom:623.533333pt;}
.yd1{bottom:624.573333pt;}
.y73{bottom:627.573333pt;}
.y11d{bottom:632.560000pt;}
.yae{bottom:637.560000pt;}
.yd0{bottom:639.560000pt;}
.y72{bottom:643.560000pt;}
.yf5{bottom:646.560000pt;}
.yad{bottom:652.560000pt;}
.y71{bottom:658.560000pt;}
.yce{bottom:659.560000pt;}
.yf4{bottom:661.600000pt;}
.yac{bottom:668.600000pt;}
.y1d{bottom:669.600000pt;}
.y11c{bottom:672.600000pt;}
.y70{bottom:673.600000pt;}
.yf3{bottom:676.600000pt;}
.ycd{bottom:679.600000pt;}
.yab{bottom:683.600000pt;}
.y6f{bottom:689.600000pt;}
.yf2{bottom:692.600000pt;}
.y11b{bottom:695.600000pt;}
.yf{bottom:696.600000pt;}
.yaa{bottom:698.626667pt;}
.ycc{bottom:699.626667pt;}
.y6e{bottom:704.626667pt;}
.y11a{bottom:710.626667pt;}
.ya9{bottom:714.626667pt;}
.y6d{bottom:719.626667pt;}
.y119{bottom:726.626667pt;}
.ya8{bottom:729.626667pt;}
.y6c{bottom:735.666667pt;}
.ycb{bottom:742.666667pt;}
.ya7{bottom:744.666667pt;}
.y118{bottom:746.666667pt;}
.y6b{bottom:750.666667pt;}
.yca{bottom:757.666667pt;}
.ya6{bottom:760.666667pt;}
.y6a{bottom:765.666667pt;}
.y117{bottom:766.666667pt;}
.yc9{bottom:769.666667pt;}
.ya5{bottom:775.706667pt;}
.y69{bottom:781.706667pt;}
.y116{bottom:786.706667pt;}
.ya4{bottom:790.706667pt;}
.y68{bottom:796.706667pt;}
.y115{bottom:806.693333pt;}
.ya3{bottom:806.706667pt;}
.y67{bottom:811.733333pt;}
.ya2{bottom:821.733333pt;}
.y66{bottom:827.733333pt;}
.y114{bottom:828.733333pt;}
.ya1{bottom:836.733333pt;}
.y65{bottom:842.733333pt;}
.y113{bottom:843.733333pt;}
.ya0{bottom:852.773333pt;}
.y64{bottom:857.773333pt;}
.y112{bottom:859.773333pt;}
.y9f{bottom:867.773333pt;}
.y63{bottom:873.773333pt;}
.y111{bottom:879.760000pt;}
.y9e{bottom:882.773333pt;}
.y62{bottom:888.800000pt;}
.y9d{bottom:898.800000pt;}
.y110{bottom:899.800000pt;}
.y61{bottom:903.800000pt;}
.yd{bottom:907.800000pt;}
.y9c{bottom:914.800000pt;}
.y60{bottom:919.800000pt;}
.y9b{bottom:929.840000pt;}
.y6{bottom:930.840000pt;}
.y5f{bottom:934.840000pt;}
.y10f{bottom:939.840000pt;}
.y9a{bottom:945.840000pt;}
.y5e{bottom:949.840000pt;}
.y10e{bottom:959.866667pt;}
.y99{bottom:962.866667pt;}
.ye5{bottom:963.866667pt;}
.y5d{bottom:965.866667pt;}
.y98{bottom:977.866667pt;}
.ye4{bottom:979.866667pt;}
.y5c{bottom:980.866667pt;}
.y97{bottom:992.866667pt;}
.y5b{bottom:995.893333pt;}
.ye3{bottom:999.893333pt;}
.y96{bottom:1009.893333pt;}
.y5a{bottom:1011.893333pt;}
.ye2{bottom:1019.893333pt;}
.y95{bottom:1025.893333pt;}
.y59{bottom:1026.893333pt;}
.h22{height:14.986667pt;}
.h1f{height:15.000000pt;}
.h1e{height:15.033333pt;}
.h21{height:16.000000pt;}
.h20{height:16.033333pt;}
.hb{height:23.033333pt;}
.h13{height:25.750000pt;}
.h12{height:26.625000pt;}
.h14{height:27.000000pt;}
.h2{height:29.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h1a{height:35.406250pt;}
.h1d{height:36.689453pt;}
.hd{height:38.289062pt;}
.h11{height:38.625000pt;}
.ha{height:39.000000pt;}
.h18{height:41.843750pt;}
.h19{height:42.859375pt;}
.h17{height:43.763672pt;}
.h1b{height:46.617188pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:211.200000pt;}
.h16{height:429.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1a{width:44.066667pt;}
.w2{width:66.100000pt;}
.w4{width:129.133333pt;}
.w20{width:131.166667pt;}
.w1b{width:136.160000pt;}
.w22{width:137.160000pt;}
.w17{width:148.160000pt;}
.w1c{width:152.200000pt;}
.w1f{width:158.200000pt;}
.w11{width:165.240000pt;}
.w21{width:170.226667pt;}
.w25{width:170.240000pt;}
.w1d{width:175.226667pt;}
.w1e{width:178.240000pt;}
.w7{width:190.240000pt;}
.wa{width:191.266667pt;}
.w12{width:194.240000pt;}
.w16{width:196.266667pt;}
.w9{width:197.240000pt;}
.w24{width:199.266667pt;}
.w15{width:215.266667pt;}
.w19{width:216.266667pt;}
.w14{width:234.306667pt;}
.w18{width:235.306667pt;}
.wc{width:256.333333pt;}
.wb{width:257.333333pt;}
.wf{width:259.333333pt;}
.w23{width:277.333333pt;}
.we{width:390.506667pt;}
.wd{width:392.506667pt;}
.w13{width:455.600000pt;}
.w8{width:474.600000pt;}
.w10{width:484.600000pt;}
.w5{width:535.706667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.x18{left:18.000000pt;}
.x11{left:19.000000pt;}
.x14{left:42.033333pt;}
.x13{left:43.033333pt;}
.x10{left:55.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x1d{left:71.100000pt;}
.x4{left:72.099988pt;}
.x39{left:84.099988pt;}
.x6{left:87.100000pt;}
.x15{left:89.100000pt;}
.x19{left:96.133322pt;}
.x1a{left:120.166655pt;}
.x32{left:142.159988pt;}
.x1b{left:144.199988pt;}
.x30{left:173.239988pt;}
.xf{left:175.193333pt;}
.x40{left:182.239988pt;}
.x3d{left:188.239988pt;}
.x16{left:190.233333pt;}
.x1c{left:192.226655pt;}
.x7{left:194.240000pt;}
.x35{left:204.266655pt;}
.x3a{left:210.266667pt;}
.x2f{left:219.266655pt;}
.x36{left:222.306667pt;}
.x2d{left:223.306655pt;}
.x2c{left:227.306655pt;}
.x29{left:230.306655pt;}
.x3e{left:232.306667pt;}
.x21{left:253.333322pt;}
.x17{left:255.333333pt;}
.xb{left:263.360000pt;}
.x31{left:268.333333pt;}
.x1f{left:271.333333pt;}
.x27{left:279.359988pt;}
.x24{left:286.373322pt;}
.x12{left:298.366667pt;}
.x33{left:309.400000pt;}
.x9{left:312.400000pt;}
.xa{left:329.426667pt;}
.x22{left:331.440000pt;}
.xe{left:332.406667pt;}
.x41{left:351.440000pt;}
.x3b{left:366.466667pt;}
.xd{left:388.493333pt;}
.x28{left:397.506655pt;}
.xc{left:408.533333pt;}
.x37{left:460.600000pt;}
.x25{left:464.600000pt;}
.x20{left:466.600000pt;}
.x34{left:527.666667pt;}
.x3f{left:539.693333pt;}
.x3c{left:545.693333pt;}
.x42{left:553.693333pt;}
.x2a{left:558.693333pt;}
.x26{left:562.733322pt;}
.x2e{left:608.773322pt;}
.x2b{left:610.759988pt;}
.x23{left:652.839988pt;}
.x3{left:663.840000pt;}
.x38{left:679.866667pt;}
}




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