
    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_18d5e38299a4e7d1e6e50f42.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_9298004578be191fb2ab7596.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_72e825816ab336475b58c54d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_84cec04247383aca2a2ac38a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_08f1e51c02fc04f8ecf27241.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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);}
.v1{vertical-align:-62.639645px;}
.v3{vertical-align:-23.760130px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.759856px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004435px;}
.ls3{letter-spacing:0.055375px;}
.ls2{letter-spacing:0.321005px;}
.ls7{letter-spacing:13.829258px;}
.ls1{letter-spacing:30.389226px;}
.ls6{letter-spacing:38.530768px;}
.ls5{letter-spacing:38.530772px;}
.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:-15.026225px;}
.ws0{word-spacing:-14.970850px;}
.ws3{word-spacing:-9.438126px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-4.745446px;}
._13{margin-left:-3.678245px;}
._8{margin-left:-2.516594px;}
._2{margin-left:-1.390173px;}
._1{width:1.664472px;}
._7{width:3.042880px;}
._d{width:4.631038px;}
._10{width:5.757645px;}
._e{width:6.992486px;}
._11{width:8.060773px;}
._b{width:9.276048px;}
._a{width:10.792644px;}
._12{width:11.914629px;}
._14{width:13.228615px;}
._9{width:16.732086px;}
._5{width:17.879578px;}
._6{width:19.059883px;}
._f{width:20.124470px;}
._c{width:21.306085px;}
._0{width:379.127279px;}
._3{width:710.214579px;}
._4{width:852.448734px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(22,65,148);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.761620px;}
.fs0{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.500000px;}
.y6{bottom:57.600083px;}
.y5{bottom:93.420043px;}
.y2b{bottom:165.060036px;}
.y6a{bottom:171.000068px;}
.y52{bottom:171.720085px;}
.y9e{bottom:173.700096px;}
.y120{bottom:176.400055px;}
.ybb{bottom:178.380066px;}
.ycb{bottom:179.460091px;}
.y69{bottom:194.040047px;}
.y51{bottom:194.760064px;}
.y101{bottom:195.660049px;}
.yae{bottom:196.560036px;}
.y9d{bottom:196.740074px;}
.yba{bottom:196.920043px;}
.y11f{bottom:199.440033px;}
.yca{bottom:202.500068px;}
.y2a{bottom:203.220085px;}
.y68{bottom:217.260064px;}
.y50{bottom:217.980079px;}
.y100{bottom:218.880066px;}
.yad{bottom:219.780052px;}
.y9c{bottom:219.960091px;}
.yc9{bottom:221.220085px;}
.y11e{bottom:222.660049px;}
.y29{bottom:228.420043px;}
.y67{bottom:240.480079px;}
.y4f{bottom:241.200096px;}
.yff{bottom:242.100083px;}
.yac{bottom:243.000068px;}
.y9b{bottom:243.180039px;}
.y11d{bottom:245.880066px;}
.yeb{bottom:259.920043px;}
.yab{bottom:261.540047px;}
.y66{bottom:263.520058px;}
.y4e{bottom:264.420043px;}
.yfe{bottom:265.140060px;}
.y9a{bottom:266.220085px;}
.y11c{bottom:268.920043px;}
.yea{bottom:283.140060px;}
.y65{bottom:286.740074px;}
.y4d{bottom:287.460091px;}
.yfd{bottom:288.360077px;}
.y99{bottom:289.440033px;}
.y28{bottom:291.960091px;}
.y11b{bottom:292.140060px;}
.ye9{bottom:306.360077px;}
.y27{bottom:308.340088px;}
.y64{bottom:309.960091px;}
.y4c{bottom:310.680039px;}
.y98{bottom:312.660049px;}
.y11a{bottom:315.360077px;}
.yfc{bottom:320.580093px;}
.y63{bottom:328.500068px;}
.y26{bottom:329.220085px;}
.ye8{bottom:329.580093px;}
.y97{bottom:331.200096px;}
.y4b{bottom:333.900055px;}
.y119{bottom:338.400055px;}
.yfb{bottom:343.620072px;}
.yd6{bottom:349.380066px;}
.y25{bottom:350.100083px;}
.ye7{bottom:352.620072px;}
.y86{bottom:355.680039px;}
.y4a{bottom:356.940033px;}
.y118{bottom:361.620072px;}
.yfa{bottom:366.840088px;}
.y24{bottom:370.980079px;}
.yd5{bottom:372.420043px;}
.ye6{bottom:375.840088px;}
.y85{bottom:378.900055px;}
.y49{bottom:380.160049px;}
.yf9{bottom:390.060036px;}
.y23{bottom:391.860077px;}
.y117{bottom:393.840088px;}
.yd4{bottom:395.640060px;}
.y84{bottom:401.940033px;}
.y48{bottom:403.380066px;}
.ye5{bottom:408.060036px;}
.yf8{bottom:408.600083px;}
.y22{bottom:412.740074px;}
.yd3{bottom:418.860077px;}
.y83{bottom:425.160049px;}
.y47{bottom:426.420043px;}
.ye4{bottom:431.100083px;}
.y116{bottom:432.000068px;}
.y21{bottom:433.620072px;}
.yd2{bottom:441.900055px;}
.y82{bottom:448.380066px;}
.y46{bottom:449.640060px;}
.ye3{bottom:454.320099px;}
.y20{bottom:454.500068px;}
.y115{bottom:455.040047px;}
.yb9{bottom:458.820099px;}
.yd1{bottom:465.120072px;}
.y81{bottom:471.420043px;}
.y45{bottom:472.860077px;}
.ye2{bottom:477.540047px;}
.y114{bottom:478.260064px;}
.y1f{bottom:479.880066px;}
.yb8{bottom:481.860077px;}
.yaa{bottom:485.640060px;}
.yd0{bottom:488.340088px;}
.y80{bottom:494.640060px;}
.y1e{bottom:495.540047px;}
.ye1{bottom:500.580093px;}
.y113{bottom:501.480079px;}
.yc8{bottom:503.280052px;}
.y44{bottom:504.900055px;}
.yb7{bottom:505.080093px;}
.ya9{bottom:508.860077px;}
.ycf{bottom:511.380066px;}
.y1d{bottom:516.420043px;}
.y7f{bottom:517.860077px;}
.ye0{bottom:519.300041px;}
.y112{bottom:524.520058px;}
.yc7{bottom:526.320099px;}
.y43{bottom:528.120072px;}
.yb6{bottom:528.300041px;}
.ya8{bottom:531.900055px;}
.yce{bottom:534.600083px;}
.y62{bottom:539.640060px;}
.y7e{bottom:540.900055px;}
.y96{bottom:544.140060px;}
.y1c{bottom:546.660049px;}
.y111{bottom:547.740074px;}
.yc6{bottom:549.540047px;}
.y42{bottom:551.340088px;}
.ya7{bottom:555.120072px;}
.ycd{bottom:557.820099px;}
.y61{bottom:562.860077px;}
.y7d{bottom:564.120072px;}
.y95{bottom:567.360077px;}
.y110{bottom:570.960091px;}
.yc5{bottom:572.760064px;}
.y41{bottom:574.380066px;}
.yb5{bottom:574.560036px;}
.ycc{bottom:576.360077px;}
.ya6{bottom:578.340088px;}
.y60{bottom:585.900055px;}
.y7c{bottom:587.340088px;}
.y94{bottom:590.400055px;}
.yc4{bottom:595.800041px;}
.y40{bottom:597.600083px;}
.yb4{bottom:597.780052px;}
.ya5{bottom:601.380066px;}
.y1b{bottom:603.540047px;}
.y5f{bottom:609.120072px;}
.y7b{bottom:610.560036px;}
.y93{bottom:613.620072px;}
.yc3{bottom:619.020058px;}
.y3f{bottom:620.820099px;}
.y1a{bottom:624.420043px;}
.ya4{bottom:624.600083px;}
.y5e{bottom:632.340088px;}
.y7a{bottom:633.600083px;}
.y92{bottom:636.840088px;}
.yf7{bottom:639.000068px;}
.yc2{bottom:642.240074px;}
.y3e{bottom:643.860077px;}
.y19{bottom:645.300041px;}
.ya3{bottom:647.820099px;}
.yb3{bottom:653.040047px;}
.y5d{bottom:655.380066px;}
.y79{bottom:656.820099px;}
.y91{bottom:659.880066px;}
.yf6{bottom:662.040047px;}
.yc1{bottom:665.460091px;}
.y18{bottom:666.180039px;}
.y3d{bottom:667.080093px;}
.ya2{bottom:670.860077px;}
.yb2{bottom:676.260064px;}
.y5c{bottom:678.600083px;}
.y78{bottom:680.040047px;}
.y90{bottom:683.100083px;}
.yf5{bottom:685.260064px;}
.y17{bottom:687.240074px;}
.yc0{bottom:688.500068px;}
.y3c{bottom:690.300076px;}
.y10f{bottom:693.540081px;}
.ya1{bottom:694.080059px;}
.ydf{bottom:696.600083px;}
.yb1{bottom:699.300076px;}
.y5b{bottom:701.820065px;}
.y77{bottom:703.080059px;}
.y8f{bottom:706.320065px;}
.y16{bottom:708.120072px;}
.yf4{bottom:708.480079px;}
.ybf{bottom:711.720051px;}
.y3b{bottom:713.340054px;}
.y10e{bottom:716.760064px;}
.ya0{bottom:717.300076px;}
.yb0{bottom:718.020058px;}
.yde{bottom:719.820065px;}
.y5a{bottom:724.860077px;}
.y76{bottom:728.820065px;}
.y8e{bottom:729.360077px;}
.yf3{bottom:731.700061px;}
.y15{bottom:733.500068px;}
.ybe{bottom:734.940067px;}
.y9f{bottom:735.840054px;}
.y3a{bottom:736.560070px;}
.y10d{bottom:739.980079px;}
.ydd{bottom:742.860077px;}
.y59{bottom:748.080059px;}
.y14{bottom:749.160049px;}
.y8d{bottom:752.580059px;}
.ybd{bottom:753.480079px;}
.yf2{bottom:754.740074px;}
.y75{bottom:759.060070px;}
.y39{bottom:759.780052px;}
.y10c{bottom:763.020058px;}
.ydc{bottom:766.080059px;}
.y13{bottom:770.040081px;}
.y58{bottom:771.300076px;}
.yf1{bottom:777.960056px;}
.y38{bottom:783.000068px;}
.y8c{bottom:784.800076px;}
.y10b{bottom:786.240074px;}
.y74{bottom:789.300076px;}
.y12{bottom:790.920078px;}
.y57{bottom:794.340054px;}
.yf0{bottom:801.180073px;}
.y37{bottom:806.040081px;}
.y8b{bottom:807.840054px;}
.y10a{bottom:809.460056px;}
.y11{bottom:811.800076px;}
.ydb{bottom:812.340054px;}
.y56{bottom:813.060070px;}
.y73{bottom:819.540081px;}
.yef{bottom:824.220051px;}
.y36{bottom:829.260064px;}
.y8a{bottom:831.060070px;}
.yda{bottom:835.560070px;}
.y10{bottom:842.040081px;}
.yee{bottom:847.440067px;}
.y109{bottom:847.620072px;}
.y72{bottom:848.520058px;}
.y89{bottom:854.280052px;}
.yd9{bottom:858.780052px;}
.y35{bottom:861.480079px;}
.yed{bottom:870.660049px;}
.y88{bottom:877.500068px;}
.y71{bottom:878.760064px;}
.yd8{bottom:882.000068px;}
.y122{bottom:885.780052px;}
.yec{bottom:889.380066px;}
.y34{bottom:893.520058px;}
.y108{bottom:893.880066px;}
.y87{bottom:896.040081px;}
.yf{bottom:898.920078px;}
.yd7{bottom:900.540081px;}
.y121{bottom:908.820065px;}
.y70{bottom:909.000068px;}
.y107{bottom:917.100083px;}
.ye{bottom:919.800076px;}
.y33{bottom:925.740074px;}
.ybc{bottom:932.040081px;}
.y6f{bottom:934.380066px;}
.y106{bottom:940.140060px;}
.yd{bottom:940.680073px;}
.y32{bottom:948.960056px;}
.y6e{bottom:950.040081px;}
.yaf{bottom:955.260064px;}
.yc{bottom:961.560070px;}
.y105{bottom:963.360077px;}
.y31{bottom:972.000068px;}
.y6d{bottom:978.300058px;}
.yb{bottom:982.440067px;}
.y104{bottom:986.580059px;}
.y30{bottom:995.220068px;}
.y6c{bottom:1001.520058px;}
.ya{bottom:1007.820065px;}
.y103{bottom:1009.620072px;}
.y2f{bottom:1018.440067px;}
.y8{bottom:1023.480063px;}
.y6b{bottom:1024.740074px;}
.y102{bottom:1032.840070px;}
.y2e{bottom:1041.480063px;}
.y55{bottom:1047.780069px;}
.y7{bottom:1053.720068px;}
.y2d{bottom:1064.700061px;}
.y54{bottom:1071.000068px;}
.y2c{bottom:1089.720068px;}
.y53{bottom:1094.220068px;}
.y4{bottom:1113.840070px;}
.y3{bottom:1132.200061px;}
.y2{bottom:1150.380066px;}
.y1{bottom:1164.780069px;}
.ha{height:19.979978px;}
.h9{height:19.980011px;}
.h8{height:20.159980px;}
.h7{height:20.159981px;}
.h5{height:20.159998px;}
.he{height:20.160015px;}
.hb{height:20.160049px;}
.hc{height:50.522997px;}
.hd{height:53.304673px;}
.hf{height:57.365049px;}
.h2{height:59.441261px;}
.h3{height:65.886904px;}
.h6{height:67.827608px;}
.h4{height:86.258729px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w17{width:3.599980px;}
.w15{width:3.779983px;}
.w29{width:3.779984px;}
.w21{width:3.780001px;}
.w27{width:3.780018px;}
.w3a{width:4.139991px;}
.w50{width:4.139992px;}
.w2f{width:4.859991px;}
.w5{width:4.860008px;}
.w1d{width:5.039978px;}
.wa{width:5.039979px;}
.w24{width:5.579990px;}
.w33{width:6.300007px;}
.wf{width:8.279983px;}
.w19{width:8.279984px;}
.w8{width:8.280000px;}
.w3{width:8.280001px;}
.w1f{width:8.280017px;}
.wc{width:8.280018px;}
.w4c{width:8.280052px;}
.w14{width:8.459988px;}
.w18{width:8.460021px;}
.w16{width:8.460022px;}
.w57{width:9.899985px;}
.w55{width:9.899987px;}
.w1a{width:14.759994px;}
.w3e{width:14.760029px;}
.w43{width:17.639991px;}
.w4d{width:17.640000px;}
.w22{width:21.960004px;}
.w25{width:22.140009px;}
.w23{width:22.680003px;}
.w45{width:23.219982px;}
.w13{width:31.500000px;}
.w49{width:32.579990px;}
.w44{width:32.579999px;}
.w32{width:35.100013px;}
.w30{width:35.459988px;}
.w35{width:36.899994px;}
.w2e{width:37.620002px;}
.w31{width:38.160015px;}
.w46{width:39.780018px;}
.w41{width:40.500000px;}
.w9{width:40.860008px;}
.w2a{width:42.300040px;}
.w3c{width:45.000000px;}
.wb{width:45.540012px;}
.w37{width:45.899985px;}
.w34{width:46.080025px;}
.w58{width:46.439999px;}
.w59{width:46.799973px;}
.w4f{width:55.620002px;}
.w2d{width:56.519998px;}
.w1b{width:56.700001px;}
.w51{width:57.059966px;}
.w3b{width:57.060002px;}
.w3f{width:58.860008px;}
.w39{width:59.759994px;}
.w12{width:60.839993px;}
.w3d{width:63.539978px;}
.w1e{width:64.620003px;}
.w38{width:64.980002px;}
.w4a{width:64.980010px;}
.w4b{width:67.319962px;}
.we{width:75.240006px;}
.w10{width:76.499991px;}
.w6{width:76.860008px;}
.w48{width:78.119994px;}
.w20{width:78.299998px;}
.w2b{width:79.020006px;}
.w4e{width:79.739988px;}
.w52{width:96.300007px;}
.w2{width:106.200001px;}
.w47{width:107.279992px;}
.w7{width:112.320005px;}
.w53{width:115.740006px;}
.w56{width:120.419975px;}
.w54{width:120.420009px;}
.w1c{width:126.720017px;}
.w42{width:127.439990px;}
.w28{width:129.419975px;}
.w26{width:130.139991px;}
.w36{width:131.760012px;}
.w40{width:134.100005px;}
.wd{width:143.459996px;}
.w2c{width:196.920009px;}
.w11{width:249.300007px;}
.w4{width:352.799973px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.200002px;}
.x5{left:122.760003px;}
.x4a{left:133.200002px;}
.x47{left:140.400003px;}
.x41{left:155.340002px;}
.x34{left:159.659998px;}
.x1d{left:179.460005px;}
.x11{left:183.599997px;}
.x36{left:187.740006px;}
.x4f{left:195.479994px;}
.xf{left:199.259994px;}
.x20{left:201.060001px;}
.x21{left:204.840002px;}
.x24{left:210.419992px;}
.x2c{left:216.900003px;}
.x44{left:218.340002px;}
.x22{left:226.800007px;}
.x6{left:228.960005px;}
.x43{left:230.039996px;}
.x25{left:232.560001px;}
.xa{left:235.080008px;}
.x3f{left:250.199993px;}
.x3e{left:256.860008px;}
.x2{left:265.500000px;}
.x2b{left:283.860008px;}
.x35{left:291.420010px;}
.x48{left:298.079990px;}
.x7{left:324.000000px;}
.x42{left:332.639992px;}
.x40{left:341.819996px;}
.x23{left:346.860008px;}
.x12{left:355.500000px;}
.x2d{left:359.639992px;}
.xb{left:364.860008px;}
.xc{left:369.899987px;}
.x49{left:379.800007px;}
.x37{left:383.939999px;}
.x38{left:388.079990px;}
.x45{left:389.160015px;}
.x39{left:391.860008px;}
.x13{left:395.459988px;}
.x2e{left:397.800007px;}
.xe{left:399.240006px;}
.x14{left:403.740006px;}
.x15{left:407.519989px;}
.xd{left:415.439999px;}
.x50{left:416.699993px;}
.x16{left:419.399987px;}
.x17{left:427.860008px;}
.x18{left:436.139992px;}
.x2f{left:437.939999px;}
.x30{left:444.240006px;}
.x31{left:448.019989px;}
.x19{left:450.899987px;}
.x26{left:454.319996px;}
.x1e{left:455.759994px;}
.x27{left:458.100014px;}
.x1a{left:459.180005px;}
.x1b{left:490.680005px;}
.x32{left:494.100014px;}
.x1c{left:498.959988px;}
.x33{left:502.379998px;}
.x1f{left:520.379998px;}
.x4e{left:542.339985px;}
.x3a{left:557.459988px;}
.x3b{left:572.220017px;}
.x10{left:573.300007px;}
.x3c{left:576.000000px;}
.x28{left:587.519989px;}
.x29{left:591.299973px;}
.x4c{left:593.460023px;}
.x46{left:624.059967px;}
.x51{left:630.360008px;}
.x2a{left:633.600014px;}
.x3d{left:634.860008px;}
.x54{left:637.559967px;}
.x53{left:658.980011px;}
.x8{left:676.799973px;}
.x9{left:681.659981px;}
.x3{left:685.799973px;}
.x52{left:701.639992px;}
.x4d{left:713.879998px;}
.x4b{left:744.480011px;}
.x4{left:786.600014px;}
@media print{
.v1{vertical-align:-55.679684pt;}
.v3{vertical-align:-21.120116pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.119872pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003943pt;}
.ls3{letter-spacing:0.049222pt;}
.ls2{letter-spacing:0.285338pt;}
.ls7{letter-spacing:12.292674pt;}
.ls1{letter-spacing:27.012646pt;}
.ls6{letter-spacing:34.249571pt;}
.ls5{letter-spacing:34.249575pt;}
.ws1{word-spacing:-13.356644pt;}
.ws0{word-spacing:-13.307422pt;}
.ws3{word-spacing:-8.389445pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-4.218174pt;}
._13{margin-left:-3.269551pt;}
._8{margin-left:-2.236972pt;}
._2{margin-left:-1.235709pt;}
._1{width:1.479531pt;}
._7{width:2.704782pt;}
._d{width:4.116478pt;}
._10{width:5.117906pt;}
._e{width:6.215543pt;}
._11{width:7.165132pt;}
._b{width:8.245376pt;}
._a{width:9.593461pt;}
._12{width:10.590782pt;}
._14{width:11.758769pt;}
._9{width:14.872965pt;}
._5{width:15.892958pt;}
._6{width:16.942118pt;}
._f{width:17.888418pt;}
._c{width:18.938742pt;}
._0{width:337.002025pt;}
._3{width:631.301848pt;}
._4{width:757.732208pt;}
.fs3{font-size:37.121440pt;}
.fs0{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.000000pt;}
.y6{bottom:51.200074pt;}
.y5{bottom:83.040039pt;}
.y2b{bottom:146.720032pt;}
.y6a{bottom:152.000061pt;}
.y52{bottom:152.640076pt;}
.y9e{bottom:154.400086pt;}
.y120{bottom:156.800049pt;}
.ybb{bottom:158.560059pt;}
.ycb{bottom:159.520081pt;}
.y69{bottom:172.480042pt;}
.y51{bottom:173.120057pt;}
.y101{bottom:173.920044pt;}
.yae{bottom:174.720032pt;}
.y9d{bottom:174.880066pt;}
.yba{bottom:175.040039pt;}
.y11f{bottom:177.280030pt;}
.yca{bottom:180.000061pt;}
.y2a{bottom:180.640076pt;}
.y68{bottom:193.120057pt;}
.y50{bottom:193.760071pt;}
.y100{bottom:194.560059pt;}
.yad{bottom:195.360047pt;}
.y9c{bottom:195.520081pt;}
.yc9{bottom:196.640076pt;}
.y11e{bottom:197.920044pt;}
.y29{bottom:203.040039pt;}
.y67{bottom:213.760071pt;}
.y4f{bottom:214.400086pt;}
.yff{bottom:215.200074pt;}
.yac{bottom:216.000061pt;}
.y9b{bottom:216.160035pt;}
.y11d{bottom:218.560059pt;}
.yeb{bottom:231.040039pt;}
.yab{bottom:232.480042pt;}
.y66{bottom:234.240052pt;}
.y4e{bottom:235.040039pt;}
.yfe{bottom:235.680054pt;}
.y9a{bottom:236.640076pt;}
.y11c{bottom:239.040039pt;}
.yea{bottom:251.680054pt;}
.y65{bottom:254.880066pt;}
.y4d{bottom:255.520081pt;}
.yfd{bottom:256.320069pt;}
.y99{bottom:257.280030pt;}
.y28{bottom:259.520081pt;}
.y11b{bottom:259.680054pt;}
.ye9{bottom:272.320069pt;}
.y27{bottom:274.080079pt;}
.y64{bottom:275.520081pt;}
.y4c{bottom:276.160035pt;}
.y98{bottom:277.920044pt;}
.y11a{bottom:280.320069pt;}
.yfc{bottom:284.960083pt;}
.y63{bottom:292.000061pt;}
.y26{bottom:292.640076pt;}
.ye8{bottom:292.960083pt;}
.y97{bottom:294.400086pt;}
.y4b{bottom:296.800049pt;}
.y119{bottom:300.800049pt;}
.yfb{bottom:305.440064pt;}
.yd6{bottom:310.560059pt;}
.y25{bottom:311.200074pt;}
.ye7{bottom:313.440064pt;}
.y86{bottom:316.160035pt;}
.y4a{bottom:317.280030pt;}
.y118{bottom:321.440064pt;}
.yfa{bottom:326.080079pt;}
.y24{bottom:329.760071pt;}
.yd5{bottom:331.040039pt;}
.ye6{bottom:334.080079pt;}
.y85{bottom:336.800049pt;}
.y49{bottom:337.920044pt;}
.yf9{bottom:346.720032pt;}
.y23{bottom:348.320069pt;}
.y117{bottom:350.080079pt;}
.yd4{bottom:351.680054pt;}
.y84{bottom:357.280030pt;}
.y48{bottom:358.560059pt;}
.ye5{bottom:362.720032pt;}
.yf8{bottom:363.200074pt;}
.y22{bottom:366.880066pt;}
.yd3{bottom:372.320069pt;}
.y83{bottom:377.920044pt;}
.y47{bottom:379.040039pt;}
.ye4{bottom:383.200074pt;}
.y116{bottom:384.000061pt;}
.y21{bottom:385.440064pt;}
.yd2{bottom:392.800049pt;}
.y82{bottom:398.560059pt;}
.y46{bottom:399.680054pt;}
.ye3{bottom:403.840088pt;}
.y20{bottom:404.000061pt;}
.y115{bottom:404.480042pt;}
.yb9{bottom:407.840088pt;}
.yd1{bottom:413.440064pt;}
.y81{bottom:419.040039pt;}
.y45{bottom:420.320069pt;}
.ye2{bottom:424.480042pt;}
.y114{bottom:425.120057pt;}
.y1f{bottom:426.560059pt;}
.yb8{bottom:428.320069pt;}
.yaa{bottom:431.680054pt;}
.yd0{bottom:434.080079pt;}
.y80{bottom:439.680054pt;}
.y1e{bottom:440.480042pt;}
.ye1{bottom:444.960083pt;}
.y113{bottom:445.760071pt;}
.yc8{bottom:447.360047pt;}
.y44{bottom:448.800049pt;}
.yb7{bottom:448.960083pt;}
.ya9{bottom:452.320069pt;}
.ycf{bottom:454.560059pt;}
.y1d{bottom:459.040039pt;}
.y7f{bottom:460.320069pt;}
.ye0{bottom:461.600037pt;}
.y112{bottom:466.240052pt;}
.yc7{bottom:467.840088pt;}
.y43{bottom:469.440064pt;}
.yb6{bottom:469.600037pt;}
.ya8{bottom:472.800049pt;}
.yce{bottom:475.200074pt;}
.y62{bottom:479.680054pt;}
.y7e{bottom:480.800049pt;}
.y96{bottom:483.680054pt;}
.y1c{bottom:485.920044pt;}
.y111{bottom:486.880066pt;}
.yc6{bottom:488.480042pt;}
.y42{bottom:490.080079pt;}
.ya7{bottom:493.440064pt;}
.ycd{bottom:495.840088pt;}
.y61{bottom:500.320069pt;}
.y7d{bottom:501.440064pt;}
.y95{bottom:504.320069pt;}
.y110{bottom:507.520081pt;}
.yc5{bottom:509.120057pt;}
.y41{bottom:510.560059pt;}
.yb5{bottom:510.720032pt;}
.ycc{bottom:512.320069pt;}
.ya6{bottom:514.080079pt;}
.y60{bottom:520.800049pt;}
.y7c{bottom:522.080079pt;}
.y94{bottom:524.800049pt;}
.yc4{bottom:529.600037pt;}
.y40{bottom:531.200074pt;}
.yb4{bottom:531.360047pt;}
.ya5{bottom:534.560059pt;}
.y1b{bottom:536.480042pt;}
.y5f{bottom:541.440064pt;}
.y7b{bottom:542.720032pt;}
.y93{bottom:545.440064pt;}
.yc3{bottom:550.240052pt;}
.y3f{bottom:551.840088pt;}
.y1a{bottom:555.040039pt;}
.ya4{bottom:555.200074pt;}
.y5e{bottom:562.080079pt;}
.y7a{bottom:563.200074pt;}
.y92{bottom:566.080079pt;}
.yf7{bottom:568.000061pt;}
.yc2{bottom:570.880066pt;}
.y3e{bottom:572.320069pt;}
.y19{bottom:573.600037pt;}
.ya3{bottom:575.840088pt;}
.yb3{bottom:580.480042pt;}
.y5d{bottom:582.560059pt;}
.y79{bottom:583.840088pt;}
.y91{bottom:586.560059pt;}
.yf6{bottom:588.480042pt;}
.yc1{bottom:591.520081pt;}
.y18{bottom:592.160035pt;}
.y3d{bottom:592.960083pt;}
.ya2{bottom:596.320069pt;}
.yb2{bottom:601.120057pt;}
.y5c{bottom:603.200074pt;}
.y78{bottom:604.480042pt;}
.y90{bottom:607.200074pt;}
.yf5{bottom:609.120057pt;}
.y17{bottom:610.880066pt;}
.yc0{bottom:612.000061pt;}
.y3c{bottom:613.600068pt;}
.y10f{bottom:616.480072pt;}
.ya1{bottom:616.960053pt;}
.ydf{bottom:619.200074pt;}
.yb1{bottom:621.600068pt;}
.y5b{bottom:623.840058pt;}
.y77{bottom:624.960053pt;}
.y8f{bottom:627.840058pt;}
.y16{bottom:629.440064pt;}
.yf4{bottom:629.760071pt;}
.ybf{bottom:632.640046pt;}
.y3b{bottom:634.080048pt;}
.y10e{bottom:637.120057pt;}
.ya0{bottom:637.600068pt;}
.yb0{bottom:638.240052pt;}
.yde{bottom:639.840058pt;}
.y5a{bottom:644.320069pt;}
.y76{bottom:647.840058pt;}
.y8e{bottom:648.320069pt;}
.yf3{bottom:650.400055pt;}
.y15{bottom:652.000061pt;}
.ybe{bottom:653.280060pt;}
.y9f{bottom:654.080048pt;}
.y3a{bottom:654.720063pt;}
.y10d{bottom:657.760071pt;}
.ydd{bottom:660.320069pt;}
.y59{bottom:664.960053pt;}
.y14{bottom:665.920044pt;}
.y8d{bottom:668.960053pt;}
.ybd{bottom:669.760071pt;}
.yf2{bottom:670.880066pt;}
.y75{bottom:674.720063pt;}
.y39{bottom:675.360047pt;}
.y10c{bottom:678.240052pt;}
.ydc{bottom:680.960053pt;}
.y13{bottom:684.480072pt;}
.y58{bottom:685.600068pt;}
.yf1{bottom:691.520050pt;}
.y38{bottom:696.000061pt;}
.y8c{bottom:697.600068pt;}
.y10b{bottom:698.880066pt;}
.y74{bottom:701.600068pt;}
.y12{bottom:703.040070pt;}
.y57{bottom:706.080048pt;}
.yf0{bottom:712.160065pt;}
.y37{bottom:716.480072pt;}
.y8b{bottom:718.080048pt;}
.y10a{bottom:719.520050pt;}
.y11{bottom:721.600068pt;}
.ydb{bottom:722.080048pt;}
.y56{bottom:722.720063pt;}
.y73{bottom:728.480072pt;}
.yef{bottom:732.640046pt;}
.y36{bottom:737.120057pt;}
.y8a{bottom:738.720063pt;}
.yda{bottom:742.720063pt;}
.y10{bottom:748.480072pt;}
.yee{bottom:753.280060pt;}
.y109{bottom:753.440064pt;}
.y72{bottom:754.240052pt;}
.y89{bottom:759.360047pt;}
.yd9{bottom:763.360047pt;}
.y35{bottom:765.760071pt;}
.yed{bottom:773.920044pt;}
.y88{bottom:780.000061pt;}
.y71{bottom:781.120057pt;}
.yd8{bottom:784.000061pt;}
.y122{bottom:787.360047pt;}
.yec{bottom:790.560059pt;}
.y34{bottom:794.240052pt;}
.y108{bottom:794.560059pt;}
.y87{bottom:796.480072pt;}
.yf{bottom:799.040070pt;}
.yd7{bottom:800.480072pt;}
.y121{bottom:807.840058pt;}
.y70{bottom:808.000061pt;}
.y107{bottom:815.200074pt;}
.ye{bottom:817.600068pt;}
.y33{bottom:822.880066pt;}
.ybc{bottom:828.480072pt;}
.y6f{bottom:830.560059pt;}
.y106{bottom:835.680054pt;}
.yd{bottom:836.160065pt;}
.y32{bottom:843.520050pt;}
.y6e{bottom:844.480072pt;}
.yaf{bottom:849.120057pt;}
.yc{bottom:854.720063pt;}
.y105{bottom:856.320069pt;}
.y31{bottom:864.000061pt;}
.y6d{bottom:869.600052pt;}
.yb{bottom:873.280060pt;}
.y104{bottom:876.960053pt;}
.y30{bottom:884.640061pt;}
.y6c{bottom:890.240052pt;}
.ya{bottom:895.840058pt;}
.y103{bottom:897.440064pt;}
.y2f{bottom:905.280060pt;}
.y8{bottom:909.760056pt;}
.y6b{bottom:910.880066pt;}
.y102{bottom:918.080063pt;}
.y2e{bottom:925.760056pt;}
.y55{bottom:931.360062pt;}
.y7{bottom:936.640061pt;}
.y2d{bottom:946.400055pt;}
.y54{bottom:952.000061pt;}
.y2c{bottom:968.640061pt;}
.y53{bottom:972.640061pt;}
.y4{bottom:990.080063pt;}
.y3{bottom:1006.400055pt;}
.y2{bottom:1022.560059pt;}
.y1{bottom:1035.360062pt;}
.ha{height:17.759980pt;}
.h9{height:17.760010pt;}
.h8{height:17.919982pt;}
.h7{height:17.919983pt;}
.h5{height:17.919998pt;}
.he{height:17.920013pt;}
.hb{height:17.920044pt;}
.hc{height:44.909330pt;}
.hd{height:47.381931pt;}
.hf{height:50.991155pt;}
.h2{height:52.836677pt;}
.h3{height:58.566137pt;}
.h6{height:60.291207pt;}
.h4{height:76.674425pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w17{width:3.199982pt;}
.w15{width:3.359985pt;}
.w29{width:3.359986pt;}
.w21{width:3.360001pt;}
.w27{width:3.360016pt;}
.w3a{width:3.679992pt;}
.w50{width:3.679993pt;}
.w2f{width:4.319992pt;}
.w5{width:4.320007pt;}
.w1d{width:4.479980pt;}
.wa{width:4.479981pt;}
.w24{width:4.959991pt;}
.w33{width:5.600006pt;}
.wf{width:7.359985pt;}
.w19{width:7.359986pt;}
.w8{width:7.360000pt;}
.w3{width:7.360001pt;}
.w1f{width:7.360015pt;}
.wc{width:7.360016pt;}
.w4c{width:7.360046pt;}
.w14{width:7.519989pt;}
.w18{width:7.520019pt;}
.w16{width:7.520020pt;}
.w57{width:8.799987pt;}
.w55{width:8.799988pt;}
.w1a{width:13.119995pt;}
.w3e{width:13.120026pt;}
.w43{width:15.679992pt;}
.w4d{width:15.680000pt;}
.w22{width:19.520004pt;}
.w25{width:19.680008pt;}
.w23{width:20.160003pt;}
.w45{width:20.639984pt;}
.w13{width:28.000000pt;}
.w49{width:28.959991pt;}
.w44{width:28.959999pt;}
.w32{width:31.200012pt;}
.w30{width:31.519989pt;}
.w35{width:32.799995pt;}
.w2e{width:33.440002pt;}
.w31{width:33.920013pt;}
.w46{width:35.360016pt;}
.w41{width:36.000000pt;}
.w9{width:36.320007pt;}
.w2a{width:37.600036pt;}
.w3c{width:40.000000pt;}
.wb{width:40.480011pt;}
.w37{width:40.799987pt;}
.w34{width:40.960022pt;}
.w58{width:41.279999pt;}
.w59{width:41.599976pt;}
.w4f{width:49.440002pt;}
.w2d{width:50.239998pt;}
.w1b{width:50.400001pt;}
.w51{width:50.719970pt;}
.w3b{width:50.720002pt;}
.w3f{width:52.320007pt;}
.w39{width:53.119995pt;}
.w12{width:54.079994pt;}
.w3d{width:56.479980pt;}
.w1e{width:57.440003pt;}
.w38{width:57.760002pt;}
.w4a{width:57.760009pt;}
.w4b{width:59.839966pt;}
.we{width:66.880005pt;}
.w10{width:67.999992pt;}
.w6{width:68.320007pt;}
.w48{width:69.439995pt;}
.w20{width:69.599998pt;}
.w2b{width:70.240005pt;}
.w4e{width:70.879989pt;}
.w52{width:85.600006pt;}
.w2{width:94.400001pt;}
.w47{width:95.359993pt;}
.w7{width:99.840004pt;}
.w53{width:102.880005pt;}
.w56{width:107.039978pt;}
.w54{width:107.040008pt;}
.w1c{width:112.640015pt;}
.w42{width:113.279991pt;}
.w28{width:115.039978pt;}
.w26{width:115.679992pt;}
.w36{width:117.120011pt;}
.w40{width:119.200004pt;}
.wd{width:127.519996pt;}
.w2c{width:175.040008pt;}
.w11{width:221.600006pt;}
.w4{width:313.599976pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.400002pt;}
.x5{left:109.120003pt;}
.x4a{left:118.400002pt;}
.x47{left:124.800003pt;}
.x41{left:138.080002pt;}
.x34{left:141.919998pt;}
.x1d{left:159.520004pt;}
.x11{left:163.199997pt;}
.x36{left:166.880005pt;}
.x4f{left:173.759995pt;}
.xf{left:177.119995pt;}
.x20{left:178.720001pt;}
.x21{left:182.080002pt;}
.x24{left:187.039993pt;}
.x2c{left:192.800003pt;}
.x44{left:194.080002pt;}
.x22{left:201.600006pt;}
.x6{left:203.520004pt;}
.x43{left:204.479996pt;}
.x25{left:206.720001pt;}
.xa{left:208.960007pt;}
.x3f{left:222.399994pt;}
.x3e{left:228.320007pt;}
.x2{left:236.000000pt;}
.x2b{left:252.320007pt;}
.x35{left:259.040009pt;}
.x48{left:264.959991pt;}
.x7{left:288.000000pt;}
.x42{left:295.679993pt;}
.x40{left:303.839996pt;}
.x23{left:308.320007pt;}
.x12{left:316.000000pt;}
.x2d{left:319.679993pt;}
.xb{left:324.320007pt;}
.xc{left:328.799988pt;}
.x49{left:337.600006pt;}
.x37{left:341.279999pt;}
.x38{left:344.959991pt;}
.x45{left:345.920013pt;}
.x39{left:348.320007pt;}
.x13{left:351.519989pt;}
.x2e{left:353.600006pt;}
.xe{left:354.880005pt;}
.x14{left:358.880005pt;}
.x15{left:362.239990pt;}
.xd{left:369.279999pt;}
.x50{left:370.399994pt;}
.x16{left:372.799988pt;}
.x17{left:380.320007pt;}
.x18{left:387.679993pt;}
.x2f{left:389.279999pt;}
.x30{left:394.880005pt;}
.x31{left:398.239990pt;}
.x19{left:400.799988pt;}
.x26{left:403.839996pt;}
.x1e{left:405.119995pt;}
.x27{left:407.200012pt;}
.x1a{left:408.160004pt;}
.x1b{left:436.160004pt;}
.x32{left:439.200012pt;}
.x1c{left:443.519989pt;}
.x33{left:446.559998pt;}
.x1f{left:462.559998pt;}
.x4e{left:482.079987pt;}
.x3a{left:495.519989pt;}
.x3b{left:508.640015pt;}
.x10{left:509.600006pt;}
.x3c{left:512.000000pt;}
.x28{left:522.239990pt;}
.x29{left:525.599976pt;}
.x4c{left:527.520020pt;}
.x46{left:554.719971pt;}
.x51{left:560.320007pt;}
.x2a{left:563.200012pt;}
.x3d{left:564.320007pt;}
.x54{left:566.719971pt;}
.x53{left:585.760010pt;}
.x8{left:601.599976pt;}
.x9{left:605.919983pt;}
.x3{left:609.599976pt;}
.x52{left:623.679993pt;}
.x4d{left:634.559998pt;}
.x4b{left:661.760010pt;}
.x4{left:699.200012pt;}
}




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