
    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_912c0539367a36014009e105.woff')format("woff");}.ff1{font-family:ff1;line-height:1.261719;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_9314356238fccbe55b1ab391.woff')format("woff");}.ff2{font-family:ff2;line-height:1.275391;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_e74afa791907a1520da4adf5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.261719;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_89394d5fc59a1880e48cca5f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_595e089b3561bca1cddb47f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.275391;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_97238702130c2211c67ecf7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.785156;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_2489df4d06bf29f98428eca8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.785156;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_2d1e9a633114aef5ab40a2df.woff')format("woff");}.ff9{font-family:ff9;line-height:1.343262;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_8311d9cdd51b300ea1d6726c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.343262;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls1a{letter-spacing:-15.360000px;}
.ls30{letter-spacing:-0.936000px;}
.ls38{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.576000px;}
.ls34{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.325200px;}
.ls10{letter-spacing:-0.295200px;}
.ls18{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.232800px;}
.ls26{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.207600px;}
.ls2f{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.072000px;}
.ls28{letter-spacing:-0.000003px;}
.lsa{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.015840px;}
.ls5{letter-spacing:0.063360px;}
.lsb{letter-spacing:0.063600px;}
.ls1d{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.107400px;}
.ls15{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.154800px;}
.ls11{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.218880px;}
.ls19{letter-spacing:0.286800px;}
.ls6{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.295200px;}
.ls0{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.432000px;}
.ls35{letter-spacing:0.471600px;}
.ls2b{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.783360px;}
.lsc{letter-spacing:0.786000px;}
.ls36{letter-spacing:0.840240px;}
.ls3f{letter-spacing:1.008000px;}
.ls3d{letter-spacing:1.440000px;}
.ls3c{letter-spacing:1.656000px;}
.ls23{letter-spacing:1.927440px;}
.ls1f{letter-spacing:2.088000px;}
.ls7{letter-spacing:2.647440px;}
.ls17{letter-spacing:2.808000px;}
.ls14{letter-spacing:3.504000px;}
.ls13{letter-spacing:3.528000px;}
.ls1b{letter-spacing:4.248000px;}
.ls8{letter-spacing:4.807440px;}
.ls1c{letter-spacing:5.256000px;}
.ls1e{letter-spacing:5.688000px;}
.ls3b{letter-spacing:6.408000px;}
.ls25{letter-spacing:6.696000px;}
.ls2{letter-spacing:8.407440px;}
.ls3e{letter-spacing:8.568000px;}
.ls33{letter-spacing:9.288000px;}
.ls2d{letter-spacing:9.576000px;}
.ls21{letter-spacing:15.336000px;}
.ls24{letter-spacing:19.008000px;}
.ls22{letter-spacing:19.548000px;}
.ls2c{letter-spacing:22.248000px;}
.ls37{letter-spacing:23.256000px;}
.ls16{letter-spacing:24.408000px;}
.ls2a{letter-spacing:40.536000px;}
.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;}
}
.ws2{word-spacing:-84.240000px;}
.ws4{word-spacing:-72.000000px;}
.ws3{word-spacing:-23.671440px;}
.ws1c{word-spacing:-20.520000px;}
.ws11{word-spacing:-20.304000px;}
.ws20{word-spacing:-20.232001px;}
.ws5{word-spacing:-20.232000px;}
.ws1e{word-spacing:-20.088000px;}
.ws13{word-spacing:-20.016000px;}
.ws19{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.613440px;}
.ws7{word-spacing:-18.288240px;}
.ws12{word-spacing:-18.072000px;}
.wsd{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws18{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.783997px;}
.ws21{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.496000px;}
.ws1d{word-spacing:-17.280000px;}
.ws1b{word-spacing:-17.264160px;}
.ws16{word-spacing:-17.208000px;}
.ws10{word-spacing:-17.152560px;}
.ws1f{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.947360px;}
.ws0{word-spacing:-16.792560px;}
.wsa{word-spacing:-16.497360px;}
.ws1{word-spacing:-16.432560px;}
.wsc{word-spacing:-16.135200px;}
.ws9{word-spacing:-14.760720px;}
.wsf{word-spacing:-10.314720px;}
.wsb{word-spacing:0.000000px;}
.ws14{word-spacing:0.540000px;}
._17{margin-left:-16.632000px;}
._15{margin-left:-6.057120px;}
._1c{margin-left:-4.966080px;}
._c{margin-left:-3.525840px;}
._d{margin-left:-2.474160px;}
._1{margin-left:-1.111200px;}
._0{width:1.314720px;}
._b{width:2.330640px;}
._8{width:3.525840px;}
._2{width:5.378400px;}
._4{width:6.633360px;}
._7{width:8.270400px;}
._5{width:9.740880px;}
._6{width:11.095680px;}
._9{width:12.297120px;}
._3{width:13.983840px;}
._a{width:15.471120px;}
._16{width:17.198400px;}
._14{width:18.360000px;}
._18{width:19.613280px;}
._12{width:21.672000px;}
._11{width:23.503200px;}
._10{width:24.624000px;}
._13{width:25.992000px;}
._19{width:27.998400px;}
._f{width:29.664000px;}
._e{width:30.816000px;}
._24{width:31.824000px;}
._1e{width:32.870640px;}
._1d{width:33.984000px;}
._23{width:38.952000px;}
._1b{width:40.145280px;}
._1a{width:41.616000px;}
._22{width:47.376000px;}
._21{width:48.672000px;}
._1f{width:112.428000px;}
._20{width:113.472000px;}
.fc4{color:transparent;}
.fc3{color:rgb(33,37,41);}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.170000px;}
.y4{bottom:25.590000px;}
.y3{bottom:47.190000px;}
.y2{bottom:68.610000px;}
.y34{bottom:76.176000px;}
.y11{bottom:93.456000px;}
.y33{bottom:95.256000px;}
.y10{bottom:113.616000px;}
.y62{bottom:116.136000px;}
.yd3{bottom:116.316000px;}
.y8c{bottom:122.076000px;}
.yee{bottom:125.676000px;}
.yf{bottom:132.696000px;}
.y61{bottom:137.736000px;}
.y10b{bottom:138.816000px;}
.y60{bottom:143.676000px;}
.yd2{bottom:149.796000px;}
.yed{bottom:151.590000px;}
.ye{bottom:153.570000px;}
.y5f{bottom:159.150000px;}
.y5e{bottom:165.090000px;}
.y10a{bottom:167.610000px;}
.yd1{bottom:174.810000px;}
.yd{bottom:175.170000px;}
.yec{bottom:177.330000px;}
.y5d{bottom:180.750000px;}
.y8f{bottom:181.830000px;}
.y128{bottom:182.010000px;}
.y5c{bottom:186.690000px;}
.y109{bottom:193.530000px;}
.yc{bottom:196.590000px;}
.yd0{bottom:199.650000px;}
.y5b{bottom:202.350000px;}
.yeb{bottom:203.250000px;}
.y8b{bottom:203.430000px;}
.y8e{bottom:205.770000px;}
.y127{bottom:207.930000px;}
.y5a{bottom:208.290000px;}
.yb{bottom:218.190000px;}
.y108{bottom:219.270000px;}
.ycf{bottom:224.670000px;}
.y59{bottom:224.850000px;}
.yea{bottom:228.990000px;}
.yce{bottom:230.610000px;}
.y8a{bottom:231.510000px;}
.y126{bottom:238.170000px;}
.ya{bottom:239.790000px;}
.y107{bottom:245.010000px;}
.yb2{bottom:246.990000px;}
.ycd{bottom:247.350000px;}
.ye9{bottom:254.910000px;}
.y89{bottom:257.430000px;}
.y9{bottom:261.210000px;}
.y125{bottom:264.090000px;}
.y106{bottom:270.930000px;}
.yb1{bottom:272.730000px;}
.ye8{bottom:280.650000px;}
.y8{bottom:282.810000px;}
.y88{bottom:283.170000px;}
.ycc{bottom:284.790000px;}
.y124{bottom:294.330000px;}
.y105{bottom:296.670000px;}
.yb0{bottom:298.650000px;}
.y57{bottom:306.390000px;}
.y87{bottom:309.090000px;}
.ycb{bottom:310.530000px;}
.y58{bottom:313.950000px;}
.y123{bottom:320.070000px;}
.y7{bottom:321.510000px;}
.ye7{bottom:322.410000px;}
.y104{bottom:322.590000px;}
.yaf{bottom:324.390000px;}
.y56{bottom:332.130000px;}
.y86{bottom:334.830000px;}
.yca{bottom:336.495000px;}
.ye6{bottom:348.375000px;}
.yae{bottom:350.175000px;}
.y122{bottom:350.535000px;}
.y55{bottom:357.915000px;}
.y31{bottom:358.095000px;}
.y84{bottom:360.615000px;}
.yc9{bottom:362.235000px;}
.y85{bottom:368.175000px;}
.ye5{bottom:374.295000px;}
.y121{bottom:376.275000px;}
.y30{bottom:379.515000px;}
.yad{bottom:380.235000px;}
.y54{bottom:383.835000px;}
.y83{bottom:386.535000px;}
.yc8{bottom:388.155000px;}
.ye4{bottom:400.035000px;}
.y2f{bottom:401.115000px;}
.y120{bottom:402.195000px;}
.y53{bottom:409.575000px;}
.yac{bottom:410.115000px;}
.y82{bottom:412.275000px;}
.yc7{bottom:413.895000px;}
.y2e{bottom:422.535000px;}
.ye3{bottom:425.955000px;}
.y11f{bottom:432.435000px;}
.y52{bottom:435.495000px;}
.yab{bottom:435.855000px;}
.y81{bottom:438.195000px;}
.yc6{bottom:439.635000px;}
.y2d{bottom:444.135000px;}
.ye2{bottom:451.695000px;}
.y11e{bottom:458.355000px;}
.y51{bottom:461.235000px;}
.yaa{bottom:461.775000px;}
.y80{bottom:463.935000px;}
.y2c{bottom:465.555000px;}
.ye1{bottom:477.615000px;}
.y11d{bottom:484.095000px;}
.y2b{bottom:487.155000px;}
.ya9{bottom:487.515000px;}
.y7f{bottom:489.855000px;}
.yc5{bottom:491.295000px;}
.ye0{bottom:503.355000px;}
.y2a{bottom:508.575000px;}
.y50{bottom:512.895000px;}
.ya8{bottom:513.435000px;}
.y11c{bottom:514.515000px;}
.y7e{bottom:515.595000px;}
.yc4{bottom:521.355000px;}
.y102{bottom:529.275000px;}
.y29{bottom:530.175000px;}
.ydf{bottom:533.235000px;}
.y103{bottom:536.835000px;}
.y4f{bottom:538.815000px;}
.ya7{bottom:539.175000px;}
.y7d{bottom:541.515000px;}
.y11b{bottom:544.755000px;}
.yc2{bottom:547.095000px;}
.y28{bottom:551.775000px;}
.yc3{bottom:554.655000px;}
.y101{bottom:555.015000px;}
.yde{bottom:559.155000px;}
.y4e{bottom:564.555000px;}
.ya6{bottom:565.095000px;}
.y7c{bottom:567.255000px;}
.y11a{bottom:570.675000px;}
.yc1{bottom:572.835000px;}
.y27{bottom:573.195000px;}
.y100{bottom:580.755000px;}
.ydd{bottom:584.895000px;}
.y4d{bottom:590.475000px;}
.ya5{bottom:590.835000px;}
.y7b{bottom:593.175000px;}
.y26{bottom:594.795000px;}
.y119{bottom:596.415000px;}
.yc0{bottom:598.755000px;}
.yff{bottom:606.705000px;}
.ydc{bottom:610.845000px;}
.y25{bottom:616.245000px;}
.ya4{bottom:616.605000px;}
.y79{bottom:618.945000px;}
.ybf{bottom:624.525000px;}
.y7a{bottom:626.505000px;}
.y118{bottom:626.685000px;}
.yfe{bottom:632.445000px;}
.ydb{bottom:636.585000px;}
.y24{bottom:637.845000px;}
.y4b{bottom:642.165000px;}
.ya3{bottom:642.525000px;}
.y78{bottom:644.685000px;}
.y4c{bottom:649.725000px;}
.ybe{bottom:650.445000px;}
.y117{bottom:652.605000px;}
.yfd{bottom:658.365000px;}
.y23{bottom:659.265000px;}
.yda{bottom:662.505000px;}
.y4a{bottom:667.905000px;}
.ya2{bottom:668.265000px;}
.y77{bottom:670.605000px;}
.ybd{bottom:676.185000px;}
.y116{bottom:678.345000px;}
.y22{bottom:680.865000px;}
.yfc{bottom:684.105000px;}
.yd9{bottom:688.245000px;}
.y48{bottom:693.645000px;}
.ya1{bottom:694.185000px;}
.y76{bottom:696.345000px;}
.y49{bottom:701.205000px;}
.ybc{bottom:702.105000px;}
.y21{bottom:702.285000px;}
.y115{bottom:708.765000px;}
.yfb{bottom:710.025000px;}
.yd8{bottom:713.985000px;}
.y47{bottom:719.565000px;}
.ya0{bottom:719.925000px;}
.y75{bottom:722.265000px;}
.y20{bottom:724.605000px;}
.ybb{bottom:727.845000px;}
.y114{bottom:734.505000px;}
.yfa{bottom:735.765000px;}
.yd7{bottom:739.905000px;}
.y46{bottom:745.305000px;}
.y9f{bottom:745.845000px;}
.y73{bottom:748.005000px;}
.y1f{bottom:749.985000px;}
.yba{bottom:753.765000px;}
.y74{bottom:755.565000px;}
.y113{bottom:760.425000px;}
.yf9{bottom:761.685000px;}
.yd6{bottom:765.645000px;}
.y45{bottom:771.225000px;}
.y9e{bottom:771.585000px;}
.y1e{bottom:773.745000px;}
.y72{bottom:773.925000px;}
.yb9{bottom:779.505000px;}
.y8d{bottom:781.485000px;}
.y112{bottom:786.165000px;}
.yf8{bottom:787.425000px;}
.yd5{bottom:791.565000px;}
.y44{bottom:796.965000px;}
.y1d{bottom:797.325000px;}
.y9d{bottom:797.505000px;}
.y71{bottom:799.665000px;}
.yb8{bottom:805.425000px;}
.yf7{bottom:813.345000px;}
.y111{bottom:816.585000px;}
.y1c{bottom:821.085000px;}
.yd4{bottom:821.445000px;}
.y42{bottom:822.885000px;}
.y70{bottom:825.585000px;}
.y43{bottom:830.445000px;}
.yb7{bottom:831.165000px;}
.y9c{bottom:839.085000px;}
.y110{bottom:842.325000px;}
.y1b{bottom:844.665000px;}
.y41{bottom:848.625000px;}
.y6f{bottom:851.325000px;}
.yb6{bottom:857.085000px;}
.yf6{bottom:864.825000px;}
.y9b{bottom:865.185000px;}
.y10f{bottom:868.245000px;}
.y1a{bottom:868.425000px;}
.y40{bottom:874.590000px;}
.y6e{bottom:877.290000px;}
.yb5{bottom:882.870000px;}
.yf5{bottom:890.790000px;}
.y99{bottom:890.970000px;}
.y19{bottom:892.050000px;}
.y9a{bottom:898.530000px;}
.y6d{bottom:903.030000px;}
.y3f{bottom:904.830000px;}
.yb4{bottom:908.610000px;}
.y18{bottom:915.450000px;}
.yf4{bottom:916.530000px;}
.y98{bottom:916.890000px;}
.y10e{bottom:924.450000px;}
.y6c{bottom:928.950000px;}
.y17{bottom:937.770000px;}
.yf3{bottom:942.450000px;}
.y97{bottom:942.630000px;}
.y3e{bottom:945.150000px;}
.y10d{bottom:950.190000px;}
.yb3{bottom:950.370000px;}
.y6b{bottom:954.690000px;}
.y16{bottom:963.510000px;}
.y3d{bottom:966.750000px;}
.yf2{bottom:968.190000px;}
.y96{bottom:968.550000px;}
.y10c{bottom:975.930000px;}
.y6a{bottom:980.430000px;}
.y3c{bottom:988.350000px;}
.yf1{bottom:994.110000px;}
.y94{bottom:994.290000px;}
.y95{bottom:1001.850000px;}
.y15{bottom:1002.030000px;}
.y69{bottom:1006.350000px;}
.y3b{bottom:1009.770000px;}
.y93{bottom:1020.210000px;}
.yf0{bottom:1023.990000px;}
.y3a{bottom:1031.370000px;}
.y68{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.y92{bottom:1045.950000px;}
.y39{bottom:1052.790000px;}
.yef{bottom:1053.870000px;}
.y67{bottom:1058.010000px;}
.y13{bottom:1062.330000px;}
.y91{bottom:1071.870000px;}
.y38{bottom:1074.390000px;}
.y66{bottom:1083.750000px;}
.y12{bottom:1091.310000px;}
.y37{bottom:1095.990000px;}
.y90{bottom:1097.610000px;}
.y64{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.y65{bottom:1117.230000px;}
.y36{bottom:1117.410000px;}
.y1{bottom:1134.150000px;}
.y63{bottom:1135.410000px;}
.y35{bottom:1139.040000px;}
.y32{bottom:1203.480000px;}
.hf{height:37.037109px;}
.he{height:42.963047px;}
.h7{height:43.506914px;}
.h10{height:51.793945px;}
.h6{height:55.555664px;}
.h3{height:61.481602px;}
.h4{height:62.123555px;}
.h5{height:62.402344px;}
.hc{height:65.858555px;}
.h8{height:68.148281px;}
.hb{height:74.074219px;}
.ha{height:74.847656px;}
.hd{height:79.347656px;}
.h2{height:86.256000px;}
.h9{height:87.571758px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.x13{left:110.915987px;}
.x20{left:115.415987px;}
.x9{left:159.509987px;}
.x2{left:185.799000px;}
.x1e{left:223.949973px;}
.x1f{left:234.389987px;}
.x1a{left:243.749973px;}
.x1b{left:248.969987px;}
.xe{left:271.289973px;}
.xf{left:276.509987px;}
.x1c{left:281.414987px;}
.xa{left:312.374973px;}
.xb{left:317.594987px;}
.x12{left:322.454987px;}
.x21{left:349.274973px;}
.x22{left:359.714987px;}
.xc{left:399.134973px;}
.xd{left:404.354987px;}
.x1d{left:415.154987px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.x14{left:596.984973px;}
.x15{left:602.204987px;}
.x18{left:669.569973px;}
.x19{left:675.869987px;}
.x10{left:706.829973px;}
.x11{left:712.049987px;}
.x16{left:754.169973px;}
.x17{left:759.389987px;}
.x23{left:771.629973px;}
.x6{left:777.209987px;}
.x24{left:782.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-13.653333pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls34{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.289067pt;}
.ls10{letter-spacing:-0.262400pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.206933pt;}
.ls26{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.184533pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls28{letter-spacing:-0.000003pt;}
.lsa{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.014080pt;}
.ls5{letter-spacing:0.056320pt;}
.lsb{letter-spacing:0.056533pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.095467pt;}
.ls15{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.137600pt;}
.ls11{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.194560pt;}
.ls19{letter-spacing:0.254933pt;}
.ls6{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.262400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls35{letter-spacing:0.419200pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.696320pt;}
.lsc{letter-spacing:0.698667pt;}
.ls36{letter-spacing:0.746880pt;}
.ls3f{letter-spacing:0.896000pt;}
.ls3d{letter-spacing:1.280000pt;}
.ls3c{letter-spacing:1.472000pt;}
.ls23{letter-spacing:1.713280pt;}
.ls1f{letter-spacing:1.856000pt;}
.ls7{letter-spacing:2.353280pt;}
.ls17{letter-spacing:2.496000pt;}
.ls14{letter-spacing:3.114667pt;}
.ls13{letter-spacing:3.136000pt;}
.ls1b{letter-spacing:3.776000pt;}
.ls8{letter-spacing:4.273280pt;}
.ls1c{letter-spacing:4.672000pt;}
.ls1e{letter-spacing:5.056000pt;}
.ls3b{letter-spacing:5.696000pt;}
.ls25{letter-spacing:5.952000pt;}
.ls2{letter-spacing:7.473280pt;}
.ls3e{letter-spacing:7.616000pt;}
.ls33{letter-spacing:8.256000pt;}
.ls2d{letter-spacing:8.512000pt;}
.ls21{letter-spacing:13.632000pt;}
.ls24{letter-spacing:16.896000pt;}
.ls22{letter-spacing:17.376000pt;}
.ls2c{letter-spacing:19.776000pt;}
.ls37{letter-spacing:20.672000pt;}
.ls16{letter-spacing:21.696000pt;}
.ls2a{letter-spacing:36.032000pt;}
.ws2{word-spacing:-74.880000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws3{word-spacing:-21.041280pt;}
.ws1c{word-spacing:-18.240000pt;}
.ws11{word-spacing:-18.048000pt;}
.ws20{word-spacing:-17.984001pt;}
.ws5{word-spacing:-17.984000pt;}
.ws1e{word-spacing:-17.856000pt;}
.ws13{word-spacing:-17.792000pt;}
.ws19{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.545280pt;}
.ws7{word-spacing:-16.256213pt;}
.ws12{word-spacing:-16.064000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws18{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.807997pt;}
.ws21{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.552000pt;}
.ws1d{word-spacing:-15.360000pt;}
.ws1b{word-spacing:-15.345920pt;}
.ws16{word-spacing:-15.296000pt;}
.ws10{word-spacing:-15.246720pt;}
.ws1f{word-spacing:-15.168000pt;}
.ws8{word-spacing:-15.064320pt;}
.ws0{word-spacing:-14.926720pt;}
.wsa{word-spacing:-14.664320pt;}
.ws1{word-spacing:-14.606720pt;}
.wsc{word-spacing:-14.342400pt;}
.ws9{word-spacing:-13.120640pt;}
.wsf{word-spacing:-9.168640pt;}
.wsb{word-spacing:0.000000pt;}
.ws14{word-spacing:0.480000pt;}
._17{margin-left:-14.784000pt;}
._15{margin-left:-5.384107pt;}
._1c{margin-left:-4.414293pt;}
._c{margin-left:-3.134080pt;}
._d{margin-left:-2.199253pt;}
._1{margin-left:-0.987733pt;}
._0{width:1.168640pt;}
._b{width:2.071680pt;}
._8{width:3.134080pt;}
._2{width:4.780800pt;}
._4{width:5.896320pt;}
._7{width:7.351467pt;}
._5{width:8.658560pt;}
._6{width:9.862827pt;}
._9{width:10.930773pt;}
._3{width:12.430080pt;}
._a{width:13.752107pt;}
._16{width:15.287467pt;}
._14{width:16.320000pt;}
._18{width:17.434027pt;}
._12{width:19.264000pt;}
._11{width:20.891733pt;}
._10{width:21.888000pt;}
._13{width:23.104000pt;}
._19{width:24.887467pt;}
._f{width:26.368000pt;}
._e{width:27.392000pt;}
._24{width:28.288000pt;}
._1e{width:29.218347pt;}
._1d{width:30.208000pt;}
._23{width:34.624000pt;}
._1b{width:35.684693pt;}
._1a{width:36.992000pt;}
._22{width:42.112000pt;}
._21{width:43.264000pt;}
._1f{width:99.936000pt;}
._20{width:100.864000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.706667pt;}
.y4{bottom:22.746667pt;}
.y3{bottom:41.946667pt;}
.y2{bottom:60.986667pt;}
.y34{bottom:67.712000pt;}
.y11{bottom:83.072000pt;}
.y33{bottom:84.672000pt;}
.y10{bottom:100.992000pt;}
.y62{bottom:103.232000pt;}
.yd3{bottom:103.392000pt;}
.y8c{bottom:108.512000pt;}
.yee{bottom:111.712000pt;}
.yf{bottom:117.952000pt;}
.y61{bottom:122.432000pt;}
.y10b{bottom:123.392000pt;}
.y60{bottom:127.712000pt;}
.yd2{bottom:133.152000pt;}
.yed{bottom:134.746667pt;}
.ye{bottom:136.506667pt;}
.y5f{bottom:141.466667pt;}
.y5e{bottom:146.746667pt;}
.y10a{bottom:148.986667pt;}
.yd1{bottom:155.386667pt;}
.yd{bottom:155.706667pt;}
.yec{bottom:157.626667pt;}
.y5d{bottom:160.666667pt;}
.y8f{bottom:161.626667pt;}
.y128{bottom:161.786667pt;}
.y5c{bottom:165.946667pt;}
.y109{bottom:172.026667pt;}
.yc{bottom:174.746667pt;}
.yd0{bottom:177.466667pt;}
.y5b{bottom:179.866667pt;}
.yeb{bottom:180.666667pt;}
.y8b{bottom:180.826667pt;}
.y8e{bottom:182.906667pt;}
.y127{bottom:184.826667pt;}
.y5a{bottom:185.146667pt;}
.yb{bottom:193.946667pt;}
.y108{bottom:194.906667pt;}
.ycf{bottom:199.706667pt;}
.y59{bottom:199.866667pt;}
.yea{bottom:203.546667pt;}
.yce{bottom:204.986667pt;}
.y8a{bottom:205.786667pt;}
.y126{bottom:211.706667pt;}
.ya{bottom:213.146667pt;}
.y107{bottom:217.786667pt;}
.yb2{bottom:219.546667pt;}
.ycd{bottom:219.866667pt;}
.ye9{bottom:226.586667pt;}
.y89{bottom:228.826667pt;}
.y9{bottom:232.186667pt;}
.y125{bottom:234.746667pt;}
.y106{bottom:240.826667pt;}
.yb1{bottom:242.426667pt;}
.ye8{bottom:249.466667pt;}
.y8{bottom:251.386667pt;}
.y88{bottom:251.706667pt;}
.ycc{bottom:253.146667pt;}
.y124{bottom:261.626667pt;}
.y105{bottom:263.706667pt;}
.yb0{bottom:265.466667pt;}
.y57{bottom:272.346667pt;}
.y87{bottom:274.746667pt;}
.ycb{bottom:276.026667pt;}
.y58{bottom:279.066667pt;}
.y123{bottom:284.506667pt;}
.y7{bottom:285.786667pt;}
.ye7{bottom:286.586667pt;}
.y104{bottom:286.746667pt;}
.yaf{bottom:288.346667pt;}
.y56{bottom:295.226667pt;}
.y86{bottom:297.626667pt;}
.yca{bottom:299.106667pt;}
.ye6{bottom:309.666667pt;}
.yae{bottom:311.266667pt;}
.y122{bottom:311.586667pt;}
.y55{bottom:318.146667pt;}
.y31{bottom:318.306667pt;}
.y84{bottom:320.546667pt;}
.yc9{bottom:321.986667pt;}
.y85{bottom:327.266667pt;}
.ye5{bottom:332.706667pt;}
.y121{bottom:334.466667pt;}
.y30{bottom:337.346667pt;}
.yad{bottom:337.986667pt;}
.y54{bottom:341.186667pt;}
.y83{bottom:343.586667pt;}
.yc8{bottom:345.026667pt;}
.ye4{bottom:355.586667pt;}
.y2f{bottom:356.546667pt;}
.y120{bottom:357.506667pt;}
.y53{bottom:364.066667pt;}
.yac{bottom:364.546667pt;}
.y82{bottom:366.466667pt;}
.yc7{bottom:367.906667pt;}
.y2e{bottom:375.586667pt;}
.ye3{bottom:378.626667pt;}
.y11f{bottom:384.386667pt;}
.y52{bottom:387.106667pt;}
.yab{bottom:387.426667pt;}
.y81{bottom:389.506667pt;}
.yc6{bottom:390.786667pt;}
.y2d{bottom:394.786667pt;}
.ye2{bottom:401.506667pt;}
.y11e{bottom:407.426667pt;}
.y51{bottom:409.986667pt;}
.yaa{bottom:410.466667pt;}
.y80{bottom:412.386667pt;}
.y2c{bottom:413.826667pt;}
.ye1{bottom:424.546667pt;}
.y11d{bottom:430.306667pt;}
.y2b{bottom:433.026667pt;}
.ya9{bottom:433.346667pt;}
.y7f{bottom:435.426667pt;}
.yc5{bottom:436.706667pt;}
.ye0{bottom:447.426667pt;}
.y2a{bottom:452.066667pt;}
.y50{bottom:455.906667pt;}
.ya8{bottom:456.386667pt;}
.y11c{bottom:457.346667pt;}
.y7e{bottom:458.306667pt;}
.yc4{bottom:463.426667pt;}
.y102{bottom:470.466667pt;}
.y29{bottom:471.266667pt;}
.ydf{bottom:473.986667pt;}
.y103{bottom:477.186667pt;}
.y4f{bottom:478.946667pt;}
.ya7{bottom:479.266667pt;}
.y7d{bottom:481.346667pt;}
.y11b{bottom:484.226667pt;}
.yc2{bottom:486.306667pt;}
.y28{bottom:490.466667pt;}
.yc3{bottom:493.026667pt;}
.y101{bottom:493.346667pt;}
.yde{bottom:497.026667pt;}
.y4e{bottom:501.826667pt;}
.ya6{bottom:502.306667pt;}
.y7c{bottom:504.226667pt;}
.y11a{bottom:507.266667pt;}
.yc1{bottom:509.186667pt;}
.y27{bottom:509.506667pt;}
.y100{bottom:516.226667pt;}
.ydd{bottom:519.906667pt;}
.y4d{bottom:524.866667pt;}
.ya5{bottom:525.186667pt;}
.y7b{bottom:527.266667pt;}
.y26{bottom:528.706667pt;}
.y119{bottom:530.146667pt;}
.yc0{bottom:532.226667pt;}
.yff{bottom:539.293333pt;}
.ydc{bottom:542.973333pt;}
.y25{bottom:547.773333pt;}
.ya4{bottom:548.093333pt;}
.y79{bottom:550.173333pt;}
.ybf{bottom:555.133333pt;}
.y7a{bottom:556.893333pt;}
.y118{bottom:557.053333pt;}
.yfe{bottom:562.173333pt;}
.ydb{bottom:565.853333pt;}
.y24{bottom:566.973333pt;}
.y4b{bottom:570.813333pt;}
.ya3{bottom:571.133333pt;}
.y78{bottom:573.053333pt;}
.y4c{bottom:577.533333pt;}
.ybe{bottom:578.173333pt;}
.y117{bottom:580.093333pt;}
.yfd{bottom:585.213333pt;}
.y23{bottom:586.013333pt;}
.yda{bottom:588.893333pt;}
.y4a{bottom:593.693333pt;}
.ya2{bottom:594.013333pt;}
.y77{bottom:596.093333pt;}
.ybd{bottom:601.053333pt;}
.y116{bottom:602.973333pt;}
.y22{bottom:605.213333pt;}
.yfc{bottom:608.093333pt;}
.yd9{bottom:611.773333pt;}
.y48{bottom:616.573333pt;}
.ya1{bottom:617.053333pt;}
.y76{bottom:618.973333pt;}
.y49{bottom:623.293333pt;}
.ybc{bottom:624.093333pt;}
.y21{bottom:624.253333pt;}
.y115{bottom:630.013333pt;}
.yfb{bottom:631.133333pt;}
.yd8{bottom:634.653333pt;}
.y47{bottom:639.613333pt;}
.ya0{bottom:639.933333pt;}
.y75{bottom:642.013333pt;}
.y20{bottom:644.093333pt;}
.ybb{bottom:646.973333pt;}
.y114{bottom:652.893333pt;}
.yfa{bottom:654.013333pt;}
.yd7{bottom:657.693333pt;}
.y46{bottom:662.493333pt;}
.y9f{bottom:662.973333pt;}
.y73{bottom:664.893333pt;}
.y1f{bottom:666.653333pt;}
.yba{bottom:670.013333pt;}
.y74{bottom:671.613333pt;}
.y113{bottom:675.933333pt;}
.yf9{bottom:677.053333pt;}
.yd6{bottom:680.573333pt;}
.y45{bottom:685.533333pt;}
.y9e{bottom:685.853333pt;}
.y1e{bottom:687.773333pt;}
.y72{bottom:687.933333pt;}
.yb9{bottom:692.893333pt;}
.y8d{bottom:694.653333pt;}
.y112{bottom:698.813333pt;}
.yf8{bottom:699.933333pt;}
.yd5{bottom:703.613333pt;}
.y44{bottom:708.413333pt;}
.y1d{bottom:708.733333pt;}
.y9d{bottom:708.893333pt;}
.y71{bottom:710.813333pt;}
.yb8{bottom:715.933333pt;}
.yf7{bottom:722.973333pt;}
.y111{bottom:725.853333pt;}
.y1c{bottom:729.853333pt;}
.yd4{bottom:730.173333pt;}
.y42{bottom:731.453333pt;}
.y70{bottom:733.853333pt;}
.y43{bottom:738.173333pt;}
.yb7{bottom:738.813333pt;}
.y9c{bottom:745.853333pt;}
.y110{bottom:748.733333pt;}
.y1b{bottom:750.813333pt;}
.y41{bottom:754.333333pt;}
.y6f{bottom:756.733333pt;}
.yb6{bottom:761.853333pt;}
.yf6{bottom:768.733333pt;}
.y9b{bottom:769.053333pt;}
.y10f{bottom:771.773333pt;}
.y1a{bottom:771.933333pt;}
.y40{bottom:777.413333pt;}
.y6e{bottom:779.813333pt;}
.yb5{bottom:784.773333pt;}
.yf5{bottom:791.813333pt;}
.y99{bottom:791.973333pt;}
.y19{bottom:792.933333pt;}
.y9a{bottom:798.693333pt;}
.y6d{bottom:802.693333pt;}
.y3f{bottom:804.293333pt;}
.yb4{bottom:807.653333pt;}
.y18{bottom:813.733333pt;}
.yf4{bottom:814.693333pt;}
.y98{bottom:815.013333pt;}
.y10e{bottom:821.733333pt;}
.y6c{bottom:825.733333pt;}
.y17{bottom:833.573333pt;}
.yf3{bottom:837.733333pt;}
.y97{bottom:837.893333pt;}
.y3e{bottom:840.133333pt;}
.y10d{bottom:844.613333pt;}
.yb3{bottom:844.773333pt;}
.y6b{bottom:848.613333pt;}
.y16{bottom:856.453333pt;}
.y3d{bottom:859.333333pt;}
.yf2{bottom:860.613333pt;}
.y96{bottom:860.933333pt;}
.y10c{bottom:867.493333pt;}
.y6a{bottom:871.493333pt;}
.y3c{bottom:878.533333pt;}
.yf1{bottom:883.653333pt;}
.y94{bottom:883.813333pt;}
.y95{bottom:890.533333pt;}
.y15{bottom:890.693333pt;}
.y69{bottom:894.533333pt;}
.y3b{bottom:897.573333pt;}
.y93{bottom:906.853333pt;}
.yf0{bottom:910.213333pt;}
.y3a{bottom:916.773333pt;}
.y68{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.y92{bottom:929.733333pt;}
.y39{bottom:935.813333pt;}
.yef{bottom:936.773333pt;}
.y67{bottom:940.453333pt;}
.y13{bottom:944.293333pt;}
.y91{bottom:952.773333pt;}
.y38{bottom:955.013333pt;}
.y66{bottom:963.333333pt;}
.y12{bottom:970.053333pt;}
.y37{bottom:974.213333pt;}
.y90{bottom:975.653333pt;}
.y64{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.y65{bottom:993.093333pt;}
.y36{bottom:993.253333pt;}
.y1{bottom:1008.133333pt;}
.y63{bottom:1009.253333pt;}
.y35{bottom:1012.480000pt;}
.y32{bottom:1069.760000pt;}
.hf{height:32.921875pt;}
.he{height:38.189375pt;}
.h7{height:38.672812pt;}
.h10{height:46.039063pt;}
.h6{height:49.382812pt;}
.h3{height:54.650312pt;}
.h4{height:55.220937pt;}
.h5{height:55.468750pt;}
.hc{height:58.540937pt;}
.h8{height:60.576250pt;}
.hb{height:65.843750pt;}
.ha{height:66.531250pt;}
.hd{height:70.531250pt;}
.h2{height:76.672000pt;}
.h9{height:77.841562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.x13{left:98.591988pt;}
.x20{left:102.591988pt;}
.x9{left:141.786655pt;}
.x2{left:165.154667pt;}
.x1e{left:199.066643pt;}
.x1f{left:208.346655pt;}
.x1a{left:216.666643pt;}
.x1b{left:221.306655pt;}
.xe{left:241.146643pt;}
.xf{left:245.786655pt;}
.x1c{left:250.146655pt;}
.xa{left:277.666643pt;}
.xb{left:282.306655pt;}
.x12{left:286.626655pt;}
.x21{left:310.466643pt;}
.x22{left:319.746655pt;}
.xc{left:354.786643pt;}
.xd{left:359.426655pt;}
.x1d{left:369.026655pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.x14{left:530.653310pt;}
.x15{left:535.293322pt;}
.x18{left:595.173310pt;}
.x19{left:600.773322pt;}
.x10{left:628.293310pt;}
.x11{left:632.933322pt;}
.x16{left:670.373310pt;}
.x17{left:675.013322pt;}
.x23{left:685.893310pt;}
.x6{left:690.853322pt;}
.x24{left:695.173322pt;}
}




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