
    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_782613fbf7cccc68d06721a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_8ac8265462bbd29208f4928b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bd7c94f6367286392c035ec0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_308860c5737e6d1ce4f30d18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_47e0240f75b58e151a2b42d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.948000px;}
.ls1d{letter-spacing:-0.579600px;}
.ls5{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.436200px;}
.ls25{letter-spacing:-0.346200px;}
.ls13{letter-spacing:-0.326400px;}
.ls20{letter-spacing:-0.272400px;}
.ls1e{letter-spacing:-0.240600px;}
.lse{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls24{letter-spacing:-0.107400px;}
.ls21{letter-spacing:-0.069600px;}
.ls1f{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls1c{letter-spacing:0.063360px;}
.ls8{letter-spacing:0.066000px;}
.ls15{letter-spacing:0.135360px;}
.ls1b{letter-spacing:0.135600px;}
.lsa{letter-spacing:0.140400px;}
.ls22{letter-spacing:0.146400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.186600px;}
.ls17{letter-spacing:0.291600px;}
.lsc{letter-spacing:0.306000px;}
.ls27{letter-spacing:0.354240px;}
.ls1{letter-spacing:0.417000px;}
.ls11{letter-spacing:0.479400px;}
.ls1a{letter-spacing:0.481440px;}
.ls19{letter-spacing:0.505440px;}
.lsf{letter-spacing:0.654000px;}
.ls26{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.661680px;}
.ls14{letter-spacing:0.786000px;}
.ls18{letter-spacing:0.894240px;}
.ls2a{letter-spacing:0.900000px;}
.ls29{letter-spacing:12.186720px;}
.ls28{letter-spacing:42.426720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.165760px;}
.wsb{word-spacing:-13.985160px;}
.ws8{word-spacing:-13.692360px;}
.ws13{word-spacing:-13.652160px;}
.ws7{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.wse{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.436160px;}
.ws14{word-spacing:-13.398360px;}
.wsc{word-spacing:-13.179360px;}
.wsd{word-spacing:-12.926160px;}
.wsf{word-spacing:-9.440880px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws11{word-spacing:-8.722080px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-533.278560px;}
._1c{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._11{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._15{margin-left:-222.774000px;}
._1f{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._16{margin-left:-200.514720px;}
._1e{margin-left:-190.074240px;}
._22{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._21{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1d{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._20{margin-left:-109.621680px;}
._1a{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._19{margin-left:-86.399760px;}
._18{margin-left:-83.520000px;}
._12{margin-left:-81.351360px;}
._14{margin-left:-66.703680px;}
._13{margin-left:-49.123920px;}
._17{margin-left:-32.468640px;}
._3c{margin-left:-7.586640px;}
._26{margin-left:-6.213840px;}
._24{margin-left:-5.127120px;}
._2e{margin-left:-4.048080px;}
._23{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.170720px;}
._2d{width:2.653920px;}
._2f{width:3.886080px;}
._28{width:5.197440px;}
._33{width:6.547680px;}
._25{width:7.650000px;}
._2a{width:9.442080px;}
._2b{width:10.480320px;}
._2c{width:11.925360px;}
._29{width:14.894640px;}
._34{width:16.081200px;}
._36{width:17.542800px;}
._38{width:18.764640px;}
._30{width:20.077200px;}
._31{width:21.155040px;}
._32{width:22.906320px;}
._39{width:23.937120px;}
._3a{width:25.278480px;}
._3b{width:26.318880px;}
._35{width:27.429840px;}
._37{width:31.168080px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yeb{bottom:-5.040000px;}
.y117{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.yef{bottom:6.480000px;}
.yac{bottom:6.660000px;}
.yd8{bottom:7.380000px;}
.yd5{bottom:7.560000px;}
.yd1{bottom:27.720000px;}
.yd7{bottom:28.440000px;}
.yd4{bottom:28.620000px;}
.y6{bottom:60.660000px;}
.y92{bottom:89.280000px;}
.y160{bottom:90.720000px;}
.y10e{bottom:93.420000px;}
.yce{bottom:101.880000px;}
.y64{bottom:104.220000px;}
.y16c{bottom:109.800000px;}
.y91{bottom:110.340000px;}
.y15f{bottom:111.780000px;}
.y16b{bottom:113.220000px;}
.y30{bottom:114.120000px;}
.y10d{bottom:114.480000px;}
.ycd{bottom:122.940000px;}
.y63{bottom:125.280000px;}
.y90{bottom:131.400000px;}
.y15e{bottom:132.840000px;}
.y16a{bottom:134.280000px;}
.y2f{bottom:135.180000px;}
.y10c{bottom:135.540000px;}
.ycc{bottom:144.000000px;}
.y62{bottom:146.340000px;}
.y8f{bottom:152.490000px;}
.y15d{bottom:153.930000px;}
.y169{bottom:155.370000px;}
.y2e{bottom:156.270000px;}
.y10b{bottom:156.630000px;}
.ycb{bottom:165.090000px;}
.y61{bottom:167.430000px;}
.y8e{bottom:173.550000px;}
.y15c{bottom:174.990000px;}
.y168{bottom:176.430000px;}
.y2d{bottom:177.330000px;}
.y10a{bottom:177.690000px;}
.yca{bottom:186.150000px;}
.y60{bottom:188.490000px;}
.y8d{bottom:194.610000px;}
.y15b{bottom:196.050000px;}
.y167{bottom:197.490000px;}
.y2c{bottom:198.390000px;}
.y109{bottom:198.750000px;}
.yc9{bottom:207.210000px;}
.y5f{bottom:209.550000px;}
.y8c{bottom:215.670000px;}
.y15a{bottom:216.930000px;}
.y166{bottom:218.550000px;}
.y2b{bottom:219.450000px;}
.y108{bottom:219.810000px;}
.yc8{bottom:228.270000px;}
.y5e{bottom:230.610000px;}
.y8b{bottom:236.730000px;}
.y159{bottom:237.990000px;}
.y165{bottom:239.610000px;}
.y2a{bottom:240.510000px;}
.y107{bottom:240.870000px;}
.yc7{bottom:249.330000px;}
.y5d{bottom:251.670000px;}
.y8a{bottom:257.790000px;}
.y158{bottom:259.050000px;}
.y164{bottom:260.670000px;}
.y29{bottom:261.570000px;}
.y106{bottom:261.930000px;}
.yc6{bottom:270.210000px;}
.y5c{bottom:272.730000px;}
.y89{bottom:278.850000px;}
.y157{bottom:280.110000px;}
.y163{bottom:281.730000px;}
.y28{bottom:282.630000px;}
.y105{bottom:282.990000px;}
.yc5{bottom:291.270000px;}
.y5b{bottom:293.790000px;}
.y88{bottom:299.910000px;}
.y156{bottom:301.170000px;}
.y162{bottom:302.790000px;}
.y27{bottom:303.690000px;}
.y104{bottom:304.050000px;}
.yc4{bottom:312.330000px;}
.y5a{bottom:314.850000px;}
.y87{bottom:320.970000px;}
.y155{bottom:322.230000px;}
.y161{bottom:323.850000px;}
.y26{bottom:324.750000px;}
.y103{bottom:325.110000px;}
.yc3{bottom:333.390000px;}
.ya6{bottom:335.910000px;}
.y154{bottom:343.290000px;}
.y59{bottom:344.910000px;}
.y25{bottom:345.810000px;}
.y102{bottom:346.170000px;}
.y86{bottom:351.030000px;}
.yc2{bottom:354.450000px;}
.ya5{bottom:356.970000px;}
.y153{bottom:364.350000px;}
.y58{bottom:365.970000px;}
.y24{bottom:366.870000px;}
.y101{bottom:367.230000px;}
.y85{bottom:372.090000px;}
.yc1{bottom:375.510000px;}
.ya4{bottom:378.030000px;}
.y152{bottom:385.410000px;}
.y57{bottom:387.030000px;}
.y23{bottom:387.930000px;}
.y100{bottom:388.290000px;}
.y134{bottom:389.010000px;}
.y84{bottom:393.150000px;}
.yc0{bottom:396.570000px;}
.ya3{bottom:399.090000px;}
.y151{bottom:406.515000px;}
.y56{bottom:408.135000px;}
.y22{bottom:409.035000px;}
.yff{bottom:409.395000px;}
.y83{bottom:414.255000px;}
.y133{bottom:417.495000px;}
.ybf{bottom:417.675000px;}
.ya2{bottom:420.195000px;}
.y150{bottom:427.575000px;}
.y55{bottom:429.195000px;}
.y21{bottom:430.095000px;}
.yfe{bottom:430.455000px;}
.y82{bottom:435.315000px;}
.y132{bottom:438.555000px;}
.ybe{bottom:438.735000px;}
.ya1{bottom:441.255000px;}
.y14f{bottom:448.635000px;}
.y54{bottom:450.255000px;}
.y20{bottom:451.155000px;}
.yfd{bottom:451.515000px;}
.y81{bottom:456.375000px;}
.y131{bottom:459.615000px;}
.ybd{bottom:459.795000px;}
.ya0{bottom:462.315000px;}
.y14e{bottom:469.695000px;}
.y53{bottom:471.315000px;}
.y1f{bottom:472.215000px;}
.yfc{bottom:472.575000px;}
.y80{bottom:477.435000px;}
.y130{bottom:480.675000px;}
.ybc{bottom:480.855000px;}
.y9f{bottom:483.375000px;}
.y14d{bottom:490.755000px;}
.y52{bottom:492.375000px;}
.y1e{bottom:493.275000px;}
.yfb{bottom:493.635000px;}
.y7f{bottom:498.495000px;}
.y12f{bottom:501.735000px;}
.ybb{bottom:501.915000px;}
.y9e{bottom:504.435000px;}
.y14c{bottom:511.815000px;}
.y51{bottom:513.435000px;}
.yfa{bottom:514.695000px;}
.y1d{bottom:516.675000px;}
.y12e{bottom:522.795000px;}
.yba{bottom:522.975000px;}
.y9d{bottom:525.495000px;}
.y7e{bottom:528.555000px;}
.y14b{bottom:532.875000px;}
.y50{bottom:534.495000px;}
.yf9{bottom:535.755000px;}
.y1c{bottom:537.555000px;}
.y12d{bottom:543.855000px;}
.yb9{bottom:544.035000px;}
.y9c{bottom:546.555000px;}
.y7d{bottom:549.615000px;}
.y14a{bottom:553.935000px;}
.y4f{bottom:555.555000px;}
.yf8{bottom:556.815000px;}
.y12c{bottom:564.915000px;}
.yb8{bottom:565.095000px;}
.y1b{bottom:567.615000px;}
.y7c{bottom:570.675000px;}
.y149{bottom:574.995000px;}
.y4e{bottom:576.615000px;}
.yf7{bottom:577.875000px;}
.y12b{bottom:585.975000px;}
.yb7{bottom:586.155000px;}
.y1a{bottom:588.675000px;}
.y7b{bottom:591.735000px;}
.y148{bottom:596.055000px;}
.y4d{bottom:597.675000px;}
.yf6{bottom:598.935000px;}
.y12a{bottom:607.035000px;}
.yb6{bottom:607.215000px;}
.y19{bottom:609.735000px;}
.y7a{bottom:612.795000px;}
.y147{bottom:617.115000px;}
.y4c{bottom:618.735000px;}
.yf5{bottom:619.995000px;}
.y129{bottom:628.095000px;}
.yb5{bottom:628.275000px;}
.y18{bottom:630.795000px;}
.y146{bottom:632.235000px;}
.y79{bottom:633.675000px;}
.y4b{bottom:639.795000px;}
.yf4{bottom:641.055000px;}
.y128{bottom:649.185000px;}
.yb4{bottom:649.365000px;}
.y9b{bottom:651.705000px;}
.y17{bottom:651.885000px;}
.y145{bottom:653.325000px;}
.y78{bottom:654.765000px;}
.y4a{bottom:660.705000px;}
.yf3{bottom:662.145000px;}
.y127{bottom:670.245000px;}
.yb3{bottom:670.425000px;}
.y9a{bottom:672.765000px;}
.y16{bottom:672.945000px;}
.y144{bottom:674.385000px;}
.y77{bottom:675.825000px;}
.y49{bottom:681.765000px;}
.yf2{bottom:683.205000px;}
.y126{bottom:691.305000px;}
.yb2{bottom:691.485000px;}
.y99{bottom:693.825000px;}
.y15{bottom:694.005000px;}
.y143{bottom:695.445000px;}
.y76{bottom:696.885000px;}
.y48{bottom:702.825000px;}
.yf1{bottom:704.265000px;}
.yb1{bottom:706.605000px;}
.y125{bottom:712.365000px;}
.y98{bottom:714.885000px;}
.y14{bottom:715.065000px;}
.y142{bottom:716.505000px;}
.y47{bottom:723.885000px;}
.yf0{bottom:725.325000px;}
.y75{bottom:726.945000px;}
.yb0{bottom:728.385000px;}
.y124{bottom:733.425000px;}
.y97{bottom:735.945000px;}
.y13{bottom:736.125000px;}
.y141{bottom:737.565000px;}
.y46{bottom:744.945000px;}
.yee{bottom:746.385000px;}
.y74{bottom:748.005000px;}
.yaf{bottom:750.165000px;}
.y123{bottom:754.485000px;}
.y96{bottom:757.005000px;}
.y12{bottom:757.185000px;}
.y140{bottom:758.625000px;}
.y45{bottom:766.005000px;}
.yed{bottom:767.265000px;}
.y73{bottom:769.065000px;}
.yae{bottom:771.945000px;}
.y122{bottom:775.545000px;}
.y95{bottom:778.065000px;}
.y11{bottom:778.245000px;}
.y13f{bottom:779.685000px;}
.y44{bottom:787.065000px;}
.yec{bottom:789.225000px;}
.y72{bottom:790.125000px;}
.yad{bottom:793.725000px;}
.y121{bottom:796.605000px;}
.y94{bottom:799.125000px;}
.y10{bottom:799.305000px;}
.y13e{bottom:800.745000px;}
.y43{bottom:808.125000px;}
.yea{bottom:810.285000px;}
.y71{bottom:811.185000px;}
.yab{bottom:816.225000px;}
.y120{bottom:817.665000px;}
.y93{bottom:820.185000px;}
.yf{bottom:820.365000px;}
.y13d{bottom:821.805000px;}
.ye9{bottom:827.025000px;}
.y42{bottom:829.185000px;}
.y70{bottom:832.245000px;}
.y11f{bottom:838.725000px;}
.ye{bottom:841.425000px;}
.y13c{bottom:842.865000px;}
.yaa{bottom:845.385000px;}
.ye8{bottom:848.085000px;}
.y41{bottom:850.245000px;}
.y6f{bottom:853.305000px;}
.y11e{bottom:859.785000px;}
.yd{bottom:862.485000px;}
.y13b{bottom:863.925000px;}
.ya9{bottom:866.445000px;}
.ye7{bottom:869.145000px;}
.y40{bottom:871.305000px;}
.y6e{bottom:874.365000px;}
.y11d{bottom:880.845000px;}
.y13a{bottom:884.985000px;}
.yc{bottom:885.705000px;}
.ya8{bottom:887.505000px;}
.ye6{bottom:890.205000px;}
.y3f{bottom:892.365000px;}
.y6d{bottom:895.425000px;}
.y11c{bottom:901.950000px;}
.y139{bottom:906.090000px;}
.ya7{bottom:908.610000px;}
.ye5{bottom:911.310000px;}
.yb{bottom:912.030000px;}
.y3e{bottom:913.470000px;}
.y11b{bottom:923.010000px;}
.yd9{bottom:923.730000px;}
.y6c{bottom:925.530000px;}
.y138{bottom:927.150000px;}
.ya{bottom:928.770000px;}
.ye4{bottom:932.370000px;}
.y3d{bottom:934.530000px;}
.y11a{bottom:944.070000px;}
.y6b{bottom:946.590000px;}
.y137{bottom:948.210000px;}
.y9{bottom:951.090000px;}
.ye3{bottom:953.430000px;}
.y3c{bottom:955.590000px;}
.y119{bottom:965.130000px;}
.yd6{bottom:966.750000px;}
.y6a{bottom:967.650000px;}
.y136{bottom:969.270000px;}
.ye2{bottom:974.490000px;}
.y8{bottom:976.290000px;}
.y3b{bottom:976.650000px;}
.y118{bottom:986.190000px;}
.y69{bottom:988.710000px;}
.y135{bottom:990.330000px;}
.ye1{bottom:995.550000px;}
.y3a{bottom:997.710000px;}
.y116{bottom:1001.310000px;}
.yd3{bottom:1009.590000px;}
.y68{bottom:1009.770000px;}
.y7{bottom:1009.950000px;}
.y115{bottom:1011.390000px;}
.ye0{bottom:1016.610000px;}
.y39{bottom:1018.770000px;}
.y67{bottom:1030.830000px;}
.ydf{bottom:1031.730000px;}
.y114{bottom:1032.450000px;}
.y38{bottom:1039.830000px;}
.y5{bottom:1050.090000px;}
.y66{bottom:1051.890000px;}
.yd2{bottom:1052.610000px;}
.yde{bottom:1052.790000px;}
.y113{bottom:1053.510000px;}
.y37{bottom:1060.890000px;}
.y65{bottom:1072.950000px;}
.ydd{bottom:1073.850000px;}
.y112{bottom:1074.570000px;}
.y36{bottom:1081.950000px;}
.y4{bottom:1082.310000px;}
.yd0{bottom:1094.730000px;}
.ydc{bottom:1094.910000px;}
.y111{bottom:1095.630000px;}
.y35{bottom:1103.010000px;}
.y3{bottom:1114.530000px;}
.ydb{bottom:1115.970000px;}
.y110{bottom:1116.690000px;}
.y34{bottom:1124.070000px;}
.ycf{bottom:1137.570000px;}
.yda{bottom:1137.750000px;}
.y33{bottom:1145.130000px;}
.y2{bottom:1146.600000px;}
.y10f{bottom:1158.840000px;}
.y32{bottom:1166.220000px;}
.y1{bottom:1180.620000px;}
.y31{bottom:1194.120000px;}
.h10{height:9.360000px;}
.h12{height:10.080000px;}
.h11{height:20.880000px;}
.hf{height:21.060000px;}
.hb{height:21.096000px;}
.ha{height:21.780000px;}
.h8{height:38.671172px;}
.hc{height:42.120000px;}
.he{height:42.840000px;}
.hd{height:43.020000px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:43.740000px;}
.w3{width:46.440000px;}
.wb{width:73.260000px;}
.w6{width:76.500000px;}
.w4{width:76.680000px;}
.w5{width:76.716000px;}
.w15{width:119.736000px;}
.w8{width:122.796000px;}
.w12{width:131.076000px;}
.w11{width:132.336000px;}
.w13{width:135.036000px;}
.we{width:140.796000px;}
.w10{width:141.300000px;}
.w17{width:150.330000px;}
.wc{width:150.690000px;}
.w16{width:151.770000px;}
.w18{width:155.010000px;}
.wd{width:170.490000px;}
.w14{width:208.290000px;}
.wf{width:245.415000px;}
.wa{width:327.495000px;}
.w9{width:334.875000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x12{left:52.920000px;}
.x6{left:53.999987px;}
.x21{left:80.999987px;}
.x7{left:94.716000px;}
.x22{left:108.035987px;}
.x9{left:141.156000px;}
.x19{left:162.029987px;}
.x5{left:173.189987px;}
.x13{left:175.710000px;}
.x15{left:178.950000px;}
.xa{left:217.830000px;}
.x16{left:252.210000px;}
.x1d{left:262.290000px;}
.x3{left:286.814987px;}
.xb{left:294.555000px;}
.x1a{left:299.415000px;}
.x2{left:350.714987px;}
.xc{left:371.235000px;}
.x1e{left:382.035000px;}
.x17{left:402.915000px;}
.x4{left:419.294987px;}
.x1b{left:440.715000px;}
.xd{left:447.945000px;}
.x1{left:479.444987px;}
.x14{left:510.585000px;}
.xe{left:524.625000px;}
.x1f{left:533.805000px;}
.x18{left:573.405000px;}
.xf{left:601.125000px;}
.x10{left:677.850000px;}
.x20{left:684.150000px;}
.x1c{left:704.130000px;}
.x11{left:754.530000px;}
.x23{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.842667pt;}
.ls1d{letter-spacing:-0.515200pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.387733pt;}
.ls25{letter-spacing:-0.307733pt;}
.ls13{letter-spacing:-0.290133pt;}
.ls20{letter-spacing:-0.242133pt;}
.ls1e{letter-spacing:-0.213867pt;}
.lse{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls24{letter-spacing:-0.095467pt;}
.ls21{letter-spacing:-0.061867pt;}
.ls1f{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls1c{letter-spacing:0.056320pt;}
.ls8{letter-spacing:0.058667pt;}
.ls15{letter-spacing:0.120320pt;}
.ls1b{letter-spacing:0.120533pt;}
.lsa{letter-spacing:0.124800pt;}
.ls22{letter-spacing:0.130133pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.165867pt;}
.ls17{letter-spacing:0.259200pt;}
.lsc{letter-spacing:0.272000pt;}
.ls27{letter-spacing:0.314880pt;}
.ls1{letter-spacing:0.370667pt;}
.ls11{letter-spacing:0.426133pt;}
.ls1a{letter-spacing:0.427947pt;}
.ls19{letter-spacing:0.449280pt;}
.lsf{letter-spacing:0.581333pt;}
.ls26{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.588160pt;}
.ls14{letter-spacing:0.698667pt;}
.ls18{letter-spacing:0.794880pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls29{letter-spacing:10.832640pt;}
.ls28{letter-spacing:37.712640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.431253pt;}
.ws8{word-spacing:-12.170987pt;}
.ws13{word-spacing:-12.135253pt;}
.ws7{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.943253pt;}
.ws14{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.714987pt;}
.wsd{word-spacing:-11.489920pt;}
.wsf{word-spacing:-8.391893pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws11{word-spacing:-7.752960pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-474.025387pt;}
._1c{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._11{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._15{margin-left:-198.021333pt;}
._1f{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._16{margin-left:-178.235307pt;}
._1e{margin-left:-168.954880pt;}
._22{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._21{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1d{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._20{margin-left:-97.441493pt;}
._1a{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._19{margin-left:-76.799787pt;}
._18{margin-left:-74.240000pt;}
._12{margin-left:-72.312320pt;}
._14{margin-left:-59.292160pt;}
._13{margin-left:-43.665707pt;}
._17{margin-left:-28.861013pt;}
._3c{margin-left:-6.743680pt;}
._26{margin-left:-5.523413pt;}
._24{margin-left:-4.557440pt;}
._2e{margin-left:-3.598293pt;}
._23{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.040640pt;}
._2d{width:2.359040pt;}
._2f{width:3.454293pt;}
._28{width:4.619947pt;}
._33{width:5.820160pt;}
._25{width:6.800000pt;}
._2a{width:8.392960pt;}
._2b{width:9.315840pt;}
._2c{width:10.600320pt;}
._29{width:13.239680pt;}
._34{width:14.294400pt;}
._36{width:15.593600pt;}
._38{width:16.679680pt;}
._30{width:17.846400pt;}
._31{width:18.804480pt;}
._32{width:20.361173pt;}
._39{width:21.277440pt;}
._3a{width:22.469760pt;}
._3b{width:23.394560pt;}
._35{width:24.382080pt;}
._37{width:27.704960pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yeb{bottom:-4.480000pt;}
.y117{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:5.760000pt;}
.yac{bottom:5.920000pt;}
.yd8{bottom:6.560000pt;}
.yd5{bottom:6.720000pt;}
.yd1{bottom:24.640000pt;}
.yd7{bottom:25.280000pt;}
.yd4{bottom:25.440000pt;}
.y6{bottom:53.920000pt;}
.y92{bottom:79.360000pt;}
.y160{bottom:80.640000pt;}
.y10e{bottom:83.040000pt;}
.yce{bottom:90.560000pt;}
.y64{bottom:92.640000pt;}
.y16c{bottom:97.600000pt;}
.y91{bottom:98.080000pt;}
.y15f{bottom:99.360000pt;}
.y16b{bottom:100.640000pt;}
.y30{bottom:101.440000pt;}
.y10d{bottom:101.760000pt;}
.ycd{bottom:109.280000pt;}
.y63{bottom:111.360000pt;}
.y90{bottom:116.800000pt;}
.y15e{bottom:118.080000pt;}
.y16a{bottom:119.360000pt;}
.y2f{bottom:120.160000pt;}
.y10c{bottom:120.480000pt;}
.ycc{bottom:128.000000pt;}
.y62{bottom:130.080000pt;}
.y8f{bottom:135.546667pt;}
.y15d{bottom:136.826667pt;}
.y169{bottom:138.106667pt;}
.y2e{bottom:138.906667pt;}
.y10b{bottom:139.226667pt;}
.ycb{bottom:146.746667pt;}
.y61{bottom:148.826667pt;}
.y8e{bottom:154.266667pt;}
.y15c{bottom:155.546667pt;}
.y168{bottom:156.826667pt;}
.y2d{bottom:157.626667pt;}
.y10a{bottom:157.946667pt;}
.yca{bottom:165.466667pt;}
.y60{bottom:167.546667pt;}
.y8d{bottom:172.986667pt;}
.y15b{bottom:174.266667pt;}
.y167{bottom:175.546667pt;}
.y2c{bottom:176.346667pt;}
.y109{bottom:176.666667pt;}
.yc9{bottom:184.186667pt;}
.y5f{bottom:186.266667pt;}
.y8c{bottom:191.706667pt;}
.y15a{bottom:192.826667pt;}
.y166{bottom:194.266667pt;}
.y2b{bottom:195.066667pt;}
.y108{bottom:195.386667pt;}
.yc8{bottom:202.906667pt;}
.y5e{bottom:204.986667pt;}
.y8b{bottom:210.426667pt;}
.y159{bottom:211.546667pt;}
.y165{bottom:212.986667pt;}
.y2a{bottom:213.786667pt;}
.y107{bottom:214.106667pt;}
.yc7{bottom:221.626667pt;}
.y5d{bottom:223.706667pt;}
.y8a{bottom:229.146667pt;}
.y158{bottom:230.266667pt;}
.y164{bottom:231.706667pt;}
.y29{bottom:232.506667pt;}
.y106{bottom:232.826667pt;}
.yc6{bottom:240.186667pt;}
.y5c{bottom:242.426667pt;}
.y89{bottom:247.866667pt;}
.y157{bottom:248.986667pt;}
.y163{bottom:250.426667pt;}
.y28{bottom:251.226667pt;}
.y105{bottom:251.546667pt;}
.yc5{bottom:258.906667pt;}
.y5b{bottom:261.146667pt;}
.y88{bottom:266.586667pt;}
.y156{bottom:267.706667pt;}
.y162{bottom:269.146667pt;}
.y27{bottom:269.946667pt;}
.y104{bottom:270.266667pt;}
.yc4{bottom:277.626667pt;}
.y5a{bottom:279.866667pt;}
.y87{bottom:285.306667pt;}
.y155{bottom:286.426667pt;}
.y161{bottom:287.866667pt;}
.y26{bottom:288.666667pt;}
.y103{bottom:288.986667pt;}
.yc3{bottom:296.346667pt;}
.ya6{bottom:298.586667pt;}
.y154{bottom:305.146667pt;}
.y59{bottom:306.586667pt;}
.y25{bottom:307.386667pt;}
.y102{bottom:307.706667pt;}
.y86{bottom:312.026667pt;}
.yc2{bottom:315.066667pt;}
.ya5{bottom:317.306667pt;}
.y153{bottom:323.866667pt;}
.y58{bottom:325.306667pt;}
.y24{bottom:326.106667pt;}
.y101{bottom:326.426667pt;}
.y85{bottom:330.746667pt;}
.yc1{bottom:333.786667pt;}
.ya4{bottom:336.026667pt;}
.y152{bottom:342.586667pt;}
.y57{bottom:344.026667pt;}
.y23{bottom:344.826667pt;}
.y100{bottom:345.146667pt;}
.y134{bottom:345.786667pt;}
.y84{bottom:349.466667pt;}
.yc0{bottom:352.506667pt;}
.ya3{bottom:354.746667pt;}
.y151{bottom:361.346667pt;}
.y56{bottom:362.786667pt;}
.y22{bottom:363.586667pt;}
.yff{bottom:363.906667pt;}
.y83{bottom:368.226667pt;}
.y133{bottom:371.106667pt;}
.ybf{bottom:371.266667pt;}
.ya2{bottom:373.506667pt;}
.y150{bottom:380.066667pt;}
.y55{bottom:381.506667pt;}
.y21{bottom:382.306667pt;}
.yfe{bottom:382.626667pt;}
.y82{bottom:386.946667pt;}
.y132{bottom:389.826667pt;}
.ybe{bottom:389.986667pt;}
.ya1{bottom:392.226667pt;}
.y14f{bottom:398.786667pt;}
.y54{bottom:400.226667pt;}
.y20{bottom:401.026667pt;}
.yfd{bottom:401.346667pt;}
.y81{bottom:405.666667pt;}
.y131{bottom:408.546667pt;}
.ybd{bottom:408.706667pt;}
.ya0{bottom:410.946667pt;}
.y14e{bottom:417.506667pt;}
.y53{bottom:418.946667pt;}
.y1f{bottom:419.746667pt;}
.yfc{bottom:420.066667pt;}
.y80{bottom:424.386667pt;}
.y130{bottom:427.266667pt;}
.ybc{bottom:427.426667pt;}
.y9f{bottom:429.666667pt;}
.y14d{bottom:436.226667pt;}
.y52{bottom:437.666667pt;}
.y1e{bottom:438.466667pt;}
.yfb{bottom:438.786667pt;}
.y7f{bottom:443.106667pt;}
.y12f{bottom:445.986667pt;}
.ybb{bottom:446.146667pt;}
.y9e{bottom:448.386667pt;}
.y14c{bottom:454.946667pt;}
.y51{bottom:456.386667pt;}
.yfa{bottom:457.506667pt;}
.y1d{bottom:459.266667pt;}
.y12e{bottom:464.706667pt;}
.yba{bottom:464.866667pt;}
.y9d{bottom:467.106667pt;}
.y7e{bottom:469.826667pt;}
.y14b{bottom:473.666667pt;}
.y50{bottom:475.106667pt;}
.yf9{bottom:476.226667pt;}
.y1c{bottom:477.826667pt;}
.y12d{bottom:483.426667pt;}
.yb9{bottom:483.586667pt;}
.y9c{bottom:485.826667pt;}
.y7d{bottom:488.546667pt;}
.y14a{bottom:492.386667pt;}
.y4f{bottom:493.826667pt;}
.yf8{bottom:494.946667pt;}
.y12c{bottom:502.146667pt;}
.yb8{bottom:502.306667pt;}
.y1b{bottom:504.546667pt;}
.y7c{bottom:507.266667pt;}
.y149{bottom:511.106667pt;}
.y4e{bottom:512.546667pt;}
.yf7{bottom:513.666667pt;}
.y12b{bottom:520.866667pt;}
.yb7{bottom:521.026667pt;}
.y1a{bottom:523.266667pt;}
.y7b{bottom:525.986667pt;}
.y148{bottom:529.826667pt;}
.y4d{bottom:531.266667pt;}
.yf6{bottom:532.386667pt;}
.y12a{bottom:539.586667pt;}
.yb6{bottom:539.746667pt;}
.y19{bottom:541.986667pt;}
.y7a{bottom:544.706667pt;}
.y147{bottom:548.546667pt;}
.y4c{bottom:549.986667pt;}
.yf5{bottom:551.106667pt;}
.y129{bottom:558.306667pt;}
.yb5{bottom:558.466667pt;}
.y18{bottom:560.706667pt;}
.y146{bottom:561.986667pt;}
.y79{bottom:563.266667pt;}
.y4b{bottom:568.706667pt;}
.yf4{bottom:569.826667pt;}
.y128{bottom:577.053333pt;}
.yb4{bottom:577.213333pt;}
.y9b{bottom:579.293333pt;}
.y17{bottom:579.453333pt;}
.y145{bottom:580.733333pt;}
.y78{bottom:582.013333pt;}
.y4a{bottom:587.293333pt;}
.yf3{bottom:588.573333pt;}
.y127{bottom:595.773333pt;}
.yb3{bottom:595.933333pt;}
.y9a{bottom:598.013333pt;}
.y16{bottom:598.173333pt;}
.y144{bottom:599.453333pt;}
.y77{bottom:600.733333pt;}
.y49{bottom:606.013333pt;}
.yf2{bottom:607.293333pt;}
.y126{bottom:614.493333pt;}
.yb2{bottom:614.653333pt;}
.y99{bottom:616.733333pt;}
.y15{bottom:616.893333pt;}
.y143{bottom:618.173333pt;}
.y76{bottom:619.453333pt;}
.y48{bottom:624.733333pt;}
.yf1{bottom:626.013333pt;}
.yb1{bottom:628.093333pt;}
.y125{bottom:633.213333pt;}
.y98{bottom:635.453333pt;}
.y14{bottom:635.613333pt;}
.y142{bottom:636.893333pt;}
.y47{bottom:643.453333pt;}
.yf0{bottom:644.733333pt;}
.y75{bottom:646.173333pt;}
.yb0{bottom:647.453333pt;}
.y124{bottom:651.933333pt;}
.y97{bottom:654.173333pt;}
.y13{bottom:654.333333pt;}
.y141{bottom:655.613333pt;}
.y46{bottom:662.173333pt;}
.yee{bottom:663.453333pt;}
.y74{bottom:664.893333pt;}
.yaf{bottom:666.813333pt;}
.y123{bottom:670.653333pt;}
.y96{bottom:672.893333pt;}
.y12{bottom:673.053333pt;}
.y140{bottom:674.333333pt;}
.y45{bottom:680.893333pt;}
.yed{bottom:682.013333pt;}
.y73{bottom:683.613333pt;}
.yae{bottom:686.173333pt;}
.y122{bottom:689.373333pt;}
.y95{bottom:691.613333pt;}
.y11{bottom:691.773333pt;}
.y13f{bottom:693.053333pt;}
.y44{bottom:699.613333pt;}
.yec{bottom:701.533333pt;}
.y72{bottom:702.333333pt;}
.yad{bottom:705.533333pt;}
.y121{bottom:708.093333pt;}
.y94{bottom:710.333333pt;}
.y10{bottom:710.493333pt;}
.y13e{bottom:711.773333pt;}
.y43{bottom:718.333333pt;}
.yea{bottom:720.253333pt;}
.y71{bottom:721.053333pt;}
.yab{bottom:725.533333pt;}
.y120{bottom:726.813333pt;}
.y93{bottom:729.053333pt;}
.yf{bottom:729.213333pt;}
.y13d{bottom:730.493333pt;}
.ye9{bottom:735.133333pt;}
.y42{bottom:737.053333pt;}
.y70{bottom:739.773333pt;}
.y11f{bottom:745.533333pt;}
.ye{bottom:747.933333pt;}
.y13c{bottom:749.213333pt;}
.yaa{bottom:751.453333pt;}
.ye8{bottom:753.853333pt;}
.y41{bottom:755.773333pt;}
.y6f{bottom:758.493333pt;}
.y11e{bottom:764.253333pt;}
.yd{bottom:766.653333pt;}
.y13b{bottom:767.933333pt;}
.ya9{bottom:770.173333pt;}
.ye7{bottom:772.573333pt;}
.y40{bottom:774.493333pt;}
.y6e{bottom:777.213333pt;}
.y11d{bottom:782.973333pt;}
.y13a{bottom:786.653333pt;}
.yc{bottom:787.293333pt;}
.ya8{bottom:788.893333pt;}
.ye6{bottom:791.293333pt;}
.y3f{bottom:793.213333pt;}
.y6d{bottom:795.933333pt;}
.y11c{bottom:801.733333pt;}
.y139{bottom:805.413333pt;}
.ya7{bottom:807.653333pt;}
.ye5{bottom:810.053333pt;}
.yb{bottom:810.693333pt;}
.y3e{bottom:811.973333pt;}
.y11b{bottom:820.453333pt;}
.yd9{bottom:821.093333pt;}
.y6c{bottom:822.693333pt;}
.y138{bottom:824.133333pt;}
.ya{bottom:825.573333pt;}
.ye4{bottom:828.773333pt;}
.y3d{bottom:830.693333pt;}
.y11a{bottom:839.173333pt;}
.y6b{bottom:841.413333pt;}
.y137{bottom:842.853333pt;}
.y9{bottom:845.413333pt;}
.ye3{bottom:847.493333pt;}
.y3c{bottom:849.413333pt;}
.y119{bottom:857.893333pt;}
.yd6{bottom:859.333333pt;}
.y6a{bottom:860.133333pt;}
.y136{bottom:861.573333pt;}
.ye2{bottom:866.213333pt;}
.y8{bottom:867.813333pt;}
.y3b{bottom:868.133333pt;}
.y118{bottom:876.613333pt;}
.y69{bottom:878.853333pt;}
.y135{bottom:880.293333pt;}
.ye1{bottom:884.933333pt;}
.y3a{bottom:886.853333pt;}
.y116{bottom:890.053333pt;}
.yd3{bottom:897.413333pt;}
.y68{bottom:897.573333pt;}
.y7{bottom:897.733333pt;}
.y115{bottom:899.013333pt;}
.ye0{bottom:903.653333pt;}
.y39{bottom:905.573333pt;}
.y67{bottom:916.293333pt;}
.ydf{bottom:917.093333pt;}
.y114{bottom:917.733333pt;}
.y38{bottom:924.293333pt;}
.y5{bottom:933.413333pt;}
.y66{bottom:935.013333pt;}
.yd2{bottom:935.653333pt;}
.yde{bottom:935.813333pt;}
.y113{bottom:936.453333pt;}
.y37{bottom:943.013333pt;}
.y65{bottom:953.733333pt;}
.ydd{bottom:954.533333pt;}
.y112{bottom:955.173333pt;}
.y36{bottom:961.733333pt;}
.y4{bottom:962.053333pt;}
.yd0{bottom:973.093333pt;}
.ydc{bottom:973.253333pt;}
.y111{bottom:973.893333pt;}
.y35{bottom:980.453333pt;}
.y3{bottom:990.693333pt;}
.ydb{bottom:991.973333pt;}
.y110{bottom:992.613333pt;}
.y34{bottom:999.173333pt;}
.ycf{bottom:1011.173333pt;}
.yda{bottom:1011.333333pt;}
.y33{bottom:1017.893333pt;}
.y2{bottom:1019.200000pt;}
.y10f{bottom:1030.080000pt;}
.y32{bottom:1036.640000pt;}
.y1{bottom:1049.440000pt;}
.y31{bottom:1061.440000pt;}
.h10{height:8.320000pt;}
.h12{height:8.960000pt;}
.h11{height:18.560000pt;}
.hf{height:18.720000pt;}
.hb{height:18.752000pt;}
.ha{height:19.360000pt;}
.h8{height:34.374375pt;}
.hc{height:37.440000pt;}
.he{height:38.080000pt;}
.hd{height:38.240000pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:38.880000pt;}
.w3{width:41.280000pt;}
.wb{width:65.120000pt;}
.w6{width:68.000000pt;}
.w4{width:68.160000pt;}
.w5{width:68.192000pt;}
.w15{width:106.432000pt;}
.w8{width:109.152000pt;}
.w12{width:116.512000pt;}
.w11{width:117.632000pt;}
.w13{width:120.032000pt;}
.we{width:125.152000pt;}
.w10{width:125.600000pt;}
.w17{width:133.626667pt;}
.wc{width:133.946667pt;}
.w16{width:134.906667pt;}
.w18{width:137.786667pt;}
.wd{width:151.546667pt;}
.w14{width:185.146667pt;}
.wf{width:218.146667pt;}
.wa{width:291.106667pt;}
.w9{width:297.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x12{left:47.040000pt;}
.x6{left:47.999988pt;}
.x21{left:71.999988pt;}
.x7{left:84.192000pt;}
.x22{left:96.031988pt;}
.x9{left:125.472000pt;}
.x19{left:144.026655pt;}
.x5{left:153.946655pt;}
.x13{left:156.186667pt;}
.x15{left:159.066667pt;}
.xa{left:193.626667pt;}
.x16{left:224.186667pt;}
.x1d{left:233.146667pt;}
.x3{left:254.946655pt;}
.xb{left:261.826667pt;}
.x1a{left:266.146667pt;}
.x2{left:311.746655pt;}
.xc{left:329.986667pt;}
.x1e{left:339.586667pt;}
.x17{left:358.146667pt;}
.x4{left:372.706655pt;}
.x1b{left:391.746667pt;}
.xd{left:398.173333pt;}
.x1{left:426.173322pt;}
.x14{left:453.853333pt;}
.xe{left:466.333333pt;}
.x1f{left:474.493333pt;}
.x18{left:509.693333pt;}
.xf{left:534.333333pt;}
.x10{left:602.533333pt;}
.x20{left:608.133333pt;}
.x1c{left:625.893333pt;}
.x11{left:670.693333pt;}
.x23{left:746.079988pt;}
}




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