
    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_d3a806b395d81002831ddb3c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_75734a1b1bac4a67fb3a6c72.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_241a620801b0e4da2c234f18.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_90c10dc5abdf32f96e5c0591.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_05e1c0e60b36964a45a1c60f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_c7df01bf32aceb05ad80da79.woff')format("woff");}.ff8{font-family:ff8;line-height:0.783000;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_0151792570bca469c6993175.woff')format("woff");}.ff9{font-family:ff9;line-height:0.947266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.880000px;}
.v1{vertical-align:71.760000px;}
.ls29{letter-spacing:-1.872000px;}
.ls22{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.402000px;}
.ls27{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.936000px;}
.lsc{letter-spacing:1.008000px;}
.ls18{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.584000px;}
.ls10{letter-spacing:2.016000px;}
.ls1f{letter-spacing:3.960000px;}
.ls7{letter-spacing:4.464000px;}
.ls26{letter-spacing:4.752000px;}
.ls1d{letter-spacing:8.280000px;}
.ls9{letter-spacing:8.400000px;}
.ls2{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.lsd{letter-spacing:11.232000px;}
.ls23{letter-spacing:29.184000px;}
.ls28{letter-spacing:67.152000px;}
.ls0{letter-spacing:240.000000px;}
.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;}
}
.ws33{word-spacing:-67.152000px;}
.ws2{word-spacing:-48.528000px;}
.ws0{word-spacing:-40.440000px;}
.ws2e{word-spacing:-32.352000px;}
.ws3{word-spacing:-25.320000px;}
.ws12{word-spacing:-25.260000px;}
.ws26{word-spacing:-20.820000px;}
.ws13{word-spacing:-20.232000px;}
.ws32{word-spacing:-14.592000px;}
.ws14{word-spacing:-14.162400px;}
.ws2f{word-spacing:-13.488000px;}
.wsf{word-spacing:-11.232000px;}
.ws9{word-spacing:-8.460000px;}
.ws8{word-spacing:-8.400000px;}
.ws31{word-spacing:-4.752000px;}
.ws6{word-spacing:-4.464000px;}
.ws1d{word-spacing:-2.016000px;}
.ws28{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.152000px;}
.wse{word-spacing:-1.008000px;}
.ws1f{word-spacing:-0.936000px;}
.ws18{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.144000px;}
.ws11{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.072000px;}
.ws19{word-spacing:0.144000px;}
.ws7{word-spacing:0.180000px;}
.ws36{word-spacing:0.240000px;}
.wsd{word-spacing:0.288000px;}
.ws38{word-spacing:0.300000px;}
.ws16{word-spacing:0.360000px;}
.ws1c{word-spacing:0.432000px;}
.ws35{word-spacing:0.480000px;}
.ws17{word-spacing:0.504000px;}
.ws24{word-spacing:0.576000px;}
.ws20{word-spacing:0.648000px;}
.ws1e{word-spacing:0.720000px;}
.ws2b{word-spacing:0.936000px;}
.ws27{word-spacing:1.368000px;}
.ws37{word-spacing:1.392000px;}
.ws5{word-spacing:1.800000px;}
.ws34{word-spacing:1.872000px;}
.ws22{word-spacing:2.340000px;}
.ws1b{word-spacing:5.040000px;}
.ws15{word-spacing:5.112000px;}
.ws25{word-spacing:8.400000px;}
.ws2c{word-spacing:10.080000px;}
.ws2a{word-spacing:10.152000px;}
.ws30{word-spacing:15.312000px;}
.ws1{word-spacing:424.740000px;}
._11{margin-left:-18.624000px;}
._1b{margin-left:-16.860000px;}
._5{margin-left:-11.880000px;}
._9{margin-left:-10.500000px;}
._10{margin-left:-8.892000px;}
._e{margin-left:-7.560000px;}
._2{margin-left:-6.420000px;}
._8{margin-left:-4.560000px;}
._14{margin-left:-3.156000px;}
._6{margin-left:-1.860000px;}
._7{width:1.680000px;}
._3{width:3.180000px;}
._0{width:4.200000px;}
._a{width:5.256000px;}
._12{width:6.552000px;}
._4{width:8.400000px;}
._c{width:9.528000px;}
._d{width:10.584000px;}
._f{width:11.700000px;}
._b{width:12.720000px;}
._16{width:16.488000px;}
._18{width:31.646100px;}
._1{width:46.140000px;}
._17{width:106.306800px;}
._15{width:122.503800px;}
._19{width:201.540000px;}
._1a{width:204.420000px;}
._13{width:242.820000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.fs6{font-size:40.200000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:76.759200px;}
.y2{bottom:76.759950px;}
.y7b{bottom:93.259200px;}
.y93{bottom:93.259350px;}
.y1{bottom:93.259950px;}
.yaa{bottom:138.259350px;}
.yfa{bottom:140.504100px;}
.y44{bottom:142.467450px;}
.y79{bottom:142.719750px;}
.y92{bottom:142.742250px;}
.y60{bottom:144.564000px;}
.y21{bottom:145.228500px;}
.ya9{bottom:157.466850px;}
.yf9{bottom:159.254100px;}
.y43{bottom:160.759950px;}
.y78{bottom:165.075750px;}
.y91{bottom:165.548250px;}
.y20{bottom:167.728500px;}
.yf8{bottom:178.004100px;}
.y42{bottom:179.967450px;}
.y77{bottom:187.431750px;}
.y90{bottom:188.354250px;}
.y1f{bottom:190.228500px;}
.yf7{bottom:196.754100px;}
.ya8{bottom:197.169450px;}
.yc9{bottom:205.759950px;}
.y76{bottom:209.787750px;}
.y8f{bottom:211.160250px;}
.y1e{bottom:212.728500px;}
.y41{bottom:214.504200px;}
.yf6{bottom:215.504100px;}
.ya7{bottom:219.975450px;}
.yc8{bottom:228.259950px;}
.y75{bottom:232.143750px;}
.y8e{bottom:233.966250px;}
.yf5{bottom:234.254100px;}
.y1d{bottom:235.228500px;}
.y40{bottom:236.698200px;}
.ya6{bottom:242.781450px;}
.yc7{bottom:250.759950px;}
.yf4{bottom:253.004100px;}
.y74{bottom:254.499750px;}
.y1c{bottom:257.728500px;}
.y3f{bottom:258.892200px;}
.ya5{bottom:265.587450px;}
.yf3{bottom:271.754100px;}
.yc6{bottom:273.259950px;}
.y73{bottom:276.855750px;}
.y8d{bottom:279.560250px;}
.y1b{bottom:280.228500px;}
.y3e{bottom:281.086200px;}
.ya4{bottom:288.393450px;}
.yc5{bottom:295.759950px;}
.yf2{bottom:296.887950px;}
.y72{bottom:299.211750px;}
.y8c{bottom:302.366250px;}
.y1a{bottom:302.728500px;}
.y3d{bottom:303.280200px;}
.ya3{bottom:311.199450px;}
.yc4{bottom:318.259950px;}
.y71{bottom:321.567750px;}
.y5f{bottom:321.704100px;}
.y8b{bottom:325.172250px;}
.y19{bottom:325.228500px;}
.y3c{bottom:325.546200px;}
.ya2{bottom:334.005450px;}
.yc3{bottom:340.759950px;}
.yf1{bottom:341.887950px;}
.y70{bottom:343.923750px;}
.y18{bottom:347.728500px;}
.y3b{bottom:347.740200px;}
.y8a{bottom:347.978250px;}
.ya1{bottom:356.811450px;}
.yf0{bottom:356.887950px;}
.yc2{bottom:363.259950px;}
.y5e{bottom:366.380100px;}
.y3a{bottom:369.934200px;}
.y17{bottom:370.228500px;}
.yef{bottom:371.887950px;}
.ya0{bottom:379.617450px;}
.yc1{bottom:385.759950px;}
.yee{bottom:386.887950px;}
.y5d{bottom:388.574100px;}
.y39{bottom:392.128200px;}
.y16{bottom:392.728500px;}
.y7a{bottom:398.690700px;}
.yed{bottom:401.887950px;}
.y9f{bottom:402.423450px;}
.yc0{bottom:408.259950px;}
.y5c{bottom:410.480100px;}
.y38{bottom:414.322200px;}
.y15{bottom:415.228500px;}
.yec{bottom:416.887950px;}
.y9e{bottom:425.223450px;}
.ybf{bottom:430.759950px;}
.yeb{bottom:431.887950px;}
.y5b{bottom:432.386100px;}
.y37{bottom:436.516200px;}
.y14{bottom:437.728500px;}
.yea{bottom:446.887950px;}
.ybe{bottom:453.259950px;}
.y5a{bottom:454.292100px;}
.y36{bottom:458.710200px;}
.y13{bottom:460.228500px;}
.ye9{bottom:461.887950px;}
.y9d{bottom:470.793450px;}
.ybd{bottom:475.759950px;}
.y59{bottom:476.198100px;}
.ye8{bottom:476.887950px;}
.y35{bottom:480.904200px;}
.y12{bottom:482.728500px;}
.ye7{bottom:491.887950px;}
.y9c{bottom:493.599450px;}
.y58{bottom:498.104100px;}
.ybc{bottom:498.259950px;}
.y34{bottom:503.098200px;}
.y11{bottom:505.228500px;}
.ye6{bottom:506.887950px;}
.y9b{bottom:516.405450px;}
.ybb{bottom:520.759950px;}
.ye5{bottom:521.887950px;}
.y10d{bottom:524.509950px;}
.y33{bottom:525.292200px;}
.y10{bottom:527.728500px;}
.y57{bottom:532.759950px;}
.ye4{bottom:536.887950px;}
.y9a{bottom:539.211450px;}
.yba{bottom:543.259950px;}
.y32{bottom:547.486200px;}
.yf{bottom:550.228500px;}
.ye3{bottom:551.887950px;}
.y10c{bottom:562.009950px;}
.y99{bottom:562.017450px;}
.yb9{bottom:565.759950px;}
.ye2{bottom:566.887950px;}
.ye{bottom:572.728500px;}
.y56{bottom:576.458100px;}
.y10b{bottom:580.759950px;}
.ye1{bottom:581.887950px;}
.y98{bottom:584.823450px;}
.y6f{bottom:590.809650px;}
.y31{bottom:591.892200px;}
.yd{bottom:595.228500px;}
.ye0{bottom:596.887950px;}
.y55{bottom:598.364100px;}
.y10a{bottom:599.509950px;}
.yb8{bottom:610.759950px;}
.ydf{bottom:611.887950px;}
.y30{bottom:614.086200px;}
.yc{bottom:617.728500px;}
.y54{bottom:620.270100px;}
.yde{bottom:626.887950px;}
.y109{bottom:629.509950px;}
.yb7{bottom:633.259950px;}
.y6e{bottom:635.443950px;}
.y2f{bottom:636.280200px;}
.yb{bottom:640.228500px;}
.ydd{bottom:641.887950px;}
.y53{bottom:642.176100px;}
.y89{bottom:643.055400px;}
.yb6{bottom:655.759950px;}
.ydc{bottom:656.887950px;}
.y6d{bottom:657.799950px;}
.y2e{bottom:658.474200px;}
.ya{bottom:662.728500px;}
.y52{bottom:664.082100px;}
.y108{bottom:670.759950px;}
.ydb{bottom:671.887950px;}
.yb5{bottom:678.259950px;}
.y6c{bottom:680.155950px;}
.y9{bottom:685.228500px;}
.y51{bottom:685.988100px;}
.yda{bottom:686.887950px;}
.y88{bottom:688.595400px;}
.y2d{bottom:689.238150px;}
.y107{bottom:689.509950px;}
.yb4{bottom:700.759950px;}
.yd9{bottom:701.887950px;}
.y6b{bottom:702.511950px;}
.y50{bottom:707.894100px;}
.y106{bottom:708.259950px;}
.y87{bottom:711.401400px;}
.y2c{bottom:711.432150px;}
.yd8{bottom:716.887950px;}
.yb3{bottom:723.259950px;}
.y6a{bottom:724.867950px;}
.y105{bottom:727.009950px;}
.y4f{bottom:729.800100px;}
.y8{bottom:730.228500px;}
.yd7{bottom:731.887950px;}
.y2b{bottom:733.626150px;}
.y86{bottom:734.207400px;}
.yb2{bottom:745.759950px;}
.yd6{bottom:746.887950px;}
.y69{bottom:747.223950px;}
.y7{bottom:748.978500px;}
.y4e{bottom:751.706100px;}
.y2a{bottom:755.820150px;}
.y85{bottom:757.013400px;}
.yd5{bottom:761.887950px;}
.y104{bottom:764.509950px;}
.yb1{bottom:768.259950px;}
.y68{bottom:769.579950px;}
.y4d{bottom:773.612100px;}
.yd4{bottom:776.887950px;}
.y29{bottom:778.014150px;}
.y84{bottom:779.819400px;}
.y103{bottom:783.259950px;}
.yb0{bottom:790.759950px;}
.y6{bottom:791.114250px;}
.yd3{bottom:791.887950px;}
.y67{bottom:791.935950px;}
.y4c{bottom:795.518100px;}
.y28{bottom:800.208150px;}
.y102{bottom:802.009950px;}
.y83{bottom:802.625400px;}
.yd2{bottom:806.887950px;}
.yaf{bottom:813.259950px;}
.y5{bottom:813.614250px;}
.y66{bottom:814.291950px;}
.y4b{bottom:817.424100px;}
.y101{bottom:820.759950px;}
.yd1{bottom:821.887950px;}
.y27{bottom:822.402150px;}
.y82{bottom:825.431400px;}
.yae{bottom:835.759950px;}
.yd0{bottom:836.887950px;}
.y4a{bottom:839.330100px;}
.y100{bottom:839.509950px;}
.y26{bottom:844.596150px;}
.y81{bottom:848.237400px;}
.ycf{bottom:851.887950px;}
.y97{bottom:857.509350px;}
.yad{bottom:858.259950px;}
.y65{bottom:858.985950px;}
.y49{bottom:861.236100px;}
.y25{bottom:866.790150px;}
.yce{bottom:866.887950px;}
.y80{bottom:871.043400px;}
.yff{bottom:877.009950px;}
.y4{bottom:880.759950px;}
.y64{bottom:881.341950px;}
.ycd{bottom:881.887950px;}
.y48{bottom:883.142100px;}
.y24{bottom:888.984150px;}
.y7f{bottom:893.849400px;}
.yfe{bottom:895.759950px;}
.ycc{bottom:896.887950px;}
.y96{bottom:902.821350px;}
.yac{bottom:903.259950px;}
.y63{bottom:903.697950px;}
.y47{bottom:905.048100px;}
.y3{bottom:910.759950px;}
.y23{bottom:911.178150px;}
.ycb{bottom:911.887950px;}
.yfd{bottom:914.509950px;}
.y7e{bottom:916.655400px;}
.y95{bottom:925.465350px;}
.yab{bottom:925.759950px;}
.y62{bottom:926.053950px;}
.yca{bottom:926.887950px;}
.y46{bottom:926.954100px;}
.yfc{bottom:933.259950px;}
.y7d{bottom:947.959350px;}
.y94{bottom:948.109350px;}
.y22{bottom:948.259950px;}
.y61{bottom:948.409950px;}
.y45{bottom:948.860100px;}
.yfb{bottom:952.009950px;}
.h9{height:24.630908px;}
.hc{height:30.712800px;}
.hd{height:39.888000px;}
.ha{height:40.757812px;}
.h6{height:47.988281px;}
.hb{height:49.860000px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.h3{height:101.894531px;}
.h8{height:106.245047px;}
.h7{height:106.533047px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x3{left:103.641750px;}
.x5{left:112.498050px;}
.xa{left:113.913150px;}
.x7{left:121.949550px;}
.x6{left:127.386000px;}
.x9{left:128.799150px;}
.x2{left:156.244800px;}
.x8{left:383.559600px;}
.xb{left:407.024250px;}
.x4{left:417.403050px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.226667pt;}
.v1{vertical-align:63.786667pt;}
.ls29{letter-spacing:-1.664000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.357333pt;}
.ls27{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.832000pt;}
.lsc{letter-spacing:0.896000pt;}
.ls18{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.792000pt;}
.ls1f{letter-spacing:3.520000pt;}
.ls7{letter-spacing:3.968000pt;}
.ls26{letter-spacing:4.224000pt;}
.ls1d{letter-spacing:7.360000pt;}
.ls9{letter-spacing:7.466667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.lsd{letter-spacing:9.984000pt;}
.ls23{letter-spacing:25.941333pt;}
.ls28{letter-spacing:59.690667pt;}
.ls0{letter-spacing:213.333333pt;}
.ws33{word-spacing:-59.690667pt;}
.ws2{word-spacing:-43.136000pt;}
.ws0{word-spacing:-35.946667pt;}
.ws2e{word-spacing:-28.757333pt;}
.ws3{word-spacing:-22.506667pt;}
.ws12{word-spacing:-22.453333pt;}
.ws26{word-spacing:-18.506667pt;}
.ws13{word-spacing:-17.984000pt;}
.ws32{word-spacing:-12.970667pt;}
.ws14{word-spacing:-12.588800pt;}
.ws2f{word-spacing:-11.989333pt;}
.wsf{word-spacing:-9.984000pt;}
.ws9{word-spacing:-7.520000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws31{word-spacing:-4.224000pt;}
.ws6{word-spacing:-3.968000pt;}
.ws1d{word-spacing:-1.792000pt;}
.ws28{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.024000pt;}
.wse{word-spacing:-0.896000pt;}
.ws1f{word-spacing:-0.832000pt;}
.ws18{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.128000pt;}
.ws11{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.064000pt;}
.ws19{word-spacing:0.128000pt;}
.ws7{word-spacing:0.160000pt;}
.ws36{word-spacing:0.213333pt;}
.wsd{word-spacing:0.256000pt;}
.ws38{word-spacing:0.266667pt;}
.ws16{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.384000pt;}
.ws35{word-spacing:0.426667pt;}
.ws17{word-spacing:0.448000pt;}
.ws24{word-spacing:0.512000pt;}
.ws20{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.832000pt;}
.ws27{word-spacing:1.216000pt;}
.ws37{word-spacing:1.237333pt;}
.ws5{word-spacing:1.600000pt;}
.ws34{word-spacing:1.664000pt;}
.ws22{word-spacing:2.080000pt;}
.ws1b{word-spacing:4.480000pt;}
.ws15{word-spacing:4.544000pt;}
.ws25{word-spacing:7.466667pt;}
.ws2c{word-spacing:8.960000pt;}
.ws2a{word-spacing:9.024000pt;}
.ws30{word-spacing:13.610667pt;}
.ws1{word-spacing:377.546667pt;}
._11{margin-left:-16.554667pt;}
._1b{margin-left:-14.986667pt;}
._5{margin-left:-10.560000pt;}
._9{margin-left:-9.333333pt;}
._10{margin-left:-7.904000pt;}
._e{margin-left:-6.720000pt;}
._2{margin-left:-5.706667pt;}
._8{margin-left:-4.053333pt;}
._14{margin-left:-2.805333pt;}
._6{margin-left:-1.653333pt;}
._7{width:1.493333pt;}
._3{width:2.826667pt;}
._0{width:3.733333pt;}
._a{width:4.672000pt;}
._12{width:5.824000pt;}
._4{width:7.466667pt;}
._c{width:8.469333pt;}
._d{width:9.408000pt;}
._f{width:10.400000pt;}
._b{width:11.306667pt;}
._16{width:14.656000pt;}
._18{width:28.129867pt;}
._1{width:41.013333pt;}
._17{width:94.494933pt;}
._15{width:108.892267pt;}
._19{width:179.146667pt;}
._1a{width:181.706667pt;}
._13{width:215.840000pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:35.733333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:68.230400pt;}
.y2{bottom:68.231067pt;}
.y7b{bottom:82.897067pt;}
.y93{bottom:82.897200pt;}
.y1{bottom:82.897733pt;}
.yaa{bottom:122.897200pt;}
.yfa{bottom:124.892533pt;}
.y44{bottom:126.637733pt;}
.y79{bottom:126.862000pt;}
.y92{bottom:126.882000pt;}
.y60{bottom:128.501333pt;}
.y21{bottom:129.092000pt;}
.ya9{bottom:139.970533pt;}
.yf9{bottom:141.559200pt;}
.y43{bottom:142.897733pt;}
.y78{bottom:146.734000pt;}
.y91{bottom:147.154000pt;}
.y20{bottom:149.092000pt;}
.yf8{bottom:158.225867pt;}
.y42{bottom:159.971067pt;}
.y77{bottom:166.606000pt;}
.y90{bottom:167.426000pt;}
.y1f{bottom:169.092000pt;}
.yf7{bottom:174.892533pt;}
.ya8{bottom:175.261733pt;}
.yc9{bottom:182.897733pt;}
.y76{bottom:186.478000pt;}
.y8f{bottom:187.698000pt;}
.y1e{bottom:189.092000pt;}
.y41{bottom:190.670400pt;}
.yf6{bottom:191.559200pt;}
.ya7{bottom:195.533733pt;}
.yc8{bottom:202.897733pt;}
.y75{bottom:206.350000pt;}
.y8e{bottom:207.970000pt;}
.yf5{bottom:208.225867pt;}
.y1d{bottom:209.092000pt;}
.y40{bottom:210.398400pt;}
.ya6{bottom:215.805733pt;}
.yc7{bottom:222.897733pt;}
.yf4{bottom:224.892533pt;}
.y74{bottom:226.222000pt;}
.y1c{bottom:229.092000pt;}
.y3f{bottom:230.126400pt;}
.ya5{bottom:236.077733pt;}
.yf3{bottom:241.559200pt;}
.yc6{bottom:242.897733pt;}
.y73{bottom:246.094000pt;}
.y8d{bottom:248.498000pt;}
.y1b{bottom:249.092000pt;}
.y3e{bottom:249.854400pt;}
.ya4{bottom:256.349733pt;}
.yc5{bottom:262.897733pt;}
.yf2{bottom:263.900400pt;}
.y72{bottom:265.966000pt;}
.y8c{bottom:268.770000pt;}
.y1a{bottom:269.092000pt;}
.y3d{bottom:269.582400pt;}
.ya3{bottom:276.621733pt;}
.yc4{bottom:282.897733pt;}
.y71{bottom:285.838000pt;}
.y5f{bottom:285.959200pt;}
.y8b{bottom:289.042000pt;}
.y19{bottom:289.092000pt;}
.y3c{bottom:289.374400pt;}
.ya2{bottom:296.893733pt;}
.yc3{bottom:302.897733pt;}
.yf1{bottom:303.900400pt;}
.y70{bottom:305.710000pt;}
.y18{bottom:309.092000pt;}
.y3b{bottom:309.102400pt;}
.y8a{bottom:309.314000pt;}
.ya1{bottom:317.165733pt;}
.yf0{bottom:317.233733pt;}
.yc2{bottom:322.897733pt;}
.y5e{bottom:325.671200pt;}
.y3a{bottom:328.830400pt;}
.y17{bottom:329.092000pt;}
.yef{bottom:330.567067pt;}
.ya0{bottom:337.437733pt;}
.yc1{bottom:342.897733pt;}
.yee{bottom:343.900400pt;}
.y5d{bottom:345.399200pt;}
.y39{bottom:348.558400pt;}
.y16{bottom:349.092000pt;}
.y7a{bottom:354.391733pt;}
.yed{bottom:357.233733pt;}
.y9f{bottom:357.709733pt;}
.yc0{bottom:362.897733pt;}
.y5c{bottom:364.871200pt;}
.y38{bottom:368.286400pt;}
.y15{bottom:369.092000pt;}
.yec{bottom:370.567067pt;}
.y9e{bottom:377.976400pt;}
.ybf{bottom:382.897733pt;}
.yeb{bottom:383.900400pt;}
.y5b{bottom:384.343200pt;}
.y37{bottom:388.014400pt;}
.y14{bottom:389.092000pt;}
.yea{bottom:397.233733pt;}
.ybe{bottom:402.897733pt;}
.y5a{bottom:403.815200pt;}
.y36{bottom:407.742400pt;}
.y13{bottom:409.092000pt;}
.ye9{bottom:410.567067pt;}
.y9d{bottom:418.483067pt;}
.ybd{bottom:422.897733pt;}
.y59{bottom:423.287200pt;}
.ye8{bottom:423.900400pt;}
.y35{bottom:427.470400pt;}
.y12{bottom:429.092000pt;}
.ye7{bottom:437.233733pt;}
.y9c{bottom:438.755067pt;}
.y58{bottom:442.759200pt;}
.ybc{bottom:442.897733pt;}
.y34{bottom:447.198400pt;}
.y11{bottom:449.092000pt;}
.ye6{bottom:450.567067pt;}
.y9b{bottom:459.027067pt;}
.ybb{bottom:462.897733pt;}
.ye5{bottom:463.900400pt;}
.y10d{bottom:466.231067pt;}
.y33{bottom:466.926400pt;}
.y10{bottom:469.092000pt;}
.y57{bottom:473.564400pt;}
.ye4{bottom:477.233733pt;}
.y9a{bottom:479.299067pt;}
.yba{bottom:482.897733pt;}
.y32{bottom:486.654400pt;}
.yf{bottom:489.092000pt;}
.ye3{bottom:490.567067pt;}
.y10c{bottom:499.564400pt;}
.y99{bottom:499.571067pt;}
.yb9{bottom:502.897733pt;}
.ye2{bottom:503.900400pt;}
.ye{bottom:509.092000pt;}
.y56{bottom:512.407200pt;}
.y10b{bottom:516.231067pt;}
.ye1{bottom:517.233733pt;}
.y98{bottom:519.843067pt;}
.y6f{bottom:525.164133pt;}
.y31{bottom:526.126400pt;}
.yd{bottom:529.092000pt;}
.ye0{bottom:530.567067pt;}
.y55{bottom:531.879200pt;}
.y10a{bottom:532.897733pt;}
.yb8{bottom:542.897733pt;}
.ydf{bottom:543.900400pt;}
.y30{bottom:545.854400pt;}
.yc{bottom:549.092000pt;}
.y54{bottom:551.351200pt;}
.yde{bottom:557.233733pt;}
.y109{bottom:559.564400pt;}
.yb7{bottom:562.897733pt;}
.y6e{bottom:564.839067pt;}
.y2f{bottom:565.582400pt;}
.yb{bottom:569.092000pt;}
.ydd{bottom:570.567067pt;}
.y53{bottom:570.823200pt;}
.y89{bottom:571.604800pt;}
.yb6{bottom:582.897733pt;}
.ydc{bottom:583.900400pt;}
.y6d{bottom:584.711067pt;}
.y2e{bottom:585.310400pt;}
.ya{bottom:589.092000pt;}
.y52{bottom:590.295200pt;}
.y108{bottom:596.231067pt;}
.ydb{bottom:597.233733pt;}
.yb5{bottom:602.897733pt;}
.y6c{bottom:604.583067pt;}
.y9{bottom:609.092000pt;}
.y51{bottom:609.767200pt;}
.yda{bottom:610.567067pt;}
.y88{bottom:612.084800pt;}
.y2d{bottom:612.656133pt;}
.y107{bottom:612.897733pt;}
.yb4{bottom:622.897733pt;}
.yd9{bottom:623.900400pt;}
.y6b{bottom:624.455067pt;}
.y50{bottom:629.239200pt;}
.y106{bottom:629.564400pt;}
.y87{bottom:632.356800pt;}
.y2c{bottom:632.384133pt;}
.yd8{bottom:637.233733pt;}
.yb3{bottom:642.897733pt;}
.y6a{bottom:644.327067pt;}
.y105{bottom:646.231067pt;}
.y4f{bottom:648.711200pt;}
.y8{bottom:649.092000pt;}
.yd7{bottom:650.567067pt;}
.y2b{bottom:652.112133pt;}
.y86{bottom:652.628800pt;}
.yb2{bottom:662.897733pt;}
.yd6{bottom:663.900400pt;}
.y69{bottom:664.199067pt;}
.y7{bottom:665.758667pt;}
.y4e{bottom:668.183200pt;}
.y2a{bottom:671.840133pt;}
.y85{bottom:672.900800pt;}
.yd5{bottom:677.233733pt;}
.y104{bottom:679.564400pt;}
.yb1{bottom:682.897733pt;}
.y68{bottom:684.071067pt;}
.y4d{bottom:687.655200pt;}
.yd4{bottom:690.567067pt;}
.y29{bottom:691.568133pt;}
.y84{bottom:693.172800pt;}
.y103{bottom:696.231067pt;}
.yb0{bottom:702.897733pt;}
.y6{bottom:703.212667pt;}
.yd3{bottom:703.900400pt;}
.y67{bottom:703.943067pt;}
.y4c{bottom:707.127200pt;}
.y28{bottom:711.296133pt;}
.y102{bottom:712.897733pt;}
.y83{bottom:713.444800pt;}
.yd2{bottom:717.233733pt;}
.yaf{bottom:722.897733pt;}
.y5{bottom:723.212667pt;}
.y66{bottom:723.815067pt;}
.y4b{bottom:726.599200pt;}
.y101{bottom:729.564400pt;}
.yd1{bottom:730.567067pt;}
.y27{bottom:731.024133pt;}
.y82{bottom:733.716800pt;}
.yae{bottom:742.897733pt;}
.yd0{bottom:743.900400pt;}
.y4a{bottom:746.071200pt;}
.y100{bottom:746.231067pt;}
.y26{bottom:750.752133pt;}
.y81{bottom:753.988800pt;}
.ycf{bottom:757.233733pt;}
.y97{bottom:762.230533pt;}
.yad{bottom:762.897733pt;}
.y65{bottom:763.543067pt;}
.y49{bottom:765.543200pt;}
.y25{bottom:770.480133pt;}
.yce{bottom:770.567067pt;}
.y80{bottom:774.260800pt;}
.yff{bottom:779.564400pt;}
.y4{bottom:782.897733pt;}
.y64{bottom:783.415067pt;}
.ycd{bottom:783.900400pt;}
.y48{bottom:785.015200pt;}
.y24{bottom:790.208133pt;}
.y7f{bottom:794.532800pt;}
.yfe{bottom:796.231067pt;}
.ycc{bottom:797.233733pt;}
.y96{bottom:802.507867pt;}
.yac{bottom:802.897733pt;}
.y63{bottom:803.287067pt;}
.y47{bottom:804.487200pt;}
.y3{bottom:809.564400pt;}
.y23{bottom:809.936133pt;}
.ycb{bottom:810.567067pt;}
.yfd{bottom:812.897733pt;}
.y7e{bottom:814.804800pt;}
.y95{bottom:822.635867pt;}
.yab{bottom:822.897733pt;}
.y62{bottom:823.159067pt;}
.yca{bottom:823.900400pt;}
.y46{bottom:823.959200pt;}
.yfc{bottom:829.564400pt;}
.y7d{bottom:842.630533pt;}
.y94{bottom:842.763867pt;}
.y22{bottom:842.897733pt;}
.y61{bottom:843.031067pt;}
.y45{bottom:843.431200pt;}
.yfb{bottom:846.231067pt;}
.h9{height:21.894141pt;}
.hc{height:27.300267pt;}
.hd{height:35.456000pt;}
.ha{height:36.229167pt;}
.h6{height:42.656250pt;}
.hb{height:44.320000pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.h3{height:90.572917pt;}
.h8{height:94.440042pt;}
.h7{height:94.696042pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x3{left:92.126000pt;}
.x5{left:99.998267pt;}
.xa{left:101.256133pt;}
.x7{left:108.399600pt;}
.x6{left:113.232000pt;}
.x9{left:114.488133pt;}
.x2{left:138.884267pt;}
.x8{left:340.941867pt;}
.xb{left:361.799333pt;}
.x4{left:371.024933pt;}
}




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