
    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;}
.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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.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;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{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;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-10.898437px;}
._5{margin-left:-9.140625px;}
._7{margin-left:-5.613255px;}
._4{margin-left:-4.367946px;}
._3{margin-left:-3.367152px;}
._0{margin-left:-1.757451px;}
._1{width:1.804934px;}
._8{width:3.014427px;}
._2{width:4.875372px;}
.fc2{color:transparent;}
.fc1{color:rgb(10,102,194);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.999998px;}
.fs4{font-size:62.999997px;}
.fs2{font-size:71.999997px;}
.fs6{font-size:89.999996px;}
.fs0{font-size:100.799996px;}
.fs5{font-size:107.999996px;}
.fs3{font-size:143.999994px;}
.y0{bottom:0.000000px;}
.y13{bottom:13.517567px;}
.y7c{bottom:15.767567px;}
.y5{bottom:22.499999px;}
.y4b{bottom:25.892567px;}
.y28{bottom:32.642567px;}
.y43{bottom:33.767567px;}
.y12{bottom:40.517566px;}
.y1{bottom:42.237453px;}
.y4a{bottom:52.892566px;}
.y27{bottom:59.642566px;}
.y42{bottom:60.767565px;}
.y11{bottom:67.517565px;}
.y7b{bottom:78.767565px;}
.y26{bottom:86.642564px;}
.y41{bottom:87.767564px;}
.y10{bottom:94.517564px;}
.y72{bottom:96.767564px;}
.y49{bottom:97.892564px;}
.y7a{bottom:105.767564px;}
.y25{bottom:113.642563px;}
.y40{bottom:114.767563px;}
.yf{bottom:121.517563px;}
.y71{bottom:123.767563px;}
.y48{bottom:131.642563px;}
.y24{bottom:140.642562px;}
.y47{bottom:165.392561px;}
.ye{bottom:166.517561px;}
.y23{bottom:167.642561px;}
.y79{bottom:168.767561px;}
.y3f{bottom:177.767561px;}
.y70{bottom:186.767560px;}
.y22{bottom:194.642560px;}
.yd{bottom:200.267560px;}
.y3e{bottom:204.767559px;}
.y6f{bottom:213.767559px;}
.y21{bottom:221.642559px;}
.y3d{bottom:231.767558px;}
.y3c{bottom:258.767557px;}
.y46{bottom:270.017557px;}
.y20{bottom:284.642556px;}
.y3b{bottom:285.767556px;}
.y45{bottom:289.142556px;}
.y6e{bottom:292.517556px;}
.y85{bottom:298.142556px;}
.y1f{bottom:311.642555px;}
.y3a{bottom:312.767555px;}
.y84{bottom:325.142554px;}
.y6d{bottom:326.267554px;}
.y78{bottom:330.767554px;}
.y1e{bottom:338.642554px;}
.y39{bottom:339.767554px;}
.y83{bottom:352.142553px;}
.yc{bottom:354.392553px;}
.y77{bottom:364.517553px;}
.y1d{bottom:365.642553px;}
.y82{bottom:379.142552px;}
.y1c{bottom:392.642552px;}
.y38{bottom:402.767551px;}
.y81{bottom:406.142551px;}
.yb{bottom:410.642551px;}
.y1b{bottom:419.642551px;}
.y37{bottom:429.767550px;}
.y6c{bottom:434.267550px;}
.ya{bottom:442.142550px;}
.y36{bottom:456.767549px;}
.y6b{bottom:461.267549px;}
.y35{bottom:483.767548px;}
.y6a{bottom:488.267548px;}
.y9{bottom:497.267547px;}
.y80{bottom:507.392547px;}
.y34{bottom:510.767547px;}
.y69{bottom:515.267547px;}
.y8{bottom:540.017545px;}
.y7f{bottom:570.392544px;}
.y44{bottom:572.642544px;}
.y68{bottom:578.267544px;}
.y7{bottom:582.767544px;}
.y54{bottom:591.767543px;}
.y67{bottom:605.267543px;}
.y53{bottom:618.767542px;}
.y6{bottom:626.642542px;}
.y66{bottom:632.267542px;}
.y7e{bottom:633.392542px;}
.y65{bottom:659.267541px;}
.y7d{bottom:677.267540px;}
.y52{bottom:681.767540px;}
.y51{bottom:708.767538px;}
.y89{bottom:714.392538px;}
.y64{bottom:722.267538px;}
.y88{bottom:741.392537px;}
.y63{bottom:749.267537px;}
.y76{bottom:762.767536px;}
.y87{bottom:768.392536px;}
.y50{bottom:771.767536px;}
.y62{bottom:776.267536px;}
.y4d{bottom:783.017535px;}
.y33{bottom:798.767535px;}
.y61{bottom:803.267535px;}
.y4c{bottom:806.642534px;}
.y86{bottom:812.267534px;}
.y32{bottom:825.767534px;}
.y60{bottom:830.267533px;}
.y31{bottom:852.767532px;}
.y5f{bottom:857.267532px;}
.y4f{bottom:861.767532px;}
.y30{bottom:879.767531px;}
.y5e{bottom:884.267531px;}
.y75{bottom:888.767531px;}
.y2f{bottom:906.767530px;}
.y5d{bottom:911.267530px;}
.y4e{bottom:924.767529px;}
.y5c{bottom:938.267529px;}
.y74{bottom:951.767528px;}
.y1a{bottom:960.767528px;}
.y5b{bottom:965.267528px;}
.y2e{bottom:969.767528px;}
.y73{bottom:978.767527px;}
.y19{bottom:987.767527px;}
.y5a{bottom:992.267527px;}
.y2d{bottom:996.767526px;}
.y18{bottom:1014.767526px;}
.y59{bottom:1019.267526px;}
.y2c{bottom:1023.767525px;}
.y17{bottom:1041.767525px;}
.y58{bottom:1046.267524px;}
.y2b{bottom:1050.767524px;}
.y16{bottom:1068.767523px;}
.y57{bottom:1073.267523px;}
.y2a{bottom:1077.767523px;}
.y3{bottom:1090.142523px;}
.y29{bottom:1104.767522px;}
.y2{bottom:1112.642522px;}
.y56{bottom:1118.267521px;}
.y4{bottom:1125.629976px;}
.y15{bottom:1131.767521px;}
.y55{bottom:1152.017520px;}
.y14{bottom:1158.767520px;}
.h4{height:51.299998px;}
.h5{height:57.374998px;}
.h8{height:59.849998px;}
.h6{height:68.399997px;}
.ha{height:85.499996px;}
.h3{height:95.759996px;}
.h9{height:102.599996px;}
.h7{height:136.799994px;}
.h2{height:1179.017519px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:145.125030px;}
.w2{width:808.505822px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1e5{left:10.669921px;}
.x1e6{left:21.113524px;}
.x1ea{left:23.027343px;}
.x1eb{left:31.871337px;}
.x16{left:32.906285px;}
.x81{left:35.999999px;}
.x101{left:40.095701px;}
.x1{left:41.624998px;}
.x1e7{left:43.169676px;}
.x17{left:44.481479px;}
.x154{left:45.720701px;}
.xe3{left:47.144529px;}
.x1c3{left:48.480467px;}
.x9b{left:49.790037px;}
.x1d9{left:50.800779px;}
.x1d{left:52.189451px;}
.x1ec{left:53.789060px;}
.x18{left:55.160190px;}
.xe4{left:57.076169px;}
.x1b9{left:58.552732px;}
.x17b{left:59.607419px;}
.x82{left:60.930173px;}
.x192{left:62.358396px;}
.x7e{left:63.463620px;}
.x170{left:64.907224px;}
.x19{left:66.313510px;}
.xe5{left:68.554685px;}
.x17c{left:69.758786px;}
.x1e{left:71.554673px;}
.xe6{left:72.650388px;}
.xbd{left:74.408200px;}
.x1a{left:75.902377px;}
.x162{left:77.264645px;}
.x9c{left:79.083981px;}
.x9d{left:80.393551px;}
.x1d2{left:81.536129px;}
.xe7{left:82.933590px;}
.x64{left:83.953122px;}
.x1b{left:85.957064px;}
.x143{left:87.662106px;}
.x7f{left:89.764889px;}
.x9e{left:91.766598px;}
.x1c{left:93.111360px;}
.xbe{left:95.176754px;}
.x9f{left:96.196285px;}
.x144{left:97.382808px;}
.x1da{left:98.841793px;}
.xbf{left:99.887691px;}
.xa0{left:100.986324px;}
.x202{left:102.128902px;}
.x80{left:103.300045px;}
.xe8{left:104.537105px;}
.x2{left:106.189449px;}
.x1a2{left:107.481441px;}
.x1ab{left:108.685542px;}
.x34{left:109.740230px;}
.x1f{left:111.087874px;}
.x1f9{left:112.376948px;}
.x83{left:113.756831px;}
.x75{left:115.189448px;}
.x11e{left:116.481440px;}
.x35{left:118.458979px;}
.x102{left:119.627925px;}
.x1b6{left:120.867182px;}
.x3{left:122.102835px;}
.x1ac{left:123.117182px;}
.x103{left:124.338862px;}
.x171{left:125.393549px;}
.x76{left:126.796864px;}
.xe9{left:128.390620px;}
.xc0{left:130.376948px;}
.xf{left:132.161127px;}
.xea{left:133.382807px;}
.x65{left:134.525385px;}
.x4{left:136.031731px;}
.x77{left:137.080067px;}
.x36{left:138.374994px;}
.x1d6{left:139.482416px;}
.xc1{left:140.528314px;}
.x1c4{left:141.632801px;}
.x11f{left:142.751947px;}
.x181{left:144.448236px;}
.x37{left:146.039056px;}
.x120{left:147.462884px;}
.x78{left:148.989246px;}
.x10{left:150.901605px;}
.x5{left:152.187778px;}
.x79{left:153.568347px;}
.x38{left:154.740228px;}
.x20{left:156.474574px;}
.x6{left:158.204766px;}
.x1f3{left:159.424798px;}
.x4e{left:160.828112px;}
.x13e{left:161.929681px;}
.x1c0{left:163.010735px;}
.x7a{left:164.194323px;}
.x1fa{left:165.243157px;}
.x11{left:166.260491px;}
.x1b3{left:167.712884px;}
.x84{left:169.159869px;}
.x135{left:170.261712px;}
.x163{left:171.281243px;}
.x7{left:172.601250px;}
.x12{left:173.814690px;}
.x39{left:175.341790px;}
.x21{left:176.390588px;}
.x121{left:177.688469px;}
.x13{left:178.956292px;}
.x4f{left:180.445299px;}
.x1cb{left:181.828117px;}
.x3a{left:183.005852px;}
.x22{left:184.054651px;}
.x66{left:185.132805px;}
.x7b{left:186.726543px;}
.x1ef{left:187.857414px;}
.x13f{left:189.140617px;}
.x8{left:190.490459px;}
.x15d{left:191.786125px;}
.x50{left:193.048814px;}
.x104{left:194.528312px;}
.x1c5{left:195.670890px;}
.x7c{left:196.781230px;}
.x14{left:198.296623px;}
.xc2{left:199.889640px;}
.x1fe{left:200.979484px;}
.x3b{left:202.001882px;}
.x9{left:203.516124px;}
.x1f5{left:204.600577px;}
.x85{left:205.797075px;}
.x1a3{left:206.885734px;}
.x105{left:208.116202px;}
.x1ad{left:210.067374px;}
.xa1{left:211.376950px;}
.x67{left:213.380850px;}
.x86{left:215.552934px;}
.xa{left:217.149710px;}
.x106{left:218.399405px;}
.xc3{left:219.401358px;}
.x51{left:221.296860px;}
.xb{left:223.252838px;}
.xa2{left:224.542965px;}
.x140{left:226.204092px;}
.x122{left:227.364248px;}
.x52{left:228.960922px;}
.x172{left:230.141592px;}
.x68{left:231.767568px;}
.x107{left:233.349600px;}
.x1ee{left:234.404287px;}
.x3c{left:235.488209px;}
.xc{left:237.181734px;}
.x1e3{left:238.297842px;}
.x136{left:239.624990px;}
.x53{left:241.142545px;}
.xc4{left:242.718740px;}
.x3d{left:244.189380px;}
.x123{left:246.137685px;}
.x108{left:247.640615px;}
.x164{left:248.783193px;}
.x1c1{left:249.846669px;}
.x19a{left:250.851558px;}
.x193{left:252.246083px;}
.xc5{left:253.335927px;}
.x7d{left:255.070033px;}
.x141{left:256.640614px;}
.xd{left:258.284255px;}
.xa3{left:260.323237px;}
.x69{left:262.324220px;}
.x194{left:263.460927px;}
.x3e{left:264.790942px;}
.x1c2{left:265.930653px;}
.xc6{left:266.958973px;}
.xeb{left:268.707997px;}
.xa4{left:270.043940px;}
.x3f{left:271.605418px;}
.x124{left:273.594715px;}
.x173{left:274.772449px;}
.xc7{left:275.871082px;}
.x109{left:277.417957px;}
.x1cd{left:278.894520px;}
.x54{left:280.605434px;}
.x87{left:282.456872px;}
.x125{left:283.746082px;}
.x16d{left:285.591785px;}
.x145{left:286.655261px;}
.x1dc{left:287.885730px;}
.xc8{left:289.019519px;}
.x16e{left:290.302722px;}
.xe{left:291.716079px;}
.x142{left:292.842761px;}
.x126{left:294.618152px;}
.xec{left:296.358386px;}
.x1de{left:297.457019px;}
.x55{left:299.162079px;}
.x1d1{left:300.612292px;}
.x6a{left:301.787109px;}
.x88{left:303.576988px;}
.x137{left:304.716784px;}
.xa5{left:306.272454px;}
.x23{left:307.494093px;}
.x17d{left:309.243151px;}
.xed{left:310.957018px;}
.x10a{left:312.565417px;}
.x19b{left:314.053704px;}
.x24{left:315.158155px;}
.x15e{left:316.379870px;}
.x1f7{left:317.408190px;}
.x56{left:318.708954px;}
.x6b{left:320.343754px;}
.x155{left:322.277330px;}
.xc9{left:323.437487px;}
.x195{left:324.817369px;}
.x89{left:326.041831px;}
.x57{left:327.427703px;}
.x146{left:329.308580px;}
.x165{left:331.013658px;}
.x8a{left:332.567709px;}
.x1f8{left:333.747056px;}
.x196{left:334.749009px;}
.x25{left:335.759716px;}
.x127{left:337.280259px;}
.xca{left:338.361314px;}
.x6c{left:339.890629px;}
.x1f2{left:340.936509px;}
.x128{left:341.991197px;}
.xcb{left:343.072251px;}
.xee{left:344.671861px;}
.xa6{left:345.972647px;}
.x8b{left:347.227865px;}
.x6d{left:348.609361px;}
.x1ed{left:350.255114px;}
.x19c{left:351.565438px;}
.xcc{left:352.792954px;}
.x174{left:354.260727px;}
.x40{left:355.523400px;}
.x58{left:356.730453px;}
.x1e1{left:357.732407px;}
.x10b{left:359.165024px;}
.x1f6{left:360.316391px;}
.x17e{left:361.494126px;}
.x187{left:363.533188px;}
.xef{left:364.754868px;}
.x26{left:366.152293px;}
.x1a4{left:367.567367px;}
.xf0{left:369.747055px;}
.x147{left:371.021469px;}
.x8c{left:372.158040px;}
.x1ae{left:373.376938px;}
.xf1{left:374.457992px;}
.x148{left:375.732406px;}
.xa7{left:376.971670px;}
.x59{left:377.999984px;}
.x16f{left:379.705062px;}
.xa8{left:381.682607px;}
.x1af{left:383.660140px;}
.x5a{left:384.814459px;}
.x138{left:386.015609px;}
.xa9{left:387.448232px;}
.x10c{left:389.276351px;}
.x129{left:390.805648px;}
.x5b{left:392.478522px;}
.x1df{left:393.512679px;}
.x188{left:394.962874px;}
.xcd{left:396.360335px;}
.xf2{left:397.362288px;}
.x6e{left:399.181625px;}
.x12a{left:400.957015px;}
.x8d{left:402.849445px;}
.xaa{left:404.235340px;}
.xce{left:405.940413px;}
.x197{left:407.373030px;}
.xab{left:408.946278px;}
.x175{left:410.387678px;}
.x12b{left:411.574202px;}
.x27{left:412.968709px;}
.x139{left:414.281233px;}
.xcf{left:416.091780px;}
.x189{left:417.814436px;}
.x149{left:419.378889px;}
.x1c6{left:420.442365px;}
.x28{left:421.669881px;}
.x10d{left:423.254865px;}
.x1e8{left:424.561142px;}
.x41{left:426.240194px;}
.xac{left:427.930652px;}
.x10e{left:429.415998px;}
.xd0{left:431.507795px;}
.x5c{left:432.697270px;}
.x10f{left:434.126935px;}
.x176{left:435.269513px;}
.xf3{left:436.763654px;}
.xad{left:437.862292px;}
.x1b0{left:439.242169px;}
.x110{left:440.367169px;}
.x29{left:442.271442px;}
.xae{left:444.366198px;}
.x42{left:445.453084px;}
.x17f{left:447.249005px;}
.xaf{left:449.077135px;}
.x8e{left:450.270830px;}
.x18a{left:452.162091px;}
.x5d{left:454.089847px;}
.xf4{left:455.449200px;}
.x19d{left:456.735356px;}
.x14a{left:458.472637px;}
.x111{left:460.019512px;}
.x5e{left:461.753909px;}
.x2a{left:463.540973px;}
.x43{left:464.683552px;}
.xd1{left:465.899395px;}
.x1f1{left:467.138652px;}
.x12c{left:468.228496px;}
.x156{left:469.371074px;}
.x2b{left:471.205035px;}
.x44{left:472.347614px;}
.x1b7{left:473.818340px;}
.xf5{left:475.277324px;}
.x1a5{left:476.815410px;}
.x157{left:478.441386px;}
.xd2{left:479.575175px;}
.x8f{left:480.896317px;}
.x1f0{left:482.396464px;}
.x14b{left:483.952128px;}
.xb0{left:485.815415px;}
.x90{left:487.725419px;}
.xd3{left:489.726542px;}
.x13a{left:491.115214px;}
.x6f{left:492.591777px;}
.x18b{left:493.813456px;}
.xb1{left:494.885727px;}
.x182{left:495.887675px;}
.x13b{left:497.302714px;}
.x15f{left:498.673807px;}
.x183{left:500.088846px;}
.x2c{left:501.333940px;}
.x198{left:502.532206px;}
.x5f{left:503.642579px;}
.x112{left:504.949198px;}
.xf6{left:505.995096px;}
.x18c{left:507.436502px;}
.x14c{left:508.684549px;}
.x91{left:510.519851px;}
.x70{left:512.507792px;}
.x45{left:513.515581px;}
.x1cf{left:514.643533px;}
.xf7{left:515.698221px;}
.x177{left:517.262674px;}
.x113{left:519.240213px;}
.x46{left:521.179643px;}
.x60{left:523.189454px;}
.x71{left:525.392557px;}
.x158{left:527.080056px;}
.x14d{left:528.090798px;}
.xb2{left:529.795882px;}
.x178{left:531.694314px;}
.x47{left:533.361249px;}
.xb3{left:534.788069px;}
.x14e{left:536.493142px;}
.x180{left:537.943337px;}
.xb4{left:539.499007px;}
.x14f{left:540.588845px;}
.x1f4{left:541.608376px;}
.xd4{left:542.671852px;}
.x199{left:544.113259px;}
.x72{left:545.425748px;}
.x1a6{left:546.530251px;}
.x205{left:547.540993px;}
.x166{left:548.885719px;}
.xf8{left:550.845680px;}
.x2d{left:551.906203px;}
.x114{left:553.860328px;}
.x13c{left:555.055641px;}
.xd5{left:556.962867px;}
.x1b4{left:558.210914px;}
.xb5{left:559.318342px;}
.x18d{left:560.381813px;}
.xd6{left:561.955055px;}
.x115{left:563.440406px;}
.x73{left:565.042934px;}
.x167{left:566.252906px;}
.x92{left:567.627160px;}
.x159{left:568.731422px;}
.x150{left:569.830054px;}
.x2e{left:571.523390px;}
.x48{left:572.824138px;}
.x61{left:574.570311px;}
.x168{left:575.832984px;}
.x1a7{left:577.133765px;}
.xd7{left:578.443335px;}
.x151{left:579.981421px;}
.x1e9{left:581.009741px;}
.x12d{left:582.143530px;}
.x62{left:583.271482px;}
.x116{left:584.428687px;}
.x12e{left:586.239233px;}
.x1a8{left:588.005835px;}
.x93{left:589.393273px;}
.x49{left:591.380766px;}
.x74{left:592.488257px;}
.xd8{left:593.753882px;}
.x19e{left:594.993139px;}
.x12f{left:596.390600px;}
.x117{left:597.594702px;}
.x184{left:599.097631px;}
.x160{left:600.152319px;}
.x169{left:601.400366px;}
.x2f{left:602.513623px;}
.x63{left:603.873044px;}
.x19f{left:605.021465px;}
.x18e{left:606.357397px;}
.xd9{left:607.429662px;}
.x1ba{left:608.642553px;}
.x1db{left:609.644506px;}
.x4a{left:610.927640px;}
.x94{left:611.963584px;}
.xb6{left:613.819316px;}
.x179{left:614.935521px;}
.x185{left:615.972631px;}
.x118{left:617.457982px;}
.xb7{left:618.530253px;}
.x4b{left:619.646390px;}
.x152{left:620.789037px;}
.xda{left:622.423802px;}
.x1bb{left:623.707005px;}
.x130{left:625.042943px;}
.x16a{left:626.994115px;}
.x4c{left:628.347561px;}
.x203{left:629.560521px;}
.x30{left:630.761669px;}
.xf9{left:632.267552px;}
.x1dd{left:633.454075px;}
.x131{left:634.974583px;}
.xdb{left:636.205052px;}
.x119{left:637.892552px;}
.x17a{left:639.553684px;}
.x1d0{left:640.608372px;}
.xfa{left:642.199192px;}
.x132{left:644.044895px;}
.xdc{left:645.785129px;}
.x16b{left:647.630832px;}
.x31{left:649.148387px;}
.xdd{left:650.496067px;}
.x11a{left:652.060520px;}
.x15{left:653.624937px;}
.x153{left:655.602512px;}
.x32{left:656.812449px;}
.xfb{left:658.195285px;}
.x1ce{left:659.399387px;}
.xde{left:661.130832px;}
.x11b{left:662.211886px;}
.x18f{left:663.257785px;}
.x95{left:664.539754px;}
.x1e2{left:665.753879px;}
.x11c{left:666.922824px;}
.x1fb{left:667.933566px;}
.xb8{left:669.155251px;}
.x4d{left:670.218653px;}
.x1e4{left:671.730441px;}
.xb9{left:673.250954px;}
.x1a0{left:675.114235px;}
.x33{left:676.429636px;}
.x1fd{left:677.452120px;}
.x13d{left:678.480440px;}
.x186{left:680.203097px;}
.xfc{left:681.943331px;}
.x133{left:683.727511px;}
.xba{left:685.494118px;}
.x1d7{left:686.724581px;}
.x96{left:687.792866px;}
.x1c7{left:688.869112px;}
.x134{left:689.967745px;}
.xfd{left:691.013643px;}
.x1d3{left:692.077120px;}
.xdf{left:693.729463px;}
.xfe{left:695.724580px;}
.x1d8{left:696.875948px;}
.x11d{left:697.992158px;}
.xff{left:699.820283px;}
.x1cc{left:701.604463px;}
.x1bc{left:702.615205px;}
.xe0{left:703.661103px;}
.x1c8{left:704.856416px;}
.xbb{left:706.130836px;}
.x204{left:707.475556px;}
.x97{left:708.912982px;}
.xbc{left:710.841773px;}
.x1d4{left:711.940400px;}
.x1fc{left:713.487275px;}
.xe1{left:714.875947px;}
.x1bd{left:716.862275px;}
.xe2{left:718.971650px;}
.x1c9{left:720.254853px;}
.x1d5{left:721.371064px;}
.x98{left:722.703021px;}
.x100{left:724.262665px;}
.x15a{left:726.064423px;}
.x1be{left:727.479462px;}
.x99{left:728.503802px;}
.x190{left:730.116181px;}
.x15b{left:732.251923px;}
.x191{left:734.211883px;}
.x15c{left:736.347626px;}
.x16c{left:737.797821px;}
.x1e0{left:739.309540px;}
.x1ca{left:740.610321px;}
.x1b1{left:741.612274px;}
.x9a{left:743.163957px;}
.x1b8{left:744.424774px;}
.x1a9{left:745.461883px;}
.x1ff{left:746.686486px;}
.x161{left:747.843719px;}
.x1aa{left:750.172820px;}
.x1b2{left:751.543914px;}
.x1a1{left:753.864232px;}
.x1b5{left:755.929656px;}
.x200{left:756.969689px;}
.x1bf{left:758.663054px;}
.x201{left:763.508751px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-9.687500pt;}
._5{margin-left:-8.125000pt;}
._7{margin-left:-4.989560pt;}
._4{margin-left:-3.882618pt;}
._3{margin-left:-2.993024pt;}
._0{margin-left:-1.562179pt;}
._1{width:1.604386pt;}
._8{width:2.679490pt;}
._2{width:4.333664pt;}
.fs1{font-size:47.999998pt;}
.fs4{font-size:55.999998pt;}
.fs2{font-size:63.999997pt;}
.fs6{font-size:79.999997pt;}
.fs0{font-size:89.599996pt;}
.fs5{font-size:95.999996pt;}
.fs3{font-size:127.999995pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:12.015615pt;}
.y7c{bottom:14.015615pt;}
.y5{bottom:19.999999pt;}
.y4b{bottom:23.015615pt;}
.y28{bottom:29.015615pt;}
.y43{bottom:30.015615pt;}
.y12{bottom:36.015614pt;}
.y1{bottom:37.544403pt;}
.y4a{bottom:47.015614pt;}
.y27{bottom:53.015614pt;}
.y42{bottom:54.015614pt;}
.y11{bottom:60.015613pt;}
.y7b{bottom:70.015613pt;}
.y26{bottom:77.015613pt;}
.y41{bottom:78.015613pt;}
.y10{bottom:84.015612pt;}
.y72{bottom:86.015612pt;}
.y49{bottom:87.015612pt;}
.y7a{bottom:94.015612pt;}
.y25{bottom:101.015612pt;}
.y40{bottom:102.015612pt;}
.yf{bottom:108.015611pt;}
.y71{bottom:110.015611pt;}
.y48{bottom:117.015611pt;}
.y24{bottom:125.015611pt;}
.y47{bottom:147.015610pt;}
.ye{bottom:148.015610pt;}
.y23{bottom:149.015610pt;}
.y79{bottom:150.015610pt;}
.y3f{bottom:158.015609pt;}
.y70{bottom:166.015609pt;}
.y22{bottom:173.015609pt;}
.yd{bottom:178.015609pt;}
.y3e{bottom:182.015608pt;}
.y6f{bottom:190.015608pt;}
.y21{bottom:197.015608pt;}
.y3d{bottom:206.015607pt;}
.y3c{bottom:230.015606pt;}
.y46{bottom:240.015606pt;}
.y20{bottom:253.015605pt;}
.y3b{bottom:254.015605pt;}
.y45{bottom:257.015605pt;}
.y6e{bottom:260.015605pt;}
.y85{bottom:265.015605pt;}
.y1f{bottom:277.015604pt;}
.y3a{bottom:278.015604pt;}
.y84{bottom:289.015604pt;}
.y6d{bottom:290.015604pt;}
.y78{bottom:294.015604pt;}
.y1e{bottom:301.015603pt;}
.y39{bottom:302.015603pt;}
.y83{bottom:313.015603pt;}
.yc{bottom:315.015603pt;}
.y77{bottom:324.015602pt;}
.y1d{bottom:325.015602pt;}
.y82{bottom:337.015602pt;}
.y1c{bottom:349.015601pt;}
.y38{bottom:358.015601pt;}
.y81{bottom:361.015601pt;}
.yb{bottom:365.015601pt;}
.y1b{bottom:373.015600pt;}
.y37{bottom:382.015600pt;}
.y6c{bottom:386.015600pt;}
.ya{bottom:393.015600pt;}
.y36{bottom:406.015599pt;}
.y6b{bottom:410.015599pt;}
.y35{bottom:430.015598pt;}
.y6a{bottom:434.015598pt;}
.y9{bottom:442.015598pt;}
.y80{bottom:451.015597pt;}
.y34{bottom:454.015597pt;}
.y69{bottom:458.015597pt;}
.y8{bottom:480.015596pt;}
.y7f{bottom:507.015595pt;}
.y44{bottom:509.015595pt;}
.y68{bottom:514.015595pt;}
.y7{bottom:518.015594pt;}
.y54{bottom:526.015594pt;}
.y67{bottom:538.015594pt;}
.y53{bottom:550.015593pt;}
.y6{bottom:557.015593pt;}
.y66{bottom:562.015593pt;}
.y7e{bottom:563.015593pt;}
.y65{bottom:586.015592pt;}
.y7d{bottom:602.015591pt;}
.y52{bottom:606.015591pt;}
.y51{bottom:630.015590pt;}
.y89{bottom:635.015590pt;}
.y64{bottom:642.015589pt;}
.y88{bottom:659.015589pt;}
.y63{bottom:666.015588pt;}
.y76{bottom:678.015588pt;}
.y87{bottom:683.015588pt;}
.y50{bottom:686.015587pt;}
.y62{bottom:690.015587pt;}
.y4d{bottom:696.015587pt;}
.y33{bottom:710.015586pt;}
.y61{bottom:714.015586pt;}
.y4c{bottom:717.015586pt;}
.y86{bottom:722.015586pt;}
.y32{bottom:734.015585pt;}
.y60{bottom:738.015585pt;}
.y31{bottom:758.015584pt;}
.y5f{bottom:762.015584pt;}
.y4f{bottom:766.015584pt;}
.y30{bottom:782.015583pt;}
.y5e{bottom:786.015583pt;}
.y75{bottom:790.015583pt;}
.y2f{bottom:806.015582pt;}
.y5d{bottom:810.015582pt;}
.y4e{bottom:822.015582pt;}
.y5c{bottom:834.015581pt;}
.y74{bottom:846.015581pt;}
.y1a{bottom:854.015580pt;}
.y5b{bottom:858.015580pt;}
.y2e{bottom:862.015580pt;}
.y73{bottom:870.015580pt;}
.y19{bottom:878.015579pt;}
.y5a{bottom:882.015579pt;}
.y2d{bottom:886.015579pt;}
.y18{bottom:902.015578pt;}
.y59{bottom:906.015578pt;}
.y2c{bottom:910.015578pt;}
.y17{bottom:926.015577pt;}
.y58{bottom:930.015577pt;}
.y2b{bottom:934.015577pt;}
.y16{bottom:950.015576pt;}
.y57{bottom:954.015576pt;}
.y2a{bottom:958.015576pt;}
.y3{bottom:969.015576pt;}
.y29{bottom:982.015575pt;}
.y2{bottom:989.015575pt;}
.y56{bottom:994.015575pt;}
.y4{bottom:1000.559978pt;}
.y15{bottom:1006.015574pt;}
.y55{bottom:1024.015573pt;}
.y14{bottom:1030.015573pt;}
.h4{height:45.599998pt;}
.h5{height:50.999998pt;}
.h8{height:53.199998pt;}
.h6{height:60.799997pt;}
.ha{height:75.999997pt;}
.h3{height:85.119996pt;}
.h9{height:91.199996pt;}
.h7{height:121.599995pt;}
.h2{height:1048.015572pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:129.000027pt;}
.w2{width:718.671842pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e5{left:9.484375pt;}
.x1e6{left:18.767577pt;}
.x1ea{left:20.468749pt;}
.x1eb{left:28.330077pt;}
.x16{left:29.250031pt;}
.x81{left:31.999999pt;}
.x101{left:35.640624pt;}
.x1{left:36.999998pt;}
.x1e7{left:38.373045pt;}
.x17{left:39.539093pt;}
.x154{left:40.640623pt;}
.xe3{left:41.906248pt;}
.x1c3{left:43.093748pt;}
.x9b{left:44.257811pt;}
.x1d9{left:45.156248pt;}
.x1d{left:46.390623pt;}
.x1ec{left:47.812498pt;}
.x18{left:49.031280pt;}
.xe4{left:50.734373pt;}
.x1b9{left:52.046873pt;}
.x17b{left:52.984373pt;}
.x82{left:54.160154pt;}
.x192{left:55.429685pt;}
.x7e{left:56.412107pt;}
.x170{left:57.695310pt;}
.x19{left:58.945342pt;}
.xe5{left:60.937497pt;}
.x17c{left:62.007810pt;}
.x1e{left:63.604153pt;}
.xe6{left:64.578122pt;}
.xbd{left:66.140622pt;}
.x1a{left:67.468779pt;}
.x162{left:68.679685pt;}
.x9c{left:70.296872pt;}
.x9d{left:71.460935pt;}
.x1d2{left:72.476559pt;}
.xe7{left:73.718747pt;}
.x64{left:74.624997pt;}
.x1b{left:76.406279pt;}
.x143{left:77.921872pt;}
.x7f{left:79.791012pt;}
.x9e{left:81.570309pt;}
.x1c{left:82.765654pt;}
.xbe{left:84.601559pt;}
.x9f{left:85.507809pt;}
.x144{left:86.562496pt;}
.x1da{left:87.859371pt;}
.xbf{left:88.789059pt;}
.xa0{left:89.765621pt;}
.x202{left:90.781246pt;}
.x80{left:91.822262pt;}
.xe8{left:92.921871pt;}
.x2{left:94.390621pt;}
.x1a2{left:95.539059pt;}
.x1ab{left:96.609371pt;}
.x34{left:97.546871pt;}
.x1f{left:98.744777pt;}
.x1f9{left:99.890621pt;}
.x83{left:101.117183pt;}
.x75{left:102.390621pt;}
.x11e{left:103.539058pt;}
.x35{left:105.296871pt;}
.x102{left:106.335933pt;}
.x1b6{left:107.437496pt;}
.x3{left:108.535854pt;}
.x1ac{left:109.437495pt;}
.x103{left:110.523433pt;}
.x171{left:111.460933pt;}
.x76{left:112.708324pt;}
.xe9{left:114.124995pt;}
.xc0{left:115.890620pt;}
.xf{left:117.476558pt;}
.xea{left:118.562495pt;}
.x65{left:119.578120pt;}
.x4{left:120.917094pt;}
.x77{left:121.848948pt;}
.x36{left:122.999995pt;}
.x1d6{left:123.984370pt;}
.xc1{left:124.914057pt;}
.x1c4{left:125.895823pt;}
.x11f{left:126.890620pt;}
.x181{left:128.398432pt;}
.x37{left:129.812495pt;}
.x120{left:131.078120pt;}
.x78{left:132.434885pt;}
.x10{left:134.134760pt;}
.x5{left:135.278025pt;}
.x79{left:136.505198pt;}
.x38{left:137.546869pt;}
.x20{left:139.088510pt;}
.x6{left:140.626459pt;}
.x1f3{left:141.710932pt;}
.x4e{left:142.958322pt;}
.x13e{left:143.937494pt;}
.x1c0{left:144.898431pt;}
.x7a{left:145.950510pt;}
.x1fa{left:146.882806pt;}
.x11{left:147.787103pt;}
.x1b3{left:149.078119pt;}
.x84{left:150.364328pt;}
.x135{left:151.343744pt;}
.x163{left:152.249994pt;}
.x7{left:153.423333pt;}
.x12{left:154.501947pt;}
.x39{left:155.859369pt;}
.x21{left:156.791634pt;}
.x121{left:157.945306pt;}
.x13{left:159.072259pt;}
.x4f{left:160.395821pt;}
.x1cb{left:161.624993pt;}
.x3a{left:162.671868pt;}
.x22{left:163.604134pt;}
.x66{left:164.562493pt;}
.x7b{left:165.979149pt;}
.x1ef{left:166.984368pt;}
.x13f{left:168.124993pt;}
.x8{left:169.324853pt;}
.x15d{left:170.476555pt;}
.x50{left:171.598946pt;}
.x104{left:172.914055pt;}
.x1c5{left:173.929680pt;}
.x7c{left:174.916649pt;}
.x14{left:176.263665pt;}
.xc2{left:177.679680pt;}
.x1fe{left:178.648430pt;}
.x3b{left:179.557229pt;}
.x9{left:180.903221pt;}
.x1f5{left:181.867180pt;}
.x85{left:182.930733pt;}
.x1a3{left:183.898430pt;}
.x105{left:184.992180pt;}
.x1ad{left:186.726555pt;}
.xa1{left:187.890622pt;}
.x67{left:189.671867pt;}
.x86{left:191.602608pt;}
.xa{left:193.021965pt;}
.x106{left:194.132804pt;}
.xc3{left:195.023429pt;}
.x51{left:196.708320pt;}
.xb{left:198.446967pt;}
.xa2{left:199.593747pt;}
.x140{left:201.070304pt;}
.x122{left:202.101554pt;}
.x52{left:203.520820pt;}
.x172{left:204.570304pt;}
.x68{left:206.015616pt;}
.x107{left:207.421866pt;}
.x1ee{left:208.359366pt;}
.x3c{left:209.322852pt;}
.xc{left:210.828208pt;}
.x1e3{left:211.820304pt;}
.x136{left:212.999991pt;}
.x53{left:214.348929pt;}
.xc4{left:215.749991pt;}
.x3d{left:217.057227pt;}
.x123{left:218.789053pt;}
.x108{left:220.124991pt;}
.x164{left:221.140616pt;}
.x1c1{left:222.085928pt;}
.x19a{left:222.979163pt;}
.x193{left:224.218741pt;}
.xc5{left:225.187491pt;}
.x7d{left:226.728918pt;}
.x141{left:228.124990pt;}
.xd{left:229.586004pt;}
.xa3{left:231.398433pt;}
.x69{left:233.177084pt;}
.x194{left:234.187490pt;}
.x3e{left:235.369726pt;}
.x1c2{left:236.382803pt;}
.xc6{left:237.296865pt;}
.xeb{left:238.851553pt;}
.xa4{left:240.039057pt;}
.x3f{left:241.427038pt;}
.x124{left:243.195302pt;}
.x173{left:244.242177pt;}
.xc7{left:245.218740pt;}
.x109{left:246.593740pt;}
.x1cd{left:247.906240pt;}
.x54{left:249.427052pt;}
.x87{left:251.072775pt;}
.x125{left:252.218739pt;}
.x16d{left:253.859364pt;}
.x145{left:254.804677pt;}
.x1dc{left:255.898427pt;}
.xc8{left:256.906239pt;}
.x16e{left:258.046864pt;}
.xe{left:259.303181pt;}
.x142{left:260.304677pt;}
.x126{left:261.882802pt;}
.xec{left:263.429677pt;}
.x1de{left:264.406239pt;}
.x55{left:265.921848pt;}
.x1d1{left:267.210926pt;}
.x6a{left:268.255208pt;}
.x88{left:269.846211pt;}
.x137{left:270.859364pt;}
.xa5{left:272.242181pt;}
.x23{left:273.328082pt;}
.x17d{left:274.882801pt;}
.xed{left:276.406238pt;}
.x10a{left:277.835926pt;}
.x19b{left:279.158848pt;}
.x24{left:280.140582pt;}
.x15e{left:281.226551pt;}
.x1f7{left:282.140613pt;}
.x56{left:283.296848pt;}
.x6b{left:284.750004pt;}
.x155{left:286.468738pt;}
.xc9{left:287.499988pt;}
.x195{left:288.726550pt;}
.x89{left:289.814961pt;}
.x57{left:291.046847pt;}
.x146{left:292.718738pt;}
.x165{left:294.234363pt;}
.x8a{left:295.615742pt;}
.x1f8{left:296.664050pt;}
.x196{left:297.554675pt;}
.x25{left:298.453081pt;}
.x127{left:299.804675pt;}
.xca{left:300.765612pt;}
.x6c{left:302.125003pt;}
.x1f2{left:303.054675pt;}
.x128{left:303.992175pt;}
.xcb{left:304.953112pt;}
.xee{left:306.374987pt;}
.xa6{left:307.531242pt;}
.x8b{left:308.646991pt;}
.x6d{left:309.874988pt;}
.x1ed{left:311.337879pt;}
.x19c{left:312.502612pt;}
.xcc{left:313.593737pt;}
.x174{left:314.898424pt;}
.x40{left:316.020800pt;}
.x58{left:317.093736pt;}
.x1e1{left:317.984362pt;}
.x10b{left:319.257799pt;}
.x1f6{left:320.281237pt;}
.x17e{left:321.328112pt;}
.x187{left:323.140612pt;}
.xef{left:324.226549pt;}
.x26{left:325.468705pt;}
.x1a4{left:326.726549pt;}
.xf0{left:328.664049pt;}
.x147{left:329.796861pt;}
.x8c{left:330.807147pt;}
.x1ae{left:331.890611pt;}
.xf1{left:332.851549pt;}
.x148{left:333.984361pt;}
.xa7{left:335.085929pt;}
.x59{left:335.999986pt;}
.x16f{left:337.515611pt;}
.xa8{left:339.273428pt;}
.x1af{left:341.031236pt;}
.x5a{left:342.057297pt;}
.x138{left:343.124986pt;}
.xa9{left:344.398428pt;}
.x10c{left:346.023423pt;}
.x129{left:347.382798pt;}
.x5b{left:348.869797pt;}
.x1df{left:349.789048pt;}
.x188{left:351.078110pt;}
.xcd{left:352.320298pt;}
.xf2{left:353.210923pt;}
.x6e{left:354.828111pt;}
.x12a{left:356.406235pt;}
.x8d{left:358.088395pt;}
.xaa{left:359.320303pt;}
.xce{left:360.835922pt;}
.x197{left:362.109360pt;}
.xab{left:363.507802pt;}
.x175{left:364.789047pt;}
.x12b{left:365.843735pt;}
.x27{left:367.083297pt;}
.x139{left:368.249985pt;}
.xcf{left:369.859360pt;}
.x189{left:371.390610pt;}
.x149{left:372.781234pt;}
.x1c6{left:373.726547pt;}
.x28{left:374.817672pt;}
.x10d{left:376.226547pt;}
.x1e8{left:377.387681pt;}
.x41{left:378.880172pt;}
.xac{left:380.382802pt;}
.x10e{left:381.703109pt;}
.xd0{left:383.562484pt;}
.x5c{left:384.619795pt;}
.x10f{left:385.890609pt;}
.x176{left:386.906234pt;}
.xf3{left:388.234359pt;}
.xad{left:389.210926pt;}
.x1b0{left:390.437484pt;}
.x110{left:391.437484pt;}
.x29{left:393.130171pt;}
.xae{left:394.992176pt;}
.x42{left:395.958297pt;}
.x17f{left:397.554671pt;}
.xaf{left:399.179676pt;}
.x8e{left:400.240738pt;}
.x18a{left:401.921858pt;}
.x5d{left:403.635420pt;}
.xf4{left:404.843733pt;}
.x19d{left:405.986983pt;}
.x14a{left:407.531233pt;}
.x111{left:408.906233pt;}
.x5e{left:410.447919pt;}
.x2a{left:412.036420pt;}
.x43{left:413.052046pt;}
.xd1{left:414.132795pt;}
.x1f1{left:415.234358pt;}
.x12c{left:416.203108pt;}
.x156{left:417.218733pt;}
.x2b{left:418.848920pt;}
.x44{left:419.864546pt;}
.x1b7{left:421.171857pt;}
.xf5{left:422.468732pt;}
.x1a5{left:423.835920pt;}
.x157{left:425.281232pt;}
.xd2{left:426.289045pt;}
.x8f{left:427.463393pt;}
.x1f0{left:428.796857pt;}
.x14b{left:430.179670pt;}
.xb0{left:431.835925pt;}
.x90{left:433.533705pt;}
.xd3{left:435.312482pt;}
.x13a{left:436.546857pt;}
.x6f{left:437.859357pt;}
.x18b{left:438.945294pt;}
.xb1{left:439.898424pt;}
.x182{left:440.789044pt;}
.x13b{left:442.046857pt;}
.x15f{left:443.265607pt;}
.x183{left:444.523419pt;}
.x2c{left:445.630169pt;}
.x198{left:446.695294pt;}
.x5f{left:447.682293pt;}
.x112{left:448.843731pt;}
.xf6{left:449.773419pt;}
.x18c{left:451.054669pt;}
.x14c{left:452.164044pt;}
.x91{left:453.795423pt;}
.x70{left:455.562482pt;}
.x45{left:456.458294pt;}
.x1cf{left:457.460918pt;}
.xf7{left:458.398418pt;}
.x177{left:459.789043pt;}
.x113{left:461.546856pt;}
.x46{left:463.270794pt;}
.x60{left:465.057292pt;}
.x71{left:467.015606pt;}
.x158{left:468.515605pt;}
.x14d{left:469.414043pt;}
.xb2{left:470.929673pt;}
.x178{left:472.617168pt;}
.x47{left:474.098888pt;}
.xb3{left:475.367173pt;}
.x14e{left:476.882793pt;}
.x180{left:478.171855pt;}
.xb4{left:479.554673pt;}
.x14f{left:480.523417pt;}
.x1f4{left:481.429667pt;}
.xd4{left:482.374980pt;}
.x199{left:483.656230pt;}
.x72{left:484.822887pt;}
.x1a6{left:485.804667pt;}
.x205{left:486.703105pt;}
.x166{left:487.898417pt;}
.xf8{left:489.640605pt;}
.x2d{left:490.583292pt;}
.x114{left:492.320292pt;}
.x13c{left:493.382792pt;}
.xd5{left:495.078104pt;}
.x1b4{left:496.187479pt;}
.xb5{left:497.171859pt;}
.x18d{left:498.117167pt;}
.xd6{left:499.515604pt;}
.x115{left:500.835917pt;}
.x73{left:502.260386pt;}
.x167{left:503.335917pt;}
.x92{left:504.557476pt;}
.x159{left:505.539041pt;}
.x150{left:506.515604pt;}
.x2e{left:508.020791pt;}
.x48{left:509.177011pt;}
.x61{left:510.729165pt;}
.x168{left:511.851541pt;}
.x1a7{left:513.007791pt;}
.xd7{left:514.171854pt;}
.x151{left:515.539041pt;}
.x1e9{left:516.453103pt;}
.x12d{left:517.460916pt;}
.x62{left:518.463540pt;}
.x116{left:519.492166pt;}
.x12e{left:521.101541pt;}
.x1a8{left:522.671853pt;}
.x93{left:523.905131pt;}
.x49{left:525.671792pt;}
.x74{left:526.656229pt;}
.xd8{left:527.781228pt;}
.x19e{left:528.882791pt;}
.x12f{left:530.124978pt;}
.x117{left:531.195290pt;}
.x184{left:532.531228pt;}
.x160{left:533.468728pt;}
.x169{left:534.578103pt;}
.x2f{left:535.567665pt;}
.x63{left:536.776039pt;}
.x19f{left:537.796858pt;}
.x18e{left:538.984353pt;}
.xd9{left:539.937478pt;}
.x1ba{left:541.015602pt;}
.x1db{left:541.906227pt;}
.x4a{left:543.046791pt;}
.x94{left:543.967630pt;}
.xb6{left:545.617170pt;}
.x179{left:546.609352pt;}
.x185{left:547.531227pt;}
.x118{left:548.851540pt;}
.xb7{left:549.804670pt;}
.x4b{left:550.796791pt;}
.x152{left:551.812477pt;}
.xda{left:553.265602pt;}
.x1bb{left:554.406227pt;}
.x130{left:555.593727pt;}
.x16a{left:557.328102pt;}
.x4c{left:558.531166pt;}
.x203{left:559.609352pt;}
.x30{left:560.677039pt;}
.xf9{left:562.015602pt;}
.x1dd{left:563.070289pt;}
.x131{left:564.421851pt;}
.xdb{left:565.515601pt;}
.x119{left:567.015601pt;}
.x17a{left:568.492164pt;}
.x1d0{left:569.429664pt;}
.xfa{left:570.843726pt;}
.x132{left:572.484351pt;}
.xdc{left:574.031226pt;}
.x16b{left:575.671851pt;}
.x31{left:577.020788pt;}
.xdd{left:578.218726pt;}
.x11a{left:579.609351pt;}
.x15{left:580.999944pt;}
.x153{left:582.757788pt;}
.x32{left:583.833288pt;}
.xfb{left:585.062476pt;}
.x1ce{left:586.132788pt;}
.xde{left:587.671851pt;}
.x11b{left:588.632788pt;}
.x18f{left:589.562475pt;}
.x95{left:590.702004pt;}
.x1e2{left:591.781225pt;}
.x11c{left:592.820288pt;}
.x1fb{left:593.718725pt;}
.xb8{left:594.804668pt;}
.x4d{left:595.749914pt;}
.x1e4{left:597.093725pt;}
.xb9{left:598.445293pt;}
.x1a0{left:600.101542pt;}
.x33{left:601.270787pt;}
.x1fd{left:602.179662pt;}
.x13d{left:603.093725pt;}
.x186{left:604.624975pt;}
.xfc{left:606.171850pt;}
.x133{left:607.757787pt;}
.xba{left:609.328105pt;}
.x1d7{left:610.421850pt;}
.x96{left:611.371436pt;}
.x1c7{left:612.328099pt;}
.x134{left:613.304662pt;}
.xfd{left:614.234349pt;}
.x1d3{left:615.179662pt;}
.xdf{left:616.648412pt;}
.xfe{left:618.421849pt;}
.x1d8{left:619.445287pt;}
.x11d{left:620.437474pt;}
.xff{left:622.062474pt;}
.x1cc{left:623.648412pt;}
.x1bc{left:624.546849pt;}
.xe0{left:625.476536pt;}
.x1c8{left:626.539036pt;}
.xbb{left:627.671854pt;}
.x204{left:628.867161pt;}
.x97{left:630.144873pt;}
.xbc{left:631.859354pt;}
.x1d4{left:632.835911pt;}
.x1fc{left:634.210911pt;}
.xe1{left:635.445286pt;}
.x1bd{left:637.210911pt;}
.xe2{left:639.085911pt;}
.x1c9{left:640.226536pt;}
.x1d5{left:641.218723pt;}
.x98{left:642.402685pt;}
.x100{left:643.789036pt;}
.x15a{left:645.390598pt;}
.x1be{left:646.648411pt;}
.x99{left:647.558935pt;}
.x190{left:648.992160pt;}
.x15b{left:650.890598pt;}
.x191{left:652.632785pt;}
.x15c{left:654.531223pt;}
.x16c{left:655.820285pt;}
.x1e0{left:657.164035pt;}
.x1ca{left:658.320285pt;}
.x1b1{left:659.210910pt;}
.x9a{left:660.590184pt;}
.x1b8{left:661.710910pt;}
.x1a9{left:662.632785pt;}
.x1ff{left:663.721321pt;}
.x161{left:664.749972pt;}
.x1aa{left:666.820285pt;}
.x1b2{left:668.039035pt;}
.x1a1{left:670.101540pt;}
.x1b5{left:671.937472pt;}
.x200{left:672.861946pt;}
.x1bf{left:674.367159pt;}
.x201{left:678.674446pt;}
}




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