
    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_2d705a96af4124827a4e9d0c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_12003d147fd88f9633ac0b96.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_2515345ae12ba147f211211d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_08b96227a09e352a1d85361f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_a4e02a6446d2c87a28bfa71e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_12ab98e321d758e82a560aac.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_04c8d0165e2d3d598cc801ce.woff')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_64b5f69afe06317348cce4ee.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9aa0d22ae7befa18c98ef7ae.woff')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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_aa978fc5c80fda05f438b2e7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b6937aa2117316bc9b662264.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff10{font-family:ff10;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls19{letter-spacing:-2.250000px;}
.lsa{letter-spacing:-1.740000px;}
.ls13{letter-spacing:-1.482000px;}
.ls7{letter-spacing:-1.128000px;}
.lsf{letter-spacing:-1.026000px;}
.ls8{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.618000px;}
.ls12{letter-spacing:-0.513000px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.810000px;}
.lse{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.966500px;}
.lsd{letter-spacing:2.025000px;}
.ls3{letter-spacing:2.026500px;}
.ls1{letter-spacing:2.034000px;}
.ls15{letter-spacing:2.164500px;}
.lsc{letter-spacing:2.220000px;}
.ls0{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.262000px;}
.ls17{letter-spacing:2.310000px;}
.ls14{letter-spacing:2.370000px;}
.lsb{letter-spacing:2.430000px;}
.ls5{letter-spacing:4.839000px;}
.ls10{letter-spacing:12.360000px;}
.ls18{letter-spacing:15.387000px;}
.ls16{letter-spacing:46.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;}
}
.ws0{word-spacing:-16.875000px;}
.wse{word-spacing:-16.789500px;}
.ws2{word-spacing:-16.146000px;}
.ws1{word-spacing:-15.354000px;}
.ws3{word-spacing:-15.048000px;}
.ws6{word-spacing:-14.625000px;}
.wsb{word-spacing:-14.112000px;}
.wsa{word-spacing:-14.007000px;}
.ws9{word-spacing:-13.599000px;}
.ws7{word-spacing:-13.221000px;}
.ws5{word-spacing:-12.885000px;}
.wsc{word-spacing:-12.375000px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:-7.875000px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-11.601450px;}
._20{margin-left:-8.223150px;}
._7{margin-left:-6.252450px;}
._e{margin-left:-5.212650px;}
._5{margin-left:-3.810000px;}
._f{margin-left:-2.757000px;}
._0{margin-left:-1.755000px;}
._2{width:1.404000px;}
._3{width:2.866500px;}
._c{width:3.868500px;}
._4{width:4.888500px;}
._d{width:6.385500px;}
._1{width:7.429500px;}
._14{width:8.535000px;}
._9{width:9.828000px;}
._6{width:11.445000px;}
._b{width:12.870000px;}
._a{width:16.635000px;}
._13{width:17.673000px;}
._12{width:20.767500px;}
._10{width:21.939000px;}
._11{width:25.572000px;}
._1b{width:30.051000px;}
._16{width:39.429000px;}
._17{width:43.992000px;}
._1d{width:52.734000px;}
._19{width:108.042000px;}
._1a{width:125.398500px;}
._1e{width:138.675000px;}
._18{width:152.769000px;}
._15{width:179.175000px;}
._1f{width:183.414000px;}
._1c{width:201.879000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:40.500000px;}
.fs4{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:67.500000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.015000px;}
.y47{bottom:3.375000px;}
.yb5{bottom:3.390000px;}
.y42{bottom:3.420000px;}
.y1a{bottom:4.500000px;}
.y9d{bottom:4.515000px;}
.ye1{bottom:4.530000px;}
.y9b{bottom:4.545000px;}
.y92{bottom:5.625000px;}
.y95{bottom:5.640000px;}
.y98{bottom:5.670000px;}
.y90{bottom:6.750000px;}
.y45{bottom:10.125000px;}
.y4{bottom:11.250000px;}
.y1d{bottom:13.545000px;}
.ydd{bottom:15.750000px;}
.y3{bottom:16.912500px;}
.yb{bottom:18.000000px;}
.yd4{bottom:20.295000px;}
.y46{bottom:21.375000px;}
.y41{bottom:21.420000px;}
.yb1{bottom:22.500000px;}
.ye5{bottom:22.530000px;}
.yd1{bottom:22.545000px;}
.yc4{bottom:23.670000px;}
.y44{bottom:24.750000px;}
.y8f{bottom:24.795000px;}
.y19{bottom:27.030000px;}
.yde{bottom:31.545000px;}
.y1{bottom:32.625000px;}
.ydc{bottom:32.670000px;}
.ya{bottom:33.780000px;}
.y2{bottom:36.037500px;}
.y40{bottom:38.295000px;}
.ye3{bottom:39.405000px;}
.yc3{bottom:40.545000px;}
.yc1{bottom:41.670000px;}
.y18{bottom:43.905000px;}
.ydb{bottom:49.545000px;}
.y9{bottom:50.655000px;}
.y3f{bottom:55.200000px;}
.yc0{bottom:59.670000px;}
.y17{bottom:59.700000px;}
.y3e{bottom:73.200000px;}
.y8{bottom:75.435000px;}
.y16{bottom:76.575000px;}
.y3d{bottom:90.120000px;}
.y7{bottom:93.435000px;}
.y15{bottom:93.450000px;}
.yaf{bottom:100.200000px;}
.y52{bottom:102.450000px;}
.y11c{bottom:105.825000px;}
.y3c{bottom:106.995000px;}
.y14{bottom:109.245000px;}
.y6{bottom:110.310000px;}
.yae{bottom:117.075000px;}
.y8c{bottom:119.362500px;}
.y51{bottom:120.487500px;}
.y11b{bottom:122.737500px;}
.y13{bottom:123.870000px;}
.y3b{bottom:124.995000px;}
.yad{bottom:133.987500px;}
.y8b{bottom:136.237500px;}
.y50{bottom:137.362500px;}
.y11a{bottom:140.737500px;}
.y12{bottom:141.900000px;}
.y3a{bottom:141.915000px;}
.yac{bottom:151.995000px;}
.y4f{bottom:154.245000px;}
.y119{bottom:157.620000px;}
.y39{bottom:158.790000px;}
.y11{bottom:161.025000px;}
.yab{bottom:168.900000px;}
.y8a{bottom:171.150000px;}
.y4e{bottom:172.275000px;}
.y118{bottom:174.525000px;}
.y38{bottom:176.820000px;}
.yaa{bottom:185.775000px;}
.y10{bottom:186.945000px;}
.y89{bottom:188.025000px;}
.y4d{bottom:189.150000px;}
.y117{bottom:192.525000px;}
.y37{bottom:193.695000px;}
.y2a{bottom:201.570000px;}
.ya9{bottom:203.820000px;}
.y4c{bottom:206.070000px;}
.y116{bottom:209.445000px;}
.y36{bottom:210.615000px;}
.yf{bottom:212.820000px;}
.y29{bottom:216.225000px;}
.ya8{bottom:220.695000px;}
.y88{bottom:222.945000px;}
.y4b{bottom:224.070000px;}
.y115{bottom:226.320000px;}
.y35{bottom:228.615000px;}
.y28{bottom:234.240000px;}
.ya7{bottom:237.570000px;}
.ye{bottom:237.600000px;}
.y87{bottom:239.820000px;}
.y4a{bottom:240.945000px;}
.y114{bottom:244.350000px;}
.y34{bottom:245.490000px;}
.y27{bottom:252.270000px;}
.ya6{bottom:255.600000px;}
.y49{bottom:257.850000px;}
.ye0{bottom:260.100000px;}
.y113{bottom:261.225000px;}
.y33{bottom:262.395000px;}
.y26{bottom:269.145000px;}
.ya5{bottom:270.225000px;}
.y86{bottom:274.725000px;}
.y48{bottom:275.850000px;}
.y112{bottom:278.100000px;}
.ydf{bottom:279.225000px;}
.y32{bottom:280.395000px;}
.y25{bottom:286.020000px;}
.y43{bottom:289.380000px;}
.y85{bottom:291.645000px;}
.y111{bottom:296.130000px;}
.yda{bottom:297.255000px;}
.y31{bottom:297.315000px;}
.y24{bottom:304.065000px;}
.ya4{bottom:306.255000px;}
.y84{bottom:309.630000px;}
.y110{bottom:313.005000px;}
.y30{bottom:314.190000px;}
.y23{bottom:322.065000px;}
.y1e{bottom:325.380000px;}
.y83{bottom:326.550000px;}
.y10f{bottom:329.925000px;}
.y2f{bottom:332.190000px;}
.y22{bottom:340.095000px;}
.y82{bottom:343.425000px;}
.ya3{bottom:346.800000px;}
.y10e{bottom:347.925000px;}
.y2e{bottom:349.095000px;}
.y21{bottom:359.220000px;}
.y81{bottom:361.425000px;}
.y10d{bottom:364.800000px;}
.yd9{bottom:365.925000px;}
.y2d{bottom:365.970000px;}
.ya2{bottom:367.050000px;}
.y80{bottom:378.330000px;}
.y10c{bottom:381.705000px;}
.yd8{bottom:382.845000px;}
.y2c{bottom:384.015000px;}
.y20{bottom:385.125000px;}
.ya1{bottom:387.330000px;}
.y7f{bottom:395.205000px;}
.y10b{bottom:399.720000px;}
.yd7{bottom:400.830000px;}
.y2b{bottom:400.890000px;}
.y1f{bottom:403.125000px;}
.ya0{bottom:407.580000px;}
.y7e{bottom:413.250000px;}
.y10a{bottom:416.625000px;}
.yd6{bottom:417.750000px;}
.y9f{bottom:429.000000px;}
.y7d{bottom:430.125000px;}
.y109{bottom:433.500000px;}
.yd5{bottom:434.625000px;}
.y7c{bottom:447.000000px;}
.y9e{bottom:449.250000px;}
.yd3{bottom:450.375000px;}
.y108{bottom:451.530000px;}
.y7b{bottom:465.030000px;}
.y107{bottom:468.405000px;}
.y9c{bottom:469.530000px;}
.y7a{bottom:481.905000px;}
.y106{bottom:485.280000px;}
.yd0{bottom:486.405000px;}
.y9a{bottom:489.780000px;}
.y79{bottom:498.825000px;}
.y105{bottom:503.325000px;}
.yd2{bottom:504.450000px;}
.y99{bottom:510.075000px;}
.y78{bottom:516.825000px;}
.y104{bottom:520.200000px;}
.ycf{bottom:526.950000px;}
.y97{bottom:530.325000px;}
.y77{bottom:533.700000px;}
.y103{bottom:537.120000px;}
.yce{bottom:544.980000px;}
.y96{bottom:550.605000px;}
.y76{bottom:550.620000px;}
.y102{bottom:555.105000px;}
.ycd{bottom:561.855000px;}
.y75{bottom:568.605000px;}
.y94{bottom:570.855000px;}
.y101{bottom:571.980000px;}
.ycc{bottom:578.775000px;}
.y74{bottom:585.525000px;}
.y100{bottom:588.900000px;}
.y93{bottom:591.150000px;}
.ycb{bottom:596.775000px;}
.y73{bottom:602.400000px;}
.yff{bottom:606.900000px;}
.y8e{bottom:611.400000px;}
.yca{bottom:613.650000px;}
.y72{bottom:620.445000px;}
.yfe{bottom:623.820000px;}
.yc9{bottom:628.320000px;}
.y91{bottom:630.570000px;}
.y71{bottom:637.320000px;}
.yfd{bottom:640.695000px;}
.yc8{bottom:647.445000px;}
.y70{bottom:654.195000px;}
.yfc{bottom:658.695000px;}
.yc7{bottom:666.600000px;}
.y6f{bottom:672.225000px;}
.yfb{bottom:675.600000px;}
.yc6{bottom:684.600000px;}
.y6e{bottom:689.100000px;}
.yfa{bottom:692.475000px;}
.yc5{bottom:703.755000px;}
.y6d{bottom:706.020000px;}
.yf9{bottom:710.505000px;}
.ybf{bottom:722.880000px;}
.y6c{bottom:724.005000px;}
.yf8{bottom:727.380000px;}
.y1b{bottom:739.755000px;}
.y6b{bottom:740.880000px;}
.yf7{bottom:744.300000px;}
.y6a{bottom:757.800000px;}
.yf6{bottom:762.300000px;}
.yd{bottom:769.050000px;}
.y69{bottom:775.800000px;}
.yc2{bottom:778.050000px;}
.yf5{bottom:779.175000px;}
.y68{bottom:792.705000px;}
.yf4{bottom:796.080000px;}
.ybe{bottom:800.580000px;}
.y67{bottom:809.580000px;}
.yf3{bottom:814.080000px;}
.ybd{bottom:818.580000px;}
.y66{bottom:827.625000px;}
.yf2{bottom:831.000000px;}
.ybc{bottom:835.500000px;}
.y65{bottom:844.500000px;}
.yf1{bottom:847.875000px;}
.ybb{bottom:852.375000px;}
.y64{bottom:861.375000px;}
.yf0{bottom:865.875000px;}
.yba{bottom:870.420000px;}
.y63{bottom:879.420000px;}
.yef{bottom:882.795000px;}
.yb9{bottom:887.295000px;}
.y62{bottom:896.295000px;}
.yee{bottom:899.670000px;}
.yb8{bottom:904.170000px;}
.y61{bottom:913.200000px;}
.yed{bottom:917.700000px;}
.yb7{bottom:922.200000px;}
.y60{bottom:931.200000px;}
.yec{bottom:934.575000px;}
.yb6{bottom:936.825000px;}
.y5f{bottom:948.075000px;}
.yeb{bottom:951.450000px;}
.y8d{bottom:964.995000px;}
.yea{bottom:967.245000px;}
.y5e{bottom:969.495000px;}
.yb4{bottom:972.855000px;}
.y5d{bottom:982.995000px;}
.ye9{bottom:985.230000px;}
.y5c{bottom:999.900000px;}
.yb3{bottom:1008.900000px;}
.y5b{bottom:1016.775000px;}
.yc{bottom:1021.275000px;}
.y5a{bottom:1034.775000px;}
.ye8{bottom:1040.445000px;}
.yb0{bottom:1044.945000px;}
.y5{bottom:1047.195000px;}
.y59{bottom:1051.695000px;}
.ye7{bottom:1059.570000px;}
.yb2{bottom:1064.070000px;}
.y58{bottom:1068.570000px;}
.ye6{bottom:1077.600000px;}
.y57{bottom:1086.600000px;}
.ye2{bottom:1096.725000px;}
.y56{bottom:1103.475000px;}
.y55{bottom:1120.380000px;}
.ye4{bottom:1132.755000px;}
.y54{bottom:1138.380000px;}
.y53{bottom:1155.255000px;}
.h2a{height:16.875000px;}
.h29{height:16.912500px;}
.h26{height:18.000000px;}
.h24{height:18.037500px;}
.h23{height:19.125000px;}
.h25{height:19.162500px;}
.hc{height:25.912500px;}
.h12{height:27.492188px;}
.h14{height:27.558281px;}
.h13{height:27.738281px;}
.h15{height:29.287500px;}
.h2d{height:33.787500px;}
.h27{height:34.912500px;}
.h1f{height:35.457275px;}
.h1d{height:36.000000px;}
.h28{height:36.037500px;}
.h9{height:37.125000px;}
.h1c{height:37.801758px;}
.h22{height:38.287500px;}
.h6{height:41.275635px;}
.h1b{height:41.389893px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h1a{height:44.674805px;}
.h2f{height:45.037500px;}
.h4{height:47.276367px;}
.h18{height:49.234131px;}
.h2{height:49.575000px;}
.ha{height:50.625000px;}
.h3{height:51.216064px;}
.h5{height:51.968611px;}
.h30{height:52.912500px;}
.h21{height:53.397275px;}
.h1e{height:53.457275px;}
.h20{height:53.637275px;}
.h2c{height:54.037500px;}
.h10{height:58.185791px;}
.h19{height:59.899658px;}
.h2e{height:63.037500px;}
.hf{height:63.275610px;}
.h11{height:64.507324px;}
.h7{height:67.137451px;}
.h16{height:69.114990px;}
.h2b{height:73.200000px;}
.h8{height:121.612500px;}
.hd{height:252.225000px;}
.h17{height:414.375000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w23{width:29.287500px;}
.w2f{width:32.662500px;}
.w26{width:33.825000px;}
.w32{width:36.075000px;}
.w2b{width:39.412500px;}
.w17{width:39.450000px;}
.w2{width:73.237500px;}
.w10{width:81.075000px;}
.w1e{width:84.487500px;}
.w31{width:87.862500px;}
.w29{width:91.275000px;}
.w2a{width:92.362500px;}
.w25{width:96.862500px;}
.w13{width:105.900000px;}
.w22{width:106.987500px;}
.w12{width:109.275000px;}
.w16{width:112.612500px;}
.w14{width:114.900000px;}
.wf{width:117.150000px;}
.w27{width:122.775000px;}
.w21{width:122.812500px;}
.w20{width:125.025000px;}
.wb{width:126.187500px;}
.w24{width:127.275000px;}
.w1c{width:136.275000px;}
.w15{width:138.562500px;}
.wd{width:139.687500px;}
.w1a{width:140.812500px;}
.w1d{width:141.937500px;}
.w18{width:143.062500px;}
.wa{width:146.437500px;}
.w33{width:149.812500px;}
.w4{width:152.055000px;}
.w34{width:153.225000px;}
.w2e{width:156.555000px;}
.w2c{width:156.600000px;}
.w9{width:159.930000px;}
.w2d{width:162.180000px;}
.w1b{width:182.520000px;}
.we{width:199.395000px;}
.w11{width:220.800000px;}
.w7{width:224.145000px;}
.w30{width:241.095000px;}
.w1f{width:247.845000px;}
.w28{width:254.550000px;}
.w19{width:292.875000px;}
.wc{width:299.625000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:1.155000px;}
.x2e{left:3.360000px;}
.x6{left:7.875000px;}
.x2{left:9.000000px;}
.x1d{left:11.280000px;}
.x31{left:12.375000px;}
.xf{left:14.625000px;}
.x22{left:15.795000px;}
.x26{left:16.905000px;}
.x16{left:20.295000px;}
.x1c{left:21.375000px;}
.x27{left:23.625000px;}
.x24{left:24.750000px;}
.x28{left:28.170000px;}
.x3d{left:32.655000px;}
.x37{left:33.795000px;}
.x30{left:34.950000px;}
.x46{left:38.280000px;}
.x38{left:41.685000px;}
.x3a{left:47.310000px;}
.x1{left:81.112500px;}
.x18{left:82.237500px;}
.x7{left:97.987500px;}
.x4e{left:108.149987px;}
.x11{left:122.782500px;}
.x12{left:125.032500px;}
.x4f{left:135.187487px;}
.x13{left:145.312500px;}
.x32{left:167.849987px;}
.x3e{left:174.599987px;}
.x3b{left:189.225000px;}
.x3f{left:209.520000px;}
.x14{left:214.012500px;}
.x33{left:218.520000px;}
.x2a{left:220.800000px;}
.x29{left:225.299987px;}
.x8{left:233.175000px;}
.x47{left:234.299987px;}
.x48{left:238.800000px;}
.x19{left:242.175000px;}
.x10{left:259.087500px;}
.xb{left:273.705000px;}
.x1f{left:281.625000px;}
.x15{left:305.250000px;}
.x40{left:306.375000px;}
.x49{left:331.170000px;}
.x2b{left:333.420000px;}
.x41{left:340.200000px;}
.x9{left:344.700000px;}
.xd{left:348.075000px;}
.x34{left:360.450000px;}
.xa{left:363.825000px;}
.xe{left:364.957500px;}
.x2c{left:372.870000px;}
.x1a{left:388.620000px;}
.x4d{left:397.649987px;}
.x20{left:398.775000px;}
.xc{left:437.055000px;}
.x35{left:444.945000px;}
.x17{left:447.194987px;}
.x42{left:462.975000px;}
.x3{left:476.467500px;}
.x21{left:479.850000px;}
.x4{left:480.982500px;}
.x1b{left:514.800000px;}
.x2d{left:515.925000px;}
.x44{left:555.345000px;}
.x4b{left:568.845000px;}
.x39{left:569.970000px;}
.x25{left:585.750000px;}
.x45{left:594.750000px;}
.x4c{left:604.905000px;}
.x2f{left:667.995000px;}
.x1e{left:674.745000px;}
.x36{left:692.775000px;}
.x23{left:700.650000px;}
.x43{left:717.525000px;}
.x4a{left:722.070000px;}
.x5{left:740.070000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls19{letter-spacing:-2.000000pt;}
.lsa{letter-spacing:-1.546667pt;}
.ls13{letter-spacing:-1.317333pt;}
.ls7{letter-spacing:-1.002667pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.549333pt;}
.ls12{letter-spacing:-0.456000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.720000pt;}
.lse{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.748000pt;}
.lsd{letter-spacing:1.800000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls1{letter-spacing:1.808000pt;}
.ls15{letter-spacing:1.924000pt;}
.lsc{letter-spacing:1.973333pt;}
.ls0{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.010667pt;}
.ls17{letter-spacing:2.053333pt;}
.ls14{letter-spacing:2.106667pt;}
.lsb{letter-spacing:2.160000pt;}
.ls5{letter-spacing:4.301333pt;}
.ls10{letter-spacing:10.986667pt;}
.ls18{letter-spacing:13.677333pt;}
.ls16{letter-spacing:41.677333pt;}
.ws0{word-spacing:-15.000000pt;}
.wse{word-spacing:-14.924000pt;}
.ws2{word-spacing:-14.352000pt;}
.ws1{word-spacing:-13.648000pt;}
.ws3{word-spacing:-13.376000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsb{word-spacing:-12.544000pt;}
.wsa{word-spacing:-12.450667pt;}
.ws9{word-spacing:-12.088000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws5{word-spacing:-11.453333pt;}
.wsc{word-spacing:-11.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:-7.000000pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-10.312400pt;}
._20{margin-left:-7.309467pt;}
._7{margin-left:-5.557733pt;}
._e{margin-left:-4.633467pt;}
._5{margin-left:-3.386667pt;}
._f{margin-left:-2.450667pt;}
._0{margin-left:-1.560000pt;}
._2{width:1.248000pt;}
._3{width:2.548000pt;}
._c{width:3.438667pt;}
._4{width:4.345333pt;}
._d{width:5.676000pt;}
._1{width:6.604000pt;}
._14{width:7.586667pt;}
._9{width:8.736000pt;}
._6{width:10.173333pt;}
._b{width:11.440000pt;}
._a{width:14.786667pt;}
._13{width:15.709333pt;}
._12{width:18.460000pt;}
._10{width:19.501333pt;}
._11{width:22.730667pt;}
._1b{width:26.712000pt;}
._16{width:35.048000pt;}
._17{width:39.104000pt;}
._1d{width:46.874667pt;}
._19{width:96.037333pt;}
._1a{width:111.465333pt;}
._1e{width:123.266667pt;}
._18{width:135.794667pt;}
._15{width:159.266667pt;}
._1f{width:163.034667pt;}
._1c{width:179.448000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:36.000000pt;}
.fs4{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:60.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.013333pt;}
.y47{bottom:3.000000pt;}
.yb5{bottom:3.013333pt;}
.y42{bottom:3.040000pt;}
.y1a{bottom:4.000000pt;}
.y9d{bottom:4.013333pt;}
.ye1{bottom:4.026667pt;}
.y9b{bottom:4.040000pt;}
.y92{bottom:5.000000pt;}
.y95{bottom:5.013333pt;}
.y98{bottom:5.040000pt;}
.y90{bottom:6.000000pt;}
.y45{bottom:9.000000pt;}
.y4{bottom:10.000000pt;}
.y1d{bottom:12.040000pt;}
.ydd{bottom:14.000000pt;}
.y3{bottom:15.033333pt;}
.yb{bottom:16.000000pt;}
.yd4{bottom:18.040000pt;}
.y46{bottom:19.000000pt;}
.y41{bottom:19.040000pt;}
.yb1{bottom:20.000000pt;}
.ye5{bottom:20.026667pt;}
.yd1{bottom:20.040000pt;}
.yc4{bottom:21.040000pt;}
.y44{bottom:22.000000pt;}
.y8f{bottom:22.040000pt;}
.y19{bottom:24.026667pt;}
.yde{bottom:28.040000pt;}
.y1{bottom:29.000000pt;}
.ydc{bottom:29.040000pt;}
.ya{bottom:30.026667pt;}
.y2{bottom:32.033333pt;}
.y40{bottom:34.040000pt;}
.ye3{bottom:35.026667pt;}
.yc3{bottom:36.040000pt;}
.yc1{bottom:37.040000pt;}
.y18{bottom:39.026667pt;}
.ydb{bottom:44.040000pt;}
.y9{bottom:45.026667pt;}
.y3f{bottom:49.066667pt;}
.yc0{bottom:53.040000pt;}
.y17{bottom:53.066667pt;}
.y3e{bottom:65.066667pt;}
.y8{bottom:67.053333pt;}
.y16{bottom:68.066667pt;}
.y3d{bottom:80.106667pt;}
.y7{bottom:83.053333pt;}
.y15{bottom:83.066667pt;}
.yaf{bottom:89.066667pt;}
.y52{bottom:91.066667pt;}
.y11c{bottom:94.066667pt;}
.y3c{bottom:95.106667pt;}
.y14{bottom:97.106667pt;}
.y6{bottom:98.053333pt;}
.yae{bottom:104.066667pt;}
.y8c{bottom:106.100000pt;}
.y51{bottom:107.100000pt;}
.y11b{bottom:109.100000pt;}
.y13{bottom:110.106667pt;}
.y3b{bottom:111.106667pt;}
.yad{bottom:119.100000pt;}
.y8b{bottom:121.100000pt;}
.y50{bottom:122.100000pt;}
.y11a{bottom:125.100000pt;}
.y12{bottom:126.133333pt;}
.y3a{bottom:126.146667pt;}
.yac{bottom:135.106667pt;}
.y4f{bottom:137.106667pt;}
.y119{bottom:140.106667pt;}
.y39{bottom:141.146667pt;}
.y11{bottom:143.133333pt;}
.yab{bottom:150.133333pt;}
.y8a{bottom:152.133333pt;}
.y4e{bottom:153.133333pt;}
.y118{bottom:155.133333pt;}
.y38{bottom:157.173333pt;}
.yaa{bottom:165.133333pt;}
.y10{bottom:166.173333pt;}
.y89{bottom:167.133333pt;}
.y4d{bottom:168.133333pt;}
.y117{bottom:171.133333pt;}
.y37{bottom:172.173333pt;}
.y2a{bottom:179.173333pt;}
.ya9{bottom:181.173333pt;}
.y4c{bottom:183.173333pt;}
.y116{bottom:186.173333pt;}
.y36{bottom:187.213333pt;}
.yf{bottom:189.173333pt;}
.y29{bottom:192.200000pt;}
.ya8{bottom:196.173333pt;}
.y88{bottom:198.173333pt;}
.y4b{bottom:199.173333pt;}
.y115{bottom:201.173333pt;}
.y35{bottom:203.213333pt;}
.y28{bottom:208.213333pt;}
.ya7{bottom:211.173333pt;}
.ye{bottom:211.200000pt;}
.y87{bottom:213.173333pt;}
.y4a{bottom:214.173333pt;}
.y114{bottom:217.200000pt;}
.y34{bottom:218.213333pt;}
.y27{bottom:224.240000pt;}
.ya6{bottom:227.200000pt;}
.y49{bottom:229.200000pt;}
.ye0{bottom:231.200000pt;}
.y113{bottom:232.200000pt;}
.y33{bottom:233.240000pt;}
.y26{bottom:239.240000pt;}
.ya5{bottom:240.200000pt;}
.y86{bottom:244.200000pt;}
.y48{bottom:245.200000pt;}
.y112{bottom:247.200000pt;}
.ydf{bottom:248.200000pt;}
.y32{bottom:249.240000pt;}
.y25{bottom:254.240000pt;}
.y43{bottom:257.226667pt;}
.y85{bottom:259.240000pt;}
.y111{bottom:263.226667pt;}
.yda{bottom:264.226667pt;}
.y31{bottom:264.280000pt;}
.y24{bottom:270.280000pt;}
.ya4{bottom:272.226667pt;}
.y84{bottom:275.226667pt;}
.y110{bottom:278.226667pt;}
.y30{bottom:279.280000pt;}
.y23{bottom:286.280000pt;}
.y1e{bottom:289.226667pt;}
.y83{bottom:290.266667pt;}
.y10f{bottom:293.266667pt;}
.y2f{bottom:295.280000pt;}
.y22{bottom:302.306667pt;}
.y82{bottom:305.266667pt;}
.ya3{bottom:308.266667pt;}
.y10e{bottom:309.266667pt;}
.y2e{bottom:310.306667pt;}
.y21{bottom:319.306667pt;}
.y81{bottom:321.266667pt;}
.y10d{bottom:324.266667pt;}
.yd9{bottom:325.266667pt;}
.y2d{bottom:325.306667pt;}
.ya2{bottom:326.266667pt;}
.y80{bottom:336.293333pt;}
.y10c{bottom:339.293333pt;}
.yd8{bottom:340.306667pt;}
.y2c{bottom:341.346667pt;}
.y20{bottom:342.333333pt;}
.ya1{bottom:344.293333pt;}
.y7f{bottom:351.293333pt;}
.y10b{bottom:355.306667pt;}
.yd7{bottom:356.293333pt;}
.y2b{bottom:356.346667pt;}
.y1f{bottom:358.333333pt;}
.ya0{bottom:362.293333pt;}
.y7e{bottom:367.333333pt;}
.y10a{bottom:370.333333pt;}
.yd6{bottom:371.333333pt;}
.y9f{bottom:381.333333pt;}
.y7d{bottom:382.333333pt;}
.y109{bottom:385.333333pt;}
.yd5{bottom:386.333333pt;}
.y7c{bottom:397.333333pt;}
.y9e{bottom:399.333333pt;}
.yd3{bottom:400.333333pt;}
.y108{bottom:401.360000pt;}
.y7b{bottom:413.360000pt;}
.y107{bottom:416.360000pt;}
.y9c{bottom:417.360000pt;}
.y7a{bottom:428.360000pt;}
.y106{bottom:431.360000pt;}
.yd0{bottom:432.360000pt;}
.y9a{bottom:435.360000pt;}
.y79{bottom:443.400000pt;}
.y105{bottom:447.400000pt;}
.yd2{bottom:448.400000pt;}
.y99{bottom:453.400000pt;}
.y78{bottom:459.400000pt;}
.y104{bottom:462.400000pt;}
.ycf{bottom:468.400000pt;}
.y97{bottom:471.400000pt;}
.y77{bottom:474.400000pt;}
.y103{bottom:477.440000pt;}
.yce{bottom:484.426667pt;}
.y96{bottom:489.426667pt;}
.y76{bottom:489.440000pt;}
.y102{bottom:493.426667pt;}
.ycd{bottom:499.426667pt;}
.y75{bottom:505.426667pt;}
.y94{bottom:507.426667pt;}
.y101{bottom:508.426667pt;}
.ycc{bottom:514.466667pt;}
.y74{bottom:520.466667pt;}
.y100{bottom:523.466667pt;}
.y93{bottom:525.466667pt;}
.ycb{bottom:530.466667pt;}
.y73{bottom:535.466667pt;}
.yff{bottom:539.466667pt;}
.y8e{bottom:543.466667pt;}
.yca{bottom:545.466667pt;}
.y72{bottom:551.506667pt;}
.yfe{bottom:554.506667pt;}
.yc9{bottom:558.506667pt;}
.y91{bottom:560.506667pt;}
.y71{bottom:566.506667pt;}
.yfd{bottom:569.506667pt;}
.yc8{bottom:575.506667pt;}
.y70{bottom:581.506667pt;}
.yfc{bottom:585.506667pt;}
.yc7{bottom:592.533333pt;}
.y6f{bottom:597.533333pt;}
.yfb{bottom:600.533333pt;}
.yc6{bottom:608.533333pt;}
.y6e{bottom:612.533333pt;}
.yfa{bottom:615.533333pt;}
.yc5{bottom:625.560000pt;}
.y6d{bottom:627.573333pt;}
.yf9{bottom:631.560000pt;}
.ybf{bottom:642.560000pt;}
.y6c{bottom:643.560000pt;}
.yf8{bottom:646.560000pt;}
.y1b{bottom:657.560000pt;}
.y6b{bottom:658.560000pt;}
.yf7{bottom:661.600000pt;}
.y6a{bottom:673.600000pt;}
.yf6{bottom:677.600000pt;}
.yd{bottom:683.600000pt;}
.y69{bottom:689.600000pt;}
.yc2{bottom:691.600000pt;}
.yf5{bottom:692.600000pt;}
.y68{bottom:704.626667pt;}
.yf4{bottom:707.626667pt;}
.ybe{bottom:711.626667pt;}
.y67{bottom:719.626667pt;}
.yf3{bottom:723.626667pt;}
.ybd{bottom:727.626667pt;}
.y66{bottom:735.666667pt;}
.yf2{bottom:738.666667pt;}
.ybc{bottom:742.666667pt;}
.y65{bottom:750.666667pt;}
.yf1{bottom:753.666667pt;}
.ybb{bottom:757.666667pt;}
.y64{bottom:765.666667pt;}
.yf0{bottom:769.666667pt;}
.yba{bottom:773.706667pt;}
.y63{bottom:781.706667pt;}
.yef{bottom:784.706667pt;}
.yb9{bottom:788.706667pt;}
.y62{bottom:796.706667pt;}
.yee{bottom:799.706667pt;}
.yb8{bottom:803.706667pt;}
.y61{bottom:811.733333pt;}
.yed{bottom:815.733333pt;}
.yb7{bottom:819.733333pt;}
.y60{bottom:827.733333pt;}
.yec{bottom:830.733333pt;}
.yb6{bottom:832.733333pt;}
.y5f{bottom:842.733333pt;}
.yeb{bottom:845.733333pt;}
.y8d{bottom:857.773333pt;}
.yea{bottom:859.773333pt;}
.y5e{bottom:861.773333pt;}
.yb4{bottom:864.760000pt;}
.y5d{bottom:873.773333pt;}
.ye9{bottom:875.760000pt;}
.y5c{bottom:888.800000pt;}
.yb3{bottom:896.800000pt;}
.y5b{bottom:903.800000pt;}
.yc{bottom:907.800000pt;}
.y5a{bottom:919.800000pt;}
.ye8{bottom:924.840000pt;}
.yb0{bottom:928.840000pt;}
.y5{bottom:930.840000pt;}
.y59{bottom:934.840000pt;}
.ye7{bottom:941.840000pt;}
.yb2{bottom:945.840000pt;}
.y58{bottom:949.840000pt;}
.ye6{bottom:957.866667pt;}
.y57{bottom:965.866667pt;}
.ye2{bottom:974.866667pt;}
.y56{bottom:980.866667pt;}
.y55{bottom:995.893333pt;}
.ye4{bottom:1006.893333pt;}
.y54{bottom:1011.893333pt;}
.y53{bottom:1026.893333pt;}
.h2a{height:15.000000pt;}
.h29{height:15.033333pt;}
.h26{height:16.000000pt;}
.h24{height:16.033333pt;}
.h23{height:17.000000pt;}
.h25{height:17.033333pt;}
.hc{height:23.033333pt;}
.h12{height:24.437500pt;}
.h14{height:24.496250pt;}
.h13{height:24.656250pt;}
.h15{height:26.033333pt;}
.h2d{height:30.033333pt;}
.h27{height:31.033333pt;}
.h1f{height:31.517578pt;}
.h1d{height:32.000000pt;}
.h28{height:32.033333pt;}
.h9{height:33.000000pt;}
.h1c{height:33.601562pt;}
.h22{height:34.033333pt;}
.h6{height:36.689453pt;}
.h1b{height:36.791016pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h1a{height:39.710938pt;}
.h2f{height:40.033333pt;}
.h4{height:42.023438pt;}
.h18{height:43.763672pt;}
.h2{height:44.066667pt;}
.ha{height:45.000000pt;}
.h3{height:45.525391pt;}
.h5{height:46.194321pt;}
.h30{height:47.033333pt;}
.h21{height:47.464245pt;}
.h1e{height:47.517578pt;}
.h20{height:47.677578pt;}
.h2c{height:48.033333pt;}
.h10{height:51.720703pt;}
.h19{height:53.244141pt;}
.h2e{height:56.033333pt;}
.hf{height:56.244987pt;}
.h11{height:57.339844pt;}
.h7{height:59.677734pt;}
.h16{height:61.435547pt;}
.h2b{height:65.066667pt;}
.h8{height:108.100000pt;}
.hd{height:224.200000pt;}
.h17{height:368.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w23{width:26.033333pt;}
.w2f{width:29.033333pt;}
.w26{width:30.066667pt;}
.w32{width:32.066667pt;}
.w2b{width:35.033333pt;}
.w17{width:35.066667pt;}
.w2{width:65.100000pt;}
.w10{width:72.066667pt;}
.w1e{width:75.100000pt;}
.w31{width:78.100000pt;}
.w29{width:81.133333pt;}
.w2a{width:82.100000pt;}
.w25{width:86.100000pt;}
.w13{width:94.133333pt;}
.w22{width:95.100000pt;}
.w12{width:97.133333pt;}
.w16{width:100.100000pt;}
.w14{width:102.133333pt;}
.wf{width:104.133333pt;}
.w27{width:109.133333pt;}
.w21{width:109.166667pt;}
.w20{width:111.133333pt;}
.wb{width:112.166667pt;}
.w24{width:113.133333pt;}
.w1c{width:121.133333pt;}
.w15{width:123.166667pt;}
.wd{width:124.166667pt;}
.w1a{width:125.166667pt;}
.w1d{width:126.166667pt;}
.w18{width:127.166667pt;}
.wa{width:130.166667pt;}
.w33{width:133.166667pt;}
.w4{width:135.160000pt;}
.w34{width:136.200000pt;}
.w2e{width:139.160000pt;}
.w2c{width:139.200000pt;}
.w9{width:142.160000pt;}
.w2d{width:144.160000pt;}
.w1b{width:162.240000pt;}
.we{width:177.240000pt;}
.w11{width:196.266667pt;}
.w7{width:199.240000pt;}
.w30{width:214.306667pt;}
.w1f{width:220.306667pt;}
.w28{width:226.266667pt;}
.w19{width:260.333333pt;}
.wc{width:266.333333pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:1.026667pt;}
.x2e{left:2.986667pt;}
.x6{left:7.000000pt;}
.x2{left:8.000000pt;}
.x1d{left:10.026667pt;}
.x31{left:11.000000pt;}
.xf{left:13.000000pt;}
.x22{left:14.040000pt;}
.x26{left:15.026667pt;}
.x16{left:18.040000pt;}
.x1c{left:19.000000pt;}
.x27{left:21.000000pt;}
.x24{left:22.000000pt;}
.x28{left:25.040000pt;}
.x3d{left:29.026667pt;}
.x37{left:30.040000pt;}
.x30{left:31.066667pt;}
.x46{left:34.026667pt;}
.x38{left:37.053333pt;}
.x3a{left:42.053333pt;}
.x1{left:72.100000pt;}
.x18{left:73.100000pt;}
.x7{left:87.100000pt;}
.x4e{left:96.133322pt;}
.x11{left:109.140000pt;}
.x12{left:111.140000pt;}
.x4f{left:120.166655pt;}
.x13{left:129.166667pt;}
.x32{left:149.199988pt;}
.x3e{left:155.199988pt;}
.x3b{left:168.200000pt;}
.x3f{left:186.240000pt;}
.x14{left:190.233333pt;}
.x33{left:194.240000pt;}
.x2a{left:196.266667pt;}
.x29{left:200.266655pt;}
.x8{left:207.266667pt;}
.x47{left:208.266655pt;}
.x48{left:212.266667pt;}
.x19{left:215.266667pt;}
.x10{left:230.300000pt;}
.xb{left:243.293333pt;}
.x1f{left:250.333333pt;}
.x15{left:271.333333pt;}
.x40{left:272.333333pt;}
.x49{left:294.373333pt;}
.x2b{left:296.373333pt;}
.x41{left:302.400000pt;}
.x9{left:306.400000pt;}
.xd{left:309.400000pt;}
.x34{left:320.400000pt;}
.xa{left:323.400000pt;}
.xe{left:324.406667pt;}
.x2c{left:331.440000pt;}
.x1a{left:345.440000pt;}
.x4d{left:353.466655pt;}
.x20{left:354.466667pt;}
.xc{left:388.493333pt;}
.x35{left:395.506667pt;}
.x17{left:397.506655pt;}
.x42{left:411.533333pt;}
.x3{left:423.526667pt;}
.x21{left:426.533333pt;}
.x4{left:427.540000pt;}
.x1b{left:457.600000pt;}
.x2d{left:458.600000pt;}
.x44{left:493.640000pt;}
.x4b{left:505.640000pt;}
.x39{left:506.640000pt;}
.x25{left:520.666667pt;}
.x45{left:528.666667pt;}
.x4c{left:537.693333pt;}
.x2f{left:593.773333pt;}
.x1e{left:599.773333pt;}
.x36{left:615.800000pt;}
.x23{left:622.800000pt;}
.x43{left:637.800000pt;}
.x4a{left:641.840000pt;}
.x5{left:657.840000pt;}
}




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