
    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_94b34d04e474321254e69a93.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2785b36dbe8a74acb9fbff37.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_a6e087738ef4fe37447bcf35.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff6{font-family:ff6;line-height:0.730469;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_ce8efdc9e9ec143541229d59.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_afc993e61bd73ce168002d1b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6785678ef04f4d50c12c30f4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.691406;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_29dab9f1992fbf27b394f2b0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d149b9630fb2edc13b48820a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fb840d9ba643f35cde22998e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:30.420000px;}
.ls11{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.017280px;}
.lsc{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.025920px;}
.ls14{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.720000px;}
.ls9{letter-spacing:15.096000px;}
.lsa{letter-spacing:15.120000px;}
.ls10{letter-spacing:57.024000px;}
.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;}
}
.ws1{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws9{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.424000px;}
.wsa{word-spacing:-17.064000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-5.109600px;}
._c{margin-left:-3.888000px;}
._d{margin-left:-2.851920px;}
._3{margin-left:-1.370400px;}
._0{width:1.015920px;}
._5{width:2.111040px;}
._6{width:3.576960px;}
._4{width:5.529120px;}
._9{width:6.656160px;}
._16{width:7.772880px;}
._7{width:8.784000px;}
._8{width:9.936000px;}
._10{width:11.050560px;}
._18{width:12.456000px;}
._1a{width:13.602480px;}
._15{width:14.832000px;}
._e{width:16.130400px;}
._b{width:19.022400px;}
._a{width:20.232000px;}
._17{width:21.360000px;}
._1d{width:23.184000px;}
._21{width:24.296160px;}
._1e{width:26.136000px;}
._12{width:27.792000px;}
._13{width:29.448000px;}
._f{width:31.512000px;}
._14{width:32.760000px;}
._23{width:34.776000px;}
._27{width:36.140160px;}
._24{width:37.800000px;}
._25{width:38.812080px;}
._28{width:39.883920px;}
._29{width:41.236080px;}
._1f{width:45.288000px;}
._20{width:47.404800px;}
._19{width:53.642400px;}
._22{width:55.512000px;}
._1c{width:71.642400px;}
._1b{width:72.696000px;}
._26{width:85.536000px;}
._1{width:532.779360px;}
._2{width:1523.177520px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:39.276000px;}
.y6{bottom:58.536000px;}
.y2c{bottom:131.436000px;}
.y104{bottom:132.696000px;}
.y2b{bottom:136.656000px;}
.y56{bottom:136.836000px;}
.yc1{bottom:137.736000px;}
.y13e{bottom:145.296000px;}
.y2a{bottom:150.330000px;}
.ye9{bottom:151.590000px;}
.y103{bottom:153.390000px;}
.ya2{bottom:156.090000px;}
.y55{bottom:157.530000px;}
.y113{bottom:161.490000px;}
.y12b{bottom:162.210000px;}
.y13d{bottom:165.990000px;}
.y7e{bottom:169.590000px;}
.ye8{bottom:172.290000px;}
.y102{bottom:174.090000px;}
.y153{bottom:174.810000px;}
.ya1{bottom:176.790000px;}
.y54{bottom:178.230000px;}
.yc0{bottom:178.410000px;}
.y112{bottom:182.190000px;}
.y12a{bottom:182.910000px;}
.y29{bottom:185.790000px;}
.y13c{bottom:186.690000px;}
.y7d{bottom:190.290000px;}
.ye7{bottom:192.990000px;}
.y152{bottom:195.690000px;}
.ya0{bottom:197.490000px;}
.ybf{bottom:199.110000px;}
.y129{bottom:203.610000px;}
.y28{bottom:206.490000px;}
.y13b{bottom:207.390000px;}
.y7c{bottom:210.990000px;}
.y101{bottom:212.790000px;}
.ye6{bottom:213.690000px;}
.y53{bottom:216.750000px;}
.y9f{bottom:218.190000px;}
.y111{bottom:220.890000px;}
.y128{bottom:224.310000px;}
.y27{bottom:227.190000px;}
.y13a{bottom:228.090000px;}
.y7b{bottom:231.690000px;}
.y100{bottom:233.490000px;}
.ye5{bottom:234.390000px;}
.ybe{bottom:237.810000px;}
.y9e{bottom:238.890000px;}
.y110{bottom:241.590000px;}
.y127{bottom:245.010000px;}
.y26{bottom:247.890000px;}
.y139{bottom:248.790000px;}
.yff{bottom:254.190000px;}
.ye4{bottom:255.090000px;}
.y52{bottom:257.430000px;}
.ybd{bottom:258.510000px;}
.y9d{bottom:259.590000px;}
.y10f{bottom:262.290000px;}
.y126{bottom:265.710000px;}
.y25{bottom:268.590000px;}
.y138{bottom:269.490000px;}
.y7a{bottom:270.210000px;}
.yfe{bottom:274.935000px;}
.ye3{bottom:275.835000px;}
.y51{bottom:278.175000px;}
.y125{bottom:286.455000px;}
.y24{bottom:289.335000px;}
.y137{bottom:290.235000px;}
.y151{bottom:293.835000px;}
.yfd{bottom:295.635000px;}
.ye2{bottom:296.535000px;}
.ybc{bottom:297.255000px;}
.y9c{bottom:298.335000px;}
.y50{bottom:298.875000px;}
.y10e{bottom:301.035000px;}
.y124{bottom:307.155000px;}
.y23{bottom:310.035000px;}
.y79{bottom:310.935000px;}
.y150{bottom:314.535000px;}
.ybb{bottom:317.955000px;}
.y9b{bottom:319.035000px;}
.y4f{bottom:319.575000px;}
.y10d{bottom:321.735000px;}
.y123{bottom:327.855000px;}
.y22{bottom:330.735000px;}
.y78{bottom:331.635000px;}
.yfc{bottom:334.335000px;}
.ye1{bottom:335.235000px;}
.yba{bottom:338.655000px;}
.y9a{bottom:339.735000px;}
.y122{bottom:348.555000px;}
.y21{bottom:351.435000px;}
.y77{bottom:352.335000px;}
.y14f{bottom:353.235000px;}
.yfb{bottom:355.035000px;}
.ye0{bottom:355.935000px;}
.y4e{bottom:358.275000px;}
.yb9{bottom:359.355000px;}
.y99{bottom:360.435000px;}
.y121{bottom:369.255000px;}
.y165{bottom:370.155000px;}
.y20{bottom:372.135000px;}
.y76{bottom:373.035000px;}
.y14e{bottom:373.935000px;}
.yfa{bottom:375.735000px;}
.ydf{bottom:376.635000px;}
.y4d{bottom:378.975000px;}
.yb8{bottom:380.055000px;}
.y98{bottom:381.135000px;}
.y120{bottom:389.955000px;}
.y136{bottom:390.675000px;}
.y164{bottom:390.855000px;}
.y1f{bottom:392.835000px;}
.yf9{bottom:396.435000px;}
.y10c{bottom:399.135000px;}
.y4c{bottom:399.675000px;}
.y11f{bottom:410.655000px;}
.y75{bottom:411.735000px;}
.y14d{bottom:412.635000px;}
.y1e{bottom:413.535000px;}
.yde{bottom:415.335000px;}
.yf8{bottom:417.135000px;}
.yb7{bottom:418.755000px;}
.y97{bottom:419.835000px;}
.y4b{bottom:420.195000px;}
.y163{bottom:429.555000px;}
.y11e{bottom:431.355000px;}
.y74{bottom:432.435000px;}
.y14c{bottom:433.335000px;}
.y1d{bottom:434.235000px;}
.ydd{bottom:436.035000px;}
.yf7{bottom:437.835000px;}
.yb6{bottom:439.455000px;}
.y4a{bottom:440.895000px;}
.y162{bottom:450.255000px;}
.y11d{bottom:452.055000px;}
.y73{bottom:453.135000px;}
.y1c{bottom:454.935000px;}
.y96{bottom:458.535000px;}
.yb5{bottom:460.155000px;}
.y49{bottom:461.595000px;}
.y14b{bottom:471.855000px;}
.y11c{bottom:472.755000px;}
.y72{bottom:473.835000px;}
.ydc{bottom:474.735000px;}
.y1b{bottom:475.635000px;}
.y95{bottom:479.235000px;}
.y48{bottom:482.295000px;}
.y161{bottom:488.955000px;}
.y11b{bottom:493.455000px;}
.y71{bottom:494.535000px;}
.ydb{bottom:495.435000px;}
.y1a{bottom:496.335000px;}
.yb4{bottom:498.855000px;}
.y94{bottom:499.935000px;}
.y47{bottom:502.995000px;}
.y160{bottom:509.655000px;}
.y14a{bottom:512.535000px;}
.y11a{bottom:514.155000px;}
.y70{bottom:515.235000px;}
.yda{bottom:516.135000px;}
.y19{bottom:517.035000px;}
.yf6{bottom:517.935000px;}
.yb3{bottom:519.555000px;}
.y93{bottom:520.635000px;}
.y46{bottom:523.695000px;}
.y149{bottom:533.235000px;}
.y119{bottom:534.855000px;}
.y6f{bottom:535.935000px;}
.y18{bottom:537.735000px;}
.yf5{bottom:538.635000px;}
.yb2{bottom:540.255000px;}
.y92{bottom:541.335000px;}
.y45{bottom:544.395000px;}
.y15f{bottom:548.355000px;}
.y148{bottom:553.935000px;}
.yd9{bottom:554.655000px;}
.y118{bottom:555.585000px;}
.y6e{bottom:556.665000px;}
.y91{bottom:561.885000px;}
.y44{bottom:565.125000px;}
.y15e{bottom:569.085000px;}
.y147{bottom:574.665000px;}
.y17{bottom:576.285000px;}
.yf4{bottom:577.005000px;}
.y6d{bottom:577.365000px;}
.yb1{bottom:578.985000px;}
.y90{bottom:582.585000px;}
.y43{bottom:585.825000px;}
.yd8{bottom:595.365000px;}
.y117{bottom:596.985000px;}
.y6c{bottom:597.885000px;}
.yb0{bottom:599.685000px;}
.y8f{bottom:603.285000px;}
.y42{bottom:606.525000px;}
.y15d{bottom:607.785000px;}
.yd7{bottom:615.885000px;}
.y16{bottom:616.605000px;}
.yf3{bottom:617.685000px;}
.y6b{bottom:618.585000px;}
.yaf{bottom:620.385000px;}
.y10b{bottom:623.985000px;}
.y15c{bottom:628.485000px;}
.yd6{bottom:636.585000px;}
.yf2{bottom:638.385000px;}
.y6a{bottom:639.285000px;}
.yae{bottom:641.085000px;}
.y8e{bottom:641.985000px;}
.y41{bottom:645.225000px;}
.y135{bottom:656.385000px;}
.yd5{bottom:657.285000px;}
.y15{bottom:657.645000px;}
.yf1{bottom:659.085000px;}
.y69{bottom:659.985000px;}
.yad{bottom:661.785000px;}
.y8d{bottom:662.685000px;}
.y40{bottom:665.925000px;}
.y15b{bottom:667.185000px;}
.y134{bottom:677.085000px;}
.yd4{bottom:677.985000px;}
.yf0{bottom:679.785000px;}
.y14{bottom:680.325000px;}
.y68{bottom:680.685000px;}
.y8c{bottom:683.385000px;}
.y3f{bottom:686.625000px;}
.y15a{bottom:687.885000px;}
.y133{bottom:697.785000px;}
.yd3{bottom:698.685000px;}
.yac{bottom:700.485000px;}
.y67{bottom:701.385000px;}
.y8b{bottom:704.085000px;}
.y3e{bottom:707.325000px;}
.yef{bottom:718.485000px;}
.yd2{bottom:719.385000px;}
.yab{bottom:721.185000px;}
.y66{bottom:722.085000px;}
.y13{bottom:722.265000px;}
.y10a{bottom:724.785000px;}
.y159{bottom:726.405000px;}
.y3d{bottom:728.025000px;}
.y132{bottom:736.485000px;}
.yee{bottom:739.185000px;}
.yd1{bottom:740.085000px;}
.yaa{bottom:741.885000px;}
.y65{bottom:742.785000px;}
.y12{bottom:744.585000px;}
.y109{bottom:745.485000px;}
.y158{bottom:747.285000px;}
.y3c{bottom:748.725000px;}
.y131{bottom:757.185000px;}
.yed{bottom:759.885000px;}
.yd0{bottom:760.785000px;}
.ya9{bottom:762.585000px;}
.y8a{bottom:763.485000px;}
.y11{bottom:767.265000px;}
.y157{bottom:767.985000px;}
.y3b{bottom:769.425000px;}
.y130{bottom:777.885000px;}
.y146{bottom:778.785000px;}
.yec{bottom:780.585000px;}
.y64{bottom:781.305000px;}
.ya8{bottom:783.285000px;}
.y108{bottom:784.005000px;}
.y89{bottom:784.185000px;}
.y3a{bottom:790.125000px;}
.y12f{bottom:798.585000px;}
.ycf{bottom:799.485000px;}
.yeb{bottom:801.285000px;}
.y88{bottom:804.885000px;}
.y156{bottom:806.685000px;}
.y10{bottom:809.205000px;}
.y39{bottom:810.825000px;}
.y12e{bottom:819.285000px;}
.y145{bottom:820.185000px;}
.y63{bottom:821.985000px;}
.y107{bottom:824.685000px;}
.y155{bottom:827.385000px;}
.y38{bottom:831.525000px;}
.yf{bottom:831.885000px;}
.yce{bottom:838.185000px;}
.y12d{bottom:840.030000px;}
.y144{bottom:840.930000px;}
.y62{bottom:842.730000px;}
.y87{bottom:843.630000px;}
.y106{bottom:845.430000px;}
.y37{bottom:852.270000px;}
.ycd{bottom:858.930000px;}
.y12c{bottom:860.730000px;}
.y143{bottom:861.630000px;}
.y61{bottom:863.430000px;}
.y86{bottom:864.330000px;}
.y105{bottom:866.130000px;}
.y36{bottom:872.970000px;}
.ye{bottom:873.870000px;}
.ycc{bottom:879.630000px;}
.y116{bottom:881.430000px;}
.y142{bottom:882.330000px;}
.y60{bottom:884.130000px;}
.y85{bottom:885.030000px;}
.y154{bottom:886.830000px;}
.y35{bottom:893.670000px;}
.yc{bottom:896.550000px;}
.ycb{bottom:900.330000px;}
.y115{bottom:902.130000px;}
.y141{bottom:903.030000px;}
.yd{bottom:904.110000px;}
.y5f{bottom:904.830000px;}
.y84{bottom:905.730000px;}
.y34{bottom:914.370000px;}
.yca{bottom:921.030000px;}
.ya7{bottom:922.830000px;}
.y5e{bottom:925.530000px;}
.y83{bottom:926.430000px;}
.y33{bottom:935.070000px;}
.yb{bottom:937.230000px;}
.y140{bottom:941.550000px;}
.yc9{bottom:941.730000px;}
.ya6{bottom:943.530000px;}
.y5d{bottom:946.230000px;}
.y32{bottom:955.770000px;}
.yc8{bottom:962.430000px;}
.ya5{bottom:964.230000px;}
.y82{bottom:965.130000px;}
.y13f{bottom:982.230000px;}
.yc7{bottom:983.130000px;}
.y5c{bottom:984.930000px;}
.y81{bottom:985.830000px;}
.ya{bottom:989.790000px;}
.y31{bottom:994.290000px;}
.ya4{bottom:1002.930000px;}
.yc6{bottom:1003.830000px;}
.y5b{bottom:1005.630000px;}
.y80{bottom:1006.530000px;}
.ya3{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.yc5{bottom:1024.530000px;}
.yea{bottom:1026.330000px;}
.y30{bottom:1034.250000px;}
.y5a{bottom:1044.330000px;}
.y7f{bottom:1045.050000px;}
.yc4{bottom:1045.230000px;}
.y114{bottom:1047.030000px;}
.y2f{bottom:1051.350000px;}
.y59{bottom:1065.030000px;}
.yc3{bottom:1065.930000px;}
.y2e{bottom:1068.630000px;}
.y8{bottom:1076.730000px;}
.y58{bottom:1085.730000px;}
.yc2{bottom:1104.450000px;}
.y2d{bottom:1104.630000px;}
.y57{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.hf{height:27.945000px;}
.ha{height:37.494141px;}
.h6{height:41.756133px;}
.h11{height:43.737568px;}
.h4{height:45.184219px;}
.h5{height:53.640000px;}
.h10{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.he{height:70.664062px;}
.h12{height:74.004654px;}
.hb{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.hc{height:83.418047px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:125.460000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:50.399998px;}
.x1{left:127.656000px;}
.x15{left:133.056000px;}
.x17{left:148.896000px;}
.x13{left:159.510000px;}
.x4{left:167.790000px;}
.x12{left:180.750000px;}
.xa{left:185.250000px;}
.xc{left:202.170000px;}
.xe{left:219.990000px;}
.x5{left:221.250000px;}
.x11{left:233.310000px;}
.xf{left:272.910000px;}
.x14{left:343.695000px;}
.xb{left:348.735000px;}
.x16{left:366.915000px;}
.x10{left:372.675000px;}
.xd{left:375.555000px;}
.x7{left:385.815000px;}
.x3{left:446.655000px;}
.x6{left:457.275000px;}
.x8{left:521.722500px;}
.x9{left:528.585000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.040000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.023040pt;}
.ls14{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls9{letter-spacing:13.418667pt;}
.lsa{letter-spacing:13.440000pt;}
.ls10{letter-spacing:50.688000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws9{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.488000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-4.541867pt;}
._c{margin-left:-3.456000pt;}
._d{margin-left:-2.535040pt;}
._3{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._5{width:1.876480pt;}
._6{width:3.179520pt;}
._4{width:4.914773pt;}
._9{width:5.916587pt;}
._16{width:6.909227pt;}
._7{width:7.808000pt;}
._8{width:8.832000pt;}
._10{width:9.822720pt;}
._18{width:11.072000pt;}
._1a{width:12.091093pt;}
._15{width:13.184000pt;}
._e{width:14.338133pt;}
._b{width:16.908800pt;}
._a{width:17.984000pt;}
._17{width:18.986667pt;}
._1d{width:20.608000pt;}
._21{width:21.596587pt;}
._1e{width:23.232000pt;}
._12{width:24.704000pt;}
._13{width:26.176000pt;}
._f{width:28.010667pt;}
._14{width:29.120000pt;}
._23{width:30.912000pt;}
._27{width:32.124587pt;}
._24{width:33.600000pt;}
._25{width:34.499627pt;}
._28{width:35.452373pt;}
._29{width:36.654293pt;}
._1f{width:40.256000pt;}
._20{width:42.137600pt;}
._19{width:47.682133pt;}
._22{width:49.344000pt;}
._1c{width:63.682133pt;}
._1b{width:64.618667pt;}
._26{width:76.032000pt;}
._1{width:473.581653pt;}
._2{width:1353.935573pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:34.912000pt;}
.y6{bottom:52.032000pt;}
.y2c{bottom:116.832000pt;}
.y104{bottom:117.952000pt;}
.y2b{bottom:121.472000pt;}
.y56{bottom:121.632000pt;}
.yc1{bottom:122.432000pt;}
.y13e{bottom:129.152000pt;}
.y2a{bottom:133.626667pt;}
.ye9{bottom:134.746667pt;}
.y103{bottom:136.346667pt;}
.ya2{bottom:138.746667pt;}
.y55{bottom:140.026667pt;}
.y113{bottom:143.546667pt;}
.y12b{bottom:144.186667pt;}
.y13d{bottom:147.546667pt;}
.y7e{bottom:150.746667pt;}
.ye8{bottom:153.146667pt;}
.y102{bottom:154.746667pt;}
.y153{bottom:155.386667pt;}
.ya1{bottom:157.146667pt;}
.y54{bottom:158.426667pt;}
.yc0{bottom:158.586667pt;}
.y112{bottom:161.946667pt;}
.y12a{bottom:162.586667pt;}
.y29{bottom:165.146667pt;}
.y13c{bottom:165.946667pt;}
.y7d{bottom:169.146667pt;}
.ye7{bottom:171.546667pt;}
.y152{bottom:173.946667pt;}
.ya0{bottom:175.546667pt;}
.ybf{bottom:176.986667pt;}
.y129{bottom:180.986667pt;}
.y28{bottom:183.546667pt;}
.y13b{bottom:184.346667pt;}
.y7c{bottom:187.546667pt;}
.y101{bottom:189.146667pt;}
.ye6{bottom:189.946667pt;}
.y53{bottom:192.666667pt;}
.y9f{bottom:193.946667pt;}
.y111{bottom:196.346667pt;}
.y128{bottom:199.386667pt;}
.y27{bottom:201.946667pt;}
.y13a{bottom:202.746667pt;}
.y7b{bottom:205.946667pt;}
.y100{bottom:207.546667pt;}
.ye5{bottom:208.346667pt;}
.ybe{bottom:211.386667pt;}
.y9e{bottom:212.346667pt;}
.y110{bottom:214.746667pt;}
.y127{bottom:217.786667pt;}
.y26{bottom:220.346667pt;}
.y139{bottom:221.146667pt;}
.yff{bottom:225.946667pt;}
.ye4{bottom:226.746667pt;}
.y52{bottom:228.826667pt;}
.ybd{bottom:229.786667pt;}
.y9d{bottom:230.746667pt;}
.y10f{bottom:233.146667pt;}
.y126{bottom:236.186667pt;}
.y25{bottom:238.746667pt;}
.y138{bottom:239.546667pt;}
.y7a{bottom:240.186667pt;}
.yfe{bottom:244.386667pt;}
.ye3{bottom:245.186667pt;}
.y51{bottom:247.266667pt;}
.y125{bottom:254.626667pt;}
.y24{bottom:257.186667pt;}
.y137{bottom:257.986667pt;}
.y151{bottom:261.186667pt;}
.yfd{bottom:262.786667pt;}
.ye2{bottom:263.586667pt;}
.ybc{bottom:264.226667pt;}
.y9c{bottom:265.186667pt;}
.y50{bottom:265.666667pt;}
.y10e{bottom:267.586667pt;}
.y124{bottom:273.026667pt;}
.y23{bottom:275.586667pt;}
.y79{bottom:276.386667pt;}
.y150{bottom:279.586667pt;}
.ybb{bottom:282.626667pt;}
.y9b{bottom:283.586667pt;}
.y4f{bottom:284.066667pt;}
.y10d{bottom:285.986667pt;}
.y123{bottom:291.426667pt;}
.y22{bottom:293.986667pt;}
.y78{bottom:294.786667pt;}
.yfc{bottom:297.186667pt;}
.ye1{bottom:297.986667pt;}
.yba{bottom:301.026667pt;}
.y9a{bottom:301.986667pt;}
.y122{bottom:309.826667pt;}
.y21{bottom:312.386667pt;}
.y77{bottom:313.186667pt;}
.y14f{bottom:313.986667pt;}
.yfb{bottom:315.586667pt;}
.ye0{bottom:316.386667pt;}
.y4e{bottom:318.466667pt;}
.yb9{bottom:319.426667pt;}
.y99{bottom:320.386667pt;}
.y121{bottom:328.226667pt;}
.y165{bottom:329.026667pt;}
.y20{bottom:330.786667pt;}
.y76{bottom:331.586667pt;}
.y14e{bottom:332.386667pt;}
.yfa{bottom:333.986667pt;}
.ydf{bottom:334.786667pt;}
.y4d{bottom:336.866667pt;}
.yb8{bottom:337.826667pt;}
.y98{bottom:338.786667pt;}
.y120{bottom:346.626667pt;}
.y136{bottom:347.266667pt;}
.y164{bottom:347.426667pt;}
.y1f{bottom:349.186667pt;}
.yf9{bottom:352.386667pt;}
.y10c{bottom:354.786667pt;}
.y4c{bottom:355.266667pt;}
.y11f{bottom:365.026667pt;}
.y75{bottom:365.986667pt;}
.y14d{bottom:366.786667pt;}
.y1e{bottom:367.586667pt;}
.yde{bottom:369.186667pt;}
.yf8{bottom:370.786667pt;}
.yb7{bottom:372.226667pt;}
.y97{bottom:373.186667pt;}
.y4b{bottom:373.506667pt;}
.y163{bottom:381.826667pt;}
.y11e{bottom:383.426667pt;}
.y74{bottom:384.386667pt;}
.y14c{bottom:385.186667pt;}
.y1d{bottom:385.986667pt;}
.ydd{bottom:387.586667pt;}
.yf7{bottom:389.186667pt;}
.yb6{bottom:390.626667pt;}
.y4a{bottom:391.906667pt;}
.y162{bottom:400.226667pt;}
.y11d{bottom:401.826667pt;}
.y73{bottom:402.786667pt;}
.y1c{bottom:404.386667pt;}
.y96{bottom:407.586667pt;}
.yb5{bottom:409.026667pt;}
.y49{bottom:410.306667pt;}
.y14b{bottom:419.426667pt;}
.y11c{bottom:420.226667pt;}
.y72{bottom:421.186667pt;}
.ydc{bottom:421.986667pt;}
.y1b{bottom:422.786667pt;}
.y95{bottom:425.986667pt;}
.y48{bottom:428.706667pt;}
.y161{bottom:434.626667pt;}
.y11b{bottom:438.626667pt;}
.y71{bottom:439.586667pt;}
.ydb{bottom:440.386667pt;}
.y1a{bottom:441.186667pt;}
.yb4{bottom:443.426667pt;}
.y94{bottom:444.386667pt;}
.y47{bottom:447.106667pt;}
.y160{bottom:453.026667pt;}
.y14a{bottom:455.586667pt;}
.y11a{bottom:457.026667pt;}
.y70{bottom:457.986667pt;}
.yda{bottom:458.786667pt;}
.y19{bottom:459.586667pt;}
.yf6{bottom:460.386667pt;}
.yb3{bottom:461.826667pt;}
.y93{bottom:462.786667pt;}
.y46{bottom:465.506667pt;}
.y149{bottom:473.986667pt;}
.y119{bottom:475.426667pt;}
.y6f{bottom:476.386667pt;}
.y18{bottom:477.986667pt;}
.yf5{bottom:478.786667pt;}
.yb2{bottom:480.226667pt;}
.y92{bottom:481.186667pt;}
.y45{bottom:483.906667pt;}
.y15f{bottom:487.426667pt;}
.y148{bottom:492.386667pt;}
.yd9{bottom:493.026667pt;}
.y118{bottom:493.853333pt;}
.y6e{bottom:494.813333pt;}
.y91{bottom:499.453333pt;}
.y44{bottom:502.333333pt;}
.y15e{bottom:505.853333pt;}
.y147{bottom:510.813333pt;}
.y17{bottom:512.253333pt;}
.yf4{bottom:512.893333pt;}
.y6d{bottom:513.213333pt;}
.yb1{bottom:514.653333pt;}
.y90{bottom:517.853333pt;}
.y43{bottom:520.733333pt;}
.yd8{bottom:529.213333pt;}
.y117{bottom:530.653333pt;}
.y6c{bottom:531.453333pt;}
.yb0{bottom:533.053333pt;}
.y8f{bottom:536.253333pt;}
.y42{bottom:539.133333pt;}
.y15d{bottom:540.253333pt;}
.yd7{bottom:547.453333pt;}
.y16{bottom:548.093333pt;}
.yf3{bottom:549.053333pt;}
.y6b{bottom:549.853333pt;}
.yaf{bottom:551.453333pt;}
.y10b{bottom:554.653333pt;}
.y15c{bottom:558.653333pt;}
.yd6{bottom:565.853333pt;}
.yf2{bottom:567.453333pt;}
.y6a{bottom:568.253333pt;}
.yae{bottom:569.853333pt;}
.y8e{bottom:570.653333pt;}
.y41{bottom:573.533333pt;}
.y135{bottom:583.453333pt;}
.yd5{bottom:584.253333pt;}
.y15{bottom:584.573333pt;}
.yf1{bottom:585.853333pt;}
.y69{bottom:586.653333pt;}
.yad{bottom:588.253333pt;}
.y8d{bottom:589.053333pt;}
.y40{bottom:591.933333pt;}
.y15b{bottom:593.053333pt;}
.y134{bottom:601.853333pt;}
.yd4{bottom:602.653333pt;}
.yf0{bottom:604.253333pt;}
.y14{bottom:604.733333pt;}
.y68{bottom:605.053333pt;}
.y8c{bottom:607.453333pt;}
.y3f{bottom:610.333333pt;}
.y15a{bottom:611.453333pt;}
.y133{bottom:620.253333pt;}
.yd3{bottom:621.053333pt;}
.yac{bottom:622.653333pt;}
.y67{bottom:623.453333pt;}
.y8b{bottom:625.853333pt;}
.y3e{bottom:628.733333pt;}
.yef{bottom:638.653333pt;}
.yd2{bottom:639.453333pt;}
.yab{bottom:641.053333pt;}
.y66{bottom:641.853333pt;}
.y13{bottom:642.013333pt;}
.y10a{bottom:644.253333pt;}
.y159{bottom:645.693333pt;}
.y3d{bottom:647.133333pt;}
.y132{bottom:654.653333pt;}
.yee{bottom:657.053333pt;}
.yd1{bottom:657.853333pt;}
.yaa{bottom:659.453333pt;}
.y65{bottom:660.253333pt;}
.y12{bottom:661.853333pt;}
.y109{bottom:662.653333pt;}
.y158{bottom:664.253333pt;}
.y3c{bottom:665.533333pt;}
.y131{bottom:673.053333pt;}
.yed{bottom:675.453333pt;}
.yd0{bottom:676.253333pt;}
.ya9{bottom:677.853333pt;}
.y8a{bottom:678.653333pt;}
.y11{bottom:682.013333pt;}
.y157{bottom:682.653333pt;}
.y3b{bottom:683.933333pt;}
.y130{bottom:691.453333pt;}
.y146{bottom:692.253333pt;}
.yec{bottom:693.853333pt;}
.y64{bottom:694.493333pt;}
.ya8{bottom:696.253333pt;}
.y108{bottom:696.893333pt;}
.y89{bottom:697.053333pt;}
.y3a{bottom:702.333333pt;}
.y12f{bottom:709.853333pt;}
.ycf{bottom:710.653333pt;}
.yeb{bottom:712.253333pt;}
.y88{bottom:715.453333pt;}
.y156{bottom:717.053333pt;}
.y10{bottom:719.293333pt;}
.y39{bottom:720.733333pt;}
.y12e{bottom:728.253333pt;}
.y145{bottom:729.053333pt;}
.y63{bottom:730.653333pt;}
.y107{bottom:733.053333pt;}
.y155{bottom:735.453333pt;}
.y38{bottom:739.133333pt;}
.yf{bottom:739.453333pt;}
.yce{bottom:745.053333pt;}
.y12d{bottom:746.693333pt;}
.y144{bottom:747.493333pt;}
.y62{bottom:749.093333pt;}
.y87{bottom:749.893333pt;}
.y106{bottom:751.493333pt;}
.y37{bottom:757.573333pt;}
.ycd{bottom:763.493333pt;}
.y12c{bottom:765.093333pt;}
.y143{bottom:765.893333pt;}
.y61{bottom:767.493333pt;}
.y86{bottom:768.293333pt;}
.y105{bottom:769.893333pt;}
.y36{bottom:775.973333pt;}
.ye{bottom:776.773333pt;}
.ycc{bottom:781.893333pt;}
.y116{bottom:783.493333pt;}
.y142{bottom:784.293333pt;}
.y60{bottom:785.893333pt;}
.y85{bottom:786.693333pt;}
.y154{bottom:788.293333pt;}
.y35{bottom:794.373333pt;}
.yc{bottom:796.933333pt;}
.ycb{bottom:800.293333pt;}
.y115{bottom:801.893333pt;}
.y141{bottom:802.693333pt;}
.yd{bottom:803.653333pt;}
.y5f{bottom:804.293333pt;}
.y84{bottom:805.093333pt;}
.y34{bottom:812.773333pt;}
.yca{bottom:818.693333pt;}
.ya7{bottom:820.293333pt;}
.y5e{bottom:822.693333pt;}
.y83{bottom:823.493333pt;}
.y33{bottom:831.173333pt;}
.yb{bottom:833.093333pt;}
.y140{bottom:836.933333pt;}
.yc9{bottom:837.093333pt;}
.ya6{bottom:838.693333pt;}
.y5d{bottom:841.093333pt;}
.y32{bottom:849.573333pt;}
.yc8{bottom:855.493333pt;}
.ya5{bottom:857.093333pt;}
.y82{bottom:857.893333pt;}
.y13f{bottom:873.093333pt;}
.yc7{bottom:873.893333pt;}
.y5c{bottom:875.493333pt;}
.y81{bottom:876.293333pt;}
.ya{bottom:879.813333pt;}
.y31{bottom:883.813333pt;}
.ya4{bottom:891.493333pt;}
.yc6{bottom:892.293333pt;}
.y5b{bottom:893.893333pt;}
.y80{bottom:894.693333pt;}
.ya3{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.yc5{bottom:910.693333pt;}
.yea{bottom:912.293333pt;}
.y30{bottom:919.333333pt;}
.y5a{bottom:928.293333pt;}
.y7f{bottom:928.933333pt;}
.yc4{bottom:929.093333pt;}
.y114{bottom:930.693333pt;}
.y2f{bottom:934.533333pt;}
.y59{bottom:946.693333pt;}
.yc3{bottom:947.493333pt;}
.y2e{bottom:949.893333pt;}
.y8{bottom:957.093333pt;}
.y58{bottom:965.093333pt;}
.yc2{bottom:981.733333pt;}
.y2d{bottom:981.893333pt;}
.y57{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.hf{height:24.840000pt;}
.ha{height:33.328125pt;}
.h6{height:37.116563pt;}
.h11{height:38.877839pt;}
.h4{height:40.163750pt;}
.h5{height:47.680000pt;}
.h10{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.he{height:62.812500pt;}
.h12{height:65.781915pt;}
.hb{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.hc{height:74.149375pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:111.520000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:44.799998pt;}
.x1{left:113.472000pt;}
.x15{left:118.272000pt;}
.x17{left:132.352000pt;}
.x13{left:141.786667pt;}
.x4{left:149.146667pt;}
.x12{left:160.666667pt;}
.xa{left:164.666667pt;}
.xc{left:179.706667pt;}
.xe{left:195.546667pt;}
.x5{left:196.666667pt;}
.x11{left:207.386667pt;}
.xf{left:242.586667pt;}
.x14{left:305.506667pt;}
.xb{left:309.986667pt;}
.x16{left:326.146667pt;}
.x10{left:331.266667pt;}
.xd{left:333.826667pt;}
.x7{left:342.946667pt;}
.x3{left:397.026667pt;}
.x6{left:406.466667pt;}
.x8{left:463.753333pt;}
.x9{left:469.853333pt;}
}




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