
    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_fc5543cc3a04a866f7d01157.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_51f35edaeffe600cbc1122a1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130000;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_6b33d4688193fdb401c1551a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_ce82ae1ebd5df8771b922c13.woff')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_4124e0aa08b1a0c7e85307eb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_3d26eab9df88e0677fb901f8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_b7f9a50c1b8089750346f09b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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);}
.m2{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;}
.ls23{letter-spacing:-1.523520px;}
.ls39{letter-spacing:-1.010880px;}
.ls1d{letter-spacing:-0.993600px;}
.ls35{letter-spacing:-0.927360px;}
.ls37{letter-spacing:-0.861120px;}
.ls26{letter-spacing:-0.794880px;}
.ls1f{letter-spacing:-0.728640px;}
.ls33{letter-spacing:-0.662400px;}
.ls34{letter-spacing:-0.622080px;}
.lsb{letter-spacing:-0.530640px;}
.ls1b{letter-spacing:-0.529920px;}
.ls27{letter-spacing:-0.463680px;}
.ls21{letter-spacing:-0.397440px;}
.ls7{letter-spacing:-0.341280px;}
.lsa{letter-spacing:-0.337680px;}
.ls2d{letter-spacing:-0.331200px;}
.ls12{letter-spacing:-0.298800px;}
.ls6{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.264960px;}
.ls14{letter-spacing:-0.239040px;}
.ls38{letter-spacing:-0.233280px;}
.ls4{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.198720px;}
.ls9{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.132480px;}
.ls8{letter-spacing:-0.113760px;}
.ls18{letter-spacing:-0.066240px;}
.ls13{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.054000px;}
.ls20{letter-spacing:0.066240px;}
.ls25{letter-spacing:0.080640px;}
.ls36{letter-spacing:0.091872px;}
.lsd{letter-spacing:0.095616px;}
.ls15{letter-spacing:0.095760px;}
.ls2e{letter-spacing:0.099360px;}
.lsf{letter-spacing:0.105984px;}
.ls1{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.125856px;}
.lse{letter-spacing:0.132480px;}
.ls29{letter-spacing:0.149760px;}
.ls1a{letter-spacing:0.168480px;}
.ls30{letter-spacing:0.178848px;}
.lsc{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.198720px;}
.ls19{letter-spacing:0.264960px;}
.ls2b{letter-spacing:0.284832px;}
.ls32{letter-spacing:0.300672px;}
.ls2f{letter-spacing:0.311040px;}
.ls22{letter-spacing:0.331200px;}
.ls2c{letter-spacing:0.397440px;}
.ls28{letter-spacing:0.437184px;}
.ls2a{letter-spacing:0.463680px;}
.ls10{letter-spacing:0.470304px;}
.ls31{letter-spacing:0.483552px;}
.ls24{letter-spacing:4.438080px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-38.340000px;}
.ws2{word-spacing:-37.980000px;}
.ws1{word-spacing:-24.003360px;}
.ws0{word-spacing:-23.775840px;}
.ws11{word-spacing:-21.737520px;}
.ws56{word-spacing:-17.340480px;}
.ws59{word-spacing:-16.951680px;}
.ws13{word-spacing:-15.235200px;}
.ws51{word-spacing:-15.168960px;}
.ws47{word-spacing:-15.102720px;}
.ws17{word-spacing:-15.036480px;}
.ws14{word-spacing:-14.970240px;}
.ws36{word-spacing:-14.904000px;}
.ws45{word-spacing:-14.837760px;}
.ws35{word-spacing:-14.771520px;}
.ws12{word-spacing:-14.705280px;}
.ws49{word-spacing:-14.506560px;}
.ws15{word-spacing:-14.440320px;}
.ws50{word-spacing:-14.307840px;}
.ws16{word-spacing:-14.241600px;}
.ws4f{word-spacing:-14.175360px;}
.ws55{word-spacing:-14.109120px;}
.ws52{word-spacing:-14.042880px;}
.wsf{word-spacing:-13.505760px;}
.wse{word-spacing:-13.446000px;}
.ws10{word-spacing:-13.266720px;}
.ws4{word-spacing:-9.889200px;}
.ws2f{word-spacing:-2.649600px;}
.ws30{word-spacing:-1.192320px;}
.ws24{word-spacing:-0.927360px;}
.ws4d{word-spacing:-0.861120px;}
.ws40{word-spacing:-0.728640px;}
.ws53{word-spacing:-0.662400px;}
.ws4a{word-spacing:-0.622080px;}
.ws26{word-spacing:-0.529920px;}
.ws1d{word-spacing:-0.505440px;}
.ws4c{word-spacing:-0.463680px;}
.ws4b{word-spacing:-0.397440px;}
.ws1e{word-spacing:-0.331200px;}
.ws58{word-spacing:-0.311040px;}
.ws23{word-spacing:-0.264960px;}
.ws46{word-spacing:-0.132480px;}
.ws1f{word-spacing:-0.066240px;}
.ws7{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws2d{word-spacing:0.066240px;}
.ws1b{word-spacing:0.132480px;}
.wsb{word-spacing:0.180000px;}
.ws1c{word-spacing:0.198720px;}
.ws8{word-spacing:0.216000px;}
.ws19{word-spacing:0.239040px;}
.ws3f{word-spacing:0.264960px;}
.ws6{word-spacing:0.270000px;}
.ws54{word-spacing:0.311040px;}
.ws9{word-spacing:0.324000px;}
.ws21{word-spacing:0.331200px;}
.wsc{word-spacing:0.337680px;}
.ws1a{word-spacing:0.397440px;}
.ws48{word-spacing:0.463680px;}
.ws18{word-spacing:0.478080px;}
.ws22{word-spacing:0.529920px;}
.wsd{word-spacing:0.530640px;}
.ws41{word-spacing:0.596160px;}
.wsa{word-spacing:0.682560px;}
.ws5a{word-spacing:0.699840px;}
.ws43{word-spacing:0.728640px;}
.ws4e{word-spacing:0.794880px;}
.ws57{word-spacing:0.861120px;}
.ws2b{word-spacing:0.927360px;}
.ws20{word-spacing:0.993600px;}
.ws2a{word-spacing:1.126080px;}
.ws34{word-spacing:1.523520px;}
.ws2e{word-spacing:2.384640px;}
.ws39{word-spacing:3.113280px;}
.ws32{word-spacing:3.841920px;}
.ws42{word-spacing:4.040640px;}
.ws3d{word-spacing:4.504320px;}
.ws3e{word-spacing:4.636800px;}
.ws29{word-spacing:5.232960px;}
.ws31{word-spacing:5.762880px;}
.ws2c{word-spacing:5.961600px;}
.ws3b{word-spacing:6.160320px;}
.ws3a{word-spacing:6.690240px;}
.ws25{word-spacing:7.418880px;}
.ws33{word-spacing:11.724480px;}
.ws37{word-spacing:13.910400px;}
.ws38{word-spacing:14.109120px;}
.ws28{word-spacing:14.440320px;}
.ws27{word-spacing:14.639040px;}
.ws3c{word-spacing:16.030080px;}
.ws44{word-spacing:23.250240px;}
._4{margin-left:-10.664640px;}
._3{margin-left:-9.362880px;}
._5{margin-left:-5.829120px;}
._2{margin-left:-4.273920px;}
._1{margin-left:-1.209600px;}
._0{width:1.425600px;}
._6{width:2.441664px;}
._7{width:194.788800px;}
.fc7{color:rgb(46,116,181);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc3{color:rgb(255,192,0);}
.fc2{color:rgb(255,204,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:69.120000px;}
.fsb{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs5{font-size:113.760000px;}
.fs6{font-size:180.000000px;}
.fs4{font-size:210.240000px;}
.fs3{font-size:450.000000px;}
.y24{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.y94{bottom:4.500000px;}
.y2b{bottom:10.260000px;}
.y26{bottom:16.200000px;}
.y2c{bottom:20.880000px;}
.y28{bottom:27.540000px;}
.y30{bottom:39.060000px;}
.y3b{bottom:57.060000px;}
.y98{bottom:64.980000px;}
.y3a{bottom:75.960000px;}
.y2f{bottom:82.080000px;}
.y39{bottom:95.578740px;}
.y9c{bottom:105.300000px;}
.y38{bottom:113.940000px;}
.y20{bottom:116.820000px;}
.y37{bottom:132.666480px;}
.y2e{bottom:139.680000px;}
.y36{bottom:152.820000px;}
.y33{bottom:153.360000px;}
.y2a{bottom:162.180000px;}
.y1e{bottom:162.539280px;}
.y11f{bottom:173.523600px;}
.y2d{bottom:176.400000px;}
.y61{bottom:182.929680px;}
.y8b{bottom:185.760000px;}
.y97{bottom:186.840000px;}
.y86{bottom:192.780000px;}
.y13d{bottom:195.120000px;}
.y11e{bottom:195.300000px;}
.y1d{bottom:196.371360px;}
.y60{bottom:204.706080px;}
.yfe{bottom:205.380000px;}
.y9a{bottom:211.500000px;}
.y29{bottom:211.860000px;}
.y85{bottom:214.560000px;}
.y35{bottom:220.140000px;}
.y5f{bottom:226.482480px;}
.y13c{bottom:228.780000px;}
.y1c{bottom:230.037840px;}
.y99{bottom:231.660000px;}
.y11d{bottom:235.095840px;}
.y84{bottom:236.376720px;}
.yc9{bottom:238.680000px;}
.yfd{bottom:239.220000px;}
.y5e{bottom:248.076720px;}
.y11c{bottom:256.690080px;}
.y32{bottom:260.640000px;}
.y13b{bottom:262.620000px;}
.y1b{bottom:263.869920px;}
.y96{bottom:267.480000px;}
.y5d{bottom:269.853120px;}
.y83{bottom:270.043200px;}
.yfc{bottom:272.880000px;}
.y11b{bottom:278.466480px;}
.y5c{bottom:291.629520px;}
.yfb{bottom:294.660000px;}
.y13a{bottom:296.280000px;}
.y1a{bottom:297.536400px;}
.y82{bottom:303.875280px;}
.ydc{bottom:304.740000px;}
.y11a{bottom:318.243600px;}
.ydb{bottom:324.976320px;}
.y5b{bottom:325.296000px;}
.y81{bottom:325.651680px;}
.yfa{bottom:328.320000px;}
.y139{bottom:329.940000px;}
.y19{bottom:331.202880px;}
.y119{bottom:340.020000px;}
.yda{bottom:345.129840px;}
.y5a{bottom:347.072400px;}
.y80{bottom:347.245920px;}
.y138{bottom:363.780000px;}
.y18{bottom:365.034960px;}
.yd9{bottom:365.283360px;}
.yf9{bottom:366.483600px;}
.y59{bottom:368.848800px;}
.y118{bottom:373.683600px;}
.y7f{bottom:381.078000px;}
.yd8{bottom:385.436880px;}
.yf8{bottom:388.260000px;}
.y58{bottom:390.625200px;}
.y117{bottom:395.460000px;}
.y137{bottom:397.440000px;}
.y17{bottom:398.701440px;}
.y7e{bottom:402.672240px;}
.y34{bottom:404.460000px;}
.yd7{bottom:405.590400px;}
.yf7{bottom:410.040000px;}
.y57{bottom:412.219440px;}
.ya2{bottom:412.920000px;}
.y116{bottom:417.257280px;}
.yba{bottom:424.260000px;}
.y7d{bottom:424.448640px;}
.yd6{bottom:425.743920px;}
.yca{bottom:428.760000px;}
.y136{bottom:431.273520px;}
.yf6{bottom:431.820000px;}
.y16{bottom:432.533520px;}
.y56{bottom:433.995840px;}
.y115{bottom:438.851520px;}
.yd5{bottom:445.897440px;}
.y7c{bottom:446.225040px;}
.yf5{bottom:453.427920px;}
.y55{bottom:455.772240px;}
.y114{bottom:460.627920px;}
.y135{bottom:464.940000px;}
.yd4{bottom:466.050960px;}
.y15{bottom:466.200000px;}
.y7b{bottom:468.001440px;}
.y54{bottom:477.548640px;}
.y31{bottom:480.780000px;}
.yd3{bottom:486.038880px;}
.yf4{bottom:487.260000px;}
.y134{bottom:487.620000px;}
.y153{bottom:493.021440px;}
.y113{bottom:494.460000px;}
.y14{bottom:500.032080px;}
.y7a{bottom:501.667920px;}
.yd2{bottom:506.192400px;}
.yf3{bottom:508.867920px;}
.y53{bottom:511.215120px;}
.y133{bottom:516.240000px;}
.y112{bottom:517.140000px;}
.y79{bottom:523.444320px;}
.yd1{bottom:526.345920px;}
.y152{bottom:526.853520px;}
.y52{bottom:532.991520px;}
.y13{bottom:533.698560px;}
.yf2{bottom:542.700000px;}
.y78{bottom:545.220720px;}
.y111{bottom:545.760000px;}
.yd0{bottom:546.499440px;}
.y132{bottom:553.156560px;}
.y51{bottom:554.767920px;}
.yb8{bottom:557.819280px;}
.y151{bottom:560.520000px;}
.yf1{bottom:564.480000px;}
.ycf{bottom:566.652960px;}
.y12{bottom:567.365040px;}
.y131{bottom:574.750800px;}
.y50{bottom:576.362160px;}
.y77{bottom:578.887200px;}
.y110{bottom:582.480000px;}
.yce{bottom:586.806480px;}
.yb7{bottom:591.485760px;}
.y150{bottom:594.365760px;}
.y130{bottom:596.527200px;}
.y4f{bottom:598.138560px;}
.y95{bottom:598.320000px;}
.y76{bottom:600.663600px;}
.y11{bottom:601.197120px;}
.yf0{bottom:604.080000px;}
.y10f{bottom:604.260000px;}
.ycd{bottom:606.960000px;}
.ya1{bottom:607.140000px;}
.y8a{bottom:613.980000px;}
.y14f{bottom:615.960000px;}
.yb6{bottom:617.220000px;}
.y12f{bottom:618.303600px;}
.y4e{bottom:619.914960px;}
.y75{bottom:622.440000px;}
.yef{bottom:625.860000px;}
.y10e{bottom:626.040000px;}
.ycc{bottom:627.126480px;}
.y10{bottom:634.863600px;}
.yb5{bottom:637.380000px;}
.y14e{bottom:637.740000px;}
.y93{bottom:638.670960px;}
.y12e{bottom:640.080000px;}
.y74{bottom:644.040000px;}
.ycb{bottom:647.280000px;}
.y4d{bottom:653.581440px;}
.yb4{bottom:657.629280px;}
.y92{bottom:658.824480px;}
.y10d{bottom:659.700000px;}
.yee{bottom:665.643600px;}
.yf{bottom:668.695680px;}
.y14d{bottom:671.400000px;}
.y12d{bottom:673.747200px;}
.y4c{bottom:675.357840px;}
.yb3{bottom:677.782800px;}
.y73{bottom:677.880000px;}
.y91{bottom:678.978000px;}
.y10c{bottom:681.480000px;}
.yed{bottom:687.420000px;}
.y14c{bottom:693.180000px;}
.y12c{bottom:695.523600px;}
.y4b{bottom:697.134240px;}
.yb2{bottom:697.936320px;}
.y90{bottom:699.131520px;}
.y72{bottom:700.918740px;}
.yc8{bottom:701.103600px;}
.ye{bottom:702.362160px;}
.y10b{bottom:715.140000px;}
.yb9{bottom:716.760000px;}
.y12b{bottom:717.300000px;}
.yb1{bottom:718.089840px;}
.y8f{bottom:719.119440px;}
.yec{bottom:721.080000px;}
.y14b{bottom:727.020000px;}
.y4a{bottom:730.800720px;}
.yd{bottom:736.194240px;}
.yb0{bottom:738.243360px;}
.y12a{bottom:738.900000px;}
.y8e{bottom:739.272960px;}
.y71{bottom:746.640000px;}
.y14a{bottom:748.620000px;}
.y49{bottom:752.577120px;}
.y10a{bottom:754.920000px;}
.yeb{bottom:754.925760px;}
.yaf{bottom:758.396880px;}
.y8d{bottom:759.426480px;}
.y129{bottom:760.673520px;}
.yc{bottom:769.860720px;}
.y48{bottom:774.353520px;}
.yea{bottom:776.520000px;}
.y109{bottom:776.700000px;}
.yae{bottom:778.550400px;}
.y8c{bottom:779.580000px;}
.y149{bottom:782.463600px;}
.y70{bottom:790.920000px;}
.y128{bottom:794.340000px;}
.ye9{bottom:798.293520px;}
.y108{bottom:798.311520px;}
.yad{bottom:798.538320px;}
.yb{bottom:803.527200px;}
.y148{bottom:804.240000px;}
.y47{bottom:808.020000px;}
.y6f{bottom:812.705760px;}
.y89{bottom:815.400000px;}
.y127{bottom:817.020000px;}
.yac{bottom:818.691840px;}
.y107{bottom:820.087920px;}
.y1f{bottom:823.140000px;}
.y147{bottom:825.840000px;}
.y46{bottom:831.240000px;}
.ye8{bottom:831.960000px;}
.y6e{bottom:834.300000px;}
.ya{bottom:837.359280px;}
.yc7{bottom:838.800000px;}
.yab{bottom:838.845360px;}
.y23{bottom:852.124500px;}
.ye7{bottom:853.747920px;}
.y106{bottom:853.920000px;}
.yc6{bottom:858.960000px;}
.yaa{bottom:858.998880px;}
.y146{bottom:859.680000px;}
.y6d{bottom:868.140000px;}
.y9{bottom:871.025760px;}
.y45{bottom:875.496240px;}
.y105{bottom:875.520000px;}
.ya9{bottom:879.152400px;}
.yc5{bottom:879.170400px;}
.y145{bottom:881.280000px;}
.y22{bottom:881.460000px;}
.ye6{bottom:887.580000px;}
.y6c{bottom:889.970400px;}
.y104{bottom:897.303600px;}
.ya8{bottom:899.305920px;}
.yc4{bottom:899.323920px;}
.y44{bottom:904.658400px;}
.y8{bottom:904.857840px;}
.ye5{bottom:909.180000px;}
.y126{bottom:909.363600px;}
.y21{bottom:910.620000px;}
.y6b{bottom:911.564640px;}
.y144{bottom:915.120000px;}
.y103{bottom:919.080000px;}
.ya7{bottom:919.459440px;}
.yc3{bottom:919.477440px;}
.ye4{bottom:930.960000px;}
.y125{bottom:931.140000px;}
.y43{bottom:933.820560px;}
.y143{bottom:936.893520px;}
.y7{bottom:938.524320px;}
.ya6{bottom:939.612960px;}
.yc2{bottom:939.630960px;}
.y6a{bottom:945.396720px;}
.ye3{bottom:952.740000px;}
.y27{bottom:953.460000px;}
.ya5{bottom:959.766480px;}
.yc1{bottom:959.784480px;}
.y42{bottom:963.164880px;}
.y124{bottom:964.800000px;}
.y69{bottom:967.173120px;}
.y142{bottom:970.560000px;}
.y6{bottom:972.190800px;}
.ye2{bottom:974.520000px;}
.ya4{bottom:979.920000px;}
.yc0{bottom:979.938000px;}
.y123{bottom:986.580000px;}
.y68{bottom:988.767360px;}
.y41{bottom:992.327040px;}
.y141{bottom:993.240000px;}
.ya3{bottom:999.900000px;}
.ybf{bottom:999.925920px;}
.y5{bottom:1006.022880px;}
.ye1{bottom:1008.180000px;}
.y122{bottom:1008.191520px;}
.y67{bottom:1010.543760px;}
.ybe{bottom:1020.079440px;}
.y40{bottom:1021.671360px;}
.y25{bottom:1024.380000px;}
.y140{bottom:1029.963600px;}
.ye0{bottom:1030.860000px;}
.y66{bottom:1032.320160px;}
.y9b{bottom:1035.720000px;}
.y4{bottom:1039.689360px;}
.ybd{bottom:1040.232960px;}
.y102{bottom:1042.020000px;}
.y121{bottom:1042.023600px;}
.y3f{bottom:1050.833520px;}
.y13f{bottom:1051.740000px;}
.y65{bottom:1054.096560px;}
.ya0{bottom:1060.380000px;}
.ybc{bottom:1060.386480px;}
.y101{bottom:1063.800000px;}
.ydf{bottom:1067.580000px;}
.y13e{bottom:1073.520000px;}
.y3{bottom:1073.521440px;}
.y64{bottom:1075.690800px;}
.y3e{bottom:1080.177840px;}
.ybb{bottom:1080.540000px;}
.y9f{bottom:1080.552960px;}
.y100{bottom:1085.400000px;}
.y88{bottom:1085.403600px;}
.yde{bottom:1090.798740px;}
.y120{bottom:1097.460000px;}
.y63{bottom:1097.467200px;}
.y9e{bottom:1100.706480px;}
.y87{bottom:1107.180000px;}
.y2{bottom:1107.187920px;}
.y3d{bottom:1109.340000px;}
.yff{bottom:1119.240000px;}
.y62{bottom:1119.243600px;}
.y9d{bottom:1120.860000px;}
.y3c{bottom:1133.820000px;}
.ydd{bottom:1136.520000px;}
.y1{bottom:1141.020000px;}
.h10{height:32.693906px;}
.hb{height:36.901500px;}
.he{height:43.898400px;}
.h14{height:46.057500px;}
.h4{height:49.140000px;}
.h11{height:49.284492px;}
.h1f{height:53.156250px;}
.h1d{height:54.067500px;}
.h2{height:54.628594px;}
.h1e{height:54.654514px;}
.h13{height:58.573125px;}
.h5{height:62.899200px;}
.h12{height:66.583125px;}
.h8{height:76.680000px;}
.h18{height:80.640000px;}
.ha{height:103.521600px;}
.h19{height:120.960000px;}
.h6{height:121.500000px;}
.h3{height:129.420000px;}
.hd{height:163.800000px;}
.h9{height:191.318400px;}
.h16{height:201.420000px;}
.hc{height:218.518500px;}
.hf{height:230.938500px;}
.h15{height:252.000000px;}
.h17{height:312.841500px;}
.h7{height:409.500000px;}
.h1a{height:428.580000px;}
.h1b{height:439.920000px;}
.h1c{height:444.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:29.341500px;}
.w2{width:283.680000px;}
.w4{width:301.140000px;}
.w3{width:312.840000px;}
.w5{width:313.560000px;}
.w9{width:318.420000px;}
.wa{width:318.600000px;}
.w6{width:500.938500px;}
.w8{width:637.020000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.260000px;}
.x1c{left:8.100000px;}
.xc{left:13.860000px;}
.xa{left:16.380000px;}
.x9{left:21.420000px;}
.x4{left:27.900000px;}
.xb{left:31.500000px;}
.xd{left:33.480000px;}
.xe{left:58.500000px;}
.x6{left:70.740000px;}
.x5{left:79.560000px;}
.x10{left:94.500000px;}
.x7{left:116.275500px;}
.x1{left:127.620000px;}
.x1d{left:135.720000px;}
.x8{left:141.840000px;}
.x1a{left:144.213120px;}
.x2{left:169.914240px;}
.x17{left:201.240000px;}
.x1f{left:278.100000px;}
.x21{left:296.100000px;}
.xf{left:346.500000px;}
.x13{left:357.300000px;}
.x18{left:404.797500px;}
.x22{left:436.140000px;}
.x19{left:440.460000px;}
.x3{left:446.400000px;}
.x12{left:451.980000px;}
.x20{left:454.140000px;}
.x11{left:473.400000px;}
.x1e{left:533.340000px;}
.x1b{left:536.760000px;}
.x15{left:857.700000px;}
.x14{left:874.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-1.354240pt;}
.ls39{letter-spacing:-0.898560pt;}
.ls1d{letter-spacing:-0.883200pt;}
.ls35{letter-spacing:-0.824320pt;}
.ls37{letter-spacing:-0.765440pt;}
.ls26{letter-spacing:-0.706560pt;}
.ls1f{letter-spacing:-0.647680pt;}
.ls33{letter-spacing:-0.588800pt;}
.ls34{letter-spacing:-0.552960pt;}
.lsb{letter-spacing:-0.471680pt;}
.ls1b{letter-spacing:-0.471040pt;}
.ls27{letter-spacing:-0.412160pt;}
.ls21{letter-spacing:-0.353280pt;}
.ls7{letter-spacing:-0.303360pt;}
.lsa{letter-spacing:-0.300160pt;}
.ls2d{letter-spacing:-0.294400pt;}
.ls12{letter-spacing:-0.265600pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.235520pt;}
.ls14{letter-spacing:-0.212480pt;}
.ls38{letter-spacing:-0.207360pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.176640pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.117760pt;}
.ls8{letter-spacing:-0.101120pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls13{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.048000pt;}
.ls20{letter-spacing:0.058880pt;}
.ls25{letter-spacing:0.071680pt;}
.ls36{letter-spacing:0.081664pt;}
.lsd{letter-spacing:0.084992pt;}
.ls15{letter-spacing:0.085120pt;}
.ls2e{letter-spacing:0.088320pt;}
.lsf{letter-spacing:0.094208pt;}
.ls1{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.111872pt;}
.lse{letter-spacing:0.117760pt;}
.ls29{letter-spacing:0.133120pt;}
.ls1a{letter-spacing:0.149760pt;}
.ls30{letter-spacing:0.158976pt;}
.lsc{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.176640pt;}
.ls19{letter-spacing:0.235520pt;}
.ls2b{letter-spacing:0.253184pt;}
.ls32{letter-spacing:0.267264pt;}
.ls2f{letter-spacing:0.276480pt;}
.ls22{letter-spacing:0.294400pt;}
.ls2c{letter-spacing:0.353280pt;}
.ls28{letter-spacing:0.388608pt;}
.ls2a{letter-spacing:0.412160pt;}
.ls10{letter-spacing:0.418048pt;}
.ls31{letter-spacing:0.429824pt;}
.ls24{letter-spacing:3.944960pt;}
.ws3{word-spacing:-34.080000pt;}
.ws2{word-spacing:-33.760000pt;}
.ws1{word-spacing:-21.336320pt;}
.ws0{word-spacing:-21.134080pt;}
.ws11{word-spacing:-19.322240pt;}
.ws56{word-spacing:-15.413760pt;}
.ws59{word-spacing:-15.068160pt;}
.ws13{word-spacing:-13.542400pt;}
.ws51{word-spacing:-13.483520pt;}
.ws47{word-spacing:-13.424640pt;}
.ws17{word-spacing:-13.365760pt;}
.ws14{word-spacing:-13.306880pt;}
.ws36{word-spacing:-13.248000pt;}
.ws45{word-spacing:-13.189120pt;}
.ws35{word-spacing:-13.130240pt;}
.ws12{word-spacing:-13.071360pt;}
.ws49{word-spacing:-12.894720pt;}
.ws15{word-spacing:-12.835840pt;}
.ws50{word-spacing:-12.718080pt;}
.ws16{word-spacing:-12.659200pt;}
.ws4f{word-spacing:-12.600320pt;}
.ws55{word-spacing:-12.541440pt;}
.ws52{word-spacing:-12.482560pt;}
.wsf{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.952000pt;}
.ws10{word-spacing:-11.792640pt;}
.ws4{word-spacing:-8.790400pt;}
.ws2f{word-spacing:-2.355200pt;}
.ws30{word-spacing:-1.059840pt;}
.ws24{word-spacing:-0.824320pt;}
.ws4d{word-spacing:-0.765440pt;}
.ws40{word-spacing:-0.647680pt;}
.ws53{word-spacing:-0.588800pt;}
.ws4a{word-spacing:-0.552960pt;}
.ws26{word-spacing:-0.471040pt;}
.ws1d{word-spacing:-0.449280pt;}
.ws4c{word-spacing:-0.412160pt;}
.ws4b{word-spacing:-0.353280pt;}
.ws1e{word-spacing:-0.294400pt;}
.ws58{word-spacing:-0.276480pt;}
.ws23{word-spacing:-0.235520pt;}
.ws46{word-spacing:-0.117760pt;}
.ws1f{word-spacing:-0.058880pt;}
.ws7{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.058880pt;}
.ws1b{word-spacing:0.117760pt;}
.wsb{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.176640pt;}
.ws8{word-spacing:0.192000pt;}
.ws19{word-spacing:0.212480pt;}
.ws3f{word-spacing:0.235520pt;}
.ws6{word-spacing:0.240000pt;}
.ws54{word-spacing:0.276480pt;}
.ws9{word-spacing:0.288000pt;}
.ws21{word-spacing:0.294400pt;}
.wsc{word-spacing:0.300160pt;}
.ws1a{word-spacing:0.353280pt;}
.ws48{word-spacing:0.412160pt;}
.ws18{word-spacing:0.424960pt;}
.ws22{word-spacing:0.471040pt;}
.wsd{word-spacing:0.471680pt;}
.ws41{word-spacing:0.529920pt;}
.wsa{word-spacing:0.606720pt;}
.ws5a{word-spacing:0.622080pt;}
.ws43{word-spacing:0.647680pt;}
.ws4e{word-spacing:0.706560pt;}
.ws57{word-spacing:0.765440pt;}
.ws2b{word-spacing:0.824320pt;}
.ws20{word-spacing:0.883200pt;}
.ws2a{word-spacing:1.000960pt;}
.ws34{word-spacing:1.354240pt;}
.ws2e{word-spacing:2.119680pt;}
.ws39{word-spacing:2.767360pt;}
.ws32{word-spacing:3.415040pt;}
.ws42{word-spacing:3.591680pt;}
.ws3d{word-spacing:4.003840pt;}
.ws3e{word-spacing:4.121600pt;}
.ws29{word-spacing:4.651520pt;}
.ws31{word-spacing:5.122560pt;}
.ws2c{word-spacing:5.299200pt;}
.ws3b{word-spacing:5.475840pt;}
.ws3a{word-spacing:5.946880pt;}
.ws25{word-spacing:6.594560pt;}
.ws33{word-spacing:10.421760pt;}
.ws37{word-spacing:12.364800pt;}
.ws38{word-spacing:12.541440pt;}
.ws28{word-spacing:12.835840pt;}
.ws27{word-spacing:13.012480pt;}
.ws3c{word-spacing:14.248960pt;}
.ws44{word-spacing:20.666880pt;}
._4{margin-left:-9.479680pt;}
._3{margin-left:-8.322560pt;}
._5{margin-left:-5.181440pt;}
._2{margin-left:-3.799040pt;}
._1{margin-left:-1.075200pt;}
._0{width:1.267200pt;}
._6{width:2.170368pt;}
._7{width:173.145600pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:61.440000pt;}
.fsb{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs5{font-size:101.120000pt;}
.fs6{font-size:160.000000pt;}
.fs4{font-size:186.880000pt;}
.fs3{font-size:400.000000pt;}
.y24{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:4.000000pt;}
.y2b{bottom:9.120000pt;}
.y26{bottom:14.400000pt;}
.y2c{bottom:18.560000pt;}
.y28{bottom:24.480000pt;}
.y30{bottom:34.720000pt;}
.y3b{bottom:50.720000pt;}
.y98{bottom:57.760000pt;}
.y3a{bottom:67.520000pt;}
.y2f{bottom:72.960000pt;}
.y39{bottom:84.958880pt;}
.y9c{bottom:93.600000pt;}
.y38{bottom:101.280000pt;}
.y20{bottom:103.840000pt;}
.y37{bottom:117.925760pt;}
.y2e{bottom:124.160000pt;}
.y36{bottom:135.840000pt;}
.y33{bottom:136.320000pt;}
.y2a{bottom:144.160000pt;}
.y1e{bottom:144.479360pt;}
.y11f{bottom:154.243200pt;}
.y2d{bottom:156.800000pt;}
.y61{bottom:162.604160pt;}
.y8b{bottom:165.120000pt;}
.y97{bottom:166.080000pt;}
.y86{bottom:171.360000pt;}
.y13d{bottom:173.440000pt;}
.y11e{bottom:173.600000pt;}
.y1d{bottom:174.552320pt;}
.y60{bottom:181.960960pt;}
.yfe{bottom:182.560000pt;}
.y9a{bottom:188.000000pt;}
.y29{bottom:188.320000pt;}
.y85{bottom:190.720000pt;}
.y35{bottom:195.680000pt;}
.y5f{bottom:201.317760pt;}
.y13c{bottom:203.360000pt;}
.y1c{bottom:204.478080pt;}
.y99{bottom:205.920000pt;}
.y11d{bottom:208.974080pt;}
.y84{bottom:210.112640pt;}
.yc9{bottom:212.160000pt;}
.yfd{bottom:212.640000pt;}
.y5e{bottom:220.512640pt;}
.y11c{bottom:228.168960pt;}
.y32{bottom:231.680000pt;}
.y13b{bottom:233.440000pt;}
.y1b{bottom:234.551040pt;}
.y96{bottom:237.760000pt;}
.y5d{bottom:239.869440pt;}
.y83{bottom:240.038400pt;}
.yfc{bottom:242.560000pt;}
.y11b{bottom:247.525760pt;}
.y5c{bottom:259.226240pt;}
.yfb{bottom:261.920000pt;}
.y13a{bottom:263.360000pt;}
.y1a{bottom:264.476800pt;}
.y82{bottom:270.111360pt;}
.ydc{bottom:270.880000pt;}
.y11a{bottom:282.883200pt;}
.ydb{bottom:288.867840pt;}
.y5b{bottom:289.152000pt;}
.y81{bottom:289.468160pt;}
.yfa{bottom:291.840000pt;}
.y139{bottom:293.280000pt;}
.y19{bottom:294.402560pt;}
.y119{bottom:302.240000pt;}
.yda{bottom:306.782080pt;}
.y5a{bottom:308.508800pt;}
.y80{bottom:308.663040pt;}
.y138{bottom:323.360000pt;}
.y18{bottom:324.475520pt;}
.yd9{bottom:324.696320pt;}
.yf9{bottom:325.763200pt;}
.y59{bottom:327.865600pt;}
.y118{bottom:332.163200pt;}
.y7f{bottom:338.736000pt;}
.yd8{bottom:342.610560pt;}
.yf8{bottom:345.120000pt;}
.y58{bottom:347.222400pt;}
.y117{bottom:351.520000pt;}
.y137{bottom:353.280000pt;}
.y17{bottom:354.401280pt;}
.y7e{bottom:357.930880pt;}
.y34{bottom:359.520000pt;}
.yd7{bottom:360.524800pt;}
.yf7{bottom:364.480000pt;}
.y57{bottom:366.417280pt;}
.ya2{bottom:367.040000pt;}
.y116{bottom:370.895360pt;}
.yba{bottom:377.120000pt;}
.y7d{bottom:377.287680pt;}
.yd6{bottom:378.439040pt;}
.yca{bottom:381.120000pt;}
.y136{bottom:383.354240pt;}
.yf6{bottom:383.840000pt;}
.y16{bottom:384.474240pt;}
.y56{bottom:385.774080pt;}
.y115{bottom:390.090240pt;}
.yd5{bottom:396.353280pt;}
.y7c{bottom:396.644480pt;}
.yf5{bottom:403.047040pt;}
.y55{bottom:405.130880pt;}
.y114{bottom:409.447040pt;}
.y135{bottom:413.280000pt;}
.yd4{bottom:414.267520pt;}
.y15{bottom:414.400000pt;}
.y7b{bottom:416.001280pt;}
.y54{bottom:424.487680pt;}
.y31{bottom:427.360000pt;}
.yd3{bottom:432.034560pt;}
.yf4{bottom:433.120000pt;}
.y134{bottom:433.440000pt;}
.y153{bottom:438.241280pt;}
.y113{bottom:439.520000pt;}
.y14{bottom:444.472960pt;}
.y7a{bottom:445.927040pt;}
.yd2{bottom:449.948800pt;}
.yf3{bottom:452.327040pt;}
.y53{bottom:454.413440pt;}
.y133{bottom:458.880000pt;}
.y112{bottom:459.680000pt;}
.y79{bottom:465.283840pt;}
.yd1{bottom:467.863040pt;}
.y152{bottom:468.314240pt;}
.y52{bottom:473.770240pt;}
.y13{bottom:474.398720pt;}
.yf2{bottom:482.400000pt;}
.y78{bottom:484.640640pt;}
.y111{bottom:485.120000pt;}
.yd0{bottom:485.777280pt;}
.y132{bottom:491.694720pt;}
.y51{bottom:493.127040pt;}
.yb8{bottom:495.839360pt;}
.y151{bottom:498.240000pt;}
.yf1{bottom:501.760000pt;}
.ycf{bottom:503.691520pt;}
.y12{bottom:504.324480pt;}
.y131{bottom:510.889600pt;}
.y50{bottom:512.321920pt;}
.y77{bottom:514.566400pt;}
.y110{bottom:517.760000pt;}
.yce{bottom:521.605760pt;}
.yb7{bottom:525.765120pt;}
.y150{bottom:528.325120pt;}
.y130{bottom:530.246400pt;}
.y4f{bottom:531.678720pt;}
.y95{bottom:531.840000pt;}
.y76{bottom:533.923200pt;}
.y11{bottom:534.397440pt;}
.yf0{bottom:536.960000pt;}
.y10f{bottom:537.120000pt;}
.ycd{bottom:539.520000pt;}
.ya1{bottom:539.680000pt;}
.y8a{bottom:545.760000pt;}
.y14f{bottom:547.520000pt;}
.yb6{bottom:548.640000pt;}
.y12f{bottom:549.603200pt;}
.y4e{bottom:551.035520pt;}
.y75{bottom:553.280000pt;}
.yef{bottom:556.320000pt;}
.y10e{bottom:556.480000pt;}
.ycc{bottom:557.445760pt;}
.y10{bottom:564.323200pt;}
.yb5{bottom:566.560000pt;}
.y14e{bottom:566.880000pt;}
.y93{bottom:567.707520pt;}
.y12e{bottom:568.960000pt;}
.y74{bottom:572.480000pt;}
.ycb{bottom:575.360000pt;}
.y4d{bottom:580.961280pt;}
.yb4{bottom:584.559360pt;}
.y92{bottom:585.621760pt;}
.y10d{bottom:586.400000pt;}
.yee{bottom:591.683200pt;}
.yf{bottom:594.396160pt;}
.y14d{bottom:596.800000pt;}
.y12d{bottom:598.886400pt;}
.y4c{bottom:600.318080pt;}
.yb3{bottom:602.473600pt;}
.y73{bottom:602.560000pt;}
.y91{bottom:603.536000pt;}
.y10c{bottom:605.760000pt;}
.yed{bottom:611.040000pt;}
.y14c{bottom:616.160000pt;}
.y12c{bottom:618.243200pt;}
.y4b{bottom:619.674880pt;}
.yb2{bottom:620.387840pt;}
.y90{bottom:621.450240pt;}
.y72{bottom:623.038880pt;}
.yc8{bottom:623.203200pt;}
.ye{bottom:624.321920pt;}
.y10b{bottom:635.680000pt;}
.yb9{bottom:637.120000pt;}
.y12b{bottom:637.600000pt;}
.yb1{bottom:638.302080pt;}
.y8f{bottom:639.217280pt;}
.yec{bottom:640.960000pt;}
.y14b{bottom:646.240000pt;}
.y4a{bottom:649.600640pt;}
.yd{bottom:654.394880pt;}
.yb0{bottom:656.216320pt;}
.y12a{bottom:656.800000pt;}
.y8e{bottom:657.131520pt;}
.y71{bottom:663.680000pt;}
.y14a{bottom:665.440000pt;}
.y49{bottom:668.957440pt;}
.y10a{bottom:671.040000pt;}
.yeb{bottom:671.045120pt;}
.yaf{bottom:674.130560pt;}
.y8d{bottom:675.045760pt;}
.y129{bottom:676.154240pt;}
.yc{bottom:684.320640pt;}
.y48{bottom:688.314240pt;}
.yea{bottom:690.240000pt;}
.y109{bottom:690.400000pt;}
.yae{bottom:692.044800pt;}
.y8c{bottom:692.960000pt;}
.y149{bottom:695.523200pt;}
.y70{bottom:703.040000pt;}
.y128{bottom:706.080000pt;}
.ye9{bottom:709.594240pt;}
.y108{bottom:709.610240pt;}
.yad{bottom:709.811840pt;}
.yb{bottom:714.246400pt;}
.y148{bottom:714.880000pt;}
.y47{bottom:718.240000pt;}
.y6f{bottom:722.405120pt;}
.y89{bottom:724.800000pt;}
.y127{bottom:726.240000pt;}
.yac{bottom:727.726080pt;}
.y107{bottom:728.967040pt;}
.y1f{bottom:731.680000pt;}
.y147{bottom:734.080000pt;}
.y46{bottom:738.880000pt;}
.ye8{bottom:739.520000pt;}
.y6e{bottom:741.600000pt;}
.ya{bottom:744.319360pt;}
.yc7{bottom:745.600000pt;}
.yab{bottom:745.640320pt;}
.y23{bottom:757.444000pt;}
.ye7{bottom:758.887040pt;}
.y106{bottom:759.040000pt;}
.yc6{bottom:763.520000pt;}
.yaa{bottom:763.554560pt;}
.y146{bottom:764.160000pt;}
.y6d{bottom:771.680000pt;}
.y9{bottom:774.245120pt;}
.y45{bottom:778.218880pt;}
.y105{bottom:778.240000pt;}
.ya9{bottom:781.468800pt;}
.yc5{bottom:781.484800pt;}
.y145{bottom:783.360000pt;}
.y22{bottom:783.520000pt;}
.ye6{bottom:788.960000pt;}
.y6c{bottom:791.084800pt;}
.y104{bottom:797.603200pt;}
.ya8{bottom:799.383040pt;}
.yc4{bottom:799.399040pt;}
.y44{bottom:804.140800pt;}
.y8{bottom:804.318080pt;}
.ye5{bottom:808.160000pt;}
.y126{bottom:808.323200pt;}
.y21{bottom:809.440000pt;}
.y6b{bottom:810.279680pt;}
.y144{bottom:813.440000pt;}
.y103{bottom:816.960000pt;}
.ya7{bottom:817.297280pt;}
.yc3{bottom:817.313280pt;}
.ye4{bottom:827.520000pt;}
.y125{bottom:827.680000pt;}
.y43{bottom:830.062720pt;}
.y143{bottom:832.794240pt;}
.y7{bottom:834.243840pt;}
.ya6{bottom:835.211520pt;}
.yc2{bottom:835.227520pt;}
.y6a{bottom:840.352640pt;}
.ye3{bottom:846.880000pt;}
.y27{bottom:847.520000pt;}
.ya5{bottom:853.125760pt;}
.yc1{bottom:853.141760pt;}
.y42{bottom:856.146560pt;}
.y124{bottom:857.600000pt;}
.y69{bottom:859.709440pt;}
.y142{bottom:862.720000pt;}
.y6{bottom:864.169600pt;}
.ye2{bottom:866.240000pt;}
.ya4{bottom:871.040000pt;}
.yc0{bottom:871.056000pt;}
.y123{bottom:876.960000pt;}
.y68{bottom:878.904320pt;}
.y41{bottom:882.068480pt;}
.y141{bottom:882.880000pt;}
.ya3{bottom:888.800000pt;}
.ybf{bottom:888.823040pt;}
.y5{bottom:894.242560pt;}
.ye1{bottom:896.160000pt;}
.y122{bottom:896.170240pt;}
.y67{bottom:898.261120pt;}
.ybe{bottom:906.737280pt;}
.y40{bottom:908.152320pt;}
.y25{bottom:910.560000pt;}
.y140{bottom:915.523200pt;}
.ye0{bottom:916.320000pt;}
.y66{bottom:917.617920pt;}
.y9b{bottom:920.640000pt;}
.y4{bottom:924.168320pt;}
.ybd{bottom:924.651520pt;}
.y102{bottom:926.240000pt;}
.y121{bottom:926.243200pt;}
.y3f{bottom:934.074240pt;}
.y13f{bottom:934.880000pt;}
.y65{bottom:936.974720pt;}
.ya0{bottom:942.560000pt;}
.ybc{bottom:942.565760pt;}
.y101{bottom:945.600000pt;}
.ydf{bottom:948.960000pt;}
.y13e{bottom:954.240000pt;}
.y3{bottom:954.241280pt;}
.y64{bottom:956.169600pt;}
.y3e{bottom:960.158080pt;}
.ybb{bottom:960.480000pt;}
.y9f{bottom:960.491520pt;}
.y100{bottom:964.800000pt;}
.y88{bottom:964.803200pt;}
.yde{bottom:969.598880pt;}
.y120{bottom:975.520000pt;}
.y63{bottom:975.526400pt;}
.y9e{bottom:978.405760pt;}
.y87{bottom:984.160000pt;}
.y2{bottom:984.167040pt;}
.y3d{bottom:986.080000pt;}
.yff{bottom:994.880000pt;}
.y62{bottom:994.883200pt;}
.y9d{bottom:996.320000pt;}
.y3c{bottom:1007.840000pt;}
.ydd{bottom:1010.240000pt;}
.y1{bottom:1014.240000pt;}
.h10{height:29.061250pt;}
.hb{height:32.801333pt;}
.he{height:39.020800pt;}
.h14{height:40.940000pt;}
.h4{height:43.680000pt;}
.h11{height:43.808438pt;}
.h1f{height:47.250000pt;}
.h1d{height:48.060000pt;}
.h2{height:48.558750pt;}
.h1e{height:48.581790pt;}
.h13{height:52.065000pt;}
.h5{height:55.910400pt;}
.h12{height:59.185000pt;}
.h8{height:68.160000pt;}
.h18{height:71.680000pt;}
.ha{height:92.019200pt;}
.h19{height:107.520000pt;}
.h6{height:108.000000pt;}
.h3{height:115.040000pt;}
.hd{height:145.600000pt;}
.h9{height:170.060800pt;}
.h16{height:179.040000pt;}
.hc{height:194.238667pt;}
.hf{height:205.278667pt;}
.h15{height:224.000000pt;}
.h17{height:278.081333pt;}
.h7{height:364.000000pt;}
.h1a{height:380.960000pt;}
.h1b{height:391.040000pt;}
.h1c{height:394.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:26.081333pt;}
.w2{width:252.160000pt;}
.w4{width:267.680000pt;}
.w3{width:278.080000pt;}
.w5{width:278.720000pt;}
.w9{width:283.040000pt;}
.wa{width:283.200000pt;}
.w6{width:445.278667pt;}
.w8{width:566.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.120000pt;}
.x1c{left:7.200000pt;}
.xc{left:12.320000pt;}
.xa{left:14.560000pt;}
.x9{left:19.040000pt;}
.x4{left:24.800000pt;}
.xb{left:28.000000pt;}
.xd{left:29.760000pt;}
.xe{left:52.000000pt;}
.x6{left:62.880000pt;}
.x5{left:70.720000pt;}
.x10{left:84.000000pt;}
.x7{left:103.356000pt;}
.x1{left:113.440000pt;}
.x1d{left:120.640000pt;}
.x8{left:126.080000pt;}
.x1a{left:128.189440pt;}
.x2{left:151.034880pt;}
.x17{left:178.880000pt;}
.x1f{left:247.200000pt;}
.x21{left:263.200000pt;}
.xf{left:308.000000pt;}
.x13{left:317.600000pt;}
.x18{left:359.820000pt;}
.x22{left:387.680000pt;}
.x19{left:391.520000pt;}
.x3{left:396.800000pt;}
.x12{left:401.760000pt;}
.x20{left:403.680000pt;}
.x11{left:420.800000pt;}
.x1e{left:474.080000pt;}
.x1b{left:477.120000pt;}
.x15{left:762.400000pt;}
.x14{left:777.600000pt;}
}




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