
    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_b45f2ac76888442f750b087f.woff2')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_47918b70959eedb939ec23cb.woff2')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_c09ffd1f40c1a5d5f763cca1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_d330ea66a9f2dbbac2c0f86c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_1aa7fb9f994164c88c0429e3.woff2')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_4161e3910234d6d59ad4c983.woff2')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_cef94a279b81e20f1f9fb412.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_006b8144eb1e2266106ded8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.ls1a{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls10{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181200px;}
.ls18{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._4{margin-left:-3.547200px;}
._5{margin-left:-2.524800px;}
._0{margin-left:-1.050000px;}
._2{width:1.925160px;}
._a{width:3.242520px;}
._6{width:4.268400px;}
._7{width:5.831400px;}
._8{width:7.075086px;}
._c{width:9.013199px;}
._3{width:10.160400px;}
._1{width:11.668320px;}
._f{width:14.877600px;}
._e{width:15.931800px;}
._18{width:16.982280px;}
._d{width:18.216360px;}
._12{width:20.260440px;}
._9{width:21.402600px;}
._b{width:22.965840px;}
._11{width:24.386400px;}
._10{width:25.671240px;}
._1d{width:29.458800px;}
._19{width:31.799160px;}
._1a{width:32.825520px;}
._1b{width:33.972120px;}
._13{width:37.033920px;}
._2a{width:39.498840px;}
._14{width:45.210240px;}
._1c{width:47.240640px;}
._20{width:49.492440px;}
._35{width:51.157920px;}
._34{width:52.184160px;}
._23{width:53.345640px;}
._25{width:55.278240px;}
._24{width:56.693160px;}
._2b{width:59.422320px;}
._16{width:62.702280px;}
._28{width:68.236200px;}
._29{width:69.498720px;}
._21{width:74.308320px;}
._22{width:75.364200px;}
._17{width:76.592880px;}
._26{width:79.057800px;}
._27{width:80.200080px;}
._32{width:82.484640px;}
._33{width:83.566800px;}
._2e{width:88.737120px;}
._2f{width:89.759160px;}
._31{width:111.069600px;}
._30{width:112.123800px;}
._2c{width:115.129800px;}
._2d{width:116.332200px;}
._36{width:121.105440px;}
._1e{width:160.099560px;}
._1f{width:161.114520px;}
._15{width:196.772760px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:7.830000px;}
.yd7{bottom:7.920000px;}
.yd3{bottom:25.380000px;}
.yd6{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaf{bottom:115.770000px;}
.yfa{bottom:119.280000px;}
.y11f{bottom:121.170000px;}
.yd9{bottom:124.050000px;}
.y84{bottom:124.680000px;}
.y1ce{bottom:125.130000px;}
.y5e{bottom:130.980000px;}
.yae{bottom:133.320000px;}
.y147{bottom:137.460000px;}
.y83{bottom:142.320000px;}
.y1cd{bottom:142.680000px;}
.y29{bottom:145.560000px;}
.y5d{bottom:148.530000px;}
.y1b9{bottom:151.680000px;}
.yad{bottom:151.770000px;}
.y146{bottom:155.100000px;}
.y195{bottom:155.190000px;}
.yf9{bottom:155.730000px;}
.y11e{bottom:156.810000px;}
.y16d{bottom:158.070000px;}
.y82{bottom:159.870000px;}
.y28{bottom:163.110000px;}
.y5c{bottom:166.170000px;}
.yd8{bottom:168.960000px;}
.yac{bottom:169.320000px;}
.y145{bottom:172.650000px;}
.y194{bottom:172.740000px;}
.y16c{bottom:175.620000px;}
.y81{bottom:177.510000px;}
.y27{bottom:180.750000px;}
.y1cc{bottom:186.870000px;}
.yab{bottom:187.680000px;}
.yf8{bottom:191.280000px;}
.y11d{bottom:192.360000px;}
.y16b{bottom:193.260000px;}
.y80{bottom:195.060000px;}
.y1b8{bottom:195.870000px;}
.y26{bottom:198.300000px;}
.y144{bottom:199.200000px;}
.y193{bottom:199.380000px;}
.y5b{bottom:201.720000px;}
.yaa{bottom:206.130000px;}
.y16a{bottom:210.810000px;}
.y7f{bottom:212.610000px;}
.y1b7{bottom:213.510000px;}
.yd5{bottom:213.870000px;}
.y192{bottom:216.930000px;}
.y5a{bottom:219.270000px;}
.ya9{bottom:223.680000px;}
.y25{bottom:225.210000px;}
.yf7{bottom:226.830000px;}
.y11c{bottom:227.910000px;}
.y1b6{bottom:231.060000px;}
.y143{bottom:234.840000px;}
.y59{bottom:236.910000px;}
.ya8{bottom:242.130000px;}
.y191{bottom:243.570000px;}
.y169{bottom:246.360000px;}
.y7e{bottom:248.250000px;}
.y1cb{bottom:248.610000px;}
.y142{bottom:252.390000px;}
.y58{bottom:254.460000px;}
.y1b5{bottom:257.610000px;}
.yd2{bottom:258.870000px;}
.ya7{bottom:259.680000px;}
.y190{bottom:261.120000px;}
.yf6{bottom:262.470000px;}
.y11b{bottom:263.460000px;}
.y168{bottom:264.000000px;}
.y7d{bottom:265.800000px;}
.y141{bottom:269.940000px;}
.y57{bottom:272.100000px;}
.y24{bottom:273.450000px;}
.y1b4{bottom:275.250000px;}
.ya6{bottom:278.130000px;}
.y18f{bottom:278.670000px;}
.yf5{bottom:280.020000px;}
.y167{bottom:281.550000px;}
.y11a{bottom:281.910000px;}
.y7c{bottom:283.440000px;}
.y140{bottom:287.580000px;}
.y56{bottom:289.650000px;}
.y23{bottom:291.090000px;}
.y1ca{bottom:292.800000px;}
.y18e{bottom:296.310000px;}
.y166{bottom:299.190000px;}
.y119{bottom:300.360000px;}
.y7b{bottom:300.990000px;}
.y1b3{bottom:301.800000px;}
.y13f{bottom:305.130000px;}
.yf4{bottom:306.660000px;}
.y55{bottom:307.200000px;}
.y22{bottom:309.000000px;}
.y1c9{bottom:310.440000px;}
.y18d{bottom:313.860000px;}
.ya5{bottom:314.580000px;}
.y7a{bottom:318.540000px;}
.y118{bottom:318.810000px;}
.y1b2{bottom:319.440000px;}
.y13e{bottom:322.770000px;}
.y54{bottom:324.840000px;}
.yd1{bottom:325.110000px;}
.y1c8{bottom:327.990000px;}
.y165{bottom:334.740000px;}
.y117{bottom:336.360000px;}
.y1b1{bottom:336.990000px;}
.y18c{bottom:340.500000px;}
.yf3{bottom:342.210000px;}
.y79{bottom:345.180000px;}
.y21{bottom:345.990000px;}
.y13d{bottom:349.320000px;}
.ya4{bottom:350.130000px;}
.y53{bottom:351.390000px;}
.y164{bottom:352.290000px;}
.y1c7{bottom:354.540000px;}
.y116{bottom:354.720000px;}
.y18b{bottom:358.050000px;}
.yf2{bottom:359.760000px;}
.yd0{bottom:360.660000px;}
.y20{bottom:363.540000px;}
.y163{bottom:369.930000px;}
.y1c6{bottom:372.180000px;}
.y115{bottom:373.170000px;}
.ya3{bottom:376.770000px;}
.ycf{bottom:378.300000px;}
.y78{bottom:380.730000px;}
.y1f{bottom:381.180000px;}
.y18a{bottom:384.600000px;}
.y13c{bottom:384.870000px;}
.y52{bottom:387.300000px;}
.y162{bottom:387.480000px;}
.y114{bottom:391.530000px;}
.yf1{bottom:395.310000px;}
.yce{bottom:395.850000px;}
.y77{bottom:398.370000px;}
.y1e{bottom:398.730000px;}
.y189{bottom:402.240000px;}
.y13b{bottom:402.510000px;}
.y161{bottom:405.120000px;}
.y1b0{bottom:407.730000px;}
.y113{bottom:409.980000px;}
.ya2{bottom:412.320000px;}
.ycd{bottom:413.490000px;}
.yf0{bottom:413.760000px;}
.y76{bottom:415.920000px;}
.y1d{bottom:416.370000px;}
.y13a{bottom:420.060000px;}
.y160{bottom:422.670000px;}
.y1af{bottom:425.370000px;}
.y112{bottom:428.430000px;}
.y188{bottom:428.790000px;}
.ya1{bottom:429.870000px;}
.yef{bottom:432.210000px;}
.y75{bottom:433.470000px;}
.y1c{bottom:433.920000px;}
.y51{bottom:435.540000px;}
.y139{bottom:437.700000px;}
.ycc{bottom:440.040000px;}
.y1c5{bottom:442.920000px;}
.y187{bottom:446.340000px;}
.ya0{bottom:447.510000px;}
.y74{bottom:451.110000px;}
.y1b{bottom:451.470000px;}
.y1ae{bottom:451.920000px;}
.y50{bottom:453.180000px;}
.y138{bottom:455.250000px;}
.y15f{bottom:458.220000px;}
.y1c4{bottom:460.470000px;}
.y111{bottom:464.880000px;}
.y9f{bottom:465.060000px;}
.yee{bottom:468.660000px;}
.y1a{bottom:469.110000px;}
.y1ad{bottom:469.470000px;}
.y4f{bottom:470.760000px;}
.y186{bottom:473.010000px;}
.y15e{bottom:475.890000px;}
.ycb{bottom:475.980000px;}
.y137{bottom:481.830000px;}
.y9e{bottom:482.730000px;}
.y19{bottom:486.690000px;}
.y1ac{bottom:487.140000px;}
.y4e{bottom:488.400000px;}
.y185{bottom:490.560000px;}
.y15d{bottom:493.440000px;}
.y110{bottom:500.370000px;}
.yed{bottom:504.240000px;}
.y18{bottom:504.330000px;}
.y1c3{bottom:504.690000px;}
.y4d{bottom:505.950000px;}
.y9d{bottom:509.280000px;}
.y15c{bottom:511.080000px;}
.y1ab{bottom:513.690000px;}
.y136{bottom:517.470000px;}
.y10f{bottom:518.820000px;}
.y17{bottom:521.880000px;}
.y1c2{bottom:522.330000px;}
.y4c{bottom:523.500000px;}
.yca{bottom:524.220000px;}
.y15b{bottom:528.630000px;}
.y1aa{bottom:531.330000px;}
.y135{bottom:535.020000px;}
.y10e{bottom:537.270000px;}
.y16{bottom:539.430000px;}
.yec{bottom:539.790000px;}
.y4b{bottom:541.140000px;}
.yc9{bottom:541.860000px;}
.y9c{bottom:544.830000px;}
.y1c1{bottom:548.880000px;}
.y134{bottom:552.660000px;}
.y15a{bottom:555.540000px;}
.y10d{bottom:555.630000px;}
.y15{bottom:557.070000px;}
.y1a9{bottom:557.880000px;}
.y4a{bottom:558.690000px;}
.y9b{bottom:562.470000px;}
.y184{bottom:565.800000px;}
.y1c0{bottom:566.430000px;}
.y133{bottom:570.210000px;}
.y10c{bottom:574.080000px;}
.y14{bottom:574.620000px;}
.yeb{bottom:575.340000px;}
.y1a8{bottom:575.430000px;}
.y49{bottom:576.330000px;}
.yc8{bottom:577.410000px;}
.y9a{bottom:580.020000px;}
.y132{bottom:587.760000px;}
.y13{bottom:592.170000px;}
.y10b{bottom:592.530000px;}
.y73{bottom:592.620000px;}
.y183{bottom:592.710000px;}
.y1bf{bottom:593.070000px;}
.yea{bottom:593.790000px;}
.y48{bottom:593.880000px;}
.yc7{bottom:595.050000px;}
.y99{bottom:597.660000px;}
.y1a7{bottom:602.070000px;}
.y159{bottom:603.780000px;}
.y131{bottom:605.400000px;}
.y12{bottom:609.810000px;}
.y72{bottom:610.260000px;}
.y1be{bottom:610.620000px;}
.y10a{bottom:610.890000px;}
.y47{bottom:611.430000px;}
.ye9{bottom:612.240000px;}
.yc6{bottom:612.600000px;}
.y1a6{bottom:619.620000px;}
.y158{bottom:621.420000px;}
.y98{bottom:624.210000px;}
.y11{bottom:627.360000px;}
.y71{bottom:627.810000px;}
.y46{bottom:629.070000px;}
.y182{bottom:629.700000px;}
.ye8{bottom:629.790000px;}
.yc5{bottom:630.150000px;}
.y130{bottom:631.950000px;}
.y1a5{bottom:637.260000px;}
.y157{bottom:638.970000px;}
.y10{bottom:645.000000px;}
.y70{bottom:645.360000px;}
.y45{bottom:646.620000px;}
.y109{bottom:647.340000px;}
.y1bd{bottom:654.810000px;}
.y181{bottom:656.610000px;}
.yc4{bottom:656.790000px;}
.y97{bottom:660.120000px;}
.yf{bottom:662.550000px;}
.y1a4{bottom:663.810000px;}
.y44{bottom:664.260000px;}
.y156{bottom:665.880000px;}
.ye7{bottom:666.240000px;}
.y12f{bottom:667.590000px;}
.y6f{bottom:672.000000px;}
.ye{bottom:680.100000px;}
.y1a3{bottom:681.360000px;}
.y43{bottom:681.810000px;}
.y108{bottom:682.980000px;}
.y12e{bottom:685.140000px;}
.yc3{bottom:692.340000px;}
.y180{bottom:693.600000px;}
.yd{bottom:697.740000px;}
.y1a2{bottom:699.000000px;}
.y42{bottom:699.360000px;}
.ye6{bottom:701.790000px;}
.y12d{bottom:702.690000px;}
.y155{bottom:702.870000px;}
.y6e{bottom:707.550000px;}
.y96{bottom:708.360000px;}
.yc2{bottom:709.980000px;}
.y17f{bottom:711.240000px;}
.yc{bottom:715.290000px;}
.y41{bottom:717.000000px;}
.y107{bottom:718.530000px;}
.y12c{bottom:720.330000px;}
.y154{bottom:720.510000px;}
.y6d{bottom:725.190000px;}
.y1a1{bottom:725.550000px;}
.y95{bottom:726.000000px;}
.y17e{bottom:728.790000px;}
.yb{bottom:732.930000px;}
.y40{bottom:734.550000px;}
.ye5{bottom:737.430000px;}
.y153{bottom:738.060000px;}
.y6c{bottom:742.740000px;}
.y1a0{bottom:743.190000px;}
.y94{bottom:743.550000px;}
.yc1{bottom:745.440000px;}
.y17d{bottom:746.340000px;}
.y12b{bottom:747.240000px;}
.y3f{bottom:752.190000px;}
.y106{bottom:754.080000px;}
.y152{bottom:755.700000px;}
.ya{bottom:759.840000px;}
.y1bc{bottom:760.740000px;}
.y93{bottom:761.190000px;}
.yc0{bottom:763.890000px;}
.y17c{bottom:763.980000px;}
.y3e{bottom:769.740000px;}
.ye4{bottom:772.980000px;}
.y6b{bottom:778.290000px;}
.y92{bottom:778.740000px;}
.y105{bottom:780.720000px;}
.y17b{bottom:781.530000px;}
.ybf{bottom:782.340000px;}
.y151{bottom:782.610000px;}
.y3d{bottom:787.290000px;}
.ye3{bottom:790.530000px;}
.y12a{bottom:795.480000px;}
.y6a{bottom:795.930000px;}
.y91{bottom:796.290000px;}
.y17a{bottom:799.170000px;}
.ybe{bottom:800.700000px;}
.y3c{bottom:804.930000px;}
.y9{bottom:808.080000px;}
.y129{bottom:813.030000px;}
.y69{bottom:813.480000px;}
.y90{bottom:813.930000px;}
.y104{bottom:816.180000px;}
.y179{bottom:816.720000px;}
.ye2{bottom:817.170000px;}
.ybd{bottom:819.150000px;}
.y150{bottom:819.600000px;}
.y3b{bottom:822.480000px;}
.y128{bottom:830.670000px;}
.y68{bottom:831.030000px;}
.y8f{bottom:831.480000px;}
.y178{bottom:834.270000px;}
.y103{bottom:834.630000px;}
.y14f{bottom:837.150000px;}
.ybc{bottom:837.510000px;}
.y3a{bottom:840.030000px;}
.y8{bottom:843.900000px;}
.y127{bottom:848.220000px;}
.y67{bottom:848.670000px;}
.y8e{bottom:849.030000px;}
.y177{bottom:851.910000px;}
.ye1{bottom:852.720000px;}
.y14e{bottom:855.600000px;}
.y39{bottom:857.670000px;}
.y19f{bottom:858.030000px;}
.y126{bottom:865.860000px;}
.y66{bottom:866.220000px;}
.y8d{bottom:866.670000px;}
.y176{bottom:869.460000px;}
.ye0{bottom:870.360000px;}
.y102{bottom:871.080000px;}
.y14d{bottom:873.150000px;}
.ybb{bottom:873.960000px;}
.y38{bottom:875.220000px;}
.y19e{bottom:875.670000px;}
.y7{bottom:879.900000px;}
.y125{bottom:883.410000px;}
.y8c{bottom:884.220000px;}
.y175{bottom:887.100000px;}
.y14c{bottom:891.600000px;}
.y37{bottom:892.860000px;}
.y19d{bottom:893.220000px;}
.ydf{bottom:896.910000px;}
.yba{bottom:900.600000px;}
.y124{bottom:900.960000px;}
.y65{bottom:901.860000px;}
.y101{bottom:906.720000px;}
.y14b{bottom:909.150000px;}
.y36{bottom:910.410000px;}
.y1bb{bottom:910.860000px;}
.y174{bottom:914.010000px;}
.y6{bottom:915.630000px;}
.y123{bottom:918.600000px;}
.y64{bottom:919.410000px;}
.y19c{bottom:919.860000px;}
.y1ba{bottom:928.410000px;}
.yde{bottom:929.850000px;}
.yb9{bottom:936.150000px;}
.y63{bottom:936.960000px;}
.y19b{bottom:937.410000px;}
.y100{bottom:942.270000px;}
.y14a{bottom:945.600000px;}
.y35{bottom:945.960000px;}
.y173{bottom:951.270000px;}
.y5{bottom:951.540000px;}
.yb8{bottom:953.790000px;}
.y62{bottom:954.600000px;}
.y8b{bottom:954.960000px;}
.y34{bottom:963.600000px;}
.yb7{bottom:971.340000px;}
.y61{bottom:972.150000px;}
.y8a{bottom:972.600000px;}
.ydd{bottom:974.850000px;}
.yff{bottom:977.820000px;}
.y33{bottom:981.150000px;}
.y4{bottom:989.880000px;}
.y89{bottom:990.150000px;}
.yfe{bottom:996.270000px;}
.y32{bottom:998.790000px;}
.y19a{bottom:999.150000px;}
.y172{bottom:999.600000px;}
.yb6{bottom:1006.890000px;}
.y88{bottom:1007.790000px;}
.y3{bottom:1014.570000px;}
.y31{bottom:1016.370000px;}
.y199{bottom:1016.820000px;}
.y171{bottom:1017.180000px;}
.ydc{bottom:1019.790000px;}
.yb5{bottom:1024.560000px;}
.y87{bottom:1025.370000px;}
.yfd{bottom:1032.750000px;}
.y122{bottom:1033.560000px;}
.y30{bottom:1033.920000px;}
.y60{bottom:1034.370000px;}
.y170{bottom:1034.820000px;}
.yb4{bottom:1042.110000px;}
.y149{bottom:1042.920000px;}
.y5f{bottom:1051.920000px;}
.y16f{bottom:1052.370000px;}
.yb3{bottom:1059.750000px;}
.y148{bottom:1060.560000px;}
.y198{bottom:1060.920000px;}
.ydb{bottom:1064.700000px;}
.yfc{bottom:1068.300000px;}
.y121{bottom:1069.110000px;}
.y2f{bottom:1069.560000px;}
.y16e{bottom:1069.920000px;}
.y197{bottom:1078.560000px;}
.yb2{bottom:1086.300000px;}
.y2e{bottom:1087.110000px;}
.y86{bottom:1087.560000px;}
.y196{bottom:1096.110000px;}
.yfb{bottom:1103.850000px;}
.y120{bottom:1104.750000px;}
.y85{bottom:1105.110000px;}
.yda{bottom:1109.610000px;}
.yb1{bottom:1121.850000px;}
.y2d{bottom:1122.750000px;}
.yb0{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hb{height:44.100000px;}
.he{height:44.130000px;}
.hd{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h6{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:59.973223px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:37.710000px;}
.w4{width:49.590000px;}
.w6{width:83.790000px;}
.w7{width:121.800000px;}
.w5{width:210.360000px;}
.w8{width:248.580000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x7{left:107.280000px;}
.xc{left:111.239987px;}
.x5{left:122.039987px;}
.x8{left:157.590000px;}
.x2{left:251.759987px;}
.x9{left:368.670000px;}
.xa{left:453.270000px;}
.xb{left:575.880000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls10{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls18{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._4{margin-left:-3.153067pt;}
._5{margin-left:-2.244266pt;}
._0{margin-left:-0.933333pt;}
._2{width:1.711253pt;}
._a{width:2.882240pt;}
._6{width:3.794133pt;}
._7{width:5.183466pt;}
._8{width:6.288965pt;}
._c{width:8.011732pt;}
._3{width:9.031467pt;}
._1{width:10.371840pt;}
._f{width:13.224533pt;}
._e{width:14.161600pt;}
._18{width:15.095360pt;}
._d{width:16.192320pt;}
._12{width:18.009280pt;}
._9{width:19.024533pt;}
._b{width:20.414080pt;}
._11{width:21.676800pt;}
._10{width:22.818880pt;}
._1d{width:26.185600pt;}
._19{width:28.265920pt;}
._1a{width:29.178240pt;}
._1b{width:30.197440pt;}
._13{width:32.919040pt;}
._2a{width:35.110080pt;}
._14{width:40.186880pt;}
._1c{width:41.991680pt;}
._20{width:43.993280pt;}
._35{width:45.473707pt;}
._34{width:46.385920pt;}
._23{width:47.418347pt;}
._25{width:49.136213pt;}
._24{width:50.393920pt;}
._2b{width:52.819840pt;}
._16{width:55.735360pt;}
._28{width:60.654400pt;}
._29{width:61.776640pt;}
._21{width:66.051840pt;}
._22{width:66.990400pt;}
._17{width:68.082560pt;}
._26{width:70.273600pt;}
._27{width:71.288960pt;}
._32{width:73.319680pt;}
._33{width:74.281600pt;}
._2e{width:78.877440pt;}
._2f{width:79.785920pt;}
._31{width:98.728533pt;}
._30{width:99.665600pt;}
._2c{width:102.337600pt;}
._2d{width:103.406400pt;}
._36{width:107.649280pt;}
._1e{width:142.310720pt;}
._1f{width:143.212907pt;}
._15{width:174.909120pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:6.960000pt;}
.yd7{bottom:7.040000pt;}
.yd3{bottom:22.560000pt;}
.yd6{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaf{bottom:102.906667pt;}
.yfa{bottom:106.026667pt;}
.y11f{bottom:107.706667pt;}
.yd9{bottom:110.266667pt;}
.y84{bottom:110.826667pt;}
.y1ce{bottom:111.226667pt;}
.y5e{bottom:116.426667pt;}
.yae{bottom:118.506667pt;}
.y147{bottom:122.186667pt;}
.y83{bottom:126.506667pt;}
.y1cd{bottom:126.826667pt;}
.y29{bottom:129.386667pt;}
.y5d{bottom:132.026667pt;}
.y1b9{bottom:134.826667pt;}
.yad{bottom:134.906667pt;}
.y146{bottom:137.866667pt;}
.y195{bottom:137.946667pt;}
.yf9{bottom:138.426667pt;}
.y11e{bottom:139.386667pt;}
.y16d{bottom:140.506667pt;}
.y82{bottom:142.106667pt;}
.y28{bottom:144.986667pt;}
.y5c{bottom:147.706667pt;}
.yd8{bottom:150.186667pt;}
.yac{bottom:150.506667pt;}
.y145{bottom:153.466667pt;}
.y194{bottom:153.546667pt;}
.y16c{bottom:156.106667pt;}
.y81{bottom:157.786667pt;}
.y27{bottom:160.666667pt;}
.y1cc{bottom:166.106667pt;}
.yab{bottom:166.826667pt;}
.yf8{bottom:170.026667pt;}
.y11d{bottom:170.986667pt;}
.y16b{bottom:171.786667pt;}
.y80{bottom:173.386667pt;}
.y1b8{bottom:174.106667pt;}
.y26{bottom:176.266667pt;}
.y144{bottom:177.066667pt;}
.y193{bottom:177.226667pt;}
.y5b{bottom:179.306667pt;}
.yaa{bottom:183.226667pt;}
.y16a{bottom:187.386667pt;}
.y7f{bottom:188.986667pt;}
.y1b7{bottom:189.786667pt;}
.yd5{bottom:190.106667pt;}
.y192{bottom:192.826667pt;}
.y5a{bottom:194.906667pt;}
.ya9{bottom:198.826667pt;}
.y25{bottom:200.186667pt;}
.yf7{bottom:201.626667pt;}
.y11c{bottom:202.586667pt;}
.y1b6{bottom:205.386667pt;}
.y143{bottom:208.746667pt;}
.y59{bottom:210.586667pt;}
.ya8{bottom:215.226667pt;}
.y191{bottom:216.506667pt;}
.y169{bottom:218.986667pt;}
.y7e{bottom:220.666667pt;}
.y1cb{bottom:220.986667pt;}
.y142{bottom:224.346667pt;}
.y58{bottom:226.186667pt;}
.y1b5{bottom:228.986667pt;}
.yd2{bottom:230.106667pt;}
.ya7{bottom:230.826667pt;}
.y190{bottom:232.106667pt;}
.yf6{bottom:233.306667pt;}
.y11b{bottom:234.186667pt;}
.y168{bottom:234.666667pt;}
.y7d{bottom:236.266667pt;}
.y141{bottom:239.946667pt;}
.y57{bottom:241.866667pt;}
.y24{bottom:243.066667pt;}
.y1b4{bottom:244.666667pt;}
.ya6{bottom:247.226667pt;}
.y18f{bottom:247.706667pt;}
.yf5{bottom:248.906667pt;}
.y167{bottom:250.266667pt;}
.y11a{bottom:250.586667pt;}
.y7c{bottom:251.946667pt;}
.y140{bottom:255.626667pt;}
.y56{bottom:257.466667pt;}
.y23{bottom:258.746667pt;}
.y1ca{bottom:260.266667pt;}
.y18e{bottom:263.386667pt;}
.y166{bottom:265.946667pt;}
.y119{bottom:266.986667pt;}
.y7b{bottom:267.546667pt;}
.y1b3{bottom:268.266667pt;}
.y13f{bottom:271.226667pt;}
.yf4{bottom:272.586667pt;}
.y55{bottom:273.066667pt;}
.y22{bottom:274.666667pt;}
.y1c9{bottom:275.946667pt;}
.y18d{bottom:278.986667pt;}
.ya5{bottom:279.626667pt;}
.y7a{bottom:283.146667pt;}
.y118{bottom:283.386667pt;}
.y1b2{bottom:283.946667pt;}
.y13e{bottom:286.906667pt;}
.y54{bottom:288.746667pt;}
.yd1{bottom:288.986667pt;}
.y1c8{bottom:291.546667pt;}
.y165{bottom:297.546667pt;}
.y117{bottom:298.986667pt;}
.y1b1{bottom:299.546667pt;}
.y18c{bottom:302.666667pt;}
.yf3{bottom:304.186667pt;}
.y79{bottom:306.826667pt;}
.y21{bottom:307.546667pt;}
.y13d{bottom:310.506667pt;}
.ya4{bottom:311.226667pt;}
.y53{bottom:312.346667pt;}
.y164{bottom:313.146667pt;}
.y1c7{bottom:315.146667pt;}
.y116{bottom:315.306667pt;}
.y18b{bottom:318.266667pt;}
.yf2{bottom:319.786667pt;}
.yd0{bottom:320.586667pt;}
.y20{bottom:323.146667pt;}
.y163{bottom:328.826667pt;}
.y1c6{bottom:330.826667pt;}
.y115{bottom:331.706667pt;}
.ya3{bottom:334.906667pt;}
.ycf{bottom:336.266667pt;}
.y78{bottom:338.426667pt;}
.y1f{bottom:338.826667pt;}
.y18a{bottom:341.866667pt;}
.y13c{bottom:342.106667pt;}
.y52{bottom:344.266667pt;}
.y162{bottom:344.426667pt;}
.y114{bottom:348.026667pt;}
.yf1{bottom:351.386667pt;}
.yce{bottom:351.866667pt;}
.y77{bottom:354.106667pt;}
.y1e{bottom:354.426667pt;}
.y189{bottom:357.546667pt;}
.y13b{bottom:357.786667pt;}
.y161{bottom:360.106667pt;}
.y1b0{bottom:362.426667pt;}
.y113{bottom:364.426667pt;}
.ya2{bottom:366.506667pt;}
.ycd{bottom:367.546667pt;}
.yf0{bottom:367.786667pt;}
.y76{bottom:369.706667pt;}
.y1d{bottom:370.106667pt;}
.y13a{bottom:373.386667pt;}
.y160{bottom:375.706667pt;}
.y1af{bottom:378.106667pt;}
.y112{bottom:380.826667pt;}
.y188{bottom:381.146667pt;}
.ya1{bottom:382.106667pt;}
.yef{bottom:384.186667pt;}
.y75{bottom:385.306667pt;}
.y1c{bottom:385.706667pt;}
.y51{bottom:387.146667pt;}
.y139{bottom:389.066667pt;}
.ycc{bottom:391.146667pt;}
.y1c5{bottom:393.706667pt;}
.y187{bottom:396.746667pt;}
.ya0{bottom:397.786667pt;}
.y74{bottom:400.986667pt;}
.y1b{bottom:401.306667pt;}
.y1ae{bottom:401.706667pt;}
.y50{bottom:402.826667pt;}
.y138{bottom:404.666667pt;}
.y15f{bottom:407.306667pt;}
.y1c4{bottom:409.306667pt;}
.y111{bottom:413.226667pt;}
.y9f{bottom:413.386667pt;}
.yee{bottom:416.586667pt;}
.y1a{bottom:416.986667pt;}
.y1ad{bottom:417.306667pt;}
.y4f{bottom:418.453333pt;}
.y186{bottom:420.453333pt;}
.y15e{bottom:423.013333pt;}
.ycb{bottom:423.093333pt;}
.y137{bottom:428.293333pt;}
.y9e{bottom:429.093333pt;}
.y19{bottom:432.613333pt;}
.y1ac{bottom:433.013333pt;}
.y4e{bottom:434.133333pt;}
.y185{bottom:436.053333pt;}
.y15d{bottom:438.613333pt;}
.y110{bottom:444.773333pt;}
.yed{bottom:448.213333pt;}
.y18{bottom:448.293333pt;}
.y1c3{bottom:448.613333pt;}
.y4d{bottom:449.733333pt;}
.y9d{bottom:452.693333pt;}
.y15c{bottom:454.293333pt;}
.y1ab{bottom:456.613333pt;}
.y136{bottom:459.973333pt;}
.y10f{bottom:461.173333pt;}
.y17{bottom:463.893333pt;}
.y1c2{bottom:464.293333pt;}
.y4c{bottom:465.333333pt;}
.yca{bottom:465.973333pt;}
.y15b{bottom:469.893333pt;}
.y1aa{bottom:472.293333pt;}
.y135{bottom:475.573333pt;}
.y10e{bottom:477.573333pt;}
.y16{bottom:479.493333pt;}
.yec{bottom:479.813333pt;}
.y4b{bottom:481.013333pt;}
.yc9{bottom:481.653333pt;}
.y9c{bottom:484.293333pt;}
.y1c1{bottom:487.893333pt;}
.y134{bottom:491.253333pt;}
.y15a{bottom:493.813333pt;}
.y10d{bottom:493.893333pt;}
.y15{bottom:495.173333pt;}
.y1a9{bottom:495.893333pt;}
.y4a{bottom:496.613333pt;}
.y9b{bottom:499.973333pt;}
.y184{bottom:502.933333pt;}
.y1c0{bottom:503.493333pt;}
.y133{bottom:506.853333pt;}
.y10c{bottom:510.293333pt;}
.y14{bottom:510.773333pt;}
.yeb{bottom:511.413333pt;}
.y1a8{bottom:511.493333pt;}
.y49{bottom:512.293333pt;}
.yc8{bottom:513.253333pt;}
.y9a{bottom:515.573333pt;}
.y132{bottom:522.453333pt;}
.y13{bottom:526.373333pt;}
.y10b{bottom:526.693333pt;}
.y73{bottom:526.773333pt;}
.y183{bottom:526.853333pt;}
.y1bf{bottom:527.173333pt;}
.yea{bottom:527.813333pt;}
.y48{bottom:527.893333pt;}
.yc7{bottom:528.933333pt;}
.y99{bottom:531.253333pt;}
.y1a7{bottom:535.173333pt;}
.y159{bottom:536.693333pt;}
.y131{bottom:538.133333pt;}
.y12{bottom:542.053333pt;}
.y72{bottom:542.453333pt;}
.y1be{bottom:542.773333pt;}
.y10a{bottom:543.013333pt;}
.y47{bottom:543.493333pt;}
.ye9{bottom:544.213333pt;}
.yc6{bottom:544.533333pt;}
.y1a6{bottom:550.773333pt;}
.y158{bottom:552.373333pt;}
.y98{bottom:554.853333pt;}
.y11{bottom:557.653333pt;}
.y71{bottom:558.053333pt;}
.y46{bottom:559.173333pt;}
.y182{bottom:559.733333pt;}
.ye8{bottom:559.813333pt;}
.yc5{bottom:560.133333pt;}
.y130{bottom:561.733333pt;}
.y1a5{bottom:566.453333pt;}
.y157{bottom:567.973333pt;}
.y10{bottom:573.333333pt;}
.y70{bottom:573.653333pt;}
.y45{bottom:574.773333pt;}
.y109{bottom:575.413333pt;}
.y1bd{bottom:582.053333pt;}
.y181{bottom:583.653333pt;}
.yc4{bottom:583.813333pt;}
.y97{bottom:586.773333pt;}
.yf{bottom:588.933333pt;}
.y1a4{bottom:590.053333pt;}
.y44{bottom:590.453333pt;}
.y156{bottom:591.893333pt;}
.ye7{bottom:592.213333pt;}
.y12f{bottom:593.413333pt;}
.y6f{bottom:597.333333pt;}
.ye{bottom:604.533333pt;}
.y1a3{bottom:605.653333pt;}
.y43{bottom:606.053333pt;}
.y108{bottom:607.093333pt;}
.y12e{bottom:609.013333pt;}
.yc3{bottom:615.413333pt;}
.y180{bottom:616.533333pt;}
.yd{bottom:620.213333pt;}
.y1a2{bottom:621.333333pt;}
.y42{bottom:621.653333pt;}
.ye6{bottom:623.813333pt;}
.y12d{bottom:624.613333pt;}
.y155{bottom:624.773333pt;}
.y6e{bottom:628.933333pt;}
.y96{bottom:629.653333pt;}
.yc2{bottom:631.093333pt;}
.y17f{bottom:632.213333pt;}
.yc{bottom:635.813333pt;}
.y41{bottom:637.333333pt;}
.y107{bottom:638.693333pt;}
.y12c{bottom:640.293333pt;}
.y154{bottom:640.453333pt;}
.y6d{bottom:644.613333pt;}
.y1a1{bottom:644.933333pt;}
.y95{bottom:645.333333pt;}
.y17e{bottom:647.813333pt;}
.yb{bottom:651.493333pt;}
.y40{bottom:652.933333pt;}
.ye5{bottom:655.493333pt;}
.y153{bottom:656.053333pt;}
.y6c{bottom:660.213333pt;}
.y1a0{bottom:660.613333pt;}
.y94{bottom:660.933333pt;}
.yc1{bottom:662.613333pt;}
.y17d{bottom:663.413333pt;}
.y12b{bottom:664.213333pt;}
.y3f{bottom:668.613333pt;}
.y106{bottom:670.293333pt;}
.y152{bottom:671.733333pt;}
.ya{bottom:675.413333pt;}
.y1bc{bottom:676.213333pt;}
.y93{bottom:676.613333pt;}
.yc0{bottom:679.013333pt;}
.y17c{bottom:679.093333pt;}
.y3e{bottom:684.213333pt;}
.ye4{bottom:687.093333pt;}
.y6b{bottom:691.813333pt;}
.y92{bottom:692.213333pt;}
.y105{bottom:693.973333pt;}
.y17b{bottom:694.693333pt;}
.ybf{bottom:695.413333pt;}
.y151{bottom:695.653333pt;}
.y3d{bottom:699.813333pt;}
.ye3{bottom:702.693333pt;}
.y12a{bottom:707.093333pt;}
.y6a{bottom:707.493333pt;}
.y91{bottom:707.813333pt;}
.y17a{bottom:710.373333pt;}
.ybe{bottom:711.733333pt;}
.y3c{bottom:715.493333pt;}
.y9{bottom:718.293333pt;}
.y129{bottom:722.693333pt;}
.y69{bottom:723.093333pt;}
.y90{bottom:723.493333pt;}
.y104{bottom:725.493333pt;}
.y179{bottom:725.973333pt;}
.ye2{bottom:726.373333pt;}
.ybd{bottom:728.133333pt;}
.y150{bottom:728.533333pt;}
.y3b{bottom:731.093333pt;}
.y128{bottom:738.373333pt;}
.y68{bottom:738.693333pt;}
.y8f{bottom:739.093333pt;}
.y178{bottom:741.573333pt;}
.y103{bottom:741.893333pt;}
.y14f{bottom:744.133333pt;}
.ybc{bottom:744.453333pt;}
.y3a{bottom:746.693333pt;}
.y8{bottom:750.133333pt;}
.y127{bottom:753.973333pt;}
.y67{bottom:754.373333pt;}
.y8e{bottom:754.693333pt;}
.y177{bottom:757.253333pt;}
.ye1{bottom:757.973333pt;}
.y14e{bottom:760.533333pt;}
.y39{bottom:762.373333pt;}
.y19f{bottom:762.693333pt;}
.y126{bottom:769.653333pt;}
.y66{bottom:769.973333pt;}
.y8d{bottom:770.373333pt;}
.y176{bottom:772.853333pt;}
.ye0{bottom:773.653333pt;}
.y102{bottom:774.293333pt;}
.y14d{bottom:776.133333pt;}
.ybb{bottom:776.853333pt;}
.y38{bottom:777.973333pt;}
.y19e{bottom:778.373333pt;}
.y7{bottom:782.133333pt;}
.y125{bottom:785.253333pt;}
.y8c{bottom:785.973333pt;}
.y175{bottom:788.533333pt;}
.y14c{bottom:792.533333pt;}
.y37{bottom:793.653333pt;}
.y19d{bottom:793.973333pt;}
.ydf{bottom:797.253333pt;}
.yba{bottom:800.533333pt;}
.y124{bottom:800.853333pt;}
.y65{bottom:801.653333pt;}
.y101{bottom:805.973333pt;}
.y14b{bottom:808.133333pt;}
.y36{bottom:809.253333pt;}
.y1bb{bottom:809.653333pt;}
.y174{bottom:812.453333pt;}
.y6{bottom:813.893333pt;}
.y123{bottom:816.533333pt;}
.y64{bottom:817.253333pt;}
.y19c{bottom:817.653333pt;}
.y1ba{bottom:825.253333pt;}
.yde{bottom:826.533333pt;}
.yb9{bottom:832.133333pt;}
.y63{bottom:832.853333pt;}
.y19b{bottom:833.253333pt;}
.y100{bottom:837.573333pt;}
.y14a{bottom:840.533333pt;}
.y35{bottom:840.853333pt;}
.y173{bottom:845.573333pt;}
.y5{bottom:845.813333pt;}
.yb8{bottom:847.813333pt;}
.y62{bottom:848.533333pt;}
.y8b{bottom:848.853333pt;}
.y34{bottom:856.533333pt;}
.yb7{bottom:863.413333pt;}
.y61{bottom:864.133333pt;}
.y8a{bottom:864.533333pt;}
.ydd{bottom:866.533333pt;}
.yff{bottom:869.173333pt;}
.y33{bottom:872.133333pt;}
.y4{bottom:879.893333pt;}
.y89{bottom:880.133333pt;}
.yfe{bottom:885.573333pt;}
.y32{bottom:887.813333pt;}
.y19a{bottom:888.133333pt;}
.y172{bottom:888.533333pt;}
.yb6{bottom:895.013333pt;}
.y88{bottom:895.813333pt;}
.y3{bottom:901.840000pt;}
.y31{bottom:903.440000pt;}
.y199{bottom:903.840000pt;}
.y171{bottom:904.160000pt;}
.ydc{bottom:906.480000pt;}
.yb5{bottom:910.720000pt;}
.y87{bottom:911.440000pt;}
.yfd{bottom:918.000000pt;}
.y122{bottom:918.720000pt;}
.y30{bottom:919.040000pt;}
.y60{bottom:919.440000pt;}
.y170{bottom:919.840000pt;}
.yb4{bottom:926.320000pt;}
.y149{bottom:927.040000pt;}
.y5f{bottom:935.040000pt;}
.y16f{bottom:935.440000pt;}
.yb3{bottom:942.000000pt;}
.y148{bottom:942.720000pt;}
.y198{bottom:943.040000pt;}
.ydb{bottom:946.400000pt;}
.yfc{bottom:949.600000pt;}
.y121{bottom:950.320000pt;}
.y2f{bottom:950.720000pt;}
.y16e{bottom:951.040000pt;}
.y197{bottom:958.720000pt;}
.yb2{bottom:965.600000pt;}
.y2e{bottom:966.320000pt;}
.y86{bottom:966.720000pt;}
.y196{bottom:974.320000pt;}
.yfb{bottom:981.200000pt;}
.y120{bottom:982.000000pt;}
.y85{bottom:982.320000pt;}
.yda{bottom:986.320000pt;}
.yb1{bottom:997.200000pt;}
.y2d{bottom:998.000000pt;}
.yb0{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hb{height:39.200000pt;}
.he{height:39.226667pt;}
.hd{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h6{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:53.309531pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:33.520000pt;}
.w4{width:44.080000pt;}
.w6{width:74.480000pt;}
.w7{width:108.266667pt;}
.w5{width:186.986667pt;}
.w8{width:220.960000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x7{left:95.360000pt;}
.xc{left:98.879988pt;}
.x5{left:108.479988pt;}
.x8{left:140.080000pt;}
.x2{left:223.786655pt;}
.x9{left:327.706667pt;}
.xa{left:402.906667pt;}
.xb{left:511.893333pt;}
.x3{left:718.773322pt;}
}




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