
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e68c55abdebae90b50939b0f.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_62f8a743c8b1bcde7c36a6e2.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_12fcb29d47b65844d79c933e.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_a322e5090a6cce3ff1a0f1ab.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_a3835890a9949e2b2f9ae573.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_186e1657734e1683285dd378.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_129d1b5a9d9d0f04c874c276.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dbf0c5df77ab4679d57a7ecc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.993652;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_087a316e7c9440099212389f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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;}
.ls1f{letter-spacing:-0.285600px;}
.ls27{letter-spacing:-0.254400px;}
.ls25{letter-spacing:-0.246600px;}
.ls14{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.041760px;}
.ls1b{letter-spacing:-0.037800px;}
.ls23{letter-spacing:-0.022320px;}
.ls1c{letter-spacing:-0.013320px;}
.ls1d{letter-spacing:-0.011160px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls17{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls1a{letter-spacing:0.051840px;}
.ls15{letter-spacing:0.055440px;}
.ls20{letter-spacing:0.061920px;}
.ls11{letter-spacing:0.064800px;}
.ls16{letter-spacing:0.068400px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls28{letter-spacing:0.098400px;}
.lsb{letter-spacing:0.100200px;}
.ls22{letter-spacing:0.108600px;}
.ls19{letter-spacing:0.113400px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls4{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls29{letter-spacing:47.726640px;}
.ls24{letter-spacing:55.406640px;}
.ls12{letter-spacing:63.566640px;}
.ls10{letter-spacing:65.006640px;}
.ls26{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;}
}
.wsc{word-spacing:-60.120000px;}
.ws2{word-spacing:-14.593800px;}
.ws5{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.339800px;}
.ws17{word-spacing:-13.335000px;}
.ws1b{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.281840px;}
.ws10{word-spacing:-13.278240px;}
.ws6{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.215240px;}
.ws12{word-spacing:-13.213080px;}
.ws11{word-spacing:-13.188600px;}
.wse{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws1a{word-spacing:-12.972000px;}
.ws15{word-spacing:-12.940800px;}
.ws18{word-spacing:-10.511280px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws16{word-spacing:-8.553600px;}
.ws14{word-spacing:-8.511840px;}
.ws19{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._a{margin-left:-3.425876px;}
._7{margin-left:-2.404800px;}
._1{margin-left:-1.082400px;}
._0{width:1.342248px;}
._6{width:2.645400px;}
._8{width:3.787199px;}
._2{width:5.290800px;}
._5{width:6.733200px;}
._9{width:7.997403px;}
._3{width:9.138000px;}
._4{width:10.237084px;}
._12{width:12.144240px;}
._b{width:15.631200px;}
._c{width:16.773480px;}
._15{width:18.667080px;}
._16{width:40.671000px;}
._17{width:41.674440px;}
._18{width:70.676040px;}
._13{width:82.665000px;}
._14{width:84.100080px;}
._f{width:92.945520px;}
._11{width:99.739080px;}
._d{width:120.781080px;}
._10{width:132.324120px;}
._e{width:142.243920px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:2.610000px;}
.y61{bottom:7.830000px;}
.y66{bottom:7.920000px;}
.yb8{bottom:25.380000px;}
.ybd{bottom:25.470000px;}
.y6e{bottom:35.190000px;}
.yb7{bottom:43.020000px;}
.yf0{bottom:52.830000px;}
.yb6{bottom:60.570000px;}
.y8f{bottom:62.490000px;}
.y64{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.ybb{bottom:80.100000px;}
.yba{bottom:97.650000px;}
.yc6{bottom:97.680000px;}
.y1{bottom:101.640000px;}
.yae{bottom:111.990000px;}
.y13c{bottom:112.890000px;}
.y13b{bottom:130.440000px;}
.y17e{bottom:131.250000px;}
.y68{bottom:134.850000px;}
.yd0{bottom:136.380000px;}
.y19e{bottom:139.890000px;}
.yed{bottom:143.400000px;}
.y63{bottom:147.090000px;}
.yad{bottom:147.540000px;}
.y13a{bottom:148.080000px;}
.ycf{bottom:148.530000px;}
.y27{bottom:153.210000px;}
.y167{bottom:156.180000px;}
.y19d{bottom:157.440000px;}
.y139{bottom:165.630000px;}
.y17d{bottom:166.800000px;}
.y26{bottom:170.760000px;}
.y67{bottom:174.450000px;}
.ycc{bottom:175.890000px;}
.yec{bottom:178.950000px;}
.yac{bottom:182.370000px;}
.y138{bottom:184.080000px;}
.y17c{bottom:184.440000px;}
.y25{bottom:188.400000px;}
.y8a{bottom:190.470000px;}
.y166{bottom:191.730000px;}
.yab{bottom:194.610000px;}
.yf3{bottom:197.370000px;}
.y137{bottom:201.630000px;}
.y65{bottom:201.720000px;}
.y17b{bottom:201.990000px;}
.y89{bottom:202.620000px;}
.yce{bottom:203.250000px;}
.y165{bottom:209.370000px;}
.yeb{bottom:213.870000px;}
.y24{bottom:214.950000px;}
.y136{bottom:219.180000px;}
.y17a{bottom:219.540000px;}
.yaa{bottom:221.880000px;}
.yea{bottom:226.020000px;}
.y19c{bottom:228.180000px;}
.y62{bottom:229.080000px;}
.y88{bottom:229.980000px;}
.y11a{bottom:232.590000px;}
.y135{bottom:236.730000px;}
.y179{bottom:237.180000px;}
.ye8{bottom:240.870000px;}
.y164{bottom:244.830000px;}
.y19b{bottom:245.820000px;}
.ycd{bottom:248.160000px;}
.ya9{bottom:249.240000px;}
.y119{bottom:250.140000px;}
.y23{bottom:250.590000px;}
.y134{bottom:255.180000px;}
.ye5{bottom:255.630000px;}
.y60{bottom:256.440000px;}
.y87{bottom:257.340000px;}
.y22{bottom:268.140000px;}
.y19a{bottom:272.370000px;}
.y178{bottom:272.730000px;}
.y133{bottom:272.820000px;}
.ya8{bottom:276.600000px;}
.y163{bottom:281.370000px;}
.ye7{bottom:282.990000px;}
.y86{bottom:284.610000px;}
.y21{bottom:285.690000px;}
.y118{bottom:285.780000px;}
.y199{bottom:290.010000px;}
.y132{bottom:290.370000px;}
.yc9{bottom:293.070000px;}
.y162{bottom:298.920000px;}
.y20{bottom:303.330000px;}
.ya7{bottom:303.960000px;}
.y5f{bottom:305.130000px;}
.y131{bottom:307.920000px;}
.y177{bottom:308.370000px;}
.ye6{bottom:310.350000px;}
.y117{bottom:311.610000px;}
.y85{bottom:311.970000px;}
.y161{bottom:316.470000px;}
.y198{bottom:316.560000px;}
.ycb{bottom:320.340000px;}
.y1f{bottom:320.880000px;}
.y116{bottom:323.040000px;}
.y10f{bottom:325.650000px;}
.y176{bottom:325.920000px;}
.y130{bottom:326.370000px;}
.ya6{bottom:331.230000px;}
.y160{bottom:334.110000px;}
.ye4{bottom:337.620000px;}
.y1e{bottom:338.520000px;}
.y84{bottom:339.330000px;}
.y5e{bottom:340.680000px;}
.y10e{bottom:343.200000px;}
.y12f{bottom:343.920000px;}
.y15f{bottom:351.660000px;}
.y1d{bottom:356.070000px;}
.y5d{bottom:358.320000px;}
.ya4{bottom:358.590000px;}
.y197{bottom:360.750000px;}
.y175{bottom:361.470000px;}
.y12e{bottom:361.560000px;}
.y10d{bottom:361.650000px;}
.ye3{bottom:364.980000px;}
.yca{bottom:365.340000px;}
.y83{bottom:366.690000px;}
.y15e{bottom:369.300000px;}
.y1c{bottom:373.620000px;}
.y5c{bottom:375.870000px;}
.y196{bottom:378.300000px;}
.y12d{bottom:379.110000px;}
.y10c{bottom:379.200000px;}
.ya5{bottom:385.950000px;}
.y15d{bottom:386.850000px;}
.y1b{bottom:391.260000px;}
.y5b{bottom:393.420000px;}
.y82{bottom:393.960000px;}
.y12c{bottom:396.660000px;}
.y10b{bottom:397.650000px;}
.y174{bottom:397.920000px;}
.y195{bottom:404.940000px;}
.y1a{bottom:408.810000px;}
.yc5{bottom:410.250000px;}
.y5a{bottom:411.060000px;}
.ya3{bottom:413.310000px;}
.ye2{bottom:413.670000px;}
.y10a{bottom:415.200000px;}
.y173{bottom:415.470000px;}
.y81{bottom:421.320000px;}
.y15c{bottom:422.400000px;}
.y194{bottom:422.490000px;}
.y19{bottom:426.450000px;}
.y4b{bottom:428.160000px;}
.y12b{bottom:433.110000px;}
.y109{bottom:433.650000px;}
.yc8{bottom:437.520000px;}
.y59{bottom:437.610000px;}
.y193{bottom:440.040000px;}
.y18{bottom:444.000000px;}
.y4a{bottom:445.710000px;}
.y80{bottom:448.680000px;}
.ye1{bottom:449.310000px;}
.y12a{bottom:450.750000px;}
.y108{bottom:451.200000px;}
.y15b{bottom:458.040000px;}
.y17{bottom:461.550000px;}
.ya2{bottom:462.000000px;}
.y49{bottom:463.260000px;}
.y192{bottom:466.680000px;}
.ye0{bottom:466.860000px;}
.y129{bottom:468.300000px;}
.y172{bottom:468.660000px;}
.y107{bottom:469.650000px;}
.y58{bottom:470.220000px;}
.y15a{bottom:475.620000px;}
.y7f{bottom:475.980000px;}
.y16{bottom:479.220000px;}
.y48{bottom:480.930000px;}
.yc7{bottom:482.550000px;}
.y191{bottom:484.260000px;}
.y128{bottom:485.880000px;}
.y171{bottom:486.330000px;}
.y106{bottom:487.230000px;}
.y159{bottom:493.260000px;}
.ya1{bottom:497.580000px;}
.y47{bottom:498.480000px;}
.ydf{bottom:502.440000px;}
.y7e{bottom:503.340000px;}
.y127{bottom:503.520000px;}
.y170{bottom:503.880000px;}
.y15{bottom:506.130000px;}
.y158{bottom:510.810000px;}
.y190{bottom:510.900000px;}
.ya0{bottom:515.130000px;}
.yde{bottom:520.080000px;}
.y126{bottom:521.070000px;}
.y16f{bottom:521.430000px;}
.y105{bottom:523.680000px;}
.y46{bottom:525.120000px;}
.yc2{bottom:527.460000px;}
.y157{bottom:528.360000px;}
.y18f{bottom:528.450000px;}
.y7d{bottom:530.700000px;}
.y125{bottom:538.710000px;}
.y156{bottom:546.000000px;}
.y9f{bottom:550.050000px;}
.y14{bottom:554.370000px;}
.y57{bottom:554.460000px;}
.yc4{bottom:554.730000px;}
.ydd{bottom:554.910000px;}
.y18e{bottom:555.360000px;}
.y16e{bottom:557.070000px;}
.y7c{bottom:558.060000px;}
.y104{bottom:559.320000px;}
.y45{bottom:560.580000px;}
.y9e{bottom:562.200000px;}
.y124{bottom:565.620000px;}
.ydc{bottom:567.060000px;}
.y56{bottom:572.010000px;}
.y103{bottom:576.870000px;}
.y44{bottom:579.030000px;}
.y155{bottom:581.550000px;}
.y7b{bottom:585.330000px;}
.y55{bottom:589.560000px;}
.y13{bottom:589.920000px;}
.y16d{bottom:592.620000px;}
.ydb{bottom:594.420000px;}
.y102{bottom:594.510000px;}
.y43{bottom:597.480000px;}
.yc3{bottom:599.730000px;}
.y18d{bottom:603.600000px;}
.y54{bottom:607.200000px;}
.y12{bottom:607.560000px;}
.y16c{bottom:610.260000px;}
.y101{bottom:612.060000px;}
.y7a{bottom:612.690000px;}
.y123{bottom:613.860000px;}
.y42{bottom:615.840000px;}
.y9d{bottom:616.920000px;}
.y154{bottom:617.190000px;}
.y53{bottom:624.750000px;}
.y11{bottom:625.110000px;}
.y16b{bottom:627.810000px;}
.y100{bottom:629.610000px;}
.y18c{bottom:630.510000px;}
.y41{bottom:634.290000px;}
.y153{bottom:634.740000px;}
.yda{bottom:639.330000px;}
.y79{bottom:640.050000px;}
.y52{bottom:642.390000px;}
.y10{bottom:642.750000px;}
.y9c{bottom:644.190000px;}
.ybf{bottom:644.640000px;}
.yff{bottom:647.160000px;}
.y122{bottom:649.410000px;}
.y152{bottom:652.290000px;}
.y40{bottom:652.740000px;}
.y51{bottom:659.940000px;}
.yf{bottom:660.300000px;}
.y16a{bottom:663.360000px;}
.yfe{bottom:665.610000px;}
.yd9{bottom:666.690000px;}
.y78{bottom:667.410000px;}
.y18b{bottom:667.860000px;}
.y151{bottom:669.930000px;}
.y3f{bottom:671.100000px;}
.y9b{bottom:671.550000px;}
.yc1{bottom:671.910000px;}
.y50{bottom:677.490000px;}
.ye{bottom:677.850000px;}
.y169{bottom:681.000000px;}
.yfd{bottom:684.060000px;}
.y121{bottom:685.050000px;}
.y150{bottom:687.480000px;}
.yd8{bottom:694.050000px;}
.y77{bottom:694.680000px;}
.yd{bottom:695.490000px;}
.y3e{bottom:698.550000px;}
.y99{bottom:698.910000px;}
.yfc{bottom:701.610000px;}
.y120{bottom:702.600000px;}
.y4f{bottom:704.400000px;}
.y14f{bottom:705.120000px;}
.yc{bottom:713.040000px;}
.y18a{bottom:716.190000px;}
.yc0{bottom:716.910000px;}
.yfb{bottom:719.160000px;}
.y115{bottom:720.240000px;}
.y76{bottom:722.040000px;}
.y14e{bottom:722.670000px;}
.y9a{bottom:726.270000px;}
.yb{bottom:730.680000px;}
.y189{bottom:733.740000px;}
.y3d{bottom:734.190000px;}
.y114{bottom:737.790000px;}
.yd7{bottom:742.740000px;}
.y75{bottom:749.400000px;}
.y188{bottom:751.290000px;}
.y3c{bottom:751.740000px;}
.y4e{bottom:752.730000px;}
.y98{bottom:753.540000px;}
.yfa{bottom:754.710000px;}
.y113{bottom:755.340000px;}
.y11f{bottom:755.790000px;}
.ya{bottom:757.590000px;}
.y14d{bottom:758.220000px;}
.yb9{bottom:761.820000px;}
.y187{bottom:768.930000px;}
.y3b{bottom:769.290000px;}
.y11e{bottom:773.340000px;}
.yf9{bottom:775.230000px;}
.y74{bottom:776.670000px;}
.yd6{bottom:778.290000px;}
.y3a{bottom:786.930000px;}
.y4d{bottom:787.560000px;}
.ybe{bottom:789.090000px;}
.y112{bottom:790.980000px;}
.y14c{bottom:793.860000px;}
.yd5{bottom:795.930000px;}
.y4c{bottom:798.990000px;}
.y97{bottom:802.230000px;}
.yf2{bottom:802.500000px;}
.y73{bottom:804.030000px;}
.y168{bottom:804.480000px;}
.y9{bottom:805.830000px;}
.y11d{bottom:808.980000px;}
.y14b{bottom:811.410000px;}
.yd4{bottom:813.480000px;}
.y186{bottom:822.030000px;}
.y39{bottom:822.480000px;}
.y111{bottom:825.810000px;}
.y14a{bottom:828.960000px;}
.yf8{bottom:829.860000px;}
.y72{bottom:831.390000px;}
.ybc{bottom:834.000000px;}
.y110{bottom:837.240000px;}
.y96{bottom:837.870000px;}
.y185{bottom:839.670000px;}
.y38{bottom:840.030000px;}
.y8{bottom:841.380000px;}
.y11c{bottom:843.810000px;}
.y149{bottom:846.600000px;}
.y11b{bottom:855.240000px;}
.y95{bottom:855.420000px;}
.y184{bottom:857.220000px;}
.y37{bottom:857.670000px;}
.y71{bottom:858.750000px;}
.y148{bottom:864.150000px;}
.yf7{bottom:874.770000px;}
.y183{bottom:874.860000px;}
.yd3{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.yb5{bottom:879.000000px;}
.y147{bottom:881.790000px;}
.y70{bottom:886.020000px;}
.y94{bottom:891.060000px;}
.y36{bottom:893.220000px;}
.y146{bottom:899.340000px;}
.yf6{bottom:902.130000px;}
.y93{bottom:908.610000px;}
.y182{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y6d{bottom:913.380000px;}
.y34{bottom:928.410000px;}
.yf5{bottom:929.490000px;}
.y145{bottom:934.890000px;}
.y6f{bottom:940.740000px;}
.y92{bottom:943.440000px;}
.y33{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y8e{bottom:955.680000px;}
.yb4{bottom:959.100000px;}
.y32{bottom:963.600000px;}
.yd2{bottom:963.960000px;}
.y6c{bottom:968.100000px;}
.y144{bottom:970.530000px;}
.yf4{bottom:974.400000px;}
.y181{bottom:981.150000px;}
.yd1{bottom:981.600000px;}
.y91{bottom:982.950000px;}
.y4{bottom:987.630000px;}
.y143{bottom:988.080000px;}
.y180{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.yb3{bottom:1007.790000px;}
.y90{bottom:1010.340000px;}
.y3{bottom:1012.320000px;}
.y17f{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.yef{bottom:1019.340000px;}
.y142{bottom:1023.660000px;}
.y2f{bottom:1034.370000px;}
.y8d{bottom:1037.700000px;}
.yb2{bottom:1043.370000px;}
.yf1{bottom:1046.700000px;}
.y141{bottom:1051.110000px;}
.y2e{bottom:1051.920000px;}
.y6b{bottom:1052.370000px;}
.yb1{bottom:1060.920000px;}
.y8c{bottom:1064.970000px;}
.y2d{bottom:1069.560000px;}
.y6a{bottom:1069.920000px;}
.yb0{bottom:1078.560000px;}
.y140{bottom:1086.750000px;}
.y69{bottom:1087.560000px;}
.yee{bottom:1091.610000px;}
.yaf{bottom:1096.110000px;}
.y13f{bottom:1104.300000px;}
.y2c{bottom:1105.110000px;}
.y8b{bottom:1113.750000px;}
.y13e{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.y13d{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h19{height:14.040000px;}
.hc{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h9{height:40.539023px;}
.h16{height:44.100000px;}
.h15{height:44.190000px;}
.h18{height:44.220000px;}
.h6{height:50.902383px;}
.hf{height:53.910000px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h12{height:60.589687px;}
.h8{height:61.793886px;}
.h7{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1a{height:71.550000px;}
.h13{height:79.290000px;}
.h11{height:81.210000px;}
.hd{height:81.270000px;}
.h14{height:116.370000px;}
.h17{height:116.400000px;}
.h1b{height:216.120000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3d{width:23.760000px;}
.w33{width:32.310000px;}
.wb{width:51.750000px;}
.wc{width:51.780000px;}
.w2f{width:54.630000px;}
.w38{width:55.170000px;}
.w3c{width:56.880000px;}
.w9{width:61.740000px;}
.wf{width:68.400000px;}
.w27{width:70.590000px;}
.w26{width:72.540000px;}
.w3a{width:73.890000px;}
.w1e{width:74.070000px;}
.w23{width:74.700000px;}
.w21{width:74.970000px;}
.w32{width:77.040000px;}
.w3b{width:87.390000px;}
.w31{width:92.250000px;}
.w28{width:93.420000px;}
.w13{width:95.070000px;}
.w25{width:95.400000px;}
.w20{width:95.520000px;}
.w5{width:103.860000px;}
.w1a{width:108.450000px;}
.w1f{width:109.530000px;}
.w24{width:109.740000px;}
.w18{width:111.420000px;}
.w16{width:111.510000px;}
.w17{width:112.050000px;}
.w22{width:116.460000px;}
.w34{width:116.670000px;}
.w2b{width:141.030000px;}
.w30{width:141.420000px;}
.w39{width:144.990000px;}
.w11{width:147.180000px;}
.w2d{width:149.700000px;}
.w3e{width:152.400000px;}
.w37{width:153.030000px;}
.w2e{width:162.720000px;}
.w29{width:163.080000px;}
.w36{width:170.100000px;}
.w35{width:176.970000px;}
.w7{width:189.390000px;}
.w10{width:199.890000px;}
.w6{width:200.610000px;}
.w1d{width:205.950000px;}
.w2a{width:211.350000px;}
.w1b{width:228.270000px;}
.wa{width:261.750000px;}
.w14{width:276.750000px;}
.w15{width:276.780000px;}
.w8{width:324.210000px;}
.w19{width:337.440000px;}
.we{width:347.790000px;}
.w4{width:390.810000px;}
.wd{width:416.910000px;}
.w3{width:495.390000px;}
.w12{width:650.040000px;}
.w2c{width:681.540000px;}
.w1c{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x38{left:93.330000px;}
.x4{left:95.039987px;}
.x29{left:105.840000px;}
.x41{left:111.239987px;}
.x15{left:121.590000px;}
.x2f{left:138.870000px;}
.x24{left:142.020000px;}
.x40{left:149.039987px;}
.x23{left:179.310000px;}
.x8{left:198.930000px;}
.x3f{left:202.889987px;}
.x2{left:211.079987px;}
.x25{left:213.330000px;}
.x16{left:217.380000px;}
.x30{left:223.140000px;}
.x12{left:238.170000px;}
.x31{left:246.450000px;}
.x2a{left:256.350000px;}
.x3b{left:259.589987px;}
.x18{left:269.850000px;}
.x1e{left:275.430000px;}
.x1c{left:277.950000px;}
.xd{left:284.520000px;}
.x26{left:307.470000px;}
.x36{left:321.150000px;}
.x3e{left:330.509987px;}
.xe{left:346.980000px;}
.x1f{left:350.220000px;}
.xc{left:356.069987px;}
.x39{left:361.739987px;}
.x7{left:365.429987px;}
.x6{left:366.779987px;}
.x19{left:382.080000px;}
.x1d{left:387.120000px;}
.xb{left:400.350000px;}
.x32{left:417.360000px;}
.x2b{left:419.790000px;}
.x14{left:438.780000px;}
.xf{left:452.010000px;}
.x20{left:460.560000px;}
.x27{left:471.360000px;}
.x2c{left:475.140000px;}
.x17{left:494.850000px;}
.x10{left:504.480000px;}
.x1a{left:547.440000px;}
.x11{left:556.980000px;}
.x33{left:571.110000px;}
.x13{left:586.680000px;}
.xa{left:590.460000px;}
.x2d{left:617.280000px;}
.x34{left:627.000000px;}
.x21{left:632.580000px;}
.x1b{left:659.580000px;}
.x35{left:679.470000px;}
.x28{left:683.430000px;}
.x5{left:691.889987px;}
.x2e{left:710.340000px;}
.x3c{left:722.309987px;}
.x3a{left:747.059987px;}
.x22{left:749.760000px;}
.x3d{left:756.059987px;}
.x37{left:767.580000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-0.253867pt;}
.ls27{letter-spacing:-0.226133pt;}
.ls25{letter-spacing:-0.219200pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.037120pt;}
.ls1b{letter-spacing:-0.033600pt;}
.ls23{letter-spacing:-0.019840pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls1d{letter-spacing:-0.009920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls17{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls1a{letter-spacing:0.046080pt;}
.ls15{letter-spacing:0.049280pt;}
.ls20{letter-spacing:0.055040pt;}
.ls11{letter-spacing:0.057600pt;}
.ls16{letter-spacing:0.060800pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls28{letter-spacing:0.087467pt;}
.lsb{letter-spacing:0.089067pt;}
.ls22{letter-spacing:0.096533pt;}
.ls19{letter-spacing:0.100800pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls4{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls29{letter-spacing:42.423680pt;}
.ls24{letter-spacing:49.250347pt;}
.ls12{letter-spacing:56.503680pt;}
.ls10{letter-spacing:57.783680pt;}
.ls26{letter-spacing:71.863680pt;}
.wsc{word-spacing:-53.440000pt;}
.ws2{word-spacing:-12.972267pt;}
.ws5{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.857600pt;}
.ws17{word-spacing:-11.853333pt;}
.ws1b{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.806080pt;}
.ws10{word-spacing:-11.802880pt;}
.ws6{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.746880pt;}
.ws12{word-spacing:-11.744960pt;}
.ws11{word-spacing:-11.723200pt;}
.wse{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws1a{word-spacing:-11.530667pt;}
.ws15{word-spacing:-11.502933pt;}
.ws18{word-spacing:-9.343360pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws16{word-spacing:-7.603200pt;}
.ws14{word-spacing:-7.566080pt;}
.ws19{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._a{margin-left:-3.045223pt;}
._7{margin-left:-2.137600pt;}
._1{margin-left:-0.962134pt;}
._0{width:1.193109pt;}
._6{width:2.351467pt;}
._8{width:3.366399pt;}
._2{width:4.702934pt;}
._5{width:5.985066pt;}
._9{width:7.108803pt;}
._3{width:8.122666pt;}
._4{width:9.099631pt;}
._12{width:10.794880pt;}
._b{width:13.894400pt;}
._c{width:14.909760pt;}
._15{width:16.592960pt;}
._16{width:36.152000pt;}
._17{width:37.043947pt;}
._18{width:62.823147pt;}
._13{width:73.480000pt;}
._14{width:74.755627pt;}
._f{width:82.618240pt;}
._11{width:88.656960pt;}
._d{width:107.360960pt;}
._10{width:117.621440pt;}
._e{width:126.439040pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:2.320000pt;}
.y61{bottom:6.960000pt;}
.y66{bottom:7.040000pt;}
.yb8{bottom:22.560000pt;}
.ybd{bottom:22.640000pt;}
.y6e{bottom:31.280000pt;}
.yb7{bottom:38.240000pt;}
.yf0{bottom:46.960000pt;}
.yb6{bottom:53.840000pt;}
.y8f{bottom:55.546667pt;}
.y64{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.ybb{bottom:71.200000pt;}
.yba{bottom:86.800000pt;}
.yc6{bottom:86.826667pt;}
.y1{bottom:90.346667pt;}
.yae{bottom:99.546667pt;}
.y13c{bottom:100.346667pt;}
.y13b{bottom:115.946667pt;}
.y17e{bottom:116.666667pt;}
.y68{bottom:119.866667pt;}
.yd0{bottom:121.226667pt;}
.y19e{bottom:124.346667pt;}
.yed{bottom:127.466667pt;}
.y63{bottom:130.746667pt;}
.yad{bottom:131.146667pt;}
.y13a{bottom:131.626667pt;}
.ycf{bottom:132.026667pt;}
.y27{bottom:136.186667pt;}
.y167{bottom:138.826667pt;}
.y19d{bottom:139.946667pt;}
.y139{bottom:147.226667pt;}
.y17d{bottom:148.266667pt;}
.y26{bottom:151.786667pt;}
.y67{bottom:155.066667pt;}
.ycc{bottom:156.346667pt;}
.yec{bottom:159.066667pt;}
.yac{bottom:162.106667pt;}
.y138{bottom:163.626667pt;}
.y17c{bottom:163.946667pt;}
.y25{bottom:167.466667pt;}
.y8a{bottom:169.306667pt;}
.y166{bottom:170.426667pt;}
.yab{bottom:172.986667pt;}
.yf3{bottom:175.440000pt;}
.y137{bottom:179.226667pt;}
.y65{bottom:179.306667pt;}
.y17b{bottom:179.546667pt;}
.y89{bottom:180.106667pt;}
.yce{bottom:180.666667pt;}
.y165{bottom:186.106667pt;}
.yeb{bottom:190.106667pt;}
.y24{bottom:191.066667pt;}
.y136{bottom:194.826667pt;}
.y17a{bottom:195.146667pt;}
.yaa{bottom:197.226667pt;}
.yea{bottom:200.906667pt;}
.y19c{bottom:202.826667pt;}
.y62{bottom:203.626667pt;}
.y88{bottom:204.426667pt;}
.y11a{bottom:206.746667pt;}
.y135{bottom:210.426667pt;}
.y179{bottom:210.826667pt;}
.ye8{bottom:214.106667pt;}
.y164{bottom:217.626667pt;}
.y19b{bottom:218.506667pt;}
.ycd{bottom:220.586667pt;}
.ya9{bottom:221.546667pt;}
.y119{bottom:222.346667pt;}
.y23{bottom:222.746667pt;}
.y134{bottom:226.826667pt;}
.ye5{bottom:227.226667pt;}
.y60{bottom:227.946667pt;}
.y87{bottom:228.746667pt;}
.y22{bottom:238.346667pt;}
.y19a{bottom:242.106667pt;}
.y178{bottom:242.426667pt;}
.y133{bottom:242.506667pt;}
.ya8{bottom:245.866667pt;}
.y163{bottom:250.106667pt;}
.ye7{bottom:251.546667pt;}
.y86{bottom:252.986667pt;}
.y21{bottom:253.946667pt;}
.y118{bottom:254.026667pt;}
.y199{bottom:257.786667pt;}
.y132{bottom:258.106667pt;}
.yc9{bottom:260.506667pt;}
.y162{bottom:265.706667pt;}
.y20{bottom:269.626667pt;}
.ya7{bottom:270.186667pt;}
.y5f{bottom:271.226667pt;}
.y131{bottom:273.706667pt;}
.y177{bottom:274.106667pt;}
.ye6{bottom:275.866667pt;}
.y117{bottom:276.986667pt;}
.y85{bottom:277.306667pt;}
.y161{bottom:281.306667pt;}
.y198{bottom:281.386667pt;}
.ycb{bottom:284.746667pt;}
.y1f{bottom:285.226667pt;}
.y116{bottom:287.146667pt;}
.y10f{bottom:289.466667pt;}
.y176{bottom:289.706667pt;}
.y130{bottom:290.106667pt;}
.ya6{bottom:294.426667pt;}
.y160{bottom:296.986667pt;}
.ye4{bottom:300.106667pt;}
.y1e{bottom:300.906667pt;}
.y84{bottom:301.626667pt;}
.y5e{bottom:302.826667pt;}
.y10e{bottom:305.066667pt;}
.y12f{bottom:305.706667pt;}
.y15f{bottom:312.586667pt;}
.y1d{bottom:316.506667pt;}
.y5d{bottom:318.506667pt;}
.ya4{bottom:318.746667pt;}
.y197{bottom:320.666667pt;}
.y175{bottom:321.306667pt;}
.y12e{bottom:321.386667pt;}
.y10d{bottom:321.466667pt;}
.ye3{bottom:324.426667pt;}
.yca{bottom:324.746667pt;}
.y83{bottom:325.946667pt;}
.y15e{bottom:328.266667pt;}
.y1c{bottom:332.106667pt;}
.y5c{bottom:334.106667pt;}
.y196{bottom:336.266667pt;}
.y12d{bottom:336.986667pt;}
.y10c{bottom:337.066667pt;}
.ya5{bottom:343.066667pt;}
.y15d{bottom:343.866667pt;}
.y1b{bottom:347.786667pt;}
.y5b{bottom:349.706667pt;}
.y82{bottom:350.186667pt;}
.y12c{bottom:352.586667pt;}
.y10b{bottom:353.466667pt;}
.y174{bottom:353.706667pt;}
.y195{bottom:359.946667pt;}
.y1a{bottom:363.386667pt;}
.yc5{bottom:364.666667pt;}
.y5a{bottom:365.386667pt;}
.ya3{bottom:367.386667pt;}
.ye2{bottom:367.706667pt;}
.y10a{bottom:369.066667pt;}
.y173{bottom:369.306667pt;}
.y81{bottom:374.506667pt;}
.y15c{bottom:375.466667pt;}
.y194{bottom:375.546667pt;}
.y19{bottom:379.066667pt;}
.y4b{bottom:380.586667pt;}
.y12b{bottom:384.986667pt;}
.y109{bottom:385.466667pt;}
.yc8{bottom:388.906667pt;}
.y59{bottom:388.986667pt;}
.y193{bottom:391.146667pt;}
.y18{bottom:394.666667pt;}
.y4a{bottom:396.186667pt;}
.y80{bottom:398.826667pt;}
.ye1{bottom:399.386667pt;}
.y12a{bottom:400.666667pt;}
.y108{bottom:401.066667pt;}
.y15b{bottom:407.146667pt;}
.y17{bottom:410.266667pt;}
.ya2{bottom:410.666667pt;}
.y49{bottom:411.786667pt;}
.y192{bottom:414.826667pt;}
.ye0{bottom:414.986667pt;}
.y129{bottom:416.266667pt;}
.y172{bottom:416.586667pt;}
.y107{bottom:417.466667pt;}
.y58{bottom:417.973333pt;}
.y15a{bottom:422.773333pt;}
.y7f{bottom:423.093333pt;}
.y16{bottom:425.973333pt;}
.y48{bottom:427.493333pt;}
.yc7{bottom:428.933333pt;}
.y191{bottom:430.453333pt;}
.y128{bottom:431.893333pt;}
.y171{bottom:432.293333pt;}
.y106{bottom:433.093333pt;}
.y159{bottom:438.453333pt;}
.ya1{bottom:442.293333pt;}
.y47{bottom:443.093333pt;}
.ydf{bottom:446.613333pt;}
.y7e{bottom:447.413333pt;}
.y127{bottom:447.573333pt;}
.y170{bottom:447.893333pt;}
.y15{bottom:449.893333pt;}
.y158{bottom:454.053333pt;}
.y190{bottom:454.133333pt;}
.ya0{bottom:457.893333pt;}
.yde{bottom:462.293333pt;}
.y126{bottom:463.173333pt;}
.y16f{bottom:463.493333pt;}
.y105{bottom:465.493333pt;}
.y46{bottom:466.773333pt;}
.yc2{bottom:468.853333pt;}
.y157{bottom:469.653333pt;}
.y18f{bottom:469.733333pt;}
.y7d{bottom:471.733333pt;}
.y125{bottom:478.853333pt;}
.y156{bottom:485.333333pt;}
.y9f{bottom:488.933333pt;}
.y14{bottom:492.773333pt;}
.y57{bottom:492.853333pt;}
.yc4{bottom:493.093333pt;}
.ydd{bottom:493.253333pt;}
.y18e{bottom:493.653333pt;}
.y16e{bottom:495.173333pt;}
.y7c{bottom:496.053333pt;}
.y104{bottom:497.173333pt;}
.y45{bottom:498.293333pt;}
.y9e{bottom:499.733333pt;}
.y124{bottom:502.773333pt;}
.ydc{bottom:504.053333pt;}
.y56{bottom:508.453333pt;}
.y103{bottom:512.773333pt;}
.y44{bottom:514.693333pt;}
.y155{bottom:516.933333pt;}
.y7b{bottom:520.293333pt;}
.y55{bottom:524.053333pt;}
.y13{bottom:524.373333pt;}
.y16d{bottom:526.773333pt;}
.ydb{bottom:528.373333pt;}
.y102{bottom:528.453333pt;}
.y43{bottom:531.093333pt;}
.yc3{bottom:533.093333pt;}
.y18d{bottom:536.533333pt;}
.y54{bottom:539.733333pt;}
.y12{bottom:540.053333pt;}
.y16c{bottom:542.453333pt;}
.y101{bottom:544.053333pt;}
.y7a{bottom:544.613333pt;}
.y123{bottom:545.653333pt;}
.y42{bottom:547.413333pt;}
.y9d{bottom:548.373333pt;}
.y154{bottom:548.613333pt;}
.y53{bottom:555.333333pt;}
.y11{bottom:555.653333pt;}
.y16b{bottom:558.053333pt;}
.y100{bottom:559.653333pt;}
.y18c{bottom:560.453333pt;}
.y41{bottom:563.813333pt;}
.y153{bottom:564.213333pt;}
.yda{bottom:568.293333pt;}
.y79{bottom:568.933333pt;}
.y52{bottom:571.013333pt;}
.y10{bottom:571.333333pt;}
.y9c{bottom:572.613333pt;}
.ybf{bottom:573.013333pt;}
.yff{bottom:575.253333pt;}
.y122{bottom:577.253333pt;}
.y152{bottom:579.813333pt;}
.y40{bottom:580.213333pt;}
.y51{bottom:586.613333pt;}
.yf{bottom:586.933333pt;}
.y16a{bottom:589.653333pt;}
.yfe{bottom:591.653333pt;}
.yd9{bottom:592.613333pt;}
.y78{bottom:593.253333pt;}
.y18b{bottom:593.653333pt;}
.y151{bottom:595.493333pt;}
.y3f{bottom:596.533333pt;}
.y9b{bottom:596.933333pt;}
.yc1{bottom:597.253333pt;}
.y50{bottom:602.213333pt;}
.ye{bottom:602.533333pt;}
.y169{bottom:605.333333pt;}
.yfd{bottom:608.053333pt;}
.y121{bottom:608.933333pt;}
.y150{bottom:611.093333pt;}
.yd8{bottom:616.933333pt;}
.y77{bottom:617.493333pt;}
.yd{bottom:618.213333pt;}
.y3e{bottom:620.933333pt;}
.y99{bottom:621.253333pt;}
.yfc{bottom:623.653333pt;}
.y120{bottom:624.533333pt;}
.y4f{bottom:626.133333pt;}
.y14f{bottom:626.773333pt;}
.yc{bottom:633.813333pt;}
.y18a{bottom:636.613333pt;}
.yc0{bottom:637.253333pt;}
.yfb{bottom:639.253333pt;}
.y115{bottom:640.213333pt;}
.y76{bottom:641.813333pt;}
.y14e{bottom:642.373333pt;}
.y9a{bottom:645.573333pt;}
.yb{bottom:649.493333pt;}
.y189{bottom:652.213333pt;}
.y3d{bottom:652.613333pt;}
.y114{bottom:655.813333pt;}
.yd7{bottom:660.213333pt;}
.y75{bottom:666.133333pt;}
.y188{bottom:667.813333pt;}
.y3c{bottom:668.213333pt;}
.y4e{bottom:669.093333pt;}
.y98{bottom:669.813333pt;}
.yfa{bottom:670.853333pt;}
.y113{bottom:671.413333pt;}
.y11f{bottom:671.813333pt;}
.ya{bottom:673.413333pt;}
.y14d{bottom:673.973333pt;}
.yb9{bottom:677.173333pt;}
.y187{bottom:683.493333pt;}
.y3b{bottom:683.813333pt;}
.y11e{bottom:687.413333pt;}
.yf9{bottom:689.093333pt;}
.y74{bottom:690.373333pt;}
.yd6{bottom:691.813333pt;}
.y3a{bottom:699.493333pt;}
.y4d{bottom:700.053333pt;}
.ybe{bottom:701.413333pt;}
.y112{bottom:703.093333pt;}
.y14c{bottom:705.653333pt;}
.yd5{bottom:707.493333pt;}
.y4c{bottom:710.213333pt;}
.y97{bottom:713.093333pt;}
.yf2{bottom:713.333333pt;}
.y73{bottom:714.693333pt;}
.y168{bottom:715.093333pt;}
.y9{bottom:716.293333pt;}
.y11d{bottom:719.093333pt;}
.y14b{bottom:721.253333pt;}
.yd4{bottom:723.093333pt;}
.y186{bottom:730.693333pt;}
.y39{bottom:731.093333pt;}
.y111{bottom:734.053333pt;}
.y14a{bottom:736.853333pt;}
.yf8{bottom:737.653333pt;}
.y72{bottom:739.013333pt;}
.ybc{bottom:741.333333pt;}
.y110{bottom:744.213333pt;}
.y96{bottom:744.773333pt;}
.y185{bottom:746.373333pt;}
.y38{bottom:746.693333pt;}
.y8{bottom:747.893333pt;}
.y11c{bottom:750.053333pt;}
.y149{bottom:752.533333pt;}
.y11b{bottom:760.213333pt;}
.y95{bottom:760.373333pt;}
.y184{bottom:761.973333pt;}
.y37{bottom:762.373333pt;}
.y71{bottom:763.333333pt;}
.y148{bottom:768.133333pt;}
.yf7{bottom:777.573333pt;}
.y183{bottom:777.653333pt;}
.yd3{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.yb5{bottom:781.333333pt;}
.y147{bottom:783.813333pt;}
.y70{bottom:787.573333pt;}
.y94{bottom:792.053333pt;}
.y36{bottom:793.973333pt;}
.y146{bottom:799.413333pt;}
.yf6{bottom:801.893333pt;}
.y93{bottom:807.653333pt;}
.y182{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y6d{bottom:811.893333pt;}
.y34{bottom:825.253333pt;}
.yf5{bottom:826.213333pt;}
.y145{bottom:831.013333pt;}
.y6f{bottom:836.213333pt;}
.y92{bottom:838.613333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y8e{bottom:849.493333pt;}
.yb4{bottom:852.533333pt;}
.y32{bottom:856.533333pt;}
.yd2{bottom:856.853333pt;}
.y6c{bottom:860.533333pt;}
.y144{bottom:862.693333pt;}
.yf4{bottom:866.133333pt;}
.y181{bottom:872.133333pt;}
.yd1{bottom:872.533333pt;}
.y91{bottom:873.733333pt;}
.y4{bottom:877.893333pt;}
.y143{bottom:878.293333pt;}
.y180{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.yb3{bottom:895.813333pt;}
.y90{bottom:898.080000pt;}
.y3{bottom:899.840000pt;}
.y17f{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.yef{bottom:906.080000pt;}
.y142{bottom:909.920000pt;}
.y2f{bottom:919.440000pt;}
.y8d{bottom:922.400000pt;}
.yb2{bottom:927.440000pt;}
.yf1{bottom:930.400000pt;}
.y141{bottom:934.320000pt;}
.y2e{bottom:935.040000pt;}
.y6b{bottom:935.440000pt;}
.yb1{bottom:943.040000pt;}
.y8c{bottom:946.640000pt;}
.y2d{bottom:950.720000pt;}
.y6a{bottom:951.040000pt;}
.yb0{bottom:958.720000pt;}
.y140{bottom:966.000000pt;}
.y69{bottom:966.720000pt;}
.yee{bottom:970.320000pt;}
.yaf{bottom:974.320000pt;}
.y13f{bottom:981.600000pt;}
.y2c{bottom:982.320000pt;}
.y8b{bottom:990.000000pt;}
.y13e{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.y13d{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h19{height:12.480000pt;}
.hc{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h9{height:36.034687pt;}
.h16{height:39.200000pt;}
.h15{height:39.280000pt;}
.h18{height:39.306667pt;}
.h6{height:45.246562pt;}
.hf{height:47.920000pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h12{height:53.857500pt;}
.h8{height:54.927899pt;}
.h7{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1a{height:63.600000pt;}
.h13{height:70.480000pt;}
.h11{height:72.186667pt;}
.hd{height:72.240000pt;}
.h14{height:103.440000pt;}
.h17{height:103.466667pt;}
.h1b{height:192.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3d{width:21.120000pt;}
.w33{width:28.720000pt;}
.wb{width:46.000000pt;}
.wc{width:46.026667pt;}
.w2f{width:48.560000pt;}
.w38{width:49.040000pt;}
.w3c{width:50.560000pt;}
.w9{width:54.880000pt;}
.wf{width:60.800000pt;}
.w27{width:62.746667pt;}
.w26{width:64.480000pt;}
.w3a{width:65.680000pt;}
.w1e{width:65.840000pt;}
.w23{width:66.400000pt;}
.w21{width:66.640000pt;}
.w32{width:68.480000pt;}
.w3b{width:77.680000pt;}
.w31{width:82.000000pt;}
.w28{width:83.040000pt;}
.w13{width:84.506667pt;}
.w25{width:84.800000pt;}
.w20{width:84.906667pt;}
.w5{width:92.320000pt;}
.w1a{width:96.400000pt;}
.w1f{width:97.360000pt;}
.w24{width:97.546667pt;}
.w18{width:99.040000pt;}
.w16{width:99.120000pt;}
.w17{width:99.600000pt;}
.w22{width:103.520000pt;}
.w34{width:103.706667pt;}
.w2b{width:125.360000pt;}
.w30{width:125.706667pt;}
.w39{width:128.880000pt;}
.w11{width:130.826667pt;}
.w2d{width:133.066667pt;}
.w3e{width:135.466667pt;}
.w37{width:136.026667pt;}
.w2e{width:144.640000pt;}
.w29{width:144.960000pt;}
.w36{width:151.200000pt;}
.w35{width:157.306667pt;}
.w7{width:168.346667pt;}
.w10{width:177.680000pt;}
.w6{width:178.320000pt;}
.w1d{width:183.066667pt;}
.w2a{width:187.866667pt;}
.w1b{width:202.906667pt;}
.wa{width:232.666667pt;}
.w14{width:246.000000pt;}
.w15{width:246.026667pt;}
.w8{width:288.186667pt;}
.w19{width:299.946667pt;}
.we{width:309.146667pt;}
.w4{width:347.386667pt;}
.wd{width:370.586667pt;}
.w3{width:440.346667pt;}
.w12{width:577.813333pt;}
.w2c{width:605.813333pt;}
.w1c{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x38{left:82.960000pt;}
.x4{left:84.479988pt;}
.x29{left:94.080000pt;}
.x41{left:98.879988pt;}
.x15{left:108.080000pt;}
.x2f{left:123.440000pt;}
.x24{left:126.240000pt;}
.x40{left:132.479988pt;}
.x23{left:159.386667pt;}
.x8{left:176.826667pt;}
.x3f{left:180.346655pt;}
.x2{left:187.626655pt;}
.x25{left:189.626667pt;}
.x16{left:193.226667pt;}
.x30{left:198.346667pt;}
.x12{left:211.706667pt;}
.x31{left:219.066667pt;}
.x2a{left:227.866667pt;}
.x3b{left:230.746655pt;}
.x18{left:239.866667pt;}
.x1e{left:244.826667pt;}
.x1c{left:247.066667pt;}
.xd{left:252.906667pt;}
.x26{left:273.306667pt;}
.x36{left:285.466667pt;}
.x3e{left:293.786655pt;}
.xe{left:308.426667pt;}
.x1f{left:311.306667pt;}
.xc{left:316.506655pt;}
.x39{left:321.546655pt;}
.x7{left:324.826655pt;}
.x6{left:326.026655pt;}
.x19{left:339.626667pt;}
.x1d{left:344.106667pt;}
.xb{left:355.866667pt;}
.x32{left:370.986667pt;}
.x2b{left:373.146667pt;}
.x14{left:390.026667pt;}
.xf{left:401.786667pt;}
.x20{left:409.386667pt;}
.x27{left:418.986667pt;}
.x2c{left:422.346667pt;}
.x17{left:439.866667pt;}
.x10{left:448.426667pt;}
.x1a{left:486.613333pt;}
.x11{left:495.093333pt;}
.x33{left:507.653333pt;}
.x13{left:521.493333pt;}
.xa{left:524.853333pt;}
.x2d{left:548.693333pt;}
.x34{left:557.333333pt;}
.x21{left:562.293333pt;}
.x1b{left:586.293333pt;}
.x35{left:603.973333pt;}
.x28{left:607.493333pt;}
.x5{left:615.013322pt;}
.x2e{left:631.413333pt;}
.x3c{left:642.053322pt;}
.x3a{left:664.053322pt;}
.x22{left:666.453333pt;}
.x3d{left:672.053322pt;}
.x37{left:682.293333pt;}
.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; }
  