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



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

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ce74bc24eaf4d33596c81624.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_768b83c64043e42d72d2dcb8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ddd41386bee49b17fd13245.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1190cfe1de7251a1275dc40c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_94bebbb3cc2609c53faad91a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bc6624be4bfb7a10739006fd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b397377079bce9dcd286bed.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dda743bfb4798067d830a213.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.lsa{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.008400px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls5{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.110400px;}
.ls11{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.127200px;}
.ls8{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.540600px;}
.ls1a{letter-spacing:47.726640px;}
.ls18{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.564000px;}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.353600px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.065600px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._1{margin-left:-4.072200px;}
._8{margin-left:-2.163720px;}
._0{margin-left:-1.110000px;}
._2{width:1.144188px;}
._3{width:3.006000px;}
._a{width:4.056000px;}
._d{width:5.771400px;}
._c{width:7.043523px;}
._7{width:8.231399px;}
._6{width:9.258600px;}
._f{width:10.287734px;}
._b{width:11.422800px;}
._1f{width:14.729400px;}
._e{width:15.871800px;}
._26{width:17.314560px;}
._9{width:20.154609px;}
._5{width:21.165598px;}
._4{width:22.332600px;}
._16{width:23.386680px;}
._17{width:24.649200px;}
._2f{width:26.542800px;}
._12{width:30.161520px;}
._1d{width:31.563000px;}
._2c{width:32.885640px;}
._11{width:35.591040px;}
._1e{width:37.875600px;}
._15{width:39.799440px;}
._14{width:41.001840px;}
._25{width:42.865560px;}
._2b{width:45.329880px;}
._29{width:46.773360px;}
._2a{width:49.959720px;}
._1a{width:56.332440px;}
._1b{width:57.594960px;}
._20{width:59.578920px;}
._10{width:60.721200px;}
._28{width:64.809360px;}
._24{width:69.258240px;}
._18{width:74.007720px;}
._2e{width:77.404320px;}
._21{width:78.877440px;}
._32{width:80.681040px;}
._30{width:89.157960px;}
._31{width:90.296041px;}
._27{width:91.442520px;}
._2d{width:103.707000px;}
._23{width:110.921400px;}
._22{width:120.420360px;}
._19{width:121.502520px;}
._1c{width:136.652760px;}
._13{width:146.873160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y69{bottom:7.830000px;}
.y66{bottom:7.920000px;}
.y75{bottom:7.950000px;}
.y6c{bottom:25.380000px;}
.y68{bottom:25.470000px;}
.y74{bottom:25.500000px;}
.y6b{bottom:43.020000px;}
.y70{bottom:43.110000px;}
.y73{bottom:43.140000px;}
.y11b{bottom:44.910000px;}
.y115{bottom:45.000000px;}
.y6f{bottom:60.660000px;}
.y114{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y113{bottom:80.100000px;}
.y11f{bottom:80.190000px;}
.y11a{bottom:97.650000px;}
.y112{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.yfb{bottom:111.720000px;}
.y119{bottom:115.290000px;}
.yd7{bottom:120.720000px;}
.y151{bottom:123.330000px;}
.yfa{bottom:129.270000px;}
.yaa{bottom:134.130000px;}
.y126{bottom:136.290000px;}
.y5b{bottom:139.170000px;}
.y82{bottom:140.160000px;}
.y150{bottom:140.880000px;}
.y28{bottom:143.580000px;}
.yf9{bottom:146.910000px;}
.ya9{bottom:151.680000px;}
.y125{bottom:153.930000px;}
.yd6{bottom:156.270000px;}
.y5a{bottom:156.720000px;}
.y81{bottom:157.710000px;}
.y14f{bottom:158.430000px;}
.y27{bottom:161.130000px;}
.yf8{bottom:164.460000px;}
.ya8{bottom:169.320000px;}
.y124{bottom:171.480000px;}
.yd5{bottom:173.910000px;}
.y59{bottom:174.270000px;}
.y80{bottom:175.350000px;}
.y14e{bottom:176.070000px;}
.y26{bottom:178.680000px;}
.ya7{bottom:186.870000px;}
.y123{bottom:189.030000px;}
.yf7{bottom:191.100000px;}
.yd4{bottom:191.460000px;}
.y58{bottom:191.910000px;}
.y7f{bottom:192.900000px;}
.y14d{bottom:193.620000px;}
.y25{bottom:196.320000px;}
.y57{bottom:209.460000px;}
.y7e{bottom:210.450000px;}
.y14c{bottom:211.260000px;}
.ya6{bottom:222.510000px;}
.yf6{bottom:226.920000px;}
.y56{bottom:227.100000px;}
.y122{bottom:228.450000px;}
.y24{bottom:231.870000px;}
.ya5{bottom:240.060000px;}
.yd3{bottom:244.650000px;}
.y7d{bottom:246.090000px;}
.y14b{bottom:246.810000px;}
.y23{bottom:249.510000px;}
.ya4{bottom:257.610000px;}
.yd2{bottom:262.200000px;}
.y55{bottom:262.650000px;}
.y7c{bottom:263.640000px;}
.y14a{bottom:264.360000px;}
.y22{bottom:267.060000px;}
.ya3{bottom:275.250000px;}
.yd1{bottom:279.840000px;}
.y54{bottom:280.200000px;}
.y7b{bottom:281.190000px;}
.y149{bottom:282.000000px;}
.y21{bottom:284.610000px;}
.ya2{bottom:292.800000px;}
.yd0{bottom:297.390000px;}
.y53{bottom:297.840000px;}
.y7a{bottom:298.830000px;}
.y148{bottom:299.550000px;}
.y20{bottom:302.250000px;}
.yf5{bottom:310.440000px;}
.ycf{bottom:314.940000px;}
.y52{bottom:315.390000px;}
.y79{bottom:316.380000px;}
.y147{bottom:317.190000px;}
.y1f{bottom:319.800000px;}
.yf4{bottom:327.990000px;}
.ya1{bottom:328.440000px;}
.yce{bottom:332.580000px;}
.y51{bottom:332.940000px;}
.y78{bottom:334.020000px;}
.y11e{bottom:335.190000px;}
.y1e{bottom:337.440000px;}
.yf3{bottom:345.540000px;}
.ya0{bottom:345.990000px;}
.ycd{bottom:350.130000px;}
.y146{bottom:352.740000px;}
.y1d{bottom:354.990000px;}
.y50{bottom:359.580000px;}
.y77{bottom:360.930000px;}
.yf2{bottom:363.180000px;}
.y9f{bottom:363.540000px;}
.ycc{bottom:367.770000px;}
.y16b{bottom:369.750000px;}
.y145{bottom:370.290000px;}
.y121{bottom:380.190000px;}
.y9e{bottom:381.180000px;}
.y1c{bottom:381.900000px;}
.y16a{bottom:387.300000px;}
.y144{bottom:387.930000px;}
.y4f{bottom:395.130000px;}
.y9d{bottom:398.730000px;}
.ycb{bottom:403.320000px;}
.y143{bottom:405.480000px;}
.y76{bottom:406.560000px;}
.y4e{bottom:412.770000px;}
.y169{bottom:413.940000px;}
.yf1{bottom:416.370000px;}
.yca{bottom:420.870000px;}
.y142{bottom:423.120000px;}
.y120{bottom:425.100000px;}
.y1b{bottom:430.140000px;}
.y4d{bottom:430.320000px;}
.y168{bottom:431.490000px;}
.yf0{bottom:433.920000px;}
.y9c{bottom:434.370000px;}
.yc9{bottom:438.510000px;}
.y141{bottom:440.670000px;}
.y4c{bottom:447.870000px;}
.y1a{bottom:448.050000px;}
.y167{bottom:449.040000px;}
.yef{bottom:451.470000px;}
.y9b{bottom:451.920000px;}
.yc8{bottom:456.060000px;}
.y140{bottom:467.580000px;}
.y72{bottom:469.020000px;}
.yee{bottom:469.110000px;}
.y9a{bottom:469.470000px;}
.y118{bottom:470.040000px;}
.yc7{bottom:473.730000px;}
.y166{bottom:475.710000px;}
.y4b{bottom:483.540000px;}
.y19{bottom:485.160000px;}
.y99{bottom:487.140000px;}
.y165{bottom:493.260000px;}
.y4a{bottom:501.090000px;}
.y18{bottom:502.710000px;}
.y98{bottom:504.690000px;}
.yc6{bottom:509.280000px;}
.y11d{bottom:514.950000px;}
.y13f{bottom:515.850000px;}
.y49{bottom:518.730000px;}
.y164{bottom:519.900000px;}
.y17{bottom:520.260000px;}
.yed{bottom:522.330000px;}
.yc5{bottom:526.830000px;}
.y97{bottom:531.330000px;}
.y71{bottom:531.600000px;}
.y13e{bottom:533.490000px;}
.y16{bottom:537.900000px;}
.yec{bottom:539.880000px;}
.yc4{bottom:544.470000px;}
.y163{bottom:546.450000px;}
.y13d{bottom:551.040000px;}
.y48{bottom:554.280000px;}
.y15{bottom:555.450000px;}
.yeb{bottom:557.430000px;}
.y11c{bottom:559.860000px;}
.yc3{bottom:562.020000px;}
.y162{bottom:564.000000px;}
.y96{bottom:566.880000px;}
.y13c{bottom:568.680000px;}
.y47{bottom:571.830000px;}
.y14{bottom:573.090000px;}
.yea{bottom:575.070000px;}
.yc2{bottom:579.660000px;}
.y95{bottom:584.430000px;}
.y46{bottom:589.470000px;}
.y13{bottom:590.640000px;}
.y6e{bottom:594.060000px;}
.y94{bottom:602.070000px;}
.y13b{bottom:604.230000px;}
.y111{bottom:604.770000px;}
.yc1{bottom:606.210000px;}
.y45{bottom:607.020000px;}
.y12{bottom:608.190000px;}
.ye9{bottom:610.620000px;}
.y93{bottom:619.620000px;}
.y13a{bottom:621.780000px;}
.y44{bottom:624.660000px;}
.y11{bottom:625.830000px;}
.ye8{bottom:628.260000px;}
.y92{bottom:637.260000px;}
.y139{bottom:639.420000px;}
.yc0{bottom:641.760000px;}
.y10{bottom:643.380000px;}
.ye7{bottom:645.810000px;}
.y117{bottom:649.680000px;}
.y161{bottom:652.380000px;}
.y138{bottom:656.970000px;}
.ybf{bottom:659.400000px;}
.y43{bottom:660.210000px;}
.yf{bottom:661.020000px;}
.ye6{bottom:663.360000px;}
.y160{bottom:669.930000px;}
.y91{bottom:672.810000px;}
.y6d{bottom:674.160000px;}
.y137{bottom:674.520000px;}
.ybe{bottom:676.950000px;}
.y116{bottom:677.040000px;}
.y42{bottom:677.760000px;}
.ye{bottom:678.570000px;}
.ye5{bottom:681.000000px;}
.y90{bottom:690.360000px;}
.ybd{bottom:694.590000px;}
.y41{bottom:695.400000px;}
.yd{bottom:696.120000px;}
.y15f{bottom:696.570000px;}
.ye4{bottom:707.550000px;}
.y8f{bottom:708.000000px;}
.y136{bottom:710.160000px;}
.ybc{bottom:712.140000px;}
.y40{bottom:712.950000px;}
.yc{bottom:713.760000px;}
.y15e{bottom:714.120000px;}
.y6a{bottom:719.160000px;}
.y110{bottom:721.950000px;}
.y8e{bottom:725.550000px;}
.y135{bottom:727.710000px;}
.ybb{bottom:729.690000px;}
.y3f{bottom:730.590000px;}
.yb{bottom:740.670000px;}
.y8d{bottom:743.190000px;}
.y134{bottom:745.350000px;}
.yba{bottom:747.330000px;}
.y3e{bottom:748.140000px;}
.y8c{bottom:760.740000px;}
.y133{bottom:762.900000px;}
.y15d{bottom:767.310000px;}
.y10f{bottom:770.640000px;}
.y3d{bottom:775.050000px;}
.ye3{bottom:778.290000px;}
.y132{bottom:780.450000px;}
.y67{bottom:781.620000px;}
.yb9{bottom:782.880000px;}
.y15c{bottom:784.860000px;}
.ya{bottom:787.380000px;}
.ye2{bottom:795.930000px;}
.y8b{bottom:796.290000px;}
.yb8{bottom:800.520000px;}
.y10e{bottom:806.280000px;}
.y15b{bottom:811.500000px;}
.y8a{bottom:813.930000px;}
.y131{bottom:816.090000px;}
.yb7{bottom:818.070000px;}
.y9{bottom:823.200000px;}
.y3c{bottom:823.290000px;}
.y10d{bottom:823.830000px;}
.y65{bottom:826.530000px;}
.y15a{bottom:829.050000px;}
.y89{bottom:831.480000px;}
.y130{bottom:833.640000px;}
.yb6{bottom:835.620000px;}
.y3b{bottom:840.930000px;}
.y88{bottom:849.030000px;}
.y12f{bottom:851.280000px;}
.yb5{bottom:853.260000px;}
.y159{bottom:855.600000px;}
.y10c{bottom:856.410000px;}
.y3a{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.y87{bottom:866.670000px;}
.y12e{bottom:868.830000px;}
.yb4{bottom:870.810000px;}
.y158{bottom:873.240000px;}
.y10b{bottom:874.050000px;}
.y64{bottom:875.220000px;}
.y39{bottom:876.030000px;}
.y86{bottom:884.220000px;}
.yb3{bottom:888.450000px;}
.y10a{bottom:891.600000px;}
.y38{bottom:893.670000px;}
.y12d{bottom:895.380000px;}
.y7{bottom:898.980000px;}
.y157{bottom:899.790000px;}
.y85{bottom:901.860000px;}
.y109{bottom:909.150000px;}
.y63{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.y156{bottom:917.430000px;}
.yb2{bottom:924.000000px;}
.y108{bottom:926.700000px;}
.y62{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y12c{bottom:931.020000px;}
.ye1{bottom:937.410000px;}
.yb1{bottom:941.550000px;}
.y155{bottom:944.340000px;}
.y107{bottom:945.150000px;}
.y61{bottom:945.960000px;}
.y12b{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.ye0{bottom:954.960000px;}
.yb0{bottom:959.190000px;}
.y106{bottom:962.790000px;}
.y60{bottom:963.600000px;}
.y84{bottom:963.960000px;}
.y35{bottom:964.410000px;}
.y12a{bottom:966.210000px;}
.ydf{bottom:972.600000px;}
.yaf{bottom:976.740000px;}
.y105{bottom:980.340000px;}
.y83{bottom:981.600000px;}
.y34{bottom:981.960000px;}
.y129{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.yde{bottom:990.150000px;}
.y154{bottom:992.580000px;}
.yae{bottom:994.290000px;}
.y104{bottom:997.890000px;}
.y5f{bottom:999.150000px;}
.y33{bottom:999.600000px;}
.ydd{bottom:1007.790000px;}
.yad{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.y103{bottom:1015.560000px;}
.y128{bottom:1016.370000px;}
.y5e{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y153{bottom:1019.520000px;}
.ydc{bottom:1025.370000px;}
.y102{bottom:1033.110000px;}
.y127{bottom:1033.920000px;}
.y5d{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yac{bottom:1038.510000px;}
.y101{bottom:1051.560000px;}
.y5c{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y152{bottom:1056.870000px;}
.ydb{bottom:1060.920000px;}
.y100{bottom:1069.110000px;}
.y2f{bottom:1069.920000px;}
.yab{bottom:1074.420000px;}
.yda{bottom:1078.560000px;}
.yff{bottom:1086.750000px;}
.y2e{bottom:1087.560000px;}
.yd9{bottom:1096.110000px;}
.yfe{bottom:1104.300000px;}
.y2d{bottom:1105.110000px;}
.yd8{bottom:1113.750000px;}
.yfd{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.yfc{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h13{height:44.100000px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:61.740000px;}
.h10{height:61.793886px;}
.hf{height:61.860000px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.ha{height:74.953125px;}
.he{height:79.380000px;}
.h11{height:116.460000px;}
.h12{height:134.010000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:85.140000px;}
.w7{width:153.030000px;}
.w4{width:233.850000px;}
.w3{width:235.200000px;}
.w9{width:239.670000px;}
.w8{width:275.520000px;}
.w5{width:285.210000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.x7{left:95.039987px;}
.xc{left:111.239987px;}
.x8{left:122.039987px;}
.x9{left:154.620000px;}
.x2{left:209.819987px;}
.x5{left:304.680000px;}
.xa{left:308.460000px;}
.x6{left:539.250000px;}
.xb{left:584.790000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls5{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.098133pt;}
.ls11{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.113067pt;}
.ls8{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.480533pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls18{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.501333pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.869867pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.613867pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._1{margin-left:-3.619733pt;}
._8{margin-left:-1.923307pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.017056pt;}
._3{width:2.672000pt;}
._a{width:3.605334pt;}
._d{width:5.130133pt;}
._c{width:6.260909pt;}
._7{width:7.316799pt;}
._6{width:8.229867pt;}
._f{width:9.144652pt;}
._b{width:10.153600pt;}
._1f{width:13.092800pt;}
._e{width:14.108267pt;}
._26{width:15.390720pt;}
._9{width:17.915208pt;}
._5{width:18.813865pt;}
._4{width:19.851200pt;}
._16{width:20.788160pt;}
._17{width:21.910400pt;}
._2f{width:23.593600pt;}
._12{width:26.810240pt;}
._1d{width:28.056000pt;}
._2c{width:29.231680pt;}
._11{width:31.636480pt;}
._1e{width:33.667200pt;}
._15{width:35.377280pt;}
._14{width:36.446080pt;}
._25{width:38.102720pt;}
._2b{width:40.293227pt;}
._29{width:41.576320pt;}
._2a{width:44.408640pt;}
._1a{width:50.073280pt;}
._1b{width:51.195520pt;}
._20{width:52.959040pt;}
._10{width:53.974400pt;}
._28{width:57.608320pt;}
._24{width:61.562880pt;}
._18{width:65.784640pt;}
._2e{width:68.803840pt;}
._21{width:70.113280pt;}
._32{width:71.716480pt;}
._30{width:79.251520pt;}
._31{width:80.263148pt;}
._27{width:81.282240pt;}
._2d{width:92.184000pt;}
._23{width:98.596800pt;}
._22{width:107.040320pt;}
._19{width:108.002240pt;}
._1c{width:121.469120pt;}
._13{width:130.553920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:6.960000pt;}
.y66{bottom:7.040000pt;}
.y75{bottom:7.066667pt;}
.y6c{bottom:22.560000pt;}
.y68{bottom:22.640000pt;}
.y74{bottom:22.666667pt;}
.y6b{bottom:38.240000pt;}
.y70{bottom:38.320000pt;}
.y73{bottom:38.346667pt;}
.y11b{bottom:39.920000pt;}
.y115{bottom:40.000000pt;}
.y6f{bottom:53.920000pt;}
.y114{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y113{bottom:71.200000pt;}
.y11f{bottom:71.280000pt;}
.y11a{bottom:86.800000pt;}
.y112{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.yfb{bottom:99.306667pt;}
.y119{bottom:102.480000pt;}
.yd7{bottom:107.306667pt;}
.y151{bottom:109.626667pt;}
.yfa{bottom:114.906667pt;}
.yaa{bottom:119.226667pt;}
.y126{bottom:121.146667pt;}
.y5b{bottom:123.706667pt;}
.y82{bottom:124.586667pt;}
.y150{bottom:125.226667pt;}
.y28{bottom:127.626667pt;}
.yf9{bottom:130.586667pt;}
.ya9{bottom:134.826667pt;}
.y125{bottom:136.826667pt;}
.yd6{bottom:138.906667pt;}
.y5a{bottom:139.306667pt;}
.y81{bottom:140.186667pt;}
.y14f{bottom:140.826667pt;}
.y27{bottom:143.226667pt;}
.yf8{bottom:146.186667pt;}
.ya8{bottom:150.506667pt;}
.y124{bottom:152.426667pt;}
.yd5{bottom:154.586667pt;}
.y59{bottom:154.906667pt;}
.y80{bottom:155.866667pt;}
.y14e{bottom:156.506667pt;}
.y26{bottom:158.826667pt;}
.ya7{bottom:166.106667pt;}
.y123{bottom:168.026667pt;}
.yf7{bottom:169.866667pt;}
.yd4{bottom:170.186667pt;}
.y58{bottom:170.586667pt;}
.y7f{bottom:171.466667pt;}
.y14d{bottom:172.106667pt;}
.y25{bottom:174.506667pt;}
.y57{bottom:186.186667pt;}
.y7e{bottom:187.066667pt;}
.y14c{bottom:187.786667pt;}
.ya6{bottom:197.786667pt;}
.yf6{bottom:201.706667pt;}
.y56{bottom:201.866667pt;}
.y122{bottom:203.066667pt;}
.y24{bottom:206.106667pt;}
.ya5{bottom:213.386667pt;}
.yd3{bottom:217.466667pt;}
.y7d{bottom:218.746667pt;}
.y14b{bottom:219.386667pt;}
.y23{bottom:221.786667pt;}
.ya4{bottom:228.986667pt;}
.yd2{bottom:233.066667pt;}
.y55{bottom:233.466667pt;}
.y7c{bottom:234.346667pt;}
.y14a{bottom:234.986667pt;}
.y22{bottom:237.386667pt;}
.ya3{bottom:244.666667pt;}
.yd1{bottom:248.746667pt;}
.y54{bottom:249.066667pt;}
.y7b{bottom:249.946667pt;}
.y149{bottom:250.666667pt;}
.y21{bottom:252.986667pt;}
.ya2{bottom:260.266667pt;}
.yd0{bottom:264.346667pt;}
.y53{bottom:264.746667pt;}
.y7a{bottom:265.626667pt;}
.y148{bottom:266.266667pt;}
.y20{bottom:268.666667pt;}
.yf5{bottom:275.946667pt;}
.ycf{bottom:279.946667pt;}
.y52{bottom:280.346667pt;}
.y79{bottom:281.226667pt;}
.y147{bottom:281.946667pt;}
.y1f{bottom:284.266667pt;}
.yf4{bottom:291.546667pt;}
.ya1{bottom:291.946667pt;}
.yce{bottom:295.626667pt;}
.y51{bottom:295.946667pt;}
.y78{bottom:296.906667pt;}
.y11e{bottom:297.946667pt;}
.y1e{bottom:299.946667pt;}
.yf3{bottom:307.146667pt;}
.ya0{bottom:307.546667pt;}
.ycd{bottom:311.226667pt;}
.y146{bottom:313.546667pt;}
.y1d{bottom:315.546667pt;}
.y50{bottom:319.626667pt;}
.y77{bottom:320.826667pt;}
.yf2{bottom:322.826667pt;}
.y9f{bottom:323.146667pt;}
.ycc{bottom:326.906667pt;}
.y16b{bottom:328.666667pt;}
.y145{bottom:329.146667pt;}
.y121{bottom:337.946667pt;}
.y9e{bottom:338.826667pt;}
.y1c{bottom:339.466667pt;}
.y16a{bottom:344.266667pt;}
.y144{bottom:344.826667pt;}
.y4f{bottom:351.226667pt;}
.y9d{bottom:354.426667pt;}
.ycb{bottom:358.506667pt;}
.y143{bottom:360.426667pt;}
.y76{bottom:361.386667pt;}
.y4e{bottom:366.906667pt;}
.y169{bottom:367.946667pt;}
.yf1{bottom:370.106667pt;}
.yca{bottom:374.106667pt;}
.y142{bottom:376.106667pt;}
.y120{bottom:377.866667pt;}
.y1b{bottom:382.346667pt;}
.y4d{bottom:382.506667pt;}
.y168{bottom:383.546667pt;}
.yf0{bottom:385.706667pt;}
.y9c{bottom:386.106667pt;}
.yc9{bottom:389.786667pt;}
.y141{bottom:391.706667pt;}
.y4c{bottom:398.106667pt;}
.y1a{bottom:398.266667pt;}
.y167{bottom:399.146667pt;}
.yef{bottom:401.306667pt;}
.y9b{bottom:401.706667pt;}
.yc8{bottom:405.386667pt;}
.y140{bottom:415.626667pt;}
.y72{bottom:416.906667pt;}
.yee{bottom:416.986667pt;}
.y9a{bottom:417.306667pt;}
.y118{bottom:417.813333pt;}
.yc7{bottom:421.093333pt;}
.y166{bottom:422.853333pt;}
.y4b{bottom:429.813333pt;}
.y19{bottom:431.253333pt;}
.y99{bottom:433.013333pt;}
.y165{bottom:438.453333pt;}
.y4a{bottom:445.413333pt;}
.y18{bottom:446.853333pt;}
.y98{bottom:448.613333pt;}
.yc6{bottom:452.693333pt;}
.y11d{bottom:457.733333pt;}
.y13f{bottom:458.533333pt;}
.y49{bottom:461.093333pt;}
.y164{bottom:462.133333pt;}
.y17{bottom:462.453333pt;}
.yed{bottom:464.293333pt;}
.yc5{bottom:468.293333pt;}
.y97{bottom:472.293333pt;}
.y71{bottom:472.533333pt;}
.y13e{bottom:474.213333pt;}
.y16{bottom:478.133333pt;}
.yec{bottom:479.893333pt;}
.yc4{bottom:483.973333pt;}
.y163{bottom:485.733333pt;}
.y13d{bottom:489.813333pt;}
.y48{bottom:492.693333pt;}
.y15{bottom:493.733333pt;}
.yeb{bottom:495.493333pt;}
.y11c{bottom:497.653333pt;}
.yc3{bottom:499.573333pt;}
.y162{bottom:501.333333pt;}
.y96{bottom:503.893333pt;}
.y13c{bottom:505.493333pt;}
.y47{bottom:508.293333pt;}
.y14{bottom:509.413333pt;}
.yea{bottom:511.173333pt;}
.yc2{bottom:515.253333pt;}
.y95{bottom:519.493333pt;}
.y46{bottom:523.973333pt;}
.y13{bottom:525.013333pt;}
.y6e{bottom:528.053333pt;}
.y94{bottom:535.173333pt;}
.y13b{bottom:537.093333pt;}
.y111{bottom:537.573333pt;}
.yc1{bottom:538.853333pt;}
.y45{bottom:539.573333pt;}
.y12{bottom:540.613333pt;}
.ye9{bottom:542.773333pt;}
.y93{bottom:550.773333pt;}
.y13a{bottom:552.693333pt;}
.y44{bottom:555.253333pt;}
.y11{bottom:556.293333pt;}
.ye8{bottom:558.453333pt;}
.y92{bottom:566.453333pt;}
.y139{bottom:568.373333pt;}
.yc0{bottom:570.453333pt;}
.y10{bottom:571.893333pt;}
.ye7{bottom:574.053333pt;}
.y117{bottom:577.493333pt;}
.y161{bottom:579.893333pt;}
.y138{bottom:583.973333pt;}
.ybf{bottom:586.133333pt;}
.y43{bottom:586.853333pt;}
.yf{bottom:587.573333pt;}
.ye6{bottom:589.653333pt;}
.y160{bottom:595.493333pt;}
.y91{bottom:598.053333pt;}
.y6d{bottom:599.253333pt;}
.y137{bottom:599.573333pt;}
.ybe{bottom:601.733333pt;}
.y116{bottom:601.813333pt;}
.y42{bottom:602.453333pt;}
.ye{bottom:603.173333pt;}
.ye5{bottom:605.333333pt;}
.y90{bottom:613.653333pt;}
.ybd{bottom:617.413333pt;}
.y41{bottom:618.133333pt;}
.yd{bottom:618.773333pt;}
.y15f{bottom:619.173333pt;}
.ye4{bottom:628.933333pt;}
.y8f{bottom:629.333333pt;}
.y136{bottom:631.253333pt;}
.ybc{bottom:633.013333pt;}
.y40{bottom:633.733333pt;}
.yc{bottom:634.453333pt;}
.y15e{bottom:634.773333pt;}
.y6a{bottom:639.253333pt;}
.y110{bottom:641.733333pt;}
.y8e{bottom:644.933333pt;}
.y135{bottom:646.853333pt;}
.ybb{bottom:648.613333pt;}
.y3f{bottom:649.413333pt;}
.yb{bottom:658.373333pt;}
.y8d{bottom:660.613333pt;}
.y134{bottom:662.533333pt;}
.yba{bottom:664.293333pt;}
.y3e{bottom:665.013333pt;}
.y8c{bottom:676.213333pt;}
.y133{bottom:678.133333pt;}
.y15d{bottom:682.053333pt;}
.y10f{bottom:685.013333pt;}
.y3d{bottom:688.933333pt;}
.ye3{bottom:691.813333pt;}
.y132{bottom:693.733333pt;}
.y67{bottom:694.773333pt;}
.yb9{bottom:695.893333pt;}
.y15c{bottom:697.653333pt;}
.ya{bottom:699.893333pt;}
.ye2{bottom:707.493333pt;}
.y8b{bottom:707.813333pt;}
.yb8{bottom:711.573333pt;}
.y10e{bottom:716.693333pt;}
.y15b{bottom:721.333333pt;}
.y8a{bottom:723.493333pt;}
.y131{bottom:725.413333pt;}
.yb7{bottom:727.173333pt;}
.y9{bottom:731.733333pt;}
.y3c{bottom:731.813333pt;}
.y10d{bottom:732.293333pt;}
.y65{bottom:734.693333pt;}
.y15a{bottom:736.933333pt;}
.y89{bottom:739.093333pt;}
.y130{bottom:741.013333pt;}
.yb6{bottom:742.773333pt;}
.y3b{bottom:747.493333pt;}
.y88{bottom:754.693333pt;}
.y12f{bottom:756.693333pt;}
.yb5{bottom:758.453333pt;}
.y159{bottom:760.533333pt;}
.y10c{bottom:761.253333pt;}
.y3a{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.y87{bottom:770.373333pt;}
.y12e{bottom:772.293333pt;}
.yb4{bottom:774.053333pt;}
.y158{bottom:776.213333pt;}
.y10b{bottom:776.933333pt;}
.y64{bottom:777.973333pt;}
.y39{bottom:778.693333pt;}
.y86{bottom:785.973333pt;}
.yb3{bottom:789.733333pt;}
.y10a{bottom:792.533333pt;}
.y38{bottom:794.373333pt;}
.y12d{bottom:795.893333pt;}
.y7{bottom:799.093333pt;}
.y157{bottom:799.813333pt;}
.y85{bottom:801.653333pt;}
.y109{bottom:808.133333pt;}
.y63{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.y156{bottom:815.493333pt;}
.yb2{bottom:821.333333pt;}
.y108{bottom:823.733333pt;}
.y62{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y12c{bottom:827.573333pt;}
.ye1{bottom:833.253333pt;}
.yb1{bottom:836.933333pt;}
.y155{bottom:839.413333pt;}
.y107{bottom:840.133333pt;}
.y61{bottom:840.853333pt;}
.y12b{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.ye0{bottom:848.853333pt;}
.yb0{bottom:852.613333pt;}
.y106{bottom:855.813333pt;}
.y60{bottom:856.533333pt;}
.y84{bottom:856.853333pt;}
.y35{bottom:857.253333pt;}
.y12a{bottom:858.853333pt;}
.ydf{bottom:864.533333pt;}
.yaf{bottom:868.213333pt;}
.y105{bottom:871.413333pt;}
.y83{bottom:872.533333pt;}
.y34{bottom:872.853333pt;}
.y129{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.yde{bottom:880.133333pt;}
.y154{bottom:882.293333pt;}
.yae{bottom:883.813333pt;}
.y104{bottom:887.013333pt;}
.y5f{bottom:888.133333pt;}
.y33{bottom:888.533333pt;}
.ydd{bottom:895.813333pt;}
.yad{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.y103{bottom:902.720000pt;}
.y128{bottom:903.440000pt;}
.y5e{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y153{bottom:906.240000pt;}
.ydc{bottom:911.440000pt;}
.y102{bottom:918.320000pt;}
.y127{bottom:919.040000pt;}
.y5d{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yac{bottom:923.120000pt;}
.y101{bottom:934.720000pt;}
.y5c{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y152{bottom:939.440000pt;}
.ydb{bottom:943.040000pt;}
.y100{bottom:950.320000pt;}
.y2f{bottom:951.040000pt;}
.yab{bottom:955.040000pt;}
.yda{bottom:958.720000pt;}
.yff{bottom:966.000000pt;}
.y2e{bottom:966.720000pt;}
.yd9{bottom:974.320000pt;}
.yfe{bottom:981.600000pt;}
.y2d{bottom:982.320000pt;}
.yd8{bottom:990.000000pt;}
.yfd{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.yfc{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h13{height:39.200000pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:54.880000pt;}
.h10{height:54.927899pt;}
.hf{height:54.986667pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.ha{height:66.625000pt;}
.he{height:70.560000pt;}
.h11{height:103.520000pt;}
.h12{height:119.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:75.680000pt;}
.w7{width:136.026667pt;}
.w4{width:207.866667pt;}
.w3{width:209.066667pt;}
.w9{width:213.040000pt;}
.w8{width:244.906667pt;}
.w5{width:253.520000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.x7{left:84.479988pt;}
.xc{left:98.879988pt;}
.x8{left:108.479988pt;}
.x9{left:137.440000pt;}
.x2{left:186.506655pt;}
.x5{left:270.826667pt;}
.xa{left:274.186667pt;}
.x6{left:479.333333pt;}
.xb{left:519.813333pt;}
.x3{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  