
    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_286e63e41223939794bb1c81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f75a2dbcd2a24e5aa919b931.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eec23b95868a390b706fe93f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_47abac0cf5b0994e007bae63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005859;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:ff5;src:url('chunks/assets/font_7f9ce8fd721e5ed797773519.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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:ff6;src:url('chunks/assets/font_a3c58a69e66f0f60870ec6b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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:ff7;src:url('chunks/assets/font_6b3cc0accf998dc921ff9e7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875977;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:ff8;src:url('chunks/assets/font_52c25f1489c9032f947c738d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f0d51aef1591e36ffa00d503.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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:ffa;src:url('chunks/assets/font_c1ab12cc930133bc3dd2bdcb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d17108be656321988f9a34ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v1{vertical-align:3.416715px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038355px;}
.ls4{letter-spacing:0.055125px;}
.ls6{letter-spacing:77.986255px;}
.ls7{letter-spacing:78.000428px;}
.ls1{letter-spacing:107.972093px;}
.ls8{letter-spacing:107.983350px;}
.ls2{letter-spacing:107.986172px;}
.ls3{letter-spacing:1583.768392px;}
.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;}
}
.ws4{word-spacing:-38.850000px;}
.wsa{word-spacing:-24.864002px;}
.wsb{word-spacing:-21.756000px;}
.ws9{word-spacing:-20.202001px;}
.ws5{word-spacing:-20.124300px;}
.ws7{word-spacing:-19.405578px;}
.ws3{word-spacing:-18.648001px;}
.ws8{word-spacing:-18.492601px;}
.ws1{word-spacing:-17.094001px;}
.ws6{word-spacing:-15.540000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:375.463330px;}
._2{width:1.039721px;}
._0{width:2.116004px;}
._1{width:1527.384460px;}
.fc8{color:rgb(229,116,65);}
.fc7{color:rgb(1,70,131);}
.fc6{color:rgb(0,151,167);}
.fc3{color:rgb(23,77,110);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(24,130,149);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(32,85,138);}
.fs1d{font-size:48.000003px;}
.fs14{font-size:60.000000px;}
.fs10{font-size:62.108406px;}
.fs8{font-size:66.000004px;}
.fse{font-size:66.199205px;}
.fsf{font-size:68.108402px;}
.fs19{font-size:71.400004px;}
.fs20{font-size:71.700212px;}
.fs2{font-size:72.000002px;}
.fs13{font-size:74.925011px;}
.fs12{font-size:77.699999px;}
.fsa{font-size:78.000005px;}
.fsb{font-size:79.288806px;}
.fsc{font-size:80.507401px;}
.fs1f{font-size:83.699994px;}
.fs3{font-size:84.000000px;}
.fs7{font-size:84.490806px;}
.fs1a{font-size:90.000003px;}
.fs16{font-size:96.000006px;}
.fs9{font-size:102.000000px;}
.fs6{font-size:108.000003px;}
.fs1c{font-size:109.200009px;}
.fs1b{font-size:115.200004px;}
.fs15{font-size:120.000001px;}
.fs1e{font-size:121.200007px;}
.fs18{font-size:127.200010px;}
.fs5{font-size:133.200013px;}
.fs11{font-size:149.999999px;}
.fsd{font-size:151.200005px;}
.fs17{font-size:151.200014px;}
.fs4{font-size:162.000005px;}
.fs1{font-size:167.999999px;}
.fs0{font-size:240.000002px;}
.fs21{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.yb{bottom:11.525991px;}
.ycc{bottom:14.872324px;}
.y82{bottom:15.189562px;}
.y87{bottom:24.189563px;}
.y3d{bottom:24.214110px;}
.yf4{bottom:27.288420px;}
.ycb{bottom:29.272324px;}
.y5b{bottom:34.200094px;}
.y24{bottom:36.434936px;}
.y30{bottom:37.315478px;}
.yca{bottom:45.033400px;}
.y3c{bottom:46.217941px;}
.y98{bottom:48.373553px;}
.y55{bottom:49.347788px;}
.yf3{bottom:51.142921px;}
.ydb{bottom:51.366357px;}
.ya8{bottom:54.031876px;}
.yb8{bottom:63.187070px;}
.y86{bottom:66.561930px;}
.ye6{bottom:69.348493px;}
.y81{bottom:73.773883px;}
.yc9{bottom:73.833400px;}
.yda{bottom:76.566347px;}
.y97{bottom:77.173566px;}
.ya7{bottom:81.031877px;}
.yf2{bottom:83.997411px;}
.yb7{bottom:86.587071px;}
.ya{bottom:87.465493px;}
.y85{bottom:95.361929px;}
.y80{bottom:97.173884px;}
.yd9{bottom:101.766352px;}
.yc8{bottom:102.633396px;}
.ye5{bottom:103.728483px;}
.y96{bottom:105.973559px;}
.yf1{bottom:107.851906px;}
.ya6{bottom:108.031874px;}
.y9{bottom:109.065483px;}
.yb6{bottom:109.987072px;}
.yf5{bottom:114.982780px;}
.y7f{bottom:120.573890px;}
.y49{bottom:122.174197px;}
.y84{bottom:124.161926px;}
.yd8{bottom:126.966349px;}
.y8{bottom:130.665477px;}
.y71{bottom:130.752288px;}
.y62{bottom:131.801329px;}
.yb5{bottom:133.387073px;}
.y95{bottom:134.773556px;}
.ya5{bottom:135.031875px;}
.y69{bottom:137.410489px;}
.yf0{bottom:140.706401px;}
.yc6{bottom:141.292043px;}
.y54{bottom:142.404240px;}
.y7e{bottom:143.973891px;}
.y48{bottom:147.150177px;}
.y70{bottom:150.316433px;}
.ye4{bottom:151.728477px;}
.y61{bottom:152.654070px;}
.y1b{bottom:153.000098px;}
.y2c{bottom:158.113572px;}
.y68{bottom:158.864622px;}
.yd7{bottom:161.145121px;}
.yc5{bottom:164.062021px;}
.yef{bottom:164.560902px;}
.y7d{bottom:167.373890px;}
.y53{bottom:167.764058px;}
.y6f{bottom:169.880577px;}
.yb4{bottom:171.404772px;}
.y47{bottom:172.126145px;}
.y60{bottom:173.506824px;}
.y7{bottom:173.865471px;}
.ya4{bottom:177.593769px;}
.y91{bottom:178.842800px;}
.y1a{bottom:179.614708px;}
.y67{bottom:180.318766px;}
.y2b{bottom:184.728181px;}
.ye3{bottom:186.108512px;}
.yc4{bottom:186.831999px;}
.yd6{bottom:188.055122px;}
.yee{bottom:188.415403px;}
.y6e{bottom:189.444722px;}
.y52{bottom:193.123888px;}
.yb3{bottom:193.895784px;}
.y5f{bottom:194.359566px;}
.y23{bottom:194.588379px;}
.y6{bottom:195.465474px;}
.y94{bottom:196.434606px;}
.y46{bottom:197.102124px;}
.y3b{bottom:199.511226px;}
.ya3{bottom:200.084758px;}
.y66{bottom:201.772911px;}
.y90{bottom:202.444176px;}
.y19{bottom:206.229306px;}
.y6d{bottom:209.008866px;}
.yc3{bottom:209.601989px;}
.y2a{bottom:211.342780px;}
.yd5{bottom:214.965111px;}
.y5e{bottom:215.212314px;}
.yb2{bottom:216.386796px;}
.y5{bottom:217.065475px;}
.y51{bottom:218.483718px;}
.y7b{bottom:218.579129px;}
.y22{bottom:221.202989px;}
.y45{bottom:222.078104px;}
.y65{bottom:223.227059px;}
.y8f{bottom:226.045563px;}
.y3a{bottom:226.421227px;}
.y6c{bottom:228.573010px;}
.yc2{bottom:232.371978px;}
.y18{bottom:232.843916px;}
.ye2{bottom:234.108517px;}
.y5d{bottom:236.065061px;}
.y29{bottom:237.957389px;}
.yb1{bottom:238.877797px;}
.ya2{bottom:240.575771px;}
.y7a{bottom:240.723652px;}
.yd4{bottom:241.875112px;}
.y50{bottom:243.843547px;}
.y64{bottom:244.681208px;}
.y44{bottom:247.054072px;}
.y21{bottom:247.817587px;}
.y6b{bottom:248.137155px;}
.y8e{bottom:249.646939px;}
.yf7{bottom:251.733004px;}
.y39{bottom:253.331217px;}
.yc1{bottom:255.141967px;}
.y5c{bottom:256.917807px;}
.y17{bottom:259.458514px;}
.y79{bottom:262.868175px;}
.ya1{bottom:263.066771px;}
.y28{bottom:264.571988px;}
.y63{bottom:266.135353px;}
.ye1{bottom:267.228518px;}
.y6a{bottom:267.701301px;}
.yd3{bottom:268.785113px;}
.y4f{bottom:269.203377px;}
.y43{bottom:272.030052px;}
.y4{bottom:272.926238px;}
.y8d{bottom:273.248326px;}
.y20{bottom:274.432197px;}
.yb0{bottom:279.368798px;}
.y38{bottom:280.241218px;}
.y78{bottom:285.012698px;}
.ya0{bottom:285.557772px;}
.y16{bottom:286.073123px;}
.y27{bottom:291.186597px;}
.y4e{bottom:294.563195px;}
.yc0{bottom:295.911958px;}
.y1f{bottom:301.046795px;}
.yaf{bottom:301.859788px;}
.y37{bottom:307.151219px;}
.y15{bottom:312.687722px;}
.yd2{bottom:313.695114px;}
.ye0{bottom:315.348516px;}
.y26{bottom:317.801199px;}
.ybf{bottom:318.681947px;}
.y4d{bottom:319.923025px;}
.y8c{bottom:320.451077px;}
.y42{bottom:321.981966px;}
.y3{bottom:323.326228px;}
.yae{bottom:324.350777px;}
.y77{bottom:325.157188px;}
.y9f{bottom:326.048762px;}
.y1e{bottom:327.661405px;}
.y5a{bottom:331.191250px;}
.y36{bottom:334.061219px;}
.y14{bottom:339.302331px;}
.yd1{bottom:340.605111px;}
.ybe{bottom:341.451942px;}
.y8b{bottom:344.052453px;}
.y25{bottom:344.415799px;}
.y4c{bottom:345.282851px;}
.yad{bottom:346.841778px;}
.y41{bottom:346.957945px;}
.y76{bottom:347.301685px;}
.ydf{bottom:348.468522px;}
.y9e{bottom:348.539763px;}
.y35{bottom:360.971220px;}
.ybd{bottom:364.221937px;}
.y13{bottom:365.916930px;}
.yd0{bottom:367.515109px;}
.y8a{bottom:367.653829px;}
.y75{bottom:369.446179px;}
.y4b{bottom:370.642684px;}
.y9d{bottom:371.030764px;}
.y40{bottom:371.933914px;}
.y2{bottom:378.046230px;}
.y1d{bottom:380.890608px;}
.y59{bottom:383.211252px;}
.ye7{bottom:385.838039px;}
.yf6{bottom:386.518100px;}
.ybc{bottom:386.991938px;}
.yac{bottom:387.332784px;}
.y34{bottom:387.881216px;}
.y89{bottom:391.255204px;}
.y2e{bottom:391.358581px;}
.y74{bottom:391.590679px;}
.y9c{bottom:393.521758px;}
.ycf{bottom:394.425106px;}
.y4a{bottom:396.002513px;}
.y3f{bottom:396.909883px;}
.yde{bottom:397.848537px;}
.y1c{bottom:407.505208px;}
.y93{bottom:409.590680px;}
.yab{bottom:409.823786px;}
.y33{bottom:414.791215px;}
.y58{bottom:417.231253px;}
.y2d{bottom:417.973186px;}
.y12{bottom:419.146141px;}
.y3e{bottom:421.885853px;}
.ybb{bottom:427.761939px;}
.y73{bottom:431.735181px;}
.yaa{bottom:432.314783px;}
.y9b{bottom:434.012760px;}
.ydd{bottom:435.108538px;}
.y88{bottom:438.457955px;}
.yce{bottom:439.335107px;}
.y32{bottom:439.631214px;}
.yf{bottom:449.469791px;}
.y1{bottom:450.046221px;}
.y57{bottom:451.251254px;}
.y9a{bottom:456.503757px;}
.y2f{bottom:460.631403px;}
.yba{bottom:466.728842px;}
.yed{bottom:466.805258px;}
.ye{bottom:471.069794px;}
.y92{bottom:489.407385px;}
.ycd{bottom:489.407388px;}
.y83{bottom:490.949996px;}
.yd{bottom:492.669795px;}
.y11{bottom:493.899229px;}
.y72{bottom:495.891730px;}
.yea{bottom:496.912792px;}
.ya9{bottom:498.048848px;}
.yb9{bottom:499.488848px;}
.yec{bottom:500.285265px;}
.y99{bottom:501.741780px;}
.ydc{bottom:504.001821px;}
.y56{bottom:508.524991px;}
.ye9{bottom:523.912797px;}
.y31{bottom:526.400266px;}
.yeb{bottom:536.645262px;}
.yc{bottom:542.599538px;}
.y10{bottom:543.475240px;}
.y7c{bottom:550.019473px;}
.yc7{bottom:550.020942px;}
.ye8{bottom:550.912795px;}
.h21{height:34.945315px;}
.h17{height:45.908203px;}
.h14{height:47.521422px;}
.hb{height:50.499026px;}
.ha{height:50.499161px;}
.h12{height:50.651443px;}
.h13{height:52.112239px;}
.h1d{height:54.630765px;}
.h3{height:54.703127px;}
.h24{height:54.860465px;}
.h4{height:55.089846px;}
.h1a{height:57.327877px;}
.h16{height:59.451123px;}
.hd{height:59.680668px;}
.hf{height:60.666777px;}
.h10{height:61.599169px;}
.h23{height:64.041939px;}
.h5{height:64.271484px;}
.h9{height:64.647018px;}
.h1e{height:68.862307px;}
.h19{height:73.453130px;}
.hc{height:78.043946px;}
.h8{height:82.634768px;}
.h20{height:83.552937px;}
.he{height:86.051483px;}
.h1f{height:88.143753px;}
.h18{height:91.816407px;}
.h22{height:92.734576px;}
.h1c{height:97.325398px;}
.h7{height:101.916221px;}
.h15{height:114.770507px;}
.h11{height:115.688676px;}
.h1b{height:115.688682px;}
.h6{height:123.952152px;}
.h2{height:127.640625px;}
.h1{height:183.632814px;}
.h25{height:220.359382px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x61{left:10.125000px;}
.x52{left:18.301182px;}
.x29{left:19.389332px;}
.xa{left:25.184056px;}
.x5f{left:37.807086px;}
.x65{left:38.899607px;}
.xb{left:46.939963px;}
.xc{left:52.299215px;}
.x66{left:53.447399px;}
.x2d{left:58.323431px;}
.x1e{left:67.069557px;}
.xd{left:72.345475px;}
.x12{left:80.494978px;}
.x6d{left:82.124384px;}
.xe{left:84.778059px;}
.x67{left:87.439964px;}
.x39{left:89.655341px;}
.x14{left:90.952709px;}
.x44{left:94.425502px;}
.xf{left:95.828528px;}
.x3e{left:97.873870px;}
.x3c{left:101.173064px;}
.x46{left:102.397422px;}
.x45{left:105.612778px;}
.x3b{left:121.218617px;}
.x13{left:124.351519px;}
.x3d{left:134.867069px;}
.x10{left:136.809053px;}
.x11{left:139.937607px;}
.x6a{left:147.555123px;}
.x15{left:161.219035px;}
.x3a{left:205.195883px;}
.x3f{left:212.018542px;}
.x57{left:339.634856px;}
.x59{left:346.617423px;}
.x42{left:377.214233px;}
.x28{left:378.218487px;}
.x5c{left:380.222549px;}
.x5b{left:382.408828px;}
.x4e{left:386.861244px;}
.x60{left:388.833944px;}
.x4f{left:391.188622px;}
.x40{left:394.898110px;}
.x21{left:396.432266px;}
.x63{left:398.251554px;}
.x43{left:399.364500px;}
.x41{left:401.141383px;}
.x24{left:402.261569px;}
.x58{left:406.696502px;}
.x22{left:409.874256px;}
.x20{left:413.342979px;}
.x25{left:414.904979px;}
.x50{left:416.417728px;}
.x56{left:417.510835px;}
.x55{left:419.443640px;}
.x26{left:429.228317px;}
.x62{left:432.096174px;}
.x23{left:433.861572px;}
.x1f{left:434.995490px;}
.x54{left:454.532736px;}
.x53{left:468.615289px;}
.x64{left:471.951398px;}
.x69{left:537.191950px;}
.x5a{left:540.803965px;}
.x5{left:551.427081px;}
.x4{left:561.186327px;}
.x51{left:564.414228px;}
.x5e{left:569.896477px;}
.x3{left:581.660552px;}
.x2{left:594.499966px;}
.x5d{left:602.324266px;}
.x27{left:609.510845px;}
.x1{left:612.032431px;}
.x2a{left:618.901260px;}
.x9{left:629.306964px;}
.x49{left:648.736444px;}
.x48{left:651.135163px;}
.x47{left:654.492559px;}
.x4d{left:657.346009px;}
.x4b{left:673.754228px;}
.x4a{left:675.050219px;}
.x2b{left:676.521742px;}
.x2e{left:679.148684px;}
.x4c{left:684.925462px;}
.x7{left:713.910488px;}
.x2c{left:715.296285px;}
.x18{left:731.564047px;}
.x6{left:733.391438px;}
.x16{left:739.913734px;}
.x1c{left:743.093829px;}
.x17{left:747.335677px;}
.x8{left:751.637544px;}
.x19{left:757.339870px;}
.x30{left:759.111897px;}
.x1a{left:760.427183px;}
.x1b{left:761.973431px;}
.x36{left:767.392095px;}
.x37{left:768.760838px;}
.x2f{left:774.376062px;}
.x35{left:778.893434px;}
.x33{left:780.697449px;}
.x32{left:789.606419px;}
.x34{left:804.048393px;}
.x31{left:815.781885px;}
.x38{left:820.690998px;}
.x1d{left:825.080651px;}
.x6b{left:835.285523px;}
.x68{left:843.261955px;}
.x6c{left:857.099590px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.037080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034093pt;}
.ls4{letter-spacing:0.049000pt;}
.ls6{letter-spacing:69.321115pt;}
.ls7{letter-spacing:69.333714pt;}
.ls1{letter-spacing:95.975194pt;}
.ls8{letter-spacing:95.985200pt;}
.ls2{letter-spacing:95.987708pt;}
.ls3{letter-spacing:1407.794126pt;}
.ws4{word-spacing:-34.533333pt;}
.wsa{word-spacing:-22.101335pt;}
.wsb{word-spacing:-19.338667pt;}
.ws9{word-spacing:-17.957335pt;}
.ws5{word-spacing:-17.888267pt;}
.ws7{word-spacing:-17.249403pt;}
.ws3{word-spacing:-16.576001pt;}
.ws8{word-spacing:-16.437868pt;}
.ws1{word-spacing:-15.194667pt;}
.ws6{word-spacing:-13.813333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:333.745182pt;}
._2{width:0.924196pt;}
._0{width:1.880893pt;}
._1{width:1357.675076pt;}
.fs1d{font-size:42.666669pt;}
.fs14{font-size:53.333334pt;}
.fs10{font-size:55.207472pt;}
.fs8{font-size:58.666670pt;}
.fse{font-size:58.843738pt;}
.fsf{font-size:60.540802pt;}
.fs19{font-size:63.466670pt;}
.fs20{font-size:63.733522pt;}
.fs2{font-size:64.000002pt;}
.fs13{font-size:66.600010pt;}
.fs12{font-size:69.066666pt;}
.fsa{font-size:69.333338pt;}
.fsb{font-size:70.478938pt;}
.fsc{font-size:71.562134pt;}
.fs1f{font-size:74.399994pt;}
.fs3{font-size:74.666666pt;}
.fs7{font-size:75.102938pt;}
.fs1a{font-size:80.000003pt;}
.fs16{font-size:85.333339pt;}
.fs9{font-size:90.666667pt;}
.fs6{font-size:96.000003pt;}
.fs1c{font-size:97.066675pt;}
.fs1b{font-size:102.400003pt;}
.fs15{font-size:106.666667pt;}
.fs1e{font-size:107.733339pt;}
.fs18{font-size:113.066676pt;}
.fs5{font-size:118.400012pt;}
.fs11{font-size:133.333332pt;}
.fsd{font-size:134.400004pt;}
.fs17{font-size:134.400012pt;}
.fs4{font-size:144.000005pt;}
.fs1{font-size:149.333333pt;}
.fs0{font-size:213.333335pt;}
.fs21{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:10.245325pt;}
.ycc{bottom:13.219843pt;}
.y82{bottom:13.501833pt;}
.y87{bottom:21.501833pt;}
.y3d{bottom:21.523653pt;}
.yf4{bottom:24.256373pt;}
.ycb{bottom:26.019844pt;}
.y5b{bottom:30.400084pt;}
.y24{bottom:32.386610pt;}
.y30{bottom:33.169314pt;}
.yca{bottom:40.029689pt;}
.y3c{bottom:41.082614pt;}
.y98{bottom:42.998714pt;}
.y55{bottom:43.864700pt;}
.yf3{bottom:45.460374pt;}
.ydb{bottom:45.658984pt;}
.ya8{bottom:48.028334pt;}
.yb8{bottom:56.166285pt;}
.y86{bottom:59.166160pt;}
.ye6{bottom:61.643105pt;}
.y81{bottom:65.576785pt;}
.yc9{bottom:65.629689pt;}
.yda{bottom:68.058975pt;}
.y97{bottom:68.598725pt;}
.ya7{bottom:72.028335pt;}
.yf2{bottom:74.664365pt;}
.yb7{bottom:76.966285pt;}
.ya{bottom:77.747105pt;}
.y85{bottom:84.766159pt;}
.y80{bottom:86.376785pt;}
.yd9{bottom:90.458980pt;}
.yc8{bottom:91.229686pt;}
.ye5{bottom:92.203096pt;}
.y96{bottom:94.198719pt;}
.yf1{bottom:95.868361pt;}
.ya6{bottom:96.028333pt;}
.y9{bottom:96.947096pt;}
.yb6{bottom:97.766286pt;}
.yf5{bottom:102.206916pt;}
.y7f{bottom:107.176791pt;}
.y49{bottom:108.599286pt;}
.y84{bottom:110.366156pt;}
.yd8{bottom:112.858977pt;}
.y8{bottom:116.147090pt;}
.y71{bottom:116.224256pt;}
.y62{bottom:117.156736pt;}
.yb5{bottom:118.566288pt;}
.y95{bottom:119.798717pt;}
.ya5{bottom:120.028334pt;}
.y69{bottom:122.142657pt;}
.yf0{bottom:125.072357pt;}
.yc6{bottom:125.592927pt;}
.y54{bottom:126.581547pt;}
.y7e{bottom:127.976792pt;}
.y48{bottom:130.800157pt;}
.y70{bottom:133.614607pt;}
.ye4{bottom:134.869757pt;}
.y61{bottom:135.692507pt;}
.y1b{bottom:136.000087pt;}
.y2c{bottom:140.545397pt;}
.y68{bottom:141.212997pt;}
.yd7{bottom:143.240107pt;}
.yc5{bottom:145.832907pt;}
.yef{bottom:146.276357pt;}
.y7d{bottom:148.776791pt;}
.y53{bottom:149.123607pt;}
.y6f{bottom:151.004958pt;}
.yb4{bottom:152.359798pt;}
.y47{bottom:153.001018pt;}
.y60{bottom:154.228288pt;}
.y7{bottom:154.547086pt;}
.ya4{bottom:157.861128pt;}
.y91{bottom:158.971378pt;}
.y1a{bottom:159.657518pt;}
.y67{bottom:160.283348pt;}
.y2b{bottom:164.202828pt;}
.ye3{bottom:165.429788pt;}
.yc4{bottom:166.072888pt;}
.yd6{bottom:167.160108pt;}
.yee{bottom:167.480358pt;}
.y6e{bottom:168.395308pt;}
.y52{bottom:171.665678pt;}
.yb3{bottom:172.351808pt;}
.y5f{bottom:172.764058pt;}
.y23{bottom:172.967448pt;}
.y6{bottom:173.747088pt;}
.y94{bottom:174.608538pt;}
.y46{bottom:175.201888pt;}
.y3b{bottom:177.343312pt;}
.ya3{bottom:177.853118pt;}
.y66{bottom:179.353698pt;}
.y90{bottom:179.950378pt;}
.y19{bottom:183.314939pt;}
.y6d{bottom:185.785659pt;}
.yc3{bottom:186.312879pt;}
.y2a{bottom:187.860249pt;}
.yd5{bottom:191.080099pt;}
.y5e{bottom:191.299835pt;}
.yb2{bottom:192.343819pt;}
.y5{bottom:192.947089pt;}
.y51{bottom:194.207749pt;}
.y7b{bottom:194.292559pt;}
.y22{bottom:196.624879pt;}
.y45{bottom:197.402759pt;}
.y65{bottom:198.424052pt;}
.y8f{bottom:200.929389pt;}
.y3a{bottom:201.263313pt;}
.y6c{bottom:203.176009pt;}
.yc2{bottom:206.552869pt;}
.y18{bottom:206.972369pt;}
.ye2{bottom:208.096459pt;}
.y5d{bottom:209.835609pt;}
.y29{bottom:211.517679pt;}
.yb1{bottom:212.335820pt;}
.ya2{bottom:213.845130pt;}
.y7a{bottom:213.976580pt;}
.yd4{bottom:215.000100pt;}
.y50{bottom:216.749820pt;}
.y64{bottom:217.494407pt;}
.y44{bottom:219.603620pt;}
.y21{bottom:220.282300pt;}
.y6b{bottom:220.566360pt;}
.y8e{bottom:221.908390pt;}
.yf7{bottom:223.762670pt;}
.y39{bottom:225.183304pt;}
.yc1{bottom:226.792860pt;}
.y5c{bottom:228.371384pt;}
.y17{bottom:230.629790pt;}
.y79{bottom:233.660600pt;}
.ya1{bottom:233.837130pt;}
.y28{bottom:235.175100pt;}
.y63{bottom:236.564758pt;}
.ye1{bottom:237.536460pt;}
.y6a{bottom:237.956712pt;}
.yd3{bottom:238.920100pt;}
.y4f{bottom:239.291890pt;}
.y43{bottom:241.804490pt;}
.y4{bottom:242.601100pt;}
.y8d{bottom:242.887400pt;}
.y20{bottom:243.939731pt;}
.yb0{bottom:248.327821pt;}
.y38{bottom:249.103305pt;}
.y78{bottom:253.344621pt;}
.ya0{bottom:253.829131pt;}
.y16{bottom:254.287221pt;}
.y27{bottom:258.832531pt;}
.y4e{bottom:261.833951pt;}
.yc0{bottom:263.032851pt;}
.y1f{bottom:267.597151pt;}
.yaf{bottom:268.319811pt;}
.y37{bottom:273.023305pt;}
.y15{bottom:277.944642pt;}
.yd2{bottom:278.840102pt;}
.ye0{bottom:280.309792pt;}
.y26{bottom:282.489955pt;}
.ybf{bottom:283.272842pt;}
.y4d{bottom:284.376022pt;}
.y8c{bottom:284.845402pt;}
.y42{bottom:286.206192pt;}
.y3{bottom:287.401092pt;}
.yae{bottom:288.311802pt;}
.y77{bottom:289.028612pt;}
.y9f{bottom:289.821122pt;}
.y1e{bottom:291.254582pt;}
.y5a{bottom:294.392222pt;}
.y36{bottom:296.943306pt;}
.y14{bottom:301.602072pt;}
.yd1{bottom:302.760098pt;}
.ybe{bottom:303.512837pt;}
.y8b{bottom:305.824403pt;}
.y25{bottom:306.147377pt;}
.y4c{bottom:306.918090pt;}
.yad{bottom:308.303803pt;}
.y41{bottom:308.407063pt;}
.y76{bottom:308.712609pt;}
.ydf{bottom:309.749798pt;}
.y9e{bottom:309.813123pt;}
.y35{bottom:320.863307pt;}
.ybd{bottom:323.752833pt;}
.y13{bottom:325.259493pt;}
.yd0{bottom:326.680097pt;}
.y8a{bottom:326.803403pt;}
.y75{bottom:328.396603pt;}
.y4b{bottom:329.460163pt;}
.y9d{bottom:329.805123pt;}
.y40{bottom:330.607923pt;}
.y2{bottom:336.041093pt;}
.y1d{bottom:338.569430pt;}
.y59{bottom:340.632224pt;}
.ye7{bottom:342.967146pt;}
.yf6{bottom:343.571645pt;}
.ybc{bottom:343.992834pt;}
.yac{bottom:344.295808pt;}
.y34{bottom:344.783303pt;}
.y89{bottom:347.782404pt;}
.y2e{bottom:347.874294pt;}
.y74{bottom:348.080604pt;}
.y9c{bottom:349.797118pt;}
.ycf{bottom:350.600094pt;}
.y4a{bottom:352.002234pt;}
.y3f{bottom:352.808785pt;}
.yde{bottom:353.643144pt;}
.y1c{bottom:362.226851pt;}
.y93{bottom:364.080604pt;}
.yab{bottom:364.287809pt;}
.y33{bottom:368.703303pt;}
.y58{bottom:370.872225pt;}
.y2d{bottom:371.531721pt;}
.y12{bottom:372.574348pt;}
.y3e{bottom:375.009647pt;}
.ybb{bottom:380.232835pt;}
.y73{bottom:383.764605pt;}
.yaa{bottom:384.279807pt;}
.y9b{bottom:385.789120pt;}
.ydd{bottom:386.763145pt;}
.y88{bottom:389.740404pt;}
.yce{bottom:390.520095pt;}
.y32{bottom:390.783301pt;}
.yf{bottom:399.528704pt;}
.y1{bottom:400.041086pt;}
.y57{bottom:401.112226pt;}
.y9a{bottom:405.781118pt;}
.y2f{bottom:409.450136pt;}
.yba{bottom:414.870082pt;}
.yed{bottom:414.938007pt;}
.ye{bottom:418.728706pt;}
.y92{bottom:435.028787pt;}
.ycd{bottom:435.028790pt;}
.y83{bottom:436.399997pt;}
.yd{bottom:437.928707pt;}
.y11{bottom:439.021537pt;}
.y72{bottom:440.792649pt;}
.yea{bottom:441.700260pt;}
.ya9{bottom:442.710087pt;}
.yb9{bottom:443.990087pt;}
.yec{bottom:444.698013pt;}
.y99{bottom:445.992693pt;}
.ydc{bottom:448.001619pt;}
.y56{bottom:452.022214pt;}
.ye9{bottom:465.700264pt;}
.y31{bottom:467.911348pt;}
.yeb{bottom:477.018011pt;}
.yc{bottom:482.310700pt;}
.y10{bottom:483.089102pt;}
.y7c{bottom:488.906198pt;}
.yc7{bottom:488.907504pt;}
.ye8{bottom:489.700262pt;}
.h21{height:31.062502pt;}
.h17{height:40.807292pt;}
.h14{height:42.241264pt;}
.hb{height:44.888023pt;}
.ha{height:44.888143pt;}
.h12{height:45.023505pt;}
.h13{height:46.321991pt;}
.h1d{height:48.560680pt;}
.h3{height:48.625002pt;}
.h24{height:48.764858pt;}
.h4{height:48.968752pt;}
.h1a{height:50.958113pt;}
.h16{height:52.845442pt;}
.hd{height:53.049483pt;}
.hf{height:53.926024pt;}
.h10{height:54.754817pt;}
.h23{height:56.926168pt;}
.h5{height:57.130208pt;}
.h9{height:57.464016pt;}
.h1e{height:61.210939pt;}
.h19{height:65.291671pt;}
.hc{height:69.372396pt;}
.h8{height:73.453127pt;}
.h20{height:74.269277pt;}
.he{height:76.490207pt;}
.h1f{height:78.350003pt;}
.h18{height:81.614584pt;}
.h22{height:82.430734pt;}
.h1c{height:86.511465pt;}
.h7{height:90.592197pt;}
.h15{height:102.018228pt;}
.h11{height:102.834378pt;}
.h1b{height:102.834384pt;}
.h6{height:110.179691pt;}
.h2{height:113.458333pt;}
.h1{height:163.229168pt;}
.h25{height:195.875006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x61{left:9.000000pt;}
.x52{left:16.267717pt;}
.x29{left:17.234962pt;}
.xa{left:22.385828pt;}
.x5f{left:33.606299pt;}
.x65{left:34.577428pt;}
.xb{left:41.724411pt;}
.xc{left:46.488191pt;}
.x66{left:47.508800pt;}
.x2d{left:51.843050pt;}
.x1e{left:59.617384pt;}
.xd{left:64.307089pt;}
.x12{left:71.551091pt;}
.x6d{left:72.999452pt;}
.xe{left:75.358274pt;}
.x67{left:77.724412pt;}
.x39{left:79.693637pt;}
.x14{left:80.846853pt;}
.x44{left:83.933780pt;}
.xf{left:85.180914pt;}
.x3e{left:86.998996pt;}
.x3c{left:89.931613pt;}
.x46{left:91.019931pt;}
.x45{left:93.878025pt;}
.x3b{left:107.749881pt;}
.x13{left:110.534684pt;}
.x3d{left:119.881839pt;}
.x10{left:121.608047pt;}
.x11{left:124.388984pt;}
.x6a{left:131.160109pt;}
.x15{left:143.305809pt;}
.x3a{left:182.396341pt;}
.x3f{left:188.460926pt;}
.x57{left:301.897650pt;}
.x59{left:308.104376pt;}
.x42{left:335.301540pt;}
.x28{left:336.194211pt;}
.x5c{left:337.975599pt;}
.x5b{left:339.918958pt;}
.x4e{left:343.876661pt;}
.x60{left:345.630172pt;}
.x4f{left:347.723219pt;}
.x40{left:351.020542pt;}
.x21{left:352.384236pt;}
.x63{left:354.001381pt;}
.x43{left:354.990666pt;}
.x41{left:356.570118pt;}
.x24{left:357.565839pt;}
.x58{left:361.508002pt;}
.x22{left:364.332672pt;}
.x20{left:367.415982pt;}
.x25{left:368.804426pt;}
.x50{left:370.149092pt;}
.x56{left:371.120742pt;}
.x55{left:372.838791pt;}
.x26{left:381.536282pt;}
.x62{left:384.085488pt;}
.x23{left:385.654730pt;}
.x1f{left:386.662657pt;}
.x54{left:404.029099pt;}
.x53{left:416.546923pt;}
.x64{left:419.512353pt;}
.x69{left:477.503955pt;}
.x5a{left:480.714635pt;}
.x5{left:490.157406pt;}
.x4{left:498.832291pt;}
.x51{left:501.701536pt;}
.x5e{left:506.574646pt;}
.x3{left:517.031602pt;}
.x2{left:528.444414pt;}
.x5d{left:535.399347pt;}
.x27{left:541.787417pt;}
.x1{left:544.028827pt;}
.x2a{left:550.134454pt;}
.x9{left:559.383968pt;}
.x49{left:576.654617pt;}
.x48{left:578.786812pt;}
.x47{left:581.771164pt;}
.x4d{left:584.307564pt;}
.x4b{left:598.892647pt;}
.x4a{left:600.044639pt;}
.x2b{left:601.352659pt;}
.x2e{left:603.687719pt;}
.x4c{left:608.822632pt;}
.x7{left:634.587100pt;}
.x2c{left:635.818920pt;}
.x18{left:650.279153pt;}
.x6{left:651.903501pt;}
.x16{left:657.701097pt;}
.x1c{left:660.527848pt;}
.x17{left:664.298379pt;}
.x8{left:668.122261pt;}
.x19{left:673.190996pt;}
.x30{left:674.766131pt;}
.x1a{left:675.935274pt;}
.x1b{left:677.309717pt;}
.x36{left:682.126307pt;}
.x37{left:683.342967pt;}
.x2f{left:688.334277pt;}
.x35{left:692.349719pt;}
.x33{left:693.953288pt;}
.x32{left:701.872372pt;}
.x34{left:714.709683pt;}
.x31{left:725.139453pt;}
.x38{left:729.503109pt;}
.x1d{left:733.405023pt;}
.x6b{left:742.476021pt;}
.x68{left:749.566182pt;}
.x6c{left:761.866302pt;}
}




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