
    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_4e044da735405c08b363ee84.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_ea291f92e3f773bb06801e1f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_bd98b088c4d6d1d68fc9c297.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_39b2aedd969af0a203b22953.woff')format("woff");}.ff4{font-family:ff4;line-height:1.159000;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_e8ac0134b76bd94e54d99cbc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.150000;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_6004870a6367319185ea5126.woff')format("woff");}.ff6{font-family:ff6;line-height:0.674316;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_8d4a083648372c0aa688fc32.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087402;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_c52ad6508f4139032c5180f8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_4237a91fdb7531498668a7d5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.953000;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_0d9f9014c18fd82262103724.woff')format("woff");}.ffa{font-family:ffa;line-height:0.963000;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_323f192a32cd4fd4b1f5c8d8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.909180;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_070889d346405f5e11ba763a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084473;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);}
.v4{vertical-align:-15.840000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v2{vertical-align:31.800000px;}
.ls1{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.056000px;}
.ls3{letter-spacing:1.452000px;}
.ls4{letter-spacing:3.894000px;}
.ls5{letter-spacing:4.488000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-48.000000px;}
.ws0{word-spacing:-24.542400px;}
.ws42{word-spacing:-18.414000px;}
.ws40{word-spacing:-15.576000px;}
.ws43{word-spacing:-4.488000px;}
.ws21{word-spacing:-2.400000px;}
.ws15{word-spacing:-1.536000px;}
.ws41{word-spacing:-1.452000px;}
.ws38{word-spacing:-1.104000px;}
.ws1e{word-spacing:-0.912000px;}
.ws30{word-spacing:-0.480000px;}
.ws3a{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.192000px;}
.ws1b{word-spacing:-0.096000px;}
.ws3e{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.336000px;}
.ws11{word-spacing:0.528000px;}
.ws3f{word-spacing:0.660000px;}
.ws4{word-spacing:0.864000px;}
.ws2a{word-spacing:1.200000px;}
.ws28{word-spacing:1.440000px;}
.ws39{word-spacing:1.584000px;}
.ws1f{word-spacing:1.968000px;}
.ws1c{word-spacing:2.112000px;}
.ws20{word-spacing:2.496000px;}
.ws27{word-spacing:2.976000px;}
.ws25{word-spacing:3.120000px;}
.ws2b{word-spacing:3.360000px;}
.ws2f{word-spacing:3.648000px;}
.ws3d{word-spacing:4.176000px;}
.ws5{word-spacing:4.272000px;}
.ws24{word-spacing:4.368000px;}
.ws2e{word-spacing:4.416000px;}
.ws14{word-spacing:4.944000px;}
.ws29{word-spacing:5.328000px;}
.ws34{word-spacing:5.616000px;}
.ws32{word-spacing:5.952000px;}
.ws17{word-spacing:6.624000px;}
.ws7{word-spacing:6.720000px;}
.ws35{word-spacing:6.912000px;}
.ws2c{word-spacing:6.960000px;}
.ws1d{word-spacing:7.008000px;}
.ws8{word-spacing:7.440000px;}
.ws37{word-spacing:7.872000px;}
.ws22{word-spacing:8.256000px;}
.ws2d{word-spacing:8.592000px;}
.ws9{word-spacing:8.976000px;}
.ws1a{word-spacing:9.168000px;}
.ws12{word-spacing:9.456000px;}
.ws10{word-spacing:10.080000px;}
.ws18{word-spacing:10.128000px;}
.ws3b{word-spacing:10.224000px;}
.ws13{word-spacing:10.608000px;}
.ws26{word-spacing:10.896000px;}
.ws23{word-spacing:11.472000px;}
.ws3c{word-spacing:12.288000px;}
.wsb{word-spacing:12.528000px;}
.ws16{word-spacing:12.816000px;}
.wsa{word-spacing:12.912000px;}
.ws36{word-spacing:14.448000px;}
.ws6{word-spacing:17.040000px;}
.wsd{word-spacing:17.376000px;}
.ws19{word-spacing:18.240000px;}
.wsf{word-spacing:18.528000px;}
.wsc{word-spacing:21.312000px;}
.wse{word-spacing:22.704000px;}
.ws3{word-spacing:32.448000px;}
._16{margin-left:-15.028800px;}
._15{margin-left:-13.688400px;}
._11{margin-left:-5.835000px;}
._d{margin-left:-4.768200px;}
._1{margin-left:-3.552000px;}
._a{margin-left:-2.537400px;}
._0{margin-left:-1.300800px;}
._4{width:1.809600px;}
._6{width:3.330600px;}
._3{width:4.622400px;}
._8{width:5.750400px;}
._9{width:7.662600px;}
._e{width:8.685600px;}
._b{width:9.781200px;}
._c{width:11.292120px;}
._2{width:12.467640px;}
._12{width:13.510440px;}
._5{width:15.919200px;}
._14{width:17.397600px;}
._13{width:18.572400px;}
._7{width:20.413800px;}
._10{width:21.733800px;}
._18{width:23.053800px;}
._19{width:24.545400px;}
._20{width:25.931400px;}
._1c{width:27.324000px;}
._1b{width:28.498800px;}
._1f{width:30.452400px;}
._f{width:31.495200px;}
._21{width:33.224400px;}
._1e{width:34.432200px;}
._22{width:36.036000px;}
._1a{width:38.016000px;}
._17{width:40.009200px;}
._1d{width:42.748200px;}
._24{width:62.119200px;}
._23{width:135.367200px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.840000px;}
.fs3{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.023450px;}
.y116{bottom:127.941450px;}
.y1a0{bottom:129.121500px;}
.y39{bottom:130.428300px;}
.yc8{bottom:130.433550px;}
.y139{bottom:132.441450px;}
.y173{bottom:134.685300px;}
.y146{bottom:134.685450px;}
.yf7{bottom:135.083550px;}
.y152{bottom:135.233550px;}
.y6e{bottom:138.937350px;}
.y198{bottom:139.485600px;}
.y9f{bottom:143.737350px;}
.y38{bottom:144.828300px;}
.y115{bottom:147.441450px;}
.y19f{bottom:148.921500px;}
.yc7{bottom:149.933550px;}
.y138{bottom:152.241450px;}
.y172{bottom:154.185300px;}
.y145{bottom:154.185450px;}
.yf6{bottom:154.883550px;}
.y151{bottom:155.033550px;}
.y6d{bottom:158.437350px;}
.y37{bottom:159.228300px;}
.y197{bottom:159.285600px;}
.y9e{bottom:163.537350px;}
.y114{bottom:166.941450px;}
.y19e{bottom:168.721500px;}
.yc6{bottom:169.433550px;}
.y137{bottom:172.041450px;}
.y171{bottom:173.685300px;}
.y144{bottom:173.685450px;}
.yf5{bottom:174.683550px;}
.y150{bottom:174.833550px;}
.y36{bottom:177.588300px;}
.y6c{bottom:177.937350px;}
.y196{bottom:179.085600px;}
.y9d{bottom:183.337350px;}
.y113{bottom:186.441450px;}
.y19d{bottom:188.521500px;}
.yc5{bottom:188.933550px;}
.y136{bottom:191.841450px;}
.y170{bottom:193.185300px;}
.y143{bottom:193.185450px;}
.yf4{bottom:194.483550px;}
.y14f{bottom:194.633550px;}
.y6b{bottom:197.437350px;}
.y195{bottom:198.885600px;}
.y35{bottom:200.784150px;}
.y9c{bottom:203.137350px;}
.y112{bottom:205.941450px;}
.y19c{bottom:208.321500px;}
.yc4{bottom:208.433550px;}
.y135{bottom:211.641450px;}
.y16f{bottom:212.685300px;}
.y142{bottom:212.685450px;}
.yf3{bottom:214.283550px;}
.y14e{bottom:214.433550px;}
.y34{bottom:215.184150px;}
.y6a{bottom:216.937350px;}
.y194{bottom:218.685450px;}
.y9b{bottom:222.937350px;}
.y111{bottom:225.441450px;}
.yc3{bottom:227.933550px;}
.y19b{bottom:228.121500px;}
.y33{bottom:229.584150px;}
.y134{bottom:231.441450px;}
.y16e{bottom:232.185300px;}
.y141{bottom:232.185450px;}
.yf2{bottom:234.083550px;}
.y14d{bottom:234.233550px;}
.y69{bottom:236.437350px;}
.y193{bottom:238.485600px;}
.y9a{bottom:242.737350px;}
.y32{bottom:243.984150px;}
.y110{bottom:244.941450px;}
.yc2{bottom:247.433550px;}
.y133{bottom:251.241450px;}
.y16d{bottom:251.685300px;}
.y140{bottom:251.685450px;}
.yf1{bottom:253.883550px;}
.y14c{bottom:254.033550px;}
.y68{bottom:255.937350px;}
.y192{bottom:258.285600px;}
.y31{bottom:258.384150px;}
.y199{bottom:260.387100px;}
.y99{bottom:262.537350px;}
.y10f{bottom:264.441450px;}
.yc1{bottom:266.933550px;}
.y132{bottom:271.041450px;}
.y16c{bottom:271.185300px;}
.y13f{bottom:271.185450px;}
.yf0{bottom:273.683550px;}
.y14b{bottom:273.833550px;}
.y67{bottom:275.437350px;}
.y30{bottom:276.744150px;}
.y191{bottom:278.085600px;}
.y98{bottom:282.337350px;}
.y10e{bottom:283.941450px;}
.y19a{bottom:285.503400px;}
.yc0{bottom:286.433550px;}
.y16b{bottom:290.685300px;}
.y13e{bottom:290.685450px;}
.y131{bottom:290.841450px;}
.yef{bottom:293.483550px;}
.y14a{bottom:293.633550px;}
.y66{bottom:294.937350px;}
.y190{bottom:297.885600px;}
.y97{bottom:302.137350px;}
.y10d{bottom:303.441450px;}
.ybf{bottom:305.933550px;}
.y16a{bottom:310.185300px;}
.y13d{bottom:310.185450px;}
.y130{bottom:310.641450px;}
.yee{bottom:313.283550px;}
.y149{bottom:313.433550px;}
.y65{bottom:314.437350px;}
.y18f{bottom:317.685450px;}
.y96{bottom:321.937350px;}
.y10c{bottom:322.941450px;}
.ybe{bottom:325.433550px;}
.y169{bottom:329.685300px;}
.y13c{bottom:329.685450px;}
.y12f{bottom:330.441450px;}
.yed{bottom:333.083550px;}
.y148{bottom:333.233550px;}
.y64{bottom:333.937350px;}
.y18e{bottom:337.485600px;}
.y95{bottom:341.737350px;}
.y10b{bottom:342.441450px;}
.ybd{bottom:344.933550px;}
.y168{bottom:349.185300px;}
.y13b{bottom:349.185450px;}
.y12e{bottom:350.241450px;}
.yec{bottom:352.883550px;}
.y147{bottom:353.033550px;}
.y63{bottom:353.437350px;}
.y18d{bottom:357.285600px;}
.y94{bottom:361.537350px;}
.y10a{bottom:361.941450px;}
.ybc{bottom:364.433550px;}
.y13a{bottom:368.685450px;}
.y12d{bottom:370.041450px;}
.y2a{bottom:371.123400px;}
.yeb{bottom:372.683550px;}
.y62{bottom:372.937500px;}
.y18c{bottom:377.085600px;}
.y93{bottom:381.337350px;}
.y109{bottom:381.441450px;}
.ybb{bottom:383.933550px;}
.y29{bottom:386.123400px;}
.y167{bottom:388.185450px;}
.y12c{bottom:389.841450px;}
.y61{bottom:392.437500px;}
.yea{bottom:392.483550px;}
.y18b{bottom:396.885600px;}
.y108{bottom:400.941450px;}
.y28{bottom:401.123400px;}
.y92{bottom:401.137350px;}
.yba{bottom:403.433550px;}
.y166{bottom:407.685450px;}
.y12b{bottom:409.641450px;}
.y60{bottom:411.937500px;}
.ye9{bottom:412.283550px;}
.y18a{bottom:416.685600px;}
.y107{bottom:420.441450px;}
.y91{bottom:420.937350px;}
.yb9{bottom:422.933550px;}
.y27{bottom:424.627200px;}
.y165{bottom:427.185450px;}
.y12a{bottom:429.441450px;}
.y5f{bottom:431.437500px;}
.ye8{bottom:432.083550px;}
.y189{bottom:436.485600px;}
.y26{bottom:439.627200px;}
.y106{bottom:439.941450px;}
.y90{bottom:440.737350px;}
.yb8{bottom:442.433550px;}
.y164{bottom:446.685450px;}
.y129{bottom:449.241450px;}
.y5e{bottom:450.937500px;}
.ye7{bottom:451.883550px;}
.y25{bottom:454.627200px;}
.y188{bottom:456.285600px;}
.y105{bottom:459.441450px;}
.y8f{bottom:460.537350px;}
.yb7{bottom:461.933550px;}
.y163{bottom:466.185450px;}
.y128{bottom:469.041450px;}
.y24{bottom:469.627200px;}
.y5d{bottom:470.437500px;}
.ye6{bottom:471.683550px;}
.y187{bottom:476.085600px;}
.y104{bottom:478.941450px;}
.y8e{bottom:480.337350px;}
.yb6{bottom:481.433550px;}
.y23{bottom:484.627200px;}
.y162{bottom:485.685450px;}
.y127{bottom:488.841450px;}
.y5c{bottom:489.937500px;}
.ye5{bottom:491.483550px;}
.y186{bottom:495.885600px;}
.y103{bottom:498.441450px;}
.y22{bottom:499.627200px;}
.y8d{bottom:500.137350px;}
.yb5{bottom:500.933550px;}
.y161{bottom:505.185450px;}
.y126{bottom:508.641450px;}
.y5b{bottom:509.437500px;}
.ye4{bottom:511.283550px;}
.y21{bottom:514.627200px;}
.y185{bottom:515.685600px;}
.y102{bottom:517.941450px;}
.y8c{bottom:519.937350px;}
.yb4{bottom:520.433550px;}
.y160{bottom:524.685450px;}
.y125{bottom:528.441450px;}
.y5a{bottom:528.937500px;}
.y20{bottom:529.627200px;}
.ye3{bottom:531.083550px;}
.y184{bottom:535.485600px;}
.y101{bottom:537.441450px;}
.y8b{bottom:539.737350px;}
.y15f{bottom:544.185450px;}
.y1f{bottom:544.627200px;}
.y124{bottom:548.241450px;}
.y59{bottom:548.437500px;}
.ye2{bottom:550.883550px;}
.y183{bottom:555.285600px;}
.y100{bottom:556.941450px;}
.y8a{bottom:559.537350px;}
.y1e{bottom:559.627200px;}
.y15e{bottom:563.685450px;}
.y58{bottom:567.937500px;}
.y123{bottom:568.041450px;}
.ye1{bottom:570.683550px;}
.y1d{bottom:574.627200px;}
.y182{bottom:575.085600px;}
.yff{bottom:576.441450px;}
.y89{bottom:579.337350px;}
.y15d{bottom:583.185450px;}
.y57{bottom:587.437500px;}
.y122{bottom:587.841450px;}
.y1c{bottom:589.627200px;}
.y181{bottom:594.885600px;}
.yfe{bottom:595.941450px;}
.ye0{bottom:598.987500px;}
.y88{bottom:599.137350px;}
.y15c{bottom:602.685450px;}
.y1b{bottom:604.627200px;}
.y56{bottom:606.937500px;}
.y121{bottom:607.641450px;}
.y180{bottom:614.685600px;}
.yfd{bottom:615.441450px;}
.y87{bottom:618.937350px;}
.y1a{bottom:619.627200px;}
.y15b{bottom:622.185450px;}
.y55{bottom:626.437500px;}
.y120{bottom:627.441450px;}
.y17f{bottom:634.485600px;}
.y19{bottom:634.627200px;}
.yfc{bottom:634.941450px;}
.ydf{bottom:638.587500px;}
.y86{bottom:638.737350px;}
.y15a{bottom:641.685450px;}
.y54{bottom:645.937500px;}
.y11f{bottom:647.241450px;}
.y18{bottom:649.627200px;}
.y17e{bottom:654.285600px;}
.yfb{bottom:654.441450px;}
.yde{bottom:658.387500px;}
.y85{bottom:658.537350px;}
.y159{bottom:661.185450px;}
.y17{bottom:664.627200px;}
.y53{bottom:665.437500px;}
.y11e{bottom:667.041450px;}
.yfa{bottom:673.941450px;}
.y17d{bottom:674.085600px;}
.ydd{bottom:678.187500px;}
.y84{bottom:678.337350px;}
.y16{bottom:679.627200px;}
.y158{bottom:680.685450px;}
.y52{bottom:684.937500px;}
.y11d{bottom:686.841450px;}
.yf9{bottom:693.441450px;}
.y17c{bottom:693.885600px;}
.y15{bottom:694.627200px;}
.ydc{bottom:697.987500px;}
.y83{bottom:698.137350px;}
.y157{bottom:700.185450px;}
.y51{bottom:704.437500px;}
.y11c{bottom:706.641450px;}
.y14{bottom:709.627200px;}
.yb3{bottom:712.941450px;}
.y17b{bottom:713.685600px;}
.ydb{bottom:717.787500px;}
.y82{bottom:717.937350px;}
.y156{bottom:719.685450px;}
.y50{bottom:723.937500px;}
.y13{bottom:724.627200px;}
.y11b{bottom:726.441450px;}
.yf8{bottom:732.441450px;}
.y17a{bottom:733.485600px;}
.yda{bottom:737.587500px;}
.y81{bottom:737.737350px;}
.y155{bottom:739.185450px;}
.y12{bottom:739.627200px;}
.y4f{bottom:743.437500px;}
.y11a{bottom:746.241450px;}
.yb2{bottom:751.941450px;}
.y179{bottom:753.285600px;}
.y11{bottom:754.627200px;}
.yd9{bottom:757.387500px;}
.y80{bottom:757.537350px;}
.y154{bottom:758.685450px;}
.y4e{bottom:762.937350px;}
.y119{bottom:766.041450px;}
.y10{bottom:769.627200px;}
.yb1{bottom:771.441450px;}
.y178{bottom:773.085600px;}
.y7f{bottom:777.337350px;}
.y153{bottom:778.185450px;}
.y4d{bottom:782.437350px;}
.yf{bottom:784.627200px;}
.yd8{bottom:785.691450px;}
.y118{bottom:785.841450px;}
.yb0{bottom:790.941450px;}
.y177{bottom:792.885600px;}
.y7e{bottom:797.137350px;}
.ye{bottom:799.627200px;}
.y4c{bottom:801.937350px;}
.y117{bottom:805.641450px;}
.yaf{bottom:810.441450px;}
.y176{bottom:812.685600px;}
.yd{bottom:814.627200px;}
.y7d{bottom:816.937350px;}
.y4b{bottom:821.437350px;}
.yd7{bottom:825.441450px;}
.yc{bottom:829.627200px;}
.yae{bottom:829.941450px;}
.y175{bottom:832.485600px;}
.y7c{bottom:836.737350px;}
.y4a{bottom:840.937350px;}
.yb{bottom:844.627200px;}
.yd6{bottom:845.241450px;}
.yad{bottom:849.441450px;}
.y174{bottom:852.285600px;}
.y7b{bottom:856.537350px;}
.ya{bottom:859.627200px;}
.y49{bottom:860.437350px;}
.yd5{bottom:865.041450px;}
.yac{bottom:868.941450px;}
.y9{bottom:874.627200px;}
.y7a{bottom:876.337350px;}
.y48{bottom:879.937350px;}
.yd4{bottom:884.841450px;}
.yab{bottom:888.441450px;}
.y79{bottom:896.137350px;}
.y47{bottom:899.437350px;}
.yd3{bottom:904.641300px;}
.yaa{bottom:907.941450px;}
.y78{bottom:915.937350px;}
.y46{bottom:918.937350px;}
.yd2{bottom:924.441450px;}
.ya9{bottom:927.441450px;}
.y77{bottom:935.737350px;}
.y45{bottom:938.437350px;}
.y8{bottom:943.513200px;}
.y2f{bottom:943.513350px;}
.yd1{bottom:944.241450px;}
.ya8{bottom:946.941450px;}
.y76{bottom:955.537350px;}
.y44{bottom:957.937350px;}
.yd0{bottom:964.041450px;}
.ya7{bottom:966.441450px;}
.y7{bottom:968.765100px;}
.y2e{bottom:968.765250px;}
.y75{bottom:975.337350px;}
.y43{bottom:977.437350px;}
.ycf{bottom:983.841300px;}
.ya6{bottom:985.941450px;}
.y74{bottom:995.137350px;}
.y42{bottom:996.937350px;}
.yce{bottom:1003.641300px;}
.ya5{bottom:1005.441450px;}
.y73{bottom:1014.937350px;}
.y41{bottom:1016.437350px;}
.y6{bottom:1023.365100px;}
.y2d{bottom:1023.365250px;}
.ycd{bottom:1023.441450px;}
.ya4{bottom:1024.941450px;}
.y72{bottom:1034.737500px;}
.y40{bottom:1035.937350px;}
.y5{bottom:1043.165100px;}
.y2c{bottom:1043.165250px;}
.ycc{bottom:1043.241450px;}
.ya3{bottom:1044.441450px;}
.y71{bottom:1054.537500px;}
.y3f{bottom:1055.437350px;}
.y4{bottom:1062.965100px;}
.y2b{bottom:1062.965400px;}
.ycb{bottom:1063.041450px;}
.ya2{bottom:1063.941450px;}
.y70{bottom:1074.337500px;}
.y3e{bottom:1074.937350px;}
.yca{bottom:1082.841300px;}
.ya1{bottom:1083.441450px;}
.y6f{bottom:1094.137500px;}
.y3d{bottom:1094.437350px;}
.yc9{bottom:1102.641300px;}
.ya0{bottom:1102.941450px;}
.y3{bottom:1120.755750px;}
.y3c{bottom:1122.441450px;}
.y3b{bottom:1167.058200px;}
.y1{bottom:1174.874550px;}
.y3a{bottom:1181.458200px;}
.h9{height:25.878750px;}
.hb{height:33.656250px;}
.hd{height:35.520000px;}
.hc{height:39.960000px;}
.h2{height:40.416000px;}
.ha{height:41.718750px;}
.h3{height:42.480000px;}
.h8{height:42.576000px;}
.he{height:46.148438px;}
.h4{height:50.520000px;}
.h11{height:52.470703px;}
.h6{height:53.640000px;}
.hf{height:57.363281px;}
.h10{height:57.717773px;}
.h5{height:59.004000px;}
.h7{height:62.911200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.486650px;}
.x1a{left:110.945250px;}
.x12{left:114.803100px;}
.x16{left:117.298050px;}
.xa{left:119.430150px;}
.x4{left:124.410900px;}
.x1c{left:131.811000px;}
.x5{left:134.764350px;}
.x9{left:140.689950px;}
.x6{left:148.038450px;}
.x7{left:189.546600px;}
.x8{left:210.197400px;}
.x1{left:323.616900px;}
.x13{left:437.994450px;}
.x2{left:439.376700px;}
.x14{left:457.145700px;}
.x19{left:468.375450px;}
.x10{left:469.842450px;}
.x17{left:473.632350px;}
.xc{left:482.169150px;}
.xb{left:490.419000px;}
.x15{left:499.665300px;}
.xd{left:520.844400px;}
.x18{left:533.493150px;}
.xe{left:540.334050px;}
.xf{left:560.984850px;}
.x11{left:572.395200px;}
.x1b{left:587.762700px;}
@media print{
.v4{vertical-align:-14.080000pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v2{vertical-align:28.266667pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.938667pt;}
.ls3{letter-spacing:1.290667pt;}
.ls4{letter-spacing:3.461333pt;}
.ls5{letter-spacing:3.989333pt;}
.ws1{word-spacing:-42.666667pt;}
.ws0{word-spacing:-21.815467pt;}
.ws42{word-spacing:-16.368000pt;}
.ws40{word-spacing:-13.845333pt;}
.ws43{word-spacing:-3.989333pt;}
.ws21{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.365333pt;}
.ws41{word-spacing:-1.290667pt;}
.ws38{word-spacing:-0.981333pt;}
.ws1e{word-spacing:-0.810667pt;}
.ws30{word-spacing:-0.426667pt;}
.ws3a{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.170667pt;}
.ws1b{word-spacing:-0.085333pt;}
.ws3e{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.298667pt;}
.ws11{word-spacing:0.469333pt;}
.ws3f{word-spacing:0.586667pt;}
.ws4{word-spacing:0.768000pt;}
.ws2a{word-spacing:1.066667pt;}
.ws28{word-spacing:1.280000pt;}
.ws39{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.749333pt;}
.ws1c{word-spacing:1.877333pt;}
.ws20{word-spacing:2.218667pt;}
.ws27{word-spacing:2.645333pt;}
.ws25{word-spacing:2.773333pt;}
.ws2b{word-spacing:2.986667pt;}
.ws2f{word-spacing:3.242667pt;}
.ws3d{word-spacing:3.712000pt;}
.ws5{word-spacing:3.797333pt;}
.ws24{word-spacing:3.882667pt;}
.ws2e{word-spacing:3.925333pt;}
.ws14{word-spacing:4.394667pt;}
.ws29{word-spacing:4.736000pt;}
.ws34{word-spacing:4.992000pt;}
.ws32{word-spacing:5.290667pt;}
.ws17{word-spacing:5.888000pt;}
.ws7{word-spacing:5.973333pt;}
.ws35{word-spacing:6.144000pt;}
.ws2c{word-spacing:6.186667pt;}
.ws1d{word-spacing:6.229333pt;}
.ws8{word-spacing:6.613333pt;}
.ws37{word-spacing:6.997333pt;}
.ws22{word-spacing:7.338667pt;}
.ws2d{word-spacing:7.637333pt;}
.ws9{word-spacing:7.978667pt;}
.ws1a{word-spacing:8.149333pt;}
.ws12{word-spacing:8.405333pt;}
.ws10{word-spacing:8.960000pt;}
.ws18{word-spacing:9.002667pt;}
.ws3b{word-spacing:9.088000pt;}
.ws13{word-spacing:9.429333pt;}
.ws26{word-spacing:9.685333pt;}
.ws23{word-spacing:10.197333pt;}
.ws3c{word-spacing:10.922667pt;}
.wsb{word-spacing:11.136000pt;}
.ws16{word-spacing:11.392000pt;}
.wsa{word-spacing:11.477333pt;}
.ws36{word-spacing:12.842667pt;}
.ws6{word-spacing:15.146667pt;}
.wsd{word-spacing:15.445333pt;}
.ws19{word-spacing:16.213333pt;}
.wsf{word-spacing:16.469333pt;}
.wsc{word-spacing:18.944000pt;}
.wse{word-spacing:20.181333pt;}
.ws3{word-spacing:28.842667pt;}
._16{margin-left:-13.358933pt;}
._15{margin-left:-12.167467pt;}
._11{margin-left:-5.186667pt;}
._d{margin-left:-4.238400pt;}
._1{margin-left:-3.157333pt;}
._a{margin-left:-2.255467pt;}
._0{margin-left:-1.156267pt;}
._4{width:1.608533pt;}
._6{width:2.960533pt;}
._3{width:4.108800pt;}
._8{width:5.111467pt;}
._9{width:6.811200pt;}
._e{width:7.720533pt;}
._b{width:8.694400pt;}
._c{width:10.037440pt;}
._2{width:11.082347pt;}
._12{width:12.009280pt;}
._5{width:14.150400pt;}
._14{width:15.464533pt;}
._13{width:16.508800pt;}
._7{width:18.145600pt;}
._10{width:19.318933pt;}
._18{width:20.492267pt;}
._19{width:21.818133pt;}
._20{width:23.050133pt;}
._1c{width:24.288000pt;}
._1b{width:25.332267pt;}
._1f{width:27.068800pt;}
._f{width:27.995733pt;}
._21{width:29.532800pt;}
._1e{width:30.606400pt;}
._22{width:32.032000pt;}
._1a{width:33.792000pt;}
._17{width:35.563733pt;}
._1d{width:37.998400pt;}
._24{width:55.217067pt;}
._23{width:120.326400pt;}
.fs4{font-size:24.746667pt;}
.fs3{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.243067pt;}
.y116{bottom:113.725733pt;}
.y1a0{bottom:114.774667pt;}
.y39{bottom:115.936267pt;}
.yc8{bottom:115.940933pt;}
.y139{bottom:117.725733pt;}
.y173{bottom:119.720267pt;}
.y146{bottom:119.720400pt;}
.yf7{bottom:120.074267pt;}
.y152{bottom:120.207600pt;}
.y6e{bottom:123.499867pt;}
.y198{bottom:123.987200pt;}
.y9f{bottom:127.766533pt;}
.y38{bottom:128.736267pt;}
.y115{bottom:131.059067pt;}
.y19f{bottom:132.374667pt;}
.yc7{bottom:133.274267pt;}
.y138{bottom:135.325733pt;}
.y172{bottom:137.053600pt;}
.y145{bottom:137.053733pt;}
.yf6{bottom:137.674267pt;}
.y151{bottom:137.807600pt;}
.y6d{bottom:140.833200pt;}
.y37{bottom:141.536267pt;}
.y197{bottom:141.587200pt;}
.y9e{bottom:145.366533pt;}
.y114{bottom:148.392400pt;}
.y19e{bottom:149.974667pt;}
.yc6{bottom:150.607600pt;}
.y137{bottom:152.925733pt;}
.y171{bottom:154.386933pt;}
.y144{bottom:154.387067pt;}
.yf5{bottom:155.274267pt;}
.y150{bottom:155.407600pt;}
.y36{bottom:157.856267pt;}
.y6c{bottom:158.166533pt;}
.y196{bottom:159.187200pt;}
.y9d{bottom:162.966533pt;}
.y113{bottom:165.725733pt;}
.y19d{bottom:167.574667pt;}
.yc5{bottom:167.940933pt;}
.y136{bottom:170.525733pt;}
.y170{bottom:171.720267pt;}
.y143{bottom:171.720400pt;}
.yf4{bottom:172.874267pt;}
.y14f{bottom:173.007600pt;}
.y6b{bottom:175.499867pt;}
.y195{bottom:176.787200pt;}
.y35{bottom:178.474800pt;}
.y9c{bottom:180.566533pt;}
.y112{bottom:183.059067pt;}
.y19c{bottom:185.174667pt;}
.yc4{bottom:185.274267pt;}
.y135{bottom:188.125733pt;}
.y16f{bottom:189.053600pt;}
.y142{bottom:189.053733pt;}
.yf3{bottom:190.474267pt;}
.y14e{bottom:190.607600pt;}
.y34{bottom:191.274800pt;}
.y6a{bottom:192.833200pt;}
.y194{bottom:194.387067pt;}
.y9b{bottom:198.166533pt;}
.y111{bottom:200.392400pt;}
.yc3{bottom:202.607600pt;}
.y19b{bottom:202.774667pt;}
.y33{bottom:204.074800pt;}
.y134{bottom:205.725733pt;}
.y16e{bottom:206.386933pt;}
.y141{bottom:206.387067pt;}
.yf2{bottom:208.074267pt;}
.y14d{bottom:208.207600pt;}
.y69{bottom:210.166533pt;}
.y193{bottom:211.987200pt;}
.y9a{bottom:215.766533pt;}
.y32{bottom:216.874800pt;}
.y110{bottom:217.725733pt;}
.yc2{bottom:219.940933pt;}
.y133{bottom:223.325733pt;}
.y16d{bottom:223.720267pt;}
.y140{bottom:223.720400pt;}
.yf1{bottom:225.674267pt;}
.y14c{bottom:225.807600pt;}
.y68{bottom:227.499867pt;}
.y192{bottom:229.587200pt;}
.y31{bottom:229.674800pt;}
.y199{bottom:231.455200pt;}
.y99{bottom:233.366533pt;}
.y10f{bottom:235.059067pt;}
.yc1{bottom:237.274267pt;}
.y132{bottom:240.925733pt;}
.y16c{bottom:241.053600pt;}
.y13f{bottom:241.053733pt;}
.yf0{bottom:243.274267pt;}
.y14b{bottom:243.407600pt;}
.y67{bottom:244.833200pt;}
.y30{bottom:245.994800pt;}
.y191{bottom:247.187200pt;}
.y98{bottom:250.966533pt;}
.y10e{bottom:252.392400pt;}
.y19a{bottom:253.780800pt;}
.yc0{bottom:254.607600pt;}
.y16b{bottom:258.386933pt;}
.y13e{bottom:258.387067pt;}
.y131{bottom:258.525733pt;}
.yef{bottom:260.874267pt;}
.y14a{bottom:261.007600pt;}
.y66{bottom:262.166533pt;}
.y190{bottom:264.787200pt;}
.y97{bottom:268.566533pt;}
.y10d{bottom:269.725733pt;}
.ybf{bottom:271.940933pt;}
.y16a{bottom:275.720267pt;}
.y13d{bottom:275.720400pt;}
.y130{bottom:276.125733pt;}
.yee{bottom:278.474267pt;}
.y149{bottom:278.607600pt;}
.y65{bottom:279.499867pt;}
.y18f{bottom:282.387067pt;}
.y96{bottom:286.166533pt;}
.y10c{bottom:287.059067pt;}
.ybe{bottom:289.274267pt;}
.y169{bottom:293.053600pt;}
.y13c{bottom:293.053733pt;}
.y12f{bottom:293.725733pt;}
.yed{bottom:296.074267pt;}
.y148{bottom:296.207600pt;}
.y64{bottom:296.833200pt;}
.y18e{bottom:299.987200pt;}
.y95{bottom:303.766533pt;}
.y10b{bottom:304.392400pt;}
.ybd{bottom:306.607600pt;}
.y168{bottom:310.386933pt;}
.y13b{bottom:310.387067pt;}
.y12e{bottom:311.325733pt;}
.yec{bottom:313.674267pt;}
.y147{bottom:313.807600pt;}
.y63{bottom:314.166533pt;}
.y18d{bottom:317.587200pt;}
.y94{bottom:321.366533pt;}
.y10a{bottom:321.725733pt;}
.ybc{bottom:323.940933pt;}
.y13a{bottom:327.720400pt;}
.y12d{bottom:328.925733pt;}
.y2a{bottom:329.887467pt;}
.yeb{bottom:331.274267pt;}
.y62{bottom:331.500000pt;}
.y18c{bottom:335.187200pt;}
.y93{bottom:338.966533pt;}
.y109{bottom:339.059067pt;}
.ybb{bottom:341.274267pt;}
.y29{bottom:343.220800pt;}
.y167{bottom:345.053733pt;}
.y12c{bottom:346.525733pt;}
.y61{bottom:348.833333pt;}
.yea{bottom:348.874267pt;}
.y18b{bottom:352.787200pt;}
.y108{bottom:356.392400pt;}
.y28{bottom:356.554133pt;}
.y92{bottom:356.566533pt;}
.yba{bottom:358.607600pt;}
.y166{bottom:362.387067pt;}
.y12b{bottom:364.125733pt;}
.y60{bottom:366.166667pt;}
.ye9{bottom:366.474267pt;}
.y18a{bottom:370.387200pt;}
.y107{bottom:373.725733pt;}
.y91{bottom:374.166533pt;}
.yb9{bottom:375.940933pt;}
.y27{bottom:377.446400pt;}
.y165{bottom:379.720400pt;}
.y12a{bottom:381.725733pt;}
.y5f{bottom:383.500000pt;}
.ye8{bottom:384.074267pt;}
.y189{bottom:387.987200pt;}
.y26{bottom:390.779733pt;}
.y106{bottom:391.059067pt;}
.y90{bottom:391.766533pt;}
.yb8{bottom:393.274267pt;}
.y164{bottom:397.053733pt;}
.y129{bottom:399.325733pt;}
.y5e{bottom:400.833333pt;}
.ye7{bottom:401.674267pt;}
.y25{bottom:404.113067pt;}
.y188{bottom:405.587200pt;}
.y105{bottom:408.392400pt;}
.y8f{bottom:409.366533pt;}
.yb7{bottom:410.607600pt;}
.y163{bottom:414.387067pt;}
.y128{bottom:416.925733pt;}
.y24{bottom:417.446400pt;}
.y5d{bottom:418.166667pt;}
.ye6{bottom:419.274267pt;}
.y187{bottom:423.187200pt;}
.y104{bottom:425.725733pt;}
.y8e{bottom:426.966533pt;}
.yb6{bottom:427.940933pt;}
.y23{bottom:430.779733pt;}
.y162{bottom:431.720400pt;}
.y127{bottom:434.525733pt;}
.y5c{bottom:435.500000pt;}
.ye5{bottom:436.874267pt;}
.y186{bottom:440.787200pt;}
.y103{bottom:443.059067pt;}
.y22{bottom:444.113067pt;}
.y8d{bottom:444.566533pt;}
.yb5{bottom:445.274267pt;}
.y161{bottom:449.053733pt;}
.y126{bottom:452.125733pt;}
.y5b{bottom:452.833333pt;}
.ye4{bottom:454.474267pt;}
.y21{bottom:457.446400pt;}
.y185{bottom:458.387200pt;}
.y102{bottom:460.392400pt;}
.y8c{bottom:462.166533pt;}
.yb4{bottom:462.607600pt;}
.y160{bottom:466.387067pt;}
.y125{bottom:469.725733pt;}
.y5a{bottom:470.166667pt;}
.y20{bottom:470.779733pt;}
.ye3{bottom:472.074267pt;}
.y184{bottom:475.987200pt;}
.y101{bottom:477.725733pt;}
.y8b{bottom:479.766533pt;}
.y15f{bottom:483.720400pt;}
.y1f{bottom:484.113067pt;}
.y124{bottom:487.325733pt;}
.y59{bottom:487.500000pt;}
.ye2{bottom:489.674267pt;}
.y183{bottom:493.587200pt;}
.y100{bottom:495.059067pt;}
.y8a{bottom:497.366533pt;}
.y1e{bottom:497.446400pt;}
.y15e{bottom:501.053733pt;}
.y58{bottom:504.833333pt;}
.y123{bottom:504.925733pt;}
.ye1{bottom:507.274267pt;}
.y1d{bottom:510.779733pt;}
.y182{bottom:511.187200pt;}
.yff{bottom:512.392400pt;}
.y89{bottom:514.966533pt;}
.y15d{bottom:518.387067pt;}
.y57{bottom:522.166667pt;}
.y122{bottom:522.525733pt;}
.y1c{bottom:524.113067pt;}
.y181{bottom:528.787200pt;}
.yfe{bottom:529.725733pt;}
.ye0{bottom:532.433333pt;}
.y88{bottom:532.566533pt;}
.y15c{bottom:535.720400pt;}
.y1b{bottom:537.446400pt;}
.y56{bottom:539.500000pt;}
.y121{bottom:540.125733pt;}
.y180{bottom:546.387200pt;}
.yfd{bottom:547.059067pt;}
.y87{bottom:550.166533pt;}
.y1a{bottom:550.779733pt;}
.y15b{bottom:553.053733pt;}
.y55{bottom:556.833333pt;}
.y120{bottom:557.725733pt;}
.y17f{bottom:563.987200pt;}
.y19{bottom:564.113067pt;}
.yfc{bottom:564.392400pt;}
.ydf{bottom:567.633333pt;}
.y86{bottom:567.766533pt;}
.y15a{bottom:570.387067pt;}
.y54{bottom:574.166667pt;}
.y11f{bottom:575.325733pt;}
.y18{bottom:577.446400pt;}
.y17e{bottom:581.587200pt;}
.yfb{bottom:581.725733pt;}
.yde{bottom:585.233333pt;}
.y85{bottom:585.366533pt;}
.y159{bottom:587.720400pt;}
.y17{bottom:590.779733pt;}
.y53{bottom:591.500000pt;}
.y11e{bottom:592.925733pt;}
.yfa{bottom:599.059067pt;}
.y17d{bottom:599.187200pt;}
.ydd{bottom:602.833333pt;}
.y84{bottom:602.966533pt;}
.y16{bottom:604.113067pt;}
.y158{bottom:605.053733pt;}
.y52{bottom:608.833333pt;}
.y11d{bottom:610.525733pt;}
.yf9{bottom:616.392400pt;}
.y17c{bottom:616.787200pt;}
.y15{bottom:617.446400pt;}
.ydc{bottom:620.433333pt;}
.y83{bottom:620.566533pt;}
.y157{bottom:622.387067pt;}
.y51{bottom:626.166667pt;}
.y11c{bottom:628.125733pt;}
.y14{bottom:630.779733pt;}
.yb3{bottom:633.725733pt;}
.y17b{bottom:634.387200pt;}
.ydb{bottom:638.033333pt;}
.y82{bottom:638.166533pt;}
.y156{bottom:639.720400pt;}
.y50{bottom:643.500000pt;}
.y13{bottom:644.113067pt;}
.y11b{bottom:645.725733pt;}
.yf8{bottom:651.059067pt;}
.y17a{bottom:651.987200pt;}
.yda{bottom:655.633333pt;}
.y81{bottom:655.766533pt;}
.y155{bottom:657.053733pt;}
.y12{bottom:657.446400pt;}
.y4f{bottom:660.833333pt;}
.y11a{bottom:663.325733pt;}
.yb2{bottom:668.392400pt;}
.y179{bottom:669.587200pt;}
.y11{bottom:670.779733pt;}
.yd9{bottom:673.233333pt;}
.y80{bottom:673.366533pt;}
.y154{bottom:674.387067pt;}
.y4e{bottom:678.166533pt;}
.y119{bottom:680.925733pt;}
.y10{bottom:684.113067pt;}
.yb1{bottom:685.725733pt;}
.y178{bottom:687.187200pt;}
.y7f{bottom:690.966533pt;}
.y153{bottom:691.720400pt;}
.y4d{bottom:695.499867pt;}
.yf{bottom:697.446400pt;}
.yd8{bottom:698.392400pt;}
.y118{bottom:698.525733pt;}
.yb0{bottom:703.059067pt;}
.y177{bottom:704.787200pt;}
.y7e{bottom:708.566533pt;}
.ye{bottom:710.779733pt;}
.y4c{bottom:712.833200pt;}
.y117{bottom:716.125733pt;}
.yaf{bottom:720.392400pt;}
.y176{bottom:722.387200pt;}
.yd{bottom:724.113067pt;}
.y7d{bottom:726.166533pt;}
.y4b{bottom:730.166533pt;}
.yd7{bottom:733.725733pt;}
.yc{bottom:737.446400pt;}
.yae{bottom:737.725733pt;}
.y175{bottom:739.987200pt;}
.y7c{bottom:743.766533pt;}
.y4a{bottom:747.499867pt;}
.yb{bottom:750.779733pt;}
.yd6{bottom:751.325733pt;}
.yad{bottom:755.059067pt;}
.y174{bottom:757.587200pt;}
.y7b{bottom:761.366533pt;}
.ya{bottom:764.113067pt;}
.y49{bottom:764.833200pt;}
.yd5{bottom:768.925733pt;}
.yac{bottom:772.392400pt;}
.y9{bottom:777.446400pt;}
.y7a{bottom:778.966533pt;}
.y48{bottom:782.166533pt;}
.yd4{bottom:786.525733pt;}
.yab{bottom:789.725733pt;}
.y79{bottom:796.566533pt;}
.y47{bottom:799.499867pt;}
.yd3{bottom:804.125600pt;}
.yaa{bottom:807.059067pt;}
.y78{bottom:814.166533pt;}
.y46{bottom:816.833200pt;}
.yd2{bottom:821.725733pt;}
.ya9{bottom:824.392400pt;}
.y77{bottom:831.766533pt;}
.y45{bottom:834.166533pt;}
.y8{bottom:838.678400pt;}
.y2f{bottom:838.678533pt;}
.yd1{bottom:839.325733pt;}
.ya8{bottom:841.725733pt;}
.y76{bottom:849.366533pt;}
.y44{bottom:851.499867pt;}
.yd0{bottom:856.925733pt;}
.ya7{bottom:859.059067pt;}
.y7{bottom:861.124533pt;}
.y2e{bottom:861.124667pt;}
.y75{bottom:866.966533pt;}
.y43{bottom:868.833200pt;}
.ycf{bottom:874.525600pt;}
.ya6{bottom:876.392400pt;}
.y74{bottom:884.566533pt;}
.y42{bottom:886.166533pt;}
.yce{bottom:892.125600pt;}
.ya5{bottom:893.725733pt;}
.y73{bottom:902.166533pt;}
.y41{bottom:903.499867pt;}
.y6{bottom:909.657867pt;}
.y2d{bottom:909.658000pt;}
.ycd{bottom:909.725733pt;}
.ya4{bottom:911.059067pt;}
.y72{bottom:919.766667pt;}
.y40{bottom:920.833200pt;}
.y5{bottom:927.257867pt;}
.y2c{bottom:927.258000pt;}
.ycc{bottom:927.325733pt;}
.ya3{bottom:928.392400pt;}
.y71{bottom:937.366667pt;}
.y3f{bottom:938.166533pt;}
.y4{bottom:944.857867pt;}
.y2b{bottom:944.858133pt;}
.ycb{bottom:944.925733pt;}
.ya2{bottom:945.725733pt;}
.y70{bottom:954.966667pt;}
.y3e{bottom:955.499867pt;}
.yca{bottom:962.525600pt;}
.ya1{bottom:963.059067pt;}
.y6f{bottom:972.566667pt;}
.y3d{bottom:972.833200pt;}
.yc9{bottom:980.125600pt;}
.ya0{bottom:980.392400pt;}
.y3{bottom:996.227333pt;}
.y3c{bottom:997.725733pt;}
.y3b{bottom:1037.385067pt;}
.y1{bottom:1044.332933pt;}
.y3a{bottom:1050.185067pt;}
.h9{height:23.003333pt;}
.hb{height:29.916667pt;}
.hd{height:31.573333pt;}
.hc{height:35.520000pt;}
.h2{height:35.925333pt;}
.ha{height:37.083333pt;}
.h3{height:37.760000pt;}
.h8{height:37.845333pt;}
.he{height:41.020833pt;}
.h4{height:44.906667pt;}
.h11{height:46.640625pt;}
.h6{height:47.680000pt;}
.hf{height:50.989583pt;}
.h10{height:51.304688pt;}
.h5{height:52.448000pt;}
.h7{height:55.921067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.654800pt;}
.x1a{left:98.618000pt;}
.x12{left:102.047200pt;}
.x16{left:104.264933pt;}
.xa{left:106.160133pt;}
.x4{left:110.587467pt;}
.x1c{left:117.165333pt;}
.x5{left:119.790533pt;}
.x9{left:125.057733pt;}
.x6{left:131.589733pt;}
.x7{left:168.485867pt;}
.x8{left:186.842133pt;}
.x1{left:287.659467pt;}
.x13{left:389.328400pt;}
.x2{left:390.557067pt;}
.x14{left:406.351733pt;}
.x19{left:416.333733pt;}
.x10{left:417.637733pt;}
.x17{left:421.006533pt;}
.xc{left:428.594800pt;}
.xb{left:435.928000pt;}
.x15{left:444.146933pt;}
.xd{left:462.972800pt;}
.x18{left:474.216133pt;}
.xe{left:480.296933pt;}
.xf{left:498.653200pt;}
.x11{left:508.795733pt;}
.x1b{left:522.455733pt;}
}




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