
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_322d321f19db1900e885745c.woff')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_cee81d377a637319d86c07a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_dbabdd62b194a41339f54256.woff')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_e6744905ffb1a794e35b36b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cdd58a353b28acdca9463c5b.woff')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_47e1ddd1a711053c1e235e80.woff')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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_aff474510878226ae03275ef.woff')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aff474510878226ae03275ef.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8b23c183e25af73be87786c0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a7f5f930711a56cdc8de7281.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-18.180000px;}
.ls17{letter-spacing:-1.452000px;}
.ls16{letter-spacing:-1.380000px;}
.ls15{letter-spacing:-1.326000px;}
.ls18{letter-spacing:-0.371400px;}
.ls1e{letter-spacing:-0.243600px;}
.ls13{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls1d{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.011160px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.115800px;}
.ls4{letter-spacing:0.127200px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws3{word-spacing:-13.353600px;}
.ws11{word-spacing:-13.342200px;}
.wsb{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.215240px;}
.ws13{word-spacing:-13.134000px;}
.ws8{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.982800px;}
.ws10{word-spacing:-12.855000px;}
.wsc{word-spacing:-11.900400px;}
.wsd{word-spacing:-11.846400px;}
.wse{word-spacing:-11.774400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.598200px;}
._7{margin-left:-2.298000px;}
._0{margin-left:-1.110000px;}
._1{width:1.006896px;}
._3{width:2.946000px;}
._2{width:4.749600px;}
._6{width:5.823358px;}
._5{width:6.853800px;}
._10{width:8.056080px;}
._11{width:9.258360px;}
._9{width:10.701600px;}
._e{width:12.024000px;}
._4{width:15.330600px;}
._8{width:17.014200px;}
._a{width:18.384840px;}
._26{width:19.659000px;}
._c{width:21.200036px;}
._b{width:22.332600px;}
._16{width:23.783399px;}
._2a{width:25.009920px;}
._f{width:26.031960px;}
._19{width:27.054000px;}
._1a{width:28.256400px;}
._17{width:29.759400px;}
._15{width:31.286280px;}
._18{width:37.635120px;}
._1f{width:39.408480px;}
._13{width:41.182200px;}
._14{width:42.674760px;}
._21{width:44.198640px;}
._1e{width:62.666400px;}
._1d{width:63.809520px;}
._24{width:70.099920px;}
._25{width:71.121960px;}
._29{width:87.024240px;}
._28{width:88.060080px;}
._27{width:105.510600px;}
._12{width:107.735040px;}
._23{width:124.989480px;}
._22{width:162.143640px;}
._1b{width:178.616520px;}
._1c{width:179.698680px;}
._2b{width:233.205480px;}
._20{width:249.678360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y36{bottom:7.830000px;}
.y39{bottom:7.920000px;}
.y6b{bottom:8.010000px;}
.y6a{bottom:8.100000px;}
.y49{bottom:9.180000px;}
.y4e{bottom:9.270000px;}
.y46{bottom:25.380000px;}
.y4b{bottom:25.470000px;}
.y44{bottom:25.500000px;}
.y69{bottom:25.740000px;}
.y47{bottom:26.730000px;}
.y4c{bottom:26.820000px;}
.y71{bottom:29.880000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya8{bottom:111.630000px;}
.y105{bottom:112.350000px;}
.y83{bottom:115.680000px;}
.y53{bottom:123.600000px;}
.ya7{bottom:129.270000px;}
.y104{bottom:129.990000px;}
.yd8{bottom:130.980000px;}
.y82{bottom:133.320000px;}
.ya6{bottom:146.820000px;}
.yd7{bottom:148.530000px;}
.y81{bottom:150.870000px;}
.y103{bottom:156.540000px;}
.y131{bottom:160.680000px;}
.yd6{bottom:166.170000px;}
.y52{bottom:168.510000px;}
.y102{bottom:174.090000px;}
.y130{bottom:178.320000px;}
.ya5{bottom:182.370000px;}
.y80{bottom:183.090000px;}
.y76{bottom:189.390000px;}
.y101{bottom:191.730000px;}
.yd5{bottom:192.990000px;}
.y12f{bottom:195.870000px;}
.ya4{bottom:200.010000px;}
.y26{bottom:202.800000px;}
.y75{bottom:204.330000px;}
.y100{bottom:209.280000px;}
.y51{bottom:213.510000px;}
.ya3{bottom:217.560000px;}
.y25{bottom:220.440000px;}
.y12e{bottom:222.510000px;}
.ya2{bottom:235.200000px;}
.yff{bottom:235.830000px;}
.y24{bottom:237.990000px;}
.y12d{bottom:240.060000px;}
.y50{bottom:240.780000px;}
.yd4{bottom:241.320000px;}
.y74{bottom:249.240000px;}
.ya1{bottom:252.750000px;}
.yfe{bottom:253.470000px;}
.y23{bottom:255.540000px;}
.y12c{bottom:257.610000px;}
.yd3{bottom:258.870000px;}
.ya0{bottom:270.300000px;}
.yfd{bottom:271.020000px;}
.y22{bottom:273.180000px;}
.yd2{bottom:276.510000px;}
.y12b{bottom:284.250000px;}
.y4f{bottom:285.690000px;}
.y9f{bottom:287.940000px;}
.y21{bottom:290.730000px;}
.yd1{bottom:294.060000px;}
.y73{bottom:294.150000px;}
.yfc{bottom:297.660000px;}
.y12a{bottom:301.800000px;}
.y9e{bottom:305.490000px;}
.y20{bottom:308.370000px;}
.yd0{bottom:311.610000px;}
.y4d{bottom:313.050000px;}
.yfb{bottom:315.210000px;}
.y129{bottom:319.440000px;}
.y9d{bottom:323.130000px;}
.y1f{bottom:325.920000px;}
.yfa{bottom:332.760000px;}
.y72{bottom:339.060000px;}
.y4a{bottom:340.410000px;}
.y9c{bottom:340.680000px;}
.y1e{bottom:343.470000px;}
.y128{bottom:345.990000px;}
.ycf{bottom:347.250000px;}
.y9b{bottom:358.230000px;}
.yf9{bottom:359.400000px;}
.y1d{bottom:361.110000px;}
.y127{bottom:363.540000px;}
.yce{bottom:364.800000px;}
.y9a{bottom:375.870000px;}
.yf8{bottom:376.950000px;}
.y1c{bottom:378.660000px;}
.y126{bottom:381.180000px;}
.ycd{bottom:382.440000px;}
.y70{bottom:384.060000px;}
.y48{bottom:385.320000px;}
.y1b{bottom:396.300000px;}
.y125{bottom:398.730000px;}
.ycc{bottom:399.990000px;}
.yf7{bottom:403.590000px;}
.y99{bottom:411.420000px;}
.y45{bottom:412.680000px;}
.yf6{bottom:421.140000px;}
.y1a{bottom:423.120000px;}
.y124{bottom:425.370000px;}
.y98{bottom:429.060000px;}
.y6f{bottom:433.470000px;}
.ycb{bottom:435.540000px;}
.yf5{bottom:438.690000px;}
.y123{bottom:442.920000px;}
.y7f{bottom:443.010000px;}
.y97{bottom:446.610000px;}
.yca{bottom:453.180000px;}
.y43{bottom:457.590000px;}
.y122{bottom:460.470000px;}
.y7e{bottom:460.560000px;}
.y96{bottom:464.160000px;}
.yf4{bottom:465.330000px;}
.yc9{bottom:470.760000px;}
.y19{bottom:471.750000px;}
.y7d{bottom:478.140000px;}
.y6e{bottom:478.410000px;}
.y95{bottom:481.830000px;}
.yf3{bottom:482.910000px;}
.y121{bottom:487.140000px;}
.yc8{bottom:488.400000px;}
.y7c{bottom:495.780000px;}
.y94{bottom:499.380000px;}
.yf2{bottom:500.550000px;}
.y120{bottom:504.690000px;}
.yc7{bottom:505.950000px;}
.y18{bottom:508.830000px;}
.y93{bottom:517.020000px;}
.y6d{bottom:523.320000px;}
.yc6{bottom:523.500000px;}
.y42{bottom:523.860000px;}
.y17{bottom:526.380000px;}
.yf1{bottom:527.100000px;}
.y7b{bottom:528.000000px;}
.y11f{bottom:531.330000px;}
.yc5{bottom:541.140000px;}
.y16{bottom:544.020000px;}
.yf0{bottom:544.650000px;}
.y41{bottom:550.500000px;}
.y92{bottom:552.570000px;}
.y11e{bottom:557.880000px;}
.yc4{bottom:558.690000px;}
.y15{bottom:561.570000px;}
.yef{bottom:562.290000px;}
.y6c{bottom:568.230000px;}
.y91{bottom:570.120000px;}
.yc3{bottom:576.330000px;}
.y14{bottom:579.120000px;}
.y40{bottom:583.440000px;}
.y11d{bottom:584.430000px;}
.y90{bottom:587.760000px;}
.yee{bottom:588.840000px;}
.yc2{bottom:593.880000px;}
.y68{bottom:595.590000px;}
.y13{bottom:596.760000px;}
.y11c{bottom:602.070000px;}
.y8f{bottom:605.310000px;}
.yed{bottom:606.480000px;}
.y3f{bottom:610.800000px;}
.y12{bottom:614.310000px;}
.y11b{bottom:619.620000px;}
.y8e{bottom:622.950000px;}
.yec{bottom:624.030000px;}
.yc1{bottom:629.430000px;}
.y11{bottom:631.950000px;}
.y3e{bottom:638.160000px;}
.y8d{bottom:640.500000px;}
.y11a{bottom:646.260000px;}
.yc0{bottom:647.070000px;}
.y10{bottom:649.500000px;}
.yeb{bottom:650.580000px;}
.y8c{bottom:658.050000px;}
.y67{bottom:662.190000px;}
.y119{bottom:663.810000px;}
.ybf{bottom:664.620000px;}
.y3d{bottom:665.430000px;}
.yf{bottom:667.050000px;}
.yea{bottom:668.220000px;}
.y8b{bottom:675.690000px;}
.ybe{bottom:682.260000px;}
.ye{bottom:684.690000px;}
.y118{bottom:690.360000px;}
.y3c{bottom:692.790000px;}
.y8a{bottom:693.240000px;}
.ye9{bottom:694.770000px;}
.y66{bottom:697.740000px;}
.ybd{bottom:699.810000px;}
.yd{bottom:702.240000px;}
.y117{bottom:708.000000px;}
.ye8{bottom:712.410000px;}
.y65{bottom:715.290000px;}
.ybc{bottom:717.360000px;}
.yc{bottom:719.880000px;}
.y3b{bottom:720.150000px;}
.y116{bottom:725.550000px;}
.y89{bottom:728.790000px;}
.ybb{bottom:735.000000px;}
.yb{bottom:737.430000px;}
.ye7{bottom:738.960000px;}
.y115{bottom:743.190000px;}
.y88{bottom:746.430000px;}
.y3a{bottom:747.420000px;}
.y64{bottom:750.930000px;}
.yba{bottom:752.550000px;}
.ye6{bottom:756.510000px;}
.y87{bottom:763.980000px;}
.ya{bottom:764.340000px;}
.y63{bottom:768.480000px;}
.y114{bottom:769.740000px;}
.yb9{bottom:770.190000px;}
.ye5{bottom:774.150000px;}
.y38{bottom:774.780000px;}
.y113{bottom:787.290000px;}
.yb8{bottom:787.740000px;}
.y86{bottom:790.890000px;}
.ye4{bottom:800.700000px;}
.y37{bottom:802.140000px;}
.y62{bottom:804.030000px;}
.y112{bottom:804.930000px;}
.yb7{bottom:805.290000px;}
.y9{bottom:811.140000px;}
.y61{bottom:821.670000px;}
.yb6{bottom:822.930000px;}
.ye3{bottom:827.340000px;}
.y35{bottom:829.500000px;}
.y111{bottom:831.480000px;}
.y7a{bottom:835.080000px;}
.y60{bottom:839.220000px;}
.yb5{bottom:840.480000px;}
.ye2{bottom:844.890000px;}
.y8{bottom:846.690000px;}
.y110{bottom:849.030000px;}
.y79{bottom:852.720000px;}
.y85{bottom:856.770000px;}
.y5f{bottom:856.860000px;}
.yb4{bottom:858.030000px;}
.ye1{bottom:862.440000px;}
.y10f{bottom:866.670000px;}
.y78{bottom:870.270000px;}
.yb3{bottom:875.670000px;}
.y34{bottom:878.190000px;}
.y7{bottom:882.510000px;}
.y5e{bottom:883.410000px;}
.y84{bottom:888.990000px;}
.ye0{bottom:889.080000px;}
.y10e{bottom:893.220000px;}
.y77{bottom:902.490000px;}
.ydf{bottom:906.630000px;}
.y10d{bottom:910.860000px;}
.yb2{bottom:911.220000px;}
.y33{bottom:913.740000px;}
.y6{bottom:918.510000px;}
.y5d{bottom:918.960000px;}
.yde{bottom:924.180000px;}
.y10c{bottom:928.410000px;}
.yb1{bottom:928.860000px;}
.y32{bottom:931.380000px;}
.y5c{bottom:936.600000px;}
.yb0{bottom:946.410000px;}
.y31{bottom:948.930000px;}
.ydd{bottom:951.090000px;}
.y5{bottom:954.600000px;}
.y10b{bottom:954.960000px;}
.yaf{bottom:963.960000px;}
.y30{bottom:967.380000px;}
.y5b{bottom:972.150000px;}
.y10a{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.yae{bottom:981.600000px;}
.y2f{bottom:984.930000px;}
.y5a{bottom:989.790000px;}
.y109{bottom:990.150000px;}
.yad{bottom:999.150000px;}
.ydc{bottom:999.420000px;}
.y108{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y2e{bottom:1012.320000px;}
.y59{bottom:1016.370000px;}
.yac{bottom:1016.820000px;}
.ydb{bottom:1026.360000px;}
.yab{bottom:1034.370000px;}
.y2d{bottom:1047.960000px;}
.y58{bottom:1051.920000px;}
.y133{bottom:1060.920000px;}
.yda{bottom:1063.350000px;}
.y2c{bottom:1065.510000px;}
.y57{bottom:1069.560000px;}
.yaa{bottom:1069.920000px;}
.y132{bottom:1078.560000px;}
.y2b{bottom:1083.150000px;}
.ya9{bottom:1087.560000px;}
.yd9{bottom:1090.260000px;}
.y107{bottom:1096.110000px;}
.y2a{bottom:1100.700000px;}
.y56{bottom:1105.110000px;}
.y106{bottom:1113.750000px;}
.y55{bottom:1122.750000px;}
.y29{bottom:1127.610000px;}
.y54{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:32.566289px;}
.hf{height:44.100000px;}
.h14{height:44.130000px;}
.h11{height:44.190000px;}
.he{height:44.220000px;}
.h13{height:44.460000px;}
.h3{height:44.538574px;}
.h15{height:48.600000px;}
.h6{height:50.902383px;}
.h10{height:53.446289px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h5{height:65.204473px;}
.h12{height:67.714259px;}
.h9{height:68.582109px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:35.100000px;}
.w4{width:54.360000px;}
.w6{width:63.840000px;}
.w3{width:66.600000px;}
.wc{width:70.380000px;}
.w7{width:78.210000px;}
.wb{width:79.200000px;}
.w8{width:127.740000px;}
.we{width:137.550000px;}
.wa{width:155.340000px;}
.wf{width:197.190000px;}
.w9{width:312.240000px;}
.wd{width:348.420000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.870000px;}
.x1{left:68.040000px;}
.x14{left:69.929987px;}
.x18{left:74.699987px;}
.x13{left:76.049987px;}
.x1c{left:78.839987px;}
.x17{left:93.149987px;}
.x4{left:95.039987px;}
.x1b{left:104.939987px;}
.x1e{left:111.239987px;}
.x5{left:122.039987px;}
.xf{left:139.860000px;}
.xb{left:147.780000px;}
.x2{left:202.799987px;}
.x1d{left:222.419987px;}
.xc{left:276.240000px;}
.x6{left:335.550000px;}
.x8{left:402.960000px;}
.x15{left:426.989987px;}
.x19{left:429.779987px;}
.x9{left:458.040000px;}
.x10{left:489.000000px;}
.xa{left:493.950000px;}
.xd{left:589.200000px;}
.x11{left:627.270000px;}
.xe{left:745.260000px;}
.x16{left:779.639987px;}
.x12{left:787.559987px;}
.x3{left:792.059987px;}
.x1a{left:822.389987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-16.160000pt;}
.ls17{letter-spacing:-1.290667pt;}
.ls16{letter-spacing:-1.226667pt;}
.ls15{letter-spacing:-1.178667pt;}
.ls18{letter-spacing:-0.330133pt;}
.ls1e{letter-spacing:-0.216533pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls1d{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.009920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.102933pt;}
.ls4{letter-spacing:0.113067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws3{word-spacing:-11.869867pt;}
.ws11{word-spacing:-11.859733pt;}
.wsb{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.746880pt;}
.ws13{word-spacing:-11.674667pt;}
.ws8{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.540267pt;}
.ws10{word-spacing:-11.426667pt;}
.wsc{word-spacing:-10.578133pt;}
.wsd{word-spacing:-10.530133pt;}
.wse{word-spacing:-10.466133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.198400pt;}
._7{margin-left:-2.042667pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.895018pt;}
._3{width:2.618667pt;}
._2{width:4.221867pt;}
._6{width:5.176318pt;}
._5{width:6.092267pt;}
._10{width:7.160960pt;}
._11{width:8.229653pt;}
._9{width:9.512534pt;}
._e{width:10.688000pt;}
._4{width:13.627200pt;}
._8{width:15.123734pt;}
._a{width:16.342080pt;}
._26{width:17.474666pt;}
._c{width:18.844476pt;}
._b{width:19.851200pt;}
._16{width:21.140799pt;}
._2a{width:22.231040pt;}
._f{width:23.139520pt;}
._19{width:24.048000pt;}
._1a{width:25.116800pt;}
._17{width:26.452800pt;}
._15{width:27.810027pt;}
._18{width:33.453440pt;}
._1f{width:35.029760pt;}
._13{width:36.606400pt;}
._14{width:37.933120pt;}
._21{width:39.287680pt;}
._1e{width:55.703467pt;}
._1d{width:56.719573pt;}
._24{width:62.311040pt;}
._25{width:63.219520pt;}
._29{width:77.354880pt;}
._28{width:78.275627pt;}
._27{width:93.787200pt;}
._12{width:95.764480pt;}
._23{width:111.101760pt;}
._22{width:144.127680pt;}
._1b{width:158.770240pt;}
._1c{width:159.732160pt;}
._2b{width:207.293760pt;}
._20{width:221.936320pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:6.960000pt;}
.y39{bottom:7.040000pt;}
.y6b{bottom:7.120000pt;}
.y6a{bottom:7.200000pt;}
.y49{bottom:8.160000pt;}
.y4e{bottom:8.240000pt;}
.y46{bottom:22.560000pt;}
.y4b{bottom:22.640000pt;}
.y44{bottom:22.666667pt;}
.y69{bottom:22.880000pt;}
.y47{bottom:23.760000pt;}
.y4c{bottom:23.840000pt;}
.y71{bottom:26.560000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya8{bottom:99.226667pt;}
.y105{bottom:99.866667pt;}
.y83{bottom:102.826667pt;}
.y53{bottom:109.866667pt;}
.ya7{bottom:114.906667pt;}
.y104{bottom:115.546667pt;}
.yd8{bottom:116.426667pt;}
.y82{bottom:118.506667pt;}
.ya6{bottom:130.506667pt;}
.yd7{bottom:132.026667pt;}
.y81{bottom:134.106667pt;}
.y103{bottom:139.146667pt;}
.y131{bottom:142.826667pt;}
.yd6{bottom:147.706667pt;}
.y52{bottom:149.786667pt;}
.y102{bottom:154.746667pt;}
.y130{bottom:158.506667pt;}
.ya5{bottom:162.106667pt;}
.y80{bottom:162.746667pt;}
.y76{bottom:168.346667pt;}
.y101{bottom:170.426667pt;}
.yd5{bottom:171.546667pt;}
.y12f{bottom:174.106667pt;}
.ya4{bottom:177.786667pt;}
.y26{bottom:180.266667pt;}
.y75{bottom:181.626667pt;}
.y100{bottom:186.026667pt;}
.y51{bottom:189.786667pt;}
.ya3{bottom:193.386667pt;}
.y25{bottom:195.946667pt;}
.y12e{bottom:197.786667pt;}
.ya2{bottom:209.066667pt;}
.yff{bottom:209.626667pt;}
.y24{bottom:211.546667pt;}
.y12d{bottom:213.386667pt;}
.y50{bottom:214.026667pt;}
.yd4{bottom:214.506667pt;}
.y74{bottom:221.546667pt;}
.ya1{bottom:224.666667pt;}
.yfe{bottom:225.306667pt;}
.y23{bottom:227.146667pt;}
.y12c{bottom:228.986667pt;}
.yd3{bottom:230.106667pt;}
.ya0{bottom:240.266667pt;}
.yfd{bottom:240.906667pt;}
.y22{bottom:242.826667pt;}
.yd2{bottom:245.786667pt;}
.y12b{bottom:252.666667pt;}
.y4f{bottom:253.946667pt;}
.y9f{bottom:255.946667pt;}
.y21{bottom:258.426667pt;}
.yd1{bottom:261.386667pt;}
.y73{bottom:261.466667pt;}
.yfc{bottom:264.586667pt;}
.y12a{bottom:268.266667pt;}
.y9e{bottom:271.546667pt;}
.y20{bottom:274.106667pt;}
.yd0{bottom:276.986667pt;}
.y4d{bottom:278.266667pt;}
.yfb{bottom:280.186667pt;}
.y129{bottom:283.946667pt;}
.y9d{bottom:287.226667pt;}
.y1f{bottom:289.706667pt;}
.yfa{bottom:295.786667pt;}
.y72{bottom:301.386667pt;}
.y4a{bottom:302.586667pt;}
.y9c{bottom:302.826667pt;}
.y1e{bottom:305.306667pt;}
.y128{bottom:307.546667pt;}
.ycf{bottom:308.666667pt;}
.y9b{bottom:318.426667pt;}
.yf9{bottom:319.466667pt;}
.y1d{bottom:320.986667pt;}
.y127{bottom:323.146667pt;}
.yce{bottom:324.266667pt;}
.y9a{bottom:334.106667pt;}
.yf8{bottom:335.066667pt;}
.y1c{bottom:336.586667pt;}
.y126{bottom:338.826667pt;}
.ycd{bottom:339.946667pt;}
.y70{bottom:341.386667pt;}
.y48{bottom:342.506667pt;}
.y1b{bottom:352.266667pt;}
.y125{bottom:354.426667pt;}
.ycc{bottom:355.546667pt;}
.yf7{bottom:358.746667pt;}
.y99{bottom:365.706667pt;}
.y45{bottom:366.826667pt;}
.yf6{bottom:374.346667pt;}
.y1a{bottom:376.106667pt;}
.y124{bottom:378.106667pt;}
.y98{bottom:381.386667pt;}
.y6f{bottom:385.306667pt;}
.ycb{bottom:387.146667pt;}
.yf5{bottom:389.946667pt;}
.y123{bottom:393.706667pt;}
.y7f{bottom:393.786667pt;}
.y97{bottom:396.986667pt;}
.yca{bottom:402.826667pt;}
.y43{bottom:406.746667pt;}
.y122{bottom:409.306667pt;}
.y7e{bottom:409.386667pt;}
.y96{bottom:412.586667pt;}
.yf4{bottom:413.626667pt;}
.yc9{bottom:418.453333pt;}
.y19{bottom:419.333333pt;}
.y7d{bottom:425.013333pt;}
.y6e{bottom:425.253333pt;}
.y95{bottom:428.293333pt;}
.yf3{bottom:429.253333pt;}
.y121{bottom:433.013333pt;}
.yc8{bottom:434.133333pt;}
.y7c{bottom:440.693333pt;}
.y94{bottom:443.893333pt;}
.yf2{bottom:444.933333pt;}
.y120{bottom:448.613333pt;}
.yc7{bottom:449.733333pt;}
.y18{bottom:452.293333pt;}
.y93{bottom:459.573333pt;}
.y6d{bottom:465.173333pt;}
.yc6{bottom:465.333333pt;}
.y42{bottom:465.653333pt;}
.y17{bottom:467.893333pt;}
.yf1{bottom:468.533333pt;}
.y7b{bottom:469.333333pt;}
.y11f{bottom:472.293333pt;}
.yc5{bottom:481.013333pt;}
.y16{bottom:483.573333pt;}
.yf0{bottom:484.133333pt;}
.y41{bottom:489.333333pt;}
.y92{bottom:491.173333pt;}
.y11e{bottom:495.893333pt;}
.yc4{bottom:496.613333pt;}
.y15{bottom:499.173333pt;}
.yef{bottom:499.813333pt;}
.y6c{bottom:505.093333pt;}
.y91{bottom:506.773333pt;}
.yc3{bottom:512.293333pt;}
.y14{bottom:514.773333pt;}
.y40{bottom:518.613333pt;}
.y11d{bottom:519.493333pt;}
.y90{bottom:522.453333pt;}
.yee{bottom:523.413333pt;}
.yc2{bottom:527.893333pt;}
.y68{bottom:529.413333pt;}
.y13{bottom:530.453333pt;}
.y11c{bottom:535.173333pt;}
.y8f{bottom:538.053333pt;}
.yed{bottom:539.093333pt;}
.y3f{bottom:542.933333pt;}
.y12{bottom:546.053333pt;}
.y11b{bottom:550.773333pt;}
.y8e{bottom:553.733333pt;}
.yec{bottom:554.693333pt;}
.yc1{bottom:559.493333pt;}
.y11{bottom:561.733333pt;}
.y3e{bottom:567.253333pt;}
.y8d{bottom:569.333333pt;}
.y11a{bottom:574.453333pt;}
.yc0{bottom:575.173333pt;}
.y10{bottom:577.333333pt;}
.yeb{bottom:578.293333pt;}
.y8c{bottom:584.933333pt;}
.y67{bottom:588.613333pt;}
.y119{bottom:590.053333pt;}
.ybf{bottom:590.773333pt;}
.y3d{bottom:591.493333pt;}
.yf{bottom:592.933333pt;}
.yea{bottom:593.973333pt;}
.y8b{bottom:600.613333pt;}
.ybe{bottom:606.453333pt;}
.ye{bottom:608.613333pt;}
.y118{bottom:613.653333pt;}
.y3c{bottom:615.813333pt;}
.y8a{bottom:616.213333pt;}
.ye9{bottom:617.573333pt;}
.y66{bottom:620.213333pt;}
.ybd{bottom:622.053333pt;}
.yd{bottom:624.213333pt;}
.y117{bottom:629.333333pt;}
.ye8{bottom:633.253333pt;}
.y65{bottom:635.813333pt;}
.ybc{bottom:637.653333pt;}
.yc{bottom:639.893333pt;}
.y3b{bottom:640.133333pt;}
.y116{bottom:644.933333pt;}
.y89{bottom:647.813333pt;}
.ybb{bottom:653.333333pt;}
.yb{bottom:655.493333pt;}
.ye7{bottom:656.853333pt;}
.y115{bottom:660.613333pt;}
.y88{bottom:663.493333pt;}
.y3a{bottom:664.373333pt;}
.y64{bottom:667.493333pt;}
.yba{bottom:668.933333pt;}
.ye6{bottom:672.453333pt;}
.y87{bottom:679.093333pt;}
.ya{bottom:679.413333pt;}
.y63{bottom:683.093333pt;}
.y114{bottom:684.213333pt;}
.yb9{bottom:684.613333pt;}
.ye5{bottom:688.133333pt;}
.y38{bottom:688.693333pt;}
.y113{bottom:699.813333pt;}
.yb8{bottom:700.213333pt;}
.y86{bottom:703.013333pt;}
.ye4{bottom:711.733333pt;}
.y37{bottom:713.013333pt;}
.y62{bottom:714.693333pt;}
.y112{bottom:715.493333pt;}
.yb7{bottom:715.813333pt;}
.y9{bottom:721.013333pt;}
.y61{bottom:730.373333pt;}
.yb6{bottom:731.493333pt;}
.ye3{bottom:735.413333pt;}
.y35{bottom:737.333333pt;}
.y111{bottom:739.093333pt;}
.y7a{bottom:742.293333pt;}
.y60{bottom:745.973333pt;}
.yb5{bottom:747.093333pt;}
.ye2{bottom:751.013333pt;}
.y8{bottom:752.613333pt;}
.y110{bottom:754.693333pt;}
.y79{bottom:757.973333pt;}
.y85{bottom:761.573333pt;}
.y5f{bottom:761.653333pt;}
.yb4{bottom:762.693333pt;}
.ye1{bottom:766.613333pt;}
.y10f{bottom:770.373333pt;}
.y78{bottom:773.573333pt;}
.yb3{bottom:778.373333pt;}
.y34{bottom:780.613333pt;}
.y7{bottom:784.453333pt;}
.y5e{bottom:785.253333pt;}
.y84{bottom:790.213333pt;}
.ye0{bottom:790.293333pt;}
.y10e{bottom:793.973333pt;}
.y77{bottom:802.213333pt;}
.ydf{bottom:805.893333pt;}
.y10d{bottom:809.653333pt;}
.yb2{bottom:809.973333pt;}
.y33{bottom:812.213333pt;}
.y6{bottom:816.453333pt;}
.y5d{bottom:816.853333pt;}
.yde{bottom:821.493333pt;}
.y10c{bottom:825.253333pt;}
.yb1{bottom:825.653333pt;}
.y32{bottom:827.893333pt;}
.y5c{bottom:832.533333pt;}
.yb0{bottom:841.253333pt;}
.y31{bottom:843.493333pt;}
.ydd{bottom:845.413333pt;}
.y5{bottom:848.533333pt;}
.y10b{bottom:848.853333pt;}
.yaf{bottom:856.853333pt;}
.y30{bottom:859.893333pt;}
.y5b{bottom:864.133333pt;}
.y10a{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.yae{bottom:872.533333pt;}
.y2f{bottom:875.493333pt;}
.y5a{bottom:879.813333pt;}
.y109{bottom:880.133333pt;}
.yad{bottom:888.133333pt;}
.ydc{bottom:888.373333pt;}
.y108{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y2e{bottom:899.840000pt;}
.y59{bottom:903.440000pt;}
.yac{bottom:903.840000pt;}
.ydb{bottom:912.320000pt;}
.yab{bottom:919.440000pt;}
.y2d{bottom:931.520000pt;}
.y58{bottom:935.040000pt;}
.y133{bottom:943.040000pt;}
.yda{bottom:945.200000pt;}
.y2c{bottom:947.120000pt;}
.y57{bottom:950.720000pt;}
.yaa{bottom:951.040000pt;}
.y132{bottom:958.720000pt;}
.y2b{bottom:962.800000pt;}
.ya9{bottom:966.720000pt;}
.yd9{bottom:969.120000pt;}
.y107{bottom:974.320000pt;}
.y2a{bottom:978.400000pt;}
.y56{bottom:982.320000pt;}
.y106{bottom:990.000000pt;}
.y55{bottom:998.000000pt;}
.y29{bottom:1002.320000pt;}
.y54{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:28.947812pt;}
.hf{height:39.200000pt;}
.h14{height:39.226667pt;}
.h11{height:39.280000pt;}
.he{height:39.306667pt;}
.h13{height:39.520000pt;}
.h3{height:39.589844pt;}
.h15{height:43.200000pt;}
.h6{height:45.246562pt;}
.h10{height:47.507812pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h5{height:57.959531pt;}
.h12{height:60.190452pt;}
.h9{height:60.961875pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:31.200000pt;}
.w4{width:48.320000pt;}
.w6{width:56.746667pt;}
.w3{width:59.200000pt;}
.wc{width:62.560000pt;}
.w7{width:69.520000pt;}
.wb{width:70.400000pt;}
.w8{width:113.546667pt;}
.we{width:122.266667pt;}
.wa{width:138.080000pt;}
.wf{width:175.280000pt;}
.w9{width:277.546667pt;}
.wd{width:309.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.440000pt;}
.x1{left:60.480000pt;}
.x14{left:62.159988pt;}
.x18{left:66.399988pt;}
.x13{left:67.599988pt;}
.x1c{left:70.079988pt;}
.x17{left:82.799988pt;}
.x4{left:84.479988pt;}
.x1b{left:93.279988pt;}
.x1e{left:98.879988pt;}
.x5{left:108.479988pt;}
.xf{left:124.320000pt;}
.xb{left:131.360000pt;}
.x2{left:180.266655pt;}
.x1d{left:197.706655pt;}
.xc{left:245.546667pt;}
.x6{left:298.266667pt;}
.x8{left:358.186667pt;}
.x15{left:379.546655pt;}
.x19{left:382.026655pt;}
.x9{left:407.146667pt;}
.x10{left:434.666667pt;}
.xa{left:439.066667pt;}
.xd{left:523.733333pt;}
.x11{left:557.573333pt;}
.xe{left:662.453333pt;}
.x16{left:693.013322pt;}
.x12{left:700.053322pt;}
.x3{left:704.053322pt;}
.x1a{left:731.013322pt;}
}




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