
    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_b66d92e1bb52b152419e91ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056000;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_526181d1680fb1c571753c1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_9dc4c97813e176d3906e7f51.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_6f3435206705ab06cb47317c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_ea9e5c677a354ee37f10e67a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_a492776cc4f86a6a446a8615.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_0a533fcffb27746976d6b312.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_7fc625115551d86a3bb87852.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739258;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_85f8d3435280c41e672aa714.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_56bc1c78cda716e098f43a7c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.254000;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_9efdde91bd68a27e3ebff740.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.701000;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_131a385207bfdc000774b45d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853000;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_43659e45e935e36f8fb6a867.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.845000;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_f5a22f1b2a7833838ad36007.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.646000;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;}
.m6{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m3{transform:matrix(0.224699,-0.109593,0.109593,0.224699,0,0);-ms-transform:matrix(0.224699,-0.109593,0.109593,0.224699,0,0);-webkit-transform:matrix(0.224699,-0.109593,0.109593,0.224699,0,0);}
.m1{transform:matrix(0.240555,0.068070,-0.068070,0.240555,0,0);-ms-transform:matrix(0.240555,0.068070,-0.068070,0.240555,0,0);-webkit-transform:matrix(0.240555,0.068070,-0.068070,0.240555,0,0);}
.m2{transform:matrix(0.240581,-0.067975,0.067975,0.240581,0,0);-ms-transform:matrix(0.240581,-0.067975,0.067975,0.240581,0,0);-webkit-transform:matrix(0.240581,-0.067975,0.067975,0.240581,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);}
.v4{vertical-align:-74.976000px;}
.v8{vertical-align:-60.000000px;}
.v6{vertical-align:-52.486380px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.837800px;}
.v5{vertical-align:14.985000px;}
.v9{vertical-align:60.000000px;}
.v7{vertical-align:67.783200px;}
.v3{vertical-align:69.024000px;}
.v2{vertical-align:144.000000px;}
.lsf{letter-spacing:-13.920000px;}
.ls1{letter-spacing:-9.600000px;}
.ls3{letter-spacing:-9.282000px;}
.ls2{letter-spacing:-8.400000px;}
.ls5{letter-spacing:-7.200000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000011px;}
.lsc{letter-spacing:0.000021px;}
.ls9{letter-spacing:27.072000px;}
.lse{letter-spacing:29.602085px;}
.lsd{letter-spacing:34.990665px;}
.ls8{letter-spacing:42.666600px;}
.ls7{letter-spacing:53.333340px;}
.ls4{letter-spacing:73.919880px;}
.ls6{letter-spacing:141.173340px;}
.lsa{letter-spacing:169.920000px;}
.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;}
}
.ws15{word-spacing:-192.096000px;}
.ws10{word-spacing:-80.064000px;}
.ws14{word-spacing:-71.040000px;}
.ws5{word-spacing:-66.720000px;}
.wsd{word-spacing:-63.936000px;}
.ws6{word-spacing:-56.832000px;}
.wsc{word-spacing:-53.376000px;}
.ws4{word-spacing:-49.728000px;}
.ws8{word-spacing:-42.858600px;}
.ws1{word-spacing:-40.032000px;}
.ws3{word-spacing:-39.782400px;}
.ws2{word-spacing:-32.025600px;}
.ws11{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.209944px;}
.ws7{word-spacing:-0.192000px;}
.ws12{word-spacing:-0.170400px;}
.wsb{word-spacing:-0.149060px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:42.474600px;}
.ws13{word-spacing:66.426600px;}
.wse{word-spacing:359.477400px;}
.wsf{word-spacing:4675.984200px;}
._10{margin-left:-2598.927600px;}
._7{margin-left:-26.640000px;}
._8{margin-left:-18.480000px;}
._1{margin-left:-14.688000px;}
._6{margin-left:-12.364800px;}
._0{margin-left:-8.640000px;}
._3{margin-left:-7.027200px;}
._5{margin-left:-5.068800px;}
._4{margin-left:-3.024000px;}
._2{width:1.214400px;}
._11{width:2.325600px;}
._9{width:3.456000px;}
._d{width:99.513600px;}
._f{width:170.376000px;}
._c{width:259.872000px;}
._e{width:386.326200px;}
._b{width:466.413600px;}
._12{width:2317.662180px;}
._a{width:2380.662180px;}
.fcd{color:rgb(239,246,89);}
.fc7{color:rgb(242,249,88);}
.fc1{color:rgb(239,246,88);}
.fc6{color:rgb(239,246,88);}
.fc2{color:rgb(238,246,88);}
.fc3{color:transparent;}
.fc4{color:rgb(83,13,160);}
.fc5{color:rgb(237,105,79);}
.fce{color:rgb(239,246,87);}
.fca{color:rgb(255,214,136);}
.fc8{color:rgb(220,113,87);}
.fc9{color:rgb(254,255,246);}
.fc0{color:rgb(0,0,0);}
.fcb{color:rgb(82,13,161);}
.fcc{color:rgb(241,249,88);}
.fsb{font-size:107.999993px;}
.fs8{font-size:115.200000px;}
.fs9{font-size:132.000000px;}
.fsc{font-size:134.400000px;}
.fs7{font-size:144.000000px;}
.fs14{font-size:149.060160px;}
.fs1a{font-size:156.000000px;}
.fsd{font-size:168.000000px;}
.fsa{font-size:168.000005px;}
.fs6{font-size:168.000006px;}
.fs19{font-size:170.400000px;}
.fsf{font-size:192.000000px;}
.fs15{font-size:192.000005px;}
.fs13{font-size:209.943900px;}
.fs4{font-size:216.000000px;}
.fs17{font-size:223.590300px;}
.fs12{font-size:236.160000px;}
.fse{font-size:240.000000px;}
.fs0{font-size:250.560000px;}
.fs16{font-size:288.000000px;}
.fs18{font-size:293.700000px;}
.fs3{font-size:330.000000px;}
.fs11{font-size:360.000000px;}
.fs2{font-size:420.000000px;}
.fs5{font-size:464.100000px;}
.fs1{font-size:480.000000px;}
.fs10{font-size:600.000000px;}
.fs1b{font-size:696.000000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:4.415820px;}
.y9a{bottom:4.415970px;}
.y5b{bottom:8.016000px;}
.y3d{bottom:10.500000px;}
.y7c{bottom:10.759575px;}
.y67{bottom:12.000000px;}
.ya9{bottom:13.318500px;}
.y7f{bottom:13.531425px;}
.y5d{bottom:13.824000px;}
.y4b{bottom:18.228000px;}
.yb9{bottom:20.736000px;}
.y59{bottom:20.832000px;}
.y12{bottom:21.211200px;}
.y16{bottom:21.539850px;}
.y14{bottom:21.540000px;}
.ybc{bottom:24.097500px;}
.y43{bottom:26.040000px;}
.yf{bottom:26.130900px;}
.y96{bottom:26.573400px;}
.y7e{bottom:26.745315px;}
.ya7{bottom:27.592395px;}
.y2a{bottom:29.714850px;}
.yd{bottom:32.699100px;}
.y31{bottom:33.959850px;}
.y2d{bottom:42.449700px;}
.y22{bottom:42.449850px;}
.yb3{bottom:43.232100px;}
.yb6{bottom:43.232220px;}
.y4e{bottom:44.783850px;}
.yd1{bottom:44.783940px;}
.yaf{bottom:44.784000px;}
.ycf{bottom:44.949465px;}
.y18{bottom:49.740150px;}
.y9c{bottom:50.939700px;}
.y11{bottom:51.545550px;}
.ya0{bottom:54.017700px;}
.yb{bottom:55.333650px;}
.y5{bottom:56.519895px;}
.y3f{bottom:63.938010px;}
.yc1{bottom:66.296550px;}
.y92{bottom:67.554000px;}
.y94{bottom:67.571850px;}
.y4a{bottom:75.228000px;}
.yb4{bottom:75.703020px;}
.y66{bottom:78.000000px;}
.yc4{bottom:78.299700px;}
.y3b{bottom:78.786600px;}
.y29{bottom:81.014850px;}
.y58{bottom:86.832000px;}
.yc9{bottom:93.359850px;}
.y61{bottom:95.489700px;}
.y30{bottom:99.959850px;}
.y8{bottom:100.252800px;}
.yd8{bottom:100.290000px;}
.ya{bottom:101.431650px;}
.yb2{bottom:109.232100px;}
.yb5{bottom:109.232280px;}
.y4d{bottom:110.783850px;}
.yd0{bottom:110.783985px;}
.yae{bottom:110.784000px;}
.y3e{bottom:115.238010px;}
.y2c{bottom:116.699700px;}
.y21{bottom:116.699850px;}
.y49{bottom:132.228000px;}
.y90{bottom:144.345975px;}
.ya6{bottom:146.223105px;}
.yc0{bottom:148.796550px;}
.y44{bottom:153.966000px;}
.yc2{bottom:156.384150px;}
.y97{bottom:160.858950px;}
.y9e{bottom:166.055850px;}
.y38{bottom:172.194000px;}
.yd7{bottom:174.540000px;}
.y4c{bottom:179.109900px;}
.ybb{bottom:179.136000px;}
.y5c{bottom:185.247450px;}
.y48{bottom:189.228000px;}
.yd3{bottom:190.949850px;}
.y41{bottom:199.071450px;}
.yce{bottom:204.132750px;}
.y19{bottom:216.345000px;}
.y60{bottom:218.489700px;}
.yb7{bottom:219.257850px;}
.y37{bottom:229.194000px;}
.ybf{bottom:231.296550px;}
.yb0{bottom:240.089850px;}
.y47{bottom:246.228000px;}
.ycc{bottom:251.771250px;}
.ycd{bottom:263.532750px;}
.ye{bottom:277.586250px;}
.y36{bottom:286.194000px;}
.y46{bottom:303.228000px;}
.y62{bottom:309.280200px;}
.y69{bottom:310.181850px;}
.ybe{bottom:313.796550px;}
.y35{bottom:343.194000px;}
.y45{bottom:360.228000px;}
.ya8{bottom:396.288900px;}
.y34{bottom:400.194000px;}
.y72{bottom:407.503350px;}
.y1{bottom:436.561350px;}
.y33{bottom:457.194000px;}
.y3a{bottom:465.071250px;}
.ye1{bottom:490.580250px;}
.yac{bottom:494.093400px;}
.y65{bottom:504.727500px;}
.y32{bottom:514.194000px;}
.y56{bottom:516.727500px;}
.y5a{bottom:516.844500px;}
.y7{bottom:519.432300px;}
.y40{bottom:524.860500px;}
.y28{bottom:536.230200px;}
.ybd{bottom:540.025650px;}
.y4{bottom:547.226550px;}
.y1f{bottom:556.652850px;}
.y7d{bottom:564.465900px;}
.y87{bottom:566.541750px;}
.yab{bottom:568.343400px;}
.y27{bottom:568.866150px;}
.y7a{bottom:574.250850px;}
.y91{bottom:576.546000px;}
.y55{bottom:582.727500px;}
.yca{bottom:611.157750px;}
.y1e{bottom:613.652850px;}
.y26{bottom:625.866150px;}
.y86{bottom:633.441750px;}
.y7b{bottom:639.263850px;}
.y79{bottom:646.277100px;}
.y2b{bottom:654.132300px;}
.y5e{bottom:654.447450px;}
.y2f{bottom:660.902400px;}
.y1d{bottom:670.652850px;}
.ye0{bottom:680.180250px;}
.y89{bottom:680.382600px;}
.y25{bottom:682.866150px;}
.y85{bottom:693.914100px;}
.yc7{bottom:711.135000px;}
.yc6{bottom:711.135150px;}
.yc{bottom:722.557350px;}
.y1c{bottom:727.652850px;}
.y8a{bottom:730.434300px;}
.yad{bottom:737.838000px;}
.y24{bottom:739.866150px;}
.ycb{bottom:740.728350px;}
.yc5{bottom:748.260000px;}
.ya5{bottom:751.063650px;}
.y84{bottom:764.867850px;}
.y1b{bottom:784.652850px;}
.y64{bottom:793.383000px;}
.y23{bottom:796.866150px;}
.y3{bottom:811.296900px;}
.y54{bottom:814.215000px;}
.y88{bottom:814.580550px;}
.ydd{bottom:824.715600px;}
.y83{bottom:825.340200px;}
.ya4{bottom:829.491645px;}
.y3c{bottom:834.146700px;}
.y1a{bottom:841.652850px;}
.y39{bottom:844.646700px;}
.yc8{bottom:866.549100px;}
.y20{bottom:870.067350px;}
.y5f{bottom:873.243150px;}
.y82{bottom:896.293950px;}
.yd2{bottom:914.447100px;}
.y71{bottom:920.048550px;}
.yd6{bottom:930.856950px;}
.ydc{bottom:937.215600px;}
.y75{bottom:938.571480px;}
.y93{bottom:951.648000px;}
.y2{bottom:960.786900px;}
.y81{bottom:963.193950px;}
.yd9{bottom:967.981950px;}
.y77{bottom:974.571480px;}
.y70{bottom:976.739100px;}
.y76{bottom:986.655900px;}
.yd5{bottom:994.021950px;}
.y73{bottom:1008.411480px;}
.y6c{bottom:1013.881800px;}
.y68{bottom:1015.159200px;}
.ydb{bottom:1019.715600px;}
.ydf{bottom:1019.780250px;}
.y74{bottom:1020.495900px;}
.y80{bottom:1022.593950px;}
.y53{bottom:1027.159200px;}
.y57{bottom:1057.467000px;}
.yd4{bottom:1068.271950px;}
.y63{bottom:1071.672750px;}
.y50{bottom:1078.299000px;}
.y6f{bottom:1081.139100px;}
.ya3{bottom:1083.432900px;}
.y8c{bottom:1087.524300px;}
.y52{bottom:1092.504750px;}
.y9{bottom:1098.805800px;}
.yda{bottom:1102.215600px;}
.y6b{bottom:1112.281800px;}
.y78{bottom:1114.139700px;}
.y10{bottom:1128.113550px;}
.ya2{bottom:1134.732900px;}
.y13{bottom:1136.181150px;}
.y15{bottom:1138.045350px;}
.y4f{bottom:1144.299000px;}
.y8b{bottom:1146.519300px;}
.yb1{bottom:1148.712900px;}
.yba{bottom:1152.564600px;}
.yc3{bottom:1152.808800px;}
.y51{bottom:1158.504750px;}
.y99{bottom:1161.462300px;}
.y9d{bottom:1165.644750px;}
.y98{bottom:1168.614750px;}
.y6e{bottom:1185.539100px;}
.ya1{bottom:1186.032900px;}
.yde{bottom:1186.171500px;}
.y42{bottom:1189.161900px;}
.y6a{bottom:1210.681800px;}
.y2e{bottom:1215.201900px;}
.y17{bottom:1217.149050px;}
.y95{bottom:1234.128750px;}
.y6d{bottom:1294.479000px;}
.yaa{bottom:1371.409050px;}
.y6{bottom:1371.464850px;}
.y9b{bottom:1374.255900px;}
.yb8{bottom:1404.459600px;}
.y9f{bottom:1470.844800px;}
.y8e{bottom:1500.765000px;}
.y8d{bottom:1524.862500px;}
.h34{height:33.905940px;}
.h38{height:37.004190px;}
.h1b{height:43.353300px;}
.h30{height:46.240155px;}
.h28{height:51.340800px;}
.h21{height:53.252550px;}
.h26{height:60.117000px;}
.h47{height:61.242150px;}
.h32{height:65.374965px;}
.h1c{height:73.838100px;}
.hd{height:75.392475px;}
.h48{height:77.540400px;}
.h43{height:80.636955px;}
.hf{height:82.943995px;}
.h4a{height:91.777500px;}
.h35{height:92.585260px;}
.h4e{height:98.783940px;}
.h3c{height:100.200000px;}
.hb{height:101.376000px;}
.ha{height:110.592000px;}
.h11{height:111.182250px;}
.h27{height:114.772500px;}
.h10{height:114.910650px;}
.h29{height:117.318150px;}
.h44{height:119.808000px;}
.h4c{height:123.479925px;}
.h24{height:124.219800px;}
.h1f{height:124.533000px;}
.h12{height:125.305785px;}
.h25{height:125.327250px;}
.h2b{height:128.256000px;}
.h13{height:129.024000px;}
.h8{height:129.024005px;}
.h2d{height:131.136000px;}
.h16{height:136.985940px;}
.h2c{height:141.312000px;}
.h31{height:143.391684px;}
.h18{height:147.456000px;}
.h36{height:147.456004px;}
.h3f{height:148.175910px;}
.h41{height:149.155170px;}
.h39{height:149.358320px;}
.h51{height:149.518050px;}
.h33{height:154.518710px;}
.h4d{height:158.184000px;}
.h7{height:158.218650px;}
.h42{height:163.920000px;}
.h17{height:164.784000px;}
.h3a{height:164.982150px;}
.h3b{height:165.000000px;}
.h5{height:165.888000px;}
.h49{height:174.935400px;}
.h9{height:179.193300px;}
.h2a{height:181.370880px;}
.h46{height:184.078350px;}
.h15{height:184.320000px;}
.h1e{height:186.391800px;}
.h40{height:190.643850px;}
.h1{height:192.430080px;}
.h14{height:197.729850px;}
.h37{height:221.184000px;}
.h45{height:222.473850px;}
.h50{height:224.143050px;}
.h3d{height:225.561600px;}
.h2f{height:225.696000px;}
.h4{height:253.440000px;}
.hc{height:261.083250px;}
.h19{height:268.291950px;}
.h4f{height:271.979850px;}
.he{height:273.989250px;}
.h23{height:276.480000px;}
.h3e{height:288.967200px;}
.h3{height:322.560000px;}
.h6{height:356.428800px;}
.h2{height:368.640000px;}
.h2e{height:369.696000px;}
.h22{height:370.928700px;}
.h20{height:377.155500px;}
.h1d{height:383.034000px;}
.h4b{height:419.987250px;}
.h1a{height:436.816406px;}
.h52{height:534.528000px;}
.h0{height:1620.000000px;}
.w21{width:22.464000px;}
.w22{width:37.004190px;}
.w14{width:54.384000px;}
.w2b{width:80.636850px;}
.w31{width:87.915000px;}
.w20{width:97.252320px;}
.w1f{width:113.457195px;}
.w27{width:148.176000px;}
.w7{width:149.392650px;}
.w6{width:157.036500px;}
.w30{width:175.255500px;}
.wf{width:178.058400px;}
.wd{width:181.778250px;}
.w26{width:195.971850px;}
.w13{width:231.357000px;}
.w18{width:231.718500px;}
.w1{width:291.096000px;}
.w1a{width:316.390500px;}
.w1d{width:335.154000px;}
.we{width:338.986200px;}
.w2{width:339.146400px;}
.w10{width:339.533100px;}
.wc{width:339.876900px;}
.w19{width:385.627500px;}
.w1b{width:396.862500px;}
.w1c{width:403.147500px;}
.w15{width:415.209000px;}
.w35{width:422.579850px;}
.w5{width:435.796650px;}
.w16{width:534.394500px;}
.w12{width:534.986700px;}
.w4{width:535.160550px;}
.w23{width:550.046850px;}
.w34{width:566.409000px;}
.w11{width:571.389000px;}
.w2d{width:644.401650px;}
.w3a{width:653.990400px;}
.w32{width:655.191000px;}
.w3{width:655.499550px;}
.w2f{width:673.045500px;}
.w28{width:678.853200px;}
.w36{width:713.572950px;}
.w24{width:718.899000px;}
.w2c{width:752.299050px;}
.w9{width:754.264350px;}
.w3b{width:761.974050px;}
.w37{width:792.163650px;}
.w3d{width:796.174200px;}
.w2e{width:810.675150px;}
.w8{width:825.062850px;}
.w1e{width:862.325550px;}
.w3c{width:868.747950px;}
.w40{width:920.358000px;}
.w39{width:950.157600px;}
.wa{width:976.392000px;}
.w3e{width:998.491350px;}
.w3f{width:1005.069600px;}
.w38{width:1028.022600px;}
.w33{width:1063.979850px;}
.w2a{width:1094.808450px;}
.w29{width:1100.955450px;}
.wb{width:1157.707800px;}
.w17{width:1840.375500px;}
.w25{width:2634.349500px;}
.w0{width:2880.000000px;}
.x79{left:-3.880500px;}
.x2c{left:-2.706900px;}
.x27{left:-1.029600px;}
.x0{left:0.000000px;}
.x59{left:7.400523px;}
.x8f{left:16.392000px;}
.x16{left:18.798435px;}
.x7b{left:20.235000px;}
.x3b{left:21.573000px;}
.x5{left:22.613550px;}
.xe{left:24.436350px;}
.x1b{left:26.322000px;}
.x20{left:27.609210px;}
.xa{left:29.742900px;}
.x22{left:30.895800px;}
.x3{left:33.970455px;}
.x74{left:35.789805px;}
.xf{left:39.231300px;}
.x3d{left:40.560000px;}
.x4e{left:41.672850px;}
.x23{left:43.563075px;}
.x80{left:44.880000px;}
.x13{left:46.295700px;}
.x7{left:50.794800px;}
.x67{left:51.913500px;}
.x1a{left:54.021000px;}
.xc{left:58.287000px;}
.x7e{left:59.850000px;}
.x65{left:62.599350px;}
.x21{left:67.678065px;}
.x44{left:69.115500px;}
.x72{left:71.205000px;}
.x9d{left:76.059600px;}
.x1e{left:77.854500px;}
.x47{left:79.746000px;}
.x86{left:85.617000px;}
.x8d{left:88.414500px;}
.x89{left:89.452500px;}
.x95{left:90.982500px;}
.x8{left:94.047000px;}
.x4d{left:98.822850px;}
.x4a{left:107.935380px;}
.x45{left:110.782500px;}
.x41{left:113.608050px;}
.x97{left:115.845705px;}
.x42{left:117.748050px;}
.x81{left:120.480750px;}
.x2f{left:122.653350px;}
.x96{left:123.713895px;}
.x1d{left:125.584500px;}
.x88{left:128.272500px;}
.x75{left:131.343345px;}
.x77{left:138.954000px;}
.x1{left:148.406430px;}
.x4b{left:155.935350px;}
.x8b{left:157.852500px;}
.x9c{left:163.500000px;}
.x24{left:195.470400px;}
.x26{left:196.500000px;}
.x6f{left:206.005800px;}
.xa0{left:212.448000px;}
.x94{left:217.317000px;}
.x90{left:232.144500px;}
.x17{left:240.452265px;}
.x4c{left:256.303500px;}
.x64{left:276.526650px;}
.x9e{left:278.349600px;}
.x7f{left:312.600000px;}
.x98{left:318.135705px;}
.xa7{left:319.266000px;}
.xa6{left:356.154000px;}
.x49{left:444.826350px;}
.x66{left:514.742400px;}
.x40{left:519.803550px;}
.x1f{left:592.793100px;}
.x2b{left:595.500000px;}
.x6{left:635.437500px;}
.x55{left:692.237850px;}
.x56{left:701.616000px;}
.x71{left:720.410700px;}
.x4f{left:783.976950px;}
.x52{left:798.736950px;}
.x51{left:813.352950px;}
.xa1{left:836.320800px;}
.x50{left:852.871920px;}
.x5e{left:871.194000px;}
.xa2{left:876.760800px;}
.x91{left:879.144000px;}
.xa4{left:943.000800px;}
.x7d{left:954.115050px;}
.x57{left:994.718850px;}
.x69{left:997.650000px;}
.x82{left:1000.885650px;}
.x92{left:1018.968000px;}
.xa8{left:1038.408000px;}
.xa3{left:1045.300800px;}
.xd{left:1090.450350px;}
.x9{left:1116.099450px;}
.xb{left:1134.601800px;}
.x68{left:1162.139400px;}
.x73{left:1168.297050px;}
.x2e{left:1172.407800px;}
.x14{left:1180.398000px;}
.x54{left:1191.816900px;}
.x58{left:1220.784000px;}
.x6e{left:1223.739000px;}
.x70{left:1226.812500px;}
.x53{left:1231.335900px;}
.xa5{left:1268.392800px;}
.x63{left:1287.771750px;}
.x12{left:1292.686950px;}
.x4{left:1298.301000px;}
.x3f{left:1310.566800px;}
.x11{left:1387.573350px;}
.x99{left:1409.238000px;}
.x2d{left:1410.898650px;}
.x2{left:1424.250000px;}
.x5a{left:1528.126500px;}
.x25{left:1548.966000px;}
.x3e{left:1631.427000px;}
.x5b{left:1633.126500px;}
.x48{left:1652.206500px;}
.x1c{left:1710.759000px;}
.x8a{left:1715.884500px;}
.x5d{left:1740.694500px;}
.x8c{left:1754.817000px;}
.x5f{left:1760.047500px;}
.x3c{left:1762.500000px;}
.x15{left:1790.958000px;}
.x18{left:1796.388000px;}
.x19{left:1801.417500px;}
.x29{left:1803.060000px;}
.x76{left:1816.980000px;}
.x87{left:1833.814500px;}
.x10{left:1836.561000px;}
.x5c{left:1846.308000px;}
.x9a{left:1864.938000px;}
.x9f{left:1866.000000px;}
.x85{left:1873.110000px;}
.x8e{left:1902.901500px;}
.x38{left:1919.326500px;}
.x28{left:1931.268000px;}
.x61{left:1956.862500px;}
.x37{left:1958.062500px;}
.x60{left:1973.343000px;}
.x43{left:2001.000000px;}
.x84{left:2018.607000px;}
.x39{left:2030.782500px;}
.x93{left:2038.786500px;}
.x9b{left:2078.448000px;}
.x2a{left:2171.421000px;}
.x3a{left:2187.000000px;}
.x6a{left:2208.426000px;}
.x7c{left:2215.500000px;}
.x31{left:2217.598500px;}
.x30{left:2239.798500px;}
.x83{left:2259.955500px;}
.x62{left:2275.881000px;}
.x46{left:2430.000000px;}
.x36{left:2435.947500px;}
.x34{left:2460.523500px;}
.x32{left:2463.613500px;}
.x6b{left:2490.031500px;}
.x78{left:2518.500000px;}
.x35{left:2529.115500px;}
.x6d{left:2530.795500px;}
.x33{left:2544.397500px;}
.x6c{left:2726.295000px;}
.x7a{left:2757.000000px;}
@media print{
.v4{vertical-align:-66.645333pt;}
.v8{vertical-align:-53.333333pt;}
.v6{vertical-align:-46.654560pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.633600pt;}
.v5{vertical-align:13.320000pt;}
.v9{vertical-align:53.333333pt;}
.v7{vertical-align:60.251733pt;}
.v3{vertical-align:61.354667pt;}
.v2{vertical-align:128.000000pt;}
.lsf{letter-spacing:-12.373333pt;}
.ls1{letter-spacing:-8.533333pt;}
.ls3{letter-spacing:-8.250667pt;}
.ls2{letter-spacing:-7.466667pt;}
.ls5{letter-spacing:-6.400000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000010pt;}
.lsc{letter-spacing:0.000019pt;}
.ls9{letter-spacing:24.064000pt;}
.lse{letter-spacing:26.312965pt;}
.lsd{letter-spacing:31.102813pt;}
.ls8{letter-spacing:37.925867pt;}
.ls7{letter-spacing:47.407413pt;}
.ls4{letter-spacing:65.706560pt;}
.ls6{letter-spacing:125.487413pt;}
.lsa{letter-spacing:151.040000pt;}
.ws15{word-spacing:-170.752000pt;}
.ws10{word-spacing:-71.168000pt;}
.ws14{word-spacing:-63.146667pt;}
.ws5{word-spacing:-59.306667pt;}
.wsd{word-spacing:-56.832000pt;}
.ws6{word-spacing:-50.517333pt;}
.wsc{word-spacing:-47.445333pt;}
.ws4{word-spacing:-44.202667pt;}
.ws8{word-spacing:-38.096533pt;}
.ws1{word-spacing:-35.584000pt;}
.ws3{word-spacing:-35.362133pt;}
.ws2{word-spacing:-28.467200pt;}
.ws11{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.186617pt;}
.ws7{word-spacing:-0.170667pt;}
.ws12{word-spacing:-0.151467pt;}
.wsb{word-spacing:-0.132498pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:37.755200pt;}
.ws13{word-spacing:59.045867pt;}
.wse{word-spacing:319.535467pt;}
.wsf{word-spacing:4156.430400pt;}
._10{margin-left:-2310.157867pt;}
._7{margin-left:-23.680000pt;}
._8{margin-left:-16.426667pt;}
._1{margin-left:-13.056000pt;}
._6{margin-left:-10.990933pt;}
._0{margin-left:-7.680000pt;}
._3{margin-left:-6.246400pt;}
._5{margin-left:-4.505600pt;}
._4{margin-left:-2.688000pt;}
._2{width:1.079467pt;}
._11{width:2.067200pt;}
._9{width:3.072000pt;}
._d{width:88.456533pt;}
._f{width:151.445333pt;}
._c{width:230.997333pt;}
._e{width:343.401067pt;}
._b{width:414.589867pt;}
._12{width:2060.144160pt;}
._a{width:2116.144160pt;}
.fsb{font-size:95.999994pt;}
.fs8{font-size:102.400000pt;}
.fs9{font-size:117.333333pt;}
.fsc{font-size:119.466667pt;}
.fs7{font-size:128.000000pt;}
.fs14{font-size:132.497920pt;}
.fs1a{font-size:138.666667pt;}
.fsd{font-size:149.333333pt;}
.fsa{font-size:149.333338pt;}
.fs6{font-size:149.333339pt;}
.fs19{font-size:151.466667pt;}
.fsf{font-size:170.666667pt;}
.fs15{font-size:170.666671pt;}
.fs13{font-size:186.616800pt;}
.fs4{font-size:192.000000pt;}
.fs17{font-size:198.746933pt;}
.fs12{font-size:209.920000pt;}
.fse{font-size:213.333333pt;}
.fs0{font-size:222.720000pt;}
.fs16{font-size:256.000000pt;}
.fs18{font-size:261.066667pt;}
.fs3{font-size:293.333333pt;}
.fs11{font-size:320.000000pt;}
.fs2{font-size:373.333333pt;}
.fs5{font-size:412.533333pt;}
.fs1{font-size:426.666667pt;}
.fs10{font-size:533.333333pt;}
.fs1b{font-size:618.666667pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:3.925173pt;}
.y9a{bottom:3.925307pt;}
.y5b{bottom:7.125333pt;}
.y3d{bottom:9.333333pt;}
.y7c{bottom:9.564067pt;}
.y67{bottom:10.666667pt;}
.ya9{bottom:11.838667pt;}
.y7f{bottom:12.027933pt;}
.y5d{bottom:12.288000pt;}
.y4b{bottom:16.202667pt;}
.yb9{bottom:18.432000pt;}
.y59{bottom:18.517333pt;}
.y12{bottom:18.854400pt;}
.y16{bottom:19.146533pt;}
.y14{bottom:19.146667pt;}
.ybc{bottom:21.420000pt;}
.y43{bottom:23.146667pt;}
.yf{bottom:23.227467pt;}
.y96{bottom:23.620800pt;}
.y7e{bottom:23.773613pt;}
.ya7{bottom:24.526573pt;}
.y2a{bottom:26.413200pt;}
.yd{bottom:29.065867pt;}
.y31{bottom:30.186533pt;}
.y2d{bottom:37.733067pt;}
.y22{bottom:37.733200pt;}
.yb3{bottom:38.428533pt;}
.yb6{bottom:38.428640pt;}
.y4e{bottom:39.807867pt;}
.yd1{bottom:39.807947pt;}
.yaf{bottom:39.808000pt;}
.ycf{bottom:39.955080pt;}
.y18{bottom:44.213467pt;}
.y9c{bottom:45.279733pt;}
.y11{bottom:45.818267pt;}
.ya0{bottom:48.015733pt;}
.yb{bottom:49.185467pt;}
.y5{bottom:50.239907pt;}
.y3f{bottom:56.833787pt;}
.yc1{bottom:58.930267pt;}
.y92{bottom:60.048000pt;}
.y94{bottom:60.063867pt;}
.y4a{bottom:66.869333pt;}
.yb4{bottom:67.291573pt;}
.y66{bottom:69.333333pt;}
.yc4{bottom:69.599733pt;}
.y3b{bottom:70.032533pt;}
.y29{bottom:72.013200pt;}
.y58{bottom:77.184000pt;}
.yc9{bottom:82.986533pt;}
.y61{bottom:84.879733pt;}
.y30{bottom:88.853200pt;}
.y8{bottom:89.113600pt;}
.yd8{bottom:89.146667pt;}
.ya{bottom:90.161467pt;}
.yb2{bottom:97.095200pt;}
.yb5{bottom:97.095360pt;}
.y4d{bottom:98.474533pt;}
.yd0{bottom:98.474653pt;}
.yae{bottom:98.474667pt;}
.y3e{bottom:102.433787pt;}
.y2c{bottom:103.733067pt;}
.y21{bottom:103.733200pt;}
.y49{bottom:117.536000pt;}
.y90{bottom:128.307533pt;}
.ya6{bottom:129.976093pt;}
.yc0{bottom:132.263600pt;}
.y44{bottom:136.858667pt;}
.yc2{bottom:139.008133pt;}
.y97{bottom:142.985733pt;}
.y9e{bottom:147.605200pt;}
.y38{bottom:153.061333pt;}
.yd7{bottom:155.146667pt;}
.y4c{bottom:159.208800pt;}
.ybb{bottom:159.232000pt;}
.y5c{bottom:164.664400pt;}
.y48{bottom:168.202667pt;}
.yd3{bottom:169.733200pt;}
.y41{bottom:176.952400pt;}
.yce{bottom:181.451333pt;}
.y19{bottom:192.306667pt;}
.y60{bottom:194.213067pt;}
.yb7{bottom:194.895867pt;}
.y37{bottom:203.728000pt;}
.ybf{bottom:205.596933pt;}
.yb0{bottom:213.413200pt;}
.y47{bottom:218.869333pt;}
.ycc{bottom:223.796667pt;}
.ycd{bottom:234.251333pt;}
.ye{bottom:246.743333pt;}
.y36{bottom:254.394667pt;}
.y46{bottom:269.536000pt;}
.y62{bottom:274.915733pt;}
.y69{bottom:275.717200pt;}
.ybe{bottom:278.930267pt;}
.y35{bottom:305.061333pt;}
.y45{bottom:320.202667pt;}
.ya8{bottom:352.256800pt;}
.y34{bottom:355.728000pt;}
.y72{bottom:362.225200pt;}
.y1{bottom:388.054533pt;}
.y33{bottom:406.394667pt;}
.y3a{bottom:413.396667pt;}
.ye1{bottom:436.071333pt;}
.yac{bottom:439.194133pt;}
.y65{bottom:448.646667pt;}
.y32{bottom:457.061333pt;}
.y56{bottom:459.313333pt;}
.y5a{bottom:459.417333pt;}
.y7{bottom:461.717600pt;}
.y40{bottom:466.542667pt;}
.y28{bottom:476.649067pt;}
.ybd{bottom:480.022800pt;}
.y4{bottom:486.423600pt;}
.y1f{bottom:494.802533pt;}
.y7d{bottom:501.747467pt;}
.y87{bottom:503.592667pt;}
.yab{bottom:505.194133pt;}
.y27{bottom:505.658800pt;}
.y7a{bottom:510.445200pt;}
.y91{bottom:512.485333pt;}
.y55{bottom:517.980000pt;}
.yca{bottom:543.251333pt;}
.y1e{bottom:545.469200pt;}
.y26{bottom:556.325467pt;}
.y86{bottom:563.059333pt;}
.y7b{bottom:568.234533pt;}
.y79{bottom:574.468533pt;}
.y2b{bottom:581.450933pt;}
.y5e{bottom:581.731067pt;}
.y2f{bottom:587.468800pt;}
.y1d{bottom:596.135867pt;}
.ye0{bottom:604.604667pt;}
.y89{bottom:604.784533pt;}
.y25{bottom:606.992133pt;}
.y85{bottom:616.812533pt;}
.yc7{bottom:632.120000pt;}
.yc6{bottom:632.120133pt;}
.yc{bottom:642.273200pt;}
.y1c{bottom:646.802533pt;}
.y8a{bottom:649.274933pt;}
.yad{bottom:655.856000pt;}
.y24{bottom:657.658800pt;}
.ycb{bottom:658.425200pt;}
.yc5{bottom:665.120000pt;}
.ya5{bottom:667.612133pt;}
.y84{bottom:679.882533pt;}
.y1b{bottom:697.469200pt;}
.y64{bottom:705.229333pt;}
.y23{bottom:708.325467pt;}
.y3{bottom:721.152800pt;}
.y54{bottom:723.746667pt;}
.y88{bottom:724.071600pt;}
.ydd{bottom:733.080533pt;}
.y83{bottom:733.635733pt;}
.ya4{bottom:737.325907pt;}
.y3c{bottom:741.463733pt;}
.y1a{bottom:748.135867pt;}
.y39{bottom:750.797067pt;}
.yc8{bottom:770.265867pt;}
.y20{bottom:773.393200pt;}
.y5f{bottom:776.216133pt;}
.y82{bottom:796.705733pt;}
.yd2{bottom:812.841867pt;}
.y71{bottom:817.820933pt;}
.yd6{bottom:827.428400pt;}
.ydc{bottom:833.080533pt;}
.y75{bottom:834.285760pt;}
.y93{bottom:845.909333pt;}
.y2{bottom:854.032800pt;}
.y81{bottom:856.172400pt;}
.yd9{bottom:860.428400pt;}
.y77{bottom:866.285760pt;}
.y70{bottom:868.212533pt;}
.y76{bottom:877.027467pt;}
.yd5{bottom:883.575067pt;}
.y73{bottom:896.365760pt;}
.y6c{bottom:901.228267pt;}
.y68{bottom:902.363733pt;}
.ydb{bottom:906.413867pt;}
.ydf{bottom:906.471333pt;}
.y74{bottom:907.107467pt;}
.y80{bottom:908.972400pt;}
.y53{bottom:913.030400pt;}
.y57{bottom:939.970667pt;}
.yd4{bottom:949.575067pt;}
.y63{bottom:952.598000pt;}
.y50{bottom:958.488000pt;}
.y6f{bottom:961.012533pt;}
.ya3{bottom:963.051467pt;}
.y8c{bottom:966.688267pt;}
.y52{bottom:971.115333pt;}
.y9{bottom:976.716267pt;}
.yda{bottom:979.747200pt;}
.y6b{bottom:988.694933pt;}
.y78{bottom:990.346400pt;}
.y10{bottom:1002.767600pt;}
.ya2{bottom:1008.651467pt;}
.y13{bottom:1009.938800pt;}
.y15{bottom:1011.595867pt;}
.y4f{bottom:1017.154667pt;}
.y8b{bottom:1019.128267pt;}
.yb1{bottom:1021.078133pt;}
.yba{bottom:1024.501867pt;}
.yc3{bottom:1024.718933pt;}
.y51{bottom:1029.782000pt;}
.y99{bottom:1032.410933pt;}
.y9d{bottom:1036.128667pt;}
.y98{bottom:1038.768667pt;}
.y6e{bottom:1053.812533pt;}
.ya1{bottom:1054.251467pt;}
.yde{bottom:1054.374667pt;}
.y42{bottom:1057.032800pt;}
.y6a{bottom:1076.161600pt;}
.y2e{bottom:1080.179467pt;}
.y17{bottom:1081.910267pt;}
.y95{bottom:1097.003333pt;}
.y6d{bottom:1150.648000pt;}
.yaa{bottom:1219.030267pt;}
.y6{bottom:1219.079867pt;}
.y9b{bottom:1221.560800pt;}
.yb8{bottom:1248.408533pt;}
.y9f{bottom:1307.417600pt;}
.y8e{bottom:1334.013333pt;}
.y8d{bottom:1355.433333pt;}
.h34{height:30.138613pt;}
.h38{height:32.892613pt;}
.h1b{height:38.536267pt;}
.h30{height:41.102360pt;}
.h28{height:45.636267pt;}
.h21{height:47.335600pt;}
.h26{height:53.437333pt;}
.h47{height:54.437467pt;}
.h32{height:58.111080pt;}
.h1c{height:65.633867pt;}
.hd{height:67.015533pt;}
.h48{height:68.924800pt;}
.h43{height:71.677293pt;}
.hf{height:73.727995pt;}
.h4a{height:81.580000pt;}
.h35{height:82.298009pt;}
.h4e{height:87.807947pt;}
.h3c{height:89.066667pt;}
.hb{height:90.112000pt;}
.ha{height:98.304000pt;}
.h11{height:98.828667pt;}
.h27{height:102.020000pt;}
.h10{height:102.142800pt;}
.h29{height:104.282800pt;}
.h44{height:106.496000pt;}
.h4c{height:109.759933pt;}
.h24{height:110.417600pt;}
.h1f{height:110.696000pt;}
.h12{height:111.382920pt;}
.h25{height:111.402000pt;}
.h2b{height:114.005333pt;}
.h13{height:114.688000pt;}
.h8{height:114.688004pt;}
.h2d{height:116.565333pt;}
.h16{height:121.765280pt;}
.h2c{height:125.610667pt;}
.h31{height:127.459274pt;}
.h18{height:131.072000pt;}
.h36{height:131.072003pt;}
.h3f{height:131.711920pt;}
.h41{height:132.582373pt;}
.h39{height:132.762951pt;}
.h51{height:132.904933pt;}
.h33{height:137.349965pt;}
.h4d{height:140.608000pt;}
.h7{height:140.638800pt;}
.h42{height:145.706667pt;}
.h17{height:146.474667pt;}
.h3a{height:146.650800pt;}
.h3b{height:146.666667pt;}
.h5{height:147.456000pt;}
.h49{height:155.498133pt;}
.h9{height:159.282933pt;}
.h2a{height:161.218560pt;}
.h46{height:163.625200pt;}
.h15{height:163.840000pt;}
.h1e{height:165.681600pt;}
.h40{height:169.461200pt;}
.h1{height:171.048960pt;}
.h14{height:175.759867pt;}
.h37{height:196.608000pt;}
.h45{height:197.754533pt;}
.h50{height:199.238267pt;}
.h3d{height:200.499200pt;}
.h2f{height:200.618667pt;}
.h4{height:225.280000pt;}
.hc{height:232.074000pt;}
.h19{height:238.481733pt;}
.h4f{height:241.759867pt;}
.he{height:243.546000pt;}
.h23{height:245.760000pt;}
.h3e{height:256.859733pt;}
.h3{height:286.720000pt;}
.h6{height:316.825600pt;}
.h2{height:327.680000pt;}
.h2e{height:328.618667pt;}
.h22{height:329.714400pt;}
.h20{height:335.249333pt;}
.h1d{height:340.474667pt;}
.h4b{height:373.322000pt;}
.h1a{height:388.281250pt;}
.h52{height:475.136000pt;}
.h0{height:1440.000000pt;}
.w21{width:19.968000pt;}
.w22{width:32.892613pt;}
.w14{width:48.341333pt;}
.w2b{width:71.677200pt;}
.w31{width:78.146667pt;}
.w20{width:86.446507pt;}
.w1f{width:100.850840pt;}
.w27{width:131.712000pt;}
.w7{width:132.793467pt;}
.w6{width:139.588000pt;}
.w30{width:155.782667pt;}
.wf{width:158.274133pt;}
.wd{width:161.580667pt;}
.w26{width:174.197200pt;}
.w13{width:205.650667pt;}
.w18{width:205.972000pt;}
.w1{width:258.752000pt;}
.w1a{width:281.236000pt;}
.w1d{width:297.914667pt;}
.we{width:301.321067pt;}
.w2{width:301.463467pt;}
.w10{width:301.807200pt;}
.wc{width:302.112800pt;}
.w19{width:342.780000pt;}
.w1b{width:352.766667pt;}
.w1c{width:358.353333pt;}
.w15{width:369.074667pt;}
.w35{width:375.626533pt;}
.w5{width:387.374800pt;}
.w16{width:475.017333pt;}
.w12{width:475.543733pt;}
.w4{width:475.698267pt;}
.w23{width:488.930533pt;}
.w34{width:503.474667pt;}
.w11{width:507.901333pt;}
.w2d{width:572.801467pt;}
.w3a{width:581.324800pt;}
.w32{width:582.392000pt;}
.w3{width:582.666267pt;}
.w2f{width:598.262667pt;}
.w28{width:603.425067pt;}
.w36{width:634.287067pt;}
.w24{width:639.021333pt;}
.w2c{width:668.710267pt;}
.w9{width:670.457200pt;}
.w3b{width:677.310267pt;}
.w37{width:704.145467pt;}
.w3d{width:707.710400pt;}
.w2e{width:720.600133pt;}
.w8{width:733.389200pt;}
.w1e{width:766.511600pt;}
.w3c{width:772.220400pt;}
.w40{width:818.096000pt;}
.w39{width:844.584533pt;}
.wa{width:867.904000pt;}
.w3e{width:887.547867pt;}
.w3f{width:893.395200pt;}
.w38{width:913.797867pt;}
.w33{width:945.759867pt;}
.w2a{width:973.163067pt;}
.w29{width:978.627067pt;}
.wb{width:1029.073600pt;}
.w17{width:1635.889333pt;}
.w25{width:2341.644000pt;}
.w0{width:2560.000000pt;}
.x79{left:-3.449333pt;}
.x2c{left:-2.406133pt;}
.x27{left:-0.915200pt;}
.x0{left:0.000000pt;}
.x59{left:6.578243pt;}
.x8f{left:14.570667pt;}
.x16{left:16.709720pt;}
.x7b{left:17.986667pt;}
.x3b{left:19.176000pt;}
.x5{left:20.100933pt;}
.xe{left:21.721200pt;}
.x1b{left:23.397333pt;}
.x20{left:24.541520pt;}
.xa{left:26.438133pt;}
.x22{left:27.462933pt;}
.x3{left:30.195960pt;}
.x74{left:31.813160pt;}
.xf{left:34.872267pt;}
.x3d{left:36.053333pt;}
.x4e{left:37.042533pt;}
.x23{left:38.722733pt;}
.x80{left:39.893333pt;}
.x13{left:41.151733pt;}
.x7{left:45.150933pt;}
.x67{left:46.145333pt;}
.x1a{left:48.018667pt;}
.xc{left:51.810667pt;}
.x7e{left:53.200000pt;}
.x65{left:55.643867pt;}
.x21{left:60.158280pt;}
.x44{left:61.436000pt;}
.x72{left:63.293333pt;}
.x9d{left:67.608533pt;}
.x1e{left:69.204000pt;}
.x47{left:70.885333pt;}
.x86{left:76.104000pt;}
.x8d{left:78.590667pt;}
.x89{left:79.513333pt;}
.x95{left:80.873333pt;}
.x8{left:83.597333pt;}
.x4d{left:87.842533pt;}
.x4a{left:95.942560pt;}
.x45{left:98.473333pt;}
.x41{left:100.984933pt;}
.x97{left:102.973960pt;}
.x42{left:104.664933pt;}
.x81{left:107.094000pt;}
.x2f{left:109.025200pt;}
.x96{left:109.967907pt;}
.x1d{left:111.630667pt;}
.x88{left:114.020000pt;}
.x75{left:116.749640pt;}
.x77{left:123.514667pt;}
.x1{left:131.916827pt;}
.x4b{left:138.609200pt;}
.x8b{left:140.313333pt;}
.x9c{left:145.333333pt;}
.x24{left:173.751467pt;}
.x26{left:174.666667pt;}
.x6f{left:183.116267pt;}
.xa0{left:188.842667pt;}
.x94{left:193.170667pt;}
.x90{left:206.350667pt;}
.x17{left:213.735347pt;}
.x4c{left:227.825333pt;}
.x64{left:245.801467pt;}
.x9e{left:247.421867pt;}
.x7f{left:277.866667pt;}
.x98{left:282.787293pt;}
.xa7{left:283.792000pt;}
.xa6{left:316.581333pt;}
.x49{left:395.401200pt;}
.x66{left:457.548800pt;}
.x40{left:462.047600pt;}
.x1f{left:526.927200pt;}
.x2b{left:529.333333pt;}
.x6{left:564.833333pt;}
.x55{left:615.322533pt;}
.x56{left:623.658667pt;}
.x71{left:640.365067pt;}
.x4f{left:696.868400pt;}
.x52{left:709.988400pt;}
.x51{left:722.980400pt;}
.xa1{left:743.396267pt;}
.x50{left:758.108373pt;}
.x5e{left:774.394667pt;}
.xa2{left:779.342933pt;}
.x91{left:781.461333pt;}
.xa4{left:838.222933pt;}
.x7d{left:848.102267pt;}
.x57{left:884.194533pt;}
.x69{left:886.800000pt;}
.x82{left:889.676133pt;}
.x92{left:905.749333pt;}
.xa8{left:923.029333pt;}
.xa3{left:929.156267pt;}
.xd{left:969.289200pt;}
.x9{left:992.088400pt;}
.xb{left:1008.534933pt;}
.x68{left:1033.012800pt;}
.x73{left:1038.486267pt;}
.x2e{left:1042.140267pt;}
.x14{left:1049.242667pt;}
.x54{left:1059.392800pt;}
.x58{left:1085.141333pt;}
.x6e{left:1087.768000pt;}
.x70{left:1090.500000pt;}
.x53{left:1094.520800pt;}
.xa5{left:1127.460267pt;}
.x63{left:1144.686000pt;}
.x12{left:1149.055067pt;}
.x4{left:1154.045333pt;}
.x3f{left:1164.948267pt;}
.x11{left:1233.398533pt;}
.x99{left:1252.656000pt;}
.x2d{left:1254.132133pt;}
.x2{left:1266.000000pt;}
.x5a{left:1358.334667pt;}
.x25{left:1376.858667pt;}
.x3e{left:1450.157333pt;}
.x5b{left:1451.668000pt;}
.x48{left:1468.628000pt;}
.x1c{left:1520.674667pt;}
.x8a{left:1525.230667pt;}
.x5d{left:1547.284000pt;}
.x8c{left:1559.837333pt;}
.x5f{left:1564.486667pt;}
.x3c{left:1566.666667pt;}
.x15{left:1591.962667pt;}
.x18{left:1596.789333pt;}
.x19{left:1601.260000pt;}
.x29{left:1602.720000pt;}
.x76{left:1615.093333pt;}
.x87{left:1630.057333pt;}
.x10{left:1632.498667pt;}
.x5c{left:1641.162667pt;}
.x9a{left:1657.722667pt;}
.x9f{left:1658.666667pt;}
.x85{left:1664.986667pt;}
.x8e{left:1691.468000pt;}
.x38{left:1706.068000pt;}
.x28{left:1716.682667pt;}
.x61{left:1739.433333pt;}
.x37{left:1740.500000pt;}
.x60{left:1754.082667pt;}
.x43{left:1778.666667pt;}
.x84{left:1794.317333pt;}
.x39{left:1805.140000pt;}
.x93{left:1812.254667pt;}
.x9b{left:1847.509333pt;}
.x2a{left:1930.152000pt;}
.x3a{left:1944.000000pt;}
.x6a{left:1963.045333pt;}
.x7c{left:1969.333333pt;}
.x31{left:1971.198667pt;}
.x30{left:1990.932000pt;}
.x83{left:2008.849333pt;}
.x62{left:2023.005333pt;}
.x46{left:2160.000000pt;}
.x36{left:2165.286667pt;}
.x34{left:2187.132000pt;}
.x32{left:2189.878667pt;}
.x6b{left:2213.361333pt;}
.x78{left:2238.666667pt;}
.x35{left:2248.102667pt;}
.x6d{left:2249.596000pt;}
.x33{left:2261.686667pt;}
.x6c{left:2423.373333pt;}
.x7a{left:2450.666667pt;}
}




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