
    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_e737898ad7ad61c179b854c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_3edc29e4749a01b121c14bf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128418;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_fc89bfb03088e2de165ffcf5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_acf339bec60a046fb6b5d7ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.726000;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_e5c646399e67520b7a76d01f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_60fbf0bf84b4081243c90a31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.159000;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_4ba4dbd45d1d843f62925b7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5bc252717aea428d2d783004.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962571;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);}
.v2{vertical-align:-20.790000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.033000px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.063000px;}
.ls1{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.189000px;}
.ls20{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.315000px;}
.ls12{letter-spacing:0.315600px;}
.ls1b{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.441000px;}
.ls1f{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.567000px;}
.ls0{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.630600px;}
.ls13{letter-spacing:0.693000px;}
.ls10{letter-spacing:0.756000px;}
.ls15{letter-spacing:0.819000px;}
.lse{letter-spacing:0.945000px;}
.lsf{letter-spacing:1.197000px;}
.ls11{letter-spacing:1.323000px;}
.ls16{letter-spacing:1.386000px;}
.ls18{letter-spacing:1.449000px;}
.ls17{letter-spacing:1.575000px;}
.ls7{letter-spacing:7.152000px;}
.ls1d{letter-spacing:13.860000px;}
.ls14{letter-spacing:20.664000px;}
.ls1e{letter-spacing:24.381000px;}
.ls4{letter-spacing:24.885000px;}
.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;}
}
.ws15{word-spacing:-29.610000px;}
.ws16{word-spacing:-18.348000px;}
.wsd{word-spacing:-16.695000px;}
.ws0{word-spacing:-16.680000px;}
.ws11{word-spacing:-16.506000px;}
.ws8{word-spacing:-16.500000px;}
.wse{word-spacing:-16.443000px;}
.ws18{word-spacing:-16.317000px;}
.ws17{word-spacing:-16.191000px;}
.ws12{word-spacing:-16.128000px;}
.ws14{word-spacing:-16.065000px;}
.ws6{word-spacing:-15.876000px;}
.ws10{word-spacing:-15.750000px;}
.ws5{word-spacing:-12.000000px;}
.ws3{word-spacing:-9.450000px;}
.ws2{word-spacing:-2.457000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:3.528000px;}
.ws13{word-spacing:4.284000px;}
.ws19{word-spacing:5.040000px;}
.ws4{word-spacing:54.658800px;}
.wsb{word-spacing:197.676000px;}
.ws9{word-spacing:198.894600px;}
.ws7{word-spacing:214.176000px;}
.wsa{word-spacing:220.843800px;}
.wsc{word-spacing:534.019800px;}
._15{margin-left:-15.534000px;}
._52{margin-left:-12.006000px;}
._5{margin-left:-7.875000px;}
._8{margin-left:-6.210000px;}
._9{margin-left:-4.491000px;}
._4{margin-left:-3.024000px;}
._0{margin-left:-1.188000px;}
._2{width:1.671000px;}
._c{width:2.772000px;}
._3{width:3.843000px;}
._d{width:4.851000px;}
._f{width:6.288000px;}
._a{width:7.875000px;}
._14{width:9.576000px;}
._11{width:10.800000px;}
._19{width:11.916000px;}
._6{width:12.942000px;}
._12{width:14.418000px;}
._51{width:15.723000px;}
._1{width:17.292000px;}
._7{width:19.089000px;}
._e{width:20.538000px;}
._17{width:21.546000px;}
._1a{width:23.208000px;}
._b{width:24.255000px;}
._16{width:26.271000px;}
._4f{width:28.098000px;}
._13{width:30.150000px;}
._50{width:38.493000px;}
._42{width:120.429000px;}
._3e{width:122.293200px;}
._33{width:127.084800px;}
._1e{width:134.405400px;}
._34{width:136.929000px;}
._29{width:138.691800px;}
._41{width:143.584800px;}
._1d{width:144.744600px;}
._21{width:160.084800px;}
._25{width:220.843800px;}
._22{width:231.901800px;}
._28{width:239.793000px;}
._39{width:253.843800px;}
._2b{width:312.630000px;}
._2a{width:346.599000px;}
._2c{width:392.469000px;}
._4a{width:411.987000px;}
._24{width:439.377000px;}
._40{width:448.392000px;}
._32{width:451.077000px;}
._45{width:472.311000px;}
._23{width:504.207000px;}
._38{width:509.073000px;}
._30{width:513.447000px;}
._4c{width:514.617000px;}
._3d{width:519.180600px;}
._31{width:530.892000px;}
._43{width:538.989000px;}
._44{width:540.903000px;}
._4b{width:550.519800px;}
._1f{width:553.707000px;}
._26{width:557.403000px;}
._47{width:569.286000px;}
._37{width:573.903000px;}
._4d{width:583.519800px;}
._2f{width:591.639000px;}
._36{width:593.355000px;}
._3a{width:597.729000px;}
._20{width:600.456000px;}
._1c{width:604.317000px;}
._2d{width:608.139000px;}
._35{width:634.425000px;}
._3f{width:638.055000px;}
._2e{width:641.751000px;}
._27{width:644.703000px;}
._3c{width:649.077000px;}
._3b{width:657.507000px;}
._49{width:696.729000px;}
._46{width:703.383000px;}
._1b{width:770.055000px;}
._4e{width:799.425000px;}
._18{width:895.236000px;}
._10{width:904.491000px;}
._48{width:1228.354800px;}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:37.800000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs4{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:89.214150px;}
.y17{bottom:89.238900px;}
.y3f{bottom:89.256900px;}
.yb{bottom:89.270400px;}
.y5f{bottom:89.272650px;}
.y145{bottom:89.290650px;}
.y9d{bottom:89.879550px;}
.y10d{bottom:107.216400px;}
.y16{bottom:107.241150px;}
.y3e{bottom:107.259150px;}
.ya{bottom:107.272650px;}
.y5e{bottom:107.274900px;}
.y144{bottom:107.290650px;}
.y10c{bottom:125.218650px;}
.y15{bottom:125.243400px;}
.y3d{bottom:125.261400px;}
.y9{bottom:125.274900px;}
.y5d{bottom:125.277150px;}
.y143{bottom:125.290650px;}
.y10b{bottom:143.220900px;}
.y14{bottom:143.245650px;}
.y3c{bottom:143.263650px;}
.y8{bottom:143.277150px;}
.y5c{bottom:143.279400px;}
.y142{bottom:143.290650px;}
.y10a{bottom:161.223150px;}
.y13{bottom:161.247900px;}
.y3b{bottom:161.265900px;}
.y7{bottom:161.279400px;}
.y5b{bottom:161.281650px;}
.y141{bottom:161.290650px;}
.y109{bottom:179.225400px;}
.y12{bottom:179.250150px;}
.y3a{bottom:179.268150px;}
.y6{bottom:179.281650px;}
.y5a{bottom:179.283900px;}
.y140{bottom:179.290650px;}
.y108{bottom:197.227650px;}
.y11{bottom:197.252400px;}
.y39{bottom:197.270400px;}
.y5{bottom:197.283900px;}
.y59{bottom:197.286150px;}
.y13f{bottom:197.290650px;}
.y107{bottom:215.229900px;}
.y10{bottom:215.254650px;}
.y38{bottom:215.272650px;}
.y4{bottom:215.286150px;}
.y58{bottom:215.288400px;}
.y13e{bottom:215.290650px;}
.y106{bottom:233.232150px;}
.yf{bottom:233.256900px;}
.y57{bottom:233.272650px;}
.y37{bottom:233.274900px;}
.y3{bottom:233.288400px;}
.y13d{bottom:233.290650px;}
.y105{bottom:251.234400px;}
.ye{bottom:251.259150px;}
.y56{bottom:251.274900px;}
.y36{bottom:251.277150px;}
.y2{bottom:251.290650px;}
.y104{bottom:269.236650px;}
.yd{bottom:269.261400px;}
.y55{bottom:269.277150px;}
.y35{bottom:269.279400px;}
.y13c{bottom:269.290650px;}
.y1{bottom:286.019700px;}
.y103{bottom:287.238900px;}
.yc{bottom:287.263650px;}
.y54{bottom:287.279400px;}
.y34{bottom:287.281650px;}
.y13b{bottom:287.290650px;}
.y102{bottom:305.241150px;}
.y53{bottom:305.281650px;}
.y33{bottom:305.283900px;}
.y13a{bottom:305.290650px;}
.y101{bottom:323.243400px;}
.y52{bottom:323.283900px;}
.y32{bottom:323.286150px;}
.y139{bottom:323.290650px;}
.y1f{bottom:336.187200px;}
.y100{bottom:341.245650px;}
.y51{bottom:341.286150px;}
.y31{bottom:341.288400px;}
.y138{bottom:341.290650px;}
.y1e{bottom:358.687200px;}
.yff{bottom:359.247900px;}
.y50{bottom:359.288400px;}
.y30{bottom:359.290650px;}
.y86{bottom:360.268050px;}
.y85{bottom:375.268050px;}
.y4f{bottom:377.229900px;}
.yfe{bottom:377.250150px;}
.y137{bottom:377.290650px;}
.y1d{bottom:381.187200px;}
.y2f{bottom:385.869750px;}
.y84{bottom:390.268050px;}
.y4e{bottom:395.232150px;}
.yfd{bottom:395.252400px;}
.y136{bottom:395.290650px;}
.y1c{bottom:403.687200px;}
.y83{bottom:405.268050px;}
.y4d{bottom:413.234400px;}
.yfc{bottom:413.254650px;}
.y135{bottom:414.790650px;}
.y82{bottom:420.268050px;}
.yea{bottom:429.378300px;}
.y4c{bottom:431.236650px;}
.yfb{bottom:431.256900px;}
.y2e{bottom:431.263650px;}
.y81{bottom:435.268050px;}
.y1b{bottom:444.187200px;}
.ye9{bottom:444.378300px;}
.y4b{bottom:449.238900px;}
.yfa{bottom:449.259150px;}
.y2d{bottom:449.265900px;}
.y80{bottom:450.268050px;}
.ye8{bottom:459.378300px;}
.y4a{bottom:467.241150px;}
.y134{bottom:467.252400px;}
.yf9{bottom:467.261400px;}
.y2c{bottom:467.268150px;}
.ye7{bottom:474.378300px;}
.y1a{bottom:484.681200px;}
.y49{bottom:485.243400px;}
.y133{bottom:485.254650px;}
.yf8{bottom:485.263650px;}
.y2b{bottom:485.270400px;}
.y48{bottom:503.245650px;}
.y132{bottom:503.256900px;}
.y79{bottom:503.259150px;}
.yf7{bottom:503.265900px;}
.y2a{bottom:503.272650px;}
.y70{bottom:503.281650px;}
.y47{bottom:521.247900px;}
.y131{bottom:521.259150px;}
.y78{bottom:521.261400px;}
.yf6{bottom:521.268150px;}
.y29{bottom:521.274900px;}
.y6f{bottom:521.283900px;}
.y19{bottom:523.687200px;}
.ye6{bottom:539.133150px;}
.yc2{bottom:539.211900px;}
.y46{bottom:539.250150px;}
.y130{bottom:539.261400px;}
.y77{bottom:539.263650px;}
.yf5{bottom:539.270400px;}
.y28{bottom:539.277150px;}
.y6e{bottom:539.286150px;}
.ye5{bottom:557.135400px;}
.yc1{bottom:557.214150px;}
.y45{bottom:557.252400px;}
.y171{bottom:557.259150px;}
.y12f{bottom:557.263650px;}
.y76{bottom:557.265900px;}
.yf4{bottom:557.272650px;}
.y27{bottom:557.279400px;}
.y6d{bottom:557.288400px;}
.ye4{bottom:575.137650px;}
.yc0{bottom:575.216400px;}
.y44{bottom:575.254650px;}
.y170{bottom:575.261400px;}
.y12e{bottom:575.265900px;}
.y75{bottom:575.268150px;}
.yf3{bottom:575.274900px;}
.y26{bottom:575.281650px;}
.y6c{bottom:575.288400px;}
.ye3{bottom:593.139900px;}
.ybf{bottom:593.218650px;}
.y43{bottom:593.256900px;}
.y16f{bottom:593.263650px;}
.y12d{bottom:593.268150px;}
.y74{bottom:593.270400px;}
.yf2{bottom:593.277150px;}
.y25{bottom:593.283900px;}
.y6b{bottom:593.288400px;}
.y9e{bottom:607.535550px;}
.ye2{bottom:611.142150px;}
.ybe{bottom:611.220900px;}
.y42{bottom:611.259150px;}
.y16e{bottom:611.265900px;}
.y12c{bottom:611.270400px;}
.y73{bottom:611.272650px;}
.yf1{bottom:611.279400px;}
.y24{bottom:611.286150px;}
.y6a{bottom:611.288400px;}
.y160{bottom:611.290650px;}
.y20{bottom:611.786700px;}
.ye1{bottom:629.144400px;}
.ybd{bottom:629.223150px;}
.y41{bottom:629.261400px;}
.y16d{bottom:629.268150px;}
.y12b{bottom:629.272650px;}
.y72{bottom:629.274900px;}
.yf0{bottom:629.281650px;}
.y69{bottom:629.286150px;}
.y23{bottom:629.288400px;}
.y15f{bottom:629.290650px;}
.y9c{bottom:636.728400px;}
.ye0{bottom:647.146650px;}
.ybc{bottom:647.225400px;}
.y40{bottom:647.263650px;}
.y16c{bottom:647.270400px;}
.y12a{bottom:647.274900px;}
.y71{bottom:647.277150px;}
.yef{bottom:647.283900px;}
.y68{bottom:647.288400px;}
.y22{bottom:647.290650px;}
.y9b{bottom:661.717950px;}
.ydf{bottom:665.148900px;}
.ybb{bottom:665.227650px;}
.y16b{bottom:665.272650px;}
.y129{bottom:665.277150px;}
.y67{bottom:665.279400px;}
.yee{bottom:665.286150px;}
.y15e{bottom:665.290650px;}
.yde{bottom:683.151150px;}
.yba{bottom:683.229900px;}
.y16a{bottom:683.274900px;}
.y128{bottom:683.279400px;}
.y66{bottom:683.281650px;}
.yed{bottom:683.288400px;}
.y15d{bottom:683.290650px;}
.y9a{bottom:686.840550px;}
.ydd{bottom:701.153400px;}
.yb9{bottom:701.232150px;}
.y169{bottom:701.277150px;}
.y127{bottom:701.281650px;}
.y65{bottom:701.283900px;}
.yec{bottom:701.290650px;}
.y61{bottom:703.083150px;}
.y99{bottom:712.531500px;}
.y60{bottom:718.083150px;}
.ydc{bottom:719.155650px;}
.yb8{bottom:719.234400px;}
.y168{bottom:719.279400px;}
.y126{bottom:719.283900px;}
.y64{bottom:719.286150px;}
.y15c{bottom:719.290650px;}
.yeb{bottom:727.869750px;}
.ydb{bottom:737.157900px;}
.yb7{bottom:737.236650px;}
.y167{bottom:737.281650px;}
.y125{bottom:737.286150px;}
.y63{bottom:737.288400px;}
.y15b{bottom:737.290650px;}
.y98{bottom:737.653950px;}
.yda{bottom:755.160150px;}
.yb6{bottom:755.238900px;}
.y166{bottom:755.283900px;}
.y124{bottom:755.288400px;}
.y62{bottom:755.290650px;}
.y97{bottom:762.776400px;}
.yd9{bottom:773.162400px;}
.yb5{bottom:773.241150px;}
.y165{bottom:773.286150px;}
.y123{bottom:773.290650px;}
.y96{bottom:787.899000px;}
.yd8{bottom:791.164650px;}
.yb4{bottom:791.243400px;}
.y164{bottom:791.288400px;}
.y15a{bottom:791.290650px;}
.y122{bottom:799.869750px;}
.yd7{bottom:809.166900px;}
.yb3{bottom:809.245650px;}
.y159{bottom:809.290650px;}
.y95{bottom:813.021600px;}
.yd6{bottom:827.169150px;}
.yb2{bottom:827.247900px;}
.y158{bottom:827.290650px;}
.y94{bottom:838.144050px;}
.y121{bottom:845.166900px;}
.yd5{bottom:845.171400px;}
.yb1{bottom:845.250150px;}
.y157{bottom:845.290650px;}
.y163{bottom:845.798250px;}
.y120{bottom:863.169150px;}
.yd4{bottom:863.173650px;}
.yb0{bottom:863.252400px;}
.y93{bottom:863.266500px;}
.y156{bottom:863.290650px;}
.y162{bottom:863.799750px;}
.y11f{bottom:881.171400px;}
.yd3{bottom:881.175900px;}
.yaf{bottom:881.254650px;}
.y155{bottom:881.290650px;}
.y92{bottom:888.388950px;}
.y161{bottom:889.869750px;}
.y11e{bottom:899.173650px;}
.yd2{bottom:899.178150px;}
.yae{bottom:899.256900px;}
.y154{bottom:899.290650px;}
.y91{bottom:913.511550px;}
.y11d{bottom:917.175900px;}
.yd1{bottom:917.180400px;}
.yad{bottom:917.259150px;}
.y153{bottom:917.290650px;}
.y11c{bottom:935.178150px;}
.yd0{bottom:935.182650px;}
.yac{bottom:935.261400px;}
.y152{bottom:935.290650px;}
.y90{bottom:938.634000px;}
.y11b{bottom:953.180400px;}
.ycf{bottom:953.184900px;}
.yab{bottom:953.263650px;}
.y151{bottom:953.290650px;}
.y8f{bottom:963.756600px;}
.y11a{bottom:971.182650px;}
.yce{bottom:971.187150px;}
.yaa{bottom:971.265900px;}
.y150{bottom:971.290650px;}
.y8e{bottom:988.879050px;}
.y119{bottom:989.184900px;}
.ycd{bottom:989.189400px;}
.ya9{bottom:989.268150px;}
.y14f{bottom:989.290650px;}
.y118{bottom:1007.187150px;}
.ycc{bottom:1007.191650px;}
.ya8{bottom:1007.270400px;}
.y14e{bottom:1007.290650px;}
.y8d{bottom:1014.001500px;}
.y117{bottom:1025.189400px;}
.ycb{bottom:1025.193900px;}
.ya7{bottom:1025.272650px;}
.y14d{bottom:1025.290650px;}
.y8c{bottom:1039.123950px;}
.y116{bottom:1043.191650px;}
.yca{bottom:1043.196150px;}
.ya6{bottom:1043.274900px;}
.y14c{bottom:1043.290650px;}
.y115{bottom:1061.193900px;}
.yc9{bottom:1061.198400px;}
.ya5{bottom:1061.277150px;}
.y14b{bottom:1061.290650px;}
.y8b{bottom:1064.246400px;}
.y114{bottom:1079.196150px;}
.yc8{bottom:1079.200650px;}
.ya4{bottom:1079.279400px;}
.y14a{bottom:1079.290650px;}
.y8a{bottom:1089.369000px;}
.y113{bottom:1097.198400px;}
.yc7{bottom:1097.202900px;}
.ya3{bottom:1097.281650px;}
.y149{bottom:1097.290650px;}
.y7f{bottom:1098.046500px;}
.y7e{bottom:1113.046500px;}
.y89{bottom:1114.491450px;}
.y112{bottom:1115.200650px;}
.yc6{bottom:1115.205150px;}
.ya2{bottom:1115.283900px;}
.y148{bottom:1115.290650px;}
.y7d{bottom:1128.046500px;}
.y111{bottom:1133.202900px;}
.yc5{bottom:1133.207400px;}
.ya1{bottom:1133.286150px;}
.y147{bottom:1133.290650px;}
.y88{bottom:1139.613900px;}
.y7c{bottom:1143.046500px;}
.y110{bottom:1151.205150px;}
.yc4{bottom:1151.209650px;}
.ya0{bottom:1151.288400px;}
.y146{bottom:1151.290650px;}
.y7b{bottom:1158.046500px;}
.y87{bottom:1164.869400px;}
.y10f{bottom:1169.207400px;}
.yc3{bottom:1169.211900px;}
.y9f{bottom:1169.290650px;}
.y7a{bottom:1173.046500px;}
.y18{bottom:1209.027150px;}
.y21{bottom:1300.356900px;}
.h13{height:42.234375px;}
.h12{height:43.804688px;}
.h8{height:46.128000px;}
.h9{height:50.062500px;}
.h4{height:54.780000px;}
.h3{height:57.493652px;}
.he{height:57.502652px;}
.hd{height:57.511652px;}
.hf{height:57.529652px;}
.hc{height:57.538652px;}
.hb{height:57.565652px;}
.ha{height:57.736652px;}
.h10{height:58.813477px;}
.h11{height:60.231445px;}
.h2{height:60.258000px;}
.h7{height:64.160156px;}
.h6{height:68.630859px;}
.h5{height:120.516000px;}
.h1{height:1279.500000px;}
.h0{height:1279.841700px;}
.w1{width:909.750000px;}
.w0{width:909.920700px;}
.x0{left:0.000000px;}
.x6{left:13.003200px;}
.x7{left:80.786700px;}
.x1{left:85.037850px;}
.xe{left:90.340650px;}
.x8{left:95.245200px;}
.x10{left:97.793850px;}
.xb{left:99.496350px;}
.x3{left:113.976450px;}
.x4{left:181.956450px;}
.x5{left:333.620100px;}
.x9{left:463.322700px;}
.x2{left:467.684100px;}
.xf{left:476.219700px;}
.xa{left:477.796950px;}
.x11{left:480.473850px;}
.xc{left:482.178600px;}
.xd{left:663.304500px;}
@media print{
.v2{vertical-align:-18.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.696000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.056000pt;}
.ls1{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.168000pt;}
.ls20{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.280000pt;}
.ls12{letter-spacing:0.280533pt;}
.ls1b{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.392000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.504000pt;}
.ls0{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.560533pt;}
.ls13{letter-spacing:0.616000pt;}
.ls10{letter-spacing:0.672000pt;}
.ls15{letter-spacing:0.728000pt;}
.lse{letter-spacing:0.840000pt;}
.lsf{letter-spacing:1.064000pt;}
.ls11{letter-spacing:1.176000pt;}
.ls16{letter-spacing:1.232000pt;}
.ls18{letter-spacing:1.288000pt;}
.ls17{letter-spacing:1.400000pt;}
.ls7{letter-spacing:6.357333pt;}
.ls1d{letter-spacing:12.320000pt;}
.ls14{letter-spacing:18.368000pt;}
.ls1e{letter-spacing:21.672000pt;}
.ls4{letter-spacing:22.120000pt;}
.ws15{word-spacing:-26.320000pt;}
.ws16{word-spacing:-16.309333pt;}
.wsd{word-spacing:-14.840000pt;}
.ws0{word-spacing:-14.826667pt;}
.ws11{word-spacing:-14.672000pt;}
.ws8{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.616000pt;}
.ws18{word-spacing:-14.504000pt;}
.ws17{word-spacing:-14.392000pt;}
.ws12{word-spacing:-14.336000pt;}
.ws14{word-spacing:-14.280000pt;}
.ws6{word-spacing:-14.112000pt;}
.ws10{word-spacing:-14.000000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws3{word-spacing:-8.400000pt;}
.ws2{word-spacing:-2.184000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:3.136000pt;}
.ws13{word-spacing:3.808000pt;}
.ws19{word-spacing:4.480000pt;}
.ws4{word-spacing:48.585600pt;}
.wsb{word-spacing:175.712000pt;}
.ws9{word-spacing:176.795200pt;}
.ws7{word-spacing:190.378667pt;}
.wsa{word-spacing:196.305600pt;}
.wsc{word-spacing:474.684267pt;}
._15{margin-left:-13.808000pt;}
._52{margin-left:-10.672000pt;}
._5{margin-left:-7.000000pt;}
._8{margin-left:-5.520000pt;}
._9{margin-left:-3.992000pt;}
._4{margin-left:-2.688000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.485333pt;}
._c{width:2.464000pt;}
._3{width:3.416000pt;}
._d{width:4.312000pt;}
._f{width:5.589333pt;}
._a{width:7.000000pt;}
._14{width:8.512000pt;}
._11{width:9.600000pt;}
._19{width:10.592000pt;}
._6{width:11.504000pt;}
._12{width:12.816000pt;}
._51{width:13.976000pt;}
._1{width:15.370667pt;}
._7{width:16.968000pt;}
._e{width:18.256000pt;}
._17{width:19.152000pt;}
._1a{width:20.629333pt;}
._b{width:21.560000pt;}
._16{width:23.352000pt;}
._4f{width:24.976000pt;}
._13{width:26.800000pt;}
._50{width:34.216000pt;}
._42{width:107.048000pt;}
._3e{width:108.705067pt;}
._33{width:112.964267pt;}
._1e{width:119.471467pt;}
._34{width:121.714667pt;}
._29{width:123.281600pt;}
._41{width:127.630933pt;}
._1d{width:128.661867pt;}
._21{width:142.297600pt;}
._25{width:196.305600pt;}
._22{width:206.134933pt;}
._28{width:213.149333pt;}
._39{width:225.638933pt;}
._2b{width:277.893333pt;}
._2a{width:308.088000pt;}
._2c{width:348.861333pt;}
._4a{width:366.210667pt;}
._24{width:390.557333pt;}
._40{width:398.570667pt;}
._32{width:400.957333pt;}
._45{width:419.832000pt;}
._23{width:448.184000pt;}
._38{width:452.509333pt;}
._30{width:456.397333pt;}
._4c{width:457.437333pt;}
._3d{width:461.493867pt;}
._31{width:471.904000pt;}
._43{width:479.101333pt;}
._44{width:480.802667pt;}
._4b{width:489.350933pt;}
._1f{width:492.184000pt;}
._26{width:495.469333pt;}
._47{width:506.032000pt;}
._37{width:510.136000pt;}
._4d{width:518.684267pt;}
._2f{width:525.901333pt;}
._36{width:527.426667pt;}
._3a{width:531.314667pt;}
._20{width:533.738667pt;}
._1c{width:537.170667pt;}
._2d{width:540.568000pt;}
._35{width:563.933333pt;}
._3f{width:567.160000pt;}
._2e{width:570.445333pt;}
._27{width:573.069333pt;}
._3c{width:576.957333pt;}
._3b{width:584.450667pt;}
._49{width:619.314667pt;}
._46{width:625.229333pt;}
._1b{width:684.493333pt;}
._4e{width:710.600000pt;}
._18{width:795.765333pt;}
._10{width:803.992000pt;}
._48{width:1091.870933pt;}
.fs7{font-size:33.600000pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs4{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:79.301467pt;}
.y17{bottom:79.323467pt;}
.y3f{bottom:79.339467pt;}
.yb{bottom:79.351467pt;}
.y5f{bottom:79.353467pt;}
.y145{bottom:79.369467pt;}
.y9d{bottom:79.892933pt;}
.y10d{bottom:95.303467pt;}
.y16{bottom:95.325467pt;}
.y3e{bottom:95.341467pt;}
.ya{bottom:95.353467pt;}
.y5e{bottom:95.355467pt;}
.y144{bottom:95.369467pt;}
.y10c{bottom:111.305467pt;}
.y15{bottom:111.327467pt;}
.y3d{bottom:111.343467pt;}
.y9{bottom:111.355467pt;}
.y5d{bottom:111.357467pt;}
.y143{bottom:111.369467pt;}
.y10b{bottom:127.307467pt;}
.y14{bottom:127.329467pt;}
.y3c{bottom:127.345467pt;}
.y8{bottom:127.357467pt;}
.y5c{bottom:127.359467pt;}
.y142{bottom:127.369467pt;}
.y10a{bottom:143.309467pt;}
.y13{bottom:143.331467pt;}
.y3b{bottom:143.347467pt;}
.y7{bottom:143.359467pt;}
.y5b{bottom:143.361467pt;}
.y141{bottom:143.369467pt;}
.y109{bottom:159.311467pt;}
.y12{bottom:159.333467pt;}
.y3a{bottom:159.349467pt;}
.y6{bottom:159.361467pt;}
.y5a{bottom:159.363467pt;}
.y140{bottom:159.369467pt;}
.y108{bottom:175.313467pt;}
.y11{bottom:175.335467pt;}
.y39{bottom:175.351467pt;}
.y5{bottom:175.363467pt;}
.y59{bottom:175.365467pt;}
.y13f{bottom:175.369467pt;}
.y107{bottom:191.315467pt;}
.y10{bottom:191.337467pt;}
.y38{bottom:191.353467pt;}
.y4{bottom:191.365467pt;}
.y58{bottom:191.367467pt;}
.y13e{bottom:191.369467pt;}
.y106{bottom:207.317467pt;}
.yf{bottom:207.339467pt;}
.y57{bottom:207.353467pt;}
.y37{bottom:207.355467pt;}
.y3{bottom:207.367467pt;}
.y13d{bottom:207.369467pt;}
.y105{bottom:223.319467pt;}
.ye{bottom:223.341467pt;}
.y56{bottom:223.355467pt;}
.y36{bottom:223.357467pt;}
.y2{bottom:223.369467pt;}
.y104{bottom:239.321467pt;}
.yd{bottom:239.343467pt;}
.y55{bottom:239.357467pt;}
.y35{bottom:239.359467pt;}
.y13c{bottom:239.369467pt;}
.y1{bottom:254.239733pt;}
.y103{bottom:255.323467pt;}
.yc{bottom:255.345467pt;}
.y54{bottom:255.359467pt;}
.y34{bottom:255.361467pt;}
.y13b{bottom:255.369467pt;}
.y102{bottom:271.325467pt;}
.y53{bottom:271.361467pt;}
.y33{bottom:271.363467pt;}
.y13a{bottom:271.369467pt;}
.y101{bottom:287.327467pt;}
.y52{bottom:287.363467pt;}
.y32{bottom:287.365467pt;}
.y139{bottom:287.369467pt;}
.y1f{bottom:298.833067pt;}
.y100{bottom:303.329467pt;}
.y51{bottom:303.365467pt;}
.y31{bottom:303.367467pt;}
.y138{bottom:303.369467pt;}
.y1e{bottom:318.833067pt;}
.yff{bottom:319.331467pt;}
.y50{bottom:319.367467pt;}
.y30{bottom:319.369467pt;}
.y86{bottom:320.238267pt;}
.y85{bottom:333.571600pt;}
.y4f{bottom:335.315467pt;}
.yfe{bottom:335.333467pt;}
.y137{bottom:335.369467pt;}
.y1d{bottom:338.833067pt;}
.y2f{bottom:342.995333pt;}
.y84{bottom:346.904933pt;}
.y4e{bottom:351.317467pt;}
.yfd{bottom:351.335467pt;}
.y136{bottom:351.369467pt;}
.y1c{bottom:358.833067pt;}
.y83{bottom:360.238267pt;}
.y4d{bottom:367.319467pt;}
.yfc{bottom:367.337467pt;}
.y135{bottom:368.702800pt;}
.y82{bottom:373.571600pt;}
.yea{bottom:381.669600pt;}
.y4c{bottom:383.321467pt;}
.yfb{bottom:383.339467pt;}
.y2e{bottom:383.345467pt;}
.y81{bottom:386.904933pt;}
.y1b{bottom:394.833067pt;}
.ye9{bottom:395.002933pt;}
.y4b{bottom:399.323467pt;}
.yfa{bottom:399.341467pt;}
.y2d{bottom:399.347467pt;}
.y80{bottom:400.238267pt;}
.ye8{bottom:408.336267pt;}
.y4a{bottom:415.325467pt;}
.y134{bottom:415.335467pt;}
.yf9{bottom:415.343467pt;}
.y2c{bottom:415.349467pt;}
.ye7{bottom:421.669600pt;}
.y1a{bottom:430.827733pt;}
.y49{bottom:431.327467pt;}
.y133{bottom:431.337467pt;}
.yf8{bottom:431.345467pt;}
.y2b{bottom:431.351467pt;}
.y48{bottom:447.329467pt;}
.y132{bottom:447.339467pt;}
.y79{bottom:447.341467pt;}
.yf7{bottom:447.347467pt;}
.y2a{bottom:447.353467pt;}
.y70{bottom:447.361467pt;}
.y47{bottom:463.331467pt;}
.y131{bottom:463.341467pt;}
.y78{bottom:463.343467pt;}
.yf6{bottom:463.349467pt;}
.y29{bottom:463.355467pt;}
.y6f{bottom:463.363467pt;}
.y19{bottom:465.499733pt;}
.ye6{bottom:479.229467pt;}
.yc2{bottom:479.299467pt;}
.y46{bottom:479.333467pt;}
.y130{bottom:479.343467pt;}
.y77{bottom:479.345467pt;}
.yf5{bottom:479.351467pt;}
.y28{bottom:479.357467pt;}
.y6e{bottom:479.365467pt;}
.ye5{bottom:495.231467pt;}
.yc1{bottom:495.301467pt;}
.y45{bottom:495.335467pt;}
.y171{bottom:495.341467pt;}
.y12f{bottom:495.345467pt;}
.y76{bottom:495.347467pt;}
.yf4{bottom:495.353467pt;}
.y27{bottom:495.359467pt;}
.y6d{bottom:495.367467pt;}
.ye4{bottom:511.233467pt;}
.yc0{bottom:511.303467pt;}
.y44{bottom:511.337467pt;}
.y170{bottom:511.343467pt;}
.y12e{bottom:511.347467pt;}
.y75{bottom:511.349467pt;}
.yf3{bottom:511.355467pt;}
.y26{bottom:511.361467pt;}
.y6c{bottom:511.367467pt;}
.ye3{bottom:527.235467pt;}
.ybf{bottom:527.305467pt;}
.y43{bottom:527.339467pt;}
.y16f{bottom:527.345467pt;}
.y12d{bottom:527.349467pt;}
.y74{bottom:527.351467pt;}
.yf2{bottom:527.357467pt;}
.y25{bottom:527.363467pt;}
.y6b{bottom:527.367467pt;}
.y9e{bottom:540.031600pt;}
.ye2{bottom:543.237467pt;}
.ybe{bottom:543.307467pt;}
.y42{bottom:543.341467pt;}
.y16e{bottom:543.347467pt;}
.y12c{bottom:543.351467pt;}
.y73{bottom:543.353467pt;}
.yf1{bottom:543.359467pt;}
.y24{bottom:543.365467pt;}
.y6a{bottom:543.367467pt;}
.y160{bottom:543.369467pt;}
.y20{bottom:543.810400pt;}
.ye1{bottom:559.239467pt;}
.ybd{bottom:559.309467pt;}
.y41{bottom:559.343467pt;}
.y16d{bottom:559.349467pt;}
.y12b{bottom:559.353467pt;}
.y72{bottom:559.355467pt;}
.yf0{bottom:559.361467pt;}
.y69{bottom:559.365467pt;}
.y23{bottom:559.367467pt;}
.y15f{bottom:559.369467pt;}
.y9c{bottom:565.980800pt;}
.ye0{bottom:575.241467pt;}
.ybc{bottom:575.311467pt;}
.y40{bottom:575.345467pt;}
.y16c{bottom:575.351467pt;}
.y12a{bottom:575.355467pt;}
.y71{bottom:575.357467pt;}
.yef{bottom:575.363467pt;}
.y68{bottom:575.367467pt;}
.y22{bottom:575.369467pt;}
.y9b{bottom:588.193733pt;}
.ydf{bottom:591.243467pt;}
.ybb{bottom:591.313467pt;}
.y16b{bottom:591.353467pt;}
.y129{bottom:591.357467pt;}
.y67{bottom:591.359467pt;}
.yee{bottom:591.365467pt;}
.y15e{bottom:591.369467pt;}
.yde{bottom:607.245467pt;}
.yba{bottom:607.315467pt;}
.y16a{bottom:607.355467pt;}
.y128{bottom:607.359467pt;}
.y66{bottom:607.361467pt;}
.yed{bottom:607.367467pt;}
.y15d{bottom:607.369467pt;}
.y9a{bottom:610.524933pt;}
.ydd{bottom:623.247467pt;}
.yb9{bottom:623.317467pt;}
.y169{bottom:623.357467pt;}
.y127{bottom:623.361467pt;}
.y65{bottom:623.363467pt;}
.yec{bottom:623.369467pt;}
.y61{bottom:624.962800pt;}
.y99{bottom:633.361333pt;}
.y60{bottom:638.296133pt;}
.ydc{bottom:639.249467pt;}
.yb8{bottom:639.319467pt;}
.y168{bottom:639.359467pt;}
.y126{bottom:639.363467pt;}
.y64{bottom:639.365467pt;}
.y15c{bottom:639.369467pt;}
.yeb{bottom:646.995333pt;}
.ydb{bottom:655.251467pt;}
.yb7{bottom:655.321467pt;}
.y167{bottom:655.361467pt;}
.y125{bottom:655.365467pt;}
.y63{bottom:655.367467pt;}
.y15b{bottom:655.369467pt;}
.y98{bottom:655.692400pt;}
.yda{bottom:671.253467pt;}
.yb6{bottom:671.323467pt;}
.y166{bottom:671.363467pt;}
.y124{bottom:671.367467pt;}
.y62{bottom:671.369467pt;}
.y97{bottom:678.023467pt;}
.yd9{bottom:687.255467pt;}
.yb5{bottom:687.325467pt;}
.y165{bottom:687.365467pt;}
.y123{bottom:687.369467pt;}
.y96{bottom:700.354667pt;}
.yd8{bottom:703.257467pt;}
.yb4{bottom:703.327467pt;}
.y164{bottom:703.367467pt;}
.y15a{bottom:703.369467pt;}
.y122{bottom:710.995333pt;}
.yd7{bottom:719.259467pt;}
.yb3{bottom:719.329467pt;}
.y159{bottom:719.369467pt;}
.y95{bottom:722.685867pt;}
.yd6{bottom:735.261467pt;}
.yb2{bottom:735.331467pt;}
.y158{bottom:735.369467pt;}
.y94{bottom:745.016933pt;}
.y121{bottom:751.259467pt;}
.yd5{bottom:751.263467pt;}
.yb1{bottom:751.333467pt;}
.y157{bottom:751.369467pt;}
.y163{bottom:751.820667pt;}
.y120{bottom:767.261467pt;}
.yd4{bottom:767.265467pt;}
.yb0{bottom:767.335467pt;}
.y93{bottom:767.348000pt;}
.y156{bottom:767.369467pt;}
.y162{bottom:767.822000pt;}
.y11f{bottom:783.263467pt;}
.yd3{bottom:783.267467pt;}
.yaf{bottom:783.337467pt;}
.y155{bottom:783.369467pt;}
.y92{bottom:789.679067pt;}
.y161{bottom:790.995333pt;}
.y11e{bottom:799.265467pt;}
.yd2{bottom:799.269467pt;}
.yae{bottom:799.339467pt;}
.y154{bottom:799.369467pt;}
.y91{bottom:812.010267pt;}
.y11d{bottom:815.267467pt;}
.yd1{bottom:815.271467pt;}
.yad{bottom:815.341467pt;}
.y153{bottom:815.369467pt;}
.y11c{bottom:831.269467pt;}
.yd0{bottom:831.273467pt;}
.yac{bottom:831.343467pt;}
.y152{bottom:831.369467pt;}
.y90{bottom:834.341333pt;}
.y11b{bottom:847.271467pt;}
.ycf{bottom:847.275467pt;}
.yab{bottom:847.345467pt;}
.y151{bottom:847.369467pt;}
.y8f{bottom:856.672533pt;}
.y11a{bottom:863.273467pt;}
.yce{bottom:863.277467pt;}
.yaa{bottom:863.347467pt;}
.y150{bottom:863.369467pt;}
.y8e{bottom:879.003600pt;}
.y119{bottom:879.275467pt;}
.ycd{bottom:879.279467pt;}
.ya9{bottom:879.349467pt;}
.y14f{bottom:879.369467pt;}
.y118{bottom:895.277467pt;}
.ycc{bottom:895.281467pt;}
.ya8{bottom:895.351467pt;}
.y14e{bottom:895.369467pt;}
.y8d{bottom:901.334667pt;}
.y117{bottom:911.279467pt;}
.ycb{bottom:911.283467pt;}
.ya7{bottom:911.353467pt;}
.y14d{bottom:911.369467pt;}
.y8c{bottom:923.665733pt;}
.y116{bottom:927.281467pt;}
.yca{bottom:927.285467pt;}
.ya6{bottom:927.355467pt;}
.y14c{bottom:927.369467pt;}
.y115{bottom:943.283467pt;}
.yc9{bottom:943.287467pt;}
.ya5{bottom:943.357467pt;}
.y14b{bottom:943.369467pt;}
.y8b{bottom:945.996800pt;}
.y114{bottom:959.285467pt;}
.yc8{bottom:959.289467pt;}
.ya4{bottom:959.359467pt;}
.y14a{bottom:959.369467pt;}
.y8a{bottom:968.328000pt;}
.y113{bottom:975.287467pt;}
.yc7{bottom:975.291467pt;}
.ya3{bottom:975.361467pt;}
.y149{bottom:975.369467pt;}
.y7f{bottom:976.041333pt;}
.y7e{bottom:989.374667pt;}
.y89{bottom:990.659067pt;}
.y112{bottom:991.289467pt;}
.yc6{bottom:991.293467pt;}
.ya2{bottom:991.363467pt;}
.y148{bottom:991.369467pt;}
.y7d{bottom:1002.708000pt;}
.y111{bottom:1007.291467pt;}
.yc5{bottom:1007.295467pt;}
.ya1{bottom:1007.365467pt;}
.y147{bottom:1007.369467pt;}
.y88{bottom:1012.990133pt;}
.y7c{bottom:1016.041333pt;}
.y110{bottom:1023.293467pt;}
.yc4{bottom:1023.297467pt;}
.ya0{bottom:1023.367467pt;}
.y146{bottom:1023.369467pt;}
.y7b{bottom:1029.374667pt;}
.y87{bottom:1035.439467pt;}
.y10f{bottom:1039.295467pt;}
.yc3{bottom:1039.299467pt;}
.y9f{bottom:1039.369467pt;}
.y7a{bottom:1042.708000pt;}
.y18{bottom:1074.690800pt;}
.y21{bottom:1155.872800pt;}
.h13{height:37.541667pt;}
.h12{height:38.937500pt;}
.h8{height:41.002667pt;}
.h9{height:44.500000pt;}
.h4{height:48.693333pt;}
.h3{height:51.105469pt;}
.he{height:51.113469pt;}
.hd{height:51.121469pt;}
.hf{height:51.137469pt;}
.hc{height:51.145469pt;}
.hb{height:51.169469pt;}
.ha{height:51.321469pt;}
.h10{height:52.278646pt;}
.h11{height:53.539062pt;}
.h2{height:53.562667pt;}
.h7{height:57.031250pt;}
.h6{height:61.005208pt;}
.h5{height:107.125333pt;}
.h1{height:1137.333333pt;}
.h0{height:1137.637067pt;}
.w1{width:808.666667pt;}
.w0{width:808.818400pt;}
.x0{left:0.000000pt;}
.x6{left:11.558400pt;}
.x7{left:71.810400pt;}
.x1{left:75.589200pt;}
.xe{left:80.302800pt;}
.x8{left:84.662400pt;}
.x10{left:86.927867pt;}
.xb{left:88.441200pt;}
.x3{left:101.312400pt;}
.x4{left:161.739067pt;}
.x5{left:296.551200pt;}
.x9{left:411.842400pt;}
.x2{left:415.719200pt;}
.xf{left:423.306400pt;}
.xa{left:424.708400pt;}
.x11{left:427.087867pt;}
.xc{left:428.603200pt;}
.xd{left:589.604000pt;}
}




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