
    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_206d37f1f69e278d14983c0b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_dc1f5d2d789f1dc9fb706223.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_11624bb58bb97eeaeefc2826.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_38163da79a9401b4b5e99e80.woff')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_b2e843186d3bb93964466455.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_49a1667dd0cf3bc85cfe2ddc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_7844aa35df1634fce879a2b3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_c2b1b6bccce9e4c43b3117d9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.822000px;}
.ls12{letter-spacing:-0.413400px;}
.ls11{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.272400px;}
.ls1b{letter-spacing:-0.259800px;}
.ls1c{letter-spacing:-0.053280px;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018720px;}
.lsf{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.lse{letter-spacing:0.511800px;}
.ls15{letter-spacing:0.612000px;}
.ls1d{letter-spacing:0.666000px;}
.ls6{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.134720px;}
.ls3{letter-spacing:1.330560px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls1{letter-spacing:2.160000px;}
.ls18{letter-spacing:3.960000px;}
.ls1f{letter-spacing:41.706720px;}
.ls13{letter-spacing:46.026720px;}
.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:-16.560000px;}
.ws9{word-spacing:-16.020000px;}
.wsd{word-spacing:-15.606000px;}
.ws8{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws2{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.526600px;}
.ws0{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-2618.124000px;}
._4{margin-left:-1366.159680px;}
._9{margin-left:-1011.130560px;}
._5{margin-left:-938.448000px;}
._8{margin-left:-875.676000px;}
._b{margin-left:-576.313920px;}
._6{margin-left:-535.086720px;}
._a{margin-left:-182.583360px;}
._7{margin-left:-33.120000px;}
._c{margin-left:-8.544960px;}
._d{margin-left:-5.583840px;}
._e{margin-left:-3.643200px;}
._f{margin-left:-2.130720px;}
._3{margin-left:-1.059840px;}
._0{width:1.296000px;}
._1{width:3.090000px;}
._10{width:4.516320px;}
._11{width:5.644320px;}
._17{width:6.811200px;}
._14{width:8.007840px;}
._15{width:9.070800px;}
._13{width:10.127280px;}
._12{width:11.430720px;}
._16{width:12.442320px;}
._18{width:13.565520px;}
._19{width:15.955920px;}
._1b{width:17.044800px;}
._27{width:18.869040px;}
._23{width:21.674160px;}
._24{width:23.483760px;}
._22{width:26.975520px;}
._20{width:28.247760px;}
._21{width:29.581200px;}
._1f{width:31.136640px;}
._1e{width:32.202480px;}
._25{width:52.928640px;}
._26{width:54.195120px;}
._1c{width:62.150400px;}
._1d{width:63.642480px;}
._28{width:92.009760px;}
._29{width:93.932160px;}
._1a{width:95.178960px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.336000px;}
.y3c{bottom:85.896000px;}
.yff{bottom:87.336000px;}
.y84{bottom:91.116000px;}
.y3b{bottom:103.176000px;}
.yfe{bottom:107.316000px;}
.ybb{bottom:108.396000px;}
.y116{bottom:112.536000px;}
.y3a{bottom:120.276000px;}
.y39{bottom:125.496000px;}
.yfd{bottom:127.116000px;}
.y115{bottom:132.336000px;}
.y38{bottom:137.556000px;}
.y83{bottom:142.776000px;}
.yfc{bottom:146.916000px;}
.y114{bottom:152.310000px;}
.y37{bottom:154.830000px;}
.yba{bottom:155.550000px;}
.y36{bottom:160.050000px;}
.yb9{bottom:160.770000px;}
.yfb{bottom:166.710000px;}
.y35{bottom:172.110000px;}
.yb8{bottom:173.190000px;}
.y82{bottom:177.330000px;}
.yfa{bottom:186.510000px;}
.y34{bottom:189.390000px;}
.yb7{bottom:190.470000px;}
.y113{bottom:191.910000px;}
.y33{bottom:194.610000px;}
.yf9{bottom:206.490000px;}
.y32{bottom:206.670000px;}
.yb6{bottom:208.290000px;}
.y112{bottom:211.710000px;}
.y81{bottom:211.890000px;}
.yb5{bottom:213.510000px;}
.y31{bottom:223.770000px;}
.yb4{bottom:225.930000px;}
.yf8{bottom:226.290000px;}
.y30{bottom:228.990000px;}
.y111{bottom:231.510000px;}
.y80{bottom:241.050000px;}
.y2f{bottom:242.310000px;}
.yb3{bottom:243.210000px;}
.yf7{bottom:246.090000px;}
.y7f{bottom:246.270000px;}
.y110{bottom:251.490000px;}
.y7e{bottom:258.330000px;}
.yb2{bottom:260.490000px;}
.y7d{bottom:263.550000px;}
.yb1{bottom:265.710000px;}
.yf6{bottom:265.890000px;}
.y2e{bottom:268.410000px;}
.y10f{bottom:271.290000px;}
.y7c{bottom:275.610000px;}
.yb0{bottom:277.770000px;}
.ye8{bottom:280.830000px;}
.yf5{bottom:285.735000px;}
.y2d{bottom:288.435000px;}
.y10e{bottom:291.135000px;}
.y7b{bottom:292.935000px;}
.yaf{bottom:294.915000px;}
.yf4{bottom:305.715000px;}
.y2c{bottom:308.235000px;}
.y7a{bottom:310.035000px;}
.y10d{bottom:310.935000px;}
.yae{bottom:312.195000px;}
.yf3{bottom:325.515000px;}
.y79{bottom:327.315000px;}
.y2b{bottom:328.035000px;}
.yad{bottom:329.475000px;}
.y10c{bottom:330.735000px;}
.ye7{bottom:332.535000px;}
.yac{bottom:334.695000px;}
.y78{bottom:344.595000px;}
.yf2{bottom:345.315000px;}
.ye6{bottom:345.855000px;}
.yab{bottom:346.755000px;}
.y2a{bottom:347.835000px;}
.y77{bottom:349.815000px;}
.y10b{bottom:350.715000px;}
.y76{bottom:361.875000px;}
.yaa{bottom:364.035000px;}
.y29{bottom:367.635000px;}
.y10a{bottom:370.515000px;}
.ye4{bottom:372.315000px;}
.yf1{bottom:374.115000px;}
.ye5{bottom:377.535000px;}
.y75{bottom:379.155000px;}
.y74{bottom:384.375000px;}
.ya9{bottom:386.535000px;}
.y28{bottom:387.615000px;}
.y109{bottom:390.315000px;}
.ye3{bottom:392.115000px;}
.yf0{bottom:393.915000px;}
.y73{bottom:396.435000px;}
.ya8{bottom:398.415000px;}
.y72{bottom:401.655000px;}
.y26{bottom:407.415000px;}
.y108{bottom:410.115000px;}
.ye2{bottom:411.915000px;}
.y27{bottom:412.635000px;}
.y71{bottom:413.535000px;}
.yef{bottom:413.895000px;}
.ya7{bottom:415.695000px;}
.y70{bottom:418.755000px;}
.y25{bottom:427.215000px;}
.y107{bottom:429.915000px;}
.y6f{bottom:430.815000px;}
.ye1{bottom:431.895000px;}
.ya6{bottom:432.975000px;}
.yee{bottom:433.695000px;}
.y24{bottom:447.015000px;}
.y6e{bottom:448.095000px;}
.y106{bottom:449.895000px;}
.ya5{bottom:450.255000px;}
.ye0{bottom:451.695000px;}
.y6d{bottom:453.315000px;}
.yed{bottom:453.495000px;}
.y6c{bottom:466.635000px;}
.y22{bottom:466.815000px;}
.ya4{bottom:467.535000px;}
.y105{bottom:469.695000px;}
.ydf{bottom:471.495000px;}
.y23{bottom:472.035000px;}
.ya3{bottom:472.755000px;}
.yec{bottom:473.295000px;}
.ya2{bottom:484.815000px;}
.y21{bottom:486.615000px;}
.y104{bottom:489.495000px;}
.yde{bottom:491.295000px;}
.yeb{bottom:493.095000px;}
.ya1{bottom:501.915000px;}
.y6a{bottom:502.095000px;}
.y1f{bottom:506.595000px;}
.ya0{bottom:507.135000px;}
.y6b{bottom:507.315000px;}
.y103{bottom:509.295000px;}
.y20{bottom:511.815000px;}
.yea{bottom:513.075000px;}
.ydd{bottom:520.095000px;}
.y9f{bottom:520.455000px;}
.y69{bottom:522.075000px;}
.y1e{bottom:526.395000px;}
.y102{bottom:529.095000px;}
.ydc{bottom:540.075000px;}
.y68{bottom:541.875000px;}
.y1d{bottom:546.195000px;}
.y101{bottom:549.075000px;}
.y9e{bottom:550.875000px;}
.ydb{bottom:559.875000px;}
.y66{bottom:561.675000px;}
.y1c{bottom:566.025000px;}
.y67{bottom:566.925000px;}
.y100{bottom:568.905000px;}
.y9d{bottom:570.705000px;}
.y65{bottom:581.505000px;}
.y1b{bottom:588.165000px;}
.yda{bottom:588.705000px;}
.y9c{bottom:590.505000px;}
.y64{bottom:601.305000px;}
.y1a{bottom:607.965000px;}
.yd9{bottom:608.505000px;}
.y9a{bottom:619.305000px;}
.y62{bottom:621.285000px;}
.y9b{bottom:624.525000px;}
.y63{bottom:626.505000px;}
.y19{bottom:627.765000px;}
.yd8{bottom:628.305000px;}
.y98{bottom:639.285000px;}
.y61{bottom:641.085000px;}
.y99{bottom:644.505000px;}
.y18{bottom:647.745000px;}
.yd7{bottom:648.285000px;}
.y97{bottom:659.085000px;}
.y60{bottom:660.885000px;}
.y17{bottom:667.545000px;}
.yd5{bottom:668.085000px;}
.ye9{bottom:669.885000px;}
.yd6{bottom:673.305000px;}
.y96{bottom:678.885000px;}
.y16{bottom:687.345000px;}
.yd3{bottom:687.885000px;}
.y5e{bottom:689.685000px;}
.yd4{bottom:693.105000px;}
.y5f{bottom:694.905000px;}
.y95{bottom:698.685000px;}
.y15{bottom:707.145000px;}
.yd2{bottom:707.685000px;}
.y5d{bottom:709.485000px;}
.y94{bottom:718.485000px;}
.y14{bottom:726.945000px;}
.yd0{bottom:727.485000px;}
.y5b{bottom:729.465000px;}
.yd1{bottom:732.705000px;}
.y5c{bottom:734.685000px;}
.y92{bottom:738.465000px;}
.y93{bottom:743.685000px;}
.y13{bottom:746.925000px;}
.ycf{bottom:747.465000px;}
.y5a{bottom:749.265000px;}
.y91{bottom:758.265000px;}
.y12{bottom:766.725000px;}
.yce{bottom:767.265000px;}
.y58{bottom:769.065000px;}
.y59{bottom:774.285000px;}
.y90{bottom:778.065000px;}
.y11{bottom:786.525000px;}
.ycd{bottom:787.065000px;}
.y56{bottom:788.865000px;}
.y57{bottom:794.085000px;}
.y8f{bottom:797.865000px;}
.y10{bottom:806.325000px;}
.ycb{bottom:806.865000px;}
.y55{bottom:808.665000px;}
.ycc{bottom:812.085000px;}
.y8e{bottom:817.665000px;}
.yf{bottom:826.125000px;}
.yca{bottom:826.665000px;}
.y53{bottom:828.645000px;}
.y54{bottom:833.865000px;}
.y8c{bottom:837.645000px;}
.y8d{bottom:842.865000px;}
.ye{bottom:846.105000px;}
.yc9{bottom:846.645000px;}
.y52{bottom:848.490000px;}
.y8b{bottom:857.490000px;}
.yd{bottom:865.950000px;}
.yc7{bottom:866.490000px;}
.y50{bottom:868.290000px;}
.yc8{bottom:871.710000px;}
.y51{bottom:873.510000px;}
.y8a{bottom:877.290000px;}
.yc{bottom:885.750000px;}
.yc5{bottom:886.290000px;}
.y4f{bottom:888.090000px;}
.yc6{bottom:891.510000px;}
.y88{bottom:897.090000px;}
.y89{bottom:902.310000px;}
.yc4{bottom:906.090000px;}
.yb{bottom:907.890000px;}
.y4d{bottom:916.890000px;}
.y4e{bottom:922.110000px;}
.yc3{bottom:925.890000px;}
.ya{bottom:927.690000px;}
.y4c{bottom:936.870000px;}
.y87{bottom:942.090000px;}
.yc2{bottom:945.870000px;}
.y9{bottom:948.030000px;}
.y4a{bottom:956.670000px;}
.y4b{bottom:961.890000px;}
.yc1{bottom:965.670000px;}
.y48{bottom:976.470000px;}
.y49{bottom:981.690000px;}
.yc0{bottom:985.470000px;}
.y8{bottom:990.870000px;}
.y46{bottom:996.270000px;}
.y47{bottom:1001.490000px;}
.ybf{bottom:1005.270000px;}
.y45{bottom:1016.070000px;}
.y7{bottom:1022.730000px;}
.ybe{bottom:1025.070000px;}
.y44{bottom:1036.050000px;}
.ybd{bottom:1045.050000px;}
.y43{bottom:1055.850000px;}
.y5{bottom:1061.070000px;}
.ybc{bottom:1064.850000px;}
.y86{bottom:1075.650000px;}
.y42{bottom:1084.650000px;}
.y4{bottom:1091.850000px;}
.y41{bottom:1104.450000px;}
.y85{bottom:1109.670000px;}
.y3{bottom:1122.810000px;}
.y40{bottom:1124.250000px;}
.y3f{bottom:1144.260000px;}
.y2{bottom:1153.620000px;}
.y3e{bottom:1164.060000px;}
.y1{bottom:1184.400000px;}
.y3d{bottom:1193.400000px;}
.h7{height:38.158594px;}
.hb{height:38.671172px;}
.hd{height:53.573906px;}
.ha{height:58.621992px;}
.h5{height:58.651172px;}
.hc{height:59.439023px;}
.h6{height:60.226875px;}
.he{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.010937px;}
.h8{height:65.884219px;}
.h2{height:66.757500px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.xc{left:58.859987px;}
.x26{left:63.719987px;}
.x3f{left:69.119987px;}
.x4c{left:80.999987px;}
.x1c{left:90.755973px;}
.x1d{left:100.475987px;}
.x4d{left:108.035987px;}
.x20{left:113.975973px;}
.x21{left:123.695987px;}
.x33{left:125.675973px;}
.x11{left:126.935973px;}
.x1e{left:129.455973px;}
.x12{left:131.795987px;}
.x34{left:135.395987px;}
.x1f{left:139.175987px;}
.x3b{left:172.649973px;}
.x27{left:178.949973px;}
.x3c{left:182.369987px;}
.x37{left:187.409973px;}
.x28{left:188.669987px;}
.xd{left:193.709973px;}
.x38{left:197.129987px;}
.xe{left:198.569987px;}
.x3{left:229.529973px;}
.x4{left:234.389987px;}
.xb{left:270.029987px;}
.x40{left:280.334987px;}
.x39{left:287.714973px;}
.x3a{left:297.434987px;}
.xf{left:299.054973px;}
.x10{left:303.914987px;}
.x1b{left:308.774987px;}
.x2{left:315.254987px;}
.x44{left:332.714973px;}
.x7{left:339.554973px;}
.x45{left:342.434987px;}
.x8{left:344.414987px;}
.x15{left:357.914973px;}
.x16{left:362.774987px;}
.x35{left:379.154973px;}
.x36{left:388.874987px;}
.x4a{left:400.394973px;}
.x4b{left:410.114987px;}
.x17{left:416.054973px;}
.x18{left:425.774987px;}
.x22{left:437.654973px;}
.x23{left:447.374987px;}
.x43{left:457.094973px;}
.x19{left:467.534973px;}
.x1a{left:477.284987px;}
.x3d{left:558.464973px;}
.x24{left:560.624973px;}
.x3e{left:568.184987px;}
.x25{left:570.344987px;}
.x46{left:579.884973px;}
.x47{left:589.604987px;}
.x41{left:611.924973px;}
.x42{left:621.644987px;}
.x2d{left:625.244973px;}
.x2e{left:634.964987px;}
.x48{left:645.944973px;}
.x13{left:648.104973px;}
.x14{left:652.964987px;}
.x49{left:655.664987px;}
.x29{left:668.309973px;}
.x2b{left:676.949973px;}
.x2a{left:678.029987px;}
.x2f{left:680.549973px;}
.x2c{left:686.669987px;}
.x30{left:690.269987px;}
.x5{left:720.869973px;}
.x9{left:723.389973px;}
.x6{left:725.729987px;}
.xa{left:728.249987px;}
.x31{left:757.769973px;}
.x32{left:767.489987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.730667pt;}
.ls12{letter-spacing:-0.367467pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.242133pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls1c{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016640pt;}
.lsf{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.454933pt;}
.ls15{letter-spacing:0.544000pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls3{letter-spacing:1.182720pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls1{letter-spacing:1.920000pt;}
.ls18{letter-spacing:3.520000pt;}
.ls1f{letter-spacing:37.072640pt;}
.ls13{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.240000pt;}
.wsd{word-spacing:-13.872000pt;}
.ws8{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws2{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.912533pt;}
.ws0{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-2327.221333pt;}
._4{margin-left:-1214.364160pt;}
._9{margin-left:-898.782720pt;}
._5{margin-left:-834.176000pt;}
._8{margin-left:-778.378667pt;}
._b{margin-left:-512.279040pt;}
._6{margin-left:-475.632640pt;}
._a{margin-left:-162.296320pt;}
._7{margin-left:-29.440000pt;}
._c{margin-left:-7.595520pt;}
._d{margin-left:-4.963413pt;}
._e{margin-left:-3.238400pt;}
._f{margin-left:-1.893973pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._1{width:2.746667pt;}
._10{width:4.014507pt;}
._11{width:5.017173pt;}
._17{width:6.054400pt;}
._14{width:7.118080pt;}
._15{width:8.062933pt;}
._13{width:9.002027pt;}
._12{width:10.160640pt;}
._16{width:11.059840pt;}
._18{width:12.058240pt;}
._19{width:14.183040pt;}
._1b{width:15.150933pt;}
._27{width:16.772480pt;}
._23{width:19.265920pt;}
._24{width:20.874453pt;}
._22{width:23.978240pt;}
._20{width:25.109120pt;}
._21{width:26.294400pt;}
._1f{width:27.677013pt;}
._1e{width:28.624427pt;}
._25{width:47.047680pt;}
._26{width:48.173440pt;}
._1c{width:55.244800pt;}
._1d{width:56.571093pt;}
._28{width:81.786453pt;}
._29{width:83.495253pt;}
._1a{width:84.603520pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.632000pt;}
.y3c{bottom:76.352000pt;}
.yff{bottom:77.632000pt;}
.y84{bottom:80.992000pt;}
.y3b{bottom:91.712000pt;}
.yfe{bottom:95.392000pt;}
.ybb{bottom:96.352000pt;}
.y116{bottom:100.032000pt;}
.y3a{bottom:106.912000pt;}
.y39{bottom:111.552000pt;}
.yfd{bottom:112.992000pt;}
.y115{bottom:117.632000pt;}
.y38{bottom:122.272000pt;}
.y83{bottom:126.912000pt;}
.yfc{bottom:130.592000pt;}
.y114{bottom:135.386667pt;}
.y37{bottom:137.626667pt;}
.yba{bottom:138.266667pt;}
.y36{bottom:142.266667pt;}
.yb9{bottom:142.906667pt;}
.yfb{bottom:148.186667pt;}
.y35{bottom:152.986667pt;}
.yb8{bottom:153.946667pt;}
.y82{bottom:157.626667pt;}
.yfa{bottom:165.786667pt;}
.y34{bottom:168.346667pt;}
.yb7{bottom:169.306667pt;}
.y113{bottom:170.586667pt;}
.y33{bottom:172.986667pt;}
.yf9{bottom:183.546667pt;}
.y32{bottom:183.706667pt;}
.yb6{bottom:185.146667pt;}
.y112{bottom:188.186667pt;}
.y81{bottom:188.346667pt;}
.yb5{bottom:189.786667pt;}
.y31{bottom:198.906667pt;}
.yb4{bottom:200.826667pt;}
.yf8{bottom:201.146667pt;}
.y30{bottom:203.546667pt;}
.y111{bottom:205.786667pt;}
.y80{bottom:214.266667pt;}
.y2f{bottom:215.386667pt;}
.yb3{bottom:216.186667pt;}
.yf7{bottom:218.746667pt;}
.y7f{bottom:218.906667pt;}
.y110{bottom:223.546667pt;}
.y7e{bottom:229.626667pt;}
.yb2{bottom:231.546667pt;}
.y7d{bottom:234.266667pt;}
.yb1{bottom:236.186667pt;}
.yf6{bottom:236.346667pt;}
.y2e{bottom:238.586667pt;}
.y10f{bottom:241.146667pt;}
.y7c{bottom:244.986667pt;}
.yb0{bottom:246.906667pt;}
.ye8{bottom:249.626667pt;}
.yf5{bottom:253.986667pt;}
.y2d{bottom:256.386667pt;}
.y10e{bottom:258.786667pt;}
.y7b{bottom:260.386667pt;}
.yaf{bottom:262.146667pt;}
.yf4{bottom:271.746667pt;}
.y2c{bottom:273.986667pt;}
.y7a{bottom:275.586667pt;}
.y10d{bottom:276.386667pt;}
.yae{bottom:277.506667pt;}
.yf3{bottom:289.346667pt;}
.y79{bottom:290.946667pt;}
.y2b{bottom:291.586667pt;}
.yad{bottom:292.866667pt;}
.y10c{bottom:293.986667pt;}
.ye7{bottom:295.586667pt;}
.yac{bottom:297.506667pt;}
.y78{bottom:306.306667pt;}
.yf2{bottom:306.946667pt;}
.ye6{bottom:307.426667pt;}
.yab{bottom:308.226667pt;}
.y2a{bottom:309.186667pt;}
.y77{bottom:310.946667pt;}
.y10b{bottom:311.746667pt;}
.y76{bottom:321.666667pt;}
.yaa{bottom:323.586667pt;}
.y29{bottom:326.786667pt;}
.y10a{bottom:329.346667pt;}
.ye4{bottom:330.946667pt;}
.yf1{bottom:332.546667pt;}
.ye5{bottom:335.586667pt;}
.y75{bottom:337.026667pt;}
.y74{bottom:341.666667pt;}
.ya9{bottom:343.586667pt;}
.y28{bottom:344.546667pt;}
.y109{bottom:346.946667pt;}
.ye3{bottom:348.546667pt;}
.yf0{bottom:350.146667pt;}
.y73{bottom:352.386667pt;}
.ya8{bottom:354.146667pt;}
.y72{bottom:357.026667pt;}
.y26{bottom:362.146667pt;}
.y108{bottom:364.546667pt;}
.ye2{bottom:366.146667pt;}
.y27{bottom:366.786667pt;}
.y71{bottom:367.586667pt;}
.yef{bottom:367.906667pt;}
.ya7{bottom:369.506667pt;}
.y70{bottom:372.226667pt;}
.y25{bottom:379.746667pt;}
.y107{bottom:382.146667pt;}
.y6f{bottom:382.946667pt;}
.ye1{bottom:383.906667pt;}
.ya6{bottom:384.866667pt;}
.yee{bottom:385.506667pt;}
.y24{bottom:397.346667pt;}
.y6e{bottom:398.306667pt;}
.y106{bottom:399.906667pt;}
.ya5{bottom:400.226667pt;}
.ye0{bottom:401.506667pt;}
.y6d{bottom:402.946667pt;}
.yed{bottom:403.106667pt;}
.y6c{bottom:414.786667pt;}
.y22{bottom:414.946667pt;}
.ya4{bottom:415.586667pt;}
.y105{bottom:417.506667pt;}
.ydf{bottom:419.106667pt;}
.y23{bottom:419.586667pt;}
.ya3{bottom:420.226667pt;}
.yec{bottom:420.706667pt;}
.ya2{bottom:430.946667pt;}
.y21{bottom:432.546667pt;}
.y104{bottom:435.106667pt;}
.yde{bottom:436.706667pt;}
.yeb{bottom:438.306667pt;}
.ya1{bottom:446.146667pt;}
.y6a{bottom:446.306667pt;}
.y1f{bottom:450.306667pt;}
.ya0{bottom:450.786667pt;}
.y6b{bottom:450.946667pt;}
.y103{bottom:452.706667pt;}
.y20{bottom:454.946667pt;}
.yea{bottom:456.066667pt;}
.ydd{bottom:462.306667pt;}
.y9f{bottom:462.626667pt;}
.y69{bottom:464.066667pt;}
.y1e{bottom:467.906667pt;}
.y102{bottom:470.306667pt;}
.ydc{bottom:480.066667pt;}
.y68{bottom:481.666667pt;}
.y1d{bottom:485.506667pt;}
.y101{bottom:488.066667pt;}
.y9e{bottom:489.666667pt;}
.ydb{bottom:497.666667pt;}
.y66{bottom:499.266667pt;}
.y1c{bottom:503.133333pt;}
.y67{bottom:503.933333pt;}
.y100{bottom:505.693333pt;}
.y9d{bottom:507.293333pt;}
.y65{bottom:516.893333pt;}
.y1b{bottom:522.813333pt;}
.yda{bottom:523.293333pt;}
.y9c{bottom:524.893333pt;}
.y64{bottom:534.493333pt;}
.y1a{bottom:540.413333pt;}
.yd9{bottom:540.893333pt;}
.y9a{bottom:550.493333pt;}
.y62{bottom:552.253333pt;}
.y9b{bottom:555.133333pt;}
.y63{bottom:556.893333pt;}
.y19{bottom:558.013333pt;}
.yd8{bottom:558.493333pt;}
.y98{bottom:568.253333pt;}
.y61{bottom:569.853333pt;}
.y99{bottom:572.893333pt;}
.y18{bottom:575.773333pt;}
.yd7{bottom:576.253333pt;}
.y97{bottom:585.853333pt;}
.y60{bottom:587.453333pt;}
.y17{bottom:593.373333pt;}
.yd5{bottom:593.853333pt;}
.ye9{bottom:595.453333pt;}
.yd6{bottom:598.493333pt;}
.y96{bottom:603.453333pt;}
.y16{bottom:610.973333pt;}
.yd3{bottom:611.453333pt;}
.y5e{bottom:613.053333pt;}
.yd4{bottom:616.093333pt;}
.y5f{bottom:617.693333pt;}
.y95{bottom:621.053333pt;}
.y15{bottom:628.573333pt;}
.yd2{bottom:629.053333pt;}
.y5d{bottom:630.653333pt;}
.y94{bottom:638.653333pt;}
.y14{bottom:646.173333pt;}
.yd0{bottom:646.653333pt;}
.y5b{bottom:648.413333pt;}
.yd1{bottom:651.293333pt;}
.y5c{bottom:653.053333pt;}
.y92{bottom:656.413333pt;}
.y93{bottom:661.053333pt;}
.y13{bottom:663.933333pt;}
.ycf{bottom:664.413333pt;}
.y5a{bottom:666.013333pt;}
.y91{bottom:674.013333pt;}
.y12{bottom:681.533333pt;}
.yce{bottom:682.013333pt;}
.y58{bottom:683.613333pt;}
.y59{bottom:688.253333pt;}
.y90{bottom:691.613333pt;}
.y11{bottom:699.133333pt;}
.ycd{bottom:699.613333pt;}
.y56{bottom:701.213333pt;}
.y57{bottom:705.853333pt;}
.y8f{bottom:709.213333pt;}
.y10{bottom:716.733333pt;}
.ycb{bottom:717.213333pt;}
.y55{bottom:718.813333pt;}
.ycc{bottom:721.853333pt;}
.y8e{bottom:726.813333pt;}
.yf{bottom:734.333333pt;}
.yca{bottom:734.813333pt;}
.y53{bottom:736.573333pt;}
.y54{bottom:741.213333pt;}
.y8c{bottom:744.573333pt;}
.y8d{bottom:749.213333pt;}
.ye{bottom:752.093333pt;}
.yc9{bottom:752.573333pt;}
.y52{bottom:754.213333pt;}
.y8b{bottom:762.213333pt;}
.yd{bottom:769.733333pt;}
.yc7{bottom:770.213333pt;}
.y50{bottom:771.813333pt;}
.yc8{bottom:774.853333pt;}
.y51{bottom:776.453333pt;}
.y8a{bottom:779.813333pt;}
.yc{bottom:787.333333pt;}
.yc5{bottom:787.813333pt;}
.y4f{bottom:789.413333pt;}
.yc6{bottom:792.453333pt;}
.y88{bottom:797.413333pt;}
.y89{bottom:802.053333pt;}
.yc4{bottom:805.413333pt;}
.yb{bottom:807.013333pt;}
.y4d{bottom:815.013333pt;}
.y4e{bottom:819.653333pt;}
.yc3{bottom:823.013333pt;}
.ya{bottom:824.613333pt;}
.y4c{bottom:832.773333pt;}
.y87{bottom:837.413333pt;}
.yc2{bottom:840.773333pt;}
.y9{bottom:842.693333pt;}
.y4a{bottom:850.373333pt;}
.y4b{bottom:855.013333pt;}
.yc1{bottom:858.373333pt;}
.y48{bottom:867.973333pt;}
.y49{bottom:872.613333pt;}
.yc0{bottom:875.973333pt;}
.y8{bottom:880.773333pt;}
.y46{bottom:885.573333pt;}
.y47{bottom:890.213333pt;}
.ybf{bottom:893.573333pt;}
.y45{bottom:903.173333pt;}
.y7{bottom:909.093333pt;}
.ybe{bottom:911.173333pt;}
.y44{bottom:920.933333pt;}
.ybd{bottom:928.933333pt;}
.y43{bottom:938.533333pt;}
.y5{bottom:943.173333pt;}
.ybc{bottom:946.533333pt;}
.y86{bottom:956.133333pt;}
.y42{bottom:964.133333pt;}
.y4{bottom:970.533333pt;}
.y41{bottom:981.733333pt;}
.y85{bottom:986.373333pt;}
.y3{bottom:998.053333pt;}
.y40{bottom:999.333333pt;}
.y3f{bottom:1017.120000pt;}
.y2{bottom:1025.440000pt;}
.y3e{bottom:1034.720000pt;}
.y1{bottom:1052.800000pt;}
.y3d{bottom:1060.800000pt;}
.h7{height:33.918750pt;}
.hb{height:34.374375pt;}
.hd{height:47.621250pt;}
.ha{height:52.108438pt;}
.h5{height:52.134375pt;}
.hc{height:52.834688pt;}
.h6{height:53.535000pt;}
.he{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:57.787500pt;}
.h8{height:58.563750pt;}
.h2{height:59.340000pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.xc{left:52.319988pt;}
.x26{left:56.639988pt;}
.x3f{left:61.439988pt;}
.x4c{left:71.999988pt;}
.x1c{left:80.671976pt;}
.x1d{left:89.311988pt;}
.x4d{left:96.031988pt;}
.x20{left:101.311976pt;}
.x21{left:109.951988pt;}
.x33{left:111.711976pt;}
.x11{left:112.831976pt;}
.x1e{left:115.071976pt;}
.x12{left:117.151988pt;}
.x34{left:120.351988pt;}
.x1f{left:123.711988pt;}
.x3b{left:153.466643pt;}
.x27{left:159.066643pt;}
.x3c{left:162.106655pt;}
.x37{left:166.586643pt;}
.x28{left:167.706655pt;}
.xd{left:172.186643pt;}
.x38{left:175.226655pt;}
.xe{left:176.506655pt;}
.x3{left:204.026643pt;}
.x4{left:208.346655pt;}
.xb{left:240.026655pt;}
.x40{left:249.186655pt;}
.x39{left:255.746643pt;}
.x3a{left:264.386655pt;}
.xf{left:265.826643pt;}
.x10{left:270.146655pt;}
.x1b{left:274.466655pt;}
.x2{left:280.226655pt;}
.x44{left:295.746643pt;}
.x7{left:301.826643pt;}
.x45{left:304.386655pt;}
.x8{left:306.146655pt;}
.x15{left:318.146643pt;}
.x16{left:322.466655pt;}
.x35{left:337.026643pt;}
.x36{left:345.666655pt;}
.x4a{left:355.906643pt;}
.x4b{left:364.546655pt;}
.x17{left:369.826643pt;}
.x18{left:378.466655pt;}
.x22{left:389.026643pt;}
.x23{left:397.666655pt;}
.x43{left:406.306643pt;}
.x19{left:415.586643pt;}
.x1a{left:424.253322pt;}
.x3d{left:496.413310pt;}
.x24{left:498.333310pt;}
.x3e{left:505.053322pt;}
.x25{left:506.973322pt;}
.x46{left:515.453310pt;}
.x47{left:524.093322pt;}
.x41{left:543.933310pt;}
.x42{left:552.573322pt;}
.x2d{left:555.773310pt;}
.x2e{left:564.413322pt;}
.x48{left:574.173310pt;}
.x13{left:576.093310pt;}
.x14{left:580.413322pt;}
.x49{left:582.813322pt;}
.x29{left:594.053310pt;}
.x2b{left:601.733310pt;}
.x2a{left:602.693322pt;}
.x2f{left:604.933310pt;}
.x2c{left:610.373322pt;}
.x30{left:613.573322pt;}
.x5{left:640.773310pt;}
.x9{left:643.013310pt;}
.x6{left:645.093322pt;}
.xa{left:647.333322pt;}
.x31{left:673.573310pt;}
.x32{left:682.213322pt;}
}




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