
    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_fd82918e6fa20e549a973ca7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_9e79ecf1d165d003ea871d8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_7b8e5fac5f0259952efe3de5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a2efda2b03c9833295dcb4e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_822ee34df6330533f37bcc47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.697754;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.m3{transform:matrix(0.242345,0.000000,-0.060586,0.242548,0,0);-ms-transform:matrix(0.242345,0.000000,-0.060586,0.242548,0,0);-webkit-transform:matrix(0.242345,0.000000,-0.060586,0.242548,0,0);}
.m0{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.808061px;}
.ws2{word-spacing:-21.283160px;}
.ws4{word-spacing:-21.157965px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:11.355411px;}
.ws6{word-spacing:11.355433px;}
.ws0{word-spacing:29.339550px;}
.ws7{word-spacing:38.327260px;}
.ws3{word-spacing:79.493183px;}
._b{margin-left:-14.097825px;}
._e{margin-left:-12.865056px;}
._9{margin-left:-9.681752px;}
._7{margin-left:-7.885870px;}
._6{margin-left:-6.513101px;}
._5{margin-left:-5.127674px;}
._4{margin-left:-4.081025px;}
._3{margin-left:-2.943207px;}
._1{margin-left:-1.014741px;}
._8{width:1.566060px;}
._a{width:2.769644px;}
._d{width:53.420952px;}
._2{width:71.427100px;}
._0{width:179.477024px;}
._c{width:947.412066px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,238);}
.fc4{color:rgb(33,37,41);}
.fc2{color:rgb(160,60,80);}
.fc3{color:rgb(40,40,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:53.961564px;}
.fs1{font-size:62.975311px;}
.fs4{font-size:71.971785px;}
.fs0{font-size:80.968258px;}
.fs5{font-size:85.466494px;}
.fs7{font-size:88.092526px;}
.fs9{font-size:89.964731px;}
.fsa{font-size:94.462967px;}
.fsb{font-size:103.459440px;}
.fs3{font-size:107.957677px;}
.fs2{font-size:125.950623px;}
.fs8{font-size:134.947096px;}
.y10b{bottom:-17.992898px;}
.y0{bottom:0.000000px;}
.y1d{bottom:12.166345px;}
.ye1{bottom:14.619223px;}
.y108{bottom:15.743984px;}
.y2{bottom:16.868380px;}
.y10a{bottom:16.868435px;}
.y118{bottom:17.992361px;}
.y110{bottom:17.992497px;}
.y115{bottom:22.490597px;}
.y84{bottom:22.491071px;}
.y62{bottom:23.615587px;}
.y1b{bottom:29.238509px;}
.yc7{bottom:33.736901px;}
.yf9{bottom:39.359243px;}
.y1c{bottom:43.199990px;}
.ye0{bottom:44.982319px;}
.y117{bottom:47.230898px;}
.y10f{bottom:47.231035px;}
.y107{bottom:49.480758px;}
.y114{bottom:51.729135px;}
.y83{bottom:52.854168px;}
.y61{bottom:53.978683px;}
.y3f{bottom:56.227902px;}
.y103{bottom:56.227908px;}
.y1a{bottom:59.601605px;}
.ya5{bottom:65.224081px;}
.yf8{bottom:69.722340px;}
.ydf{bottom:75.345416px;}
.y10e{bottom:76.469572px;}
.y113{bottom:80.967672px;}
.y82{bottom:83.217264px;}
.y106{bottom:83.217532px;}
.y60{bottom:84.341780px;}
.y3e{bottom:85.466440px;}
.y3{bottom:85.719712px;}
.y40{bottom:85.719784px;}
.y63{bottom:85.719964px;}
.y102{bottom:85.719981px;}
.y96{bottom:85.720324px;}
.y119{bottom:85.720684px;}
.y116{bottom:88.839586px;}
.y19{bottom:89.964702px;}
.ya4{bottom:95.587177px;}
.yc6{bottom:96.712212px;}
.yf7{bottom:100.085436px;}
.yde{bottom:105.708512px;}
.y5f{bottom:114.704877px;}
.y3d{bottom:115.829536px;}
.y105{bottom:116.954306px;}
.y10d{bottom:118.078260px;}
.y18{bottom:120.327799px;}
.y112{bottom:122.576360px;}
.y81{bottom:122.576834px;}
.ya3{bottom:125.950274px;}
.yc5{bottom:127.075309px;}
.yf6{bottom:130.448533px;}
.ydd{bottom:136.071609px;}
.y5e{bottom:145.067973px;}
.y3c{bottom:146.192633px;}
.y17{bottom:149.566336px;}
.y104{bottom:150.691080px;}
.yc4{bottom:157.438405px;}
.y129{bottom:158.562101px;}
.ydc{bottom:166.434706px;}
.ya2{bottom:167.558962px;}
.yf5{bottom:172.057221px;}
.y5d{bottom:175.431070px;}
.y3b{bottom:176.555730px;}
.y80{bottom:186.676705px;}
.yc3{bottom:187.801502px;}
.ydb{bottom:196.797802px;}
.ya1{bottom:197.922059px;}
.y16{bottom:200.171497px;}
.yf4{bottom:202.420317px;}
.y3a{bottom:206.918826px;}
.y5c{bottom:217.039758px;}
.y7f{bottom:217.039801px;}
.yc2{bottom:218.164598px;}
.ya0{bottom:228.285155px;}
.yf3{bottom:232.783414px;}
.y15{bottom:233.908271px;}
.y128{bottom:235.032122px;}
.y39{bottom:237.281923px;}
.yda{bottom:238.406490px;}
.y5b{bottom:247.402854px;}
.y7e{bottom:247.402898px;}
.yc1{bottom:248.527695px;}
.y9f{bottom:258.648252px;}
.yf2{bottom:263.146510px;}
.y127{bottom:264.270660px;}
.y38{bottom:267.645019px;}
.y14{bottom:267.645045px;}
.yd9{bottom:268.769587px;}
.y5a{bottom:277.765951px;}
.y7d{bottom:277.765994px;}
.yc0{bottom:278.890792px;}
.y9e{bottom:289.011348px;}
.y126{bottom:292.384638px;}
.yf1{bottom:293.509607px;}
.y37{bottom:298.008116px;}
.yd8{bottom:299.132683px;}
.y13{bottom:301.381819px;}
.y59{bottom:308.129048px;}
.y7c{bottom:308.129091px;}
.ybf{bottom:309.253888px;}
.y9d{bottom:319.374445px;}
.yf0{bottom:323.872704px;}
.y36{bottom:328.371213px;}
.yd7{bottom:329.495780px;}
.y12{bottom:335.118593px;}
.y58{bottom:338.492144px;}
.ybe{bottom:339.616985px;}
.y125{bottom:341.865240px;}
.y9c{bottom:349.737542px;}
.y7b{bottom:349.737779px;}
.yef{bottom:354.235800px;}
.y57{bottom:368.855241px;}
.y11{bottom:368.855367px;}
.y35{bottom:369.979900px;}
.ybd{bottom:369.980081px;}
.yd6{bottom:371.104468px;}
.y9b{bottom:380.100638px;}
.y7a{bottom:380.100875px;}
.yee{bottom:384.598897px;}
.y111{bottom:396.099027px;}
.y56{bottom:399.218337px;}
.y34{bottom:400.342997px;}
.yd5{bottom:401.467564px;}
.y10{bottom:402.592141px;}
.y79{bottom:410.463972px;}
.ybc{bottom:411.588769px;}
.yed{bottom:414.961993px;}
.y9a{bottom:421.709326px;}
.y55{bottom:429.581434px;}
.y33{bottom:430.706094px;}
.yd4{bottom:431.830661px;}
.yf{bottom:436.328915px;}
.y78{bottom:440.827069px;}
.ybb{bottom:441.951866px;}
.yec{bottom:445.325090px;}
.y99{bottom:452.072423px;}
.y54{bottom:459.944530px;}
.yd3{bottom:462.193758px;}
.y77{bottom:471.190165px;}
.y32{bottom:472.314782px;}
.yba{bottom:472.314962px;}
.ye{bottom:481.311280px;}
.y98{bottom:482.435519px;}
.yeb{bottom:486.933778px;}
.yd2{bottom:492.556854px;}
.y53{bottom:501.553218px;}
.y76{bottom:501.553262px;}
.y31{bottom:502.677878px;}
.yb9{bottom:502.678059px;}
.y97{bottom:512.798616px;}
.yea{bottom:517.296875px;}
.yd{bottom:520.670850px;}
.y52{bottom:531.916315px;}
.y75{bottom:531.916358px;}
.y30{bottom:533.040975px;}
.yb8{bottom:533.041156px;}
.yd1{bottom:534.165542px;}
.ye9{bottom:547.659971px;}
.yc{bottom:551.033947px;}
.y123{bottom:557.780593px;}
.y51{bottom:562.279412px;}
.y74{bottom:562.279455px;}
.y2f{bottom:563.404071px;}
.yb7{bottom:563.404252px;}
.yd0{bottom:564.528639px;}
.ye8{bottom:578.023068px;}
.y95{bottom:593.767082px;}
.y2e{bottom:593.767168px;}
.yb6{bottom:593.767349px;}
.ycf{bottom:594.891735px;}
.y50{bottom:603.888100px;}
.y73{bottom:603.888143px;}
.ye7{bottom:608.386164px;}
.y101{bottom:611.760137px;}
.y94{bottom:624.130179px;}
.y2d{bottom:624.130265px;}
.yce{bottom:624.130273px;}
.y122{bottom:630.876937px;}
.y4f{bottom:634.251196px;}
.y72{bottom:634.251239px;}
.yb5{bottom:635.376037px;}
.ye6{bottom:638.749261px;}
.y4{bottom:652.244269px;}
.y93{bottom:654.493275px;}
.y2c{bottom:654.493361px;}
.ycd{bottom:654.493369px;}
.y121{bottom:660.115475px;}
.y4e{bottom:664.614293px;}
.y71{bottom:664.614336px;}
.yb4{bottom:665.739133px;}
.ye5{bottom:669.112358px;}
.yb{bottom:674.735451px;}
.y120{bottom:689.354012px;}
.y4d{bottom:694.977389px;}
.y70{bottom:694.977433px;}
.y92{bottom:696.101963px;}
.y2b{bottom:696.102049px;}
.yb3{bottom:696.102230px;}
.ye4{bottom:699.475454px;}
.y4c{bottom:725.340486px;}
.y6f{bottom:725.340529px;}
.y91{bottom:726.465060px;}
.y2a{bottom:726.465146px;}
.yb2{bottom:726.465327px;}
.y124{bottom:753.453883px;}
.y4b{bottom:755.703582px;}
.y90{bottom:756.828156px;}
.y29{bottom:756.828242px;}
.yb1{bottom:756.828423px;}
.y6e{bottom:766.949217px;}
.ya{bottom:778.194892px;}
.y4a{bottom:786.066679px;}
.y8f{bottom:787.191253px;}
.y28{bottom:787.191339px;}
.yb0{bottom:787.191520px;}
.y10c{bottom:788.570027px;}
.y6d{bottom:797.312314px;}
.yfa{bottom:801.810631px;}
.y9{bottom:814.180784px;}
.y49{bottom:816.429776px;}
.y8e{bottom:817.554350px;}
.y27{bottom:817.554435px;}
.yaf{bottom:817.554616px;}
.y6c{bottom:827.675410px;}
.y8d{bottom:847.917446px;}
.y26{bottom:847.917532px;}
.y8{bottom:850.166676px;}
.y48{bottom:858.038464px;}
.y6b{bottom:858.038507px;}
.yae{bottom:859.163304px;}
.y8c{bottom:878.280543px;}
.y100{bottom:885.028006px;}
.y47{bottom:888.401560px;}
.y6a{bottom:888.401604px;}
.y25{bottom:889.526220px;}
.yad{bottom:889.526401px;}
.y7{bottom:908.643751px;}
.y46{bottom:918.764657px;}
.y8b{bottom:919.889231px;}
.y24{bottom:919.889317px;}
.yac{bottom:919.889497px;}
.yff{bottom:921.013899px;}
.y69{bottom:927.761173px;}
.y6{bottom:946.878761px;}
.y11f{bottom:950.251731px;}
.y8a{bottom:950.252327px;}
.yab{bottom:950.252594px;}
.y45{bottom:958.124226px;}
.y23{bottom:961.498004px;}
.y11e{bottom:980.614828px;}
.y89{bottom:980.615424px;}
.yaa{bottom:980.615691px;}
.y68{bottom:991.861044px;}
.y22{bottom:991.861101px;}
.ycc{bottom:991.861109px;}
.y5{bottom:1001.982159px;}
.y88{bottom:1010.978520px;}
.yfe{bottom:1010.978629px;}
.ya9{bottom:1010.978787px;}
.y11d{bottom:1022.223515px;}
.y44{bottom:1022.224097px;}
.y67{bottom:1022.224140px;}
.y21{bottom:1022.224198px;}
.ycb{bottom:1022.224206px;}
.yfd{bottom:1041.341726px;}
.ya8{bottom:1041.341884px;}
.y11c{bottom:1052.586612px;}
.y43{bottom:1052.587194px;}
.y87{bottom:1052.587208px;}
.y66{bottom:1052.587237px;}
.y20{bottom:1052.587294px;}
.yca{bottom:1052.587303px;}
.y11b{bottom:1082.949709px;}
.ye3{bottom:1082.950119px;}
.y42{bottom:1082.950290px;}
.y86{bottom:1082.950305px;}
.y65{bottom:1082.950334px;}
.y1f{bottom:1082.950391px;}
.yc9{bottom:1082.950399px;}
.yfc{bottom:1082.950414px;}
.ya7{bottom:1082.950572px;}
.y11a{bottom:1113.312805px;}
.ye2{bottom:1113.313215px;}
.y41{bottom:1113.313387px;}
.y85{bottom:1113.313402px;}
.y64{bottom:1113.313430px;}
.y1e{bottom:1113.313487px;}
.yc8{bottom:1113.313496px;}
.yfb{bottom:1113.313510px;}
.ya6{bottom:1113.313668px;}
.y1{bottom:1154.050869px;}
.y109{bottom:1176.542432px;}
.hb{height:39.101055px;}
.ha{height:42.519725px;}
.h14{height:43.857417px;}
.h11{height:47.877227px;}
.h2{height:48.356036px;}
.h5{height:50.521698px;}
.h8{height:53.978838px;}
.h10{height:54.716830px;}
.h1b{height:57.739083px;}
.h3{height:61.556434px;}
.h9{height:68.565161px;}
.he{height:70.671885px;}
.h16{height:85.466494px;}
.h19{height:89.739819px;}
.h1a{height:98.286468px;}
.h7{height:102.559793px;}
.h6{height:119.653092px;}
.h12{height:128.199741px;}
.h15{height:387.972405px;}
.h17{height:392.471001px;}
.h13{height:567.902086px;}
.h18{height:1134.679165px;}
.hf{height:1134.679525px;}
.hd{height:1134.679885px;}
.hc{height:1134.680065px;}
.h4{height:1134.680137px;}
.h0{height:1263.599850px;}
.h1{height:1263.750000px;}
.w6{width:383.154856px;}
.w5{width:383.154900px;}
.w4{width:766.309720px;}
.w2{width:788.782215px;}
.w3{width:806.760038px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:11.236212px;}
.x26{left:14.607077px;}
.x4c{left:15.663276px;}
.x32{left:17.977940px;}
.x2{left:22.472427px;}
.x30{left:31.461397px;}
.x33{left:35.394072px;}
.x3{left:43.200001px;}
.x44{left:45.987467px;}
.x50{left:50.450574px;}
.x1{left:52.188973px;}
.x54{left:53.933824px;}
.x31{left:63.425186px;}
.x12{left:65.170037px;}
.x2f{left:73.035387px;}
.x13{left:75.590465px;}
.x11{left:78.653493px;}
.x6{left:87.642464px;}
.x28{left:89.398122px;}
.x4a{left:92.271693px;}
.x5{left:94.384192px;}
.x5d{left:98.878677px;}
.x3c{left:106.357293px;}
.x3d{left:112.867537px;}
.x29{left:129.392019px;}
.x3a{left:141.879345px;}
.x4d{left:143.126787px;}
.x3b{left:148.389588px;}
.x45{left:162.677723px;}
.x46{left:171.868937px;}
.x47{left:176.767926px;}
.x48{left:182.251204px;}
.x4e{left:187.150187px;}
.x4{left:188.768384px;}
.x4f{left:191.577258px;}
.x40{left:194.224125px;}
.x41{left:205.343461px;}
.xd{left:206.481707px;}
.x7{left:221.412416px;}
.x8{left:229.381168px;}
.x3e{left:234.923904px;}
.xe{left:264.221178px;}
.x4b{left:266.635122px;}
.xf{left:269.758377px;}
.x59{left:274.815428px;}
.x5a{left:280.360479px;}
.x51{left:295.804401px;}
.x52{left:300.006751px;}
.x2a{left:303.732115px;}
.x14{left:310.646872px;}
.x15{left:318.181852px;}
.x2e{left:334.733818px;}
.x55{left:360.421602px;}
.x53{left:361.423794px;}
.x27{left:366.108736px;}
.x9{left:377.371764px;}
.xa{left:384.774230px;}
.x56{left:397.467193px;}
.x57{left:406.197684px;}
.x34{left:415.080321px;}
.x35{left:421.590556px;}
.x5e{left:429.436977px;}
.x5f{left:435.665210px;}
.x2d{left:436.905487px;}
.x58{left:438.736514px;}
.x10{left:445.069812px;}
.x49{left:446.580068px;}
.x36{left:478.557931px;}
.x21{left:483.398612px;}
.x37{left:488.277214px;}
.x5b{left:495.578970px;}
.x22{left:498.792169px;}
.x5c{left:501.124004px;}
.x24{left:508.823801px;}
.x25{left:520.403808px;}
.xb{left:523.933196px;}
.x42{left:527.597069px;}
.xc{left:531.335662px;}
.x43{left:533.484833px;}
.x2b{left:565.357096px;}
.x1b{left:594.187305px;}
.x1c{left:600.751478px;}
.x1d{left:606.884178px;}
.x38{left:609.259391px;}
.x39{left:616.255003px;}
.x1e{left:617.304593px;}
.x16{left:626.322778px;}
.x17{left:641.716301px;}
.x2c{left:645.450230px;}
.x19{left:656.471717px;}
.x1a{left:662.981986px;}
.x23{left:670.011273px;}
.x1f{left:679.458704px;}
.x20{left:685.968973px;}
.x18{left:715.969539px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-19.384944pt;}
.ws2{word-spacing:-18.918365pt;}
.ws4{word-spacing:-18.807080pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:10.093699pt;}
.ws6{word-spacing:10.093719pt;}
.ws0{word-spacing:26.079600pt;}
.ws7{word-spacing:34.068675pt;}
.ws3{word-spacing:70.660607pt;}
._b{margin-left:-12.531400pt;}
._e{margin-left:-11.435605pt;}
._9{margin-left:-8.606001pt;}
._7{margin-left:-7.009662pt;}
._6{margin-left:-5.789423pt;}
._5{margin-left:-4.557933pt;}
._4{margin-left:-3.627578pt;}
._3{margin-left:-2.616184pt;}
._1{margin-left:-0.901992pt;}
._8{width:1.392054pt;}
._a{width:2.461906pt;}
._d{width:47.485290pt;}
._2{width:63.490755pt;}
._0{width:159.535132pt;}
._c{width:842.144058pt;}
.fs6{font-size:47.965834pt;}
.fs1{font-size:55.978055pt;}
.fs4{font-size:63.974920pt;}
.fs0{font-size:71.971785pt;}
.fs5{font-size:75.970217pt;}
.fs7{font-size:78.304467pt;}
.fs9{font-size:79.968649pt;}
.fsa{font-size:83.967082pt;}
.fsb{font-size:91.963947pt;}
.fs3{font-size:95.962379pt;}
.fs2{font-size:111.956109pt;}
.fs8{font-size:119.952974pt;}
.y10b{bottom:-15.993687pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:10.814529pt;}
.ye1{bottom:12.994865pt;}
.y108{bottom:13.994652pt;}
.y2{bottom:14.994116pt;}
.y10a{bottom:14.994164pt;}
.y118{bottom:15.993209pt;}
.y110{bottom:15.993331pt;}
.y115{bottom:19.991642pt;}
.y84{bottom:19.992063pt;}
.y62{bottom:20.991633pt;}
.y1b{bottom:25.989786pt;}
.yc7{bottom:29.988356pt;}
.yf9{bottom:34.985994pt;}
.y1c{bottom:38.399991pt;}
.ye0{bottom:39.984284pt;}
.y117{bottom:41.983020pt;}
.y10f{bottom:41.983142pt;}
.y107{bottom:43.982896pt;}
.y114{bottom:45.981453pt;}
.y83{bottom:46.981482pt;}
.y61{bottom:47.981052pt;}
.y3f{bottom:49.980358pt;}
.y103{bottom:49.980363pt;}
.y1a{bottom:52.979205pt;}
.ya5{bottom:57.976961pt;}
.yf8{bottom:61.975413pt;}
.ydf{bottom:66.973703pt;}
.y10e{bottom:67.972953pt;}
.y113{bottom:71.971264pt;}
.y82{bottom:73.970902pt;}
.y106{bottom:73.971139pt;}
.y60{bottom:74.970471pt;}
.y3e{bottom:75.970169pt;}
.y3{bottom:76.195300pt;}
.y40{bottom:76.195364pt;}
.y63{bottom:76.195524pt;}
.y102{bottom:76.195539pt;}
.y96{bottom:76.195844pt;}
.y119{bottom:76.196164pt;}
.y116{bottom:78.968521pt;}
.y19{bottom:79.968624pt;}
.ya4{bottom:84.966380pt;}
.yc6{bottom:85.966411pt;}
.yf7{bottom:88.964832pt;}
.yde{bottom:93.963122pt;}
.y5f{bottom:101.959890pt;}
.y3d{bottom:102.959588pt;}
.y105{bottom:103.959383pt;}
.y10d{bottom:104.958453pt;}
.y18{bottom:106.958043pt;}
.y112{bottom:108.956764pt;}
.y81{bottom:108.957186pt;}
.ya3{bottom:111.955799pt;}
.yc5{bottom:112.955830pt;}
.yf6{bottom:115.954251pt;}
.ydd{bottom:120.952541pt;}
.y5e{bottom:128.949310pt;}
.y3c{bottom:129.949007pt;}
.y17{bottom:132.947854pt;}
.y104{bottom:133.947627pt;}
.yc4{bottom:139.945249pt;}
.y129{bottom:140.944090pt;}
.ydc{bottom:147.941961pt;}
.ya2{bottom:148.941300pt;}
.yf5{bottom:152.939752pt;}
.y5d{bottom:155.938729pt;}
.y3b{bottom:156.938426pt;}
.y80{bottom:165.934848pt;}
.yc3{bottom:166.934668pt;}
.ydb{bottom:174.931380pt;}
.ya1{bottom:175.930719pt;}
.y16{bottom:177.930220pt;}
.yf4{bottom:179.929171pt;}
.y3a{bottom:183.927845pt;}
.y5c{bottom:192.924229pt;}
.y7f{bottom:192.924268pt;}
.yc2{bottom:193.924087pt;}
.ya0{bottom:202.920138pt;}
.yf3{bottom:206.918590pt;}
.y15{bottom:207.918463pt;}
.y128{bottom:208.917442pt;}
.y39{bottom:210.917265pt;}
.yda{bottom:211.916880pt;}
.y5b{bottom:219.913648pt;}
.y7e{bottom:219.913687pt;}
.yc1{bottom:220.913507pt;}
.y9f{bottom:229.909557pt;}
.yf2{bottom:233.908009pt;}
.y127{bottom:234.907253pt;}
.y38{bottom:237.906684pt;}
.y14{bottom:237.906707pt;}
.yd9{bottom:238.906299pt;}
.y5a{bottom:246.903067pt;}
.y7d{bottom:246.903106pt;}
.yc0{bottom:247.902926pt;}
.y9e{bottom:256.898976pt;}
.y126{bottom:259.897456pt;}
.yf1{bottom:260.897428pt;}
.y37{bottom:264.896103pt;}
.yd8{bottom:265.895719pt;}
.y13{bottom:267.894950pt;}
.y59{bottom:273.892487pt;}
.y7c{bottom:273.892525pt;}
.ybf{bottom:274.892345pt;}
.y9d{bottom:283.888396pt;}
.yf0{bottom:287.886848pt;}
.y36{bottom:291.885522pt;}
.yd7{bottom:292.885138pt;}
.y12{bottom:297.883194pt;}
.y58{bottom:300.881906pt;}
.ybe{bottom:301.881764pt;}
.y125{bottom:303.880213pt;}
.y9c{bottom:310.877815pt;}
.y7b{bottom:310.878026pt;}
.yef{bottom:314.876267pt;}
.y57{bottom:327.871325pt;}
.y11{bottom:327.871437pt;}
.y35{bottom:328.871023pt;}
.ybd{bottom:328.871183pt;}
.yd6{bottom:329.870638pt;}
.y9b{bottom:337.867234pt;}
.y7a{bottom:337.867445pt;}
.yee{bottom:341.865686pt;}
.y111{bottom:352.088024pt;}
.y56{bottom:354.860744pt;}
.y34{bottom:355.860442pt;}
.yd5{bottom:356.860057pt;}
.y10{bottom:357.859681pt;}
.y79{bottom:364.856864pt;}
.ybc{bottom:365.856684pt;}
.yed{bottom:368.855105pt;}
.y9a{bottom:374.852734pt;}
.y55{bottom:381.850163pt;}
.y33{bottom:382.849861pt;}
.yd4{bottom:383.849476pt;}
.yf{bottom:387.847924pt;}
.y78{bottom:391.846283pt;}
.ybb{bottom:392.846103pt;}
.yec{bottom:395.844524pt;}
.y99{bottom:401.842153pt;}
.y54{bottom:408.839583pt;}
.yd3{bottom:410.838896pt;}
.y77{bottom:418.835702pt;}
.y32{bottom:419.835361pt;}
.yba{bottom:419.835522pt;}
.ye{bottom:427.832249pt;}
.y98{bottom:428.831573pt;}
.yeb{bottom:432.830025pt;}
.yd2{bottom:437.828315pt;}
.y53{bottom:445.825083pt;}
.y76{bottom:445.825122pt;}
.y31{bottom:446.824781pt;}
.yb9{bottom:446.824941pt;}
.y97{bottom:455.820992pt;}
.yea{bottom:459.819444pt;}
.yd{bottom:462.818533pt;}
.y52{bottom:472.814502pt;}
.y75{bottom:472.814541pt;}
.y30{bottom:473.814200pt;}
.yb8{bottom:473.814361pt;}
.yd1{bottom:474.813815pt;}
.ye9{bottom:486.808863pt;}
.yc{bottom:489.807953pt;}
.y123{bottom:495.804972pt;}
.y51{bottom:499.803921pt;}
.y74{bottom:499.803960pt;}
.y2f{bottom:500.803619pt;}
.yb7{bottom:500.803780pt;}
.yd0{bottom:501.803234pt;}
.ye8{bottom:513.798282pt;}
.y95{bottom:527.792962pt;}
.y2e{bottom:527.793038pt;}
.yb6{bottom:527.793199pt;}
.ycf{bottom:528.792654pt;}
.y50{bottom:536.789422pt;}
.y73{bottom:536.789460pt;}
.ye7{bottom:540.787702pt;}
.y101{bottom:543.786789pt;}
.y94{bottom:554.782381pt;}
.y2d{bottom:554.782457pt;}
.yce{bottom:554.782465pt;}
.y122{bottom:560.779500pt;}
.y4f{bottom:563.778841pt;}
.y72{bottom:563.778880pt;}
.yb5{bottom:564.778699pt;}
.ye6{bottom:567.777121pt;}
.y4{bottom:579.772683pt;}
.y93{bottom:581.771800pt;}
.y2c{bottom:581.771877pt;}
.ycd{bottom:581.771884pt;}
.y121{bottom:586.769311pt;}
.y4e{bottom:590.768260pt;}
.y71{bottom:590.768299pt;}
.yb4{bottom:591.768119pt;}
.ye5{bottom:594.766540pt;}
.yb{bottom:599.764846pt;}
.y120{bottom:612.759122pt;}
.y4d{bottom:617.757679pt;}
.y70{bottom:617.757718pt;}
.y92{bottom:618.757301pt;}
.y2b{bottom:618.757377pt;}
.yb3{bottom:618.757538pt;}
.ye4{bottom:621.755959pt;}
.y4c{bottom:644.747099pt;}
.y6f{bottom:644.747137pt;}
.y91{bottom:645.746720pt;}
.y2a{bottom:645.746796pt;}
.yb2{bottom:645.746957pt;}
.y124{bottom:669.736785pt;}
.y4b{bottom:671.736518pt;}
.y90{bottom:672.736139pt;}
.y29{bottom:672.736215pt;}
.yb1{bottom:672.736376pt;}
.y6e{bottom:681.732638pt;}
.ya{bottom:691.728792pt;}
.y4a{bottom:698.725937pt;}
.y8f{bottom:699.725558pt;}
.y28{bottom:699.725635pt;}
.yb0{bottom:699.725795pt;}
.y10c{bottom:700.951135pt;}
.y6d{bottom:708.722057pt;}
.yfa{bottom:712.720561pt;}
.y9{bottom:723.716252pt;}
.y49{bottom:725.715356pt;}
.y8e{bottom:726.714977pt;}
.y27{bottom:726.715054pt;}
.yaf{bottom:726.715215pt;}
.y6c{bottom:735.711476pt;}
.y8d{bottom:753.704397pt;}
.y26{bottom:753.704473pt;}
.y8{bottom:755.703712pt;}
.y48{bottom:762.700857pt;}
.y6b{bottom:762.700895pt;}
.yae{bottom:763.700715pt;}
.y8c{bottom:780.693816pt;}
.y100{bottom:786.691561pt;}
.y47{bottom:789.690276pt;}
.y6a{bottom:789.690314pt;}
.y25{bottom:790.689973pt;}
.yad{bottom:790.690134pt;}
.y7{bottom:807.683334pt;}
.y46{bottom:816.679695pt;}
.y8b{bottom:817.679316pt;}
.y24{bottom:817.679392pt;}
.yac{bottom:817.679553pt;}
.yff{bottom:818.679021pt;}
.y69{bottom:824.676598pt;}
.y6{bottom:841.670010pt;}
.y11f{bottom:844.668205pt;}
.y8a{bottom:844.668735pt;}
.yab{bottom:844.668972pt;}
.y45{bottom:851.665979pt;}
.y23{bottom:854.664893pt;}
.y11e{bottom:871.657624pt;}
.y89{bottom:871.658155pt;}
.yaa{bottom:871.658392pt;}
.y68{bottom:881.654261pt;}
.y22{bottom:881.654312pt;}
.ycc{bottom:881.654319pt;}
.y5{bottom:890.650808pt;}
.y88{bottom:898.647574pt;}
.yfe{bottom:898.647671pt;}
.ya9{bottom:898.647811pt;}
.y11d{bottom:908.643125pt;}
.y44{bottom:908.643642pt;}
.y67{bottom:908.643680pt;}
.y21{bottom:908.643731pt;}
.ycb{bottom:908.643739pt;}
.yfd{bottom:925.637090pt;}
.ya8{bottom:925.637230pt;}
.y11c{bottom:935.632544pt;}
.y43{bottom:935.633061pt;}
.y87{bottom:935.633074pt;}
.y66{bottom:935.633100pt;}
.y20{bottom:935.633150pt;}
.yca{bottom:935.633158pt;}
.y11b{bottom:962.621963pt;}
.ye3{bottom:962.622328pt;}
.y42{bottom:962.622480pt;}
.y86{bottom:962.622493pt;}
.y65{bottom:962.622519pt;}
.y1f{bottom:962.622570pt;}
.yc9{bottom:962.622577pt;}
.yfc{bottom:962.622590pt;}
.ya7{bottom:962.622730pt;}
.y11a{bottom:989.611382pt;}
.ye2{bottom:989.611747pt;}
.y41{bottom:989.611899pt;}
.y85{bottom:989.611913pt;}
.y64{bottom:989.611938pt;}
.y1e{bottom:989.611989pt;}
.yc8{bottom:989.611996pt;}
.yfb{bottom:989.612009pt;}
.ya6{bottom:989.612150pt;}
.y1{bottom:1025.822995pt;}
.y109{bottom:1045.815495pt;}
.hb{height:34.756493pt;}
.ha{height:37.795311pt;}
.h14{height:38.984371pt;}
.h11{height:42.557535pt;}
.h2{height:42.983143pt;}
.h5{height:44.908176pt;}
.h8{height:47.981190pt;}
.h10{height:48.637183pt;}
.h1b{height:51.323629pt;}
.h3{height:54.716830pt;}
.h9{height:60.946810pt;}
.he{height:62.819453pt;}
.h16{height:75.970217pt;}
.h19{height:79.768728pt;}
.h1a{height:87.365750pt;}
.h7{height:91.164260pt;}
.h6{height:106.358304pt;}
.h12{height:113.955325pt;}
.h15{height:344.864360pt;}
.h17{height:348.863112pt;}
.h13{height:504.801854pt;}
.h18{height:1008.603702pt;}
.hf{height:1008.604022pt;}
.hd{height:1008.604342pt;}
.hc{height:1008.604502pt;}
.h4{height:1008.604566pt;}
.h0{height:1123.199867pt;}
.h1{height:1123.333333pt;}
.w6{width:340.582095pt;}
.w5{width:340.582133pt;}
.w4{width:681.164196pt;}
.w2{width:701.139747pt;}
.w3{width:717.120034pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:9.987744pt;}
.x26{left:12.984069pt;}
.x4c{left:13.922912pt;}
.x32{left:15.980391pt;}
.x2{left:19.975490pt;}
.x30{left:27.965687pt;}
.x33{left:31.461397pt;}
.x3{left:38.400001pt;}
.x44{left:40.877749pt;}
.x50{left:44.844955pt;}
.x1{left:46.390198pt;}
.x54{left:47.941177pt;}
.x31{left:56.377943pt;}
.x12{left:57.928922pt;}
.x2f{left:64.920344pt;}
.x13{left:67.191525pt;}
.x11{left:69.914216pt;}
.x6{left:77.904412pt;}
.x28{left:79.464998pt;}
.x4a{left:82.019283pt;}
.x5{left:83.897060pt;}
.x5d{left:87.892158pt;}
.x3c{left:94.539816pt;}
.x3d{left:100.326699pt;}
.x29{left:115.015128pt;}
.x3a{left:126.114973pt;}
.x4d{left:127.223811pt;}
.x3b{left:131.901856pt;}
.x45{left:144.602420pt;}
.x46{left:152.772388pt;}
.x47{left:157.127046pt;}
.x48{left:162.001070pt;}
.x4e{left:166.355722pt;}
.x4{left:167.794119pt;}
.x4f{left:170.290896pt;}
.x40{left:172.643667pt;}
.x41{left:182.527521pt;}
.xd{left:183.539295pt;}
.x7{left:196.811037pt;}
.x8{left:203.894371pt;}
.x3e{left:208.821248pt;}
.xe{left:234.863269pt;}
.x4b{left:237.008997pt;}
.xf{left:239.785224pt;}
.x59{left:244.280380pt;}
.x5a{left:249.209315pt;}
.x51{left:262.937245pt;}
.x52{left:266.672667pt;}
.x2a{left:269.984102pt;}
.x14{left:276.130553pt;}
.x15{left:282.828313pt;}
.x2e{left:297.541171pt;}
.x55{left:320.374757pt;}
.x53{left:321.265595pt;}
.x27{left:325.429988pt;}
.x9{left:335.441568pt;}
.xa{left:342.021538pt;}
.x56{left:353.304172pt;}
.x57{left:361.064608pt;}
.x34{left:368.960285pt;}
.x35{left:374.747161pt;}
.x5e{left:381.721758pt;}
.x5f{left:387.257964pt;}
.x2d{left:388.360433pt;}
.x58{left:389.988012pt;}
.x10{left:395.617611pt;}
.x49{left:396.960060pt;}
.x36{left:425.384827pt;}
.x21{left:429.687655pt;}
.x37{left:434.024191pt;}
.x5b{left:440.514640pt;}
.x22{left:443.370817pt;}
.x5c{left:445.443559pt;}
.x24{left:452.287823pt;}
.x25{left:462.581163pt;}
.xb{left:465.718396pt;}
.x42{left:468.975172pt;}
.xc{left:472.298366pt;}
.x43{left:474.208741pt;}
.x2b{left:502.539641pt;}
.x1b{left:528.166493pt;}
.x1c{left:534.001314pt;}
.x1d{left:539.452602pt;}
.x38{left:541.563903pt;}
.x39{left:547.782225pt;}
.x1e{left:548.715194pt;}
.x16{left:556.731358pt;}
.x17{left:570.414490pt;}
.x2c{left:573.733537pt;}
.x19{left:583.530415pt;}
.x1a{left:589.317321pt;}
.x23{left:595.565576pt;}
.x1f{left:603.963293pt;}
.x20{left:609.750198pt;}
.x18{left:636.417368pt;}
}




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