
    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_144555fbe91d899c681d4b3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_7788a660a3251aaa0b698a9d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_996c41b46dccfe11453aaf6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_7cb4f715e2be7788755db851.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v3{vertical-align:21.978000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls4{letter-spacing:0.019800px;}
.ls3{letter-spacing:21.847188px;}
.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;}
}
.ws5{word-spacing:-14.539800px;}
.ws1{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws4{word-spacing:-11.880000px;}
.ws3{word-spacing:-8.465160px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:4.481400px;}
._4{margin-left:-10.810800px;}
._d{margin-left:-9.151800px;}
._22{margin-left:-7.546200px;}
._3{margin-left:-6.528600px;}
._1e{margin-left:-5.270400px;}
._0{margin-left:-4.246200px;}
._2{margin-left:-2.790900px;}
._1{margin-left:-1.335600px;}
._c{width:1.046400px;}
._5{width:2.060400px;}
._6{width:3.193200px;}
._e{width:4.738800px;}
._8{width:6.666000px;}
._9{width:7.840800px;}
._15{width:9.295200px;}
._1b{width:10.582200px;}
._1a{width:12.064800px;}
._a{width:13.516800px;}
._16{width:15.800400px;}
._17{width:17.001600px;}
._b{width:18.275400px;}
._11{width:19.320600px;}
._10{width:20.321400px;}
._14{width:21.483000px;}
._7{width:22.558800px;}
._23{width:23.621400px;}
._f{width:24.670800px;}
._18{width:26.426400px;}
._19{width:27.495600px;}
._1d{width:29.238000px;}
._1f{width:31.059600px;}
._25{width:33.052800px;}
._20{width:36.434400px;}
._21{width:37.591200px;}
._12{width:39.989400px;}
._13{width:41.029800px;}
._1c{width:45.533400px;}
._24{width:52.008600px;}
.fc4{color:rgb(24,24,23);}
.fc3{color:rgb(0,29,53);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs7{font-size:38.478000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:210.472500px;}
.y12f{bottom:244.488000px;}
.y4f{bottom:244.600500px;}
.y172{bottom:246.918000px;}
.y84{bottom:247.818000px;}
.y14c{bottom:248.118000px;}
.y109{bottom:248.868000px;}
.ye4{bottom:249.096000px;}
.y9f{bottom:249.433500px;}
.y200{bottom:252.084000px;}
.ybf{bottom:254.835000px;}
.y77{bottom:257.568000px;}
.y4e{bottom:260.800500px;}
.y192{bottom:261.309000px;}
.y1af{bottom:261.318000px;}
.y1d1{bottom:262.075500px;}
.y12e{bottom:265.183500px;}
.y171{bottom:265.218000px;}
.ye3{bottom:265.296000px;}
.y25{bottom:265.722000px;}
.y83{bottom:266.568000px;}
.y14b{bottom:266.868000px;}
.y108{bottom:267.318000px;}
.y1ff{bottom:270.834000px;}
.ybe{bottom:272.835000px;}
.y76{bottom:276.318000px;}
.y4d{bottom:277.000500px;}
.y191{bottom:280.059000px;}
.y1ae{bottom:280.068000px;}
.y1d0{bottom:280.825500px;}
.y12d{bottom:281.383500px;}
.y170{bottom:283.518000px;}
.y82{bottom:285.318000px;}
.y14a{bottom:285.618000px;}
.y107{bottom:285.768000px;}
.y9e{bottom:286.818000px;}
.y1fe{bottom:289.584000px;}
.ybd{bottom:290.835000px;}
.ye2{bottom:292.584000px;}
.y12c{bottom:293.088000px;}
.y4c{bottom:293.200500px;}
.yb7{bottom:297.696000px;}
.y190{bottom:298.809000px;}
.y16f{bottom:301.818000px;}
.y24{bottom:302.334000px;}
.y75{bottom:304.068000px;}
.y106{bottom:304.218000px;}
.y149{bottom:304.368000px;}
.y9d{bottom:305.568000px;}
.y1ad{bottom:307.818000px;}
.y1cf{bottom:308.575500px;}
.ybc{bottom:308.835000px;}
.y4b{bottom:309.400500px;}
.ye1{bottom:311.334000px;}
.y12b{bottom:313.783500px;}
.yb3{bottom:313.896000px;}
.y1fd{bottom:317.334000px;}
.y16e{bottom:320.118000px;}
.y23{bottom:321.084000px;}
.y105{bottom:322.668000px;}
.y74{bottom:322.818000px;}
.y148{bottom:323.118000px;}
.y9c{bottom:324.318000px;}
.y4a{bottom:325.600500px;}
.y18f{bottom:326.559000px;}
.y1ac{bottom:326.568000px;}
.ye0{bottom:330.084000px;}
.ybb{bottom:331.330500px;}
.y12a{bottom:334.668000px;}
.y1fc{bottom:336.084000px;}
.y1ce{bottom:336.325500px;}
.y16d{bottom:338.418000px;}
.y22{bottom:339.834000px;}
.y104{bottom:341.118000px;}
.y73{bottom:341.568000px;}
.y49{bottom:341.800500px;}
.y147{bottom:341.868000px;}
.y9b{bottom:343.068000px;}
.y18e{bottom:345.309000px;}
.yb6{bottom:346.296000px;}
.ydf{bottom:348.834000px;}
.y129{bottom:352.968000px;}
.y1ab{bottom:354.318000px;}
.y1fb{bottom:354.834000px;}
.y1cd{bottom:355.075500px;}
.y16c{bottom:356.718000px;}
.y48{bottom:358.000500px;}
.y21{bottom:358.584000px;}
.y103{bottom:359.568000px;}
.y72{bottom:360.318000px;}
.y146{bottom:360.618000px;}
.y9a{bottom:361.818000px;}
.y18d{bottom:364.059000px;}
.y1df{bottom:364.068000px;}
.yde{bottom:367.584000px;}
.yba{bottom:370.818000px;}
.y128{bottom:371.268000px;}
.y1aa{bottom:373.068000px;}
.y1fa{bottom:373.584000px;}
.y1cc{bottom:373.825500px;}
.yb5{bottom:374.200500px;}
.y16b{bottom:375.018000px;}
.y20{bottom:377.334000px;}
.y102{bottom:378.018000px;}
.y47{bottom:378.696000px;}
.y71{bottom:379.068000px;}
.y145{bottom:379.368000px;}
.y99{bottom:380.568000px;}
.y1de{bottom:382.818000px;}
.ydd{bottom:386.334000px;}
.yb9{bottom:389.568000px;}
.y46{bottom:390.400500px;}
.y18c{bottom:391.809000px;}
.y1a9{bottom:391.818000px;}
.y1f9{bottom:392.334000px;}
.y1cb{bottom:392.575500px;}
.y16a{bottom:393.318000px;}
.yb4{bottom:394.896000px;}
.y1f{bottom:396.084000px;}
.y101{bottom:396.468000px;}
.y70{bottom:397.818000px;}
.y144{bottom:398.118000px;}
.y1dd{bottom:401.568000px;}
.ydc{bottom:405.084000px;}
.y45{bottom:406.600500px;}
.y127{bottom:407.868000px;}
.y98{bottom:408.318000px;}
.y18b{bottom:410.559000px;}
.y1f8{bottom:411.084000px;}
.y1ca{bottom:411.325500px;}
.y169{bottom:411.618000px;}
.y1e{bottom:414.834000px;}
.y100{bottom:414.918000px;}
.y6f{bottom:416.568000px;}
.y143{bottom:416.868000px;}
.yb2{bottom:418.068000px;}
.y1a8{bottom:419.568000px;}
.y44{bottom:422.800500px;}
.ydb{bottom:423.834000px;}
.y97{bottom:427.068000px;}
.y18a{bottom:429.309000px;}
.y1dc{bottom:429.318000px;}
.y1f7{bottom:429.834000px;}
.y168{bottom:429.918000px;}
.y1c9{bottom:430.075500px;}
.yff{bottom:433.368000px;}
.y1d{bottom:433.584000px;}
.y126{bottom:435.168000px;}
.y6e{bottom:435.318000px;}
.y142{bottom:435.618000px;}
.yb1{bottom:436.818000px;}
.y1a7{bottom:438.318000px;}
.y43{bottom:439.000500px;}
.y96{bottom:445.818000px;}
.y189{bottom:448.059000px;}
.y167{bottom:448.218000px;}
.y1f6{bottom:448.584000px;}
.yda{bottom:451.584000px;}
.yfe{bottom:451.818000px;}
.y1c{bottom:452.334000px;}
.y125{bottom:453.468000px;}
.y6d{bottom:454.068000px;}
.y141{bottom:454.368000px;}
.y42{bottom:455.200500px;}
.yb0{bottom:455.568000px;}
.y1db{bottom:457.068000px;}
.y1c8{bottom:457.825500px;}
.y95{bottom:464.568000px;}
.y1a6{bottom:466.068000px;}
.y166{bottom:466.518000px;}
.y1f5{bottom:467.334000px;}
.yfd{bottom:470.268000px;}
.y1b{bottom:471.084000px;}
.y41{bottom:471.400500px;}
.y124{bottom:471.768000px;}
.y6c{bottom:472.818000px;}
.y140{bottom:473.118000px;}
.yaf{bottom:474.318000px;}
.y188{bottom:475.809000px;}
.y1da{bottom:475.818000px;}
.y1c7{bottom:476.575500px;}
.y94{bottom:483.318000px;}
.y165{bottom:484.818000px;}
.y1f4{bottom:486.084000px;}
.yfc{bottom:488.718000px;}
.y1a{bottom:489.834000px;}
.y123{bottom:490.068000px;}
.y6b{bottom:491.568000px;}
.y13f{bottom:491.868000px;}
.y40{bottom:492.096000px;}
.yd9{bottom:492.834000px;}
.yae{bottom:493.068000px;}
.y187{bottom:494.559000px;}
.y1d9{bottom:494.568000px;}
.y1c6{bottom:495.325500px;}
.y93{bottom:502.068000px;}
.y164{bottom:503.118000px;}
.y1f3{bottom:504.834000px;}
.yfb{bottom:507.168000px;}
.y122{bottom:508.368000px;}
.y19{bottom:508.584000px;}
.y6a{bottom:510.318000px;}
.y13e{bottom:510.618000px;}
.yd8{bottom:511.584000px;}
.yad{bottom:511.818000px;}
.y1a5{bottom:512.568000px;}
.y186{bottom:513.309000px;}
.y1d8{bottom:513.318000px;}
.y1c5{bottom:514.075500px;}
.y3f{bottom:520.809000px;}
.y92{bottom:520.818000px;}
.y163{bottom:521.418000px;}
.y1f2{bottom:523.584000px;}
.y121{bottom:526.668000px;}
.y18{bottom:527.334000px;}
.y69{bottom:529.068000px;}
.y13d{bottom:529.368000px;}
.yd7{bottom:530.334000px;}
.yac{bottom:530.568000px;}
.y1a4{bottom:531.318000px;}
.y185{bottom:532.059000px;}
.y1d7{bottom:532.068000px;}
.y1c4{bottom:532.825500px;}
.yfa{bottom:534.618000px;}
.y3e{bottom:539.559000px;}
.y91{bottom:539.568000px;}
.y162{bottom:539.718000px;}
.y1f1{bottom:542.334000px;}
.y120{bottom:544.968000px;}
.y17{bottom:546.084000px;}
.y81{bottom:547.818000px;}
.y13c{bottom:548.118000px;}
.yd6{bottom:549.084000px;}
.yab{bottom:549.318000px;}
.y1a3{bottom:550.068000px;}
.y1c3{bottom:551.575500px;}
.yf9{bottom:553.068000px;}
.y68{bottom:556.818000px;}
.y161{bottom:558.018000px;}
.y3d{bottom:558.309000px;}
.y90{bottom:558.318000px;}
.y184{bottom:559.809000px;}
.y1d6{bottom:559.818000px;}
.y1f0{bottom:561.084000px;}
.y11f{bottom:563.268000px;}
.y16{bottom:564.834000px;}
.y80{bottom:566.568000px;}
.y13b{bottom:566.868000px;}
.yd5{bottom:567.834000px;}
.yf8{bottom:571.518000px;}
.y67{bottom:575.568000px;}
.y160{bottom:576.318000px;}
.y3c{bottom:577.059000px;}
.y8f{bottom:577.068000px;}
.y1a2{bottom:577.818000px;}
.y183{bottom:578.559000px;}
.y1d5{bottom:578.568000px;}
.y1c2{bottom:579.325500px;}
.y1ef{bottom:579.834000px;}
.y11e{bottom:581.568000px;}
.y15{bottom:583.584000px;}
.y7f{bottom:585.318000px;}
.y13a{bottom:585.618000px;}
.yd4{bottom:586.584000px;}
.yf7{bottom:589.968000px;}
.y66{bottom:594.318000px;}
.y3b{bottom:595.809000px;}
.y8e{bottom:595.818000px;}
.y1a1{bottom:596.568000px;}
.y182{bottom:597.309000px;}
.y1c1{bottom:598.075500px;}
.y1ee{bottom:598.584000px;}
.y11d{bottom:599.868000px;}
.y14{bottom:602.334000px;}
.y15f{bottom:603.618000px;}
.y7e{bottom:604.068000px;}
.yd3{bottom:605.334000px;}
.y1d4{bottom:606.318000px;}
.yf6{bottom:608.418000px;}
.y65{bottom:613.068000px;}
.y139{bottom:613.368000px;}
.y3a{bottom:614.559000px;}
.y8d{bottom:614.568000px;}
.y1a0{bottom:615.318000px;}
.y1ed{bottom:617.334000px;}
.y11c{bottom:618.168000px;}
.y13{bottom:621.084000px;}
.y15e{bottom:621.918000px;}
.y7d{bottom:622.818000px;}
.yd2{bottom:624.084000px;}
.y181{bottom:625.059000px;}
.y1c0{bottom:625.825500px;}
.yf5{bottom:626.868000px;}
.y64{bottom:631.818000px;}
.y39{bottom:633.309000px;}
.y8c{bottom:633.318000px;}
.y19f{bottom:634.068000px;}
.y1ec{bottom:636.084000px;}
.y11b{bottom:636.468000px;}
.y12{bottom:639.834000px;}
.y15d{bottom:640.218000px;}
.y7c{bottom:641.568000px;}
.yd1{bottom:642.834000px;}
.y180{bottom:643.809000px;}
.y63{bottom:650.568000px;}
.y38{bottom:652.059000px;}
.y8b{bottom:652.068000px;}
.y19e{bottom:652.818000px;}
.y1bf{bottom:653.575500px;}
.yf4{bottom:654.318000px;}
.y1eb{bottom:654.834000px;}
.y15c{bottom:658.518000px;}
.y11{bottom:658.584000px;}
.y138{bottom:659.118000px;}
.y7b{bottom:660.318000px;}
.yb8{bottom:661.068000px;}
.yd0{bottom:661.584000px;}
.y1d3{bottom:661.818000px;}
.y17f{bottom:662.559000px;}
.y11a{bottom:663.768000px;}
.y62{bottom:669.318000px;}
.y37{bottom:670.809000px;}
.y8a{bottom:670.818000px;}
.y1be{bottom:672.325500px;}
.y1ea{bottom:673.584000px;}
.y15b{bottom:676.818000px;}
.y10{bottom:677.334000px;}
.y137{bottom:677.418000px;}
.y7a{bottom:679.068000px;}
.ycf{bottom:680.334000px;}
.y19d{bottom:680.568000px;}
.y119{bottom:682.068000px;}
.y61{bottom:688.068000px;}
.y36{bottom:689.559000px;}
.y89{bottom:689.568000px;}
.y17e{bottom:690.309000px;}
.y1e9{bottom:692.334000px;}
.y15a{bottom:695.118000px;}
.yf3{bottom:695.568000px;}
.y136{bottom:695.718000px;}
.yf{bottom:696.084000px;}
.y79{bottom:697.818000px;}
.y19c{bottom:699.318000px;}
.y1bd{bottom:700.075500px;}
.y118{bottom:700.368000px;}
.y60{bottom:706.818000px;}
.yce{bottom:708.084000px;}
.y35{bottom:708.309000px;}
.y88{bottom:708.318000px;}
.y17d{bottom:709.059000px;}
.y1e8{bottom:711.084000px;}
.y159{bottom:713.418000px;}
.yf2{bottom:713.868000px;}
.y135{bottom:714.018000px;}
.ye{bottom:714.834000px;}
.y78{bottom:716.568000px;}
.y1d2{bottom:718.068000px;}
.y117{bottom:718.668000px;}
.y5f{bottom:725.568000px;}
.ycd{bottom:726.834000px;}
.y34{bottom:727.059000px;}
.y87{bottom:727.068000px;}
.y1bc{bottom:727.825500px;}
.y1e7{bottom:729.834000px;}
.yf1{bottom:732.168000px;}
.y134{bottom:732.318000px;}
.yd{bottom:733.584000px;}
.yaa{bottom:735.318000px;}
.y17c{bottom:736.809000px;}
.y116{bottom:736.968000px;}
.y158{bottom:740.718000px;}
.y5e{bottom:744.318000px;}
.ycc{bottom:745.584000px;}
.y33{bottom:745.809000px;}
.y86{bottom:745.818000px;}
.y1bb{bottom:746.575500px;}
.y1e6{bottom:748.584000px;}
.yf0{bottom:750.468000px;}
.y133{bottom:750.618000px;}
.ya9{bottom:754.068000px;}
.y115{bottom:755.268000px;}
.y17b{bottom:755.559000px;}
.y157{bottom:759.018000px;}
.y5d{bottom:763.068000px;}
.ycb{bottom:764.334000px;}
.y32{bottom:764.559000px;}
.y19b{bottom:764.568000px;}
.y1ba{bottom:765.325500px;}
.y1e5{bottom:767.334000px;}
.yef{bottom:768.768000px;}
.y132{bottom:768.918000px;}
.ya8{bottom:772.818000px;}
.y85{bottom:773.568000px;}
.y156{bottom:777.318000px;}
.y5c{bottom:781.818000px;}
.y114{bottom:782.568000px;}
.yca{bottom:783.084000px;}
.y31{bottom:783.309000px;}
.y19a{bottom:783.318000px;}
.y1b9{bottom:784.075500px;}
.y1e4{bottom:786.084000px;}
.yee{bottom:787.068000px;}
.y131{bottom:787.218000px;}
.ya7{bottom:791.568000px;}
.y155{bottom:795.618000px;}
.yc{bottom:797.334000px;}
.y5b{bottom:800.568000px;}
.yc9{bottom:801.834000px;}
.y30{bottom:802.059000px;}
.yed{bottom:805.368000px;}
.y130{bottom:805.518000px;}
.ya6{bottom:810.318000px;}
.y199{bottom:811.068000px;}
.y1b8{bottom:811.825500px;}
.y1e3{bottom:813.834000px;}
.y154{bottom:813.918000px;}
.y5a{bottom:819.318000px;}
.yb{bottom:819.834000px;}
.yc8{bottom:820.584000px;}
.y2f{bottom:820.809000px;}
.y113{bottom:823.818000px;}
.ya5{bottom:829.068000px;}
.y17a{bottom:829.809000px;}
.y198{bottom:829.818000px;}
.y153{bottom:832.218000px;}
.yec{bottom:832.668000px;}
.y59{bottom:838.068000px;}
.yc7{bottom:839.334000px;}
.y2e{bottom:839.559000px;}
.y1b7{bottom:839.575500px;}
.y112{bottom:842.118000px;}
.ya{bottom:842.334000px;}
.y1e2{bottom:846.084000px;}
.ya4{bottom:847.818000px;}
.y179{bottom:848.559000px;}
.y152{bottom:850.518000px;}
.yeb{bottom:850.968000px;}
.y58{bottom:856.818000px;}
.y197{bottom:857.568000px;}
.yc6{bottom:858.084000px;}
.y2d{bottom:858.309000px;}
.y1b6{bottom:858.325500px;}
.y111{bottom:860.418000px;}
.y1e1{bottom:864.834000px;}
.ya3{bottom:866.568000px;}
.y178{bottom:867.309000px;}
.y151{bottom:868.818000px;}
.yea{bottom:869.268000px;}
.y57{bottom:875.568000px;}
.y196{bottom:876.318000px;}
.y2c{bottom:877.059000px;}
.y110{bottom:878.718000px;}
.y1e0{bottom:883.584000px;}
.ya2{bottom:885.318000px;}
.yc5{bottom:885.834000px;}
.y1b5{bottom:886.075500px;}
.y150{bottom:887.118000px;}
.ye9{bottom:887.568000px;}
.y56{bottom:894.318000px;}
.y177{bottom:895.059000px;}
.y195{bottom:895.068000px;}
.y10f{bottom:897.018000px;}
.ya1{bottom:904.068000px;}
.yc4{bottom:904.584000px;}
.y2b{bottom:904.809000px;}
.y1b4{bottom:904.825500px;}
.y14f{bottom:905.418000px;}
.ye8{bottom:905.868000px;}
.y55{bottom:913.068000px;}
.y176{bottom:913.809000px;}
.y10e{bottom:915.318000px;}
.ya0{bottom:922.818000px;}
.yc3{bottom:923.334000px;}
.y14e{bottom:923.718000px;}
.ye7{bottom:924.168000px;}
.y54{bottom:931.818000px;}
.y9{bottom:932.334000px;}
.y1b3{bottom:932.575500px;}
.y10d{bottom:933.618000px;}
.y175{bottom:941.559000px;}
.y194{bottom:941.568000px;}
.y14d{bottom:942.018000px;}
.yc2{bottom:942.084000px;}
.ye6{bottom:942.468000px;}
.y2a{bottom:950.559000px;}
.y53{bottom:950.568000px;}
.y8{bottom:951.084000px;}
.y1b2{bottom:951.325500px;}
.y10c{bottom:951.918000px;}
.y174{bottom:960.309000px;}
.y193{bottom:960.318000px;}
.ye5{bottom:960.768000px;}
.yc1{bottom:960.834000px;}
.y29{bottom:969.309000px;}
.y52{bottom:969.318000px;}
.y7{bottom:969.834000px;}
.y10b{bottom:970.218000px;}
.y4{bottom:976.519500px;}
.y173{bottom:979.059000px;}
.y1b1{bottom:979.075500px;}
.yc0{bottom:979.584000px;}
.y28{bottom:988.059000px;}
.y51{bottom:988.068000px;}
.y10a{bottom:988.518000px;}
.y6{bottom:988.584000px;}
.y3{bottom:992.719500px;}
.y27{bottom:1006.809000px;}
.y50{bottom:1006.818000px;}
.y1b0{bottom:1006.825500px;}
.y5{bottom:1007.334000px;}
.y2{bottom:1008.919500px;}
.y26{bottom:1043.977500px;}
.h9{height:22.381734px;}
.ha{height:34.125000px;}
.h3{height:37.863281px;}
.he{height:38.390625px;}
.h5{height:44.173828px;}
.h2{height:44.789062px;}
.hf{height:45.373535px;}
.hb{height:46.148438px;}
.h8{height:46.277344px;}
.hc{height:46.921875px;}
.h4{height:47.428771px;}
.h7{height:47.534180px;}
.hd{height:49.333453px;}
.h6{height:56.176758px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:180.708000px;}
.xa{left:197.716500px;}
.x7{left:202.744500px;}
.x9{left:231.732000px;}
.x6{left:269.829000px;}
.xb{left:324.786000px;}
.x8{left:362.172000px;}
.x2{left:373.683000px;}
.xc{left:395.377500px;}
.xd{left:412.230000px;}
.x4{left:593.005500px;}
.x3{left:609.960000px;}
.x1{left:686.041500px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v3{vertical-align:19.536000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls4{letter-spacing:0.017600pt;}
.ls3{letter-spacing:19.419723pt;}
.ws5{word-spacing:-12.924267pt;}
.ws1{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws3{word-spacing:-7.524587pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:3.983467pt;}
._4{margin-left:-9.609600pt;}
._d{margin-left:-8.134933pt;}
._22{margin-left:-6.707733pt;}
._3{margin-left:-5.803200pt;}
._1e{margin-left:-4.684800pt;}
._0{margin-left:-3.774400pt;}
._2{margin-left:-2.480800pt;}
._1{margin-left:-1.187200pt;}
._c{width:0.930133pt;}
._5{width:1.831467pt;}
._6{width:2.838400pt;}
._e{width:4.212267pt;}
._8{width:5.925333pt;}
._9{width:6.969600pt;}
._15{width:8.262400pt;}
._1b{width:9.406400pt;}
._1a{width:10.724267pt;}
._a{width:12.014933pt;}
._16{width:14.044800pt;}
._17{width:15.112533pt;}
._b{width:16.244800pt;}
._11{width:17.173867pt;}
._10{width:18.063467pt;}
._14{width:19.096000pt;}
._7{width:20.052267pt;}
._23{width:20.996800pt;}
._f{width:21.929600pt;}
._18{width:23.490133pt;}
._19{width:24.440533pt;}
._1d{width:25.989333pt;}
._1f{width:27.608533pt;}
._25{width:29.380267pt;}
._20{width:32.386133pt;}
._21{width:33.414400pt;}
._12{width:35.546133pt;}
._13{width:36.470933pt;}
._1c{width:40.474133pt;}
._24{width:46.229867pt;}
.fs5{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs7{font-size:34.202667pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:187.086667pt;}
.y12f{bottom:217.322667pt;}
.y4f{bottom:217.422667pt;}
.y172{bottom:219.482667pt;}
.y84{bottom:220.282667pt;}
.y14c{bottom:220.549333pt;}
.y109{bottom:221.216000pt;}
.ye4{bottom:221.418667pt;}
.y9f{bottom:221.718667pt;}
.y200{bottom:224.074667pt;}
.ybf{bottom:226.520000pt;}
.y77{bottom:228.949333pt;}
.y4e{bottom:231.822667pt;}
.y192{bottom:232.274667pt;}
.y1af{bottom:232.282667pt;}
.y1d1{bottom:232.956000pt;}
.y12e{bottom:235.718667pt;}
.y171{bottom:235.749333pt;}
.ye3{bottom:235.818667pt;}
.y25{bottom:236.197333pt;}
.y83{bottom:236.949333pt;}
.y14b{bottom:237.216000pt;}
.y108{bottom:237.616000pt;}
.y1ff{bottom:240.741333pt;}
.ybe{bottom:242.520000pt;}
.y76{bottom:245.616000pt;}
.y4d{bottom:246.222667pt;}
.y191{bottom:248.941333pt;}
.y1ae{bottom:248.949333pt;}
.y1d0{bottom:249.622667pt;}
.y12d{bottom:250.118667pt;}
.y170{bottom:252.016000pt;}
.y82{bottom:253.616000pt;}
.y14a{bottom:253.882667pt;}
.y107{bottom:254.016000pt;}
.y9e{bottom:254.949333pt;}
.y1fe{bottom:257.408000pt;}
.ybd{bottom:258.520000pt;}
.ye2{bottom:260.074667pt;}
.y12c{bottom:260.522667pt;}
.y4c{bottom:260.622667pt;}
.yb7{bottom:264.618667pt;}
.y190{bottom:265.608000pt;}
.y16f{bottom:268.282667pt;}
.y24{bottom:268.741333pt;}
.y75{bottom:270.282667pt;}
.y106{bottom:270.416000pt;}
.y149{bottom:270.549333pt;}
.y9d{bottom:271.616000pt;}
.y1ad{bottom:273.616000pt;}
.y1cf{bottom:274.289333pt;}
.ybc{bottom:274.520000pt;}
.y4b{bottom:275.022667pt;}
.ye1{bottom:276.741333pt;}
.y12b{bottom:278.918667pt;}
.yb3{bottom:279.018667pt;}
.y1fd{bottom:282.074667pt;}
.y16e{bottom:284.549333pt;}
.y23{bottom:285.408000pt;}
.y105{bottom:286.816000pt;}
.y74{bottom:286.949333pt;}
.y148{bottom:287.216000pt;}
.y9c{bottom:288.282667pt;}
.y4a{bottom:289.422667pt;}
.y18f{bottom:290.274667pt;}
.y1ac{bottom:290.282667pt;}
.ye0{bottom:293.408000pt;}
.ybb{bottom:294.516000pt;}
.y12a{bottom:297.482667pt;}
.y1fc{bottom:298.741333pt;}
.y1ce{bottom:298.956000pt;}
.y16d{bottom:300.816000pt;}
.y22{bottom:302.074667pt;}
.y104{bottom:303.216000pt;}
.y73{bottom:303.616000pt;}
.y49{bottom:303.822667pt;}
.y147{bottom:303.882667pt;}
.y9b{bottom:304.949333pt;}
.y18e{bottom:306.941333pt;}
.yb6{bottom:307.818667pt;}
.ydf{bottom:310.074667pt;}
.y129{bottom:313.749333pt;}
.y1ab{bottom:314.949333pt;}
.y1fb{bottom:315.408000pt;}
.y1cd{bottom:315.622667pt;}
.y16c{bottom:317.082667pt;}
.y48{bottom:318.222667pt;}
.y21{bottom:318.741333pt;}
.y103{bottom:319.616000pt;}
.y72{bottom:320.282667pt;}
.y146{bottom:320.549333pt;}
.y9a{bottom:321.616000pt;}
.y18d{bottom:323.608000pt;}
.y1df{bottom:323.616000pt;}
.yde{bottom:326.741333pt;}
.yba{bottom:329.616000pt;}
.y128{bottom:330.016000pt;}
.y1aa{bottom:331.616000pt;}
.y1fa{bottom:332.074667pt;}
.y1cc{bottom:332.289333pt;}
.yb5{bottom:332.622667pt;}
.y16b{bottom:333.349333pt;}
.y20{bottom:335.408000pt;}
.y102{bottom:336.016000pt;}
.y47{bottom:336.618667pt;}
.y71{bottom:336.949333pt;}
.y145{bottom:337.216000pt;}
.y99{bottom:338.282667pt;}
.y1de{bottom:340.282667pt;}
.ydd{bottom:343.408000pt;}
.yb9{bottom:346.282667pt;}
.y46{bottom:347.022667pt;}
.y18c{bottom:348.274667pt;}
.y1a9{bottom:348.282667pt;}
.y1f9{bottom:348.741333pt;}
.y1cb{bottom:348.956000pt;}
.y16a{bottom:349.616000pt;}
.yb4{bottom:351.018667pt;}
.y1f{bottom:352.074667pt;}
.y101{bottom:352.416000pt;}
.y70{bottom:353.616000pt;}
.y144{bottom:353.882667pt;}
.y1dd{bottom:356.949333pt;}
.ydc{bottom:360.074667pt;}
.y45{bottom:361.422667pt;}
.y127{bottom:362.549333pt;}
.y98{bottom:362.949333pt;}
.y18b{bottom:364.941333pt;}
.y1f8{bottom:365.408000pt;}
.y1ca{bottom:365.622667pt;}
.y169{bottom:365.882667pt;}
.y1e{bottom:368.741333pt;}
.y100{bottom:368.816000pt;}
.y6f{bottom:370.282667pt;}
.y143{bottom:370.549333pt;}
.yb2{bottom:371.616000pt;}
.y1a8{bottom:372.949333pt;}
.y44{bottom:375.822667pt;}
.ydb{bottom:376.741333pt;}
.y97{bottom:379.616000pt;}
.y18a{bottom:381.608000pt;}
.y1dc{bottom:381.616000pt;}
.y1f7{bottom:382.074667pt;}
.y168{bottom:382.149333pt;}
.y1c9{bottom:382.289333pt;}
.yff{bottom:385.216000pt;}
.y1d{bottom:385.408000pt;}
.y126{bottom:386.816000pt;}
.y6e{bottom:386.949333pt;}
.y142{bottom:387.216000pt;}
.yb1{bottom:388.282667pt;}
.y1a7{bottom:389.616000pt;}
.y43{bottom:390.222667pt;}
.y96{bottom:396.282667pt;}
.y189{bottom:398.274667pt;}
.y167{bottom:398.416000pt;}
.y1f6{bottom:398.741333pt;}
.yda{bottom:401.408000pt;}
.yfe{bottom:401.616000pt;}
.y1c{bottom:402.074667pt;}
.y125{bottom:403.082667pt;}
.y6d{bottom:403.616000pt;}
.y141{bottom:403.882667pt;}
.y42{bottom:404.622667pt;}
.yb0{bottom:404.949333pt;}
.y1db{bottom:406.282667pt;}
.y1c8{bottom:406.956000pt;}
.y95{bottom:412.949333pt;}
.y1a6{bottom:414.282667pt;}
.y166{bottom:414.682667pt;}
.y1f5{bottom:415.408000pt;}
.yfd{bottom:418.016000pt;}
.y1b{bottom:418.741333pt;}
.y41{bottom:419.022667pt;}
.y124{bottom:419.349333pt;}
.y6c{bottom:420.282667pt;}
.y140{bottom:420.549333pt;}
.yaf{bottom:421.616000pt;}
.y188{bottom:422.941333pt;}
.y1da{bottom:422.949333pt;}
.y1c7{bottom:423.622667pt;}
.y94{bottom:429.616000pt;}
.y165{bottom:430.949333pt;}
.y1f4{bottom:432.074667pt;}
.yfc{bottom:434.416000pt;}
.y1a{bottom:435.408000pt;}
.y123{bottom:435.616000pt;}
.y6b{bottom:436.949333pt;}
.y13f{bottom:437.216000pt;}
.y40{bottom:437.418667pt;}
.yd9{bottom:438.074667pt;}
.yae{bottom:438.282667pt;}
.y187{bottom:439.608000pt;}
.y1d9{bottom:439.616000pt;}
.y1c6{bottom:440.289333pt;}
.y93{bottom:446.282667pt;}
.y164{bottom:447.216000pt;}
.y1f3{bottom:448.741333pt;}
.yfb{bottom:450.816000pt;}
.y122{bottom:451.882667pt;}
.y19{bottom:452.074667pt;}
.y6a{bottom:453.616000pt;}
.y13e{bottom:453.882667pt;}
.yd8{bottom:454.741333pt;}
.yad{bottom:454.949333pt;}
.y1a5{bottom:455.616000pt;}
.y186{bottom:456.274667pt;}
.y1d8{bottom:456.282667pt;}
.y1c5{bottom:456.956000pt;}
.y3f{bottom:462.941333pt;}
.y92{bottom:462.949333pt;}
.y163{bottom:463.482667pt;}
.y1f2{bottom:465.408000pt;}
.y121{bottom:468.149333pt;}
.y18{bottom:468.741333pt;}
.y69{bottom:470.282667pt;}
.y13d{bottom:470.549333pt;}
.yd7{bottom:471.408000pt;}
.yac{bottom:471.616000pt;}
.y1a4{bottom:472.282667pt;}
.y185{bottom:472.941333pt;}
.y1d7{bottom:472.949333pt;}
.y1c4{bottom:473.622667pt;}
.yfa{bottom:475.216000pt;}
.y3e{bottom:479.608000pt;}
.y91{bottom:479.616000pt;}
.y162{bottom:479.749333pt;}
.y1f1{bottom:482.074667pt;}
.y120{bottom:484.416000pt;}
.y17{bottom:485.408000pt;}
.y81{bottom:486.949333pt;}
.y13c{bottom:487.216000pt;}
.yd6{bottom:488.074667pt;}
.yab{bottom:488.282667pt;}
.y1a3{bottom:488.949333pt;}
.y1c3{bottom:490.289333pt;}
.yf9{bottom:491.616000pt;}
.y68{bottom:494.949333pt;}
.y161{bottom:496.016000pt;}
.y3d{bottom:496.274667pt;}
.y90{bottom:496.282667pt;}
.y184{bottom:497.608000pt;}
.y1d6{bottom:497.616000pt;}
.y1f0{bottom:498.741333pt;}
.y11f{bottom:500.682667pt;}
.y16{bottom:502.074667pt;}
.y80{bottom:503.616000pt;}
.y13b{bottom:503.882667pt;}
.yd5{bottom:504.741333pt;}
.yf8{bottom:508.016000pt;}
.y67{bottom:511.616000pt;}
.y160{bottom:512.282667pt;}
.y3c{bottom:512.941333pt;}
.y8f{bottom:512.949333pt;}
.y1a2{bottom:513.616000pt;}
.y183{bottom:514.274667pt;}
.y1d5{bottom:514.282667pt;}
.y1c2{bottom:514.956000pt;}
.y1ef{bottom:515.408000pt;}
.y11e{bottom:516.949333pt;}
.y15{bottom:518.741333pt;}
.y7f{bottom:520.282667pt;}
.y13a{bottom:520.549333pt;}
.yd4{bottom:521.408000pt;}
.yf7{bottom:524.416000pt;}
.y66{bottom:528.282667pt;}
.y3b{bottom:529.608000pt;}
.y8e{bottom:529.616000pt;}
.y1a1{bottom:530.282667pt;}
.y182{bottom:530.941333pt;}
.y1c1{bottom:531.622667pt;}
.y1ee{bottom:532.074667pt;}
.y11d{bottom:533.216000pt;}
.y14{bottom:535.408000pt;}
.y15f{bottom:536.549333pt;}
.y7e{bottom:536.949333pt;}
.yd3{bottom:538.074667pt;}
.y1d4{bottom:538.949333pt;}
.yf6{bottom:540.816000pt;}
.y65{bottom:544.949333pt;}
.y139{bottom:545.216000pt;}
.y3a{bottom:546.274667pt;}
.y8d{bottom:546.282667pt;}
.y1a0{bottom:546.949333pt;}
.y1ed{bottom:548.741333pt;}
.y11c{bottom:549.482667pt;}
.y13{bottom:552.074667pt;}
.y15e{bottom:552.816000pt;}
.y7d{bottom:553.616000pt;}
.yd2{bottom:554.741333pt;}
.y181{bottom:555.608000pt;}
.y1c0{bottom:556.289333pt;}
.yf5{bottom:557.216000pt;}
.y64{bottom:561.616000pt;}
.y39{bottom:562.941333pt;}
.y8c{bottom:562.949333pt;}
.y19f{bottom:563.616000pt;}
.y1ec{bottom:565.408000pt;}
.y11b{bottom:565.749333pt;}
.y12{bottom:568.741333pt;}
.y15d{bottom:569.082667pt;}
.y7c{bottom:570.282667pt;}
.yd1{bottom:571.408000pt;}
.y180{bottom:572.274667pt;}
.y63{bottom:578.282667pt;}
.y38{bottom:579.608000pt;}
.y8b{bottom:579.616000pt;}
.y19e{bottom:580.282667pt;}
.y1bf{bottom:580.956000pt;}
.yf4{bottom:581.616000pt;}
.y1eb{bottom:582.074667pt;}
.y15c{bottom:585.349333pt;}
.y11{bottom:585.408000pt;}
.y138{bottom:585.882667pt;}
.y7b{bottom:586.949333pt;}
.yb8{bottom:587.616000pt;}
.yd0{bottom:588.074667pt;}
.y1d3{bottom:588.282667pt;}
.y17f{bottom:588.941333pt;}
.y11a{bottom:590.016000pt;}
.y62{bottom:594.949333pt;}
.y37{bottom:596.274667pt;}
.y8a{bottom:596.282667pt;}
.y1be{bottom:597.622667pt;}
.y1ea{bottom:598.741333pt;}
.y15b{bottom:601.616000pt;}
.y10{bottom:602.074667pt;}
.y137{bottom:602.149333pt;}
.y7a{bottom:603.616000pt;}
.ycf{bottom:604.741333pt;}
.y19d{bottom:604.949333pt;}
.y119{bottom:606.282667pt;}
.y61{bottom:611.616000pt;}
.y36{bottom:612.941333pt;}
.y89{bottom:612.949333pt;}
.y17e{bottom:613.608000pt;}
.y1e9{bottom:615.408000pt;}
.y15a{bottom:617.882667pt;}
.yf3{bottom:618.282667pt;}
.y136{bottom:618.416000pt;}
.yf{bottom:618.741333pt;}
.y79{bottom:620.282667pt;}
.y19c{bottom:621.616000pt;}
.y1bd{bottom:622.289333pt;}
.y118{bottom:622.549333pt;}
.y60{bottom:628.282667pt;}
.yce{bottom:629.408000pt;}
.y35{bottom:629.608000pt;}
.y88{bottom:629.616000pt;}
.y17d{bottom:630.274667pt;}
.y1e8{bottom:632.074667pt;}
.y159{bottom:634.149333pt;}
.yf2{bottom:634.549333pt;}
.y135{bottom:634.682667pt;}
.ye{bottom:635.408000pt;}
.y78{bottom:636.949333pt;}
.y1d2{bottom:638.282667pt;}
.y117{bottom:638.816000pt;}
.y5f{bottom:644.949333pt;}
.ycd{bottom:646.074667pt;}
.y34{bottom:646.274667pt;}
.y87{bottom:646.282667pt;}
.y1bc{bottom:646.956000pt;}
.y1e7{bottom:648.741333pt;}
.yf1{bottom:650.816000pt;}
.y134{bottom:650.949333pt;}
.yd{bottom:652.074667pt;}
.yaa{bottom:653.616000pt;}
.y17c{bottom:654.941333pt;}
.y116{bottom:655.082667pt;}
.y158{bottom:658.416000pt;}
.y5e{bottom:661.616000pt;}
.ycc{bottom:662.741333pt;}
.y33{bottom:662.941333pt;}
.y86{bottom:662.949333pt;}
.y1bb{bottom:663.622667pt;}
.y1e6{bottom:665.408000pt;}
.yf0{bottom:667.082667pt;}
.y133{bottom:667.216000pt;}
.ya9{bottom:670.282667pt;}
.y115{bottom:671.349333pt;}
.y17b{bottom:671.608000pt;}
.y157{bottom:674.682667pt;}
.y5d{bottom:678.282667pt;}
.ycb{bottom:679.408000pt;}
.y32{bottom:679.608000pt;}
.y19b{bottom:679.616000pt;}
.y1ba{bottom:680.289333pt;}
.y1e5{bottom:682.074667pt;}
.yef{bottom:683.349333pt;}
.y132{bottom:683.482667pt;}
.ya8{bottom:686.949333pt;}
.y85{bottom:687.616000pt;}
.y156{bottom:690.949333pt;}
.y5c{bottom:694.949333pt;}
.y114{bottom:695.616000pt;}
.yca{bottom:696.074667pt;}
.y31{bottom:696.274667pt;}
.y19a{bottom:696.282667pt;}
.y1b9{bottom:696.956000pt;}
.y1e4{bottom:698.741333pt;}
.yee{bottom:699.616000pt;}
.y131{bottom:699.749333pt;}
.ya7{bottom:703.616000pt;}
.y155{bottom:707.216000pt;}
.yc{bottom:708.741333pt;}
.y5b{bottom:711.616000pt;}
.yc9{bottom:712.741333pt;}
.y30{bottom:712.941333pt;}
.yed{bottom:715.882667pt;}
.y130{bottom:716.016000pt;}
.ya6{bottom:720.282667pt;}
.y199{bottom:720.949333pt;}
.y1b8{bottom:721.622667pt;}
.y1e3{bottom:723.408000pt;}
.y154{bottom:723.482667pt;}
.y5a{bottom:728.282667pt;}
.yb{bottom:728.741333pt;}
.yc8{bottom:729.408000pt;}
.y2f{bottom:729.608000pt;}
.y113{bottom:732.282667pt;}
.ya5{bottom:736.949333pt;}
.y17a{bottom:737.608000pt;}
.y198{bottom:737.616000pt;}
.y153{bottom:739.749333pt;}
.yec{bottom:740.149333pt;}
.y59{bottom:744.949333pt;}
.yc7{bottom:746.074667pt;}
.y2e{bottom:746.274667pt;}
.y1b7{bottom:746.289333pt;}
.y112{bottom:748.549333pt;}
.ya{bottom:748.741333pt;}
.y1e2{bottom:752.074667pt;}
.ya4{bottom:753.616000pt;}
.y179{bottom:754.274667pt;}
.y152{bottom:756.016000pt;}
.yeb{bottom:756.416000pt;}
.y58{bottom:761.616000pt;}
.y197{bottom:762.282667pt;}
.yc6{bottom:762.741333pt;}
.y2d{bottom:762.941333pt;}
.y1b6{bottom:762.956000pt;}
.y111{bottom:764.816000pt;}
.y1e1{bottom:768.741333pt;}
.ya3{bottom:770.282667pt;}
.y178{bottom:770.941333pt;}
.y151{bottom:772.282667pt;}
.yea{bottom:772.682667pt;}
.y57{bottom:778.282667pt;}
.y196{bottom:778.949333pt;}
.y2c{bottom:779.608000pt;}
.y110{bottom:781.082667pt;}
.y1e0{bottom:785.408000pt;}
.ya2{bottom:786.949333pt;}
.yc5{bottom:787.408000pt;}
.y1b5{bottom:787.622667pt;}
.y150{bottom:788.549333pt;}
.ye9{bottom:788.949333pt;}
.y56{bottom:794.949333pt;}
.y177{bottom:795.608000pt;}
.y195{bottom:795.616000pt;}
.y10f{bottom:797.349333pt;}
.ya1{bottom:803.616000pt;}
.yc4{bottom:804.074667pt;}
.y2b{bottom:804.274667pt;}
.y1b4{bottom:804.289333pt;}
.y14f{bottom:804.816000pt;}
.ye8{bottom:805.216000pt;}
.y55{bottom:811.616000pt;}
.y176{bottom:812.274667pt;}
.y10e{bottom:813.616000pt;}
.ya0{bottom:820.282667pt;}
.yc3{bottom:820.741333pt;}
.y14e{bottom:821.082667pt;}
.ye7{bottom:821.482667pt;}
.y54{bottom:828.282667pt;}
.y9{bottom:828.741333pt;}
.y1b3{bottom:828.956000pt;}
.y10d{bottom:829.882667pt;}
.y175{bottom:836.941333pt;}
.y194{bottom:836.949333pt;}
.y14d{bottom:837.349333pt;}
.yc2{bottom:837.408000pt;}
.ye6{bottom:837.749333pt;}
.y2a{bottom:844.941333pt;}
.y53{bottom:844.949333pt;}
.y8{bottom:845.408000pt;}
.y1b2{bottom:845.622667pt;}
.y10c{bottom:846.149333pt;}
.y174{bottom:853.608000pt;}
.y193{bottom:853.616000pt;}
.ye5{bottom:854.016000pt;}
.yc1{bottom:854.074667pt;}
.y29{bottom:861.608000pt;}
.y52{bottom:861.616000pt;}
.y7{bottom:862.074667pt;}
.y10b{bottom:862.416000pt;}
.y4{bottom:868.017333pt;}
.y173{bottom:870.274667pt;}
.y1b1{bottom:870.289333pt;}
.yc0{bottom:870.741333pt;}
.y28{bottom:878.274667pt;}
.y51{bottom:878.282667pt;}
.y10a{bottom:878.682667pt;}
.y6{bottom:878.741333pt;}
.y3{bottom:882.417333pt;}
.y27{bottom:894.941333pt;}
.y50{bottom:894.949333pt;}
.y1b0{bottom:894.956000pt;}
.y5{bottom:895.408000pt;}
.y2{bottom:896.817333pt;}
.y26{bottom:927.980000pt;}
.h9{height:19.894875pt;}
.ha{height:30.333333pt;}
.h3{height:33.656250pt;}
.he{height:34.125000pt;}
.h5{height:39.265625pt;}
.h2{height:39.812500pt;}
.hf{height:40.332031pt;}
.hb{height:41.020833pt;}
.h8{height:41.135417pt;}
.hc{height:41.708333pt;}
.h4{height:42.158908pt;}
.h7{height:42.252604pt;}
.hd{height:43.851958pt;}
.h6{height:49.934896pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:160.629333pt;}
.xa{left:175.748000pt;}
.x7{left:180.217333pt;}
.x9{left:205.984000pt;}
.x6{left:239.848000pt;}
.xb{left:288.698667pt;}
.x8{left:321.930667pt;}
.x2{left:332.162667pt;}
.xc{left:351.446667pt;}
.xd{left:366.426667pt;}
.x4{left:527.116000pt;}
.x3{left:542.186667pt;}
.x1{left:609.814667pt;}
}




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