
    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_b8c327195112a0643c21cae7.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_a4a12c9acc5f8c46c4c2ff5a.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_7309dc33881b51564dce7441.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_8d20e050ca78262d46357d79.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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_176c6e7159df6c7316f78a37.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_5e9e136007b23fe10750d5ab.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d57fe3ef4e71ed545a154940.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_09e7706a9c9c539a6fd6895d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_574a12283591de01ce5dccd6.woff')format("woff");}.ffa{font-family:ffa;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;}
.lsf{letter-spacing:-0.354600px;}
.ls1d{letter-spacing:-0.348600px;}
.ls13{letter-spacing:-0.299400px;}
.ls28{letter-spacing:-0.232800px;}
.ls11{letter-spacing:-0.186600px;}
.ls22{letter-spacing:-0.178800px;}
.ls26{letter-spacing:-0.160800px;}
.ls25{letter-spacing:-0.153600px;}
.lsd{letter-spacing:-0.135000px;}
.ls1e{letter-spacing:-0.124200px;}
.ls2c{letter-spacing:-0.123000px;}
.ls14{letter-spacing:-0.121200px;}
.ls24{letter-spacing:-0.092400px;}
.lsc{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.084000px;}
.ls29{letter-spacing:-0.067200px;}
.ls2a{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.018360px;}
.ls33{letter-spacing:-0.014760px;}
.ls2d{letter-spacing:-0.008640px;}
.ls2b{letter-spacing:-0.007560px;}
.ls2f{letter-spacing:-0.006120px;}
.lsa{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.011160px;}
.ls4{letter-spacing:0.014760px;}
.ls2e{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048960px;}
.ls1c{letter-spacing:0.060480px;}
.ls9{letter-spacing:0.060600px;}
.lse{letter-spacing:0.065400px;}
.ls18{letter-spacing:0.074160px;}
.ls8{letter-spacing:0.074400px;}
.ls7{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls27{letter-spacing:0.116400px;}
.ls20{letter-spacing:0.143400px;}
.lsb{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls23{letter-spacing:0.177000px;}
.ls21{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.199200px;}
.ls5{letter-spacing:0.351360px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.986400px;}
.ls30{letter-spacing:1.533600px;}
.ls1b{letter-spacing:3.333600px;}
.ls6{letter-spacing:6.213600px;}
.ls32{letter-spacing:47.726640px;}
.ls31{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;}
}
.wsf{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.453600px;}
.wsc{word-spacing:-14.493600px;}
.ws10{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.ws17{word-spacing:-13.407600px;}
.ws19{word-spacing:-13.403400px;}
.ws7{word-spacing:-13.399800px;}
.ws16{word-spacing:-13.369800px;}
.ws1d{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.300800px;}
.ws11{word-spacing:-13.275360px;}
.ws15{word-spacing:-13.237560px;}
.ws5{word-spacing:-13.226400px;}
.ws24{word-spacing:-13.220280px;}
.ws21{word-spacing:-13.218840px;}
.ws26{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.208040px;}
.ws20{word-spacing:-13.162800px;}
.ws1f{word-spacing:-13.159200px;}
.ws1a{word-spacing:-13.134000px;}
.ws22{word-spacing:-13.103400px;}
.ws14{word-spacing:-13.102200px;}
.ws1b{word-spacing:-13.072800px;}
.ws1c{word-spacing:-13.065600px;}
.ws18{word-spacing:-13.047600px;}
.ws6{word-spacing:-13.039800px;}
.ws1e{word-spacing:-12.993600px;}
.ws13{word-spacing:-12.877800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.331800px;}
.ws8{word-spacing:-8.614200px;}
.ws25{word-spacing:-8.576640px;}
.ws4{word-spacing:-8.553600px;}
.ws23{word-spacing:-8.544960px;}
.wsa{word-spacing:-8.254200px;}
.wse{word-spacing:0.000000px;}
.wsb{word-spacing:4.304880px;}
._4{margin-left:-3.279000px;}
._3{margin-left:-2.127000px;}
._0{margin-left:-1.110000px;}
._1{width:1.099800px;}
._2{width:3.046440px;}
._6{width:4.858080px;}
._5{width:6.213600px;}
._7{width:7.815600px;}
._c{width:8.897760px;}
._f{width:9.919921px;}
._a{width:11.242200px;}
._9{width:15.005640px;}
._8{width:16.037640px;}
._b{width:17.563080px;}
._d{width:18.997920px;}
._e{width:20.132160px;}
._10{width:21.448560px;}
._11{width:22.559280px;}
.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;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y91{bottom:7.830000px;}
.y8d{bottom:7.920000px;}
.yaa{bottom:21.510000px;}
.ydd{bottom:25.470000px;}
.y95{bottom:35.190000px;}
.yde{bottom:43.110000px;}
.y9b{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y8f{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.y172{bottom:115.680000px;}
.y9a{bottom:121.890000px;}
.yc6{bottom:126.390000px;}
.y14e{bottom:127.110000px;}
.y101{bottom:127.200000px;}
.y120{bottom:129.990000px;}
.y171{bottom:133.320000px;}
.y49{bottom:133.950000px;}
.y27{bottom:141.420000px;}
.yc5{bottom:144.030000px;}
.y14d{bottom:144.750000px;}
.y100{bottom:144.840000px;}
.y72{bottom:145.470000px;}
.y9d{bottom:149.160000px;}
.y170{bottom:150.870000px;}
.y11f{bottom:156.810000px;}
.y26{bottom:158.970000px;}
.yc4{bottom:161.580000px;}
.y48{bottom:169.500000px;}
.y14c{bottom:171.300000px;}
.y71{bottom:172.110000px;}
.y9c{bottom:176.520000px;}
.y25{bottom:176.610000px;}
.y16f{bottom:177.510000px;}
.yff{bottom:180.390000px;}
.y47{bottom:187.050000px;}
.yda{bottom:188.310000px;}
.y14b{bottom:188.850000px;}
.y11e{bottom:193.890000px;}
.y24{bottom:194.160000px;}
.y16e{bottom:195.060000px;}
.yc3{bottom:197.220000px;}
.yfe{bottom:197.940000px;}
.y99{bottom:203.880000px;}
.yd9{bottom:205.860000px;}
.y70{bottom:207.660000px;}
.y23{bottom:211.800000px;}
.y46{bottom:213.690000px;}
.yc2{bottom:214.770000px;}
.y14a{bottom:215.490000px;}
.yfd{bottom:215.580000px;}
.y11d{bottom:220.800000px;}
.y16d{bottom:221.610000px;}
.y6f{bottom:225.210000px;}
.y98{bottom:231.240000px;}
.yc1{bottom:232.320000px;}
.yd8{bottom:232.410000px;}
.y149{bottom:233.040000px;}
.yfc{bottom:233.130000px;}
.y16c{bottom:239.250000px;}
.y6e{bottom:242.850000px;}
.y22{bottom:247.350000px;}
.y45{bottom:249.240000px;}
.yfb{bottom:250.770000px;}
.y16b{bottom:256.800000px;}
.y11c{bottom:258.150000px;}
.y97{bottom:258.510000px;}
.yc0{bottom:258.960000px;}
.y148{bottom:259.680000px;}
.y6d{bottom:260.400000px;}
.yd7{bottom:262.470000px;}
.y21{bottom:264.900000px;}
.y44{bottom:266.880000px;}
.yfa{bottom:268.320000px;}
.y6c{bottom:278.040000px;}
.y20{bottom:282.540000px;}
.y16a{bottom:283.440000px;}
.y94{bottom:285.870000px;}
.y147{bottom:286.230000px;}
.yd6{bottom:289.740000px;}
.ybf{bottom:294.510000px;}
.y1f{bottom:300.090000px;}
.y169{bottom:300.990000px;}
.y43{bottom:302.430000px;}
.yf9{bottom:303.510000px;}
.y146{bottom:303.780000px;}
.y6b{bottom:304.590000px;}
.y11b{bottom:306.390000px;}
.ybe{bottom:312.150000px;}
.y96{bottom:313.230000px;}
.yd4{bottom:317.100000px;}
.yf8{bottom:321.060000px;}
.y11a{bottom:323.940000px;}
.y168{bottom:327.540000px;}
.ybd{bottom:329.700000px;}
.y145{bottom:330.420000px;}
.y42{bottom:334.650000px;}
.y1e{bottom:335.730000px;}
.yf7{bottom:338.700000px;}
.y6a{bottom:340.140000px;}
.y8e{bottom:340.590000px;}
.yd5{bottom:344.460000px;}
.y167{bottom:345.180000px;}
.ybc{bottom:347.250000px;}
.y144{bottom:347.970000px;}
.y1d{bottom:353.280000px;}
.yf6{bottom:356.250000px;}
.y69{bottom:357.780000px;}
.y119{bottom:359.580000px;}
.ybb{bottom:364.890000px;}
.y93{bottom:367.860000px;}
.y166{bottom:371.730000px;}
.y143{bottom:374.610000px;}
.y68{bottom:375.330000px;}
.y118{bottom:377.130000px;}
.y1c{bottom:380.190000px;}
.yf5{bottom:391.800000px;}
.y142{bottom:392.160000px;}
.yd3{bottom:393.150000px;}
.y117{bottom:394.770000px;}
.y92{bottom:395.220000px;}
.y165{bottom:398.370000px;}
.yba{bottom:400.440000px;}
.y67{bottom:401.970000px;}
.yf4{bottom:409.440000px;}
.yd2{bottom:410.700000px;}
.y116{bottom:412.320000px;}
.y164{bottom:415.920000px;}
.yb9{bottom:418.080000px;}
.y141{bottom:418.710000px;}
.y90{bottom:422.580000px;}
.yf3{bottom:426.990000px;}
.y1b{bottom:428.790000px;}
.yb8{bottom:435.630000px;}
.y140{bottom:436.350000px;}
.y66{bottom:437.520000px;}
.y115{bottom:439.230000px;}
.y163{bottom:442.470000px;}
.yf2{bottom:444.630000px;}
.yd1{bottom:446.340000px;}
.y8c{bottom:449.850000px;}
.y13f{bottom:453.900000px;}
.y162{bottom:460.110000px;}
.yd0{bottom:463.890000px;}
.y1a{bottom:465.780000px;}
.yb7{bottom:471.210000px;}
.yf1{bottom:471.570000px;}
.y65{bottom:473.100000px;}
.y13e{bottom:480.480000px;}
.y19{bottom:483.450000px;}
.y161{bottom:486.690000px;}
.y114{bottom:487.500000px;}
.yb6{bottom:488.850000px;}
.ycf{bottom:490.560000px;}
.y64{bottom:490.740000px;}
.y13d{bottom:498.120000px;}
.y8b{bottom:498.660000px;}
.y18{bottom:501.000000px;}
.y160{bottom:504.330000px;}
.y113{bottom:505.140000px;}
.yb5{bottom:506.400000px;}
.y63{bottom:508.290000px;}
.yf0{bottom:517.200000px;}
.y17{bottom:518.550000px;}
.y112{bottom:522.690000px;}
.y13c{bottom:524.670000px;}
.yce{bottom:526.110000px;}
.y15f{bottom:530.880000px;}
.y8a{bottom:534.210000px;}
.y62{bottom:534.840000px;}
.y16{bottom:536.190000px;}
.y111{bottom:540.330000px;}
.yb4{bottom:541.950000px;}
.y13b{bottom:542.310000px;}
.yef{bottom:544.560000px;}
.y15e{bottom:548.430000px;}
.y89{bottom:551.760000px;}
.y15{bottom:553.740000px;}
.y110{bottom:557.880000px;}
.yb3{bottom:559.590000px;}
.ycd{bottom:560.940000px;}
.y61{bottom:567.510000px;}
.y13a{bottom:568.860000px;}
.y14{bottom:571.380000px;}
.yee{bottom:571.830000px;}
.ycc{bottom:572.370000px;}
.y15d{bottom:575.070000px;}
.y10f{bottom:575.430000px;}
.yb2{bottom:577.140000px;}
.y88{bottom:578.400000px;}
.y139{bottom:586.410000px;}
.y13{bottom:588.930000px;}
.y15c{bottom:592.620000px;}
.y10e{bottom:593.070000px;}
.yb1{bottom:594.780000px;}
.yec{bottom:599.190000px;}
.y60{bottom:603.060000px;}
.y138{bottom:604.050000px;}
.y12{bottom:606.480000px;}
.y10d{bottom:610.620000px;}
.y87{bottom:613.950000px;}
.y15b{bottom:619.260000px;}
.y41{bottom:623.760000px;}
.y11{bottom:624.120000px;}
.yed{bottom:626.550000px;}
.yb0{bottom:627.720000px;}
.y10c{bottom:628.260000px;}
.y5f{bottom:629.610000px;}
.y137{bottom:630.600000px;}
.y86{bottom:631.590000px;}
.y15a{bottom:636.810000px;}
.y40{bottom:641.400000px;}
.y10{bottom:641.670000px;}
.y10b{bottom:645.810000px;}
.y136{bottom:648.240000px;}
.yaf{bottom:655.080000px;}
.y85{bottom:658.140000px;}
.y3f{bottom:658.950000px;}
.y10a{bottom:663.360000px;}
.y5e{bottom:665.250000px;}
.yf{bottom:668.580000px;}
.y135{bottom:674.790000px;}
.yeb{bottom:675.240000px;}
.y3e{bottom:676.590000px;}
.y109{bottom:681.000000px;}
.yae{bottom:682.350000px;}
.y5d{bottom:682.800000px;}
.y134{bottom:692.340000px;}
.y84{bottom:694.050000px;}
.y3d{bottom:694.140000px;}
.y159{bottom:698.550000px;}
.y5c{bottom:700.440000px;}
.yad{bottom:709.710000px;}
.yea{bottom:710.790000px;}
.ye{bottom:715.380000px;}
.y108{bottom:716.550000px;}
.y5b{bottom:717.990000px;}
.y133{bottom:718.980000px;}
.y3c{bottom:720.690000px;}
.y158{bottom:725.190000px;}
.ye9{bottom:728.430000px;}
.y107{bottom:734.190000px;}
.y5a{bottom:735.540000px;}
.y132{bottom:736.530000px;}
.yac{bottom:737.070000px;}
.y83{bottom:742.290000px;}
.y157{bottom:742.740000px;}
.ye8{bottom:745.980000px;}
.yd{bottom:751.200000px;}
.y106{bottom:751.740000px;}
.y59{bottom:753.180000px;}
.y3b{bottom:756.600000px;}
.y82{bottom:759.930000px;}
.y131{bottom:763.170000px;}
.ye7{bottom:763.530000px;}
.ya9{bottom:764.430000px;}
.y105{bottom:769.290000px;}
.y58{bottom:770.730000px;}
.y81{bottom:777.480000px;}
.y130{bottom:780.720000px;}
.yc{bottom:787.200000px;}
.y57{bottom:788.280000px;}
.ye6{bottom:790.170000px;}
.yab{bottom:791.700000px;}
.y80{bottom:795.030000px;}
.y156{bottom:795.930000px;}
.y12f{bottom:798.270000px;}
.y3a{bottom:804.930000px;}
.y155{bottom:813.480000px;}
.y56{bottom:814.920000px;}
.y7f{bottom:821.670000px;}
.y39{bottom:822.480000px;}
.yb{bottom:823.200000px;}
.y12e{bottom:824.910000px;}
.ye5{bottom:825.720000px;}
.y38{bottom:840.030000px;}
.ya8{bottom:840.390000px;}
.y104{bottom:840.480000px;}
.y12d{bottom:842.460000px;}
.ye4{bottom:843.360000px;}
.ya{bottom:844.980000px;}
.y55{bottom:850.470000px;}
.y7e{bottom:857.220000px;}
.y154{bottom:857.670000px;}
.y103{bottom:858.030000px;}
.y9{bottom:859.200000px;}
.y12c{bottom:860.100000px;}
.y54{bottom:868.110000px;}
.y7d{bottom:874.860000px;}
.y37{bottom:875.670000px;}
.ya7{bottom:876.030000px;}
.ye3{bottom:878.910000px;}
.y8{bottom:880.980000px;}
.y153{bottom:884.220000px;}
.y53{bottom:885.660000px;}
.y12b{bottom:886.650000px;}
.y7c{bottom:892.410000px;}
.y36{bottom:893.220000px;}
.ye2{bottom:896.460000px;}
.y152{bottom:901.860000px;}
.ya6{bottom:902.580000px;}
.y52{bottom:903.210000px;}
.y12a{bottom:904.200000px;}
.y35{bottom:910.860000px;}
.y7{bottom:913.110000px;}
.y7b{bottom:927.960000px;}
.y34{bottom:928.410000px;}
.ye1{bottom:929.490000px;}
.y51{bottom:929.850000px;}
.y129{bottom:930.840000px;}
.y6{bottom:931.560000px;}
.ya5{bottom:938.130000px;}
.y7a{bottom:945.600000px;}
.y151{bottom:945.960000px;}
.y102{bottom:946.410000px;}
.y128{bottom:948.390000px;}
.y5{bottom:950.010000px;}
.y50{bottom:962.430000px;}
.y33{bottom:963.960000px;}
.ya4{bottom:970.800000px;}
.y79{bottom:972.150000px;}
.y150{bottom:972.600000px;}
.ye0{bottom:974.400000px;}
.y127{bottom:975.030000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y14f{bottom:990.150000px;}
.y126{bottom:992.580000px;}
.y4f{bottom:997.980000px;}
.ycb{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.ydf{bottom:1001.760000px;}
.ya3{bottom:1005.630000px;}
.y78{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y4e{bottom:1015.650000px;}
.yca{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.ya2{bottom:1017.810000px;}
.y125{bottom:1019.160000px;}
.y77{bottom:1025.370000px;}
.ydc{bottom:1029.060000px;}
.y4d{bottom:1033.200000px;}
.y2f{bottom:1034.370000px;}
.y124{bottom:1036.800000px;}
.ya1{bottom:1045.170000px;}
.yc9{bottom:1051.920000px;}
.y76{bottom:1060.920000px;}
.y123{bottom:1063.710000px;}
.y4c{bottom:1068.750000px;}
.yc8{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.ya0{bottom:1072.530000px;}
.y75{bottom:1078.560000px;}
.y4b{bottom:1086.390000px;}
.yc7{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.ydb{bottom:1091.610000px;}
.y74{bottom:1096.110000px;}
.y9f{bottom:1099.890000px;}
.y4a{bottom:1104.660000px;}
.y2c{bottom:1105.110000px;}
.y122{bottom:1111.950000px;}
.y73{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y9e{bottom:1127.160000px;}
.y121{bottom:1138.860000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h15{height:26.580000px;}
.h10{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h13{height:41.661211px;}
.h16{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h11{height:53.910000px;}
.h5{height:54.817383px;}
.h9{height:55.779258px;}
.hc{height:59.973223px;}
.h17{height:61.793886px;}
.h14{height:61.830000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h12{height:81.270000px;}
.he{height:108.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:37.350000px;}
.wb{width:45.450000px;}
.w1a{width:65.370000px;}
.w19{width:68.130000px;}
.wc{width:75.510000px;}
.w10{width:91.440000px;}
.w12{width:93.420000px;}
.w5{width:93.600000px;}
.wf{width:95.310000px;}
.w17{width:106.110000px;}
.wa{width:111.900000px;}
.w15{width:112.800000px;}
.w7{width:113.760000px;}
.w13{width:116.220000px;}
.w9{width:122.490000px;}
.w11{width:132.870000px;}
.w18{width:134.220000px;}
.w3{width:169.290000px;}
.wd{width:187.470000px;}
.w14{width:194.130000px;}
.we{width:227.100000px;}
.w4{width:263.640000px;}
.w16{width:268.650000px;}
.w8{width:281.370000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.870000px;}
.x26{left:6.120000px;}
.x11{left:7.740000px;}
.x1a{left:10.260000px;}
.xc{left:14.490000px;}
.xe{left:16.200000px;}
.x18{left:18.540000px;}
.x30{left:20.280000px;}
.x1f{left:21.600000px;}
.x31{left:25.740000px;}
.x2f{left:29.970000px;}
.x27{left:35.100000px;}
.x21{left:36.720000px;}
.x25{left:39.240000px;}
.x19{left:40.320000px;}
.xb{left:42.660000px;}
.xd{left:44.370000px;}
.x16{left:48.600000px;}
.x17{left:51.780000px;}
.x23{left:63.210000px;}
.x1{left:68.040000px;}
.x13{left:77.490000px;}
.x1d{left:81.989987px;}
.x28{left:99.630000px;}
.x32{left:111.239987px;}
.x1c{left:129.059987px;}
.x5{left:154.439987px;}
.x6{left:163.560000px;}
.x2{left:192.719987px;}
.x1e{left:200.820000px;}
.x29{left:216.570000px;}
.x10{left:248.700000px;}
.x20{left:277.050000px;}
.x2c{left:326.100000px;}
.x8{left:333.570000px;}
.x12{left:363.180000px;}
.xf{left:368.669987px;}
.x24{left:373.080000px;}
.x2a{left:411.420000px;}
.x2d{left:432.930000px;}
.x22{left:465.330000px;}
.x14{left:486.480000px;}
.x2e{left:501.780000px;}
.x2b{left:524.940000px;}
.x9{left:597.930000px;}
.x15{left:599.100000px;}
.x1b{left:679.559987px;}
.xa{left:692.340000px;}
.x4{left:780.809987px;}
.x3{left:800.339987px;}
@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;}
.lsf{letter-spacing:-0.315200pt;}
.ls1d{letter-spacing:-0.309867pt;}
.ls13{letter-spacing:-0.266133pt;}
.ls28{letter-spacing:-0.206933pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls22{letter-spacing:-0.158933pt;}
.ls26{letter-spacing:-0.142933pt;}
.ls25{letter-spacing:-0.136533pt;}
.lsd{letter-spacing:-0.120000pt;}
.ls1e{letter-spacing:-0.110400pt;}
.ls2c{letter-spacing:-0.109333pt;}
.ls14{letter-spacing:-0.107733pt;}
.ls24{letter-spacing:-0.082133pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.074667pt;}
.ls29{letter-spacing:-0.059733pt;}
.ls2a{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.016320pt;}
.ls33{letter-spacing:-0.013120pt;}
.ls2d{letter-spacing:-0.007680pt;}
.ls2b{letter-spacing:-0.006720pt;}
.ls2f{letter-spacing:-0.005440pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.009920pt;}
.ls4{letter-spacing:0.013120pt;}
.ls2e{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.043520pt;}
.ls1c{letter-spacing:0.053760pt;}
.ls9{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.058133pt;}
.ls18{letter-spacing:0.065920pt;}
.ls8{letter-spacing:0.066133pt;}
.ls7{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls27{letter-spacing:0.103467pt;}
.ls20{letter-spacing:0.127467pt;}
.lsb{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls23{letter-spacing:0.157333pt;}
.ls21{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.177067pt;}
.ls5{letter-spacing:0.312320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.876800pt;}
.ls30{letter-spacing:1.363200pt;}
.ls1b{letter-spacing:2.963200pt;}
.ls6{letter-spacing:5.523200pt;}
.ls32{letter-spacing:42.423680pt;}
.ls31{letter-spacing:71.863680pt;}
.wsf{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.403200pt;}
.wsc{word-spacing:-12.883200pt;}
.ws10{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.ws17{word-spacing:-11.917867pt;}
.ws19{word-spacing:-11.914133pt;}
.ws7{word-spacing:-11.910933pt;}
.ws16{word-spacing:-11.884267pt;}
.ws1d{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.822933pt;}
.ws11{word-spacing:-11.800320pt;}
.ws15{word-spacing:-11.766720pt;}
.ws5{word-spacing:-11.756800pt;}
.ws24{word-spacing:-11.751360pt;}
.ws21{word-spacing:-11.750080pt;}
.ws26{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.740480pt;}
.ws20{word-spacing:-11.700267pt;}
.ws1f{word-spacing:-11.697067pt;}
.ws1a{word-spacing:-11.674667pt;}
.ws22{word-spacing:-11.647467pt;}
.ws14{word-spacing:-11.646400pt;}
.ws1b{word-spacing:-11.620267pt;}
.ws1c{word-spacing:-11.613867pt;}
.ws18{word-spacing:-11.597867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws1e{word-spacing:-11.549867pt;}
.ws13{word-spacing:-11.446933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.294933pt;}
.ws8{word-spacing:-7.657067pt;}
.ws25{word-spacing:-7.623680pt;}
.ws4{word-spacing:-7.603200pt;}
.ws23{word-spacing:-7.595520pt;}
.wsa{word-spacing:-7.337067pt;}
.wse{word-spacing:0.000000pt;}
.wsb{word-spacing:3.826560pt;}
._4{margin-left:-2.914667pt;}
._3{margin-left:-1.890667pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.977600pt;}
._2{width:2.707947pt;}
._6{width:4.318294pt;}
._5{width:5.523200pt;}
._7{width:6.947200pt;}
._c{width:7.909120pt;}
._f{width:8.817708pt;}
._a{width:9.993066pt;}
._9{width:13.338346pt;}
._8{width:14.255680pt;}
._b{width:15.611627pt;}
._d{width:16.887040pt;}
._e{width:17.895253pt;}
._10{width:19.065387pt;}
._11{width:20.052693pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:6.960000pt;}
.y8d{bottom:7.040000pt;}
.yaa{bottom:19.120000pt;}
.ydd{bottom:22.640000pt;}
.y95{bottom:31.280000pt;}
.yde{bottom:38.320000pt;}
.y9b{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y8f{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.y172{bottom:102.826667pt;}
.y9a{bottom:108.346667pt;}
.yc6{bottom:112.346667pt;}
.y14e{bottom:112.986667pt;}
.y101{bottom:113.066667pt;}
.y120{bottom:115.546667pt;}
.y171{bottom:118.506667pt;}
.y49{bottom:119.066667pt;}
.y27{bottom:125.706667pt;}
.yc5{bottom:128.026667pt;}
.y14d{bottom:128.666667pt;}
.y100{bottom:128.746667pt;}
.y72{bottom:129.306667pt;}
.y9d{bottom:132.586667pt;}
.y170{bottom:134.106667pt;}
.y11f{bottom:139.386667pt;}
.y26{bottom:141.306667pt;}
.yc4{bottom:143.626667pt;}
.y48{bottom:150.666667pt;}
.y14c{bottom:152.266667pt;}
.y71{bottom:152.986667pt;}
.y9c{bottom:156.906667pt;}
.y25{bottom:156.986667pt;}
.y16f{bottom:157.786667pt;}
.yff{bottom:160.346667pt;}
.y47{bottom:166.266667pt;}
.yda{bottom:167.386667pt;}
.y14b{bottom:167.866667pt;}
.y11e{bottom:172.346667pt;}
.y24{bottom:172.586667pt;}
.y16e{bottom:173.386667pt;}
.yc3{bottom:175.306667pt;}
.yfe{bottom:175.946667pt;}
.y99{bottom:181.226667pt;}
.yd9{bottom:182.986667pt;}
.y70{bottom:184.586667pt;}
.y23{bottom:188.266667pt;}
.y46{bottom:189.946667pt;}
.yc2{bottom:190.906667pt;}
.y14a{bottom:191.546667pt;}
.yfd{bottom:191.626667pt;}
.y11d{bottom:196.266667pt;}
.y16d{bottom:196.986667pt;}
.y6f{bottom:200.186667pt;}
.y98{bottom:205.546667pt;}
.yc1{bottom:206.506667pt;}
.yd8{bottom:206.586667pt;}
.y149{bottom:207.146667pt;}
.yfc{bottom:207.226667pt;}
.y16c{bottom:212.666667pt;}
.y6e{bottom:215.866667pt;}
.y22{bottom:219.866667pt;}
.y45{bottom:221.546667pt;}
.yfb{bottom:222.906667pt;}
.y16b{bottom:228.266667pt;}
.y11c{bottom:229.466667pt;}
.y97{bottom:229.786667pt;}
.yc0{bottom:230.186667pt;}
.y148{bottom:230.826667pt;}
.y6d{bottom:231.466667pt;}
.yd7{bottom:233.306667pt;}
.y21{bottom:235.466667pt;}
.y44{bottom:237.226667pt;}
.yfa{bottom:238.506667pt;}
.y6c{bottom:247.146667pt;}
.y20{bottom:251.146667pt;}
.y16a{bottom:251.946667pt;}
.y94{bottom:254.106667pt;}
.y147{bottom:254.426667pt;}
.yd6{bottom:257.546667pt;}
.ybf{bottom:261.786667pt;}
.y1f{bottom:266.746667pt;}
.y169{bottom:267.546667pt;}
.y43{bottom:268.826667pt;}
.yf9{bottom:269.786667pt;}
.y146{bottom:270.026667pt;}
.y6b{bottom:270.746667pt;}
.y11b{bottom:272.346667pt;}
.ybe{bottom:277.466667pt;}
.y96{bottom:278.426667pt;}
.yd4{bottom:281.866667pt;}
.yf8{bottom:285.386667pt;}
.y11a{bottom:287.946667pt;}
.y168{bottom:291.146667pt;}
.ybd{bottom:293.066667pt;}
.y145{bottom:293.706667pt;}
.y42{bottom:297.466667pt;}
.y1e{bottom:298.426667pt;}
.yf7{bottom:301.066667pt;}
.y6a{bottom:302.346667pt;}
.y8e{bottom:302.746667pt;}
.yd5{bottom:306.186667pt;}
.y167{bottom:306.826667pt;}
.ybc{bottom:308.666667pt;}
.y144{bottom:309.306667pt;}
.y1d{bottom:314.026667pt;}
.yf6{bottom:316.666667pt;}
.y69{bottom:318.026667pt;}
.y119{bottom:319.626667pt;}
.ybb{bottom:324.346667pt;}
.y93{bottom:326.986667pt;}
.y166{bottom:330.426667pt;}
.y143{bottom:332.986667pt;}
.y68{bottom:333.626667pt;}
.y118{bottom:335.226667pt;}
.y1c{bottom:337.946667pt;}
.yf5{bottom:348.266667pt;}
.y142{bottom:348.586667pt;}
.yd3{bottom:349.466667pt;}
.y117{bottom:350.906667pt;}
.y92{bottom:351.306667pt;}
.y165{bottom:354.106667pt;}
.yba{bottom:355.946667pt;}
.y67{bottom:357.306667pt;}
.yf4{bottom:363.946667pt;}
.yd2{bottom:365.066667pt;}
.y116{bottom:366.506667pt;}
.y164{bottom:369.706667pt;}
.yb9{bottom:371.626667pt;}
.y141{bottom:372.186667pt;}
.y90{bottom:375.626667pt;}
.yf3{bottom:379.546667pt;}
.y1b{bottom:381.146667pt;}
.yb8{bottom:387.226667pt;}
.y140{bottom:387.866667pt;}
.y66{bottom:388.906667pt;}
.y115{bottom:390.426667pt;}
.y163{bottom:393.306667pt;}
.yf2{bottom:395.226667pt;}
.yd1{bottom:396.746667pt;}
.y8c{bottom:399.866667pt;}
.y13f{bottom:403.466667pt;}
.y162{bottom:408.986667pt;}
.yd0{bottom:412.346667pt;}
.y1a{bottom:414.026667pt;}
.yb7{bottom:418.853333pt;}
.yf1{bottom:419.173333pt;}
.y65{bottom:420.533333pt;}
.y13e{bottom:427.093333pt;}
.y19{bottom:429.733333pt;}
.y161{bottom:432.613333pt;}
.y114{bottom:433.333333pt;}
.yb6{bottom:434.533333pt;}
.ycf{bottom:436.053333pt;}
.y64{bottom:436.213333pt;}
.y13d{bottom:442.773333pt;}
.y8b{bottom:443.253333pt;}
.y18{bottom:445.333333pt;}
.y160{bottom:448.293333pt;}
.y113{bottom:449.013333pt;}
.yb5{bottom:450.133333pt;}
.y63{bottom:451.813333pt;}
.yf0{bottom:459.733333pt;}
.y17{bottom:460.933333pt;}
.y112{bottom:464.613333pt;}
.y13c{bottom:466.373333pt;}
.yce{bottom:467.653333pt;}
.y15f{bottom:471.893333pt;}
.y8a{bottom:474.853333pt;}
.y62{bottom:475.413333pt;}
.y16{bottom:476.613333pt;}
.y111{bottom:480.293333pt;}
.yb4{bottom:481.733333pt;}
.y13b{bottom:482.053333pt;}
.yef{bottom:484.053333pt;}
.y15e{bottom:487.493333pt;}
.y89{bottom:490.453333pt;}
.y15{bottom:492.213333pt;}
.y110{bottom:495.893333pt;}
.yb3{bottom:497.413333pt;}
.ycd{bottom:498.613333pt;}
.y61{bottom:504.453333pt;}
.y13a{bottom:505.653333pt;}
.y14{bottom:507.893333pt;}
.yee{bottom:508.293333pt;}
.ycc{bottom:508.773333pt;}
.y15d{bottom:511.173333pt;}
.y10f{bottom:511.493333pt;}
.yb2{bottom:513.013333pt;}
.y88{bottom:514.133333pt;}
.y139{bottom:521.253333pt;}
.y13{bottom:523.493333pt;}
.y15c{bottom:526.773333pt;}
.y10e{bottom:527.173333pt;}
.yb1{bottom:528.693333pt;}
.yec{bottom:532.613333pt;}
.y60{bottom:536.053333pt;}
.y138{bottom:536.933333pt;}
.y12{bottom:539.093333pt;}
.y10d{bottom:542.773333pt;}
.y87{bottom:545.733333pt;}
.y15b{bottom:550.453333pt;}
.y41{bottom:554.453333pt;}
.y11{bottom:554.773333pt;}
.yed{bottom:556.933333pt;}
.yb0{bottom:557.973333pt;}
.y10c{bottom:558.453333pt;}
.y5f{bottom:559.653333pt;}
.y137{bottom:560.533333pt;}
.y86{bottom:561.413333pt;}
.y15a{bottom:566.053333pt;}
.y40{bottom:570.133333pt;}
.y10{bottom:570.373333pt;}
.y10b{bottom:574.053333pt;}
.y136{bottom:576.213333pt;}
.yaf{bottom:582.293333pt;}
.y85{bottom:585.013333pt;}
.y3f{bottom:585.733333pt;}
.y10a{bottom:589.653333pt;}
.y5e{bottom:591.333333pt;}
.yf{bottom:594.293333pt;}
.y135{bottom:599.813333pt;}
.yeb{bottom:600.213333pt;}
.y3e{bottom:601.413333pt;}
.y109{bottom:605.333333pt;}
.yae{bottom:606.533333pt;}
.y5d{bottom:606.933333pt;}
.y134{bottom:615.413333pt;}
.y84{bottom:616.933333pt;}
.y3d{bottom:617.013333pt;}
.y159{bottom:620.933333pt;}
.y5c{bottom:622.613333pt;}
.yad{bottom:630.853333pt;}
.yea{bottom:631.813333pt;}
.ye{bottom:635.893333pt;}
.y108{bottom:636.933333pt;}
.y5b{bottom:638.213333pt;}
.y133{bottom:639.093333pt;}
.y3c{bottom:640.613333pt;}
.y158{bottom:644.613333pt;}
.ye9{bottom:647.493333pt;}
.y107{bottom:652.613333pt;}
.y5a{bottom:653.813333pt;}
.y132{bottom:654.693333pt;}
.yac{bottom:655.173333pt;}
.y83{bottom:659.813333pt;}
.y157{bottom:660.213333pt;}
.ye8{bottom:663.093333pt;}
.yd{bottom:667.733333pt;}
.y106{bottom:668.213333pt;}
.y59{bottom:669.493333pt;}
.y3b{bottom:672.533333pt;}
.y82{bottom:675.493333pt;}
.y131{bottom:678.373333pt;}
.ye7{bottom:678.693333pt;}
.ya9{bottom:679.493333pt;}
.y105{bottom:683.813333pt;}
.y58{bottom:685.093333pt;}
.y81{bottom:691.093333pt;}
.y130{bottom:693.973333pt;}
.yc{bottom:699.733333pt;}
.y57{bottom:700.693333pt;}
.ye6{bottom:702.373333pt;}
.yab{bottom:703.733333pt;}
.y80{bottom:706.693333pt;}
.y156{bottom:707.493333pt;}
.y12f{bottom:709.573333pt;}
.y3a{bottom:715.493333pt;}
.y155{bottom:723.093333pt;}
.y56{bottom:724.373333pt;}
.y7f{bottom:730.373333pt;}
.y39{bottom:731.093333pt;}
.yb{bottom:731.733333pt;}
.y12e{bottom:733.253333pt;}
.ye5{bottom:733.973333pt;}
.y38{bottom:746.693333pt;}
.ya8{bottom:747.013333pt;}
.y104{bottom:747.093333pt;}
.y12d{bottom:748.853333pt;}
.ye4{bottom:749.653333pt;}
.ya{bottom:751.093333pt;}
.y55{bottom:755.973333pt;}
.y7e{bottom:761.973333pt;}
.y154{bottom:762.373333pt;}
.y103{bottom:762.693333pt;}
.y9{bottom:763.733333pt;}
.y12c{bottom:764.533333pt;}
.y54{bottom:771.653333pt;}
.y7d{bottom:777.653333pt;}
.y37{bottom:778.373333pt;}
.ya7{bottom:778.693333pt;}
.ye3{bottom:781.253333pt;}
.y8{bottom:783.093333pt;}
.y153{bottom:785.973333pt;}
.y53{bottom:787.253333pt;}
.y12b{bottom:788.133333pt;}
.y7c{bottom:793.253333pt;}
.y36{bottom:793.973333pt;}
.ye2{bottom:796.853333pt;}
.y152{bottom:801.653333pt;}
.ya6{bottom:802.293333pt;}
.y52{bottom:802.853333pt;}
.y12a{bottom:803.733333pt;}
.y35{bottom:809.653333pt;}
.y7{bottom:811.653333pt;}
.y7b{bottom:824.853333pt;}
.y34{bottom:825.253333pt;}
.ye1{bottom:826.213333pt;}
.y51{bottom:826.533333pt;}
.y129{bottom:827.413333pt;}
.y6{bottom:828.053333pt;}
.ya5{bottom:833.893333pt;}
.y7a{bottom:840.533333pt;}
.y151{bottom:840.853333pt;}
.y102{bottom:841.253333pt;}
.y128{bottom:843.013333pt;}
.y5{bottom:844.453333pt;}
.y50{bottom:855.493333pt;}
.y33{bottom:856.853333pt;}
.ya4{bottom:862.933333pt;}
.y79{bottom:864.133333pt;}
.y150{bottom:864.533333pt;}
.ye0{bottom:866.133333pt;}
.y127{bottom:866.693333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y14f{bottom:880.133333pt;}
.y126{bottom:882.293333pt;}
.y4f{bottom:887.093333pt;}
.ycb{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.ydf{bottom:890.453333pt;}
.ya3{bottom:893.893333pt;}
.y78{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y4e{bottom:902.800000pt;}
.yca{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.ya2{bottom:904.720000pt;}
.y125{bottom:905.920000pt;}
.y77{bottom:911.440000pt;}
.ydc{bottom:914.720000pt;}
.y4d{bottom:918.400000pt;}
.y2f{bottom:919.440000pt;}
.y124{bottom:921.600000pt;}
.ya1{bottom:929.040000pt;}
.yc9{bottom:935.040000pt;}
.y76{bottom:943.040000pt;}
.y123{bottom:945.520000pt;}
.y4c{bottom:950.000000pt;}
.yc8{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.ya0{bottom:953.360000pt;}
.y75{bottom:958.720000pt;}
.y4b{bottom:965.680000pt;}
.yc7{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.ydb{bottom:970.320000pt;}
.y74{bottom:974.320000pt;}
.y9f{bottom:977.680000pt;}
.y4a{bottom:981.920000pt;}
.y2c{bottom:982.320000pt;}
.y122{bottom:988.400000pt;}
.y73{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y9e{bottom:1001.920000pt;}
.y121{bottom:1012.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h15{height:23.626667pt;}
.h10{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h13{height:37.032187pt;}
.h16{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h11{height:47.920000pt;}
.h5{height:48.726562pt;}
.h9{height:49.581562pt;}
.hc{height:53.309531pt;}
.h17{height:54.927899pt;}
.h14{height:54.960000pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h12{height:72.240000pt;}
.he{height:96.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:33.200000pt;}
.wb{width:40.400000pt;}
.w1a{width:58.106667pt;}
.w19{width:60.560000pt;}
.wc{width:67.120000pt;}
.w10{width:81.280000pt;}
.w12{width:83.040000pt;}
.w5{width:83.200000pt;}
.wf{width:84.720000pt;}
.w17{width:94.320000pt;}
.wa{width:99.466667pt;}
.w15{width:100.266667pt;}
.w7{width:101.120000pt;}
.w13{width:103.306667pt;}
.w9{width:108.880000pt;}
.w11{width:118.106667pt;}
.w18{width:119.306667pt;}
.w3{width:150.480000pt;}
.wd{width:166.640000pt;}
.w14{width:172.560000pt;}
.we{width:201.866667pt;}
.w4{width:234.346667pt;}
.w16{width:238.800000pt;}
.w8{width:250.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.440000pt;}
.x26{left:5.440000pt;}
.x11{left:6.880000pt;}
.x1a{left:9.120000pt;}
.xc{left:12.880000pt;}
.xe{left:14.400000pt;}
.x18{left:16.480000pt;}
.x30{left:18.026667pt;}
.x1f{left:19.200000pt;}
.x31{left:22.880000pt;}
.x2f{left:26.640000pt;}
.x27{left:31.200000pt;}
.x21{left:32.640000pt;}
.x25{left:34.880000pt;}
.x19{left:35.840000pt;}
.xb{left:37.920000pt;}
.xd{left:39.440000pt;}
.x16{left:43.200000pt;}
.x17{left:46.026667pt;}
.x23{left:56.186667pt;}
.x1{left:60.480000pt;}
.x13{left:68.880000pt;}
.x1d{left:72.879988pt;}
.x28{left:88.560000pt;}
.x32{left:98.879988pt;}
.x1c{left:114.719988pt;}
.x5{left:137.279988pt;}
.x6{left:145.386667pt;}
.x2{left:171.306655pt;}
.x1e{left:178.506667pt;}
.x29{left:192.506667pt;}
.x10{left:221.066667pt;}
.x20{left:246.266667pt;}
.x2c{left:289.866667pt;}
.x8{left:296.506667pt;}
.x12{left:322.826667pt;}
.xf{left:327.706655pt;}
.x24{left:331.626667pt;}
.x2a{left:365.706667pt;}
.x2d{left:384.826667pt;}
.x22{left:413.626667pt;}
.x14{left:432.426667pt;}
.x2e{left:446.026667pt;}
.x2b{left:466.613333pt;}
.x9{left:531.493333pt;}
.x15{left:532.533333pt;}
.x1b{left:604.053322pt;}
.xa{left:615.413333pt;}
.x4{left:694.053322pt;}
.x3{left:711.413322pt;}
}




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