
    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_2efd730398560410072e397e.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_77c94f841275003319c2b3b9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_501294548e61b4d6a17e616a.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_1ef139659eb28962fb3f832c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b74b3288892b30b17ac95776.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_25c793420060495527eac4d6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21ec4c03984762bb46d9ea13.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3a1527c44799bb2eabd006dc.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;}
.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls22{letter-spacing:-0.513600px;}
.ls23{letter-spacing:-0.308400px;}
.ls16{letter-spacing:-0.243600px;}
.ls21{letter-spacing:-0.232800px;}
.ls11{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.160800px;}
.ls24{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls1e{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls1c{letter-spacing:-0.049680px;}
.ls19{letter-spacing:-0.048960px;}
.ls1d{letter-spacing:-0.014760px;}
.lsc{letter-spacing:-0.011400px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.ls25{letter-spacing:0.113400px;}
.ls1b{letter-spacing:0.116400px;}
.ls1a{letter-spacing:0.127200px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.160800px;}
.ls10{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:1.893600px;}
.ls20{letter-spacing:47.726640px;}
.ls1f{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.353600px;}
.ws13{word-spacing:-13.342800px;}
.ws1a{word-spacing:-13.339800px;}
.ws11{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.215000px;}
.ws15{word-spacing:-13.211640px;}
.ws10{word-spacing:-13.177440px;}
.ws14{word-spacing:-13.176720px;}
.wsb{word-spacing:-13.162800px;}
.ws16{word-spacing:-13.101000px;}
.ws19{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws17{word-spacing:-12.993600px;}
.wse{word-spacing:-12.982800px;}
.ws18{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._d{margin-left:-3.547320px;}
._7{margin-left:-2.316600px;}
._0{margin-left:-1.110000px;}
._2{width:1.172640px;}
._9{width:2.247240px;}
._8{width:3.429120px;}
._4{width:5.170200px;}
._5{width:6.648122px;}
._b{width:8.025002px;}
._a{width:9.138000px;}
._c{width:10.669200px;}
._6{width:11.783400px;}
._e{width:14.309160px;}
._f{width:15.318071px;}
._3{width:16.323036px;}
._1{width:17.370360px;}
._18{width:18.577080px;}
._10{width:19.719360px;}
._12{width:20.949600px;}
._14{width:22.064160px;}
._17{width:23.146080px;}
._11{width:24.649200px;}
._15{width:26.512920px;}
._16{width:27.534960px;}
._1c{width:28.705080px;}
._19{width:30.721320px;}
._13{width:44.516640px;}
._25{width:47.398320px;}
._26{width:48.565800px;}
._1d{width:54.318240px;}
._23{width:92.825280px;}
._1e{width:99.017640px;}
._21{width:125.560440px;}
._22{width:126.803760px;}
._1a{width:141.702840px;}
._1b{width:211.081320px;}
._24{width:220.099320px;}
._1f{width:369.196920px;}
._20{width:370.339200px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:7.830000px;}
.ya6{bottom:7.920000px;}
.y13e{bottom:25.380000px;}
.ya3{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5d{bottom:115.500000px;}
.y18d{bottom:117.390000px;}
.y10f{bottom:117.840000px;}
.y8b{bottom:119.550000px;}
.y19f{bottom:121.530000px;}
.ye0{bottom:122.340000px;}
.y14a{bottom:123.960000px;}
.y5c{bottom:133.140000px;}
.y29{bottom:133.860000px;}
.y178{bottom:133.950000px;}
.y18c{bottom:134.940000px;}
.y10e{bottom:135.390000px;}
.y8a{bottom:137.100000px;}
.y19e{bottom:139.170000px;}
.y149{bottom:141.600000px;}
.y124{bottom:143.940000px;}
.y16c{bottom:144.840000px;}
.y5b{bottom:150.690000px;}
.y28{bottom:151.410000px;}
.y177{bottom:151.500000px;}
.y18b{bottom:152.580000px;}
.yac{bottom:153.120000px;}
.y19d{bottom:156.720000px;}
.ydf{bottom:157.980000px;}
.y148{bottom:159.150000px;}
.y123{bottom:161.580000px;}
.y16b{bottom:162.390000px;}
.y89{bottom:163.740000px;}
.y5a{bottom:168.330000px;}
.y27{bottom:169.050000px;}
.y10d{bottom:170.940000px;}
.yde{bottom:175.530000px;}
.y147{bottom:176.700000px;}
.y122{bottom:179.130000px;}
.y16a{bottom:179.940000px;}
.yab{bottom:180.480000px;}
.y19c{bottom:183.630000px;}
.y59{bottom:185.880000px;}
.y26{bottom:186.600000px;}
.y176{bottom:186.690000px;}
.y18a{bottom:188.130000px;}
.y10c{bottom:188.580000px;}
.y1c3{bottom:191.910000px;}
.ydd{bottom:193.170000px;}
.y146{bottom:194.340000px;}
.y121{bottom:196.680000px;}
.y169{bottom:197.580000px;}
.y88{bottom:199.290000px;}
.y25{bottom:204.150000px;}
.y175{bottom:204.240000px;}
.y189{bottom:205.680000px;}
.y10b{bottom:206.130000px;}
.yaa{bottom:207.750000px;}
.y1c2{bottom:209.460000px;}
.ydc{bottom:210.720000px;}
.y145{bottom:211.890000px;}
.y58{bottom:212.430000px;}
.y120{bottom:214.320000px;}
.y168{bottom:215.130000px;}
.y87{bottom:216.930000px;}
.y24{bottom:221.790000px;}
.y174{bottom:221.880000px;}
.y188{bottom:223.320000px;}
.y10a{bottom:223.680000px;}
.ydb{bottom:228.270000px;}
.y11f{bottom:231.870000px;}
.y167{bottom:232.680000px;}
.y86{bottom:234.480000px;}
.ya9{bottom:235.110000px;}
.y1c1{bottom:236.100000px;}
.y144{bottom:238.440000px;}
.y23{bottom:239.340000px;}
.y173{bottom:239.430000px;}
.y187{bottom:240.870000px;}
.y109{bottom:241.320000px;}
.yda{bottom:245.910000px;}
.y57{bottom:248.070000px;}
.y19b{bottom:249.510000px;}
.y166{bottom:250.320000px;}
.y85{bottom:252.030000px;}
.y1c0{bottom:253.650000px;}
.y22{bottom:256.890000px;}
.y172{bottom:256.980000px;}
.y11e{bottom:258.510000px;}
.y108{bottom:258.870000px;}
.ya8{bottom:262.470000px;}
.yd9{bottom:263.460000px;}
.y56{bottom:265.620000px;}
.y19a{bottom:267.060000px;}
.y165{bottom:267.870000px;}
.y84{bottom:269.670000px;}
.y1bf{bottom:271.200000px;}
.y143{bottom:274.350000px;}
.y21{bottom:274.530000px;}
.y171{bottom:274.620000px;}
.y186{bottom:276.060000px;}
.y107{bottom:276.510000px;}
.yd8{bottom:281.100000px;}
.y55{bottom:283.260000px;}
.y164{bottom:285.510000px;}
.y83{bottom:287.220000px;}
.ya7{bottom:289.830000px;}
.y170{bottom:292.170000px;}
.y185{bottom:293.610000px;}
.y106{bottom:294.060000px;}
.y1be{bottom:297.840000px;}
.yd7{bottom:298.650000px;}
.y54{bottom:300.810000px;}
.y199{bottom:302.610000px;}
.y163{bottom:303.060000px;}
.y82{bottom:304.860000px;}
.y20{bottom:310.080000px;}
.y105{bottom:311.610000px;}
.y1bd{bottom:315.390000px;}
.yd6{bottom:316.200000px;}
.ya5{bottom:317.100000px;}
.y53{bottom:318.360000px;}
.y16f{bottom:318.810000px;}
.y142{bottom:320.070000px;}
.y184{bottom:320.250000px;}
.y162{bottom:320.610000px;}
.y81{bottom:322.410000px;}
.y1f{bottom:327.720000px;}
.y11d{bottom:329.250000px;}
.y1bc{bottom:332.940000px;}
.yd5{bottom:333.840000px;}
.y52{bottom:336.000000px;}
.y198{bottom:337.800000px;}
.y80{bottom:339.960000px;}
.ya2{bottom:344.460000px;}
.y1e{bottom:345.270000px;}
.y11c{bottom:346.800000px;}
.y104{bottom:347.250000px;}
.y141{bottom:347.340000px;}
.y51{bottom:353.550000px;}
.y16e{bottom:354.720000px;}
.y197{bottom:355.440000px;}
.y183{bottom:355.800000px;}
.y1bb{bottom:359.580000px;}
.y1d{bottom:362.820000px;}
.y11b{bottom:364.440000px;}
.y103{bottom:364.800000px;}
.y7f{bottom:366.600000px;}
.yd4{bottom:369.390000px;}
.y50{bottom:371.190000px;}
.y196{bottom:372.990000px;}
.y182{bottom:373.440000px;}
.y140{bottom:374.700000px;}
.y1ba{bottom:377.130000px;}
.y1c{bottom:380.460000px;}
.y102{bottom:382.440000px;}
.y161{bottom:382.800000px;}
.yd3{bottom:386.940000px;}
.y4f{bottom:388.740000px;}
.y195{bottom:390.540000px;}
.y11a{bottom:390.990000px;}
.y1b{bottom:398.010000px;}
.y101{bottom:399.990000px;}
.y160{bottom:400.440000px;}
.y13f{bottom:402.060000px;}
.y7e{bottom:402.150000px;}
.y16d{bottom:402.960000px;}
.y1b9{bottom:403.770000px;}
.yd2{bottom:404.580000px;}
.y194{bottom:408.180000px;}
.y181{bottom:408.540000px;}
.ya1{bottom:410.790000px;}
.y1a{bottom:415.650000px;}
.y100{bottom:417.540000px;}
.y15f{bottom:417.990000px;}
.y7d{bottom:419.790000px;}
.y1b8{bottom:421.320000px;}
.yd1{bottom:422.130000px;}
.y4e{bottom:424.290000px;}
.y193{bottom:425.730000px;}
.y180{bottom:426.180000px;}
.y119{bottom:426.540000px;}
.y13d{bottom:429.420000px;}
.y19{bottom:433.200000px;}
.yff{bottom:435.180000px;}
.y15e{bottom:435.540000px;}
.y7c{bottom:437.340000px;}
.yd0{bottom:439.770000px;}
.y4d{bottom:441.930000px;}
.y17f{bottom:443.730000px;}
.y118{bottom:444.180000px;}
.ya0{bottom:446.340000px;}
.y1b7{bottom:447.870000px;}
.y18{bottom:450.750000px;}
.yfe{bottom:452.730000px;}
.y15d{bottom:453.180000px;}
.y7b{bottom:454.890000px;}
.ycf{bottom:457.320000px;}
.y4c{bottom:459.480000px;}
.y17e{bottom:461.370000px;}
.y117{bottom:461.730000px;}
.y9f{bottom:463.890000px;}
.y1b6{bottom:465.510000px;}
.y17{bottom:468.390000px;}
.yfd{bottom:470.400000px;}
.y15c{bottom:470.760000px;}
.y7a{bottom:472.560000px;}
.yce{bottom:474.900000px;}
.y4b{bottom:477.150000px;}
.y17d{bottom:478.950000px;}
.y116{bottom:479.400000px;}
.y9e{bottom:481.560000px;}
.yfc{bottom:487.950000px;}
.y15b{bottom:488.400000px;}
.y79{bottom:490.110000px;}
.y1b5{bottom:492.090000px;}
.ycd{bottom:492.540000px;}
.y4a{bottom:494.700000px;}
.y16{bottom:495.330000px;}
.y13c{bottom:495.690000px;}
.y192{bottom:496.500000px;}
.y115{bottom:496.950000px;}
.y9d{bottom:499.110000px;}
.yfb{bottom:505.500000px;}
.y15a{bottom:505.950000px;}
.y78{bottom:507.750000px;}
.y1b4{bottom:509.730000px;}
.ycc{bottom:510.090000px;}
.y49{bottom:512.250000px;}
.y191{bottom:514.140000px;}
.y114{bottom:514.500000px;}
.y9c{bottom:516.750000px;}
.y159{bottom:523.500000px;}
.y1b3{bottom:527.280000px;}
.y48{bottom:529.890000px;}
.y13b{bottom:531.330000px;}
.y190{bottom:531.690000px;}
.yfa{bottom:532.140000px;}
.y77{bottom:534.300000px;}
.ycb{bottom:536.730000px;}
.y158{bottom:541.140000px;}
.y15{bottom:543.930000px;}
.y47{bottom:547.440000px;}
.y13a{bottom:548.880000px;}
.y18f{bottom:549.330000px;}
.y113{bottom:549.690000px;}
.y9b{bottom:551.850000px;}
.y1b2{bottom:553.830000px;}
.y157{bottom:558.690000px;}
.y46{bottom:565.080000px;}
.y139{bottom:566.430000px;}
.y76{bottom:566.880000px;}
.y112{bottom:567.330000px;}
.yf9{bottom:567.690000px;}
.y9a{bottom:569.490000px;}
.y1b1{bottom:571.470000px;}
.yca{bottom:572.280000px;}
.y156{bottom:576.330000px;}
.y14{bottom:580.920000px;}
.y45{bottom:582.630000px;}
.y138{bottom:584.070000px;}
.y111{bottom:584.880000px;}
.yf8{bottom:585.330000px;}
.y99{bottom:587.040000px;}
.y1b0{bottom:589.020000px;}
.yc9{bottom:589.830000px;}
.y155{bottom:593.880000px;}
.y13{bottom:598.470000px;}
.y137{bottom:601.620000px;}
.y75{bottom:602.430000px;}
.yf7{bottom:602.880000px;}
.yc8{bottom:607.470000px;}
.y44{bottom:609.180000px;}
.y98{bottom:613.590000px;}
.y1af{bottom:615.660000px;}
.y12{bottom:616.110000px;}
.y74{bottom:620.070000px;}
.yf6{bottom:620.430000px;}
.yc7{bottom:625.020000px;}
.y1ae{bottom:633.210000px;}
.y11{bottom:633.660000px;}
.y136{bottom:637.260000px;}
.y73{bottom:637.620000px;}
.yf5{bottom:638.070000px;}
.yc6{bottom:642.660000px;}
.y43{bottom:644.820000px;}
.y97{bottom:649.230000px;}
.y1ad{bottom:650.760000px;}
.y10{bottom:651.300000px;}
.y135{bottom:654.810000px;}
.y72{bottom:655.260000px;}
.yf4{bottom:655.620000px;}
.y154{bottom:656.070000px;}
.yc5{bottom:660.210000px;}
.y42{bottom:662.370000px;}
.y96{bottom:666.780000px;}
.yf{bottom:668.850000px;}
.y134{bottom:672.360000px;}
.y71{bottom:672.810000px;}
.yf3{bottom:673.260000px;}
.y153{bottom:673.620000px;}
.y1ac{bottom:677.400000px;}
.yc4{bottom:677.760000px;}
.y41{bottom:680.010000px;}
.y95{bottom:684.420000px;}
.ye{bottom:686.400000px;}
.y133{bottom:690.000000px;}
.y70{bottom:690.360000px;}
.yf2{bottom:690.810000px;}
.y152{bottom:691.260000px;}
.y1ab{bottom:694.950000px;}
.yc3{bottom:695.400000px;}
.y40{bottom:697.560000px;}
.y94{bottom:701.970000px;}
.yd{bottom:704.040000px;}
.y132{bottom:707.550000px;}
.y6f{bottom:708.000000px;}
.yf1{bottom:708.360000px;}
.y151{bottom:708.810000px;}
.y1aa{bottom:712.590000px;}
.yc2{bottom:712.950000px;}
.y3f{bottom:715.110000px;}
.y93{bottom:719.520000px;}
.yc{bottom:721.590000px;}
.y131{bottom:725.190000px;}
.y6e{bottom:725.550000px;}
.yf0{bottom:726.000000px;}
.y150{bottom:726.360000px;}
.yc1{bottom:730.590000px;}
.y3e{bottom:732.750000px;}
.y92{bottom:737.160000px;}
.y1a9{bottom:739.140000px;}
.yb{bottom:739.230000px;}
.yef{bottom:743.550000px;}
.y14f{bottom:744.000000px;}
.yc0{bottom:748.140000px;}
.y3d{bottom:750.300000px;}
.y130{bottom:751.740000px;}
.y91{bottom:754.710000px;}
.y1a8{bottom:756.690000px;}
.y6d{bottom:761.190000px;}
.y14e{bottom:761.550000px;}
.ybf{bottom:765.690000px;}
.ya{bottom:766.140000px;}
.y1a7{bottom:774.330000px;}
.y3c{bottom:776.850000px;}
.y6c{bottom:778.740000px;}
.yee{bottom:779.190000px;}
.y90{bottom:781.260000px;}
.y12f{bottom:787.290000px;}
.y1a6{bottom:791.880000px;}
.y6b{bottom:796.290000px;}
.yed{bottom:796.740000px;}
.ybe{bottom:801.330000px;}
.y12e{bottom:804.930000px;}
.y17c{bottom:805.290000px;}
.y3b{bottom:809.520000px;}
.y6a{bottom:813.930000px;}
.yec{bottom:814.290000px;}
.y9{bottom:814.380000px;}
.y1a5{bottom:818.520000px;}
.ybd{bottom:818.880000px;}
.y12d{bottom:822.480000px;}
.y69{bottom:831.480000px;}
.yeb{bottom:831.930000px;}
.y1a4{bottom:836.070000px;}
.ybc{bottom:836.520000px;}
.y12c{bottom:840.030000px;}
.y17b{bottom:840.930000px;}
.y3a{bottom:845.340000px;}
.y68{bottom:849.030000px;}
.y8f{bottom:849.480000px;}
.y8{bottom:849.930000px;}
.y1a3{bottom:853.620000px;}
.ybb{bottom:854.070000px;}
.y12b{bottom:857.670000px;}
.y17a{bottom:858.480000px;}
.y67{bottom:866.670000px;}
.y8e{bottom:867.030000px;}
.yba{bottom:871.620000px;}
.y12a{bottom:875.220000px;}
.y18e{bottom:875.670000px;}
.y179{bottom:876.030000px;}
.y1a2{bottom:880.260000px;}
.y8d{bottom:884.670000px;}
.y7{bottom:885.750000px;}
.yb9{bottom:889.260000px;}
.y129{bottom:892.860000px;}
.y39{bottom:893.670000px;}
.y1a1{bottom:897.810000px;}
.y66{bottom:902.220000px;}
.yb8{bottom:906.810000px;}
.y38{bottom:911.220000px;}
.y128{bottom:919.410000px;}
.y65{bottom:919.860000px;}
.y6{bottom:921.750000px;}
.yb7{bottom:924.450000px;}
.y37{bottom:928.860000px;}
.y64{bottom:937.410000px;}
.yb6{bottom:942.000000px;}
.y36{bottom:946.410000px;}
.y63{bottom:954.960000px;}
.yea{bottom:955.410000px;}
.y5{bottom:957.840000px;}
.yb5{bottom:959.550000px;}
.y35{bottom:963.960000px;}
.y62{bottom:972.600000px;}
.ye9{bottom:972.960000px;}
.yb4{bottom:977.190000px;}
.y34{bottom:981.600000px;}
.y14d{bottom:981.960000px;}
.y1a0{bottom:986.460000px;}
.y61{bottom:990.150000px;}
.ye8{bottom:990.600000px;}
.yb3{bottom:994.740000px;}
.y4{bottom:996.180000px;}
.y33{bottom:999.150000px;}
.y14c{bottom:999.600000px;}
.y60{bottom:1007.790000px;}
.ye7{bottom:1008.150000px;}
.yb2{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y14b{bottom:1017.180000px;}
.y3{bottom:1020.870000px;}
.y5f{bottom:1025.370000px;}
.ye6{bottom:1025.820000px;}
.yb1{bottom:1029.960000px;}
.y31{bottom:1034.370000px;}
.y110{bottom:1034.820000px;}
.y127{bottom:1042.920000px;}
.ye5{bottom:1043.370000px;}
.yb0{bottom:1047.510000px;}
.y5e{bottom:1051.920000px;}
.y8c{bottom:1052.370000px;}
.y126{bottom:1060.560000px;}
.ye4{bottom:1060.920000px;}
.yaf{bottom:1065.150000px;}
.y30{bottom:1069.920000px;}
.ye3{bottom:1078.560000px;}
.y125{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.yae{bottom:1091.700000px;}
.ye2{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.ye1{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.yad{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1205.100000px;}
.hd{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.130000px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h7{height:60.960938px;}
.hf{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:85.950000px;}
.w8{width:95.610000px;}
.w6{width:100.290000px;}
.wb{width:120.870000px;}
.w9{width:126.810000px;}
.w3{width:132.510000px;}
.w5{width:148.410000px;}
.w4{width:150.660000px;}
.wd{width:156.960000px;}
.wc{width:165.900000px;}
.w7{width:220.950000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:111.419987px;}
.x8{left:165.090000px;}
.x2{left:202.799987px;}
.x9{left:292.620000px;}
.x5{left:353.370000px;}
.xa{left:379.290000px;}
.xb{left:500.880000px;}
.x6{left:502.500000px;}
.x7{left:603.510000px;}
.xc{left:667.500000px;}
.xd{left:775.139987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls22{letter-spacing:-0.456533pt;}
.ls23{letter-spacing:-0.274133pt;}
.ls16{letter-spacing:-0.216533pt;}
.ls21{letter-spacing:-0.206933pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.142933pt;}
.ls24{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls1e{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls1c{letter-spacing:-0.044160pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls1d{letter-spacing:-0.013120pt;}
.lsc{letter-spacing:-0.010133pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.ls25{letter-spacing:0.100800pt;}
.ls1b{letter-spacing:0.103467pt;}
.ls1a{letter-spacing:0.113067pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.142933pt;}
.ls10{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:1.683200pt;}
.ls20{letter-spacing:42.423680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.869867pt;}
.ws13{word-spacing:-11.860267pt;}
.ws1a{word-spacing:-11.857600pt;}
.ws11{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.746667pt;}
.ws15{word-spacing:-11.743680pt;}
.ws10{word-spacing:-11.713280pt;}
.ws14{word-spacing:-11.712640pt;}
.wsb{word-spacing:-11.700267pt;}
.ws16{word-spacing:-11.645333pt;}
.ws19{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws17{word-spacing:-11.549867pt;}
.wse{word-spacing:-11.540267pt;}
.ws18{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._d{margin-left:-3.153174pt;}
._7{margin-left:-2.059200pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.042347pt;}
._9{width:1.997546pt;}
._8{width:3.048107pt;}
._4{width:4.595733pt;}
._5{width:5.909442pt;}
._b{width:7.133335pt;}
._a{width:8.122666pt;}
._c{width:9.483734pt;}
._6{width:10.474133pt;}
._e{width:12.719253pt;}
._f{width:13.616063pt;}
._3{width:14.509365pt;}
._1{width:15.440320pt;}
._18{width:16.512960pt;}
._10{width:17.528320pt;}
._12{width:18.621867pt;}
._14{width:19.612587pt;}
._17{width:20.574293pt;}
._11{width:21.910400pt;}
._15{width:23.567040pt;}
._16{width:24.475520pt;}
._1c{width:25.515627pt;}
._19{width:27.307840pt;}
._13{width:39.570347pt;}
._25{width:42.131840pt;}
._26{width:43.169600pt;}
._1d{width:48.282880pt;}
._23{width:82.511360pt;}
._1e{width:88.015680pt;}
._21{width:111.609280pt;}
._22{width:112.714453pt;}
._1a{width:125.958080pt;}
._1b{width:187.627840pt;}
._24{width:195.643840pt;}
._1f{width:328.175040pt;}
._20{width:329.190400pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:6.960000pt;}
.ya6{bottom:7.040000pt;}
.y13e{bottom:22.560000pt;}
.ya3{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5d{bottom:102.666667pt;}
.y18d{bottom:104.346667pt;}
.y10f{bottom:104.746667pt;}
.y8b{bottom:106.266667pt;}
.y19f{bottom:108.026667pt;}
.ye0{bottom:108.746667pt;}
.y14a{bottom:110.186667pt;}
.y5c{bottom:118.346667pt;}
.y29{bottom:118.986667pt;}
.y178{bottom:119.066667pt;}
.y18c{bottom:119.946667pt;}
.y10e{bottom:120.346667pt;}
.y8a{bottom:121.866667pt;}
.y19e{bottom:123.706667pt;}
.y149{bottom:125.866667pt;}
.y124{bottom:127.946667pt;}
.y16c{bottom:128.746667pt;}
.y5b{bottom:133.946667pt;}
.y28{bottom:134.586667pt;}
.y177{bottom:134.666667pt;}
.y18b{bottom:135.626667pt;}
.yac{bottom:136.106667pt;}
.y19d{bottom:139.306667pt;}
.ydf{bottom:140.426667pt;}
.y148{bottom:141.466667pt;}
.y123{bottom:143.626667pt;}
.y16b{bottom:144.346667pt;}
.y89{bottom:145.546667pt;}
.y5a{bottom:149.626667pt;}
.y27{bottom:150.266667pt;}
.y10d{bottom:151.946667pt;}
.yde{bottom:156.026667pt;}
.y147{bottom:157.066667pt;}
.y122{bottom:159.226667pt;}
.y16a{bottom:159.946667pt;}
.yab{bottom:160.426667pt;}
.y19c{bottom:163.226667pt;}
.y59{bottom:165.226667pt;}
.y26{bottom:165.866667pt;}
.y176{bottom:165.946667pt;}
.y18a{bottom:167.226667pt;}
.y10c{bottom:167.626667pt;}
.y1c3{bottom:170.586667pt;}
.ydd{bottom:171.706667pt;}
.y146{bottom:172.746667pt;}
.y121{bottom:174.826667pt;}
.y169{bottom:175.626667pt;}
.y88{bottom:177.146667pt;}
.y25{bottom:181.466667pt;}
.y175{bottom:181.546667pt;}
.y189{bottom:182.826667pt;}
.y10b{bottom:183.226667pt;}
.yaa{bottom:184.666667pt;}
.y1c2{bottom:186.186667pt;}
.ydc{bottom:187.306667pt;}
.y145{bottom:188.346667pt;}
.y58{bottom:188.826667pt;}
.y120{bottom:190.506667pt;}
.y168{bottom:191.226667pt;}
.y87{bottom:192.826667pt;}
.y24{bottom:197.146667pt;}
.y174{bottom:197.226667pt;}
.y188{bottom:198.506667pt;}
.y10a{bottom:198.826667pt;}
.ydb{bottom:202.906667pt;}
.y11f{bottom:206.106667pt;}
.y167{bottom:206.826667pt;}
.y86{bottom:208.426667pt;}
.ya9{bottom:208.986667pt;}
.y1c1{bottom:209.866667pt;}
.y144{bottom:211.946667pt;}
.y23{bottom:212.746667pt;}
.y173{bottom:212.826667pt;}
.y187{bottom:214.106667pt;}
.y109{bottom:214.506667pt;}
.yda{bottom:218.586667pt;}
.y57{bottom:220.506667pt;}
.y19b{bottom:221.786667pt;}
.y166{bottom:222.506667pt;}
.y85{bottom:224.026667pt;}
.y1c0{bottom:225.466667pt;}
.y22{bottom:228.346667pt;}
.y172{bottom:228.426667pt;}
.y11e{bottom:229.786667pt;}
.y108{bottom:230.106667pt;}
.ya8{bottom:233.306667pt;}
.yd9{bottom:234.186667pt;}
.y56{bottom:236.106667pt;}
.y19a{bottom:237.386667pt;}
.y165{bottom:238.106667pt;}
.y84{bottom:239.706667pt;}
.y1bf{bottom:241.066667pt;}
.y143{bottom:243.866667pt;}
.y21{bottom:244.026667pt;}
.y171{bottom:244.106667pt;}
.y186{bottom:245.386667pt;}
.y107{bottom:245.786667pt;}
.yd8{bottom:249.866667pt;}
.y55{bottom:251.786667pt;}
.y164{bottom:253.786667pt;}
.y83{bottom:255.306667pt;}
.ya7{bottom:257.626667pt;}
.y170{bottom:259.706667pt;}
.y185{bottom:260.986667pt;}
.y106{bottom:261.386667pt;}
.y1be{bottom:264.746667pt;}
.yd7{bottom:265.466667pt;}
.y54{bottom:267.386667pt;}
.y199{bottom:268.986667pt;}
.y163{bottom:269.386667pt;}
.y82{bottom:270.986667pt;}
.y20{bottom:275.626667pt;}
.y105{bottom:276.986667pt;}
.y1bd{bottom:280.346667pt;}
.yd6{bottom:281.066667pt;}
.ya5{bottom:281.866667pt;}
.y53{bottom:282.986667pt;}
.y16f{bottom:283.386667pt;}
.y142{bottom:284.506667pt;}
.y184{bottom:284.666667pt;}
.y162{bottom:284.986667pt;}
.y81{bottom:286.586667pt;}
.y1f{bottom:291.306667pt;}
.y11d{bottom:292.666667pt;}
.y1bc{bottom:295.946667pt;}
.yd5{bottom:296.746667pt;}
.y52{bottom:298.666667pt;}
.y198{bottom:300.266667pt;}
.y80{bottom:302.186667pt;}
.ya2{bottom:306.186667pt;}
.y1e{bottom:306.906667pt;}
.y11c{bottom:308.266667pt;}
.y104{bottom:308.666667pt;}
.y141{bottom:308.746667pt;}
.y51{bottom:314.266667pt;}
.y16e{bottom:315.306667pt;}
.y197{bottom:315.946667pt;}
.y183{bottom:316.266667pt;}
.y1bb{bottom:319.626667pt;}
.y1d{bottom:322.506667pt;}
.y11b{bottom:323.946667pt;}
.y103{bottom:324.266667pt;}
.y7f{bottom:325.866667pt;}
.yd4{bottom:328.346667pt;}
.y50{bottom:329.946667pt;}
.y196{bottom:331.546667pt;}
.y182{bottom:331.946667pt;}
.y140{bottom:333.066667pt;}
.y1ba{bottom:335.226667pt;}
.y1c{bottom:338.186667pt;}
.y102{bottom:339.946667pt;}
.y161{bottom:340.266667pt;}
.yd3{bottom:343.946667pt;}
.y4f{bottom:345.546667pt;}
.y195{bottom:347.146667pt;}
.y11a{bottom:347.546667pt;}
.y1b{bottom:353.786667pt;}
.y101{bottom:355.546667pt;}
.y160{bottom:355.946667pt;}
.y13f{bottom:357.386667pt;}
.y7e{bottom:357.466667pt;}
.y16d{bottom:358.186667pt;}
.y1b9{bottom:358.906667pt;}
.yd2{bottom:359.626667pt;}
.y194{bottom:362.826667pt;}
.y181{bottom:363.146667pt;}
.ya1{bottom:365.146667pt;}
.y1a{bottom:369.466667pt;}
.y100{bottom:371.146667pt;}
.y15f{bottom:371.546667pt;}
.y7d{bottom:373.146667pt;}
.y1b8{bottom:374.506667pt;}
.yd1{bottom:375.226667pt;}
.y4e{bottom:377.146667pt;}
.y193{bottom:378.426667pt;}
.y180{bottom:378.826667pt;}
.y119{bottom:379.146667pt;}
.y13d{bottom:381.706667pt;}
.y19{bottom:385.066667pt;}
.yff{bottom:386.826667pt;}
.y15e{bottom:387.146667pt;}
.y7c{bottom:388.746667pt;}
.yd0{bottom:390.906667pt;}
.y4d{bottom:392.826667pt;}
.y17f{bottom:394.426667pt;}
.y118{bottom:394.826667pt;}
.ya0{bottom:396.746667pt;}
.y1b7{bottom:398.106667pt;}
.y18{bottom:400.666667pt;}
.yfe{bottom:402.426667pt;}
.y15d{bottom:402.826667pt;}
.y7b{bottom:404.346667pt;}
.ycf{bottom:406.506667pt;}
.y4c{bottom:408.426667pt;}
.y17e{bottom:410.106667pt;}
.y117{bottom:410.426667pt;}
.y9f{bottom:412.346667pt;}
.y1b6{bottom:413.786667pt;}
.y17{bottom:416.346667pt;}
.yfd{bottom:418.133333pt;}
.y15c{bottom:418.453333pt;}
.y7a{bottom:420.053333pt;}
.yce{bottom:422.133333pt;}
.y4b{bottom:424.133333pt;}
.y17d{bottom:425.733333pt;}
.y116{bottom:426.133333pt;}
.y9e{bottom:428.053333pt;}
.yfc{bottom:433.733333pt;}
.y15b{bottom:434.133333pt;}
.y79{bottom:435.653333pt;}
.y1b5{bottom:437.413333pt;}
.ycd{bottom:437.813333pt;}
.y4a{bottom:439.733333pt;}
.y16{bottom:440.293333pt;}
.y13c{bottom:440.613333pt;}
.y192{bottom:441.333333pt;}
.y115{bottom:441.733333pt;}
.y9d{bottom:443.653333pt;}
.yfb{bottom:449.333333pt;}
.y15a{bottom:449.733333pt;}
.y78{bottom:451.333333pt;}
.y1b4{bottom:453.093333pt;}
.ycc{bottom:453.413333pt;}
.y49{bottom:455.333333pt;}
.y191{bottom:457.013333pt;}
.y114{bottom:457.333333pt;}
.y9c{bottom:459.333333pt;}
.y159{bottom:465.333333pt;}
.y1b3{bottom:468.693333pt;}
.y48{bottom:471.013333pt;}
.y13b{bottom:472.293333pt;}
.y190{bottom:472.613333pt;}
.yfa{bottom:473.013333pt;}
.y77{bottom:474.933333pt;}
.ycb{bottom:477.093333pt;}
.y158{bottom:481.013333pt;}
.y15{bottom:483.493333pt;}
.y47{bottom:486.613333pt;}
.y13a{bottom:487.893333pt;}
.y18f{bottom:488.293333pt;}
.y113{bottom:488.613333pt;}
.y9b{bottom:490.533333pt;}
.y1b2{bottom:492.293333pt;}
.y157{bottom:496.613333pt;}
.y46{bottom:502.293333pt;}
.y139{bottom:503.493333pt;}
.y76{bottom:503.893333pt;}
.y112{bottom:504.293333pt;}
.yf9{bottom:504.613333pt;}
.y9a{bottom:506.213333pt;}
.y1b1{bottom:507.973333pt;}
.yca{bottom:508.693333pt;}
.y156{bottom:512.293333pt;}
.y14{bottom:516.373333pt;}
.y45{bottom:517.893333pt;}
.y138{bottom:519.173333pt;}
.y111{bottom:519.893333pt;}
.yf8{bottom:520.293333pt;}
.y99{bottom:521.813333pt;}
.y1b0{bottom:523.573333pt;}
.yc9{bottom:524.293333pt;}
.y155{bottom:527.893333pt;}
.y13{bottom:531.973333pt;}
.y137{bottom:534.773333pt;}
.y75{bottom:535.493333pt;}
.yf7{bottom:535.893333pt;}
.yc8{bottom:539.973333pt;}
.y44{bottom:541.493333pt;}
.y98{bottom:545.413333pt;}
.y1af{bottom:547.253333pt;}
.y12{bottom:547.653333pt;}
.y74{bottom:551.173333pt;}
.yf6{bottom:551.493333pt;}
.yc7{bottom:555.573333pt;}
.y1ae{bottom:562.853333pt;}
.y11{bottom:563.253333pt;}
.y136{bottom:566.453333pt;}
.y73{bottom:566.773333pt;}
.yf5{bottom:567.173333pt;}
.yc6{bottom:571.253333pt;}
.y43{bottom:573.173333pt;}
.y97{bottom:577.093333pt;}
.y1ad{bottom:578.453333pt;}
.y10{bottom:578.933333pt;}
.y135{bottom:582.053333pt;}
.y72{bottom:582.453333pt;}
.yf4{bottom:582.773333pt;}
.y154{bottom:583.173333pt;}
.yc5{bottom:586.853333pt;}
.y42{bottom:588.773333pt;}
.y96{bottom:592.693333pt;}
.yf{bottom:594.533333pt;}
.y134{bottom:597.653333pt;}
.y71{bottom:598.053333pt;}
.yf3{bottom:598.453333pt;}
.y153{bottom:598.773333pt;}
.y1ac{bottom:602.133333pt;}
.yc4{bottom:602.453333pt;}
.y41{bottom:604.453333pt;}
.y95{bottom:608.373333pt;}
.ye{bottom:610.133333pt;}
.y133{bottom:613.333333pt;}
.y70{bottom:613.653333pt;}
.yf2{bottom:614.053333pt;}
.y152{bottom:614.453333pt;}
.y1ab{bottom:617.733333pt;}
.yc3{bottom:618.133333pt;}
.y40{bottom:620.053333pt;}
.y94{bottom:623.973333pt;}
.yd{bottom:625.813333pt;}
.y132{bottom:628.933333pt;}
.y6f{bottom:629.333333pt;}
.yf1{bottom:629.653333pt;}
.y151{bottom:630.053333pt;}
.y1aa{bottom:633.413333pt;}
.yc2{bottom:633.733333pt;}
.y3f{bottom:635.653333pt;}
.y93{bottom:639.573333pt;}
.yc{bottom:641.413333pt;}
.y131{bottom:644.613333pt;}
.y6e{bottom:644.933333pt;}
.yf0{bottom:645.333333pt;}
.y150{bottom:645.653333pt;}
.yc1{bottom:649.413333pt;}
.y3e{bottom:651.333333pt;}
.y92{bottom:655.253333pt;}
.y1a9{bottom:657.013333pt;}
.yb{bottom:657.093333pt;}
.yef{bottom:660.933333pt;}
.y14f{bottom:661.333333pt;}
.yc0{bottom:665.013333pt;}
.y3d{bottom:666.933333pt;}
.y130{bottom:668.213333pt;}
.y91{bottom:670.853333pt;}
.y1a8{bottom:672.613333pt;}
.y6d{bottom:676.613333pt;}
.y14e{bottom:676.933333pt;}
.ybf{bottom:680.613333pt;}
.ya{bottom:681.013333pt;}
.y1a7{bottom:688.293333pt;}
.y3c{bottom:690.533333pt;}
.y6c{bottom:692.213333pt;}
.yee{bottom:692.613333pt;}
.y90{bottom:694.453333pt;}
.y12f{bottom:699.813333pt;}
.y1a6{bottom:703.893333pt;}
.y6b{bottom:707.813333pt;}
.yed{bottom:708.213333pt;}
.ybe{bottom:712.293333pt;}
.y12e{bottom:715.493333pt;}
.y17c{bottom:715.813333pt;}
.y3b{bottom:719.573333pt;}
.y6a{bottom:723.493333pt;}
.yec{bottom:723.813333pt;}
.y9{bottom:723.893333pt;}
.y1a5{bottom:727.573333pt;}
.ybd{bottom:727.893333pt;}
.y12d{bottom:731.093333pt;}
.y69{bottom:739.093333pt;}
.yeb{bottom:739.493333pt;}
.y1a4{bottom:743.173333pt;}
.ybc{bottom:743.573333pt;}
.y12c{bottom:746.693333pt;}
.y17b{bottom:747.493333pt;}
.y3a{bottom:751.413333pt;}
.y68{bottom:754.693333pt;}
.y8f{bottom:755.093333pt;}
.y8{bottom:755.493333pt;}
.y1a3{bottom:758.773333pt;}
.ybb{bottom:759.173333pt;}
.y12b{bottom:762.373333pt;}
.y17a{bottom:763.093333pt;}
.y67{bottom:770.373333pt;}
.y8e{bottom:770.693333pt;}
.yba{bottom:774.773333pt;}
.y12a{bottom:777.973333pt;}
.y18e{bottom:778.373333pt;}
.y179{bottom:778.693333pt;}
.y1a2{bottom:782.453333pt;}
.y8d{bottom:786.373333pt;}
.y7{bottom:787.333333pt;}
.yb9{bottom:790.453333pt;}
.y129{bottom:793.653333pt;}
.y39{bottom:794.373333pt;}
.y1a1{bottom:798.053333pt;}
.y66{bottom:801.973333pt;}
.yb8{bottom:806.053333pt;}
.y38{bottom:809.973333pt;}
.y128{bottom:817.253333pt;}
.y65{bottom:817.653333pt;}
.y6{bottom:819.333333pt;}
.yb7{bottom:821.733333pt;}
.y37{bottom:825.653333pt;}
.y64{bottom:833.253333pt;}
.yb6{bottom:837.333333pt;}
.y36{bottom:841.253333pt;}
.y63{bottom:848.853333pt;}
.yea{bottom:849.253333pt;}
.y5{bottom:851.413333pt;}
.yb5{bottom:852.933333pt;}
.y35{bottom:856.853333pt;}
.y62{bottom:864.533333pt;}
.ye9{bottom:864.853333pt;}
.yb4{bottom:868.613333pt;}
.y34{bottom:872.533333pt;}
.y14d{bottom:872.853333pt;}
.y1a0{bottom:876.853333pt;}
.y61{bottom:880.133333pt;}
.ye8{bottom:880.533333pt;}
.yb3{bottom:884.213333pt;}
.y4{bottom:885.493333pt;}
.y33{bottom:888.133333pt;}
.y14c{bottom:888.533333pt;}
.y60{bottom:895.813333pt;}
.ye7{bottom:896.133333pt;}
.yb2{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y14b{bottom:904.160000pt;}
.y3{bottom:907.440000pt;}
.y5f{bottom:911.440000pt;}
.ye6{bottom:911.840000pt;}
.yb1{bottom:915.520000pt;}
.y31{bottom:919.440000pt;}
.y110{bottom:919.840000pt;}
.y127{bottom:927.040000pt;}
.ye5{bottom:927.440000pt;}
.yb0{bottom:931.120000pt;}
.y5e{bottom:935.040000pt;}
.y8c{bottom:935.440000pt;}
.y126{bottom:942.720000pt;}
.ye4{bottom:943.040000pt;}
.yaf{bottom:946.800000pt;}
.y30{bottom:951.040000pt;}
.ye3{bottom:958.720000pt;}
.y125{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.yae{bottom:970.400000pt;}
.ye2{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.ye1{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.yad{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1071.200000pt;}
.hd{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.226667pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h7{height:54.187500pt;}
.hf{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:76.400000pt;}
.w8{width:84.986667pt;}
.w6{width:89.146667pt;}
.wb{width:107.440000pt;}
.w9{width:112.720000pt;}
.w3{width:117.786667pt;}
.w5{width:131.920000pt;}
.w4{width:133.920000pt;}
.wd{width:139.520000pt;}
.wc{width:147.466667pt;}
.w7{width:196.400000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:99.039988pt;}
.x8{left:146.746667pt;}
.x2{left:180.266655pt;}
.x9{left:260.106667pt;}
.x5{left:314.106667pt;}
.xa{left:337.146667pt;}
.xb{left:445.226667pt;}
.x6{left:446.666667pt;}
.x7{left:536.453333pt;}
.xc{left:593.333333pt;}
.xd{left:689.013322pt;}
.x3{left:704.053322pt;}
}




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