
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f5414f0c742137b9fe183e95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_d837416b607318dd70da1259.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_6de62ce4002082d6ec7cef8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_fb5cac6a53e92ffd595b3a9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_74749636f7710abfeb5fc735.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_4dfa70f583e48885c08a43b5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_062e174820b0e358387d5e71.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_cf2db58da9e7c11e6064d1cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d530c6bafb251abbf02193f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_239ae0fb0323578828bf552b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_7bf23e8201a2848dc7d8ed19.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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_58985701b4c755d552b4c977.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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);}
.v3{vertical-align:-73.440000px;}
.v2{vertical-align:-70.560000px;}
.v4{vertical-align:-69.120000px;}
.v1{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.634000px;}
.ls10{letter-spacing:-2.412000px;}
.ls14{letter-spacing:-1.908000px;}
.ls18{letter-spacing:-1.458000px;}
.ls9{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.422000px;}
.lsf{letter-spacing:-0.972000px;}
.ls11{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.486600px;}
.ls12{letter-spacing:-0.466800px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.869760px;}
.ls13{letter-spacing:1.422000px;}
.ls16{letter-spacing:6.480000px;}
.lsb{letter-spacing:37.906560px;}
.ls1{letter-spacing:46.546560px;}
.ls15{letter-spacing:49.426560px;}
.lsc{letter-spacing:63.826560px;}
.ls17{letter-spacing:2867.496000px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.ws1{word-spacing:-22.505520px;}
.ws10{word-spacing:-16.542000px;}
.ws9{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.099840px;}
.wsf{word-spacing:-14.653200px;}
.ws14{word-spacing:-14.633400px;}
.wse{word-spacing:-14.184000px;}
.wsc{word-spacing:-14.148000px;}
.ws12{word-spacing:-13.698000px;}
.ws5{word-spacing:-13.680000px;}
.ws13{word-spacing:-13.662000px;}
.ws11{word-spacing:-13.212000px;}
.ws7{word-spacing:-13.050000px;}
.wsd{word-spacing:-12.708000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-6.565920px;}
._5{margin-left:-3.976320px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.434720px;}
._8{width:5.869440px;}
._7{width:6.949440px;}
._10{width:8.385600px;}
._9{width:10.206720px;}
._a{width:11.568960px;}
._d{width:13.124160px;}
._b{width:15.696000px;}
._f{width:17.478720px;}
._e{width:18.653760px;}
._17{width:20.321280px;}
._13{width:21.772800px;}
._14{width:23.708160px;}
._15{width:31.963200px;}
._11{width:33.324480px;}
._12{width:34.378560px;}
._19{width:68.927040px;}
._18{width:77.260800px;}
._1a{width:91.429680px;}
._1b{width:109.381920px;}
._16{width:358.627200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.235500px;}
.ycc{bottom:3.240000px;}
.y8c{bottom:3.585000px;}
.y95{bottom:3.586500px;}
.y99{bottom:3.595500px;}
.y82{bottom:3.600000px;}
.y8e{bottom:3.945000px;}
.y97{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y88{bottom:3.975000px;}
.ydb{bottom:3.990000px;}
.y57{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y55{bottom:8.995500px;}
.ycb{bottom:20.520000px;}
.yd8{bottom:20.865000px;}
.y81{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y54{bottom:24.475500px;}
.y48{bottom:32.755500px;}
.y41{bottom:38.520000px;}
.y8a{bottom:39.585000px;}
.ya2{bottom:39.600000px;}
.y93{bottom:39.631500px;}
.y53{bottom:41.755500px;}
.y3{bottom:44.280000px;}
.y47{bottom:54.031500px;}
.y40{bottom:55.440000px;}
.y52{bottom:57.634500px;}
.y7{bottom:57.636000px;}
.y46{bottom:66.994500px;}
.y3f{bottom:72.720000px;}
.y51{bottom:73.114500px;}
.y9b{bottom:75.645000px;}
.y50{bottom:86.074500px;}
.y45{bottom:86.794500px;}
.y3e{bottom:90.720000px;}
.y137{bottom:91.116000px;}
.y98{bottom:91.840500px;}
.y4f{bottom:92.194500px;}
.y42{bottom:93.640500px;}
.y100{bottom:99.756000px;}
.yc8{bottom:106.956000px;}
.y4e{bottom:108.394500px;}
.y136{bottom:108.396000px;}
.y92{bottom:109.840500px;}
.yff{bottom:117.036000px;}
.y3d{bottom:117.360000px;}
.y4d{bottom:123.874500px;}
.yc7{bottom:124.236000px;}
.y135{bottom:125.676000px;}
.y96{bottom:127.840500px;}
.yfe{bottom:134.316000px;}
.y3c{bottom:134.685000px;}
.y4c{bottom:139.354500px;}
.yc6{bottom:141.552000px;}
.y134{bottom:142.992000px;}
.y94{bottom:145.885500px;}
.y44{bottom:148.714500px;}
.yfd{bottom:151.635000px;}
.y3b{bottom:151.965000px;}
.y4b{bottom:154.834500px;}
.yc5{bottom:158.835000px;}
.y43{bottom:159.514500px;}
.y133{bottom:160.275000px;}
.y8f{bottom:163.890000px;}
.y3a{bottom:169.245000px;}
.y4a{bottom:169.954500px;}
.yfc{bottom:174.690000px;}
.y132{bottom:177.555000px;}
.y91{bottom:181.890000px;}
.y39{bottom:187.245000px;}
.yfb{bottom:192.690000px;}
.y131{bottom:194.835000px;}
.y90{bottom:199.890000px;}
.yfa{bottom:210.690000px;}
.y130{bottom:211.755000px;}
.y38{bottom:213.885000px;}
.y89{bottom:217.890000px;}
.yf9{bottom:228.690000px;}
.y12f{bottom:229.035000px;}
.y37{bottom:231.165000px;}
.y8d{bottom:235.890000px;}
.y12e{bottom:246.315000px;}
.yf8{bottom:246.690000px;}
.y36{bottom:248.445000px;}
.y8b{bottom:253.890000px;}
.y12d{bottom:264.315000px;}
.y35{bottom:265.755000px;}
.yf7{bottom:269.355000px;}
.y87{bottom:271.890000px;}
.y34{bottom:282.675000px;}
.ye{bottom:282.705000px;}
.y86{bottom:289.905000px;}
.y12c{bottom:290.985000px;}
.yf6{bottom:296.025000px;}
.y33{bottom:299.955000px;}
.y85{bottom:307.905000px;}
.y12b{bottom:308.265000px;}
.yc4{bottom:312.585000px;}
.yf5{bottom:313.305000px;}
.y32{bottom:317.235000px;}
.y12a{bottom:325.545000px;}
.y84{bottom:325.905000px;}
.yf4{bottom:330.585000px;}
.y31{bottom:335.235000px;}
.yc3{bottom:338.865000px;}
.y129{bottom:342.825000px;}
.y83{bottom:343.905000px;}
.yf3{bottom:347.505000px;}
.yc2{bottom:356.145000px;}
.y128{bottom:360.105000px;}
.y30{bottom:361.875000px;}
.y80{bottom:361.905000px;}
.yf2{bottom:364.785000px;}
.yc1{bottom:373.425000px;}
.y127{bottom:377.385000px;}
.y2f{bottom:379.155000px;}
.yf1{bottom:382.065000px;}
.y1c{bottom:383.475000px;}
.y126{bottom:394.665000px;}
.y2e{bottom:396.465000px;}
.y7f{bottom:400.785000px;}
.yf0{bottom:405.150000px;}
.y1b{bottom:407.625000px;}
.y125{bottom:411.990000px;}
.y2d{bottom:413.745000px;}
.yc0{bottom:414.510000px;}
.y7e{bottom:418.110000px;}
.yef{bottom:423.150000px;}
.y124{bottom:428.910000px;}
.y2c{bottom:431.025000px;}
.y1a{bottom:431.745000px;}
.ybf{bottom:432.510000px;}
.yee{bottom:441.150000px;}
.y7d{bottom:444.750000px;}
.y123{bottom:446.190000px;}
.y2b{bottom:448.305000px;}
.ybe{bottom:450.510000px;}
.y19{bottom:455.865000px;}
.yed{bottom:459.150000px;}
.y7c{bottom:461.670000px;}
.y122{bottom:463.470000px;}
.y2a{bottom:465.585000px;}
.ybd{bottom:468.510000px;}
.yec{bottom:477.150000px;}
.y7b{bottom:479.670000px;}
.y18{bottom:479.985000px;}
.y121{bottom:480.750000px;}
.y29{bottom:482.505000px;}
.yeb{bottom:495.150000px;}
.y120{bottom:498.030000px;}
.y17{bottom:504.465000px;}
.y7a{bottom:506.310000px;}
.y28{bottom:508.425000px;}
.ybc{bottom:508.830000px;}
.yea{bottom:513.150000px;}
.y11f{bottom:514.950000px;}
.y27{bottom:523.950000px;}
.y79{bottom:524.670000px;}
.ybb{bottom:526.110000px;}
.y16{bottom:528.630000px;}
.ye9{bottom:531.150000px;}
.y26{bottom:539.430000px;}
.y11e{bottom:541.620000px;}
.y78{bottom:543.060000px;}
.yba{bottom:543.420000px;}
.ye8{bottom:549.180000px;}
.y15{bottom:552.750000px;}
.y25{bottom:554.910000px;}
.y11d{bottom:558.900000px;}
.yb9{bottom:560.700000px;}
.y77{bottom:561.060000px;}
.y24{bottom:570.390000px;}
.ye7{bottom:571.860000px;}
.y11c{bottom:576.180000px;}
.y14{bottom:576.870000px;}
.y76{bottom:578.340000px;}
.yb8{bottom:583.740000px;}
.y23{bottom:585.870000px;}
.y11b{bottom:593.460000px;}
.y75{bottom:595.620000px;}
.ye6{bottom:598.500000px;}
.y13{bottom:600.990000px;}
.y22{bottom:601.350000px;}
.yb7{bottom:601.740000px;}
.y11a{bottom:610.740000px;}
.y74{bottom:612.900000px;}
.ye5{bottom:615.780000px;}
.y21{bottom:617.190000px;}
.yb6{bottom:619.740000px;}
.y12{bottom:625.110000px;}
.y119{bottom:627.660000px;}
.y73{bottom:630.540000px;}
.y20{bottom:632.670000px;}
.ye4{bottom:633.060000px;}
.yb5{bottom:637.740000px;}
.y118{bottom:644.940000px;}
.y72{bottom:647.820000px;}
.y1f{bottom:648.150000px;}
.y11{bottom:649.230000px;}
.ye3{bottom:650.340000px;}
.yb4{bottom:655.740000px;}
.y117{bottom:662.220000px;}
.y1e{bottom:663.660000px;}
.y71{bottom:665.820000px;}
.ye2{bottom:667.620000px;}
.y10{bottom:673.380000px;}
.yb3{bottom:673.785000px;}
.y116{bottom:679.170000px;}
.y70{bottom:682.770000px;}
.ye1{bottom:690.705000px;}
.y1d{bottom:694.260000px;}
.yb2{bottom:696.450000px;}
.y115{bottom:696.810000px;}
.yf{bottom:697.500000px;}
.ye0{bottom:708.705000px;}
.y6f{bottom:709.410000px;}
.y114{bottom:714.090000px;}
.yb1{bottom:723.090000px;}
.y6e{bottom:726.690000px;}
.ydf{bottom:726.705000px;}
.y113{bottom:731.370000px;}
.yb0{bottom:740.370000px;}
.y6d{bottom:743.970000px;}
.yde{bottom:744.705000px;}
.y112{bottom:748.650000px;}
.yaf{bottom:757.650000px;}
.y6c{bottom:761.250000px;}
.ydd{bottom:762.705000px;}
.y111{bottom:765.930000px;}
.yae{bottom:771.705000px;}
.y6b{bottom:778.530000px;}
.ydc{bottom:780.705000px;}
.y110{bottom:783.210000px;}
.yad{bottom:789.705000px;}
.y6a{bottom:795.810000px;}
.yda{bottom:798.705000px;}
.y10f{bottom:806.310000px;}
.yac{bottom:807.750000px;}
.y69{bottom:813.135000px;}
.yd9{bottom:816.750000px;}
.y10e{bottom:824.310000px;}
.yab{bottom:825.750000px;}
.y68{bottom:830.415000px;}
.yd7{bottom:834.750000px;}
.y10d{bottom:842.310000px;}
.yaa{bottom:843.750000px;}
.y67{bottom:847.695000px;}
.y10c{bottom:860.310000px;}
.y66{bottom:864.975000px;}
.ya9{bottom:865.335000px;}
.yd6{bottom:874.695000px;}
.y10b{bottom:878.310000px;}
.y65{bottom:881.895000px;}
.ya8{bottom:891.975000px;}
.y10a{bottom:896.310000px;}
.y64{bottom:899.175000px;}
.yd5{bottom:901.335000px;}
.ya7{bottom:909.255000px;}
.y109{bottom:914.310000px;}
.y63{bottom:916.455000px;}
.yd4{bottom:918.615000px;}
.ya6{bottom:926.175000px;}
.y62{bottom:933.765000px;}
.yd3{bottom:935.925000px;}
.ya5{bottom:943.485000px;}
.y61{bottom:951.045000px;}
.yd2{bottom:952.845000px;}
.y108{bottom:954.285000px;}
.ya1{bottom:957.525000px;}
.y60{bottom:968.325000px;}
.ya4{bottom:975.525000px;}
.yd1{bottom:976.245000px;}
.y107{bottom:980.925000px;}
.y5f{bottom:985.605000px;}
.ya3{bottom:993.525000px;}
.yd0{bottom:994.245000px;}
.y106{bottom:997.845000px;}
.yd{bottom:1002.165000px;}
.y5e{bottom:1002.885000px;}
.yc{bottom:1010.085000px;}
.ya0{bottom:1011.525000px;}
.ycf{bottom:1012.245000px;}
.y105{bottom:1015.125000px;}
.y5d{bottom:1020.165000px;}
.yb{bottom:1027.365000px;}
.y104{bottom:1029.165000px;}
.y9a{bottom:1029.525000px;}
.yce{bottom:1030.245000px;}
.y5c{bottom:1037.445000px;}
.ya{bottom:1043.925000px;}
.y103{bottom:1047.165000px;}
.y9f{bottom:1047.525000px;}
.ycd{bottom:1048.245000px;}
.y5b{bottom:1054.725000px;}
.y102{bottom:1065.210000px;}
.y9e{bottom:1065.570000px;}
.yca{bottom:1066.290000px;}
.y9{bottom:1069.530000px;}
.y5a{bottom:1072.050000px;}
.y101{bottom:1083.210000px;}
.y9d{bottom:1083.570000px;}
.y8{bottom:1088.250000px;}
.y59{bottom:1088.970000px;}
.y56{bottom:1091.520000px;}
.y9c{bottom:1101.570000px;}
.yc9{bottom:1105.890000px;}
.y58{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h26{height:16.905000px;}
.h25{height:16.950000px;}
.h19{height:17.265000px;}
.h1d{height:17.266500px;}
.h1f{height:17.275500px;}
.h1a{height:17.280000px;}
.h22{height:17.301000px;}
.h21{height:17.310000px;}
.h1e{height:17.311500px;}
.h23{height:17.316000px;}
.h9{height:18.372656px;}
.h6{height:24.348516px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.h24{height:34.185000px;}
.h18{height:34.545000px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hf{height:42.229688px;}
.he{height:45.101250px;}
.h1b{height:53.265000px;}
.h1c{height:53.311500px;}
.hd{height:53.677969px;}
.h14{height:55.147500px;}
.h5{height:59.357813px;}
.h11{height:60.155156px;}
.h8{height:60.952500px;}
.h10{height:62.163910px;}
.h17{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h20{height:89.310000px;}
.h4{height:116.640000px;}
.h12{height:188.325000px;}
.ha{height:706.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:80.640000px;}
.wf{width:83.541000px;}
.w7{width:92.520000px;}
.w29{width:97.992000px;}
.w2{width:103.702500px;}
.w27{width:109.125000px;}
.w1b{width:111.240000px;}
.w15{width:119.520000px;}
.w1e{width:120.645000px;}
.w21{width:131.400000px;}
.w4{width:132.502500px;}
.w1d{width:133.956000px;}
.w12{width:135.045000px;}
.w24{width:135.405000px;}
.wa{width:138.240000px;}
.w9{width:138.312000px;}
.w11{width:150.870000px;}
.w26{width:158.430000px;}
.w20{width:159.555000px;}
.w14{width:161.355000px;}
.w6{width:163.080000px;}
.wd{width:164.955000px;}
.we{width:165.990000px;}
.w1a{width:168.195000px;}
.w25{width:172.830000px;}
.w22{width:174.285000px;}
.w28{width:175.725000px;}
.w2a{width:176.445000px;}
.w23{width:183.315000px;}
.w8{width:183.675000px;}
.w17{width:200.235000px;}
.w10{width:215.010000px;}
.w1c{width:228.330000px;}
.w1f{width:253.530000px;}
.w16{width:262.530000px;}
.w13{width:317.242500px;}
.w19{width:329.842500px;}
.wc{width:462.045000px;}
.wb{width:555.660000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:2.520000px;}
.x58{left:3.577500px;}
.x64{left:4.665000px;}
.x51{left:5.745000px;}
.x1f{left:6.876000px;}
.x17{left:8.266500px;}
.x26{left:10.440000px;}
.x4{left:13.305000px;}
.x15{left:17.266500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x5b{left:20.865000px;}
.x6b{left:23.745000px;}
.x47{left:25.185000px;}
.x77{left:26.670000px;}
.x61{left:28.095000px;}
.x16{left:29.146500px;}
.x23{left:31.665000px;}
.x5d{left:32.775000px;}
.x6c{left:34.185000px;}
.x49{left:37.065000px;}
.x6d{left:38.145000px;}
.x36{left:39.600000px;}
.x4f{left:41.760000px;}
.x29{left:42.825000px;}
.xf{left:43.906500px;}
.x2a{left:46.065000px;}
.x1c{left:47.542500px;}
.x6{left:48.615000px;}
.x10{left:50.782500px;}
.x2c{left:52.245000px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x7b{left:56.145000px;}
.x1d{left:57.262500px;}
.x32{left:59.805000px;}
.x72{left:61.215000px;}
.x19{left:62.295000px;}
.x2d{left:65.550000px;}
.x31{left:68.085000px;}
.x27{left:69.150000px;}
.x2f{left:70.245000px;}
.x73{left:71.295000px;}
.x3e{left:72.360000px;}
.x38{left:73.485000px;}
.x2b{left:74.565000px;}
.x13{left:75.985500px;}
.x34{left:77.445000px;}
.x1{left:78.529500px;}
.x68{left:79.935000px;}
.x5e{left:81.010500px;}
.x67{left:82.095000px;}
.x71{left:84.630000px;}
.x7{left:86.436000px;}
.x12{left:90.025500px;}
.x43{left:91.815000px;}
.x55{left:92.910000px;}
.x2{left:95.425500px;}
.x5f{left:97.570500px;}
.x1e{left:102.985500px;}
.x1a{left:106.945500px;}
.x54{left:110.895000px;}
.x20{left:113.436000px;}
.x57{left:115.575000px;}
.x52{left:118.095000px;}
.x53{left:120.255000px;}
.x56{left:121.695000px;}
.x5c{left:123.130500px;}
.x11{left:124.585500px;}
.x48{left:128.530500px;}
.x4a{left:133.930500px;}
.x4b{left:141.850500px;}
.x44{left:146.974500px;}
.x60{left:148.330500px;}
.x37{left:157.035000px;}
.x35{left:158.835000px;}
.x33{left:163.155000px;}
.x30{left:164.595000px;}
.x22{left:168.930000px;}
.x4d{left:174.330000px;}
.x3{left:182.250000px;}
.x40{left:195.570000px;}
.x2e{left:199.155000px;}
.x63{left:204.210000px;}
.x18{left:218.970000px;}
.x78{left:220.770000px;}
.x75{left:225.825000px;}
.x3a{left:238.785000px;}
.xb{left:251.385000px;}
.x24{left:262.545000px;}
.x21{left:278.745000px;}
.x62{left:294.225000px;}
.x39{left:344.310000px;}
.x3f{left:354.750000px;}
.x6e{left:356.190000px;}
.x4c{left:359.070000px;}
.x74{left:364.110000px;}
.x6f{left:374.550000px;}
.x79{left:397.590000px;}
.x76{left:399.420000px;}
.x3c{left:404.460000px;}
.x41{left:411.300000px;}
.x69{left:428.220000px;}
.x65{left:433.620000px;}
.x4e{left:437.580000px;}
.xc{left:444.420000px;}
.x25{left:446.940000px;}
.x45{left:464.940000px;}
.x59{left:472.140000px;}
.x7a{left:496.305000px;}
.x70{left:558.585000px;}
.x42{left:562.905000px;}
.x66{left:568.665000px;}
.x3d{left:571.185000px;}
.x28{left:586.350000px;}
.x6a{left:588.510000px;}
.x46{left:627.030000px;}
.x50{left:638.550000px;}
.x5a{left:641.070000px;}
.xa{left:648.615000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v3{vertical-align:-65.280000pt;}
.v2{vertical-align:-62.720000pt;}
.v4{vertical-align:-61.440000pt;}
.v1{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-2.341333pt;}
.ls10{letter-spacing:-2.144000pt;}
.ls14{letter-spacing:-1.696000pt;}
.ls18{letter-spacing:-1.296000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.264000pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.432533pt;}
.ls12{letter-spacing:-0.414933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773120pt;}
.ls13{letter-spacing:1.264000pt;}
.ls16{letter-spacing:5.760000pt;}
.lsb{letter-spacing:33.694720pt;}
.ls1{letter-spacing:41.374720pt;}
.ls15{letter-spacing:43.934720pt;}
.lsc{letter-spacing:56.734720pt;}
.ls17{letter-spacing:2548.885333pt;}
.wsa{word-spacing:-53.760000pt;}
.ws1{word-spacing:-20.004907pt;}
.ws10{word-spacing:-14.704000pt;}
.ws9{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.422080pt;}
.wsf{word-spacing:-13.025067pt;}
.ws14{word-spacing:-13.007467pt;}
.wse{word-spacing:-12.608000pt;}
.wsc{word-spacing:-12.576000pt;}
.ws12{word-spacing:-12.176000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws13{word-spacing:-12.144000pt;}
.ws11{word-spacing:-11.744000pt;}
.ws7{word-spacing:-11.600000pt;}
.wsd{word-spacing:-11.296000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-5.836373pt;}
._5{margin-left:-3.534507pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:3.941973pt;}
._8{width:5.217280pt;}
._7{width:6.177280pt;}
._10{width:7.453867pt;}
._9{width:9.072640pt;}
._a{width:10.283520pt;}
._d{width:11.665920pt;}
._b{width:13.952000pt;}
._f{width:15.536640pt;}
._e{width:16.581120pt;}
._17{width:18.063360pt;}
._13{width:19.353600pt;}
._14{width:21.073920pt;}
._15{width:28.411733pt;}
._11{width:29.621760pt;}
._12{width:30.558720pt;}
._19{width:61.268480pt;}
._18{width:68.676267pt;}
._1a{width:81.270827pt;}
._1b{width:97.228373pt;}
._16{width:318.779733pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.876000pt;}
.ycc{bottom:2.880000pt;}
.y8c{bottom:3.186667pt;}
.y95{bottom:3.188000pt;}
.y99{bottom:3.196000pt;}
.y82{bottom:3.200000pt;}
.y8e{bottom:3.506667pt;}
.y97{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y88{bottom:3.533333pt;}
.ydb{bottom:3.546667pt;}
.y57{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:7.996000pt;}
.ycb{bottom:18.240000pt;}
.yd8{bottom:18.546667pt;}
.y81{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y54{bottom:21.756000pt;}
.y48{bottom:29.116000pt;}
.y41{bottom:34.240000pt;}
.y8a{bottom:35.186667pt;}
.ya2{bottom:35.200000pt;}
.y93{bottom:35.228000pt;}
.y53{bottom:37.116000pt;}
.y3{bottom:39.360000pt;}
.y47{bottom:48.028000pt;}
.y40{bottom:49.280000pt;}
.y52{bottom:51.230667pt;}
.y7{bottom:51.232000pt;}
.y46{bottom:59.550667pt;}
.y3f{bottom:64.640000pt;}
.y51{bottom:64.990667pt;}
.y9b{bottom:67.240000pt;}
.y50{bottom:76.510667pt;}
.y45{bottom:77.150667pt;}
.y3e{bottom:80.640000pt;}
.y137{bottom:80.992000pt;}
.y98{bottom:81.636000pt;}
.y4f{bottom:81.950667pt;}
.y42{bottom:83.236000pt;}
.y100{bottom:88.672000pt;}
.yc8{bottom:95.072000pt;}
.y4e{bottom:96.350667pt;}
.y136{bottom:96.352000pt;}
.y92{bottom:97.636000pt;}
.yff{bottom:104.032000pt;}
.y3d{bottom:104.320000pt;}
.y4d{bottom:110.110667pt;}
.yc7{bottom:110.432000pt;}
.y135{bottom:111.712000pt;}
.y96{bottom:113.636000pt;}
.yfe{bottom:119.392000pt;}
.y3c{bottom:119.720000pt;}
.y4c{bottom:123.870667pt;}
.yc6{bottom:125.824000pt;}
.y134{bottom:127.104000pt;}
.y94{bottom:129.676000pt;}
.y44{bottom:132.190667pt;}
.yfd{bottom:134.786667pt;}
.y3b{bottom:135.080000pt;}
.y4b{bottom:137.630667pt;}
.yc5{bottom:141.186667pt;}
.y43{bottom:141.790667pt;}
.y133{bottom:142.466667pt;}
.y8f{bottom:145.680000pt;}
.y3a{bottom:150.440000pt;}
.y4a{bottom:151.070667pt;}
.yfc{bottom:155.280000pt;}
.y132{bottom:157.826667pt;}
.y91{bottom:161.680000pt;}
.y39{bottom:166.440000pt;}
.yfb{bottom:171.280000pt;}
.y131{bottom:173.186667pt;}
.y90{bottom:177.680000pt;}
.yfa{bottom:187.280000pt;}
.y130{bottom:188.226667pt;}
.y38{bottom:190.120000pt;}
.y89{bottom:193.680000pt;}
.yf9{bottom:203.280000pt;}
.y12f{bottom:203.586667pt;}
.y37{bottom:205.480000pt;}
.y8d{bottom:209.680000pt;}
.y12e{bottom:218.946667pt;}
.yf8{bottom:219.280000pt;}
.y36{bottom:220.840000pt;}
.y8b{bottom:225.680000pt;}
.y12d{bottom:234.946667pt;}
.y35{bottom:236.226667pt;}
.yf7{bottom:239.426667pt;}
.y87{bottom:241.680000pt;}
.y34{bottom:251.266667pt;}
.ye{bottom:251.293333pt;}
.y86{bottom:257.693333pt;}
.y12c{bottom:258.653333pt;}
.yf6{bottom:263.133333pt;}
.y33{bottom:266.626667pt;}
.y85{bottom:273.693333pt;}
.y12b{bottom:274.013333pt;}
.yc4{bottom:277.853333pt;}
.yf5{bottom:278.493333pt;}
.y32{bottom:281.986667pt;}
.y12a{bottom:289.373333pt;}
.y84{bottom:289.693333pt;}
.yf4{bottom:293.853333pt;}
.y31{bottom:297.986667pt;}
.yc3{bottom:301.213333pt;}
.y129{bottom:304.733333pt;}
.y83{bottom:305.693333pt;}
.yf3{bottom:308.893333pt;}
.yc2{bottom:316.573333pt;}
.y128{bottom:320.093333pt;}
.y30{bottom:321.666667pt;}
.y80{bottom:321.693333pt;}
.yf2{bottom:324.253333pt;}
.yc1{bottom:331.933333pt;}
.y127{bottom:335.453333pt;}
.y2f{bottom:337.026667pt;}
.yf1{bottom:339.613333pt;}
.y1c{bottom:340.866667pt;}
.y126{bottom:350.813333pt;}
.y2e{bottom:352.413333pt;}
.y7f{bottom:356.253333pt;}
.yf0{bottom:360.133333pt;}
.y1b{bottom:362.333333pt;}
.y125{bottom:366.213333pt;}
.y2d{bottom:367.773333pt;}
.yc0{bottom:368.453333pt;}
.y7e{bottom:371.653333pt;}
.yef{bottom:376.133333pt;}
.y124{bottom:381.253333pt;}
.y2c{bottom:383.133333pt;}
.y1a{bottom:383.773333pt;}
.ybf{bottom:384.453333pt;}
.yee{bottom:392.133333pt;}
.y7d{bottom:395.333333pt;}
.y123{bottom:396.613333pt;}
.y2b{bottom:398.493333pt;}
.ybe{bottom:400.453333pt;}
.y19{bottom:405.213333pt;}
.yed{bottom:408.133333pt;}
.y7c{bottom:410.373333pt;}
.y122{bottom:411.973333pt;}
.y2a{bottom:413.853333pt;}
.ybd{bottom:416.453333pt;}
.yec{bottom:424.133333pt;}
.y7b{bottom:426.373333pt;}
.y18{bottom:426.653333pt;}
.y121{bottom:427.333333pt;}
.y29{bottom:428.893333pt;}
.yeb{bottom:440.133333pt;}
.y120{bottom:442.693333pt;}
.y17{bottom:448.413333pt;}
.y7a{bottom:450.053333pt;}
.y28{bottom:451.933333pt;}
.ybc{bottom:452.293333pt;}
.yea{bottom:456.133333pt;}
.y11f{bottom:457.733333pt;}
.y27{bottom:465.733333pt;}
.y79{bottom:466.373333pt;}
.ybb{bottom:467.653333pt;}
.y16{bottom:469.893333pt;}
.ye9{bottom:472.133333pt;}
.y26{bottom:479.493333pt;}
.y11e{bottom:481.440000pt;}
.y78{bottom:482.720000pt;}
.yba{bottom:483.040000pt;}
.ye8{bottom:488.160000pt;}
.y15{bottom:491.333333pt;}
.y25{bottom:493.253333pt;}
.y11d{bottom:496.800000pt;}
.yb9{bottom:498.400000pt;}
.y77{bottom:498.720000pt;}
.y24{bottom:507.013333pt;}
.ye7{bottom:508.320000pt;}
.y11c{bottom:512.160000pt;}
.y14{bottom:512.773333pt;}
.y76{bottom:514.080000pt;}
.yb8{bottom:518.880000pt;}
.y23{bottom:520.773333pt;}
.y11b{bottom:527.520000pt;}
.y75{bottom:529.440000pt;}
.ye6{bottom:532.000000pt;}
.y13{bottom:534.213333pt;}
.y22{bottom:534.533333pt;}
.yb7{bottom:534.880000pt;}
.y11a{bottom:542.880000pt;}
.y74{bottom:544.800000pt;}
.ye5{bottom:547.360000pt;}
.y21{bottom:548.613333pt;}
.yb6{bottom:550.880000pt;}
.y12{bottom:555.653333pt;}
.y119{bottom:557.920000pt;}
.y73{bottom:560.480000pt;}
.y20{bottom:562.373333pt;}
.ye4{bottom:562.720000pt;}
.yb5{bottom:566.880000pt;}
.y118{bottom:573.280000pt;}
.y72{bottom:575.840000pt;}
.y1f{bottom:576.133333pt;}
.y11{bottom:577.093333pt;}
.ye3{bottom:578.080000pt;}
.yb4{bottom:582.880000pt;}
.y117{bottom:588.640000pt;}
.y1e{bottom:589.920000pt;}
.y71{bottom:591.840000pt;}
.ye2{bottom:593.440000pt;}
.y10{bottom:598.560000pt;}
.yb3{bottom:598.920000pt;}
.y116{bottom:603.706667pt;}
.y70{bottom:606.906667pt;}
.ye1{bottom:613.960000pt;}
.y1d{bottom:617.120000pt;}
.yb2{bottom:619.066667pt;}
.y115{bottom:619.386667pt;}
.yf{bottom:620.000000pt;}
.ye0{bottom:629.960000pt;}
.y6f{bottom:630.586667pt;}
.y114{bottom:634.746667pt;}
.yb1{bottom:642.746667pt;}
.y6e{bottom:645.946667pt;}
.ydf{bottom:645.960000pt;}
.y113{bottom:650.106667pt;}
.yb0{bottom:658.106667pt;}
.y6d{bottom:661.306667pt;}
.yde{bottom:661.960000pt;}
.y112{bottom:665.466667pt;}
.yaf{bottom:673.466667pt;}
.y6c{bottom:676.666667pt;}
.ydd{bottom:677.960000pt;}
.y111{bottom:680.826667pt;}
.yae{bottom:685.960000pt;}
.y6b{bottom:692.026667pt;}
.ydc{bottom:693.960000pt;}
.y110{bottom:696.186667pt;}
.yad{bottom:701.960000pt;}
.y6a{bottom:707.386667pt;}
.yda{bottom:709.960000pt;}
.y10f{bottom:716.720000pt;}
.yac{bottom:718.000000pt;}
.y69{bottom:722.786667pt;}
.yd9{bottom:726.000000pt;}
.y10e{bottom:732.720000pt;}
.yab{bottom:734.000000pt;}
.y68{bottom:738.146667pt;}
.yd7{bottom:742.000000pt;}
.y10d{bottom:748.720000pt;}
.yaa{bottom:750.000000pt;}
.y67{bottom:753.506667pt;}
.y10c{bottom:764.720000pt;}
.y66{bottom:768.866667pt;}
.ya9{bottom:769.186667pt;}
.yd6{bottom:777.506667pt;}
.y10b{bottom:780.720000pt;}
.y65{bottom:783.906667pt;}
.ya8{bottom:792.866667pt;}
.y10a{bottom:796.720000pt;}
.y64{bottom:799.266667pt;}
.yd5{bottom:801.186667pt;}
.ya7{bottom:808.226667pt;}
.y109{bottom:812.720000pt;}
.y63{bottom:814.626667pt;}
.yd4{bottom:816.546667pt;}
.ya6{bottom:823.266667pt;}
.y62{bottom:830.013333pt;}
.yd3{bottom:831.933333pt;}
.ya5{bottom:838.653333pt;}
.y61{bottom:845.373333pt;}
.yd2{bottom:846.973333pt;}
.y108{bottom:848.253333pt;}
.ya1{bottom:851.133333pt;}
.y60{bottom:860.733333pt;}
.ya4{bottom:867.133333pt;}
.yd1{bottom:867.773333pt;}
.y107{bottom:871.933333pt;}
.y5f{bottom:876.093333pt;}
.ya3{bottom:883.133333pt;}
.yd0{bottom:883.773333pt;}
.y106{bottom:886.973333pt;}
.yd{bottom:890.813333pt;}
.y5e{bottom:891.453333pt;}
.yc{bottom:897.853333pt;}
.ya0{bottom:899.133333pt;}
.ycf{bottom:899.773333pt;}
.y105{bottom:902.333333pt;}
.y5d{bottom:906.813333pt;}
.yb{bottom:913.213333pt;}
.y104{bottom:914.813333pt;}
.y9a{bottom:915.133333pt;}
.yce{bottom:915.773333pt;}
.y5c{bottom:922.173333pt;}
.ya{bottom:927.933333pt;}
.y103{bottom:930.813333pt;}
.y9f{bottom:931.133333pt;}
.ycd{bottom:931.773333pt;}
.y5b{bottom:937.533333pt;}
.y102{bottom:946.853333pt;}
.y9e{bottom:947.173333pt;}
.yca{bottom:947.813333pt;}
.y9{bottom:950.693333pt;}
.y5a{bottom:952.933333pt;}
.y101{bottom:962.853333pt;}
.y9d{bottom:963.173333pt;}
.y8{bottom:967.333333pt;}
.y59{bottom:967.973333pt;}
.y56{bottom:970.240000pt;}
.y9c{bottom:979.173333pt;}
.yc9{bottom:983.013333pt;}
.y58{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h26{height:15.026667pt;}
.h25{height:15.066667pt;}
.h19{height:15.346667pt;}
.h1d{height:15.348000pt;}
.h1f{height:15.356000pt;}
.h1a{height:15.360000pt;}
.h22{height:15.378667pt;}
.h21{height:15.386667pt;}
.h1e{height:15.388000pt;}
.h23{height:15.392000pt;}
.h9{height:16.331250pt;}
.h6{height:21.643125pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.h24{height:30.386667pt;}
.h18{height:30.706667pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hf{height:37.537500pt;}
.he{height:40.090000pt;}
.h1b{height:47.346667pt;}
.h1c{height:47.388000pt;}
.hd{height:47.713750pt;}
.h14{height:49.020000pt;}
.h5{height:52.762500pt;}
.h11{height:53.471250pt;}
.h8{height:54.180000pt;}
.h10{height:55.256809pt;}
.h17{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h20{height:79.386667pt;}
.h4{height:103.680000pt;}
.h12{height:167.400000pt;}
.ha{height:628.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:71.680000pt;}
.wf{width:74.258667pt;}
.w7{width:82.240000pt;}
.w29{width:87.104000pt;}
.w2{width:92.180000pt;}
.w27{width:97.000000pt;}
.w1b{width:98.880000pt;}
.w15{width:106.240000pt;}
.w1e{width:107.240000pt;}
.w21{width:116.800000pt;}
.w4{width:117.780000pt;}
.w1d{width:119.072000pt;}
.w12{width:120.040000pt;}
.w24{width:120.360000pt;}
.wa{width:122.880000pt;}
.w9{width:122.944000pt;}
.w11{width:134.106667pt;}
.w26{width:140.826667pt;}
.w20{width:141.826667pt;}
.w14{width:143.426667pt;}
.w6{width:144.960000pt;}
.wd{width:146.626667pt;}
.we{width:147.546667pt;}
.w1a{width:149.506667pt;}
.w25{width:153.626667pt;}
.w22{width:154.920000pt;}
.w28{width:156.200000pt;}
.w2a{width:156.840000pt;}
.w23{width:162.946667pt;}
.w8{width:163.266667pt;}
.w17{width:177.986667pt;}
.w10{width:191.120000pt;}
.w1c{width:202.960000pt;}
.w1f{width:225.360000pt;}
.w16{width:233.360000pt;}
.w13{width:281.993333pt;}
.w19{width:293.193333pt;}
.wc{width:410.706667pt;}
.wb{width:493.920000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:2.240000pt;}
.x58{left:3.180000pt;}
.x64{left:4.146667pt;}
.x51{left:5.106667pt;}
.x1f{left:6.112000pt;}
.x17{left:7.348000pt;}
.x26{left:9.280000pt;}
.x4{left:11.826667pt;}
.x15{left:15.348000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x5b{left:18.546667pt;}
.x6b{left:21.106667pt;}
.x47{left:22.386667pt;}
.x77{left:23.706667pt;}
.x61{left:24.973333pt;}
.x16{left:25.908000pt;}
.x23{left:28.146667pt;}
.x5d{left:29.133333pt;}
.x6c{left:30.386667pt;}
.x49{left:32.946667pt;}
.x6d{left:33.906667pt;}
.x36{left:35.200000pt;}
.x4f{left:37.120000pt;}
.x29{left:38.066667pt;}
.xf{left:39.028000pt;}
.x2a{left:40.946667pt;}
.x1c{left:42.260000pt;}
.x6{left:43.213333pt;}
.x10{left:45.140000pt;}
.x2c{left:46.440000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x7b{left:49.906667pt;}
.x1d{left:50.900000pt;}
.x32{left:53.160000pt;}
.x72{left:54.413333pt;}
.x19{left:55.373333pt;}
.x2d{left:58.266667pt;}
.x31{left:60.520000pt;}
.x27{left:61.466667pt;}
.x2f{left:62.440000pt;}
.x73{left:63.373333pt;}
.x3e{left:64.320000pt;}
.x38{left:65.320000pt;}
.x2b{left:66.280000pt;}
.x13{left:67.542667pt;}
.x34{left:68.840000pt;}
.x1{left:69.804000pt;}
.x68{left:71.053333pt;}
.x5e{left:72.009333pt;}
.x67{left:72.973333pt;}
.x71{left:75.226667pt;}
.x7{left:76.832000pt;}
.x12{left:80.022667pt;}
.x43{left:81.613333pt;}
.x55{left:82.586667pt;}
.x2{left:84.822667pt;}
.x5f{left:86.729333pt;}
.x1e{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x54{left:98.573333pt;}
.x20{left:100.832000pt;}
.x57{left:102.733333pt;}
.x52{left:104.973333pt;}
.x53{left:106.893333pt;}
.x56{left:108.173333pt;}
.x5c{left:109.449333pt;}
.x11{left:110.742667pt;}
.x48{left:114.249333pt;}
.x4a{left:119.049333pt;}
.x4b{left:126.089333pt;}
.x44{left:130.644000pt;}
.x60{left:131.849333pt;}
.x37{left:139.586667pt;}
.x35{left:141.186667pt;}
.x33{left:145.026667pt;}
.x30{left:146.306667pt;}
.x22{left:150.160000pt;}
.x4d{left:154.960000pt;}
.x3{left:162.000000pt;}
.x40{left:173.840000pt;}
.x2e{left:177.026667pt;}
.x63{left:181.520000pt;}
.x18{left:194.640000pt;}
.x78{left:196.240000pt;}
.x75{left:200.733333pt;}
.x3a{left:212.253333pt;}
.xb{left:223.453333pt;}
.x24{left:233.373333pt;}
.x21{left:247.773333pt;}
.x62{left:261.533333pt;}
.x39{left:306.053333pt;}
.x3f{left:315.333333pt;}
.x6e{left:316.613333pt;}
.x4c{left:319.173333pt;}
.x74{left:323.653333pt;}
.x6f{left:332.933333pt;}
.x79{left:353.413333pt;}
.x76{left:355.040000pt;}
.x3c{left:359.520000pt;}
.x41{left:365.600000pt;}
.x69{left:380.640000pt;}
.x65{left:385.440000pt;}
.x4e{left:388.960000pt;}
.xc{left:395.040000pt;}
.x25{left:397.280000pt;}
.x45{left:413.280000pt;}
.x59{left:419.680000pt;}
.x7a{left:441.160000pt;}
.x70{left:496.520000pt;}
.x42{left:500.360000pt;}
.x66{left:505.480000pt;}
.x3d{left:507.720000pt;}
.x28{left:521.200000pt;}
.x6a{left:523.120000pt;}
.x46{left:557.360000pt;}
.x50{left:567.600000pt;}
.x5a{left:569.840000pt;}
.xa{left:576.546667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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