
    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_5cf48447c7fee0957b1ab422.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_23b841b2fbffc21da571a842.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e9f7c3689338d34fbc2a586c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102000;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_5a5617fa44181c3f4a60bf8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982000;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_0518a79bd33780dee29f1acb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967000;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_e6a93526d9f3e49fdb159c16.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.098145;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_7d30d827868f2fa6b4c29d41.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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_54384456fcdaf2c7de6d8938.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.102539;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_bf6a7dfcc7cd9b707972bce3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_389c159226da2cfa83c10bc9.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls15{letter-spacing:-6.552000px;}
.ls6{letter-spacing:-5.256000px;}
.ls16{letter-spacing:-3.738000px;}
.ls18{letter-spacing:-3.444000px;}
.lsb{letter-spacing:-3.348000px;}
.lsa{letter-spacing:-3.168000px;}
.ls10{letter-spacing:-3.024000px;}
.ls14{letter-spacing:-2.940000px;}
.lse{letter-spacing:-2.916000px;}
.ls7{letter-spacing:-2.844000px;}
.lsd{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-2.592000px;}
.ls5{letter-spacing:-2.160000px;}
.ls12{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.472230px;}
.ls1{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.314820px;}
.ls11{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000078px;}
.ls4{letter-spacing:0.000234px;}
.lsf{letter-spacing:16.684800px;}
.ls13{letter-spacing:19.602600px;}
.ls2{letter-spacing:198.726000px;}
.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;}
}
.ws1{word-spacing:-63.036000px;}
.wsc{word-spacing:-33.372000px;}
.ws2{word-spacing:-18.540000px;}
.ws16{word-spacing:-16.398000px;}
.ws18{word-spacing:-16.221600px;}
.ws5{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.978000px;}
.ws3{word-spacing:-11.124000px;}
.ws4{word-spacing:-11.088000px;}
.ws24{word-spacing:-10.944000px;}
.ws1f{word-spacing:-10.872000px;}
.ws20{word-spacing:-10.188000px;}
.ws26{word-spacing:-9.534000px;}
.ws10{word-spacing:-8.964000px;}
.ws13{word-spacing:-8.532000px;}
.ws1c{word-spacing:-8.424000px;}
.ws12{word-spacing:-8.280000px;}
.ws1d{word-spacing:-8.208000px;}
.ws1e{word-spacing:-8.100000px;}
.ws15{word-spacing:-7.956000px;}
.wsd{word-spacing:-7.870500px;}
.ws17{word-spacing:-7.776000px;}
.ws14{word-spacing:-7.555680px;}
.ws1b{word-spacing:-7.398270px;}
.ws22{word-spacing:-6.426000px;}
.ws11{word-spacing:-5.868000px;}
.wsf{word-spacing:-1.674000px;}
.ws6{word-spacing:-1.080000px;}
.ws1a{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.216000px;}
.wse{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws25{word-spacing:0.240000px;}
.ws21{word-spacing:168.654000px;}
.ws23{word-spacing:171.048000px;}
.ws8{word-spacing:171.828000px;}
.ws9{word-spacing:181.380000px;}
.ws7{word-spacing:193.158000px;}
._c{margin-left:-1489.974000px;}
._15{margin-left:-1486.512600px;}
._13{margin-left:-1483.413600px;}
._14{margin-left:-10.570200px;}
._5{margin-left:-7.849200px;}
._e{margin-left:-6.485400px;}
._b{margin-left:-5.022000px;}
._6{margin-left:-3.610800px;}
._0{margin-left:-1.972800px;}
._1{width:1.000800px;}
._4{width:2.797200px;}
._2{width:4.466400px;}
._3{width:7.160400px;}
._12{width:16.465200px;}
._f{width:17.986200px;}
._11{width:19.352400px;}
._10{width:22.511400px;}
._d{width:38.664000px;}
._a{width:167.182800px;}
._7{width:169.072800px;}
._9{width:187.325400px;}
._8{width:193.157400px;}
.fc4{color:rgb(112,109,110);}
.fc1{color:rgb(235,0,69);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.482000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:54.000000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y4b{bottom:108.000000px;}
.y7e{bottom:112.500000px;}
.yec{bottom:117.000000px;}
.y4a{bottom:121.500000px;}
.yc3{bottom:126.000000px;}
.y7d{bottom:130.500000px;}
.y49{bottom:135.000000px;}
.y20{bottom:139.264499px;}
.y155{bottom:139.500000px;}
.y14e{bottom:143.999850px;}
.y9d{bottom:144.000000px;}
.y7c{bottom:148.500000px;}
.ya7{bottom:153.000000px;}
.y9c{bottom:157.500000px;}
.y48{bottom:159.000000px;}
.y14d{bottom:161.999850px;}
.yc2{bottom:162.000000px;}
.y129{bottom:166.499850px;}
.y7b{bottom:166.500000px;}
.ydf{bottom:171.000000px;}
.y163{bottom:171.000150px;}
.y47{bottom:172.500000px;}
.ye2{bottom:175.500000px;}
.y14c{bottom:179.999850px;}
.y9b{bottom:180.000000px;}
.y128{bottom:184.499850px;}
.y7a{bottom:184.500000px;}
.yde{bottom:189.000000px;}
.y162{bottom:189.000150px;}
.y9a{bottom:193.500000px;}
.y17{bottom:196.933500px;}
.y14b{bottom:197.999850px;}
.yc1{bottom:198.000000px;}
.y127{bottom:202.499850px;}
.y79{bottom:202.500000px;}
.y99{bottom:207.000000px;}
.y161{bottom:207.000150px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yf2{bottom:211.500000px;}
.y14a{bottom:215.999850px;}
.yc0{bottom:216.000000px;}
.y126{bottom:220.499850px;}
.y46{bottom:220.500000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ya6{bottom:225.000000px;}
.y160{bottom:225.000150px;}
.ye0{bottom:229.500000px;}
.y149{bottom:233.999850px;}
.y45{bottom:234.000000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y125{bottom:238.499850px;}
.y78{bottom:238.500000px;}
.ya5{bottom:243.000000px;}
.y15f{bottom:243.000150px;}
.y44{bottom:247.500000px;}
.y148{bottom:251.999850px;}
.ybf{bottom:252.000000px;}
.y124{bottom:256.499850px;}
.y77{bottom:256.500000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y43{bottom:261.000000px;}
.y15e{bottom:261.000150px;}
.yf1{bottom:265.500000px;}
.y147{bottom:269.999850px;}
.ybe{bottom:270.000000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y123{bottom:274.499850px;}
.y76{bottom:274.500000px;}
.ya4{bottom:279.000000px;}
.y42{bottom:283.500000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y146{bottom:287.999850px;}
.ybd{bottom:288.000000px;}
.y122{bottom:292.499850px;}
.y98{bottom:292.500000px;}
.y15d{bottom:292.500150px;}
.y41{bottom:297.000000px;}
.yeb{bottom:301.500000px;}
.y145{bottom:305.999850px;}
.y75{bottom:306.000000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y121{bottom:310.499850px;}
.y97{bottom:310.500000px;}
.y15c{bottom:310.500150px;}
.ydd{bottom:315.000000px;}
.yea{bottom:319.500000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y144{bottom:323.999850px;}
.y74{bottom:324.000000px;}
.y120{bottom:328.499850px;}
.y96{bottom:328.500000px;}
.ydc{bottom:333.000000px;}
.ye9{bottom:337.500000px;}
.y143{bottom:341.999850px;}
.y73{bottom:342.000000px;}
.y11f{bottom:346.499850px;}
.y95{bottom:346.500000px;}
.ye{bottom:348.133500px;}
.ydb{bottom:351.000000px;}
.ye8{bottom:355.500000px;}
.y142{bottom:359.999850px;}
.y72{bottom:360.000000px;}
.y40{bottom:363.075000px;}
.y94{bottom:364.500000px;}
.yda{bottom:369.000000px;}
.ye1{bottom:373.500000px;}
.y11e{bottom:377.999850px;}
.y71{bottom:378.000000px;}
.y3f{bottom:381.825000px;}
.y93{bottom:382.500000px;}
.yd{bottom:386.785499px;}
.yd9{bottom:387.000000px;}
.ybc{bottom:391.500000px;}
.y3e{bottom:393.825000px;}
.y11d{bottom:395.999850px;}
.y70{bottom:396.000000px;}
.y92{bottom:400.500000px;}
.yd8{bottom:405.000000px;}
.y3d{bottom:405.825000px;}
.yc{bottom:408.044999px;}
.ybb{bottom:409.500000px;}
.y11c{bottom:413.999850px;}
.y6f{bottom:414.000000px;}
.y91{bottom:418.500000px;}
.yd7{bottom:423.000000px;}
.y3c{bottom:424.575000px;}
.yba{bottom:427.500000px;}
.y11b{bottom:431.999850px;}
.y6e{bottom:432.000000px;}
.y90{bottom:436.500000px;}
.yd6{bottom:441.000000px;}
.yb9{bottom:445.500000px;}
.y11a{bottom:449.999850px;}
.y6d{bottom:450.000000px;}
.y8f{bottom:454.500000px;}
.yd5{bottom:459.000000px;}
.y141{bottom:463.499850px;}
.yb8{bottom:463.500000px;}
.y119{bottom:467.999850px;}
.y6c{bottom:468.000000px;}
.yf9{bottom:472.500000px;}
.y8e{bottom:477.000000px;}
.y140{bottom:481.499850px;}
.yb7{bottom:481.500000px;}
.y118{bottom:485.999850px;}
.ya3{bottom:486.000000px;}
.yf8{bottom:490.500000px;}
.yf0{bottom:495.000000px;}
.y13f{bottom:499.499850px;}
.y8d{bottom:499.500000px;}
.y117{bottom:503.999850px;}
.y6b{bottom:504.000000px;}
.yd4{bottom:508.500000px;}
.yef{bottom:513.000000px;}
.y13e{bottom:517.499850px;}
.yb6{bottom:517.500000px;}
.yb{bottom:520.864502px;}
.y116{bottom:521.999850px;}
.ya2{bottom:522.000000px;}
.yd3{bottom:526.500000px;}
.yee{bottom:531.000000px;}
.y13d{bottom:535.499850px;}
.yb5{bottom:535.500000px;}
.ya{bottom:538.864499px;}
.y115{bottom:539.999850px;}
.y8c{bottom:540.000000px;}
.yd2{bottom:544.500000px;}
.ye7{bottom:549.000000px;}
.y13c{bottom:553.499850px;}
.yb4{bottom:553.500000px;}
.y9{bottom:556.864499px;}
.y114{bottom:557.999850px;}
.y8b{bottom:558.000000px;}
.yd1{bottom:562.500000px;}
.ye6{bottom:567.000000px;}
.y13b{bottom:571.499850px;}
.yb3{bottom:571.500000px;}
.y113{bottom:575.999850px;}
.y8a{bottom:576.000000px;}
.yd0{bottom:580.500000px;}
.ye5{bottom:585.000000px;}
.y13a{bottom:589.499850px;}
.ya1{bottom:589.500000px;}
.y112{bottom:593.999850px;}
.y89{bottom:594.000000px;}
.ycf{bottom:598.500000px;}
.ye4{bottom:603.000000px;}
.y139{bottom:607.499850px;}
.y6a{bottom:607.500000px;}
.ye3{bottom:612.000000px;}
.yce{bottom:616.500000px;}
.yb2{bottom:621.000000px;}
.y111{bottom:625.499850px;}
.y69{bottom:625.500000px;}
.y53{bottom:630.000000px;}
.ycd{bottom:634.500000px;}
.y138{bottom:638.999850px;}
.yb1{bottom:639.000000px;}
.y110{bottom:643.499850px;}
.y68{bottom:643.500000px;}
.y8{bottom:645.510000px;}
.yf7{bottom:648.000000px;}
.y154{bottom:652.500000px;}
.y137{bottom:656.999850px;}
.yb0{bottom:657.000000px;}
.y10f{bottom:661.499850px;}
.y52{bottom:661.500000px;}
.ycc{bottom:666.000000px;}
.y7{bottom:666.771000px;}
.y153{bottom:670.500000px;}
.y136{bottom:674.999850px;}
.y25{bottom:675.000000px;}
.y10e{bottom:679.499850px;}
.y67{bottom:679.500000px;}
.ycb{bottom:684.000000px;}
.yf3{bottom:688.500000px;}
.y135{bottom:692.999850px;}
.y51{bottom:693.000000px;}
.y10d{bottom:697.499850px;}
.y66{bottom:697.500000px;}
.yca{bottom:702.000000px;}
.y152{bottom:706.500000px;}
.y134{bottom:710.999850px;}
.yaf{bottom:711.000000px;}
.y10c{bottom:715.499850px;}
.y65{bottom:715.500000px;}
.yc9{bottom:720.000000px;}
.y50{bottom:724.500000px;}
.y6{bottom:726.298500px;}
.y133{bottom:728.999850px;}
.yae{bottom:729.000000px;}
.y10b{bottom:733.499850px;}
.y64{bottom:733.500000px;}
.y24{bottom:738.000000px;}
.y151{bottom:742.500000px;}
.y132{bottom:746.999850px;}
.yad{bottom:747.000000px;}
.y10a{bottom:751.499850px;}
.y63{bottom:751.500000px;}
.y3{bottom:752.599495px;}
.y4f{bottom:756.000000px;}
.y14f{bottom:760.500000px;}
.y131{bottom:764.999850px;}
.yac{bottom:765.000000px;}
.y109{bottom:769.499850px;}
.y62{bottom:769.500000px;}
.yc8{bottom:774.000000px;}
.y36{bottom:777.000000px;}
.yed{bottom:778.500000px;}
.y130{bottom:782.999850px;}
.yab{bottom:783.000000px;}
.y4e{bottom:787.500000px;}
.y35{bottom:789.000000px;}
.ya0{bottom:792.000000px;}
.y23{bottom:796.500000px;}
.y108{bottom:800.999850px;}
.y34{bottom:801.000000px;}
.y61{bottom:805.500000px;}
.y150{bottom:810.000000px;}
.y33{bottom:813.000000px;}
.y9f{bottom:814.500000px;}
.y107{bottom:818.999850px;}
.y4d{bottom:819.000000px;}
.y60{bottom:823.500000px;}
.y32{bottom:825.000000px;}
.yf6{bottom:828.000000px;}
.yc7{bottom:832.500000px;}
.y106{bottom:836.999850px;}
.y31{bottom:837.000000px;}
.y5f{bottom:841.500000px;}
.y156{bottom:846.000000px;}
.y30{bottom:849.000000px;}
.yc6{bottom:850.500000px;}
.y105{bottom:854.999850px;}
.y22{bottom:855.000000px;}
.y5e{bottom:859.500000px;}
.y2f{bottom:861.000000px;}
.y166{bottom:864.000000px;}
.y4c{bottom:868.500000px;}
.y104{bottom:872.999850px;}
.y88{bottom:873.000000px;}
.y5d{bottom:877.500000px;}
.y2{bottom:879.369000px;}
.y165{bottom:882.000000px;}
.y2e{bottom:886.500000px;}
.y103{bottom:890.999850px;}
.y87{bottom:891.000000px;}
.y5c{bottom:895.500000px;}
.y164{bottom:900.000000px;}
.yc5{bottom:904.500000px;}
.y102{bottom:908.999850px;}
.y86{bottom:909.000000px;}
.y5b{bottom:913.500000px;}
.y21{bottom:922.500000px;}
.y101{bottom:926.999850px;}
.y85{bottom:927.000000px;}
.y5a{bottom:931.500000px;}
.yf4{bottom:936.000000px;}
.y12f{bottom:940.499850px;}
.yc4{bottom:940.500000px;}
.y100{bottom:944.999850px;}
.y84{bottom:945.000000px;}
.y59{bottom:949.500000px;}
.y3b{bottom:954.000000px;}
.y12e{bottom:958.499850px;}
.yaa{bottom:958.500000px;}
.y2d{bottom:960.000000px;}
.yff{bottom:962.999850px;}
.y83{bottom:963.000000px;}
.y1{bottom:966.726000px;}
.y58{bottom:967.500000px;}
.y3a{bottom:969.000000px;}
.y2c{bottom:972.000000px;}
.y12d{bottom:976.499850px;}
.ya9{bottom:976.500000px;}
.yfe{bottom:980.999850px;}
.y82{bottom:981.000000px;}
.y2b{bottom:984.000000px;}
.y57{bottom:985.500000px;}
.yf5{bottom:990.000000px;}
.y12c{bottom:994.499850px;}
.ya8{bottom:994.500000px;}
.y2a{bottom:996.000000px;}
.yfd{bottom:998.999850px;}
.y39{bottom:999.000000px;}
.y15b{bottom:999.000150px;}
.y56{bottom:1003.500000px;}
.y29{bottom:1008.000000px;}
.y12b{bottom:1012.499850px;}
.y9e{bottom:1012.500000px;}
.y38{bottom:1014.000000px;}
.yfc{bottom:1016.999850px;}
.y15a{bottom:1017.000150px;}
.y28{bottom:1020.000000px;}
.y37{bottom:1029.000000px;}
.y12a{bottom:1030.499850px;}
.y81{bottom:1030.500000px;}
.y27{bottom:1032.000000px;}
.y159{bottom:1035.000150px;}
.y55{bottom:1039.500000px;}
.yfb{bottom:1048.499850px;}
.y80{bottom:1048.500000px;}
.y158{bottom:1053.000150px;}
.y26{bottom:1057.500000px;}
.yfa{bottom:1066.499850px;}
.y7f{bottom:1066.500000px;}
.y157{bottom:1071.000150px;}
.hd{height:30.168000px;}
.h7{height:32.130000px;}
.h14{height:35.568000px;}
.h13{height:36.432000px;}
.he{height:36.878906px;}
.hf{height:41.526000px;}
.h11{height:42.191658px;}
.h10{height:43.025391px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hc{height:61.464844px;}
.h9{height:73.757812px;}
.h5{height:78.030000px;}
.h12{height:86.050781px;}
.hb{height:110.636719px;}
.h4{height:119.055004px;}
.ha{height:208.980469px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:73.440000px;}
.x5{left:90.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x16{left:128.580000px;}
.xa{left:129.600000px;}
.xe{left:147.600000px;}
.x17{left:155.580000px;}
.x14{left:156.600000px;}
.xf{left:158.100000px;}
.x6{left:166.500000px;}
.x4{left:203.484001px;}
.x8{left:255.375000px;}
.x3{left:454.959000px;}
.x11{left:465.750000px;}
.x18{left:466.980000px;}
.xc{left:468.000000px;}
.x12{left:483.750000px;}
.xd{left:486.000000px;}
.x19{left:493.980000px;}
.x15{left:495.000000px;}
.x10{left:496.500000px;}
.x7{left:511.062450px;}
.x13{left:831.076950px;}
.xb{left:835.919550px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls15{letter-spacing:-5.824000pt;}
.ls6{letter-spacing:-4.672000pt;}
.ls16{letter-spacing:-3.322667pt;}
.ls18{letter-spacing:-3.061333pt;}
.lsb{letter-spacing:-2.976000pt;}
.lsa{letter-spacing:-2.816000pt;}
.ls10{letter-spacing:-2.688000pt;}
.ls14{letter-spacing:-2.613333pt;}
.lse{letter-spacing:-2.592000pt;}
.ls7{letter-spacing:-2.528000pt;}
.lsd{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-2.304000pt;}
.ls5{letter-spacing:-1.920000pt;}
.ls12{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.419760pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.279840pt;}
.ls11{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000069pt;}
.ls4{letter-spacing:0.000208pt;}
.lsf{letter-spacing:14.830933pt;}
.ls13{letter-spacing:17.424533pt;}
.ls2{letter-spacing:176.645333pt;}
.ws1{word-spacing:-56.032000pt;}
.wsc{word-spacing:-29.664000pt;}
.ws2{word-spacing:-16.480000pt;}
.ws16{word-spacing:-14.576000pt;}
.ws18{word-spacing:-14.419200pt;}
.ws5{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.536000pt;}
.ws3{word-spacing:-9.888000pt;}
.ws4{word-spacing:-9.856000pt;}
.ws24{word-spacing:-9.728000pt;}
.ws1f{word-spacing:-9.664000pt;}
.ws20{word-spacing:-9.056000pt;}
.ws26{word-spacing:-8.474667pt;}
.ws10{word-spacing:-7.968000pt;}
.ws13{word-spacing:-7.584000pt;}
.ws1c{word-spacing:-7.488000pt;}
.ws12{word-spacing:-7.360000pt;}
.ws1d{word-spacing:-7.296000pt;}
.ws1e{word-spacing:-7.200000pt;}
.ws15{word-spacing:-7.072000pt;}
.wsd{word-spacing:-6.996000pt;}
.ws17{word-spacing:-6.912000pt;}
.ws14{word-spacing:-6.716160pt;}
.ws1b{word-spacing:-6.576240pt;}
.ws22{word-spacing:-5.712000pt;}
.ws11{word-spacing:-5.216000pt;}
.wsf{word-spacing:-1.488000pt;}
.ws6{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws25{word-spacing:0.213333pt;}
.ws21{word-spacing:149.914667pt;}
.ws23{word-spacing:152.042667pt;}
.ws8{word-spacing:152.736000pt;}
.ws9{word-spacing:161.226667pt;}
.ws7{word-spacing:171.696000pt;}
._c{margin-left:-1324.421333pt;}
._15{margin-left:-1321.344533pt;}
._13{margin-left:-1318.589867pt;}
._14{margin-left:-9.395733pt;}
._5{margin-left:-6.977067pt;}
._e{margin-left:-5.764800pt;}
._b{margin-left:-4.464000pt;}
._6{margin-left:-3.209600pt;}
._0{margin-left:-1.753600pt;}
._1{width:0.889600pt;}
._4{width:2.486400pt;}
._2{width:3.970133pt;}
._3{width:6.364800pt;}
._12{width:14.635733pt;}
._f{width:15.987733pt;}
._11{width:17.202133pt;}
._10{width:20.010133pt;}
._d{width:34.368000pt;}
._a{width:148.606933pt;}
._7{width:150.286933pt;}
._9{width:166.511467pt;}
._8{width:171.695467pt;}
.fs9{font-size:27.984000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:48.000000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y4b{bottom:96.000000pt;}
.y7e{bottom:100.000000pt;}
.yec{bottom:104.000000pt;}
.y4a{bottom:108.000000pt;}
.yc3{bottom:112.000000pt;}
.y7d{bottom:116.000000pt;}
.y49{bottom:120.000000pt;}
.y20{bottom:123.790666pt;}
.y155{bottom:124.000000pt;}
.y14e{bottom:127.999867pt;}
.y9d{bottom:128.000000pt;}
.y7c{bottom:132.000000pt;}
.ya7{bottom:136.000000pt;}
.y9c{bottom:140.000000pt;}
.y48{bottom:141.333333pt;}
.y14d{bottom:143.999867pt;}
.yc2{bottom:144.000000pt;}
.y129{bottom:147.999867pt;}
.y7b{bottom:148.000000pt;}
.ydf{bottom:152.000000pt;}
.y163{bottom:152.000133pt;}
.y47{bottom:153.333333pt;}
.ye2{bottom:156.000000pt;}
.y14c{bottom:159.999867pt;}
.y9b{bottom:160.000000pt;}
.y128{bottom:163.999867pt;}
.y7a{bottom:164.000000pt;}
.yde{bottom:168.000000pt;}
.y162{bottom:168.000133pt;}
.y9a{bottom:172.000000pt;}
.y17{bottom:175.052000pt;}
.y14b{bottom:175.999867pt;}
.yc1{bottom:176.000000pt;}
.y127{bottom:179.999867pt;}
.y79{bottom:180.000000pt;}
.y99{bottom:184.000000pt;}
.y161{bottom:184.000133pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yf2{bottom:188.000000pt;}
.y14a{bottom:191.999867pt;}
.yc0{bottom:192.000000pt;}
.y126{bottom:195.999867pt;}
.y46{bottom:196.000000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ya6{bottom:200.000000pt;}
.y160{bottom:200.000133pt;}
.ye0{bottom:204.000000pt;}
.y149{bottom:207.999867pt;}
.y45{bottom:208.000000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y125{bottom:211.999867pt;}
.y78{bottom:212.000000pt;}
.ya5{bottom:216.000000pt;}
.y15f{bottom:216.000133pt;}
.y44{bottom:220.000000pt;}
.y148{bottom:223.999867pt;}
.ybf{bottom:224.000000pt;}
.y124{bottom:227.999867pt;}
.y77{bottom:228.000000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y43{bottom:232.000000pt;}
.y15e{bottom:232.000133pt;}
.yf1{bottom:236.000000pt;}
.y147{bottom:239.999867pt;}
.ybe{bottom:240.000000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y123{bottom:243.999867pt;}
.y76{bottom:244.000000pt;}
.ya4{bottom:248.000000pt;}
.y42{bottom:252.000000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y146{bottom:255.999867pt;}
.ybd{bottom:256.000000pt;}
.y122{bottom:259.999867pt;}
.y98{bottom:260.000000pt;}
.y15d{bottom:260.000133pt;}
.y41{bottom:264.000000pt;}
.yeb{bottom:268.000000pt;}
.y145{bottom:271.999867pt;}
.y75{bottom:272.000000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y121{bottom:275.999867pt;}
.y97{bottom:276.000000pt;}
.y15c{bottom:276.000133pt;}
.ydd{bottom:280.000000pt;}
.yea{bottom:284.000000pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y144{bottom:287.999867pt;}
.y74{bottom:288.000000pt;}
.y120{bottom:291.999867pt;}
.y96{bottom:292.000000pt;}
.ydc{bottom:296.000000pt;}
.ye9{bottom:300.000000pt;}
.y143{bottom:303.999867pt;}
.y73{bottom:304.000000pt;}
.y11f{bottom:307.999867pt;}
.y95{bottom:308.000000pt;}
.ye{bottom:309.452000pt;}
.ydb{bottom:312.000000pt;}
.ye8{bottom:316.000000pt;}
.y142{bottom:319.999867pt;}
.y72{bottom:320.000000pt;}
.y40{bottom:322.733333pt;}
.y94{bottom:324.000000pt;}
.yda{bottom:328.000000pt;}
.ye1{bottom:332.000000pt;}
.y11e{bottom:335.999867pt;}
.y71{bottom:336.000000pt;}
.y3f{bottom:339.400000pt;}
.y93{bottom:340.000000pt;}
.yd{bottom:343.809333pt;}
.yd9{bottom:344.000000pt;}
.ybc{bottom:348.000000pt;}
.y3e{bottom:350.066667pt;}
.y11d{bottom:351.999867pt;}
.y70{bottom:352.000000pt;}
.y92{bottom:356.000000pt;}
.yd8{bottom:360.000000pt;}
.y3d{bottom:360.733333pt;}
.yc{bottom:362.706666pt;}
.ybb{bottom:364.000000pt;}
.y11c{bottom:367.999867pt;}
.y6f{bottom:368.000000pt;}
.y91{bottom:372.000000pt;}
.yd7{bottom:376.000000pt;}
.y3c{bottom:377.400000pt;}
.yba{bottom:380.000000pt;}
.y11b{bottom:383.999867pt;}
.y6e{bottom:384.000000pt;}
.y90{bottom:388.000000pt;}
.yd6{bottom:392.000000pt;}
.yb9{bottom:396.000000pt;}
.y11a{bottom:399.999867pt;}
.y6d{bottom:400.000000pt;}
.y8f{bottom:404.000000pt;}
.yd5{bottom:408.000000pt;}
.y141{bottom:411.999867pt;}
.yb8{bottom:412.000000pt;}
.y119{bottom:415.999867pt;}
.y6c{bottom:416.000000pt;}
.yf9{bottom:420.000000pt;}
.y8e{bottom:424.000000pt;}
.y140{bottom:427.999867pt;}
.yb7{bottom:428.000000pt;}
.y118{bottom:431.999867pt;}
.ya3{bottom:432.000000pt;}
.yf8{bottom:436.000000pt;}
.yf0{bottom:440.000000pt;}
.y13f{bottom:443.999867pt;}
.y8d{bottom:444.000000pt;}
.y117{bottom:447.999867pt;}
.y6b{bottom:448.000000pt;}
.yd4{bottom:452.000000pt;}
.yef{bottom:456.000000pt;}
.y13e{bottom:459.999867pt;}
.yb6{bottom:460.000000pt;}
.yb{bottom:462.990669pt;}
.y116{bottom:463.999867pt;}
.ya2{bottom:464.000000pt;}
.yd3{bottom:468.000000pt;}
.yee{bottom:472.000000pt;}
.y13d{bottom:475.999867pt;}
.yb5{bottom:476.000000pt;}
.ya{bottom:478.990666pt;}
.y115{bottom:479.999867pt;}
.y8c{bottom:480.000000pt;}
.yd2{bottom:484.000000pt;}
.ye7{bottom:488.000000pt;}
.y13c{bottom:491.999867pt;}
.yb4{bottom:492.000000pt;}
.y9{bottom:494.990666pt;}
.y114{bottom:495.999867pt;}
.y8b{bottom:496.000000pt;}
.yd1{bottom:500.000000pt;}
.ye6{bottom:504.000000pt;}
.y13b{bottom:507.999867pt;}
.yb3{bottom:508.000000pt;}
.y113{bottom:511.999867pt;}
.y8a{bottom:512.000000pt;}
.yd0{bottom:516.000000pt;}
.ye5{bottom:520.000000pt;}
.y13a{bottom:523.999867pt;}
.ya1{bottom:524.000000pt;}
.y112{bottom:527.999867pt;}
.y89{bottom:528.000000pt;}
.ycf{bottom:532.000000pt;}
.ye4{bottom:536.000000pt;}
.y139{bottom:539.999867pt;}
.y6a{bottom:540.000000pt;}
.ye3{bottom:544.000000pt;}
.yce{bottom:548.000000pt;}
.yb2{bottom:552.000000pt;}
.y111{bottom:555.999867pt;}
.y69{bottom:556.000000pt;}
.y53{bottom:560.000000pt;}
.ycd{bottom:564.000000pt;}
.y138{bottom:567.999867pt;}
.yb1{bottom:568.000000pt;}
.y110{bottom:571.999867pt;}
.y68{bottom:572.000000pt;}
.y8{bottom:573.786667pt;}
.yf7{bottom:576.000000pt;}
.y154{bottom:580.000000pt;}
.y137{bottom:583.999867pt;}
.yb0{bottom:584.000000pt;}
.y10f{bottom:587.999867pt;}
.y52{bottom:588.000000pt;}
.ycc{bottom:592.000000pt;}
.y7{bottom:592.685334pt;}
.y153{bottom:596.000000pt;}
.y136{bottom:599.999867pt;}
.y25{bottom:600.000000pt;}
.y10e{bottom:603.999867pt;}
.y67{bottom:604.000000pt;}
.ycb{bottom:608.000000pt;}
.yf3{bottom:612.000000pt;}
.y135{bottom:615.999867pt;}
.y51{bottom:616.000000pt;}
.y10d{bottom:619.999867pt;}
.y66{bottom:620.000000pt;}
.yca{bottom:624.000000pt;}
.y152{bottom:628.000000pt;}
.y134{bottom:631.999867pt;}
.yaf{bottom:632.000000pt;}
.y10c{bottom:635.999867pt;}
.y65{bottom:636.000000pt;}
.yc9{bottom:640.000000pt;}
.y50{bottom:644.000000pt;}
.y6{bottom:645.598667pt;}
.y133{bottom:647.999867pt;}
.yae{bottom:648.000000pt;}
.y10b{bottom:651.999867pt;}
.y64{bottom:652.000000pt;}
.y24{bottom:656.000000pt;}
.y151{bottom:660.000000pt;}
.y132{bottom:663.999867pt;}
.yad{bottom:664.000000pt;}
.y10a{bottom:667.999867pt;}
.y63{bottom:668.000000pt;}
.y3{bottom:668.977329pt;}
.y4f{bottom:672.000000pt;}
.y14f{bottom:676.000000pt;}
.y131{bottom:679.999867pt;}
.yac{bottom:680.000000pt;}
.y109{bottom:683.999867pt;}
.y62{bottom:684.000000pt;}
.yc8{bottom:688.000000pt;}
.y36{bottom:690.666667pt;}
.yed{bottom:692.000000pt;}
.y130{bottom:695.999867pt;}
.yab{bottom:696.000000pt;}
.y4e{bottom:700.000000pt;}
.y35{bottom:701.333333pt;}
.ya0{bottom:704.000000pt;}
.y23{bottom:708.000000pt;}
.y108{bottom:711.999867pt;}
.y34{bottom:712.000000pt;}
.y61{bottom:716.000000pt;}
.y150{bottom:720.000000pt;}
.y33{bottom:722.666667pt;}
.y9f{bottom:724.000000pt;}
.y107{bottom:727.999867pt;}
.y4d{bottom:728.000000pt;}
.y60{bottom:732.000000pt;}
.y32{bottom:733.333333pt;}
.yf6{bottom:736.000000pt;}
.yc7{bottom:740.000000pt;}
.y106{bottom:743.999867pt;}
.y31{bottom:744.000000pt;}
.y5f{bottom:748.000000pt;}
.y156{bottom:752.000000pt;}
.y30{bottom:754.666667pt;}
.yc6{bottom:756.000000pt;}
.y105{bottom:759.999867pt;}
.y22{bottom:760.000000pt;}
.y5e{bottom:764.000000pt;}
.y2f{bottom:765.333333pt;}
.y166{bottom:768.000000pt;}
.y4c{bottom:772.000000pt;}
.y104{bottom:775.999867pt;}
.y88{bottom:776.000000pt;}
.y5d{bottom:780.000000pt;}
.y2{bottom:781.661334pt;}
.y165{bottom:784.000000pt;}
.y2e{bottom:788.000000pt;}
.y103{bottom:791.999867pt;}
.y87{bottom:792.000000pt;}
.y5c{bottom:796.000000pt;}
.y164{bottom:800.000000pt;}
.yc5{bottom:804.000000pt;}
.y102{bottom:807.999867pt;}
.y86{bottom:808.000000pt;}
.y5b{bottom:812.000000pt;}
.y21{bottom:820.000000pt;}
.y101{bottom:823.999867pt;}
.y85{bottom:824.000000pt;}
.y5a{bottom:828.000000pt;}
.yf4{bottom:832.000000pt;}
.y12f{bottom:835.999867pt;}
.yc4{bottom:836.000000pt;}
.y100{bottom:839.999867pt;}
.y84{bottom:840.000000pt;}
.y59{bottom:844.000000pt;}
.y3b{bottom:848.000000pt;}
.y12e{bottom:851.999867pt;}
.yaa{bottom:852.000000pt;}
.y2d{bottom:853.333333pt;}
.yff{bottom:855.999867pt;}
.y83{bottom:856.000000pt;}
.y1{bottom:859.312000pt;}
.y58{bottom:860.000000pt;}
.y3a{bottom:861.333333pt;}
.y2c{bottom:864.000000pt;}
.y12d{bottom:867.999867pt;}
.ya9{bottom:868.000000pt;}
.yfe{bottom:871.999867pt;}
.y82{bottom:872.000000pt;}
.y2b{bottom:874.666667pt;}
.y57{bottom:876.000000pt;}
.yf5{bottom:880.000000pt;}
.y12c{bottom:883.999867pt;}
.ya8{bottom:884.000000pt;}
.y2a{bottom:885.333333pt;}
.yfd{bottom:887.999867pt;}
.y39{bottom:888.000000pt;}
.y15b{bottom:888.000133pt;}
.y56{bottom:892.000000pt;}
.y29{bottom:896.000000pt;}
.y12b{bottom:899.999867pt;}
.y9e{bottom:900.000000pt;}
.y38{bottom:901.333333pt;}
.yfc{bottom:903.999867pt;}
.y15a{bottom:904.000133pt;}
.y28{bottom:906.666667pt;}
.y37{bottom:914.666667pt;}
.y12a{bottom:915.999867pt;}
.y81{bottom:916.000000pt;}
.y27{bottom:917.333333pt;}
.y159{bottom:920.000133pt;}
.y55{bottom:924.000000pt;}
.yfb{bottom:931.999867pt;}
.y80{bottom:932.000000pt;}
.y158{bottom:936.000133pt;}
.y26{bottom:940.000000pt;}
.yfa{bottom:947.999867pt;}
.y7f{bottom:948.000000pt;}
.y157{bottom:952.000133pt;}
.hd{height:26.816000pt;}
.h7{height:28.560000pt;}
.h14{height:31.616000pt;}
.h13{height:32.384000pt;}
.he{height:32.781250pt;}
.hf{height:36.912000pt;}
.h11{height:37.503696pt;}
.h10{height:38.244792pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hc{height:54.635417pt;}
.h9{height:65.562500pt;}
.h5{height:69.360000pt;}
.h12{height:76.489583pt;}
.hb{height:98.343750pt;}
.h4{height:105.826671pt;}
.ha{height:185.760417pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.280000pt;}
.x5{left:80.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x16{left:114.293333pt;}
.xa{left:115.200000pt;}
.xe{left:131.200000pt;}
.x17{left:138.293333pt;}
.x14{left:139.200000pt;}
.xf{left:140.533333pt;}
.x6{left:148.000000pt;}
.x4{left:180.874667pt;}
.x8{left:227.000000pt;}
.x3{left:404.408000pt;}
.x11{left:414.000000pt;}
.x18{left:415.093333pt;}
.xc{left:416.000000pt;}
.x12{left:430.000000pt;}
.xd{left:432.000000pt;}
.x19{left:439.093333pt;}
.x15{left:440.000000pt;}
.x10{left:441.333333pt;}
.x7{left:454.277733pt;}
.x13{left:738.735067pt;}
.xb{left:743.039600pt;}
}




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