
    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_bb19dcd3b820351523c8e38d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_d9ff5d115673ce9415b4001e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_4be710a1f67e592551f5c7b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064000;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_4ede70628a59d95b50fe09f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111133;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_cb962779ae740c550585c565.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.125533;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_6a5541d700be83ba84eb3d8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125533;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_843144cc35052ff5cbd9c629.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.111133;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_e7311a9031096b061c3d721c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_023041ad5dc543efd85f865d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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:ffb;src:url('chunks/assets/font_d10c344c4a55b9d8997513bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963000;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cdc58e760d9cc1329220de0b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;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:ffe;src:url('chunks/assets/font_d3e4733a8640bbf0abdeeb9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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:fff;src:url('chunks/assets/font_f973c883c4398fae77df1747.woff2')format("woff");}.fff{font-family:fff;line-height:0.747559;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.325200px;}
.lsd{letter-spacing:-0.302400px;}
.ls9{letter-spacing:-0.172200px;}
.ls13{letter-spacing:-0.057600px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.009360px;}
.ls28{letter-spacing:0.012240px;}
.lsa{letter-spacing:0.015840px;}
.ls15{letter-spacing:0.030240px;}
.ls26{letter-spacing:0.072600px;}
.lsc{letter-spacing:0.086400px;}
.ls24{letter-spacing:0.092400px;}
.ls5{letter-spacing:0.147000px;}
.ls11{letter-spacing:0.148800px;}
.ls3{letter-spacing:0.154800px;}
.ls17{letter-spacing:0.163200px;}
.ls1{letter-spacing:0.206400px;}
.ls1c{letter-spacing:0.223800px;}
.ls1a{letter-spacing:0.322560px;}
.lsf{letter-spacing:0.322800px;}
.ls12{letter-spacing:0.334200px;}
.ls10{letter-spacing:0.367800px;}
.ls8{letter-spacing:0.373800px;}
.ls4{letter-spacing:0.519000px;}
.ls6{letter-spacing:0.522000px;}
.ls27{letter-spacing:0.547800px;}
.ls1d{letter-spacing:0.598320px;}
.ls29{letter-spacing:0.792000px;}
.lsb{letter-spacing:2.038320px;}
.ls20{letter-spacing:2.758320px;}
.ls14{letter-spacing:3.478320px;}
.ls1b{letter-spacing:4.198320px;}
.ls1e{letter-spacing:4.918320px;}
.ls16{letter-spacing:9.238320px;}
.ls0{letter-spacing:9.958320px;}
.ls22{letter-spacing:12.838320px;}
.ls19{letter-spacing:13.558320px;}
.ls21{letter-spacing:14.998320px;}
.ls18{letter-spacing:44.518320px;}
.ls7{letter-spacing:61.866720px;}
.ls23{letter-spacing:202.198320px;}
.ls1f{letter-spacing:223.798320px;}
.ls25{letter-spacing:847.740000px;}
.ls2a{letter-spacing:849.360000px;}
.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;}
}
.ws4{word-spacing:-17.884800px;}
.ws13{word-spacing:-16.174200px;}
.ws7{word-spacing:-16.135200px;}
.ws5{word-spacing:-16.096320px;}
.ws12{word-spacing:-15.926400px;}
.ws14{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.313680px;}
.ws18{word-spacing:-15.069480px;}
.wsd{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.895480px;}
.ws16{word-spacing:-14.745480px;}
.ws6{word-spacing:-14.728080px;}
.ws15{word-spacing:-14.684880px;}
.ws10{word-spacing:-14.670480px;}
.ws9{word-spacing:-14.668680px;}
.ws1a{word-spacing:-14.614080px;}
.ws17{word-spacing:-14.594280px;}
.wsc{word-spacing:-14.537520px;}
.ws19{word-spacing:-14.533920px;}
.ws3{word-spacing:-14.521680px;}
.wsb{word-spacing:-14.349480px;}
.wse{word-spacing:-14.219280px;}
.wsf{word-spacing:-14.196480px;}
.ws2{word-spacing:-12.829560px;}
.ws1{word-spacing:-12.465360px;}
.ws0{word-spacing:-12.310560px;}
.ws8{word-spacing:0.000000px;}
.ws11{word-spacing:42.360000px;}
._13{margin-left:-3.525840px;}
._9{margin-left:-2.330640px;}
._4{margin-left:-1.193280px;}
._0{width:1.015920px;}
._3{width:2.250480px;}
._8{width:3.824640px;}
._5{width:4.840560px;}
._6{width:6.274800px;}
._12{width:7.589520px;}
._b{width:8.724960px;}
._d{width:9.920160px;}
._c{width:11.175120px;}
._e{width:12.191040px;}
._f{width:13.505760px;}
._7{width:15.657120px;}
._16{width:16.852320px;}
._17{width:18.047520px;}
._1c{width:19.274160px;}
._38{width:20.408880px;}
._28{width:21.513600px;}
._1f{width:22.740720px;}
._10{width:23.752560px;}
._31{width:25.099200px;}
._23{width:26.473680px;}
._1d{width:27.668880px;}
._11{width:29.521440px;}
._19{width:30.903840px;}
._18{width:31.971600px;}
._2c{width:33.346080px;}
._24{width:34.491600px;}
._2b{width:36.513360px;}
._30{width:37.971840px;}
._2d{width:40.039200px;}
._15{width:41.114880px;}
._25{width:43.146720px;}
._21{width:45.477360px;}
._20{width:48.226320px;}
._39{width:49.660560px;}
._a{width:52.170480px;}
._14{width:64.600560px;}
._26{width:69.142320px;}
._29{width:72.010800px;}
._27{width:73.980000px;}
._36{width:76.495200px;}
._2a{width:77.986800px;}
._33{width:81.156480px;}
._34{width:100.098000px;}
._2e{width:123.165360px;}
._1a{width:174.678480px;}
._1e{width:202.168080px;}
._3a{width:203.196240px;}
._22{width:214.777440px;}
._35{width:224.599680px;}
._1{width:286.535280px;}
._32{width:644.449440px;}
._1b{width:647.329440px;}
._2{width:649.489440px;}
._2f{width:651.649440px;}
._37{width:959.207760px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs4{font-size:63.504000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y60{bottom:4.320000px;}
.y67{bottom:4.500000px;}
.y5{bottom:10.260000px;}
.y6c{bottom:14.220000px;}
.y70{bottom:14.250000px;}
.y61{bottom:14.400000px;}
.y97{bottom:16.230000px;}
.ycb{bottom:24.120000px;}
.y6f{bottom:24.150000px;}
.y5f{bottom:24.300000px;}
.y64{bottom:34.200000px;}
.y6b{bottom:34.236000px;}
.y66{bottom:44.100000px;}
.y6d{bottom:44.136000px;}
.y69{bottom:44.280000px;}
.y8c{bottom:48.135000px;}
.y63{bottom:54.180000px;}
.y65{bottom:64.080000px;}
.ycf{bottom:64.110000px;}
.y8e{bottom:88.200000px;}
.y36{bottom:92.520000px;}
.ye0{bottom:99.900000px;}
.yc7{bottom:102.960000px;}
.y8a{bottom:104.400000px;}
.y6a{bottom:104.580000px;}
.y8d{bottom:106.200000px;}
.y35{bottom:113.400000px;}
.ydf{bottom:119.880000px;}
.yc6{bottom:122.940000px;}
.y89{bottom:124.380000px;}
.y34{bottom:134.280000px;}
.yde{bottom:139.716000px;}
.yc5{bottom:142.776000px;}
.y88{bottom:144.216000px;}
.y90{bottom:150.015000px;}
.y33{bottom:155.190000px;}
.ydd{bottom:155.910000px;}
.yc4{bottom:162.570000px;}
.y87{bottom:164.190000px;}
.y68{bottom:164.910000px;}
.y8f{bottom:168.015000px;}
.y32{bottom:176.070000px;}
.yc3{bottom:182.550000px;}
.y86{bottom:183.990000px;}
.yff{bottom:186.870000px;}
.y31{bottom:196.950000px;}
.yc2{bottom:202.350000px;}
.y85{bottom:203.970000px;}
.yfe{bottom:208.470000px;}
.y92{bottom:211.785000px;}
.ydc{bottom:216.390000px;}
.y30{bottom:217.830000px;}
.y84{bottom:219.450000px;}
.y8b{bottom:220.680000px;}
.yc1{bottom:222.330000px;}
.yfd{bottom:228.270000px;}
.y91{bottom:229.785000px;}
.y2f{bottom:238.710000px;}
.yc0{bottom:242.130000px;}
.y62{bottom:245.190000px;}
.yfc{bottom:248.070000px;}
.y2e{bottom:259.410000px;}
.ybf{bottom:261.930000px;}
.yfb{bottom:268.050000px;}
.y94{bottom:273.570000px;}
.ydb{bottom:276.690000px;}
.y2d{bottom:280.290000px;}
.ybe{bottom:281.910000px;}
.yfa{bottom:287.850000px;}
.y93{bottom:291.570000px;}
.y2c{bottom:301.170000px;}
.ybd{bottom:301.710000px;}
.yf9{bottom:307.830000px;}
.yda{bottom:317.190000px;}
.ybc{bottom:321.690000px;}
.y2b{bottom:322.050000px;}
.y5e{bottom:325.470000px;}
.yf8{bottom:327.630000px;}
.y96{bottom:335.340000px;}
.ybb{bottom:341.490000px;}
.y2a{bottom:342.930000px;}
.yf7{bottom:347.430000px;}
.y95{bottom:353.370000px;}
.yd9{bottom:357.690000px;}
.yba{bottom:361.470000px;}
.y29{bottom:363.810000px;}
.yf6{bottom:367.410000px;}
.y5d{bottom:370.290000px;}
.yb9{bottom:381.270000px;}
.y28{bottom:384.690000px;}
.yf5{bottom:387.210000px;}
.y5c{bottom:390.315000px;}
.yd8{bottom:398.235000px;}
.yb8{bottom:401.115000px;}
.y27{bottom:405.615000px;}
.yf4{bottom:407.235000px;}
.y5b{bottom:411.015000px;}
.yb7{bottom:421.095000px;}
.yd7{bottom:423.255000px;}
.y26{bottom:426.495000px;}
.yf3{bottom:427.035000px;}
.y5a{bottom:431.895000px;}
.yb6{bottom:440.895000px;}
.yd6{bottom:443.235000px;}
.yf2{bottom:447.015000px;}
.y25{bottom:447.375000px;}
.y59{bottom:452.775000px;}
.yb5{bottom:460.875000px;}
.yd5{bottom:463.035000px;}
.yf1{bottom:466.815000px;}
.y24{bottom:468.255000px;}
.y58{bottom:473.655000px;}
.yb4{bottom:480.675000px;}
.yd4{bottom:483.015000px;}
.yf0{bottom:486.615000px;}
.y23{bottom:489.135000px;}
.y57{bottom:494.355000px;}
.yb3{bottom:500.475000px;}
.yd3{bottom:502.815000px;}
.yef{bottom:506.595000px;}
.y22{bottom:510.015000px;}
.y56{bottom:515.235000px;}
.yb2{bottom:520.455000px;}
.yd2{bottom:522.615000px;}
.yee{bottom:526.395000px;}
.y21{bottom:530.895000px;}
.y55{bottom:536.115000px;}
.yb1{bottom:540.255000px;}
.yd1{bottom:542.595000px;}
.yed{bottom:546.375000px;}
.y20{bottom:551.775000px;}
.y54{bottom:556.995000px;}
.yb0{bottom:560.235000px;}
.yd0{bottom:562.395000px;}
.yec{bottom:566.175000px;}
.y1f{bottom:572.655000px;}
.y53{bottom:577.875000px;}
.yce{bottom:578.595000px;}
.yaf{bottom:580.035000px;}
.yeb{bottom:585.975000px;}
.y1e{bottom:593.355000px;}
.y52{bottom:598.755000px;}
.yae{bottom:600.015000px;}
.yea{bottom:605.955000px;}
.y1d{bottom:614.235000px;}
.y51{bottom:619.635000px;}
.yad{bottom:619.815000px;}
.y83{bottom:621.975000px;}
.ye9{bottom:625.755000px;}
.y1c{bottom:635.115000px;}
.yac{bottom:639.615000px;}
.y50{bottom:640.545000px;}
.y82{bottom:641.985000px;}
.ye8{bottom:645.765000px;}
.y1b{bottom:656.025000px;}
.ycd{bottom:658.905000px;}
.y4f{bottom:661.425000px;}
.y81{bottom:661.785000px;}
.ye7{bottom:665.565000px;}
.yab{bottom:676.545000px;}
.y1a{bottom:676.905000px;}
.y80{bottom:681.765000px;}
.y4e{bottom:682.305000px;}
.ye6{bottom:685.545000px;}
.y19{bottom:697.065000px;}
.yaa{bottom:697.245000px;}
.ycc{bottom:699.405000px;}
.y7f{bottom:701.565000px;}
.y4d{bottom:703.185000px;}
.ye5{bottom:705.345000px;}
.y18{bottom:716.865000px;}
.ya9{bottom:717.765000px;}
.y7e{bottom:721.545000px;}
.y4c{bottom:724.065000px;}
.ye4{bottom:725.145000px;}
.y17{bottom:736.665000px;}
.ya8{bottom:738.465000px;}
.y7d{bottom:741.345000px;}
.y4b{bottom:744.945000px;}
.ye3{bottom:745.125000px;}
.y16{bottom:756.645000px;}
.ya7{bottom:758.985000px;}
.yca{bottom:759.885000px;}
.y7c{bottom:761.145000px;}
.ye2{bottom:764.925000px;}
.y4a{bottom:765.825000px;}
.y15{bottom:776.445000px;}
.ya6{bottom:779.685000px;}
.y7b{bottom:781.125000px;}
.ye1{bottom:784.905000px;}
.y49{bottom:786.705000px;}
.y112{bottom:790.665000px;}
.y14{bottom:796.425000px;}
.y7a{bottom:800.925000px;}
.yc9{bottom:804.705000px;}
.y48{bottom:807.585000px;}
.y111{bottom:810.645000px;}
.y13{bottom:816.225000px;}
.y79{bottom:820.905000px;}
.yc8{bottom:824.505000px;}
.y47{bottom:828.285000px;}
.y110{bottom:830.625000px;}
.y12{bottom:836.205000px;}
.y78{bottom:840.705000px;}
.ya5{bottom:844.485000px;}
.y46{bottom:849.165000px;}
.y10f{bottom:850.425000px;}
.y11{bottom:856.005000px;}
.y77{bottom:860.505000px;}
.ya4{bottom:864.285000px;}
.y45{bottom:870.045000px;}
.y10e{bottom:870.225000px;}
.y10{bottom:875.805000px;}
.y76{bottom:880.485000px;}
.ya3{bottom:884.265000px;}
.y10d{bottom:890.205000px;}
.y44{bottom:890.925000px;}
.yf{bottom:895.830000px;}
.y75{bottom:900.330000px;}
.ya2{bottom:904.110000px;}
.y10c{bottom:910.050000px;}
.y43{bottom:911.850000px;}
.ye{bottom:915.630000px;}
.y74{bottom:920.310000px;}
.ya1{bottom:924.090000px;}
.y10b{bottom:930.030000px;}
.y42{bottom:932.730000px;}
.yd{bottom:935.610000px;}
.y73{bottom:936.510000px;}
.ya0{bottom:943.890000px;}
.y10a{bottom:949.830000px;}
.y41{bottom:953.610000px;}
.yc{bottom:955.410000px;}
.y9f{bottom:963.690000px;}
.y109{bottom:969.630000px;}
.y40{bottom:974.490000px;}
.yb{bottom:975.210000px;}
.y9e{bottom:983.670000px;}
.y108{bottom:989.610000px;}
.y3f{bottom:995.370000px;}
.ya{bottom:996.270000px;}
.y72{bottom:996.810000px;}
.y9d{bottom:1003.470000px;}
.y107{bottom:1009.410000px;}
.y3e{bottom:1016.250000px;}
.y9{bottom:1021.470000px;}
.y9c{bottom:1023.450000px;}
.y106{bottom:1029.390000px;}
.y3d{bottom:1037.130000px;}
.y8{bottom:1043.250000px;}
.y105{bottom:1049.190000px;}
.y3c{bottom:1058.010000px;}
.y9b{bottom:1063.050000px;}
.y7{bottom:1065.030000px;}
.y104{bottom:1070.250000px;}
.y71{bottom:1077.090000px;}
.y3b{bottom:1078.890000px;}
.y9a{bottom:1083.030000px;}
.y6{bottom:1086.630000px;}
.y103{bottom:1095.270000px;}
.y3a{bottom:1099.770000px;}
.y99{bottom:1102.830000px;}
.y4{bottom:1106.610000px;}
.y102{bottom:1117.230000px;}
.y39{bottom:1120.650000px;}
.y98{bottom:1122.810000px;}
.y6e{bottom:1137.570000px;}
.y101{bottom:1139.010000px;}
.y38{bottom:1141.530000px;}
.y3{bottom:1142.610000px;}
.y100{bottom:1161.000000px;}
.y37{bottom:1162.440000px;}
.y2{bottom:1162.620000px;}
.y1{bottom:1194.120000px;}
.h14{height:19.800000px;}
.h13{height:19.980000px;}
.h4{height:31.680000px;}
.h15{height:39.600000px;}
.he{height:39.636000px;}
.hb{height:39.780000px;}
.h17{height:39.816000px;}
.h11{height:44.426250px;}
.h12{height:44.527219px;}
.h9{height:45.059040px;}
.h3{height:49.839840px;}
.ha{height:52.656528px;}
.h8{height:53.517072px;}
.h5{height:58.366272px;}
.h6{height:59.320128px;}
.h2{height:59.439023px;}
.hf{height:59.580000px;}
.hd{height:59.616000px;}
.h18{height:59.760000px;}
.h7{height:69.636672px;}
.hc{height:79.560000px;}
.h16{height:79.596000px;}
.h10{height:397.080000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.w6{width:174.810000px;}
.w7{width:175.170000px;}
.w5{width:179.130000px;}
.w4{width:190.290000px;}
.wa{width:190.650000px;}
.wc{width:200.775000px;}
.wb{width:222.150000px;}
.wf{width:232.815000px;}
.w11{width:243.570000px;}
.w10{width:243.750000px;}
.wd{width:254.370000px;}
.we{width:264.630000px;}
.w9{width:307.335000px;}
.w8{width:658.260000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x1f{left:9.540000px;}
.x18{left:10.665000px;}
.x2a{left:11.880000px;}
.x15{left:12.996000px;}
.x1b{left:14.970000px;}
.x1a{left:16.590000px;}
.x29{left:18.225000px;}
.x17{left:19.296000px;}
.x19{left:20.925000px;}
.x32{left:22.716000px;}
.x1c{left:23.790000px;}
.x24{left:25.605000px;}
.x25{left:28.665000px;}
.x20{left:29.910000px;}
.x1d{left:32.070000px;}
.x46{left:34.776000px;}
.x4d{left:36.540000px;}
.x21{left:38.196000px;}
.x12{left:39.645000px;}
.x10{left:41.076000px;}
.x4{left:42.300000px;}
.x2b{left:45.405000px;}
.x27{left:47.925000px;}
.x35{left:49.470000px;}
.x28{left:51.165000px;}
.x4a{left:53.280000px;}
.x1e{left:54.405000px;}
.x3b{left:55.440000px;}
.x16{left:56.556000px;}
.x3c{left:57.600000px;}
.x51{left:61.200000px;}
.x26{left:62.316000px;}
.x34{left:64.410000px;}
.x3e{left:65.880000px;}
.xf{left:68.250000px;}
.x36{left:70.815000px;}
.x4c{left:73.080000px;}
.x30{left:74.130000px;}
.x22{left:75.825000px;}
.x43{left:77.250000px;}
.x33{left:78.735000px;}
.x23{left:80.850000px;}
.x48{left:83.520000px;}
.x1{left:84.959987px;}
.x42{left:86.625000px;}
.x52{left:88.740000px;}
.x41{left:90.570000px;}
.x40{left:92.010000px;}
.x3f{left:96.885000px;}
.x50{left:104.610000px;}
.xa{left:106.235987px;}
.x44{left:108.395987px;}
.x2e{left:116.820000px;}
.x4b{left:118.305000px;}
.x9{left:127.835987px;}
.x31{left:137.310000px;}
.x56{left:150.329987px;}
.x8{left:151.949987px;}
.x38{left:157.169987px;}
.xe{left:167.969987px;}
.x4e{left:187.409987px;}
.x55{left:237.809987px;}
.x2d{left:253.649987px;}
.x11{left:276.870000px;}
.x47{left:287.535000px;}
.x37{left:310.350000px;}
.x39{left:311.474987px;}
.x45{left:320.114987px;}
.x2f{left:322.455000px;}
.x3{left:326.235000px;}
.x7{left:368.534987px;}
.x5{left:376.635000px;}
.x54{left:379.334987px;}
.x3a{left:393.915000px;}
.x2{left:446.474987px;}
.x13{left:456.735000px;}
.xb{left:473.144987px;}
.xc{left:494.384987px;}
.x49{left:542.805000px;}
.x4f{left:563.865000px;}
.x3d{left:585.285000px;}
.x53{left:596.624987px;}
.x14{left:632.265000px;}
.xd{left:737.249987px;}
.x2c{left:776.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.289067pt;}
.lsd{letter-spacing:-0.268800pt;}
.ls9{letter-spacing:-0.153067pt;}
.ls13{letter-spacing:-0.051200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.008320pt;}
.ls28{letter-spacing:0.010880pt;}
.lsa{letter-spacing:0.014080pt;}
.ls15{letter-spacing:0.026880pt;}
.ls26{letter-spacing:0.064533pt;}
.lsc{letter-spacing:0.076800pt;}
.ls24{letter-spacing:0.082133pt;}
.ls5{letter-spacing:0.130667pt;}
.ls11{letter-spacing:0.132267pt;}
.ls3{letter-spacing:0.137600pt;}
.ls17{letter-spacing:0.145067pt;}
.ls1{letter-spacing:0.183467pt;}
.ls1c{letter-spacing:0.198933pt;}
.ls1a{letter-spacing:0.286720pt;}
.lsf{letter-spacing:0.286933pt;}
.ls12{letter-spacing:0.297067pt;}
.ls10{letter-spacing:0.326933pt;}
.ls8{letter-spacing:0.332267pt;}
.ls4{letter-spacing:0.461333pt;}
.ls6{letter-spacing:0.464000pt;}
.ls27{letter-spacing:0.486933pt;}
.ls1d{letter-spacing:0.531840pt;}
.ls29{letter-spacing:0.704000pt;}
.lsb{letter-spacing:1.811840pt;}
.ls20{letter-spacing:2.451840pt;}
.ls14{letter-spacing:3.091840pt;}
.ls1b{letter-spacing:3.731840pt;}
.ls1e{letter-spacing:4.371840pt;}
.ls16{letter-spacing:8.211840pt;}
.ls0{letter-spacing:8.851840pt;}
.ls22{letter-spacing:11.411840pt;}
.ls19{letter-spacing:12.051840pt;}
.ls21{letter-spacing:13.331840pt;}
.ls18{letter-spacing:39.571840pt;}
.ls7{letter-spacing:54.992640pt;}
.ls23{letter-spacing:179.731840pt;}
.ls1f{letter-spacing:198.931840pt;}
.ls25{letter-spacing:753.546667pt;}
.ls2a{letter-spacing:754.986667pt;}
.ws4{word-spacing:-15.897600pt;}
.ws13{word-spacing:-14.377067pt;}
.ws7{word-spacing:-14.342400pt;}
.ws5{word-spacing:-14.307840pt;}
.ws12{word-spacing:-14.156800pt;}
.ws14{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.612160pt;}
.ws18{word-spacing:-13.395093pt;}
.wsd{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.240427pt;}
.ws16{word-spacing:-13.107093pt;}
.ws6{word-spacing:-13.091627pt;}
.ws15{word-spacing:-13.053227pt;}
.ws10{word-spacing:-13.040427pt;}
.ws9{word-spacing:-13.038827pt;}
.ws1a{word-spacing:-12.990293pt;}
.ws17{word-spacing:-12.972693pt;}
.wsc{word-spacing:-12.922240pt;}
.ws19{word-spacing:-12.919040pt;}
.ws3{word-spacing:-12.908160pt;}
.wsb{word-spacing:-12.755093pt;}
.wse{word-spacing:-12.639360pt;}
.wsf{word-spacing:-12.619093pt;}
.ws2{word-spacing:-11.404053pt;}
.ws1{word-spacing:-11.080320pt;}
.ws0{word-spacing:-10.942720pt;}
.ws8{word-spacing:0.000000pt;}
.ws11{word-spacing:37.653333pt;}
._13{margin-left:-3.134080pt;}
._9{margin-left:-2.071680pt;}
._4{margin-left:-1.060693pt;}
._0{width:0.903040pt;}
._3{width:2.000427pt;}
._8{width:3.399680pt;}
._5{width:4.302720pt;}
._6{width:5.577600pt;}
._12{width:6.746240pt;}
._b{width:7.755520pt;}
._d{width:8.817920pt;}
._c{width:9.933440pt;}
._e{width:10.836480pt;}
._f{width:12.005120pt;}
._7{width:13.917440pt;}
._16{width:14.979840pt;}
._17{width:16.042240pt;}
._1c{width:17.132587pt;}
._38{width:18.141227pt;}
._28{width:19.123200pt;}
._1f{width:20.213973pt;}
._10{width:21.113387pt;}
._31{width:22.310400pt;}
._23{width:23.532160pt;}
._1d{width:24.594560pt;}
._11{width:26.241280pt;}
._19{width:27.470080pt;}
._18{width:28.419200pt;}
._2c{width:29.640960pt;}
._24{width:30.659200pt;}
._2b{width:32.456320pt;}
._30{width:33.752747pt;}
._2d{width:35.590400pt;}
._15{width:36.546560pt;}
._25{width:38.352640pt;}
._21{width:40.424320pt;}
._20{width:42.867840pt;}
._39{width:44.142720pt;}
._a{width:46.373760pt;}
._14{width:57.422720pt;}
._26{width:61.459840pt;}
._29{width:64.009600pt;}
._27{width:65.760000pt;}
._36{width:67.995733pt;}
._2a{width:69.321600pt;}
._33{width:72.139093pt;}
._34{width:88.976000pt;}
._2e{width:109.480320pt;}
._1a{width:155.269760pt;}
._1e{width:179.704960pt;}
._3a{width:180.618880pt;}
._22{width:190.913280pt;}
._35{width:199.644160pt;}
._1{width:254.698027pt;}
._32{width:572.843947pt;}
._1b{width:575.403947pt;}
._2{width:577.323947pt;}
._2f{width:579.243947pt;}
._37{width:852.629120pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs4{font-size:56.448000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.840000pt;}
.y67{bottom:4.000000pt;}
.y5{bottom:9.120000pt;}
.y6c{bottom:12.640000pt;}
.y70{bottom:12.666667pt;}
.y61{bottom:12.800000pt;}
.y97{bottom:14.426667pt;}
.ycb{bottom:21.440000pt;}
.y6f{bottom:21.466667pt;}
.y5f{bottom:21.600000pt;}
.y64{bottom:30.400000pt;}
.y6b{bottom:30.432000pt;}
.y66{bottom:39.200000pt;}
.y6d{bottom:39.232000pt;}
.y69{bottom:39.360000pt;}
.y8c{bottom:42.786667pt;}
.y63{bottom:48.160000pt;}
.y65{bottom:56.960000pt;}
.ycf{bottom:56.986667pt;}
.y8e{bottom:78.400000pt;}
.y36{bottom:82.240000pt;}
.ye0{bottom:88.800000pt;}
.yc7{bottom:91.520000pt;}
.y8a{bottom:92.800000pt;}
.y6a{bottom:92.960000pt;}
.y8d{bottom:94.400000pt;}
.y35{bottom:100.800000pt;}
.ydf{bottom:106.560000pt;}
.yc6{bottom:109.280000pt;}
.y89{bottom:110.560000pt;}
.y34{bottom:119.360000pt;}
.yde{bottom:124.192000pt;}
.yc5{bottom:126.912000pt;}
.y88{bottom:128.192000pt;}
.y90{bottom:133.346667pt;}
.y33{bottom:137.946667pt;}
.ydd{bottom:138.586667pt;}
.yc4{bottom:144.506667pt;}
.y87{bottom:145.946667pt;}
.y68{bottom:146.586667pt;}
.y8f{bottom:149.346667pt;}
.y32{bottom:156.506667pt;}
.yc3{bottom:162.266667pt;}
.y86{bottom:163.546667pt;}
.yff{bottom:166.106667pt;}
.y31{bottom:175.066667pt;}
.yc2{bottom:179.866667pt;}
.y85{bottom:181.306667pt;}
.yfe{bottom:185.306667pt;}
.y92{bottom:188.253333pt;}
.ydc{bottom:192.346667pt;}
.y30{bottom:193.626667pt;}
.y84{bottom:195.066667pt;}
.y8b{bottom:196.160000pt;}
.yc1{bottom:197.626667pt;}
.yfd{bottom:202.906667pt;}
.y91{bottom:204.253333pt;}
.y2f{bottom:212.186667pt;}
.yc0{bottom:215.226667pt;}
.y62{bottom:217.946667pt;}
.yfc{bottom:220.506667pt;}
.y2e{bottom:230.586667pt;}
.ybf{bottom:232.826667pt;}
.yfb{bottom:238.266667pt;}
.y94{bottom:243.173333pt;}
.ydb{bottom:245.946667pt;}
.y2d{bottom:249.146667pt;}
.ybe{bottom:250.586667pt;}
.yfa{bottom:255.866667pt;}
.y93{bottom:259.173333pt;}
.y2c{bottom:267.706667pt;}
.ybd{bottom:268.186667pt;}
.yf9{bottom:273.626667pt;}
.yda{bottom:281.946667pt;}
.ybc{bottom:285.946667pt;}
.y2b{bottom:286.266667pt;}
.y5e{bottom:289.306667pt;}
.yf8{bottom:291.226667pt;}
.y96{bottom:298.080000pt;}
.ybb{bottom:303.546667pt;}
.y2a{bottom:304.826667pt;}
.yf7{bottom:308.826667pt;}
.y95{bottom:314.106667pt;}
.yd9{bottom:317.946667pt;}
.yba{bottom:321.306667pt;}
.y29{bottom:323.386667pt;}
.yf6{bottom:326.586667pt;}
.y5d{bottom:329.146667pt;}
.yb9{bottom:338.906667pt;}
.y28{bottom:341.946667pt;}
.yf5{bottom:344.186667pt;}
.y5c{bottom:346.946667pt;}
.yd8{bottom:353.986667pt;}
.yb8{bottom:356.546667pt;}
.y27{bottom:360.546667pt;}
.yf4{bottom:361.986667pt;}
.y5b{bottom:365.346667pt;}
.yb7{bottom:374.306667pt;}
.yd7{bottom:376.226667pt;}
.y26{bottom:379.106667pt;}
.yf3{bottom:379.586667pt;}
.y5a{bottom:383.906667pt;}
.yb6{bottom:391.906667pt;}
.yd6{bottom:393.986667pt;}
.yf2{bottom:397.346667pt;}
.y25{bottom:397.666667pt;}
.y59{bottom:402.466667pt;}
.yb5{bottom:409.666667pt;}
.yd5{bottom:411.586667pt;}
.yf1{bottom:414.946667pt;}
.y24{bottom:416.226667pt;}
.y58{bottom:421.026667pt;}
.yb4{bottom:427.266667pt;}
.yd4{bottom:429.346667pt;}
.yf0{bottom:432.546667pt;}
.y23{bottom:434.786667pt;}
.y57{bottom:439.426667pt;}
.yb3{bottom:444.866667pt;}
.yd3{bottom:446.946667pt;}
.yef{bottom:450.306667pt;}
.y22{bottom:453.346667pt;}
.y56{bottom:457.986667pt;}
.yb2{bottom:462.626667pt;}
.yd2{bottom:464.546667pt;}
.yee{bottom:467.906667pt;}
.y21{bottom:471.906667pt;}
.y55{bottom:476.546667pt;}
.yb1{bottom:480.226667pt;}
.yd1{bottom:482.306667pt;}
.yed{bottom:485.666667pt;}
.y20{bottom:490.466667pt;}
.y54{bottom:495.106667pt;}
.yb0{bottom:497.986667pt;}
.yd0{bottom:499.906667pt;}
.yec{bottom:503.266667pt;}
.y1f{bottom:509.026667pt;}
.y53{bottom:513.666667pt;}
.yce{bottom:514.306667pt;}
.yaf{bottom:515.586667pt;}
.yeb{bottom:520.866667pt;}
.y1e{bottom:527.426667pt;}
.y52{bottom:532.226667pt;}
.yae{bottom:533.346667pt;}
.yea{bottom:538.626667pt;}
.y1d{bottom:545.986667pt;}
.y51{bottom:550.786667pt;}
.yad{bottom:550.946667pt;}
.y83{bottom:552.866667pt;}
.ye9{bottom:556.226667pt;}
.y1c{bottom:564.546667pt;}
.yac{bottom:568.546667pt;}
.y50{bottom:569.373333pt;}
.y82{bottom:570.653333pt;}
.ye8{bottom:574.013333pt;}
.y1b{bottom:583.133333pt;}
.ycd{bottom:585.693333pt;}
.y4f{bottom:587.933333pt;}
.y81{bottom:588.253333pt;}
.ye7{bottom:591.613333pt;}
.yab{bottom:601.373333pt;}
.y1a{bottom:601.693333pt;}
.y80{bottom:606.013333pt;}
.y4e{bottom:606.493333pt;}
.ye6{bottom:609.373333pt;}
.y19{bottom:619.613333pt;}
.yaa{bottom:619.773333pt;}
.ycc{bottom:621.693333pt;}
.y7f{bottom:623.613333pt;}
.y4d{bottom:625.053333pt;}
.ye5{bottom:626.973333pt;}
.y18{bottom:637.213333pt;}
.ya9{bottom:638.013333pt;}
.y7e{bottom:641.373333pt;}
.y4c{bottom:643.613333pt;}
.ye4{bottom:644.573333pt;}
.y17{bottom:654.813333pt;}
.ya8{bottom:656.413333pt;}
.y7d{bottom:658.973333pt;}
.y4b{bottom:662.173333pt;}
.ye3{bottom:662.333333pt;}
.y16{bottom:672.573333pt;}
.ya7{bottom:674.653333pt;}
.yca{bottom:675.453333pt;}
.y7c{bottom:676.573333pt;}
.ye2{bottom:679.933333pt;}
.y4a{bottom:680.733333pt;}
.y15{bottom:690.173333pt;}
.ya6{bottom:693.053333pt;}
.y7b{bottom:694.333333pt;}
.ye1{bottom:697.693333pt;}
.y49{bottom:699.293333pt;}
.y112{bottom:702.813333pt;}
.y14{bottom:707.933333pt;}
.y7a{bottom:711.933333pt;}
.yc9{bottom:715.293333pt;}
.y48{bottom:717.853333pt;}
.y111{bottom:720.573333pt;}
.y13{bottom:725.533333pt;}
.y79{bottom:729.693333pt;}
.yc8{bottom:732.893333pt;}
.y47{bottom:736.253333pt;}
.y110{bottom:738.333333pt;}
.y12{bottom:743.293333pt;}
.y78{bottom:747.293333pt;}
.ya5{bottom:750.653333pt;}
.y46{bottom:754.813333pt;}
.y10f{bottom:755.933333pt;}
.y11{bottom:760.893333pt;}
.y77{bottom:764.893333pt;}
.ya4{bottom:768.253333pt;}
.y45{bottom:773.373333pt;}
.y10e{bottom:773.533333pt;}
.y10{bottom:778.493333pt;}
.y76{bottom:782.653333pt;}
.ya3{bottom:786.013333pt;}
.y10d{bottom:791.293333pt;}
.y44{bottom:791.933333pt;}
.yf{bottom:796.293333pt;}
.y75{bottom:800.293333pt;}
.ya2{bottom:803.653333pt;}
.y10c{bottom:808.933333pt;}
.y43{bottom:810.533333pt;}
.ye{bottom:813.893333pt;}
.y74{bottom:818.053333pt;}
.ya1{bottom:821.413333pt;}
.y10b{bottom:826.693333pt;}
.y42{bottom:829.093333pt;}
.yd{bottom:831.653333pt;}
.y73{bottom:832.453333pt;}
.ya0{bottom:839.013333pt;}
.y10a{bottom:844.293333pt;}
.y41{bottom:847.653333pt;}
.yc{bottom:849.253333pt;}
.y9f{bottom:856.613333pt;}
.y109{bottom:861.893333pt;}
.y40{bottom:866.213333pt;}
.yb{bottom:866.853333pt;}
.y9e{bottom:874.373333pt;}
.y108{bottom:879.653333pt;}
.y3f{bottom:884.773333pt;}
.ya{bottom:885.573333pt;}
.y72{bottom:886.053333pt;}
.y9d{bottom:891.973333pt;}
.y107{bottom:897.253333pt;}
.y3e{bottom:903.333333pt;}
.y9{bottom:907.973333pt;}
.y9c{bottom:909.733333pt;}
.y106{bottom:915.013333pt;}
.y3d{bottom:921.893333pt;}
.y8{bottom:927.333333pt;}
.y105{bottom:932.613333pt;}
.y3c{bottom:940.453333pt;}
.y9b{bottom:944.933333pt;}
.y7{bottom:946.693333pt;}
.y104{bottom:951.333333pt;}
.y71{bottom:957.413333pt;}
.y3b{bottom:959.013333pt;}
.y9a{bottom:962.693333pt;}
.y6{bottom:965.893333pt;}
.y103{bottom:973.573333pt;}
.y3a{bottom:977.573333pt;}
.y99{bottom:980.293333pt;}
.y4{bottom:983.653333pt;}
.y102{bottom:993.093333pt;}
.y39{bottom:996.133333pt;}
.y98{bottom:998.053333pt;}
.y6e{bottom:1011.173333pt;}
.y101{bottom:1012.453333pt;}
.y38{bottom:1014.693333pt;}
.y3{bottom:1015.653333pt;}
.y100{bottom:1032.000000pt;}
.y37{bottom:1033.280000pt;}
.y2{bottom:1033.440000pt;}
.y1{bottom:1061.440000pt;}
.h14{height:17.600000pt;}
.h13{height:17.760000pt;}
.h4{height:28.160000pt;}
.h15{height:35.200000pt;}
.he{height:35.232000pt;}
.hb{height:35.360000pt;}
.h17{height:35.392000pt;}
.h11{height:39.490000pt;}
.h12{height:39.579750pt;}
.h9{height:40.052480pt;}
.h3{height:44.302080pt;}
.ha{height:46.805803pt;}
.h8{height:47.570731pt;}
.h5{height:51.881131pt;}
.h6{height:52.729003pt;}
.h2{height:52.834688pt;}
.hf{height:52.960000pt;}
.hd{height:52.992000pt;}
.h18{height:53.120000pt;}
.h7{height:61.899264pt;}
.hc{height:70.720000pt;}
.h16{height:70.752000pt;}
.h10{height:352.960000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.w6{width:155.386667pt;}
.w7{width:155.706667pt;}
.w5{width:159.226667pt;}
.w4{width:169.146667pt;}
.wa{width:169.466667pt;}
.wc{width:178.466667pt;}
.wb{width:197.466667pt;}
.wf{width:206.946667pt;}
.w11{width:216.506667pt;}
.w10{width:216.666667pt;}
.wd{width:226.106667pt;}
.we{width:235.226667pt;}
.w9{width:273.186667pt;}
.w8{width:585.120000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x1f{left:8.480000pt;}
.x18{left:9.480000pt;}
.x2a{left:10.560000pt;}
.x15{left:11.552000pt;}
.x1b{left:13.306667pt;}
.x1a{left:14.746667pt;}
.x29{left:16.200000pt;}
.x17{left:17.152000pt;}
.x19{left:18.600000pt;}
.x32{left:20.192000pt;}
.x1c{left:21.146667pt;}
.x24{left:22.760000pt;}
.x25{left:25.480000pt;}
.x20{left:26.586667pt;}
.x1d{left:28.506667pt;}
.x46{left:30.912000pt;}
.x4d{left:32.480000pt;}
.x21{left:33.952000pt;}
.x12{left:35.240000pt;}
.x10{left:36.512000pt;}
.x4{left:37.600000pt;}
.x2b{left:40.360000pt;}
.x27{left:42.600000pt;}
.x35{left:43.973333pt;}
.x28{left:45.480000pt;}
.x4a{left:47.360000pt;}
.x1e{left:48.360000pt;}
.x3b{left:49.280000pt;}
.x16{left:50.272000pt;}
.x3c{left:51.200000pt;}
.x51{left:54.400000pt;}
.x26{left:55.392000pt;}
.x34{left:57.253333pt;}
.x3e{left:58.560000pt;}
.xf{left:60.666667pt;}
.x36{left:62.946667pt;}
.x4c{left:64.960000pt;}
.x30{left:65.893333pt;}
.x22{left:67.400000pt;}
.x43{left:68.666667pt;}
.x33{left:69.986667pt;}
.x23{left:71.866667pt;}
.x48{left:74.240000pt;}
.x1{left:75.519988pt;}
.x42{left:77.000000pt;}
.x52{left:78.880000pt;}
.x41{left:80.506667pt;}
.x40{left:81.786667pt;}
.x3f{left:86.120000pt;}
.x50{left:92.986667pt;}
.xa{left:94.431988pt;}
.x44{left:96.351988pt;}
.x2e{left:103.840000pt;}
.x4b{left:105.160000pt;}
.x9{left:113.631988pt;}
.x31{left:122.053333pt;}
.x56{left:133.626655pt;}
.x8{left:135.066655pt;}
.x38{left:139.706655pt;}
.xe{left:149.306655pt;}
.x4e{left:166.586655pt;}
.x55{left:211.386655pt;}
.x2d{left:225.466655pt;}
.x11{left:246.106667pt;}
.x47{left:255.586667pt;}
.x37{left:275.866667pt;}
.x39{left:276.866655pt;}
.x45{left:284.546655pt;}
.x2f{left:286.626667pt;}
.x3{left:289.986667pt;}
.x7{left:327.586655pt;}
.x5{left:334.786667pt;}
.x54{left:337.186655pt;}
.x3a{left:350.146667pt;}
.x2{left:396.866655pt;}
.x13{left:405.986667pt;}
.xb{left:420.573322pt;}
.xc{left:439.453322pt;}
.x49{left:482.493333pt;}
.x4f{left:501.213333pt;}
.x3d{left:520.253333pt;}
.x53{left:530.333322pt;}
.x14{left:562.013333pt;}
.xd{left:655.333322pt;}
.x2c{left:689.893322pt;}
}




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