
    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_401804f76525cd0422ee938d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_98753952f186ed87b6c269ea.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb691555aa461a00f3f543ed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_73edd2dad01859baad1efbd2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_3b8ece19cc9d2b065bc6fa34.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b70ffc2aebc35002a182a3db.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ce0357d6bc1535b850296ad4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_1b489cb67626c3176ff9f16a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_53286d4cf93d7b963cdc0088.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884766;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_1e257a142e933ede3fdf2127.woff')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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_a75e0c9055f2567cef6f4e60.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c80ec262d9622757675f13d4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.837891;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_7df9001c5693fda5b0ba9b85.woff')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b99b82480e36000163082ea0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.901855;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_661b7b323a6656681b60812d.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1fe422a6ed0a982df27e2b0a.woff')format("woff");}.ff14{font-family:ff14;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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_745b7b2acff96c3dba7c5f67.woff')format("woff");}.ff15{font-family:ff15;line-height:0.690918;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.003906;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:ff17;src:url('chunks/assets/font_dbf335d7337d908f67fb4dee.woff')format("woff");}.ff17{font-family:ff17;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.190200px;}
.lsc{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.114000px;}
.lsd{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.078000px;}
.ls19{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.187200px;}
.ls1c{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.414600px;}
.ls4{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.576000px;}
.lse{letter-spacing:1.440000px;}
.ls7{letter-spacing:2.160000px;}
.ls8{letter-spacing:4.320000px;}
.ls5{letter-spacing:11.520000px;}
.ls6{letter-spacing:12.240000px;}
.ls14{letter-spacing:18.000000px;}
.lsf{letter-spacing:20.160000px;}
.ls17{letter-spacing:23.040000px;}
.ls15{letter-spacing:29.520000px;}
.ls16{letter-spacing:30.960000px;}
.ls13{letter-spacing:37.440000px;}
.ls10{letter-spacing:39.881280px;}
.ls11{letter-spacing:39.905280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws9{word-spacing:-16.974600px;}
.wsa{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._47{margin-left:-2.146320px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._8{width:2.137920px;}
._d{width:3.709440px;}
._e{width:4.887840px;}
._c{width:5.961600px;}
._14{width:7.586640px;}
._9{width:8.677440px;}
._a{width:10.002240px;}
._19{width:11.459520px;}
._b{width:13.455360px;}
._7{width:14.506560px;}
._15{width:15.535440px;}
._13{width:17.951040px;}
._31{width:19.774800px;}
._2{width:21.395520px;}
._3c{width:22.755600px;}
._12{width:23.912640px;}
._6{width:25.701120px;}
._5{width:26.796240px;}
._1d{width:27.887040px;}
._10{width:29.351760px;}
._f{width:30.666000px;}
._2f{width:31.753200px;}
._1b{width:32.872320px;}
._1a{width:34.007760px;}
._3d{width:35.040240px;}
._25{width:36.090000px;}
._38{width:37.094400px;}
._2a{width:38.260080px;}
._3{width:39.677760px;}
._4{width:40.751520px;}
._41{width:41.859120px;}
._33{width:43.758000px;}
._32{width:45.109440px;}
._2c{width:48.620160px;}
._3f{width:49.636800px;}
._27{width:50.739840px;}
._40{width:51.975360px;}
._36{width:53.256960px;}
._35{width:54.418320px;}
._2b{width:55.875600px;}
._34{width:57.363840px;}
._2e{width:59.417280px;}
._2d{width:60.777360px;}
._30{width:62.795520px;}
._46{width:64.023120px;}
._20{width:65.052000px;}
._1f{width:66.438720px;}
._28{width:69.883200px;}
._45{width:71.472960px;}
._16{width:72.864000px;}
._1e{width:74.387520px;}
._39{width:75.615120px;}
._26{width:77.805360px;}
._18{width:79.090560px;}
._17{width:80.119440px;}
._21{width:85.153680px;}
._42{width:87.136560px;}
._3e{width:91.676160px;}
._44{width:94.954320px;}
._1c{width:96.644160px;}
._3b{width:97.801200px;}
._11{width:99.161280px;}
._3a{width:103.533120px;}
._43{width:110.126160px;}
._29{width:131.673360px;}
._37{width:144.005760px;}
._24{width:152.893440px;}
._22{width:189.617520px;}
._23{width:197.647200px;}
._48{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y7f{bottom:3.945000px;}
.y77{bottom:3.960000px;}
.ybc{bottom:4.005000px;}
.yd2{bottom:4.125000px;}
.y75{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yae{bottom:9.720000px;}
.yf8{bottom:9.900000px;}
.yd0{bottom:13.485000px;}
.y7a{bottom:13.500000px;}
.y7e{bottom:19.065000px;}
.yd1{bottom:23.025000px;}
.y7b{bottom:23.040000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.yad{bottom:34.380000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.yac{bottom:59.040000px;}
.y13{bottom:70.380000px;}
.y3e{bottom:75.240000px;}
.yb0{bottom:81.030000px;}
.yab{bottom:83.730000px;}
.yaa{bottom:108.390000px;}
.yb1{bottom:119.340000px;}
.y89{bottom:124.560000px;}
.y3a{bottom:124.920000px;}
.y122{bottom:131.040000px;}
.ya9{bottom:133.050000px;}
.y69{bottom:134.100000px;}
.ya2{bottom:135.000000px;}
.y88{bottom:146.340000px;}
.y39{bottom:149.580000px;}
.y11c{bottom:155.340000px;}
.y121{bottom:155.700000px;}
.ya8{bottom:157.710000px;}
.y68{bottom:158.760000px;}
.yf3{bottom:161.280000px;}
.y87{bottom:168.300000px;}
.y38{bottom:174.240000px;}
.y11b{bottom:180.360000px;}
.ya7{bottom:182.370000px;}
.y67{bottom:183.420000px;}
.yf2{bottom:186.300000px;}
.y86{bottom:190.080000px;}
.y37{bottom:198.900000px;}
.y11a{bottom:205.020000px;}
.ya6{bottom:207.030000px;}
.y66{bottom:208.110000px;}
.yf1{bottom:210.990000px;}
.y85{bottom:211.890000px;}
.y36{bottom:223.590000px;}
.y119{bottom:229.710000px;}
.ya5{bottom:231.690000px;}
.y65{bottom:232.770000px;}
.y84{bottom:233.670000px;}
.yf0{bottom:236.010000px;}
.y35{bottom:248.250000px;}
.y118{bottom:254.370000px;}
.yd6{bottom:254.745000px;}
.y83{bottom:255.450000px;}
.ya4{bottom:256.350000px;}
.y64{bottom:257.430000px;}
.yef{bottom:264.630000px;}
.y34{bottom:272.910000px;}
.y82{bottom:277.410000px;}
.yaf{bottom:278.310000px;}
.y117{bottom:279.030000px;}
.yd5{bottom:279.765000px;}
.ya3{bottom:281.010000px;}
.y63{bottom:281.730000px;}
.y6f{bottom:282.090000px;}
.yee{bottom:289.290000px;}
.y33{bottom:297.570000px;}
.y81{bottom:299.190000px;}
.y116{bottom:303.690000px;}
.yd4{bottom:304.785000px;}
.y62{bottom:306.390000px;}
.y6e{bottom:306.750000px;}
.yed{bottom:313.950000px;}
.y32{bottom:322.230000px;}
.y80{bottom:323.490000px;}
.y115{bottom:328.350000px;}
.yd3{bottom:329.625000px;}
.y61{bottom:331.410000px;}
.yec{bottom:338.610000px;}
.y7d{bottom:343.665000px;}
.y31{bottom:346.890000px;}
.y114{bottom:353.010000px;}
.ycf{bottom:354.645000px;}
.y60{bottom:356.070000px;}
.yeb{bottom:363.270000px;}
.y30{bottom:371.730000px;}
.y113{bottom:377.670000px;}
.y126{bottom:380.370000px;}
.y5f{bottom:380.730000px;}
.yea{bottom:387.930000px;}
.y2f{bottom:396.390000px;}
.y120{bottom:401.970000px;}
.y112{bottom:402.330000px;}
.y5e{bottom:405.390000px;}
.yce{bottom:406.830000px;}
.ye9{bottom:412.590000px;}
.y2e{bottom:421.050000px;}
.y111{bottom:426.990000px;}
.y5d{bottom:430.050000px;}
.ycd{bottom:431.490000px;}
.ye8{bottom:437.250000px;}
.ya1{bottom:440.670000px;}
.y2d{bottom:445.755000px;}
.y110{bottom:451.695000px;}
.y5c{bottom:454.755000px;}
.ya0{bottom:460.515000px;}
.ye7{bottom:461.955000px;}
.ycc{bottom:469.335000px;}
.y2c{bottom:470.415000px;}
.y10f{bottom:476.355000px;}
.y5b{bottom:479.595000px;}
.y9f{bottom:485.535000px;}
.ye6{bottom:486.615000px;}
.ycb{bottom:494.715000px;}
.y2b{bottom:495.075000px;}
.y10e{bottom:501.015000px;}
.y5a{bottom:504.255000px;}
.y9e{bottom:510.555000px;}
.ye5{bottom:511.275000px;}
.y2a{bottom:519.375000px;}
.y3b{bottom:519.735000px;}
.y10d{bottom:525.675000px;}
.y59{bottom:528.915000px;}
.y9d{bottom:535.395000px;}
.ye4{bottom:535.935000px;}
.yca{bottom:544.035000px;}
.y29{bottom:544.395000px;}
.y10c{bottom:550.335000px;}
.y125{bottom:553.215000px;}
.y58{bottom:553.575000px;}
.y9c{bottom:560.415000px;}
.ye3{bottom:560.595000px;}
.y28{bottom:567.975000px;}
.yc9{bottom:568.695000px;}
.y10b{bottom:574.635000px;}
.y11f{bottom:574.995000px;}
.y124{bottom:577.875000px;}
.y57{bottom:578.235000px;}
.ye2{bottom:585.255000px;}
.y9b{bottom:585.435000px;}
.y27{bottom:589.935000px;}
.yc8{bottom:593.355000px;}
.y7c{bottom:598.395000px;}
.y10a{bottom:599.835000px;}
.y56{bottom:602.895000px;}
.ye1{bottom:609.915000px;}
.y26{bottom:616.575000px;}
.yc7{bottom:618.015000px;}
.y9a{bottom:618.555000px;}
.y79{bottom:623.415000px;}
.y109{bottom:624.495000px;}
.y55{bottom:627.555000px;}
.ye0{bottom:634.575000px;}
.y25{bottom:638.355000px;}
.yc6{bottom:642.675000px;}
.y99{bottom:643.575000px;}
.y108{bottom:649.155000px;}
.y54{bottom:652.215000px;}
.ydf{bottom:659.235000px;}
.y24{bottom:660.135000px;}
.y98{bottom:663.375000px;}
.y78{bottom:667.335000px;}
.y107{bottom:673.815000px;}
.y123{bottom:676.545000px;}
.y53{bottom:676.905000px;}
.y23{bottom:682.125000px;}
.yde{bottom:683.925000px;}
.yc5{bottom:692.025000px;}
.y76{bottom:692.385000px;}
.y106{bottom:698.505000px;}
.y52{bottom:701.565000px;}
.y22{bottom:703.905000px;}
.ydd{bottom:708.225000px;}
.yc4{bottom:716.685000px;}
.y74{bottom:717.225000px;}
.y105{bottom:723.165000px;}
.y21{bottom:725.685000px;}
.y51{bottom:726.225000px;}
.ydc{bottom:733.245000px;}
.yc3{bottom:741.345000px;}
.y20{bottom:747.465000px;}
.y104{bottom:747.825000px;}
.y73{bottom:750.525000px;}
.y50{bottom:750.885000px;}
.ydb{bottom:757.545000px;}
.yc2{bottom:766.005000px;}
.y1f{bottom:769.245000px;}
.y103{bottom:772.485000px;}
.y72{bottom:775.185000px;}
.y4f{bottom:775.545000px;}
.yda{bottom:782.205000px;}
.yc1{bottom:790.665000px;}
.y1e{bottom:791.205000px;}
.y102{bottom:797.145000px;}
.y4e{bottom:800.205000px;}
.yd9{bottom:803.445000px;}
.y1d{bottom:812.985000px;}
.yc0{bottom:815.325000px;}
.y101{bottom:821.805000px;}
.y4d{bottom:824.505000px;}
.y6d{bottom:824.865000px;}
.y97{bottom:831.525000px;}
.y1c{bottom:834.765000px;}
.ybf{bottom:840.165000px;}
.y100{bottom:846.465000px;}
.y4c{bottom:849.165000px;}
.y6c{bottom:849.525000px;}
.y96{bottom:856.365000px;}
.y1b{bottom:856.545000px;}
.ybe{bottom:864.825000px;}
.yff{bottom:871.125000px;}
.y4b{bottom:874.185000px;}
.y1a{bottom:878.505000px;}
.y95{bottom:881.385000px;}
.ybd{bottom:889.485000px;}
.yfe{bottom:895.785000px;}
.y4a{bottom:898.845000px;}
.y19{bottom:899.925000px;}
.y94{bottom:906.405000px;}
.ybb{bottom:909.285000px;}
.y17{bottom:915.270000px;}
.y11e{bottom:920.130000px;}
.yfd{bottom:920.490000px;}
.y12{bottom:922.470000px;}
.y49{bottom:923.550000px;}
.y16{bottom:926.396347px;}
.y93{bottom:931.470000px;}
.yba{bottom:934.170000px;}
.y11d{bottom:944.790000px;}
.yfc{bottom:945.150000px;}
.y71{bottom:947.850000px;}
.y48{bottom:948.210000px;}
.y92{bottom:956.310000px;}
.yb9{bottom:959.190000px;}
.yfb{bottom:969.810000px;}
.y70{bottom:972.510000px;}
.y47{bottom:972.870000px;}
.yb8{bottom:984.210000px;}
.y91{bottom:989.610000px;}
.yfa{bottom:994.470000px;}
.y6b{bottom:997.170000px;}
.y46{bottom:997.530000px;}
.y90{bottom:1014.270000px;}
.y10{bottom:1018.590000px;}
.yf9{bottom:1019.130000px;}
.y6a{bottom:1021.830000px;}
.y45{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.yb7{bottom:1028.130000px;}
.y8f{bottom:1038.930000px;}
.y44{bottom:1046.850000px;}
.yb6{bottom:1053.150000px;}
.yd8{bottom:1058.550000px;}
.y8e{bottom:1061.070000px;}
.yf7{bottom:1069.530000px;}
.y43{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y8d{bottom:1082.850000px;}
.y42{bottom:1096.170000px;}
.yf6{bottom:1100.310000px;}
.yd7{bottom:1102.470000px;}
.y8c{bottom:1104.810000px;}
.yb5{bottom:1105.350000px;}
.y2{bottom:1106.250000px;}
.y41{bottom:1120.830000px;}
.y8b{bottom:1126.590000px;}
.y7{bottom:1128.570000px;}
.yb4{bottom:1130.010000px;}
.yf5{bottom:1130.910000px;}
.y40{bottom:1145.520000px;}
.y8a{bottom:1148.400000px;}
.y4{bottom:1156.860000px;}
.yb3{bottom:1163.160000px;}
.yf4{bottom:1169.820000px;}
.y3f{bottom:1170.180000px;}
.yb2{bottom:1175.400000px;}
.y3d{bottom:1187.280000px;}
.y3c{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h25{height:18.885000px;}
.h22{height:18.900000px;}
.h28{height:18.922500px;}
.h23{height:18.930000px;}
.h11{height:19.008000px;}
.h27{height:19.065000px;}
.h21{height:19.080000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h2f{height:24.645000px;}
.h2e{height:24.690000px;}
.h30{height:24.825000px;}
.h7{height:28.290000px;}
.h1f{height:30.480469px;}
.h24{height:37.965000px;}
.h2d{height:41.535703px;}
.h2c{height:42.086250px;}
.h1e{height:46.251562px;}
.h31{height:46.736719px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h1a{height:54.596250px;}
.h9{height:56.084062px;}
.h20{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1d{height:65.010937px;}
.h2b{height:65.884219px;}
.h1b{height:66.757500px;}
.h14{height:67.803750px;}
.h1c{height:68.084282px;}
.h6{height:71.324297px;}
.h18{height:72.326250px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.105000px;}
.h3{height:103.530000px;}
.h29{height:162.030000px;}
.h26{height:248.775000px;}
.h2a{height:295.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:42.516000px;}
.w8{width:50.385000px;}
.w1a{width:74.700000px;}
.w1d{width:75.240000px;}
.w20{width:75.450000px;}
.w12{width:81.576000px;}
.wa{width:82.116000px;}
.w14{width:92.181000px;}
.wc{width:92.865000px;}
.w1c{width:93.420000px;}
.w1f{width:93.585000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w19{width:113.061000px;}
.w18{width:118.609500px;}
.wf{width:122.580000px;}
.w13{width:130.125000px;}
.wb{width:131.241000px;}
.w23{width:149.241000px;}
.w21{width:161.835000px;}
.w1b{width:175.888500px;}
.w1e{width:176.055000px;}
.w22{width:176.430000px;}
.we{width:180.019500px;}
.w11{width:180.195000px;}
.w9{width:190.455000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w10{width:306.379500px;}
.w17{width:323.700000px;}
.w15{width:327.079500px;}
.w3{width:553.590000px;}
.wd{width:562.050000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.440000px;}
.x23{left:5.745000px;}
.x2d{left:6.840000px;}
.x19{left:8.089500px;}
.x2b{left:9.360000px;}
.x5{left:10.965000px;}
.x51{left:12.225000px;}
.x10{left:20.685000px;}
.x2c{left:27.900000px;}
.x29{left:30.630000px;}
.xb{left:34.185000px;}
.x38{left:38.505000px;}
.x24{left:43.185000px;}
.x16{left:44.623500px;}
.xe{left:49.714500px;}
.x13{left:51.103500px;}
.x9{left:53.265000px;}
.x2a{left:55.065000px;}
.x2{left:60.841500px;}
.x3f{left:62.085000px;}
.x33{left:64.783500px;}
.x50{left:73.800000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x46{left:87.661500px;}
.xd{left:95.925000px;}
.x3c{left:99.946500px;}
.x8{left:107.850000px;}
.x44{left:108.936000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x40{left:121.896000px;}
.x1c{left:123.516000px;}
.x31{left:124.776000px;}
.x43{left:135.036000px;}
.x1d{left:150.510000px;}
.x2f{left:158.610000px;}
.x1a{left:162.030000px;}
.x22{left:165.645000px;}
.x4{left:168.885000px;}
.x17{left:181.828500px;}
.x37{left:198.945000px;}
.x6{left:209.010000px;}
.x14{left:219.628500px;}
.x45{left:221.790000px;}
.x41{left:229.185000px;}
.x32{left:232.050000px;}
.x15{left:240.508500px;}
.x30{left:263.730000px;}
.x47{left:267.375000px;}
.x21{left:274.935000px;}
.x34{left:290.775000px;}
.x36{left:305.715000px;}
.x35{left:307.468500px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.x42{left:346.035000px;}
.x48{left:364.575000px;}
.x39{left:382.935000px;}
.x25{left:413.895000px;}
.x3d{left:427.035000px;}
.xa{left:445.620000px;}
.x49{left:453.180000px;}
.x3a{left:468.120000px;}
.x3e{left:469.560000px;}
.x1b{left:473.505000px;}
.x2e{left:484.125000px;}
.x1e{left:488.985000px;}
.x27{left:499.800000px;}
.x1f{left:515.985000px;}
.x20{left:527.505000px;}
.x4d{left:537.045000px;}
.x4f{left:544.800000px;}
.x4e{left:588.165000px;}
.x3b{left:602.040000px;}
.x4a{left:632.850000px;}
.x28{left:634.830000px;}
.x7{left:722.490000px;}
.x4b{left:730.050000px;}
.x1{left:748.950000px;}
.x4c{left:800.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.169067pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.101333pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.069333pt;}
.ls19{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.166400pt;}
.ls1c{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.368533pt;}
.ls4{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.512000pt;}
.lse{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls8{letter-spacing:3.840000pt;}
.ls5{letter-spacing:10.240000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls14{letter-spacing:16.000000pt;}
.lsf{letter-spacing:17.920000pt;}
.ls17{letter-spacing:20.480000pt;}
.ls15{letter-spacing:26.240000pt;}
.ls16{letter-spacing:27.520000pt;}
.ls13{letter-spacing:33.280000pt;}
.ls10{letter-spacing:35.450027pt;}
.ls11{letter-spacing:35.471360pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws9{word-spacing:-15.088533pt;}
.wsa{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._47{margin-left:-1.907840pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._8{width:1.900373pt;}
._d{width:3.297280pt;}
._e{width:4.344747pt;}
._c{width:5.299200pt;}
._14{width:6.743680pt;}
._9{width:7.713280pt;}
._a{width:8.890880pt;}
._19{width:10.186240pt;}
._b{width:11.960320pt;}
._7{width:12.894720pt;}
._15{width:13.809280pt;}
._13{width:15.956480pt;}
._31{width:17.577600pt;}
._2{width:19.018240pt;}
._3c{width:20.227200pt;}
._12{width:21.255680pt;}
._6{width:22.845440pt;}
._5{width:23.818880pt;}
._1d{width:24.788480pt;}
._10{width:26.090453pt;}
._f{width:27.258667pt;}
._2f{width:28.225067pt;}
._1b{width:29.219840pt;}
._1a{width:30.229120pt;}
._3d{width:31.146880pt;}
._25{width:32.080000pt;}
._38{width:32.972800pt;}
._2a{width:34.008960pt;}
._3{width:35.269120pt;}
._4{width:36.223573pt;}
._41{width:37.208107pt;}
._33{width:38.896000pt;}
._32{width:40.097280pt;}
._2c{width:43.217920pt;}
._3f{width:44.121600pt;}
._27{width:45.102080pt;}
._40{width:46.200320pt;}
._36{width:47.339520pt;}
._35{width:48.371840pt;}
._2b{width:49.667200pt;}
._34{width:50.990080pt;}
._2e{width:52.815360pt;}
._2d{width:54.024320pt;}
._30{width:55.818240pt;}
._46{width:56.909440pt;}
._20{width:57.824000pt;}
._1f{width:59.056640pt;}
._28{width:62.118400pt;}
._45{width:63.531520pt;}
._16{width:64.768000pt;}
._1e{width:66.122240pt;}
._39{width:67.213440pt;}
._26{width:69.160320pt;}
._18{width:70.302720pt;}
._17{width:71.217280pt;}
._21{width:75.692160pt;}
._42{width:77.454720pt;}
._3e{width:81.489920pt;}
._44{width:84.403840pt;}
._1c{width:85.905920pt;}
._3b{width:86.934400pt;}
._11{width:88.143360pt;}
._3a{width:92.029440pt;}
._43{width:97.889920pt;}
._29{width:117.042987pt;}
._37{width:128.005120pt;}
._24{width:135.905280pt;}
._22{width:168.548907pt;}
._23{width:175.686400pt;}
._48{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y7f{bottom:3.506667pt;}
.y77{bottom:3.520000pt;}
.ybc{bottom:3.560000pt;}
.yd2{bottom:3.666667pt;}
.y75{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yae{bottom:8.640000pt;}
.yf8{bottom:8.800000pt;}
.yd0{bottom:11.986667pt;}
.y7a{bottom:12.000000pt;}
.y7e{bottom:16.946667pt;}
.yd1{bottom:20.466667pt;}
.y7b{bottom:20.480000pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.yad{bottom:30.560000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.yac{bottom:52.480000pt;}
.y13{bottom:62.560000pt;}
.y3e{bottom:66.880000pt;}
.yb0{bottom:72.026667pt;}
.yab{bottom:74.426667pt;}
.yaa{bottom:96.346667pt;}
.yb1{bottom:106.080000pt;}
.y89{bottom:110.720000pt;}
.y3a{bottom:111.040000pt;}
.y122{bottom:116.480000pt;}
.ya9{bottom:118.266667pt;}
.y69{bottom:119.200000pt;}
.ya2{bottom:120.000000pt;}
.y88{bottom:130.080000pt;}
.y39{bottom:132.960000pt;}
.y11c{bottom:138.080000pt;}
.y121{bottom:138.400000pt;}
.ya8{bottom:140.186667pt;}
.y68{bottom:141.120000pt;}
.yf3{bottom:143.360000pt;}
.y87{bottom:149.600000pt;}
.y38{bottom:154.880000pt;}
.y11b{bottom:160.320000pt;}
.ya7{bottom:162.106667pt;}
.y67{bottom:163.040000pt;}
.yf2{bottom:165.600000pt;}
.y86{bottom:168.960000pt;}
.y37{bottom:176.800000pt;}
.y11a{bottom:182.240000pt;}
.ya6{bottom:184.026667pt;}
.y66{bottom:184.986667pt;}
.yf1{bottom:187.546667pt;}
.y85{bottom:188.346667pt;}
.y36{bottom:198.746667pt;}
.y119{bottom:204.186667pt;}
.ya5{bottom:205.946667pt;}
.y65{bottom:206.906667pt;}
.y84{bottom:207.706667pt;}
.yf0{bottom:209.786667pt;}
.y35{bottom:220.666667pt;}
.y118{bottom:226.106667pt;}
.yd6{bottom:226.440000pt;}
.y83{bottom:227.066667pt;}
.ya4{bottom:227.866667pt;}
.y64{bottom:228.826667pt;}
.yef{bottom:235.226667pt;}
.y34{bottom:242.586667pt;}
.y82{bottom:246.586667pt;}
.yaf{bottom:247.386667pt;}
.y117{bottom:248.026667pt;}
.yd5{bottom:248.680000pt;}
.ya3{bottom:249.786667pt;}
.y63{bottom:250.426667pt;}
.y6f{bottom:250.746667pt;}
.yee{bottom:257.146667pt;}
.y33{bottom:264.506667pt;}
.y81{bottom:265.946667pt;}
.y116{bottom:269.946667pt;}
.yd4{bottom:270.920000pt;}
.y62{bottom:272.346667pt;}
.y6e{bottom:272.666667pt;}
.yed{bottom:279.066667pt;}
.y32{bottom:286.426667pt;}
.y80{bottom:287.546667pt;}
.y115{bottom:291.866667pt;}
.yd3{bottom:293.000000pt;}
.y61{bottom:294.586667pt;}
.yec{bottom:300.986667pt;}
.y7d{bottom:305.480000pt;}
.y31{bottom:308.346667pt;}
.y114{bottom:313.786667pt;}
.ycf{bottom:315.240000pt;}
.y60{bottom:316.506667pt;}
.yeb{bottom:322.906667pt;}
.y30{bottom:330.426667pt;}
.y113{bottom:335.706667pt;}
.y126{bottom:338.106667pt;}
.y5f{bottom:338.426667pt;}
.yea{bottom:344.826667pt;}
.y2f{bottom:352.346667pt;}
.y120{bottom:357.306667pt;}
.y112{bottom:357.626667pt;}
.y5e{bottom:360.346667pt;}
.yce{bottom:361.626667pt;}
.ye9{bottom:366.746667pt;}
.y2e{bottom:374.266667pt;}
.y111{bottom:379.546667pt;}
.y5d{bottom:382.266667pt;}
.ycd{bottom:383.546667pt;}
.ye8{bottom:388.666667pt;}
.ya1{bottom:391.706667pt;}
.y2d{bottom:396.226667pt;}
.y110{bottom:401.506667pt;}
.y5c{bottom:404.226667pt;}
.ya0{bottom:409.346667pt;}
.ye7{bottom:410.626667pt;}
.ycc{bottom:417.186667pt;}
.y2c{bottom:418.146667pt;}
.y10f{bottom:423.426667pt;}
.y5b{bottom:426.306667pt;}
.y9f{bottom:431.586667pt;}
.ye6{bottom:432.546667pt;}
.ycb{bottom:439.746667pt;}
.y2b{bottom:440.066667pt;}
.y10e{bottom:445.346667pt;}
.y5a{bottom:448.226667pt;}
.y9e{bottom:453.826667pt;}
.ye5{bottom:454.466667pt;}
.y2a{bottom:461.666667pt;}
.y3b{bottom:461.986667pt;}
.y10d{bottom:467.266667pt;}
.y59{bottom:470.146667pt;}
.y9d{bottom:475.906667pt;}
.ye4{bottom:476.386667pt;}
.yca{bottom:483.586667pt;}
.y29{bottom:483.906667pt;}
.y10c{bottom:489.186667pt;}
.y125{bottom:491.746667pt;}
.y58{bottom:492.066667pt;}
.y9c{bottom:498.146667pt;}
.ye3{bottom:498.306667pt;}
.y28{bottom:504.866667pt;}
.yc9{bottom:505.506667pt;}
.y10b{bottom:510.786667pt;}
.y11f{bottom:511.106667pt;}
.y124{bottom:513.666667pt;}
.y57{bottom:513.986667pt;}
.ye2{bottom:520.226667pt;}
.y9b{bottom:520.386667pt;}
.y27{bottom:524.386667pt;}
.yc8{bottom:527.426667pt;}
.y7c{bottom:531.906667pt;}
.y10a{bottom:533.186667pt;}
.y56{bottom:535.906667pt;}
.ye1{bottom:542.146667pt;}
.y26{bottom:548.066667pt;}
.yc7{bottom:549.346667pt;}
.y9a{bottom:549.826667pt;}
.y79{bottom:554.146667pt;}
.y109{bottom:555.106667pt;}
.y55{bottom:557.826667pt;}
.ye0{bottom:564.066667pt;}
.y25{bottom:567.426667pt;}
.yc6{bottom:571.266667pt;}
.y99{bottom:572.066667pt;}
.y108{bottom:577.026667pt;}
.y54{bottom:579.746667pt;}
.ydf{bottom:585.986667pt;}
.y24{bottom:586.786667pt;}
.y98{bottom:589.666667pt;}
.y78{bottom:593.186667pt;}
.y107{bottom:598.946667pt;}
.y123{bottom:601.373333pt;}
.y53{bottom:601.693333pt;}
.y23{bottom:606.333333pt;}
.yde{bottom:607.933333pt;}
.yc5{bottom:615.133333pt;}
.y76{bottom:615.453333pt;}
.y106{bottom:620.893333pt;}
.y52{bottom:623.613333pt;}
.y22{bottom:625.693333pt;}
.ydd{bottom:629.533333pt;}
.yc4{bottom:637.053333pt;}
.y74{bottom:637.533333pt;}
.y105{bottom:642.813333pt;}
.y21{bottom:645.053333pt;}
.y51{bottom:645.533333pt;}
.ydc{bottom:651.773333pt;}
.yc3{bottom:658.973333pt;}
.y20{bottom:664.413333pt;}
.y104{bottom:664.733333pt;}
.y73{bottom:667.133333pt;}
.y50{bottom:667.453333pt;}
.ydb{bottom:673.373333pt;}
.yc2{bottom:680.893333pt;}
.y1f{bottom:683.773333pt;}
.y103{bottom:686.653333pt;}
.y72{bottom:689.053333pt;}
.y4f{bottom:689.373333pt;}
.yda{bottom:695.293333pt;}
.yc1{bottom:702.813333pt;}
.y1e{bottom:703.293333pt;}
.y102{bottom:708.573333pt;}
.y4e{bottom:711.293333pt;}
.yd9{bottom:714.173333pt;}
.y1d{bottom:722.653333pt;}
.yc0{bottom:724.733333pt;}
.y101{bottom:730.493333pt;}
.y4d{bottom:732.893333pt;}
.y6d{bottom:733.213333pt;}
.y97{bottom:739.133333pt;}
.y1c{bottom:742.013333pt;}
.ybf{bottom:746.813333pt;}
.y100{bottom:752.413333pt;}
.y4c{bottom:754.813333pt;}
.y6c{bottom:755.133333pt;}
.y96{bottom:761.213333pt;}
.y1b{bottom:761.373333pt;}
.ybe{bottom:768.733333pt;}
.yff{bottom:774.333333pt;}
.y4b{bottom:777.053333pt;}
.y1a{bottom:780.893333pt;}
.y95{bottom:783.453333pt;}
.ybd{bottom:790.653333pt;}
.yfe{bottom:796.253333pt;}
.y4a{bottom:798.973333pt;}
.y19{bottom:799.933333pt;}
.y94{bottom:805.693333pt;}
.ybb{bottom:808.253333pt;}
.y17{bottom:813.573333pt;}
.y11e{bottom:817.893333pt;}
.yfd{bottom:818.213333pt;}
.y12{bottom:819.973333pt;}
.y49{bottom:820.933333pt;}
.y16{bottom:823.463420pt;}
.y93{bottom:827.973333pt;}
.yba{bottom:830.373333pt;}
.y11d{bottom:839.813333pt;}
.yfc{bottom:840.133333pt;}
.y71{bottom:842.533333pt;}
.y48{bottom:842.853333pt;}
.y92{bottom:850.053333pt;}
.yb9{bottom:852.613333pt;}
.yfb{bottom:862.053333pt;}
.y70{bottom:864.453333pt;}
.y47{bottom:864.773333pt;}
.yb8{bottom:874.853333pt;}
.y91{bottom:879.653333pt;}
.yfa{bottom:883.973333pt;}
.y6b{bottom:886.373333pt;}
.y46{bottom:886.693333pt;}
.y90{bottom:901.573333pt;}
.y10{bottom:905.413333pt;}
.yf9{bottom:905.893333pt;}
.y6a{bottom:908.293333pt;}
.y45{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.yb7{bottom:913.893333pt;}
.y8f{bottom:923.493333pt;}
.y44{bottom:930.533333pt;}
.yb6{bottom:936.133333pt;}
.yd8{bottom:940.933333pt;}
.y8e{bottom:943.173333pt;}
.yf7{bottom:950.693333pt;}
.y43{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y8d{bottom:962.533333pt;}
.y42{bottom:974.373333pt;}
.yf6{bottom:978.053333pt;}
.yd7{bottom:979.973333pt;}
.y8c{bottom:982.053333pt;}
.yb5{bottom:982.533333pt;}
.y2{bottom:983.333333pt;}
.y41{bottom:996.293333pt;}
.y8b{bottom:1001.413333pt;}
.y7{bottom:1003.173333pt;}
.yb4{bottom:1004.453333pt;}
.yf5{bottom:1005.253333pt;}
.y40{bottom:1018.240000pt;}
.y8a{bottom:1020.800000pt;}
.y4{bottom:1028.320000pt;}
.yb3{bottom:1033.920000pt;}
.yf4{bottom:1039.840000pt;}
.y3f{bottom:1040.160000pt;}
.yb2{bottom:1044.800000pt;}
.y3d{bottom:1055.360000pt;}
.y3c{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h25{height:16.786667pt;}
.h22{height:16.800000pt;}
.h28{height:16.820000pt;}
.h23{height:16.826667pt;}
.h11{height:16.896000pt;}
.h27{height:16.946667pt;}
.h21{height:16.960000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h2f{height:21.906667pt;}
.h2e{height:21.946667pt;}
.h30{height:22.066667pt;}
.h7{height:25.146667pt;}
.h1f{height:27.093750pt;}
.h24{height:33.746667pt;}
.h2d{height:36.920625pt;}
.h2c{height:37.410000pt;}
.h1e{height:41.112500pt;}
.h31{height:41.543750pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h1a{height:48.530000pt;}
.h9{height:49.852500pt;}
.h20{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1d{height:57.787500pt;}
.h2b{height:58.563750pt;}
.h1b{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1c{height:60.519362pt;}
.h6{height:63.399375pt;}
.h18{height:64.290000pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.426667pt;}
.h3{height:92.026667pt;}
.h29{height:144.026667pt;}
.h26{height:221.133333pt;}
.h2a{height:263.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:37.792000pt;}
.w8{width:44.786667pt;}
.w1a{width:66.400000pt;}
.w1d{width:66.880000pt;}
.w20{width:67.066667pt;}
.w12{width:72.512000pt;}
.wa{width:72.992000pt;}
.w14{width:81.938667pt;}
.wc{width:82.546667pt;}
.w1c{width:83.040000pt;}
.w1f{width:83.186667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w19{width:100.498667pt;}
.w18{width:105.430667pt;}
.wf{width:108.960000pt;}
.w13{width:115.666667pt;}
.wb{width:116.658667pt;}
.w23{width:132.658667pt;}
.w21{width:143.853333pt;}
.w1b{width:156.345333pt;}
.w1e{width:156.493333pt;}
.w22{width:156.826667pt;}
.we{width:160.017333pt;}
.w11{width:160.173333pt;}
.w9{width:169.293333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w10{width:272.337333pt;}
.w17{width:287.733333pt;}
.w15{width:290.737333pt;}
.w3{width:492.080000pt;}
.wd{width:499.600000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:1.280000pt;}
.x23{left:5.106667pt;}
.x2d{left:6.080000pt;}
.x19{left:7.190667pt;}
.x2b{left:8.320000pt;}
.x5{left:9.746667pt;}
.x51{left:10.866667pt;}
.x10{left:18.386667pt;}
.x2c{left:24.800000pt;}
.x29{left:27.226667pt;}
.xb{left:30.386667pt;}
.x38{left:34.226667pt;}
.x24{left:38.386667pt;}
.x16{left:39.665333pt;}
.xe{left:44.190667pt;}
.x13{left:45.425333pt;}
.x9{left:47.346667pt;}
.x2a{left:48.946667pt;}
.x2{left:54.081333pt;}
.x3f{left:55.186667pt;}
.x33{left:57.585333pt;}
.x50{left:65.600000pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x46{left:77.921333pt;}
.xd{left:85.266667pt;}
.x3c{left:88.841333pt;}
.x8{left:95.866667pt;}
.x44{left:96.832000pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x40{left:108.352000pt;}
.x1c{left:109.792000pt;}
.x31{left:110.912000pt;}
.x43{left:120.032000pt;}
.x1d{left:133.786667pt;}
.x2f{left:140.986667pt;}
.x1a{left:144.026667pt;}
.x22{left:147.240000pt;}
.x4{left:150.120000pt;}
.x17{left:161.625333pt;}
.x37{left:176.840000pt;}
.x6{left:185.786667pt;}
.x14{left:195.225333pt;}
.x45{left:197.146667pt;}
.x41{left:203.720000pt;}
.x32{left:206.266667pt;}
.x15{left:213.785333pt;}
.x30{left:234.426667pt;}
.x47{left:237.666667pt;}
.x21{left:244.386667pt;}
.x34{left:258.466667pt;}
.x36{left:271.746667pt;}
.x35{left:273.305333pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.x42{left:307.586667pt;}
.x48{left:324.066667pt;}
.x39{left:340.386667pt;}
.x25{left:367.906667pt;}
.x3d{left:379.586667pt;}
.xa{left:396.106667pt;}
.x49{left:402.826667pt;}
.x3a{left:416.106667pt;}
.x3e{left:417.386667pt;}
.x1b{left:420.893333pt;}
.x2e{left:430.333333pt;}
.x1e{left:434.653333pt;}
.x27{left:444.266667pt;}
.x1f{left:458.653333pt;}
.x20{left:468.893333pt;}
.x4d{left:477.373333pt;}
.x4f{left:484.266667pt;}
.x4e{left:522.813333pt;}
.x3b{left:535.146667pt;}
.x4a{left:562.533333pt;}
.x28{left:564.293333pt;}
.x7{left:642.213333pt;}
.x4b{left:648.933333pt;}
.x1{left:665.733333pt;}
.x4c{left:711.520000pt;}
}




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