
    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_adbf2ce800fb0b6829fb51f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.703613;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_903f5069b0cedba68f45e6bd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.044434;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1b8f1aa1aad51e2d11509679.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.003418;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:ff17;src:url('chunks/assets/font_321eea651dc35e28235a23c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666992;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.538086px;}
.ls2{letter-spacing:1.722656px;}
.ls5{letter-spacing:2.214844px;}
.ls4{letter-spacing:2.368652px;}
.ls1{letter-spacing:2.460938px;}
.ls0{letter-spacing:3.445313px;}
.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;}
}
.ws8{word-spacing:-37.929198px;}
.ws2{word-spacing:-3.445313px;}
.ws3{word-spacing:-2.460938px;}
.ws5{word-spacing:-2.368652px;}
.ws6{word-spacing:-2.214844px;}
.ws4{word-spacing:-1.722656px;}
.ws7{word-spacing:-1.538086px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:2540.625097px;}
._1{margin-left:-3.445313px;}
._4{margin-left:-1.722656px;}
._2{width:1.599609px;}
._0{width:3.445311px;}
._3{width:5.291017px;}
.fc7{color:rgb(245,135,31);}
.fc6{color:rgb(142,144,140);}
.fc3{color:rgb(77,77,76);}
.fc4{color:rgb(137,89,168);}
.fc2{color:transparent;}
.fc1{color:rgb(201,174,117);}
.fc5{color:rgb(113,140,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000002px;}
.fs2{font-size:62.999997px;}
.fs4{font-size:73.665001px;}
.fs3{font-size:94.499996px;}
.fs1{font-size:125.999995px;}
.y0{bottom:0.000000px;}
.y73{bottom:10.125000px;}
.y58{bottom:23.624999px;}
.y2{bottom:25.379923px;}
.y90{bottom:33.749999px;}
.y72{bottom:34.874999px;}
.y2a{bottom:38.249998px;}
.y3{bottom:42.255021px;}
.y57{bottom:44.999998px;}
.y71{bottom:59.624998px;}
.y29{bottom:62.999997px;}
.y56{bottom:66.374997px;}
.y8f{bottom:80.999997px;}
.y70{bottom:84.374996px;}
.y28{bottom:87.749996px;}
.y55{bottom:109.124995px;}
.y27{bottom:112.499995px;}
.y8e{bottom:121.499995px;}
.y54{bottom:130.499995px;}
.y26{bottom:137.249994px;}
.y8d{bottom:146.249994px;}
.y6f{bottom:149.624994px;}
.y53{bottom:151.874994px;}
.y25{bottom:161.999993px;}
.y52{bottom:173.249993px;}
.y24{bottom:186.749992px;}
.y6e{bottom:190.124992px;}
.y51{bottom:194.624992px;}
.y23{bottom:211.499991px;}
.y6d{bottom:214.874991px;}
.y50{bottom:215.999991px;}
.y8c{bottom:227.249991px;}
.y22{bottom:236.249990px;}
.y4f{bottom:237.374990px;}
.y6c{bottom:255.374989px;}
.y4e{bottom:258.749989px;}
.y21{bottom:260.999989px;}
.y8b{bottom:267.749989px;}
.y4d{bottom:280.124988px;}
.y20{bottom:285.749988px;}
.y6b{bottom:295.874988px;}
.y4c{bottom:301.499987px;}
.y8a{bottom:308.249987px;}
.y1f{bottom:310.499987px;}
.y4b{bottom:322.874987px;}
.y1e{bottom:335.249986px;}
.y6a{bottom:336.374986px;}
.y4a{bottom:344.249986px;}
.y89{bottom:348.749985px;}
.y1d{bottom:359.999985px;}
.y69{bottom:361.124985px;}
.y49{bottom:365.624985px;}
.y96{bottom:367.380007px;}
.y1c{bottom:384.749984px;}
.y68{bottom:385.874984px;}
.y48{bottom:386.999984px;}
.y88{bottom:389.249984px;}
.y47{bottom:408.374983px;}
.y1b{bottom:409.499983px;}
.y67{bottom:410.624983px;}
.y46{bottom:429.749982px;}
.y1a{bottom:434.249982px;}
.y66{bottom:435.374982px;}
.y45{bottom:451.124981px;}
.y19{bottom:458.999981px;}
.y65{bottom:460.124981px;}
.y87{bottom:470.249980px;}
.y44{bottom:472.499980px;}
.y18{bottom:483.749980px;}
.y43{bottom:493.874979px;}
.y64{bottom:500.624979px;}
.y17{bottom:508.499979px;}
.y86{bottom:510.749979px;}
.y42{bottom:515.249979px;}
.y16{bottom:533.249978px;}
.y41{bottom:536.624978px;}
.y63{bottom:541.124977px;}
.y85{bottom:551.249977px;}
.y15{bottom:557.999977px;}
.y62{bottom:565.874976px;}
.y40{bottom:579.374976px;}
.y14{bottom:582.749976px;}
.y61{bottom:590.624975px;}
.y84{bottom:591.749975px;}
.y3f{bottom:600.749975px;}
.y13{bottom:607.499975px;}
.y60{bottom:615.374974px;}
.y83{bottom:616.499974px;}
.y3e{bottom:622.124974px;}
.y82{bottom:641.249973px;}
.y3d{bottom:643.499973px;}
.y12{bottom:647.999973px;}
.y5f{bottom:655.874973px;}
.y3c{bottom:664.874972px;}
.y81{bottom:665.999972px;}
.y5e{bottom:680.624972px;}
.y3b{bottom:686.249971px;}
.y11{bottom:689.624971px;}
.y80{bottom:690.749971px;}
.y95{bottom:692.999971px;}
.y3a{bottom:707.624971px;}
.y7f{bottom:715.499970px;}
.y5d{bottom:721.124970px;}
.y39{bottom:728.999970px;}
.y10{bottom:736.874969px;}
.y7e{bottom:740.249969px;}
.y5c{bottom:745.874969px;}
.y38{bottom:750.374969px;}
.yf{bottom:761.624968px;}
.y5b{bottom:770.624968px;}
.y37{bottom:771.749968px;}
.y7d{bottom:781.874967px;}
.y94{bottom:782.504990px;}
.ye{bottom:786.374967px;}
.y36{bottom:793.124967px;}
.yd{bottom:811.124966px;}
.y5a{bottom:812.249966px;}
.y35{bottom:814.499966px;}
.y7c{bottom:829.124965px;}
.y34{bottom:835.874965px;}
.yc{bottom:851.624965px;}
.y7b{bottom:853.874964px;}
.yb{bottom:876.374963px;}
.y7a{bottom:878.624963px;}
.ya{bottom:901.124962px;}
.y59{bottom:904.004985px;}
.y79{bottom:919.124962px;}
.y9{bottom:925.874961px;}
.y33{bottom:941.624961px;}
.y78{bottom:943.874961px;}
.y8{bottom:950.624960px;}
.y93{bottom:958.499960px;}
.y32{bottom:966.374960px;}
.y77{bottom:968.624960px;}
.y7{bottom:975.374959px;}
.y31{bottom:991.124959px;}
.y76{bottom:1009.124958px;}
.y30{bottom:1015.874958px;}
.y6{bottom:1031.624957px;}
.y75{bottom:1033.874957px;}
.y2f{bottom:1040.624957px;}
.y92{bottom:1048.004979px;}
.y2e{bottom:1065.374956px;}
.y5{bottom:1068.749955px;}
.y74{bottom:1074.374955px;}
.y2d{bottom:1090.124955px;}
.y4{bottom:1105.874954px;}
.y2c{bottom:1114.874954px;}
.y91{bottom:1138.499953px;}
.y2b{bottom:1139.624953px;}
.y1{bottom:1228.379969px;}
.h2{height:37.098634px;}
.hb{height:41.989744px;}
.h7{height:50.941404px;}
.ha{height:51.218260px;}
.h5{height:59.849998px;}
.hc{height:69.981751px;}
.h6{height:89.774996px;}
.hd{height:100.124996px;}
.h4{height:119.699995px;}
.he{height:185.624992px;}
.h9{height:295.874988px;}
.hf{height:335.249986px;}
.h8{height:869.624964px;}
.h3{height:1157.624952px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:746.999983px;}
.w2{width:809.999966px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1d5{left:18.000001px;}
.x4{left:22.715331px;}
.x10c{left:26.060668px;}
.x82{left:27.798705px;}
.x10d{left:29.613646px;}
.x20{left:31.605467px;}
.x209{left:32.689818px;}
.x10f{left:34.573973px;}
.x1d6{left:36.354067px;}
.x201{left:37.819334px;}
.x128{left:38.980589px;}
.xae{left:40.334105px;}
.x3{left:41.999997px;}
.x1df{left:43.294920px;}
.x48{left:44.540770px;}
.x204{left:46.532591px;}
.x1d7{left:47.776020px;}
.x3c{left:48.878171px;}
.x5{left:50.908445px;}
.x49{left:52.446531px;}
.xec{left:53.976926px;}
.x1{left:56.671877px;}
.xaf{left:57.845212px;}
.x1f7{left:59.398679px;}
.x83{left:60.936765px;}
.x129{left:62.151853px;}
.xb0{left:63.505368px;}
.x1d8{left:64.731082px;}
.x1e2{left:66.212400px;}
.x6{left:67.550534px;}
.x84{left:68.857907px;}
.x1d9{left:69.880975px;}
.xb1{left:71.857175px;}
.x4a{left:74.225827px;}
.xd1{left:75.910031px;}
.x85{left:77.517331px;}
.x1f9{left:78.520383px;}
.x4b{left:79.609128px;}
.x86{left:81.608639px;}
.x110{left:83.054440px;}
.x169{left:85.161617px;}
.x10e{left:86.753536px;}
.x4c{left:87.960934px;}
.x87{left:89.960446px;}
.x111{left:91.713863px;}
.x147{left:93.013546px;}
.x1c4{left:94.220394px;}
.x7{left:95.266841px;}
.xed{left:96.820308px;}
.x88{left:98.812130px;}
.xee{left:100.911617px;}
.x1da{left:101.945139px;}
.x1c5{left:103.298946px;}
.x4d{left:104.526119px;}
.x12a{left:105.841183px;}
.x3d{left:107.386958px;}
.xef{left:109.263423px;}
.x21{left:110.663081px;}
.x8{left:111.939692px;}
.x4e{left:114.000728px;}
.x168{left:116.347596px;}
.x171{left:117.352656px;}
.x1ae{left:119.248896px;}
.xd2{left:120.545283px;}
.x9{left:121.829584px;}
.x4f{left:123.336909px;}
.x3e{left:124.844233px;}
.x15a{left:126.020869px;}
.x22{left:127.335932px;}
.x1e8{left:128.477412px;}
.x89{left:129.942988px;}
.xf0{left:131.111933px;}
.x50{left:132.303950px;}
.x1ad{left:133.748652px;}
.x12b{left:135.687739px;}
.x23{left:137.687250px;}
.x1b6{left:138.736444px;}
.x51{left:140.778803px;}
.x3f{left:141.840082px;}
.x12c{left:143.593500px;}
.x24{left:145.039300px;}
.x112{left:146.254389px;}
.xf1{left:147.869379px;}
.xd3{left:149.538202px;}
.xf2{left:151.422357px;}
.x12d{left:153.045038px;}
.xb2{left:154.959955px;}
.x202{left:156.044305px;}
.xa{left:157.128655px;}
.xb3{left:159.051263px;}
.x1c3{left:160.403680px;}
.x15b{left:161.512200px;}
.x52{left:162.996453px;}
.xb{left:164.449944px;}
.x1af{left:165.587579px;}
.x8a{left:166.657098px;}
.xf3{left:167.972161px;}
.x1ee{left:169.049920px;}
.x8b{left:170.210076px;}
.x53{left:171.655877px;}
.x1fc{left:172.781975px;}
.x15c{left:173.816888px;}
.x16a{left:175.647209px;}
.x12e{left:177.208367px;}
.x207{left:178.376213px;}
.x113{left:179.623162px;}
.xd4{left:180.722893px;}
.x15d{left:182.783928px;}
.x8c{left:183.806755px;}
.x1c6{left:184.943840px;}
.x1b7{left:186.747795px;}
.x8d{left:187.898064px;}
.x1f4{left:188.966484px;}
.x1b9{left:190.094230px;}
.x16b{left:191.197258px;}
.xf4{left:192.473869px;}
.x54{left:193.642814px;}
.x25{left:195.596183px;}
.x40{left:197.165031px;}
.x20a{left:198.353425px;}
.xc{left:199.426017px;}
.x12f{left:200.579582px;}
.x1c7{left:201.701286px;}
.x26{left:202.917472px;}
.xf5{left:204.332511px;}
.x55{left:206.662711px;}
.xf6{left:208.423820px;}
.xd{left:209.469718px;}
.x19d{left:210.674918px;}
.x1b8{left:212.133902px;}
.x8e{left:213.514884px;}
.xd5{left:214.568473px;}
.x1d4{left:215.975821px;}
.xf7{left:217.390860px;}
.x148{left:218.475211px;}
.x208{left:219.481558px;}
.x114{left:220.590079px;}
.xd6{left:222.474234px;}
.x172{left:223.626700px;}
.x1ef{left:224.858273px;}
.xe{left:226.142568px;}
.x56{left:227.180777px;}
.x1e7{left:228.520010px;}
.x115{left:229.526358px;}
.x57{left:231.272085px;}
.x41{left:232.541006px;}
.x27{left:233.663808px;}
.xb4{left:235.140371px;}
.x173{left:236.192862px;}
.x116{left:237.416739px;}
.xd7{left:239.254751px;}
.xf{left:241.661855px;}
.x28{left:244.015126px;}
.x1f1{left:245.039053px;}
.x117{left:246.076162px;}
.x1fe{left:247.156118px;}
.xb5{left:248.506338px;}
.x42{left:249.998280px;}
.x205{left:251.161733px;}
.x1ca{left:252.242788px;}
.x15e{left:253.597402px;}
.x130{left:254.943227px;}
.xb6{left:256.858144px;}
.x10{left:258.657704px;}
.xf8{left:260.380360px;}
.x29{left:261.856923px;}
.x58{left:263.195058px;}
.x118{left:264.402455px;}
.x16c{left:266.148182px;}
.xf9{left:267.578602px;}
.x11{left:269.009022px;}
.x8f{left:270.654774px;}
.x19f{left:271.776484px;}
.x149{left:272.892689px;}
.xb7{left:274.053944px;}
.x1f5{left:275.137196px;}
.x12{left:276.330311px;}
.x1f3{left:277.421259px;}
.x90{left:278.560536px;}
.x1a0{left:279.682245px;}
.x131{left:281.313710px;}
.x91{left:282.651844px;}
.x16d{left:284.566761px;}
.x2a{left:285.820301px;}
.x174{left:286.888172px;}
.xb8{left:288.373523px;}
.xfa{left:289.742420px;}
.x175{left:290.979480px;}
.x43{left:292.141833px;}
.x13{left:293.910632px;}
.x59{left:295.610217px;}
.x18e{left:296.911004px;}
.x16e{left:298.055774px;}
.x196{left:299.415887px;}
.x5a{left:300.624377px;}
.xfb{left:302.308581px;}
.x14{left:304.338854px;}
.x92{left:306.322986px;}
.x132{left:308.076404px;}
.x15f{left:309.091540px;}
.x119{left:310.583484px;}
.x15{left:311.660143px;}
.x18b{left:312.812615px;}
.xb9{left:313.951891px;}
.x93{left:315.659167px;}
.x133{left:317.012683px;}
.x16f{left:318.904528px;}
.x1a6{left:321.015007px;}
.xd8{left:322.503649px;}
.x94{left:324.510851px;}
.x160{left:326.271959px;}
.xba{left:328.186876px;}
.x1d3{left:329.831530px;}
.xd9{left:331.163072px;}
.x11a{left:332.262804px;}
.x134{left:333.885485px;}
.x44{left:335.761949px;}
.x16{left:337.822983px;}
.x1f6{left:339.075426px;}
.xbb{left:340.183946px;}
.x5b{left:341.268297px;}
.x135{left:342.314196px;}
.x2b{left:344.236802px;}
.x170{left:345.867173px;}
.x161{left:347.189927px;}
.x186{left:348.367662px;}
.x5c{left:349.620103px;}
.x95{left:350.981309px;}
.x1e0{left:352.719347px;}
.x11b{left:353.926744px;}
.x5d{left:355.003404px;}
.x14a{left:357.533555px;}
.x2c{left:358.602524px;}
.xfc{left:359.725327px;}
.x1c1{left:360.739365px;}
.x17{left:361.817123px;}
.xfd{left:363.278305px;}
.x1e6{left:364.502183px;}
.x2d{left:365.893051px;}
.x19e{left:367.780503px;}
.x136{left:368.853867px;}
.xbc{left:370.453476px;}
.x96{left:371.830063px;}
.x137{left:372.945176px;}
.x176{left:374.359115px;}
.x97{left:375.383042px;}
.x45{left:376.428939px;}
.x1c0{left:377.915390px;}
.x187{left:379.137070px;}
.x5e{left:380.466415px;}
.x138{left:382.281357px;}
.x98{left:384.234726px;}
.x1a7{left:385.445424px;}
.x46{left:386.780257px;}
.x1e9{left:387.982162px;}
.x18{left:389.195052px;}
.x1cb{left:390.339828px;}
.x139{left:391.363754px;}
.x177{left:392.470077px;}
.x47{left:394.132308px;}
.x14b{left:395.162826px;}
.x178{left:396.561385px;}
.x5f{left:397.869857px;}
.x19{left:399.623274px;}
.x2e{left:400.869124px;}
.xfe{left:402.391829px;}
.x18f{left:404.761586px;}
.x60{left:406.836898px;}
.xbd{left:408.190413px;}
.x99{left:410.028426px;}
.x1ec{left:411.125960px;}
.xbe{left:412.281721px;}
.x1e3{left:413.366072px;}
.xda{left:414.865706px;}
.x13a{left:416.057723px;}
.x1e4{left:417.284901px;}
.x9a{left:418.503279px;}
.x13b{left:420.149031px;}
.xdb{left:421.956282px;}
.x1f0{left:423.302112px;}
.x1a{left:424.371076px;}
.xdc{left:425.601545px;}
.x61{left:427.524152px;}
.x2f{left:428.708478px;}
.x18c{left:429.753284px;}
.x190{left:431.132068px;}
.x11c{left:432.399885px;}
.x2{left:434.226587px;}
.x62{left:435.429914px;}
.x14c{left:436.521955px;}
.x13c{left:437.552473px;}
.x63{left:439.521222px;}
.x1a1{left:440.542956px;}
.x1ba{left:441.929425px;}
.xdd{left:443.289533px;}
.x200{left:444.361799px;}
.x30{left:445.381329px;}
.x13d{left:446.519513px;}
.x64{left:447.873029px;}
.xff{left:449.434185px;}
.x1fa{left:450.475689px;}
.x1b0{left:451.784167px;}
.x14d{left:453.087140px;}
.x11d{left:454.486798px;}
.x65{left:456.724713px;}
.xde{left:457.916729px;}
.x11e{left:460.162335px;}
.x14e{left:461.708111px;}
.x9b{left:463.392315px;}
.x1a8{left:464.718370px;}
.x66{left:466.060894px;}
.x13e{left:467.206768px;}
.x14f{left:468.798687px;}
.x67{left:470.152203px;}
.x1cd{left:472.141832px;}
.x1b{left:474.020488px;}
.x100{left:475.727763px;}
.xbf{left:477.796489px;}
.x197{left:479.571886px;}
.x1c{left:481.341777px;}
.x68{left:483.518169px;}
.x9c{left:485.479229px;}
.x179{left:486.493266px;}
.x1d{left:488.632304px;}
.x1db{left:489.670512px;}
.x162{left:490.701030px;}
.x150{left:492.808208px;}
.xdf{left:494.453959px;}
.x1e{left:495.984354px;}
.x101{left:497.553202px;}
.x9d{left:498.845195px;}
.x31{left:500.060282px;}
.x151{left:501.467631px;}
.x1a9{left:503.255112px;}
.xc0{left:505.128275px;}
.x191{left:506.182968px;}
.x32{left:507.381571px;}
.x18d{left:508.757065px;}
.x69{left:509.942484px;}
.x192{left:511.566269px;}
.x163{left:512.772562px;}
.x1c8{left:514.166732px;}
.x6a{left:515.302713px;}
.x1bb{left:516.395853px;}
.xc1{left:517.571390px;}
.x11f{left:518.763407px;}
.xe0{left:520.609110px;}
.xc2{left:521.662699px;}
.x33{left:523.146951px;}
.x152{left:524.169779px;}
.x9e{left:525.269510px;}
.x1d0{left:526.753763px;}
.x6b{left:527.799661px;}
.xc3{left:529.568460px;}
.x9f{left:530.629739px;}
.x198{left:532.059066px;}
.x13f{left:534.075052px;}
.x102{left:535.274758px;}
.xe1{left:537.005105px;}
.xc4{left:538.043313px;}
.x34{left:539.819802px;}
.xe2{left:541.342507px;}
.xa0{left:543.126687px;}
.x1d1{left:544.341774px;}
.xe3{left:545.433816px;}
.x35{left:547.110329px;}
.x120{left:548.125466px;}
.x199{left:549.877791px;}
.x164{left:551.070900px;}
.x6c{left:552.716652px;}
.x1a2{left:554.445906px;}
.x1ce{left:555.498396px;}
.x6d{left:556.807961px;}
.x121{left:557.876931px;}
.x165{left:559.730324px;}
.xc5{left:560.791603px;}
.xe4{left:562.506569px;}
.x1bc{left:564.991676px;}
.x122{left:566.228737px;}
.xa1{left:568.043678px;}
.xc6{left:569.643287px;}
.x1dc{left:571.004493px;}
.xa2{left:572.134987px;}
.xc7{left:573.196266px;}
.x6e{left:575.049659px;}
.x1ed{left:576.723976px;}
.x17a{left:577.894019px;}
.x140{left:579.310158px;}
.xe5{left:580.425270px;}
.xc8{left:582.047950px;}
.x6f{left:583.709082px;}
.x206{left:584.741247px;}
.xe6{left:585.808570px;}
.x153{left:587.846534px;}
.x36{left:589.438452px;}
.x1f{left:590.991918px;}
.x123{left:592.037818px;}
.x1ea{left:593.246319px;}
.x141{left:594.337257px;}
.xc9{left:595.398535px;}
.x188{left:596.653174px;}
.x70{left:597.721045px;}
.x1cc{left:598.735084px;}
.x37{left:599.789770px;}
.xa3{left:600.889502px;}
.x1e1{left:601.989234px;}
.x71{left:603.104345px;}
.xca{left:604.673193px;}
.x38{left:607.141821px;}
.x1fb{left:608.372839px;}
.xa4{left:609.548926px;}
.x103{left:610.556371px;}
.xe7{left:612.394384px;}
.x166{left:613.555639px;}
.x72{left:615.509008px;}
.x142{left:616.539526px;}
.x19a{left:617.668926px;}
.x104{left:619.408055px;}
.x1f2{left:620.670385px;}
.xe8{left:621.868993px;}
.xa5{left:622.914892px;}
.x73{left:624.768285px;}
.x193{left:626.038310px;}
.xa6{left:627.252294px;}
.x74{left:628.859593px;}
.x194{left:630.129619px;}
.xa7{left:631.343602px;}
.x124{left:632.435644px;}
.x143{left:634.212133px;}
.x105{left:635.496434px;}
.x75{left:637.334447px;}
.xcb{left:638.518773px;}
.x17b{left:639.540501px;}
.xa8{left:640.987401px;}
.x39{left:642.179417px;}
.x1bd{left:643.903172px;}
.x1f8{left:645.320414px;}
.xcc{left:646.947484px;}
.x1be{left:647.994480px;}
.x3a{left:649.500706px;}
.x195{left:652.008890px;}
.x17c{left:653.275608px;}
.x76{left:655.153171px;}
.x17d{left:656.828586px;}
.x3b{left:658.390842px;}
.xe9{left:660.113499px;}
.x1c2{left:661.187967px;}
.xa9{left:662.666721px;}
.x167{left:663.958713px;}
.x189{left:665.244114px;}
.x154{left:666.450413px;}
.x77{left:668.042331px;}
.x18a{left:669.335422px;}
.x155{left:670.541721px;}
.x1aa{left:672.213845px;}
.x78{left:673.425632px;}
.x1d2{left:674.502291px;}
.x144{left:675.625095px;}
.x79{left:676.978610px;}
.x17e{left:678.738620px;}
.xaa{left:680.354709px;}
.xcd{left:682.369601px;}
.x145{left:684.053806px;}
.xab{left:685.738009px;}
.x17f{left:687.090426px;}
.x106{left:688.298922px;}
.x1bf{left:689.684298px;}
.xce{left:691.029025px;}
.x125{left:692.505588px;}
.xac{left:694.089816px;}
.x180{left:695.942110px;}
.x1eb{left:696.951759px;}
.xad{left:698.181124px;}
.xea{left:699.980684px;}
.x126{left:701.357272px;}
.x7a{left:702.703096px;}
.x1a3{left:704.024757px;}
.x181{left:705.278291px;}
.x7b{left:706.794405px;}
.x107{left:708.417085px;}
.x7c{left:710.347383px;}
.x108{left:712.508393px;}
.x1b4{left:713.859717px;}
.x127{left:715.369234px;}
.xeb{left:716.899629px;}
.x1a4{left:718.113624px;}
.x7d{left:719.199067px;}
.x1c9{left:720.408667px;}
.x109{left:721.475434px;}
.x19b{left:722.804786px;}
.x7e{left:724.559297px;}
.x10a{left:726.835663px;}
.x156{left:728.004609px;}
.x1ab{left:729.269141px;}
.x10b{left:730.926972px;}
.x1dd{left:732.142061px;}
.xcf{left:733.933930px;}
.x146{left:735.356660px;}
.x7f{left:737.056244px;}
.x1b1{left:738.360327px;}
.x1a5{left:739.777563px;}
.x19c{left:741.131079px;}
.xd0{left:742.593354px;}
.x1e5{left:744.266577px;}
.x80{left:745.715668px;}
.x1b2{left:747.019751px;}
.x203{left:748.514985px;}
.x1ac{left:750.025610px;}
.x1b3{left:751.111059px;}
.x182{left:752.397552px;}
.x81{left:754.567352px;}
.x183{left:756.734955px;}
.x1cf{left:758.656469px;}
.x184{left:760.826263px;}
.x157{left:763.203705px;}
.x185{left:764.379241px;}
.x1ff{left:765.826140px;}
.x158{left:766.848968px;}
.x1fd{left:768.597992px;}
.x1b5{left:771.330296px;}
.x159{left:775.508392px;}
.x1de{left:780.130340px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.367187pt;}
.ls2{letter-spacing:1.531250pt;}
.ls5{letter-spacing:1.968750pt;}
.ls4{letter-spacing:2.105469pt;}
.ls1{letter-spacing:2.187500pt;}
.ls0{letter-spacing:3.062500pt;}
.ws8{word-spacing:-33.714842pt;}
.ws2{word-spacing:-3.062500pt;}
.ws3{word-spacing:-2.187500pt;}
.ws5{word-spacing:-2.105469pt;}
.ws6{word-spacing:-1.968750pt;}
.ws4{word-spacing:-1.531250pt;}
.ws7{word-spacing:-1.367187pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:2258.333420pt;}
._1{margin-left:-3.062500pt;}
._4{margin-left:-1.531250pt;}
._2{width:1.421875pt;}
._0{width:3.062498pt;}
._3{width:4.703126pt;}
.fs0{font-size:48.000002pt;}
.fs2{font-size:55.999998pt;}
.fs4{font-size:65.480000pt;}
.fs3{font-size:83.999997pt;}
.fs1{font-size:111.999995pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:9.000000pt;}
.y58{bottom:20.999999pt;}
.y2{bottom:22.559931pt;}
.y90{bottom:29.999999pt;}
.y72{bottom:30.999999pt;}
.y2a{bottom:33.999999pt;}
.y3{bottom:37.560019pt;}
.y57{bottom:39.999998pt;}
.y71{bottom:52.999998pt;}
.y29{bottom:55.999998pt;}
.y56{bottom:58.999998pt;}
.y8f{bottom:71.999997pt;}
.y70{bottom:74.999997pt;}
.y28{bottom:77.999997pt;}
.y55{bottom:96.999996pt;}
.y27{bottom:99.999996pt;}
.y8e{bottom:107.999995pt;}
.y54{bottom:115.999995pt;}
.y26{bottom:121.999995pt;}
.y8d{bottom:129.999995pt;}
.y6f{bottom:132.999994pt;}
.y53{bottom:134.999994pt;}
.y25{bottom:143.999994pt;}
.y52{bottom:153.999994pt;}
.y24{bottom:165.999993pt;}
.y6e{bottom:168.999993pt;}
.y51{bottom:172.999993pt;}
.y23{bottom:187.999992pt;}
.y6d{bottom:190.999992pt;}
.y50{bottom:191.999992pt;}
.y8c{bottom:201.999992pt;}
.y22{bottom:209.999991pt;}
.y4f{bottom:210.999991pt;}
.y6c{bottom:226.999991pt;}
.y4e{bottom:229.999990pt;}
.y21{bottom:231.999990pt;}
.y8b{bottom:237.999990pt;}
.y4d{bottom:248.999990pt;}
.y20{bottom:253.999989pt;}
.y6b{bottom:262.999989pt;}
.y4c{bottom:267.999989pt;}
.y8a{bottom:273.999989pt;}
.y1f{bottom:275.999988pt;}
.y4b{bottom:286.999988pt;}
.y1e{bottom:297.999988pt;}
.y6a{bottom:298.999988pt;}
.y4a{bottom:305.999987pt;}
.y89{bottom:309.999987pt;}
.y1d{bottom:319.999987pt;}
.y69{bottom:320.999987pt;}
.y49{bottom:324.999986pt;}
.y96{bottom:326.560006pt;}
.y1c{bottom:341.999986pt;}
.y68{bottom:342.999986pt;}
.y48{bottom:343.999986pt;}
.y88{bottom:345.999986pt;}
.y47{bottom:362.999985pt;}
.y1b{bottom:363.999985pt;}
.y67{bottom:364.999985pt;}
.y46{bottom:381.999984pt;}
.y1a{bottom:385.999984pt;}
.y66{bottom:386.999984pt;}
.y45{bottom:400.999983pt;}
.y19{bottom:407.999983pt;}
.y65{bottom:408.999983pt;}
.y87{bottom:417.999983pt;}
.y44{bottom:419.999982pt;}
.y18{bottom:429.999982pt;}
.y43{bottom:438.999982pt;}
.y64{bottom:444.999981pt;}
.y17{bottom:451.999981pt;}
.y86{bottom:453.999981pt;}
.y42{bottom:457.999981pt;}
.y16{bottom:473.999980pt;}
.y41{bottom:476.999980pt;}
.y63{bottom:480.999980pt;}
.y85{bottom:489.999980pt;}
.y15{bottom:495.999979pt;}
.y62{bottom:502.999979pt;}
.y40{bottom:514.999979pt;}
.y14{bottom:517.999978pt;}
.y61{bottom:524.999978pt;}
.y84{bottom:525.999978pt;}
.y3f{bottom:533.999978pt;}
.y13{bottom:539.999977pt;}
.y60{bottom:546.999977pt;}
.y83{bottom:547.999977pt;}
.y3e{bottom:552.999977pt;}
.y82{bottom:569.999976pt;}
.y3d{bottom:571.999976pt;}
.y12{bottom:575.999976pt;}
.y5f{bottom:582.999976pt;}
.y3c{bottom:590.999975pt;}
.y81{bottom:591.999975pt;}
.y5e{bottom:604.999975pt;}
.y3b{bottom:609.999975pt;}
.y11{bottom:612.999974pt;}
.y80{bottom:613.999974pt;}
.y95{bottom:615.999974pt;}
.y3a{bottom:628.999974pt;}
.y7f{bottom:635.999973pt;}
.y5d{bottom:640.999973pt;}
.y39{bottom:647.999973pt;}
.y10{bottom:654.999973pt;}
.y7e{bottom:657.999973pt;}
.y5c{bottom:662.999972pt;}
.y38{bottom:666.999972pt;}
.yf{bottom:676.999972pt;}
.y5b{bottom:684.999971pt;}
.y37{bottom:685.999971pt;}
.y7d{bottom:694.999971pt;}
.y94{bottom:695.559991pt;}
.ye{bottom:698.999971pt;}
.y36{bottom:704.999971pt;}
.yd{bottom:720.999970pt;}
.y5a{bottom:721.999970pt;}
.y35{bottom:723.999970pt;}
.y7c{bottom:736.999969pt;}
.y34{bottom:742.999969pt;}
.yc{bottom:756.999968pt;}
.y7b{bottom:758.999968pt;}
.yb{bottom:778.999968pt;}
.y7a{bottom:780.999967pt;}
.ya{bottom:800.999967pt;}
.y59{bottom:803.559987pt;}
.y79{bottom:816.999966pt;}
.y9{bottom:822.999966pt;}
.y33{bottom:836.999965pt;}
.y78{bottom:838.999965pt;}
.y8{bottom:844.999965pt;}
.y93{bottom:851.999964pt;}
.y32{bottom:858.999964pt;}
.y77{bottom:860.999964pt;}
.y7{bottom:866.999964pt;}
.y31{bottom:880.999963pt;}
.y76{bottom:896.999963pt;}
.y30{bottom:902.999962pt;}
.y6{bottom:916.999962pt;}
.y75{bottom:918.999962pt;}
.y2f{bottom:924.999961pt;}
.y92{bottom:931.559981pt;}
.y2e{bottom:946.999961pt;}
.y5{bottom:949.999960pt;}
.y74{bottom:954.999960pt;}
.y2d{bottom:968.999960pt;}
.y4{bottom:982.999959pt;}
.y2c{bottom:990.999959pt;}
.y91{bottom:1011.999958pt;}
.y2b{bottom:1012.999958pt;}
.y1{bottom:1091.893305pt;}
.h2{height:32.976564pt;}
.hb{height:37.324217pt;}
.h7{height:45.281248pt;}
.ha{height:45.527342pt;}
.h5{height:53.199998pt;}
.hc{height:62.206000pt;}
.h6{height:79.799997pt;}
.hd{height:88.999996pt;}
.h4{height:106.399996pt;}
.he{height:164.999993pt;}
.h9{height:262.999989pt;}
.hf{height:297.999988pt;}
.h8{height:772.999968pt;}
.h3{height:1028.999957pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:663.999985pt;}
.w2{width:719.999970pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1d5{left:16.000001pt;}
.x4{left:20.191405pt;}
.x10c{left:23.165038pt;}
.x82{left:24.709960pt;}
.x10d{left:26.323241pt;}
.x20{left:28.093749pt;}
.x209{left:29.057616pt;}
.x10f{left:30.732421pt;}
.x1d6{left:32.314726pt;}
.x201{left:33.617186pt;}
.x128{left:34.649413pt;}
.xae{left:35.852538pt;}
.x3{left:37.333331pt;}
.x1df{left:38.484373pt;}
.x48{left:39.591795pt;}
.x204{left:41.362303pt;}
.x1d7{left:42.467573pt;}
.x3c{left:43.447263pt;}
.x5{left:45.251951pt;}
.x49{left:46.619139pt;}
.xec{left:47.979490pt;}
.x1{left:50.375002pt;}
.xaf{left:51.417967pt;}
.x1f7{left:52.798826pt;}
.x83{left:54.166013pt;}
.x129{left:55.246092pt;}
.xb0{left:56.449216pt;}
.x1d8{left:57.538740pt;}
.x1e2{left:58.855466pt;}
.x6{left:60.044919pt;}
.x84{left:61.207029pt;}
.x1d9{left:62.116422pt;}
.xb1{left:63.873044pt;}
.x4a{left:65.978513pt;}
.xd1{left:67.475583pt;}
.x85{left:68.904294pt;}
.x1f9{left:69.795896pt;}
.x4b{left:70.763669pt;}
.x86{left:72.541013pt;}
.x110{left:73.826169pt;}
.x169{left:75.699216pt;}
.x10e{left:77.114255pt;}
.x4c{left:78.187497pt;}
.x87{left:79.964840pt;}
.x111{left:81.523434pt;}
.x147{left:82.678708pt;}
.x1c4{left:83.751461pt;}
.x7{left:84.681637pt;}
.xed{left:86.062496pt;}
.x88{left:87.833004pt;}
.xee{left:89.699215pt;}
.x1da{left:90.617901pt;}
.x1c5{left:91.821285pt;}
.x4d{left:92.912106pt;}
.x12a{left:94.081051pt;}
.x3d{left:95.455074pt;}
.xef{left:97.123043pt;}
.x21{left:98.367183pt;}
.x8{left:99.501949pt;}
.x4e{left:101.333980pt;}
.x168{left:103.420086pt;}
.x171{left:104.313472pt;}
.x1ae{left:105.999019pt;}
.xd2{left:107.151363pt;}
.x9{left:108.292964pt;}
.x4f{left:109.632808pt;}
.x3e{left:110.972651pt;}
.x15a{left:112.018550pt;}
.x22{left:113.187495pt;}
.x1e8{left:114.202144pt;}
.x89{left:115.504878pt;}
.xf0{left:116.543940pt;}
.x50{left:117.603511pt;}
.x1ad{left:118.887690pt;}
.x12b{left:120.611323pt;}
.x23{left:122.388666pt;}
.x1b6{left:123.321284pt;}
.x51{left:125.136714pt;}
.x3f{left:126.080073pt;}
.x12c{left:127.638667pt;}
.x24{left:128.923822pt;}
.x112{left:130.003901pt;}
.xf1{left:131.439448pt;}
.xd3{left:132.922846pt;}
.xf2{left:134.597651pt;}
.x12d{left:136.040034pt;}
.xb2{left:137.742182pt;}
.x202{left:138.706049pt;}
.xa{left:139.669916pt;}
.xb3{left:141.378900pt;}
.x1c3{left:142.581049pt;}
.x15b{left:143.566400pt;}
.x52{left:144.885736pt;}
.xb{left:146.177728pt;}
.x1af{left:147.188959pt;}
.x8a{left:148.139643pt;}
.xf3{left:149.308588pt;}
.x1ee{left:150.266595pt;}
.x8b{left:151.297845pt;}
.x53{left:152.583002pt;}
.x1fc{left:153.583978pt;}
.x15c{left:154.503900pt;}
.x16a{left:156.130853pt;}
.x12e{left:157.518549pt;}
.x207{left:158.556634pt;}
.x113{left:159.665033pt;}
.xd4{left:160.642572pt;}
.x15d{left:162.474603pt;}
.x8c{left:163.383783pt;}
.x1c6{left:164.394524pt;}
.x1b7{left:165.998040pt;}
.x8d{left:167.020501pt;}
.x1f4{left:167.970208pt;}
.x1b9{left:168.972649pt;}
.x16b{left:169.953118pt;}
.xf4{left:171.087884pt;}
.x54{left:172.126946pt;}
.x25{left:173.863274pt;}
.x40{left:175.257805pt;}
.x20a{left:176.314156pt;}
.xc{left:177.267570pt;}
.x12f{left:178.292962pt;}
.x1c7{left:179.290032pt;}
.x26{left:180.371086pt;}
.xf5{left:181.628899pt;}
.x55{left:183.700188pt;}
.xf6{left:185.265617pt;}
.xd{left:186.195304pt;}
.x19d{left:187.266594pt;}
.x1b8{left:188.563469pt;}
.x8e{left:189.791008pt;}
.xd5{left:190.727531pt;}
.x1d4{left:191.978508pt;}
.xf7{left:193.236320pt;}
.x148{left:194.200187pt;}
.x208{left:195.094719pt;}
.x114{left:196.080070pt;}
.xd6{left:197.754875pt;}
.x172{left:198.779289pt;}
.x1ef{left:199.874020pt;}
.xe{left:201.015616pt;}
.x56{left:201.938468pt;}
.x1e7{left:203.128898pt;}
.x115{left:204.023429pt;}
.x57{left:205.575187pt;}
.x41{left:206.703116pt;}
.x27{left:207.701163pt;}
.xb4{left:209.013663pt;}
.x173{left:209.949210pt;}
.x116{left:211.037101pt;}
.xd7{left:212.670890pt;}
.xf{left:214.810538pt;}
.x28{left:216.902335pt;}
.x1f1{left:217.812491pt;}
.x117{left:218.734366pt;}
.x1fe{left:219.694327pt;}
.xb5{left:220.894522pt;}
.x42{left:222.220694pt;}
.x205{left:223.254874pt;}
.x1ca{left:224.215811pt;}
.x15e{left:225.419913pt;}
.x130{left:226.616202pt;}
.xb6{left:228.318350pt;}
.x10{left:229.917959pt;}
.xf8{left:231.449209pt;}
.x29{left:232.761709pt;}
.x58{left:233.951162pt;}
.x118{left:235.024405pt;}
.x16c{left:236.576162pt;}
.xf9{left:237.847646pt;}
.x11{left:239.119130pt;}
.x8f{left:240.582022pt;}
.x19f{left:241.579097pt;}
.x149{left:242.571279pt;}
.xb7{left:243.603506pt;}
.x1f5{left:244.566396pt;}
.x12{left:245.626943pt;}
.x1f3{left:246.596674pt;}
.x90{left:247.609365pt;}
.x1a0{left:248.606440pt;}
.x131{left:250.056631pt;}
.x91{left:251.246084pt;}
.x16d{left:252.948232pt;}
.x2a{left:254.062489pt;}
.x174{left:255.011708pt;}
.xb8{left:256.332021pt;}
.xfa{left:257.548817pt;}
.x175{left:258.648427pt;}
.x43{left:259.681630pt;}
.x13{left:261.253895pt;}
.x59{left:262.764638pt;}
.x18e{left:263.920892pt;}
.x16e{left:264.938466pt;}
.x196{left:266.147455pt;}
.x5a{left:267.221669pt;}
.xfb{left:268.718739pt;}
.x14{left:270.523426pt;}
.x92{left:272.287098pt;}
.x132{left:273.845692pt;}
.x15f{left:274.748036pt;}
.x119{left:276.074208pt;}
.x15{left:277.031238pt;}
.x18b{left:278.055658pt;}
.xb9{left:279.068348pt;}
.x93{left:280.585926pt;}
.x133{left:281.789051pt;}
.x16f{left:283.470691pt;}
.x1a6{left:285.346673pt;}
.xd8{left:286.669910pt;}
.x94{left:288.454090pt;}
.x160{left:290.019520pt;}
.xba{left:291.721668pt;}
.x1d3{left:293.183582pt;}
.xd9{left:294.367176pt;}
.x11a{left:295.344715pt;}
.x134{left:296.787098pt;}
.x44{left:298.455066pt;}
.x16{left:300.287096pt;}
.x1f6{left:301.400378pt;}
.xbb{left:302.385730pt;}
.x5b{left:303.349597pt;}
.x135{left:304.279285pt;}
.x2b{left:305.988269pt;}
.x170{left:307.437487pt;}
.x161{left:308.613269pt;}
.x186{left:309.660144pt;}
.x5c{left:310.773425pt;}
.x95{left:311.983386pt;}
.x1e0{left:313.528308pt;}
.x11b{left:314.601550pt;}
.x5d{left:315.558581pt;}
.x14a{left:317.807604pt;}
.x2c{left:318.757799pt;}
.xfc{left:319.755846pt;}
.x1c1{left:320.657214pt;}
.x17{left:321.615221pt;}
.xfd{left:322.914049pt;}
.x1e6{left:324.001940pt;}
.x2d{left:325.238268pt;}
.x19e{left:326.916002pt;}
.x136{left:327.870104pt;}
.xbc{left:329.291979pt;}
.x96{left:330.515612pt;}
.x137{left:331.506823pt;}
.x176{left:332.763658pt;}
.x97{left:333.673815pt;}
.x45{left:334.603502pt;}
.x1c0{left:335.924791pt;}
.x187{left:337.010729pt;}
.x5e{left:338.192369pt;}
.x138{left:339.805651pt;}
.x98{left:341.541978pt;}
.x1a7{left:342.618155pt;}
.x46{left:343.804673pt;}
.x1e9{left:344.873033pt;}
.x18{left:345.951157pt;}
.x1cb{left:346.968736pt;}
.x139{left:347.878892pt;}
.x177{left:348.862290pt;}
.x47{left:350.339829pt;}
.x14b{left:351.255845pt;}
.x178{left:352.499009pt;}
.x5f{left:353.662095pt;}
.x19{left:355.220688pt;}
.x2e{left:356.328110pt;}
.xfe{left:357.681626pt;}
.x18f{left:359.788076pt;}
.x60{left:361.632798pt;}
.xbd{left:362.835923pt;}
.x99{left:364.469712pt;}
.x1ec{left:365.445298pt;}
.xbe{left:366.472641pt;}
.x1e3{left:367.436509pt;}
.xda{left:368.769516pt;}
.x13a{left:369.829087pt;}
.x1e4{left:370.919912pt;}
.x9a{left:372.002915pt;}
.x13b{left:373.465806pt;}
.xdb{left:375.072250pt;}
.x1f0{left:376.268544pt;}
.x1a{left:377.218734pt;}
.xdc{left:378.312485pt;}
.x61{left:380.021469pt;}
.x2f{left:381.074203pt;}
.x18c{left:382.002919pt;}
.x190{left:383.228505pt;}
.x11c{left:384.355453pt;}
.x2{left:385.979188pt;}
.x62{left:387.048812pt;}
.x14c{left:388.019516pt;}
.x13c{left:388.935531pt;}
.x63{left:390.685531pt;}
.x1a1{left:391.593739pt;}
.x1ba{left:392.826156pt;}
.xdd{left:394.035140pt;}
.x200{left:394.988265pt;}
.x30{left:395.894515pt;}
.x13d{left:396.906234pt;}
.x64{left:398.109359pt;}
.xff{left:399.497054pt;}
.x1fa{left:400.422835pt;}
.x1b0{left:401.585926pt;}
.x14d{left:402.744124pt;}
.x11d{left:403.988265pt;}
.x65{left:405.977523pt;}
.xde{left:407.037093pt;}
.x11e{left:409.033187pt;}
.x14e{left:410.407210pt;}
.x9b{left:411.904280pt;}
.x1a8{left:413.082996pt;}
.x66{left:414.276350pt;}
.x13e{left:415.294905pt;}
.x14f{left:416.709944pt;}
.x67{left:417.913069pt;}
.x1cd{left:419.681628pt;}
.x1b{left:421.351545pt;}
.x100{left:422.869123pt;}
.xbf{left:424.707991pt;}
.x197{left:426.286121pt;}
.x1c{left:427.859357pt;}
.x68{left:429.793928pt;}
.x9c{left:431.537092pt;}
.x179{left:432.438459pt;}
.x1d{left:434.339826pt;}
.x1db{left:435.262678pt;}
.x162{left:436.178693pt;}
.x150{left:438.051740pt;}
.xdf{left:439.514631pt;}
.x1e{left:440.874982pt;}
.x101{left:442.269513pt;}
.x9d{left:443.417951pt;}
.x31{left:444.498028pt;}
.x151{left:445.749006pt;}
.x1a9{left:447.337877pt;}
.xc0{left:449.002911pt;}
.x191{left:449.940416pt;}
.x32{left:451.005841pt;}
.x18d{left:452.228502pt;}
.x69{left:453.282208pt;}
.x192{left:454.725572pt;}
.x163{left:455.797833pt;}
.x1c8{left:457.037096pt;}
.x6a{left:458.046856pt;}
.x1bb{left:459.018536pt;}
.xc1{left:460.063458pt;}
.x11f{left:461.123029pt;}
.xe0{left:462.763653pt;}
.xc2{left:463.700176pt;}
.x33{left:465.019512pt;}
.x152{left:465.928692pt;}
.x9e{left:466.906231pt;}
.x1d0{left:468.225567pt;}
.x6b{left:469.155254pt;}
.xc3{left:470.727520pt;}
.x9f{left:471.670879pt;}
.x198{left:472.941392pt;}
.x13f{left:474.733380pt;}
.x102{left:475.799785pt;}
.xe1{left:477.337871pt;}
.xc4{left:478.260723pt;}
.x34{left:479.839824pt;}
.xe2{left:481.193340pt;}
.xa0{left:482.779277pt;}
.x1d1{left:483.859355pt;}
.xe3{left:484.830059pt;}
.x35{left:486.320292pt;}
.x120{left:487.222637pt;}
.x199{left:488.780259pt;}
.x164{left:489.840800pt;}
.x6c{left:491.303691pt;}
.x1a2{left:492.840805pt;}
.x1ce{left:493.776352pt;}
.x6d{left:494.940409pt;}
.x121{left:495.890605pt;}
.x165{left:497.538066pt;}
.xc5{left:498.481425pt;}
.xe4{left:500.005839pt;}
.x1bc{left:502.214823pt;}
.x122{left:503.314433pt;}
.xa1{left:504.927714pt;}
.xc6{left:506.349589pt;}
.x1dc{left:507.559550pt;}
.xa2{left:508.564433pt;}
.xc7{left:509.507792pt;}
.x6e{left:511.155252pt;}
.x1ed{left:512.643534pt;}
.x17a{left:513.683573pt;}
.x140{left:514.942362pt;}
.xe5{left:515.933573pt;}
.xc8{left:517.375956pt;}
.x6f{left:518.852518pt;}
.x206{left:519.769998pt;}
.xe6{left:520.718729pt;}
.x153{left:522.530252pt;}
.x36{left:523.945291pt;}
.x1f{left:525.326150pt;}
.x123{left:526.255838pt;}
.x1ea{left:527.330061pt;}
.x141{left:528.299784pt;}
.xc9{left:529.243143pt;}
.x188{left:530.358377pt;}
.x70{left:531.307595pt;}
.x1cc{left:532.208963pt;}
.x37{left:533.146462pt;}
.xa3{left:534.124002pt;}
.x1e1{left:535.101541pt;}
.x71{left:536.092751pt;}
.xca{left:537.487283pt;}
.x38{left:539.681618pt;}
.x1fb{left:540.775857pt;}
.xa4{left:541.821267pt;}
.x103{left:542.716774pt;}
.xe7{left:544.350564pt;}
.x166{left:545.382790pt;}
.x72{left:547.119118pt;}
.x142{left:548.035134pt;}
.x19a{left:549.039045pt;}
.x104{left:550.584938pt;}
.x1f2{left:551.707009pt;}
.xe8{left:552.772439pt;}
.xa5{left:553.702126pt;}
.x73{left:555.349587pt;}
.x193{left:556.478498pt;}
.xa6{left:557.557595pt;}
.x74{left:558.986305pt;}
.x194{left:560.115217pt;}
.xa7{left:561.194313pt;}
.x124{left:562.165017pt;}
.x143{left:563.744118pt;}
.x105{left:564.885719pt;}
.x75{left:566.519508pt;}
.xcb{left:567.572243pt;}
.x17b{left:568.480446pt;}
.xa8{left:569.766579pt;}
.x39{left:570.826148pt;}
.x1bd{left:572.358375pt;}
.x1f8{left:573.618145pt;}
.xcc{left:575.064430pt;}
.x1be{left:575.995093pt;}
.x3a{left:577.333961pt;}
.x195{left:579.563458pt;}
.x17c{left:580.689429pt;}
.x76{left:582.358375pt;}
.x17d{left:583.847632pt;}
.x3b{left:585.236304pt;}
.xe9{left:586.767554pt;}
.x1c2{left:587.722637pt;}
.xa9{left:589.037086pt;}
.x167{left:590.185523pt;}
.x189{left:591.328101pt;}
.x154{left:592.400367pt;}
.x77{left:593.815405pt;}
.x18a{left:594.964820pt;}
.x155{left:596.037085pt;}
.x1aa{left:597.523418pt;}
.x78{left:598.600561pt;}
.x1d2{left:599.557592pt;}
.x144{left:600.555640pt;}
.x79{left:601.758764pt;}
.x17e{left:603.323218pt;}
.xaa{left:604.759741pt;}
.xcd{left:606.550757pt;}
.x145{left:608.047827pt;}
.xab{left:609.544897pt;}
.x17f{left:610.747045pt;}
.x106{left:611.821264pt;}
.x1bf{left:613.052709pt;}
.xce{left:614.248022pt;}
.x125{left:615.560522pt;}
.xac{left:616.968725pt;}
.x180{left:618.615209pt;}
.x1eb{left:619.512675pt;}
.xad{left:620.605444pt;}
.xea{left:622.205053pt;}
.x126{left:623.428686pt;}
.x7a{left:624.624974pt;}
.x1a3{left:625.799784pt;}
.x181{left:626.914037pt;}
.x7b{left:628.261693pt;}
.x107{left:629.704076pt;}
.x7c{left:631.419896pt;}
.x108{left:633.340794pt;}
.x1b4{left:634.541971pt;}
.x127{left:635.883764pt;}
.xeb{left:637.244115pt;}
.x1a4{left:638.323221pt;}
.x7d{left:639.288060pt;}
.x1c9{left:640.363260pt;}
.x109{left:641.311497pt;}
.x19b{left:642.493143pt;}
.x7e{left:644.052708pt;}
.x10a{left:646.076145pt;}
.x156{left:647.115208pt;}
.x1ab{left:648.239236pt;}
.x10b{left:649.712864pt;}
.x1dd{left:650.792943pt;}
.xcf{left:652.385716pt;}
.x146{left:653.650365pt;}
.x7f{left:655.161106pt;}
.x1b1{left:656.320291pt;}
.x1a5{left:657.580056pt;}
.x19c{left:658.783182pt;}
.xd0{left:660.082981pt;}
.x1e5{left:661.570291pt;}
.x80{left:662.858371pt;}
.x1b2{left:664.017556pt;}
.x203{left:665.346653pt;}
.x1ac{left:666.689431pt;}
.x1b3{left:667.654275pt;}
.x182{left:668.797824pt;}
.x81{left:670.726535pt;}
.x183{left:672.653293pt;}
.x1cf{left:674.361306pt;}
.x184{left:676.290012pt;}
.x157{left:678.403293pt;}
.x185{left:679.448215pt;}
.x1ff{left:680.734347pt;}
.x158{left:681.643527pt;}
.x1fd{left:683.198215pt;}
.x1b5{left:685.626930pt;}
.x159{left:689.340793pt;}
.x1de{left:693.449191pt;}
}




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