
    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_92101626579e55884d909360.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_1d54fa7f33351539f3913b19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_6ab36ab22cea828b9d055c04.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_0ef9cf6735b27f199756723a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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);}
.v2{vertical-align:-27.359942px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360077px;}
.v3{vertical-align:34.559968px;}
.v4{vertical-align:36.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.359046px;}
.ls0{letter-spacing:0.359109px;}
.ls6{letter-spacing:2.879324px;}
.ls4{letter-spacing:15.335233px;}
.ls5{letter-spacing:18.935246px;}
.ls3{letter-spacing:61.415255px;}
.ls7{letter-spacing:77.939505px;}
.ls8{letter-spacing:103.139397px;}
.lsa{letter-spacing:390.419379px;}
.ls9{letter-spacing:777.779595px;}
.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;}
}
.ws2{word-spacing:-18.000676px;}
.ws0{word-spacing:-14.940563px;}
.ws1{word-spacing:-12.060450px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.015265px;}
._0{width:1.075720px;}
._4{width:2.577033px;}
._f{width:3.664085px;}
._2{width:4.685238px;}
._3{width:5.906472px;}
._10{width:7.394340px;}
._9{width:9.340101px;}
._b{width:10.414907px;}
._a{width:11.532527px;}
._1a{width:12.536649px;}
._c{width:13.537633px;}
._d{width:14.719873px;}
._12{width:16.389233px;}
._e{width:19.959656px;}
._11{width:20.965444px;}
._5{width:22.441218px;}
._6{width:23.721336px;}
._17{width:24.757558px;}
._19{width:26.761380px;}
._16{width:27.889055px;}
._14{width:29.115531px;}
._15{width:30.390586px;}
._13{width:31.791163px;}
._7{width:33.182278px;}
._8{width:34.414401px;}
._2a{width:36.454972px;}
._1b{width:37.575005px;}
._1c{width:38.797926px;}
._18{width:41.222392px;}
._40{width:43.262656px;}
._3e{width:44.525797px;}
._3f{width:45.713381px;}
._44{width:47.522348px;}
._43{width:48.723330px;}
._41{width:58.360723px;}
._42{width:59.992979px;}
._1f{width:71.714700px;}
._39{width:76.526781px;}
._30{width:78.032690px;}
._38{width:82.505818px;}
._1e{width:93.109585px;}
._3b{width:103.472387px;}
._26{width:110.642802px;}
._33{width:127.402612px;}
._25{width:136.387493px;}
._2b{width:150.783122px;}
._3a{width:169.926383px;}
._36{width:175.378192px;}
._37{width:176.634728px;}
._3c{width:182.002969px;}
._3d{width:183.680024px;}
._2d{width:199.805745px;}
._28{width:205.653341px;}
._2c{width:207.973097px;}
._27{width:231.100621px;}
._29{width:255.552485px;}
._2e{width:299.785603px;}
._20{width:301.622285px;}
._35{width:306.998678px;}
._31{width:309.628217px;}
._24{width:318.110062px;}
._23{width:326.924231px;}
._22{width:329.993008px;}
._21{width:340.764350px;}
._2f{width:344.405387px;}
._1d{width:348.473680px;}
._34{width:481.709756px;}
._32{width:893.754610px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.241800px;}
.fs1{font-size:59.762250px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y92{bottom:3.239988px;}
.yb5{bottom:3.240004px;}
.y8f{bottom:3.240006px;}
.y94{bottom:3.599997px;}
.y98{bottom:3.600013px;}
.y9d{bottom:3.600015px;}
.y7{bottom:67.500000px;}
.y6{bottom:88.200028px;}
.y109{bottom:111.780052px;}
.y2a{bottom:113.940033px;}
.y4e{bottom:121.680039px;}
.y8a{bottom:123.840088px;}
.yc9{bottom:127.260064px;}
.ye4{bottom:130.860077px;}
.y6c{bottom:132.840088px;}
.y29{bottom:134.640060px;}
.yc7{bottom:139.500068px;}
.yc8{bottom:145.260064px;}
.y108{bottom:149.400055px;}
.y4d{bottom:152.640060px;}
.y76{bottom:153.540047px;}
.y89{bottom:154.980079px;}
.y28{bottom:155.340088px;}
.ye3{bottom:162.000068px;}
.yc6{bottom:163.260064px;}
.y6b{bottom:163.980079px;}
.yc3{bottom:175.500068px;}
.y27{bottom:176.040047px;}
.y107{bottom:180.360077px;}
.yc5{bottom:181.260064px;}
.y4c{bottom:183.780052px;}
.y75{bottom:184.680039px;}
.y88{bottom:185.940033px;}
.ye2{bottom:192.960091px;}
.y6a{bottom:194.940033px;}
.y26{bottom:196.740074px;}
.yc4{bottom:199.260064px;}
.yc1{bottom:211.500068px;}
.y4b{bottom:214.740074px;}
.y74{bottom:215.640060px;}
.y87{bottom:217.080093px;}
.yc2{bottom:217.260064px;}
.y25{bottom:217.440033px;}
.ye1{bottom:224.100083px;}
.y69{bottom:226.080093px;}
.y24{bottom:238.140060px;}
.y106{bottom:242.460091px;}
.yc0{bottom:243.900055px;}
.y4a{bottom:245.880066px;}
.y73{bottom:246.780052px;}
.ybf{bottom:247.500068px;}
.y86{bottom:248.040047px;}
.ye0{bottom:255.060036px;}
.y68{bottom:257.040047px;}
.y23{bottom:258.840088px;}
.ybe{bottom:271.260064px;}
.y105{bottom:273.600083px;}
.y49{bottom:276.840088px;}
.y72{bottom:277.740074px;}
.y85{bottom:279.180039px;}
.y22{bottom:279.540047px;}
.ybc{bottom:283.500068px;}
.ydf{bottom:286.200096px;}
.y67{bottom:288.180039px;}
.ybd{bottom:289.260064px;}
.y21{bottom:300.240074px;}
.y104{bottom:304.560036px;}
.ybb{bottom:307.260064px;}
.y48{bottom:307.980079px;}
.y71{bottom:308.880066px;}
.y84{bottom:310.140060px;}
.yde{bottom:317.160049px;}
.y66{bottom:319.140060px;}
.yb8{bottom:319.500068px;}
.y20{bottom:320.940033px;}
.yba{bottom:325.260064px;}
.y103{bottom:335.700096px;}
.y47{bottom:338.940033px;}
.y70{bottom:339.840088px;}
.y83{bottom:341.280052px;}
.y1f{bottom:341.640060px;}
.yb9{bottom:343.260064px;}
.ydd{bottom:348.300041px;}
.y65{bottom:350.280052px;}
.yb6{bottom:355.500068px;}
.yb7{bottom:361.260064px;}
.y1e{bottom:362.340088px;}
.y102{bottom:366.660049px;}
.y46{bottom:370.080093px;}
.y6f{bottom:370.980079px;}
.y82{bottom:372.240074px;}
.yb4{bottom:379.260064px;}
.y64{bottom:381.240074px;}
.yb3{bottom:382.500068px;}
.y1d{bottom:383.040047px;}
.yb2{bottom:391.500068px;}
.y101{bottom:397.800041px;}
.y45{bottom:401.040047px;}
.y6e{bottom:401.940033px;}
.y81{bottom:403.380066px;}
.y1c{bottom:403.740074px;}
.ydc{bottom:410.400055px;}
.y63{bottom:412.380066px;}
.yb1{bottom:418.320099px;}
.y6d{bottom:422.640060px;}
.y1b{bottom:424.440033px;}
.y100{bottom:428.760064px;}
.y44{bottom:432.180039px;}
.y80{bottom:434.340088px;}
.yb0{bottom:435.600083px;}
.ydb{bottom:441.360077px;}
.y62{bottom:443.340088px;}
.y1a{bottom:449.640060px;}
.yff{bottom:459.900055px;}
.y43{bottom:463.140060px;}
.yaf{bottom:464.040047px;}
.y7f{bottom:465.480079px;}
.yda{bottom:472.500068px;}
.y61{bottom:474.480079px;}
.y19{bottom:488.340088px;}
.yfe{bottom:490.860077px;}
.y42{bottom:494.280052px;}
.yae{bottom:495.000068px;}
.y7e{bottom:496.440033px;}
.yd9{bottom:503.460091px;}
.y60{bottom:505.440033px;}
.yfd{bottom:522.000068px;}
.y41{bottom:525.240074px;}
.yad{bottom:526.140060px;}
.y18{bottom:527.040047px;}
.y7d{bottom:527.580093px;}
.yd8{bottom:534.600083px;}
.y5f{bottom:536.580093px;}
.yfc{bottom:552.960091px;}
.y40{bottom:556.380066px;}
.yac{bottom:557.100083px;}
.y7c{bottom:558.540047px;}
.yd7{bottom:565.560036px;}
.y17{bottom:565.740074px;}
.y5e{bottom:567.540047px;}
.yd6{bottom:583.020058px;}
.yfb{bottom:584.100083px;}
.y3f{bottom:587.340088px;}
.yab{bottom:588.240074px;}
.y7b{bottom:589.680039px;}
.yd4{bottom:595.260064px;}
.y5d{bottom:598.680039px;}
.yd5{bottom:601.020058px;}
.y16{bottom:604.440033px;}
.yfa{bottom:615.060036px;}
.yd3{bottom:619.020058px;}
.yaa{bottom:619.200096px;}
.y7a{bottom:620.640060px;}
.y15{bottom:625.140060px;}
.y3e{bottom:626.040047px;}
.y5c{bottom:629.640060px;}
.yd0{bottom:631.260064px;}
.yd2{bottom:637.020058px;}
.y14{bottom:645.840088px;}
.yf9{bottom:646.200096px;}
.ya9{bottom:650.340088px;}
.y79{bottom:651.600083px;}
.yd1{bottom:655.020058px;}
.y5b{bottom:660.600083px;}
.y3d{bottom:664.740074px;}
.y13{bottom:666.540047px;}
.yce{bottom:667.260064px;}
.ycf{bottom:673.020058px;}
.yf8{bottom:677.160049px;}
.ya8{bottom:681.300041px;}
.y78{bottom:682.740074px;}
.y5a{bottom:691.740074px;}
.ycd{bottom:694.260064px;}
.y3c{bottom:694.440067px;}
.y12{bottom:697.500068px;}
.ycc{bottom:703.260064px;}
.yf7{bottom:708.300076px;}
.ya7{bottom:712.440067px;}
.y77{bottom:713.700061px;}
.y3b{bottom:715.140060px;}
.y59{bottom:722.700061px;}
.y11{bottom:726.120072px;}
.ycb{bottom:730.260064px;}
.y3a{bottom:735.840054px;}
.yf6{bottom:739.260064px;}
.ya6{bottom:743.400055px;}
.yca{bottom:747.540081px;}
.y10{bottom:752.040081px;}
.y58{bottom:753.840054px;}
.y39{bottom:756.540081px;}
.yf5{bottom:770.400055px;}
.ya5{bottom:774.360077px;}
.y38{bottom:777.240074px;}
.y57{bottom:784.800076px;}
.yf{bottom:788.040081px;}
.y37{bottom:797.940067px;}
.ya4{bottom:805.500068px;}
.yf4{bottom:809.100083px;}
.y56{bottom:815.940067px;}
.y36{bottom:818.640060px;}
.ya2{bottom:823.680073px;}
.ya3{bottom:831.960056px;}
.ye{bottom:833.580059px;}
.ya1{bottom:835.560070px;}
.y35{bottom:839.340054px;}
.y55{bottom:846.900055px;}
.yf3{bottom:849.060070px;}
.ya0{bottom:858.240074px;}
.y34{bottom:860.040081px;}
.yd{bottom:865.440067px;}
.y9f{bottom:866.520058px;}
.y9e{bottom:870.120072px;}
.y54{bottom:878.040081px;}
.yf1{bottom:878.760064px;}
.y33{bottom:880.740074px;}
.yf2{bottom:884.520058px;}
.yc{bottom:886.140060px;}
.y9c{bottom:897.660049px;}
.y9b{bottom:901.260064px;}
.y32{bottom:901.440067px;}
.yf0{bottom:902.520058px;}
.y53{bottom:909.000068px;}
.yee{bottom:914.760064px;}
.yef{bottom:920.520058px;}
.y31{bottom:922.140060px;}
.y9a{bottom:926.280052px;}
.y99{bottom:929.520058px;}
.ye9{bottom:932.760064px;}
.yb{bottom:935.100083px;}
.yed{bottom:938.520058px;}
.y52{bottom:940.140060px;}
.y30{bottom:942.840054px;}
.y96{bottom:949.500068px;}
.yeb{bottom:950.760064px;}
.yec{bottom:956.520058px;}
.y97{bottom:957.780053px;}
.y95{bottom:961.380066px;}
.y2f{bottom:963.540081px;}
.ya{bottom:966.240074px;}
.y51{bottom:971.100083px;}
.yea{bottom:974.520058px;}
.y91{bottom:984.060070px;}
.y2e{bottom:984.240074px;}
.ye7{bottom:986.760064px;}
.y93{bottom:992.340070px;}
.ye8{bottom:992.520058px;}
.y90{bottom:995.940067px;}
.y50{bottom:1002.240074px;}
.ye6{bottom:1013.760064px;}
.y2d{bottom:1013.940067px;}
.y9{bottom:1015.200061px;}
.ye5{bottom:1022.760064px;}
.y8e{bottom:1024.020058px;}
.y8d{bottom:1027.260064px;}
.y4f{bottom:1033.200061px;}
.y2c{bottom:1043.640060px;}
.y8{bottom:1046.340070px;}
.y8c{bottom:1049.760064px;}
.y2b{bottom:1064.340070px;}
.y8b{bottom:1067.040064px;}
.y5{bottom:1085.040064px;}
.y4{bottom:1105.020058px;}
.y3{bottom:1122.300067px;}
.y2{bottom:1138.680064px;}
.y1{bottom:1150.020066px;}
.hc{height:16.560001px;}
.he{height:16.560002px;}
.h14{height:16.560035px;}
.h13{height:16.740004px;}
.ha{height:16.740006px;}
.hd{height:16.919993px;}
.hf{height:16.920009px;}
.h10{height:16.920010px;}
.h15{height:16.920044px;}
.h2{height:43.248020px;}
.h9{height:49.257167px;}
.h8{height:53.079850px;}
.h3{height:53.575923px;}
.h5{height:63.951621px;}
.h4{height:64.549300px;}
.h7{height:70.607961px;}
.h6{height:70.608096px;}
.h11{height:88.135887px;}
.hb{height:88.135892px;}
.h12{height:88.359971px;}
.h16{height:89.079850px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:4.500000px;}
.w8{width:4.680003px;}
.w6{width:4.680038px;}
.w7{width:4.860008px;}
.w9{width:5.939999px;}
.w5{width:7.559966px;}
.we{width:7.559967px;}
.w3{width:7.560001px;}
.wb{width:7.560002px;}
.w1b{width:7.560035px;}
.w4{width:7.560036px;}
.w1d{width:12.240006px;}
.w18{width:14.939964px;}
.w1f{width:14.939998px;}
.w12{width:14.939999px;}
.wd{width:14.940033px;}
.wc{width:14.940034px;}
.w16{width:22.500000px;}
.w14{width:23.219999px;}
.w1c{width:26.459988px;}
.w15{width:33.480011px;}
.wf{width:35.460006px;}
.w20{width:35.460021px;}
.w1a{width:38.699993px;}
.w11{width:38.700027px;}
.w10{width:38.700028px;}
.w13{width:46.259996px;}
.w19{width:46.260012px;}
.w17{width:56.699993px;}
.wa{width:56.700010px;}
.w1e{width:56.700028px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:58.140000px;}
.x10{left:127.620002px;}
.xb{left:144.180005px;}
.xa{left:146.879998px;}
.x2a{left:151.740006px;}
.x2d{left:153.360008px;}
.x12{left:154.439999px;}
.x8{left:163.439999px;}
.xe{left:164.879998px;}
.x40{left:166.500000px;}
.x7{left:170.099997px;}
.x42{left:172.800007px;}
.x43{left:175.319996px;}
.x48{left:176.939999px;}
.x11{left:180.719999px;}
.x55{left:183.240006px;}
.x56{left:185.759994px;}
.x59{left:188.819996px;}
.x23{left:191.879998px;}
.x4{left:196.020006px;}
.x3f{left:218.520006px;}
.x46{left:223.740006px;}
.x26{left:240.120002px;}
.x28{left:246.240006px;}
.x49{left:247.500000px;}
.x2e{left:252.900003px;}
.x17{left:257.939999px;}
.x1f{left:264.060001px;}
.x14{left:267.479994px;}
.x44{left:276.120002px;}
.xd{left:286.020006px;}
.x36{left:298.980011px;}
.x5b{left:300.779983px;}
.xf{left:302.939999px;}
.x41{left:304.379998px;}
.x2f{left:309.600013px;}
.x61{left:311.399987px;}
.xc{left:319.500000px;}
.x2b{left:329.579990px;}
.x47{left:332.819996px;}
.x62{left:346.860008px;}
.x50{left:352.079990px;}
.x5c{left:357.480011px;}
.x4a{left:363.959988px;}
.x37{left:368.279983px;}
.x24{left:373.139992px;}
.x4b{left:378.899987px;}
.x3d{left:380.160015px;}
.x30{left:383.759994px;}
.x25{left:388.259994px;}
.x18{left:389.879998px;}
.x31{left:391.319996px;}
.x3e{left:395.100014px;}
.x19{left:397.439999px;}
.x38{left:406.980011px;}
.x2{left:409.139992px;}
.x9{left:411.839985px;}
.x20{left:414.180005px;}
.x1a{left:420.300007px;}
.x13{left:432.899987px;}
.x6{left:437.399987px;}
.x66{left:440.100014px;}
.x5d{left:443.879998px;}
.x5a{left:444.959988px;}
.x5{left:446.399987px;}
.x21{left:452.879998px;}
.x2c{left:459.540012px;}
.x67{left:462.600014px;}
.x51{left:463.860008px;}
.x63{left:470.699993px;}
.x4c{left:475.740006px;}
.x29{left:490.860008px;}
.x39{left:495.899987px;}
.x52{left:502.560001px;}
.x27{left:504.720017px;}
.x32{left:507.779983px;}
.x33{left:522.720017px;}
.x45{left:526.500000px;}
.x64{left:527.579990px;}
.x22{left:532.800007px;}
.x3a{left:534.600014px;}
.x68{left:535.680005px;}
.x5e{left:539.459988px;}
.x5f{left:554.399987px;}
.x69{left:558.180005px;}
.x65{left:566.279983px;}
.x53{left:575.459988px;}
.x57{left:583.559967px;}
.x4d{left:587.340019px;}
.x4e{left:602.279983px;}
.x58{left:606.059967px;}
.x54{left:614.159981px;}
.x3b{left:618.120002px;}
.x15{left:621.360008px;}
.x34{left:630.000000px;}
.x16{left:636.299973px;}
.x1b{left:637.919975px;}
.x1c{left:645.480011px;}
.x60{left:652.500000px;}
.x3c{left:656.820030px;}
.x1d{left:662.220017px;}
.x4f{left:673.919975px;}
.x1e{left:700.919975px;}
.x35{left:705.600014px;}
.x1{left:868.860008px;}
@media print{
.v2{vertical-align:-24.319948pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320068pt;}
.v3{vertical-align:30.719972pt;}
.v4{vertical-align:32.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.319152pt;}
.ls0{letter-spacing:0.319208pt;}
.ls6{letter-spacing:2.559399pt;}
.ls4{letter-spacing:13.631318pt;}
.ls5{letter-spacing:16.831330pt;}
.ls3{letter-spacing:54.591338pt;}
.ls7{letter-spacing:69.279560pt;}
.ls8{letter-spacing:91.679464pt;}
.lsa{letter-spacing:347.039448pt;}
.ls9{letter-spacing:691.359640pt;}
.ws2{word-spacing:-16.000601pt;}
.ws0{word-spacing:-13.280500pt;}
.ws1{word-spacing:-10.720400pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.902458pt;}
._0{width:0.956196pt;}
._4{width:2.290696pt;}
._f{width:3.256964pt;}
._2{width:4.164656pt;}
._3{width:5.250197pt;}
._10{width:6.572747pt;}
._9{width:8.302312pt;}
._b{width:9.257695pt;}
._a{width:10.251135pt;}
._1a{width:11.143688pt;}
._c{width:12.033452pt;}
._d{width:13.084331pt;}
._12{width:14.568207pt;}
._e{width:17.741916pt;}
._11{width:18.635950pt;}
._5{width:19.947749pt;}
._6{width:21.085632pt;}
._17{width:22.006718pt;}
._19{width:23.787893pt;}
._16{width:24.790271pt;}
._14{width:25.880472pt;}
._15{width:27.013855pt;}
._13{width:28.258811pt;}
._7{width:29.495358pt;}
._8{width:30.590579pt;}
._2a{width:32.404420pt;}
._1b{width:33.400005pt;}
._1c{width:34.487045pt;}
._18{width:36.642126pt;}
._40{width:38.455694pt;}
._3e{width:39.578487pt;}
._3f{width:40.634116pt;}
._44{width:42.242087pt;}
._43{width:43.309627pt;}
._41{width:51.876199pt;}
._42{width:53.327093pt;}
._1f{width:63.746400pt;}
._39{width:68.023805pt;}
._30{width:69.362391pt;}
._38{width:73.338505pt;}
._1e{width:82.764076pt;}
._3b{width:91.975455pt;}
._26{width:98.349158pt;}
._33{width:113.246766pt;}
._25{width:121.233327pt;}
._2b{width:134.029442pt;}
._3a{width:151.045673pt;}
._36{width:155.891726pt;}
._37{width:157.008647pt;}
._3c{width:161.780417pt;}
._3d{width:163.271133pt;}
._2d{width:177.605107pt;}
._28{width:182.802970pt;}
._2c{width:184.864975pt;}
._27{width:205.422774pt;}
._29{width:227.157765pt;}
._2e{width:266.476092pt;}
._20{width:268.108698pt;}
._35{width:272.887714pt;}
._31{width:275.225082pt;}
._24{width:282.764500pt;}
._23{width:290.599316pt;}
._22{width:293.327118pt;}
._21{width:302.901644pt;}
._2f{width:306.138122pt;}
._1d{width:309.754382pt;}
._34{width:428.186450pt;}
._32{width:794.448542pt;}
.fs0{font-size:42.881600pt;}
.fs1{font-size:53.122000pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:2.879989pt;}
.yb5{bottom:2.880004pt;}
.y8f{bottom:2.880005pt;}
.y94{bottom:3.199997pt;}
.y98{bottom:3.200012pt;}
.y9d{bottom:3.200013pt;}
.y7{bottom:60.000000pt;}
.y6{bottom:78.400025pt;}
.y109{bottom:99.360047pt;}
.y2a{bottom:101.280030pt;}
.y4e{bottom:108.160035pt;}
.y8a{bottom:110.080079pt;}
.yc9{bottom:113.120057pt;}
.ye4{bottom:116.320069pt;}
.y6c{bottom:118.080079pt;}
.y29{bottom:119.680054pt;}
.yc7{bottom:124.000061pt;}
.yc8{bottom:129.120057pt;}
.y108{bottom:132.800049pt;}
.y4d{bottom:135.680054pt;}
.y76{bottom:136.480042pt;}
.y89{bottom:137.760071pt;}
.y28{bottom:138.080079pt;}
.ye3{bottom:144.000061pt;}
.yc6{bottom:145.120057pt;}
.y6b{bottom:145.760071pt;}
.yc3{bottom:156.000061pt;}
.y27{bottom:156.480042pt;}
.y107{bottom:160.320069pt;}
.yc5{bottom:161.120057pt;}
.y4c{bottom:163.360047pt;}
.y75{bottom:164.160035pt;}
.y88{bottom:165.280030pt;}
.ye2{bottom:171.520081pt;}
.y6a{bottom:173.280030pt;}
.y26{bottom:174.880066pt;}
.yc4{bottom:177.120057pt;}
.yc1{bottom:188.000061pt;}
.y4b{bottom:190.880066pt;}
.y74{bottom:191.680054pt;}
.y87{bottom:192.960083pt;}
.yc2{bottom:193.120057pt;}
.y25{bottom:193.280030pt;}
.ye1{bottom:199.200074pt;}
.y69{bottom:200.960083pt;}
.y24{bottom:211.680054pt;}
.y106{bottom:215.520081pt;}
.yc0{bottom:216.800049pt;}
.y4a{bottom:218.560059pt;}
.y73{bottom:219.360047pt;}
.ybf{bottom:220.000061pt;}
.y86{bottom:220.480042pt;}
.ye0{bottom:226.720032pt;}
.y68{bottom:228.480042pt;}
.y23{bottom:230.080079pt;}
.ybe{bottom:241.120057pt;}
.y105{bottom:243.200074pt;}
.y49{bottom:246.080079pt;}
.y72{bottom:246.880066pt;}
.y85{bottom:248.160035pt;}
.y22{bottom:248.480042pt;}
.ybc{bottom:252.000061pt;}
.ydf{bottom:254.400086pt;}
.y67{bottom:256.160035pt;}
.ybd{bottom:257.120057pt;}
.y21{bottom:266.880066pt;}
.y104{bottom:270.720032pt;}
.ybb{bottom:273.120057pt;}
.y48{bottom:273.760071pt;}
.y71{bottom:274.560059pt;}
.y84{bottom:275.680054pt;}
.yde{bottom:281.920044pt;}
.y66{bottom:283.680054pt;}
.yb8{bottom:284.000061pt;}
.y20{bottom:285.280030pt;}
.yba{bottom:289.120057pt;}
.y103{bottom:298.400086pt;}
.y47{bottom:301.280030pt;}
.y70{bottom:302.080079pt;}
.y83{bottom:303.360047pt;}
.y1f{bottom:303.680054pt;}
.yb9{bottom:305.120057pt;}
.ydd{bottom:309.600037pt;}
.y65{bottom:311.360047pt;}
.yb6{bottom:316.000061pt;}
.yb7{bottom:321.120057pt;}
.y1e{bottom:322.080079pt;}
.y102{bottom:325.920044pt;}
.y46{bottom:328.960083pt;}
.y6f{bottom:329.760071pt;}
.y82{bottom:330.880066pt;}
.yb4{bottom:337.120057pt;}
.y64{bottom:338.880066pt;}
.yb3{bottom:340.000061pt;}
.y1d{bottom:340.480042pt;}
.yb2{bottom:348.000061pt;}
.y101{bottom:353.600037pt;}
.y45{bottom:356.480042pt;}
.y6e{bottom:357.280030pt;}
.y81{bottom:358.560059pt;}
.y1c{bottom:358.880066pt;}
.ydc{bottom:364.800049pt;}
.y63{bottom:366.560059pt;}
.yb1{bottom:371.840088pt;}
.y6d{bottom:375.680054pt;}
.y1b{bottom:377.280030pt;}
.y100{bottom:381.120057pt;}
.y44{bottom:384.160035pt;}
.y80{bottom:386.080079pt;}
.yb0{bottom:387.200074pt;}
.ydb{bottom:392.320069pt;}
.y62{bottom:394.080079pt;}
.y1a{bottom:399.680054pt;}
.yff{bottom:408.800049pt;}
.y43{bottom:411.680054pt;}
.yaf{bottom:412.480042pt;}
.y7f{bottom:413.760071pt;}
.yda{bottom:420.000061pt;}
.y61{bottom:421.760071pt;}
.y19{bottom:434.080079pt;}
.yfe{bottom:436.320069pt;}
.y42{bottom:439.360047pt;}
.yae{bottom:440.000061pt;}
.y7e{bottom:441.280030pt;}
.yd9{bottom:447.520081pt;}
.y60{bottom:449.280030pt;}
.yfd{bottom:464.000061pt;}
.y41{bottom:466.880066pt;}
.yad{bottom:467.680054pt;}
.y18{bottom:468.480042pt;}
.y7d{bottom:468.960083pt;}
.yd8{bottom:475.200074pt;}
.y5f{bottom:476.960083pt;}
.yfc{bottom:491.520081pt;}
.y40{bottom:494.560059pt;}
.yac{bottom:495.200074pt;}
.y7c{bottom:496.480042pt;}
.yd7{bottom:502.720032pt;}
.y17{bottom:502.880066pt;}
.y5e{bottom:504.480042pt;}
.yd6{bottom:518.240052pt;}
.yfb{bottom:519.200074pt;}
.y3f{bottom:522.080079pt;}
.yab{bottom:522.880066pt;}
.y7b{bottom:524.160035pt;}
.yd4{bottom:529.120057pt;}
.y5d{bottom:532.160035pt;}
.yd5{bottom:534.240052pt;}
.y16{bottom:537.280030pt;}
.yfa{bottom:546.720032pt;}
.yd3{bottom:550.240052pt;}
.yaa{bottom:550.400086pt;}
.y7a{bottom:551.680054pt;}
.y15{bottom:555.680054pt;}
.y3e{bottom:556.480042pt;}
.y5c{bottom:559.680054pt;}
.yd0{bottom:561.120057pt;}
.yd2{bottom:566.240052pt;}
.y14{bottom:574.080079pt;}
.yf9{bottom:574.400086pt;}
.ya9{bottom:578.080079pt;}
.y79{bottom:579.200074pt;}
.yd1{bottom:582.240052pt;}
.y5b{bottom:587.200074pt;}
.y3d{bottom:590.880066pt;}
.y13{bottom:592.480042pt;}
.yce{bottom:593.120057pt;}
.ycf{bottom:598.240052pt;}
.yf8{bottom:601.920044pt;}
.ya8{bottom:605.600037pt;}
.y78{bottom:606.880066pt;}
.y5a{bottom:614.880066pt;}
.ycd{bottom:617.120057pt;}
.y3c{bottom:617.280060pt;}
.y12{bottom:620.000061pt;}
.ycc{bottom:625.120057pt;}
.yf7{bottom:629.600068pt;}
.ya7{bottom:633.280060pt;}
.y77{bottom:634.400055pt;}
.y3b{bottom:635.680054pt;}
.y59{bottom:642.400055pt;}
.y11{bottom:645.440064pt;}
.ycb{bottom:649.120057pt;}
.y3a{bottom:654.080048pt;}
.yf6{bottom:657.120057pt;}
.ya6{bottom:660.800049pt;}
.yca{bottom:664.480072pt;}
.y10{bottom:668.480072pt;}
.y58{bottom:670.080048pt;}
.y39{bottom:672.480072pt;}
.yf5{bottom:684.800049pt;}
.ya5{bottom:688.320069pt;}
.y38{bottom:690.880066pt;}
.y57{bottom:697.600068pt;}
.yf{bottom:700.480072pt;}
.y37{bottom:709.280060pt;}
.ya4{bottom:716.000061pt;}
.yf4{bottom:719.200074pt;}
.y56{bottom:725.280060pt;}
.y36{bottom:727.680054pt;}
.ya2{bottom:732.160065pt;}
.ya3{bottom:739.520050pt;}
.ye{bottom:740.960053pt;}
.ya1{bottom:742.720063pt;}
.y35{bottom:746.080048pt;}
.y55{bottom:752.800049pt;}
.yf3{bottom:754.720063pt;}
.ya0{bottom:762.880066pt;}
.y34{bottom:764.480072pt;}
.yd{bottom:769.280060pt;}
.y9f{bottom:770.240052pt;}
.y9e{bottom:773.440064pt;}
.y54{bottom:780.480072pt;}
.yf1{bottom:781.120057pt;}
.y33{bottom:782.880066pt;}
.yf2{bottom:786.240052pt;}
.yc{bottom:787.680054pt;}
.y9c{bottom:797.920044pt;}
.y9b{bottom:801.120057pt;}
.y32{bottom:801.280060pt;}
.yf0{bottom:802.240052pt;}
.y53{bottom:808.000061pt;}
.yee{bottom:813.120057pt;}
.yef{bottom:818.240052pt;}
.y31{bottom:819.680054pt;}
.y9a{bottom:823.360047pt;}
.y99{bottom:826.240052pt;}
.ye9{bottom:829.120057pt;}
.yb{bottom:831.200074pt;}
.yed{bottom:834.240052pt;}
.y52{bottom:835.680054pt;}
.y30{bottom:838.080048pt;}
.y96{bottom:844.000061pt;}
.yeb{bottom:845.120057pt;}
.yec{bottom:850.240052pt;}
.y97{bottom:851.360047pt;}
.y95{bottom:854.560059pt;}
.y2f{bottom:856.480072pt;}
.ya{bottom:858.880066pt;}
.y51{bottom:863.200074pt;}
.yea{bottom:866.240052pt;}
.y91{bottom:874.720063pt;}
.y2e{bottom:874.880066pt;}
.ye7{bottom:877.120057pt;}
.y93{bottom:882.080063pt;}
.ye8{bottom:882.240052pt;}
.y90{bottom:885.280060pt;}
.y50{bottom:890.880066pt;}
.ye6{bottom:901.120057pt;}
.y2d{bottom:901.280060pt;}
.y9{bottom:902.400055pt;}
.ye5{bottom:909.120057pt;}
.y8e{bottom:910.240052pt;}
.y8d{bottom:913.120057pt;}
.y4f{bottom:918.400055pt;}
.y2c{bottom:927.680054pt;}
.y8{bottom:930.080063pt;}
.y8c{bottom:933.120057pt;}
.y2b{bottom:946.080063pt;}
.y8b{bottom:948.480057pt;}
.y5{bottom:964.480057pt;}
.y4{bottom:982.240052pt;}
.y3{bottom:997.600060pt;}
.y2{bottom:1012.160057pt;}
.y1{bottom:1022.240059pt;}
.hc{height:14.720001pt;}
.he{height:14.720002pt;}
.h14{height:14.720031pt;}
.h13{height:14.880004pt;}
.ha{height:14.880005pt;}
.hd{height:15.039994pt;}
.hf{height:15.040008pt;}
.h10{height:15.040009pt;}
.h15{height:15.040039pt;}
.h2{height:38.442684pt;}
.h9{height:43.784148pt;}
.h8{height:47.182089pt;}
.h3{height:47.623043pt;}
.h5{height:56.845885pt;}
.h4{height:57.377155pt;}
.h7{height:62.762632pt;}
.h6{height:62.762752pt;}
.h11{height:78.343011pt;}
.hb{height:78.343015pt;}
.h12{height:78.542197pt;}
.h16{height:79.182089pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:4.000000pt;}
.w8{width:4.160003pt;}
.w6{width:4.160034pt;}
.w7{width:4.320007pt;}
.w9{width:5.279999pt;}
.w5{width:6.719970pt;}
.we{width:6.719971pt;}
.w3{width:6.720001pt;}
.wb{width:6.720002pt;}
.w1b{width:6.720031pt;}
.w4{width:6.720032pt;}
.w1d{width:10.880005pt;}
.w18{width:13.279968pt;}
.w1f{width:13.279998pt;}
.w12{width:13.279999pt;}
.wd{width:13.280029pt;}
.wc{width:13.280030pt;}
.w16{width:20.000000pt;}
.w14{width:20.639999pt;}
.w1c{width:23.519989pt;}
.w15{width:29.760010pt;}
.wf{width:31.520005pt;}
.w20{width:31.520019pt;}
.w1a{width:34.399994pt;}
.w11{width:34.400024pt;}
.w10{width:34.400025pt;}
.w13{width:41.119996pt;}
.w19{width:41.120011pt;}
.w17{width:50.399994pt;}
.wa{width:50.400009pt;}
.w1e{width:50.400025pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:51.680000pt;}
.x10{left:113.440002pt;}
.xb{left:128.160004pt;}
.xa{left:130.559998pt;}
.x2a{left:134.880005pt;}
.x2d{left:136.320007pt;}
.x12{left:137.279999pt;}
.x8{left:145.279999pt;}
.xe{left:146.559998pt;}
.x40{left:148.000000pt;}
.x7{left:151.199997pt;}
.x42{left:153.600006pt;}
.x43{left:155.839996pt;}
.x48{left:157.279999pt;}
.x11{left:160.639999pt;}
.x55{left:162.880005pt;}
.x56{left:165.119995pt;}
.x59{left:167.839996pt;}
.x23{left:170.559998pt;}
.x4{left:174.240005pt;}
.x3f{left:194.240005pt;}
.x46{left:198.880005pt;}
.x26{left:213.440002pt;}
.x28{left:218.880005pt;}
.x49{left:220.000000pt;}
.x2e{left:224.800003pt;}
.x17{left:229.279999pt;}
.x1f{left:234.720001pt;}
.x14{left:237.759995pt;}
.x44{left:245.440002pt;}
.xd{left:254.240005pt;}
.x36{left:265.760010pt;}
.x5b{left:267.359985pt;}
.xf{left:269.279999pt;}
.x41{left:270.559998pt;}
.x2f{left:275.200012pt;}
.x61{left:276.799988pt;}
.xc{left:284.000000pt;}
.x2b{left:292.959991pt;}
.x47{left:295.839996pt;}
.x62{left:308.320007pt;}
.x50{left:312.959991pt;}
.x5c{left:317.760010pt;}
.x4a{left:323.519989pt;}
.x37{left:327.359985pt;}
.x24{left:331.679993pt;}
.x4b{left:336.799988pt;}
.x3d{left:337.920013pt;}
.x30{left:341.119995pt;}
.x25{left:345.119995pt;}
.x18{left:346.559998pt;}
.x31{left:347.839996pt;}
.x3e{left:351.200012pt;}
.x19{left:353.279999pt;}
.x38{left:361.760010pt;}
.x2{left:363.679993pt;}
.x9{left:366.079987pt;}
.x20{left:368.160004pt;}
.x1a{left:373.600006pt;}
.x13{left:384.799988pt;}
.x6{left:388.799988pt;}
.x66{left:391.200012pt;}
.x5d{left:394.559998pt;}
.x5a{left:395.519989pt;}
.x5{left:396.799988pt;}
.x21{left:402.559998pt;}
.x2c{left:408.480011pt;}
.x67{left:411.200012pt;}
.x51{left:412.320007pt;}
.x63{left:418.399994pt;}
.x4c{left:422.880005pt;}
.x29{left:436.320007pt;}
.x39{left:440.799988pt;}
.x52{left:446.720001pt;}
.x27{left:448.640015pt;}
.x32{left:451.359985pt;}
.x33{left:464.640015pt;}
.x45{left:468.000000pt;}
.x64{left:468.959991pt;}
.x22{left:473.600006pt;}
.x3a{left:475.200012pt;}
.x68{left:476.160004pt;}
.x5e{left:479.519989pt;}
.x5f{left:492.799988pt;}
.x69{left:496.160004pt;}
.x65{left:503.359985pt;}
.x53{left:511.519989pt;}
.x57{left:518.719971pt;}
.x4d{left:522.080017pt;}
.x4e{left:535.359985pt;}
.x58{left:538.719971pt;}
.x54{left:545.919983pt;}
.x3b{left:549.440002pt;}
.x15{left:552.320007pt;}
.x34{left:560.000000pt;}
.x16{left:565.599976pt;}
.x1b{left:567.039978pt;}
.x1c{left:573.760010pt;}
.x60{left:580.000000pt;}
.x3c{left:583.840027pt;}
.x1d{left:588.640015pt;}
.x4f{left:599.039978pt;}
.x1e{left:623.039978pt;}
.x35{left:627.200012pt;}
.x1{left:772.320007pt;}
}




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