
    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_e04e9b3fa6d1f770119d9d88.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.173340;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_d175e8e2037b533f40eac918.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903809;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_37c240c8f57f1935f10f48fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.173340;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_022d78e9e8b9f84c0fc23c0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_fa31946da27c19a2ceedbb89.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_d20a49523326cd3c0ad0d70c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_faf436df52bc01947d71a060.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.834473;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_b9e548261f11fe1af5b55fe9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133301;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_eb79f86140bc99e0c310d73a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.133301;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_4f88ddf78c53d3c5b270a5fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.626000px;}
.ls31{letter-spacing:-1.620000px;}
.ls34{letter-spacing:-1.566000px;}
.ls8{letter-spacing:-1.116000px;}
.ls26{letter-spacing:-1.056000px;}
.ls27{letter-spacing:-1.014000px;}
.ls15{letter-spacing:-0.906000px;}
.lsb{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.606000px;}
.ls29{letter-spacing:-0.547200px;}
.ls1f{letter-spacing:-0.368400px;}
.ls32{letter-spacing:-0.334200px;}
.ls3{letter-spacing:-0.253200px;}
.ls2c{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.172800px;}
.lse{letter-spacing:-0.100800px;}
.ls33{letter-spacing:-0.096600px;}
.ls7{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.083400px;}
.ls5{letter-spacing:-0.080400px;}
.lsc{letter-spacing:-0.076200px;}
.ls23{letter-spacing:-0.066600px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.017580px;}
.ls2e{letter-spacing:0.051240px;}
.ls2b{letter-spacing:0.064200px;}
.ls28{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.112320px;}
.ls2f{letter-spacing:0.119232px;}
.ls19{letter-spacing:0.123600px;}
.ls25{letter-spacing:0.130800px;}
.ls30{letter-spacing:0.131040px;}
.ls22{letter-spacing:0.141600px;}
.ls24{letter-spacing:0.174000px;}
.ls18{letter-spacing:0.218160px;}
.ls4{letter-spacing:0.265200px;}
.ls1d{letter-spacing:0.267000px;}
.lsd{letter-spacing:0.302400px;}
.ls1e{letter-spacing:0.346800px;}
.ls12{letter-spacing:0.418200px;}
.ls20{letter-spacing:0.490800px;}
.ls1a{letter-spacing:0.576000px;}
.ls2d{letter-spacing:1.020000px;}
.ls1{letter-spacing:27.360000px;}
.ls14{letter-spacing:59.287824px;}
.ls1b{letter-spacing:59.407824px;}
.ls13{letter-spacing:59.414400px;}
.ls1c{letter-spacing:59.534400px;}
.ls0{letter-spacing:67.641840px;}
.ls10{letter-spacing:77.826960px;}
.ls11{letter-spacing:77.982960px;}
.ls17{letter-spacing:111.102960px;}
.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;}
}
.ws0{word-spacing:-120.384000px;}
.ws5{word-spacing:-108.000000px;}
.ws7{word-spacing:-95.904000px;}
.wsc{word-spacing:-95.760000px;}
.ws11{word-spacing:-46.469520px;}
.ws3{word-spacing:-40.360320px;}
.ws2{word-spacing:-33.972720px;}
.ws1b{word-spacing:-33.797280px;}
.ws1a{word-spacing:-33.653280px;}
.ws19{word-spacing:-33.613368px;}
.ws12{word-spacing:-33.346368px;}
.ws16{word-spacing:-33.306480px;}
.ws4{word-spacing:-29.916000px;}
.ws6{word-spacing:-26.812800px;}
.wsa{word-spacing:-26.582988px;}
.ws8{word-spacing:-26.565408px;}
.wsb{word-spacing:-26.525520px;}
.wsd{word-spacing:-26.449320px;}
.ws2f{word-spacing:-23.465520px;}
.ws29{word-spacing:-23.465280px;}
.ws23{word-spacing:-23.442480px;}
.ws2d{word-spacing:-23.425608px;}
.ws26{word-spacing:-23.374368px;}
.ws18{word-spacing:-23.334480px;}
.ws2e{word-spacing:-23.237880px;}
.ws1f{word-spacing:-16.593408px;}
.ws1d{word-spacing:-16.553520px;}
.ws2a{word-spacing:-4.038480px;}
.ws25{word-spacing:-2.798640px;}
.ws13{word-spacing:-2.532960px;}
.ws2c{word-spacing:-2.444640px;}
.ws15{word-spacing:-2.428080px;}
.ws2b{word-spacing:-2.028960px;}
.ws22{word-spacing:-1.544400px;}
.ws14{word-spacing:-1.425120px;}
.wsf{word-spacing:-0.881280px;}
.ws27{word-spacing:-0.689400px;}
.ws24{word-spacing:-0.005280px;}
.ws10{word-spacing:0.000000px;}
.ws28{word-spacing:0.234360px;}
.wse{word-spacing:0.324000px;}
.ws1{word-spacing:0.656400px;}
.ws9{word-spacing:1.354464px;}
.ws1e{word-spacing:159.499200px;}
.ws20{word-spacing:188.419200px;}
.ws1c{word-spacing:233.779200px;}
.ws21{word-spacing:306.993840px;}
.ws17{word-spacing:1118.612880px;}
._6{margin-left:-3.376128px;}
._1{margin-left:-1.450560px;}
._0{width:1.209600px;}
._2{width:2.406792px;}
._3{width:3.445200px;}
._13{width:4.994448px;}
._19{width:20.507616px;}
._18{width:21.795840px;}
._5{width:27.238080px;}
._4{width:29.161920px;}
._12{width:31.895040px;}
._7{width:34.759680px;}
._15{width:172.978320px;}
._16{width:208.607520px;}
._14{width:247.018320px;}
._17{width:365.144880px;}
._f{width:445.348560px;}
._b{width:465.493440px;}
._e{width:527.141760px;}
._10{width:601.531368px;}
._9{width:829.073040px;}
._8{width:885.105600px;}
._c{width:1305.183600px;}
._a{width:1336.975920px;}
._d{width:1376.450160px;}
._11{width:1385.129040px;}
.fc9{color:rgb(236,118,181);}
.fc8{color:transparent;}
.fc7{color:rgb(255,0,0);}
.fc4{color:rgb(239,83,165);}
.fc1{color:rgb(255,255,0);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(127,127,127);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(235,235,235);}
.fs10{font-size:59.760000px;}
.fs11{font-size:59.904000px;}
.fs9{font-size:72.000000px;}
.fs5{font-size:77.040000px;}
.fsc{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fsd{font-size:86.400000px;}
.fse{font-size:86.544000px;}
.fs6{font-size:95.760000px;}
.fs7{font-size:95.904000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fs0{font-size:120.384000px;}
.fs2{font-size:144.144000px;}
.fsa{font-size:167.760000px;}
.fs12{font-size:167.904000px;}
.fs8{font-size:192.240000px;}
.fsf{font-size:228.240000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:12.450000px;}
.y77{bottom:15.552000px;}
.y88{bottom:15.585000px;}
.y65{bottom:15.690000px;}
.y6b{bottom:18.900000px;}
.y93{bottom:31.170000px;}
.y6c{bottom:34.236000px;}
.y7d{bottom:34.305000px;}
.y5c{bottom:34.410000px;}
.y12{bottom:42.192000px;}
.ybe{bottom:53.460000px;}
.y39{bottom:62.676000px;}
.y6d{bottom:63.900000px;}
.y7e{bottom:64.290000px;}
.yd5{bottom:65.700000px;}
.y94{bottom:67.350000px;}
.y91{bottom:68.076000px;}
.y5d{bottom:71.280000px;}
.yd4{bottom:85.860000px;}
.ybd{bottom:88.596000px;}
.y2f{bottom:93.312000px;}
.y6e{bottom:93.600000px;}
.y7f{bottom:94.290000px;}
.yd{bottom:96.948000px;}
.y38{bottom:98.712000px;}
.y95{bottom:103.530000px;}
.y90{bottom:104.112000px;}
.y5e{bottom:108.150000px;}
.ye8{bottom:119.520000px;}
.yd3{bottom:120.960000px;}
.y6f{bottom:123.264000px;}
.ybc{bottom:123.696000px;}
.y80{bottom:124.305000px;}
.yc{bottom:125.928000px;}
.y51{bottom:134.172000px;}
.y37{bottom:134.712000px;}
.y7b{bottom:138.495000px;}
.y69{bottom:138.885000px;}
.ye7{bottom:139.680000px;}
.y96{bottom:139.710000px;}
.y8f{bottom:140.112000px;}
.y2e{bottom:140.652000px;}
.y8c{bottom:140.685000px;}
.y5a{bottom:141.912000px;}
.y5f{bottom:145.005000px;}
.y70{bottom:152.925000px;}
.y81{bottom:154.290000px;}
.yd2{bottom:156.060000px;}
.ybb{bottom:158.970000px;}
.yaa{bottom:165.165000px;}
.y7a{bottom:165.210000px;}
.y68{bottom:165.600000px;}
.y8b{bottom:167.370000px;}
.yb{bottom:169.665000px;}
.y50{bottom:170.175000px;}
.y36{bottom:170.715000px;}
.ye6{bottom:174.780000px;}
.y97{bottom:175.890000px;}
.ya2{bottom:176.325000px;}
.y41{bottom:177.765000px;}
.y59{bottom:177.915000px;}
.y11{bottom:179.670000px;}
.y60{bottom:181.875000px;}
.y71{bottom:182.595000px;}
.y82{bottom:184.290000px;}
.y2d{bottom:187.995000px;}
.y8e{bottom:191.055000px;}
.yd1{bottom:191.160000px;}
.y79{bottom:191.880000px;}
.y67{bottom:192.270000px;}
.y8a{bottom:194.070000px;}
.ye5{bottom:194.940000px;}
.yf9{bottom:197.070000px;}
.ya{bottom:198.510000px;}
.ya1{bottom:203.040000px;}
.yd0{bottom:211.350000px;}
.y98{bottom:212.070000px;}
.y72{bottom:212.250000px;}
.y83{bottom:214.275000px;}
.y78{bottom:218.550000px;}
.y61{bottom:218.730000px;}
.y66{bottom:218.985000px;}
.y89{bottom:220.755000px;}
.yf8{bottom:222.270000px;}
.y8d{bottom:227.055000px;}
.yba{bottom:229.170000px;}
.ya0{bottom:229.710000px;}
.ye4{bottom:230.250000px;}
.y10{bottom:230.610000px;}
.y2c{bottom:236.235000px;}
.y73{bottom:241.920000px;}
.y9{bottom:242.250000px;}
.y84{bottom:244.290000px;}
.ycf{bottom:246.630000px;}
.y99{bottom:248.250000px;}
.yb9{bottom:249.375000px;}
.ye3{bottom:250.410000px;}
.y35{bottom:251.205000px;}
.y40{bottom:252.465000px;}
.y22{bottom:254.775000px;}
.y62{bottom:255.600000px;}
.y9f{bottom:256.425000px;}
.y58{bottom:257.655000px;}
.yf7{bottom:262.410000px;}
.ya9{bottom:267.270000px;}
.y8{bottom:271.230000px;}
.y74{bottom:271.590000px;}
.y4f{bottom:272.265000px;}
.y85{bottom:274.290000px;}
.y21{bottom:280.005000px;}
.yce{bottom:281.730000px;}
.y9a{bottom:284.430000px;}
.yb8{bottom:284.655000px;}
.ye2{bottom:285.510000px;}
.y2b{bottom:287.205000px;}
.yf6{bottom:287.610000px;}
.y63{bottom:292.470000px;}
.y92{bottom:292.500000px;}
.y75{bottom:301.245000px;}
.ya8{bottom:303.270000px;}
.y86{bottom:304.275000px;}
.y20{bottom:305.205000px;}
.y4e{bottom:308.265000px;}
.yf5{bottom:312.810000px;}
.y7{bottom:314.970000px;}
.ycd{bottom:317.010000px;}
.yb7{bottom:319.755000px;}
.y9b{bottom:320.610000px;}
.y2a{bottom:323.205000px;}
.y3f{bottom:328.890000px;}
.y64{bottom:329.325000px;}
.y1f{bottom:330.405000px;}
.y76{bottom:330.915000px;}
.y87{bottom:334.260000px;}
.ycc{bottom:337.170000px;}
.ya7{bottom:339.270000px;}
.y6{bottom:343.800000px;}
.y4d{bottom:344.265000px;}
.yf4{bottom:352.980000px;}
.y57{bottom:353.265000px;}
.yb6{bottom:354.855000px;}
.y1e{bottom:355.605000px;}
.ye1{bottom:355.890000px;}
.y9c{bottom:356.790000px;}
.y34{bottom:362.265000px;}
.y49{bottom:363.885000px;}
.y5b{bottom:367.560000px;}
.y7c{bottom:371.160000px;}
.ycb{bottom:372.315000px;}
.y5{bottom:372.420000px;}
.y29{bottom:374.145000px;}
.yb5{bottom:375.015000px;}
.yf3{bottom:378.180000px;}
.y1d{bottom:380.805000px;}
.y48{bottom:389.130000px;}
.y56{bottom:389.265000px;}
.ye0{bottom:391.035000px;}
.y9d{bottom:392.970000px;}
.y3e{bottom:397.290000px;}
.y33{bottom:398.265000px;}
.y1c{bottom:406.005000px;}
.yca{bottom:407.415000px;}
.y28{bottom:410.190000px;}
.yb4{bottom:410.325000px;}
.y47{bottom:414.330000px;}
.yf2{bottom:418.500000px;}
.ydf{bottom:426.135000px;}
.yc9{bottom:427.575000px;}
.y1b{bottom:431.205000px;}
.y46{bottom:439.530000px;}
.ya6{bottom:441.180000px;}
.yf1{bottom:443.700000px;}
.yb3{bottom:445.425000px;}
.y4c{bottom:446.190000px;}
.y1a{bottom:456.450000px;}
.y27{bottom:461.310000px;}
.yde{bottom:461.415000px;}
.yc8{bottom:462.855000px;}
.y4{bottom:464.580000px;}
.y45{bottom:464.730000px;}
.y3d{bottom:468.975000px;}
.y55{bottom:469.590000px;}
.y32{bottom:473.190000px;}
.ya5{bottom:477.180000px;}
.yb2{bottom:480.525000px;}
.y19{bottom:481.650000px;}
.y4b{bottom:482.190000px;}
.yc7{bottom:483.015000px;}
.yf0{bottom:483.840000px;}
.yf{bottom:489.705000px;}
.y44{bottom:489.930000px;}
.ydd{bottom:496.515000px;}
.y26{bottom:497.310000px;}
.yb1{bottom:500.685000px;}
.y54{bottom:505.590000px;}
.y18{bottom:506.850000px;}
.yef{bottom:509.070000px;}
.y31{bottom:509.190000px;}
.y3{bottom:513.750000px;}
.y43{bottom:515.130000px;}
.ydc{bottom:516.675000px;}
.yc6{bottom:518.115000px;}
.y4a{bottom:518.190000px;}
.y17{bottom:532.050000px;}
.y3c{bottom:532.470000px;}
.y25{bottom:533.130000px;}
.yb0{bottom:535.965000px;}
.y53{bottom:541.590000px;}
.y30{bottom:545.190000px;}
.yee{bottom:549.210000px;}
.ydb{bottom:551.775000px;}
.yc5{bottom:553.245000px;}
.y16{bottom:557.250000px;}
.yaf{bottom:571.110000px;}
.yed{bottom:574.410000px;}
.ya4{bottom:579.270000px;}
.y2{bottom:582.195000px;}
.y15{bottom:582.450000px;}
.y24{bottom:584.280000px;}
.yda{bottom:587.085000px;}
.yc4{bottom:588.525000px;}
.yae{bottom:606.210000px;}
.yd9{bottom:607.245000px;}
.y14{bottom:607.680000px;}
.y3b{bottom:608.550000px;}
.ye{bottom:608.580000px;}
.yc3{bottom:608.685000px;}
.yec{bottom:614.730000px;}
.ya3{bottom:615.270000px;}
.y1{bottom:618.405000px;}
.y23{bottom:620.280000px;}
.y52{bottom:622.050000px;}
.y3a{bottom:637.350000px;}
.yeb{bottom:639.930000px;}
.yad{bottom:641.490000px;}
.yc2{bottom:643.785000px;}
.yac{bottom:676.590000px;}
.yd8{bottom:677.445000px;}
.yea{bottom:680.115000px;}
.ye9{bottom:705.315000px;}
.y13{bottom:710.100000px;}
.yd7{bottom:712.725000px;}
.yc1{bottom:714.210000px;}
.y42{bottom:716.325000px;}
.yab{bottom:746.355000px;}
.yd6{bottom:747.870000px;}
.yc0{bottom:749.310000px;}
.y6a{bottom:763.560000px;}
.ybf{bottom:769.470000px;}
.h14{height:55.295508px;}
.h15{height:55.428750px;}
.ha{height:66.621094px;}
.hd{height:77.946680px;}
.hc{height:78.079922px;}
.h1a{height:81.319570px;}
.h7{height:88.606055px;}
.h5{height:92.440195px;}
.h6{height:92.579203px;}
.h4{height:99.931641px;}
.h12{height:100.064883px;}
.hf{height:104.255859px;}
.h10{height:104.394867px;}
.h9{height:111.257227px;}
.he{height:111.390469px;}
.h2{height:116.071523px;}
.h1{height:116.210531px;}
.h3{height:139.146820px;}
.hb{height:155.227148px;}
.h16{height:155.360391px;}
.h8{height:177.878320px;}
.h11{height:211.188867px;}
.h17{height:367.380000px;}
.h13{height:367.920000px;}
.h18{height:371.700000px;}
.h19{height:442.800000px;}
.h0{height:810.000000px;}
.w3{width:616.860000px;}
.w4{width:637.380000px;}
.w2{width:677.880000px;}
.w5{width:742.320000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1c{left:14.220000px;}
.x1f{left:15.228000px;}
.x24{left:16.380000px;}
.x16{left:17.430000px;}
.x1b{left:26.715000px;}
.x7{left:28.655979px;}
.x15{left:29.880000px;}
.x2a{left:54.215979px;}
.x1e{left:58.140000px;}
.x6{left:62.603979px;}
.x1{left:71.063979px;}
.x20{left:75.816000px;}
.x17{left:83.310000px;}
.x28{left:84.563979px;}
.x8{left:87.119979px;}
.x25{left:91.905000px;}
.x9{left:94.751979px;}
.x11{left:100.043979px;}
.x19{left:102.131979px;}
.x22{left:103.823979px;}
.x2b{left:116.135979px;}
.x29{left:125.063979px;}
.x27{left:134.747979px;}
.xa{left:135.755979px;}
.x2c{left:138.563979px;}
.x12{left:140.543979px;}
.xd{left:148.571979px;}
.x13{left:154.049979px;}
.xb{left:176.294979px;}
.xc{left:189.794979px;}
.x2{left:225.074979px;}
.x3{left:279.074979px;}
.x23{left:305.640000px;}
.x4{left:312.914979px;}
.xf{left:381.164979px;}
.x1a{left:397.440000px;}
.x5{left:423.149979px;}
.x1d{left:514.410000px;}
.xe{left:545.219979px;}
.x21{left:557.925000px;}
.x18{left:616.500000px;}
.x26{left:652.500000px;}
.x14{left:724.500000px;}
.x10{left:971.849979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.445333pt;}
.ls31{letter-spacing:-1.440000pt;}
.ls34{letter-spacing:-1.392000pt;}
.ls8{letter-spacing:-0.992000pt;}
.ls26{letter-spacing:-0.938667pt;}
.ls27{letter-spacing:-0.901333pt;}
.ls15{letter-spacing:-0.805333pt;}
.lsb{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.538667pt;}
.ls29{letter-spacing:-0.486400pt;}
.ls1f{letter-spacing:-0.327467pt;}
.ls32{letter-spacing:-0.297067pt;}
.ls3{letter-spacing:-0.225067pt;}
.ls2c{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.153600pt;}
.lse{letter-spacing:-0.089600pt;}
.ls33{letter-spacing:-0.085867pt;}
.ls7{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.074133pt;}
.ls5{letter-spacing:-0.071467pt;}
.lsc{letter-spacing:-0.067733pt;}
.ls23{letter-spacing:-0.059200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.015627pt;}
.ls2e{letter-spacing:0.045547pt;}
.ls2b{letter-spacing:0.057067pt;}
.ls28{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.099840pt;}
.ls2f{letter-spacing:0.105984pt;}
.ls19{letter-spacing:0.109867pt;}
.ls25{letter-spacing:0.116267pt;}
.ls30{letter-spacing:0.116480pt;}
.ls22{letter-spacing:0.125867pt;}
.ls24{letter-spacing:0.154667pt;}
.ls18{letter-spacing:0.193920pt;}
.ls4{letter-spacing:0.235733pt;}
.ls1d{letter-spacing:0.237333pt;}
.lsd{letter-spacing:0.268800pt;}
.ls1e{letter-spacing:0.308267pt;}
.ls12{letter-spacing:0.371733pt;}
.ls20{letter-spacing:0.436267pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.906667pt;}
.ls1{letter-spacing:24.320000pt;}
.ls14{letter-spacing:52.700288pt;}
.ls1b{letter-spacing:52.806955pt;}
.ls13{letter-spacing:52.812800pt;}
.ls1c{letter-spacing:52.919467pt;}
.ls0{letter-spacing:60.126080pt;}
.ls10{letter-spacing:69.179520pt;}
.ls11{letter-spacing:69.318187pt;}
.ls17{letter-spacing:98.758187pt;}
.ws0{word-spacing:-107.008000pt;}
.ws5{word-spacing:-96.000000pt;}
.ws7{word-spacing:-85.248000pt;}
.wsc{word-spacing:-85.120000pt;}
.ws11{word-spacing:-41.306240pt;}
.ws3{word-spacing:-35.875840pt;}
.ws2{word-spacing:-30.197973pt;}
.ws1b{word-spacing:-30.042027pt;}
.ws1a{word-spacing:-29.914027pt;}
.ws19{word-spacing:-29.878549pt;}
.ws12{word-spacing:-29.641216pt;}
.ws16{word-spacing:-29.605760pt;}
.ws4{word-spacing:-26.592000pt;}
.ws6{word-spacing:-23.833600pt;}
.wsa{word-spacing:-23.629323pt;}
.ws8{word-spacing:-23.613696pt;}
.wsb{word-spacing:-23.578240pt;}
.wsd{word-spacing:-23.510507pt;}
.ws2f{word-spacing:-20.858240pt;}
.ws29{word-spacing:-20.858027pt;}
.ws23{word-spacing:-20.837760pt;}
.ws2d{word-spacing:-20.822763pt;}
.ws26{word-spacing:-20.777216pt;}
.ws18{word-spacing:-20.741760pt;}
.ws2e{word-spacing:-20.655893pt;}
.ws1f{word-spacing:-14.749696pt;}
.ws1d{word-spacing:-14.714240pt;}
.ws2a{word-spacing:-3.589760pt;}
.ws25{word-spacing:-2.487680pt;}
.ws13{word-spacing:-2.251520pt;}
.ws2c{word-spacing:-2.173013pt;}
.ws15{word-spacing:-2.158293pt;}
.ws2b{word-spacing:-1.803520pt;}
.ws22{word-spacing:-1.372800pt;}
.ws14{word-spacing:-1.266773pt;}
.wsf{word-spacing:-0.783360pt;}
.ws27{word-spacing:-0.612800pt;}
.ws24{word-spacing:-0.004693pt;}
.ws10{word-spacing:0.000000pt;}
.ws28{word-spacing:0.208320pt;}
.wse{word-spacing:0.288000pt;}
.ws1{word-spacing:0.583467pt;}
.ws9{word-spacing:1.203968pt;}
.ws1e{word-spacing:141.777067pt;}
.ws20{word-spacing:167.483733pt;}
.ws1c{word-spacing:207.803733pt;}
.ws21{word-spacing:272.883413pt;}
.ws17{word-spacing:994.322560pt;}
._6{margin-left:-3.001003pt;}
._1{margin-left:-1.289387pt;}
._0{width:1.075200pt;}
._2{width:2.139371pt;}
._3{width:3.062400pt;}
._13{width:4.439509pt;}
._19{width:18.228992pt;}
._18{width:19.374080pt;}
._5{width:24.211627pt;}
._4{width:25.921707pt;}
._12{width:28.351147pt;}
._7{width:30.897493pt;}
._15{width:153.758507pt;}
._16{width:185.428907pt;}
._14{width:219.571840pt;}
._17{width:324.573227pt;}
._f{width:395.865387pt;}
._b{width:413.771947pt;}
._e{width:468.570453pt;}
._10{width:534.694549pt;}
._9{width:736.953813pt;}
._8{width:786.760533pt;}
._c{width:1160.163200pt;}
._a{width:1188.423040pt;}
._d{width:1223.511253pt;}
._11{width:1231.225813pt;}
.fs10{font-size:53.120000pt;}
.fs11{font-size:53.248000pt;}
.fs9{font-size:64.000000pt;}
.fs5{font-size:68.480000pt;}
.fsc{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fsd{font-size:76.800000pt;}
.fse{font-size:76.928000pt;}
.fs6{font-size:85.120000pt;}
.fs7{font-size:85.248000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fs0{font-size:107.008000pt;}
.fs2{font-size:128.128000pt;}
.fsa{font-size:149.120000pt;}
.fs12{font-size:149.248000pt;}
.fs8{font-size:170.880000pt;}
.fsf{font-size:202.880000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:11.066667pt;}
.y77{bottom:13.824000pt;}
.y88{bottom:13.853333pt;}
.y65{bottom:13.946667pt;}
.y6b{bottom:16.800000pt;}
.y93{bottom:27.706667pt;}
.y6c{bottom:30.432000pt;}
.y7d{bottom:30.493333pt;}
.y5c{bottom:30.586667pt;}
.y12{bottom:37.504000pt;}
.ybe{bottom:47.520000pt;}
.y39{bottom:55.712000pt;}
.y6d{bottom:56.800000pt;}
.y7e{bottom:57.146667pt;}
.yd5{bottom:58.400000pt;}
.y94{bottom:59.866667pt;}
.y91{bottom:60.512000pt;}
.y5d{bottom:63.360000pt;}
.yd4{bottom:76.320000pt;}
.ybd{bottom:78.752000pt;}
.y2f{bottom:82.944000pt;}
.y6e{bottom:83.200000pt;}
.y7f{bottom:83.813333pt;}
.yd{bottom:86.176000pt;}
.y38{bottom:87.744000pt;}
.y95{bottom:92.026667pt;}
.y90{bottom:92.544000pt;}
.y5e{bottom:96.133333pt;}
.ye8{bottom:106.240000pt;}
.yd3{bottom:107.520000pt;}
.y6f{bottom:109.568000pt;}
.ybc{bottom:109.952000pt;}
.y80{bottom:110.493333pt;}
.yc{bottom:111.936000pt;}
.y51{bottom:119.264000pt;}
.y37{bottom:119.744000pt;}
.y7b{bottom:123.106667pt;}
.y69{bottom:123.453333pt;}
.ye7{bottom:124.160000pt;}
.y96{bottom:124.186667pt;}
.y8f{bottom:124.544000pt;}
.y2e{bottom:125.024000pt;}
.y8c{bottom:125.053333pt;}
.y5a{bottom:126.144000pt;}
.y5f{bottom:128.893333pt;}
.y70{bottom:135.933333pt;}
.y81{bottom:137.146667pt;}
.yd2{bottom:138.720000pt;}
.ybb{bottom:141.306667pt;}
.yaa{bottom:146.813333pt;}
.y7a{bottom:146.853333pt;}
.y68{bottom:147.200000pt;}
.y8b{bottom:148.773333pt;}
.yb{bottom:150.813333pt;}
.y50{bottom:151.266667pt;}
.y36{bottom:151.746667pt;}
.ye6{bottom:155.360000pt;}
.y97{bottom:156.346667pt;}
.ya2{bottom:156.733333pt;}
.y41{bottom:158.013333pt;}
.y59{bottom:158.146667pt;}
.y11{bottom:159.706667pt;}
.y60{bottom:161.666667pt;}
.y71{bottom:162.306667pt;}
.y82{bottom:163.813333pt;}
.y2d{bottom:167.106667pt;}
.y8e{bottom:169.826667pt;}
.yd1{bottom:169.920000pt;}
.y79{bottom:170.560000pt;}
.y67{bottom:170.906667pt;}
.y8a{bottom:172.506667pt;}
.ye5{bottom:173.280000pt;}
.yf9{bottom:175.173333pt;}
.ya{bottom:176.453333pt;}
.ya1{bottom:180.480000pt;}
.yd0{bottom:187.866667pt;}
.y98{bottom:188.506667pt;}
.y72{bottom:188.666667pt;}
.y83{bottom:190.466667pt;}
.y78{bottom:194.266667pt;}
.y61{bottom:194.426667pt;}
.y66{bottom:194.653333pt;}
.y89{bottom:196.226667pt;}
.yf8{bottom:197.573333pt;}
.y8d{bottom:201.826667pt;}
.yba{bottom:203.706667pt;}
.ya0{bottom:204.186667pt;}
.ye4{bottom:204.666667pt;}
.y10{bottom:204.986667pt;}
.y2c{bottom:209.986667pt;}
.y73{bottom:215.040000pt;}
.y9{bottom:215.333333pt;}
.y84{bottom:217.146667pt;}
.ycf{bottom:219.226667pt;}
.y99{bottom:220.666667pt;}
.yb9{bottom:221.666667pt;}
.ye3{bottom:222.586667pt;}
.y35{bottom:223.293333pt;}
.y40{bottom:224.413333pt;}
.y22{bottom:226.466667pt;}
.y62{bottom:227.200000pt;}
.y9f{bottom:227.933333pt;}
.y58{bottom:229.026667pt;}
.yf7{bottom:233.253333pt;}
.ya9{bottom:237.573333pt;}
.y8{bottom:241.093333pt;}
.y74{bottom:241.413333pt;}
.y4f{bottom:242.013333pt;}
.y85{bottom:243.813333pt;}
.y21{bottom:248.893333pt;}
.yce{bottom:250.426667pt;}
.y9a{bottom:252.826667pt;}
.yb8{bottom:253.026667pt;}
.ye2{bottom:253.786667pt;}
.y2b{bottom:255.293333pt;}
.yf6{bottom:255.653333pt;}
.y63{bottom:259.973333pt;}
.y92{bottom:260.000000pt;}
.y75{bottom:267.773333pt;}
.ya8{bottom:269.573333pt;}
.y86{bottom:270.466667pt;}
.y20{bottom:271.293333pt;}
.y4e{bottom:274.013333pt;}
.yf5{bottom:278.053333pt;}
.y7{bottom:279.973333pt;}
.ycd{bottom:281.786667pt;}
.yb7{bottom:284.226667pt;}
.y9b{bottom:284.986667pt;}
.y2a{bottom:287.293333pt;}
.y3f{bottom:292.346667pt;}
.y64{bottom:292.733333pt;}
.y1f{bottom:293.693333pt;}
.y76{bottom:294.146667pt;}
.y87{bottom:297.120000pt;}
.ycc{bottom:299.706667pt;}
.ya7{bottom:301.573333pt;}
.y6{bottom:305.600000pt;}
.y4d{bottom:306.013333pt;}
.yf4{bottom:313.760000pt;}
.y57{bottom:314.013333pt;}
.yb6{bottom:315.426667pt;}
.y1e{bottom:316.093333pt;}
.ye1{bottom:316.346667pt;}
.y9c{bottom:317.146667pt;}
.y34{bottom:322.013333pt;}
.y49{bottom:323.453333pt;}
.y5b{bottom:326.720000pt;}
.y7c{bottom:329.920000pt;}
.ycb{bottom:330.946667pt;}
.y5{bottom:331.040000pt;}
.y29{bottom:332.573333pt;}
.yb5{bottom:333.346667pt;}
.yf3{bottom:336.160000pt;}
.y1d{bottom:338.493333pt;}
.y48{bottom:345.893333pt;}
.y56{bottom:346.013333pt;}
.ye0{bottom:347.586667pt;}
.y9d{bottom:349.306667pt;}
.y3e{bottom:353.146667pt;}
.y33{bottom:354.013333pt;}
.y1c{bottom:360.893333pt;}
.yca{bottom:362.146667pt;}
.y28{bottom:364.613333pt;}
.yb4{bottom:364.733333pt;}
.y47{bottom:368.293333pt;}
.yf2{bottom:372.000000pt;}
.ydf{bottom:378.786667pt;}
.yc9{bottom:380.066667pt;}
.y1b{bottom:383.293333pt;}
.y46{bottom:390.693333pt;}
.ya6{bottom:392.160000pt;}
.yf1{bottom:394.400000pt;}
.yb3{bottom:395.933333pt;}
.y4c{bottom:396.613333pt;}
.y1a{bottom:405.733333pt;}
.y27{bottom:410.053333pt;}
.yde{bottom:410.146667pt;}
.yc8{bottom:411.426667pt;}
.y4{bottom:412.960000pt;}
.y45{bottom:413.093333pt;}
.y3d{bottom:416.866667pt;}
.y55{bottom:417.413333pt;}
.y32{bottom:420.613333pt;}
.ya5{bottom:424.160000pt;}
.yb2{bottom:427.133333pt;}
.y19{bottom:428.133333pt;}
.y4b{bottom:428.613333pt;}
.yc7{bottom:429.346667pt;}
.yf0{bottom:430.080000pt;}
.yf{bottom:435.293333pt;}
.y44{bottom:435.493333pt;}
.ydd{bottom:441.346667pt;}
.y26{bottom:442.053333pt;}
.yb1{bottom:445.053333pt;}
.y54{bottom:449.413333pt;}
.y18{bottom:450.533333pt;}
.yef{bottom:452.506667pt;}
.y31{bottom:452.613333pt;}
.y3{bottom:456.666667pt;}
.y43{bottom:457.893333pt;}
.ydc{bottom:459.266667pt;}
.yc6{bottom:460.546667pt;}
.y4a{bottom:460.613333pt;}
.y17{bottom:472.933333pt;}
.y3c{bottom:473.306667pt;}
.y25{bottom:473.893333pt;}
.yb0{bottom:476.413333pt;}
.y53{bottom:481.413333pt;}
.y30{bottom:484.613333pt;}
.yee{bottom:488.186667pt;}
.ydb{bottom:490.466667pt;}
.yc5{bottom:491.773333pt;}
.y16{bottom:495.333333pt;}
.yaf{bottom:507.653333pt;}
.yed{bottom:510.586667pt;}
.ya4{bottom:514.906667pt;}
.y2{bottom:517.506667pt;}
.y15{bottom:517.733333pt;}
.y24{bottom:519.360000pt;}
.yda{bottom:521.853333pt;}
.yc4{bottom:523.133333pt;}
.yae{bottom:538.853333pt;}
.yd9{bottom:539.773333pt;}
.y14{bottom:540.160000pt;}
.y3b{bottom:540.933333pt;}
.ye{bottom:540.960000pt;}
.yc3{bottom:541.053333pt;}
.yec{bottom:546.426667pt;}
.ya3{bottom:546.906667pt;}
.y1{bottom:549.693333pt;}
.y23{bottom:551.360000pt;}
.y52{bottom:552.933333pt;}
.y3a{bottom:566.533333pt;}
.yeb{bottom:568.826667pt;}
.yad{bottom:570.213333pt;}
.yc2{bottom:572.253333pt;}
.yac{bottom:601.413333pt;}
.yd8{bottom:602.173333pt;}
.yea{bottom:604.546667pt;}
.ye9{bottom:626.946667pt;}
.y13{bottom:631.200000pt;}
.yd7{bottom:633.533333pt;}
.yc1{bottom:634.853333pt;}
.y42{bottom:636.733333pt;}
.yab{bottom:663.426667pt;}
.yd6{bottom:664.773333pt;}
.yc0{bottom:666.053333pt;}
.y6a{bottom:678.720000pt;}
.ybf{bottom:683.973333pt;}
.h14{height:49.151563pt;}
.h15{height:49.270000pt;}
.ha{height:59.218750pt;}
.hd{height:69.285937pt;}
.hc{height:69.404375pt;}
.h1a{height:72.284062pt;}
.h7{height:78.760937pt;}
.h5{height:82.169063pt;}
.h6{height:82.292625pt;}
.h4{height:88.828125pt;}
.h12{height:88.946562pt;}
.hf{height:92.671875pt;}
.h10{height:92.795438pt;}
.h9{height:98.895312pt;}
.he{height:99.013750pt;}
.h2{height:103.174687pt;}
.h1{height:103.298250pt;}
.h3{height:123.686063pt;}
.hb{height:137.979688pt;}
.h16{height:138.098125pt;}
.h8{height:158.114062pt;}
.h11{height:187.723437pt;}
.h17{height:326.560000pt;}
.h13{height:327.040000pt;}
.h18{height:330.400000pt;}
.h19{height:393.600000pt;}
.h0{height:720.000000pt;}
.w3{width:548.320000pt;}
.w4{width:566.560000pt;}
.w2{width:602.560000pt;}
.w5{width:659.840000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:12.640000pt;}
.x1f{left:13.536000pt;}
.x24{left:14.560000pt;}
.x16{left:15.493333pt;}
.x1b{left:23.746667pt;}
.x7{left:25.471981pt;}
.x15{left:26.560000pt;}
.x2a{left:48.191981pt;}
.x1e{left:51.680000pt;}
.x6{left:55.647981pt;}
.x1{left:63.167981pt;}
.x20{left:67.392000pt;}
.x17{left:74.053333pt;}
.x28{left:75.167981pt;}
.x8{left:77.439981pt;}
.x25{left:81.693333pt;}
.x9{left:84.223981pt;}
.x11{left:88.927981pt;}
.x19{left:90.783981pt;}
.x22{left:92.287981pt;}
.x2b{left:103.231981pt;}
.x29{left:111.167981pt;}
.x27{left:119.775981pt;}
.xa{left:120.671981pt;}
.x2c{left:123.167981pt;}
.x12{left:124.927981pt;}
.xd{left:132.063981pt;}
.x13{left:136.933314pt;}
.xb{left:156.706648pt;}
.xc{left:168.706648pt;}
.x2{left:200.066648pt;}
.x3{left:248.066648pt;}
.x23{left:271.680000pt;}
.x4{left:278.146648pt;}
.xf{left:338.813314pt;}
.x1a{left:353.280000pt;}
.x5{left:376.133314pt;}
.x1d{left:457.253333pt;}
.xe{left:484.639981pt;}
.x21{left:495.933333pt;}
.x18{left:548.000000pt;}
.x26{left:580.000000pt;}
.x14{left:644.000000pt;}
.x10{left:863.866648pt;}
}




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