
    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_b21bd8a7e64b6af6d8ce5218.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8bd255a80a90bcea5fa673e5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_98dced264ea26cd9c2af8a60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776367;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_c5ce768d4c7ab5096f9bcabe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2a5b64a0d41ae318df2456f2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_07aed173a26feffebb542370.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d7b1dbab17a8f3dbf1fcf9cc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f5ef45ec2773ceb3fc574f65.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_1550aa5ca7fdbd84b9d5b1bc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_095f4e53faab2ab384830d4d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27a7ec591eb4adf2b4a6bc1e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_bf55efbee9b3afea7dd608c6.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_ec14fb94d551ac857467c316.woff')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_d0dd34a133f09653e44063a8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.962402;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_09946f1d3434f73bcd18c4df.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-105.840000px;}
.v6{vertical-align:-82.800000px;}
.v3{vertical-align:-69.840000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.714000px;}
.ls1b{letter-spacing:-0.567600px;}
.ls26{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.262200px;}
.ls23{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.152400px;}
.ls1a{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.092160px;}
.ls15{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.189735px;}
.ls17{letter-spacing:0.213000px;}
.ls1{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.284602px;}
.ls16{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.ls1f{letter-spacing:0.306600px;}
.ls19{letter-spacing:0.313800px;}
.ls21{letter-spacing:0.612000px;}
.lse{letter-spacing:8.945280px;}
.ls20{letter-spacing:248.105280px;}
.ls27{letter-spacing:309.864000px;}
.ls2{letter-spacing:335.640000px;}
.ls1c{letter-spacing:376.265280px;}
.ls1e{letter-spacing:382.745280px;}
.ls24{letter-spacing:413.705280px;}
.ls1d{letter-spacing:438.185280px;}
.ls13{letter-spacing:747.785280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-28.080745px;}
.ws1{word-spacing:-27.985877px;}
.ws3{word-spacing:-27.796143px;}
.ws5{word-spacing:-20.232000px;}
.ws17{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.944000px;}
.ws18{word-spacing:-19.872000px;}
.wsc{word-spacing:-18.720120px;}
.wse{word-spacing:-18.676920px;}
.ws7{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws9{word-spacing:-18.152520px;}
.wsa{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.956920px;}
.ws11{word-spacing:-17.700720px;}
.wsb{word-spacing:-17.586720px;}
.ws1a{word-spacing:-17.225280px;}
.ws19{word-spacing:-16.919880px;}
.ws1b{word-spacing:-16.613280px;}
.ws16{word-spacing:-15.284040px;}
.ws15{word-spacing:-15.226440px;}
.ws14{word-spacing:-15.183240px;}
.ws12{word-spacing:-15.030840px;}
.ws2{word-spacing:-14.965519px;}
.wsf{word-spacing:-11.609280px;}
.ws1c{word-spacing:-11.430480px;}
.ws1d{word-spacing:-10.808640px;}
.ws13{word-spacing:-9.437760px;}
.wsd{word-spacing:0.000000px;}
._f{margin-left:-8.809920px;}
._7{margin-left:-2.143680px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._8{width:2.345760px;}
._6{width:3.729600px;}
._e{width:5.696640px;}
._b{width:6.759360px;}
._10{width:8.093760px;}
._c{width:9.141120px;}
._d{width:11.152320px;}
._11{width:12.850560px;}
._5{width:14.042880px;}
._4{width:15.168960px;}
._9{width:16.228800px;}
._a{width:17.316000px;}
._12{width:19.544640px;}
._15{width:21.317280px;}
._14{width:30.684960px;}
._13{width:31.795200px;}
._0{width:414.000000px;}
._1{width:1336.620000px;}
.fc6{color:rgb(33,37,41);}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(23,26,108);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:47.813160px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:94.867381px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-7.020000px;}
.yf{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.420000px;}
.y35{bottom:3.600000px;}
.y6a{bottom:4.500000px;}
.y88{bottom:4.680000px;}
.y16{bottom:7.920000px;}
.y18{bottom:8.100000px;}
.y23{bottom:9.000000px;}
.y108{bottom:9.180000px;}
.y7{bottom:11.160000px;}
.ya{bottom:14.400000px;}
.ye{bottom:19.260000px;}
.ye7{bottom:22.134000px;}
.y7e{bottom:22.320000px;}
.yb0{bottom:22.494000px;}
.y34{bottom:22.500000px;}
.y20{bottom:26.820000px;}
.y15{bottom:27.000000px;}
.y6{bottom:36.000000px;}
.ye6{bottom:36.174000px;}
.y9{bottom:39.240000px;}
.y7d{bottom:41.040000px;}
.yaf{bottom:41.394000px;}
.y63{bottom:41.400000px;}
.y55{bottom:41.574000px;}
.y33{bottom:41.580000px;}
.yd{bottom:44.280000px;}
.y7c{bottom:55.074000px;}
.y4{bottom:57.780000px;}
.y9c{bottom:60.294000px;}
.y54{bottom:60.474000px;}
.y32{bottom:60.480000px;}
.yae{bottom:60.654000px;}
.y9b{bottom:74.154000px;}
.y3{bottom:78.516000px;}
.y62{bottom:79.380000px;}
.y76{bottom:79.425000px;}
.y53{bottom:79.554000px;}
.y31{bottom:79.560000px;}
.yad{bottom:81.354000px;}
.y77{bottom:96.336000px;}
.y61{bottom:98.100000px;}
.y52{bottom:98.274000px;}
.y105{bottom:98.280000px;}
.yd7{bottom:98.460000px;}
.y30{bottom:98.505000px;}
.y75{bottom:98.685000px;}
.yb1{bottom:100.656000px;}
.yac{bottom:101.874000px;}
.y7f{bottom:109.296000px;}
.y51{bottom:112.134000px;}
.y60{bottom:112.140000px;}
.y38{bottom:112.896000px;}
.y10f{bottom:115.596000px;}
.y104{bottom:117.360000px;}
.y2f{bottom:117.405000px;}
.y74{bottom:119.385000px;}
.yab{bottom:120.774000px;}
.y10e{bottom:133.056000px;}
.y103{bottom:136.260000px;}
.y2e{bottom:136.485000px;}
.ybe{bottom:139.716000px;}
.y73{bottom:139.905000px;}
.y9d{bottom:142.056000px;}
.yd8{bottom:143.136000px;}
.y10d{bottom:152.850000px;}
.y2d{bottom:155.385000px;}
.ybd{bottom:159.870000px;}
.y102{bottom:162.720000px;}
.y10c{bottom:172.470000px;}
.y2c{bottom:174.465000px;}
.ybc{bottom:180.030000px;}
.y10b{bottom:192.270000px;}
.y2b{bottom:193.365000px;}
.yd6{bottom:193.725000px;}
.ybb{bottom:200.190000px;}
.yb7{bottom:201.954000px;}
.yc9{bottom:201.960000px;}
.y101{bottom:207.000000px;}
.yd1{bottom:208.110000px;}
.y36{bottom:208.290000px;}
.y10a{bottom:211.890000px;}
.y2a{bottom:212.265000px;}
.yd5{bottom:214.065000px;}
.yba{bottom:220.350000px;}
.yb6{bottom:220.719000px;}
.yc8{bottom:220.890000px;}
.y24{bottom:225.750000px;}
.y100{bottom:226.080000px;}
.y29{bottom:231.345000px;}
.y109{bottom:231.690000px;}
.yd4{bottom:232.965000px;}
.yb5{bottom:234.759000px;}
.yc7{bottom:239.610000px;}
.yb9{bottom:240.510000px;}
.y64{bottom:241.230000px;}
.yff{bottom:245.010000px;}
.y28{bottom:250.245000px;}
.yd3{bottom:251.685000px;}
.yc6{bottom:253.650000px;}
.yb8{bottom:260.490000px;}
.yfe{bottom:264.090000px;}
.yd2{bottom:265.725000px;}
.y27{bottom:269.325000px;}
.y107{bottom:270.390000px;}
.yaa{bottom:279.390000px;}
.yfd{bottom:282.990000px;}
.y26{bottom:288.225000px;}
.ya9{bottom:299.550000px;}
.yfc{bottom:301.890000px;}
.y25{bottom:307.125000px;}
.ya8{bottom:319.755000px;}
.yfb{bottom:320.970000px;}
.y106{bottom:323.535000px;}
.yfa{bottom:339.870000px;}
.ya7{bottom:339.915000px;}
.ye8{bottom:340.995000px;}
.ybf{bottom:356.835000px;}
.yf9{bottom:358.950000px;}
.y68{bottom:359.535000px;}
.ya6{bottom:360.075000px;}
.ya0{bottom:360.759000px;}
.yf8{bottom:377.850000px;}
.y67{bottom:378.255000px;}
.y9f{bottom:379.479000px;}
.ya5{bottom:380.235000px;}
.y56{bottom:388.695000px;}
.y9e{bottom:393.519000px;}
.y66{bottom:395.535000px;}
.yd0{bottom:395.895000px;}
.yf7{bottom:396.750000px;}
.y72{bottom:397.695000px;}
.ya4{bottom:400.395000px;}
.y50{bottom:403.779000px;}
.y65{bottom:409.575000px;}
.yf6{bottom:415.830000px;}
.ycf{bottom:416.055000px;}
.y9a{bottom:416.379000px;}
.y71{bottom:417.855000px;}
.ya3{bottom:420.555000px;}
.y4f{bottom:422.679000px;}
.yf5{bottom:434.730000px;}
.y99{bottom:435.459000px;}
.yce{bottom:436.215000px;}
.y70{bottom:438.015000px;}
.ya2{bottom:440.715000px;}
.y4e{bottom:441.759000px;}
.yf4{bottom:453.810000px;}
.y98{bottom:454.359000px;}
.ycd{bottom:456.375000px;}
.y6f{bottom:457.995000px;}
.y4d{bottom:460.689000px;}
.ya1{bottom:460.875000px;}
.y5f{bottom:461.235000px;}
.yf3{bottom:472.710000px;}
.y97{bottom:473.649000px;}
.ycc{bottom:476.355000px;}
.y6e{bottom:478.155000px;}
.y4c{bottom:479.589000px;}
.y5e{bottom:480.315000px;}
.yf2{bottom:491.655000px;}
.y96{bottom:494.349000px;}
.ycb{bottom:496.515000px;}
.y6d{bottom:498.315000px;}
.y4b{bottom:498.669000px;}
.y5d{bottom:499.215000px;}
.yf1{bottom:510.735000px;}
.y95{bottom:514.869000px;}
.yca{bottom:516.675000px;}
.y4a{bottom:517.569000px;}
.y5c{bottom:518.295000px;}
.y6c{bottom:518.475000px;}
.yf0{bottom:529.635000px;}
.y94{bottom:533.769000px;}
.y49{bottom:536.649000px;}
.y5b{bottom:537.555000px;}
.y6b{bottom:538.635000px;}
.ye5{bottom:545.295000px;}
.yef{bottom:548.715000px;}
.y22{bottom:549.255000px;}
.y93{bottom:552.669000px;}
.y48{bottom:555.549000px;}
.ydf{bottom:556.809000px;}
.y5a{bottom:557.895000px;}
.y69{bottom:558.795000px;}
.ye4{bottom:564.375000px;}
.yee{bottom:567.615000px;}
.y92{bottom:571.749000px;}
.yde{bottom:575.889000px;}
.y59{bottom:576.795000px;}
.yc5{bottom:581.115000px;}
.y7b{bottom:581.829000px;}
.ye3{bottom:583.305000px;}
.yed{bottom:586.695000px;}
.y91{bottom:590.649000px;}
.ydd{bottom:594.789000px;}
.y58{bottom:595.875000px;}
.yb4{bottom:596.589000px;}
.yc4{bottom:600.195000px;}
.y7a{bottom:600.909000px;}
.y21{bottom:602.205000px;}
.yec{bottom:605.595000px;}
.y90{bottom:609.729000px;}
.ydc{bottom:613.869000px;}
.yb3{bottom:615.309000px;}
.yc3{bottom:619.095000px;}
.y79{bottom:619.629000px;}
.y1f{bottom:619.845000px;}
.ye2{bottom:621.285000px;}
.y57{bottom:622.155000px;}
.yeb{bottom:624.495000px;}
.y8f{bottom:628.629000px;}
.yb2{bottom:629.169000px;}
.ydb{bottom:632.769000px;}
.y78{bottom:633.489000px;}
.yc2{bottom:638.355000px;}
.ye1{bottom:640.185000px;}
.yea{bottom:643.575000px;}
.y8e{bottom:647.529000px;}
.yda{bottom:651.489000px;}
.yc1{bottom:659.055000px;}
.ye0{bottom:659.265000px;}
.yd9{bottom:665.529000px;}
.y8d{bottom:666.609000px;}
.y1e{bottom:667.545000px;}
.ye9{bottom:669.855000px;}
.yc0{bottom:679.395000px;}
.y47{bottom:685.005000px;}
.y1d{bottom:696.165000px;}
.y46{bottom:704.085000px;}
.y3f{bottom:709.314000px;}
.y45{bottom:722.985000px;}
.y1c{bottom:724.965000px;}
.y44{bottom:741.885000px;}
.y3e{bottom:744.954000px;}
.y43{bottom:760.965000px;}
.y3d{bottom:763.854000px;}
.y1b{bottom:772.665000px;}
.y42{bottom:779.865000px;}
.y3c{bottom:782.754000px;}
.y8c{bottom:792.465000px;}
.y40{bottom:798.945000px;}
.y1a{bottom:801.285000px;}
.y3b{bottom:802.014000px;}
.y8b{bottom:812.625000px;}
.y3a{bottom:822.534000px;}
.y19{bottom:830.130000px;}
.y8a{bottom:832.830000px;}
.y39{bottom:848.994000px;}
.y117{bottom:849.390000px;}
.y89{bottom:852.990000px;}
.y17{bottom:858.750000px;}
.y87{bottom:873.150000px;}
.y14{bottom:887.550000px;}
.y116{bottom:890.790000px;}
.y86{bottom:893.490000px;}
.y115{bottom:911.490000px;}
.y85{bottom:913.650000px;}
.y80{bottom:926.934000px;}
.y114{bottom:932.370000px;}
.y84{bottom:933.810000px;}
.y13{bottom:939.210000px;}
.y113{bottom:953.070000px;}
.y83{bottom:953.970000px;}
.y12{bottom:960.990000px;}
.y112{bottom:973.770000px;}
.y82{bottom:974.130000px;}
.y81{bottom:994.290000px;}
.y111{bottom:994.470000px;}
.y37{bottom:1003.470000px;}
.y11{bottom:1015.170000px;}
.y10{bottom:1035.690000px;}
.y110{bottom:1035.870000px;}
.y2{bottom:1056.570000px;}
.y1{bottom:1073.340000px;}
.yc{bottom:1088.100000px;}
.y8{bottom:1089.900000px;}
.y5{bottom:1093.140000px;}
.h18{height:18.900000px;}
.h28{height:18.936000px;}
.h19{height:19.080000px;}
.h1f{height:19.980000px;}
.h1e{height:20.160000px;}
.h1c{height:20.196000px;}
.h22{height:20.340000px;}
.hc{height:27.900000px;}
.hb{height:28.080000px;}
.hd{height:28.116000px;}
.h3{height:36.326795px;}
.h2b{height:37.980000px;}
.he{height:46.800000px;}
.h9{height:46.980000px;}
.h2{height:47.160000px;}
.h14{height:48.240000px;}
.hf{height:48.276000px;}
.h2a{height:48.456000px;}
.h13{height:50.062500px;}
.h5{height:50.400000px;}
.h6{height:55.440000px;}
.h2c{height:59.383125px;}
.h17{height:62.327813px;}
.h1d{height:67.824844px;}
.ha{height:69.086250px;}
.h1{height:70.628906px;}
.h4{height:72.076975px;}
.h12{height:72.562500px;}
.h16{height:73.175977px;}
.h2d{height:74.004654px;}
.h7{height:75.093750px;}
.h10{height:93.867188px;}
.h8{height:99.874688px;}
.h11{height:322.590000px;}
.h1a{height:663.015000px;}
.h25{height:694.875000px;}
.h29{height:710.715000px;}
.h1b{height:810.465000px;}
.h26{height:843.585000px;}
.h15{height:889.845000px;}
.h27{height:908.565000px;}
.h23{height:909.645000px;}
.h21{height:942.405000px;}
.h24{height:951.045000px;}
.h20{height:955.365000px;}
.h0{height:1188.000000px;}
.w4{width:70.236000px;}
.w1a{width:114.660000px;}
.w16{width:115.920000px;}
.w15{width:115.956000px;}
.w17{width:117.216000px;}
.w14{width:126.576000px;}
.w3{width:130.140000px;}
.w2{width:130.500000px;}
.w13{width:189.750000px;}
.wc{width:192.450000px;}
.we{width:192.990000px;}
.wf{width:193.170000px;}
.wd{width:193.710000px;}
.w11{width:194.250000px;}
.w10{width:194.430000px;}
.w12{width:195.510000px;}
.wb{width:213.690000px;}
.w9{width:221.790000px;}
.w5{width:273.135000px;}
.wa{width:316.290000px;}
.w6{width:489.495000px;}
.w19{width:655.890000px;}
.w7{width:763.710000px;}
.w18{width:771.990000px;}
.w8{width:815.220000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:7.560000px;}
.xb{left:10.800000px;}
.xa{left:13.860000px;}
.x6{left:15.120000px;}
.xe{left:17.280000px;}
.x47{left:19.476000px;}
.x50{left:21.240000px;}
.x2b{left:22.320000px;}
.xd{left:23.400000px;}
.x1e{left:24.840000px;}
.x35{left:25.920000px;}
.x5{left:39.600000px;}
.x9{left:40.860000px;}
.x4b{left:42.120000px;}
.x13{left:45.000000px;}
.x21{left:46.305000px;}
.x1a{left:47.745000px;}
.x1b{left:49.314000px;}
.x49{left:51.885000px;}
.x33{left:56.736000px;}
.x1d{left:57.954000px;}
.x20{left:61.020000px;}
.x27{left:63.936000px;}
.x16{left:70.914000px;}
.x3b{left:72.216000px;}
.x4f{left:73.290000px;}
.x1f{left:75.054000px;}
.x10{left:77.400000px;}
.x3f{left:78.840000px;}
.x2d{left:81.354000px;}
.x36{left:82.440000px;}
.x2e{left:83.700000px;}
.x3{left:84.959986px;}
.x25{left:86.970000px;}
.x37{left:88.014000px;}
.x1c{left:90.765000px;}
.x2f{left:91.974000px;}
.x3c{left:93.996000px;}
.x34{left:96.336000px;}
.x28{left:97.596000px;}
.x15{left:105.876000px;}
.x7{left:115.380000px;}
.x18{left:123.300000px;}
.x40{left:144.930000px;}
.x31{left:148.710000px;}
.x44{left:157.170000px;}
.x53{left:167.429986px;}
.x42{left:170.310000px;}
.x39{left:176.970000px;}
.x23{left:181.110000px;}
.x14{left:187.410000px;}
.x46{left:193.170000px;}
.x48{left:277.050000px;}
.x3d{left:289.335000px;}
.x29{left:291.135000px;}
.x1{left:315.434986px;}
.x17{left:328.575000px;}
.x12{left:351.255000px;}
.x4a{left:404.535000px;}
.x2{left:458.894986px;}
.x2a{left:484.665000px;}
.x4{left:495.105000px;}
.x4c{left:521.565000px;}
.xf{left:576.644986px;}
.x45{left:592.125000px;}
.xc{left:636.405000px;}
.x4d{left:638.565000px;}
.x19{left:645.945000px;}
.x30{left:648.690000px;}
.x38{left:661.650000px;}
.x24{left:666.510000px;}
.x41{left:677.310000px;}
.x2c{left:679.470000px;}
.x3e{left:681.270000px;}
.x8{left:724.650000px;}
.x52{left:734.190000px;}
.x43{left:738.690000px;}
.x22{left:749.310000px;}
.x4e{left:766.050000px;}
.x51{left:780.450000px;}
.x32{left:793.440000px;}
.x26{left:798.840000px;}
.x3a{left:806.940000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v6{vertical-align:-73.600000pt;}
.v3{vertical-align:-62.080000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.634667pt;}
.ls1b{letter-spacing:-0.504533pt;}
.ls26{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls23{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.081920pt;}
.ls15{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.168653pt;}
.ls17{letter-spacing:0.189333pt;}
.ls1{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.252980pt;}
.ls16{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1f{letter-spacing:0.272533pt;}
.ls19{letter-spacing:0.278933pt;}
.ls21{letter-spacing:0.544000pt;}
.lse{letter-spacing:7.951360pt;}
.ls20{letter-spacing:220.538027pt;}
.ls27{letter-spacing:275.434667pt;}
.ls2{letter-spacing:298.346667pt;}
.ls1c{letter-spacing:334.458027pt;}
.ls1e{letter-spacing:340.218027pt;}
.ls24{letter-spacing:367.738027pt;}
.ls1d{letter-spacing:389.498027pt;}
.ls13{letter-spacing:664.698027pt;}
.ws4{word-spacing:-24.960662pt;}
.ws1{word-spacing:-24.876336pt;}
.ws3{word-spacing:-24.707682pt;}
.ws5{word-spacing:-17.984000pt;}
.ws17{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.728000pt;}
.ws18{word-spacing:-17.664000pt;}
.wsc{word-spacing:-16.640107pt;}
.wse{word-spacing:-16.601707pt;}
.ws7{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws9{word-spacing:-16.135573pt;}
.wsa{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.961707pt;}
.ws11{word-spacing:-15.733973pt;}
.wsb{word-spacing:-15.632640pt;}
.ws1a{word-spacing:-15.311360pt;}
.ws19{word-spacing:-15.039893pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws16{word-spacing:-13.585813pt;}
.ws15{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.496213pt;}
.ws12{word-spacing:-13.360747pt;}
.ws2{word-spacing:-13.302684pt;}
.wsf{word-spacing:-10.319360pt;}
.ws1c{word-spacing:-10.160427pt;}
.ws1d{word-spacing:-9.607680pt;}
.ws13{word-spacing:-8.389120pt;}
.wsd{word-spacing:0.000000pt;}
._f{margin-left:-7.831040pt;}
._7{margin-left:-1.905493pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._8{width:2.085120pt;}
._6{width:3.315200pt;}
._e{width:5.063680pt;}
._b{width:6.008320pt;}
._10{width:7.194453pt;}
._c{width:8.125440pt;}
._d{width:9.913173pt;}
._11{width:11.422720pt;}
._5{width:12.482560pt;}
._4{width:13.483520pt;}
._9{width:14.425600pt;}
._a{width:15.392000pt;}
._12{width:17.373013pt;}
._15{width:18.948693pt;}
._14{width:27.275520pt;}
._13{width:28.262400pt;}
._0{width:368.000000pt;}
._1{width:1188.106667pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.500587pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:84.326561pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-6.240000pt;}
.yf{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.040000pt;}
.y35{bottom:3.200000pt;}
.y6a{bottom:4.000000pt;}
.y88{bottom:4.160000pt;}
.y16{bottom:7.040000pt;}
.y18{bottom:7.200000pt;}
.y23{bottom:8.000000pt;}
.y108{bottom:8.160000pt;}
.y7{bottom:9.920000pt;}
.ya{bottom:12.800000pt;}
.ye{bottom:17.120000pt;}
.ye7{bottom:19.674667pt;}
.y7e{bottom:19.840000pt;}
.yb0{bottom:19.994667pt;}
.y34{bottom:20.000000pt;}
.y20{bottom:23.840000pt;}
.y15{bottom:24.000000pt;}
.y6{bottom:32.000000pt;}
.ye6{bottom:32.154667pt;}
.y9{bottom:34.880000pt;}
.y7d{bottom:36.480000pt;}
.yaf{bottom:36.794667pt;}
.y63{bottom:36.800000pt;}
.y55{bottom:36.954667pt;}
.y33{bottom:36.960000pt;}
.yd{bottom:39.360000pt;}
.y7c{bottom:48.954667pt;}
.y4{bottom:51.360000pt;}
.y9c{bottom:53.594667pt;}
.y54{bottom:53.754667pt;}
.y32{bottom:53.760000pt;}
.yae{bottom:53.914667pt;}
.y9b{bottom:65.914667pt;}
.y3{bottom:69.792000pt;}
.y62{bottom:70.560000pt;}
.y76{bottom:70.600000pt;}
.y53{bottom:70.714667pt;}
.y31{bottom:70.720000pt;}
.yad{bottom:72.314667pt;}
.y77{bottom:85.632000pt;}
.y61{bottom:87.200000pt;}
.y52{bottom:87.354667pt;}
.y105{bottom:87.360000pt;}
.yd7{bottom:87.520000pt;}
.y30{bottom:87.560000pt;}
.y75{bottom:87.720000pt;}
.yb1{bottom:89.472000pt;}
.yac{bottom:90.554667pt;}
.y7f{bottom:97.152000pt;}
.y51{bottom:99.674667pt;}
.y60{bottom:99.680000pt;}
.y38{bottom:100.352000pt;}
.y10f{bottom:102.752000pt;}
.y104{bottom:104.320000pt;}
.y2f{bottom:104.360000pt;}
.y74{bottom:106.120000pt;}
.yab{bottom:107.354667pt;}
.y10e{bottom:118.272000pt;}
.y103{bottom:121.120000pt;}
.y2e{bottom:121.320000pt;}
.ybe{bottom:124.192000pt;}
.y73{bottom:124.360000pt;}
.y9d{bottom:126.272000pt;}
.yd8{bottom:127.232000pt;}
.y10d{bottom:135.866667pt;}
.y2d{bottom:138.120000pt;}
.ybd{bottom:142.106667pt;}
.y102{bottom:144.640000pt;}
.y10c{bottom:153.306667pt;}
.y2c{bottom:155.080000pt;}
.ybc{bottom:160.026667pt;}
.y10b{bottom:170.906667pt;}
.y2b{bottom:171.880000pt;}
.yd6{bottom:172.200000pt;}
.ybb{bottom:177.946667pt;}
.yb7{bottom:179.514667pt;}
.yc9{bottom:179.520000pt;}
.y101{bottom:184.000000pt;}
.yd1{bottom:184.986667pt;}
.y36{bottom:185.146667pt;}
.y10a{bottom:188.346667pt;}
.y2a{bottom:188.680000pt;}
.yd5{bottom:190.280000pt;}
.yba{bottom:195.866667pt;}
.yb6{bottom:196.194667pt;}
.yc8{bottom:196.346667pt;}
.y24{bottom:200.666667pt;}
.y100{bottom:200.960000pt;}
.y29{bottom:205.640000pt;}
.y109{bottom:205.946667pt;}
.yd4{bottom:207.080000pt;}
.yb5{bottom:208.674667pt;}
.yc7{bottom:212.986667pt;}
.yb9{bottom:213.786667pt;}
.y64{bottom:214.426667pt;}
.yff{bottom:217.786667pt;}
.y28{bottom:222.440000pt;}
.yd3{bottom:223.720000pt;}
.yc6{bottom:225.466667pt;}
.yb8{bottom:231.546667pt;}
.yfe{bottom:234.746667pt;}
.yd2{bottom:236.200000pt;}
.y27{bottom:239.400000pt;}
.y107{bottom:240.346667pt;}
.yaa{bottom:248.346667pt;}
.yfd{bottom:251.546667pt;}
.y26{bottom:256.200000pt;}
.ya9{bottom:266.266667pt;}
.yfc{bottom:268.346667pt;}
.y25{bottom:273.000000pt;}
.ya8{bottom:284.226667pt;}
.yfb{bottom:285.306667pt;}
.y106{bottom:287.586667pt;}
.yfa{bottom:302.106667pt;}
.ya7{bottom:302.146667pt;}
.ye8{bottom:303.106667pt;}
.ybf{bottom:317.186667pt;}
.yf9{bottom:319.066667pt;}
.y68{bottom:319.586667pt;}
.ya6{bottom:320.066667pt;}
.ya0{bottom:320.674667pt;}
.yf8{bottom:335.866667pt;}
.y67{bottom:336.226667pt;}
.y9f{bottom:337.314667pt;}
.ya5{bottom:337.986667pt;}
.y56{bottom:345.506667pt;}
.y9e{bottom:349.794667pt;}
.y66{bottom:351.586667pt;}
.yd0{bottom:351.906667pt;}
.yf7{bottom:352.666667pt;}
.y72{bottom:353.506667pt;}
.ya4{bottom:355.906667pt;}
.y50{bottom:358.914667pt;}
.y65{bottom:364.066667pt;}
.yf6{bottom:369.626667pt;}
.ycf{bottom:369.826667pt;}
.y9a{bottom:370.114667pt;}
.y71{bottom:371.426667pt;}
.ya3{bottom:373.826667pt;}
.y4f{bottom:375.714667pt;}
.yf5{bottom:386.426667pt;}
.y99{bottom:387.074667pt;}
.yce{bottom:387.746667pt;}
.y70{bottom:389.346667pt;}
.ya2{bottom:391.746667pt;}
.y4e{bottom:392.674667pt;}
.yf4{bottom:403.386667pt;}
.y98{bottom:403.874667pt;}
.ycd{bottom:405.666667pt;}
.y6f{bottom:407.106667pt;}
.y4d{bottom:409.501333pt;}
.ya1{bottom:409.666667pt;}
.y5f{bottom:409.986667pt;}
.yf3{bottom:420.186667pt;}
.y97{bottom:421.021333pt;}
.ycc{bottom:423.426667pt;}
.y6e{bottom:425.026667pt;}
.y4c{bottom:426.301333pt;}
.y5e{bottom:426.946667pt;}
.yf2{bottom:437.026667pt;}
.y96{bottom:439.421333pt;}
.ycb{bottom:441.346667pt;}
.y6d{bottom:442.946667pt;}
.y4b{bottom:443.261333pt;}
.y5d{bottom:443.746667pt;}
.yf1{bottom:453.986667pt;}
.y95{bottom:457.661333pt;}
.yca{bottom:459.266667pt;}
.y4a{bottom:460.061333pt;}
.y5c{bottom:460.706667pt;}
.y6c{bottom:460.866667pt;}
.yf0{bottom:470.786667pt;}
.y94{bottom:474.461333pt;}
.y49{bottom:477.021333pt;}
.y5b{bottom:477.826667pt;}
.y6b{bottom:478.786667pt;}
.ye5{bottom:484.706667pt;}
.yef{bottom:487.746667pt;}
.y22{bottom:488.226667pt;}
.y93{bottom:491.261333pt;}
.y48{bottom:493.821333pt;}
.ydf{bottom:494.941333pt;}
.y5a{bottom:495.906667pt;}
.y69{bottom:496.706667pt;}
.ye4{bottom:501.666667pt;}
.yee{bottom:504.546667pt;}
.y92{bottom:508.221333pt;}
.yde{bottom:511.901333pt;}
.y59{bottom:512.706667pt;}
.yc5{bottom:516.546667pt;}
.y7b{bottom:517.181333pt;}
.ye3{bottom:518.493333pt;}
.yed{bottom:521.506667pt;}
.y91{bottom:525.021333pt;}
.ydd{bottom:528.701333pt;}
.y58{bottom:529.666667pt;}
.yb4{bottom:530.301333pt;}
.yc4{bottom:533.506667pt;}
.y7a{bottom:534.141333pt;}
.y21{bottom:535.293333pt;}
.yec{bottom:538.306667pt;}
.y90{bottom:541.981333pt;}
.ydc{bottom:545.661333pt;}
.yb3{bottom:546.941333pt;}
.yc3{bottom:550.306667pt;}
.y79{bottom:550.781333pt;}
.y1f{bottom:550.973333pt;}
.ye2{bottom:552.253333pt;}
.y57{bottom:553.026667pt;}
.yeb{bottom:555.106667pt;}
.y8f{bottom:558.781333pt;}
.yb2{bottom:559.261333pt;}
.ydb{bottom:562.461333pt;}
.y78{bottom:563.101333pt;}
.yc2{bottom:567.426667pt;}
.ye1{bottom:569.053333pt;}
.yea{bottom:572.066667pt;}
.y8e{bottom:575.581333pt;}
.yda{bottom:579.101333pt;}
.yc1{bottom:585.826667pt;}
.ye0{bottom:586.013333pt;}
.yd9{bottom:591.581333pt;}
.y8d{bottom:592.541333pt;}
.y1e{bottom:593.373333pt;}
.ye9{bottom:595.426667pt;}
.yc0{bottom:603.906667pt;}
.y47{bottom:608.893333pt;}
.y1d{bottom:618.813333pt;}
.y46{bottom:625.853333pt;}
.y3f{bottom:630.501333pt;}
.y45{bottom:642.653333pt;}
.y1c{bottom:644.413333pt;}
.y44{bottom:659.453333pt;}
.y3e{bottom:662.181333pt;}
.y43{bottom:676.413333pt;}
.y3d{bottom:678.981333pt;}
.y1b{bottom:686.813333pt;}
.y42{bottom:693.213333pt;}
.y3c{bottom:695.781333pt;}
.y8c{bottom:704.413333pt;}
.y40{bottom:710.173333pt;}
.y1a{bottom:712.253333pt;}
.y3b{bottom:712.901333pt;}
.y8b{bottom:722.333333pt;}
.y3a{bottom:731.141333pt;}
.y19{bottom:737.893333pt;}
.y8a{bottom:740.293333pt;}
.y39{bottom:754.661333pt;}
.y117{bottom:755.013333pt;}
.y89{bottom:758.213333pt;}
.y17{bottom:763.333333pt;}
.y87{bottom:776.133333pt;}
.y14{bottom:788.933333pt;}
.y116{bottom:791.813333pt;}
.y86{bottom:794.213333pt;}
.y115{bottom:810.213333pt;}
.y85{bottom:812.133333pt;}
.y80{bottom:823.941333pt;}
.y114{bottom:828.773333pt;}
.y84{bottom:830.053333pt;}
.y13{bottom:834.853333pt;}
.y113{bottom:847.173333pt;}
.y83{bottom:847.973333pt;}
.y12{bottom:854.213333pt;}
.y112{bottom:865.573333pt;}
.y82{bottom:865.893333pt;}
.y81{bottom:883.813333pt;}
.y111{bottom:883.973333pt;}
.y37{bottom:891.973333pt;}
.y11{bottom:902.373333pt;}
.y10{bottom:920.613333pt;}
.y110{bottom:920.773333pt;}
.y2{bottom:939.173333pt;}
.y1{bottom:954.080000pt;}
.yc{bottom:967.200000pt;}
.y8{bottom:968.800000pt;}
.y5{bottom:971.680000pt;}
.h18{height:16.800000pt;}
.h28{height:16.832000pt;}
.h19{height:16.960000pt;}
.h1f{height:17.760000pt;}
.h1e{height:17.920000pt;}
.h1c{height:17.952000pt;}
.h22{height:18.080000pt;}
.hc{height:24.800000pt;}
.hb{height:24.960000pt;}
.hd{height:24.992000pt;}
.h3{height:32.290485pt;}
.h2b{height:33.760000pt;}
.he{height:41.600000pt;}
.h9{height:41.760000pt;}
.h2{height:41.920000pt;}
.h14{height:42.880000pt;}
.hf{height:42.912000pt;}
.h2a{height:43.072000pt;}
.h13{height:44.500000pt;}
.h5{height:44.800000pt;}
.h6{height:49.280000pt;}
.h2c{height:52.785000pt;}
.h17{height:55.402500pt;}
.h1d{height:60.288750pt;}
.ha{height:61.410000pt;}
.h1{height:62.781250pt;}
.h4{height:64.068422pt;}
.h12{height:64.500000pt;}
.h16{height:65.045312pt;}
.h2d{height:65.781915pt;}
.h7{height:66.750000pt;}
.h10{height:83.437500pt;}
.h8{height:88.777500pt;}
.h11{height:286.746667pt;}
.h1a{height:589.346667pt;}
.h25{height:617.666667pt;}
.h29{height:631.746667pt;}
.h1b{height:720.413333pt;}
.h26{height:749.853333pt;}
.h15{height:790.973333pt;}
.h27{height:807.613333pt;}
.h23{height:808.573333pt;}
.h21{height:837.693333pt;}
.h24{height:845.373333pt;}
.h20{height:849.213333pt;}
.h0{height:1056.000000pt;}
.w4{width:62.432000pt;}
.w1a{width:101.920000pt;}
.w16{width:103.040000pt;}
.w15{width:103.072000pt;}
.w17{width:104.192000pt;}
.w14{width:112.512000pt;}
.w3{width:115.680000pt;}
.w2{width:116.000000pt;}
.w13{width:168.666667pt;}
.wc{width:171.066667pt;}
.we{width:171.546667pt;}
.wf{width:171.706667pt;}
.wd{width:172.186667pt;}
.w11{width:172.666667pt;}
.w10{width:172.826667pt;}
.w12{width:173.786667pt;}
.wb{width:189.946667pt;}
.w9{width:197.146667pt;}
.w5{width:242.786667pt;}
.wa{width:281.146667pt;}
.w6{width:435.106667pt;}
.w19{width:583.013333pt;}
.w7{width:678.853333pt;}
.w18{width:686.213333pt;}
.w8{width:724.640000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.720000pt;}
.xb{left:9.600000pt;}
.xa{left:12.320000pt;}
.x6{left:13.440000pt;}
.xe{left:15.360000pt;}
.x47{left:17.312000pt;}
.x50{left:18.880000pt;}
.x2b{left:19.840000pt;}
.xd{left:20.800000pt;}
.x1e{left:22.080000pt;}
.x35{left:23.040000pt;}
.x5{left:35.200000pt;}
.x9{left:36.320000pt;}
.x4b{left:37.440000pt;}
.x13{left:40.000000pt;}
.x21{left:41.160000pt;}
.x1a{left:42.440000pt;}
.x1b{left:43.834667pt;}
.x49{left:46.120000pt;}
.x33{left:50.432000pt;}
.x1d{left:51.514667pt;}
.x20{left:54.240000pt;}
.x27{left:56.832000pt;}
.x16{left:63.034667pt;}
.x3b{left:64.192000pt;}
.x4f{left:65.146667pt;}
.x1f{left:66.714667pt;}
.x10{left:68.800000pt;}
.x3f{left:70.080000pt;}
.x2d{left:72.314667pt;}
.x36{left:73.280000pt;}
.x2e{left:74.400000pt;}
.x3{left:75.519988pt;}
.x25{left:77.306667pt;}
.x37{left:78.234667pt;}
.x1c{left:80.680000pt;}
.x2f{left:81.754667pt;}
.x3c{left:83.552000pt;}
.x34{left:85.632000pt;}
.x28{left:86.752000pt;}
.x15{left:94.112000pt;}
.x7{left:102.560000pt;}
.x18{left:109.600000pt;}
.x40{left:128.826667pt;}
.x31{left:132.186667pt;}
.x44{left:139.706667pt;}
.x53{left:148.826655pt;}
.x42{left:151.386667pt;}
.x39{left:157.306667pt;}
.x23{left:160.986667pt;}
.x14{left:166.586667pt;}
.x46{left:171.706667pt;}
.x48{left:246.266667pt;}
.x3d{left:257.186667pt;}
.x29{left:258.786667pt;}
.x1{left:280.386655pt;}
.x17{left:292.066667pt;}
.x12{left:312.226667pt;}
.x4a{left:359.586667pt;}
.x2{left:407.906655pt;}
.x2a{left:430.813333pt;}
.x4{left:440.093333pt;}
.x4c{left:463.613333pt;}
.xf{left:512.573321pt;}
.x45{left:526.333333pt;}
.xc{left:565.693333pt;}
.x4d{left:567.613333pt;}
.x19{left:574.173333pt;}
.x30{left:576.613333pt;}
.x38{left:588.133333pt;}
.x24{left:592.453333pt;}
.x41{left:602.053333pt;}
.x2c{left:603.973333pt;}
.x3e{left:605.573333pt;}
.x8{left:644.133333pt;}
.x52{left:652.613333pt;}
.x43{left:656.613333pt;}
.x22{left:666.053333pt;}
.x4e{left:680.933333pt;}
.x51{left:693.733333pt;}
.x32{left:705.280000pt;}
.x26{left:710.080000pt;}
.x3a{left:717.280000pt;}
}




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