
    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_b36e1c05438d2fa604067a53.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_38203c592d82c47c2eef82b0.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_41699ec0da6636b651778f77.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_d6c12f63e6b9c9f7e1b1c4f1.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_e765be968e95a9c83c1633f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.960000px;}
.ls12{letter-spacing:-0.798000px;}
.lsa{letter-spacing:-0.786000px;}
.ls7{letter-spacing:-0.463800px;}
.ls1a{letter-spacing:-0.431400px;}
.ls13{letter-spacing:-0.326400px;}
.lsd{letter-spacing:-0.268800px;}
.ls14{letter-spacing:-0.240600px;}
.ls19{letter-spacing:-0.214800px;}
.lsc{letter-spacing:-0.175800px;}
.ls6{letter-spacing:-0.132600px;}
.ls16{letter-spacing:-0.115800px;}
.ls20{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.107400px;}
.ls15{letter-spacing:-0.078600px;}
.ls25{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038880px;}
.ls1b{letter-spacing:0.044640px;}
.ls18{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls1e{letter-spacing:0.101400px;}
.ls1{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.174000px;}
.ls1d{letter-spacing:0.174240px;}
.ls24{letter-spacing:0.179280px;}
.ls28{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.186600px;}
.ls1c{letter-spacing:0.209520px;}
.ls3{letter-spacing:0.306000px;}
.ls2{letter-spacing:0.427680px;}
.ls27{letter-spacing:0.433440px;}
.ls23{letter-spacing:0.479520px;}
.ls2a{letter-spacing:0.660000px;}
.lse{letter-spacing:0.780000px;}
.ls1f{letter-spacing:4.494240px;}
.ls22{letter-spacing:12.186720px;}
.ls29{letter-spacing:28.026720px;}
.ls21{letter-spacing:42.570720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws17{word-spacing:-14.165760px;}
.ws9{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.692360px;}
.ws7{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.607160px;}
.ws11{word-spacing:-13.566360px;}
.ws10{word-spacing:-13.550400px;}
.ws6{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.440960px;}
.wsd{word-spacing:-13.398360px;}
.ws13{word-spacing:-13.396560px;}
.wsf{word-spacing:-13.389960px;}
.wse{word-spacing:-13.290960px;}
.wsa{word-spacing:-13.236960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws14{word-spacing:-8.722080px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._24{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.621680px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._33{margin-left:-4.017120px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.149120px;}
._28{width:2.419680px;}
._2c{width:3.727680px;}
._2a{width:4.845840px;}
._29{width:5.851200px;}
._2d{width:7.290720px;}
._2e{width:8.412480px;}
._2b{width:10.145520px;}
._2f{width:11.473920px;}
._32{width:12.481920px;}
._31{width:15.320160px;}
._30{width:16.426800px;}
._26{width:17.715600px;}
._36{width:19.422000px;}
._35{width:23.246640px;}
._34{width:24.621120px;}
._37{width:35.238720px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:6.660000px;}
.y110{bottom:6.690000px;}
.yda{bottom:6.840000px;}
.yd7{bottom:7.020000px;}
.yf0{bottom:10.800000px;}
.yd6{bottom:10.980000px;}
.y10e{bottom:17.310000px;}
.y10f{bottom:27.750000px;}
.ydc{bottom:50.760000px;}
.y6{bottom:59.760000px;}
.ye8{bottom:72.540000px;}
.y113{bottom:85.680000px;}
.y145{bottom:89.820000px;}
.y149{bottom:91.260000px;}
.yba{bottom:92.880000px;}
.yf3{bottom:93.240000px;}
.y86{bottom:94.320000px;}
.ye1{bottom:94.365000px;}
.y30{bottom:101.160000px;}
.y64{bottom:103.320000px;}
.y112{bottom:106.740000px;}
.yf2{bottom:108.360000px;}
.y144{bottom:110.880000px;}
.y148{bottom:112.320000px;}
.yb9{bottom:113.940000px;}
.y85{bottom:115.380000px;}
.y2f{bottom:122.220000px;}
.y14a{bottom:123.120000px;}
.y63{bottom:124.380000px;}
.y111{bottom:127.800000px;}
.yf1{bottom:130.140000px;}
.y143{bottom:131.940000px;}
.y147{bottom:133.380000px;}
.yb8{bottom:135.000000px;}
.y84{bottom:136.440000px;}
.y2e{bottom:143.280000px;}
.y62{bottom:145.440000px;}
.y10d{bottom:149.580000px;}
.yef{bottom:151.950000px;}
.y142{bottom:153.030000px;}
.y146{bottom:154.470000px;}
.yb7{bottom:156.090000px;}
.y83{bottom:157.530000px;}
.y2d{bottom:164.370000px;}
.y141{bottom:174.090000px;}
.yee{bottom:174.450000px;}
.y61{bottom:175.530000px;}
.yb6{bottom:177.150000px;}
.y82{bottom:178.590000px;}
.y2c{bottom:185.430000px;}
.y140{bottom:195.150000px;}
.y60{bottom:196.590000px;}
.yb4{bottom:198.930000px;}
.y10c{bottom:199.110000px;}
.y81{bottom:199.650000px;}
.yed{bottom:203.610000px;}
.y2b{bottom:206.490000px;}
.y13f{bottom:216.030000px;}
.y5f{bottom:217.650000px;}
.y10b{bottom:220.170000px;}
.y80{bottom:220.710000px;}
.yec{bottom:224.670000px;}
.yb3{bottom:227.370000px;}
.y2a{bottom:227.550000px;}
.y8e{bottom:229.710000px;}
.y13e{bottom:237.090000px;}
.y5e{bottom:238.710000px;}
.y10a{bottom:241.230000px;}
.y7f{bottom:241.770000px;}
.yeb{bottom:245.730000px;}
.yb2{bottom:248.430000px;}
.y29{bottom:248.610000px;}
.y8d{bottom:250.770000px;}
.y13d{bottom:258.150000px;}
.y5d{bottom:259.770000px;}
.ye7{bottom:260.850000px;}
.y109{bottom:262.290000px;}
.y7e{bottom:262.830000px;}
.yb1{bottom:269.490000px;}
.y28{bottom:269.670000px;}
.y8c{bottom:271.830000px;}
.y13c{bottom:279.210000px;}
.y5c{bottom:280.830000px;}
.yea{bottom:282.630000px;}
.y108{bottom:283.350000px;}
.yb0{bottom:290.550000px;}
.y27{bottom:290.730000px;}
.y7d{bottom:292.890000px;}
.y13b{bottom:300.270000px;}
.y5b{bottom:301.890000px;}
.ye9{bottom:304.230000px;}
.y107{bottom:304.410000px;}
.yaf{bottom:311.610000px;}
.y26{bottom:311.790000px;}
.y7c{bottom:313.950000px;}
.y13a{bottom:321.330000px;}
.y5a{bottom:322.950000px;}
.y106{bottom:325.470000px;}
.ye6{bottom:326.010000px;}
.yae{bottom:332.670000px;}
.y25{bottom:332.850000px;}
.y7b{bottom:335.010000px;}
.y139{bottom:342.390000px;}
.y59{bottom:344.010000px;}
.y105{bottom:346.530000px;}
.ye5{bottom:347.790000px;}
.yad{bottom:353.730000px;}
.y24{bottom:353.910000px;}
.y7a{bottom:356.070000px;}
.y138{bottom:363.450000px;}
.y58{bottom:365.070000px;}
.y104{bottom:367.590000px;}
.ye0{bottom:369.570000px;}
.yac{bottom:374.790000px;}
.y23{bottom:374.970000px;}
.y79{bottom:377.130000px;}
.y137{bottom:384.510000px;}
.y57{bottom:386.130000px;}
.y103{bottom:388.650000px;}
.ye4{bottom:391.350000px;}
.yab{bottom:395.850000px;}
.y22{bottom:396.030000px;}
.y78{bottom:398.190000px;}
.y136{bottom:405.615000px;}
.y56{bottom:407.235000px;}
.y102{bottom:409.755000px;}
.ye3{bottom:413.175000px;}
.yaa{bottom:416.955000px;}
.y21{bottom:417.135000px;}
.y77{bottom:419.295000px;}
.y135{bottom:426.675000px;}
.y55{bottom:428.295000px;}
.y101{bottom:430.815000px;}
.ye2{bottom:434.775000px;}
.ya9{bottom:438.015000px;}
.y20{bottom:438.195000px;}
.y76{bottom:440.355000px;}
.y134{bottom:447.735000px;}
.y54{bottom:449.355000px;}
.y100{bottom:451.875000px;}
.ydf{bottom:456.555000px;}
.ya8{bottom:459.075000px;}
.y1f{bottom:459.255000px;}
.y75{bottom:461.415000px;}
.yff{bottom:466.995000px;}
.y133{bottom:468.795000px;}
.y53{bottom:470.415000px;}
.yde{bottom:478.335000px;}
.ya7{bottom:480.135000px;}
.y1e{bottom:480.315000px;}
.y74{bottom:482.475000px;}
.yfe{bottom:488.775000px;}
.y132{bottom:489.855000px;}
.y52{bottom:491.475000px;}
.ydb{bottom:500.115000px;}
.ya6{bottom:501.195000px;}
.y1d{bottom:501.375000px;}
.y73{bottom:503.535000px;}
.y131{bottom:510.915000px;}
.yfd{bottom:511.275000px;}
.y51{bottom:512.535000px;}
.ydd{bottom:521.895000px;}
.ya5{bottom:522.255000px;}
.y1c{bottom:522.435000px;}
.y72{bottom:524.595000px;}
.y130{bottom:531.975000px;}
.y50{bottom:533.595000px;}
.yfc{bottom:540.435000px;}
.ya4{bottom:543.315000px;}
.y1b{bottom:543.495000px;}
.yd9{bottom:543.675000px;}
.y71{bottom:545.655000px;}
.y12f{bottom:553.035000px;}
.y4f{bottom:554.655000px;}
.yfb{bottom:561.495000px;}
.ya3{bottom:564.375000px;}
.y1a{bottom:564.555000px;}
.yd8{bottom:565.275000px;}
.y70{bottom:566.715000px;}
.y12e{bottom:574.095000px;}
.y4e{bottom:575.715000px;}
.yfa{bottom:582.555000px;}
.ya2{bottom:585.435000px;}
.y19{bottom:585.615000px;}
.y6f{bottom:587.775000px;}
.y12d{bottom:595.155000px;}
.y4d{bottom:596.775000px;}
.yf9{bottom:603.615000px;}
.ya1{bottom:606.495000px;}
.y18{bottom:606.675000px;}
.y6e{bottom:608.835000px;}
.y12c{bottom:616.215000px;}
.yd5{bottom:616.935000px;}
.y4c{bottom:617.835000px;}
.yf8{bottom:624.675000px;}
.ya0{bottom:627.555000px;}
.y17{bottom:627.735000px;}
.y6d{bottom:629.895000px;}
.y12b{bottom:637.275000px;}
.yd4{bottom:637.995000px;}
.y4b{bottom:638.895000px;}
.yf7{bottom:645.735000px;}
.y9f{bottom:648.615000px;}
.y6c{bottom:650.805000px;}
.y12a{bottom:658.365000px;}
.yd3{bottom:659.085000px;}
.y4a{bottom:659.805000px;}
.yf6{bottom:666.825000px;}
.y9e{bottom:669.705000px;}
.y6b{bottom:671.865000px;}
.y16{bottom:672.225000px;}
.y129{bottom:679.425000px;}
.yd2{bottom:680.145000px;}
.y49{bottom:680.865000px;}
.yf5{bottom:687.885000px;}
.y9d{bottom:690.765000px;}
.y6a{bottom:692.925000px;}
.y15{bottom:693.105000px;}
.y128{bottom:700.485000px;}
.yd1{bottom:701.205000px;}
.y48{bottom:701.925000px;}
.yf4{bottom:704.985000px;}
.y9c{bottom:711.825000px;}
.y69{bottom:713.985000px;}
.y14{bottom:714.165000px;}
.y127{bottom:721.545000px;}
.yd0{bottom:722.265000px;}
.y47{bottom:722.985000px;}
.y9b{bottom:732.885000px;}
.y68{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.y126{bottom:742.605000px;}
.ycf{bottom:743.325000px;}
.y46{bottom:744.045000px;}
.y9a{bottom:753.945000px;}
.y67{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.y125{bottom:763.665000px;}
.yce{bottom:764.385000px;}
.y45{bottom:765.105000px;}
.y99{bottom:775.005000px;}
.y66{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.y124{bottom:784.725000px;}
.ycd{bottom:785.445000px;}
.y44{bottom:786.165000px;}
.y98{bottom:796.065000px;}
.y65{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y123{bottom:805.785000px;}
.ycc{bottom:806.505000px;}
.y43{bottom:807.225000px;}
.y97{bottom:817.125000px;}
.y8b{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.y122{bottom:826.845000px;}
.ycb{bottom:827.565000px;}
.y42{bottom:828.285000px;}
.y96{bottom:838.185000px;}
.y8a{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.y121{bottom:847.905000px;}
.yca{bottom:848.625000px;}
.y41{bottom:849.345000px;}
.y95{bottom:859.245000px;}
.y89{bottom:861.405000px;}
.yd{bottom:863.745000px;}
.y120{bottom:868.965000px;}
.yc9{bottom:869.685000px;}
.y40{bottom:870.405000px;}
.y94{bottom:880.305000px;}
.y88{bottom:882.465000px;}
.yc{bottom:890.025000px;}
.yc8{bottom:890.745000px;}
.y3f{bottom:891.465000px;}
.y93{bottom:901.410000px;}
.y87{bottom:903.570000px;}
.yb{bottom:911.130000px;}
.yc7{bottom:911.850000px;}
.y3e{bottom:912.570000px;}
.y92{bottom:922.470000px;}
.yc6{bottom:926.970000px;}
.ya{bottom:927.870000px;}
.y11f{bottom:932.190000px;}
.y3d{bottom:933.630000px;}
.y91{bottom:943.530000px;}
.yc5{bottom:948.030000px;}
.y9{bottom:950.190000px;}
.y11e{bottom:953.250000px;}
.y3c{bottom:954.690000px;}
.y90{bottom:964.590000px;}
.yc4{bottom:969.090000px;}
.y11d{bottom:974.310000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y8f{bottom:981.690000px;}
.yc3{bottom:990.150000px;}
.y11c{bottom:995.370000px;}
.y3a{bottom:996.810000px;}
.y7{bottom:1009.050000px;}
.yc2{bottom:1011.210000px;}
.y11b{bottom:1016.430000px;}
.y39{bottom:1017.870000px;}
.yc1{bottom:1032.270000px;}
.y11a{bottom:1037.490000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.yc0{bottom:1053.330000px;}
.y119{bottom:1058.550000px;}
.y37{bottom:1059.990000px;}
.ybf{bottom:1074.390000px;}
.y118{bottom:1079.610000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.ybe{bottom:1095.450000px;}
.y117{bottom:1100.670000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y116{bottom:1115.790000px;}
.ybd{bottom:1116.510000px;}
.y34{bottom:1123.170000px;}
.y115{bottom:1136.850000px;}
.ybc{bottom:1137.570000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y114{bottom:1157.940000px;}
.ybb{bottom:1158.660000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h9{height:21.060000px;}
.ha{height:21.096000px;}
.hc{height:21.600000px;}
.hb{height:21.780000px;}
.hf{height:21.816000px;}
.h7{height:38.671172px;}
.h11{height:42.156000px;}
.h12{height:48.088125px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.hd{height:65.160000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h10{height:86.940000px;}
.h4{height:98.051133px;}
.he{height:108.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:53.820000px;}
.w9{width:63.720000px;}
.w8{width:63.936000px;}
.w17{width:74.340000px;}
.w18{width:74.556000px;}
.w19{width:85.140000px;}
.w1e{width:85.356000px;}
.w1b{width:85.500000px;}
.wd{width:94.500000px;}
.w1a{width:95.616000px;}
.w5{width:106.200000px;}
.w4{width:117.036000px;}
.w12{width:133.560000px;}
.w1d{width:137.880000px;}
.w10{width:148.860000px;}
.wb{width:158.250000px;}
.wf{width:159.510000px;}
.w14{width:180.750000px;}
.w15{width:185.430000px;}
.w11{width:196.095000px;}
.we{width:203.070000px;}
.w16{width:223.230000px;}
.w13{width:265.530000px;}
.w7{width:297.570000px;}
.w3{width:371.775000px;}
.w6{width:595.005000px;}
.wc{width:637.305000px;}
.w1c{width:638.385000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.094000px;}
.x6{left:53.999987px;}
.x1f{left:69.479987px;}
.x20{left:71.099987px;}
.x7{left:96.515987px;}
.x21{left:98.135987px;}
.xe{left:128.016000px;}
.x18{left:130.716000px;}
.xa{left:149.076000px;}
.x5{left:173.189987px;}
.x13{left:222.510000px;}
.x1e{left:265.350000px;}
.x3{left:286.634987px;}
.x17{left:313.634987px;}
.x2{left:350.534987px;}
.x9{left:352.514987px;}
.x19{left:396.255000px;}
.x4{left:419.114987px;}
.xf{left:425.595000px;}
.x14{left:436.035000px;}
.x1{left:479.264987px;}
.x10{left:489.525000px;}
.x1b{left:499.605000px;}
.xc{left:520.845000px;}
.x11{left:553.245000px;}
.x1a{left:577.005000px;}
.x1c{left:584.745000px;}
.x12{left:607.065000px;}
.x15{left:632.130000px;}
.xd{left:637.890000px;}
.x1d{left:680.370000px;}
.x8{left:695.489987px;}
.x16{left:732.389987px;}
.x22{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls12{letter-spacing:-0.709333pt;}
.lsa{letter-spacing:-0.698667pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls1a{letter-spacing:-0.383467pt;}
.ls13{letter-spacing:-0.290133pt;}
.lsd{letter-spacing:-0.238933pt;}
.ls14{letter-spacing:-0.213867pt;}
.ls19{letter-spacing:-0.190933pt;}
.lsc{letter-spacing:-0.156267pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls16{letter-spacing:-0.102933pt;}
.ls20{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.095467pt;}
.ls15{letter-spacing:-0.069867pt;}
.ls25{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034560pt;}
.ls1b{letter-spacing:0.039680pt;}
.ls18{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls1e{letter-spacing:0.090133pt;}
.ls1{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.154667pt;}
.ls1d{letter-spacing:0.154880pt;}
.ls24{letter-spacing:0.159360pt;}
.ls28{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.165867pt;}
.ls1c{letter-spacing:0.186240pt;}
.ls3{letter-spacing:0.272000pt;}
.ls2{letter-spacing:0.380160pt;}
.ls27{letter-spacing:0.385280pt;}
.ls23{letter-spacing:0.426240pt;}
.ls2a{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:3.994880pt;}
.ls22{letter-spacing:10.832640pt;}
.ls29{letter-spacing:24.912640pt;}
.ls21{letter-spacing:37.840640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.591787pt;}
.ws9{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.170987pt;}
.ws7{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.095253pt;}
.ws11{word-spacing:-12.058987pt;}
.ws10{word-spacing:-12.044800pt;}
.ws6{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.947520pt;}
.wsd{word-spacing:-11.909653pt;}
.ws13{word-spacing:-11.908053pt;}
.wsf{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.814187pt;}
.wsa{word-spacing:-11.766187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws14{word-spacing:-7.752960pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._24{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.441493pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._33{margin-left:-3.570773pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.021440pt;}
._28{width:2.150827pt;}
._2c{width:3.313493pt;}
._2a{width:4.307413pt;}
._29{width:5.201067pt;}
._2d{width:6.480640pt;}
._2e{width:7.477760pt;}
._2b{width:9.018240pt;}
._2f{width:10.199040pt;}
._32{width:11.095040pt;}
._31{width:13.617920pt;}
._30{width:14.601600pt;}
._26{width:15.747200pt;}
._36{width:17.264000pt;}
._35{width:20.663680pt;}
._34{width:21.885440pt;}
._37{width:31.323307pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:5.920000pt;}
.y110{bottom:5.946667pt;}
.yda{bottom:6.080000pt;}
.yd7{bottom:6.240000pt;}
.yf0{bottom:9.600000pt;}
.yd6{bottom:9.760000pt;}
.y10e{bottom:15.386667pt;}
.y10f{bottom:24.666667pt;}
.ydc{bottom:45.120000pt;}
.y6{bottom:53.120000pt;}
.ye8{bottom:64.480000pt;}
.y113{bottom:76.160000pt;}
.y145{bottom:79.840000pt;}
.y149{bottom:81.120000pt;}
.yba{bottom:82.560000pt;}
.yf3{bottom:82.880000pt;}
.y86{bottom:83.840000pt;}
.ye1{bottom:83.880000pt;}
.y30{bottom:89.920000pt;}
.y64{bottom:91.840000pt;}
.y112{bottom:94.880000pt;}
.yf2{bottom:96.320000pt;}
.y144{bottom:98.560000pt;}
.y148{bottom:99.840000pt;}
.yb9{bottom:101.280000pt;}
.y85{bottom:102.560000pt;}
.y2f{bottom:108.640000pt;}
.y14a{bottom:109.440000pt;}
.y63{bottom:110.560000pt;}
.y111{bottom:113.600000pt;}
.yf1{bottom:115.680000pt;}
.y143{bottom:117.280000pt;}
.y147{bottom:118.560000pt;}
.yb8{bottom:120.000000pt;}
.y84{bottom:121.280000pt;}
.y2e{bottom:127.360000pt;}
.y62{bottom:129.280000pt;}
.y10d{bottom:132.960000pt;}
.yef{bottom:135.066667pt;}
.y142{bottom:136.026667pt;}
.y146{bottom:137.306667pt;}
.yb7{bottom:138.746667pt;}
.y83{bottom:140.026667pt;}
.y2d{bottom:146.106667pt;}
.y141{bottom:154.746667pt;}
.yee{bottom:155.066667pt;}
.y61{bottom:156.026667pt;}
.yb6{bottom:157.466667pt;}
.y82{bottom:158.746667pt;}
.y2c{bottom:164.826667pt;}
.y140{bottom:173.466667pt;}
.y60{bottom:174.746667pt;}
.yb4{bottom:176.826667pt;}
.y10c{bottom:176.986667pt;}
.y81{bottom:177.466667pt;}
.yed{bottom:180.986667pt;}
.y2b{bottom:183.546667pt;}
.y13f{bottom:192.026667pt;}
.y5f{bottom:193.466667pt;}
.y10b{bottom:195.706667pt;}
.y80{bottom:196.186667pt;}
.yec{bottom:199.706667pt;}
.yb3{bottom:202.106667pt;}
.y2a{bottom:202.266667pt;}
.y8e{bottom:204.186667pt;}
.y13e{bottom:210.746667pt;}
.y5e{bottom:212.186667pt;}
.y10a{bottom:214.426667pt;}
.y7f{bottom:214.906667pt;}
.yeb{bottom:218.426667pt;}
.yb2{bottom:220.826667pt;}
.y29{bottom:220.986667pt;}
.y8d{bottom:222.906667pt;}
.y13d{bottom:229.466667pt;}
.y5d{bottom:230.906667pt;}
.ye7{bottom:231.866667pt;}
.y109{bottom:233.146667pt;}
.y7e{bottom:233.626667pt;}
.yb1{bottom:239.546667pt;}
.y28{bottom:239.706667pt;}
.y8c{bottom:241.626667pt;}
.y13c{bottom:248.186667pt;}
.y5c{bottom:249.626667pt;}
.yea{bottom:251.226667pt;}
.y108{bottom:251.866667pt;}
.yb0{bottom:258.266667pt;}
.y27{bottom:258.426667pt;}
.y7d{bottom:260.346667pt;}
.y13b{bottom:266.906667pt;}
.y5b{bottom:268.346667pt;}
.ye9{bottom:270.426667pt;}
.y107{bottom:270.586667pt;}
.yaf{bottom:276.986667pt;}
.y26{bottom:277.146667pt;}
.y7c{bottom:279.066667pt;}
.y13a{bottom:285.626667pt;}
.y5a{bottom:287.066667pt;}
.y106{bottom:289.306667pt;}
.ye6{bottom:289.786667pt;}
.yae{bottom:295.706667pt;}
.y25{bottom:295.866667pt;}
.y7b{bottom:297.786667pt;}
.y139{bottom:304.346667pt;}
.y59{bottom:305.786667pt;}
.y105{bottom:308.026667pt;}
.ye5{bottom:309.146667pt;}
.yad{bottom:314.426667pt;}
.y24{bottom:314.586667pt;}
.y7a{bottom:316.506667pt;}
.y138{bottom:323.066667pt;}
.y58{bottom:324.506667pt;}
.y104{bottom:326.746667pt;}
.ye0{bottom:328.506667pt;}
.yac{bottom:333.146667pt;}
.y23{bottom:333.306667pt;}
.y79{bottom:335.226667pt;}
.y137{bottom:341.786667pt;}
.y57{bottom:343.226667pt;}
.y103{bottom:345.466667pt;}
.ye4{bottom:347.866667pt;}
.yab{bottom:351.866667pt;}
.y22{bottom:352.026667pt;}
.y78{bottom:353.946667pt;}
.y136{bottom:360.546667pt;}
.y56{bottom:361.986667pt;}
.y102{bottom:364.226667pt;}
.ye3{bottom:367.266667pt;}
.yaa{bottom:370.626667pt;}
.y21{bottom:370.786667pt;}
.y77{bottom:372.706667pt;}
.y135{bottom:379.266667pt;}
.y55{bottom:380.706667pt;}
.y101{bottom:382.946667pt;}
.ye2{bottom:386.466667pt;}
.ya9{bottom:389.346667pt;}
.y20{bottom:389.506667pt;}
.y76{bottom:391.426667pt;}
.y134{bottom:397.986667pt;}
.y54{bottom:399.426667pt;}
.y100{bottom:401.666667pt;}
.ydf{bottom:405.826667pt;}
.ya8{bottom:408.066667pt;}
.y1f{bottom:408.226667pt;}
.y75{bottom:410.146667pt;}
.yff{bottom:415.106667pt;}
.y133{bottom:416.706667pt;}
.y53{bottom:418.146667pt;}
.yde{bottom:425.186667pt;}
.ya7{bottom:426.786667pt;}
.y1e{bottom:426.946667pt;}
.y74{bottom:428.866667pt;}
.yfe{bottom:434.466667pt;}
.y132{bottom:435.426667pt;}
.y52{bottom:436.866667pt;}
.ydb{bottom:444.546667pt;}
.ya6{bottom:445.506667pt;}
.y1d{bottom:445.666667pt;}
.y73{bottom:447.586667pt;}
.y131{bottom:454.146667pt;}
.yfd{bottom:454.466667pt;}
.y51{bottom:455.586667pt;}
.ydd{bottom:463.906667pt;}
.ya5{bottom:464.226667pt;}
.y1c{bottom:464.386667pt;}
.y72{bottom:466.306667pt;}
.y130{bottom:472.866667pt;}
.y50{bottom:474.306667pt;}
.yfc{bottom:480.386667pt;}
.ya4{bottom:482.946667pt;}
.y1b{bottom:483.106667pt;}
.yd9{bottom:483.266667pt;}
.y71{bottom:485.026667pt;}
.y12f{bottom:491.586667pt;}
.y4f{bottom:493.026667pt;}
.yfb{bottom:499.106667pt;}
.ya3{bottom:501.666667pt;}
.y1a{bottom:501.826667pt;}
.yd8{bottom:502.466667pt;}
.y70{bottom:503.746667pt;}
.y12e{bottom:510.306667pt;}
.y4e{bottom:511.746667pt;}
.yfa{bottom:517.826667pt;}
.ya2{bottom:520.386667pt;}
.y19{bottom:520.546667pt;}
.y6f{bottom:522.466667pt;}
.y12d{bottom:529.026667pt;}
.y4d{bottom:530.466667pt;}
.yf9{bottom:536.546667pt;}
.ya1{bottom:539.106667pt;}
.y18{bottom:539.266667pt;}
.y6e{bottom:541.186667pt;}
.y12c{bottom:547.746667pt;}
.yd5{bottom:548.386667pt;}
.y4c{bottom:549.186667pt;}
.yf8{bottom:555.266667pt;}
.ya0{bottom:557.826667pt;}
.y17{bottom:557.986667pt;}
.y6d{bottom:559.906667pt;}
.y12b{bottom:566.466667pt;}
.yd4{bottom:567.106667pt;}
.y4b{bottom:567.906667pt;}
.yf7{bottom:573.986667pt;}
.y9f{bottom:576.546667pt;}
.y6c{bottom:578.493333pt;}
.y12a{bottom:585.213333pt;}
.yd3{bottom:585.853333pt;}
.y4a{bottom:586.493333pt;}
.yf6{bottom:592.733333pt;}
.y9e{bottom:595.293333pt;}
.y6b{bottom:597.213333pt;}
.y16{bottom:597.533333pt;}
.y129{bottom:603.933333pt;}
.yd2{bottom:604.573333pt;}
.y49{bottom:605.213333pt;}
.yf5{bottom:611.453333pt;}
.y9d{bottom:614.013333pt;}
.y6a{bottom:615.933333pt;}
.y15{bottom:616.093333pt;}
.y128{bottom:622.653333pt;}
.yd1{bottom:623.293333pt;}
.y48{bottom:623.933333pt;}
.yf4{bottom:626.653333pt;}
.y9c{bottom:632.733333pt;}
.y69{bottom:634.653333pt;}
.y14{bottom:634.813333pt;}
.y127{bottom:641.373333pt;}
.yd0{bottom:642.013333pt;}
.y47{bottom:642.653333pt;}
.y9b{bottom:651.453333pt;}
.y68{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.y126{bottom:660.093333pt;}
.ycf{bottom:660.733333pt;}
.y46{bottom:661.373333pt;}
.y9a{bottom:670.173333pt;}
.y67{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.y125{bottom:678.813333pt;}
.yce{bottom:679.453333pt;}
.y45{bottom:680.093333pt;}
.y99{bottom:688.893333pt;}
.y66{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.y124{bottom:697.533333pt;}
.ycd{bottom:698.173333pt;}
.y44{bottom:698.813333pt;}
.y98{bottom:707.613333pt;}
.y65{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y123{bottom:716.253333pt;}
.ycc{bottom:716.893333pt;}
.y43{bottom:717.533333pt;}
.y97{bottom:726.333333pt;}
.y8b{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.y122{bottom:734.973333pt;}
.ycb{bottom:735.613333pt;}
.y42{bottom:736.253333pt;}
.y96{bottom:745.053333pt;}
.y8a{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.y121{bottom:753.693333pt;}
.yca{bottom:754.333333pt;}
.y41{bottom:754.973333pt;}
.y95{bottom:763.773333pt;}
.y89{bottom:765.693333pt;}
.yd{bottom:767.773333pt;}
.y120{bottom:772.413333pt;}
.yc9{bottom:773.053333pt;}
.y40{bottom:773.693333pt;}
.y94{bottom:782.493333pt;}
.y88{bottom:784.413333pt;}
.yc{bottom:791.133333pt;}
.yc8{bottom:791.773333pt;}
.y3f{bottom:792.413333pt;}
.y93{bottom:801.253333pt;}
.y87{bottom:803.173333pt;}
.yb{bottom:809.893333pt;}
.yc7{bottom:810.533333pt;}
.y3e{bottom:811.173333pt;}
.y92{bottom:819.973333pt;}
.yc6{bottom:823.973333pt;}
.ya{bottom:824.773333pt;}
.y11f{bottom:828.613333pt;}
.y3d{bottom:829.893333pt;}
.y91{bottom:838.693333pt;}
.yc5{bottom:842.693333pt;}
.y9{bottom:844.613333pt;}
.y11e{bottom:847.333333pt;}
.y3c{bottom:848.613333pt;}
.y90{bottom:857.413333pt;}
.yc4{bottom:861.413333pt;}
.y11d{bottom:866.053333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y8f{bottom:872.613333pt;}
.yc3{bottom:880.133333pt;}
.y11c{bottom:884.773333pt;}
.y3a{bottom:886.053333pt;}
.y7{bottom:896.933333pt;}
.yc2{bottom:898.853333pt;}
.y11b{bottom:903.493333pt;}
.y39{bottom:904.773333pt;}
.yc1{bottom:917.573333pt;}
.y11a{bottom:922.213333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.yc0{bottom:936.293333pt;}
.y119{bottom:940.933333pt;}
.y37{bottom:942.213333pt;}
.ybf{bottom:955.013333pt;}
.y118{bottom:959.653333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.ybe{bottom:973.733333pt;}
.y117{bottom:978.373333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y116{bottom:991.813333pt;}
.ybd{bottom:992.453333pt;}
.y34{bottom:998.373333pt;}
.y115{bottom:1010.533333pt;}
.ybc{bottom:1011.173333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y114{bottom:1029.280000pt;}
.ybb{bottom:1029.920000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h9{height:18.720000pt;}
.ha{height:18.752000pt;}
.hc{height:19.200000pt;}
.hb{height:19.360000pt;}
.hf{height:19.392000pt;}
.h7{height:34.374375pt;}
.h11{height:37.472000pt;}
.h12{height:42.745000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.hd{height:57.920000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h10{height:77.280000pt;}
.h4{height:87.156562pt;}
.he{height:96.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:47.840000pt;}
.w9{width:56.640000pt;}
.w8{width:56.832000pt;}
.w17{width:66.080000pt;}
.w18{width:66.272000pt;}
.w19{width:75.680000pt;}
.w1e{width:75.872000pt;}
.w1b{width:76.000000pt;}
.wd{width:84.000000pt;}
.w1a{width:84.992000pt;}
.w5{width:94.400000pt;}
.w4{width:104.032000pt;}
.w12{width:118.720000pt;}
.w1d{width:122.560000pt;}
.w10{width:132.320000pt;}
.wb{width:140.666667pt;}
.wf{width:141.786667pt;}
.w14{width:160.666667pt;}
.w15{width:164.826667pt;}
.w11{width:174.306667pt;}
.we{width:180.506667pt;}
.w16{width:198.426667pt;}
.w13{width:236.026667pt;}
.w7{width:264.506667pt;}
.w3{width:330.466667pt;}
.w6{width:528.893333pt;}
.wc{width:566.493333pt;}
.w1c{width:567.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.194667pt;}
.x6{left:47.999988pt;}
.x1f{left:61.759988pt;}
.x20{left:63.199988pt;}
.x7{left:85.791988pt;}
.x21{left:87.231988pt;}
.xe{left:113.792000pt;}
.x18{left:116.192000pt;}
.xa{left:132.512000pt;}
.x5{left:153.946655pt;}
.x13{left:197.786667pt;}
.x1e{left:235.866667pt;}
.x3{left:254.786655pt;}
.x17{left:278.786655pt;}
.x2{left:311.586655pt;}
.x9{left:313.346655pt;}
.x19{left:352.226667pt;}
.x4{left:372.546655pt;}
.xf{left:378.306667pt;}
.x14{left:387.586667pt;}
.x1{left:426.013322pt;}
.x10{left:435.133333pt;}
.x1b{left:444.093333pt;}
.xc{left:462.973333pt;}
.x11{left:491.773333pt;}
.x1a{left:512.893333pt;}
.x1c{left:519.773333pt;}
.x12{left:539.613333pt;}
.x15{left:561.893333pt;}
.xd{left:567.013333pt;}
.x1d{left:604.773333pt;}
.x8{left:618.213322pt;}
.x16{left:651.013322pt;}
.x22{left:746.079988pt;}
}




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