
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_d5d3c124a02e2ae1acc07bfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6c008fb9477539cd8d58d004.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_3bbecb96fecdc45056ace34f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_04977a105c9f7308fbe2dd11.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_f08ef9459f683f15b4dfae17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_5dd20d85ae96bde658b9a77b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_47cccebd00dd4f2d05c8f4be.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.732000px;}
.ls9{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.370200px;}
.lsb{letter-spacing:-0.326400px;}
.lse{letter-spacing:-0.157800px;}
.lsd{letter-spacing:-0.121200px;}
.ls28{letter-spacing:-0.097800px;}
.ls26{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.038880px;}
.ls12{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.010800px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls2e{letter-spacing:0.022080px;}
.ls24{letter-spacing:0.023040px;}
.ls1b{letter-spacing:0.036480px;}
.ls21{letter-spacing:0.051840px;}
.ls4{letter-spacing:0.060480px;}
.ls32{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.138240px;}
.ls8{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.195000px;}
.ls14{letter-spacing:0.211680px;}
.ls1a{letter-spacing:0.211800px;}
.ls1c{letter-spacing:0.240480px;}
.ls18{letter-spacing:0.255600px;}
.ls22{letter-spacing:0.263520px;}
.ls34{letter-spacing:0.306000px;}
.ls5{letter-spacing:0.309000px;}
.ls6{letter-spacing:0.319680px;}
.ls30{letter-spacing:0.319800px;}
.ls1e{letter-spacing:0.329040px;}
.lsf{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.351360px;}
.ls16{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.384480px;}
.ls11{letter-spacing:0.385800px;}
.ls15{letter-spacing:0.468000px;}
.ls2c{letter-spacing:0.598800px;}
.ls33{letter-spacing:0.622080px;}
.ls31{letter-spacing:0.624000px;}
.ls29{letter-spacing:0.660960px;}
.ls27{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.780480px;}
.ls25{letter-spacing:0.951840px;}
.ls2b{letter-spacing:0.978000px;}
.ls2a{letter-spacing:2.246400px;}
.ls23{letter-spacing:4.132800px;}
.ls2f{letter-spacing:47.466720px;}
.ls2d{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws13{word-spacing:-14.958600px;}
.wsd{word-spacing:-14.572800px;}
.ws17{word-spacing:-14.125200px;}
.ws15{word-spacing:-13.813200px;}
.ws1a{word-spacing:-13.771200px;}
.ws18{word-spacing:-13.746000px;}
.ws9{word-spacing:-13.490400px;}
.ws19{word-spacing:-13.467000px;}
.wsb{word-spacing:-13.456200px;}
.ws12{word-spacing:-13.402800px;}
.ws1b{word-spacing:-13.359000px;}
.wsa{word-spacing:-13.342200px;}
.ws4{word-spacing:-13.160400px;}
.ws10{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wse{word-spacing:-13.111200px;}
.ws11{word-spacing:-13.108320px;}
.ws14{word-spacing:-13.093920px;}
.ws16{word-spacing:-13.049400px;}
.ws7{word-spacing:-13.026000px;}
.ws8{word-spacing:-12.989400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws6{word-spacing:-8.553600px;}
.wsf{word-spacing:0.000000px;}
.wsc{word-spacing:2.552040px;}
._12{margin-left:-3.584644px;}
._c{margin-left:-2.450399px;}
._0{margin-left:-1.159200px;}
._1{width:1.002000px;}
._3{width:2.911200px;}
._6{width:4.257000px;}
._e{width:5.438399px;}
._d{width:6.633599px;}
._f{width:7.654203px;}
._4{width:8.665200px;}
._8{width:10.233597px;}
._7{width:11.772600px;}
._a{width:14.230558px;}
._b{width:15.540360px;}
._9{width:16.672801px;}
._5{width:18.645000px;}
._10{width:20.139000px;}
._14{width:21.461405px;}
._11{width:23.268595px;}
._13{width:30.252480px;}
._15{width:32.403840px;}
._2{width:37.318320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:7.740000px;}
.y91{bottom:7.920000px;}
.y92{bottom:18.900000px;}
.y8d{bottom:21.600000px;}
.y90{bottom:29.880000px;}
.y8c{bottom:43.605000px;}
.y2{bottom:73.296000px;}
.y2b{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.yd5{bottom:112.176000px;}
.y5f{bottom:113.256000px;}
.y100{bottom:116.856000px;}
.y97{bottom:120.276000px;}
.y73{bottom:123.336000px;}
.yd4{bottom:129.816000px;}
.y5e{bottom:130.896000px;}
.yff{bottom:134.496000px;}
.y96{bottom:137.916000px;}
.y127{bottom:142.236000px;}
.y29{bottom:142.416000px;}
.yb6{bottom:147.456000px;}
.y5d{bottom:148.536000px;}
.y72{bottom:155.550000px;}
.y126{bottom:159.870000px;}
.y28{bottom:160.050000px;}
.yfe{bottom:160.950000px;}
.yd3{bottom:162.030000px;}
.y27{bottom:177.510000px;}
.yfd{bottom:178.590000px;}
.yb5{bottom:183.090000px;}
.y5c{bottom:183.990000px;}
.y125{bottom:186.330000px;}
.y95{bottom:188.310000px;}
.y26{bottom:195.150000px;}
.yfc{bottom:196.230000px;}
.yb4{bottom:200.730000px;}
.y5b{bottom:201.630000px;}
.y124{bottom:203.970000px;}
.y25{bottom:212.790000px;}
.y94{bottom:215.670000px;}
.yb3{bottom:218.370000px;}
.y5a{bottom:219.270000px;}
.yfb{bottom:222.690000px;}
.y24{bottom:230.430000px;}
.y123{bottom:230.610000px;}
.y59{bottom:236.910000px;}
.yfa{bottom:240.330000px;}
.y93{bottom:243.030000px;}
.y23{bottom:247.890000px;}
.y122{bottom:248.250000px;}
.yb2{bottom:250.410000px;}
.y58{bottom:254.370000px;}
.y22{bottom:265.530000px;}
.yf9{bottom:266.970000px;}
.y8b{bottom:270.390000px;}
.y57{bottom:272.010000px;}
.y121{bottom:274.710000px;}
.y21{bottom:283.170000px;}
.yf8{bottom:284.610000px;}
.y120{bottom:292.350000px;}
.y56{bottom:298.830000px;}
.y20{bottom:300.630000px;}
.yf7{bottom:311.115000px;}
.y11f{bottom:319.035000px;}
.y8e{bottom:319.935000px;}
.y1f{bottom:327.495000px;}
.yf6{bottom:328.755000px;}
.y11e{bottom:336.675000px;}
.y55{bottom:347.115000px;}
.y11d{bottom:354.135000px;}
.yf5{bottom:355.395000px;}
.y54{bottom:364.755000px;}
.y8a{bottom:368.535000px;}
.yf4{bottom:373.035000px;}
.y1e{bottom:375.915000px;}
.y11c{bottom:380.775000px;}
.y53{bottom:382.395000px;}
.y89{bottom:386.175000px;}
.yd2{bottom:388.155000px;}
.y1d{bottom:393.735000px;}
.y11b{bottom:398.415000px;}
.yf3{bottom:399.495000px;}
.y52{bottom:400.035000px;}
.yd1{bottom:405.795000px;}
.yf2{bottom:417.135000px;}
.y51{bottom:417.675000px;}
.y88{bottom:421.815000px;}
.yd0{bottom:423.435000px;}
.y11a{bottom:424.875000px;}
.y1c{bottom:430.815000px;}
.y50{bottom:435.135000px;}
.y87{bottom:439.455000px;}
.ycf{bottom:441.075000px;}
.y119{bottom:442.515000px;}
.yf1{bottom:443.595000px;}
.y1b{bottom:448.455000px;}
.y86{bottom:456.915000px;}
.yce{bottom:458.535000px;}
.yf0{bottom:461.235000px;}
.y1a{bottom:466.095000px;}
.y118{bottom:468.975000px;}
.y4f{bottom:470.775000px;}
.y85{bottom:474.555000px;}
.ycd{bottom:476.175000px;}
.yb1{bottom:478.875000px;}
.y71{bottom:483.015000px;}
.y19{bottom:483.555000px;}
.y117{bottom:486.615000px;}
.yef{bottom:487.875000px;}
.y4e{bottom:488.415000px;}
.y84{bottom:492.195000px;}
.ycc{bottom:493.815000px;}
.yb0{bottom:496.515000px;}
.y70{bottom:500.655000px;}
.y18{bottom:501.195000px;}
.y135{bottom:504.255000px;}
.yee{bottom:505.515000px;}
.y4d{bottom:505.875000px;}
.y83{bottom:509.655000px;}
.ycb{bottom:511.455000px;}
.y116{bottom:513.255000px;}
.yaf{bottom:514.155000px;}
.y6f{bottom:518.295000px;}
.y17{bottom:518.835000px;}
.y134{bottom:521.895000px;}
.yed{bottom:523.155000px;}
.y4c{bottom:523.515000px;}
.y82{bottom:527.295000px;}
.y115{bottom:530.895000px;}
.yae{bottom:531.615000px;}
.y6e{bottom:535.935000px;}
.y16{bottom:536.295000px;}
.y4b{bottom:541.155000px;}
.y81{bottom:544.935000px;}
.yca{bottom:546.915000px;}
.y133{bottom:548.355000px;}
.yad{bottom:549.255000px;}
.yec{bottom:549.615000px;}
.y6d{bottom:553.395000px;}
.y15{bottom:553.935000px;}
.y114{bottom:557.355000px;}
.y4a{bottom:558.615000px;}
.y80{bottom:562.395000px;}
.yc9{bottom:564.555000px;}
.y132{bottom:565.995000px;}
.yac{bottom:566.895000px;}
.yeb{bottom:567.255000px;}
.y6c{bottom:571.035000px;}
.y14{bottom:571.575000px;}
.y113{bottom:574.995000px;}
.y49{bottom:576.255000px;}
.yc8{bottom:582.195000px;}
.yea{bottom:584.925000px;}
.y6b{bottom:588.705000px;}
.y13{bottom:589.065000px;}
.y131{bottom:592.665000px;}
.y48{bottom:593.925000px;}
.y7f{bottom:598.065000px;}
.yc7{bottom:599.685000px;}
.y112{bottom:601.665000px;}
.yab{bottom:602.385000px;}
.y6a{bottom:606.165000px;}
.y12{bottom:606.705000px;}
.y130{bottom:610.305000px;}
.y47{bottom:611.385000px;}
.y7e{bottom:615.705000px;}
.yc6{bottom:617.325000px;}
.y111{bottom:619.305000px;}
.yaa{bottom:620.025000px;}
.y11{bottom:624.345000px;}
.y46{bottom:629.025000px;}
.y69{bottom:632.805000px;}
.y7d{bottom:633.345000px;}
.yc5{bottom:634.965000px;}
.y12f{bottom:636.765000px;}
.ya9{bottom:637.665000px;}
.y10{bottom:641.985000px;}
.y110{bottom:645.765000px;}
.ye9{bottom:646.665000px;}
.yc4{bottom:652.425000px;}
.y12e{bottom:654.405000px;}
.ya8{bottom:655.305000px;}
.yf{bottom:659.445000px;}
.y10f{bottom:663.405000px;}
.y45{bottom:664.665000px;}
.y7c{bottom:665.385000px;}
.y68{bottom:668.625000px;}
.yc3{bottom:670.065000px;}
.ya7{bottom:672.765000px;}
.ye8{bottom:673.125000px;}
.ye{bottom:677.085000px;}
.y12d{bottom:680.865000px;}
.y10e{bottom:681.045000px;}
.y44{bottom:682.305000px;}
.ya6{bottom:690.405000px;}
.ye7{bottom:690.765000px;}
.yd{bottom:694.725000px;}
.y12c{bottom:698.505000px;}
.y43{bottom:699.765000px;}
.yc2{bottom:705.705000px;}
.y10d{bottom:707.505000px;}
.ya5{bottom:708.045000px;}
.yc{bottom:712.185000px;}
.y67{bottom:716.865000px;}
.y42{bottom:717.405000px;}
.ye6{bottom:717.585000px;}
.yc1{bottom:723.345000px;}
.y10c{bottom:725.145000px;}
.ya4{bottom:725.505000px;}
.y66{bottom:734.505000px;}
.y41{bottom:735.045000px;}
.yb{bottom:739.005000px;}
.yc0{bottom:740.805000px;}
.y12b{bottom:742.785000px;}
.y10b{bottom:751.605000px;}
.y65{bottom:752.145000px;}
.y40{bottom:752.505000px;}
.ybf{bottom:758.445000px;}
.ye5{bottom:765.825000px;}
.y10a{bottom:769.245000px;}
.y64{bottom:769.785000px;}
.y3f{bottom:770.145000px;}
.ybe{bottom:776.085000px;}
.y12a{bottom:786.885000px;}
.y63{bottom:787.245000px;}
.ya{bottom:787.425000px;}
.ya3{bottom:787.605000px;}
.y3e{bottom:787.785000px;}
.ye4{bottom:792.825000px;}
.ybd{bottom:793.545000px;}
.y109{bottom:795.885000px;}
.y62{bottom:804.885000px;}
.y3d{bottom:805.245000px;}
.ybc{bottom:811.185000px;}
.y108{bottom:813.525000px;}
.y61{bottom:822.525000px;}
.y3c{bottom:822.885000px;}
.y9{bottom:823.245000px;}
.ybb{bottom:828.825000px;}
.ye3{bottom:829.905000px;}
.y129{bottom:831.165000px;}
.y107{bottom:839.985000px;}
.y3b{bottom:840.525000px;}
.yba{bottom:846.285000px;}
.ye2{bottom:847.545000px;}
.y106{bottom:857.625000px;}
.y60{bottom:857.985000px;}
.y3a{bottom:858.165000px;}
.y8{bottom:859.290000px;}
.ye1{bottom:874.410000px;}
.y39{bottom:875.670000px;}
.yb9{bottom:881.970000px;}
.y105{bottom:884.310000px;}
.y38{bottom:893.310000px;}
.ya2{bottom:893.670000px;}
.y7{bottom:899.070000px;}
.yb8{bottom:899.610000px;}
.y104{bottom:901.950000px;}
.y37{bottom:910.950000px;}
.ya1{bottom:911.310000px;}
.ye0{bottom:911.670000px;}
.y6{bottom:917.070000px;}
.y36{bottom:928.410000px;}
.ya0{bottom:928.950000px;}
.yb7{bottom:931.650000px;}
.y35{bottom:946.050000px;}
.y9f{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.ydf{bottom:959.910000px;}
.y9e{bottom:964.050000px;}
.y103{bottom:972.510000px;}
.yde{bottom:977.550000px;}
.y34{bottom:981.510000px;}
.y9d{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.y102{bottom:990.150000px;}
.y7b{bottom:990.510000px;}
.ydd{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.y101{bottom:1007.790000px;}
.y7a{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.ydc{bottom:1012.830000px;}
.y32{bottom:1016.790000px;}
.y79{bottom:1025.790000px;}
.ydb{bottom:1030.470000px;}
.y31{bottom:1034.430000px;}
.y78{bottom:1043.430000px;}
.yda{bottom:1047.930000px;}
.y30{bottom:1052.070000px;}
.y9c{bottom:1052.430000px;}
.y128{bottom:1060.890000px;}
.y77{bottom:1061.070000px;}
.yd9{bottom:1065.570000px;}
.y2f{bottom:1069.530000px;}
.y9b{bottom:1070.070000px;}
.y76{bottom:1078.530000px;}
.yd8{bottom:1083.210000px;}
.y2e{bottom:1087.170000px;}
.y9a{bottom:1087.530000px;}
.y75{bottom:1096.170000px;}
.yd7{bottom:1100.670000px;}
.y99{bottom:1105.170000px;}
.y74{bottom:1113.810000px;}
.y2d{bottom:1122.630000px;}
.y98{bottom:1122.810000px;}
.yd6{bottom:1127.490000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.460000px;}
.hf{height:26.640000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:40.420898px;}
.he{height:48.636000px;}
.hc{height:50.597578px;}
.h7{height:53.252930px;}
.h8{height:56.084062px;}
.h5{height:59.027344px;}
.h10{height:61.423863px;}
.ha{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:75.067383px;}
.hb{height:75.996000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:26.496000px;}
.w9{width:43.416000px;}
.w3{width:58.896000px;}
.w7{width:64.800000px;}
.w8{width:80.100000px;}
.w4{width:134.136000px;}
.w6{width:173.010000px;}
.w5{width:189.930000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.xa{left:72.000000px;}
.x1a{left:74.879987px;}
.x17{left:85.355987px;}
.x8{left:90.215987px;}
.x7{left:102.635987px;}
.x1e{left:111.275987px;}
.xc{left:131.616000px;}
.x18{left:171.749987px;}
.x5{left:180.749987px;}
.x9{left:183.269987px;}
.x1b{left:187.949987px;}
.x2{left:210.989987px;}
.x1d{left:212.969987px;}
.xd{left:266.655000px;}
.x10{left:332.355000px;}
.x11{left:413.175000px;}
.xe{left:457.485000px;}
.x12{left:523.185000px;}
.x13{left:604.005000px;}
.xf{left:648.330000px;}
.x6{left:671.729987px;}
.x4{left:682.889987px;}
.x19{left:690.809987px;}
.x14{left:714.030000px;}
.x1c{left:745.889987px;}
.x15{left:794.850000px;}
.x16{left:798.809987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.650667pt;}
.ls9{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.329067pt;}
.lsb{letter-spacing:-0.290133pt;}
.lse{letter-spacing:-0.140267pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls28{letter-spacing:-0.086933pt;}
.ls26{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.034560pt;}
.ls12{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls2e{letter-spacing:0.019627pt;}
.ls24{letter-spacing:0.020480pt;}
.ls1b{letter-spacing:0.032427pt;}
.ls21{letter-spacing:0.046080pt;}
.ls4{letter-spacing:0.053760pt;}
.ls32{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.122880pt;}
.ls8{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.173333pt;}
.ls14{letter-spacing:0.188160pt;}
.ls1a{letter-spacing:0.188267pt;}
.ls1c{letter-spacing:0.213760pt;}
.ls18{letter-spacing:0.227200pt;}
.ls22{letter-spacing:0.234240pt;}
.ls34{letter-spacing:0.272000pt;}
.ls5{letter-spacing:0.274667pt;}
.ls6{letter-spacing:0.284160pt;}
.ls30{letter-spacing:0.284267pt;}
.ls1e{letter-spacing:0.292480pt;}
.lsf{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.312320pt;}
.ls16{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.341760pt;}
.ls11{letter-spacing:0.342933pt;}
.ls15{letter-spacing:0.416000pt;}
.ls2c{letter-spacing:0.532267pt;}
.ls33{letter-spacing:0.552960pt;}
.ls31{letter-spacing:0.554667pt;}
.ls29{letter-spacing:0.587520pt;}
.ls27{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.693760pt;}
.ls25{letter-spacing:0.846080pt;}
.ls2b{letter-spacing:0.869333pt;}
.ls2a{letter-spacing:1.996800pt;}
.ls23{letter-spacing:3.673600pt;}
.ls2f{letter-spacing:42.192640pt;}
.ls2d{letter-spacing:72.272640pt;}
.ws13{word-spacing:-13.296533pt;}
.wsd{word-spacing:-12.953600pt;}
.ws17{word-spacing:-12.555733pt;}
.ws15{word-spacing:-12.278400pt;}
.ws1a{word-spacing:-12.241067pt;}
.ws18{word-spacing:-12.218667pt;}
.ws9{word-spacing:-11.991467pt;}
.ws19{word-spacing:-11.970667pt;}
.wsb{word-spacing:-11.961067pt;}
.ws12{word-spacing:-11.913600pt;}
.ws1b{word-spacing:-11.874667pt;}
.wsa{word-spacing:-11.859733pt;}
.ws4{word-spacing:-11.698133pt;}
.ws10{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.654400pt;}
.ws11{word-spacing:-11.651840pt;}
.ws14{word-spacing:-11.639040pt;}
.ws16{word-spacing:-11.599467pt;}
.ws7{word-spacing:-11.578667pt;}
.ws8{word-spacing:-11.546133pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws6{word-spacing:-7.603200pt;}
.wsf{word-spacing:0.000000pt;}
.wsc{word-spacing:2.268480pt;}
._12{margin-left:-3.186350pt;}
._c{margin-left:-2.178132pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.890667pt;}
._3{width:2.587733pt;}
._6{width:3.784000pt;}
._e{width:4.834132pt;}
._d{width:5.896532pt;}
._f{width:6.803736pt;}
._4{width:7.702400pt;}
._8{width:9.096531pt;}
._7{width:10.464534pt;}
._a{width:12.649385pt;}
._b{width:13.813654pt;}
._9{width:14.820268pt;}
._5{width:16.573334pt;}
._10{width:17.901334pt;}
._14{width:19.076805pt;}
._11{width:20.683195pt;}
._13{width:26.891093pt;}
._15{width:28.803413pt;}
._2{width:33.171840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:6.880000pt;}
.y91{bottom:7.040000pt;}
.y92{bottom:16.800000pt;}
.y8d{bottom:19.200000pt;}
.y90{bottom:26.560000pt;}
.y8c{bottom:38.760000pt;}
.y2{bottom:65.152000pt;}
.y2b{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.yd5{bottom:99.712000pt;}
.y5f{bottom:100.672000pt;}
.y100{bottom:103.872000pt;}
.y97{bottom:106.912000pt;}
.y73{bottom:109.632000pt;}
.yd4{bottom:115.392000pt;}
.y5e{bottom:116.352000pt;}
.yff{bottom:119.552000pt;}
.y96{bottom:122.592000pt;}
.y127{bottom:126.432000pt;}
.y29{bottom:126.592000pt;}
.yb6{bottom:131.072000pt;}
.y5d{bottom:132.032000pt;}
.y72{bottom:138.266667pt;}
.y126{bottom:142.106667pt;}
.y28{bottom:142.266667pt;}
.yfe{bottom:143.066667pt;}
.yd3{bottom:144.026667pt;}
.y27{bottom:157.786667pt;}
.yfd{bottom:158.746667pt;}
.yb5{bottom:162.746667pt;}
.y5c{bottom:163.546667pt;}
.y125{bottom:165.626667pt;}
.y95{bottom:167.386667pt;}
.y26{bottom:173.466667pt;}
.yfc{bottom:174.426667pt;}
.yb4{bottom:178.426667pt;}
.y5b{bottom:179.226667pt;}
.y124{bottom:181.306667pt;}
.y25{bottom:189.146667pt;}
.y94{bottom:191.706667pt;}
.yb3{bottom:194.106667pt;}
.y5a{bottom:194.906667pt;}
.yfb{bottom:197.946667pt;}
.y24{bottom:204.826667pt;}
.y123{bottom:204.986667pt;}
.y59{bottom:210.586667pt;}
.yfa{bottom:213.626667pt;}
.y93{bottom:216.026667pt;}
.y23{bottom:220.346667pt;}
.y122{bottom:220.666667pt;}
.yb2{bottom:222.586667pt;}
.y58{bottom:226.106667pt;}
.y22{bottom:236.026667pt;}
.yf9{bottom:237.306667pt;}
.y8b{bottom:240.346667pt;}
.y57{bottom:241.786667pt;}
.y121{bottom:244.186667pt;}
.y21{bottom:251.706667pt;}
.yf8{bottom:252.986667pt;}
.y120{bottom:259.866667pt;}
.y56{bottom:265.626667pt;}
.y20{bottom:267.226667pt;}
.yf7{bottom:276.546667pt;}
.y11f{bottom:283.586667pt;}
.y8e{bottom:284.386667pt;}
.y1f{bottom:291.106667pt;}
.yf6{bottom:292.226667pt;}
.y11e{bottom:299.266667pt;}
.y55{bottom:308.546667pt;}
.y11d{bottom:314.786667pt;}
.yf5{bottom:315.906667pt;}
.y54{bottom:324.226667pt;}
.y8a{bottom:327.586667pt;}
.yf4{bottom:331.586667pt;}
.y1e{bottom:334.146667pt;}
.y11c{bottom:338.466667pt;}
.y53{bottom:339.906667pt;}
.y89{bottom:343.266667pt;}
.yd2{bottom:345.026667pt;}
.y1d{bottom:349.986667pt;}
.y11b{bottom:354.146667pt;}
.yf3{bottom:355.106667pt;}
.y52{bottom:355.586667pt;}
.yd1{bottom:360.706667pt;}
.yf2{bottom:370.786667pt;}
.y51{bottom:371.266667pt;}
.y88{bottom:374.946667pt;}
.yd0{bottom:376.386667pt;}
.y11a{bottom:377.666667pt;}
.y1c{bottom:382.946667pt;}
.y50{bottom:386.786667pt;}
.y87{bottom:390.626667pt;}
.ycf{bottom:392.066667pt;}
.y119{bottom:393.346667pt;}
.yf1{bottom:394.306667pt;}
.y1b{bottom:398.626667pt;}
.y86{bottom:406.146667pt;}
.yce{bottom:407.586667pt;}
.yf0{bottom:409.986667pt;}
.y1a{bottom:414.306667pt;}
.y118{bottom:416.866667pt;}
.y4f{bottom:418.466667pt;}
.y85{bottom:421.826667pt;}
.ycd{bottom:423.266667pt;}
.yb1{bottom:425.666667pt;}
.y71{bottom:429.346667pt;}
.y19{bottom:429.826667pt;}
.y117{bottom:432.546667pt;}
.yef{bottom:433.666667pt;}
.y4e{bottom:434.146667pt;}
.y84{bottom:437.506667pt;}
.ycc{bottom:438.946667pt;}
.yb0{bottom:441.346667pt;}
.y70{bottom:445.026667pt;}
.y18{bottom:445.506667pt;}
.y135{bottom:448.226667pt;}
.yee{bottom:449.346667pt;}
.y4d{bottom:449.666667pt;}
.y83{bottom:453.026667pt;}
.ycb{bottom:454.626667pt;}
.y116{bottom:456.226667pt;}
.yaf{bottom:457.026667pt;}
.y6f{bottom:460.706667pt;}
.y17{bottom:461.186667pt;}
.y134{bottom:463.906667pt;}
.yed{bottom:465.026667pt;}
.y4c{bottom:465.346667pt;}
.y82{bottom:468.706667pt;}
.y115{bottom:471.906667pt;}
.yae{bottom:472.546667pt;}
.y6e{bottom:476.386667pt;}
.y16{bottom:476.706667pt;}
.y4b{bottom:481.026667pt;}
.y81{bottom:484.386667pt;}
.yca{bottom:486.146667pt;}
.y133{bottom:487.426667pt;}
.yad{bottom:488.226667pt;}
.yec{bottom:488.546667pt;}
.y6d{bottom:491.906667pt;}
.y15{bottom:492.386667pt;}
.y114{bottom:495.426667pt;}
.y4a{bottom:496.546667pt;}
.y80{bottom:499.906667pt;}
.yc9{bottom:501.826667pt;}
.y132{bottom:503.106667pt;}
.yac{bottom:503.906667pt;}
.yeb{bottom:504.226667pt;}
.y6c{bottom:507.586667pt;}
.y14{bottom:508.066667pt;}
.y113{bottom:511.106667pt;}
.y49{bottom:512.226667pt;}
.yc8{bottom:517.506667pt;}
.yea{bottom:519.933333pt;}
.y6b{bottom:523.293333pt;}
.y13{bottom:523.613333pt;}
.y131{bottom:526.813333pt;}
.y48{bottom:527.933333pt;}
.y7f{bottom:531.613333pt;}
.yc7{bottom:533.053333pt;}
.y112{bottom:534.813333pt;}
.yab{bottom:535.453333pt;}
.y6a{bottom:538.813333pt;}
.y12{bottom:539.293333pt;}
.y130{bottom:542.493333pt;}
.y47{bottom:543.453333pt;}
.y7e{bottom:547.293333pt;}
.yc6{bottom:548.733333pt;}
.y111{bottom:550.493333pt;}
.yaa{bottom:551.133333pt;}
.y11{bottom:554.973333pt;}
.y46{bottom:559.133333pt;}
.y69{bottom:562.493333pt;}
.y7d{bottom:562.973333pt;}
.yc5{bottom:564.413333pt;}
.y12f{bottom:566.013333pt;}
.ya9{bottom:566.813333pt;}
.y10{bottom:570.653333pt;}
.y110{bottom:574.013333pt;}
.ye9{bottom:574.813333pt;}
.yc4{bottom:579.933333pt;}
.y12e{bottom:581.693333pt;}
.ya8{bottom:582.493333pt;}
.yf{bottom:586.173333pt;}
.y10f{bottom:589.693333pt;}
.y45{bottom:590.813333pt;}
.y7c{bottom:591.453333pt;}
.y68{bottom:594.333333pt;}
.yc3{bottom:595.613333pt;}
.ya7{bottom:598.013333pt;}
.ye8{bottom:598.333333pt;}
.ye{bottom:601.853333pt;}
.y12d{bottom:605.213333pt;}
.y10e{bottom:605.373333pt;}
.y44{bottom:606.493333pt;}
.ya6{bottom:613.693333pt;}
.ye7{bottom:614.013333pt;}
.yd{bottom:617.533333pt;}
.y12c{bottom:620.893333pt;}
.y43{bottom:622.013333pt;}
.yc2{bottom:627.293333pt;}
.y10d{bottom:628.893333pt;}
.ya5{bottom:629.373333pt;}
.yc{bottom:633.053333pt;}
.y67{bottom:637.213333pt;}
.y42{bottom:637.693333pt;}
.ye6{bottom:637.853333pt;}
.yc1{bottom:642.973333pt;}
.y10c{bottom:644.573333pt;}
.ya4{bottom:644.893333pt;}
.y66{bottom:652.893333pt;}
.y41{bottom:653.373333pt;}
.yb{bottom:656.893333pt;}
.yc0{bottom:658.493333pt;}
.y12b{bottom:660.253333pt;}
.y10b{bottom:668.093333pt;}
.y65{bottom:668.573333pt;}
.y40{bottom:668.893333pt;}
.ybf{bottom:674.173333pt;}
.ye5{bottom:680.733333pt;}
.y10a{bottom:683.773333pt;}
.y64{bottom:684.253333pt;}
.y3f{bottom:684.573333pt;}
.ybe{bottom:689.853333pt;}
.y12a{bottom:699.453333pt;}
.y63{bottom:699.773333pt;}
.ya{bottom:699.933333pt;}
.ya3{bottom:700.093333pt;}
.y3e{bottom:700.253333pt;}
.ye4{bottom:704.733333pt;}
.ybd{bottom:705.373333pt;}
.y109{bottom:707.453333pt;}
.y62{bottom:715.453333pt;}
.y3d{bottom:715.773333pt;}
.ybc{bottom:721.053333pt;}
.y108{bottom:723.133333pt;}
.y61{bottom:731.133333pt;}
.y3c{bottom:731.453333pt;}
.y9{bottom:731.773333pt;}
.ybb{bottom:736.733333pt;}
.ye3{bottom:737.693333pt;}
.y129{bottom:738.813333pt;}
.y107{bottom:746.653333pt;}
.y3b{bottom:747.133333pt;}
.yba{bottom:752.253333pt;}
.ye2{bottom:753.373333pt;}
.y106{bottom:762.333333pt;}
.y60{bottom:762.653333pt;}
.y3a{bottom:762.813333pt;}
.y8{bottom:763.813333pt;}
.ye1{bottom:777.253333pt;}
.y39{bottom:778.373333pt;}
.yb9{bottom:783.973333pt;}
.y105{bottom:786.053333pt;}
.y38{bottom:794.053333pt;}
.ya2{bottom:794.373333pt;}
.y7{bottom:799.173333pt;}
.yb8{bottom:799.653333pt;}
.y104{bottom:801.733333pt;}
.y37{bottom:809.733333pt;}
.ya1{bottom:810.053333pt;}
.ye0{bottom:810.373333pt;}
.y6{bottom:815.173333pt;}
.y36{bottom:825.253333pt;}
.ya0{bottom:825.733333pt;}
.yb7{bottom:828.133333pt;}
.y35{bottom:840.933333pt;}
.y9f{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.ydf{bottom:853.253333pt;}
.y9e{bottom:856.933333pt;}
.y103{bottom:864.453333pt;}
.yde{bottom:868.933333pt;}
.y34{bottom:872.453333pt;}
.y9d{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.y102{bottom:880.133333pt;}
.y7b{bottom:880.453333pt;}
.ydd{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.y101{bottom:895.813333pt;}
.y7a{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.ydc{bottom:900.293333pt;}
.y32{bottom:903.813333pt;}
.y79{bottom:911.813333pt;}
.ydb{bottom:915.973333pt;}
.y31{bottom:919.493333pt;}
.y78{bottom:927.493333pt;}
.yda{bottom:931.493333pt;}
.y30{bottom:935.173333pt;}
.y9c{bottom:935.493333pt;}
.y128{bottom:943.013333pt;}
.y77{bottom:943.173333pt;}
.yd9{bottom:947.173333pt;}
.y2f{bottom:950.693333pt;}
.y9b{bottom:951.173333pt;}
.y76{bottom:958.693333pt;}
.yd8{bottom:962.853333pt;}
.y2e{bottom:966.373333pt;}
.y9a{bottom:966.693333pt;}
.y75{bottom:974.373333pt;}
.yd7{bottom:978.373333pt;}
.y99{bottom:982.373333pt;}
.y74{bottom:990.053333pt;}
.y2d{bottom:997.893333pt;}
.y98{bottom:998.053333pt;}
.yd6{bottom:1002.213333pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.520000pt;}
.hf{height:23.680000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:35.929688pt;}
.he{height:43.232000pt;}
.hc{height:44.975625pt;}
.h7{height:47.335938pt;}
.h8{height:49.852500pt;}
.h5{height:52.468750pt;}
.h10{height:54.598989pt;}
.ha{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:66.726562pt;}
.hb{height:67.552000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:23.552000pt;}
.w9{width:38.592000pt;}
.w3{width:52.352000pt;}
.w7{width:57.600000pt;}
.w8{width:71.200000pt;}
.w4{width:119.232000pt;}
.w6{width:153.786667pt;}
.w5{width:168.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.xa{left:64.000000pt;}
.x1a{left:66.559988pt;}
.x17{left:75.871988pt;}
.x8{left:80.191988pt;}
.x7{left:91.231988pt;}
.x1e{left:98.911988pt;}
.xc{left:116.992000pt;}
.x18{left:152.666655pt;}
.x5{left:160.666655pt;}
.x9{left:162.906655pt;}
.x1b{left:167.066655pt;}
.x2{left:187.546655pt;}
.x1d{left:189.306655pt;}
.xd{left:237.026667pt;}
.x10{left:295.426667pt;}
.x11{left:367.266667pt;}
.xe{left:406.653333pt;}
.x12{left:465.053333pt;}
.x13{left:536.893333pt;}
.xf{left:576.293333pt;}
.x6{left:597.093322pt;}
.x4{left:607.013322pt;}
.x19{left:614.053322pt;}
.x14{left:634.693333pt;}
.x1c{left:663.013322pt;}
.x15{left:706.533333pt;}
.x16{left:710.053322pt;}
.x3{left:711.493322pt;}
}




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