
    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_486f2406165cdf11d34c906a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e80acac8bdad11a2e5bdcefd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_62a584d85b0b67e97893d68d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f21e0a895b416a8b08f42d62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a177e6768abbfc4cd91eb937.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_85fa61e7ad362a16af65bb43.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_999660141f510ea5eac09130.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_e741c519def629be535412f0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_097502098326acc184ea61e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_47ab2562f7d9921e11618755.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-93.600000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-0.792000px;}
.ls29{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.lsf{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.552000px;}
.ls2b{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.864000px;}
.ls15{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.440000px;}
.ls31{letter-spacing:1.872000px;}
.ls1b{letter-spacing:2.160000px;}
.ls27{letter-spacing:3.600000px;}
.ls2e{letter-spacing:5.040000px;}
.ls33{letter-spacing:5.760000px;}
.ls4{letter-spacing:6.480000px;}
.ls2f{letter-spacing:7.200000px;}
.ls7{letter-spacing:8.640000px;}
.ls28{letter-spacing:10.080000px;}
.lsb{letter-spacing:12.240000px;}
.lsd{letter-spacing:17.280000px;}
.ls18{letter-spacing:18.720000px;}
.ls35{letter-spacing:23.040000px;}
.lse{letter-spacing:25.200000px;}
.lsc{letter-spacing:28.080000px;}
.ls32{letter-spacing:28.800000px;}
.ls2a{letter-spacing:32.400000px;}
.ls1e{letter-spacing:41.760000px;}
.ls2c{letter-spacing:43.320000px;}
.ls2d{letter-spacing:47.664000px;}
.ls30{letter-spacing:50.400000px;}
.ls34{letter-spacing:54.288000px;}
.ls1f{letter-spacing:115.200000px;}
.ls26{letter-spacing:194.400000px;}
.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;}
}
.ws13{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.496000px;}
.ws10{word-spacing:-17.424000px;}
.wsf{word-spacing:-17.352000px;}
.ws12{word-spacing:-17.280000px;}
.wsd{word-spacing:-17.208000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-2.412000px;}
._1{margin-left:-1.296000px;}
._0{width:1.104000px;}
._13{width:2.304000px;}
._d{width:3.780000px;}
._3{width:5.292000px;}
._2{width:6.552000px;}
._32{width:7.704000px;}
._4{width:8.784000px;}
._5{width:10.176000px;}
._b{width:11.340000px;}
._9{width:13.032000px;}
._a{width:14.076000px;}
._e{width:15.120000px;}
._f{width:16.236000px;}
._11{width:19.008000px;}
._10{width:20.016000px;}
._31{width:21.108000px;}
._67{width:22.392000px;}
._7{width:23.736000px;}
._8{width:25.560000px;}
._6{width:27.192000px;}
._c{width:29.016000px;}
._12{width:30.312000px;}
._26{width:31.320000px;}
._45{width:33.288000px;}
._6e{width:34.512000px;}
._6c{width:35.712000px;}
._14{width:36.864000px;}
._1e{width:38.808000px;}
._1f{width:40.500000px;}
._59{width:41.772000px;}
._58{width:42.876000px;}
._29{width:43.992000px;}
._17{width:45.912000px;}
._3c{width:47.304000px;}
._1d{width:50.520000px;}
._78{width:53.436000px;}
._2b{width:54.720000px;}
._1c{width:65.628000px;}
._77{width:67.380000px;}
._7c{width:71.496000px;}
._22{width:73.800000px;}
._23{width:75.720000px;}
._5a{width:80.832000px;}
._70{width:88.020000px;}
._3e{width:99.972000px;}
._34{width:101.448000px;}
._3d{width:103.248000px;}
._16{width:104.304000px;}
._2a{width:108.444000px;}
._39{width:110.568000px;}
._60{width:112.464000px;}
._21{width:114.276000px;}
._20{width:115.668000px;}
._64{width:120.132000px;}
._30{width:125.892000px;}
._57{width:130.320000px;}
._41{width:150.300000px;}
._2d{width:160.272000px;}
._2c{width:164.268000px;}
._4e{width:172.512000px;}
._35{width:176.580000px;}
._48{width:190.380000px;}
._1b{width:194.400000px;}
._6b{width:197.160000px;}
._6f{width:203.448000px;}
._5d{width:206.544000px;}
._4a{width:211.932000px;}
._75{width:215.712000px;}
._66{width:217.680000px;}
._5c{width:229.644000px;}
._5f{width:234.252000px;}
._46{width:243.756000px;}
._72{width:251.724000px;}
._4c{width:253.656000px;}
._4b{width:256.872000px;}
._68{width:258.012000px;}
._5b{width:267.948000px;}
._38{width:270.360000px;}
._27{width:275.616000px;}
._63{width:277.260000px;}
._61{width:302.628000px;}
._2f{width:324.720000px;}
._5e{width:329.136000px;}
._6d{width:340.248000px;}
._6a{width:342.204000px;}
._74{width:360.180000px;}
._79{width:363.600000px;}
._3b{width:366.336000px;}
._71{width:372.204000px;}
._37{width:405.636000px;}
._15{width:410.124000px;}
._42{width:414.444000px;}
._43{width:418.368000px;}
._4f{width:419.724000px;}
._4d{width:424.920000px;}
._44{width:427.884000px;}
._49{width:431.172000px;}
._53{width:449.652000px;}
._25{width:451.956000px;}
._19{width:467.940000px;}
._28{width:480.912000px;}
._50{width:486.192000px;}
._76{width:503.352000px;}
._51{width:534.036000px;}
._7a{width:541.224000px;}
._73{width:557.832000px;}
._65{width:559.236000px;}
._62{width:564.828000px;}
._3f{width:571.668000px;}
._40{width:596.412000px;}
._2e{width:631.380000px;}
._52{width:633.072000px;}
._55{width:638.532000px;}
._56{width:646.092000px;}
._1a{width:673.500000px;}
._69{width:681.276000px;}
._54{width:718.800000px;}
._33{width:814.620000px;}
._47{width:829.488000px;}
._36{width:899.364000px;}
._7b{width:907.104000px;}
._24{width:940.812000px;}
._3a{width:1131.756000px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y57{bottom:3.240000px;}
.yd2{bottom:3.420000px;}
.y5a{bottom:3.450000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y56{bottom:99.036000px;}
.y9a{bottom:99.396000px;}
.y7a{bottom:105.696000px;}
.y32{bottom:113.616000px;}
.ybe{bottom:120.996000px;}
.y99{bottom:123.336000px;}
.y79{bottom:129.456000px;}
.y55{bottom:131.616000px;}
.y31{bottom:137.376000px;}
.ye2{bottom:137.916000px;}
.ybd{bottom:145.116000px;}
.y98{bottom:147.456000px;}
.y78{bottom:153.390000px;}
.y54{bottom:155.730000px;}
.y30{bottom:161.490000px;}
.ye1{bottom:161.670000px;}
.ybc{bottom:169.410000px;}
.y97{bottom:171.930000px;}
.y77{bottom:177.150000px;}
.y53{bottom:180.210000px;}
.y2f{bottom:185.430000px;}
.ye0{bottom:185.610000px;}
.ybb{bottom:193.530000px;}
.y96{bottom:196.410000px;}
.y52{bottom:200.190000px;}
.y76{bottom:201.270000px;}
.y2e{bottom:209.190000px;}
.ydf{bottom:209.370000px;}
.yba{bottom:218.010000px;}
.y95{bottom:220.530000px;}
.y75{bottom:225.750000px;}
.y51{bottom:228.990000px;}
.y2d{bottom:232.950000px;}
.yde{bottom:233.130000px;}
.y94{bottom:240.150000px;}
.yb9{bottom:242.490000px;}
.y74{bottom:250.230000px;}
.y50{bottom:253.110000px;}
.y2c{bottom:256.710000px;}
.ydd{bottom:256.890000px;}
.yb8{bottom:266.970000px;}
.y93{bottom:269.130000px;}
.y73{bottom:274.710000px;}
.y4f{bottom:277.590000px;}
.y2b{bottom:280.650000px;}
.ydc{bottom:280.830000px;}
.yb7{bottom:291.135000px;}
.y92{bottom:293.295000px;}
.y4e{bottom:297.615000px;}
.y72{bottom:299.235000px;}
.y2a{bottom:304.455000px;}
.ydb{bottom:304.635000px;}
.yb6{bottom:315.255000px;}
.y91{bottom:317.415000px;}
.y71{bottom:319.215000px;}
.y4d{bottom:326.595000px;}
.yda{bottom:328.035000px;}
.y29{bottom:328.215000px;}
.yb5{bottom:339.735000px;}
.y90{bottom:341.535000px;}
.y70{bottom:347.835000px;}
.y4c{bottom:351.075000px;}
.y28{bottom:351.975000px;}
.yd9{bottom:352.155000px;}
.y8f{bottom:361.155000px;}
.y6f{bottom:367.455000px;}
.yb4{bottom:368.715000px;}
.y4b{bottom:375.555000px;}
.y27{bottom:375.915000px;}
.yd8{bottom:376.275000px;}
.y6e{bottom:396.075000px;}
.y26{bottom:399.675000px;}
.yd7{bottom:400.755000px;}
.yb3{bottom:405.615000px;}
.y4a{bottom:419.295000px;}
.y6d{bottom:420.015000px;}
.y25{bottom:423.435000px;}
.yd6{bottom:425.235000px;}
.yb2{bottom:439.095000px;}
.y6c{bottom:439.455000px;}
.y24{bottom:447.195000px;}
.y49{bottom:448.275000px;}
.yd5{bottom:449.715000px;}
.yb1{bottom:463.575000px;}
.y23{bottom:471.135000px;}
.y48{bottom:472.395000px;}
.yd4{bottom:474.015000px;}
.yd3{bottom:491.115000px;}
.y22{bottom:494.895000px;}
.y47{bottom:496.155000px;}
.yb0{bottom:496.695000px;}
.y46{bottom:515.775000px;}
.yd1{bottom:516.315000px;}
.y21{bottom:518.655000px;}
.yaf{bottom:520.815000px;}
.yd0{bottom:541.695000px;}
.y20{bottom:542.415000px;}
.yae{bottom:544.935000px;}
.y1f{bottom:566.385000px;}
.y8e{bottom:567.645000px;}
.yad{bottom:569.085000px;}
.ycf{bottom:574.305000px;}
.y1e{bottom:590.145000px;}
.y8d{bottom:591.765000px;}
.yac{bottom:593.565000px;}
.yce{bottom:598.425000px;}
.y1d{bottom:613.545000px;}
.y8c{bottom:616.245000px;}
.yab{bottom:617.685000px;}
.ycd{bottom:618.405000px;}
.y1c{bottom:637.665000px;}
.y8b{bottom:640.365000px;}
.yaa{bottom:641.805000px;}
.y6b{bottom:643.245000px;}
.ycc{bottom:647.385000px;}
.y1b{bottom:661.425000px;}
.y8a{bottom:664.125000px;}
.y6a{bottom:667.005000px;}
.ycb{bottom:671.865000px;}
.y1a{bottom:685.365000px;}
.y89{bottom:688.245000px;}
.ya9{bottom:689.505000px;}
.y69{bottom:690.765000px;}
.yca{bottom:691.845000px;}
.y45{bottom:704.985000px;}
.y19{bottom:709.125000px;}
.y88{bottom:712.725000px;}
.ya8{bottom:713.625000px;}
.y68{bottom:714.885000px;}
.yc9{bottom:720.645000px;}
.y44{bottom:729.105000px;}
.y18{bottom:732.885000px;}
.y67{bottom:734.865000px;}
.y87{bottom:737.205000px;}
.ya7{bottom:737.385000px;}
.yc8{bottom:744.765000px;}
.y43{bottom:753.405000px;}
.y17{bottom:756.645000px;}
.ya6{bottom:757.005000px;}
.y86{bottom:761.685000px;}
.yc7{bottom:769.245000px;}
.y42{bottom:777.525000px;}
.y16{bottom:780.585000px;}
.y85{bottom:786.165000px;}
.y66{bottom:787.245000px;}
.yc6{bottom:793.365000px;}
.y41{bottom:801.285000px;}
.y15{bottom:804.345000px;}
.y84{bottom:806.145000px;}
.ya5{bottom:809.385000px;}
.y65{bottom:811.005000px;}
.yc5{bottom:817.125000px;}
.y40{bottom:825.405000px;}
.y14{bottom:828.105000px;}
.ya4{bottom:829.005000px;}
.y64{bottom:830.445000px;}
.yc4{bottom:841.245000px;}
.y3f{bottom:849.210000px;}
.y13{bottom:851.550000px;}
.y83{bottom:858.570000px;}
.yc3{bottom:861.270000px;}
.y3e{bottom:873.150000px;}
.y12{bottom:875.490000px;}
.y82{bottom:878.010000px;}
.y63{bottom:878.550000px;}
.ya3{bottom:880.170000px;}
.y3d{bottom:897.270000px;}
.y62{bottom:897.990000px;}
.y11{bottom:899.610000px;}
.yc2{bottom:910.590000px;}
.y3c{bottom:921.390000px;}
.y10{bottom:923.370000px;}
.y81{bottom:925.890000px;}
.yc1{bottom:934.710000px;}
.y3b{bottom:945.150000px;}
.y80{bottom:945.510000px;}
.yf{bottom:952.710000px;}
.yc0{bottom:954.330000px;}
.y61{bottom:964.230000px;}
.ya2{bottom:965.850000px;}
.y3a{bottom:968.910000px;}
.ye{bottom:970.710000px;}
.y60{bottom:984.210000px;}
.ya1{bottom:985.830000px;}
.y39{bottom:992.850000px;}
.yd{bottom:994.830000px;}
.ya0{bottom:1010.310000px;}
.y7f{bottom:1011.750000px;}
.y5f{bottom:1012.830000px;}
.y38{bottom:1016.610000px;}
.yc{bottom:1018.590000px;}
.y5e{bottom:1032.450000px;}
.y7e{bottom:1036.230000px;}
.y9f{bottom:1039.110000px;}
.y37{bottom:1040.370000px;}
.ye3{bottom:1042.350000px;}
.yb{bottom:1047.930000px;}
.y7d{bottom:1060.710000px;}
.y5d{bottom:1061.430000px;}
.y9e{bottom:1063.230000px;}
.y36{bottom:1064.490000px;}
.ya{bottom:1065.930000px;}
.y9d{bottom:1083.210000px;}
.y7c{bottom:1084.830000px;}
.y5c{bottom:1085.910000px;}
.y35{bottom:1088.970000px;}
.y9{bottom:1090.050000px;}
.y7b{bottom:1101.930000px;}
.y5b{bottom:1110.030000px;}
.y9c{bottom:1112.190000px;}
.y34{bottom:1113.450000px;}
.y8{bottom:1113.810000px;}
.y59{bottom:1127.130000px;}
.y9b{bottom:1136.700000px;}
.y33{bottom:1137.600000px;}
.y7{bottom:1143.180000px;}
.y58{bottom:1152.540000px;}
.y6{bottom:1161.180000px;}
.ybf{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.ha{height:24.480000px;}
.hd{height:24.516000px;}
.he{height:24.660000px;}
.hc{height:24.696000px;}
.h6{height:48.802500px;}
.hf{height:50.273438px;}
.h9{height:59.343750px;}
.hb{height:60.679688px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w6{width:52.380000px;}
.w5{width:52.560000px;}
.w7{width:63.000000px;}
.w4{width:63.036000px;}
.wf{width:80.820000px;}
.wb{width:82.620000px;}
.wa{width:82.656000px;}
.w9{width:82.800000px;}
.wd{width:84.780000px;}
.wc{width:84.816000px;}
.w8{width:84.960000px;}
.we{width:86.796000px;}
.w13{width:95.760000px;}
.w11{width:95.796000px;}
.w10{width:95.940000px;}
.w12{width:95.976000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.040000px;}
.x1d{left:70.965000px;}
.x35{left:72.900000px;}
.x33{left:73.974000px;}
.x28{left:78.885000px;}
.x24{left:79.965000px;}
.x25{left:81.210000px;}
.x5b{left:84.054000px;}
.x26{left:91.260000px;}
.x27{left:100.305000px;}
.x5c{left:110.340000px;}
.x32{left:119.916000px;}
.x10{left:127.655987px;}
.x12{left:138.995987px;}
.x54{left:140.796000px;}
.x6{left:143.135987px;}
.x3{left:159.689987px;}
.x11{left:170.849987px;}
.xf{left:180.749987px;}
.x46{left:186.149987px;}
.x34{left:205.590000px;}
.x50{left:213.329987px;}
.x4e{left:215.669987px;}
.x4d{left:236.009987px;}
.x55{left:237.450000px;}
.x3c{left:257.069987px;}
.x29{left:263.729987px;}
.x1c{left:268.410000px;}
.x45{left:269.489987px;}
.x52{left:283.169987px;}
.x36{left:289.110000px;}
.x48{left:293.114987px;}
.xe{left:327.674987px;}
.x1e{left:332.175000px;}
.x56{left:333.975000px;}
.xa{left:335.954987px;}
.x8{left:340.274987px;}
.xc{left:341.714987px;}
.x31{left:343.874987px;}
.x7{left:350.354987px;}
.x44{left:353.234987px;}
.x1a{left:359.714987px;}
.xd{left:369.254987px;}
.x9{left:370.874987px;}
.x37{left:372.675000px;}
.xb{left:374.294987px;}
.x51{left:382.214987px;}
.x1f{left:385.455000px;}
.x15{left:392.114987px;}
.x4c{left:406.874987px;}
.x19{left:421.274987px;}
.x57{left:430.635000px;}
.x43{left:437.294987px;}
.x20{left:438.555000px;}
.x1{left:439.815000px;}
.x16{left:453.134987px;}
.x30{left:454.214987px;}
.x38{left:456.015000px;}
.x42{left:471.134987px;}
.x14{left:473.654987px;}
.x41{left:477.254987px;}
.x5{left:478.514987px;}
.x2f{left:487.154987px;}
.x53{left:488.954987px;}
.x3f{left:494.024987px;}
.x13{left:495.824987px;}
.x1b{left:497.984987px;}
.x21{left:502.305000px;}
.x49{left:512.564987px;}
.x47{left:517.064987px;}
.x58{left:527.325000px;}
.x17{left:539.564987px;}
.x39{left:541.545000px;}
.x2c{left:546.404987px;}
.x22{left:566.205000px;}
.x3d{left:568.904987px;}
.x2d{left:592.484987px;}
.x40{left:604.544987px;}
.x4a{left:618.404987px;}
.x59{left:623.805000px;}
.x3a{left:627.045000px;}
.x23{left:629.925000px;}
.x4f{left:703.589987px;}
.x3b{left:714.570000px;}
.x5a{left:720.510000px;}
.x3e{left:744.449987px;}
.x18{left:768.389987px;}
.x2e{left:778.109987px;}
.x2b{left:782.609987px;}
.x2a{left:786.029987px;}
.x4{left:829.409987px;}
.x4b{left:841.109987px;}
@media print{
.v2{vertical-align:-83.200000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.490667pt;}
.ls2b{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls15{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls31{letter-spacing:1.664000pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls27{letter-spacing:3.200000pt;}
.ls2e{letter-spacing:4.480000pt;}
.ls33{letter-spacing:5.120000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls2f{letter-spacing:6.400000pt;}
.ls7{letter-spacing:7.680000pt;}
.ls28{letter-spacing:8.960000pt;}
.lsb{letter-spacing:10.880000pt;}
.lsd{letter-spacing:15.360000pt;}
.ls18{letter-spacing:16.640000pt;}
.ls35{letter-spacing:20.480000pt;}
.lse{letter-spacing:22.400000pt;}
.lsc{letter-spacing:24.960000pt;}
.ls32{letter-spacing:25.600000pt;}
.ls2a{letter-spacing:28.800000pt;}
.ls1e{letter-spacing:37.120000pt;}
.ls2c{letter-spacing:38.506667pt;}
.ls2d{letter-spacing:42.368000pt;}
.ls30{letter-spacing:44.800000pt;}
.ls34{letter-spacing:48.256000pt;}
.ls1f{letter-spacing:102.400000pt;}
.ls26{letter-spacing:172.800000pt;}
.ws13{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws10{word-spacing:-15.488000pt;}
.wsf{word-spacing:-15.424000pt;}
.ws12{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-2.144000pt;}
._1{margin-left:-1.152000pt;}
._0{width:0.981333pt;}
._13{width:2.048000pt;}
._d{width:3.360000pt;}
._3{width:4.704000pt;}
._2{width:5.824000pt;}
._32{width:6.848000pt;}
._4{width:7.808000pt;}
._5{width:9.045333pt;}
._b{width:10.080000pt;}
._9{width:11.584000pt;}
._a{width:12.512000pt;}
._e{width:13.440000pt;}
._f{width:14.432000pt;}
._11{width:16.896000pt;}
._10{width:17.792000pt;}
._31{width:18.762667pt;}
._67{width:19.904000pt;}
._7{width:21.098667pt;}
._8{width:22.720000pt;}
._6{width:24.170667pt;}
._c{width:25.792000pt;}
._12{width:26.944000pt;}
._26{width:27.840000pt;}
._45{width:29.589333pt;}
._6e{width:30.677333pt;}
._6c{width:31.744000pt;}
._14{width:32.768000pt;}
._1e{width:34.496000pt;}
._1f{width:36.000000pt;}
._59{width:37.130667pt;}
._58{width:38.112000pt;}
._29{width:39.104000pt;}
._17{width:40.810667pt;}
._3c{width:42.048000pt;}
._1d{width:44.906667pt;}
._78{width:47.498667pt;}
._2b{width:48.640000pt;}
._1c{width:58.336000pt;}
._77{width:59.893333pt;}
._7c{width:63.552000pt;}
._22{width:65.600000pt;}
._23{width:67.306667pt;}
._5a{width:71.850667pt;}
._70{width:78.240000pt;}
._3e{width:88.864000pt;}
._34{width:90.176000pt;}
._3d{width:91.776000pt;}
._16{width:92.714667pt;}
._2a{width:96.394667pt;}
._39{width:98.282667pt;}
._60{width:99.968000pt;}
._21{width:101.578667pt;}
._20{width:102.816000pt;}
._64{width:106.784000pt;}
._30{width:111.904000pt;}
._57{width:115.840000pt;}
._41{width:133.600000pt;}
._2d{width:142.464000pt;}
._2c{width:146.016000pt;}
._4e{width:153.344000pt;}
._35{width:156.960000pt;}
._48{width:169.226667pt;}
._1b{width:172.800000pt;}
._6b{width:175.253333pt;}
._6f{width:180.842667pt;}
._5d{width:183.594667pt;}
._4a{width:188.384000pt;}
._75{width:191.744000pt;}
._66{width:193.493333pt;}
._5c{width:204.128000pt;}
._5f{width:208.224000pt;}
._46{width:216.672000pt;}
._72{width:223.754667pt;}
._4c{width:225.472000pt;}
._4b{width:228.330667pt;}
._68{width:229.344000pt;}
._5b{width:238.176000pt;}
._38{width:240.320000pt;}
._27{width:244.992000pt;}
._63{width:246.453333pt;}
._61{width:269.002667pt;}
._2f{width:288.640000pt;}
._5e{width:292.565333pt;}
._6d{width:302.442667pt;}
._6a{width:304.181333pt;}
._74{width:320.160000pt;}
._79{width:323.200000pt;}
._3b{width:325.632000pt;}
._71{width:330.848000pt;}
._37{width:360.565333pt;}
._15{width:364.554667pt;}
._42{width:368.394667pt;}
._43{width:371.882667pt;}
._4f{width:373.088000pt;}
._4d{width:377.706667pt;}
._44{width:380.341333pt;}
._49{width:383.264000pt;}
._53{width:399.690667pt;}
._25{width:401.738667pt;}
._19{width:415.946667pt;}
._28{width:427.477333pt;}
._50{width:432.170667pt;}
._76{width:447.424000pt;}
._51{width:474.698667pt;}
._7a{width:481.088000pt;}
._73{width:495.850667pt;}
._65{width:497.098667pt;}
._62{width:502.069333pt;}
._3f{width:508.149333pt;}
._40{width:530.144000pt;}
._2e{width:561.226667pt;}
._52{width:562.730667pt;}
._55{width:567.584000pt;}
._56{width:574.304000pt;}
._1a{width:598.666667pt;}
._69{width:605.578667pt;}
._54{width:638.933333pt;}
._33{width:724.106667pt;}
._47{width:737.322667pt;}
._36{width:799.434667pt;}
._7b{width:806.314667pt;}
._24{width:836.277333pt;}
._3a{width:1006.005333pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y57{bottom:2.880000pt;}
.yd2{bottom:3.040000pt;}
.y5a{bottom:3.066667pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y56{bottom:88.032000pt;}
.y9a{bottom:88.352000pt;}
.y7a{bottom:93.952000pt;}
.y32{bottom:100.992000pt;}
.ybe{bottom:107.552000pt;}
.y99{bottom:109.632000pt;}
.y79{bottom:115.072000pt;}
.y55{bottom:116.992000pt;}
.y31{bottom:122.112000pt;}
.ye2{bottom:122.592000pt;}
.ybd{bottom:128.992000pt;}
.y98{bottom:131.072000pt;}
.y78{bottom:136.346667pt;}
.y54{bottom:138.426667pt;}
.y30{bottom:143.546667pt;}
.ye1{bottom:143.706667pt;}
.ybc{bottom:150.586667pt;}
.y97{bottom:152.826667pt;}
.y77{bottom:157.466667pt;}
.y53{bottom:160.186667pt;}
.y2f{bottom:164.826667pt;}
.ye0{bottom:164.986667pt;}
.ybb{bottom:172.026667pt;}
.y96{bottom:174.586667pt;}
.y52{bottom:177.946667pt;}
.y76{bottom:178.906667pt;}
.y2e{bottom:185.946667pt;}
.ydf{bottom:186.106667pt;}
.yba{bottom:193.786667pt;}
.y95{bottom:196.026667pt;}
.y75{bottom:200.666667pt;}
.y51{bottom:203.546667pt;}
.y2d{bottom:207.066667pt;}
.yde{bottom:207.226667pt;}
.y94{bottom:213.466667pt;}
.yb9{bottom:215.546667pt;}
.y74{bottom:222.426667pt;}
.y50{bottom:224.986667pt;}
.y2c{bottom:228.186667pt;}
.ydd{bottom:228.346667pt;}
.yb8{bottom:237.306667pt;}
.y93{bottom:239.226667pt;}
.y73{bottom:244.186667pt;}
.y4f{bottom:246.746667pt;}
.y2b{bottom:249.466667pt;}
.ydc{bottom:249.626667pt;}
.yb7{bottom:258.786667pt;}
.y92{bottom:260.706667pt;}
.y4e{bottom:264.546667pt;}
.y72{bottom:265.986667pt;}
.y2a{bottom:270.626667pt;}
.ydb{bottom:270.786667pt;}
.yb6{bottom:280.226667pt;}
.y91{bottom:282.146667pt;}
.y71{bottom:283.746667pt;}
.y4d{bottom:290.306667pt;}
.yda{bottom:291.586667pt;}
.y29{bottom:291.746667pt;}
.yb5{bottom:301.986667pt;}
.y90{bottom:303.586667pt;}
.y70{bottom:309.186667pt;}
.y4c{bottom:312.066667pt;}
.y28{bottom:312.866667pt;}
.yd9{bottom:313.026667pt;}
.y8f{bottom:321.026667pt;}
.y6f{bottom:326.626667pt;}
.yb4{bottom:327.746667pt;}
.y4b{bottom:333.826667pt;}
.y27{bottom:334.146667pt;}
.yd8{bottom:334.466667pt;}
.y6e{bottom:352.066667pt;}
.y26{bottom:355.266667pt;}
.yd7{bottom:356.226667pt;}
.yb3{bottom:360.546667pt;}
.y4a{bottom:372.706667pt;}
.y6d{bottom:373.346667pt;}
.y25{bottom:376.386667pt;}
.yd6{bottom:377.986667pt;}
.yb2{bottom:390.306667pt;}
.y6c{bottom:390.626667pt;}
.y24{bottom:397.506667pt;}
.y49{bottom:398.466667pt;}
.yd5{bottom:399.746667pt;}
.yb1{bottom:412.066667pt;}
.y23{bottom:418.786667pt;}
.y48{bottom:419.906667pt;}
.yd4{bottom:421.346667pt;}
.yd3{bottom:436.546667pt;}
.y22{bottom:439.906667pt;}
.y47{bottom:441.026667pt;}
.yb0{bottom:441.506667pt;}
.y46{bottom:458.466667pt;}
.yd1{bottom:458.946667pt;}
.y21{bottom:461.026667pt;}
.yaf{bottom:462.946667pt;}
.yd0{bottom:481.506667pt;}
.y20{bottom:482.146667pt;}
.yae{bottom:484.386667pt;}
.y1f{bottom:503.453333pt;}
.y8e{bottom:504.573333pt;}
.yad{bottom:505.853333pt;}
.ycf{bottom:510.493333pt;}
.y1e{bottom:524.573333pt;}
.y8d{bottom:526.013333pt;}
.yac{bottom:527.613333pt;}
.yce{bottom:531.933333pt;}
.y1d{bottom:545.373333pt;}
.y8c{bottom:547.773333pt;}
.yab{bottom:549.053333pt;}
.ycd{bottom:549.693333pt;}
.y1c{bottom:566.813333pt;}
.y8b{bottom:569.213333pt;}
.yaa{bottom:570.493333pt;}
.y6b{bottom:571.773333pt;}
.ycc{bottom:575.453333pt;}
.y1b{bottom:587.933333pt;}
.y8a{bottom:590.333333pt;}
.y6a{bottom:592.893333pt;}
.ycb{bottom:597.213333pt;}
.y1a{bottom:609.213333pt;}
.y89{bottom:611.773333pt;}
.ya9{bottom:612.893333pt;}
.y69{bottom:614.013333pt;}
.yca{bottom:614.973333pt;}
.y45{bottom:626.653333pt;}
.y19{bottom:630.333333pt;}
.y88{bottom:633.533333pt;}
.ya8{bottom:634.333333pt;}
.y68{bottom:635.453333pt;}
.yc9{bottom:640.573333pt;}
.y44{bottom:648.093333pt;}
.y18{bottom:651.453333pt;}
.y67{bottom:653.213333pt;}
.y87{bottom:655.293333pt;}
.ya7{bottom:655.453333pt;}
.yc8{bottom:662.013333pt;}
.y43{bottom:669.693333pt;}
.y17{bottom:672.573333pt;}
.ya6{bottom:672.893333pt;}
.y86{bottom:677.053333pt;}
.yc7{bottom:683.773333pt;}
.y42{bottom:691.133333pt;}
.y16{bottom:693.853333pt;}
.y85{bottom:698.813333pt;}
.y66{bottom:699.773333pt;}
.yc6{bottom:705.213333pt;}
.y41{bottom:712.253333pt;}
.y15{bottom:714.973333pt;}
.y84{bottom:716.573333pt;}
.ya5{bottom:719.453333pt;}
.y65{bottom:720.893333pt;}
.yc5{bottom:726.333333pt;}
.y40{bottom:733.693333pt;}
.y14{bottom:736.093333pt;}
.ya4{bottom:736.893333pt;}
.y64{bottom:738.173333pt;}
.yc4{bottom:747.773333pt;}
.y3f{bottom:754.853333pt;}
.y13{bottom:756.933333pt;}
.y83{bottom:763.173333pt;}
.yc3{bottom:765.573333pt;}
.y3e{bottom:776.133333pt;}
.y12{bottom:778.213333pt;}
.y82{bottom:780.453333pt;}
.y63{bottom:780.933333pt;}
.ya3{bottom:782.373333pt;}
.y3d{bottom:797.573333pt;}
.y62{bottom:798.213333pt;}
.y11{bottom:799.653333pt;}
.yc2{bottom:809.413333pt;}
.y3c{bottom:819.013333pt;}
.y10{bottom:820.773333pt;}
.y81{bottom:823.013333pt;}
.yc1{bottom:830.853333pt;}
.y3b{bottom:840.133333pt;}
.y80{bottom:840.453333pt;}
.yf{bottom:846.853333pt;}
.yc0{bottom:848.293333pt;}
.y61{bottom:857.093333pt;}
.ya2{bottom:858.533333pt;}
.y3a{bottom:861.253333pt;}
.ye{bottom:862.853333pt;}
.y60{bottom:874.853333pt;}
.ya1{bottom:876.293333pt;}
.y39{bottom:882.533333pt;}
.yd{bottom:884.293333pt;}
.ya0{bottom:898.053333pt;}
.y7f{bottom:899.333333pt;}
.y5f{bottom:900.293333pt;}
.y38{bottom:903.653333pt;}
.yc{bottom:905.413333pt;}
.y5e{bottom:917.733333pt;}
.y7e{bottom:921.093333pt;}
.y9f{bottom:923.653333pt;}
.y37{bottom:924.773333pt;}
.ye3{bottom:926.533333pt;}
.yb{bottom:931.493333pt;}
.y7d{bottom:942.853333pt;}
.y5d{bottom:943.493333pt;}
.y9e{bottom:945.093333pt;}
.y36{bottom:946.213333pt;}
.ya{bottom:947.493333pt;}
.y9d{bottom:962.853333pt;}
.y7c{bottom:964.293333pt;}
.y5c{bottom:965.253333pt;}
.y35{bottom:967.973333pt;}
.y9{bottom:968.933333pt;}
.y7b{bottom:979.493333pt;}
.y5b{bottom:986.693333pt;}
.y9c{bottom:988.613333pt;}
.y34{bottom:989.733333pt;}
.y8{bottom:990.053333pt;}
.y59{bottom:1001.893333pt;}
.y9b{bottom:1010.400000pt;}
.y33{bottom:1011.200000pt;}
.y7{bottom:1016.160000pt;}
.y58{bottom:1024.480000pt;}
.y6{bottom:1032.160000pt;}
.ybf{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.ha{height:21.760000pt;}
.hd{height:21.792000pt;}
.he{height:21.920000pt;}
.hc{height:21.952000pt;}
.h6{height:43.380000pt;}
.hf{height:44.687500pt;}
.h9{height:52.750000pt;}
.hb{height:53.937500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w6{width:46.560000pt;}
.w5{width:46.720000pt;}
.w7{width:56.000000pt;}
.w4{width:56.032000pt;}
.wf{width:71.840000pt;}
.wb{width:73.440000pt;}
.wa{width:73.472000pt;}
.w9{width:73.600000pt;}
.wd{width:75.360000pt;}
.wc{width:75.392000pt;}
.w8{width:75.520000pt;}
.we{width:77.152000pt;}
.w13{width:85.120000pt;}
.w11{width:85.152000pt;}
.w10{width:85.280000pt;}
.w12{width:85.312000pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.480000pt;}
.x1d{left:63.080000pt;}
.x35{left:64.800000pt;}
.x33{left:65.754667pt;}
.x28{left:70.120000pt;}
.x24{left:71.080000pt;}
.x25{left:72.186667pt;}
.x5b{left:74.714667pt;}
.x26{left:81.120000pt;}
.x27{left:89.160000pt;}
.x5c{left:98.080000pt;}
.x32{left:106.592000pt;}
.x10{left:113.471988pt;}
.x12{left:123.551988pt;}
.x54{left:125.152000pt;}
.x6{left:127.231988pt;}
.x3{left:141.946655pt;}
.x11{left:151.866655pt;}
.xf{left:160.666655pt;}
.x46{left:165.466655pt;}
.x34{left:182.746667pt;}
.x50{left:189.626655pt;}
.x4e{left:191.706655pt;}
.x4d{left:209.786655pt;}
.x55{left:211.066667pt;}
.x3c{left:228.506655pt;}
.x29{left:234.426655pt;}
.x1c{left:238.586667pt;}
.x45{left:239.546655pt;}
.x52{left:251.706655pt;}
.x36{left:256.986667pt;}
.x48{left:260.546655pt;}
.xe{left:291.266655pt;}
.x1e{left:295.266667pt;}
.x56{left:296.866667pt;}
.xa{left:298.626655pt;}
.x8{left:302.466655pt;}
.xc{left:303.746655pt;}
.x31{left:305.666655pt;}
.x7{left:311.426655pt;}
.x44{left:313.986655pt;}
.x1a{left:319.746655pt;}
.xd{left:328.226655pt;}
.x9{left:329.666655pt;}
.x37{left:331.266667pt;}
.xb{left:332.706655pt;}
.x51{left:339.746655pt;}
.x1f{left:342.626667pt;}
.x15{left:348.546655pt;}
.x4c{left:361.666655pt;}
.x19{left:374.466655pt;}
.x57{left:382.786667pt;}
.x43{left:388.706655pt;}
.x20{left:389.826667pt;}
.x1{left:390.946667pt;}
.x16{left:402.786655pt;}
.x30{left:403.746655pt;}
.x38{left:405.346667pt;}
.x42{left:418.786655pt;}
.x14{left:421.026655pt;}
.x41{left:424.226655pt;}
.x5{left:425.346655pt;}
.x2f{left:433.026655pt;}
.x53{left:434.626655pt;}
.x3f{left:439.133322pt;}
.x13{left:440.733322pt;}
.x1b{left:442.653322pt;}
.x21{left:446.493333pt;}
.x49{left:455.613322pt;}
.x47{left:459.613322pt;}
.x58{left:468.733333pt;}
.x17{left:479.613322pt;}
.x39{left:481.373333pt;}
.x2c{left:485.693322pt;}
.x22{left:503.293333pt;}
.x3d{left:505.693322pt;}
.x2d{left:526.653322pt;}
.x40{left:537.373322pt;}
.x4a{left:549.693322pt;}
.x59{left:554.493333pt;}
.x3a{left:557.373333pt;}
.x23{left:559.933333pt;}
.x4f{left:625.413322pt;}
.x3b{left:635.173333pt;}
.x5a{left:640.453333pt;}
.x3e{left:661.733322pt;}
.x18{left:683.013322pt;}
.x2e{left:691.653322pt;}
.x2b{left:695.653322pt;}
.x2a{left:698.693322pt;}
.x4{left:737.253322pt;}
.x4b{left:747.653322pt;}
}




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