
    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_61424897c476c18fc9f63925.woff')format("woff");}.ff1{font-family:ff1;line-height:1.038000;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_141b64ab6e1003210a7a113d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_b0b0d64c876424c371f3e5e4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_cf88b5c840a0b6043ce89b88.woff')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_21387c493e05481ac0ab1b37.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_8e9c6771644ff3ce594ce878.woff')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_1e4e4758ba846f43f528e7b8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133301;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_7d6caa62f2afa7d01f7da9de.woff')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_026694298d519039374a4166.woff')format("woff");}.ff9{font-family:ff9;line-height:1.173340;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_e9228a8264a0644d6e4c32e6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f52fb32e0ccfff3cb2214257.woff')format("woff");}.ffb{font-family:ffb;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f1a7617f3c8e55b673d59860.woff')format("woff");}.ffc{font-family:ffc;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.088000px;}
.ls6{letter-spacing:-7.200000px;}
.ls7{letter-spacing:-7.056000px;}
.ls4{letter-spacing:-3.168000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.936000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-20.160000px;}
.ws4{word-spacing:-19.944000px;}
.ws13{word-spacing:-3.744000px;}
.ws1d{word-spacing:-3.312000px;}
.ws11{word-spacing:-3.240000px;}
.wsd{word-spacing:-3.168000px;}
.ws28{word-spacing:-3.096000px;}
.ws1c{word-spacing:-3.024000px;}
.ws7{word-spacing:-2.736000px;}
.ws1a{word-spacing:-1.872000px;}
.ws6{word-spacing:-1.800000px;}
.ws29{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.008000px;}
.ws20{word-spacing:-0.936000px;}
.ws14{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.648000px;}
.ws8{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.072000px;}
.ws2c{word-spacing:0.144000px;}
.wsb{word-spacing:0.360000px;}
.ws21{word-spacing:0.648000px;}
.ws17{word-spacing:0.792000px;}
.ws16{word-spacing:0.936000px;}
.ws2d{word-spacing:1.152000px;}
.ws9{word-spacing:1.440000px;}
.ws19{word-spacing:1.944000px;}
.ws25{word-spacing:2.016000px;}
.ws26{word-spacing:2.088000px;}
.ws2b{word-spacing:2.304000px;}
.ws15{word-spacing:2.376000px;}
.ws24{word-spacing:2.520000px;}
.ws22{word-spacing:2.664000px;}
.ws2a{word-spacing:2.952000px;}
.wse{word-spacing:3.024000px;}
.wsa{word-spacing:3.096000px;}
.ws12{word-spacing:3.168000px;}
.ws10{word-spacing:3.312000px;}
.ws27{word-spacing:5.040000px;}
.ws23{word-spacing:6.120000px;}
.ws5{word-spacing:6.408000px;}
.ws2e{word-spacing:6.984000px;}
.ws1f{word-spacing:7.056000px;}
.ws1e{word-spacing:7.200000px;}
.ws31{word-spacing:13.392000px;}
.ws30{word-spacing:14.040000px;}
.ws3{word-spacing:4402.320000px;}
._1f{margin-left:-20.001600px;}
._30{margin-left:-17.640000px;}
._12{margin-left:-15.840000px;}
._4{margin-left:-6.494400px;}
._1a{margin-left:-5.083200px;}
._a{margin-left:-3.672000px;}
._b{margin-left:-2.592000px;}
._3{margin-left:-1.360800px;}
._2{width:1.029600px;}
._0{width:2.124000px;}
._1{width:4.082400px;}
._14{width:5.191200px;}
._13{width:6.328800px;}
._15{width:7.480800px;}
._e{width:8.784000px;}
._16{width:10.209600px;}
._17{width:11.239200px;}
._22{width:12.240000px;}
._31{width:13.320000px;}
._2d{width:14.400000px;}
._19{width:16.992000px;}
._d{width:23.184000px;}
._2f{width:24.998400px;}
._18{width:34.272000px;}
._c{width:37.584000px;}
._27{width:49.896000px;}
._2c{width:51.336000px;}
._1c{width:54.864000px;}
._10{width:64.800000px;}
._25{width:68.160000px;}
._2e{width:70.080000px;}
._24{width:81.600000px;}
._f{width:84.960000px;}
._26{width:95.040000px;}
._28{width:100.908000px;}
._2a{width:102.002400px;}
._2b{width:103.032000px;}
._8{width:105.120000px;}
._11{width:106.560000px;}
._21{width:108.480000px;}
._7{width:115.200000px;}
._29{width:117.432000px;}
._9{width:125.280000px;}
._6{width:135.360000px;}
._20{width:152.352000px;}
._5{width:155.520000px;}
._1d{width:169.632000px;}
._1b{width:175.392000px;}
._1e{width:186.912000px;}
._23{width:2015.436600px;}
.fc7{color:rgb(39,91,155);}
.fc4{color:rgb(34,115,214);}
.fc3{color:transparent;}
.fc6{color:rgb(124,76,212);}
.fc2{color:rgb(31,25,79);}
.fc5{color:rgb(214,69,154);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y112{bottom:21.967350px;}
.y12f{bottom:29.812200px;}
.yd8{bottom:59.303850px;}
.y2b{bottom:77.074050px;}
.y153{bottom:137.150250px;}
.yd2{bottom:141.973200px;}
.y142{bottom:144.410550px;}
.y144{bottom:149.687400px;}
.y151{bottom:150.999600px;}
.yab{bottom:151.125450px;}
.y149{bottom:151.791450px;}
.y140{bottom:152.475600px;}
.y173{bottom:154.006350px;}
.y194{bottom:156.429900px;}
.y46{bottom:156.525450px;}
.y111{bottom:156.705150px;}
.y7c{bottom:158.598450px;}
.y199{bottom:160.192950px;}
.y143{bottom:162.544950px;}
.yd1{bottom:163.573200px;}
.y131{bottom:163.989150px;}
.y180{bottom:164.823450px;}
.y16d{bottom:165.525450px;}
.yfb{bottom:168.225600px;}
.y132{bottom:170.186700px;}
.yaa{bottom:172.725450px;}
.y148{bottom:173.391450px;}
.y13f{bottom:174.075600px;}
.y45{bottom:178.125450px;}
.y110{bottom:178.305150px;}
.y7b{bottom:180.198450px;}
.y106{bottom:181.112550px;}
.y198{bottom:181.792950px;}
.yd7{bottom:185.173200px;}
.ya3{bottom:185.325450px;}
.y17f{bottom:186.423450px;}
.yfa{bottom:189.825600px;}
.y1be{bottom:192.525450px;}
.y150{bottom:194.199600px;}
.y69{bottom:194.325450px;}
.y128{bottom:195.686250px;}
.y172{bottom:197.206350px;}
.y193{bottom:199.629900px;}
.y10f{bottom:199.905150px;}
.y7a{bottom:201.798450px;}
.y105{bottom:202.712550px;}
.y197{bottom:203.392950px;}
.yd0{bottom:206.773200px;}
.ya2{bottom:206.925450px;}
.y17e{bottom:208.023450px;}
.y16c{bottom:208.725450px;}
.y119{bottom:211.425600px;}
.y130{bottom:213.518550px;}
.y14f{bottom:215.799600px;}
.y68{bottom:215.925450px;}
.y147{bottom:216.591450px;}
.y13e{bottom:217.275600px;}
.y127{bottom:217.286250px;}
.y171{bottom:218.806350px;}
.y1bd{bottom:219.525450px;}
.y192{bottom:221.229900px;}
.y44{bottom:221.325450px;}
.y10e{bottom:221.505150px;}
.y104{bottom:224.312550px;}
.ycf{bottom:228.373200px;}
.ya1{bottom:228.525450px;}
.y17d{bottom:229.623450px;}
.y16b{bottom:230.325450px;}
.yf9{bottom:233.025600px;}
.y14e{bottom:237.399600px;}
.y67{bottom:237.525450px;}
.ye{bottom:237.674100px;}
.y146{bottom:238.191450px;}
.y13d{bottom:238.875600px;}
.y126{bottom:238.886250px;}
.y170{bottom:240.406350px;}
.y196{bottom:241.641000px;}
.y191{bottom:242.829900px;}
.y43{bottom:242.925450px;}
.y10d{bottom:243.105150px;}
.y79{bottom:244.998450px;}
.y103{bottom:245.912550px;}
.y1bc{bottom:246.525450px;}
.y108{bottom:247.777650px;}
.yce{bottom:249.973200px;}
.ya0{bottom:250.125450px;}
.yf8{bottom:254.625600px;}
.y66{bottom:259.125450px;}
.y145{bottom:259.791450px;}
.y133{bottom:260.006100px;}
.y13c{bottom:260.475600px;}
.y125{bottom:260.486250px;}
.y16f{bottom:262.006350px;}
.yd{bottom:262.874100px;}
.y190{bottom:264.429900px;}
.y42{bottom:264.525450px;}
.y10c{bottom:264.705150px;}
.y78{bottom:266.598450px;}
.yd6{bottom:271.573200px;}
.y9f{bottom:271.725450px;}
.y17c{bottom:272.823450px;}
.y16a{bottom:273.525450px;}
.yf7{bottom:276.225600px;}
.y152{bottom:279.781200px;}
.y65{bottom:280.725450px;}
.y124{bottom:282.086250px;}
.y10b{bottom:286.305150px;}
.y77{bottom:288.198450px;}
.ycd{bottom:293.173200px;}
.y9e{bottom:293.325450px;}
.y17b{bottom:294.423450px;}
.y174{bottom:294.644250px;}
.y169{bottom:295.125450px;}
.y14a{bottom:295.264200px;}
.y16e{bottom:296.727750px;}
.yf6{bottom:297.825600px;}
.y1bb{bottom:300.525450px;}
.y64{bottom:302.325450px;}
.y13b{bottom:303.675600px;}
.y123{bottom:303.686250px;}
.y18f{bottom:307.629900px;}
.y76{bottom:309.798450px;}
.yc{bottom:313.274100px;}
.ycc{bottom:314.773200px;}
.y9d{bottom:314.925450px;}
.y17a{bottom:316.023450px;}
.y168{bottom:316.725450px;}
.y102{bottom:317.607450px;}
.y118{bottom:319.425600px;}
.ya9{bottom:323.925450px;}
.y13a{bottom:325.275600px;}
.y122{bottom:325.286250px;}
.y1ba{bottom:327.525450px;}
.y10a{bottom:328.929450px;}
.y18e{bottom:329.229900px;}
.y41{bottom:329.325450px;}
.y75{bottom:331.398450px;}
.ycb{bottom:336.373200px;}
.y167{bottom:338.325450px;}
.yb{bottom:338.474100px;}
.yf5{bottom:341.025600px;}
.y63{bottom:345.525450px;}
.y139{bottom:346.875600px;}
.y18d{bottom:350.829900px;}
.y40{bottom:350.925450px;}
.y74{bottom:352.998450px;}
.y1b9{bottom:354.525450px;}
.yca{bottom:357.973200px;}
.y9c{bottom:358.125450px;}
.y179{bottom:359.223450px;}
.y166{bottom:359.925450px;}
.yf4{bottom:362.625600px;}
.y62{bottom:367.125450px;}
.y138{bottom:368.475600px;}
.y121{bottom:368.486250px;}
.y18c{bottom:372.429900px;}
.y2a{bottom:372.525450px;}
.y73{bottom:374.598450px;}
.yc9{bottom:379.573200px;}
.y9b{bottom:379.725450px;}
.y178{bottom:380.823450px;}
.y1b8{bottom:381.525450px;}
.yf3{bottom:384.225600px;}
.y61{bottom:388.725450px;}
.ya{bottom:388.874100px;}
.y120{bottom:390.086250px;}
.y18b{bottom:394.029900px;}
.y3f{bottom:394.125450px;}
.yd5{bottom:401.173200px;}
.y9a{bottom:401.325450px;}
.y177{bottom:402.423450px;}
.y165{bottom:403.125450px;}
.y117{bottom:405.825600px;}
.y29{bottom:408.525450px;}
.y60{bottom:410.325450px;}
.y137{bottom:411.675600px;}
.y11f{bottom:411.686250px;}
.y9{bottom:414.074100px;}
.y3e{bottom:415.725450px;}
.y72{bottom:417.798450px;}
.yc8{bottom:422.773200px;}
.y176{bottom:424.023450px;}
.y164{bottom:424.725450px;}
.yf2{bottom:427.425600px;}
.ya8{bottom:431.925450px;}
.y136{bottom:433.275600px;}
.y11e{bottom:433.286250px;}
.y1b7{bottom:435.525450px;}
.y18a{bottom:437.229900px;}
.y71{bottom:439.398450px;}
.yc7{bottom:444.373200px;}
.y28{bottom:444.525450px;}
.y163{bottom:446.325450px;}
.yf1{bottom:449.025600px;}
.y5f{bottom:453.525450px;}
.y135{bottom:454.875600px;}
.y11d{bottom:454.886250px;}
.y189{bottom:458.829900px;}
.y3d{bottom:458.925450px;}
.y175{bottom:460.515300px;}
.y70{bottom:460.998450px;}
.y1b6{bottom:462.525450px;}
.yc6{bottom:465.973200px;}
.y99{bottom:466.125450px;}
.yf0{bottom:470.625600px;}
.y5e{bottom:475.125450px;}
.y134{bottom:476.475600px;}
.y11c{bottom:476.486250px;}
.y188{bottom:480.429900px;}
.y27{bottom:480.525450px;}
.y6f{bottom:482.598450px;}
.yc5{bottom:487.573200px;}
.y12d{bottom:487.700850px;}
.y98{bottom:487.725450px;}
.y162{bottom:489.525450px;}
.y116{bottom:492.225600px;}
.ya7{bottom:496.725450px;}
.y187{bottom:502.029900px;}
.y3c{bottom:502.125450px;}
.y6e{bottom:504.198450px;}
.yd4{bottom:509.173200px;}
.y12c{bottom:509.300850px;}
.y97{bottom:509.325450px;}
.y161{bottom:511.125450px;}
.y113{bottom:511.311450px;}
.yef{bottom:513.825600px;}
.y26{bottom:516.525450px;}
.y141{bottom:516.556200px;}
.yad{bottom:518.325450px;}
.y186{bottom:523.629900px;}
.y3b{bottom:523.725450px;}
.y6d{bottom:525.798450px;}
.y11b{bottom:526.405050px;}
.yc4{bottom:530.773200px;}
.y12b{bottom:530.900850px;}
.y96{bottom:530.925450px;}
.y160{bottom:532.725450px;}
.yee{bottom:535.425600px;}
.y1a4{bottom:538.125450px;}
.y5d{bottom:539.925450px;}
.y1b5{bottom:543.525450px;}
.y185{bottom:545.229900px;}
.y6c{bottom:547.398450px;}
.yc3{bottom:552.373200px;}
.y12a{bottom:552.500850px;}
.y25{bottom:552.525450px;}
.y15f{bottom:554.325450px;}
.yed{bottom:557.025600px;}
.y1a3{bottom:559.725450px;}
.y5c{bottom:561.525450px;}
.y3a{bottom:566.925450px;}
.y6b{bottom:568.998450px;}
.y1b4{bottom:570.525450px;}
.yc2{bottom:573.973200px;}
.y129{bottom:574.100850px;}
.y95{bottom:574.125450px;}
.y15e{bottom:575.925450px;}
.yec{bottom:578.625600px;}
.y1a2{bottom:581.325450px;}
.y5b{bottom:583.125450px;}
.y184{bottom:588.429900px;}
.y24{bottom:588.525450px;}
.y6a{bottom:590.598450px;}
.yc1{bottom:595.573200px;}
.y94{bottom:595.725450px;}
.y15d{bottom:597.525450px;}
.y115{bottom:600.225600px;}
.y86{bottom:600.421350px;}
.y1a1{bottom:602.925450px;}
.y12e{bottom:603.163650px;}
.y5a{bottom:604.725450px;}
.y183{bottom:610.029900px;}
.y39{bottom:610.125450px;}
.y19a{bottom:612.331950px;}
.y93{bottom:617.325450px;}
.y15c{bottom:619.125450px;}
.yeb{bottom:621.825600px;}
.y85{bottom:622.021350px;}
.y23{bottom:624.525450px;}
.y59{bottom:626.325450px;}
.y182{bottom:631.629900px;}
.y38{bottom:631.725450px;}
.y7f{bottom:634.054200px;}
.yc0{bottom:638.773200px;}
.y92{bottom:638.925450px;}
.y15b{bottom:640.725450px;}
.yea{bottom:643.425600px;}
.y84{bottom:643.621350px;}
.y1a0{bottom:646.125450px;}
.yac{bottom:647.925450px;}
.y1b3{bottom:651.525450px;}
.y7e{bottom:652.054200px;}
.y181{bottom:653.229900px;}
.ybf{bottom:660.373200px;}
.y22{bottom:660.525450px;}
.y15a{bottom:662.325450px;}
.ye9{bottom:665.025600px;}
.y19f{bottom:667.725450px;}
.y58{bottom:669.525450px;}
.y7d{bottom:670.054200px;}
.y37{bottom:674.925450px;}
.y1b2{bottom:678.525450px;}
.ybe{bottom:681.973200px;}
.y91{bottom:682.125450px;}
.y159{bottom:683.925450px;}
.ye8{bottom:686.625600px;}
.y8{bottom:690.098100px;}
.y57{bottom:691.125450px;}
.y195{bottom:694.958250px;}
.y21{bottom:696.525450px;}
.y83{bottom:698.505150px;}
.ybd{bottom:703.573200px;}
.y90{bottom:703.725450px;}
.y1b1{bottom:705.525450px;}
.ye7{bottom:708.225600px;}
.y19e{bottom:710.925450px;}
.y56{bottom:712.725450px;}
.y82{bottom:716.505150px;}
.y36{bottom:718.125450px;}
.yd3{bottom:725.173200px;}
.y158{bottom:727.125450px;}
.y114{bottom:729.825600px;}
.y20{bottom:732.525450px;}
.y55{bottom:734.325450px;}
.y35{bottom:739.725450px;}
.ybc{bottom:746.773200px;}
.y8f{bottom:746.925450px;}
.y157{bottom:748.725450px;}
.ye6{bottom:751.425600px;}
.y19d{bottom:754.125450px;}
.y54{bottom:755.925450px;}
.y1b0{bottom:759.525450px;}
.y34{bottom:761.325450px;}
.ybb{bottom:768.373200px;}
.y1f{bottom:768.525450px;}
.y156{bottom:770.325450px;}
.ye5{bottom:773.025600px;}
.y19c{bottom:775.725450px;}
.ya6{bottom:777.525450px;}
.y33{bottom:782.925450px;}
.y1af{bottom:786.525450px;}
.yba{bottom:789.973200px;}
.y8e{bottom:790.125450px;}
.y155{bottom:791.925450px;}
.ye4{bottom:794.625600px;}
.y18{bottom:797.325450px;}
.y53{bottom:799.125450px;}
.y1e{bottom:804.525450px;}
.yb9{bottom:811.573200px;}
.y8d{bottom:811.725450px;}
.y1ae{bottom:813.525450px;}
.ye3{bottom:816.225600px;}
.y17{bottom:818.925450px;}
.y7{bottom:819.109800px;}
.y52{bottom:820.725450px;}
.y32{bottom:826.125450px;}
.yb8{bottom:833.173200px;}
.y8c{bottom:833.325450px;}
.y154{bottom:835.125600px;}
.y107{bottom:837.825600px;}
.y1d{bottom:840.525450px;}
.y51{bottom:842.325450px;}
.y31{bottom:847.725450px;}
.yb7{bottom:854.773200px;}
.y1c3{bottom:858.525450px;}
.ye2{bottom:859.425600px;}
.y16{bottom:862.125450px;}
.y50{bottom:863.925450px;}
.y1ad{bottom:867.525450px;}
.y30{bottom:869.325450px;}
.y3{bottom:869.684700px;}
.y1c{bottom:876.525450px;}
.ye1{bottom:881.025600px;}
.y15{bottom:883.725450px;}
.y6{bottom:883.909800px;}
.ya5{bottom:885.525450px;}
.y1ac{bottom:894.525450px;}
.yb6{bottom:897.973200px;}
.y8b{bottom:898.125450px;}
.ye0{bottom:902.625600px;}
.y19b{bottom:905.325450px;}
.y4f{bottom:907.125450px;}
.y14d{bottom:907.125600px;}
.y1b{bottom:912.525450px;}
.yb5{bottom:919.573200px;}
.y8a{bottom:919.725450px;}
.y1ab{bottom:921.525450px;}
.y2{bottom:922.359450px;}
.ydf{bottom:924.225600px;}
.y14{bottom:926.925450px;}
.y4e{bottom:928.725450px;}
.y14c{bottom:928.725600px;}
.y2f{bottom:934.125450px;}
.y1c2{bottom:939.525450px;}
.yb4{bottom:941.173200px;}
.y89{bottom:941.325450px;}
.yde{bottom:945.825600px;}
.y13{bottom:948.525450px;}
.y5{bottom:948.709800px;}
.y4d{bottom:950.325450px;}
.y14b{bottom:950.325600px;}
.y2e{bottom:955.725450px;}
.yb3{bottom:962.773200px;}
.y88{bottom:962.925450px;}
.y1{bottom:965.559450px;}
.y1c1{bottom:966.525450px;}
.y109{bottom:967.425600px;}
.y12{bottom:970.125450px;}
.ya4{bottom:971.925450px;}
.y101{bottom:971.925600px;}
.y1aa{bottom:975.525450px;}
.y2d{bottom:977.325450px;}
.y4{bottom:981.109800px;}
.yb2{bottom:984.373200px;}
.y1a{bottom:984.525450px;}
.ydd{bottom:989.025600px;}
.y4c{bottom:993.525450px;}
.y100{bottom:993.525600px;}
.y2c{bottom:998.925450px;}
.y1a9{bottom:1002.525450px;}
.yb1{bottom:1005.973200px;}
.ydc{bottom:1010.625600px;}
.y11{bottom:1013.325450px;}
.y4b{bottom:1015.125450px;}
.yff{bottom:1015.125600px;}
.y19{bottom:1020.525450px;}
.y87{bottom:1027.725450px;}
.y1a8{bottom:1029.525450px;}
.ydb{bottom:1032.225600px;}
.y10{bottom:1034.925450px;}
.y4a{bottom:1036.725450px;}
.yfe{bottom:1036.725600px;}
.y1c0{bottom:1047.525450px;}
.yb0{bottom:1049.173200px;}
.yda{bottom:1053.825600px;}
.y49{bottom:1058.325450px;}
.y11a{bottom:1058.325600px;}
.y1a7{bottom:1065.146400px;}
.yaf{bottom:1070.773200px;}
.y1bf{bottom:1074.525450px;}
.y48{bottom:1079.925450px;}
.yfd{bottom:1079.925600px;}
.y1a6{bottom:1086.746400px;}
.y81{bottom:1087.738650px;}
.yae{bottom:1092.373200px;}
.yf{bottom:1092.525450px;}
.yd9{bottom:1097.025450px;}
.y47{bottom:1101.525450px;}
.yfc{bottom:1101.525600px;}
.y1a5{bottom:1108.346400px;}
.y80{bottom:1109.338650px;}
.ha{height:46.816406px;}
.hd{height:56.179688px;}
.h9{height:57.919922px;}
.h5{height:65.542969px;}
.h7{height:66.621094px;}
.h8{height:69.503906px;}
.h6{height:81.087891px;}
.h4{height:84.269531px;}
.hc{height:90.904406px;}
.hb{height:92.671875px;}
.h3{height:115.839844px;}
.h2{height:132.192000px;}
.h0{height:1262.877000px;}
.h1{height:1263.000000px;}
.w1{width:1121.250000px;}
.w0{width:1121.584500px;}
.w4{width:2243.169000px;}
.w2{width:2243.175000px;}
.w3{width:2243.250000px;}
.x0{left:0.000000px;}
.x17{left:19.856700px;}
.x1b{left:79.256700px;}
.x1c{left:89.291400px;}
.x11{left:117.524400px;}
.x19{left:153.963750px;}
.x18{left:160.044150px;}
.x26{left:171.524400px;}
.x15{left:202.563750px;}
.x12{left:230.733150px;}
.x1d{left:233.198250px;}
.x21{left:245.083500px;}
.x1{left:257.921100px;}
.x2{left:286.433100px;}
.x22{left:287.599500px;}
.x3{left:341.102850px;}
.x10{left:552.391200px;}
.x13{left:1237.021350px;}
.xe{left:1239.108750px;}
.x1a{left:1275.548100px;}
.x14{left:1281.628350px;}
.x28{left:1294.358250px;}
.x29{left:1295.915100px;}
.x16{left:1297.143750px;}
.x4{left:1319.010150px;}
.x1e{left:1320.958950px;}
.xf{left:1324.140750px;}
.x24{left:1344.286950px;}
.x27{left:1357.993650px;}
.x1f{left:1370.856000px;}
.x23{left:1409.187450px;}
.x20{left:1413.390000px;}
.x25{left:1439.281050px;}
.x8{left:1447.177350px;}
.xc{left:1506.124350px;}
.x7{left:1540.815150px;}
.x9{left:1544.428350px;}
.xb{left:1546.885350px;}
.x6{left:1559.688150px;}
.xa{left:1573.177350px;}
.xd{left:1600.393350px;}
.x5{left:1631.049150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.189333pt;}
.ls6{letter-spacing:-6.400000pt;}
.ls7{letter-spacing:-6.272000pt;}
.ls4{letter-spacing:-2.816000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.832000pt;}
.ws1{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws13{word-spacing:-3.328000pt;}
.ws1d{word-spacing:-2.944000pt;}
.ws11{word-spacing:-2.880000pt;}
.wsd{word-spacing:-2.816000pt;}
.ws28{word-spacing:-2.752000pt;}
.ws1c{word-spacing:-2.688000pt;}
.ws7{word-spacing:-2.432000pt;}
.ws1a{word-spacing:-1.664000pt;}
.ws6{word-spacing:-1.600000pt;}
.ws29{word-spacing:-1.152000pt;}
.wsc{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.896000pt;}
.ws20{word-spacing:-0.832000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws8{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.064000pt;}
.ws2c{word-spacing:0.128000pt;}
.wsb{word-spacing:0.320000pt;}
.ws21{word-spacing:0.576000pt;}
.ws17{word-spacing:0.704000pt;}
.ws16{word-spacing:0.832000pt;}
.ws2d{word-spacing:1.024000pt;}
.ws9{word-spacing:1.280000pt;}
.ws19{word-spacing:1.728000pt;}
.ws25{word-spacing:1.792000pt;}
.ws26{word-spacing:1.856000pt;}
.ws2b{word-spacing:2.048000pt;}
.ws15{word-spacing:2.112000pt;}
.ws24{word-spacing:2.240000pt;}
.ws22{word-spacing:2.368000pt;}
.ws2a{word-spacing:2.624000pt;}
.wse{word-spacing:2.688000pt;}
.wsa{word-spacing:2.752000pt;}
.ws12{word-spacing:2.816000pt;}
.ws10{word-spacing:2.944000pt;}
.ws27{word-spacing:4.480000pt;}
.ws23{word-spacing:5.440000pt;}
.ws5{word-spacing:5.696000pt;}
.ws2e{word-spacing:6.208000pt;}
.ws1f{word-spacing:6.272000pt;}
.ws1e{word-spacing:6.400000pt;}
.ws31{word-spacing:11.904000pt;}
.ws30{word-spacing:12.480000pt;}
.ws3{word-spacing:3913.173333pt;}
._1f{margin-left:-17.779200pt;}
._30{margin-left:-15.680000pt;}
._12{margin-left:-14.080000pt;}
._4{margin-left:-5.772800pt;}
._1a{margin-left:-4.518400pt;}
._a{margin-left:-3.264000pt;}
._b{margin-left:-2.304000pt;}
._3{margin-left:-1.209600pt;}
._2{width:0.915200pt;}
._0{width:1.888000pt;}
._1{width:3.628800pt;}
._14{width:4.614400pt;}
._13{width:5.625600pt;}
._15{width:6.649600pt;}
._e{width:7.808000pt;}
._16{width:9.075200pt;}
._17{width:9.990400pt;}
._22{width:10.880000pt;}
._31{width:11.840000pt;}
._2d{width:12.800000pt;}
._19{width:15.104000pt;}
._d{width:20.608000pt;}
._2f{width:22.220800pt;}
._18{width:30.464000pt;}
._c{width:33.408000pt;}
._27{width:44.352000pt;}
._2c{width:45.632000pt;}
._1c{width:48.768000pt;}
._10{width:57.600000pt;}
._25{width:60.586667pt;}
._2e{width:62.293333pt;}
._24{width:72.533333pt;}
._f{width:75.520000pt;}
._26{width:84.480000pt;}
._28{width:89.696000pt;}
._2a{width:90.668800pt;}
._2b{width:91.584000pt;}
._8{width:93.440000pt;}
._11{width:94.720000pt;}
._21{width:96.426667pt;}
._7{width:102.400000pt;}
._29{width:104.384000pt;}
._9{width:111.360000pt;}
._6{width:120.320000pt;}
._20{width:135.424000pt;}
._5{width:138.240000pt;}
._1d{width:150.784000pt;}
._1b{width:155.904000pt;}
._1e{width:166.144000pt;}
._23{width:1791.499200pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:19.526533pt;}
.y12f{bottom:26.499733pt;}
.yd8{bottom:52.714533pt;}
.y2b{bottom:68.510267pt;}
.y153{bottom:121.911333pt;}
.yd2{bottom:126.198400pt;}
.y142{bottom:128.364933pt;}
.y144{bottom:133.055467pt;}
.y151{bottom:134.221867pt;}
.yab{bottom:134.333733pt;}
.y149{bottom:134.925733pt;}
.y140{bottom:135.533867pt;}
.y173{bottom:136.894533pt;}
.y194{bottom:139.048800pt;}
.y46{bottom:139.133733pt;}
.y111{bottom:139.293467pt;}
.y7c{bottom:140.976400pt;}
.y199{bottom:142.393733pt;}
.y143{bottom:144.484400pt;}
.yd1{bottom:145.398400pt;}
.y131{bottom:145.768133pt;}
.y180{bottom:146.509733pt;}
.y16d{bottom:147.133733pt;}
.yfb{bottom:149.533867pt;}
.y132{bottom:151.277067pt;}
.yaa{bottom:153.533733pt;}
.y148{bottom:154.125733pt;}
.y13f{bottom:154.733867pt;}
.y45{bottom:158.333733pt;}
.y110{bottom:158.493467pt;}
.y7b{bottom:160.176400pt;}
.y106{bottom:160.988933pt;}
.y198{bottom:161.593733pt;}
.yd7{bottom:164.598400pt;}
.ya3{bottom:164.733733pt;}
.y17f{bottom:165.709733pt;}
.yfa{bottom:168.733867pt;}
.y1be{bottom:171.133733pt;}
.y150{bottom:172.621867pt;}
.y69{bottom:172.733733pt;}
.y128{bottom:173.943333pt;}
.y172{bottom:175.294533pt;}
.y193{bottom:177.448800pt;}
.y10f{bottom:177.693467pt;}
.y7a{bottom:179.376400pt;}
.y105{bottom:180.188933pt;}
.y197{bottom:180.793733pt;}
.yd0{bottom:183.798400pt;}
.ya2{bottom:183.933733pt;}
.y17e{bottom:184.909733pt;}
.y16c{bottom:185.533733pt;}
.y119{bottom:187.933867pt;}
.y130{bottom:189.794267pt;}
.y14f{bottom:191.821867pt;}
.y68{bottom:191.933733pt;}
.y147{bottom:192.525733pt;}
.y13e{bottom:193.133867pt;}
.y127{bottom:193.143333pt;}
.y171{bottom:194.494533pt;}
.y1bd{bottom:195.133733pt;}
.y192{bottom:196.648800pt;}
.y44{bottom:196.733733pt;}
.y10e{bottom:196.893467pt;}
.y104{bottom:199.388933pt;}
.ycf{bottom:202.998400pt;}
.ya1{bottom:203.133733pt;}
.y17d{bottom:204.109733pt;}
.y16b{bottom:204.733733pt;}
.yf9{bottom:207.133867pt;}
.y14e{bottom:211.021867pt;}
.y67{bottom:211.133733pt;}
.ye{bottom:211.265867pt;}
.y146{bottom:211.725733pt;}
.y13d{bottom:212.333867pt;}
.y126{bottom:212.343333pt;}
.y170{bottom:213.694533pt;}
.y196{bottom:214.792000pt;}
.y191{bottom:215.848800pt;}
.y43{bottom:215.933733pt;}
.y10d{bottom:216.093467pt;}
.y79{bottom:217.776400pt;}
.y103{bottom:218.588933pt;}
.y1bc{bottom:219.133733pt;}
.y108{bottom:220.246800pt;}
.yce{bottom:222.198400pt;}
.ya0{bottom:222.333733pt;}
.yf8{bottom:226.333867pt;}
.y66{bottom:230.333733pt;}
.y145{bottom:230.925733pt;}
.y133{bottom:231.116533pt;}
.y13c{bottom:231.533867pt;}
.y125{bottom:231.543333pt;}
.y16f{bottom:232.894533pt;}
.yd{bottom:233.665867pt;}
.y190{bottom:235.048800pt;}
.y42{bottom:235.133733pt;}
.y10c{bottom:235.293467pt;}
.y78{bottom:236.976400pt;}
.yd6{bottom:241.398400pt;}
.y9f{bottom:241.533733pt;}
.y17c{bottom:242.509733pt;}
.y16a{bottom:243.133733pt;}
.yf7{bottom:245.533867pt;}
.y152{bottom:248.694400pt;}
.y65{bottom:249.533733pt;}
.y124{bottom:250.743333pt;}
.y10b{bottom:254.493467pt;}
.y77{bottom:256.176400pt;}
.ycd{bottom:260.598400pt;}
.y9e{bottom:260.733733pt;}
.y17b{bottom:261.709733pt;}
.y174{bottom:261.906000pt;}
.y169{bottom:262.333733pt;}
.y14a{bottom:262.457067pt;}
.y16e{bottom:263.758000pt;}
.yf6{bottom:264.733867pt;}
.y1bb{bottom:267.133733pt;}
.y64{bottom:268.733733pt;}
.y13b{bottom:269.933867pt;}
.y123{bottom:269.943333pt;}
.y18f{bottom:273.448800pt;}
.y76{bottom:275.376400pt;}
.yc{bottom:278.465867pt;}
.ycc{bottom:279.798400pt;}
.y9d{bottom:279.933733pt;}
.y17a{bottom:280.909733pt;}
.y168{bottom:281.533733pt;}
.y102{bottom:282.317733pt;}
.y118{bottom:283.933867pt;}
.ya9{bottom:287.933733pt;}
.y13a{bottom:289.133867pt;}
.y122{bottom:289.143333pt;}
.y1ba{bottom:291.133733pt;}
.y10a{bottom:292.381733pt;}
.y18e{bottom:292.648800pt;}
.y41{bottom:292.733733pt;}
.y75{bottom:294.576400pt;}
.ycb{bottom:298.998400pt;}
.y167{bottom:300.733733pt;}
.yb{bottom:300.865867pt;}
.yf5{bottom:303.133867pt;}
.y63{bottom:307.133733pt;}
.y139{bottom:308.333867pt;}
.y18d{bottom:311.848800pt;}
.y40{bottom:311.933733pt;}
.y74{bottom:313.776400pt;}
.y1b9{bottom:315.133733pt;}
.yca{bottom:318.198400pt;}
.y9c{bottom:318.333733pt;}
.y179{bottom:319.309733pt;}
.y166{bottom:319.933733pt;}
.yf4{bottom:322.333867pt;}
.y62{bottom:326.333733pt;}
.y138{bottom:327.533867pt;}
.y121{bottom:327.543333pt;}
.y18c{bottom:331.048800pt;}
.y2a{bottom:331.133733pt;}
.y73{bottom:332.976400pt;}
.yc9{bottom:337.398400pt;}
.y9b{bottom:337.533733pt;}
.y178{bottom:338.509733pt;}
.y1b8{bottom:339.133733pt;}
.yf3{bottom:341.533867pt;}
.y61{bottom:345.533733pt;}
.ya{bottom:345.665867pt;}
.y120{bottom:346.743333pt;}
.y18b{bottom:350.248800pt;}
.y3f{bottom:350.333733pt;}
.yd5{bottom:356.598400pt;}
.y9a{bottom:356.733733pt;}
.y177{bottom:357.709733pt;}
.y165{bottom:358.333733pt;}
.y117{bottom:360.733867pt;}
.y29{bottom:363.133733pt;}
.y60{bottom:364.733733pt;}
.y137{bottom:365.933867pt;}
.y11f{bottom:365.943333pt;}
.y9{bottom:368.065867pt;}
.y3e{bottom:369.533733pt;}
.y72{bottom:371.376400pt;}
.yc8{bottom:375.798400pt;}
.y176{bottom:376.909733pt;}
.y164{bottom:377.533733pt;}
.yf2{bottom:379.933867pt;}
.ya8{bottom:383.933733pt;}
.y136{bottom:385.133867pt;}
.y11e{bottom:385.143333pt;}
.y1b7{bottom:387.133733pt;}
.y18a{bottom:388.648800pt;}
.y71{bottom:390.576400pt;}
.yc7{bottom:394.998400pt;}
.y28{bottom:395.133733pt;}
.y163{bottom:396.733733pt;}
.yf1{bottom:399.133867pt;}
.y5f{bottom:403.133733pt;}
.y135{bottom:404.333867pt;}
.y11d{bottom:404.343333pt;}
.y189{bottom:407.848800pt;}
.y3d{bottom:407.933733pt;}
.y175{bottom:409.346933pt;}
.y70{bottom:409.776400pt;}
.y1b6{bottom:411.133733pt;}
.yc6{bottom:414.198400pt;}
.y99{bottom:414.333733pt;}
.yf0{bottom:418.333867pt;}
.y5e{bottom:422.333733pt;}
.y134{bottom:423.533867pt;}
.y11c{bottom:423.543333pt;}
.y188{bottom:427.048800pt;}
.y27{bottom:427.133733pt;}
.y6f{bottom:428.976400pt;}
.yc5{bottom:433.398400pt;}
.y12d{bottom:433.511867pt;}
.y98{bottom:433.533733pt;}
.y162{bottom:435.133733pt;}
.y116{bottom:437.533867pt;}
.ya7{bottom:441.533733pt;}
.y187{bottom:446.248800pt;}
.y3c{bottom:446.333733pt;}
.y6e{bottom:448.176400pt;}
.yd4{bottom:452.598400pt;}
.y12c{bottom:452.711867pt;}
.y97{bottom:452.733733pt;}
.y161{bottom:454.333733pt;}
.y113{bottom:454.499067pt;}
.yef{bottom:456.733867pt;}
.y26{bottom:459.133733pt;}
.y141{bottom:459.161067pt;}
.yad{bottom:460.733733pt;}
.y186{bottom:465.448800pt;}
.y3b{bottom:465.533733pt;}
.y6d{bottom:467.376400pt;}
.y11b{bottom:467.915600pt;}
.yc4{bottom:471.798400pt;}
.y12b{bottom:471.911867pt;}
.y96{bottom:471.933733pt;}
.y160{bottom:473.533733pt;}
.yee{bottom:475.933867pt;}
.y1a4{bottom:478.333733pt;}
.y5d{bottom:479.933733pt;}
.y1b5{bottom:483.133733pt;}
.y185{bottom:484.648800pt;}
.y6c{bottom:486.576400pt;}
.yc3{bottom:490.998400pt;}
.y12a{bottom:491.111867pt;}
.y25{bottom:491.133733pt;}
.y15f{bottom:492.733733pt;}
.yed{bottom:495.133867pt;}
.y1a3{bottom:497.533733pt;}
.y5c{bottom:499.133733pt;}
.y3a{bottom:503.933733pt;}
.y6b{bottom:505.776400pt;}
.y1b4{bottom:507.133733pt;}
.yc2{bottom:510.198400pt;}
.y129{bottom:510.311867pt;}
.y95{bottom:510.333733pt;}
.y15e{bottom:511.933733pt;}
.yec{bottom:514.333867pt;}
.y1a2{bottom:516.733733pt;}
.y5b{bottom:518.333733pt;}
.y184{bottom:523.048800pt;}
.y24{bottom:523.133733pt;}
.y6a{bottom:524.976400pt;}
.yc1{bottom:529.398400pt;}
.y94{bottom:529.533733pt;}
.y15d{bottom:531.133733pt;}
.y115{bottom:533.533867pt;}
.y86{bottom:533.707867pt;}
.y1a1{bottom:535.933733pt;}
.y12e{bottom:536.145467pt;}
.y5a{bottom:537.533733pt;}
.y183{bottom:542.248800pt;}
.y39{bottom:542.333733pt;}
.y19a{bottom:544.295067pt;}
.y93{bottom:548.733733pt;}
.y15c{bottom:550.333733pt;}
.yeb{bottom:552.733867pt;}
.y85{bottom:552.907867pt;}
.y23{bottom:555.133733pt;}
.y59{bottom:556.733733pt;}
.y182{bottom:561.448800pt;}
.y38{bottom:561.533733pt;}
.y7f{bottom:563.603733pt;}
.yc0{bottom:567.798400pt;}
.y92{bottom:567.933733pt;}
.y15b{bottom:569.533733pt;}
.yea{bottom:571.933867pt;}
.y84{bottom:572.107867pt;}
.y1a0{bottom:574.333733pt;}
.yac{bottom:575.933733pt;}
.y1b3{bottom:579.133733pt;}
.y7e{bottom:579.603733pt;}
.y181{bottom:580.648800pt;}
.ybf{bottom:586.998400pt;}
.y22{bottom:587.133733pt;}
.y15a{bottom:588.733733pt;}
.ye9{bottom:591.133867pt;}
.y19f{bottom:593.533733pt;}
.y58{bottom:595.133733pt;}
.y7d{bottom:595.603733pt;}
.y37{bottom:599.933733pt;}
.y1b2{bottom:603.133733pt;}
.ybe{bottom:606.198400pt;}
.y91{bottom:606.333733pt;}
.y159{bottom:607.933733pt;}
.ye8{bottom:610.333867pt;}
.y8{bottom:613.420533pt;}
.y57{bottom:614.333733pt;}
.y195{bottom:617.740667pt;}
.y21{bottom:619.133733pt;}
.y83{bottom:620.893467pt;}
.ybd{bottom:625.398400pt;}
.y90{bottom:625.533733pt;}
.y1b1{bottom:627.133733pt;}
.ye7{bottom:629.533867pt;}
.y19e{bottom:631.933733pt;}
.y56{bottom:633.533733pt;}
.y82{bottom:636.893467pt;}
.y36{bottom:638.333733pt;}
.yd3{bottom:644.598400pt;}
.y158{bottom:646.333733pt;}
.y114{bottom:648.733867pt;}
.y20{bottom:651.133733pt;}
.y55{bottom:652.733733pt;}
.y35{bottom:657.533733pt;}
.ybc{bottom:663.798400pt;}
.y8f{bottom:663.933733pt;}
.y157{bottom:665.533733pt;}
.ye6{bottom:667.933867pt;}
.y19d{bottom:670.333733pt;}
.y54{bottom:671.933733pt;}
.y1b0{bottom:675.133733pt;}
.y34{bottom:676.733733pt;}
.ybb{bottom:682.998400pt;}
.y1f{bottom:683.133733pt;}
.y156{bottom:684.733733pt;}
.ye5{bottom:687.133867pt;}
.y19c{bottom:689.533733pt;}
.ya6{bottom:691.133733pt;}
.y33{bottom:695.933733pt;}
.y1af{bottom:699.133733pt;}
.yba{bottom:702.198400pt;}
.y8e{bottom:702.333733pt;}
.y155{bottom:703.933733pt;}
.ye4{bottom:706.333867pt;}
.y18{bottom:708.733733pt;}
.y53{bottom:710.333733pt;}
.y1e{bottom:715.133733pt;}
.yb9{bottom:721.398400pt;}
.y8d{bottom:721.533733pt;}
.y1ae{bottom:723.133733pt;}
.ye3{bottom:725.533867pt;}
.y17{bottom:727.933733pt;}
.y7{bottom:728.097600pt;}
.y52{bottom:729.533733pt;}
.y32{bottom:734.333733pt;}
.yb8{bottom:740.598400pt;}
.y8c{bottom:740.733733pt;}
.y154{bottom:742.333867pt;}
.y107{bottom:744.733867pt;}
.y1d{bottom:747.133733pt;}
.y51{bottom:748.733733pt;}
.y31{bottom:753.533733pt;}
.yb7{bottom:759.798400pt;}
.y1c3{bottom:763.133733pt;}
.ye2{bottom:763.933867pt;}
.y16{bottom:766.333733pt;}
.y50{bottom:767.933733pt;}
.y1ad{bottom:771.133733pt;}
.y30{bottom:772.733733pt;}
.y3{bottom:773.053067pt;}
.y1c{bottom:779.133733pt;}
.ye1{bottom:783.133867pt;}
.y15{bottom:785.533733pt;}
.y6{bottom:785.697600pt;}
.ya5{bottom:787.133733pt;}
.y1ac{bottom:795.133733pt;}
.yb6{bottom:798.198400pt;}
.y8b{bottom:798.333733pt;}
.ye0{bottom:802.333867pt;}
.y19b{bottom:804.733733pt;}
.y4f{bottom:806.333733pt;}
.y14d{bottom:806.333867pt;}
.y1b{bottom:811.133733pt;}
.yb5{bottom:817.398400pt;}
.y8a{bottom:817.533733pt;}
.y1ab{bottom:819.133733pt;}
.y2{bottom:819.875067pt;}
.ydf{bottom:821.533867pt;}
.y14{bottom:823.933733pt;}
.y4e{bottom:825.533733pt;}
.y14c{bottom:825.533867pt;}
.y2f{bottom:830.333733pt;}
.y1c2{bottom:835.133733pt;}
.yb4{bottom:836.598400pt;}
.y89{bottom:836.733733pt;}
.yde{bottom:840.733867pt;}
.y13{bottom:843.133733pt;}
.y5{bottom:843.297600pt;}
.y4d{bottom:844.733733pt;}
.y14b{bottom:844.733867pt;}
.y2e{bottom:849.533733pt;}
.yb3{bottom:855.798400pt;}
.y88{bottom:855.933733pt;}
.y1{bottom:858.275067pt;}
.y1c1{bottom:859.133733pt;}
.y109{bottom:859.933867pt;}
.y12{bottom:862.333733pt;}
.ya4{bottom:863.933733pt;}
.y101{bottom:863.933867pt;}
.y1aa{bottom:867.133733pt;}
.y2d{bottom:868.733733pt;}
.y4{bottom:872.097600pt;}
.yb2{bottom:874.998400pt;}
.y1a{bottom:875.133733pt;}
.ydd{bottom:879.133867pt;}
.y4c{bottom:883.133733pt;}
.y100{bottom:883.133867pt;}
.y2c{bottom:887.933733pt;}
.y1a9{bottom:891.133733pt;}
.yb1{bottom:894.198400pt;}
.ydc{bottom:898.333867pt;}
.y11{bottom:900.733733pt;}
.y4b{bottom:902.333733pt;}
.yff{bottom:902.333867pt;}
.y19{bottom:907.133733pt;}
.y87{bottom:913.533733pt;}
.y1a8{bottom:915.133733pt;}
.ydb{bottom:917.533867pt;}
.y10{bottom:919.933733pt;}
.y4a{bottom:921.533733pt;}
.yfe{bottom:921.533867pt;}
.y1c0{bottom:931.133733pt;}
.yb0{bottom:932.598400pt;}
.yda{bottom:936.733867pt;}
.y49{bottom:940.733733pt;}
.y11a{bottom:940.733867pt;}
.y1a7{bottom:946.796800pt;}
.yaf{bottom:951.798400pt;}
.y1bf{bottom:955.133733pt;}
.y48{bottom:959.933733pt;}
.yfd{bottom:959.933867pt;}
.y1a6{bottom:965.996800pt;}
.y81{bottom:966.878800pt;}
.yae{bottom:970.998400pt;}
.yf{bottom:971.133733pt;}
.yd9{bottom:975.133733pt;}
.y47{bottom:979.133733pt;}
.yfc{bottom:979.133867pt;}
.y1a5{bottom:985.196800pt;}
.y80{bottom:986.078800pt;}
.ha{height:41.614583pt;}
.hd{height:49.937500pt;}
.h9{height:51.484375pt;}
.h5{height:58.260417pt;}
.h7{height:59.218750pt;}
.h8{height:61.781250pt;}
.h6{height:72.078125pt;}
.h4{height:74.906250pt;}
.hc{height:80.803917pt;}
.hb{height:82.375000pt;}
.h3{height:102.968750pt;}
.h2{height:117.504000pt;}
.h0{height:1122.557333pt;}
.h1{height:1122.666667pt;}
.w1{width:996.666667pt;}
.w0{width:996.964000pt;}
.w4{width:1993.928000pt;}
.w2{width:1993.933333pt;}
.w3{width:1994.000000pt;}
.x0{left:0.000000pt;}
.x17{left:17.650400pt;}
.x1b{left:70.450400pt;}
.x1c{left:79.370133pt;}
.x11{left:104.466133pt;}
.x19{left:136.856667pt;}
.x18{left:142.261467pt;}
.x26{left:152.466133pt;}
.x15{left:180.056667pt;}
.x12{left:205.096133pt;}
.x1d{left:207.287333pt;}
.x21{left:217.852000pt;}
.x1{left:229.263200pt;}
.x2{left:254.607200pt;}
.x22{left:255.644000pt;}
.x3{left:303.202533pt;}
.x10{left:491.014400pt;}
.x13{left:1099.574533pt;}
.xe{left:1101.430000pt;}
.x1a{left:1133.820533pt;}
.x14{left:1139.225200pt;}
.x28{left:1150.540667pt;}
.x29{left:1151.924533pt;}
.x16{left:1153.016667pt;}
.x4{left:1172.453467pt;}
.x1e{left:1174.185733pt;}
.xf{left:1177.014000pt;}
.x24{left:1194.921733pt;}
.x27{left:1207.105467pt;}
.x1f{left:1218.538667pt;}
.x23{left:1252.611067pt;}
.x20{left:1256.346667pt;}
.x25{left:1279.360933pt;}
.x8{left:1286.379867pt;}
.xc{left:1338.777200pt;}
.x7{left:1369.613467pt;}
.x9{left:1372.825200pt;}
.xb{left:1375.009200pt;}
.x6{left:1386.389467pt;}
.xa{left:1398.379867pt;}
.xd{left:1422.571867pt;}
.x5{left:1449.821467pt;}
}




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