
    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_f3b26e906f86fc0a071409b6.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_573994c3e4d9cc711df84c4a.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_fce25857dc150b444a0ee614.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_b7d80893b1525c8cc99e1851.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2de0c7a5f2193c84a8ee3df8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_70582877185584b020d35ec2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_49b6c4fe43240b55eb07cc26.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_29039b1ce19146bec7fe4865.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls32{letter-spacing:-0.912000px;}
.ls1f{letter-spacing:-0.882000px;}
.ls2e{letter-spacing:-0.852000px;}
.ls18{letter-spacing:-0.744000px;}
.lsc{letter-spacing:-0.702000px;}
.ls35{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.630000px;}
.ls22{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.587400px;}
.ls7{letter-spacing:-0.463800px;}
.ls36{letter-spacing:-0.460800px;}
.ls23{letter-spacing:-0.310800px;}
.ls10{letter-spacing:-0.306000px;}
.ls31{letter-spacing:-0.250800px;}
.ls1{letter-spacing:-0.238800px;}
.ls34{letter-spacing:-0.227400px;}
.ls2b{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.193200px;}
.ls13{letter-spacing:-0.191400px;}
.ls9{letter-spacing:-0.164400px;}
.ls4{letter-spacing:-0.132600px;}
.ls29{letter-spacing:-0.118200px;}
.ls2{letter-spacing:-0.115200px;}
.ls1e{letter-spacing:-0.069600px;}
.ls1d{letter-spacing:-0.058320px;}
.ls2d{letter-spacing:-0.037440px;}
.ls24{letter-spacing:-0.034560px;}
.ls17{letter-spacing:-0.025920px;}
.ls12{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.020160px;}
.ls2a{letter-spacing:0.031680px;}
.ls28{letter-spacing:0.069000px;}
.ls27{letter-spacing:0.075000px;}
.ls33{letter-spacing:0.086400px;}
.ls3{letter-spacing:0.089280px;}
.ls1b{letter-spacing:0.089400px;}
.ls37{letter-spacing:0.115200px;}
.ls26{letter-spacing:0.125760px;}
.ls14{letter-spacing:0.129600px;}
.ls8{letter-spacing:0.132480px;}
.lse{letter-spacing:0.141000px;}
.ls16{letter-spacing:0.149760px;}
.ls15{letter-spacing:0.164160px;}
.ls1c{letter-spacing:0.174240px;}
.ls1a{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.243360px;}
.ls25{letter-spacing:0.244800px;}
.ls6{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.256320px;}
.ls30{letter-spacing:0.259200px;}
.ls2c{letter-spacing:0.302400px;}
.ls2f{letter-spacing:0.313800px;}
.ls21{letter-spacing:0.371400px;}
.lsd{letter-spacing:0.936000px;}
.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;}
}
.ws17{word-spacing:-15.341640px;}
.ws24{word-spacing:-15.284040px;}
.ws22{word-spacing:-15.272640px;}
.ws25{word-spacing:-15.229440px;}
.ws5{word-spacing:-15.226440px;}
.ws1b{word-spacing:-15.215040px;}
.ws9{word-spacing:-15.111240px;}
.ws10{word-spacing:-15.099840px;}
.ws2b{word-spacing:-15.085440px;}
.ws13{word-spacing:-15.059640px;}
.ws28{word-spacing:-15.056640px;}
.ws20{word-spacing:-15.045240px;}
.ws1c{word-spacing:-15.039240px;}
.ws1e{word-spacing:-15.001920px;}
.ws4{word-spacing:-14.990400px;}
.ws1{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.944320px;}
.ws1a{word-spacing:-14.935680px;}
.ws23{word-spacing:-14.932800px;}
.ws2{word-spacing:-14.855040px;}
.ws1d{word-spacing:-14.852040px;}
.ws21{word-spacing:-14.837640px;}
.ws7{word-spacing:-14.805840px;}
.ws18{word-spacing:-14.777040px;}
.ws1f{word-spacing:-14.754240px;}
.ws29{word-spacing:-14.742840px;}
.ws0{word-spacing:-14.731440px;}
.ws26{word-spacing:-14.719440px;}
.ws19{word-spacing:-14.659440px;}
.ws2a{word-spacing:-14.509440px;}
.ws6{word-spacing:-14.506440px;}
.ws8{word-spacing:-14.268240px;}
.ws12{word-spacing:-14.226240px;}
.ws27{word-spacing:-14.058240px;}
.ws16{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.436160px;}
.wsb{word-spacing:-12.402000px;}
.wsc{word-spacing:-12.186000px;}
.wsa{word-spacing:-11.898000px;}
.wsf{word-spacing:-8.786880px;}
.wsd{word-spacing:-8.136000px;}
.wse{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.192254px;}
._1{width:1.606827px;}
._2{width:3.851652px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:3.585000px;}
.yb0{bottom:3.600000px;}
.yaa{bottom:3.780000px;}
.yb3{bottom:11.865000px;}
.yaf{bottom:11.880000px;}
.yac{bottom:12.060000px;}
.ya9{bottom:20.160000px;}
.yb4{bottom:20.190000px;}
.yad{bottom:20.340000px;}
.y1ab{bottom:111.096000px;}
.y27{bottom:111.636000px;}
.y15d{bottom:115.056000px;}
.y7d{bottom:118.656000px;}
.y57{bottom:123.696000px;}
.yde{bottom:124.416000px;}
.y137{bottom:124.956000px;}
.y26{bottom:131.796000px;}
.y1aa{bottom:132.876000px;}
.y15c{bottom:135.216000px;}
.ya2{bottom:137.916000px;}
.y7c{bottom:138.816000px;}
.y56{bottom:143.856000px;}
.ydd{bottom:144.576000px;}
.y136{bottom:145.116000px;}
.y18c{bottom:146.016000px;}
.y1bd{bottom:150.870000px;}
.y25{bottom:151.950000px;}
.y1a9{bottom:154.470000px;}
.y15b{bottom:155.370000px;}
.ya1{bottom:158.070000px;}
.y7b{bottom:158.790000px;}
.y55{bottom:164.010000px;}
.ydc{bottom:164.730000px;}
.y135{bottom:165.270000px;}
.y24{bottom:171.930000px;}
.y1b7{bottom:172.470000px;}
.y15a{bottom:175.530000px;}
.ya0{bottom:178.230000px;}
.y7a{bottom:178.950000px;}
.y54{bottom:184.170000px;}
.ydb{bottom:184.890000px;}
.y134{bottom:185.430000px;}
.y18b{bottom:185.790000px;}
.yba{bottom:189.030000px;}
.y23{bottom:192.090000px;}
.y1a8{bottom:194.250000px;}
.y159{bottom:195.690000px;}
.y9f{bottom:198.210000px;}
.y79{bottom:199.110000px;}
.y53{bottom:204.330000px;}
.yda{bottom:205.050000px;}
.y133{bottom:205.590000px;}
.yf7{bottom:207.210000px;}
.y18a{bottom:207.570000px;}
.yb9{bottom:210.810000px;}
.y158{bottom:215.850000px;}
.y1a7{bottom:216.030000px;}
.y9e{bottom:218.370000px;}
.y78{bottom:219.270000px;}
.y52{bottom:224.490000px;}
.yd9{bottom:225.210000px;}
.y132{bottom:225.750000px;}
.yf6{bottom:227.370000px;}
.y22{bottom:230.250000px;}
.y107{bottom:231.330000px;}
.y1bc{bottom:234.030000px;}
.y157{bottom:235.830000px;}
.y1a6{bottom:237.810000px;}
.y9d{bottom:238.530000px;}
.y77{bottom:239.430000px;}
.y143{bottom:240.870000px;}
.yb8{bottom:243.750000px;}
.y51{bottom:244.650000px;}
.yd8{bottom:245.370000px;}
.yf5{bottom:247.350000px;}
.y21{bottom:250.410000px;}
.y106{bottom:251.490000px;}
.y1b6{bottom:255.810000px;}
.y156{bottom:255.990000px;}
.y9c{bottom:258.690000px;}
.y76{bottom:259.590000px;}
.y142{bottom:261.030000px;}
.y50{bottom:264.630000px;}
.yd7{bottom:265.530000px;}
.y131{bottom:266.250000px;}
.yb7{bottom:267.330000px;}
.yf4{bottom:267.510000px;}
.y189{bottom:268.950000px;}
.y20{bottom:270.570000px;}
.y105{bottom:271.650000px;}
.y155{bottom:276.150000px;}
.y1a5{bottom:277.410000px;}
.y9b{bottom:278.850000px;}
.y75{bottom:279.750000px;}
.y166{bottom:280.650000px;}
.y141{bottom:281.190000px;}
.y130{bottom:284.610000px;}
.y4f{bottom:284.790000px;}
.yb6{bottom:285.510000px;}
.yd6{bottom:285.690000px;}
.yf3{bottom:287.670000px;}
.y1f{bottom:290.730000px;}
.y104{bottom:291.810000px;}
.y154{bottom:296.310000px;}
.y9a{bottom:299.010000px;}
.y1a4{bottom:299.190000px;}
.y74{bottom:299.910000px;}
.yb2{bottom:300.285000px;}
.y165{bottom:300.630000px;}
.y140{bottom:301.350000px;}
.y12f{bottom:302.970000px;}
.y4e{bottom:304.950000px;}
.yd5{bottom:305.670000px;}
.yf2{bottom:307.830000px;}
.y1e{bottom:310.890000px;}
.y103{bottom:311.970000px;}
.y188{bottom:312.510000px;}
.y153{bottom:316.470000px;}
.y1b5{bottom:317.235000px;}
.y99{bottom:319.215000px;}
.y73{bottom:320.115000px;}
.y164{bottom:320.835000px;}
.y12e{bottom:321.375000px;}
.y13f{bottom:321.555000px;}
.y4d{bottom:325.155000px;}
.yd4{bottom:325.875000px;}
.yf1{bottom:328.035000px;}
.y1d{bottom:331.095000px;}
.y102{bottom:332.175000px;}
.y1a3{bottom:339.015000px;}
.y98{bottom:339.375000px;}
.y12d{bottom:339.555000px;}
.y72{bottom:340.095000px;}
.y163{bottom:340.995000px;}
.y13e{bottom:341.715000px;}
.yb1{bottom:344.415000px;}
.y4c{bottom:345.315000px;}
.yd3{bottom:346.035000px;}
.yf0{bottom:348.195000px;}
.y1c{bottom:351.255000px;}
.y101{bottom:352.155000px;}
.y187{bottom:352.335000px;}
.y152{bottom:357.735000px;}
.y12c{bottom:357.915000px;}
.y120{bottom:358.635000px;}
.y97{bottom:359.535000px;}
.y71{bottom:360.255000px;}
.y1a2{bottom:360.795000px;}
.y13d{bottom:361.155000px;}
.y4b{bottom:365.475000px;}
.yef{bottom:368.355000px;}
.y1b{bottom:371.415000px;}
.y100{bottom:372.315000px;}
.y186{bottom:373.935000px;}
.y12b{bottom:376.275000px;}
.y151{bottom:377.895000px;}
.y11f{bottom:378.795000px;}
.y13c{bottom:379.515000px;}
.y96{bottom:379.695000px;}
.y70{bottom:380.415000px;}
.y162{bottom:381.315000px;}
.y1a1{bottom:382.395000px;}
.yd2{bottom:387.255000px;}
.yee{bottom:388.515000px;}
.yae{bottom:388.695000px;}
.y1a{bottom:391.395000px;}
.y185{bottom:395.715000px;}
.y13b{bottom:397.875000px;}
.y11e{bottom:398.955000px;}
.y95{bottom:399.675000px;}
.y1bb{bottom:400.395000px;}
.y6f{bottom:400.575000px;}
.y161{bottom:401.475000px;}
.y4a{bottom:403.635000px;}
.y12a{bottom:404.175000px;}
.yd1{bottom:407.415000px;}
.yed{bottom:408.675000px;}
.y19{bottom:411.555000px;}
.yff{bottom:412.995000px;}
.y13a{bottom:416.235000px;}
.y184{bottom:417.495000px;}
.y150{bottom:418.035000px;}
.y11d{bottom:419.115000px;}
.y94{bottom:419.835000px;}
.y6e{bottom:420.735000px;}
.y160{bottom:421.635000px;}
.y1a0{bottom:422.175000px;}
.y49{bottom:423.795000px;}
.y1c2{bottom:425.955000px;}
.yd0{bottom:427.575000px;}
.yec{bottom:428.835000px;}
.yfe{bottom:431.175000px;}
.y18{bottom:431.715000px;}
.yab{bottom:432.795000px;}
.y139{bottom:434.415000px;}
.y14f{bottom:438.195000px;}
.y11c{bottom:439.275000px;}
.y93{bottom:439.995000px;}
.y6d{bottom:440.895000px;}
.y15f{bottom:441.795000px;}
.y48{bottom:443.955000px;}
.ycf{bottom:447.735000px;}
.yeb{bottom:448.815000px;}
.yfd{bottom:449.535000px;}
.y17{bottom:451.875000px;}
.y183{bottom:457.275000px;}
.y14e{bottom:458.355000px;}
.y11b{bottom:459.435000px;}
.y92{bottom:460.155000px;}
.y16d{bottom:461.055000px;}
.y15e{bottom:461.955000px;}
.y138{bottom:462.495000px;}
.y47{bottom:464.115000px;}
.y1b4{bottom:465.735000px;}
.yce{bottom:467.715000px;}
.yfc{bottom:467.895000px;}
.yea{bottom:468.975000px;}
.y16{bottom:472.035000px;}
.ya8{bottom:477.075000px;}
.y14d{bottom:478.515000px;}
.y182{bottom:478.875000px;}
.y11a{bottom:479.595000px;}
.y91{bottom:480.315000px;}
.y16c{bottom:481.215000px;}
.y6c{bottom:482.115000px;}
.y19f{bottom:483.735000px;}
.y46{bottom:484.095000px;}
.yfb{bottom:486.255000px;}
.y1c1{bottom:487.335000px;}
.ycd{bottom:487.875000px;}
.ye9{bottom:489.135000px;}
.y14c{bottom:498.675000px;}
.y119{bottom:499.755000px;}
.y90{bottom:500.475000px;}
.y16b{bottom:501.375000px;}
.y6b{bottom:502.095000px;}
.y45{bottom:504.255000px;}
.yfa{bottom:504.435000px;}
.y19e{bottom:505.335000px;}
.y15{bottom:505.695000px;}
.ycc{bottom:508.035000px;}
.y181{bottom:518.655000px;}
.y14b{bottom:518.835000px;}
.y118{bottom:519.735000px;}
.y8f{bottom:520.635000px;}
.ya7{bottom:521.535000px;}
.y6a{bottom:522.255000px;}
.yf9{bottom:522.795000px;}
.y44{bottom:524.415000px;}
.y1b3{bottom:527.115000px;}
.ycb{bottom:528.195000px;}
.ye8{bottom:529.815000px;}
.y14a{bottom:538.995000px;}
.y117{bottom:539.895000px;}
.y180{bottom:540.435000px;}
.y8e{bottom:540.795000px;}
.ya6{bottom:541.515000px;}
.y69{bottom:542.415000px;}
.y43{bottom:544.575000px;}
.y19d{bottom:545.115000px;}
.ye7{bottom:547.995000px;}
.yca{bottom:548.355000px;}
.y1b2{bottom:548.895000px;}
.yf8{bottom:550.875000px;}
.y149{bottom:559.155000px;}
.y116{bottom:560.055000px;}
.y8d{bottom:560.955000px;}
.ya5{bottom:561.675000px;}
.y17f{bottom:562.215000px;}
.y68{bottom:562.575000px;}
.y42{bottom:564.735000px;}
.ye6{bottom:566.355000px;}
.y19c{bottom:566.895000px;}
.yc9{bottom:568.545000px;}
.y14{bottom:573.225000px;}
.y148{bottom:579.165000px;}
.y115{bottom:580.245000px;}
.y8c{bottom:580.965000px;}
.ya4{bottom:581.865000px;}
.y67{bottom:582.765000px;}
.y17e{bottom:583.845000px;}
.ye5{bottom:584.745000px;}
.y41{bottom:584.925000px;}
.yc8{bottom:588.705000px;}
.y13{bottom:595.005000px;}
.y147{bottom:599.325000px;}
.y114{bottom:600.405000px;}
.ya3{bottom:602.025000px;}
.y66{bottom:602.925000px;}
.ye4{bottom:603.105000px;}
.y40{bottom:605.085000px;}
.y17d{bottom:605.625000px;}
.yc7{bottom:608.865000px;}
.y1b1{bottom:610.305000px;}
.y12{bottom:616.785000px;}
.y146{bottom:618.945000px;}
.y113{bottom:620.565000px;}
.ye3{bottom:621.285000px;}
.y8b{bottom:622.185000px;}
.y65{bottom:623.085000px;}
.y3f{bottom:625.245000px;}
.y19b{bottom:628.305000px;}
.yc6{bottom:629.025000px;}
.y1ba{bottom:632.085000px;}
.y145{bottom:637.305000px;}
.y129{bottom:637.665000px;}
.y11{bottom:638.565000px;}
.ye2{bottom:639.645000px;}
.y112{bottom:640.725000px;}
.y8a{bottom:642.345000px;}
.y64{bottom:643.245000px;}
.y3e{bottom:645.405000px;}
.yc5{bottom:649.185000px;}
.y19a{bottom:650.085000px;}
.y144{bottom:655.665000px;}
.y128{bottom:656.025000px;}
.ye1{bottom:658.005000px;}
.y10{bottom:660.165000px;}
.y111{bottom:660.885000px;}
.y89{bottom:662.505000px;}
.y63{bottom:663.405000px;}
.y3d{bottom:665.565000px;}
.y17c{bottom:667.185000px;}
.yc4{bottom:669.165000px;}
.y1b0{bottom:671.865000px;}
.y127{bottom:674.205000px;}
.ye0{bottom:676.185000px;}
.y110{bottom:680.325000px;}
.yf{bottom:681.945000px;}
.y88{bottom:682.665000px;}
.y62{bottom:683.565000px;}
.y3c{bottom:685.545000px;}
.y17b{bottom:688.785000px;}
.yc3{bottom:689.325000px;}
.y199{bottom:689.865000px;}
.y126{bottom:692.565000px;}
.y1b9{bottom:693.645000px;}
.y10f{bottom:698.685000px;}
.y87{bottom:702.825000px;}
.y61{bottom:703.545000px;}
.ye{bottom:703.725000px;}
.ydf{bottom:704.265000px;}
.y3b{bottom:705.705000px;}
.yc2{bottom:709.485000px;}
.y125{bottom:710.925000px;}
.y198{bottom:711.645000px;}
.y1c0{bottom:715.425000px;}
.y10e{bottom:717.045000px;}
.y86{bottom:722.985000px;}
.y60{bottom:723.705000px;}
.yd{bottom:725.505000px;}
.y3a{bottom:725.865000px;}
.y17a{bottom:726.945000px;}
.y124{bottom:729.285000px;}
.y197{bottom:733.425000px;}
.y10d{bottom:735.405000px;}
.y85{bottom:742.965000px;}
.y5f{bottom:743.865000px;}
.y39{bottom:746.025000px;}
.yc{bottom:747.105000px;}
.y123{bottom:747.465000px;}
.yc1{bottom:750.525000px;}
.y10c{bottom:753.585000px;}
.y1af{bottom:755.025000px;}
.y84{bottom:763.125000px;}
.y5e{bottom:764.025000px;}
.y179{bottom:765.105000px;}
.y122{bottom:765.825000px;}
.y38{bottom:766.185000px;}
.yb{bottom:768.885000px;}
.y10b{bottom:771.945000px;}
.y196{bottom:773.025000px;}
.y1b8{bottom:776.805000px;}
.y83{bottom:783.285000px;}
.y5d{bottom:784.185000px;}
.y178{bottom:785.265000px;}
.y37{bottom:786.345000px;}
.y10a{bottom:790.305000px;}
.ya{bottom:790.665000px;}
.yc0{bottom:791.745000px;}
.y121{bottom:793.905000px;}
.y195{bottom:794.805000px;}
.y82{bottom:803.445000px;}
.y5c{bottom:804.345000px;}
.y177{bottom:805.425000px;}
.y36{bottom:806.505000px;}
.y109{bottom:808.665000px;}
.ybf{bottom:811.905000px;}
.y9{bottom:812.445000px;}
.y194{bottom:816.585000px;}
.y81{bottom:823.650000px;}
.y5b{bottom:824.550000px;}
.y176{bottom:825.630000px;}
.y35{bottom:826.710000px;}
.y108{bottom:836.610000px;}
.y1ae{bottom:838.410000px;}
.y80{bottom:843.810000px;}
.y5a{bottom:844.710000px;}
.y8{bottom:845.430000px;}
.y175{bottom:845.790000px;}
.y34{bottom:846.870000px;}
.ybe{bottom:850.110000px;}
.y193{bottom:856.410000px;}
.y7f{bottom:863.970000px;}
.y59{bottom:864.870000px;}
.y174{bottom:865.950000px;}
.y33{bottom:867.030000px;}
.y192{bottom:878.010000px;}
.ybd{bottom:883.770000px;}
.y7e{bottom:883.950000px;}
.y16a{bottom:884.130000px;}
.y58{bottom:885.030000px;}
.y173{bottom:886.110000px;}
.y1ad{bottom:899.790000px;}
.y169{bottom:904.290000px;}
.y32{bottom:905.010000px;}
.y172{bottom:906.090000px;}
.y7{bottom:908.970000px;}
.y191{bottom:917.790000px;}
.y1bf{bottom:921.570000px;}
.y168{bottom:924.450000px;}
.y31{bottom:925.170000px;}
.y171{bottom:927.870000px;}
.y190{bottom:939.570000px;}
.y6{bottom:940.650000px;}
.y167{bottom:944.430000px;}
.y30{bottom:945.330000px;}
.y5{bottom:960.450000px;}
.y18f{bottom:961.350000px;}
.y2f{bottom:965.490000px;}
.y170{bottom:966.030000px;}
.ybc{bottom:976.110000px;}
.y4{bottom:980.250000px;}
.y1ac{bottom:982.950000px;}
.y2e{bottom:985.650000px;}
.y18e{bottom:1000.950000px;}
.y16f{bottom:1004.190000px;}
.y1be{bottom:1004.730000px;}
.ybb{bottom:1005.450000px;}
.y2d{bottom:1005.810000px;}
.y3{bottom:1011.930000px;}
.y18d{bottom:1022.730000px;}
.y16e{bottom:1024.350000px;}
.y2c{bottom:1025.970000px;}
.y2{bottom:1044.510000px;}
.y2b{bottom:1046.130000px;}
.y1{bottom:1066.290000px;}
.y2a{bottom:1122.975000px;}
.y29{bottom:1142.847000px;}
.y28{bottom:1162.719000px;}
.h7{height:32.925000px;}
.hb{height:32.940000px;}
.hc{height:32.961000px;}
.h9{height:33.105000px;}
.hd{height:38.671172px;}
.h5{height:47.545312px;}
.h6{height:50.585625px;}
.ha{height:53.709961px;}
.h8{height:55.291992px;}
.h2{height:59.439023px;}
.h3{height:61.189805px;}
.h4{height:65.884219px;}
.h1{height:67.824844px;}
.h0{height:1188.000000px;}
.w3{width:75.276000px;}
.w1{width:82.605000px;}
.w5{width:96.141000px;}
.w4{width:105.645000px;}
.w2{width:217.815000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:5.565000px;}
.x11{left:8.805000px;}
.x13{left:14.925000px;}
.x15{left:16.005000px;}
.xf{left:18.570000px;}
.x8{left:24.099000px;}
.xa{left:26.445000px;}
.x14{left:38.010000px;}
.xc{left:41.790000px;}
.xd{left:43.050000px;}
.x7{left:127.656000px;}
.x4{left:129.636000px;}
.x1{left:135.576000px;}
.x9{left:170.325000px;}
.x2{left:236.370000px;}
.xb{left:252.945000px;}
.x17{left:285.150000px;}
.x3{left:297.615000px;}
.x5{left:323.355000px;}
.x6{left:326.415000px;}
.x18{left:339.195000px;}
.xe{left:470.775000px;}
.x10{left:546.060000px;}
.x12{left:651.720000px;}
.x1f{left:681.270000px;}
.x1a{left:705.930000px;}
.x1e{left:746.430000px;}
.x1d{left:776.670000px;}
.x1c{left:799.350000px;}
.x19{left:800.970000px;}
.x1b{left:802.770000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls32{letter-spacing:-0.810667pt;}
.ls1f{letter-spacing:-0.784000pt;}
.ls2e{letter-spacing:-0.757333pt;}
.ls18{letter-spacing:-0.661333pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls35{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.560000pt;}
.ls22{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.522133pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls36{letter-spacing:-0.409600pt;}
.ls23{letter-spacing:-0.276267pt;}
.ls10{letter-spacing:-0.272000pt;}
.ls31{letter-spacing:-0.222933pt;}
.ls1{letter-spacing:-0.212267pt;}
.ls34{letter-spacing:-0.202133pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.171733pt;}
.ls13{letter-spacing:-0.170133pt;}
.ls9{letter-spacing:-0.146133pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls29{letter-spacing:-0.105067pt;}
.ls2{letter-spacing:-0.102400pt;}
.ls1e{letter-spacing:-0.061867pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls2d{letter-spacing:-0.033280pt;}
.ls24{letter-spacing:-0.030720pt;}
.ls17{letter-spacing:-0.023040pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017920pt;}
.ls2a{letter-spacing:0.028160pt;}
.ls28{letter-spacing:0.061333pt;}
.ls27{letter-spacing:0.066667pt;}
.ls33{letter-spacing:0.076800pt;}
.ls3{letter-spacing:0.079360pt;}
.ls1b{letter-spacing:0.079467pt;}
.ls37{letter-spacing:0.102400pt;}
.ls26{letter-spacing:0.111787pt;}
.ls14{letter-spacing:0.115200pt;}
.ls8{letter-spacing:0.117760pt;}
.lse{letter-spacing:0.125333pt;}
.ls16{letter-spacing:0.133120pt;}
.ls15{letter-spacing:0.145920pt;}
.ls1c{letter-spacing:0.154880pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.216320pt;}
.ls25{letter-spacing:0.217600pt;}
.ls6{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.227840pt;}
.ls30{letter-spacing:0.230400pt;}
.ls2c{letter-spacing:0.268800pt;}
.ls2f{letter-spacing:0.278933pt;}
.ls21{letter-spacing:0.330133pt;}
.lsd{letter-spacing:0.832000pt;}
.ws17{word-spacing:-13.637013pt;}
.ws24{word-spacing:-13.585813pt;}
.ws22{word-spacing:-13.575680pt;}
.ws25{word-spacing:-13.537280pt;}
.ws5{word-spacing:-13.534613pt;}
.ws1b{word-spacing:-13.524480pt;}
.ws9{word-spacing:-13.432213pt;}
.ws10{word-spacing:-13.422080pt;}
.ws2b{word-spacing:-13.409280pt;}
.ws13{word-spacing:-13.386347pt;}
.ws28{word-spacing:-13.383680pt;}
.ws20{word-spacing:-13.373547pt;}
.ws1c{word-spacing:-13.368213pt;}
.ws1e{word-spacing:-13.335040pt;}
.ws4{word-spacing:-13.324800pt;}
.ws1{word-spacing:-13.306880pt;}
.ws11{word-spacing:-13.283840pt;}
.ws1a{word-spacing:-13.276160pt;}
.ws23{word-spacing:-13.273600pt;}
.ws2{word-spacing:-13.204480pt;}
.ws1d{word-spacing:-13.201813pt;}
.ws21{word-spacing:-13.189013pt;}
.ws7{word-spacing:-13.160747pt;}
.ws18{word-spacing:-13.135147pt;}
.ws1f{word-spacing:-13.114880pt;}
.ws29{word-spacing:-13.104747pt;}
.ws0{word-spacing:-13.094613pt;}
.ws26{word-spacing:-13.083947pt;}
.ws19{word-spacing:-13.030613pt;}
.ws2a{word-spacing:-12.897280pt;}
.ws6{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.682880pt;}
.ws12{word-spacing:-12.645547pt;}
.ws27{word-spacing:-12.496213pt;}
.ws16{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.943253pt;}
.wsb{word-spacing:-11.024000pt;}
.wsc{word-spacing:-10.832000pt;}
.wsa{word-spacing:-10.576000pt;}
.wsf{word-spacing:-7.810560pt;}
.wsd{word-spacing:-7.232000pt;}
.wse{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.059781pt;}
._1{width:1.428291pt;}
._2{width:3.423691pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.186667pt;}
.yb0{bottom:3.200000pt;}
.yaa{bottom:3.360000pt;}
.yb3{bottom:10.546667pt;}
.yaf{bottom:10.560000pt;}
.yac{bottom:10.720000pt;}
.ya9{bottom:17.920000pt;}
.yb4{bottom:17.946667pt;}
.yad{bottom:18.080000pt;}
.y1ab{bottom:98.752000pt;}
.y27{bottom:99.232000pt;}
.y15d{bottom:102.272000pt;}
.y7d{bottom:105.472000pt;}
.y57{bottom:109.952000pt;}
.yde{bottom:110.592000pt;}
.y137{bottom:111.072000pt;}
.y26{bottom:117.152000pt;}
.y1aa{bottom:118.112000pt;}
.y15c{bottom:120.192000pt;}
.ya2{bottom:122.592000pt;}
.y7c{bottom:123.392000pt;}
.y56{bottom:127.872000pt;}
.ydd{bottom:128.512000pt;}
.y136{bottom:128.992000pt;}
.y18c{bottom:129.792000pt;}
.y1bd{bottom:134.106667pt;}
.y25{bottom:135.066667pt;}
.y1a9{bottom:137.306667pt;}
.y15b{bottom:138.106667pt;}
.ya1{bottom:140.506667pt;}
.y7b{bottom:141.146667pt;}
.y55{bottom:145.786667pt;}
.ydc{bottom:146.426667pt;}
.y135{bottom:146.906667pt;}
.y24{bottom:152.826667pt;}
.y1b7{bottom:153.306667pt;}
.y15a{bottom:156.026667pt;}
.ya0{bottom:158.426667pt;}
.y7a{bottom:159.066667pt;}
.y54{bottom:163.706667pt;}
.ydb{bottom:164.346667pt;}
.y134{bottom:164.826667pt;}
.y18b{bottom:165.146667pt;}
.yba{bottom:168.026667pt;}
.y23{bottom:170.746667pt;}
.y1a8{bottom:172.666667pt;}
.y159{bottom:173.946667pt;}
.y9f{bottom:176.186667pt;}
.y79{bottom:176.986667pt;}
.y53{bottom:181.626667pt;}
.yda{bottom:182.266667pt;}
.y133{bottom:182.746667pt;}
.yf7{bottom:184.186667pt;}
.y18a{bottom:184.506667pt;}
.yb9{bottom:187.386667pt;}
.y158{bottom:191.866667pt;}
.y1a7{bottom:192.026667pt;}
.y9e{bottom:194.106667pt;}
.y78{bottom:194.906667pt;}
.y52{bottom:199.546667pt;}
.yd9{bottom:200.186667pt;}
.y132{bottom:200.666667pt;}
.yf6{bottom:202.106667pt;}
.y22{bottom:204.666667pt;}
.y107{bottom:205.626667pt;}
.y1bc{bottom:208.026667pt;}
.y157{bottom:209.626667pt;}
.y1a6{bottom:211.386667pt;}
.y9d{bottom:212.026667pt;}
.y77{bottom:212.826667pt;}
.y143{bottom:214.106667pt;}
.yb8{bottom:216.666667pt;}
.y51{bottom:217.466667pt;}
.yd8{bottom:218.106667pt;}
.yf5{bottom:219.866667pt;}
.y21{bottom:222.586667pt;}
.y106{bottom:223.546667pt;}
.y1b6{bottom:227.386667pt;}
.y156{bottom:227.546667pt;}
.y9c{bottom:229.946667pt;}
.y76{bottom:230.746667pt;}
.y142{bottom:232.026667pt;}
.y50{bottom:235.226667pt;}
.yd7{bottom:236.026667pt;}
.y131{bottom:236.666667pt;}
.yb7{bottom:237.626667pt;}
.yf4{bottom:237.786667pt;}
.y189{bottom:239.066667pt;}
.y20{bottom:240.506667pt;}
.y105{bottom:241.466667pt;}
.y155{bottom:245.466667pt;}
.y1a5{bottom:246.586667pt;}
.y9b{bottom:247.866667pt;}
.y75{bottom:248.666667pt;}
.y166{bottom:249.466667pt;}
.y141{bottom:249.946667pt;}
.y130{bottom:252.986667pt;}
.y4f{bottom:253.146667pt;}
.yb6{bottom:253.786667pt;}
.yd6{bottom:253.946667pt;}
.yf3{bottom:255.706667pt;}
.y1f{bottom:258.426667pt;}
.y104{bottom:259.386667pt;}
.y154{bottom:263.386667pt;}
.y9a{bottom:265.786667pt;}
.y1a4{bottom:265.946667pt;}
.y74{bottom:266.586667pt;}
.yb2{bottom:266.920000pt;}
.y165{bottom:267.226667pt;}
.y140{bottom:267.866667pt;}
.y12f{bottom:269.306667pt;}
.y4e{bottom:271.066667pt;}
.yd5{bottom:271.706667pt;}
.yf2{bottom:273.626667pt;}
.y1e{bottom:276.346667pt;}
.y103{bottom:277.306667pt;}
.y188{bottom:277.786667pt;}
.y153{bottom:281.306667pt;}
.y1b5{bottom:281.986667pt;}
.y99{bottom:283.746667pt;}
.y73{bottom:284.546667pt;}
.y164{bottom:285.186667pt;}
.y12e{bottom:285.666667pt;}
.y13f{bottom:285.826667pt;}
.y4d{bottom:289.026667pt;}
.yd4{bottom:289.666667pt;}
.yf1{bottom:291.586667pt;}
.y1d{bottom:294.306667pt;}
.y102{bottom:295.266667pt;}
.y1a3{bottom:301.346667pt;}
.y98{bottom:301.666667pt;}
.y12d{bottom:301.826667pt;}
.y72{bottom:302.306667pt;}
.y163{bottom:303.106667pt;}
.y13e{bottom:303.746667pt;}
.yb1{bottom:306.146667pt;}
.y4c{bottom:306.946667pt;}
.yd3{bottom:307.586667pt;}
.yf0{bottom:309.506667pt;}
.y1c{bottom:312.226667pt;}
.y101{bottom:313.026667pt;}
.y187{bottom:313.186667pt;}
.y152{bottom:317.986667pt;}
.y12c{bottom:318.146667pt;}
.y120{bottom:318.786667pt;}
.y97{bottom:319.586667pt;}
.y71{bottom:320.226667pt;}
.y1a2{bottom:320.706667pt;}
.y13d{bottom:321.026667pt;}
.y4b{bottom:324.866667pt;}
.yef{bottom:327.426667pt;}
.y1b{bottom:330.146667pt;}
.y100{bottom:330.946667pt;}
.y186{bottom:332.386667pt;}
.y12b{bottom:334.466667pt;}
.y151{bottom:335.906667pt;}
.y11f{bottom:336.706667pt;}
.y13c{bottom:337.346667pt;}
.y96{bottom:337.506667pt;}
.y70{bottom:338.146667pt;}
.y162{bottom:338.946667pt;}
.y1a1{bottom:339.906667pt;}
.yd2{bottom:344.226667pt;}
.yee{bottom:345.346667pt;}
.yae{bottom:345.506667pt;}
.y1a{bottom:347.906667pt;}
.y185{bottom:351.746667pt;}
.y13b{bottom:353.666667pt;}
.y11e{bottom:354.626667pt;}
.y95{bottom:355.266667pt;}
.y1bb{bottom:355.906667pt;}
.y6f{bottom:356.066667pt;}
.y161{bottom:356.866667pt;}
.y4a{bottom:358.786667pt;}
.y12a{bottom:359.266667pt;}
.yd1{bottom:362.146667pt;}
.yed{bottom:363.266667pt;}
.y19{bottom:365.826667pt;}
.yff{bottom:367.106667pt;}
.y13a{bottom:369.986667pt;}
.y184{bottom:371.106667pt;}
.y150{bottom:371.586667pt;}
.y11d{bottom:372.546667pt;}
.y94{bottom:373.186667pt;}
.y6e{bottom:373.986667pt;}
.y160{bottom:374.786667pt;}
.y1a0{bottom:375.266667pt;}
.y49{bottom:376.706667pt;}
.y1c2{bottom:378.626667pt;}
.yd0{bottom:380.066667pt;}
.yec{bottom:381.186667pt;}
.yfe{bottom:383.266667pt;}
.y18{bottom:383.746667pt;}
.yab{bottom:384.706667pt;}
.y139{bottom:386.146667pt;}
.y14f{bottom:389.506667pt;}
.y11c{bottom:390.466667pt;}
.y93{bottom:391.106667pt;}
.y6d{bottom:391.906667pt;}
.y15f{bottom:392.706667pt;}
.y48{bottom:394.626667pt;}
.ycf{bottom:397.986667pt;}
.yeb{bottom:398.946667pt;}
.yfd{bottom:399.586667pt;}
.y17{bottom:401.666667pt;}
.y183{bottom:406.466667pt;}
.y14e{bottom:407.426667pt;}
.y11b{bottom:408.386667pt;}
.y92{bottom:409.026667pt;}
.y16d{bottom:409.826667pt;}
.y15e{bottom:410.626667pt;}
.y138{bottom:411.106667pt;}
.y47{bottom:412.546667pt;}
.y1b4{bottom:413.986667pt;}
.yce{bottom:415.746667pt;}
.yfc{bottom:415.906667pt;}
.yea{bottom:416.866667pt;}
.y16{bottom:419.586667pt;}
.ya8{bottom:424.066667pt;}
.y14d{bottom:425.346667pt;}
.y182{bottom:425.666667pt;}
.y11a{bottom:426.306667pt;}
.y91{bottom:426.946667pt;}
.y16c{bottom:427.746667pt;}
.y6c{bottom:428.546667pt;}
.y19f{bottom:429.986667pt;}
.y46{bottom:430.306667pt;}
.yfb{bottom:432.226667pt;}
.y1c1{bottom:433.186667pt;}
.ycd{bottom:433.666667pt;}
.ye9{bottom:434.786667pt;}
.y14c{bottom:443.266667pt;}
.y119{bottom:444.226667pt;}
.y90{bottom:444.866667pt;}
.y16b{bottom:445.666667pt;}
.y6b{bottom:446.306667pt;}
.y45{bottom:448.226667pt;}
.yfa{bottom:448.386667pt;}
.y19e{bottom:449.186667pt;}
.y15{bottom:449.506667pt;}
.ycc{bottom:451.586667pt;}
.y181{bottom:461.026667pt;}
.y14b{bottom:461.186667pt;}
.y118{bottom:461.986667pt;}
.y8f{bottom:462.786667pt;}
.ya7{bottom:463.586667pt;}
.y6a{bottom:464.226667pt;}
.yf9{bottom:464.706667pt;}
.y44{bottom:466.146667pt;}
.y1b3{bottom:468.546667pt;}
.ycb{bottom:469.506667pt;}
.ye8{bottom:470.946667pt;}
.y14a{bottom:479.106667pt;}
.y117{bottom:479.906667pt;}
.y180{bottom:480.386667pt;}
.y8e{bottom:480.706667pt;}
.ya6{bottom:481.346667pt;}
.y69{bottom:482.146667pt;}
.y43{bottom:484.066667pt;}
.y19d{bottom:484.546667pt;}
.ye7{bottom:487.106667pt;}
.yca{bottom:487.426667pt;}
.y1b2{bottom:487.906667pt;}
.yf8{bottom:489.666667pt;}
.y149{bottom:497.026667pt;}
.y116{bottom:497.826667pt;}
.y8d{bottom:498.626667pt;}
.ya5{bottom:499.266667pt;}
.y17f{bottom:499.746667pt;}
.y68{bottom:500.066667pt;}
.y42{bottom:501.986667pt;}
.ye6{bottom:503.426667pt;}
.y19c{bottom:503.906667pt;}
.yc9{bottom:505.373333pt;}
.y14{bottom:509.533333pt;}
.y148{bottom:514.813333pt;}
.y115{bottom:515.773333pt;}
.y8c{bottom:516.413333pt;}
.ya4{bottom:517.213333pt;}
.y67{bottom:518.013333pt;}
.y17e{bottom:518.973333pt;}
.ye5{bottom:519.773333pt;}
.y41{bottom:519.933333pt;}
.yc8{bottom:523.293333pt;}
.y13{bottom:528.893333pt;}
.y147{bottom:532.733333pt;}
.y114{bottom:533.693333pt;}
.ya3{bottom:535.133333pt;}
.y66{bottom:535.933333pt;}
.ye4{bottom:536.093333pt;}
.y40{bottom:537.853333pt;}
.y17d{bottom:538.333333pt;}
.yc7{bottom:541.213333pt;}
.y1b1{bottom:542.493333pt;}
.y12{bottom:548.253333pt;}
.y146{bottom:550.173333pt;}
.y113{bottom:551.613333pt;}
.ye3{bottom:552.253333pt;}
.y8b{bottom:553.053333pt;}
.y65{bottom:553.853333pt;}
.y3f{bottom:555.773333pt;}
.y19b{bottom:558.493333pt;}
.yc6{bottom:559.133333pt;}
.y1ba{bottom:561.853333pt;}
.y145{bottom:566.493333pt;}
.y129{bottom:566.813333pt;}
.y11{bottom:567.613333pt;}
.ye2{bottom:568.573333pt;}
.y112{bottom:569.533333pt;}
.y8a{bottom:570.973333pt;}
.y64{bottom:571.773333pt;}
.y3e{bottom:573.693333pt;}
.yc5{bottom:577.053333pt;}
.y19a{bottom:577.853333pt;}
.y144{bottom:582.813333pt;}
.y128{bottom:583.133333pt;}
.ye1{bottom:584.893333pt;}
.y10{bottom:586.813333pt;}
.y111{bottom:587.453333pt;}
.y89{bottom:588.893333pt;}
.y63{bottom:589.693333pt;}
.y3d{bottom:591.613333pt;}
.y17c{bottom:593.053333pt;}
.yc4{bottom:594.813333pt;}
.y1b0{bottom:597.213333pt;}
.y127{bottom:599.293333pt;}
.ye0{bottom:601.053333pt;}
.y110{bottom:604.733333pt;}
.yf{bottom:606.173333pt;}
.y88{bottom:606.813333pt;}
.y62{bottom:607.613333pt;}
.y3c{bottom:609.373333pt;}
.y17b{bottom:612.253333pt;}
.yc3{bottom:612.733333pt;}
.y199{bottom:613.213333pt;}
.y126{bottom:615.613333pt;}
.y1b9{bottom:616.573333pt;}
.y10f{bottom:621.053333pt;}
.y87{bottom:624.733333pt;}
.y61{bottom:625.373333pt;}
.ye{bottom:625.533333pt;}
.ydf{bottom:626.013333pt;}
.y3b{bottom:627.293333pt;}
.yc2{bottom:630.653333pt;}
.y125{bottom:631.933333pt;}
.y198{bottom:632.573333pt;}
.y1c0{bottom:635.933333pt;}
.y10e{bottom:637.373333pt;}
.y86{bottom:642.653333pt;}
.y60{bottom:643.293333pt;}
.yd{bottom:644.893333pt;}
.y3a{bottom:645.213333pt;}
.y17a{bottom:646.173333pt;}
.y124{bottom:648.253333pt;}
.y197{bottom:651.933333pt;}
.y10d{bottom:653.693333pt;}
.y85{bottom:660.413333pt;}
.y5f{bottom:661.213333pt;}
.y39{bottom:663.133333pt;}
.yc{bottom:664.093333pt;}
.y123{bottom:664.413333pt;}
.yc1{bottom:667.133333pt;}
.y10c{bottom:669.853333pt;}
.y1af{bottom:671.133333pt;}
.y84{bottom:678.333333pt;}
.y5e{bottom:679.133333pt;}
.y179{bottom:680.093333pt;}
.y122{bottom:680.733333pt;}
.y38{bottom:681.053333pt;}
.yb{bottom:683.453333pt;}
.y10b{bottom:686.173333pt;}
.y196{bottom:687.133333pt;}
.y1b8{bottom:690.493333pt;}
.y83{bottom:696.253333pt;}
.y5d{bottom:697.053333pt;}
.y178{bottom:698.013333pt;}
.y37{bottom:698.973333pt;}
.y10a{bottom:702.493333pt;}
.ya{bottom:702.813333pt;}
.yc0{bottom:703.773333pt;}
.y121{bottom:705.693333pt;}
.y195{bottom:706.493333pt;}
.y82{bottom:714.173333pt;}
.y5c{bottom:714.973333pt;}
.y177{bottom:715.933333pt;}
.y36{bottom:716.893333pt;}
.y109{bottom:718.813333pt;}
.ybf{bottom:721.693333pt;}
.y9{bottom:722.173333pt;}
.y194{bottom:725.853333pt;}
.y81{bottom:732.133333pt;}
.y5b{bottom:732.933333pt;}
.y176{bottom:733.893333pt;}
.y35{bottom:734.853333pt;}
.y108{bottom:743.653333pt;}
.y1ae{bottom:745.253333pt;}
.y80{bottom:750.053333pt;}
.y5a{bottom:750.853333pt;}
.y8{bottom:751.493333pt;}
.y175{bottom:751.813333pt;}
.y34{bottom:752.773333pt;}
.ybe{bottom:755.653333pt;}
.y193{bottom:761.253333pt;}
.y7f{bottom:767.973333pt;}
.y59{bottom:768.773333pt;}
.y174{bottom:769.733333pt;}
.y33{bottom:770.693333pt;}
.y192{bottom:780.453333pt;}
.ybd{bottom:785.573333pt;}
.y7e{bottom:785.733333pt;}
.y16a{bottom:785.893333pt;}
.y58{bottom:786.693333pt;}
.y173{bottom:787.653333pt;}
.y1ad{bottom:799.813333pt;}
.y169{bottom:803.813333pt;}
.y32{bottom:804.453333pt;}
.y172{bottom:805.413333pt;}
.y7{bottom:807.973333pt;}
.y191{bottom:815.813333pt;}
.y1bf{bottom:819.173333pt;}
.y168{bottom:821.733333pt;}
.y31{bottom:822.373333pt;}
.y171{bottom:824.773333pt;}
.y190{bottom:835.173333pt;}
.y6{bottom:836.133333pt;}
.y167{bottom:839.493333pt;}
.y30{bottom:840.293333pt;}
.y5{bottom:853.733333pt;}
.y18f{bottom:854.533333pt;}
.y2f{bottom:858.213333pt;}
.y170{bottom:858.693333pt;}
.ybc{bottom:867.653333pt;}
.y4{bottom:871.333333pt;}
.y1ac{bottom:873.733333pt;}
.y2e{bottom:876.133333pt;}
.y18e{bottom:889.733333pt;}
.y16f{bottom:892.613333pt;}
.y1be{bottom:893.093333pt;}
.ybb{bottom:893.733333pt;}
.y2d{bottom:894.053333pt;}
.y3{bottom:899.493333pt;}
.y18d{bottom:909.093333pt;}
.y16e{bottom:910.533333pt;}
.y2c{bottom:911.973333pt;}
.y2{bottom:928.453333pt;}
.y2b{bottom:929.893333pt;}
.y1{bottom:947.813333pt;}
.y2a{bottom:998.200000pt;}
.y29{bottom:1015.864000pt;}
.y28{bottom:1033.528000pt;}
.h7{height:29.266667pt;}
.hb{height:29.280000pt;}
.hc{height:29.298667pt;}
.h9{height:29.426667pt;}
.hd{height:34.374375pt;}
.h5{height:42.262500pt;}
.h6{height:44.965000pt;}
.ha{height:47.742188pt;}
.h8{height:49.148438pt;}
.h2{height:52.834688pt;}
.h3{height:54.390938pt;}
.h4{height:58.563750pt;}
.h1{height:60.288750pt;}
.h0{height:1056.000000pt;}
.w3{width:66.912000pt;}
.w1{width:73.426667pt;}
.w5{width:85.458667pt;}
.w4{width:93.906667pt;}
.w2{width:193.613333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:4.946667pt;}
.x11{left:7.826667pt;}
.x13{left:13.266667pt;}
.x15{left:14.226667pt;}
.xf{left:16.506667pt;}
.x8{left:21.421333pt;}
.xa{left:23.506667pt;}
.x14{left:33.786667pt;}
.xc{left:37.146667pt;}
.xd{left:38.266667pt;}
.x7{left:113.472000pt;}
.x4{left:115.232000pt;}
.x1{left:120.512000pt;}
.x9{left:151.400000pt;}
.x2{left:210.106667pt;}
.xb{left:224.840000pt;}
.x17{left:253.466667pt;}
.x3{left:264.546667pt;}
.x5{left:287.426667pt;}
.x6{left:290.146667pt;}
.x18{left:301.506667pt;}
.xe{left:418.466667pt;}
.x10{left:485.386667pt;}
.x12{left:579.306667pt;}
.x1f{left:605.573333pt;}
.x1a{left:627.493333pt;}
.x1e{left:663.493333pt;}
.x1d{left:690.373333pt;}
.x1c{left:710.533333pt;}
.x19{left:711.973333pt;}
.x1b{left:713.573333pt;}
}




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