
    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_c892b3dba6b229f7186a8b2c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_1ebb4f1c164c4f821102c6ac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_a08b63994915fe418627d017.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_bf7068f9624f328bcd8da3be.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_95bcc75f6795263fb43344de.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_c387a47c06d8b3e447104017.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_0982e79b22033172925c0cef.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4ed3985f2e50526afc61993b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0681dc2331454eb29fb96738.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_708c3c0b808dc9916f4f93bd.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-105.840000px;}
.v2{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.207600px;}
.ls16{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.097800px;}
.ls15{letter-spacing:-0.000003px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.100800px;}
.lsc{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.229200px;}
.ls5{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.864000px;}
.ls2{letter-spacing:8.658720px;}
.ls17{letter-spacing:20.160000px;}
.lsa{letter-spacing:57.185280px;}
.lsb{letter-spacing:154.080000px;}
.ls1{letter-spacing:1676.047200px;}
.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;}
}
.ws6{word-spacing:-66.240000px;}
.ws4{word-spacing:-21.296400px;}
.wsf{word-spacing:-16.704000px;}
.wsb{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.128000px;}
.wsc{word-spacing:-15.984000px;}
.ws2{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.839997px;}
.ws11{word-spacing:-15.696000px;}
.ws9{word-spacing:-15.624000px;}
.wsd{word-spacing:-15.552000px;}
.wse{word-spacing:-15.480000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.572800px;}
.ws0{word-spacing:-13.160160px;}
.ws8{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.049400px;}
.ws5{word-spacing:0.000000px;}
._20{margin-left:-15.799680px;}
._5{margin-left:-5.368320px;}
._3{margin-left:-4.361760px;}
._4{margin-left:-3.187440px;}
._6{margin-left:-2.100960px;}
._1{margin-left:-1.015920px;}
._0{width:1.494000px;}
._1a{width:2.511360px;}
._2{width:3.532320px;}
._a{width:4.901760px;}
._b{width:5.961600px;}
._d{width:7.632000px;}
._e{width:8.942400px;}
._10{width:9.966960px;}
._f{width:11.005200px;}
._9{width:12.397680px;}
._11{width:13.464000px;}
._14{width:14.556960px;}
._8{width:15.596160px;}
._7{width:16.993920px;}
._13{width:18.023280px;}
._19{width:19.512000px;}
._17{width:20.993040px;}
._16{width:22.566960px;}
._15{width:23.616000px;}
._18{width:25.416000px;}
._c{width:27.792000px;}
._12{width:29.448000px;}
._1f{width:30.960000px;}
._1d{width:33.048000px;}
._1e{width:34.392000px;}
._1b{width:39.456000px;}
._1c{width:40.554000px;}
._21{width:48.000000px;}
._28{width:56.128080px;}
._27{width:57.391920px;}
._22{width:67.824000px;}
._26{width:71.064000px;}
._24{width:111.050880px;}
._23{width:112.248000px;}
._2d{width:119.592000px;}
._2e{width:120.888000px;}
._25{width:155.088000px;}
._29{width:163.080000px;}
._2a{width:164.100000px;}
._2b{width:324.360000px;}
._2c{width:325.932000px;}
.fc5{color:rgb(27,28,29);}
.fc3{color:rgb(31,56,100);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,51,102);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:3.240000px;}
.yd6{bottom:3.420000px;}
.ycd{bottom:3.960000px;}
.yc8{bottom:20.880000px;}
.yd2{bottom:20.925000px;}
.yd5{bottom:21.060000px;}
.ycc{bottom:21.600000px;}
.yd4{bottom:38.520000px;}
.yd1{bottom:38.565000px;}
.ycb{bottom:39.060000px;}
.yd0{bottom:56.025000px;}
.yd9{bottom:56.154000px;}
.y3{bottom:57.600000px;}
.y110{bottom:84.456000px;}
.y9d{bottom:87.516000px;}
.y2e{bottom:96.516000px;}
.y5d{bottom:96.876000px;}
.yd8{bottom:98.316000px;}
.yc4{bottom:105.516000px;}
.y9c{bottom:108.576000px;}
.y151{bottom:115.956000px;}
.y2d{bottom:117.576000px;}
.y5c{bottom:117.936000px;}
.yc3{bottom:126.576000px;}
.y9b{bottom:129.636000px;}
.y12f{bottom:133.416000px;}
.y2c{bottom:138.636000px;}
.y5b{bottom:138.996000px;}
.yc2{bottom:147.636000px;}
.y10f{bottom:147.816000px;}
.y150{bottom:151.950000px;}
.yeb{bottom:153.930000px;}
.y12e{bottom:154.470000px;}
.y2b{bottom:159.690000px;}
.y6e{bottom:160.050000px;}
.yc1{bottom:168.690000px;}
.y10e{bottom:168.870000px;}
.y9a{bottom:171.930000px;}
.y14f{bottom:173.010000px;}
.yea{bottom:174.990000px;}
.y12d{bottom:175.710000px;}
.y5a{bottom:178.050000px;}
.y2a{bottom:180.930000px;}
.y6d{bottom:181.110000px;}
.yd7{bottom:187.770000px;}
.yc0{bottom:189.930000px;}
.y99{bottom:192.990000px;}
.ye9{bottom:196.050000px;}
.y29{bottom:201.990000px;}
.y6c{bottom:202.350000px;}
.y14e{bottom:209.190000px;}
.ybf{bottom:210.990000px;}
.y12c{bottom:211.710000px;}
.y98{bottom:214.050000px;}
.y118{bottom:217.110000px;}
.ye8{bottom:217.290000px;}
.y59{bottom:220.890000px;}
.y28{bottom:223.050000px;}
.y6b{bottom:223.410000px;}
.y10d{bottom:228.990000px;}
.y14d{bottom:230.250000px;}
.ybe{bottom:232.050000px;}
.y97{bottom:235.290000px;}
.ye7{bottom:238.350000px;}
.y27{bottom:244.110000px;}
.y6a{bottom:244.470000px;}
.y12b{bottom:247.890000px;}
.y14c{bottom:251.490000px;}
.ybd{bottom:253.110000px;}
.y96{bottom:256.350000px;}
.ye6{bottom:259.410000px;}
.yd3{bottom:259.590000px;}
.y26{bottom:265.350000px;}
.y58{bottom:265.530000px;}
.y12a{bottom:268.950000px;}
.y10c{bottom:271.830000px;}
.ybc{bottom:274.350000px;}
.ye5{bottom:280.470000px;}
.y25{bottom:286.410000px;}
.y57{bottom:286.770000px;}
.y14b{bottom:287.490000px;}
.y95{bottom:295.410000px;}
.y117{bottom:301.530000px;}
.ye4{bottom:301.710000px;}
.y10b{bottom:302.250000px;}
.y129{bottom:304.950000px;}
.y24{bottom:307.470000px;}
.y56{bottom:307.830000px;}
.ybb{bottom:316.470000px;}
.ye3{bottom:322.770000px;}
.y14a{bottom:323.670000px;}
.y128{bottom:326.190000px;}
.y23{bottom:328.530000px;}
.y55{bottom:328.890000px;}
.ycf{bottom:331.590000px;}
.y94{bottom:334.470000px;}
.yba{bottom:337.575000px;}
.ye2{bottom:343.875000px;}
.y149{bottom:344.775000px;}
.y10a{bottom:346.935000px;}
.y22{bottom:349.815000px;}
.y54{bottom:349.995000px;}
.y93{bottom:355.755000px;}
.yb9{bottom:358.815000px;}
.y127{bottom:362.235000px;}
.ye1{bottom:364.935000px;}
.y148{bottom:365.835000px;}
.y109{bottom:367.995000px;}
.y21{bottom:370.875000px;}
.y53{bottom:371.055000px;}
.y92{bottom:376.815000px;}
.yb8{bottom:379.875000px;}
.ye0{bottom:385.995000px;}
.y108{bottom:389.055000px;}
.y20{bottom:391.935000px;}
.y52{bottom:392.295000px;}
.y91{bottom:397.875000px;}
.y126{bottom:398.415000px;}
.yb7{bottom:400.935000px;}
.y147{bottom:402.015000px;}
.y116{bottom:407.055000px;}
.ydf{bottom:407.235000px;}
.y107{bottom:410.295000px;}
.y1f{bottom:412.995000px;}
.y51{bottom:413.355000px;}
.y90{bottom:418.935000px;}
.y125{bottom:419.475000px;}
.yce{bottom:421.095000px;}
.yb6{bottom:421.995000px;}
.yde{bottom:428.295000px;}
.y106{bottom:431.355000px;}
.y166{bottom:431.895000px;}
.y1e{bottom:434.055000px;}
.y50{bottom:434.415000px;}
.y146{bottom:438.015000px;}
.y8f{bottom:439.995000px;}
.yb5{bottom:443.055000px;}
.ydd{bottom:449.355000px;}
.y105{bottom:452.415000px;}
.y1d{bottom:455.295000px;}
.y4f{bottom:455.475000px;}
.y124{bottom:455.655000px;}
.y8e{bottom:461.235000px;}
.y165{bottom:461.955000px;}
.yb4{bottom:464.295000px;}
.ydc{bottom:470.415000px;}
.y104{bottom:473.475000px;}
.y145{bottom:474.195000px;}
.yca{bottom:475.275000px;}
.y1c{bottom:476.355000px;}
.y4e{bottom:476.715000px;}
.y8d{bottom:482.295000px;}
.yb3{bottom:485.355000px;}
.y115{bottom:491.475000px;}
.y103{bottom:494.715000px;}
.y144{bottom:495.255000px;}
.y4d{bottom:497.775000px;}
.y164{bottom:498.135000px;}
.y8c{bottom:503.355000px;}
.yb2{bottom:506.415000px;}
.ydb{bottom:509.655000px;}
.y114{bottom:512.715000px;}
.y1b{bottom:515.415000px;}
.y102{bottom:515.775000px;}
.y4c{bottom:518.835000px;}
.y163{bottom:519.195000px;}
.y8b{bottom:524.415000px;}
.yb1{bottom:527.475000px;}
.y143{bottom:531.435000px;}
.y113{bottom:533.775000px;}
.y123{bottom:533.955000px;}
.y101{bottom:536.835000px;}
.y4b{bottom:539.895000px;}
.y8a{bottom:545.655000px;}
.yc7{bottom:547.815000px;}
.yb0{bottom:548.715000px;}
.yda{bottom:552.315000px;}
.y142{bottom:552.495000px;}
.y112{bottom:554.835000px;}
.y122{bottom:555.015000px;}
.y162{bottom:555.195000px;}
.y100{bottom:557.895000px;}
.y1a{bottom:558.075000px;}
.y4a{bottom:561.135000px;}
.y89{bottom:566.715000px;}
.yaf{bottom:569.775000px;}
.y141{bottom:573.555000px;}
.y111{bottom:575.895000px;}
.y161{bottom:576.435000px;}
.yff{bottom:579.135000px;}
.y69{bottom:582.195000px;}
.y88{bottom:587.775000px;}
.yae{bottom:590.835000px;}
.y121{bottom:591.195000px;}
.yc6{bottom:597.135000px;}
.y49{bottom:600.195000px;}
.y68{bottom:603.255000px;}
.y19{bottom:604.365000px;}
.y87{bottom:608.865000px;}
.y140{bottom:609.765000px;}
.yad{bottom:611.925000px;}
.y120{bottom:612.285000px;}
.y160{bottom:612.465000px;}
.yc5{bottom:618.225000px;}
.yfe{bottom:621.285000px;}
.y67{bottom:624.345000px;}
.y18{bottom:625.245000px;}
.y86{bottom:630.105000px;}
.y13f{bottom:630.825000px;}
.yac{bottom:633.165000px;}
.y11f{bottom:633.345000px;}
.y15f{bottom:633.525000px;}
.y48{bottom:639.285000px;}
.yfd{bottom:642.345000px;}
.y66{bottom:645.585000px;}
.y85{bottom:651.165000px;}
.yab{bottom:654.225000px;}
.y17{bottom:658.005000px;}
.y47{bottom:660.345000px;}
.yfc{bottom:663.585000px;}
.y65{bottom:666.645000px;}
.y13e{bottom:666.825000px;}
.y11e{bottom:669.525000px;}
.y15e{bottom:669.705000px;}
.y84{bottom:672.225000px;}
.yaa{bottom:675.285000px;}
.y16{bottom:678.885000px;}
.y46{bottom:681.585000px;}
.yfb{bottom:684.645000px;}
.y64{bottom:687.705000px;}
.y11d{bottom:690.585000px;}
.y15d{bottom:690.765000px;}
.y83{bottom:693.285000px;}
.ya9{bottom:696.345000px;}
.y15{bottom:699.765000px;}
.y45{bottom:702.645000px;}
.y13d{bottom:703.005000px;}
.yfa{bottom:705.705000px;}
.y63{bottom:708.765000px;}
.y11c{bottom:711.645000px;}
.y15c{bottom:711.825000px;}
.y82{bottom:714.525000px;}
.ya8{bottom:717.585000px;}
.y14{bottom:720.645000px;}
.y44{bottom:723.705000px;}
.y13c{bottom:724.065000px;}
.yf9{bottom:726.765000px;}
.y15b{bottom:733.065000px;}
.y81{bottom:735.585000px;}
.ya7{bottom:738.645000px;}
.y13{bottom:741.525000px;}
.y43{bottom:744.765000px;}
.y62{bottom:747.825000px;}
.y80{bottom:756.645000px;}
.ya6{bottom:759.705000px;}
.y13b{bottom:760.245000px;}
.y12{bottom:762.405000px;}
.y42{bottom:765.825000px;}
.y11b{bottom:768.885000px;}
.y15a{bottom:769.065000px;}
.y7f{bottom:777.705000px;}
.ya5{bottom:780.765000px;}
.y11{bottom:783.285000px;}
.y41{bottom:787.065000px;}
.y159{bottom:790.305000px;}
.y13a{bottom:796.245000px;}
.y7e{bottom:798.945000px;}
.ya4{bottom:801.825000px;}
.y10{bottom:804.165000px;}
.y11a{bottom:804.885000px;}
.y40{bottom:808.125000px;}
.y139{bottom:817.485000px;}
.y7d{bottom:820.005000px;}
.ya3{bottom:823.065000px;}
.yf{bottom:825.045000px;}
.yf8{bottom:826.125000px;}
.y158{bottom:826.305000px;}
.y3f{bottom:829.185000px;}
.y7c{bottom:841.065000px;}
.ya2{bottom:844.125000px;}
.ye{bottom:845.925000px;}
.yf7{bottom:847.185000px;}
.y157{bottom:847.365000px;}
.y3e{bottom:850.245000px;}
.y138{bottom:853.485000px;}
.y7b{bottom:862.125000px;}
.ya1{bottom:865.185000px;}
.yd{bottom:866.805000px;}
.yf6{bottom:868.245000px;}
.y156{bottom:868.605000px;}
.y3d{bottom:871.530000px;}
.y137{bottom:874.590000px;}
.y7a{bottom:883.230000px;}
.yc{bottom:886.290000px;}
.yf5{bottom:889.530000px;}
.y155{bottom:889.710000px;}
.y3c{bottom:892.590000px;}
.y79{bottom:904.470000px;}
.yb{bottom:907.530000px;}
.yf4{bottom:910.590000px;}
.y136{bottom:910.770000px;}
.y3b{bottom:913.650000px;}
.y78{bottom:925.530000px;}
.y154{bottom:925.710000px;}
.ya{bottom:928.590000px;}
.y119{bottom:929.130000px;}
.yf3{bottom:931.650000px;}
.y3a{bottom:934.710000px;}
.y77{bottom:946.590000px;}
.y135{bottom:946.950000px;}
.y9{bottom:949.650000px;}
.yf2{bottom:952.710000px;}
.y39{bottom:955.950000px;}
.y76{bottom:967.650000px;}
.y134{bottom:968.010000px;}
.y8{bottom:970.710000px;}
.yf1{bottom:973.950000px;}
.y38{bottom:977.010000px;}
.y153{bottom:982.950000px;}
.y75{bottom:988.890000px;}
.y7{bottom:991.950000px;}
.yf0{bottom:995.010000px;}
.y37{bottom:998.070000px;}
.y133{bottom:1004.010000px;}
.y74{bottom:1009.950000px;}
.ya0{bottom:1013.010000px;}
.yef{bottom:1016.070000px;}
.y36{bottom:1019.130000px;}
.y132{bottom:1025.250000px;}
.y73{bottom:1031.010000px;}
.y9f{bottom:1034.070000px;}
.y61{bottom:1037.130000px;}
.y6{bottom:1039.470000px;}
.y35{bottom:1040.370000px;}
.y131{bottom:1046.310000px;}
.y72{bottom:1052.070000px;}
.y9e{bottom:1055.130000px;}
.yee{bottom:1058.370000px;}
.y34{bottom:1061.430000px;}
.y71{bottom:1073.310000px;}
.y60{bottom:1076.370000px;}
.yed{bottom:1079.430000px;}
.y130{bottom:1082.310000px;}
.y5{bottom:1088.790000px;}
.y5f{bottom:1097.430000px;}
.y33{bottom:1100.490000px;}
.y152{bottom:1103.550000px;}
.y70{bottom:1112.370000px;}
.y5e{bottom:1118.490000px;}
.yec{bottom:1121.550000px;}
.y4{bottom:1138.140000px;}
.y32{bottom:1139.580000px;}
.y6f{bottom:1155.240000px;}
.y31{bottom:1160.820000px;}
.y30{bottom:1193.220000px;}
.y2{bottom:1195.560000px;}
.y2f{bottom:1212.300000px;}
.y1{bottom:1214.640000px;}
.hd{height:35.100000px;}
.he{height:50.597578px;}
.h11{height:52.740000px;}
.hf{height:53.280000px;}
.h2{height:59.147227px;}
.hc{height:60.960938px;}
.ha{height:65.010937px;}
.h7{height:65.560781px;}
.h3{height:65.884219px;}
.h10{height:70.236000px;}
.h12{height:70.380000px;}
.h6{height:71.261719px;}
.h9{height:72.562500px;}
.hb{height:94.778086px;}
.h8{height:98.426190px;}
.h4{height:166.039805px;}
.h5{height:190.268789px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:126.216000px;}
.w5{width:154.290000px;}
.w6{width:166.530000px;}
.w7{width:174.990000px;}
.w4{width:179.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:12.960000px;}
.x1f{left:24.300000px;}
.x25{left:27.720000px;}
.x22{left:40.500000px;}
.x4{left:42.479987px;}
.x1c{left:43.740000px;}
.x23{left:53.460000px;}
.x20{left:56.340000px;}
.x26{left:63.000000px;}
.x16{left:77.399987px;}
.xc{left:84.959987px;}
.x2c{left:102.275987px;}
.x1{left:105.335987px;}
.x2f{left:109.295987px;}
.x15{left:119.915987px;}
.x1b{left:125.315987px;}
.x17{left:146.735987px;}
.xb{left:153.389987px;}
.x1e{left:171.030000px;}
.x28{left:172.469987px;}
.x29{left:189.749987px;}
.x2a{left:200.909987px;}
.xf{left:207.569987px;}
.x18{left:218.549987px;}
.x19{left:226.469987px;}
.x2b{left:250.949987px;}
.x10{left:273.989987px;}
.x2e{left:293.834987px;}
.x1a{left:299.954987px;}
.x27{left:312.554987px;}
.x13{left:323.894987px;}
.x2{left:328.214987px;}
.x14{left:339.374987px;}
.x30{left:348.194987px;}
.xa{left:351.794987px;}
.x12{left:369.254987px;}
.x2d{left:372.134987px;}
.x31{left:376.454987px;}
.x11{left:380.954987px;}
.x3{left:438.014987px;}
.x6{left:472.964987px;}
.x21{left:506.985000px;}
.xe{left:530.024987px;}
.x8{left:532.364987px;}
.xd{left:647.384987px;}
.x7{left:666.689987px;}
.x24{left:674.610000px;}
.x5{left:729.509987px;}
.x9{left:850.499987px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v2{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.184533pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.086933pt;}
.ls15{letter-spacing:-0.000003pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.089600pt;}
.lsc{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.203733pt;}
.ls5{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls2{letter-spacing:7.696640pt;}
.ls17{letter-spacing:17.920000pt;}
.lsa{letter-spacing:50.831360pt;}
.lsb{letter-spacing:136.960000pt;}
.ls1{letter-spacing:1489.819733pt;}
.ws6{word-spacing:-58.880000pt;}
.ws4{word-spacing:-18.930133pt;}
.wsf{word-spacing:-14.848000pt;}
.wsb{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.336000pt;}
.wsc{word-spacing:-14.208000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws10{word-spacing:-14.079997pt;}
.ws11{word-spacing:-13.952000pt;}
.ws9{word-spacing:-13.888000pt;}
.wsd{word-spacing:-13.824000pt;}
.wse{word-spacing:-13.760000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-12.953600pt;}
.ws0{word-spacing:-11.697920pt;}
.ws8{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.599467pt;}
.ws5{word-spacing:0.000000pt;}
._20{margin-left:-14.044160pt;}
._5{margin-left:-4.771840pt;}
._3{margin-left:-3.877120pt;}
._4{margin-left:-2.833280pt;}
._6{margin-left:-1.867520pt;}
._1{margin-left:-0.903040pt;}
._0{width:1.328000pt;}
._1a{width:2.232320pt;}
._2{width:3.139840pt;}
._a{width:4.357120pt;}
._b{width:5.299200pt;}
._d{width:6.784000pt;}
._e{width:7.948800pt;}
._10{width:8.859520pt;}
._f{width:9.782400pt;}
._9{width:11.020160pt;}
._11{width:11.968000pt;}
._14{width:12.939520pt;}
._8{width:13.863253pt;}
._7{width:15.105707pt;}
._13{width:16.020693pt;}
._19{width:17.344000pt;}
._17{width:18.660480pt;}
._16{width:20.059520pt;}
._15{width:20.992000pt;}
._18{width:22.592000pt;}
._c{width:24.704000pt;}
._12{width:26.176000pt;}
._1f{width:27.520000pt;}
._1d{width:29.376000pt;}
._1e{width:30.570667pt;}
._1b{width:35.072000pt;}
._1c{width:36.048000pt;}
._21{width:42.666667pt;}
._28{width:49.891627pt;}
._27{width:51.015040pt;}
._22{width:60.288000pt;}
._26{width:63.168000pt;}
._24{width:98.711893pt;}
._23{width:99.776000pt;}
._2d{width:106.304000pt;}
._2e{width:107.456000pt;}
._25{width:137.856000pt;}
._29{width:144.960000pt;}
._2a{width:145.866667pt;}
._2b{width:288.320000pt;}
._2c{width:289.717333pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:2.880000pt;}
.yd6{bottom:3.040000pt;}
.ycd{bottom:3.520000pt;}
.yc8{bottom:18.560000pt;}
.yd2{bottom:18.600000pt;}
.yd5{bottom:18.720000pt;}
.ycc{bottom:19.200000pt;}
.yd4{bottom:34.240000pt;}
.yd1{bottom:34.280000pt;}
.ycb{bottom:34.720000pt;}
.yd0{bottom:49.800000pt;}
.yd9{bottom:49.914667pt;}
.y3{bottom:51.200000pt;}
.y110{bottom:75.072000pt;}
.y9d{bottom:77.792000pt;}
.y2e{bottom:85.792000pt;}
.y5d{bottom:86.112000pt;}
.yd8{bottom:87.392000pt;}
.yc4{bottom:93.792000pt;}
.y9c{bottom:96.512000pt;}
.y151{bottom:103.072000pt;}
.y2d{bottom:104.512000pt;}
.y5c{bottom:104.832000pt;}
.yc3{bottom:112.512000pt;}
.y9b{bottom:115.232000pt;}
.y12f{bottom:118.592000pt;}
.y2c{bottom:123.232000pt;}
.y5b{bottom:123.552000pt;}
.yc2{bottom:131.232000pt;}
.y10f{bottom:131.392000pt;}
.y150{bottom:135.066667pt;}
.yeb{bottom:136.826667pt;}
.y12e{bottom:137.306667pt;}
.y2b{bottom:141.946667pt;}
.y6e{bottom:142.266667pt;}
.yc1{bottom:149.946667pt;}
.y10e{bottom:150.106667pt;}
.y9a{bottom:152.826667pt;}
.y14f{bottom:153.786667pt;}
.yea{bottom:155.546667pt;}
.y12d{bottom:156.186667pt;}
.y5a{bottom:158.266667pt;}
.y2a{bottom:160.826667pt;}
.y6d{bottom:160.986667pt;}
.yd7{bottom:166.906667pt;}
.yc0{bottom:168.826667pt;}
.y99{bottom:171.546667pt;}
.ye9{bottom:174.266667pt;}
.y29{bottom:179.546667pt;}
.y6c{bottom:179.866667pt;}
.y14e{bottom:185.946667pt;}
.ybf{bottom:187.546667pt;}
.y12c{bottom:188.186667pt;}
.y98{bottom:190.266667pt;}
.y118{bottom:192.986667pt;}
.ye8{bottom:193.146667pt;}
.y59{bottom:196.346667pt;}
.y28{bottom:198.266667pt;}
.y6b{bottom:198.586667pt;}
.y10d{bottom:203.546667pt;}
.y14d{bottom:204.666667pt;}
.ybe{bottom:206.266667pt;}
.y97{bottom:209.146667pt;}
.ye7{bottom:211.866667pt;}
.y27{bottom:216.986667pt;}
.y6a{bottom:217.306667pt;}
.y12b{bottom:220.346667pt;}
.y14c{bottom:223.546667pt;}
.ybd{bottom:224.986667pt;}
.y96{bottom:227.866667pt;}
.ye6{bottom:230.586667pt;}
.yd3{bottom:230.746667pt;}
.y26{bottom:235.866667pt;}
.y58{bottom:236.026667pt;}
.y12a{bottom:239.066667pt;}
.y10c{bottom:241.626667pt;}
.ybc{bottom:243.866667pt;}
.ye5{bottom:249.306667pt;}
.y25{bottom:254.586667pt;}
.y57{bottom:254.906667pt;}
.y14b{bottom:255.546667pt;}
.y95{bottom:262.586667pt;}
.y117{bottom:268.026667pt;}
.ye4{bottom:268.186667pt;}
.y10b{bottom:268.666667pt;}
.y129{bottom:271.066667pt;}
.y24{bottom:273.306667pt;}
.y56{bottom:273.626667pt;}
.ybb{bottom:281.306667pt;}
.ye3{bottom:286.906667pt;}
.y14a{bottom:287.706667pt;}
.y128{bottom:289.946667pt;}
.y23{bottom:292.026667pt;}
.y55{bottom:292.346667pt;}
.ycf{bottom:294.746667pt;}
.y94{bottom:297.306667pt;}
.yba{bottom:300.066667pt;}
.ye2{bottom:305.666667pt;}
.y149{bottom:306.466667pt;}
.y10a{bottom:308.386667pt;}
.y22{bottom:310.946667pt;}
.y54{bottom:311.106667pt;}
.y93{bottom:316.226667pt;}
.yb9{bottom:318.946667pt;}
.y127{bottom:321.986667pt;}
.ye1{bottom:324.386667pt;}
.y148{bottom:325.186667pt;}
.y109{bottom:327.106667pt;}
.y21{bottom:329.666667pt;}
.y53{bottom:329.826667pt;}
.y92{bottom:334.946667pt;}
.yb8{bottom:337.666667pt;}
.ye0{bottom:343.106667pt;}
.y108{bottom:345.826667pt;}
.y20{bottom:348.386667pt;}
.y52{bottom:348.706667pt;}
.y91{bottom:353.666667pt;}
.y126{bottom:354.146667pt;}
.yb7{bottom:356.386667pt;}
.y147{bottom:357.346667pt;}
.y116{bottom:361.826667pt;}
.ydf{bottom:361.986667pt;}
.y107{bottom:364.706667pt;}
.y1f{bottom:367.106667pt;}
.y51{bottom:367.426667pt;}
.y90{bottom:372.386667pt;}
.y125{bottom:372.866667pt;}
.yce{bottom:374.306667pt;}
.yb6{bottom:375.106667pt;}
.yde{bottom:380.706667pt;}
.y106{bottom:383.426667pt;}
.y166{bottom:383.906667pt;}
.y1e{bottom:385.826667pt;}
.y50{bottom:386.146667pt;}
.y146{bottom:389.346667pt;}
.y8f{bottom:391.106667pt;}
.yb5{bottom:393.826667pt;}
.ydd{bottom:399.426667pt;}
.y105{bottom:402.146667pt;}
.y1d{bottom:404.706667pt;}
.y4f{bottom:404.866667pt;}
.y124{bottom:405.026667pt;}
.y8e{bottom:409.986667pt;}
.y165{bottom:410.626667pt;}
.yb4{bottom:412.706667pt;}
.ydc{bottom:418.146667pt;}
.y104{bottom:420.866667pt;}
.y145{bottom:421.506667pt;}
.yca{bottom:422.466667pt;}
.y1c{bottom:423.426667pt;}
.y4e{bottom:423.746667pt;}
.y8d{bottom:428.706667pt;}
.yb3{bottom:431.426667pt;}
.y115{bottom:436.866667pt;}
.y103{bottom:439.746667pt;}
.y144{bottom:440.226667pt;}
.y4d{bottom:442.466667pt;}
.y164{bottom:442.786667pt;}
.y8c{bottom:447.426667pt;}
.yb2{bottom:450.146667pt;}
.ydb{bottom:453.026667pt;}
.y114{bottom:455.746667pt;}
.y1b{bottom:458.146667pt;}
.y102{bottom:458.466667pt;}
.y4c{bottom:461.186667pt;}
.y163{bottom:461.506667pt;}
.y8b{bottom:466.146667pt;}
.yb1{bottom:468.866667pt;}
.y143{bottom:472.386667pt;}
.y113{bottom:474.466667pt;}
.y123{bottom:474.626667pt;}
.y101{bottom:477.186667pt;}
.y4b{bottom:479.906667pt;}
.y8a{bottom:485.026667pt;}
.yc7{bottom:486.946667pt;}
.yb0{bottom:487.746667pt;}
.yda{bottom:490.946667pt;}
.y142{bottom:491.106667pt;}
.y112{bottom:493.186667pt;}
.y122{bottom:493.346667pt;}
.y162{bottom:493.506667pt;}
.y100{bottom:495.906667pt;}
.y1a{bottom:496.066667pt;}
.y4a{bottom:498.786667pt;}
.y89{bottom:503.746667pt;}
.yaf{bottom:506.466667pt;}
.y141{bottom:509.826667pt;}
.y111{bottom:511.906667pt;}
.y161{bottom:512.386667pt;}
.yff{bottom:514.786667pt;}
.y69{bottom:517.506667pt;}
.y88{bottom:522.466667pt;}
.yae{bottom:525.186667pt;}
.y121{bottom:525.506667pt;}
.yc6{bottom:530.786667pt;}
.y49{bottom:533.506667pt;}
.y68{bottom:536.226667pt;}
.y19{bottom:537.213333pt;}
.y87{bottom:541.213333pt;}
.y140{bottom:542.013333pt;}
.yad{bottom:543.933333pt;}
.y120{bottom:544.253333pt;}
.y160{bottom:544.413333pt;}
.yc5{bottom:549.533333pt;}
.yfe{bottom:552.253333pt;}
.y67{bottom:554.973333pt;}
.y18{bottom:555.773333pt;}
.y86{bottom:560.093333pt;}
.y13f{bottom:560.733333pt;}
.yac{bottom:562.813333pt;}
.y11f{bottom:562.973333pt;}
.y15f{bottom:563.133333pt;}
.y48{bottom:568.253333pt;}
.yfd{bottom:570.973333pt;}
.y66{bottom:573.853333pt;}
.y85{bottom:578.813333pt;}
.yab{bottom:581.533333pt;}
.y17{bottom:584.893333pt;}
.y47{bottom:586.973333pt;}
.yfc{bottom:589.853333pt;}
.y65{bottom:592.573333pt;}
.y13e{bottom:592.733333pt;}
.y11e{bottom:595.133333pt;}
.y15e{bottom:595.293333pt;}
.y84{bottom:597.533333pt;}
.yaa{bottom:600.253333pt;}
.y16{bottom:603.453333pt;}
.y46{bottom:605.853333pt;}
.yfb{bottom:608.573333pt;}
.y64{bottom:611.293333pt;}
.y11d{bottom:613.853333pt;}
.y15d{bottom:614.013333pt;}
.y83{bottom:616.253333pt;}
.ya9{bottom:618.973333pt;}
.y15{bottom:622.013333pt;}
.y45{bottom:624.573333pt;}
.y13d{bottom:624.893333pt;}
.yfa{bottom:627.293333pt;}
.y63{bottom:630.013333pt;}
.y11c{bottom:632.573333pt;}
.y15c{bottom:632.733333pt;}
.y82{bottom:635.133333pt;}
.ya8{bottom:637.853333pt;}
.y14{bottom:640.573333pt;}
.y44{bottom:643.293333pt;}
.y13c{bottom:643.613333pt;}
.yf9{bottom:646.013333pt;}
.y15b{bottom:651.613333pt;}
.y81{bottom:653.853333pt;}
.ya7{bottom:656.573333pt;}
.y13{bottom:659.133333pt;}
.y43{bottom:662.013333pt;}
.y62{bottom:664.733333pt;}
.y80{bottom:672.573333pt;}
.ya6{bottom:675.293333pt;}
.y13b{bottom:675.773333pt;}
.y12{bottom:677.693333pt;}
.y42{bottom:680.733333pt;}
.y11b{bottom:683.453333pt;}
.y15a{bottom:683.613333pt;}
.y7f{bottom:691.293333pt;}
.ya5{bottom:694.013333pt;}
.y11{bottom:696.253333pt;}
.y41{bottom:699.613333pt;}
.y159{bottom:702.493333pt;}
.y13a{bottom:707.773333pt;}
.y7e{bottom:710.173333pt;}
.ya4{bottom:712.733333pt;}
.y10{bottom:714.813333pt;}
.y11a{bottom:715.453333pt;}
.y40{bottom:718.333333pt;}
.y139{bottom:726.653333pt;}
.y7d{bottom:728.893333pt;}
.ya3{bottom:731.613333pt;}
.yf{bottom:733.373333pt;}
.yf8{bottom:734.333333pt;}
.y158{bottom:734.493333pt;}
.y3f{bottom:737.053333pt;}
.y7c{bottom:747.613333pt;}
.ya2{bottom:750.333333pt;}
.ye{bottom:751.933333pt;}
.yf7{bottom:753.053333pt;}
.y157{bottom:753.213333pt;}
.y3e{bottom:755.773333pt;}
.y138{bottom:758.653333pt;}
.y7b{bottom:766.333333pt;}
.ya1{bottom:769.053333pt;}
.yd{bottom:770.493333pt;}
.yf6{bottom:771.773333pt;}
.y156{bottom:772.093333pt;}
.y3d{bottom:774.693333pt;}
.y137{bottom:777.413333pt;}
.y7a{bottom:785.093333pt;}
.yc{bottom:787.813333pt;}
.yf5{bottom:790.693333pt;}
.y155{bottom:790.853333pt;}
.y3c{bottom:793.413333pt;}
.y79{bottom:803.973333pt;}
.yb{bottom:806.693333pt;}
.yf4{bottom:809.413333pt;}
.y136{bottom:809.573333pt;}
.y3b{bottom:812.133333pt;}
.y78{bottom:822.693333pt;}
.y154{bottom:822.853333pt;}
.ya{bottom:825.413333pt;}
.y119{bottom:825.893333pt;}
.yf3{bottom:828.133333pt;}
.y3a{bottom:830.853333pt;}
.y77{bottom:841.413333pt;}
.y135{bottom:841.733333pt;}
.y9{bottom:844.133333pt;}
.yf2{bottom:846.853333pt;}
.y39{bottom:849.733333pt;}
.y76{bottom:860.133333pt;}
.y134{bottom:860.453333pt;}
.y8{bottom:862.853333pt;}
.yf1{bottom:865.733333pt;}
.y38{bottom:868.453333pt;}
.y153{bottom:873.733333pt;}
.y75{bottom:879.013333pt;}
.y7{bottom:881.733333pt;}
.yf0{bottom:884.453333pt;}
.y37{bottom:887.173333pt;}
.y133{bottom:892.453333pt;}
.y74{bottom:897.733333pt;}
.ya0{bottom:900.453333pt;}
.yef{bottom:903.173333pt;}
.y36{bottom:905.893333pt;}
.y132{bottom:911.333333pt;}
.y73{bottom:916.453333pt;}
.y9f{bottom:919.173333pt;}
.y61{bottom:921.893333pt;}
.y6{bottom:923.973333pt;}
.y35{bottom:924.773333pt;}
.y131{bottom:930.053333pt;}
.y72{bottom:935.173333pt;}
.y9e{bottom:937.893333pt;}
.yee{bottom:940.773333pt;}
.y34{bottom:943.493333pt;}
.y71{bottom:954.053333pt;}
.y60{bottom:956.773333pt;}
.yed{bottom:959.493333pt;}
.y130{bottom:962.053333pt;}
.y5{bottom:967.813333pt;}
.y5f{bottom:975.493333pt;}
.y33{bottom:978.213333pt;}
.y152{bottom:980.933333pt;}
.y70{bottom:988.773333pt;}
.y5e{bottom:994.213333pt;}
.yec{bottom:996.933333pt;}
.y4{bottom:1011.680000pt;}
.y32{bottom:1012.960000pt;}
.y6f{bottom:1026.880000pt;}
.y31{bottom:1031.840000pt;}
.y30{bottom:1060.640000pt;}
.y2{bottom:1062.720000pt;}
.y2f{bottom:1077.600000pt;}
.y1{bottom:1079.680000pt;}
.hd{height:31.200000pt;}
.he{height:44.975625pt;}
.h11{height:46.880000pt;}
.hf{height:47.360000pt;}
.h2{height:52.575312pt;}
.hc{height:54.187500pt;}
.ha{height:57.787500pt;}
.h7{height:58.276250pt;}
.h3{height:58.563750pt;}
.h10{height:62.432000pt;}
.h12{height:62.560000pt;}
.h6{height:63.343750pt;}
.h9{height:64.500000pt;}
.hb{height:84.247188pt;}
.h8{height:87.489947pt;}
.h4{height:147.590937pt;}
.h5{height:169.127813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:112.192000pt;}
.w5{width:137.146667pt;}
.w6{width:148.026667pt;}
.w7{width:155.546667pt;}
.w4{width:159.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:11.520000pt;}
.x1f{left:21.600000pt;}
.x25{left:24.640000pt;}
.x22{left:36.000000pt;}
.x4{left:37.759988pt;}
.x1c{left:38.880000pt;}
.x23{left:47.520000pt;}
.x20{left:50.080000pt;}
.x26{left:56.000000pt;}
.x16{left:68.799988pt;}
.xc{left:75.519988pt;}
.x2c{left:90.911988pt;}
.x1{left:93.631988pt;}
.x2f{left:97.151988pt;}
.x15{left:106.591988pt;}
.x1b{left:111.391988pt;}
.x17{left:130.431988pt;}
.xb{left:136.346655pt;}
.x1e{left:152.026667pt;}
.x28{left:153.306655pt;}
.x29{left:168.666655pt;}
.x2a{left:178.586655pt;}
.xf{left:184.506655pt;}
.x18{left:194.266655pt;}
.x19{left:201.306655pt;}
.x2b{left:223.066655pt;}
.x10{left:243.546655pt;}
.x2e{left:261.186655pt;}
.x1a{left:266.626655pt;}
.x27{left:277.826655pt;}
.x13{left:287.906655pt;}
.x2{left:291.746655pt;}
.x14{left:301.666655pt;}
.x30{left:309.506655pt;}
.xa{left:312.706655pt;}
.x12{left:328.226655pt;}
.x2d{left:330.786655pt;}
.x31{left:334.626655pt;}
.x11{left:338.626655pt;}
.x3{left:389.346655pt;}
.x6{left:420.413322pt;}
.x21{left:450.653333pt;}
.xe{left:471.133322pt;}
.x8{left:473.213322pt;}
.xd{left:575.453322pt;}
.x7{left:592.613322pt;}
.x24{left:599.653333pt;}
.x5{left:648.453322pt;}
.x9{left:755.999988pt;}
}




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