
    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_664c842d9ff810af3cd4c19a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_871552313389a54513475167.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_d236e6a5ff84d38794f3d2cf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_1a85a14a97e89abcdcaa01f1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_a88dd74cc0e78534abf9ec57.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_fd68f0ea65761a6994db7c7b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_5c06d47f1b796c03ded21d02.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916000;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_1694f1057b6fe07de940aea7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_9e900763d48b01f267c9c364.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986000;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_f4f34f5753e7a0e3e8ef8ff4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_0fcad5e3ff2e5d57ad3496e8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.164000;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_4a4950664c73b0b84dde5972.woff')format("woff");}.ffc{font-family:ffc;line-height:1.134000;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_9ffd738aee28016a83317cc9.woff')format("woff");}.ffd{font-family:ffd;line-height:1.155000;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_5acd518d75818b39a8c8c669.woff')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_74053a844a62ba19e4e9ac7e.woff')format("woff");}.fff{font-family:fff;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.432000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.540000px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.wse{word-spacing:-66.000000px;}
.ws13{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.498000px;}
.ws1a{word-spacing:-11.376000px;}
.ws1{word-spacing:-10.800000px;}
.ws11{word-spacing:-10.200000px;}
.wsf{word-spacing:-2.970000px;}
.wsa{word-spacing:-2.160000px;}
.ws19{word-spacing:-2.052000px;}
.ws4{word-spacing:-1.080000px;}
.ws15{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.432000px;}
.ws7{word-spacing:0.540000px;}
.ws3{word-spacing:0.780000px;}
.ws12{word-spacing:0.810000px;}
.ws8{word-spacing:1.728000px;}
.ws14{word-spacing:3.510000px;}
.ws17{word-spacing:5.616000px;}
.wsd{word-spacing:6.858000px;}
.ws9{word-spacing:6.912000px;}
.wsc{word-spacing:6.966000px;}
.ws5{word-spacing:8.640000px;}
.ws18{word-spacing:15.444000px;}
._4{margin-left:-15.493800px;}
._15{margin-left:-8.256600px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.780000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._8{width:2.490000px;}
._b{width:3.649800px;}
._a{width:5.421600px;}
._9{width:6.534000px;}
._f{width:7.554600px;}
._7{width:9.374400px;}
._12{width:10.400400px;}
._e{width:11.512800px;}
._13{width:14.250600px;}
._11{width:15.363000px;}
._10{width:16.561800px;}
._16{width:18.532800px;}
._14{width:19.801800px;}
._c{width:21.535200px;}
._d{width:22.854600px;}
._28{width:72.471000px;}
._19{width:80.994000px;}
._26{width:125.460000px;}
._27{width:147.972000px;}
._1a{width:201.756000px;}
._20{width:209.193000px;}
._1b{width:210.666000px;}
._1f{width:230.964000px;}
._1e{width:244.075200px;}
._22{width:256.464000px;}
._24{width:297.876000px;}
._23{width:343.980000px;}
._17{width:433.104000px;}
._1c{width:508.800000px;}
._1d{width:660.360000px;}
._21{width:694.248000px;}
._18{width:704.808000px;}
._25{width:736.104000px;}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.621700px;}
.y28{bottom:53.624700px;}
.y29{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.y123{bottom:112.909950px;}
.y71{bottom:112.923450px;}
.y120{bottom:112.981800px;}
.ybc{bottom:112.990800px;}
.y14f{bottom:113.013450px;}
.y88{bottom:113.017950px;}
.ydd{bottom:113.026800px;}
.yee{bottom:113.026950px;}
.y172{bottom:128.715450px;}
.y122{bottom:135.414450px;}
.y70{bottom:135.427950px;}
.y51{bottom:135.454950px;}
.y11f{bottom:135.486300px;}
.ybb{bottom:135.495300px;}
.y14e{bottom:135.517950px;}
.y87{bottom:135.522450px;}
.ydc{bottom:135.531300px;}
.yed{bottom:135.531450px;}
.y19c{bottom:145.382700px;}
.y171{bottom:148.215450px;}
.y25{bottom:156.189900px;}
.y94{bottom:157.918950px;}
.y6f{bottom:157.932450px;}
.y50{bottom:157.959450px;}
.y11e{bottom:157.990800px;}
.yba{bottom:157.999800px;}
.y14d{bottom:158.022450px;}
.y86{bottom:158.026950px;}
.y19b{bottom:164.882700px;}
.y170{bottom:167.715450px;}
.y24{bottom:178.694400px;}
.y93{bottom:180.423450px;}
.y6e{bottom:180.436950px;}
.y4f{bottom:180.463950px;}
.y14c{bottom:180.526950px;}
.ydb{bottom:180.531300px;}
.y85{bottom:180.531450px;}
.yec{bottom:185.901900px;}
.y19a{bottom:197.138700px;}
.y16f{bottom:199.971450px;}
.y23{bottom:201.198900px;}
.y92{bottom:202.927950px;}
.y6d{bottom:202.941450px;}
.y4e{bottom:202.968450px;}
.y11d{bottom:202.986300px;}
.yb9{bottom:202.995300px;}
.y14b{bottom:203.031450px;}
.yeb{bottom:207.561750px;}
.y199{bottom:216.638700px;}
.y16e{bottom:219.471450px;}
.y134{bottom:225.418950px;}
.yf8{bottom:225.432450px;}
.y4d{bottom:225.472950px;}
.y11c{bottom:225.490800px;}
.yb8{bottom:225.499800px;}
.y84{bottom:225.525450px;}
.yea{bottom:225.564750px;}
.y16d{bottom:238.971450px;}
.ye9{bottom:243.567750px;}
.y22{bottom:246.194400px;}
.y91{bottom:247.923450px;}
.y6c{bottom:247.936950px;}
.y4c{bottom:247.977450px;}
.y11b{bottom:247.995300px;}
.yb7{bottom:248.004300px;}
.yda{bottom:248.022300px;}
.y83{bottom:248.031450px;}
.y198{bottom:248.894700px;}
.ye8{bottom:261.570750px;}
.y197{bottom:268.394700px;}
.y133{bottom:270.414450px;}
.y90{bottom:270.427950px;}
.y6b{bottom:270.441450px;}
.y4b{bottom:270.481950px;}
.y11a{bottom:270.499800px;}
.yb6{bottom:270.508800px;}
.yd9{bottom:270.526800px;}
.y16c{bottom:271.227450px;}
.ye7{bottom:287.070750px;}
.y16b{bottom:290.727450px;}
.y21{bottom:291.189900px;}
.y132{bottom:292.918950px;}
.y8f{bottom:292.932450px;}
.y6a{bottom:292.945950px;}
.y4a{bottom:292.986450px;}
.y119{bottom:293.004300px;}
.yd8{bottom:293.031300px;}
.y196{bottom:300.650700px;}
.ye6{bottom:305.073750px;}
.y16a{bottom:310.227450px;}
.y20{bottom:313.694400px;}
.y131{bottom:315.423450px;}
.y82{bottom:315.436950px;}
.y69{bottom:315.450450px;}
.y14a{bottom:315.481950px;}
.yb5{bottom:315.504300px;}
.y195{bottom:320.150700px;}
.ye5{bottom:323.076750px;}
.y1f{bottom:336.198900px;}
.y130{bottom:337.927950px;}
.y81{bottom:337.941450px;}
.y68{bottom:337.954950px;}
.y49{bottom:337.981950px;}
.y149{bottom:337.986450px;}
.y118{bottom:337.999800px;}
.yb4{bottom:338.008800px;}
.y194{bottom:339.650700px;}
.y169{bottom:342.483450px;}
.ye4{bottom:348.576750px;}
.yd7{bottom:352.401900px;}
.y1e{bottom:358.703400px;}
.y12f{bottom:360.432450px;}
.y80{bottom:360.445950px;}
.y48{bottom:360.486450px;}
.y148{bottom:360.490950px;}
.y117{bottom:360.504300px;}
.yb3{bottom:360.513300px;}
.y168{bottom:361.983450px;}
.ye3{bottom:366.579750px;}
.y193{bottom:371.906700px;}
.yd6{bottom:374.027850px;}
.y1d{bottom:381.207900px;}
.y12e{bottom:382.936950px;}
.y67{bottom:382.950450px;}
.y47{bottom:382.990950px;}
.y147{bottom:382.995450px;}
.y116{bottom:383.008800px;}
.yb2{bottom:383.017800px;}
.ye2{bottom:384.582750px;}
.y192{bottom:391.406700px;}
.yd5{bottom:392.030850px;}
.y167{bottom:394.239450px;}
.ye1{bottom:402.585750px;}
.y1c{bottom:403.712400px;}
.y7f{bottom:405.441450px;}
.y66{bottom:405.454950px;}
.y46{bottom:405.495450px;}
.y146{bottom:405.499950px;}
.y115{bottom:405.513300px;}
.yb1{bottom:405.522300px;}
.yd4{bottom:410.033850px;}
.y191{bottom:410.906700px;}
.y166{bottom:413.739450px;}
.ye0{bottom:420.588750px;}
.y1b{bottom:426.216900px;}
.y7e{bottom:427.945950px;}
.y65{bottom:427.959450px;}
.y45{bottom:427.999950px;}
.y145{bottom:428.004450px;}
.y114{bottom:428.017800px;}
.yb0{bottom:428.026800px;}
.yd3{bottom:428.036850px;}
.y190{bottom:430.406700px;}
.y165{bottom:433.239450px;}
.ydf{bottom:438.591750px;}
.yd2{bottom:446.039850px;}
.y1a{bottom:448.721400px;}
.y7d{bottom:450.450450px;}
.y121{bottom:450.463950px;}
.y44{bottom:450.504450px;}
.y144{bottom:450.508950px;}
.yaf{bottom:450.531300px;}
.y18f{bottom:462.662700px;}
.yd1{bottom:464.042850px;}
.ycd{bottom:464.055600px;}
.yde{bottom:464.097600px;}
.y164{bottom:465.495450px;}
.y19{bottom:471.225900px;}
.y12d{bottom:472.941450px;}
.y64{bottom:472.954950px;}
.y43{bottom:473.008950px;}
.y113{bottom:473.013300px;}
.y143{bottom:473.013450px;}
.yd0{bottom:482.045850px;}
.ycc{bottom:482.058600px;}
.y18e{bottom:482.162700px;}
.y163{bottom:484.995450px;}
.y18{bottom:493.730400px;}
.y12c{bottom:495.445950px;}
.y63{bottom:495.459450px;}
.y112{bottom:495.517800px;}
.y142{bottom:495.517950px;}
.yae{bottom:495.531300px;}
.ycf{bottom:500.048850px;}
.ycb{bottom:500.061600px;}
.y18d{bottom:501.662700px;}
.y162{bottom:504.495450px;}
.y17{bottom:516.234900px;}
.y12b{bottom:517.950450px;}
.y62{bottom:517.963950px;}
.y42{bottom:518.004450px;}
.y111{bottom:518.022300px;}
.y141{bottom:518.022450px;}
.yce{bottom:518.051850px;}
.yca{bottom:518.064600px;}
.y18c{bottom:533.918700px;}
.y161{bottom:536.751450px;}
.y16{bottom:538.739400px;}
.y12a{bottom:540.454950px;}
.y61{bottom:540.468450px;}
.y41{bottom:540.508950px;}
.y110{bottom:540.526800px;}
.y140{bottom:540.526950px;}
.yc9{bottom:543.564600px;}
.y18b{bottom:553.418700px;}
.y160{bottom:556.251450px;}
.y15{bottom:561.243900px;}
.yc8{bottom:561.567600px;}
.y7c{bottom:562.959450px;}
.y60{bottom:562.972950px;}
.y40{bottom:563.013450px;}
.y10f{bottom:563.031300px;}
.y13f{bottom:563.031450px;}
.yad{bottom:563.901900px;}
.y15f{bottom:575.751450px;}
.yc7{bottom:579.570600px;}
.y14{bottom:583.748400px;}
.y7b{bottom:585.463950px;}
.yf7{bottom:585.477450px;}
.y3f{bottom:585.517950px;}
.y18a{bottom:585.674700px;}
.yc6{bottom:597.573600px;}
.ya8{bottom:599.043600px;}
.y189{bottom:605.174700px;}
.y13{bottom:606.252900px;}
.y129{bottom:607.954950px;}
.y5f{bottom:607.968450px;}
.yf6{bottom:607.981950px;}
.y15e{bottom:608.007450px;}
.y13e{bottom:608.025450px;}
.y10e{bottom:608.031300px;}
.yc5{bottom:615.576600px;}
.ya7{bottom:617.046600px;}
.y188{bottom:624.674700px;}
.y15d{bottom:627.507450px;}
.y12{bottom:628.757400px;}
.y128{bottom:630.459450px;}
.y5e{bottom:630.472950px;}
.yf5{bottom:630.486450px;}
.y3e{bottom:630.513450px;}
.y13d{bottom:630.531450px;}
.ya6{bottom:635.049600px;}
.yc4{bottom:641.076600px;}
.y11{bottom:651.261900px;}
.y8e{bottom:652.963950px;}
.y5d{bottom:652.977450px;}
.yf4{bottom:652.990950px;}
.y3d{bottom:653.017950px;}
.yac{bottom:653.039850px;}
.ya5{bottom:653.052600px;}
.y187{bottom:656.930700px;}
.yc3{bottom:659.079600px;}
.y15c{bottom:659.763450px;}
.yab{bottom:671.042850px;}
.ya4{bottom:671.055600px;}
.y10d{bottom:672.645900px;}
.y8d{bottom:675.468450px;}
.y5c{bottom:675.481950px;}
.y3c{bottom:675.522450px;}
.y186{bottom:676.430700px;}
.yc2{bottom:677.082600px;}
.y15b{bottom:679.263450px;}
.yaa{bottom:689.045850px;}
.ya3{bottom:689.058600px;}
.yc1{bottom:695.085600px;}
.y185{bottom:695.930700px;}
.y13c{bottom:697.945950px;}
.y8c{bottom:697.972950px;}
.y5b{bottom:697.986450px;}
.y3b{bottom:698.026950px;}
.y15a{bottom:698.763450px;}
.y10c{bottom:707.043600px;}
.ya9{bottom:707.048850px;}
.ya2{bottom:707.061600px;}
.yc0{bottom:713.088600px;}
.y10{bottom:714.158400px;}
.y13b{bottom:720.450450px;}
.y8b{bottom:720.477450px;}
.y5a{bottom:720.490950px;}
.y3a{bottom:720.531450px;}
.y10b{bottom:725.046600px;}
.y184{bottom:728.186700px;}
.y159{bottom:731.019450px;}
.ybf{bottom:731.091600px;}
.ya1{bottom:732.561600px;}
.y13a{bottom:742.954950px;}
.y8a{bottom:742.981950px;}
.y7a{bottom:742.995450px;}
.y10a{bottom:743.049600px;}
.y183{bottom:747.686700px;}
.y158{bottom:750.519450px;}
.ya0{bottom:750.564600px;}
.ybe{bottom:756.597600px;}
.y109{bottom:761.052600px;}
.y139{bottom:765.459450px;}
.y127{bottom:765.472950px;}
.y59{bottom:765.486450px;}
.yf3{bottom:765.499950px;}
.y39{bottom:765.531450px;}
.y182{bottom:767.186700px;}
.y9f{bottom:768.567600px;}
.y157{bottom:770.019450px;}
.yf{bottom:774.926100px;}
.y108{bottom:786.552600px;}
.y9e{bottom:786.570600px;}
.y138{bottom:787.963950px;}
.y126{bottom:787.977450px;}
.y58{bottom:787.990950px;}
.yf2{bottom:788.004450px;}
.ye{bottom:791.426100px;}
.y181{bottom:799.442700px;}
.y156{bottom:802.275450px;}
.y107{bottom:804.555600px;}
.y9d{bottom:804.573600px;}
.y137{bottom:810.468450px;}
.y125{bottom:810.481950px;}
.y57{bottom:810.495450px;}
.yd{bottom:814.304100px;}
.y180{bottom:818.942700px;}
.y155{bottom:821.775450px;}
.y106{bottom:822.558600px;}
.y9c{bottom:830.073600px;}
.y136{bottom:832.972950px;}
.y38{bottom:832.986450px;}
.y56{bottom:832.999950px;}
.y17f{bottom:838.442700px;}
.y105{bottom:840.561600px;}
.y154{bottom:841.275450px;}
.y9b{bottom:848.076600px;}
.yc{bottom:848.815950px;}
.y135{bottom:855.477450px;}
.y124{bottom:855.490950px;}
.y55{bottom:855.504450px;}
.y104{bottom:858.564600px;}
.yb{bottom:865.315950px;}
.y9a{bottom:866.079600px;}
.y17e{bottom:870.698700px;}
.y153{bottom:873.531450px;}
.y103{bottom:876.567600px;}
.y37{bottom:877.981950px;}
.y89{bottom:877.995450px;}
.y79{bottom:878.008950px;}
.y99{bottom:884.082600px;}
.ya{bottom:888.193950px;}
.y17d{bottom:890.198700px;}
.y152{bottom:893.031450px;}
.y102{bottom:894.570600px;}
.y36{bottom:900.486450px;}
.y54{bottom:900.499950px;}
.y78{bottom:900.513450px;}
.y98{bottom:902.085600px;}
.y17c{bottom:909.698700px;}
.y151{bottom:912.531450px;}
.y101{bottom:912.573600px;}
.y97{bottom:920.088600px;}
.y35{bottom:922.990950px;}
.y53{bottom:923.004450px;}
.y77{bottom:923.017950px;}
.y100{bottom:938.073600px;}
.y96{bottom:938.091600px;}
.y17b{bottom:941.954700px;}
.y34{bottom:945.495450px;}
.y52{bottom:945.508950px;}
.y76{bottom:945.522450px;}
.y150{bottom:945.531450px;}
.y9{bottom:948.214500px;}
.yff{bottom:956.076600px;}
.y17a{bottom:961.454700px;}
.y95{bottom:963.597600px;}
.y33{bottom:967.999950px;}
.ybd{bottom:968.013450px;}
.yf1{bottom:968.026950px;}
.y8{bottom:970.717500px;}
.yfe{bottom:974.079600px;}
.y32{bottom:990.504450px;}
.y75{bottom:990.517950px;}
.yf0{bottom:990.531450px;}
.yfd{bottom:992.082600px;}
.y179{bottom:993.710700px;}
.y7{bottom:1005.973500px;}
.yfc{bottom:1010.085600px;}
.y31{bottom:1013.008950px;}
.y74{bottom:1013.022450px;}
.y178{bottom:1013.210700px;}
.yfb{bottom:1028.088600px;}
.y30{bottom:1035.513450px;}
.y73{bottom:1035.526950px;}
.yef{bottom:1035.531450px;}
.y6{bottom:1038.973500px;}
.y177{bottom:1045.466700px;}
.yfa{bottom:1046.091600px;}
.y2f{bottom:1058.017950px;}
.y72{bottom:1058.031450px;}
.y176{bottom:1064.966700px;}
.yf9{bottom:1071.597600px;}
.y5{bottom:1071.973500px;}
.y2e{bottom:1080.522450px;}
.y175{bottom:1097.222700px;}
.y2d{bottom:1103.026950px;}
.y174{bottom:1116.722700px;}
.y2c{bottom:1125.531450px;}
.y173{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y27{bottom:1182.887700px;}
.y2b{bottom:1197.026700px;}
.y26{bottom:1199.384700px;}
.h3{height:33.012000px;}
.he{height:34.416000px;}
.h7{height:36.624000px;}
.hb{height:36.816000px;}
.hf{height:38.913000px;}
.h9{height:39.420000px;}
.h8{height:41.202000px;}
.ha{height:42.444000px;}
.h11{height:42.480000px;}
.h6{height:43.800000px;}
.hd{height:47.790000px;}
.h10{height:48.276000px;}
.hc{height:59.004000px;}
.h5{height:59.514000px;}
.h4{height:90.840000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.xa{left:123.607050px;}
.x5{left:127.009050px;}
.x8{left:137.804100px;}
.x18{left:138.992100px;}
.x17{left:141.803100px;}
.x19{left:148.823100px;}
.x15{left:164.906700px;}
.x9{left:172.879200px;}
.xf{left:183.992700px;}
.x16{left:264.685950px;}
.xb{left:280.636050px;}
.x10{left:302.859300px;}
.xc{left:425.208300px;}
.xd{left:433.712550px;}
.xe{left:442.216800px;}
.x14{left:463.075800px;}
.x11{left:471.567300px;}
.x12{left:480.071550px;}
.x3{left:585.415800px;}
.x4{left:623.919300px;}
.x2{left:677.563800px;}
.x13{left:738.650850px;}
.x6{left:741.453450px;}
.x7{left:743.850600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls0{letter-spacing:4.853333pt;}
.wse{word-spacing:-58.666667pt;}
.ws13{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.776000pt;}
.ws1a{word-spacing:-10.112000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws11{word-spacing:-9.066667pt;}
.wsf{word-spacing:-2.640000pt;}
.wsa{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.824000pt;}
.ws4{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.384000pt;}
.ws7{word-spacing:0.480000pt;}
.ws3{word-spacing:0.693333pt;}
.ws12{word-spacing:0.720000pt;}
.ws8{word-spacing:1.536000pt;}
.ws14{word-spacing:3.120000pt;}
.ws17{word-spacing:4.992000pt;}
.wsd{word-spacing:6.096000pt;}
.ws9{word-spacing:6.144000pt;}
.wsc{word-spacing:6.192000pt;}
.ws5{word-spacing:7.680000pt;}
.ws18{word-spacing:13.728000pt;}
._4{margin-left:-13.772267pt;}
._15{margin-left:-7.339200pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.360000pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._8{width:2.213333pt;}
._b{width:3.244267pt;}
._a{width:4.819200pt;}
._9{width:5.808000pt;}
._f{width:6.715200pt;}
._7{width:8.332800pt;}
._12{width:9.244800pt;}
._e{width:10.233600pt;}
._13{width:12.667200pt;}
._11{width:13.656000pt;}
._10{width:14.721600pt;}
._16{width:16.473600pt;}
._14{width:17.601600pt;}
._c{width:19.142400pt;}
._d{width:20.315200pt;}
._28{width:64.418667pt;}
._19{width:71.994667pt;}
._26{width:111.520000pt;}
._27{width:131.530667pt;}
._1a{width:179.338667pt;}
._20{width:185.949333pt;}
._1b{width:187.258667pt;}
._1f{width:205.301333pt;}
._1e{width:216.955733pt;}
._22{width:227.968000pt;}
._24{width:264.778667pt;}
._23{width:305.760000pt;}
._17{width:384.981333pt;}
._1c{width:452.266667pt;}
._1d{width:586.986667pt;}
._21{width:617.109333pt;}
._18{width:626.496000pt;}
._25{width:654.314667pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.663733pt;}
.y28{bottom:47.666400pt;}
.y29{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.y123{bottom:100.364400pt;}
.y71{bottom:100.376400pt;}
.y120{bottom:100.428267pt;}
.ybc{bottom:100.436267pt;}
.y14f{bottom:100.456400pt;}
.y88{bottom:100.460400pt;}
.ydd{bottom:100.468267pt;}
.yee{bottom:100.468400pt;}
.y172{bottom:114.413733pt;}
.y122{bottom:120.368400pt;}
.y70{bottom:120.380400pt;}
.y51{bottom:120.404400pt;}
.y11f{bottom:120.432267pt;}
.ybb{bottom:120.440267pt;}
.y14e{bottom:120.460400pt;}
.y87{bottom:120.464400pt;}
.ydc{bottom:120.472267pt;}
.yed{bottom:120.472400pt;}
.y19c{bottom:129.229067pt;}
.y171{bottom:131.747067pt;}
.y25{bottom:138.835467pt;}
.y94{bottom:140.372400pt;}
.y6f{bottom:140.384400pt;}
.y50{bottom:140.408400pt;}
.y11e{bottom:140.436267pt;}
.yba{bottom:140.444267pt;}
.y14d{bottom:140.464400pt;}
.y86{bottom:140.468400pt;}
.y19b{bottom:146.562400pt;}
.y170{bottom:149.080400pt;}
.y24{bottom:158.839467pt;}
.y93{bottom:160.376400pt;}
.y6e{bottom:160.388400pt;}
.y4f{bottom:160.412400pt;}
.y14c{bottom:160.468400pt;}
.ydb{bottom:160.472267pt;}
.y85{bottom:160.472400pt;}
.yec{bottom:165.246133pt;}
.y19a{bottom:175.234400pt;}
.y16f{bottom:177.752400pt;}
.y23{bottom:178.843467pt;}
.y92{bottom:180.380400pt;}
.y6d{bottom:180.392400pt;}
.y4e{bottom:180.416400pt;}
.y11d{bottom:180.432267pt;}
.yb9{bottom:180.440267pt;}
.y14b{bottom:180.472400pt;}
.yeb{bottom:184.499333pt;}
.y199{bottom:192.567733pt;}
.y16e{bottom:195.085733pt;}
.y134{bottom:200.372400pt;}
.yf8{bottom:200.384400pt;}
.y4d{bottom:200.420400pt;}
.y11c{bottom:200.436267pt;}
.yb8{bottom:200.444267pt;}
.y84{bottom:200.467067pt;}
.yea{bottom:200.502000pt;}
.y16d{bottom:212.419067pt;}
.ye9{bottom:216.504667pt;}
.y22{bottom:218.839467pt;}
.y91{bottom:220.376400pt;}
.y6c{bottom:220.388400pt;}
.y4c{bottom:220.424400pt;}
.y11b{bottom:220.440267pt;}
.yb7{bottom:220.448267pt;}
.yda{bottom:220.464267pt;}
.y83{bottom:220.472400pt;}
.y198{bottom:221.239733pt;}
.ye8{bottom:232.507333pt;}
.y197{bottom:238.573067pt;}
.y133{bottom:240.368400pt;}
.y90{bottom:240.380400pt;}
.y6b{bottom:240.392400pt;}
.y4b{bottom:240.428400pt;}
.y11a{bottom:240.444267pt;}
.yb6{bottom:240.452267pt;}
.yd9{bottom:240.468267pt;}
.y16c{bottom:241.091067pt;}
.ye7{bottom:255.174000pt;}
.y16b{bottom:258.424400pt;}
.y21{bottom:258.835467pt;}
.y132{bottom:260.372400pt;}
.y8f{bottom:260.384400pt;}
.y6a{bottom:260.396400pt;}
.y4a{bottom:260.432400pt;}
.y119{bottom:260.448267pt;}
.yd8{bottom:260.472267pt;}
.y196{bottom:267.245067pt;}
.ye6{bottom:271.176667pt;}
.y16a{bottom:275.757733pt;}
.y20{bottom:278.839467pt;}
.y131{bottom:280.376400pt;}
.y82{bottom:280.388400pt;}
.y69{bottom:280.400400pt;}
.y14a{bottom:280.428400pt;}
.yb5{bottom:280.448267pt;}
.y195{bottom:284.578400pt;}
.ye5{bottom:287.179333pt;}
.y1f{bottom:298.843467pt;}
.y130{bottom:300.380400pt;}
.y81{bottom:300.392400pt;}
.y68{bottom:300.404400pt;}
.y49{bottom:300.428400pt;}
.y149{bottom:300.432400pt;}
.y118{bottom:300.444267pt;}
.yb4{bottom:300.452267pt;}
.y194{bottom:301.911733pt;}
.y169{bottom:304.429733pt;}
.ye4{bottom:309.846000pt;}
.yd7{bottom:313.246133pt;}
.y1e{bottom:318.847467pt;}
.y12f{bottom:320.384400pt;}
.y80{bottom:320.396400pt;}
.y48{bottom:320.432400pt;}
.y148{bottom:320.436400pt;}
.y117{bottom:320.448267pt;}
.yb3{bottom:320.456267pt;}
.y168{bottom:321.763067pt;}
.ye3{bottom:325.848667pt;}
.y193{bottom:330.583733pt;}
.yd6{bottom:332.469200pt;}
.y1d{bottom:338.851467pt;}
.y12e{bottom:340.388400pt;}
.y67{bottom:340.400400pt;}
.y47{bottom:340.436400pt;}
.y147{bottom:340.440400pt;}
.y116{bottom:340.452267pt;}
.yb2{bottom:340.460267pt;}
.ye2{bottom:341.851333pt;}
.y192{bottom:347.917067pt;}
.yd5{bottom:348.471867pt;}
.y167{bottom:350.435067pt;}
.ye1{bottom:357.854000pt;}
.y1c{bottom:358.855467pt;}
.y7f{bottom:360.392400pt;}
.y66{bottom:360.404400pt;}
.y46{bottom:360.440400pt;}
.y146{bottom:360.444400pt;}
.y115{bottom:360.456267pt;}
.yb1{bottom:360.464267pt;}
.yd4{bottom:364.474533pt;}
.y191{bottom:365.250400pt;}
.y166{bottom:367.768400pt;}
.ye0{bottom:373.856667pt;}
.y1b{bottom:378.859467pt;}
.y7e{bottom:380.396400pt;}
.y65{bottom:380.408400pt;}
.y45{bottom:380.444400pt;}
.y145{bottom:380.448400pt;}
.y114{bottom:380.460267pt;}
.yb0{bottom:380.468267pt;}
.yd3{bottom:380.477200pt;}
.y190{bottom:382.583733pt;}
.y165{bottom:385.101733pt;}
.ydf{bottom:389.859333pt;}
.yd2{bottom:396.479867pt;}
.y1a{bottom:398.863467pt;}
.y7d{bottom:400.400400pt;}
.y121{bottom:400.412400pt;}
.y44{bottom:400.448400pt;}
.y144{bottom:400.452400pt;}
.yaf{bottom:400.472267pt;}
.y18f{bottom:411.255733pt;}
.yd1{bottom:412.482533pt;}
.ycd{bottom:412.493867pt;}
.yde{bottom:412.531200pt;}
.y164{bottom:413.773733pt;}
.y19{bottom:418.867467pt;}
.y12d{bottom:420.392400pt;}
.y64{bottom:420.404400pt;}
.y43{bottom:420.452400pt;}
.y113{bottom:420.456267pt;}
.y143{bottom:420.456400pt;}
.yd0{bottom:428.485200pt;}
.ycc{bottom:428.496533pt;}
.y18e{bottom:428.589067pt;}
.y163{bottom:431.107067pt;}
.y18{bottom:438.871467pt;}
.y12c{bottom:440.396400pt;}
.y63{bottom:440.408400pt;}
.y112{bottom:440.460267pt;}
.y142{bottom:440.460400pt;}
.yae{bottom:440.472267pt;}
.ycf{bottom:444.487867pt;}
.ycb{bottom:444.499200pt;}
.y18d{bottom:445.922400pt;}
.y162{bottom:448.440400pt;}
.y17{bottom:458.875467pt;}
.y12b{bottom:460.400400pt;}
.y62{bottom:460.412400pt;}
.y42{bottom:460.448400pt;}
.y111{bottom:460.464267pt;}
.y141{bottom:460.464400pt;}
.yce{bottom:460.490533pt;}
.yca{bottom:460.501867pt;}
.y18c{bottom:474.594400pt;}
.y161{bottom:477.112400pt;}
.y16{bottom:478.879467pt;}
.y12a{bottom:480.404400pt;}
.y61{bottom:480.416400pt;}
.y41{bottom:480.452400pt;}
.y110{bottom:480.468267pt;}
.y140{bottom:480.468400pt;}
.yc9{bottom:483.168533pt;}
.y18b{bottom:491.927733pt;}
.y160{bottom:494.445733pt;}
.y15{bottom:498.883467pt;}
.yc8{bottom:499.171200pt;}
.y7c{bottom:500.408400pt;}
.y60{bottom:500.420400pt;}
.y40{bottom:500.456400pt;}
.y10f{bottom:500.472267pt;}
.y13f{bottom:500.472400pt;}
.yad{bottom:501.246133pt;}
.y15f{bottom:511.779067pt;}
.yc7{bottom:515.173867pt;}
.y14{bottom:518.887467pt;}
.y7b{bottom:520.412400pt;}
.yf7{bottom:520.424400pt;}
.y3f{bottom:520.460400pt;}
.y18a{bottom:520.599733pt;}
.yc6{bottom:531.176533pt;}
.ya8{bottom:532.483200pt;}
.y189{bottom:537.933067pt;}
.y13{bottom:538.891467pt;}
.y129{bottom:540.404400pt;}
.y5f{bottom:540.416400pt;}
.yf6{bottom:540.428400pt;}
.y15e{bottom:540.451067pt;}
.y13e{bottom:540.467067pt;}
.y10e{bottom:540.472267pt;}
.yc5{bottom:547.179200pt;}
.ya7{bottom:548.485867pt;}
.y188{bottom:555.266400pt;}
.y15d{bottom:557.784400pt;}
.y12{bottom:558.895467pt;}
.y128{bottom:560.408400pt;}
.y5e{bottom:560.420400pt;}
.yf5{bottom:560.432400pt;}
.y3e{bottom:560.456400pt;}
.y13d{bottom:560.472400pt;}
.ya6{bottom:564.488533pt;}
.yc4{bottom:569.845867pt;}
.y11{bottom:578.899467pt;}
.y8e{bottom:580.412400pt;}
.y5d{bottom:580.424400pt;}
.yf4{bottom:580.436400pt;}
.y3d{bottom:580.460400pt;}
.yac{bottom:580.479867pt;}
.ya5{bottom:580.491200pt;}
.y187{bottom:583.938400pt;}
.yc3{bottom:585.848533pt;}
.y15c{bottom:586.456400pt;}
.yab{bottom:596.482533pt;}
.ya4{bottom:596.493867pt;}
.y10d{bottom:597.907467pt;}
.y8d{bottom:600.416400pt;}
.y5c{bottom:600.428400pt;}
.y3c{bottom:600.464400pt;}
.y186{bottom:601.271733pt;}
.yc2{bottom:601.851200pt;}
.y15b{bottom:603.789733pt;}
.yaa{bottom:612.485200pt;}
.ya3{bottom:612.496533pt;}
.yc1{bottom:617.853867pt;}
.y185{bottom:618.605067pt;}
.y13c{bottom:620.396400pt;}
.y8c{bottom:620.420400pt;}
.y5b{bottom:620.432400pt;}
.y3b{bottom:620.468400pt;}
.y15a{bottom:621.123067pt;}
.y10c{bottom:628.483200pt;}
.ya9{bottom:628.487867pt;}
.ya2{bottom:628.499200pt;}
.yc0{bottom:633.856533pt;}
.y10{bottom:634.807467pt;}
.y13b{bottom:640.400400pt;}
.y8b{bottom:640.424400pt;}
.y5a{bottom:640.436400pt;}
.y3a{bottom:640.472400pt;}
.y10b{bottom:644.485867pt;}
.y184{bottom:647.277067pt;}
.y159{bottom:649.795067pt;}
.ybf{bottom:649.859200pt;}
.ya1{bottom:651.165867pt;}
.y13a{bottom:660.404400pt;}
.y8a{bottom:660.428400pt;}
.y7a{bottom:660.440400pt;}
.y10a{bottom:660.488533pt;}
.y183{bottom:664.610400pt;}
.y158{bottom:667.128400pt;}
.ya0{bottom:667.168533pt;}
.ybe{bottom:672.531200pt;}
.y109{bottom:676.491200pt;}
.y139{bottom:680.408400pt;}
.y127{bottom:680.420400pt;}
.y59{bottom:680.432400pt;}
.yf3{bottom:680.444400pt;}
.y39{bottom:680.472400pt;}
.y182{bottom:681.943733pt;}
.y9f{bottom:683.171200pt;}
.y157{bottom:684.461733pt;}
.yf{bottom:688.823200pt;}
.y108{bottom:699.157867pt;}
.y9e{bottom:699.173867pt;}
.y138{bottom:700.412400pt;}
.y126{bottom:700.424400pt;}
.y58{bottom:700.436400pt;}
.yf2{bottom:700.448400pt;}
.ye{bottom:703.489867pt;}
.y181{bottom:710.615733pt;}
.y156{bottom:713.133733pt;}
.y107{bottom:715.160533pt;}
.y9d{bottom:715.176533pt;}
.y137{bottom:720.416400pt;}
.y125{bottom:720.428400pt;}
.y57{bottom:720.440400pt;}
.yd{bottom:723.825867pt;}
.y180{bottom:727.949067pt;}
.y155{bottom:730.467067pt;}
.y106{bottom:731.163200pt;}
.y9c{bottom:737.843200pt;}
.y136{bottom:740.420400pt;}
.y38{bottom:740.432400pt;}
.y56{bottom:740.444400pt;}
.y17f{bottom:745.282400pt;}
.y105{bottom:747.165867pt;}
.y154{bottom:747.800400pt;}
.y9b{bottom:753.845867pt;}
.yc{bottom:754.503067pt;}
.y135{bottom:760.424400pt;}
.y124{bottom:760.436400pt;}
.y55{bottom:760.448400pt;}
.y104{bottom:763.168533pt;}
.yb{bottom:769.169733pt;}
.y9a{bottom:769.848533pt;}
.y17e{bottom:773.954400pt;}
.y153{bottom:776.472400pt;}
.y103{bottom:779.171200pt;}
.y37{bottom:780.428400pt;}
.y89{bottom:780.440400pt;}
.y79{bottom:780.452400pt;}
.y99{bottom:785.851200pt;}
.ya{bottom:789.505733pt;}
.y17d{bottom:791.287733pt;}
.y152{bottom:793.805733pt;}
.y102{bottom:795.173867pt;}
.y36{bottom:800.432400pt;}
.y54{bottom:800.444400pt;}
.y78{bottom:800.456400pt;}
.y98{bottom:801.853867pt;}
.y17c{bottom:808.621067pt;}
.y151{bottom:811.139067pt;}
.y101{bottom:811.176533pt;}
.y97{bottom:817.856533pt;}
.y35{bottom:820.436400pt;}
.y53{bottom:820.448400pt;}
.y77{bottom:820.460400pt;}
.y100{bottom:833.843200pt;}
.y96{bottom:833.859200pt;}
.y17b{bottom:837.293067pt;}
.y34{bottom:840.440400pt;}
.y52{bottom:840.452400pt;}
.y76{bottom:840.464400pt;}
.y150{bottom:840.472400pt;}
.y9{bottom:842.857333pt;}
.yff{bottom:849.845867pt;}
.y17a{bottom:854.626400pt;}
.y95{bottom:856.531200pt;}
.y33{bottom:860.444400pt;}
.ybd{bottom:860.456400pt;}
.yf1{bottom:860.468400pt;}
.y8{bottom:862.860000pt;}
.yfe{bottom:865.848533pt;}
.y32{bottom:880.448400pt;}
.y75{bottom:880.460400pt;}
.yf0{bottom:880.472400pt;}
.yfd{bottom:881.851200pt;}
.y179{bottom:883.298400pt;}
.y7{bottom:894.198667pt;}
.yfc{bottom:897.853867pt;}
.y31{bottom:900.452400pt;}
.y74{bottom:900.464400pt;}
.y178{bottom:900.631733pt;}
.yfb{bottom:913.856533pt;}
.y30{bottom:920.456400pt;}
.y73{bottom:920.468400pt;}
.yef{bottom:920.472400pt;}
.y6{bottom:923.532000pt;}
.y177{bottom:929.303733pt;}
.yfa{bottom:929.859200pt;}
.y2f{bottom:940.460400pt;}
.y72{bottom:940.472400pt;}
.y176{bottom:946.637067pt;}
.yf9{bottom:952.531200pt;}
.y5{bottom:952.865333pt;}
.y2e{bottom:960.464400pt;}
.y175{bottom:975.309067pt;}
.y2d{bottom:980.468400pt;}
.y174{bottom:992.642400pt;}
.y2c{bottom:1000.472400pt;}
.y173{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y27{bottom:1051.455733pt;}
.y2b{bottom:1064.023733pt;}
.y26{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.he{height:30.592000pt;}
.h7{height:32.554667pt;}
.hb{height:32.725333pt;}
.hf{height:34.589333pt;}
.h9{height:35.040000pt;}
.h8{height:36.624000pt;}
.ha{height:37.728000pt;}
.h11{height:37.760000pt;}
.h6{height:38.933333pt;}
.hd{height:42.480000pt;}
.h10{height:42.912000pt;}
.hc{height:52.448000pt;}
.h5{height:52.901333pt;}
.h4{height:80.746667pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.xa{left:109.872933pt;}
.x5{left:112.896933pt;}
.x8{left:122.492533pt;}
.x18{left:123.548533pt;}
.x17{left:126.047200pt;}
.x19{left:132.287200pt;}
.x15{left:146.583733pt;}
.x9{left:153.670400pt;}
.xf{left:163.549067pt;}
.x16{left:235.276400pt;}
.xb{left:249.454267pt;}
.x10{left:269.208267pt;}
.xc{left:377.962933pt;}
.xd{left:385.522267pt;}
.xe{left:393.081600pt;}
.x14{left:411.622933pt;}
.x11{left:419.170933pt;}
.x12{left:426.730267pt;}
.x3{left:520.369600pt;}
.x4{left:554.594933pt;}
.x2{left:602.278933pt;}
.x13{left:656.578533pt;}
.x6{left:659.069733pt;}
.x7{left:661.200533pt;}
}




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