
    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_e9b23a83b587ee576d53e423.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_49f6334cb3af18c843954405.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_865e2523944cb64b1e5f23b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a1052d81635bacb9c353f8e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_851880c9a6c10d945ad90f28.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2f{letter-spacing:-0.579600px;}
.ls35{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.533400px;}
.ls7{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.414000px;}
.ls11{letter-spacing:-0.240600px;}
.ls1e{letter-spacing:-0.228000px;}
.ls30{letter-spacing:-0.226800px;}
.ls27{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.175800px;}
.ls28{letter-spacing:-0.172200px;}
.ls6{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.115200px;}
.ls34{letter-spacing:-0.107400px;}
.ls17{letter-spacing:-0.078600px;}
.ls25{letter-spacing:-0.069600px;}
.ls2a{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.023760px;}
.ls5{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.060480px;}
.ls1f{letter-spacing:0.060600px;}
.lse{letter-spacing:0.066000px;}
.ls10{letter-spacing:0.074880px;}
.ls21{letter-spacing:0.121680px;}
.ls1d{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls20{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.174960px;}
.ls14{letter-spacing:0.175200px;}
.ls32{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.202800px;}
.ls36{letter-spacing:0.218400px;}
.ls1b{letter-spacing:0.233280px;}
.ls8{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.269760px;}
.ls2e{letter-spacing:0.288600px;}
.ls29{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.357000px;}
.ls1c{letter-spacing:0.393600px;}
.ls2{letter-spacing:0.427680px;}
.ls16{letter-spacing:0.479400px;}
.ls22{letter-spacing:0.479520px;}
.ls2b{letter-spacing:0.544200px;}
.ls26{letter-spacing:0.547800px;}
.ls24{letter-spacing:0.660000px;}
.ls2c{letter-spacing:5.358240px;}
.ls33{letter-spacing:12.186720px;}
.ls2d{letter-spacing:42.570720px;}
.lsf{letter-spacing:46.026720px;}
.ls23{letter-spacing:117.678240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.844560px;}
.ws7{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.855040px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.165760px;}
.ws17{word-spacing:-14.053560px;}
.ws11{word-spacing:-13.899360px;}
.wsf{word-spacing:-13.862760px;}
.ws1a{word-spacing:-13.811760px;}
.ws1f{word-spacing:-13.724160px;}
.ws1d{word-spacing:-13.692360px;}
.wsd{word-spacing:-13.680960px;}
.ws12{word-spacing:-13.646160px;}
.ws14{word-spacing:-13.566360px;}
.ws10{word-spacing:-13.529520px;}
.wsb{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.ws1b{word-spacing:-13.440960px;}
.ws16{word-spacing:-13.436160px;}
.wse{word-spacing:-13.427160px;}
.ws1e{word-spacing:-13.398360px;}
.ws19{word-spacing:-13.333560px;}
.ws18{word-spacing:-13.319160px;}
.ws1c{word-spacing:-13.278960px;}
.ws13{word-spacing:-13.277760px;}
.ws8{word-spacing:-9.437760px;}
.ws9{word-spacing:-8.786880px;}
.wsc{word-spacing:0.000000px;}
._1e{margin-left:-532.404480px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._11{margin-left:-310.890240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._17{margin-left:-237.191040px;}
._16{margin-left:-223.087680px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._26{margin-left:-173.361600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._13{margin-left:-151.062480px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-144.360000px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._24{margin-left:-110.154240px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-87.299760px;}
._22{margin-left:-85.407360px;}
._1b{margin-left:-84.240000px;}
._12{margin-left:-81.964800px;}
._23{margin-left:-80.733840px;}
._1d{margin-left:-69.229440px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-48.810240px;}
._1a{margin-left:-30.810240px;}
._28{margin-left:-4.362480px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.053360px;}
._2c{width:2.412960px;}
._31{width:3.884400px;}
._30{width:4.960080px;}
._2f{width:6.274800px;}
._2e{width:7.291200px;}
._33{width:8.476320px;}
._32{width:9.501840px;}
._37{width:10.807920px;}
._36{width:12.071520px;}
._3b{width:14.837040px;}
._38{width:16.015680px;}
._39{width:17.987760px;}
._35{width:19.481760px;}
._34{width:20.497680px;}
._3d{width:21.712320px;}
._50{width:23.070240px;}
._3a{width:24.273360px;}
._3c{width:25.279200px;}
._54{width:26.892000px;}
._47{width:28.027440px;}
._42{width:29.282400px;}
._4d{width:34.780320px;}
._4b{width:42.250320px;}
._3e{width:45.002640px;}
._55{width:48.764160px;}
._53{width:50.437440px;}
._29{width:51.901920px;}
._2b{width:53.047440px;}
._4a{width:63.584640px;}
._4c{width:69.261840px;}
._46{width:72.727920px;}
._45{width:74.102400px;}
._52{width:80.616240px;}
._51{width:84.261600px;}
._41{width:89.691840px;}
._49{width:95.795280px;}
._48{width:104.580000px;}
._40{width:111.862800px;}
._3f{width:113.775120px;}
._4e{width:123.964560px;}
._43{width:128.386800px;}
._44{width:129.657600px;}
._2d{width:161.366160px;}
._4f{width:191.411280px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc3{color:rgb(38,74,96);}
.fc4{color:rgb(68,84,106);}
.fc2{color:rgb(1,2,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.960000px;}
.y13c{bottom:6.525000px;}
.yb3{bottom:6.660000px;}
.y108{bottom:17.100000px;}
.y8c{bottom:20.700000px;}
.y86{bottom:21.060000px;}
.y89{bottom:22.140000px;}
.ya3{bottom:22.320000px;}
.y12c{bottom:26.820000px;}
.y13b{bottom:27.585000px;}
.yb2{bottom:27.720000px;}
.y132{bottom:27.750000px;}
.y121{bottom:28.980000px;}
.yb5{bottom:30.780000px;}
.y12f{bottom:36.000000px;}
.y126{bottom:38.340000px;}
.y8b{bottom:39.060000px;}
.ya2{bottom:40.530000px;}
.y103{bottom:40.680000px;}
.y12b{bottom:45.000000px;}
.y120{bottom:47.340000px;}
.y127{bottom:47.520000px;}
.y13a{bottom:48.645000px;}
.y11b{bottom:48.774000px;}
.y10f{bottom:48.780000px;}
.y131{bottom:48.810000px;}
.y105{bottom:49.680000px;}
.yb0{bottom:51.840000px;}
.y12d{bottom:54.225000px;}
.y123{bottom:56.520000px;}
.y125{bottom:56.700000px;}
.y102{bottom:58.860000px;}
.ya1{bottom:58.890000px;}
.y6{bottom:61.596000px;}
.y12a{bottom:63.405000px;}
.y11f{bottom:65.700000px;}
.y104{bottom:68.040000px;}
.y110{bottom:69.840000px;}
.y12e{bottom:72.585000px;}
.y122{bottom:74.880000px;}
.y101{bottom:77.220000px;}
.y129{bottom:81.765000px;}
.y11e{bottom:83.880000px;}
.y112{bottom:90.900000px;}
.yfe{bottom:91.296000px;}
.y31{bottom:93.636000px;}
.yd6{bottom:94.356000px;}
.y100{bottom:95.580000px;}
.y9f{bottom:100.656000px;}
.yd5{bottom:101.916000px;}
.y11d{bottom:102.270000px;}
.y158{bottom:102.996000px;}
.y62{bottom:103.356000px;}
.y11a{bottom:108.396000px;}
.yfd{bottom:112.356000px;}
.y30{bottom:114.696000px;}
.y7c{bottom:115.416000px;}
.y9e{bottom:119.736000px;}
.yd4{bottom:122.976000px;}
.y61{bottom:124.416000px;}
.y82{bottom:125.136000px;}
.yfc{bottom:133.416000px;}
.y2f{bottom:135.756000px;}
.y7b{bottom:136.476000px;}
.y9d{bottom:138.636000px;}
.yd3{bottom:144.036000px;}
.y60{bottom:145.476000px;}
.y81{bottom:146.196000px;}
.yfb{bottom:154.470000px;}
.y2e{bottom:156.810000px;}
.y7a{bottom:157.530000px;}
.yd2{bottom:159.330000px;}
.y9c{bottom:164.370000px;}
.y5f{bottom:166.530000px;}
.y80{bottom:167.250000px;}
.y113{bottom:172.290000px;}
.yfa{bottom:175.530000px;}
.y116{bottom:177.345000px;}
.y2d{bottom:177.870000px;}
.yd1{bottom:178.230000px;}
.y79{bottom:178.590000px;}
.yff{bottom:183.990000px;}
.y9b{bottom:185.430000px;}
.y5e{bottom:187.590000px;}
.y7f{bottom:188.310000px;}
.y157{bottom:190.650000px;}
.yf9{bottom:196.590000px;}
.yd0{bottom:197.310000px;}
.y115{bottom:198.405000px;}
.y2c{bottom:198.930000px;}
.y78{bottom:199.650000px;}
.y9a{bottom:206.490000px;}
.y5d{bottom:208.650000px;}
.y7e{bottom:209.370000px;}
.y156{bottom:211.530000px;}
.ycf{bottom:216.390000px;}
.yf8{bottom:217.650000px;}
.y114{bottom:219.465000px;}
.y137{bottom:219.645000px;}
.y2b{bottom:219.990000px;}
.y77{bottom:220.710000px;}
.y7d{bottom:226.650000px;}
.y99{bottom:227.550000px;}
.y5c{bottom:229.710000px;}
.y155{bottom:232.590000px;}
.yce{bottom:235.470000px;}
.y119{bottom:236.190000px;}
.yf7{bottom:238.710000px;}
.y136{bottom:240.705000px;}
.y2a{bottom:241.050000px;}
.ye9{bottom:241.770000px;}
.y98{bottom:248.610000px;}
.y5b{bottom:250.770000px;}
.y154{bottom:253.650000px;}
.yf6{bottom:259.770000px;}
.ycd{bottom:261.210000px;}
.y10d{bottom:261.750000px;}
.y29{bottom:262.110000px;}
.ye8{bottom:262.830000px;}
.y97{bottom:269.670000px;}
.y5a{bottom:271.830000px;}
.y153{bottom:274.710000px;}
.ycc{bottom:276.330000px;}
.yf5{bottom:280.830000px;}
.y10c{bottom:282.810000px;}
.y28{bottom:283.170000px;}
.ye7{bottom:283.890000px;}
.y96{bottom:290.730000px;}
.y59{bottom:292.890000px;}
.ycb{bottom:295.410000px;}
.y152{bottom:295.770000px;}
.y118{bottom:300.090000px;}
.yf4{bottom:301.890000px;}
.y10b{bottom:303.870000px;}
.y27{bottom:304.230000px;}
.ye6{bottom:304.950000px;}
.y95{bottom:311.790000px;}
.y58{bottom:313.950000px;}
.y151{bottom:316.830000px;}
.yca{bottom:321.150000px;}
.yf3{bottom:322.950000px;}
.y10a{bottom:324.930000px;}
.y26{bottom:325.290000px;}
.ye5{bottom:326.010000px;}
.y94{bottom:332.895000px;}
.y57{bottom:335.055000px;}
.y150{bottom:337.935000px;}
.yc9{bottom:342.255000px;}
.y117{bottom:342.975000px;}
.yf2{bottom:344.055000px;}
.y25{bottom:346.395000px;}
.ye4{bottom:347.115000px;}
.y93{bottom:353.955000px;}
.y56{bottom:356.115000px;}
.y14f{bottom:358.995000px;}
.yc8{bottom:363.315000px;}
.yf1{bottom:365.115000px;}
.y24{bottom:367.455000px;}
.ye3{bottom:368.175000px;}
.y92{bottom:375.015000px;}
.y55{bottom:377.175000px;}
.y14e{bottom:380.055000px;}
.yc7{bottom:384.375000px;}
.yf0{bottom:386.175000px;}
.y23{bottom:388.515000px;}
.ye2{bottom:389.235000px;}
.y91{bottom:396.075000px;}
.y54{bottom:398.235000px;}
.y14d{bottom:401.115000px;}
.yc6{bottom:405.435000px;}
.y109{bottom:406.875000px;}
.yef{bottom:407.235000px;}
.ye1{bottom:410.295000px;}
.y90{bottom:411.195000px;}
.y22{bottom:411.915000px;}
.y53{bottom:419.295000px;}
.y14c{bottom:422.175000px;}
.yc5{bottom:426.495000px;}
.yee{bottom:428.295000px;}
.y8f{bottom:430.275000px;}
.ye0{bottom:431.355000px;}
.y21{bottom:432.795000px;}
.y52{bottom:440.355000px;}
.y14b{bottom:443.235000px;}
.yc4{bottom:447.555000px;}
.y8e{bottom:449.355000px;}
.ydf{bottom:452.415000px;}
.y51{bottom:461.415000px;}
.y20{bottom:462.855000px;}
.y14a{bottom:464.295000px;}
.y8d{bottom:468.435000px;}
.yc3{bottom:468.615000px;}
.yed{bottom:470.415000px;}
.yde{bottom:473.475000px;}
.y50{bottom:482.475000px;}
.y1f{bottom:483.915000px;}
.y149{bottom:485.355000px;}
.y8a{bottom:487.515000px;}
.yc2{bottom:489.675000px;}
.yec{bottom:491.475000px;}
.ydd{bottom:494.535000px;}
.y4f{bottom:503.535000px;}
.y1e{bottom:504.975000px;}
.y148{bottom:506.415000px;}
.yc1{bottom:510.735000px;}
.yeb{bottom:512.535000px;}
.y111{bottom:512.895000px;}
.ydc{bottom:515.595000px;}
.y4e{bottom:524.595000px;}
.y1d{bottom:526.035000px;}
.y147{bottom:527.475000px;}
.yc0{bottom:531.795000px;}
.yea{bottom:533.595000px;}
.ydb{bottom:536.655000px;}
.y88{bottom:541.695000px;}
.y6a{bottom:545.655000px;}
.y1c{bottom:547.095000px;}
.y146{bottom:548.535000px;}
.ybf{bottom:552.855000px;}
.y4d{bottom:554.655000px;}
.yda{bottom:557.715000px;}
.y69{bottom:566.715000px;}
.y1b{bottom:568.155000px;}
.y145{bottom:569.595000px;}
.ybe{bottom:573.915000px;}
.y4c{bottom:575.715000px;}
.yd9{bottom:578.775000px;}
.y87{bottom:578.955000px;}
.y68{bottom:587.775000px;}
.y1a{bottom:589.215000px;}
.y144{bottom:590.655000px;}
.ybd{bottom:594.975000px;}
.y4b{bottom:596.805000px;}
.y85{bottom:598.065000px;}
.yd8{bottom:599.865000px;}
.y67{bottom:608.865000px;}
.y19{bottom:610.305000px;}
.y143{bottom:611.745000px;}
.ybc{bottom:616.065000px;}
.y4a{bottom:617.865000px;}
.yd7{bottom:620.925000px;}
.y66{bottom:629.925000px;}
.y18{bottom:631.365000px;}
.y142{bottom:632.805000px;}
.y83{bottom:634.245000px;}
.ybb{bottom:637.125000px;}
.y49{bottom:638.925000px;}
.y65{bottom:650.805000px;}
.y17{bottom:652.425000px;}
.y141{bottom:653.865000px;}
.yba{bottom:658.185000px;}
.y48{bottom:659.805000px;}
.y64{bottom:671.865000px;}
.y16{bottom:673.485000px;}
.y140{bottom:674.925000px;}
.yb9{bottom:679.245000px;}
.y47{bottom:680.865000px;}
.y10e{bottom:683.025000px;}
.y63{bottom:692.925000px;}
.y15{bottom:694.545000px;}
.y13f{bottom:695.985000px;}
.yb8{bottom:700.305000px;}
.y46{bottom:701.925000px;}
.y76{bottom:713.985000px;}
.y14{bottom:715.605000px;}
.y13e{bottom:717.045000px;}
.yb4{bottom:717.585000px;}
.y45{bottom:722.985000px;}
.y135{bottom:732.165000px;}
.y75{bottom:735.045000px;}
.y13{bottom:736.665000px;}
.yb7{bottom:741.705000px;}
.y44{bottom:744.045000px;}
.y107{bottom:746.925000px;}
.y74{bottom:756.105000px;}
.y12{bottom:757.725000px;}
.y43{bottom:765.105000px;}
.yb6{bottom:765.825000px;}
.y73{bottom:777.165000px;}
.y11{bottom:778.785000px;}
.y42{bottom:786.165000px;}
.yaf{bottom:789.765000px;}
.y13d{bottom:796.065000px;}
.y106{bottom:796.425000px;}
.y72{bottom:798.225000px;}
.y10{bottom:799.845000px;}
.y41{bottom:807.225000px;}
.y128{bottom:811.545000px;}
.yb1{bottom:813.885000px;}
.y71{bottom:819.285000px;}
.yf{bottom:823.065000px;}
.y40{bottom:828.285000px;}
.y70{bottom:840.345000px;}
.ye{bottom:844.125000px;}
.y3f{bottom:849.345000px;}
.y139{bottom:860.145000px;}
.y6f{bottom:861.405000px;}
.yae{bottom:865.590000px;}
.yd{bottom:870.450000px;}
.y6e{bottom:882.510000px;}
.yad{bottom:886.650000px;}
.yc{bottom:891.510000px;}
.y6d{bottom:903.570000px;}
.yac{bottom:907.710000px;}
.yb{bottom:912.570000px;}
.y138{bottom:924.090000px;}
.y6c{bottom:924.630000px;}
.yab{bottom:928.770000px;}
.ya{bottom:929.310000px;}
.y124{bottom:931.110000px;}
.y3e{bottom:933.630000px;}
.y6b{bottom:945.690000px;}
.yaa{bottom:949.830000px;}
.y9{bottom:951.630000px;}
.y3d{bottom:954.690000px;}
.ya9{bottom:970.890000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:976.830000px;}
.y134{bottom:987.990000px;}
.ya8{bottom:991.950000px;}
.y3b{bottom:996.810000px;}
.y7{bottom:1010.490000px;}
.ya7{bottom:1013.010000px;}
.y3a{bottom:1017.870000px;}
.ya6{bottom:1034.070000px;}
.y11c{bottom:1037.310000px;}
.y39{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.ya5{bottom:1049.370000px;}
.y133{bottom:1051.890000px;}
.y38{bottom:1059.990000px;}
.ya4{bottom:1068.270000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y36{bottom:1102.110000px;}
.ya0{bottom:1105.710000px;}
.y3{bottom:1113.630000px;}
.y130{bottom:1115.790000px;}
.y35{bottom:1123.170000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.hb{height:18.180000px;}
.h10{height:18.360000px;}
.hd{height:18.396000px;}
.h15{height:21.060000px;}
.hc{height:35.280000px;}
.he{height:36.540000px;}
.h12{height:36.720000px;}
.h8{height:38.671172px;}
.h14{height:42.120000px;}
.h1e{height:42.156000px;}
.ha{height:52.260820px;}
.hf{height:53.460000px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h24{height:63.036000px;}
.h19{height:63.180000px;}
.h22{height:63.216000px;}
.h3{height:65.884219px;}
.h13{height:66.240000px;}
.h7{height:67.824844px;}
.h16{height:69.300000px;}
.h4{height:71.613281px;}
.h11{height:73.296000px;}
.h1a{height:84.240000px;}
.h1b{height:84.276000px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h1c{height:105.300000px;}
.h20{height:105.480000px;}
.h21{height:118.836000px;}
.h17{height:128.340000px;}
.h1f{height:141.696000px;}
.h1d{height:233.850000px;}
.h23{height:255.090000px;}
.h18{height:339.330000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:53.460000px;}
.w14{width:62.640000px;}
.w13{width:66.096000px;}
.w2b{width:71.100000px;}
.w2c{width:75.816000px;}
.w15{width:79.200000px;}
.w27{width:85.356000px;}
.w6{width:89.820000px;}
.w2e{width:94.680000px;}
.w1f{width:97.200000px;}
.w19{width:97.236000px;}
.w21{width:97.956000px;}
.w16{width:98.316000px;}
.w1a{width:99.000000px;}
.w22{width:100.440000px;}
.w24{width:100.620000px;}
.w1b{width:101.376000px;}
.w7{width:102.096000px;}
.w1d{width:103.860000px;}
.w1c{width:103.896000px;}
.w18{width:104.076000px;}
.w23{width:105.336000px;}
.w25{width:108.000000px;}
.w1e{width:115.776000px;}
.wf{width:119.916000px;}
.w9{width:121.680000px;}
.w8{width:121.716000px;}
.w28{width:122.580000px;}
.w20{width:124.416000px;}
.wa{width:127.656000px;}
.w12{width:127.800000px;}
.w26{width:132.876000px;}
.w4{width:135.036000px;}
.w2d{width:142.416000px;}
.wc{width:149.976000px;}
.we{width:151.230000px;}
.wd{width:152.640000px;}
.w10{width:157.530000px;}
.w2a{width:168.330000px;}
.w29{width:178.590000px;}
.w11{width:179.130000px;}
.w5{width:429.915000px;}
.w2f{width:448.275000px;}
.w3{width:565.845000px;}
.wb{width:575.925000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.xb{left:21.240000px;}
.x1f{left:29.016000px;}
.x6{left:53.999987px;}
.x2e{left:65.340000px;}
.x1d{left:68.939987px;}
.x10{left:75.239987px;}
.x26{left:76.860000px;}
.x7{left:80.999987px;}
.x1e{left:85.140000px;}
.x2d{left:108.035987px;}
.x33{left:141.336000px;}
.x16{left:146.376000px;}
.x11{left:158.610000px;}
.xa{left:163.650000px;}
.x5{left:173.189987px;}
.x20{left:183.090000px;}
.x1c{left:199.830000px;}
.x27{left:201.990000px;}
.xd{left:254.190000px;}
.x21{left:282.810000px;}
.x2f{left:285.015000px;}
.x3{left:291.674987px;}
.xc{left:299.595000px;}
.x28{left:300.855000px;}
.x17{left:306.795000px;}
.x13{left:309.315000px;}
.x2{left:350.714987px;}
.xe{left:357.015000px;}
.x34{left:380.055000px;}
.x22{left:384.915000px;}
.x1b{left:387.615000px;}
.x29{left:402.015000px;}
.x30{left:408.315000px;}
.x4{left:410.834987px;}
.x9{left:446.474987px;}
.x14{left:462.675000px;}
.x1{left:479.444987px;}
.x18{left:487.365000px;}
.x23{left:489.705000px;}
.x2a{left:508.065000px;}
.x31{left:587.625000px;}
.x24{left:594.285000px;}
.xf{left:601.845000px;}
.x2b{left:609.405000px;}
.x15{left:614.625000px;}
.x19{left:616.605000px;}
.x1a{left:684.150000px;}
.x2c{left:708.270000px;}
.x25{left:710.790000px;}
.x32{left:756.690000px;}
.x8{left:773.969987px;}
.x35{left:839.309987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2f{letter-spacing:-0.515200pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.474133pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.368000pt;}
.ls11{letter-spacing:-0.213867pt;}
.ls1e{letter-spacing:-0.202667pt;}
.ls30{letter-spacing:-0.201600pt;}
.ls27{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.156267pt;}
.ls28{letter-spacing:-0.153067pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls34{letter-spacing:-0.095467pt;}
.ls17{letter-spacing:-0.069867pt;}
.ls25{letter-spacing:-0.061867pt;}
.ls2a{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.021120pt;}
.ls5{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.053760pt;}
.ls1f{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.066560pt;}
.ls21{letter-spacing:0.108160pt;}
.ls1d{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls20{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.155520pt;}
.ls14{letter-spacing:0.155733pt;}
.ls32{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.180267pt;}
.ls36{letter-spacing:0.194133pt;}
.ls1b{letter-spacing:0.207360pt;}
.ls8{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.239787pt;}
.ls2e{letter-spacing:0.256533pt;}
.ls29{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.317333pt;}
.ls1c{letter-spacing:0.349867pt;}
.ls2{letter-spacing:0.380160pt;}
.ls16{letter-spacing:0.426133pt;}
.ls22{letter-spacing:0.426240pt;}
.ls2b{letter-spacing:0.483733pt;}
.ls26{letter-spacing:0.486933pt;}
.ls24{letter-spacing:0.586667pt;}
.ls2c{letter-spacing:4.762880pt;}
.ls33{letter-spacing:10.832640pt;}
.ls2d{letter-spacing:37.840640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls23{letter-spacing:104.602880pt;}
.ws6{word-spacing:-19.417387pt;}
.ws7{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.204480pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.591787pt;}
.ws17{word-spacing:-12.492053pt;}
.ws11{word-spacing:-12.354987pt;}
.wsf{word-spacing:-12.322453pt;}
.ws1a{word-spacing:-12.277120pt;}
.ws1f{word-spacing:-12.199253pt;}
.ws1d{word-spacing:-12.170987pt;}
.wsd{word-spacing:-12.160853pt;}
.ws12{word-spacing:-12.129920pt;}
.ws14{word-spacing:-12.058987pt;}
.ws10{word-spacing:-12.026240pt;}
.wsb{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.ws1b{word-spacing:-11.947520pt;}
.ws16{word-spacing:-11.943253pt;}
.wse{word-spacing:-11.935253pt;}
.ws1e{word-spacing:-11.909653pt;}
.ws19{word-spacing:-11.852053pt;}
.ws18{word-spacing:-11.839253pt;}
.ws1c{word-spacing:-11.803520pt;}
.ws13{word-spacing:-11.802453pt;}
.ws8{word-spacing:-8.389120pt;}
.ws9{word-spacing:-7.810560pt;}
.wsc{word-spacing:0.000000pt;}
._1e{margin-left:-473.248427pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._11{margin-left:-276.346880pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._17{margin-left:-210.836480pt;}
._16{margin-left:-198.300160pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._26{margin-left:-154.099200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._13{margin-left:-134.277760pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-128.320000pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._24{margin-left:-97.914880pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-77.599787pt;}
._22{margin-left:-75.917653pt;}
._1b{margin-left:-74.880000pt;}
._12{margin-left:-72.857600pt;}
._23{margin-left:-71.763413pt;}
._1d{margin-left:-61.537280pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.386880pt;}
._1a{margin-left:-27.386880pt;}
._28{margin-left:-3.877760pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:0.936320pt;}
._2c{width:2.144853pt;}
._31{width:3.452800pt;}
._30{width:4.408960pt;}
._2f{width:5.577600pt;}
._2e{width:6.481067pt;}
._33{width:7.534507pt;}
._32{width:8.446080pt;}
._37{width:9.607040pt;}
._36{width:10.730240pt;}
._3b{width:13.188480pt;}
._38{width:14.236160pt;}
._39{width:15.989120pt;}
._35{width:17.317120pt;}
._34{width:18.220160pt;}
._3d{width:19.299840pt;}
._50{width:20.506880pt;}
._3a{width:21.576320pt;}
._3c{width:22.470400pt;}
._54{width:23.904000pt;}
._47{width:24.913280pt;}
._42{width:26.028800pt;}
._4d{width:30.915840pt;}
._4b{width:37.555840pt;}
._3e{width:40.002347pt;}
._55{width:43.345920pt;}
._53{width:44.833280pt;}
._29{width:46.135040pt;}
._2b{width:47.153280pt;}
._4a{width:56.519680pt;}
._4c{width:61.566080pt;}
._46{width:64.647040pt;}
._45{width:65.868800pt;}
._52{width:71.658880pt;}
._51{width:74.899200pt;}
._41{width:79.726080pt;}
._49{width:85.151360pt;}
._48{width:92.960000pt;}
._40{width:99.433600pt;}
._3f{width:101.133440pt;}
._4e{width:110.190720pt;}
._43{width:114.121600pt;}
._44{width:115.251200pt;}
._2d{width:143.436587pt;}
._4f{width:170.143360pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.520000pt;}
.y13c{bottom:5.800000pt;}
.yb3{bottom:5.920000pt;}
.y108{bottom:15.200000pt;}
.y8c{bottom:18.400000pt;}
.y86{bottom:18.720000pt;}
.y89{bottom:19.680000pt;}
.ya3{bottom:19.840000pt;}
.y12c{bottom:23.840000pt;}
.y13b{bottom:24.520000pt;}
.yb2{bottom:24.640000pt;}
.y132{bottom:24.666667pt;}
.y121{bottom:25.760000pt;}
.yb5{bottom:27.360000pt;}
.y12f{bottom:32.000000pt;}
.y126{bottom:34.080000pt;}
.y8b{bottom:34.720000pt;}
.ya2{bottom:36.026667pt;}
.y103{bottom:36.160000pt;}
.y12b{bottom:40.000000pt;}
.y120{bottom:42.080000pt;}
.y127{bottom:42.240000pt;}
.y13a{bottom:43.240000pt;}
.y11b{bottom:43.354667pt;}
.y10f{bottom:43.360000pt;}
.y131{bottom:43.386667pt;}
.y105{bottom:44.160000pt;}
.yb0{bottom:46.080000pt;}
.y12d{bottom:48.200000pt;}
.y123{bottom:50.240000pt;}
.y125{bottom:50.400000pt;}
.y102{bottom:52.320000pt;}
.ya1{bottom:52.346667pt;}
.y6{bottom:54.752000pt;}
.y12a{bottom:56.360000pt;}
.y11f{bottom:58.400000pt;}
.y104{bottom:60.480000pt;}
.y110{bottom:62.080000pt;}
.y12e{bottom:64.520000pt;}
.y122{bottom:66.560000pt;}
.y101{bottom:68.640000pt;}
.y129{bottom:72.680000pt;}
.y11e{bottom:74.560000pt;}
.y112{bottom:80.800000pt;}
.yfe{bottom:81.152000pt;}
.y31{bottom:83.232000pt;}
.yd6{bottom:83.872000pt;}
.y100{bottom:84.960000pt;}
.y9f{bottom:89.472000pt;}
.yd5{bottom:90.592000pt;}
.y11d{bottom:90.906667pt;}
.y158{bottom:91.552000pt;}
.y62{bottom:91.872000pt;}
.y11a{bottom:96.352000pt;}
.yfd{bottom:99.872000pt;}
.y30{bottom:101.952000pt;}
.y7c{bottom:102.592000pt;}
.y9e{bottom:106.432000pt;}
.yd4{bottom:109.312000pt;}
.y61{bottom:110.592000pt;}
.y82{bottom:111.232000pt;}
.yfc{bottom:118.592000pt;}
.y2f{bottom:120.672000pt;}
.y7b{bottom:121.312000pt;}
.y9d{bottom:123.232000pt;}
.yd3{bottom:128.032000pt;}
.y60{bottom:129.312000pt;}
.y81{bottom:129.952000pt;}
.yfb{bottom:137.306667pt;}
.y2e{bottom:139.386667pt;}
.y7a{bottom:140.026667pt;}
.yd2{bottom:141.626667pt;}
.y9c{bottom:146.106667pt;}
.y5f{bottom:148.026667pt;}
.y80{bottom:148.666667pt;}
.y113{bottom:153.146667pt;}
.yfa{bottom:156.026667pt;}
.y116{bottom:157.640000pt;}
.y2d{bottom:158.106667pt;}
.yd1{bottom:158.426667pt;}
.y79{bottom:158.746667pt;}
.yff{bottom:163.546667pt;}
.y9b{bottom:164.826667pt;}
.y5e{bottom:166.746667pt;}
.y7f{bottom:167.386667pt;}
.y157{bottom:169.466667pt;}
.yf9{bottom:174.746667pt;}
.yd0{bottom:175.386667pt;}
.y115{bottom:176.360000pt;}
.y2c{bottom:176.826667pt;}
.y78{bottom:177.466667pt;}
.y9a{bottom:183.546667pt;}
.y5d{bottom:185.466667pt;}
.y7e{bottom:186.106667pt;}
.y156{bottom:188.026667pt;}
.ycf{bottom:192.346667pt;}
.yf8{bottom:193.466667pt;}
.y114{bottom:195.080000pt;}
.y137{bottom:195.240000pt;}
.y2b{bottom:195.546667pt;}
.y77{bottom:196.186667pt;}
.y7d{bottom:201.466667pt;}
.y99{bottom:202.266667pt;}
.y5c{bottom:204.186667pt;}
.y155{bottom:206.746667pt;}
.yce{bottom:209.306667pt;}
.y119{bottom:209.946667pt;}
.yf7{bottom:212.186667pt;}
.y136{bottom:213.960000pt;}
.y2a{bottom:214.266667pt;}
.ye9{bottom:214.906667pt;}
.y98{bottom:220.986667pt;}
.y5b{bottom:222.906667pt;}
.y154{bottom:225.466667pt;}
.yf6{bottom:230.906667pt;}
.ycd{bottom:232.186667pt;}
.y10d{bottom:232.666667pt;}
.y29{bottom:232.986667pt;}
.ye8{bottom:233.626667pt;}
.y97{bottom:239.706667pt;}
.y5a{bottom:241.626667pt;}
.y153{bottom:244.186667pt;}
.ycc{bottom:245.626667pt;}
.yf5{bottom:249.626667pt;}
.y10c{bottom:251.386667pt;}
.y28{bottom:251.706667pt;}
.ye7{bottom:252.346667pt;}
.y96{bottom:258.426667pt;}
.y59{bottom:260.346667pt;}
.ycb{bottom:262.586667pt;}
.y152{bottom:262.906667pt;}
.y118{bottom:266.746667pt;}
.yf4{bottom:268.346667pt;}
.y10b{bottom:270.106667pt;}
.y27{bottom:270.426667pt;}
.ye6{bottom:271.066667pt;}
.y95{bottom:277.146667pt;}
.y58{bottom:279.066667pt;}
.y151{bottom:281.626667pt;}
.yca{bottom:285.466667pt;}
.yf3{bottom:287.066667pt;}
.y10a{bottom:288.826667pt;}
.y26{bottom:289.146667pt;}
.ye5{bottom:289.786667pt;}
.y94{bottom:295.906667pt;}
.y57{bottom:297.826667pt;}
.y150{bottom:300.386667pt;}
.yc9{bottom:304.226667pt;}
.y117{bottom:304.866667pt;}
.yf2{bottom:305.826667pt;}
.y25{bottom:307.906667pt;}
.ye4{bottom:308.546667pt;}
.y93{bottom:314.626667pt;}
.y56{bottom:316.546667pt;}
.y14f{bottom:319.106667pt;}
.yc8{bottom:322.946667pt;}
.yf1{bottom:324.546667pt;}
.y24{bottom:326.626667pt;}
.ye3{bottom:327.266667pt;}
.y92{bottom:333.346667pt;}
.y55{bottom:335.266667pt;}
.y14e{bottom:337.826667pt;}
.yc7{bottom:341.666667pt;}
.yf0{bottom:343.266667pt;}
.y23{bottom:345.346667pt;}
.ye2{bottom:345.986667pt;}
.y91{bottom:352.066667pt;}
.y54{bottom:353.986667pt;}
.y14d{bottom:356.546667pt;}
.yc6{bottom:360.386667pt;}
.y109{bottom:361.666667pt;}
.yef{bottom:361.986667pt;}
.ye1{bottom:364.706667pt;}
.y90{bottom:365.506667pt;}
.y22{bottom:366.146667pt;}
.y53{bottom:372.706667pt;}
.y14c{bottom:375.266667pt;}
.yc5{bottom:379.106667pt;}
.yee{bottom:380.706667pt;}
.y8f{bottom:382.466667pt;}
.ye0{bottom:383.426667pt;}
.y21{bottom:384.706667pt;}
.y52{bottom:391.426667pt;}
.y14b{bottom:393.986667pt;}
.yc4{bottom:397.826667pt;}
.y8e{bottom:399.426667pt;}
.ydf{bottom:402.146667pt;}
.y51{bottom:410.146667pt;}
.y20{bottom:411.426667pt;}
.y14a{bottom:412.706667pt;}
.y8d{bottom:416.386667pt;}
.yc3{bottom:416.546667pt;}
.yed{bottom:418.146667pt;}
.yde{bottom:420.866667pt;}
.y50{bottom:428.866667pt;}
.y1f{bottom:430.146667pt;}
.y149{bottom:431.426667pt;}
.y8a{bottom:433.346667pt;}
.yc2{bottom:435.266667pt;}
.yec{bottom:436.866667pt;}
.ydd{bottom:439.586667pt;}
.y4f{bottom:447.586667pt;}
.y1e{bottom:448.866667pt;}
.y148{bottom:450.146667pt;}
.yc1{bottom:453.986667pt;}
.yeb{bottom:455.586667pt;}
.y111{bottom:455.906667pt;}
.ydc{bottom:458.306667pt;}
.y4e{bottom:466.306667pt;}
.y1d{bottom:467.586667pt;}
.y147{bottom:468.866667pt;}
.yc0{bottom:472.706667pt;}
.yea{bottom:474.306667pt;}
.ydb{bottom:477.026667pt;}
.y88{bottom:481.506667pt;}
.y6a{bottom:485.026667pt;}
.y1c{bottom:486.306667pt;}
.y146{bottom:487.586667pt;}
.ybf{bottom:491.426667pt;}
.y4d{bottom:493.026667pt;}
.yda{bottom:495.746667pt;}
.y69{bottom:503.746667pt;}
.y1b{bottom:505.026667pt;}
.y145{bottom:506.306667pt;}
.ybe{bottom:510.146667pt;}
.y4c{bottom:511.746667pt;}
.yd9{bottom:514.466667pt;}
.y87{bottom:514.626667pt;}
.y68{bottom:522.466667pt;}
.y1a{bottom:523.746667pt;}
.y144{bottom:525.026667pt;}
.ybd{bottom:528.866667pt;}
.y4b{bottom:530.493333pt;}
.y85{bottom:531.613333pt;}
.yd8{bottom:533.213333pt;}
.y67{bottom:541.213333pt;}
.y19{bottom:542.493333pt;}
.y143{bottom:543.773333pt;}
.ybc{bottom:547.613333pt;}
.y4a{bottom:549.213333pt;}
.yd7{bottom:551.933333pt;}
.y66{bottom:559.933333pt;}
.y18{bottom:561.213333pt;}
.y142{bottom:562.493333pt;}
.y83{bottom:563.773333pt;}
.ybb{bottom:566.333333pt;}
.y49{bottom:567.933333pt;}
.y65{bottom:578.493333pt;}
.y17{bottom:579.933333pt;}
.y141{bottom:581.213333pt;}
.yba{bottom:585.053333pt;}
.y48{bottom:586.493333pt;}
.y64{bottom:597.213333pt;}
.y16{bottom:598.653333pt;}
.y140{bottom:599.933333pt;}
.yb9{bottom:603.773333pt;}
.y47{bottom:605.213333pt;}
.y10e{bottom:607.133333pt;}
.y63{bottom:615.933333pt;}
.y15{bottom:617.373333pt;}
.y13f{bottom:618.653333pt;}
.yb8{bottom:622.493333pt;}
.y46{bottom:623.933333pt;}
.y76{bottom:634.653333pt;}
.y14{bottom:636.093333pt;}
.y13e{bottom:637.373333pt;}
.yb4{bottom:637.853333pt;}
.y45{bottom:642.653333pt;}
.y135{bottom:650.813333pt;}
.y75{bottom:653.373333pt;}
.y13{bottom:654.813333pt;}
.yb7{bottom:659.293333pt;}
.y44{bottom:661.373333pt;}
.y107{bottom:663.933333pt;}
.y74{bottom:672.093333pt;}
.y12{bottom:673.533333pt;}
.y43{bottom:680.093333pt;}
.yb6{bottom:680.733333pt;}
.y73{bottom:690.813333pt;}
.y11{bottom:692.253333pt;}
.y42{bottom:698.813333pt;}
.yaf{bottom:702.013333pt;}
.y13d{bottom:707.613333pt;}
.y106{bottom:707.933333pt;}
.y72{bottom:709.533333pt;}
.y10{bottom:710.973333pt;}
.y41{bottom:717.533333pt;}
.y128{bottom:721.373333pt;}
.yb1{bottom:723.453333pt;}
.y71{bottom:728.253333pt;}
.yf{bottom:731.613333pt;}
.y40{bottom:736.253333pt;}
.y70{bottom:746.973333pt;}
.ye{bottom:750.333333pt;}
.y3f{bottom:754.973333pt;}
.y139{bottom:764.573333pt;}
.y6f{bottom:765.693333pt;}
.yae{bottom:769.413333pt;}
.yd{bottom:773.733333pt;}
.y6e{bottom:784.453333pt;}
.yad{bottom:788.133333pt;}
.yc{bottom:792.453333pt;}
.y6d{bottom:803.173333pt;}
.yac{bottom:806.853333pt;}
.yb{bottom:811.173333pt;}
.y138{bottom:821.413333pt;}
.y6c{bottom:821.893333pt;}
.yab{bottom:825.573333pt;}
.ya{bottom:826.053333pt;}
.y124{bottom:827.653333pt;}
.y3e{bottom:829.893333pt;}
.y6b{bottom:840.613333pt;}
.yaa{bottom:844.293333pt;}
.y9{bottom:845.893333pt;}
.y3d{bottom:848.613333pt;}
.ya9{bottom:863.013333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:868.293333pt;}
.y134{bottom:878.213333pt;}
.ya8{bottom:881.733333pt;}
.y3b{bottom:886.053333pt;}
.y7{bottom:898.213333pt;}
.ya7{bottom:900.453333pt;}
.y3a{bottom:904.773333pt;}
.ya6{bottom:919.173333pt;}
.y11c{bottom:922.053333pt;}
.y39{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.ya5{bottom:932.773333pt;}
.y133{bottom:935.013333pt;}
.y38{bottom:942.213333pt;}
.ya4{bottom:949.573333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y36{bottom:979.653333pt;}
.ya0{bottom:982.853333pt;}
.y3{bottom:989.893333pt;}
.y130{bottom:991.813333pt;}
.y35{bottom:998.373333pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.hb{height:16.160000pt;}
.h10{height:16.320000pt;}
.hd{height:16.352000pt;}
.h15{height:18.720000pt;}
.hc{height:31.360000pt;}
.he{height:32.480000pt;}
.h12{height:32.640000pt;}
.h8{height:34.374375pt;}
.h14{height:37.440000pt;}
.h1e{height:37.472000pt;}
.ha{height:46.454062pt;}
.hf{height:47.520000pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h24{height:56.032000pt;}
.h19{height:56.160000pt;}
.h22{height:56.192000pt;}
.h3{height:58.563750pt;}
.h13{height:58.880000pt;}
.h7{height:60.288750pt;}
.h16{height:61.600000pt;}
.h4{height:63.656250pt;}
.h11{height:65.152000pt;}
.h1a{height:74.880000pt;}
.h1b{height:74.912000pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h1c{height:93.600000pt;}
.h20{height:93.760000pt;}
.h21{height:105.632000pt;}
.h17{height:114.080000pt;}
.h1f{height:125.952000pt;}
.h1d{height:207.866667pt;}
.h23{height:226.746667pt;}
.h18{height:301.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:47.520000pt;}
.w14{width:55.680000pt;}
.w13{width:58.752000pt;}
.w2b{width:63.200000pt;}
.w2c{width:67.392000pt;}
.w15{width:70.400000pt;}
.w27{width:75.872000pt;}
.w6{width:79.840000pt;}
.w2e{width:84.160000pt;}
.w1f{width:86.400000pt;}
.w19{width:86.432000pt;}
.w21{width:87.072000pt;}
.w16{width:87.392000pt;}
.w1a{width:88.000000pt;}
.w22{width:89.280000pt;}
.w24{width:89.440000pt;}
.w1b{width:90.112000pt;}
.w7{width:90.752000pt;}
.w1d{width:92.320000pt;}
.w1c{width:92.352000pt;}
.w18{width:92.512000pt;}
.w23{width:93.632000pt;}
.w25{width:96.000000pt;}
.w1e{width:102.912000pt;}
.wf{width:106.592000pt;}
.w9{width:108.160000pt;}
.w8{width:108.192000pt;}
.w28{width:108.960000pt;}
.w20{width:110.592000pt;}
.wa{width:113.472000pt;}
.w12{width:113.600000pt;}
.w26{width:118.112000pt;}
.w4{width:120.032000pt;}
.w2d{width:126.592000pt;}
.wc{width:133.312000pt;}
.we{width:134.426667pt;}
.wd{width:135.680000pt;}
.w10{width:140.026667pt;}
.w2a{width:149.626667pt;}
.w29{width:158.746667pt;}
.w11{width:159.226667pt;}
.w5{width:382.146667pt;}
.w2f{width:398.466667pt;}
.w3{width:502.973333pt;}
.wb{width:511.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.xb{left:18.880000pt;}
.x1f{left:25.792000pt;}
.x6{left:47.999988pt;}
.x2e{left:58.080000pt;}
.x1d{left:61.279988pt;}
.x10{left:66.879988pt;}
.x26{left:68.320000pt;}
.x7{left:71.999988pt;}
.x1e{left:75.680000pt;}
.x2d{left:96.031988pt;}
.x33{left:125.632000pt;}
.x16{left:130.112000pt;}
.x11{left:140.986667pt;}
.xa{left:145.466667pt;}
.x5{left:153.946655pt;}
.x20{left:162.746667pt;}
.x1c{left:177.626667pt;}
.x27{left:179.546667pt;}
.xd{left:225.946667pt;}
.x21{left:251.386667pt;}
.x2f{left:253.346667pt;}
.x3{left:259.266655pt;}
.xc{left:266.306667pt;}
.x28{left:267.426667pt;}
.x17{left:272.706667pt;}
.x13{left:274.946667pt;}
.x2{left:311.746655pt;}
.xe{left:317.346667pt;}
.x34{left:337.826667pt;}
.x22{left:342.146667pt;}
.x1b{left:344.546667pt;}
.x29{left:357.346667pt;}
.x30{left:362.946667pt;}
.x4{left:365.186655pt;}
.x9{left:396.866655pt;}
.x14{left:411.266667pt;}
.x1{left:426.173322pt;}
.x18{left:433.213333pt;}
.x23{left:435.293333pt;}
.x2a{left:451.613333pt;}
.x31{left:522.333333pt;}
.x24{left:528.253333pt;}
.xf{left:534.973333pt;}
.x2b{left:541.693333pt;}
.x15{left:546.333333pt;}
.x19{left:548.093333pt;}
.x1a{left:608.133333pt;}
.x2c{left:629.573333pt;}
.x25{left:631.813333pt;}
.x32{left:672.613333pt;}
.x8{left:687.973322pt;}
.x35{left:746.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; }
  