
    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_3cedc5c909f0dec677084388.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_a828ee5a8a7d23a0afe74e36.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_d92db43a204b9e90534073fa.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_56045e706a0ab1f670307317.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_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_3480f505085bc616d5069a03.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_e29c33175c7e2a0bb8c37002.woff')format("woff");}.ff7{font-family:ff7;line-height:1.070312;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_5f3853abaf63510445b40e74.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_88e979ef841d970c721450ce.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a2a31513fe1a05229d4ef082.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v3{vertical-align:-16.830000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls29{letter-spacing:-4.800000px;}
.ls2a{letter-spacing:-1.872000px;}
.ls26{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.660000px;}
.ls23{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.936000px;}
.ls20{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.728000px;}
.ls1b{letter-spacing:1.944000px;}
.ls9{letter-spacing:4.176000px;}
.ls28{letter-spacing:4.752000px;}
.ls1e{letter-spacing:6.048000px;}
.ls10{letter-spacing:6.696000px;}
.ls27{letter-spacing:6.768000px;}
.lsc{letter-spacing:8.400000px;}
.ls2{letter-spacing:8.460000px;}
.ls1f{letter-spacing:9.720000px;}
.ls1{letter-spacing:10.440000px;}
.ls0{letter-spacing:10.740000px;}
.ls24{letter-spacing:11.088000px;}
.ls2b{letter-spacing:17.376000px;}
.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;}
}
.ws31{word-spacing:-63.576000px;}
.ws28{word-spacing:-49.392000px;}
.ws2c{word-spacing:-48.744000px;}
.ws1{word-spacing:-48.528000px;}
.ws27{word-spacing:-47.880000px;}
.ws26{word-spacing:-47.808000px;}
.ws12{word-spacing:-40.440000px;}
.ws34{word-spacing:-32.352000px;}
.ws2{word-spacing:-25.320000px;}
.ws20{word-spacing:-25.260000px;}
.ws1e{word-spacing:-20.808000px;}
.ws32{word-spacing:-20.592000px;}
.ws19{word-spacing:-20.232000px;}
.ws2d{word-spacing:-19.872000px;}
.ws37{word-spacing:-17.376000px;}
.ws13{word-spacing:-14.820000px;}
.ws1f{word-spacing:-14.162400px;}
.ws33{word-spacing:-12.336000px;}
.ws35{word-spacing:-8.688000px;}
.ws9{word-spacing:-8.460000px;}
.ws8{word-spacing:-8.400000px;}
.ws5{word-spacing:-4.176000px;}
.ws2b{word-spacing:-1.008000px;}
.ws25{word-spacing:-0.936000px;}
.ws17{word-spacing:-0.864000px;}
.wsc{word-spacing:-0.792000px;}
.ws21{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.216000px;}
.wse{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws1d{word-spacing:0.072000px;}
.ws1c{word-spacing:0.144000px;}
.ws10{word-spacing:0.216000px;}
.ws18{word-spacing:0.288000px;}
.ws7{word-spacing:0.300000px;}
.ws38{word-spacing:0.336000px;}
.ws22{word-spacing:0.360000px;}
.ws2e{word-spacing:0.576000px;}
.ws6{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws2a{word-spacing:0.792000px;}
.ws1a{word-spacing:0.936000px;}
.ws30{word-spacing:1.008000px;}
.ws4{word-spacing:1.800000px;}
.ws36{word-spacing:1.872000px;}
.ws15{word-spacing:2.340000px;}
.ws29{word-spacing:6.696000px;}
.ws0{word-spacing:8.400000px;}
.ws23{word-spacing:10.152000px;}
.ws14{word-spacing:75.180000px;}
._0{margin-left:-940.440000px;}
._13{margin-left:-53.220000px;}
._12{margin-left:-28.956000px;}
._16{margin-left:-19.596000px;}
._10{margin-left:-14.976000px;}
._5{margin-left:-11.880000px;}
._15{margin-left:-10.800000px;}
._14{margin-left:-8.232000px;}
._b{margin-left:-7.200000px;}
._1{margin-left:-5.940000px;}
._a{margin-left:-4.200000px;}
._8{margin-left:-2.640000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._d{width:3.192000px;}
._4{width:4.200000px;}
._f{width:5.208000px;}
._e{width:6.600000px;}
._6{width:8.040000px;}
._7{width:9.360000px;}
._c{width:11.280000px;}
._9{width:12.600000px;}
._17{width:31.646100px;}
._11{width:201.540000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.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;}
.y64{bottom:76.759200px;}
.y22{bottom:76.760700px;}
.y65{bottom:79.759200px;}
.y23{bottom:79.760700px;}
.y63{bottom:93.259200px;}
.y1{bottom:93.259950px;}
.y21{bottom:93.260700px;}
.y88{bottom:138.259350px;}
.yfd{bottom:138.260700px;}
.ye4{bottom:139.437150px;}
.y11f{bottom:139.611000px;}
.y149{bottom:139.904700px;}
.y62{bottom:140.714700px;}
.y3d{bottom:141.880950px;}
.yd0{bottom:143.715150px;}
.ybe{bottom:144.481350px;}
.y20{bottom:145.228500px;}
.y98{bottom:146.139750px;}
.y87{bottom:157.466850px;}
.y148{bottom:158.504700px;}
.yfc{bottom:160.760700px;}
.ye3{bottom:161.937150px;}
.y11e{bottom:163.011000px;}
.y61{bottom:163.214700px;}
.y3c{bottom:163.336950px;}
.ybd{bottom:166.225350px;}
.ycf{bottom:166.521150px;}
.y1f{bottom:167.728500px;}
.y97{bottom:168.639750px;}
.y147{bottom:177.104700px;}
.yfb{bottom:183.260700px;}
.ye2{bottom:184.437150px;}
.y3b{bottom:185.692950px;}
.y60{bottom:185.858700px;}
.y11d{bottom:186.411000px;}
.ybc{bottom:187.969350px;}
.yce{bottom:189.327150px;}
.y1e{bottom:190.228500px;}
.y96{bottom:191.139750px;}
.y146{bottom:195.704700px;}
.y86{bottom:205.759350px;}
.yfa{bottom:205.760700px;}
.ye1{bottom:206.937150px;}
.y3a{bottom:208.048950px;}
.y5f{bottom:208.358700px;}
.ybb{bottom:209.713350px;}
.y11c{bottom:209.811000px;}
.ycd{bottom:212.133150px;}
.y1d{bottom:212.728500px;}
.y95{bottom:213.639750px;}
.y145{bottom:214.304700px;}
.y85{bottom:228.259350px;}
.yf9{bottom:228.260700px;}
.ye0{bottom:229.437150px;}
.y39{bottom:230.404950px;}
.y5e{bottom:230.858700px;}
.yba{bottom:231.457350px;}
.y11b{bottom:233.211000px;}
.ycc{bottom:234.939150px;}
.y1c{bottom:235.228500px;}
.y94{bottom:236.139750px;}
.y144{bottom:244.004700px;}
.y84{bottom:250.759350px;}
.yf8{bottom:250.760700px;}
.ydf{bottom:251.937150px;}
.y38{bottom:252.760950px;}
.yb9{bottom:253.201350px;}
.y5d{bottom:253.358700px;}
.y11a{bottom:256.611000px;}
.y1b{bottom:257.728500px;}
.ycb{bottom:257.745150px;}
.y93{bottom:258.639750px;}
.y83{bottom:273.259350px;}
.yf7{bottom:273.260700px;}
.yde{bottom:274.437150px;}
.yb8{bottom:274.945350px;}
.y37{bottom:275.116950px;}
.y5c{bottom:275.858700px;}
.y119{bottom:280.011000px;}
.y1a{bottom:280.228500px;}
.yca{bottom:280.551150px;}
.y92{bottom:281.139750px;}
.y143{bottom:284.954700px;}
.y82{bottom:295.759350px;}
.yf6{bottom:295.760700px;}
.yb7{bottom:296.689350px;}
.ydd{bottom:296.937150px;}
.y36{bottom:297.472950px;}
.y5b{bottom:298.358700px;}
.y19{bottom:302.728500px;}
.yc9{bottom:303.357150px;}
.y118{bottom:303.411000px;}
.y142{bottom:303.554700px;}
.y91{bottom:303.639750px;}
.y81{bottom:318.259350px;}
.yf5{bottom:318.260700px;}
.yb6{bottom:318.433350px;}
.ydc{bottom:319.437150px;}
.y35{bottom:319.828950px;}
.y5a{bottom:320.858700px;}
.y141{bottom:322.154700px;}
.y18{bottom:325.228500px;}
.y90{bottom:326.139750px;}
.yc8{bottom:326.157150px;}
.y117{bottom:326.811000px;}
.yb5{bottom:340.177350px;}
.y140{bottom:340.754700px;}
.y80{bottom:340.759350px;}
.yf4{bottom:340.760700px;}
.y34{bottom:342.184950px;}
.y59{bottom:343.358700px;}
.y17{bottom:347.728500px;}
.y8f{bottom:348.639750px;}
.y116{bottom:350.211000px;}
.y13f{bottom:359.354700px;}
.yb4{bottom:361.921350px;}
.y7f{bottom:363.259350px;}
.yf3{bottom:363.260700px;}
.y33{bottom:364.540950px;}
.y58{bottom:365.858700px;}
.y16{bottom:370.228500px;}
.y8e{bottom:371.139750px;}
.yc7{bottom:371.709150px;}
.y115{bottom:373.611000px;}
.y13e{bottom:377.954700px;}
.yb3{bottom:383.665350px;}
.y7e{bottom:385.759350px;}
.yf2{bottom:385.760700px;}
.y32{bottom:386.896950px;}
.y57{bottom:388.358700px;}
.y15{bottom:392.728500px;}
.y8d{bottom:393.639750px;}
.yc6{bottom:394.515150px;}
.y13d{bottom:396.554700px;}
.y114{bottom:397.011000px;}
.yb2{bottom:405.409350px;}
.y7d{bottom:408.259350px;}
.yf1{bottom:408.260700px;}
.y31{bottom:409.252950px;}
.y56{bottom:410.858700px;}
.y13c{bottom:415.154700px;}
.y14{bottom:415.228500px;}
.y8c{bottom:416.139750px;}
.yc5{bottom:417.321150px;}
.y113{bottom:420.411000px;}
.yb1{bottom:427.153350px;}
.y7c{bottom:430.759350px;}
.yf0{bottom:430.760700px;}
.y30{bottom:431.608950px;}
.y55{bottom:433.358700px;}
.y13b{bottom:433.754700px;}
.y13{bottom:437.728500px;}
.y8b{bottom:438.639750px;}
.yc4{bottom:440.127150px;}
.y112{bottom:443.811000px;}
.yb0{bottom:448.897350px;}
.y13a{bottom:452.354700px;}
.y7b{bottom:453.259350px;}
.yef{bottom:453.260700px;}
.y2f{bottom:453.964950px;}
.y54{bottom:455.858700px;}
.y12{bottom:460.228500px;}
.yc3{bottom:462.933150px;}
.yaf{bottom:470.641350px;}
.y139{bottom:470.954700px;}
.y7a{bottom:475.759350px;}
.yee{bottom:475.760700px;}
.y2e{bottom:476.320950px;}
.y53{bottom:478.358700px;}
.y11{bottom:482.728500px;}
.yc2{bottom:485.739150px;}
.y138{bottom:489.554700px;}
.y111{bottom:490.610850px;}
.yae{bottom:492.385350px;}
.y79{bottom:498.259350px;}
.yed{bottom:498.260700px;}
.y2d{bottom:498.676950px;}
.y52{bottom:500.858700px;}
.y10{bottom:505.228500px;}
.y137{bottom:508.154700px;}
.yc1{bottom:508.545150px;}
.y110{bottom:514.010850px;}
.yad{bottom:514.129350px;}
.y78{bottom:520.759350px;}
.yec{bottom:520.760700px;}
.y2c{bottom:521.032950px;}
.y51{bottom:523.358700px;}
.y136{bottom:526.754700px;}
.yf{bottom:527.728500px;}
.yc0{bottom:531.351150px;}
.yac{bottom:535.873350px;}
.y10f{bottom:537.410850px;}
.y77{bottom:543.259350px;}
.yeb{bottom:543.260700px;}
.y2b{bottom:543.388950px;}
.y135{bottom:545.354700px;}
.y50{bottom:545.858700px;}
.ye{bottom:550.228500px;}
.ybf{bottom:554.157150px;}
.yab{bottom:557.617350px;}
.y10e{bottom:560.810850px;}
.y134{bottom:563.954700px;}
.y2a{bottom:565.744950px;}
.y76{bottom:565.759350px;}
.yea{bottom:565.760700px;}
.y4f{bottom:568.358700px;}
.yd{bottom:572.728500px;}
.yaa{bottom:579.361350px;}
.y133{bottom:582.554700px;}
.y10d{bottom:584.210850px;}
.y29{bottom:588.100950px;}
.y75{bottom:588.259350px;}
.ye9{bottom:588.260700px;}
.y4e{bottom:590.714700px;}
.yc{bottom:595.228500px;}
.ya9{bottom:601.105350px;}
.y132{bottom:601.154700px;}
.y10c{bottom:607.610850px;}
.y28{bottom:610.456950px;}
.y74{bottom:610.759350px;}
.ye8{bottom:610.760700px;}
.y4d{bottom:613.070700px;}
.yb{bottom:617.728500px;}
.y131{bottom:619.754700px;}
.ya8{bottom:622.849350px;}
.y10b{bottom:631.010850px;}
.y27{bottom:632.812950px;}
.ye7{bottom:633.260700px;}
.y4c{bottom:635.426700px;}
.y130{bottom:638.354700px;}
.ya{bottom:640.228500px;}
.ya7{bottom:644.593350px;}
.y26{bottom:655.168950px;}
.y73{bottom:655.759350px;}
.ye6{bottom:655.760700px;}
.y12f{bottom:656.954700px;}
.y4b{bottom:657.782700px;}
.y9{bottom:662.728500px;}
.ya6{bottom:666.337350px;}
.y10a{bottom:666.560850px;}
.y12e{bottom:675.554700px;}
.y25{bottom:677.524950px;}
.y72{bottom:678.259350px;}
.ydb{bottom:678.260700px;}
.y4a{bottom:680.138700px;}
.y8{bottom:685.228500px;}
.ya5{bottom:688.081350px;}
.y109{bottom:689.960850px;}
.y12d{bottom:694.154700px;}
.y8a{bottom:695.621550px;}
.y71{bottom:700.759350px;}
.ye5{bottom:700.760700px;}
.y49{bottom:702.494700px;}
.ya4{bottom:709.825350px;}
.y108{bottom:713.360850px;}
.y12c{bottom:719.198700px;}
.y70{bottom:723.259350px;}
.yda{bottom:723.260700px;}
.y48{bottom:724.850700px;}
.y7{bottom:730.228500px;}
.ya3{bottom:731.569350px;}
.y107{bottom:736.760850px;}
.y6f{bottom:745.759350px;}
.yd9{bottom:745.760700px;}
.y47{bottom:747.206700px;}
.y6{bottom:748.978500px;}
.ya2{bottom:753.313350px;}
.y106{bottom:760.160850px;}
.y12b{bottom:763.898700px;}
.y6e{bottom:768.259350px;}
.yd8{bottom:768.260700px;}
.y46{bottom:769.562700px;}
.ya1{bottom:775.057350px;}
.y12a{bottom:778.742700px;}
.y105{bottom:783.560850px;}
.y6d{bottom:790.759350px;}
.yd7{bottom:790.760700px;}
.y5{bottom:791.114250px;}
.y45{bottom:791.918700px;}
.y129{bottom:793.586700px;}
.ya0{bottom:796.801350px;}
.y104{bottom:806.960850px;}
.y128{bottom:808.430700px;}
.y6c{bottom:813.259350px;}
.yd6{bottom:813.260700px;}
.y4{bottom:813.614250px;}
.y44{bottom:814.274700px;}
.y9f{bottom:818.545350px;}
.y127{bottom:823.274700px;}
.y103{bottom:830.360850px;}
.y6b{bottom:835.759350px;}
.yd5{bottom:835.760700px;}
.y43{bottom:836.630700px;}
.y126{bottom:838.118700px;}
.y9e{bottom:840.289350px;}
.y125{bottom:852.962700px;}
.y102{bottom:853.760850px;}
.y6a{bottom:858.259350px;}
.yd4{bottom:858.260700px;}
.y42{bottom:858.986700px;}
.y9d{bottom:862.033350px;}
.y124{bottom:867.806700px;}
.y101{bottom:877.160850px;}
.y69{bottom:880.759350px;}
.y3{bottom:880.759950px;}
.yd3{bottom:880.760700px;}
.y41{bottom:881.342700px;}
.y123{bottom:882.650700px;}
.y9c{bottom:883.777350px;}
.y122{bottom:897.494700px;}
.y100{bottom:900.560850px;}
.y68{bottom:903.259350px;}
.yd2{bottom:903.260700px;}
.y40{bottom:903.698700px;}
.y9b{bottom:905.521350px;}
.y2{bottom:910.759950px;}
.y121{bottom:912.338700px;}
.yff{bottom:923.960850px;}
.y67{bottom:925.759350px;}
.yd1{bottom:925.760700px;}
.y3f{bottom:926.054700px;}
.y120{bottom:927.182700px;}
.y9a{bottom:927.265350px;}
.yfe{bottom:947.360850px;}
.y89{bottom:948.259200px;}
.y66{bottom:948.259350px;}
.y24{bottom:948.260700px;}
.y3e{bottom:948.410700px;}
.y99{bottom:949.009350px;}
.h8{height:24.630908px;}
.ha{height:39.888000px;}
.h9{height:40.757812px;}
.h7{height:49.860000px;}
.h6{height:50.244141px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.h3{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x4{left:88.759800px;}
.x7{left:103.641750px;}
.x2{left:112.500000px;}
.x9{left:118.527750px;}
.x3{left:127.381950px;}
.x8{left:142.308000px;}
.x5{left:156.259800px;}
.xa{left:180.526950px;}
.x6{left:285.259800px;}
.x1{left:635.390550px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls29{letter-spacing:-4.266667pt;}
.ls2a{letter-spacing:-1.664000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls23{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls20{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:1.536000pt;}
.ls1b{letter-spacing:1.728000pt;}
.ls9{letter-spacing:3.712000pt;}
.ls28{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:5.376000pt;}
.ls10{letter-spacing:5.952000pt;}
.ls27{letter-spacing:6.016000pt;}
.lsc{letter-spacing:7.466667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls1f{letter-spacing:8.640000pt;}
.ls1{letter-spacing:9.280000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls24{letter-spacing:9.856000pt;}
.ls2b{letter-spacing:15.445333pt;}
.ws31{word-spacing:-56.512000pt;}
.ws28{word-spacing:-43.904000pt;}
.ws2c{word-spacing:-43.328000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws27{word-spacing:-42.560000pt;}
.ws26{word-spacing:-42.496000pt;}
.ws12{word-spacing:-35.946667pt;}
.ws34{word-spacing:-28.757333pt;}
.ws2{word-spacing:-22.506667pt;}
.ws20{word-spacing:-22.453333pt;}
.ws1e{word-spacing:-18.496000pt;}
.ws32{word-spacing:-18.304000pt;}
.ws19{word-spacing:-17.984000pt;}
.ws2d{word-spacing:-17.664000pt;}
.ws37{word-spacing:-15.445333pt;}
.ws13{word-spacing:-13.173333pt;}
.ws1f{word-spacing:-12.588800pt;}
.ws33{word-spacing:-10.965333pt;}
.ws35{word-spacing:-7.722667pt;}
.ws9{word-spacing:-7.520000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws5{word-spacing:-3.712000pt;}
.ws2b{word-spacing:-0.896000pt;}
.ws25{word-spacing:-0.832000pt;}
.ws17{word-spacing:-0.768000pt;}
.wsc{word-spacing:-0.704000pt;}
.ws21{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.064000pt;}
.ws1c{word-spacing:0.128000pt;}
.ws10{word-spacing:0.192000pt;}
.ws18{word-spacing:0.256000pt;}
.ws7{word-spacing:0.266667pt;}
.ws38{word-spacing:0.298667pt;}
.ws22{word-spacing:0.320000pt;}
.ws2e{word-spacing:0.512000pt;}
.ws6{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.704000pt;}
.ws1a{word-spacing:0.832000pt;}
.ws30{word-spacing:0.896000pt;}
.ws4{word-spacing:1.600000pt;}
.ws36{word-spacing:1.664000pt;}
.ws15{word-spacing:2.080000pt;}
.ws29{word-spacing:5.952000pt;}
.ws0{word-spacing:7.466667pt;}
.ws23{word-spacing:9.024000pt;}
.ws14{word-spacing:66.826667pt;}
._0{margin-left:-835.946667pt;}
._13{margin-left:-47.306667pt;}
._12{margin-left:-25.738667pt;}
._16{margin-left:-17.418667pt;}
._10{margin-left:-13.312000pt;}
._5{margin-left:-10.560000pt;}
._15{margin-left:-9.600000pt;}
._14{margin-left:-7.317333pt;}
._b{margin-left:-6.400000pt;}
._1{margin-left:-5.280000pt;}
._a{margin-left:-3.733333pt;}
._8{margin-left:-2.346667pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._d{width:2.837333pt;}
._4{width:3.733333pt;}
._f{width:4.629333pt;}
._e{width:5.866667pt;}
._6{width:7.146667pt;}
._7{width:8.320000pt;}
._c{width:10.026667pt;}
._9{width:11.200000pt;}
._17{width:28.129867pt;}
._11{width:179.146667pt;}
.fs5{font-size:31.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;}
.y64{bottom:68.230400pt;}
.y22{bottom:68.231733pt;}
.y65{bottom:70.897067pt;}
.y23{bottom:70.898400pt;}
.y63{bottom:82.897067pt;}
.y1{bottom:82.897733pt;}
.y21{bottom:82.898400pt;}
.y88{bottom:122.897200pt;}
.yfd{bottom:122.898400pt;}
.ye4{bottom:123.944133pt;}
.y11f{bottom:124.098667pt;}
.y149{bottom:124.359733pt;}
.y62{bottom:125.079733pt;}
.y3d{bottom:126.116400pt;}
.yd0{bottom:127.746800pt;}
.ybe{bottom:128.427867pt;}
.y20{bottom:129.092000pt;}
.y98{bottom:129.902000pt;}
.y87{bottom:139.970533pt;}
.y148{bottom:140.893067pt;}
.yfc{bottom:142.898400pt;}
.ye3{bottom:143.944133pt;}
.y11e{bottom:144.898667pt;}
.y61{bottom:145.079733pt;}
.y3c{bottom:145.188400pt;}
.ybd{bottom:147.755867pt;}
.ycf{bottom:148.018800pt;}
.y1f{bottom:149.092000pt;}
.y97{bottom:149.902000pt;}
.y147{bottom:157.426400pt;}
.yfb{bottom:162.898400pt;}
.ye2{bottom:163.944133pt;}
.y3b{bottom:165.060400pt;}
.y60{bottom:165.207733pt;}
.y11d{bottom:165.698667pt;}
.ybc{bottom:167.083867pt;}
.yce{bottom:168.290800pt;}
.y1e{bottom:169.092000pt;}
.y96{bottom:169.902000pt;}
.y146{bottom:173.959733pt;}
.y86{bottom:182.897200pt;}
.yfa{bottom:182.898400pt;}
.ye1{bottom:183.944133pt;}
.y3a{bottom:184.932400pt;}
.y5f{bottom:185.207733pt;}
.ybb{bottom:186.411867pt;}
.y11c{bottom:186.498667pt;}
.ycd{bottom:188.562800pt;}
.y1d{bottom:189.092000pt;}
.y95{bottom:189.902000pt;}
.y145{bottom:190.493067pt;}
.y85{bottom:202.897200pt;}
.yf9{bottom:202.898400pt;}
.ye0{bottom:203.944133pt;}
.y39{bottom:204.804400pt;}
.y5e{bottom:205.207733pt;}
.yba{bottom:205.739867pt;}
.y11b{bottom:207.298667pt;}
.ycc{bottom:208.834800pt;}
.y1c{bottom:209.092000pt;}
.y94{bottom:209.902000pt;}
.y144{bottom:216.893067pt;}
.y84{bottom:222.897200pt;}
.yf8{bottom:222.898400pt;}
.ydf{bottom:223.944133pt;}
.y38{bottom:224.676400pt;}
.yb9{bottom:225.067867pt;}
.y5d{bottom:225.207733pt;}
.y11a{bottom:228.098667pt;}
.y1b{bottom:229.092000pt;}
.ycb{bottom:229.106800pt;}
.y93{bottom:229.902000pt;}
.y83{bottom:242.897200pt;}
.yf7{bottom:242.898400pt;}
.yde{bottom:243.944133pt;}
.yb8{bottom:244.395867pt;}
.y37{bottom:244.548400pt;}
.y5c{bottom:245.207733pt;}
.y119{bottom:248.898667pt;}
.y1a{bottom:249.092000pt;}
.yca{bottom:249.378800pt;}
.y92{bottom:249.902000pt;}
.y143{bottom:253.293067pt;}
.y82{bottom:262.897200pt;}
.yf6{bottom:262.898400pt;}
.yb7{bottom:263.723867pt;}
.ydd{bottom:263.944133pt;}
.y36{bottom:264.420400pt;}
.y5b{bottom:265.207733pt;}
.y19{bottom:269.092000pt;}
.yc9{bottom:269.650800pt;}
.y118{bottom:269.698667pt;}
.y142{bottom:269.826400pt;}
.y91{bottom:269.902000pt;}
.y81{bottom:282.897200pt;}
.yf5{bottom:282.898400pt;}
.yb6{bottom:283.051867pt;}
.ydc{bottom:283.944133pt;}
.y35{bottom:284.292400pt;}
.y5a{bottom:285.207733pt;}
.y141{bottom:286.359733pt;}
.y18{bottom:289.092000pt;}
.y90{bottom:289.902000pt;}
.yc8{bottom:289.917467pt;}
.y117{bottom:290.498667pt;}
.yb5{bottom:302.379867pt;}
.y140{bottom:302.893067pt;}
.y80{bottom:302.897200pt;}
.yf4{bottom:302.898400pt;}
.y34{bottom:304.164400pt;}
.y59{bottom:305.207733pt;}
.y17{bottom:309.092000pt;}
.y8f{bottom:309.902000pt;}
.y116{bottom:311.298667pt;}
.y13f{bottom:319.426400pt;}
.yb4{bottom:321.707867pt;}
.y7f{bottom:322.897200pt;}
.yf3{bottom:322.898400pt;}
.y33{bottom:324.036400pt;}
.y58{bottom:325.207733pt;}
.y16{bottom:329.092000pt;}
.y8e{bottom:329.902000pt;}
.yc7{bottom:330.408133pt;}
.y115{bottom:332.098667pt;}
.y13e{bottom:335.959733pt;}
.yb3{bottom:341.035867pt;}
.y7e{bottom:342.897200pt;}
.yf2{bottom:342.898400pt;}
.y32{bottom:343.908400pt;}
.y57{bottom:345.207733pt;}
.y15{bottom:349.092000pt;}
.y8d{bottom:349.902000pt;}
.yc6{bottom:350.680133pt;}
.y13d{bottom:352.493067pt;}
.y114{bottom:352.898667pt;}
.yb2{bottom:360.363867pt;}
.y7d{bottom:362.897200pt;}
.yf1{bottom:362.898400pt;}
.y31{bottom:363.780400pt;}
.y56{bottom:365.207733pt;}
.y13c{bottom:369.026400pt;}
.y14{bottom:369.092000pt;}
.y8c{bottom:369.902000pt;}
.yc5{bottom:370.952133pt;}
.y113{bottom:373.698667pt;}
.yb1{bottom:379.691867pt;}
.y7c{bottom:382.897200pt;}
.yf0{bottom:382.898400pt;}
.y30{bottom:383.652400pt;}
.y55{bottom:385.207733pt;}
.y13b{bottom:385.559733pt;}
.y13{bottom:389.092000pt;}
.y8b{bottom:389.902000pt;}
.yc4{bottom:391.224133pt;}
.y112{bottom:394.498667pt;}
.yb0{bottom:399.019867pt;}
.y13a{bottom:402.093067pt;}
.y7b{bottom:402.897200pt;}
.yef{bottom:402.898400pt;}
.y2f{bottom:403.524400pt;}
.y54{bottom:405.207733pt;}
.y12{bottom:409.092000pt;}
.yc3{bottom:411.496133pt;}
.yaf{bottom:418.347867pt;}
.y139{bottom:418.626400pt;}
.y7a{bottom:422.897200pt;}
.yee{bottom:422.898400pt;}
.y2e{bottom:423.396400pt;}
.y53{bottom:425.207733pt;}
.y11{bottom:429.092000pt;}
.yc2{bottom:431.768133pt;}
.y138{bottom:435.159733pt;}
.y111{bottom:436.098533pt;}
.yae{bottom:437.675867pt;}
.y79{bottom:442.897200pt;}
.yed{bottom:442.898400pt;}
.y2d{bottom:443.268400pt;}
.y52{bottom:445.207733pt;}
.y10{bottom:449.092000pt;}
.y137{bottom:451.693067pt;}
.yc1{bottom:452.040133pt;}
.y110{bottom:456.898533pt;}
.yad{bottom:457.003867pt;}
.y78{bottom:462.897200pt;}
.yec{bottom:462.898400pt;}
.y2c{bottom:463.140400pt;}
.y51{bottom:465.207733pt;}
.y136{bottom:468.226400pt;}
.yf{bottom:469.092000pt;}
.yc0{bottom:472.312133pt;}
.yac{bottom:476.331867pt;}
.y10f{bottom:477.698533pt;}
.y77{bottom:482.897200pt;}
.yeb{bottom:482.898400pt;}
.y2b{bottom:483.012400pt;}
.y135{bottom:484.759733pt;}
.y50{bottom:485.207733pt;}
.ye{bottom:489.092000pt;}
.ybf{bottom:492.584133pt;}
.yab{bottom:495.659867pt;}
.y10e{bottom:498.498533pt;}
.y134{bottom:501.293067pt;}
.y2a{bottom:502.884400pt;}
.y76{bottom:502.897200pt;}
.yea{bottom:502.898400pt;}
.y4f{bottom:505.207733pt;}
.yd{bottom:509.092000pt;}
.yaa{bottom:514.987867pt;}
.y133{bottom:517.826400pt;}
.y10d{bottom:519.298533pt;}
.y29{bottom:522.756400pt;}
.y75{bottom:522.897200pt;}
.ye9{bottom:522.898400pt;}
.y4e{bottom:525.079733pt;}
.yc{bottom:529.092000pt;}
.ya9{bottom:534.315867pt;}
.y132{bottom:534.359733pt;}
.y10c{bottom:540.098533pt;}
.y28{bottom:542.628400pt;}
.y74{bottom:542.897200pt;}
.ye8{bottom:542.898400pt;}
.y4d{bottom:544.951733pt;}
.yb{bottom:549.092000pt;}
.y131{bottom:550.893067pt;}
.ya8{bottom:553.643867pt;}
.y10b{bottom:560.898533pt;}
.y27{bottom:562.500400pt;}
.ye7{bottom:562.898400pt;}
.y4c{bottom:564.823733pt;}
.y130{bottom:567.426400pt;}
.ya{bottom:569.092000pt;}
.ya7{bottom:572.971867pt;}
.y26{bottom:582.372400pt;}
.y73{bottom:582.897200pt;}
.ye6{bottom:582.898400pt;}
.y12f{bottom:583.959733pt;}
.y4b{bottom:584.695733pt;}
.y9{bottom:589.092000pt;}
.ya6{bottom:592.299867pt;}
.y10a{bottom:592.498533pt;}
.y12e{bottom:600.493067pt;}
.y25{bottom:602.244400pt;}
.y72{bottom:602.897200pt;}
.ydb{bottom:602.898400pt;}
.y4a{bottom:604.567733pt;}
.y8{bottom:609.092000pt;}
.ya5{bottom:611.627867pt;}
.y109{bottom:613.298533pt;}
.y12d{bottom:617.026400pt;}
.y8a{bottom:618.330267pt;}
.y71{bottom:622.897200pt;}
.ye5{bottom:622.898400pt;}
.y49{bottom:624.439733pt;}
.ya4{bottom:630.955867pt;}
.y108{bottom:634.098533pt;}
.y12c{bottom:639.287733pt;}
.y70{bottom:642.897200pt;}
.yda{bottom:642.898400pt;}
.y48{bottom:644.311733pt;}
.y7{bottom:649.092000pt;}
.ya3{bottom:650.283867pt;}
.y107{bottom:654.898533pt;}
.y6f{bottom:662.897200pt;}
.yd9{bottom:662.898400pt;}
.y47{bottom:664.183733pt;}
.y6{bottom:665.758667pt;}
.ya2{bottom:669.611867pt;}
.y106{bottom:675.698533pt;}
.y12b{bottom:679.021067pt;}
.y6e{bottom:682.897200pt;}
.yd8{bottom:682.898400pt;}
.y46{bottom:684.055733pt;}
.ya1{bottom:688.939867pt;}
.y12a{bottom:692.215733pt;}
.y105{bottom:696.498533pt;}
.y6d{bottom:702.897200pt;}
.yd7{bottom:702.898400pt;}
.y5{bottom:703.212667pt;}
.y45{bottom:703.927733pt;}
.y129{bottom:705.410400pt;}
.ya0{bottom:708.267867pt;}
.y104{bottom:717.298533pt;}
.y128{bottom:718.605067pt;}
.y6c{bottom:722.897200pt;}
.yd6{bottom:722.898400pt;}
.y4{bottom:723.212667pt;}
.y44{bottom:723.799733pt;}
.y9f{bottom:727.595867pt;}
.y127{bottom:731.799733pt;}
.y103{bottom:738.098533pt;}
.y6b{bottom:742.897200pt;}
.yd5{bottom:742.898400pt;}
.y43{bottom:743.671733pt;}
.y126{bottom:744.994400pt;}
.y9e{bottom:746.923867pt;}
.y125{bottom:758.189067pt;}
.y102{bottom:758.898533pt;}
.y6a{bottom:762.897200pt;}
.yd4{bottom:762.898400pt;}
.y42{bottom:763.543733pt;}
.y9d{bottom:766.251867pt;}
.y124{bottom:771.383733pt;}
.y101{bottom:779.698533pt;}
.y69{bottom:782.897200pt;}
.y3{bottom:782.897733pt;}
.yd3{bottom:782.898400pt;}
.y41{bottom:783.415733pt;}
.y123{bottom:784.578400pt;}
.y9c{bottom:785.579867pt;}
.y122{bottom:797.773067pt;}
.y100{bottom:800.498533pt;}
.y68{bottom:802.897200pt;}
.yd2{bottom:802.898400pt;}
.y40{bottom:803.287733pt;}
.y9b{bottom:804.907867pt;}
.y2{bottom:809.564400pt;}
.y121{bottom:810.967733pt;}
.yff{bottom:821.298533pt;}
.y67{bottom:822.897200pt;}
.yd1{bottom:822.898400pt;}
.y3f{bottom:823.159733pt;}
.y120{bottom:824.162400pt;}
.y9a{bottom:824.235867pt;}
.yfe{bottom:842.098533pt;}
.y89{bottom:842.897067pt;}
.y66{bottom:842.897200pt;}
.y24{bottom:842.898400pt;}
.y3e{bottom:843.031733pt;}
.y99{bottom:843.563867pt;}
.h8{height:21.894141pt;}
.ha{height:35.456000pt;}
.h9{height:36.229167pt;}
.h7{height:44.320000pt;}
.h6{height:44.661458pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.h3{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x4{left:78.897600pt;}
.x7{left:92.126000pt;}
.x2{left:100.000000pt;}
.x9{left:105.358000pt;}
.x3{left:113.228400pt;}
.x8{left:126.496000pt;}
.x5{left:138.897600pt;}
.xa{left:160.468400pt;}
.x6{left:253.564267pt;}
.x1{left:564.791600pt;}
}




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