
    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_b4b99fb111f4fe97e765d77a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_72c9728f8bd618fd001252aa.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e3d0e53d2f01e26a197dda2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_29d30a3db1f8ae6d381b7d3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_84f298f887b16edd25f95a12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_458e5949eed1533037b5d4e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_dc8bbd61903150e2086bae0b.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_74d5fd1d332cbb8f966ca28e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_7957f71ee79b916ba3ef4780.woff2')format("woff");}.ff9{font-family:ff9;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.360009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360009px;}
.v3{vertical-align:41.039978px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.142650px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls4{letter-spacing:34.055251px;}
.ls6{letter-spacing:55.445857px;}
.ls2{letter-spacing:64.085852px;}
.lsd{letter-spacing:147.599337px;}
.lsa{letter-spacing:156.239333px;}
.ls8{letter-spacing:179.999324px;}
.lsb{letter-spacing:212.399310px;}
.lsc{letter-spacing:250.559427px;}
.ls7{letter-spacing:296.639243px;}
.ls9{letter-spacing:502.559360px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-59.762250px;}
.ws2{word-spacing:-18.000676px;}
.ws0{word-spacing:-16.560675px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-8.483662px;}
._3{margin-left:-5.040189px;}
._4{margin-left:-3.659417px;}
._5{margin-left:-2.401039px;}
._1{margin-left:-1.378098px;}
._0{width:1.918265px;}
._6{width:3.445138px;}
._9{width:4.886238px;}
._e{width:6.854945px;}
._d{width:8.092736px;}
._b{width:9.772610px;}
._c{width:11.381106px;}
._10{width:12.445499px;}
._12{width:13.620043px;}
._f{width:15.448004px;}
._18{width:16.549438px;}
._a{width:17.685895px;}
._7{width:18.745649px;}
._8{width:20.004934px;}
._19{width:21.012563px;}
._1a{width:25.272387px;}
._1f{width:26.625994px;}
._11{width:28.215985px;}
._13{width:29.873720px;}
._35{width:31.224794px;}
._15{width:33.684388px;}
._14{width:34.742149px;}
._16{width:36.520840px;}
._17{width:38.243629px;}
._1b{width:40.310545px;}
._26{width:41.711572px;}
._22{width:43.010298px;}
._23{width:44.841894px;}
._28{width:51.673125px;}
._27{width:54.109751px;}
._31{width:57.762763px;}
._32{width:58.792036px;}
._21{width:64.719462px;}
._29{width:77.164961px;}
._2a{width:78.520918px;}
._25{width:85.156699px;}
._2c{width:92.066011px;}
._2b{width:93.123820px;}
._1d{width:103.766866px;}
._2e{width:118.757143px;}
._33{width:141.535379px;}
._30{width:151.998272px;}
._1e{width:163.207630px;}
._2f{width:168.235725px;}
._2d{width:173.779371px;}
._34{width:195.056452px;}
._20{width:218.180784px;}
._1c{width:242.601795px;}
._24{width:280.043201px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,31,31);}
.fs2{font-size:48.241800px;}
.fs4{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.959953px;}
.y84{bottom:3.959988px;}
.yb2{bottom:3.960004px;}
.y8b{bottom:3.960022px;}
.y5d{bottom:90.360077px;}
.y2e{bottom:94.860077px;}
.y5c{bottom:111.060036px;}
.yae{bottom:111.600083px;}
.y100{bottom:122.940033px;}
.y2d{bottom:124.560036px;}
.y5b{bottom:131.760064px;}
.yab{bottom:136.260064px;}
.y7b{bottom:142.740074px;}
.yff{bottom:143.640060px;}
.y2c{bottom:145.260064px;}
.yaa{bottom:146.520058px;}
.y5a{bottom:152.460091px;}
.yad{bottom:156.960091px;}
.y7a{bottom:163.440033px;}
.yfe{bottom:164.340088px;}
.y2b{bottom:165.960091px;}
.yde{bottom:171.360077px;}
.y59{bottom:173.160049px;}
.yac{bottom:177.660049px;}
.y79{bottom:184.140060px;}
.yfd{bottom:185.040047px;}
.y2a{bottom:186.660049px;}
.ydd{bottom:192.060036px;}
.y58{bottom:193.860077px;}
.yfc{bottom:205.740074px;}
.y29{bottom:207.360077px;}
.ya9{bottom:216.900055px;}
.y78{bottom:222.840088px;}
.y57{bottom:223.560036px;}
.yfb{bottom:226.440033px;}
.y28{bottom:228.060036px;}
.ydc{bottom:233.820099px;}
.ya6{bottom:241.560036px;}
.y77{bottom:243.540047px;}
.yfa{bottom:247.140060px;}
.y27{bottom:248.760064px;}
.ya5{bottom:251.820099px;}
.y56{bottom:253.260064px;}
.ya8{bottom:262.260064px;}
.y76{bottom:264.240074px;}
.yf9{bottom:267.840088px;}
.y26{bottom:269.460091px;}
.y55{bottom:273.960091px;}
.ydb{bottom:275.400055px;}
.ya7{bottom:282.960091px;}
.y75{bottom:284.940033px;}
.y25{bottom:290.160049px;}
.y54{bottom:294.660049px;}
.y74{bottom:305.640060px;}
.yf8{bottom:309.420043px;}
.y24{bottom:310.860077px;}
.y53{bottom:315.360077px;}
.yda{bottom:319.500068px;}
.ya3{bottom:322.200096px;}
.y73{bottom:326.340088px;}
.y23{bottom:331.560036px;}
.y52{bottom:336.060036px;}
.yd9{bottom:338.940033px;}
.ya1{bottom:346.860077px;}
.y72{bottom:347.040047px;}
.yf7{bottom:351.180039px;}
.y22{bottom:352.260064px;}
.yd8{bottom:359.640060px;}
.ya0{bottom:367.560036px;}
.y71{bottom:367.740074px;}
.y51{bottom:370.440033px;}
.y21{bottom:372.960091px;}
.yd7{bottom:380.340088px;}
.ya2{bottom:388.260064px;}
.y70{bottom:388.440033px;}
.y50{bottom:391.140060px;}
.yf6{bottom:392.940033px;}
.y20{bottom:393.660049px;}
.yd6{bottom:401.040047px;}
.y6f{bottom:409.140060px;}
.y4f{bottom:411.840088px;}
.yf5{bottom:413.640060px;}
.y1f{bottom:423.360077px;}
.y9e{bottom:427.500068px;}
.y6e{bottom:429.840088px;}
.yd5{bottom:430.200096px;}
.y9d{bottom:431.460091px;}
.y4e{bottom:432.540047px;}
.yf4{bottom:434.340088px;}
.y9f{bottom:441.720085px;}
.yd2{bottom:444.420043px;}
.y6d{bottom:450.540047px;}
.y9c{bottom:452.160049px;}
.y1e{bottom:453.060036px;}
.y4d{bottom:453.240074px;}
.yd4{bottom:454.860077px;}
.yf3{bottom:455.040047px;}
.yd1{bottom:465.120072px;}
.y6c{bottom:471.240074px;}
.y1d{bottom:473.760064px;}
.y4c{bottom:473.940033px;}
.yd3{bottom:475.560036px;}
.yf2{bottom:475.740074px;}
.y9b{bottom:485.100083px;}
.y6b{bottom:491.940033px;}
.y114{bottom:492.840088px;}
.y1c{bottom:494.460091px;}
.y4b{bottom:494.640060px;}
.yf1{bottom:496.440033px;}
.y9a{bottom:505.800041px;}
.y6a{bottom:512.640060px;}
.yd0{bottom:514.800041px;}
.y1b{bottom:515.160049px;}
.y4a{bottom:515.340088px;}
.yf0{bottom:517.140060px;}
.y99{bottom:526.500068px;}
.y113{bottom:534.780052px;}
.y1a{bottom:535.860077px;}
.y49{bottom:536.040047px;}
.yef{bottom:537.840088px;}
.yce{bottom:539.460091px;}
.y69{bottom:542.340088px;}
.y112{bottom:555.480079px;}
.y98{bottom:556.200096px;}
.y19{bottom:556.380066px;}
.y48{bottom:556.740074px;}
.yee{bottom:558.540047px;}
.ycd{bottom:560.160049px;}
.y68{bottom:572.040047px;}
.y111{bottom:576.180039px;}
.y18{bottom:577.080093px;}
.y47{bottom:577.440033px;}
.yed{bottom:579.240074px;}
.ycf{bottom:580.860077px;}
.y97{bottom:585.900055px;}
.y67{bottom:592.740074px;}
.y110{bottom:596.880066px;}
.y17{bottom:597.600083px;}
.y46{bottom:598.140060px;}
.yec{bottom:599.940033px;}
.y66{bottom:613.440033px;}
.y96{bottom:615.060036px;}
.y16{bottom:616.500068px;}
.ycc{bottom:620.100083px;}
.yeb{bottom:620.640060px;}
.y45{bottom:627.840088px;}
.y92{bottom:629.460091px;}
.y65{bottom:634.140060px;}
.y15{bottom:635.580093px;}
.y10f{bottom:638.640060px;}
.y94{bottom:639.720085px;}
.ycb{bottom:644.760064px;}
.y44{bottom:648.540047px;}
.y91{bottom:650.160049px;}
.y14{bottom:654.480079px;}
.y64{bottom:654.840088px;}
.yc8{bottom:655.020058px;}
.y10e{bottom:659.340088px;}
.y93{bottom:660.420043px;}
.yea{bottom:662.220085px;}
.yc7{bottom:665.460091px;}
.y43{bottom:669.240074px;}
.y90{bottom:670.860077px;}
.y13{bottom:673.560036px;}
.y63{bottom:675.540047px;}
.y10d{bottom:680.040047px;}
.y95{bottom:681.120072px;}
.yca{bottom:685.980079px;}
.y42{bottom:689.940067px;}
.y12{bottom:692.460056px;}
.y62{bottom:696.240074px;}
.y10c{bottom:700.740074px;}
.ye9{bottom:703.980079px;}
.yc9{bottom:706.680073px;}
.y11{bottom:711.360077px;}
.y61{bottom:716.940067px;}
.y41{bottom:719.640060px;}
.y8f{bottom:720.360077px;}
.y10b{bottom:721.440067px;}
.y10{bottom:730.440067px;}
.y60{bottom:737.640060px;}
.y10a{bottom:742.140060px;}
.y8d{bottom:745.020058px;}
.ye8{bottom:745.740074px;}
.yc5{bottom:745.920078px;}
.yf{bottom:749.340054px;}
.yc4{bottom:749.880066px;}
.y5f{bottom:758.340054px;}
.yc6{bottom:760.320065px;}
.y109{bottom:762.840054px;}
.y8c{bottom:765.720051px;}
.ye7{bottom:766.440067px;}
.ye{bottom:768.420078px;}
.yc3{bottom:770.580059px;}
.y40{bottom:779.040081px;}
.y108{bottom:783.540081px;}
.y8e{bottom:786.420078px;}
.ye6{bottom:787.140060px;}
.yd{bottom:787.320065px;}
.y3f{bottom:799.740074px;}
.yc2{bottom:803.700061px;}
.yc{bottom:806.220051px;}
.ye5{bottom:807.840054px;}
.y3e{bottom:820.440067px;}
.yc1{bottom:824.400055px;}
.y107{bottom:825.120072px;}
.yb{bottom:825.300076px;}
.y8a{bottom:825.660049px;}
.ye4{bottom:828.540081px;}
.y87{bottom:839.880066px;}
.y3d{bottom:841.140060px;}
.ya{bottom:844.380066px;}
.yc0{bottom:845.100083px;}
.ye3{bottom:849.240074px;}
.y89{bottom:850.320065px;}
.y86{bottom:860.580059px;}
.y3c{bottom:861.840054px;}
.y9{bottom:865.080059px;}
.y106{bottom:866.880066px;}
.ye2{bottom:869.940067px;}
.y88{bottom:871.020058px;}
.ybf{bottom:874.800076px;}
.y3b{bottom:882.540081px;}
.y8{bottom:886.680073px;}
.y105{bottom:887.580059px;}
.ye1{bottom:890.640060px;}
.y3a{bottom:903.240074px;}
.ybe{bottom:904.500068px;}
.y104{bottom:908.280052px;}
.y83{bottom:910.260064px;}
.y82{bottom:914.220051px;}
.y39{bottom:923.940067px;}
.y85{bottom:924.480079px;}
.y7{bottom:928.620072px;}
.y103{bottom:928.980079px;}
.ye0{bottom:932.220051px;}
.ybd{bottom:933.660049px;}
.y81{bottom:934.920078px;}
.y38{bottom:944.640060px;}
.yb9{bottom:947.880066px;}
.ybc{bottom:958.320065px;}
.y37{bottom:965.340054px;}
.y80{bottom:968.040081px;}
.yb7{bottom:968.580059px;}
.y102{bottom:970.740074px;}
.ydf{bottom:973.980079px;}
.y6{bottom:978.840070px;}
.ybb{bottom:979.020058px;}
.y36{bottom:986.040064px;}
.y7f{bottom:988.740074px;}
.yb8{bottom:989.280069px;}
.y5e{bottom:995.040064px;}
.yba{bottom:999.720068px;}
.y7e{bottom:1009.440067px;}
.y101{bottom:1015.200061px;}
.y5{bottom:1015.380066px;}
.y35{bottom:1015.740074px;}
.y7d{bottom:1030.140060px;}
.y34{bottom:1036.440067px;}
.yb6{bottom:1038.960074px;}
.yb5{bottom:1042.920061px;}
.y4{bottom:1056.960074px;}
.y33{bottom:1057.140060px;}
.y7c{bottom:1059.840070px;}
.yb4{bottom:1063.620072px;}
.y32{bottom:1077.840070px;}
.y3{bottom:1079.100065px;}
.y31{bottom:1098.540064px;}
.yb1{bottom:1102.860060px;}
.y2{bottom:1106.640060px;}
.yb0{bottom:1106.820065px;}
.yb3{bottom:1117.080059px;}
.y30{bottom:1119.240066px;}
.yaf{bottom:1127.520066px;}
.y1{bottom:1134.360068px;}
.y2f{bottom:1139.940067px;}
.hc{height:20.159981px;}
.h12{height:20.159998px;}
.h11{height:20.160006px;}
.ha{height:20.160015px;}
.hb{height:20.160016px;}
.hd{height:20.160049px;}
.h5{height:42.329353px;}
.h9{height:52.138677px;}
.h3{height:52.419938px;}
.h13{height:52.630883px;}
.h7{height:57.412496px;}
.h8{height:58.124088px;}
.h14{height:62.404688px;}
.h6{height:63.178154px;}
.h2{height:69.344443px;}
.h4{height:69.689362px;}
.he{height:104.218132px;}
.hf{height:104.938015px;}
.h10{height:104.938285px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:4.500000px;}
.w2d{width:4.679970px;}
.w2f{width:5.940034px;}
.w6{width:7.920010px;}
.w2{width:9.000000px;}
.w29{width:10.079991px;}
.w1c{width:13.139992px;}
.wd{width:13.140026px;}
.w8{width:14.039977px;}
.w2e{width:18.899987px;}
.w24{width:19.080025px;}
.w18{width:21.240006px;}
.w16{width:21.419975px;}
.w1f{width:22.859974px;}
.w13{width:22.860008px;}
.w2b{width:22.860009px;}
.w1b{width:23.039978px;}
.wc{width:23.039979px;}
.w25{width:26.099979px;}
.w17{width:26.100013px;}
.w28{width:34.019989px;}
.w27{width:38.699958px;}
.w21{width:39.419975px;}
.w7{width:45.000000px;}
.we{width:46.079991px;}
.w1a{width:50.940034px;}
.w12{width:53.459988px;}
.w22{width:54.000017px;}
.w20{width:55.260029px;}
.w3{width:59.040012px;}
.w9{width:62.640060px;}
.w15{width:62.819997px;}
.w10{width:63.719982px;}
.w26{width:64.980011px;}
.wa{width:65.520024px;}
.w4{width:65.879998px;}
.wf{width:66.779983px;}
.w1d{width:67.139992px;}
.wb{width:72.720017px;}
.w30{width:82.620002px;}
.w2a{width:85.860008px;}
.w23{width:88.739972px;}
.w14{width:88.740006px;}
.w11{width:92.699993px;}
.w19{width:95.220017px;}
.w1e{width:96.299972px;}
.w2c{width:97.020023px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x6{left:102.599997px;}
.x2{left:111.959997px;}
.x3{left:138.959997px;}
.x4{left:165.960005px;}
.x5{left:192.960005px;}
.x33{left:234.539996px;}
.x7{left:265.500000px;}
.x1e{left:274.680005px;}
.x3c{left:288.540012px;}
.x8{left:324.540012px;}
.x34{left:390.600014px;}
.x1f{left:413.100014px;}
.x35{left:417.959988px;}
.x46{left:424.620002px;}
.x47{left:429.120002px;}
.x9{left:433.079990px;}
.x48{left:439.199993px;}
.x49{left:443.699993px;}
.x36{left:473.220017px;}
.x20{left:476.819996px;}
.x3d{left:479.339985px;}
.x30{left:481.139992px;}
.x3e{left:483.839985px;}
.x31{left:485.639992px;}
.x37{left:491.759994px;}
.x38{left:496.259994px;}
.x27{left:497.339985px;}
.xa{left:498.959988px;}
.xb{left:503.459988px;}
.x15{left:505.800007px;}
.x3f{left:507.420010px;}
.x16{left:510.300007px;}
.xc{left:511.379998px;}
.xd{left:515.879998px;}
.x28{left:523.259994px;}
.x4a{left:529.560001px;}
.x17{left:533.339985px;}
.x18{left:537.839985px;}
.x39{left:541.259994px;}
.x29{left:544.500000px;}
.x3a{left:545.759994px;}
.x19{left:550.800007px;}
.x40{left:552.420010px;}
.x1a{left:555.300007px;}
.x41{left:556.920010px;}
.x21{left:559.800007px;}
.xe{left:560.879998px;}
.xf{left:565.379998px;}
.x10{left:579.419975px;}
.x32{left:581.039978px;}
.x11{left:583.919975px;}
.x3b{left:585.179970px;}
.x42{left:587.519989px;}
.x1b{left:601.379998px;}
.x1c{left:605.879998px;}
.x22{left:613.259994px;}
.x23{left:617.759994px;}
.x2a{left:639.539978px;}
.x24{left:640.620002px;}
.x25{left:645.120002px;}
.x12{left:649.799973px;}
.x43{left:652.320030px;}
.x13{left:654.299973px;}
.x44{left:656.820030px;}
.x4b{left:658.440033px;}
.x2b{left:660.779983px;}
.x4c{left:663.120002px;}
.x1d{left:672.659981px;}
.x4d{left:682.019989px;}
.x4e{left:687.960023px;}
.x45{left:695.519989px;}
.x2c{left:711.720017px;}
.x14{left:716.940033px;}
.x26{left:733.860008px;}
.x2d{left:756.000000px;}
.x4f{left:770.580025px;}
.x2e{left:777.419975px;}
.x2f{left:790.379998px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.v3{vertical-align:36.479980pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.126800pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls4{letter-spacing:30.271334pt;}
.ls6{letter-spacing:49.285206pt;}
.ls2{letter-spacing:56.965202pt;}
.lsd{letter-spacing:131.199411pt;}
.lsa{letter-spacing:138.879407pt;}
.ls8{letter-spacing:159.999399pt;}
.lsb{letter-spacing:188.799387pt;}
.lsc{letter-spacing:222.719491pt;}
.ls7{letter-spacing:263.679327pt;}
.ls9{letter-spacing:446.719431pt;}
.ws1{word-spacing:-53.122000pt;}
.ws2{word-spacing:-16.000601pt;}
.ws0{word-spacing:-14.720600pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-7.541033pt;}
._3{margin-left:-4.480168pt;}
._4{margin-left:-3.252815pt;}
._5{margin-left:-2.134257pt;}
._1{margin-left:-1.224976pt;}
._0{width:1.705124pt;}
._6{width:3.062345pt;}
._9{width:4.343323pt;}
._e{width:6.093284pt;}
._d{width:7.193543pt;}
._b{width:8.686764pt;}
._c{width:10.116539pt;}
._10{width:11.062666pt;}
._12{width:12.106705pt;}
._f{width:13.731559pt;}
._18{width:14.710612pt;}
._a{width:15.720795pt;}
._7{width:16.662799pt;}
._8{width:17.782164pt;}
._19{width:18.677834pt;}
._1a{width:22.464344pt;}
._1f{width:23.667550pt;}
._11{width:25.080876pt;}
._13{width:26.554417pt;}
._35{width:27.755372pt;}
._15{width:29.941678pt;}
._14{width:30.881910pt;}
._16{width:32.462969pt;}
._17{width:33.994337pt;}
._1b{width:35.831596pt;}
._26{width:37.076953pt;}
._22{width:38.231376pt;}
._23{width:39.859461pt;}
._28{width:45.931666pt;}
._27{width:48.097557pt;}
._31{width:51.344679pt;}
._32{width:52.259588pt;}
._21{width:57.528411pt;}
._29{width:68.591076pt;}
._2a{width:69.796372pt;}
._25{width:75.694843pt;}
._2c{width:81.836454pt;}
._2b{width:82.776729pt;}
._1d{width:92.237215pt;}
._2e{width:105.561905pt;}
._33{width:125.809225pt;}
._30{width:135.109575pt;}
._1e{width:145.073449pt;}
._2f{width:149.542867pt;}
._2d{width:154.470552pt;}
._34{width:173.383512pt;}
._20{width:193.938475pt;}
._1c{width:215.646040pt;}
._24{width:248.927290pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:3.519958pt;}
.y84{bottom:3.519989pt;}
.yb2{bottom:3.520004pt;}
.y8b{bottom:3.520020pt;}
.y5d{bottom:80.320069pt;}
.y2e{bottom:84.320069pt;}
.y5c{bottom:98.720032pt;}
.yae{bottom:99.200074pt;}
.y100{bottom:109.280030pt;}
.y2d{bottom:110.720032pt;}
.y5b{bottom:117.120057pt;}
.yab{bottom:121.120057pt;}
.y7b{bottom:126.880066pt;}
.yff{bottom:127.680054pt;}
.y2c{bottom:129.120057pt;}
.yaa{bottom:130.240052pt;}
.y5a{bottom:135.520081pt;}
.yad{bottom:139.520081pt;}
.y7a{bottom:145.280030pt;}
.yfe{bottom:146.080079pt;}
.y2b{bottom:147.520081pt;}
.yde{bottom:152.320069pt;}
.y59{bottom:153.920044pt;}
.yac{bottom:157.920044pt;}
.y79{bottom:163.680054pt;}
.yfd{bottom:164.480042pt;}
.y2a{bottom:165.920044pt;}
.ydd{bottom:170.720032pt;}
.y58{bottom:172.320069pt;}
.yfc{bottom:182.880066pt;}
.y29{bottom:184.320069pt;}
.ya9{bottom:192.800049pt;}
.y78{bottom:198.080079pt;}
.y57{bottom:198.720032pt;}
.yfb{bottom:201.280030pt;}
.y28{bottom:202.720032pt;}
.ydc{bottom:207.840088pt;}
.ya6{bottom:214.720032pt;}
.y77{bottom:216.480042pt;}
.yfa{bottom:219.680054pt;}
.y27{bottom:221.120057pt;}
.ya5{bottom:223.840088pt;}
.y56{bottom:225.120057pt;}
.ya8{bottom:233.120057pt;}
.y76{bottom:234.880066pt;}
.yf9{bottom:238.080079pt;}
.y26{bottom:239.520081pt;}
.y55{bottom:243.520081pt;}
.ydb{bottom:244.800049pt;}
.ya7{bottom:251.520081pt;}
.y75{bottom:253.280030pt;}
.y25{bottom:257.920044pt;}
.y54{bottom:261.920044pt;}
.y74{bottom:271.680054pt;}
.yf8{bottom:275.040039pt;}
.y24{bottom:276.320069pt;}
.y53{bottom:280.320069pt;}
.yda{bottom:284.000061pt;}
.ya3{bottom:286.400086pt;}
.y73{bottom:290.080079pt;}
.y23{bottom:294.720032pt;}
.y52{bottom:298.720032pt;}
.yd9{bottom:301.280030pt;}
.ya1{bottom:308.320069pt;}
.y72{bottom:308.480042pt;}
.yf7{bottom:312.160035pt;}
.y22{bottom:313.120057pt;}
.yd8{bottom:319.680054pt;}
.ya0{bottom:326.720032pt;}
.y71{bottom:326.880066pt;}
.y51{bottom:329.280030pt;}
.y21{bottom:331.520081pt;}
.yd7{bottom:338.080079pt;}
.ya2{bottom:345.120057pt;}
.y70{bottom:345.280030pt;}
.y50{bottom:347.680054pt;}
.yf6{bottom:349.280030pt;}
.y20{bottom:349.920044pt;}
.yd6{bottom:356.480042pt;}
.y6f{bottom:363.680054pt;}
.y4f{bottom:366.080079pt;}
.yf5{bottom:367.680054pt;}
.y1f{bottom:376.320069pt;}
.y9e{bottom:380.000061pt;}
.y6e{bottom:382.080079pt;}
.yd5{bottom:382.400086pt;}
.y9d{bottom:383.520081pt;}
.y4e{bottom:384.480042pt;}
.yf4{bottom:386.080079pt;}
.y9f{bottom:392.640076pt;}
.yd2{bottom:395.040039pt;}
.y6d{bottom:400.480042pt;}
.y9c{bottom:401.920044pt;}
.y1e{bottom:402.720032pt;}
.y4d{bottom:402.880066pt;}
.yd4{bottom:404.320069pt;}
.yf3{bottom:404.480042pt;}
.yd1{bottom:413.440064pt;}
.y6c{bottom:418.880066pt;}
.y1d{bottom:421.120057pt;}
.y4c{bottom:421.280030pt;}
.yd3{bottom:422.720032pt;}
.yf2{bottom:422.880066pt;}
.y9b{bottom:431.200074pt;}
.y6b{bottom:437.280030pt;}
.y114{bottom:438.080079pt;}
.y1c{bottom:439.520081pt;}
.y4b{bottom:439.680054pt;}
.yf1{bottom:441.280030pt;}
.y9a{bottom:449.600037pt;}
.y6a{bottom:455.680054pt;}
.yd0{bottom:457.600037pt;}
.y1b{bottom:457.920044pt;}
.y4a{bottom:458.080079pt;}
.yf0{bottom:459.680054pt;}
.y99{bottom:468.000061pt;}
.y113{bottom:475.360047pt;}
.y1a{bottom:476.320069pt;}
.y49{bottom:476.480042pt;}
.yef{bottom:478.080079pt;}
.yce{bottom:479.520081pt;}
.y69{bottom:482.080079pt;}
.y112{bottom:493.760071pt;}
.y98{bottom:494.400086pt;}
.y19{bottom:494.560059pt;}
.y48{bottom:494.880066pt;}
.yee{bottom:496.480042pt;}
.ycd{bottom:497.920044pt;}
.y68{bottom:508.480042pt;}
.y111{bottom:512.160035pt;}
.y18{bottom:512.960083pt;}
.y47{bottom:513.280030pt;}
.yed{bottom:514.880066pt;}
.ycf{bottom:516.320069pt;}
.y97{bottom:520.800049pt;}
.y67{bottom:526.880066pt;}
.y110{bottom:530.560059pt;}
.y17{bottom:531.200074pt;}
.y46{bottom:531.680054pt;}
.yec{bottom:533.280030pt;}
.y66{bottom:545.280030pt;}
.y96{bottom:546.720032pt;}
.y16{bottom:548.000061pt;}
.ycc{bottom:551.200074pt;}
.yeb{bottom:551.680054pt;}
.y45{bottom:558.080079pt;}
.y92{bottom:559.520081pt;}
.y65{bottom:563.680054pt;}
.y15{bottom:564.960083pt;}
.y10f{bottom:567.680054pt;}
.y94{bottom:568.640076pt;}
.ycb{bottom:573.120057pt;}
.y44{bottom:576.480042pt;}
.y91{bottom:577.920044pt;}
.y14{bottom:581.760071pt;}
.y64{bottom:582.080079pt;}
.yc8{bottom:582.240052pt;}
.y10e{bottom:586.080079pt;}
.y93{bottom:587.040039pt;}
.yea{bottom:588.640076pt;}
.yc7{bottom:591.520081pt;}
.y43{bottom:594.880066pt;}
.y90{bottom:596.320069pt;}
.y13{bottom:598.720032pt;}
.y63{bottom:600.480042pt;}
.y10d{bottom:604.480042pt;}
.y95{bottom:605.440064pt;}
.yca{bottom:609.760071pt;}
.y42{bottom:613.280060pt;}
.y12{bottom:615.520050pt;}
.y62{bottom:618.880066pt;}
.y10c{bottom:622.880066pt;}
.ye9{bottom:625.760071pt;}
.yc9{bottom:628.160065pt;}
.y11{bottom:632.320069pt;}
.y61{bottom:637.280060pt;}
.y41{bottom:639.680054pt;}
.y8f{bottom:640.320069pt;}
.y10b{bottom:641.280060pt;}
.y10{bottom:649.280060pt;}
.y60{bottom:655.680054pt;}
.y10a{bottom:659.680054pt;}
.y8d{bottom:662.240052pt;}
.ye8{bottom:662.880066pt;}
.yc5{bottom:663.040070pt;}
.yf{bottom:666.080048pt;}
.yc4{bottom:666.560059pt;}
.y5f{bottom:674.080048pt;}
.yc6{bottom:675.840058pt;}
.y109{bottom:678.080048pt;}
.y8c{bottom:680.640046pt;}
.ye7{bottom:681.280060pt;}
.ye{bottom:683.040070pt;}
.yc3{bottom:684.960053pt;}
.y40{bottom:692.480072pt;}
.y108{bottom:696.480072pt;}
.y8e{bottom:699.040070pt;}
.ye6{bottom:699.680054pt;}
.yd{bottom:699.840058pt;}
.y3f{bottom:710.880066pt;}
.yc2{bottom:714.400055pt;}
.yc{bottom:716.640046pt;}
.ye5{bottom:718.080048pt;}
.y3e{bottom:729.280060pt;}
.yc1{bottom:732.800049pt;}
.y107{bottom:733.440064pt;}
.yb{bottom:733.600068pt;}
.y8a{bottom:733.920044pt;}
.ye4{bottom:736.480072pt;}
.y87{bottom:746.560059pt;}
.y3d{bottom:747.680054pt;}
.ya{bottom:750.560059pt;}
.yc0{bottom:751.200074pt;}
.ye3{bottom:754.880066pt;}
.y89{bottom:755.840058pt;}
.y86{bottom:764.960053pt;}
.y3c{bottom:766.080048pt;}
.y9{bottom:768.960053pt;}
.y106{bottom:770.560059pt;}
.ye2{bottom:773.280060pt;}
.y88{bottom:774.240052pt;}
.ybf{bottom:777.600068pt;}
.y3b{bottom:784.480072pt;}
.y8{bottom:788.160065pt;}
.y105{bottom:788.960053pt;}
.ye1{bottom:791.680054pt;}
.y3a{bottom:802.880066pt;}
.ybe{bottom:804.000061pt;}
.y104{bottom:807.360047pt;}
.y83{bottom:809.120057pt;}
.y82{bottom:812.640046pt;}
.y39{bottom:821.280060pt;}
.y85{bottom:821.760071pt;}
.y7{bottom:825.440064pt;}
.y103{bottom:825.760071pt;}
.ye0{bottom:828.640046pt;}
.ybd{bottom:829.920044pt;}
.y81{bottom:831.040070pt;}
.y38{bottom:839.680054pt;}
.yb9{bottom:842.560059pt;}
.ybc{bottom:851.840058pt;}
.y37{bottom:858.080048pt;}
.y80{bottom:860.480072pt;}
.yb7{bottom:860.960053pt;}
.y102{bottom:862.880066pt;}
.ydf{bottom:865.760071pt;}
.y6{bottom:870.080063pt;}
.ybb{bottom:870.240052pt;}
.y36{bottom:876.480057pt;}
.y7f{bottom:878.880066pt;}
.yb8{bottom:879.360062pt;}
.y5e{bottom:884.480057pt;}
.yba{bottom:888.640061pt;}
.y7e{bottom:897.280060pt;}
.y101{bottom:902.400055pt;}
.y5{bottom:902.560059pt;}
.y35{bottom:902.880066pt;}
.y7d{bottom:915.680054pt;}
.y34{bottom:921.280060pt;}
.yb6{bottom:923.520066pt;}
.yb5{bottom:927.040055pt;}
.y4{bottom:939.520066pt;}
.y33{bottom:939.680054pt;}
.y7c{bottom:942.080063pt;}
.yb4{bottom:945.440064pt;}
.y32{bottom:958.080063pt;}
.y3{bottom:959.200058pt;}
.y31{bottom:976.480057pt;}
.yb1{bottom:980.320054pt;}
.y2{bottom:983.680054pt;}
.yb0{bottom:983.840058pt;}
.yb3{bottom:992.960053pt;}
.y30{bottom:994.880059pt;}
.yaf{bottom:1002.240059pt;}
.y1{bottom:1008.320061pt;}
.y2f{bottom:1013.280060pt;}
.hc{height:17.919983pt;}
.h12{height:17.919998pt;}
.h11{height:17.920005pt;}
.ha{height:17.920013pt;}
.hb{height:17.920014pt;}
.hd{height:17.920044pt;}
.h5{height:37.626091pt;}
.h9{height:46.345491pt;}
.h3{height:46.595500pt;}
.h13{height:46.783007pt;}
.h7{height:51.033330pt;}
.h8{height:51.665856pt;}
.h14{height:55.470834pt;}
.h6{height:56.158359pt;}
.h2{height:61.639505pt;}
.h4{height:61.946099pt;}
.he{height:92.638339pt;}
.hf{height:93.278235pt;}
.h10{height:93.278475pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:4.000000pt;}
.w2d{width:4.159973pt;}
.w2f{width:5.280030pt;}
.w6{width:7.040009pt;}
.w2{width:8.000000pt;}
.w29{width:8.959992pt;}
.w1c{width:11.679993pt;}
.wd{width:11.680023pt;}
.w8{width:12.479980pt;}
.w2e{width:16.799988pt;}
.w24{width:16.960022pt;}
.w18{width:18.880005pt;}
.w16{width:19.039978pt;}
.w1f{width:20.319977pt;}
.w13{width:20.320007pt;}
.w2b{width:20.320008pt;}
.w1b{width:20.479980pt;}
.wc{width:20.479981pt;}
.w25{width:23.199981pt;}
.w17{width:23.200012pt;}
.w28{width:30.239990pt;}
.w27{width:34.399963pt;}
.w21{width:35.039978pt;}
.w7{width:40.000000pt;}
.we{width:40.959992pt;}
.w1a{width:45.280030pt;}
.w12{width:47.519989pt;}
.w22{width:48.000015pt;}
.w20{width:49.120026pt;}
.w3{width:52.480011pt;}
.w9{width:55.680053pt;}
.w15{width:55.839997pt;}
.w10{width:56.639984pt;}
.w26{width:57.760010pt;}
.wa{width:58.240021pt;}
.w4{width:58.559998pt;}
.wf{width:59.359985pt;}
.w1d{width:59.679993pt;}
.wb{width:64.640015pt;}
.w30{width:73.440002pt;}
.w2a{width:76.320007pt;}
.w23{width:78.879975pt;}
.w14{width:78.880005pt;}
.w11{width:82.399994pt;}
.w19{width:84.640015pt;}
.w1e{width:85.599975pt;}
.w2c{width:86.240020pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x6{left:91.199997pt;}
.x2{left:99.519997pt;}
.x3{left:123.519997pt;}
.x4{left:147.520004pt;}
.x5{left:171.520004pt;}
.x33{left:208.479996pt;}
.x7{left:236.000000pt;}
.x1e{left:244.160004pt;}
.x3c{left:256.480011pt;}
.x8{left:288.480011pt;}
.x34{left:347.200012pt;}
.x1f{left:367.200012pt;}
.x35{left:371.519989pt;}
.x46{left:377.440002pt;}
.x47{left:381.440002pt;}
.x9{left:384.959991pt;}
.x48{left:390.399994pt;}
.x49{left:394.399994pt;}
.x36{left:420.640015pt;}
.x20{left:423.839996pt;}
.x3d{left:426.079987pt;}
.x30{left:427.679993pt;}
.x3e{left:430.079987pt;}
.x31{left:431.679993pt;}
.x37{left:437.119995pt;}
.x38{left:441.119995pt;}
.x27{left:442.079987pt;}
.xa{left:443.519989pt;}
.xb{left:447.519989pt;}
.x15{left:449.600006pt;}
.x3f{left:451.040009pt;}
.x16{left:453.600006pt;}
.xc{left:454.559998pt;}
.xd{left:458.559998pt;}
.x28{left:465.119995pt;}
.x4a{left:470.720001pt;}
.x17{left:474.079987pt;}
.x18{left:478.079987pt;}
.x39{left:481.119995pt;}
.x29{left:484.000000pt;}
.x3a{left:485.119995pt;}
.x19{left:489.600006pt;}
.x40{left:491.040009pt;}
.x1a{left:493.600006pt;}
.x41{left:495.040009pt;}
.x21{left:497.600006pt;}
.xe{left:498.559998pt;}
.xf{left:502.559998pt;}
.x10{left:515.039978pt;}
.x32{left:516.479980pt;}
.x11{left:519.039978pt;}
.x3b{left:520.159973pt;}
.x42{left:522.239990pt;}
.x1b{left:534.559998pt;}
.x1c{left:538.559998pt;}
.x22{left:545.119995pt;}
.x23{left:549.119995pt;}
.x2a{left:568.479980pt;}
.x24{left:569.440002pt;}
.x25{left:573.440002pt;}
.x12{left:577.599976pt;}
.x43{left:579.840027pt;}
.x13{left:581.599976pt;}
.x44{left:583.840027pt;}
.x4b{left:585.280029pt;}
.x2b{left:587.359985pt;}
.x4c{left:589.440002pt;}
.x1d{left:597.919983pt;}
.x4d{left:606.239990pt;}
.x4e{left:611.520020pt;}
.x45{left:618.239990pt;}
.x2c{left:632.640015pt;}
.x14{left:637.280029pt;}
.x26{left:652.320007pt;}
.x2d{left:672.000000pt;}
.x4f{left:684.960022pt;}
.x2e{left:691.039978pt;}
.x2f{left:702.559998pt;}
}




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