
    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_dadea5dc8de1593e425c3d7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_e7ec907412795a1b80b50fa8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_8b4f8a2c5aeb2b89bf00a462.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_e187f03620664dab816108b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.751000;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_369516f1a5f32171f248e5e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976000;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_48a52c5edb5bccc9bba1e3ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761719;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_faba1b02340f0aeb361f06f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903320;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_67be5c41151e910591e561b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903320;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_2cc2d18ff51dcd83d06aebf5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2e1b22276e5007bca186d95f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:180.000000px;}
.ls4{letter-spacing:-60.000000px;}
.ls1{letter-spacing:-46.500000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.350000px;}
.ls0{letter-spacing:1.890000px;}
.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;}
}
.ws7{word-spacing:-79.167600px;}
.ws8{word-spacing:-30.375000px;}
.ws5{word-spacing:-17.280000px;}
.ws0{word-spacing:-14.400000px;}
.ws2{word-spacing:-1.008000px;}
.ws3{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.300000px;}
.ws6{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:46.500000px;}
.wsb{word-spacing:60.000000px;}
._9{margin-left:-2404.430304px;}
._1{margin-left:-45.570000px;}
._0{margin-left:-35.340000px;}
._7{margin-left:-7.902000px;}
._5{margin-left:-6.174000px;}
._4{margin-left:-4.662000px;}
._6{margin-left:-3.305400px;}
._3{margin-left:-1.764000px;}
._8{width:1.392000px;}
._b{width:3.280800px;}
._a{width:4.482000px;}
._2{width:46.500000px;}
.fc4{color:rgb(48,88,159);}
.fc2{color:rgb(101,98,99);}
.fc3{color:rgb(16,15,13);}
.fc1{color:rgb(19,18,16);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:37.968600px;}
.fsb{font-size:50.625000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.445200px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:72.773400px;}
.fsa{font-size:88.593600px;}
.fs2{font-size:90.000000px;}
.fs9{font-size:113.906400px;}
.fs1{font-size:126.000000px;}
.fs5{font-size:329.865000px;}
.fs0{font-size:930.000000px;}
.fsd{font-size:1200.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:1.019700px;}
.yae{bottom:1.020600px;}
.y27{bottom:54.472500px;}
.y9{bottom:55.132500px;}
.y93{bottom:55.417350px;}
.y14f{bottom:70.334700px;}
.y8{bottom:71.250000px;}
.ye5{bottom:72.584700px;}
.ya9{bottom:73.507350px;}
.yfe{bottom:75.440550px;}
.y92{bottom:77.917350px;}
.y14e{bottom:92.834700px;}
.ye4{bottom:95.084700px;}
.ya8{bottom:96.007350px;}
.yfd{bottom:97.940550px;}
.y91{bottom:100.417350px;}
.y7{bottom:107.250000px;}
.y14d{bottom:115.334700px;}
.ye3{bottom:117.584700px;}
.ya7{bottom:118.507350px;}
.yff{bottom:120.440550px;}
.y90{bottom:122.917350px;}
.y6{bottom:125.250000px;}
.y154{bottom:137.737500px;}
.y14c{bottom:137.834700px;}
.yea{bottom:140.084700px;}
.ya6{bottom:141.007350px;}
.yfc{bottom:142.940550px;}
.y5{bottom:143.250000px;}
.y8f{bottom:145.417350px;}
.y67{bottom:147.667350px;}
.y153{bottom:159.937350px;}
.y14b{bottom:160.334700px;}
.ye2{bottom:162.584700px;}
.ya5{bottom:163.507350px;}
.yfb{bottom:165.440550px;}
.y8e{bottom:167.917350px;}
.y66{bottom:170.167350px;}
.y4{bottom:178.305000px;}
.y3d{bottom:180.007350px;}
.y14a{bottom:182.834700px;}
.ye1{bottom:185.084700px;}
.ya4{bottom:186.007350px;}
.yfa{bottom:187.940550px;}
.y65{bottom:192.667350px;}
.y152{bottom:202.957350px;}
.y149{bottom:205.334700px;}
.ye0{bottom:207.584700px;}
.yaa{bottom:208.507350px;}
.yf9{bottom:210.440550px;}
.y8d{bottom:212.917350px;}
.y64{bottom:215.167350px;}
.y3c{bottom:219.007350px;}
.y148{bottom:227.834700px;}
.ydf{bottom:230.084700px;}
.ya3{bottom:231.007350px;}
.yf8{bottom:232.940550px;}
.y3b{bottom:238.507350px;}
.y147{bottom:250.334700px;}
.yde{bottom:252.584700px;}
.ya2{bottom:253.507350px;}
.yf7{bottom:255.440550px;}
.y8c{bottom:257.917350px;}
.y3a{bottom:258.007350px;}
.y63{bottom:260.167350px;}
.y146{bottom:272.834700px;}
.ydd{bottom:275.084700px;}
.ya1{bottom:276.007350px;}
.y39{bottom:277.507350px;}
.yf6{bottom:277.940550px;}
.y8b{bottom:280.417350px;}
.y62{bottom:282.667350px;}
.y145{bottom:295.334700px;}
.y38{bottom:297.007350px;}
.ydc{bottom:297.584700px;}
.ya0{bottom:298.507350px;}
.yf5{bottom:300.440550px;}
.y8a{bottom:302.917350px;}
.y61{bottom:305.167350px;}
.y144{bottom:317.834700px;}
.yeb{bottom:320.084700px;}
.y9f{bottom:321.007350px;}
.yf4{bottom:322.940550px;}
.y89{bottom:325.417350px;}
.y60{bottom:327.667350px;}
.y37{bottom:336.007350px;}
.y143{bottom:340.334700px;}
.ydb{bottom:342.584700px;}
.y9e{bottom:343.507350px;}
.yf3{bottom:345.440550px;}
.y88{bottom:347.917350px;}
.y5f{bottom:350.167350px;}
.y35{bottom:355.507350px;}
.y142{bottom:362.834700px;}
.yda{bottom:365.084700px;}
.y9d{bottom:366.007350px;}
.yf2{bottom:367.940550px;}
.y87{bottom:370.417350px;}
.y5e{bottom:372.667350px;}
.y34{bottom:375.007350px;}
.y141{bottom:385.334700px;}
.yd9{bottom:387.584700px;}
.y9c{bottom:388.507350px;}
.yf1{bottom:390.440550px;}
.y86{bottom:392.917350px;}
.y33{bottom:394.507350px;}
.y5d{bottom:395.167350px;}
.y140{bottom:407.834700px;}
.yd8{bottom:410.084700px;}
.y9b{bottom:411.007350px;}
.yf0{bottom:412.940550px;}
.y32{bottom:414.007350px;}
.y85{bottom:415.417350px;}
.y5c{bottom:417.667350px;}
.y13f{bottom:430.334700px;}
.yd7{bottom:432.584700px;}
.y31{bottom:433.507350px;}
.yef{bottom:435.440550px;}
.y84{bottom:437.917350px;}
.y5b{bottom:440.167350px;}
.y13e{bottom:452.834700px;}
.y30{bottom:453.007350px;}
.yd6{bottom:455.084700px;}
.y9a{bottom:456.007350px;}
.yee{bottom:457.940550px;}
.y83{bottom:460.417350px;}
.y5a{bottom:462.667350px;}
.y26{bottom:462.734700px;}
.y2f{bottom:472.507350px;}
.y13d{bottom:475.334700px;}
.yd5{bottom:477.584700px;}
.y99{bottom:478.507350px;}
.yed{bottom:480.440550px;}
.y82{bottom:482.917350px;}
.y25{bottom:484.334700px;}
.y59{bottom:485.167350px;}
.y36{bottom:492.007350px;}
.y13c{bottom:497.834700px;}
.yd4{bottom:500.084700px;}
.y98{bottom:501.007350px;}
.yec{bottom:502.940550px;}
.y81{bottom:505.417350px;}
.y58{bottom:507.667350px;}
.y2e{bottom:511.507350px;}
.y13b{bottom:520.334700px;}
.yd3{bottom:522.584700px;}
.y97{bottom:523.507350px;}
.y24{bottom:527.534700px;}
.y80{bottom:527.917350px;}
.y57{bottom:530.167350px;}
.y2d{bottom:531.007350px;}
.y13a{bottom:542.834700px;}
.yd2{bottom:545.084700px;}
.y96{bottom:546.007350px;}
.y11f{bottom:549.292350px;}
.y2c{bottom:550.507350px;}
.y56{bottom:552.667350px;}
.y139{bottom:565.334700px;}
.y11e{bottom:565.492350px;}
.yd1{bottom:567.584700px;}
.y95{bottom:568.507350px;}
.y2b{bottom:570.007350px;}
.y7f{bottom:572.917350px;}
.y55{bottom:575.167350px;}
.y11d{bottom:581.692350px;}
.y138{bottom:587.834700px;}
.y2a{bottom:589.507350px;}
.yd0{bottom:590.084700px;}
.y94{bottom:591.007350px;}
.y23{bottom:593.234700px;}
.y7e{bottom:595.417350px;}
.y54{bottom:597.667350px;}
.y29{bottom:609.007350px;}
.y137{bottom:610.334700px;}
.ycf{bottom:612.584700px;}
.y110{bottom:616.323862px;}
.y7d{bottom:617.917350px;}
.y53{bottom:620.167350px;}
.y28{bottom:628.507350px;}
.y10f{bottom:630.878550px;}
.y22{bottom:632.834700px;}
.ye9{bottom:635.084700px;}
.y7c{bottom:640.417350px;}
.y52{bottom:642.667350px;}
.y10e{bottom:645.433237px;}
.yb8{bottom:648.532350px;}
.y136{bottom:655.334700px;}
.yce{bottom:657.584700px;}
.y10d{bottom:659.987925px;}
.y7b{bottom:662.917350px;}
.yb7{bottom:664.732350px;}
.y51{bottom:665.167350px;}
.y10c{bottom:674.542612px;}
.y21{bottom:676.934700px;}
.y135{bottom:677.834700px;}
.ycd{bottom:680.084700px;}
.y7a{bottom:685.417350px;}
.y10b{bottom:689.097300px;}
.yb6{bottom:696.277446px;}
.y20{bottom:698.534700px;}
.y134{bottom:700.334700px;}
.ycc{bottom:702.584700px;}
.y79{bottom:707.917350px;}
.y50{bottom:710.167350px;}
.yb5{bottom:715.264162px;}
.y3{bottom:718.109550px;}
.y1f{bottom:720.134700px;}
.yb4{bottom:720.446887px;}
.y133{bottom:722.834700px;}
.ycb{bottom:725.084700px;}
.y4f{bottom:732.667350px;}
.y1e{bottom:741.734700px;}
.y132{bottom:745.334700px;}
.yca{bottom:747.584700px;}
.y78{bottom:752.917350px;}
.y4e{bottom:755.167350px;}
.y1d{bottom:763.334700px;}
.yad{bottom:766.092000px;}
.y131{bottom:767.834700px;}
.yc9{bottom:770.084700px;}
.yaf{bottom:770.328000px;}
.y77{bottom:775.417350px;}
.y4d{bottom:777.667350px;}
.y1c{bottom:784.934700px;}
.y103{bottom:786.723300px;}
.y130{bottom:790.334700px;}
.yc8{bottom:792.584700px;}
.y76{bottom:797.917350px;}
.y4c{bottom:800.167350px;}
.y1b{bottom:806.534700px;}
.y2{bottom:811.042350px;}
.y12f{bottom:812.834700px;}
.yc7{bottom:815.084700px;}
.y75{bottom:820.417350px;}
.y4b{bottom:822.667350px;}
.y1a{bottom:828.134700px;}
.y12e{bottom:835.334700px;}
.yc6{bottom:837.584700px;}
.y74{bottom:842.917350px;}
.y4a{bottom:845.167350px;}
.y19{bottom:849.734550px;}
.y12d{bottom:857.834700px;}
.yc5{bottom:860.084700px;}
.y49{bottom:867.667350px;}
.y18{bottom:871.334700px;}
.y12c{bottom:880.334700px;}
.yc4{bottom:882.584700px;}
.y73{bottom:887.917350px;}
.yb1{bottom:888.231065px;}
.y48{bottom:890.167350px;}
.y17{bottom:892.934700px;}
.y11c{bottom:902.165269px;}
.y12b{bottom:902.834700px;}
.yc3{bottom:905.084700px;}
.yb0{bottom:908.789550px;}
.y72{bottom:910.417350px;}
.y47{bottom:912.667350px;}
.y16{bottom:914.534700px;}
.y11b{bottom:916.719956px;}
.y101{bottom:920.398753px;}
.y12a{bottom:925.334700px;}
.yc2{bottom:927.584700px;}
.y11a{bottom:931.274644px;}
.y71{bottom:932.917350px;}
.y15{bottom:936.134700px;}
.y119{bottom:945.829331px;}
.y129{bottom:947.834700px;}
.yc1{bottom:950.084700px;}
.y100{bottom:952.833600px;}
.y70{bottom:955.417350px;}
.y46{bottom:957.667350px;}
.y14{bottom:957.734550px;}
.y118{bottom:960.384019px;}
.y128{bottom:970.334700px;}
.yc0{bottom:972.584700px;}
.y117{bottom:974.938706px;}
.y10a{bottom:976.834125px;}
.y6f{bottom:977.917350px;}
.y13{bottom:979.334700px;}
.y45{bottom:980.167350px;}
.y116{bottom:989.493394px;}
.y109{bottom:991.388812px;}
.y127{bottom:992.834700px;}
.ye8{bottom:995.084700px;}
.y1{bottom:997.042350px;}
.y6e{bottom:1000.417350px;}
.y12{bottom:1000.934700px;}
.y44{bottom:1002.667350px;}
.y115{bottom:1004.048081px;}
.y108{bottom:1005.943500px;}
.y126{bottom:1015.334700px;}
.ybf{bottom:1017.584700px;}
.y114{bottom:1018.602769px;}
.y107{bottom:1020.498187px;}
.y11{bottom:1022.534700px;}
.y6d{bottom:1022.917350px;}
.y43{bottom:1025.167350px;}
.y113{bottom:1033.157456px;}
.y106{bottom:1035.052875px;}
.y125{bottom:1037.834700px;}
.ybe{bottom:1040.084700px;}
.y10{bottom:1044.134700px;}
.y6c{bottom:1045.417350px;}
.y42{bottom:1047.667350px;}
.y112{bottom:1047.712144px;}
.y105{bottom:1049.607562px;}
.y124{bottom:1060.334700px;}
.y111{bottom:1062.266831px;}
.ybd{bottom:1062.584700px;}
.y104{bottom:1064.162250px;}
.yf{bottom:1065.734550px;}
.y6b{bottom:1067.917350px;}
.y41{bottom:1070.167350px;}
.y123{bottom:1082.834700px;}
.ybc{bottom:1085.084700px;}
.ye{bottom:1087.334700px;}
.y6a{bottom:1090.417350px;}
.y40{bottom:1092.667350px;}
.yb3{bottom:1094.417084px;}
.y122{bottom:1105.334700px;}
.ybb{bottom:1107.584700px;}
.yd{bottom:1108.934700px;}
.y69{bottom:1112.917350px;}
.yb2{bottom:1113.403800px;}
.y3e{bottom:1115.167350px;}
.y121{bottom:1127.834700px;}
.ye7{bottom:1130.084700px;}
.yc{bottom:1130.534700px;}
.y3f{bottom:1137.667350px;}
.y120{bottom:1150.334700px;}
.yb{bottom:1152.134700px;}
.yba{bottom:1152.584700px;}
.y68{bottom:1157.917350px;}
.yab{bottom:1158.585000px;}
.y102{bottom:1171.551750px;}
.ye6{bottom:1175.084700px;}
.y150{bottom:1187.617350px;}
.y151{bottom:1193.617350px;}
.ya{bottom:1195.334700px;}
.yb9{bottom:1197.584700px;}
.hb{height:18.984000px;}
.hd{height:18.985500px;}
.h13{height:35.546265px;}
.ha{height:44.340000px;}
.h6{height:44.580000px;}
.hf{height:46.654393px;}
.h10{height:47.034000px;}
.h17{height:48.000000px;}
.he{height:51.097729px;}
.h5{height:52.260000px;}
.h7{height:53.280000px;}
.hc{height:53.975974px;}
.h16{height:54.000000px;}
.h12{height:62.205858px;}
.h8{height:62.712000px;}
.h4{height:64.800000px;}
.h15{height:67.500000px;}
.h11{height:79.979201px;}
.h3{height:90.720000px;}
.h9{height:287.312415px;}
.h2{height:688.200000px;}
.h14{height:900.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:239.496000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:21.686700px;}
.xb{left:22.695450px;}
.x1f{left:28.913400px;}
.x5{left:39.713400px;}
.x11{left:51.450341px;}
.x4{left:52.545000px;}
.x3{left:54.220200px;}
.x1{left:55.848000px;}
.x2{left:66.893550px;}
.x16{left:96.199650px;}
.x1a{left:128.250000px;}
.x8{left:129.863100px;}
.x12{left:131.201193px;}
.xe{left:204.639750px;}
.x9{left:315.798000px;}
.x17{left:366.610650px;}
.x14{left:374.170950px;}
.xf{left:379.091623px;}
.x13{left:389.050350px;}
.xd{left:397.332750px;}
.x1e{left:406.553400px;}
.x7{left:455.456700px;}
.x1b{left:529.706700px;}
.x10{left:536.649803px;}
.xc{left:551.479500px;}
.x15{left:620.837681px;}
.x1d{left:667.913400px;}
.x18{left:679.232681px;}
.x1c{left:854.168700px;}
.x19{left:855.713700px;}
.x6{left:857.648550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:160.000000pt;}
.ls4{letter-spacing:-53.333333pt;}
.ls1{letter-spacing:-41.333333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.200000pt;}
.ls0{letter-spacing:1.680000pt;}
.ws7{word-spacing:-70.371200pt;}
.ws8{word-spacing:-27.000000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws0{word-spacing:-12.800000pt;}
.ws2{word-spacing:-0.896000pt;}
.ws3{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.266667pt;}
.ws6{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:41.333333pt;}
.wsb{word-spacing:53.333333pt;}
._9{margin-left:-2137.271381pt;}
._1{margin-left:-40.506667pt;}
._0{margin-left:-31.413333pt;}
._7{margin-left:-7.024000pt;}
._5{margin-left:-5.488000pt;}
._4{margin-left:-4.144000pt;}
._6{margin-left:-2.938133pt;}
._3{margin-left:-1.568000pt;}
._8{width:1.237333pt;}
._b{width:2.916267pt;}
._a{width:3.984000pt;}
._2{width:41.333333pt;}
.fsc{font-size:33.749867pt;}
.fsb{font-size:45.000000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:59.062400pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:64.687467pt;}
.fsa{font-size:78.749867pt;}
.fs2{font-size:80.000000pt;}
.fs9{font-size:101.250133pt;}
.fs1{font-size:112.000000pt;}
.fs5{font-size:293.213333pt;}
.fs0{font-size:826.666667pt;}
.fsd{font-size:1066.666667pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:0.906400pt;}
.yae{bottom:0.907200pt;}
.y27{bottom:48.420000pt;}
.y9{bottom:49.006667pt;}
.y93{bottom:49.259867pt;}
.y14f{bottom:62.519733pt;}
.y8{bottom:63.333333pt;}
.ye5{bottom:64.519733pt;}
.ya9{bottom:65.339867pt;}
.yfe{bottom:67.058267pt;}
.y92{bottom:69.259867pt;}
.y14e{bottom:82.519733pt;}
.ye4{bottom:84.519733pt;}
.ya8{bottom:85.339867pt;}
.yfd{bottom:87.058267pt;}
.y91{bottom:89.259867pt;}
.y7{bottom:95.333333pt;}
.y14d{bottom:102.519733pt;}
.ye3{bottom:104.519733pt;}
.ya7{bottom:105.339867pt;}
.yff{bottom:107.058267pt;}
.y90{bottom:109.259867pt;}
.y6{bottom:111.333333pt;}
.y154{bottom:122.433333pt;}
.y14c{bottom:122.519733pt;}
.yea{bottom:124.519733pt;}
.ya6{bottom:125.339867pt;}
.yfc{bottom:127.058267pt;}
.y5{bottom:127.333333pt;}
.y8f{bottom:129.259867pt;}
.y67{bottom:131.259867pt;}
.y153{bottom:142.166533pt;}
.y14b{bottom:142.519733pt;}
.ye2{bottom:144.519733pt;}
.ya5{bottom:145.339867pt;}
.yfb{bottom:147.058267pt;}
.y8e{bottom:149.259867pt;}
.y66{bottom:151.259867pt;}
.y4{bottom:158.493333pt;}
.y3d{bottom:160.006533pt;}
.y14a{bottom:162.519733pt;}
.ye1{bottom:164.519733pt;}
.ya4{bottom:165.339867pt;}
.yfa{bottom:167.058267pt;}
.y65{bottom:171.259867pt;}
.y152{bottom:180.406533pt;}
.y149{bottom:182.519733pt;}
.ye0{bottom:184.519733pt;}
.yaa{bottom:185.339867pt;}
.yf9{bottom:187.058267pt;}
.y8d{bottom:189.259867pt;}
.y64{bottom:191.259867pt;}
.y3c{bottom:194.673200pt;}
.y148{bottom:202.519733pt;}
.ydf{bottom:204.519733pt;}
.ya3{bottom:205.339867pt;}
.yf8{bottom:207.058267pt;}
.y3b{bottom:212.006533pt;}
.y147{bottom:222.519733pt;}
.yde{bottom:224.519733pt;}
.ya2{bottom:225.339867pt;}
.yf7{bottom:227.058267pt;}
.y8c{bottom:229.259867pt;}
.y3a{bottom:229.339867pt;}
.y63{bottom:231.259867pt;}
.y146{bottom:242.519733pt;}
.ydd{bottom:244.519733pt;}
.ya1{bottom:245.339867pt;}
.y39{bottom:246.673200pt;}
.yf6{bottom:247.058267pt;}
.y8b{bottom:249.259867pt;}
.y62{bottom:251.259867pt;}
.y145{bottom:262.519733pt;}
.y38{bottom:264.006533pt;}
.ydc{bottom:264.519733pt;}
.ya0{bottom:265.339867pt;}
.yf5{bottom:267.058267pt;}
.y8a{bottom:269.259867pt;}
.y61{bottom:271.259867pt;}
.y144{bottom:282.519733pt;}
.yeb{bottom:284.519733pt;}
.y9f{bottom:285.339867pt;}
.yf4{bottom:287.058267pt;}
.y89{bottom:289.259867pt;}
.y60{bottom:291.259867pt;}
.y37{bottom:298.673200pt;}
.y143{bottom:302.519733pt;}
.ydb{bottom:304.519733pt;}
.y9e{bottom:305.339867pt;}
.yf3{bottom:307.058267pt;}
.y88{bottom:309.259867pt;}
.y5f{bottom:311.259867pt;}
.y35{bottom:316.006533pt;}
.y142{bottom:322.519733pt;}
.yda{bottom:324.519733pt;}
.y9d{bottom:325.339867pt;}
.yf2{bottom:327.058267pt;}
.y87{bottom:329.259867pt;}
.y5e{bottom:331.259867pt;}
.y34{bottom:333.339867pt;}
.y141{bottom:342.519733pt;}
.yd9{bottom:344.519733pt;}
.y9c{bottom:345.339867pt;}
.yf1{bottom:347.058267pt;}
.y86{bottom:349.259867pt;}
.y33{bottom:350.673200pt;}
.y5d{bottom:351.259867pt;}
.y140{bottom:362.519733pt;}
.yd8{bottom:364.519733pt;}
.y9b{bottom:365.339867pt;}
.yf0{bottom:367.058267pt;}
.y32{bottom:368.006533pt;}
.y85{bottom:369.259867pt;}
.y5c{bottom:371.259867pt;}
.y13f{bottom:382.519733pt;}
.yd7{bottom:384.519733pt;}
.y31{bottom:385.339867pt;}
.yef{bottom:387.058267pt;}
.y84{bottom:389.259867pt;}
.y5b{bottom:391.259867pt;}
.y13e{bottom:402.519733pt;}
.y30{bottom:402.673200pt;}
.yd6{bottom:404.519733pt;}
.y9a{bottom:405.339867pt;}
.yee{bottom:407.058267pt;}
.y83{bottom:409.259867pt;}
.y5a{bottom:411.259867pt;}
.y26{bottom:411.319733pt;}
.y2f{bottom:420.006533pt;}
.y13d{bottom:422.519733pt;}
.yd5{bottom:424.519733pt;}
.y99{bottom:425.339867pt;}
.yed{bottom:427.058267pt;}
.y82{bottom:429.259867pt;}
.y25{bottom:430.519733pt;}
.y59{bottom:431.259867pt;}
.y36{bottom:437.339867pt;}
.y13c{bottom:442.519733pt;}
.yd4{bottom:444.519733pt;}
.y98{bottom:445.339867pt;}
.yec{bottom:447.058267pt;}
.y81{bottom:449.259867pt;}
.y58{bottom:451.259867pt;}
.y2e{bottom:454.673200pt;}
.y13b{bottom:462.519733pt;}
.yd3{bottom:464.519733pt;}
.y97{bottom:465.339867pt;}
.y24{bottom:468.919733pt;}
.y80{bottom:469.259867pt;}
.y57{bottom:471.259867pt;}
.y2d{bottom:472.006533pt;}
.y13a{bottom:482.519733pt;}
.yd2{bottom:484.519733pt;}
.y96{bottom:485.339867pt;}
.y11f{bottom:488.259867pt;}
.y2c{bottom:489.339867pt;}
.y56{bottom:491.259867pt;}
.y139{bottom:502.519733pt;}
.y11e{bottom:502.659867pt;}
.yd1{bottom:504.519733pt;}
.y95{bottom:505.339867pt;}
.y2b{bottom:506.673200pt;}
.y7f{bottom:509.259867pt;}
.y55{bottom:511.259867pt;}
.y11d{bottom:517.059867pt;}
.y138{bottom:522.519733pt;}
.y2a{bottom:524.006533pt;}
.yd0{bottom:524.519733pt;}
.y94{bottom:525.339867pt;}
.y23{bottom:527.319733pt;}
.y7e{bottom:529.259867pt;}
.y54{bottom:531.259867pt;}
.y29{bottom:541.339867pt;}
.y137{bottom:542.519733pt;}
.ycf{bottom:544.519733pt;}
.y110{bottom:547.843433pt;}
.y7d{bottom:549.259867pt;}
.y53{bottom:551.259867pt;}
.y28{bottom:558.673200pt;}
.y10f{bottom:560.780933pt;}
.y22{bottom:562.519733pt;}
.ye9{bottom:564.519733pt;}
.y7c{bottom:569.259867pt;}
.y52{bottom:571.259867pt;}
.y10e{bottom:573.718433pt;}
.yb8{bottom:576.473200pt;}
.y136{bottom:582.519733pt;}
.yce{bottom:584.519733pt;}
.y10d{bottom:586.655933pt;}
.y7b{bottom:589.259867pt;}
.yb7{bottom:590.873200pt;}
.y51{bottom:591.259867pt;}
.y10c{bottom:599.593433pt;}
.y21{bottom:601.719733pt;}
.y135{bottom:602.519733pt;}
.ycd{bottom:604.519733pt;}
.y7a{bottom:609.259867pt;}
.y10b{bottom:612.530933pt;}
.yb6{bottom:618.913285pt;}
.y20{bottom:620.919733pt;}
.y134{bottom:622.519733pt;}
.ycc{bottom:624.519733pt;}
.y79{bottom:629.259867pt;}
.y50{bottom:631.259867pt;}
.yb5{bottom:635.790366pt;}
.y3{bottom:638.319600pt;}
.y1f{bottom:640.119733pt;}
.yb4{bottom:640.397233pt;}
.y133{bottom:642.519733pt;}
.ycb{bottom:644.519733pt;}
.y4f{bottom:651.259867pt;}
.y1e{bottom:659.319733pt;}
.y132{bottom:662.519733pt;}
.yca{bottom:664.519733pt;}
.y78{bottom:669.259867pt;}
.y4e{bottom:671.259867pt;}
.y1d{bottom:678.519733pt;}
.yad{bottom:680.970667pt;}
.y131{bottom:682.519733pt;}
.yc9{bottom:684.519733pt;}
.yaf{bottom:684.736000pt;}
.y77{bottom:689.259867pt;}
.y4d{bottom:691.259867pt;}
.y1c{bottom:697.719733pt;}
.y103{bottom:699.309600pt;}
.y130{bottom:702.519733pt;}
.yc8{bottom:704.519733pt;}
.y76{bottom:709.259867pt;}
.y4c{bottom:711.259867pt;}
.y1b{bottom:716.919733pt;}
.y2{bottom:720.926533pt;}
.y12f{bottom:722.519733pt;}
.yc7{bottom:724.519733pt;}
.y75{bottom:729.259867pt;}
.y4b{bottom:731.259867pt;}
.y1a{bottom:736.119733pt;}
.y12e{bottom:742.519733pt;}
.yc6{bottom:744.519733pt;}
.y74{bottom:749.259867pt;}
.y4a{bottom:751.259867pt;}
.y19{bottom:755.319600pt;}
.y12d{bottom:762.519733pt;}
.yc5{bottom:764.519733pt;}
.y49{bottom:771.259867pt;}
.y18{bottom:774.519733pt;}
.y12c{bottom:782.519733pt;}
.yc4{bottom:784.519733pt;}
.y73{bottom:789.259867pt;}
.yb1{bottom:789.538724pt;}
.y48{bottom:791.259867pt;}
.y17{bottom:793.719733pt;}
.y11c{bottom:801.924683pt;}
.y12b{bottom:802.519733pt;}
.yc3{bottom:804.519733pt;}
.yb0{bottom:807.812933pt;}
.y72{bottom:809.259867pt;}
.y47{bottom:811.259867pt;}
.y16{bottom:812.919733pt;}
.y11b{bottom:814.862183pt;}
.y101{bottom:818.132225pt;}
.y12a{bottom:822.519733pt;}
.yc2{bottom:824.519733pt;}
.y11a{bottom:827.799683pt;}
.y71{bottom:829.259867pt;}
.y15{bottom:832.119733pt;}
.y119{bottom:840.737183pt;}
.y129{bottom:842.519733pt;}
.yc1{bottom:844.519733pt;}
.y100{bottom:846.963200pt;}
.y70{bottom:849.259867pt;}
.y46{bottom:851.259867pt;}
.y14{bottom:851.319600pt;}
.y118{bottom:853.674683pt;}
.y128{bottom:862.519733pt;}
.yc0{bottom:864.519733pt;}
.y117{bottom:866.612183pt;}
.y10a{bottom:868.297000pt;}
.y6f{bottom:869.259867pt;}
.y13{bottom:870.519733pt;}
.y45{bottom:871.259867pt;}
.y116{bottom:879.549683pt;}
.y109{bottom:881.234500pt;}
.y127{bottom:882.519733pt;}
.ye8{bottom:884.519733pt;}
.y1{bottom:886.259867pt;}
.y6e{bottom:889.259867pt;}
.y12{bottom:889.719733pt;}
.y44{bottom:891.259867pt;}
.y115{bottom:892.487183pt;}
.y108{bottom:894.172000pt;}
.y126{bottom:902.519733pt;}
.ybf{bottom:904.519733pt;}
.y114{bottom:905.424683pt;}
.y107{bottom:907.109500pt;}
.y11{bottom:908.919733pt;}
.y6d{bottom:909.259867pt;}
.y43{bottom:911.259867pt;}
.y113{bottom:918.362183pt;}
.y106{bottom:920.047000pt;}
.y125{bottom:922.519733pt;}
.ybe{bottom:924.519733pt;}
.y10{bottom:928.119733pt;}
.y6c{bottom:929.259867pt;}
.y42{bottom:931.259867pt;}
.y112{bottom:931.299683pt;}
.y105{bottom:932.984500pt;}
.y124{bottom:942.519733pt;}
.y111{bottom:944.237183pt;}
.ybd{bottom:944.519733pt;}
.y104{bottom:945.922000pt;}
.yf{bottom:947.319600pt;}
.y6b{bottom:949.259867pt;}
.y41{bottom:951.259867pt;}
.y123{bottom:962.519733pt;}
.ybc{bottom:964.519733pt;}
.ye{bottom:966.519733pt;}
.y6a{bottom:969.259867pt;}
.y40{bottom:971.259867pt;}
.yb3{bottom:972.815186pt;}
.y122{bottom:982.519733pt;}
.ybb{bottom:984.519733pt;}
.yd{bottom:985.719733pt;}
.y69{bottom:989.259867pt;}
.yb2{bottom:989.692267pt;}
.y3e{bottom:991.259867pt;}
.y121{bottom:1002.519733pt;}
.ye7{bottom:1004.519733pt;}
.yc{bottom:1004.919733pt;}
.y3f{bottom:1011.259867pt;}
.y120{bottom:1022.519733pt;}
.yb{bottom:1024.119733pt;}
.yba{bottom:1024.519733pt;}
.y68{bottom:1029.259867pt;}
.yab{bottom:1029.853333pt;}
.y102{bottom:1041.379333pt;}
.ye6{bottom:1044.519733pt;}
.y150{bottom:1055.659867pt;}
.y151{bottom:1060.993200pt;}
.ya{bottom:1062.519733pt;}
.yb9{bottom:1064.519733pt;}
.hb{height:16.874667pt;}
.hd{height:16.876000pt;}
.h13{height:31.596680pt;}
.ha{height:39.413333pt;}
.h6{height:39.626667pt;}
.hf{height:41.470572pt;}
.h10{height:41.808000pt;}
.h17{height:42.666667pt;}
.he{height:45.420204pt;}
.h5{height:46.453333pt;}
.h7{height:47.360000pt;}
.hc{height:47.978643pt;}
.h16{height:48.000000pt;}
.h12{height:55.294096pt;}
.h8{height:55.744000pt;}
.h4{height:57.600000pt;}
.h15{height:60.000000pt;}
.h11{height:71.092623pt;}
.h3{height:80.640000pt;}
.h9{height:255.388813pt;}
.h2{height:611.733333pt;}
.h14{height:800.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:212.885333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:19.277067pt;}
.xb{left:20.173733pt;}
.x1f{left:25.700800pt;}
.x5{left:35.300800pt;}
.x11{left:45.733637pt;}
.x4{left:46.706667pt;}
.x3{left:48.195733pt;}
.x1{left:49.642667pt;}
.x2{left:59.460933pt;}
.x16{left:85.510800pt;}
.x1a{left:114.000000pt;}
.x8{left:115.433867pt;}
.x12{left:116.623282pt;}
.xe{left:181.902000pt;}
.x9{left:280.709333pt;}
.x17{left:325.876133pt;}
.x14{left:332.596400pt;}
.xf{left:336.970331pt;}
.x13{left:345.822533pt;}
.xd{left:353.184667pt;}
.x1e{left:361.380800pt;}
.x7{left:404.850400pt;}
.x1b{left:470.850400pt;}
.x10{left:477.022047pt;}
.xc{left:490.204000pt;}
.x15{left:551.855716pt;}
.x1d{left:593.700800pt;}
.x18{left:603.762383pt;}
.x1c{left:759.261067pt;}
.x19{left:760.634400pt;}
.x6{left:762.354267pt;}
}




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