
    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_289f0712ac7a45af736f7639.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_2e9094bf1a43999e13fdb741.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_92bf827b766a386f0c932884.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_c5801f4f51e30e9bef49661c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_e4096c0f678a19fc1cbdc127.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9ff2d0eff95504b1582ec166.woff')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_1a22b9a48d24b56e85de21f1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_ec803e954fc517a738729d0a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.912598;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_39ab609ac473b09d391251f1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_a40f0563276a61f48befc91c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_8f3d476e46805cdb4a9f7773.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37044f772799124ad99c41d4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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_6a478c04d4a954f9cf6518bc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.664062;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls2a{letter-spacing:-0.459648px;}
.ls25{letter-spacing:-0.417312px;}
.ls18{letter-spacing:-0.381024px;}
.ls17{letter-spacing:-0.344736px;}
.ls4{letter-spacing:-0.338688px;}
.ls24{letter-spacing:-0.332640px;}
.ls1b{letter-spacing:-0.320544px;}
.ls16{letter-spacing:-0.302400px;}
.ls6{letter-spacing:-0.260064px;}
.ls14{letter-spacing:-0.241920px;}
.ls15{letter-spacing:-0.223776px;}
.lsd{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.175392px;}
.lsa{letter-spacing:-0.158976px;}
.ls19{letter-spacing:-0.157248px;}
.ls1a{letter-spacing:-0.145152px;}
.ls7{letter-spacing:-0.120960px;}
.lse{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.086112px;}
.lsb{letter-spacing:-0.079488px;}
.ls11{letter-spacing:-0.014400px;}
.ls12{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.014400px;}
.ls1d{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.275616px;}
.lsf{letter-spacing:0.296640px;}
.ls8{letter-spacing:0.317376px;}
.ls20{letter-spacing:0.411840px;}
.ls27{letter-spacing:0.417600px;}
.ls23{letter-spacing:0.720432px;}
.ls28{letter-spacing:1.307520px;}
.ls21{letter-spacing:1.329120px;}
.ls10{letter-spacing:1.776672px;}
.ls1{letter-spacing:2.564640px;}
.ls22{letter-spacing:6.161760px;}
.ls1e{letter-spacing:6.412320px;}
.ls26{letter-spacing:10.775520px;}
.ls2{letter-spacing:11.573712px;}
.ls1c{letter-spacing:13.176000px;}
.ls29{letter-spacing:17.327520px;}
.ls0{letter-spacing:23.264784px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.992800px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.480512px;}
.ws1{word-spacing:-16.401024px;}
.ws4{word-spacing:-16.361280px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.974848px;}
.wsf{word-spacing:-14.962752px;}
.ws7{word-spacing:-14.896224px;}
.wsa{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.859936px;}
.wsc{word-spacing:-14.817600px;}
.wse{word-spacing:-14.799456px;}
.wsb{word-spacing:-14.781312px;}
.ws13{word-spacing:-14.738976px;}
.ws10{word-spacing:-14.702688px;}
.ws11{word-spacing:-14.660352px;}
.ws12{word-spacing:-1.716480px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.072512px;}
._0{width:1.088640px;}
._18{width:2.237760px;}
._a{width:3.245760px;}
._d{width:4.769280px;}
._b{width:6.094080px;}
._5{width:7.220160px;}
._4{width:8.478720px;}
._7{width:10.222272px;}
._6{width:11.459520px;}
._9{width:13.209696px;}
._8{width:14.440320px;}
._10{width:15.958512px;}
._f{width:17.055360px;}
._c{width:18.414720px;}
._e{width:19.864800px;}
._11{width:21.024000px;}
._1c{width:22.075488px;}
._3{width:23.356512px;}
._2{width:25.360848px;}
._1e{width:26.962272px;}
._14{width:28.057104px;}
._1b{width:29.087136px;}
._16{width:30.119040px;}
._15{width:31.268160px;}
._1d{width:33.156000px;}
._22{width:34.408800px;}
._1a{width:37.679040px;}
._17{width:42.940800px;}
._26{width:47.174400px;}
._20{width:49.291200px;}
._12{width:50.742720px;}
._13{width:51.952320px;}
._19{width:55.944000px;}
._21{width:57.818880px;}
._23{width:63.564480px;}
._24{width:101.485440px;}
._25{width:119.508480px;}
._1f{width:196.979184px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.yc{bottom:-30.000000px;}
.yb{bottom:-2.640000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:3.600000px;}
.y67{bottom:3.780000px;}
.yc7{bottom:4.320000px;}
.ya3{bottom:4.380000px;}
.y9f{bottom:4.560000px;}
.y95{bottom:4.620000px;}
.y100{bottom:4.680000px;}
.yf9{bottom:4.860000px;}
.yc4{bottom:6.120000px;}
.y58{bottom:13.200000px;}
.ybd{bottom:20.880000px;}
.y66{bottom:21.060000px;}
.y94{bottom:21.540000px;}
.yc6{bottom:21.600000px;}
.ya2{bottom:21.660000px;}
.y9e{bottom:21.840000px;}
.yff{bottom:21.960000px;}
.yf8{bottom:22.140000px;}
.yc3{bottom:23.400000px;}
.y65{bottom:38.340000px;}
.ya1{bottom:38.940000px;}
.y9d{bottom:39.120000px;}
.yfe{bottom:39.240000px;}
.yf7{bottom:39.420000px;}
.yc2{bottom:40.320000px;}
.y64{bottom:55.620000px;}
.ya0{bottom:56.220000px;}
.yf6{bottom:56.340000px;}
.y9{bottom:56.520000px;}
.yc1{bottom:57.600000px;}
.ya5{bottom:72.060000px;}
.y63{bottom:72.900000px;}
.y9b{bottom:73.500000px;}
.yfd{bottom:73.800000px;}
.y62{bottom:90.180000px;}
.y9a{bottom:90.780000px;}
.yfc{bottom:91.080000px;}
.y61{bottom:107.460000px;}
.y99{bottom:108.060000px;}
.yfb{bottom:108.360000px;}
.y53{bottom:109.440000px;}
.y8a{bottom:113.040000px;}
.ycd{bottom:114.840000px;}
.y120{bottom:116.640000px;}
.y60{bottom:124.740000px;}
.y98{bottom:125.340000px;}
.ycc{bottom:126.720000px;}
.y52{bottom:132.120000px;}
.y72{bottom:133.200000px;}
.y5f{bottom:142.020000px;}
.y97{bottom:142.620000px;}
.y89{bottom:144.000000px;}
.y51{bottom:145.080000px;}
.y11f{bottom:147.600000px;}
.ycb{bottom:149.400000px;}
.y32{bottom:151.200000px;}
.y5e{bottom:159.300000px;}
.ye2{bottom:161.280000px;}
.yca{bottom:162.360000px;}
.y71{bottom:164.160000px;}
.y88{bottom:174.960000px;}
.y12b{bottom:175.320000px;}
.y5d{bottom:176.580000px;}
.y11e{bottom:178.560000px;}
.y31{bottom:182.160000px;}
.ye1{bottom:183.960000px;}
.y5c{bottom:193.500000px;}
.y70{bottom:195.120000px;}
.y12a{bottom:196.200000px;}
.ye0{bottom:196.920000px;}
.yaa{bottom:200.520000px;}
.y87{bottom:206.280000px;}
.y11d{bottom:209.520000px;}
.y5b{bottom:210.780000px;}
.yc9{bottom:212.040000px;}
.y30{bottom:213.120000px;}
.y107{bottom:214.200000px;}
.y129{bottom:216.720000px;}
.ydf{bottom:219.600000px;}
.y50{bottom:223.560000px;}
.y6f{bottom:226.440000px;}
.y5a{bottom:228.060000px;}
.yc8{bottom:229.320000px;}
.ya9{bottom:231.480000px;}
.yde{bottom:236.520000px;}
.y86{bottom:237.240000px;}
.y128{bottom:237.600000px;}
.y11c{bottom:240.840000px;}
.yc0{bottom:243.000000px;}
.y2f{bottom:244.080000px;}
.y106{bottom:245.160000px;}
.ydd{bottom:253.800000px;}
.y4f{bottom:254.520000px;}
.y6e{bottom:257.400000px;}
.y127{bottom:258.120000px;}
.ya8{bottom:262.440000px;}
.y85{bottom:268.200000px;}
.ydc{bottom:271.080000px;}
.y11b{bottom:271.800000px;}
.y2e{bottom:275.400000px;}
.y105{bottom:276.480000px;}
.yc5{bottom:279.000000px;}
.ya7{bottom:282.600000px;}
.y4e{bottom:285.480000px;}
.y6d{bottom:288.360000px;}
.ybf{bottom:297.000000px;}
.y84{bottom:299.160000px;}
.y126{bottom:299.520000px;}
.ya6{bottom:299.880000px;}
.y11a{bottom:302.760000px;}
.y2d{bottom:306.360000px;}
.y104{bottom:307.440000px;}
.y96{bottom:313.500000px;}
.ybc{bottom:315.000000px;}
.y4d{bottom:316.440000px;}
.y6c{bottom:319.320000px;}
.y83{bottom:320.400000px;}
.y119{bottom:333.720000px;}
.y2c{bottom:337.320000px;}
.y103{bottom:338.400000px;}
.y82{bottom:340.200000px;}
.y125{bottom:340.920000px;}
.y4c{bottom:347.760000px;}
.y6b{bottom:350.640000px;}
.ybb{bottom:353.880000px;}
.y81{bottom:357.480000px;}
.y102{bottom:359.640000px;}
.y124{bottom:361.800000px;}
.y118{bottom:364.680000px;}
.y2b{bottom:368.280000px;}
.yba{bottom:372.240000px;}
.y80{bottom:374.760000px;}
.y4b{bottom:378.720000px;}
.y101{bottom:380.160000px;}
.y6a{bottom:381.600000px;}
.y123{bottom:382.320000px;}
.y7f{bottom:392.040000px;}
.yfa{bottom:396.000000px;}
.ya4{bottom:399.000000px;}
.y2a{bottom:399.600000px;}
.y69{bottom:402.480000px;}
.yb9{bottom:402.840000px;}
.y122{bottom:403.200000px;}
.y7e{bottom:409.320000px;}
.y4a{bottom:409.680000px;}
.y9c{bottom:417.000000px;}
.y68{bottom:422.280000px;}
.yb8{bottom:423.000000px;}
.y121{bottom:423.720000px;}
.y7d{bottom:426.240000px;}
.y117{bottom:426.960000px;}
.y29{bottom:430.560000px;}
.y59{bottom:436.500000px;}
.yb7{bottom:440.280000px;}
.y49{bottom:440.640000px;}
.y7c{bottom:444.600000px;}
.yb6{bottom:457.560000px;}
.y116{bottom:457.920000px;}
.y28{bottom:461.520000px;}
.y93{bottom:469.500000px;}
.y48{bottom:471.960000px;}
.yb5{bottom:474.840000px;}
.y7b{bottom:475.200000px;}
.y27{bottom:482.040000px;}
.y115{bottom:488.880000px;}
.yb4{bottom:492.120000px;}
.y26{bottom:501.120000px;}
.y47{bottom:502.920000px;}
.y7a{bottom:506.160000px;}
.y92{bottom:509.040000px;}
.yf5{bottom:517.500000px;}
.y25{bottom:519.840000px;}
.y114{bottom:520.200000px;}
.y91{bottom:527.400000px;}
.y46{bottom:533.880000px;}
.y79{bottom:537.480000px;}
.y24{bottom:538.920000px;}
.y113{bottom:551.160000px;}
.y23{bottom:558.000000px;}
.y45{bottom:564.840000px;}
.y78{bottom:568.440000px;}
.y22{bottom:577.080000px;}
.y90{bottom:578.160000px;}
.y112{bottom:582.120000px;}
.yf4{bottom:591.840000px;}
.y8f{bottom:595.440000px;}
.y21{bottom:595.800000px;}
.y44{bottom:596.160000px;}
.y77{bottom:599.400000px;}
.yf3{bottom:609.120000px;}
.y8e{bottom:612.720000px;}
.y111{bottom:613.080000px;}
.y20{bottom:614.880000px;}
.y43{bottom:627.120000px;}
.y8d{bottom:630.000000px;}
.y76{bottom:630.360000px;}
.y1f{bottom:633.960000px;}
.yf2{bottom:637.560000px;}
.y110{bottom:644.400000px;}
.y8c{bottom:647.280000px;}
.y42{bottom:648.000000px;}
.y1e{bottom:652.680000px;}
.ydb{bottom:658.080000px;}
.y75{bottom:661.680000px;}
.y8b{bottom:664.560000px;}
.y41{bottom:667.800000px;}
.yf1{bottom:668.520000px;}
.y1d{bottom:671.760000px;}
.y10f{bottom:675.360000px;}
.y57{bottom:678.000000px;}
.y40{bottom:685.080000px;}
.yda{bottom:689.040000px;}
.y1c{bottom:690.840000px;}
.y74{bottom:692.640000px;}
.yf0{bottom:699.480000px;}
.y3f{bottom:702.360000px;}
.y10e{bottom:706.320000px;}
.y56{bottom:709.200000px;}
.y1b{bottom:709.560000px;}
.y3e{bottom:719.640000px;}
.yd9{bottom:720.000000px;}
.y73{bottom:723.600000px;}
.y55{bottom:726.480000px;}
.y1a{bottom:728.640000px;}
.yef{bottom:730.440000px;}
.y3d{bottom:736.920000px;}
.y10d{bottom:737.280000px;}
.y19{bottom:747.720000px;}
.yd8{bottom:751.320000px;}
.y54{bottom:754.560000px;}
.y3c{bottom:754.920000px;}
.yee{bottom:761.400000px;}
.y18{bottom:766.800000px;}
.y10c{bottom:768.600000px;}
.yd7{bottom:782.280000px;}
.y17{bottom:785.520000px;}
.y3b{bottom:785.880000px;}
.yed{bottom:792.720000px;}
.y10b{bottom:799.560000px;}
.yd6{bottom:802.440000px;}
.y16{bottom:804.960000px;}
.yb3{bottom:806.040000px;}
.y3a{bottom:816.840000px;}
.yd5{bottom:819.720000px;}
.yb2{bottom:822.960000px;}
.yec{bottom:823.680000px;}
.y15{bottom:825.840000px;}
.yd4{bottom:837.000000px;}
.yb1{bottom:840.240000px;}
.y14{bottom:846.360000px;}
.y39{bottom:847.800000px;}
.yd3{bottom:854.280000px;}
.yeb{bottom:854.640000px;}
.yb0{bottom:857.520000px;}
.y13{bottom:867.240000px;}
.yd2{bottom:871.560000px;}
.yaf{bottom:874.800000px;}
.y38{bottom:878.760000px;}
.yea{bottom:885.600000px;}
.y12{bottom:887.760000px;}
.yd1{bottom:888.840000px;}
.yae{bottom:892.080000px;}
.yd0{bottom:905.760000px;}
.y11{bottom:908.640000px;}
.yad{bottom:909.360000px;}
.y37{bottom:910.080000px;}
.ye9{bottom:916.920000px;}
.ycf{bottom:923.040000px;}
.yac{bottom:926.640000px;}
.y10{bottom:929.160000px;}
.y10a{bottom:940.320000px;}
.y36{bottom:941.040000px;}
.yce{bottom:941.400000px;}
.yab{bottom:943.920000px;}
.ye8{bottom:947.880000px;}
.yf{bottom:950.040000px;}
.y109{bottom:957.600000px;}
.ye7{bottom:968.040000px;}
.y35{bottom:972.000000px;}
.y108{bottom:974.880000px;}
.ye6{bottom:985.320000px;}
.ye{bottom:995.400000px;}
.ye5{bottom:1002.600000px;}
.y34{bottom:1002.960000px;}
.ye4{bottom:1019.880000px;}
.yd{bottom:1031.400000px;}
.y33{bottom:1033.920000px;}
.ye3{bottom:1037.160000px;}
.y8{bottom:1055.160000px;}
.ya{bottom:1065.000000px;}
.y7{bottom:1075.680000px;}
.y6{bottom:1096.560000px;}
.y5{bottom:1117.080000px;}
.y4{bottom:1137.960000px;}
.y3{bottom:1158.480000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h12{height:18.000000px;}
.h10{height:19.500000px;}
.hb{height:28.500000px;}
.ha{height:31.467656px;}
.hd{height:36.000000px;}
.h7{height:46.025156px;}
.h6{height:49.992188px;}
.h8{height:50.167969px;}
.h9{height:53.067656px;}
.h2{height:53.717344px;}
.hf{height:54.000000px;}
.h3{height:63.175781px;}
.h14{height:70.500000px;}
.h13{height:72.000000px;}
.h5{height:74.181094px;}
.h11{height:87.000000px;}
.h4{height:121.500000px;}
.h15{height:123.000000px;}
.he{height:157.500000px;}
.hc{height:243.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:160.500000px;}
.w8{width:162.000000px;}
.w5{width:166.500000px;}
.w9{width:169.500000px;}
.wa{width:171.000000px;}
.w7{width:184.500000px;}
.w3{width:318.000000px;}
.w4{width:319.500000px;}
.w2{width:363.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:7.439928px;}
.x23{left:8.940000px;}
.x14{left:60.614844px;}
.x22{left:61.994880px;}
.x6{left:63.974844px;}
.x1b{left:67.051020px;}
.x29{left:73.733400px;}
.x1a{left:78.221280px;}
.x1f{left:85.688040px;}
.x1d{left:90.637200px;}
.x21{left:98.220000px;}
.x20{left:109.470000px;}
.x13{left:120.000000px;}
.x1{left:127.439928px;}
.x2f{left:136.590084px;}
.x3{left:150.181272px;}
.xf{left:180.614844px;}
.x7{left:181.649412px;}
.x12{left:211.946400px;}
.x8{left:259.231536px;}
.x4{left:270.000000px;}
.x5{left:274.499640px;}
.x19{left:289.500000px;}
.x10{left:297.539820px;}
.x2b{left:350.714736px;}
.x26{left:384.167880px;}
.x11{left:396.614880px;}
.x2a{left:402.094440px;}
.x17{left:415.486440px;}
.x15{left:438.000000px;}
.x27{left:450.000000px;}
.x1c{left:454.500000px;}
.x2d{left:459.000000px;}
.x2c{left:467.380080px;}
.x18{left:471.551040px;}
.x2{left:483.539760px;}
.x24{left:507.769560px;}
.xa{left:539.017920px;}
.x25{left:568.589760px;}
.xd{left:596.498400px;}
.x9{left:601.991280px;}
.xb{left:608.416200px;}
.x28{left:612.000000px;}
.x1e{left:613.500000px;}
.xe{left:614.885040px;}
.x2e{left:624.000000px;}
.xc{left:786.465000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls2a{letter-spacing:-0.408576pt;}
.ls25{letter-spacing:-0.370944pt;}
.ls18{letter-spacing:-0.338688pt;}
.ls17{letter-spacing:-0.306432pt;}
.ls4{letter-spacing:-0.301056pt;}
.ls24{letter-spacing:-0.295680pt;}
.ls1b{letter-spacing:-0.284928pt;}
.ls16{letter-spacing:-0.268800pt;}
.ls6{letter-spacing:-0.231168pt;}
.ls14{letter-spacing:-0.215040pt;}
.ls15{letter-spacing:-0.198912pt;}
.lsd{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.155904pt;}
.lsa{letter-spacing:-0.141312pt;}
.ls19{letter-spacing:-0.139776pt;}
.ls1a{letter-spacing:-0.129024pt;}
.ls7{letter-spacing:-0.107520pt;}
.lse{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.076544pt;}
.lsb{letter-spacing:-0.070656pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls12{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.012800pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.244992pt;}
.lsf{letter-spacing:0.263680pt;}
.ls8{letter-spacing:0.282112pt;}
.ls20{letter-spacing:0.366080pt;}
.ls27{letter-spacing:0.371200pt;}
.ls23{letter-spacing:0.640384pt;}
.ls28{letter-spacing:1.162240pt;}
.ls21{letter-spacing:1.181440pt;}
.ls10{letter-spacing:1.579264pt;}
.ls1{letter-spacing:2.279680pt;}
.ls22{letter-spacing:5.477120pt;}
.ls1e{letter-spacing:5.699840pt;}
.ls26{letter-spacing:9.578240pt;}
.ls2{letter-spacing:10.287744pt;}
.ls1c{letter-spacing:11.712000pt;}
.ls29{letter-spacing:15.402240pt;}
.ls0{letter-spacing:20.679808pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.993600pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.649344pt;}
.ws1{word-spacing:-14.578688pt;}
.ws4{word-spacing:-14.543360pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.310976pt;}
.wsf{word-spacing:-13.300224pt;}
.ws7{word-spacing:-13.241088pt;}
.wsa{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.208832pt;}
.wsc{word-spacing:-13.171200pt;}
.wse{word-spacing:-13.155072pt;}
.wsb{word-spacing:-13.138944pt;}
.ws13{word-spacing:-13.101312pt;}
.ws10{word-spacing:-13.069056pt;}
.ws11{word-spacing:-13.031424pt;}
.ws12{word-spacing:-1.525760pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.953344pt;}
._0{width:0.967680pt;}
._18{width:1.989120pt;}
._a{width:2.885120pt;}
._d{width:4.239360pt;}
._b{width:5.416960pt;}
._5{width:6.417920pt;}
._4{width:7.536640pt;}
._7{width:9.086464pt;}
._6{width:10.186240pt;}
._9{width:11.741952pt;}
._8{width:12.835840pt;}
._10{width:14.185344pt;}
._f{width:15.160320pt;}
._c{width:16.368640pt;}
._e{width:17.657600pt;}
._11{width:18.688000pt;}
._1c{width:19.622656pt;}
._3{width:20.761344pt;}
._2{width:22.542976pt;}
._1e{width:23.966464pt;}
._14{width:24.939648pt;}
._1b{width:25.855232pt;}
._16{width:26.772480pt;}
._15{width:27.793920pt;}
._1d{width:29.472000pt;}
._22{width:30.585600pt;}
._1a{width:33.492480pt;}
._17{width:38.169600pt;}
._26{width:41.932800pt;}
._20{width:43.814400pt;}
._12{width:45.104640pt;}
._13{width:46.179840pt;}
._19{width:49.728000pt;}
._21{width:51.394560pt;}
._23{width:56.501760pt;}
._24{width:90.209280pt;}
._25{width:106.229760pt;}
._1f{width:175.092608pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.yc{bottom:-26.666667pt;}
.yb{bottom:-2.346667pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:3.200000pt;}
.y67{bottom:3.360000pt;}
.yc7{bottom:3.840000pt;}
.ya3{bottom:3.893333pt;}
.y9f{bottom:4.053333pt;}
.y95{bottom:4.106667pt;}
.y100{bottom:4.160000pt;}
.yf9{bottom:4.320000pt;}
.yc4{bottom:5.440000pt;}
.y58{bottom:11.733333pt;}
.ybd{bottom:18.560000pt;}
.y66{bottom:18.720000pt;}
.y94{bottom:19.146667pt;}
.yc6{bottom:19.200000pt;}
.ya2{bottom:19.253333pt;}
.y9e{bottom:19.413333pt;}
.yff{bottom:19.520000pt;}
.yf8{bottom:19.680000pt;}
.yc3{bottom:20.800000pt;}
.y65{bottom:34.080000pt;}
.ya1{bottom:34.613333pt;}
.y9d{bottom:34.773333pt;}
.yfe{bottom:34.880000pt;}
.yf7{bottom:35.040000pt;}
.yc2{bottom:35.840000pt;}
.y64{bottom:49.440000pt;}
.ya0{bottom:49.973333pt;}
.yf6{bottom:50.080000pt;}
.y9{bottom:50.240000pt;}
.yc1{bottom:51.200000pt;}
.ya5{bottom:64.053333pt;}
.y63{bottom:64.800000pt;}
.y9b{bottom:65.333333pt;}
.yfd{bottom:65.600000pt;}
.y62{bottom:80.160000pt;}
.y9a{bottom:80.693333pt;}
.yfc{bottom:80.960000pt;}
.y61{bottom:95.520000pt;}
.y99{bottom:96.053333pt;}
.yfb{bottom:96.320000pt;}
.y53{bottom:97.280000pt;}
.y8a{bottom:100.480000pt;}
.ycd{bottom:102.080000pt;}
.y120{bottom:103.680000pt;}
.y60{bottom:110.880000pt;}
.y98{bottom:111.413333pt;}
.ycc{bottom:112.640000pt;}
.y52{bottom:117.440000pt;}
.y72{bottom:118.400000pt;}
.y5f{bottom:126.240000pt;}
.y97{bottom:126.773333pt;}
.y89{bottom:128.000000pt;}
.y51{bottom:128.960000pt;}
.y11f{bottom:131.200000pt;}
.ycb{bottom:132.800000pt;}
.y32{bottom:134.400000pt;}
.y5e{bottom:141.600000pt;}
.ye2{bottom:143.360000pt;}
.yca{bottom:144.320000pt;}
.y71{bottom:145.920000pt;}
.y88{bottom:155.520000pt;}
.y12b{bottom:155.840000pt;}
.y5d{bottom:156.960000pt;}
.y11e{bottom:158.720000pt;}
.y31{bottom:161.920000pt;}
.ye1{bottom:163.520000pt;}
.y5c{bottom:172.000000pt;}
.y70{bottom:173.440000pt;}
.y12a{bottom:174.400000pt;}
.ye0{bottom:175.040000pt;}
.yaa{bottom:178.240000pt;}
.y87{bottom:183.360000pt;}
.y11d{bottom:186.240000pt;}
.y5b{bottom:187.360000pt;}
.yc9{bottom:188.480000pt;}
.y30{bottom:189.440000pt;}
.y107{bottom:190.400000pt;}
.y129{bottom:192.640000pt;}
.ydf{bottom:195.200000pt;}
.y50{bottom:198.720000pt;}
.y6f{bottom:201.280000pt;}
.y5a{bottom:202.720000pt;}
.yc8{bottom:203.840000pt;}
.ya9{bottom:205.760000pt;}
.yde{bottom:210.240000pt;}
.y86{bottom:210.880000pt;}
.y128{bottom:211.200000pt;}
.y11c{bottom:214.080000pt;}
.yc0{bottom:216.000000pt;}
.y2f{bottom:216.960000pt;}
.y106{bottom:217.920000pt;}
.ydd{bottom:225.600000pt;}
.y4f{bottom:226.240000pt;}
.y6e{bottom:228.800000pt;}
.y127{bottom:229.440000pt;}
.ya8{bottom:233.280000pt;}
.y85{bottom:238.400000pt;}
.ydc{bottom:240.960000pt;}
.y11b{bottom:241.600000pt;}
.y2e{bottom:244.800000pt;}
.y105{bottom:245.760000pt;}
.yc5{bottom:248.000000pt;}
.ya7{bottom:251.200000pt;}
.y4e{bottom:253.760000pt;}
.y6d{bottom:256.320000pt;}
.ybf{bottom:264.000000pt;}
.y84{bottom:265.920000pt;}
.y126{bottom:266.240000pt;}
.ya6{bottom:266.560000pt;}
.y11a{bottom:269.120000pt;}
.y2d{bottom:272.320000pt;}
.y104{bottom:273.280000pt;}
.y96{bottom:278.666667pt;}
.ybc{bottom:280.000000pt;}
.y4d{bottom:281.280000pt;}
.y6c{bottom:283.840000pt;}
.y83{bottom:284.800000pt;}
.y119{bottom:296.640000pt;}
.y2c{bottom:299.840000pt;}
.y103{bottom:300.800000pt;}
.y82{bottom:302.400000pt;}
.y125{bottom:303.040000pt;}
.y4c{bottom:309.120000pt;}
.y6b{bottom:311.680000pt;}
.ybb{bottom:314.560000pt;}
.y81{bottom:317.760000pt;}
.y102{bottom:319.680000pt;}
.y124{bottom:321.600000pt;}
.y118{bottom:324.160000pt;}
.y2b{bottom:327.360000pt;}
.yba{bottom:330.880000pt;}
.y80{bottom:333.120000pt;}
.y4b{bottom:336.640000pt;}
.y101{bottom:337.920000pt;}
.y6a{bottom:339.200000pt;}
.y123{bottom:339.840000pt;}
.y7f{bottom:348.480000pt;}
.yfa{bottom:352.000000pt;}
.ya4{bottom:354.666667pt;}
.y2a{bottom:355.200000pt;}
.y69{bottom:357.760000pt;}
.yb9{bottom:358.080000pt;}
.y122{bottom:358.400000pt;}
.y7e{bottom:363.840000pt;}
.y4a{bottom:364.160000pt;}
.y9c{bottom:370.666667pt;}
.y68{bottom:375.360000pt;}
.yb8{bottom:376.000000pt;}
.y121{bottom:376.640000pt;}
.y7d{bottom:378.880000pt;}
.y117{bottom:379.520000pt;}
.y29{bottom:382.720000pt;}
.y59{bottom:388.000000pt;}
.yb7{bottom:391.360000pt;}
.y49{bottom:391.680000pt;}
.y7c{bottom:395.200000pt;}
.yb6{bottom:406.720000pt;}
.y116{bottom:407.040000pt;}
.y28{bottom:410.240000pt;}
.y93{bottom:417.333333pt;}
.y48{bottom:419.520000pt;}
.yb5{bottom:422.080000pt;}
.y7b{bottom:422.400000pt;}
.y27{bottom:428.480000pt;}
.y115{bottom:434.560000pt;}
.yb4{bottom:437.440000pt;}
.y26{bottom:445.440000pt;}
.y47{bottom:447.040000pt;}
.y7a{bottom:449.920000pt;}
.y92{bottom:452.480000pt;}
.yf5{bottom:460.000000pt;}
.y25{bottom:462.080000pt;}
.y114{bottom:462.400000pt;}
.y91{bottom:468.800000pt;}
.y46{bottom:474.560000pt;}
.y79{bottom:477.760000pt;}
.y24{bottom:479.040000pt;}
.y113{bottom:489.920000pt;}
.y23{bottom:496.000000pt;}
.y45{bottom:502.080000pt;}
.y78{bottom:505.280000pt;}
.y22{bottom:512.960000pt;}
.y90{bottom:513.920000pt;}
.y112{bottom:517.440000pt;}
.yf4{bottom:526.080000pt;}
.y8f{bottom:529.280000pt;}
.y21{bottom:529.600000pt;}
.y44{bottom:529.920000pt;}
.y77{bottom:532.800000pt;}
.yf3{bottom:541.440000pt;}
.y8e{bottom:544.640000pt;}
.y111{bottom:544.960000pt;}
.y20{bottom:546.560000pt;}
.y43{bottom:557.440000pt;}
.y8d{bottom:560.000000pt;}
.y76{bottom:560.320000pt;}
.y1f{bottom:563.520000pt;}
.yf2{bottom:566.720000pt;}
.y110{bottom:572.800000pt;}
.y8c{bottom:575.360000pt;}
.y42{bottom:576.000000pt;}
.y1e{bottom:580.160000pt;}
.ydb{bottom:584.960000pt;}
.y75{bottom:588.160000pt;}
.y8b{bottom:590.720000pt;}
.y41{bottom:593.600000pt;}
.yf1{bottom:594.240000pt;}
.y1d{bottom:597.120000pt;}
.y10f{bottom:600.320000pt;}
.y57{bottom:602.666667pt;}
.y40{bottom:608.960000pt;}
.yda{bottom:612.480000pt;}
.y1c{bottom:614.080000pt;}
.y74{bottom:615.680000pt;}
.yf0{bottom:621.760000pt;}
.y3f{bottom:624.320000pt;}
.y10e{bottom:627.840000pt;}
.y56{bottom:630.400000pt;}
.y1b{bottom:630.720000pt;}
.y3e{bottom:639.680000pt;}
.yd9{bottom:640.000000pt;}
.y73{bottom:643.200000pt;}
.y55{bottom:645.760000pt;}
.y1a{bottom:647.680000pt;}
.yef{bottom:649.280000pt;}
.y3d{bottom:655.040000pt;}
.y10d{bottom:655.360000pt;}
.y19{bottom:664.640000pt;}
.yd8{bottom:667.840000pt;}
.y54{bottom:670.720000pt;}
.y3c{bottom:671.040000pt;}
.yee{bottom:676.800000pt;}
.y18{bottom:681.600000pt;}
.y10c{bottom:683.200000pt;}
.yd7{bottom:695.360000pt;}
.y17{bottom:698.240000pt;}
.y3b{bottom:698.560000pt;}
.yed{bottom:704.640000pt;}
.y10b{bottom:710.720000pt;}
.yd6{bottom:713.280000pt;}
.y16{bottom:715.520000pt;}
.yb3{bottom:716.480000pt;}
.y3a{bottom:726.080000pt;}
.yd5{bottom:728.640000pt;}
.yb2{bottom:731.520000pt;}
.yec{bottom:732.160000pt;}
.y15{bottom:734.080000pt;}
.yd4{bottom:744.000000pt;}
.yb1{bottom:746.880000pt;}
.y14{bottom:752.320000pt;}
.y39{bottom:753.600000pt;}
.yd3{bottom:759.360000pt;}
.yeb{bottom:759.680000pt;}
.yb0{bottom:762.240000pt;}
.y13{bottom:770.880000pt;}
.yd2{bottom:774.720000pt;}
.yaf{bottom:777.600000pt;}
.y38{bottom:781.120000pt;}
.yea{bottom:787.200000pt;}
.y12{bottom:789.120000pt;}
.yd1{bottom:790.080000pt;}
.yae{bottom:792.960000pt;}
.yd0{bottom:805.120000pt;}
.y11{bottom:807.680000pt;}
.yad{bottom:808.320000pt;}
.y37{bottom:808.960000pt;}
.ye9{bottom:815.040000pt;}
.ycf{bottom:820.480000pt;}
.yac{bottom:823.680000pt;}
.y10{bottom:825.920000pt;}
.y10a{bottom:835.840000pt;}
.y36{bottom:836.480000pt;}
.yce{bottom:836.800000pt;}
.yab{bottom:839.040000pt;}
.ye8{bottom:842.560000pt;}
.yf{bottom:844.480000pt;}
.y109{bottom:851.200000pt;}
.ye7{bottom:860.480000pt;}
.y35{bottom:864.000000pt;}
.y108{bottom:866.560000pt;}
.ye6{bottom:875.840000pt;}
.ye{bottom:884.800000pt;}
.ye5{bottom:891.200000pt;}
.y34{bottom:891.520000pt;}
.ye4{bottom:906.560000pt;}
.yd{bottom:916.800000pt;}
.y33{bottom:919.040000pt;}
.ye3{bottom:921.920000pt;}
.y8{bottom:937.920000pt;}
.ya{bottom:946.666667pt;}
.y7{bottom:956.160000pt;}
.y6{bottom:974.720000pt;}
.y5{bottom:992.960000pt;}
.y4{bottom:1011.520000pt;}
.y3{bottom:1029.760000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h12{height:16.000000pt;}
.h10{height:17.333333pt;}
.hb{height:25.333333pt;}
.ha{height:27.971250pt;}
.hd{height:32.000000pt;}
.h7{height:40.911250pt;}
.h6{height:44.437500pt;}
.h8{height:44.593750pt;}
.h9{height:47.171250pt;}
.h2{height:47.748750pt;}
.hf{height:48.000000pt;}
.h3{height:56.156250pt;}
.h14{height:62.666667pt;}
.h13{height:64.000000pt;}
.h5{height:65.938750pt;}
.h11{height:77.333333pt;}
.h4{height:108.000000pt;}
.h15{height:109.333333pt;}
.he{height:140.000000pt;}
.hc{height:216.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:142.666667pt;}
.w8{width:144.000000pt;}
.w5{width:148.000000pt;}
.w9{width:150.666667pt;}
.wa{width:152.000000pt;}
.w7{width:164.000000pt;}
.w3{width:282.666667pt;}
.w4{width:284.000000pt;}
.w2{width:322.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:6.613269pt;}
.x23{left:7.946667pt;}
.x14{left:53.879861pt;}
.x22{left:55.106560pt;}
.x6{left:56.866528pt;}
.x1b{left:59.600907pt;}
.x29{left:65.540800pt;}
.x1a{left:69.530027pt;}
.x1f{left:76.167147pt;}
.x1d{left:80.566400pt;}
.x21{left:87.306667pt;}
.x20{left:97.306667pt;}
.x13{left:106.666667pt;}
.x1{left:113.279936pt;}
.x2f{left:121.413408pt;}
.x3{left:133.494464pt;}
.xf{left:160.546528pt;}
.x7{left:161.466144pt;}
.x12{left:188.396800pt;}
.x8{left:230.428032pt;}
.x4{left:240.000000pt;}
.x5{left:243.999680pt;}
.x19{left:257.333333pt;}
.x10{left:264.479840pt;}
.x2b{left:311.746432pt;}
.x26{left:341.482560pt;}
.x11{left:352.546560pt;}
.x2a{left:357.417280pt;}
.x17{left:369.321280pt;}
.x15{left:389.333333pt;}
.x27{left:400.000000pt;}
.x1c{left:404.000000pt;}
.x2d{left:408.000000pt;}
.x2c{left:415.448960pt;}
.x18{left:419.156480pt;}
.x2{left:429.813120pt;}
.x24{left:451.350720pt;}
.xa{left:479.127040pt;}
.x25{left:505.413120pt;}
.xd{left:530.220800pt;}
.x9{left:535.103360pt;}
.xb{left:540.814400pt;}
.x28{left:544.000000pt;}
.x1e{left:545.333333pt;}
.xe{left:546.564480pt;}
.x2e{left:554.666667pt;}
.xc{left:699.080000pt;}
}




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