
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.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;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1598476e330d58b78f04076e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.977539;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;}
.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_cae8bf7fd4aacbee6449d677.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.020996;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.215903px;}
.ls2{letter-spacing:2.369785px;}
.ls0{letter-spacing:3.446960px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-3.446960px;}
.ws2{word-spacing:-2.369785px;}
.ws3{word-spacing:-2.215903px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-3.446960px;}
._3{margin-left:-2.154350px;}
._2{width:1.600374px;}
._0{width:3.446960px;}
._4{width:4.462583px;}
.fc4{color:transparent;}
.fc3{color:rgb(201,174,117);}
.fc2{color:rgb(77,77,76);}
.fc1{color:rgb(0,0,238);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:53.999996px;}
.fs2{font-size:63.030124px;}
.fs4{font-size:73.700228px;}
.fs3{font-size:94.545187px;}
.fs1{font-size:126.060249px;}
.y0{bottom:0.000000px;}
.yd{bottom:23.636273px;}
.y13{bottom:23.636306px;}
.y10{bottom:23.636322px;}
.y1{bottom:25.380071px;}
.y46{bottom:32.640550px;}
.y20{bottom:38.268274px;}
.y45{bottom:57.402384px;}
.y1f{bottom:63.030109px;}
.y44{bottom:82.164219px;}
.y47{bottom:84.086550px;}
.y21{bottom:84.086642px;}
.y2{bottom:84.086672px;}
.y1e{bottom:87.791943px;}
.y1d{bottom:112.553778px;}
.y43{bottom:122.683585px;}
.y1c{bottom:137.315612px;}
.y42{bottom:147.445419px;}
.y1b{bottom:162.077447px;}
.y41{bottom:172.207254px;}
.y1a{bottom:186.839282px;}
.y19{bottom:211.601116px;}
.y40{bottom:213.852158px;}
.y18{bottom:253.246020px;}
.y3f{bottom:258.873675px;}
.y3e{bottom:283.635510px;}
.y17{bottom:296.016462px;}
.y3d{bottom:325.280413px;}
.y16{bottom:343.289055px;}
.y15{bottom:368.050890px;}
.y3c{bottom:369.176393px;}
.y14{bottom:392.812724px;}
.y3b{bottom:393.938228px;}
.y3a{bottom:418.700062px;}
.y39{bottom:443.461897px;}
.y38{bottom:486.232338px;}
.y12{bottom:519.669829px;}
.y11{bottom:524.500663px;}
.y37{bottom:530.128318px;}
.y36{bottom:554.890153px;}
.y35{bottom:579.651987px;}
.y34{bottom:604.413822px;}
.y33{bottom:644.933188px;}
.yf{bottom:651.357751px;}
.ye{bottom:656.188601px;}
.y32{bottom:669.695022px;}
.y31{bottom:694.456857px;}
.y30{bottom:719.218691px;}
.y2f{bottom:743.980526px;}
.yc{bottom:783.045739px;}
.y2e{bottom:784.499892px;}
.yb{bottom:787.876540px;}
.y2d{bottom:809.261726px;}
.ya{bottom:828.395906px;}
.y2c{bottom:834.023561px;}
.y9{bottom:870.040810px;}
.y2b{bottom:876.794003px;}
.y8{bottom:917.313403px;}
.y2a{bottom:920.689982px;}
.y7{bottom:942.075238px;}
.y29{bottom:945.451817px;}
.y6{bottom:966.837072px;}
.y28{bottom:970.213651px;}
.y5{bottom:991.598907px;}
.y27{bottom:994.975486px;}
.y4c{bottom:1001.728898px;}
.y26{bottom:1019.737321px;}
.y4b{bottom:1026.490733px;}
.y25{bottom:1044.499155px;}
.y4{bottom:1047.875804px;}
.y4a{bottom:1051.252567px;}
.y24{bottom:1069.260990px;}
.y49{bottom:1076.014402px;}
.y3{bottom:1085.018556px;}
.y23{bottom:1094.022824px;}
.y48{bottom:1117.659305px;}
.y22{bottom:1118.784659px;}
.h8{height:48.072780px;}
.hc{height:51.242753px;}
.h2{height:51.299996px;}
.h7{height:57.402419px;}
.ha{height:57.402430px;}
.h9{height:57.402480px;}
.h5{height:59.878618px;}
.hb{height:70.015216px;}
.h6{height:89.817927px;}
.h4{height:119.757237px;}
.h3{height:1136.793301px;}
.hd{height:1136.793481px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:721.469843px;}
.w2{width:784.499907px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xf3{left:18.008615px;}
.xb{left:22.726194px;}
.x1c5{left:26.303953px;}
.x1c2{left:27.811999px;}
.xab{left:30.781924px;}
.x3d{left:32.074534px;}
.x1bb{left:34.710160px;}
.x6f{left:35.860034px;}
.xac{left:38.075937px;}
.x198{left:39.260830px;}
.xc{left:40.992004px;}
.xad{left:42.169202px;}
.x3e{left:44.562069px;}
.xd5{left:46.123973px;}
.xcd{left:48.407612px;}
.x28{left:49.778674px;}
.x3f{left:52.471611px;}
.xa{left:53.999998px;}
.xe6{left:55.218408px;}
.xd{left:56.764923px;}
.x111{left:58.049839px;}
.x40{left:60.119554px;}
.x18a{left:61.996916px;}
.x1c3{left:63.435714px;}
.xf6{left:66.220981px;}
.x41{left:68.029096px;}
.xd6{left:69.190906px;}
.x18b{left:70.660480px;}
.x42{left:72.122361px;}
.xe{left:73.445747px;}
.xf7{left:75.438521px;}
.x1cd{left:76.480523px;}
.x43{left:77.508236px;}
.xce{left:78.591027px;}
.x1c1{left:79.652693px;}
.x165{left:81.381669px;}
.x112{left:82.809475px;}
.x81{left:84.417544px;}
.xf2{left:85.515052px;}
.xae{left:86.656529px;}
.x11c{left:87.853065px;}
.xe7{left:90.342006px;}
.x70{left:91.719251px;}
.x1a8{left:93.758190px;}
.x44{left:95.104658px;}
.x1b7{left:97.185365px;}
.xf{left:98.205383px;}
.x189{left:99.350741px;}
.x71{left:100.382816px;}
.xe8{left:102.244790px;}
.xf4{left:103.391212px;}
.x45{left:104.629963px;}
.x1c6{left:105.645585px;}
.xf5{left:106.945889px;}
.x82{left:109.207956px;}
.x199{left:111.046848px;}
.x1ab{left:112.239435px;}
.x46{left:113.293527px;}
.x10{left:114.886207px;}
.x83{left:117.117498px;}
.xaf{left:118.471661px;}
.xe9{left:120.433658px;}
.x1b8{left:121.729566px;}
.x19a{left:123.049655px;}
.x1ac{left:124.242241px;}
.x11{left:125.242475px;}
.xd7{left:127.189085px;}
.xcf{left:129.173065px;}
.xd8{left:131.282350px;}
.x12{left:132.598042px;}
.xea{left:134.036840px;}
.x84{left:135.121709px;}
.xb0{left:136.298907px;}
.x72{left:137.591517px;}
.x85{left:139.214974px;}
.xb1{left:140.392172px;}
.x73{left:141.684782px;}
.xf8{left:142.885063px;}
.xfb{left:144.654707px;}
.x47{left:146.609010px;}
.x86{left:148.494067px;}
.x13{left:150.063665px;}
.x48{left:151.994885px;}
.x1ad{left:153.210554px;}
.xd9{left:154.264647px;}
.x49{left:155.549563px;}
.xeb{left:156.557491px;}
.xda{left:158.357912px;}
.x29{left:160.142945px;}
.xb2{left:161.620213px;}
.x126{left:162.785321px;}
.x74{left:164.428562px;}
.x87{left:166.090489px;}
.x19b{left:167.113806px;}
.x14{left:168.221757px;}
.xb3{left:169.529755px;}
.xd0{left:171.372202px;}
.x4a{left:173.376809px;}
.x1c4{left:174.500149px;}
.x15{left:175.546547px;}
.x2a{left:177.146921px;}
.x17e{left:178.292244px;}
.x14d{left:179.407889px;}
.xdb{left:180.409223px;}
.x75{left:182.548184px;}
.xdc{left:183.963900px;}
.x4b{left:186.749167px;}
.x11d{left:187.783474px;}
.xec{left:189.503657px;}
.x1ce{left:191.053470px;}
.x16{left:192.227371px;}
.x188{left:193.277067px;}
.xb4{left:194.350945px;}
.xf9{left:195.959013px;}
.x76{left:197.582469px;}
.x17f{left:198.635463px;}
.xb5{left:200.013807px;}
.xfa{left:201.344888px;}
.x143{left:202.497904px;}
.xb6{left:203.568485px;}
.x15d{left:204.908358px;}
.x88{left:206.800010px;}
.x17{left:209.692994px;}
.xdd{left:210.724004px;}
.xfc{left:212.609060px;}
.x1a9{left:214.078635px;}
.x89{left:215.463574px;}
.x180{left:216.700127px;}
.xde{left:218.371947px;}
.x77{left:219.926156px;}
.xd1{left:221.211999px;}
.x127{left:222.876296px;}
.xed{left:224.804220px;}
.xb7{left:225.989113px;}
.x8a{left:227.912639px;}
.x113{left:229.189861px;}
.xb8{left:230.328589px;}
.x1af{left:231.529974px;}
.x78{left:232.821479px;}
.xb9{left:234.421854px;}
.x172{left:235.785909px;}
.x4c{left:237.853425px;}
.x159{left:239.291124px;}
.xdf{left:240.446340px;}
.x4d{left:241.946690px;}
.x18c{left:243.108500px;}
.x1a2{left:244.819890px;}
.x1c7{left:245.946527px;}
.x4e{left:246.963248px;}
.xe0{left:248.802140px;}
.x2b{left:250.133220px;}
.xba{left:251.633571px;}
.x1a3{left:252.729432px;}
.x128{left:253.798912px;}
.xe1{left:256.096153px;}
.x2c{left:257.458010px;}
.x11e{left:258.984741px;}
.xe2{left:260.189418px;}
.x4f{left:261.597440px;}
.x129{left:262.654830px;}
.x8b{left:263.874895px;}
.x50{left:265.690705px;}
.x12a{left:266.748095px;}
.xbb{left:268.622160px;}
.x79{left:269.937852px;}
.x51{left:271.076579px;}
.x12b{left:272.133969px;}
.x1a6{left:273.249615px;}
.xee{left:275.216009px;}
.x144{left:277.376954px;}
.x18{left:278.847627px;}
.x2d{left:279.955579px;}
.x7a{left:281.848329px;}
.x8c{left:283.779550px;}
.x7b{left:285.495336px;}
.xe3{left:287.264981px;}
.x52{left:288.673002px;}
.x12c{left:289.730392px;}
.x8d{left:291.427492px;}
.x19{left:293.220219px;}
.x2e{left:295.482287px;}
.x7c{left:297.698190px;}
.x8e{left:299.337034px;}
.xef{left:300.983573px;}
.x2f{left:302.837853px;}
.xbc{left:305.215333px;}
.x7d{left:306.361754px;}
.x114{left:308.062152px;}
.x1c8{left:309.369050px;}
.x53{left:310.401160px;}
.x8f{left:311.478335px;}
.x1a{left:313.132568px;}
.x11f{left:315.197887px;}
.xd2{left:316.849097px;}
.xfd{left:317.929294px;}
.xbd{left:319.233996px;}
.x30{left:320.303476px;}
.xd3{left:321.510867px;}
.x7e{left:323.134907px;}
.x115{left:325.135375px;}
.x181{left:326.556587px;}
.x54{left:328.343818px;}
.x1b{left:329.813392px;}
.x7f{left:331.990825px;}
.x55{left:334.006680px;}
.x173{left:335.047583px;}
.x14e{left:336.406142px;}
.x19c{left:337.414071px;}
.x31{left:338.461569px;}
.x80{left:341.254529px;}
.xf0{left:343.293468px;}
.x14f{left:344.315685px;}
.x1c{left:345.340100px;}
.xd4{left:346.598361px;}
.xbe{left:348.525461px;}
.x182{left:349.538884px;}
.xe4{left:350.749058px;}
.x90{left:352.626419px;}
.x56{left:354.334511px;}
.x91{left:356.273426px;}
.x166{left:357.944147px;}
.xf1{left:359.174105px;}
.x18d{left:361.051467px;}
.x57{left:362.228665px;}
.x92{left:364.936991px;}
.x167{left:366.915476px;}
.x32{left:368.268539px;}
.x1b0{left:369.423760px;}
.x58{left:370.584465px;}
.x1ae{left:371.830911px;}
.xe5{left:372.846533px;}
.xbf{left:374.539237px;}
.x168{left:376.371533px;}
.x93{left:377.386056px;}
.xfe{left:379.094147px;}
.x1d{left:380.656051px;}
.x15a{left:381.878315px;}
.x59{left:383.087389px;}
.x177{left:384.250304px;}
.x1aa{left:385.470364px;}
.x94{left:386.854204px;}
.x120{left:388.176491px;}
.x151{left:390.274784px;}
.x5a{left:391.443189px;}
.x116{left:392.657759px;}
.xff{left:394.651632px;}
.x95{left:395.787062px;}
.x5b{left:396.829064px;}
.x100{left:398.744897px;}
.x5c{left:400.383742px;}
.x183{left:401.658765px;}
.xc0{left:403.999972px;}
.x184{left:405.752030px;}
.x1e{left:407.046838px;}
.xc1{left:408.093237px;}
.x5d{left:409.239659px;}
.x117{left:410.754299px;}
.x33{left:412.032619px;}
.x12d{left:413.207619px;}
.x1{left:414.351536px;}
.x121{left:416.290758px;}
.x18f{left:417.339355px;}
.x5e{left:418.503364px;}
.x145{left:420.369734px;}
.x5f{left:422.596629px;}
.x96{left:423.747447px;}
.x1bc{left:424.776265px;}
.x2{left:425.991857px;}
.x101{left:427.628574px;}
.x169{left:429.006919px;}
.x3{left:431.093959px;}
.x15e{left:432.376938px;}
.xc2{left:434.337836px;}
.x18e{left:435.699693px;}
.x97{left:437.012088px;}
.x4{left:438.664278px;}
.x60{left:439.808346px;}
.x1f{left:441.901142px;}
.x5{left:443.772129px;}
.x1a4{left:445.282154px;}
.x98{left:446.352733px;}
.x1b1{left:447.942122px;}
.x6{left:449.196387px;}
.x190{left:451.201120px;}
.xc3{left:452.480541px;}
.x7{left:454.297082px;}
.x99{left:455.324062px;}
.x15b{left:456.834306px;}
.x9a{left:458.878739px;}
.x15c{left:460.481313px;}
.x1a5{left:461.747543px;}
.x9b{left:462.910452px;}
.x8{left:464.070526px;}
.x152{left:465.338492px;}
.x102{left:467.491743px;}
.x9{left:469.053133px;}
.xc4{left:470.615551px;}
.x34{left:471.846607px;}
.x103{left:472.923782px;}
.x61{left:474.554933px;}
.x1c9{left:476.138820px;}
.x9c{left:477.313820px;}
.x13a{left:478.647104px;}
.x12e{left:480.261762px;}
.x62{left:481.648900px;}
.xc5{left:483.064616px;}
.x118{left:484.779302px;}
.x9d{left:486.577525px;}
.x191{left:488.094363px;}
.x12f{left:489.117679px;}
.x119{left:490.165177px;}
.x63{left:491.666627px;}
.x16a{left:493.117516px;}
.x104{left:495.267469px;}
.x122{left:496.694177px;}
.x11a{left:498.520977px;}
.x64{left:500.022427px;}
.xc6{left:501.261179px;}
.x11b{left:502.983559px;}
.x174{left:504.117891px;}
.xc7{left:505.354444px;}
.x150{left:506.769060px;}
.x65{left:507.931969px;}
.x35{left:509.901660px;}
.x175{left:511.658115px;}
.x13b{left:513.270586px;}
.x123{left:514.390623px;}
.x178{left:515.473299px;}
.x105{left:516.572451px;}
.x146{left:518.585010px;}
.x124{left:519.776498px;}
.x20{left:521.673644px;}
.x15f{left:522.805778px;}
.x130{left:524.926053px;}
.x66{left:525.936180px;}
.x125{left:528.132298px;}
.xc8{left:530.783468px;}
.x147{left:532.326685px;}
.x36{left:533.938050px;}
.x179{left:535.262542px;}
.x16b{left:536.627691px;}
.x21{left:538.677620px;}
.x67{left:539.700937px;}
.x37{left:541.232063px;}
.x153{left:543.225937px;}
.x160{left:544.903253px;}
.x176{left:546.597055px;}
.x38{left:548.556853px;}
.x9e{left:550.554025px;}
.x131{left:552.001616px;}
.x148{left:554.285666px;}
.x132{left:556.094881px;}
.x68{left:557.297360px;}
.x9f{left:558.478955px;}
.x1b9{left:559.885878px;}
.xc9{left:561.952295px;}
.x16c{left:563.033866px;}
.x22{left:564.268220px;}
.x106{left:565.453113px;}
.xa0{left:567.142519px;}
.x13c{left:568.683545px;}
.xca{left:570.308095px;}
.x13d{left:572.776810px;}
.x17a{left:575.094934px;}
.x1cb{left:577.181131px;}
.x13e{left:578.208849px;}
.x39{left:580.579727px;}
.x1b2{left:583.127582px;}
.xa1{left:584.969765px;}
.x16d{left:586.116187px;}
.x107{left:587.550589px;}
.xcb{left:589.281763px;}
.x108{left:591.643854px;}
.xa2{left:594.310411px;}
.x133{left:595.750308px;}
.x69{left:598.006880px;}
.x134{left:599.304986px;}
.x23{left:600.507464px;}
.x149{left:601.981436px;}
.xa3{left:603.127858px;}
.x3a{left:606.462703px;}
.x16e{left:607.536581px;}
.x14a{left:610.837353px;}
.x161{left:612.488289px;}
.x3b{left:613.818269px;}
.x192{left:616.339739px;}
.x154{left:617.751057px;}
.x6a{left:619.811979px;}
.x155{left:621.844322px;}
.x1ba{left:622.939085px;}
.x13f{left:624.081115px;}
.xcc{left:625.174772px;}
.x17b{left:626.837804px;}
.x140{left:628.174380px;}
.x185{left:629.819814px;}
.x3c{left:631.283892px;}
.x14b{left:632.511652px;}
.x24{left:633.838335px;}
.x17c{left:635.193604px;}
.x109{left:637.154496px;}
.x6b{left:638.785647px;}
.x16f{left:639.974936px;}
.x10a{left:641.247761px;}
.x1be{left:642.782186px;}
.x170{left:644.068201px;}
.x141{left:645.386097px;}
.x1b3{left:646.580882px;}
.x156{left:648.919885px;}
.x135{left:650.486185px;}
.x162{left:652.574586px;}
.x142{left:654.726743px;}
.x6c{left:655.774235px;}
.x17d{left:657.483432px;}
.x10b{left:658.959596px;}
.x1b4{left:660.514910px;}
.x193{left:662.535157px;}
.x136{left:664.727978px;}
.x157{left:666.616331px;}
.x137{left:668.821243px;}
.x186{left:670.529334px;}
.x25{left:671.893388px;}
.x6d{left:675.678890px;}
.x10c{left:676.963806px;}
.x26{left:679.218178px;}
.x158{left:680.358006px;}
.x10d{left:682.626669px;}
.xa4{left:684.022599px;}
.x6e{left:685.134948px;}
.xa5{left:687.577276px;}
.x27{left:689.651387px;}
.x1b5{left:691.029739px;}
.x10e{left:692.105809px;}
.x163{left:693.561094px;}
.x138{left:695.312053px;}
.xa6{left:696.433194px;}
.x19d{left:698.036866px;}
.x1ca{left:700.129663px;}
.x14c{left:701.543180px;}
.x139{left:703.221595px;}
.xa7{left:704.912100px;}
.x1bf{left:706.297039px;}
.x194{left:707.638013px;}
.x10f{left:709.702231px;}
.x19e{left:711.778541px;}
.x110{left:713.872437px;}
.x195{left:715.993813px;}
.xa8{left:717.415023px;}
.x164{left:720.975197px;}
.x1cc{left:722.268906px;}
.x196{left:723.903355px;}
.x1bd{left:725.541099px;}
.x187{left:727.604220px;}
.x1b6{left:728.916614px;}
.xa9{left:730.310347px;}
.x171{left:731.542503px;}
.x197{left:732.566919px;}
.x1c0{left:734.872953px;}
.x1a7{left:738.112172px;}
.xaa{left:739.166264px;}
.x19f{left:742.570357px;}
.x1a0{left:746.663622px;}
.x1a1{left:750.218300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.969692pt;}
.ls2{letter-spacing:2.106475pt;}
.ls0{letter-spacing:3.063964pt;}
.ws1{word-spacing:-3.063964pt;}
.ws2{word-spacing:-2.106475pt;}
.ws3{word-spacing:-1.969692pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-3.063964pt;}
._3{margin-left:-1.914978pt;}
._2{width:1.422555pt;}
._0{width:3.063965pt;}
._4{width:3.966740pt;}
.fs0{font-size:47.999996pt;}
.fs2{font-size:56.026777pt;}
.fs4{font-size:65.511314pt;}
.fs3{font-size:84.040166pt;}
.fs1{font-size:112.053555pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:21.010021pt;}
.y13{bottom:21.010049pt;}
.y10{bottom:21.010064pt;}
.y1{bottom:22.560063pt;}
.y46{bottom:29.013822pt;}
.y20{bottom:34.016244pt;}
.y45{bottom:51.024342pt;}
.y1f{bottom:56.026763pt;}
.y44{bottom:73.034861pt;}
.y47{bottom:74.743600pt;}
.y21{bottom:74.743682pt;}
.y2{bottom:74.743709pt;}
.y1e{bottom:78.037283pt;}
.y1d{bottom:100.047803pt;}
.y43{bottom:109.052075pt;}
.y1c{bottom:122.058322pt;}
.y42{bottom:131.062595pt;}
.y1b{bottom:144.068842pt;}
.y41{bottom:153.073115pt;}
.y1a{bottom:166.079362pt;}
.y19{bottom:188.089881pt;}
.y40{bottom:190.090807pt;}
.y18{bottom:225.107573pt;}
.y3f{bottom:230.109933pt;}
.y3e{bottom:252.120453pt;}
.y17{bottom:263.125744pt;}
.y3d{bottom:289.138145pt;}
.y16{bottom:305.145827pt;}
.y15{bottom:327.156346pt;}
.y3c{bottom:328.156794pt;}
.y14{bottom:349.166866pt;}
.y3b{bottom:350.167313pt;}
.y3a{bottom:372.177833pt;}
.y39{bottom:394.188353pt;}
.y38{bottom:432.206523pt;}
.y12{bottom:461.928737pt;}
.y11{bottom:466.222811pt;}
.y37{bottom:471.225172pt;}
.y36{bottom:493.235691pt;}
.y35{bottom:515.246211pt;}
.y34{bottom:537.256731pt;}
.y33{bottom:573.273944pt;}
.yf{bottom:578.984668pt;}
.ye{bottom:583.278757pt;}
.y32{bottom:595.284464pt;}
.y31{bottom:617.294984pt;}
.y30{bottom:639.305503pt;}
.y2f{bottom:661.316023pt;}
.yc{bottom:696.040657pt;}
.y2e{bottom:697.333237pt;}
.yb{bottom:700.334702pt;}
.y2d{bottom:719.343757pt;}
.ya{bottom:736.351916pt;}
.y2c{bottom:741.354276pt;}
.y9{bottom:773.369608pt;}
.y2b{bottom:779.372447pt;}
.y8{bottom:815.389691pt;}
.y2a{bottom:818.391095pt;}
.y7{bottom:837.400211pt;}
.y29{bottom:840.401615pt;}
.y6{bottom:859.410731pt;}
.y28{bottom:862.412135pt;}
.y5{bottom:881.421250pt;}
.y27{bottom:884.422654pt;}
.y4c{bottom:890.425687pt;}
.y26{bottom:906.433174pt;}
.y4b{bottom:912.436207pt;}
.y25{bottom:928.443694pt;}
.y4{bottom:931.445159pt;}
.y4a{bottom:934.446726pt;}
.y24{bottom:950.454213pt;}
.y49{bottom:956.457246pt;}
.y3{bottom:964.460938pt;}
.y23{bottom:972.464733pt;}
.y48{bottom:993.474938pt;}
.y22{bottom:994.475253pt;}
.h8{height:42.731360pt;}
.hc{height:45.549113pt;}
.h2{height:45.599996pt;}
.h7{height:51.024372pt;}
.ha{height:51.024382pt;}
.h9{height:51.024427pt;}
.h5{height:53.225438pt;}
.hb{height:62.235748pt;}
.h6{height:79.838158pt;}
.h4{height:106.450877pt;}
.h3{height:1010.482934pt;}
.hd{height:1010.483094pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:641.306527pt;}
.w2{width:697.333251pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf3{left:16.007658pt;}
.xb{left:20.201061pt;}
.x1c5{left:23.381292pt;}
.x1c2{left:24.721776pt;}
.xab{left:27.361710pt;}
.x3d{left:28.510697pt;}
.x1bb{left:30.853476pt;}
.x6f{left:31.875586pt;}
.xac{left:33.845278pt;}
.x198{left:34.898515pt;}
.xc{left:36.437337pt;}
.xad{left:37.483735pt;}
.x3e{left:39.610728pt;}
.xd5{left:40.999087pt;}
.xcd{left:43.028988pt;}
.x28{left:44.247710pt;}
.x3f{left:46.641432pt;}
.xa{left:47.999998pt;}
.xe6{left:49.083029pt;}
.xd{left:50.457709pt;}
.x111{left:51.599857pt;}
.x40{left:53.439603pt;}
.x18a{left:55.108370pt;}
.x1c3{left:56.387301pt;}
.xf6{left:58.863094pt;}
.x41{left:60.470307pt;}
.xd6{left:61.503027pt;}
.x18b{left:62.809316pt;}
.x42{left:64.108765pt;}
.xe{left:65.285108pt;}
.xf7{left:67.056463pt;}
.x1cd{left:67.982687pt;}
.x43{left:68.896209pt;}
.xce{left:69.858690pt;}
.x1c1{left:70.802394pt;}
.x165{left:72.339261pt;}
.x112{left:73.608423pt;}
.x81{left:75.037817pt;}
.xf2{left:76.013379pt;}
.xae{left:77.028026pt;}
.x11c{left:78.091614pt;}
.xe7{left:80.304005pt;}
.x70{left:81.528223pt;}
.x1a8{left:83.340613pt;}
.x44{left:84.537474pt;}
.x1b7{left:86.386991pt;}
.xf{left:87.293674pt;}
.x189{left:88.311769pt;}
.x71{left:89.229169pt;}
.xe8{left:90.884257pt;}
.xf4{left:91.903299pt;}
.x45{left:93.004411pt;}
.x1c6{left:93.907187pt;}
.xf5{left:95.063012pt;}
.x82{left:97.073739pt;}
.x199{left:98.708309pt;}
.x1ab{left:99.768386pt;}
.x46{left:100.705358pt;}
.x10{left:102.121073pt;}
.x83{left:104.104443pt;}
.xaf{left:105.308143pt;}
.xe9{left:107.052141pt;}
.x1b8{left:108.204059pt;}
.x19a{left:109.377471pt;}
.x1ac{left:110.437548pt;}
.x11{left:111.326645pt;}
.xd7{left:113.056964pt;}
.xcf{left:114.820502pt;}
.xd8{left:116.695422pt;}
.x12{left:117.864926pt;}
.xea{left:119.143858pt;}
.x84{left:120.108186pt;}
.xb0{left:121.154584pt;}
.x72{left:122.303571pt;}
.x85{left:123.746643pt;}
.xb1{left:124.793042pt;}
.x73{left:125.942028pt;}
.xf8{left:127.008945pt;}
.xfb{left:128.581962pt;}
.x47{left:130.319120pt;}
.x86{left:131.994726pt;}
.x13{left:133.389924pt;}
.x48{left:135.106565pt;}
.x1ad{left:136.187159pt;}
.xd9{left:137.124131pt;}
.x49{left:138.266278pt;}
.xeb{left:139.162214pt;}
.xda{left:140.762589pt;}
.x29{left:142.349284pt;}
.xb2{left:143.662412pt;}
.x126{left:144.698063pt;}
.x74{left:146.158722pt;}
.x87{left:147.635991pt;}
.x19b{left:148.545605pt;}
.x14{left:149.530451pt;}
.xb3{left:150.693116pt;}
.xd0{left:152.330846pt;}
.x4a{left:154.112719pt;}
.x1c4{left:155.111243pt;}
.x15{left:156.041375pt;}
.x2a{left:157.463930pt;}
.x17e{left:158.481995pt;}
.x14d{left:159.473679pt;}
.xdb{left:160.363754pt;}
.x75{left:162.265053pt;}
.xdc{left:163.523467pt;}
.x4b{left:165.999259pt;}
.x11d{left:166.918644pt;}
.xec{left:168.447695pt;}
.x1ce{left:169.825307pt;}
.x16{left:170.868774pt;}
.x188{left:171.801837pt;}
.xb4{left:172.756395pt;}
.xf9{left:174.185789pt;}
.x76{left:175.628862pt;}
.x17f{left:176.564856pt;}
.xb5{left:177.790051pt;}
.xfa{left:178.973234pt;}
.x143{left:179.998137pt;}
.xb6{left:180.949764pt;}
.x15d{left:182.140763pt;}
.x88{left:183.822231pt;}
.x17{left:186.393772pt;}
.xdd{left:187.310226pt;}
.xfc{left:188.985831pt;}
.x1a9{left:190.292120pt;}
.x89{left:191.523177pt;}
.x180{left:192.622335pt;}
.xde{left:194.108397pt;}
.x77{left:195.489917pt;}
.xd1{left:196.632888pt;}
.x127{left:198.112263pt;}
.xed{left:199.825973pt;}
.xb7{left:200.879211pt;}
.x8a{left:202.589013pt;}
.x113{left:203.724321pt;}
.xb8{left:204.736524pt;}
.x1af{left:205.804422pt;}
.x78{left:206.952426pt;}
.xb9{left:208.374981pt;}
.x172{left:209.587474pt;}
.x4c{left:211.425267pt;}
.x159{left:212.703221pt;}
.xdf{left:213.730080pt;}
.x4d{left:215.063725pt;}
.x18c{left:216.096445pt;}
.x1a2{left:217.617680pt;}
.x1c7{left:218.619135pt;}
.x4e{left:219.522887pt;}
.xe0{left:221.157458pt;}
.x2b{left:222.340640pt;}
.xba{left:223.674286pt;}
.x1a3{left:224.648384pt;}
.x128{left:225.599033pt;}
.xe1{left:227.641025pt;}
.x2c{left:228.851565pt;}
.x11e{left:230.208658pt;}
.xe2{left:231.279483pt;}
.x4f{left:232.531057pt;}
.x129{left:233.470960pt;}
.x8b{left:234.555462pt;}
.x50{left:236.169515pt;}
.x12a{left:237.109417pt;}
.xbb{left:238.775253pt;}
.x79{left:239.944757pt;}
.x51{left:240.956960pt;}
.x12b{left:241.896862pt;}
.x1a6{left:242.888547pt;}
.xee{left:244.636452pt;}
.x144{left:246.557292pt;}
.x18{left:247.864557pt;}
.x2d{left:248.849403pt;}
.x7a{left:250.531848pt;}
.x8c{left:252.248489pt;}
.x7b{left:253.773632pt;}
.xe3{left:255.346650pt;}
.x52{left:256.598224pt;}
.x12c{left:257.538126pt;}
.x8d{left:259.046660pt;}
.x19{left:260.640195pt;}
.x2e{left:262.650922pt;}
.x7c{left:264.620613pt;}
.x8e{left:266.077364pt;}
.xef{left:267.540954pt;}
.x2f{left:269.189203pt;}
.xbc{left:271.302518pt;}
.x7d{left:272.321559pt;}
.x114{left:273.833024pt;}
.x1c8{left:274.994712pt;}
.x53{left:275.912142pt;}
.x8f{left:276.869631pt;}
.x1a{left:278.340060pt;}
.x11f{left:280.175899pt;}
.xd2{left:281.643642pt;}
.xfd{left:282.603817pt;}
.xbd{left:283.763552pt;}
.x30{left:284.714201pt;}
.xd3{left:285.787437pt;}
.x7e{left:287.231029pt;}
.x115{left:289.009223pt;}
.x181{left:290.272521pt;}
.x54{left:291.861171pt;}
.x1b{left:293.167459pt;}
.x7f{left:295.102955pt;}
.x55{left:296.894827pt;}
.x173{left:297.820074pt;}
.x14e{left:299.027682pt;}
.x19c{left:299.923618pt;}
.x31{left:300.854728pt;}
.x80{left:303.337359pt;}
.xf0{left:305.149749pt;}
.x14f{left:306.058386pt;}
.x1c{left:306.968977pt;}
.xd4{left:308.087432pt;}
.xbe{left:309.800410pt;}
.x182{left:310.701230pt;}
.xe4{left:311.776940pt;}
.x90{left:313.445706pt;}
.x56{left:314.964010pt;}
.x91{left:316.687490pt;}
.x166{left:318.172575pt;}
.xf1{left:319.265871pt;}
.x18d{left:320.934637pt;}
.x57{left:321.981035pt;}
.x92{left:324.388436pt;}
.x167{left:326.147089pt;}
.x32{left:327.349812pt;}
.x1b0{left:328.376676pt;}
.x58{left:329.408413pt;}
.x1ae{left:330.516365pt;}
.xe5{left:331.419141pt;}
.xbf{left:332.923766pt;}
.x168{left:334.552474pt;}
.x93{left:335.454272pt;}
.xfe{left:336.972575pt;}
.x1d{left:338.360934pt;}
.x15a{left:339.447392pt;}
.x59{left:340.522124pt;}
.x177{left:341.555826pt;}
.x1aa{left:342.640323pt;}
.x94{left:343.870403pt;}
.x120{left:345.045770pt;}
.x151{left:346.910919pt;}
.x5a{left:347.949501pt;}
.x116{left:349.029119pt;}
.xff{left:350.801450pt;}
.x95{left:351.810722pt;}
.x5b{left:352.736946pt;}
.x100{left:354.439908pt;}
.x5c{left:355.896659pt;}
.x183{left:357.030013pt;}
.xc0{left:359.111087pt;}
.x184{left:360.668471pt;}
.x1e{left:361.819411pt;}
.xc1{left:362.749544pt;}
.x5d{left:363.768586pt;}
.x117{left:365.114932pt;}
.x33{left:366.251217pt;}
.x12d{left:367.295662pt;}
.x1{left:368.312477pt;}
.x121{left:370.036230pt;}
.x18f{left:370.968316pt;}
.x5e{left:372.002990pt;}
.x145{left:373.661986pt;}
.x5f{left:375.641448pt;}
.x96{left:376.664397pt;}
.x1bc{left:377.578902pt;}
.x2{left:378.659429pt;}
.x101{left:380.114288pt;}
.x169{left:381.339484pt;}
.x3{left:383.194630pt;}
.x15e{left:384.335056pt;}
.xc2{left:386.078077pt;}
.x18e{left:387.288616pt;}
.x97{left:388.455189pt;}
.x4{left:389.923803pt;}
.x60{left:390.940752pt;}
.x1f{left:392.801015pt;}
.x5{left:394.464115pt;}
.x1a4{left:395.806359pt;}
.x98{left:396.757985pt;}
.x1b1{left:398.170775pt;}
.x6{left:399.285677pt;}
.x190{left:401.067662pt;}
.xc3{left:402.204925pt;}
.x7{left:403.819628pt;}
.x99{left:404.732500pt;}
.x15b{left:406.074939pt;}
.x9a{left:407.892213pt;}
.x15c{left:409.316722pt;}
.x1a5{left:410.442260pt;}
.x9b{left:411.475957pt;}
.x8{left:412.507134pt;}
.x152{left:413.634215pt;}
.x102{left:415.548216pt;}
.x9{left:416.936118pt;}
.xc4{left:418.324934pt;}
.x34{left:419.419206pt;}
.x103{left:420.376695pt;}
.x61{left:421.826607pt;}
.x1c9{left:423.234506pt;}
.x9c{left:424.278951pt;}
.x13a{left:425.464093pt;}
.x12e{left:426.899344pt;}
.x62{left:428.132356pt;}
.xc5{left:429.390770pt;}
.x118{left:430.914935pt;}
.x9d{left:432.513355pt;}
.x191{left:433.861656pt;}
.x12f{left:434.771270pt;}
.x119{left:435.702380pt;}
.x63{left:437.037002pt;}
.x16a{left:438.326681pt;}
.x104{left:440.237750pt;}
.x122{left:441.505935pt;}
.x11a{left:443.129758pt;}
.x64{left:444.464380pt;}
.xc6{left:445.565493pt;}
.x11b{left:447.096497pt;}
.x174{left:448.104792pt;}
.xc7{left:449.203950pt;}
.x150{left:450.461387pt;}
.x65{left:451.495084pt;}
.x35{left:453.245920pt;}
.x175{left:454.807214pt;}
.x13b{left:456.240521pt;}
.x123{left:457.236109pt;}
.x178{left:458.198488pt;}
.x105{left:459.175512pt;}
.x146{left:460.964453pt;}
.x124{left:462.023553pt;}
.x20{left:463.709905pt;}
.x15f{left:464.716247pt;}
.x130{left:466.600936pt;}
.x66{left:467.498826pt;}
.x125{left:469.450931pt;}
.xc8{left:471.807527pt;}
.x147{left:473.179275pt;}
.x36{left:474.611600pt;}
.x179{left:475.788926pt;}
.x16b{left:477.002392pt;}
.x21{left:478.824551pt;}
.x67{left:479.734166pt;}
.x37{left:481.095168pt;}
.x153{left:482.867500pt;}
.x160{left:484.358447pt;}
.x176{left:485.864049pt;}
.x38{left:487.606092pt;}
.x9e{left:489.381355pt;}
.x131{left:490.668103pt;}
.x148{left:492.698370pt;}
.x132{left:494.306561pt;}
.x68{left:495.375431pt;}
.x9f{left:496.425738pt;}
.x1b9{left:497.676336pt;}
.xc9{left:499.513151pt;}
.x16c{left:500.474548pt;}
.x22{left:501.571751pt;}
.x106{left:502.624990pt;}
.xa0{left:504.126684pt;}
.x13c{left:505.496484pt;}
.xca{left:506.940529pt;}
.x13d{left:509.134942pt;}
.x17a{left:511.195497pt;}
.x1cb{left:513.049894pt;}
.x13e{left:513.963421pt;}
.x39{left:516.070868pt;}
.x1b2{left:518.335629pt;}
.xa1{left:519.973124pt;}
.x16d{left:520.992166pt;}
.x107{left:522.267190pt;}
.xcb{left:523.806012pt;}
.x108{left:525.905648pt;}
.xa2{left:528.275921pt;}
.x133{left:529.555830pt;}
.x69{left:531.561671pt;}
.x134{left:532.715543pt;}
.x23{left:533.784412pt;}
.x149{left:535.094609pt;}
.xa3{left:536.113651pt;}
.x3a{left:539.077958pt;}
.x16e{left:540.032516pt;}
.x14a{left:542.966536pt;}
.x161{left:544.434034pt;}
.x3b{left:545.616239pt;}
.x192{left:547.857546pt;}
.x154{left:549.112051pt;}
.x6a{left:550.943982pt;}
.x155{left:552.750509pt;}
.x1ba{left:553.723631pt;}
.x13f{left:554.738769pt;}
.xcc{left:555.710909pt;}
.x17b{left:557.189159pt;}
.x140{left:558.377227pt;}
.x185{left:559.839835pt;}
.x3c{left:561.141237pt;}
.x14b{left:562.232580pt;}
.x24{left:563.411854pt;}
.x17c{left:564.616537pt;}
.x109{left:566.359552pt;}
.x6b{left:567.809464pt;}
.x16f{left:568.866610pt;}
.x10a{left:569.998010pt;}
.x1be{left:571.361943pt;}
.x170{left:572.505068pt;}
.x141{left:573.676531pt;}
.x1b3{left:574.738562pt;}
.x156{left:576.817676pt;}
.x135{left:578.209943pt;}
.x162{left:580.066299pt;}
.x142{left:581.979327pt;}
.x6c{left:582.910431pt;}
.x17d{left:584.429717pt;}
.x10b{left:585.741863pt;}
.x1b4{left:587.124365pt;}
.x193{left:588.920140pt;}
.x136{left:590.869313pt;}
.x157{left:592.547850pt;}
.x137{left:594.507771pt;}
.x186{left:596.026075pt;}
.x25{left:597.238568pt;}
.x6d{left:600.603458pt;}
.x10c{left:601.745605pt;}
.x26{left:603.749492pt;}
.x158{left:604.762672pt;}
.x10d{left:606.779261pt;}
.xa4{left:608.020088pt;}
.x6e{left:609.008842pt;}
.xa5{left:611.179801pt;}
.x27{left:613.023456pt;}
.x1b5{left:614.248657pt;}
.x10e{left:615.205163pt;}
.x163{left:616.498750pt;}
.x138{left:618.055158pt;}
.xa6{left:619.051728pt;}
.x19d{left:620.477214pt;}
.x1ca{left:622.337478pt;}
.x14c{left:623.593938pt;}
.x139{left:625.085862pt;}
.xa7{left:626.588533pt;}
.x1bf{left:627.819590pt;}
.x194{left:629.011567pt;}
.x10f{left:630.846428pt;}
.x19e{left:632.692037pt;}
.x110{left:634.553277pt;}
.x195{left:636.438945pt;}
.xa8{left:637.702243pt;}
.x164{left:640.866842pt;}
.x1cc{left:642.016806pt;}
.x196{left:643.469649pt;}
.x1bd{left:644.925422pt;}
.x187{left:646.759307pt;}
.x1b6{left:647.925879pt;}
.xa9{left:649.164753pt;}
.x171{left:650.260003pt;}
.x197{left:651.170595pt;}
.x1c0{left:653.220402pt;}
.x1a7{left:656.099709pt;}
.xaa{left:657.036679pt;}
.x19f{left:660.062540pt;}
.x1a0{left:663.700998pt;}
.x1a1{left:666.860711pt;}
}




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