
    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_f887cf0d32acca05e6e88366.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ecb07e1c8d19f318596a2c25.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_09e48f87ca5c7079aac150e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_a38be1cfc0f6e26d24f0ac14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_bfde5da28b5eb71128f2b5ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_15f50310285bbf072aa28e9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_7e1c8d594810e2f8ffa94dc1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f3701f1851eb6bb868fe6ee2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_f18371f7e84f25063127ab19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_86510a6affbc7c7c1c8e6561.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734375;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010553px;}
.lsd{letter-spacing:0.010620px;}
.ls8{letter-spacing:0.010641px;}
.lsb{letter-spacing:0.019560px;}
.ls10{letter-spacing:0.021238px;}
.lsf{letter-spacing:0.021240px;}
.lse{letter-spacing:0.021282px;}
.ls5{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.149765px;}
.ls1{letter-spacing:0.158826px;}
.ls9{letter-spacing:0.471192px;}
.ls2{letter-spacing:23.957270px;}
.ls3{letter-spacing:24.684350px;}
.lsc{letter-spacing:54.908378px;}
.lsa{letter-spacing:65.714374px;}
.ls0{letter-spacing:1753.686716px;}
.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;}
}
.ws3{word-spacing:-32.399987px;}
.wsa{word-spacing:-18.021275px;}
.ws8{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.613273px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws4{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.505755px;}
.ws9{word-spacing:-12.531187px;}
.ws7{word-spacing:-12.059995px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-9.693568px;}
._1a{margin-left:-8.635676px;}
._1b{margin-left:-7.469111px;}
._14{margin-left:-6.434012px;}
._8{margin-left:-4.541459px;}
._b{margin-left:-3.070507px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._e{width:2.401066px;}
._5{width:3.496263px;}
._4{width:4.725004px;}
._3{width:6.411142px;}
._2{width:7.530325px;}
._9{width:8.831689px;}
._f{width:10.142048px;}
._7{width:11.819710px;}
._6{width:13.794332px;}
._17{width:15.182350px;}
._a{width:16.271593px;}
._1d{width:19.920588px;}
._19{width:21.347075px;}
._d{width:23.535379px;}
._18{width:24.626325px;}
._c{width:25.711029px;}
._1c{width:26.910414px;}
._23{width:28.957905px;}
._15{width:32.462488px;}
._16{width:33.478980px;}
._10{width:38.310680px;}
._11{width:39.552991px;}
._22{width:47.646452px;}
._20{width:49.266421px;}
._21{width:50.487215px;}
._13{width:56.010014px;}
._12{width:57.082059px;}
._1f{width:131.863941px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(21,96,130);}
.fc6{color:rgb(83,129,53);}
.fca{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fce{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-9.539991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y45{bottom:4.498953px;}
.y3f{bottom:4.498983px;}
.y16{bottom:4.499070px;}
.y24{bottom:4.499084px;}
.yb{bottom:4.500038px;}
.yc{bottom:33.240287px;}
.ya{bottom:51.060240px;}
.y8{bottom:55.560278px;}
.y9{bottom:57.000277px;}
.y181{bottom:128.459949px;}
.y8e{bottom:133.139947px;}
.y138{bottom:134.399946px;}
.y13a{bottom:134.400246px;}
.y69{bottom:139.079944px;}
.y121{bottom:141.239944px;}
.y139{bottom:141.240244px;}
.y3d{bottom:141.599943px;}
.ya2{bottom:141.779943px;}
.yc4{bottom:147.179941px;}
.y180{bottom:150.779940px;}
.yee{bottom:153.659939px;}
.y137{bottom:155.099938px;}
.y8d{bottom:155.459938px;}
.y107{bottom:155.639938px;}
.y68{bottom:159.779936px;}
.yed{bottom:160.499936px;}
.y3c{bottom:162.299935px;}
.y120{bottom:163.559935px;}
.ya1{bottom:164.099934px;}
.y162{bottom:167.159933px;}
.yc3{bottom:169.499932px;}
.y136{bottom:175.799930px;}
.yec{bottom:175.979930px;}
.y8c{bottom:177.779929px;}
.y106{bottom:177.959929px;}
.y67{bottom:180.479928px;}
.y3b{bottom:182.999927px;}
.y17f{bottom:185.159926px;}
.y11f{bottom:185.879926px;}
.ya0{bottom:186.419925px;}
.y161{bottom:189.659924px;}
.yc2{bottom:191.819923px;}
.y8b{bottom:200.099920px;}
.y104{bottom:200.279920px;}
.y66{bottom:201.179920px;}
.y135{bottom:201.539919px;}
.y3a{bottom:203.699919px;}
.y105{bottom:207.119917px;}
.y17e{bottom:207.479917px;}
.y11e{bottom:208.199917px;}
.y9f{bottom:208.739917px;}
.yeb{bottom:210.359916px;}
.yc1{bottom:214.139914px;}
.y65{bottom:221.879911px;}
.y8a{bottom:222.419911px;}
.y102{bottom:222.779911px;}
.y160{bottom:223.859910px;}
.y39{bottom:224.399910px;}
.y103{bottom:229.619908px;}
.y17d{bottom:229.799908px;}
.y11d{bottom:230.519908px;}
.y9e{bottom:231.059908px;}
.yea{bottom:232.679907px;}
.ybf{bottom:236.459905px;}
.yc0{bottom:243.299903px;}
.y89{bottom:244.739902px;}
.y37{bottom:245.099902px;}
.y15f{bottom:246.179902px;}
.y38{bottom:251.939899px;}
.y17c{bottom:252.119899px;}
.y11c{bottom:252.839899px;}
.y9d{bottom:253.379899px;}
.ye9{bottom:254.999898px;}
.y64{bottom:256.259897px;}
.ybe{bottom:258.779896px;}
.y36{bottom:265.799894px;}
.y87{bottom:267.059893px;}
.y101{bottom:267.419893px;}
.y88{bottom:273.899890px;}
.y11b{bottom:275.159890px;}
.ye8{bottom:277.319889px;}
.y15e{bottom:281.099888px;}
.ybd{bottom:281.279887px;}
.y63{bottom:286.319885px;}
.y17b{bottom:286.499885px;}
.y9c{bottom:287.759885px;}
.y86{bottom:289.379884px;}
.y100{bottom:289.739884px;}
.y11a{bottom:296.039882px;}
.y119{bottom:297.479881px;}
.y35{bottom:298.559881px;}
.ye7{bottom:299.639880px;}
.ybc{bottom:303.599879px;}
.y17a{bottom:308.819876px;}
.y85{bottom:311.699875px;}
.y15d{bottom:315.479874px;}
.y9b{bottom:317.819873px;}
.y118{bottom:319.799872px;}
.ye6{bottom:321.959871px;}
.yff{bottom:324.119870px;}
.y179{bottom:331.139868px;}
.y34{bottom:333.299867px;}
.y84{bottom:334.199866px;}
.ybb{bottom:337.799865px;}
.y117{bottom:342.119863px;}
.ye4{bottom:344.279862px;}
.yfe{bottom:346.439861px;}
.y15c{bottom:349.859860px;}
.ye5{bottom:351.119860px;}
.y178{bottom:353.459859px;}
.yba{bottom:360.119856px;}
.y116{bottom:364.619854px;}
.y33{bottom:367.139853px;}
.y82{bottom:368.399853px;}
.yfd{bottom:368.759852px;}
.y83{bottom:375.239850px;}
.ye3{bottom:377.579849px;}
.y15b{bottom:384.059846px;}
.y177{bottom:387.839845px;}
.yb9{bottom:390.179844px;}
.yfc{bottom:391.079844px;}
.ye2{bottom:395.579842px;}
.y81{bottom:398.459841px;}
.y22{bottom:398.819840px;}
.y115{bottom:405.659838px;}
.y15a{bottom:406.559837px;}
.y176{bottom:410.159836px;}
.yfb{bottom:413.399835px;}
.y159{bottom:428.879828px;}
.y114{bottom:429.059828px;}
.ye1{bottom:429.959828px;}
.y175{bottom:432.479827px;}
.yfa{bottom:434.099826px;}
.y4a{bottom:442.919823px;}
.y158{bottom:451.199820px;}
.ye0{bottom:452.279819px;}
.yf9{bottom:454.799818px;}
.y49{bottom:461.459815px;}
.y174{bottom:466.859813px;}
.y157{bottom:473.519811px;}
.y48{bottom:480.179808px;}
.ydf{bottom:486.659805px;}
.yf8{bottom:489.179804px;}
.y156{bottom:495.839802px;}
.y47{bottom:498.719801px;}
.y173{bottom:511.499795px;}
.y46{bottom:518.159793px;}
.yf7{bottom:519.239792px;}
.ydd{bottom:521.039792px;}
.yde{bottom:527.879789px;}
.y21{bottom:529.499788px;}
.y155{bottom:540.479784px;}
.y172{bottom:545.879782px;}
.ydc{bottom:555.239778px;}
.y32{bottom:555.419778px;}
.y134{bottom:556.499777px;}
.y154{bottom:562.799775px;}
.y171{bottom:568.199773px;}
.y31{bottom:572.699771px;}
.y132{bottom:577.199769px;}
.y133{bottom:584.039766px;}
.y153{bottom:585.119766px;}
.ydb{bottom:589.619764px;}
.y30{bottom:589.979764px;}
.y170{bottom:590.519764px;}
.y131{bottom:597.899761px;}
.y152{bottom:607.439757px;}
.yda{bottom:611.939755px;}
.y16f{bottom:614.279754px;}
.y130{bottom:618.599753px;}
.y2f{bottom:619.139752px;}
.y20{bottom:620.579752px;}
.y62{bottom:623.999750px;}
.y9a{bottom:626.339749px;}
.y151{bottom:629.759748px;}
.yd9{bottom:632.819747px;}
.yd8{bottom:634.259746px;}
.y2e{bottom:636.419745px;}
.y16e{bottom:638.039745px;}
.y12f{bottom:639.299744px;}
.y61{bottom:644.699742px;}
.y99{bottom:645.599742px;}
.y98{bottom:647.039741px;}
.y150{bottom:650.459740px;}
.y1f{bottom:650.639740px;}
.y2d{bottom:653.699739px;}
.y12e{bottom:659.999736px;}
.y60{bottom:665.399734px;}
.y1e{bottom:667.199733px;}
.y97{bottom:667.739733px;}
.yd7{bottom:668.639733px;}
.y80{bottom:668.819732px;}
.y2c{bottom:670.979732px;}
.y14f{bottom:671.159732px;}
.y16d{bottom:672.419731px;}
.y12d{bottom:680.699728px;}
.y1d{bottom:683.759726px;}
.y5f{bottom:686.099726px;}
.y2b{bottom:688.079725px;}
.y96{bottom:688.439725px;}
.y7f{bottom:689.519724px;}
.y16c{bottom:694.739722px;}
.yb8{bottom:696.539721px;}
.y1c{bottom:699.059720px;}
.y12c{bottom:701.399719px;}
.yd6{bottom:703.019719px;}
.y2a{bottom:705.359718px;}
.y14e{bottom:705.539718px;}
.y5e{bottom:706.799717px;}
.y95{bottom:709.139716px;}
.y7e{bottom:710.219716px;}
.yb7{bottom:717.239713px;}
.y12b{bottom:722.099711px;}
.y29{bottom:722.639711px;}
.yd5{bottom:725.339710px;}
.y1b{bottom:727.499709px;}
.y14d{bottom:727.859709px;}
.y16b{bottom:729.119708px;}
.y94{bottom:729.839708px;}
.y7d{bottom:730.919708px;}
.yb6{bottom:737.939705px;}
.y28{bottom:739.919704px;}
.y12a{bottom:742.799703px;}
.yd4{bottom:747.659701px;}
.y5d{bottom:748.199701px;}
.y14c{bottom:750.179700px;}
.y93{bottom:750.539700px;}
.y16a{bottom:751.439699px;}
.y7c{bottom:751.619699px;}
.y1a{bottom:756.299697px;}
.y27{bottom:757.199697px;}
.yb5{bottom:758.639697px;}
.y129{bottom:763.499695px;}
.y5c{bottom:768.899692px;}
.yd3{bottom:769.979692px;}
.y7b{bottom:772.319691px;}
.y14a{bottom:772.679691px;}
.y19{bottom:773.219691px;}
.y26{bottom:774.299690px;}
.yb4{bottom:779.339688px;}
.y14b{bottom:779.519688px;}
.y128{bottom:784.199686px;}
.y92{bottom:784.919686px;}
.y23{bottom:785.460600px;}
.y169{bottom:785.819686px;}
.y5b{bottom:789.599684px;}
.y25{bottom:791.579683px;}
.yd2{bottom:792.299683px;}
.y18{bottom:792.659683px;}
.y7a{bottom:793.019683px;}
.y149{bottom:794.999682px;}
.yb3{bottom:800.039680px;}
.y127{bottom:804.899678px;}
.y5a{bottom:810.299676px;}
.y78{bottom:813.719675px;}
.yd1{bottom:814.619674px;}
.y91{bottom:814.799674px;}
.y168{bottom:820.019672px;}
.y79{bottom:820.559672px;}
.yb2{bottom:820.739672px;}
.y15{bottom:821.640600px;}
.y126{bottom:825.599670px;}
.y17{bottom:827.399669px;}
.y147{bottom:829.199668px;}
.y59{bottom:830.999668px;}
.y77{bottom:832.979667px;}
.y76{bottom:834.419666px;}
.y148{bottom:836.039666px;}
.yb1{bottom:841.439663px;}
.y167{bottom:842.339663px;}
.y125{bottom:846.299661px;}
.yd0{bottom:848.999660px;}
.y146{bottom:851.519659px;}
.y58{bottom:851.699659px;}
.y113{bottom:854.579658px;}
.y75{bottom:855.119658px;}
.y112{bottom:856.019658px;}
.y145{bottom:857.459657px;}
.yb0{bottom:862.139655px;}
.y14{bottom:863.759654px;}
.y124{bottom:866.999653px;}
.ycf{bottom:871.319651px;}
.y56{bottom:872.399651px;}
.y144{bottom:875.099650px;}
.y74{bottom:875.819650px;}
.y166{bottom:876.719649px;}
.y57{bottom:879.239648px;}
.y13{bottom:881.039648px;}
.yaf{bottom:882.839647px;}
.y123{bottom:887.699645px;}
.y110{bottom:890.399644px;}
.yce{bottom:893.639643px;}
.y111{bottom:897.239641px;}
.y12{bottom:898.319641px;}
.y143{bottom:898.859640px;}
.yf6{bottom:899.039640px;}
.yae{bottom:903.539639px;}
.y55{bottom:905.159638px;}
.y73{bottom:908.399637px;}
.y183{bottom:911.099636px;}
.y10f{bottom:912.719635px;}
.y11{bottom:915.599634px;}
.ycd{bottom:915.959634px;}
.y142{bottom:920.999632px;}
.yad{bottom:924.239630px;}
.y72{bottom:929.099628px;}
.yf5{bottom:933.419627px;}
.yf{bottom:933.599627px;}
.y10e{bottom:935.039626px;}
.y54{bottom:937.919625px;}
.ycc{bottom:938.279625px;}
.y10{bottom:939.539624px;}
.y141{bottom:944.759622px;}
.yac{bottom:944.939622px;}
.y71{bottom:949.799620px;}
.yf4{bottom:955.739618px;}
.y10d{bottom:957.359617px;}
.y53{bottom:958.619617px;}
.ycb{bottom:960.779616px;}
.y140{bottom:967.079613px;}
.ye{bottom:968.699613px;}
.y70{bottom:970.499612px;}
.y122{bottom:977.339609px;}
.yab{bottom:977.519609px;}
.yf3{bottom:978.059609px;}
.y52{bottom:979.319608px;}
.y10b{bottom:979.679608px;}
.yc9{bottom:983.099607px;}
.y10c{bottom:986.519605px;}
.yca{bottom:989.939604px;}
.y182{bottom:990.119604px;}
.y13f{bottom:990.839604px;}
.y6f{bottom:991.199604px;}
.yd{bottom:994.799602px;}
.yaa{bottom:998.219601px;}
.y51{bottom:1000.019600px;}
.y165{bottom:1000.379600px;}
.y10a{bottom:1002.179599px;}
.yc8{bottom:1005.419598px;}
.y6e{bottom:1011.899595px;}
.yf2{bottom:1012.439595px;}
.y13e{bottom:1012.979595px;}
.ya9{bottom:1018.919592px;}
.y50{bottom:1020.719592px;}
.y109{bottom:1024.499590px;}
.yc7{bottom:1027.739589px;}
.y6d{bottom:1032.599587px;}
.yf1{bottom:1034.759586px;}
.y43{bottom:1035.659586px;}
.y13c{bottom:1036.559585px;}
.y3e{bottom:1038.540600px;}
.ya8{bottom:1039.619584px;}
.y4f{bottom:1041.419583px;}
.y13b{bottom:1042.499583px;}
.y13d{bottom:1043.399583px;}
.y108{bottom:1046.819581px;}
.yc6{bottom:1050.059580px;}
.y6c{bottom:1053.299579px;}
.y164{bottom:1057.079577px;}
.ya7{bottom:1060.319576px;}
.y42{bottom:1060.499576px;}
.y4e{bottom:1061.939575px;}
.yf0{bottom:1069.139572px;}
.yc5{bottom:1072.379571px;}
.y6b{bottom:1073.999570px;}
.y163{bottom:1079.399568px;}
.ya5{bottom:1081.019568px;}
.y41{bottom:1086.779565px;}
.ya6{bottom:1087.859565px;}
.yef{bottom:1091.459563px;}
.y4d{bottom:1094.699562px;}
.ya4{bottom:1101.719559px;}
.y90{bottom:1112.339555px;}
.y8f{bottom:1113.779554px;}
.y44{bottom:1113.780600px;}
.y4c{bottom:1115.399554px;}
.y40{bottom:1116.299553px;}
.ya3{bottom:1134.659546px;}
.y4b{bottom:1136.099546px;}
.y6a{bottom:1142.939543px;}
.y4{bottom:1157.339537px;}
.y7{bottom:1185.059526px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h3{height:6.300000px;}
.hb{height:20.160000px;}
.h6{height:20.340000px;}
.h16{height:32.152136px;}
.ha{height:32.693893px;}
.h5{height:32.976549px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.he{height:36.914048px;}
.hf{height:39.339828px;}
.h7{height:40.851546px;}
.h12{height:43.246389px;}
.hd{height:43.390178px;}
.h15{height:43.506897px;}
.h14{height:43.536076px;}
.h2{height:45.281232px;}
.hc{height:48.095137px;}
.h9{height:48.796855px;}
.h13{height:52.277323px;}
.h1{height:53.573885px;}
.h8{height:57.092321px;}
.h11{height:64.546849px;}
.h0{height:1263.000000px;}
.w8{width:3.600000px;}
.w6{width:3.780000px;}
.w3{width:6.660000px;}
.w9{width:8.280000px;}
.w2{width:9.720000px;}
.wa{width:14.040000px;}
.w4{width:14.940000px;}
.w7{width:32.760000px;}
.w5{width:55.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:70.919972px;}
.x5{left:97.019961px;}
.x1{left:107.999957px;}
.x1d{left:117.719953px;}
.x1b{left:119.699952px;}
.x53{left:128.519949px;}
.x19{left:131.039948px;}
.x1f{left:134.639946px;}
.x1a{left:136.079980px;}
.x13{left:137.160000px;}
.x70{left:140.579944px;}
.x8{left:142.199943px;}
.x56{left:145.979942px;}
.x14{left:152.100000px;}
.x57{left:162.539935px;}
.x1e{left:166.319933px;}
.x4e{left:171.539931px;}
.x1c{left:176.399929px;}
.x6d{left:185.760758px;}
.x6c{left:193.680580px;}
.x15{left:207.540000px;}
.x16{left:211.320000px;}
.x6b{left:212.579915px;}
.x45{left:222.659911px;}
.x46{left:235.259906px;}
.xf{left:244.619902px;}
.x17{left:247.680000px;}
.x11{left:249.480514px;}
.x5e{left:251.999497px;}
.x26{left:257.039897px;}
.x20{left:260.639896px;}
.x5f{left:262.079895px;}
.x60{left:268.199893px;}
.x31{left:275.579890px;}
.x18{left:281.340000px;}
.x66{left:282.779887px;}
.x2e{left:284.219886px;}
.x41{left:290.159884px;}
.x32{left:294.479882px;}
.x55{left:298.439881px;}
.x21{left:301.499879px;}
.x2{left:302.579879px;}
.x67{left:304.199878px;}
.x12{left:305.280709px;}
.x48{left:306.899877px;}
.x42{left:309.779876px;}
.x10{left:311.940515px;}
.xa{left:313.019875px;}
.x43{left:319.859872px;}
.x68{left:321.839957px;}
.x49{left:323.459871px;}
.x44{left:325.979870px;}
.x62{left:329.759868px;}
.x27{left:341.639863px;}
.x4f{left:344.879531px;}
.x3c{left:345.959862px;}
.x22{left:351.899420px;}
.x6{left:362.339855px;}
.x25{left:364.139854px;}
.x39{left:365.399854px;}
.x3d{left:381.959847px;}
.x3a{left:384.299846px;}
.x9{left:392.759448px;}
.x4c{left:402.299839px;}
.x4d{left:408.419837px;}
.x38{left:418.319833px;}
.xb{left:427.319829px;}
.xc{left:433.439827px;}
.x64{left:438.659825px;}
.x65{left:447.299821px;}
.x5c{left:452.339819px;}
.x3e{left:484.559806px;}
.x5d{left:487.619805px;}
.x3f{left:505.259798px;}
.x2f{left:523.259791px;}
.x30{left:535.139786px;}
.x50{left:542.699783px;}
.x4a{left:544.679782px;}
.x63{left:545.939782px;}
.x51{left:555.299778px;}
.x4b{left:565.199774px;}
.xd{left:574.019770px;}
.xe{left:579.959768px;}
.x28{left:596.519761px;}
.x54{left:615.239754px;}
.x61{left:622.979751px;}
.x6a{left:627.479075px;}
.x52{left:658.259737px;}
.x72{left:662.759735px;}
.x3{left:666.179734px;}
.x5a{left:671.759731px;}
.x69{left:682.919727px;}
.x6e{left:685.439726px;}
.x35{left:687.239725px;}
.x29{left:691.200000px;}
.x5b{left:692.459723px;}
.x2d{left:697.319766px;}
.x2a{left:703.259719px;}
.x58{left:705.959718px;}
.x6f{left:707.039717px;}
.x3b{left:708.479717px;}
.x2b{left:710.999716px;}
.x71{left:715.679714px;}
.x40{left:719.819712px;}
.x59{left:750.239700px;}
.x47{left:757.979697px;}
.x2c{left:760.139696px;}
.x36{left:762.299695px;}
.x34{left:766.439693px;}
.x33{left:772.199691px;}
.x37{left:774.899690px;}
.x23{left:780.839688px;}
.x24{left:784.979686px;}
.x7{left:829.260000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009381pt;}
.lsd{letter-spacing:0.009440pt;}
.ls8{letter-spacing:0.009459pt;}
.lsb{letter-spacing:0.017387pt;}
.ls10{letter-spacing:0.018878pt;}
.lsf{letter-spacing:0.018880pt;}
.lse{letter-spacing:0.018917pt;}
.ls5{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133125pt;}
.ls1{letter-spacing:0.141178pt;}
.ls9{letter-spacing:0.418838pt;}
.ls2{letter-spacing:21.295351pt;}
.ls3{letter-spacing:21.941645pt;}
.lsc{letter-spacing:48.807447pt;}
.lsa{letter-spacing:58.412777pt;}
.ls0{letter-spacing:1558.832636pt;}
.ws3{word-spacing:-28.799988pt;}
.wsa{word-spacing:-16.018911pt;}
.ws8{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.767354pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws4{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws9{word-spacing:-11.138833pt;}
.ws7{word-spacing:-10.719996pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-8.616505pt;}
._1a{margin-left:-7.676156pt;}
._1b{margin-left:-6.639209pt;}
._14{margin-left:-5.719122pt;}
._8{margin-left:-4.036853pt;}
._b{margin-left:-2.729340pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._e{width:2.134281pt;}
._5{width:3.107789pt;}
._4{width:4.200003pt;}
._3{width:5.698793pt;}
._2{width:6.693622pt;}
._9{width:7.850390pt;}
._f{width:9.015154pt;}
._7{width:10.506409pt;}
._6{width:12.261628pt;}
._17{width:13.495422pt;}
._a{width:14.463638pt;}
._1d{width:17.707190pt;}
._19{width:18.975178pt;}
._d{width:20.920337pt;}
._18{width:21.890067pt;}
._c{width:22.854248pt;}
._1c{width:23.920368pt;}
._23{width:25.740360pt;}
._15{width:28.855545pt;}
._16{width:29.759094pt;}
._10{width:34.053938pt;}
._11{width:35.158214pt;}
._22{width:42.352401pt;}
._20{width:43.792374pt;}
._21{width:44.877525pt;}
._13{width:49.786679pt;}
._12{width:50.739608pt;}
._1f{width:117.212392pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-8.479992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y45{bottom:3.999069pt;}
.y3f{bottom:3.999096pt;}
.y16{bottom:3.999173pt;}
.y24{bottom:3.999186pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:45.386880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:50.666913pt;}
.y181{bottom:114.186621pt;}
.y8e{bottom:118.346619pt;}
.y138{bottom:119.466619pt;}
.y13a{bottom:119.466886pt;}
.y69{bottom:123.626617pt;}
.y121{bottom:125.546616pt;}
.y139{bottom:125.546883pt;}
.y3d{bottom:125.866616pt;}
.ya2{bottom:126.026616pt;}
.yc4{bottom:130.826614pt;}
.y180{bottom:134.026613pt;}
.yee{bottom:136.586612pt;}
.y137{bottom:137.866612pt;}
.y8d{bottom:138.186611pt;}
.y107{bottom:138.346611pt;}
.y68{bottom:142.026610pt;}
.yed{bottom:142.666610pt;}
.y3c{bottom:144.266609pt;}
.y120{bottom:145.386609pt;}
.ya1{bottom:145.866608pt;}
.y162{bottom:148.586607pt;}
.yc3{bottom:150.666606pt;}
.y136{bottom:156.266604pt;}
.yec{bottom:156.426604pt;}
.y8c{bottom:158.026603pt;}
.y106{bottom:158.186603pt;}
.y67{bottom:160.426602pt;}
.y3b{bottom:162.666602pt;}
.y17f{bottom:164.586601pt;}
.y11f{bottom:165.226601pt;}
.ya0{bottom:165.706600pt;}
.y161{bottom:168.586599pt;}
.yc2{bottom:170.506598pt;}
.y8b{bottom:177.866596pt;}
.y104{bottom:178.026595pt;}
.y66{bottom:178.826595pt;}
.y135{bottom:179.146595pt;}
.y3a{bottom:181.066594pt;}
.y105{bottom:184.106593pt;}
.y17e{bottom:184.426593pt;}
.y11e{bottom:185.066593pt;}
.y9f{bottom:185.546592pt;}
.yeb{bottom:186.986592pt;}
.yc1{bottom:190.346591pt;}
.y65{bottom:197.226588pt;}
.y8a{bottom:197.706588pt;}
.y102{bottom:198.026587pt;}
.y160{bottom:198.986587pt;}
.y39{bottom:199.466587pt;}
.y103{bottom:204.106585pt;}
.y17d{bottom:204.266585pt;}
.y11d{bottom:204.906585pt;}
.y9e{bottom:205.386585pt;}
.yea{bottom:206.826584pt;}
.ybf{bottom:210.186583pt;}
.yc0{bottom:216.266580pt;}
.y89{bottom:217.546580pt;}
.y37{bottom:217.866580pt;}
.y15f{bottom:218.826579pt;}
.y38{bottom:223.946577pt;}
.y17c{bottom:224.106577pt;}
.y11c{bottom:224.746577pt;}
.y9d{bottom:225.226577pt;}
.ye9{bottom:226.666576pt;}
.y64{bottom:227.786576pt;}
.ybe{bottom:230.026575pt;}
.y36{bottom:236.266572pt;}
.y87{bottom:237.386572pt;}
.y101{bottom:237.706572pt;}
.y88{bottom:243.466569pt;}
.y11b{bottom:244.586569pt;}
.ye8{bottom:246.506568pt;}
.y15e{bottom:249.866567pt;}
.ybd{bottom:250.026567pt;}
.y63{bottom:254.506565pt;}
.y17b{bottom:254.666565pt;}
.y9c{bottom:255.786564pt;}
.y86{bottom:257.226564pt;}
.y100{bottom:257.546564pt;}
.y11a{bottom:263.146561pt;}
.y119{bottom:264.426561pt;}
.y35{bottom:265.386561pt;}
.ye7{bottom:266.346560pt;}
.ybc{bottom:269.866559pt;}
.y17a{bottom:274.506557pt;}
.y85{bottom:277.066556pt;}
.y15d{bottom:280.426554pt;}
.y9b{bottom:282.506554pt;}
.y118{bottom:284.266553pt;}
.ye6{bottom:286.186552pt;}
.yff{bottom:288.106551pt;}
.y179{bottom:294.346549pt;}
.y34{bottom:296.266548pt;}
.y84{bottom:297.066548pt;}
.ybb{bottom:300.266547pt;}
.y117{bottom:304.106545pt;}
.ye4{bottom:306.026544pt;}
.yfe{bottom:307.946543pt;}
.y15c{bottom:310.986542pt;}
.ye5{bottom:312.106542pt;}
.y178{bottom:314.186541pt;}
.yba{bottom:320.106539pt;}
.y116{bottom:324.106537pt;}
.y33{bottom:326.346536pt;}
.y82{bottom:327.466536pt;}
.yfd{bottom:327.786536pt;}
.y83{bottom:333.546533pt;}
.ye3{bottom:335.626532pt;}
.y15b{bottom:341.386530pt;}
.y177{bottom:344.746529pt;}
.yb9{bottom:346.826528pt;}
.yfc{bottom:347.626528pt;}
.ye2{bottom:351.626526pt;}
.y81{bottom:354.186525pt;}
.y22{bottom:354.506525pt;}
.y115{bottom:360.586522pt;}
.y15a{bottom:361.386522pt;}
.y176{bottom:364.586521pt;}
.yfb{bottom:367.466520pt;}
.y159{bottom:381.226514pt;}
.y114{bottom:381.386514pt;}
.ye1{bottom:382.186514pt;}
.y175{bottom:384.426513pt;}
.yfa{bottom:385.866512pt;}
.y4a{bottom:393.706509pt;}
.y158{bottom:401.066506pt;}
.ye0{bottom:402.026506pt;}
.yf9{bottom:404.266505pt;}
.y49{bottom:410.186503pt;}
.y174{bottom:414.986501pt;}
.y157{bottom:420.906498pt;}
.y48{bottom:426.826496pt;}
.ydf{bottom:432.586494pt;}
.yf8{bottom:434.826493pt;}
.y156{bottom:440.746490pt;}
.y47{bottom:443.306489pt;}
.y173{bottom:454.666485pt;}
.y46{bottom:460.586482pt;}
.yf7{bottom:461.546482pt;}
.ydd{bottom:463.146481pt;}
.yde{bottom:469.226479pt;}
.y21{bottom:470.666478pt;}
.y155{bottom:480.426474pt;}
.y172{bottom:485.226473pt;}
.ydc{bottom:493.546469pt;}
.y32{bottom:493.706469pt;}
.y134{bottom:494.666469pt;}
.y154{bottom:500.266467pt;}
.y171{bottom:505.066465pt;}
.y31{bottom:509.066463pt;}
.y132{bottom:513.066461pt;}
.y133{bottom:519.146459pt;}
.y153{bottom:520.106459pt;}
.ydb{bottom:524.106457pt;}
.y30{bottom:524.426457pt;}
.y170{bottom:524.906457pt;}
.y131{bottom:531.466454pt;}
.y152{bottom:539.946451pt;}
.yda{bottom:543.946449pt;}
.y16f{bottom:546.026448pt;}
.y130{bottom:549.866447pt;}
.y2f{bottom:550.346447pt;}
.y20{bottom:551.626446pt;}
.y62{bottom:554.666445pt;}
.y9a{bottom:556.746444pt;}
.y151{bottom:559.786443pt;}
.yd9{bottom:562.506442pt;}
.yd8{bottom:563.786441pt;}
.y2e{bottom:565.706440pt;}
.y16e{bottom:567.146440pt;}
.y12f{bottom:568.266439pt;}
.y61{bottom:573.066437pt;}
.y99{bottom:573.866437pt;}
.y98{bottom:575.146437pt;}
.y150{bottom:578.186435pt;}
.y1f{bottom:578.346435pt;}
.y2d{bottom:581.066434pt;}
.y12e{bottom:586.666432pt;}
.y60{bottom:591.466430pt;}
.y1e{bottom:593.066429pt;}
.y97{bottom:593.546429pt;}
.yd7{bottom:594.346429pt;}
.y80{bottom:594.506429pt;}
.y2c{bottom:596.426428pt;}
.y14f{bottom:596.586428pt;}
.y16d{bottom:597.706428pt;}
.y12d{bottom:605.066425pt;}
.y1d{bottom:607.786424pt;}
.y5f{bottom:609.866423pt;}
.y2b{bottom:611.626422pt;}
.y96{bottom:611.946422pt;}
.y7f{bottom:612.906422pt;}
.y16c{bottom:617.546420pt;}
.yb8{bottom:619.146419pt;}
.y1c{bottom:621.386418pt;}
.y12c{bottom:623.466417pt;}
.yd6{bottom:624.906417pt;}
.y2a{bottom:626.986416pt;}
.y14e{bottom:627.146416pt;}
.y5e{bottom:628.266415pt;}
.y95{bottom:630.346415pt;}
.y7e{bottom:631.306414pt;}
.yb7{bottom:637.546412pt;}
.y12b{bottom:641.866410pt;}
.y29{bottom:642.346410pt;}
.yd5{bottom:644.746409pt;}
.y1b{bottom:646.666408pt;}
.y14d{bottom:646.986408pt;}
.y16b{bottom:648.106407pt;}
.y94{bottom:648.746407pt;}
.y7d{bottom:649.706407pt;}
.yb6{bottom:655.946404pt;}
.y28{bottom:657.706404pt;}
.y12a{bottom:660.266403pt;}
.yd4{bottom:664.586401pt;}
.y5d{bottom:665.066401pt;}
.y14c{bottom:666.826400pt;}
.y93{bottom:667.146400pt;}
.y16a{bottom:667.946399pt;}
.y7c{bottom:668.106399pt;}
.y1a{bottom:672.266398pt;}
.y27{bottom:673.066397pt;}
.yb5{bottom:674.346397pt;}
.y129{bottom:678.666395pt;}
.y5c{bottom:683.466393pt;}
.yd3{bottom:684.426393pt;}
.y7b{bottom:686.506392pt;}
.y14a{bottom:686.826392pt;}
.y19{bottom:687.306392pt;}
.y26{bottom:688.266391pt;}
.yb4{bottom:692.746390pt;}
.y14b{bottom:692.906390pt;}
.y128{bottom:697.066388pt;}
.y92{bottom:697.706388pt;}
.y23{bottom:698.187200pt;}
.y169{bottom:698.506387pt;}
.y5b{bottom:701.866386pt;}
.y25{bottom:703.626385pt;}
.yd2{bottom:704.266385pt;}
.y18{bottom:704.586385pt;}
.y7a{bottom:704.906385pt;}
.y149{bottom:706.666384pt;}
.yb3{bottom:711.146382pt;}
.y127{bottom:715.466380pt;}
.y5a{bottom:720.266379pt;}
.y78{bottom:723.306377pt;}
.yd1{bottom:724.106377pt;}
.y91{bottom:724.266377pt;}
.y168{bottom:728.906375pt;}
.y79{bottom:729.386375pt;}
.yb2{bottom:729.546375pt;}
.y15{bottom:730.347200pt;}
.y126{bottom:733.866373pt;}
.y17{bottom:735.466372pt;}
.y147{bottom:737.066372pt;}
.y59{bottom:738.666371pt;}
.y77{bottom:740.426370pt;}
.y76{bottom:741.706370pt;}
.y148{bottom:743.146369pt;}
.yb1{bottom:747.946367pt;}
.y167{bottom:748.746367pt;}
.y125{bottom:752.266366pt;}
.yd0{bottom:754.666365pt;}
.y146{bottom:756.906364pt;}
.y58{bottom:757.066364pt;}
.y113{bottom:759.626363pt;}
.y75{bottom:760.106363pt;}
.y112{bottom:760.906362pt;}
.y145{bottom:762.186362pt;}
.yb0{bottom:766.346360pt;}
.y14{bottom:767.786360pt;}
.y124{bottom:770.666358pt;}
.ycf{bottom:774.506357pt;}
.y56{bottom:775.466356pt;}
.y144{bottom:777.866356pt;}
.y74{bottom:778.506355pt;}
.y166{bottom:779.306355pt;}
.y57{bottom:781.546354pt;}
.y13{bottom:783.146353pt;}
.yaf{bottom:784.746353pt;}
.y123{bottom:789.066351pt;}
.y110{bottom:791.466350pt;}
.yce{bottom:794.346349pt;}
.y111{bottom:797.546348pt;}
.y12{bottom:798.506347pt;}
.y143{bottom:798.986347pt;}
.yf6{bottom:799.146347pt;}
.yae{bottom:803.146345pt;}
.y55{bottom:804.586345pt;}
.y73{bottom:807.466344pt;}
.y183{bottom:809.866343pt;}
.y10f{bottom:811.306342pt;}
.y11{bottom:813.866341pt;}
.ycd{bottom:814.186341pt;}
.y142{bottom:818.666339pt;}
.yad{bottom:821.546338pt;}
.y72{bottom:825.866336pt;}
.yf5{bottom:829.706335pt;}
.yf{bottom:829.866335pt;}
.y10e{bottom:831.146334pt;}
.y54{bottom:833.706333pt;}
.ycc{bottom:834.026333pt;}
.y10{bottom:835.146333pt;}
.y141{bottom:839.786331pt;}
.yac{bottom:839.946331pt;}
.y71{bottom:844.266329pt;}
.yf4{bottom:849.546327pt;}
.y10d{bottom:850.986326pt;}
.y53{bottom:852.106326pt;}
.ycb{bottom:854.026325pt;}
.y140{bottom:859.626323pt;}
.ye{bottom:861.066322pt;}
.y70{bottom:862.666322pt;}
.y122{bottom:868.746319pt;}
.yab{bottom:868.906319pt;}
.yf3{bottom:869.386319pt;}
.y52{bottom:870.506318pt;}
.y10b{bottom:870.826318pt;}
.yc9{bottom:873.866317pt;}
.y10c{bottom:876.906316pt;}
.yca{bottom:879.946315pt;}
.y182{bottom:880.106315pt;}
.y13f{bottom:880.746314pt;}
.y6f{bottom:881.066314pt;}
.yd{bottom:884.266313pt;}
.yaa{bottom:887.306312pt;}
.y51{bottom:888.906311pt;}
.y165{bottom:889.226311pt;}
.y10a{bottom:890.826310pt;}
.yc8{bottom:893.706309pt;}
.y6e{bottom:899.466307pt;}
.yf2{bottom:899.946307pt;}
.y13e{bottom:900.426306pt;}
.ya9{bottom:905.706304pt;}
.y50{bottom:907.306304pt;}
.y109{bottom:910.666302pt;}
.yc7{bottom:913.546301pt;}
.y6d{bottom:917.866300pt;}
.yf1{bottom:919.786299pt;}
.y43{bottom:920.586298pt;}
.y13c{bottom:921.386298pt;}
.y3e{bottom:923.147200pt;}
.ya8{bottom:924.106297pt;}
.y4f{bottom:925.706296pt;}
.y13b{bottom:926.666296pt;}
.y13d{bottom:927.466296pt;}
.y108{bottom:930.506294pt;}
.yc6{bottom:933.386293pt;}
.y6c{bottom:936.266292pt;}
.y164{bottom:939.626291pt;}
.ya7{bottom:942.506290pt;}
.y42{bottom:942.666290pt;}
.y4e{bottom:943.946289pt;}
.yf0{bottom:950.346287pt;}
.yc5{bottom:953.226285pt;}
.y6b{bottom:954.666285pt;}
.y163{bottom:959.466283pt;}
.ya5{bottom:960.906282pt;}
.y41{bottom:966.026280pt;}
.ya6{bottom:966.986280pt;}
.yef{bottom:970.186279pt;}
.y4d{bottom:973.066277pt;}
.ya4{bottom:979.306275pt;}
.y90{bottom:988.746271pt;}
.y8f{bottom:990.026271pt;}
.y44{bottom:990.027200pt;}
.y4c{bottom:991.466270pt;}
.y40{bottom:992.266270pt;}
.ya3{bottom:1008.586263pt;}
.y4b{bottom:1009.866263pt;}
.y6a{bottom:1015.946260pt;}
.y4{bottom:1028.746255pt;}
.y7{bottom:1053.386245pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h3{height:5.600000pt;}
.hb{height:17.920000pt;}
.h6{height:18.080000pt;}
.h16{height:28.579676pt;}
.ha{height:29.061238pt;}
.h5{height:29.312488pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.he{height:32.812487pt;}
.hf{height:34.968736pt;}
.h7{height:36.312485pt;}
.h12{height:38.441235pt;}
.hd{height:38.569047pt;}
.h15{height:38.672797pt;}
.h14{height:38.698735pt;}
.h2{height:40.249984pt;}
.hc{height:42.751233pt;}
.h9{height:43.374983pt;}
.h13{height:46.468731pt;}
.h1{height:47.621231pt;}
.h8{height:50.748730pt;}
.h11{height:57.374977pt;}
.h0{height:1122.666667pt;}
.w8{width:3.200000pt;}
.w6{width:3.360000pt;}
.w3{width:5.920000pt;}
.w9{width:7.360000pt;}
.w2{width:8.640000pt;}
.wa{width:12.480000pt;}
.w4{width:13.280000pt;}
.w7{width:29.120000pt;}
.w5{width:49.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:63.039975pt;}
.x5{left:86.239966pt;}
.x1{left:95.999962pt;}
.x1d{left:104.639958pt;}
.x1b{left:106.399957pt;}
.x53{left:114.239954pt;}
.x19{left:116.479953pt;}
.x1f{left:119.679952pt;}
.x1a{left:120.959982pt;}
.x13{left:121.920000pt;}
.x70{left:124.959950pt;}
.x8{left:126.399949pt;}
.x56{left:129.759948pt;}
.x14{left:135.200000pt;}
.x57{left:144.479942pt;}
.x1e{left:147.839941pt;}
.x4e{left:152.479939pt;}
.x1c{left:156.799937pt;}
.x6d{left:165.120674pt;}
.x6c{left:172.160515pt;}
.x15{left:184.480000pt;}
.x16{left:187.840000pt;}
.x6b{left:188.959924pt;}
.x45{left:197.919921pt;}
.x46{left:209.119916pt;}
.xf{left:217.439913pt;}
.x17{left:220.160000pt;}
.x11{left:221.760457pt;}
.x5e{left:223.999553pt;}
.x26{left:228.479909pt;}
.x20{left:231.679907pt;}
.x5f{left:232.959907pt;}
.x60{left:238.399905pt;}
.x31{left:244.959902pt;}
.x18{left:250.080000pt;}
.x66{left:251.359899pt;}
.x2e{left:252.639899pt;}
.x41{left:257.919897pt;}
.x32{left:261.759895pt;}
.x55{left:265.279894pt;}
.x21{left:267.999893pt;}
.x2{left:268.959892pt;}
.x67{left:270.399892pt;}
.x12{left:271.360630pt;}
.x48{left:272.799891pt;}
.x42{left:275.359890pt;}
.x10{left:277.280458pt;}
.xa{left:278.239889pt;}
.x43{left:284.319886pt;}
.x68{left:286.079962pt;}
.x49{left:287.519885pt;}
.x44{left:289.759884pt;}
.x62{left:293.119883pt;}
.x27{left:303.679879pt;}
.x4f{left:306.559583pt;}
.x3c{left:307.519877pt;}
.x22{left:312.799484pt;}
.x6{left:322.079871pt;}
.x25{left:323.679871pt;}
.x39{left:324.799870pt;}
.x3d{left:339.519864pt;}
.x3a{left:341.599863pt;}
.x9{left:349.119509pt;}
.x4c{left:357.599857pt;}
.x4d{left:363.039855pt;}
.x38{left:371.839851pt;}
.xb{left:379.839848pt;}
.xc{left:385.279846pt;}
.x64{left:389.919844pt;}
.x65{left:397.599841pt;}
.x5c{left:402.079839pt;}
.x3e{left:430.719828pt;}
.x5d{left:433.439827pt;}
.x3f{left:449.119820pt;}
.x2f{left:465.119814pt;}
.x30{left:475.679810pt;}
.x50{left:482.399807pt;}
.x4a{left:484.159806pt;}
.x63{left:485.279806pt;}
.x51{left:493.599803pt;}
.x4b{left:502.399799pt;}
.xd{left:510.239796pt;}
.xe{left:515.519794pt;}
.x28{left:530.239788pt;}
.x54{left:546.879781pt;}
.x61{left:553.759778pt;}
.x6a{left:557.759178pt;}
.x52{left:585.119766pt;}
.x72{left:589.119764pt;}
.x3{left:592.159763pt;}
.x5a{left:597.119761pt;}
.x69{left:607.039757pt;}
.x6e{left:609.279756pt;}
.x35{left:610.879756pt;}
.x29{left:614.400000pt;}
.x5b{left:615.519754pt;}
.x2d{left:619.839792pt;}
.x2a{left:625.119750pt;}
.x58{left:627.519749pt;}
.x6f{left:628.479749pt;}
.x3b{left:629.759748pt;}
.x2b{left:631.999747pt;}
.x71{left:636.159746pt;}
.x40{left:639.839744pt;}
.x59{left:666.879733pt;}
.x47{left:673.759730pt;}
.x2c{left:675.679730pt;}
.x36{left:677.599729pt;}
.x34{left:681.279727pt;}
.x33{left:686.399725pt;}
.x37{left:688.799724pt;}
.x23{left:694.079722pt;}
.x24{left:697.759721pt;}
.x7{left:737.120000pt;}
}




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