
    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_b8c327195112a0643c21cae7.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_1f213d4cc119353e315a68db.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_390e3b6a9141a27a0a8e2980.woff')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_af0100abe751019b650f2443.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_ee784331a52cf5bb3d71ee9b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9c5233fab0a42a6c23b0a756.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_3ed619bbbdce9be328ccfd7e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_f8e645961592470c2d3af51f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fc3f56fd96bc87bf90066f8a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7fb3deefb1e5564f77649f61.woff')format("woff");}.ffa{font-family:ffa;line-height:1.066406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d30d9c3b1fd26cf38a7c76ae.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_abc9ae93ba2afb89014c514d.woff')format("woff");}.ffc{font-family:ffc;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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:30.240000px;}
.v5{vertical-align:35.280000px;}
.ls14{letter-spacing:-0.444600px;}
.ls20{letter-spacing:-0.244200px;}
.ls12{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls1f{letter-spacing:-0.087000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.063600px;}
.lsa{letter-spacing:-0.008400px;}
.ls1e{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.005400px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.056640px;}
.ls17{letter-spacing:0.060480px;}
.ls9{letter-spacing:0.065400px;}
.ls13{letter-spacing:0.068400px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098280px;}
.ls3{letter-spacing:0.099600px;}
.ls1d{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.113400px;}
.lse{letter-spacing:0.116400px;}
.ls21{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.180600px;}
.ls19{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.453600px;}
.ls1b{letter-spacing:1.893600px;}
.ls25{letter-spacing:47.726640px;}
.ls22{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.369800px;}
.wsb{word-spacing:-13.339800px;}
.wsa{word-spacing:-13.294800px;}
.wsd{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.wse{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.982200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws13{word-spacing:-9.266400px;}
.ws12{word-spacing:-9.179400px;}
.wsf{word-spacing:-8.660400px;}
.ws3{word-spacing:-8.553600px;}
.ws11{word-spacing:-0.092880px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._9{margin-left:-4.268400px;}
._6{margin-left:-3.246600px;}
._7{margin-left:-2.130000px;}
._0{margin-left:-1.110000px;}
._2{width:1.017707px;}
._a{width:2.074342px;}
._8{width:3.214559px;}
._4{width:4.360440px;}
._3{width:5.484960px;}
._1{width:6.961788px;}
._c{width:8.068212px;}
._5{width:9.230772px;}
._f{width:10.360896px;}
._e{width:11.362680px;}
._13{width:14.289840px;}
._d{width:15.751440px;}
._b{width:16.773600px;}
._16{width:17.979491px;}
._14{width:20.320560px;}
._15{width:22.036800px;}
._12{width:23.476933px;}
._10{width:24.709320px;}
._11{width:25.737960px;}
._17{width:29.037960px;}
._18{width:30.137400px;}
._19{width:34.689240px;}
._1a{width:36.072000px;}
._1f{width:45.871560px;}
._1d{width:114.528600px;}
._1e{width:115.971480px;}
._1b{width:123.306120px;}
._1c{width:124.568640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:4.410000px;}
.yb3{bottom:4.500000px;}
.y107{bottom:6.750000px;}
.ya8{bottom:7.830000px;}
.ya6{bottom:7.920000px;}
.ydc{bottom:9.000000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:129.720000px;}
.yb1{bottom:137.370000px;}
.y151{bottom:139.620000px;}
.y29{bottom:140.340000px;}
.y10b{bottom:149.970000px;}
.y12c{bottom:150.060000px;}
.y175{bottom:151.680000px;}
.y150{bottom:157.170000px;}
.y28{bottom:157.980000px;}
.ydf{bottom:158.520000px;}
.y89{bottom:164.280000px;}
.y5a{bottom:165.270000px;}
.y12b{bottom:167.700000px;}
.y174{bottom:169.320000px;}
.y14f{bottom:174.720000px;}
.y27{bottom:175.530000px;}
.yb0{bottom:176.070000px;}
.y88{bottom:181.830000px;}
.y12a{bottom:185.250000px;}
.y26{bottom:193.170000px;}
.y173{bottom:195.870000px;}
.yb8{bottom:196.950000px;}
.y59{bottom:200.910000px;}
.y14e{bottom:201.360000px;}
.y129{bottom:202.800000px;}
.y25{bottom:210.720000px;}
.y172{bottom:213.510000px;}
.y87{bottom:214.140000px;}
.yaf{bottom:214.770000px;}
.y58{bottom:218.460000px;}
.y14d{bottom:218.910000px;}
.y128{bottom:220.440000px;}
.y86{bottom:221.700000px;}
.y24{bottom:228.270000px;}
.y171{bottom:231.060000px;}
.y57{bottom:236.100000px;}
.y14c{bottom:245.550000px;}
.y23{bottom:245.910000px;}
.yae{bottom:253.470000px;}
.y56{bottom:253.650000px;}
.y127{bottom:255.990000px;}
.y170{bottom:257.610000px;}
.y85{bottom:261.030000px;}
.y14b{bottom:263.100000px;}
.y22{bottom:263.460000px;}
.y55{bottom:271.200000px;}
.y126{bottom:273.630000px;}
.y16f{bottom:275.250000px;}
.yd6{bottom:276.060000px;}
.yfe{bottom:277.770000px;}
.y104{bottom:278.310000px;}
.y84{bottom:278.670000px;}
.y14a{bottom:289.650000px;}
.yd0{bottom:289.830000px;}
.y21{bottom:290.370000px;}
.y125{bottom:291.180000px;}
.yad{bottom:292.170000px;}
.y83{bottom:296.220000px;}
.yd9{bottom:296.850000px;}
.y54{bottom:297.840000px;}
.y16e{bottom:301.800000px;}
.y149{bottom:307.290000px;}
.ycf{bottom:307.470000px;}
.y124{bottom:308.730000px;}
.yd5{bottom:308.820000px;}
.yd8{bottom:310.980000px;}
.y103{bottom:311.070000px;}
.yfd{bottom:313.320000px;}
.y82{bottom:313.860000px;}
.y16d{bottom:319.440000px;}
.yce{bottom:325.020000px;}
.y123{bottom:326.370000px;}
.yac{bottom:329.610000px;}
.y81{bottom:331.410000px;}
.yf8{bottom:333.030000px;}
.y53{bottom:333.390000px;}
.y148{bottom:333.840000px;}
.y16c{bottom:336.990000px;}
.y20{bottom:338.700000px;}
.yab{bottom:341.760000px;}
.ycd{bottom:342.660000px;}
.yd4{bottom:343.740000px;}
.y122{bottom:343.920000px;}
.y102{bottom:345.990000px;}
.yfc{bottom:348.240000px;}
.y80{bottom:348.960000px;}
.yf7{bottom:350.580000px;}
.y52{bottom:350.940000px;}
.y147{bottom:351.480000px;}
.y1f{bottom:356.610000px;}
.yd3{bottom:357.780000px;}
.y101{bottom:360.030000px;}
.ycc{bottom:360.210000px;}
.y121{bottom:361.560000px;}
.yfb{bottom:362.280000px;}
.y16b{bottom:363.540000px;}
.y7f{bottom:366.600000px;}
.yd7{bottom:366.960000px;}
.yf6{bottom:368.220000px;}
.y51{bottom:368.580000px;}
.yaa{bottom:369.120000px;}
.yd2{bottom:369.210000px;}
.y100{bottom:371.460000px;}
.yfa{bottom:373.710000px;}
.ycb{bottom:377.760000px;}
.y146{bottom:378.390000px;}
.y120{bottom:379.110000px;}
.y16a{bottom:381.180000px;}
.y7e{bottom:384.150000px;}
.y50{bottom:386.130000px;}
.y1e{bottom:393.600000px;}
.ya9{bottom:396.480000px;}
.y11f{bottom:396.660000px;}
.y169{bottom:398.730000px;}
.y7d{bottom:401.790000px;}
.yf5{bottom:403.770000px;}
.y1d{bottom:411.150000px;}
.y4f{bottom:412.770000px;}
.yca{bottom:413.400000px;}
.y11e{bottom:414.300000px;}
.y7c{bottom:419.340000px;}
.yf4{bottom:421.410000px;}
.ya7{bottom:423.840000px;}
.y168{bottom:425.370000px;}
.y145{bottom:426.630000px;}
.y1c{bottom:428.790000px;}
.yc9{bottom:430.950000px;}
.y11d{bottom:431.850000px;}
.yf3{bottom:438.960000px;}
.y167{bottom:442.920000px;}
.y7b{bottom:445.890000px;}
.y1b{bottom:446.340000px;}
.y4e{bottom:448.320000px;}
.yc8{bottom:448.500000px;}
.y11c{bottom:449.490000px;}
.ya5{bottom:451.110000px;}
.y144{bottom:453.540000px;}
.y1a{bottom:463.890000px;}
.y4d{bottom:465.870000px;}
.yc7{bottom:466.140000px;}
.y166{bottom:469.470000px;}
.yf2{bottom:474.540000px;}
.y19{bottom:481.560000px;}
.y4c{bottom:483.540000px;}
.yc6{bottom:483.720000px;}
.y11b{bottom:485.070000px;}
.y165{bottom:487.140000px;}
.y143{bottom:490.560000px;}
.yf1{bottom:492.180000px;}
.yde{bottom:497.220000px;}
.y18{bottom:499.110000px;}
.ya4{bottom:499.830000px;}
.y4b{bottom:501.090000px;}
.yc5{bottom:501.360000px;}
.y11a{bottom:502.620000px;}
.yb7{bottom:506.220000px;}
.y142{bottom:508.200000px;}
.yf0{bottom:509.730000px;}
.y164{bottom:513.690000px;}
.ydd{bottom:514.770000px;}
.y17{bottom:516.750000px;}
.y7a{bottom:517.110000px;}
.yc4{bottom:518.910000px;}
.y119{bottom:520.260000px;}
.y10a{bottom:522.330000px;}
.y141{bottom:525.750000px;}
.yef{bottom:527.280000px;}
.y4a{bottom:527.730000px;}
.y163{bottom:531.330000px;}
.y16{bottom:534.300000px;}
.y79{bottom:534.750000px;}
.ya3{bottom:535.470000px;}
.yc3{bottom:536.460000px;}
.y118{bottom:537.810000px;}
.ydb{bottom:537.990000px;}
.yb6{bottom:541.770000px;}
.y140{bottom:543.300000px;}
.yee{bottom:544.920000px;}
.y162{bottom:548.880000px;}
.y15{bottom:551.850000px;}
.y78{bottom:552.300000px;}
.ya2{bottom:553.020000px;}
.yc2{bottom:554.100000px;}
.y117{bottom:555.450000px;}
.y109{bottom:557.970000px;}
.yed{bottom:562.470000px;}
.y49{bottom:563.640000px;}
.yb4{bottom:564.990000px;}
.y14{bottom:569.490000px;}
.y77{bottom:569.850000px;}
.y13f{bottom:570.210000px;}
.ya1{bottom:570.660000px;}
.y116{bottom:573.000000px;}
.y161{bottom:575.430000px;}
.y108{bottom:575.520000px;}
.yec{bottom:580.110000px;}
.y13{bottom:587.040000px;}
.y76{bottom:587.490000px;}
.ya0{bottom:588.210000px;}
.yc1{bottom:589.650000px;}
.y115{bottom:590.550000px;}
.y160{bottom:593.070000px;}
.y106{bottom:598.740000px;}
.y12{bottom:604.680000px;}
.y75{bottom:605.040000px;}
.y9f{bottom:605.760000px;}
.yc0{bottom:607.290000px;}
.y114{bottom:608.190000px;}
.y15f{bottom:610.620000px;}
.y48{bottom:611.880000px;}
.yeb{bottom:615.660000px;}
.y74{bottom:622.590000px;}
.ybf{bottom:624.840000px;}
.y113{bottom:625.740000px;}
.y47{bottom:629.430000px;}
.y11{bottom:631.590000px;}
.yea{bottom:633.210000px;}
.y13e{bottom:634.200000px;}
.y15e{bottom:637.260000px;}
.y73{bottom:640.230000px;}
.y9e{bottom:641.400000px;}
.ybe{bottom:642.390000px;}
.y46{bottom:647.070000px;}
.ye9{bottom:650.850000px;}
.y15d{bottom:654.810000px;}
.y72{bottom:657.780000px;}
.y9d{bottom:658.950000px;}
.y112{bottom:661.290000px;}
.y45{bottom:664.620000px;}
.ye8{bottom:668.400000px;}
.y13d{bottom:671.190000px;}
.y15c{bottom:672.360000px;}
.y71{bottom:675.420000px;}
.y9c{bottom:676.590000px;}
.ybd{bottom:678.030000px;}
.y111{bottom:678.930000px;}
.y10{bottom:679.830000px;}
.y44{bottom:682.260000px;}
.ye7{bottom:686.040000px;}
.y13c{bottom:688.830000px;}
.y70{bottom:692.970000px;}
.y9b{bottom:694.140000px;}
.ybc{bottom:695.580000px;}
.y110{bottom:696.480000px;}
.y15b{bottom:699.000000px;}
.y43{bottom:699.810000px;}
.ye6{bottom:703.590000px;}
.y9a{bottom:711.690000px;}
.yf{bottom:715.380000px;}
.y13b{bottom:715.650000px;}
.y15a{bottom:716.550000px;}
.y42{bottom:717.360000px;}
.y6f{bottom:719.520000px;}
.ye5{bottom:721.140000px;}
.ybb{bottom:722.220000px;}
.y10f{bottom:723.390000px;}
.y159{bottom:734.190000px;}
.y41{bottom:735.000000px;}
.ye4{bottom:738.780000px;}
.y99{bottom:747.330000px;}
.ye{bottom:751.200000px;}
.y40{bottom:752.550000px;}
.y13a{bottom:753.000000px;}
.y6e{bottom:755.160000px;}
.yba{bottom:757.770000px;}
.yd1{bottom:760.740000px;}
.yff{bottom:762.990000px;}
.y98{bottom:764.880000px;}
.yf9{bottom:765.240000px;}
.ye3{bottom:765.330000px;}
.y3f{bottom:770.190000px;}
.y10e{bottom:771.720000px;}
.y6d{bottom:772.710000px;}
.y158{bottom:778.290000px;}
.yb9{bottom:780.990000px;}
.y97{bottom:782.520000px;}
.yd{bottom:787.200000px;}
.y3e{bottom:787.740000px;}
.y10d{bottom:789.270000px;}
.y6c{bottom:790.350000px;}
.ye2{bottom:800.970000px;}
.y139{bottom:801.330000px;}
.y157{bottom:804.930000px;}
.y3d{bottom:805.290000px;}
.y6b{bottom:807.900000px;}
.yc{bottom:808.980000px;}
.y96{bottom:809.070000px;}
.y10c{bottom:812.490000px;}
.ye1{bottom:818.520000px;}
.y138{bottom:818.880000px;}
.y156{bottom:822.480000px;}
.y3c{bottom:822.930000px;}
.yb{bottom:823.200000px;}
.y6a{bottom:825.450000px;}
.y137{bottom:836.520000px;}
.y3b{bottom:840.480000px;}
.ye0{bottom:841.740000px;}
.y69{bottom:843.090000px;}
.ya{bottom:844.980000px;}
.yb2{bottom:845.070000px;}
.y155{bottom:849.030000px;}
.yda{bottom:855.240000px;}
.y3a{bottom:858.030000px;}
.y9{bottom:859.200000px;}
.y68{bottom:860.640000px;}
.y136{bottom:863.340000px;}
.y154{bottom:866.670000px;}
.y105{bottom:873.240000px;}
.y39{bottom:875.670000px;}
.y67{bottom:878.280000px;}
.y8{bottom:880.980000px;}
.y95{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y66{bottom:895.830000px;}
.y94{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y135{bottom:911.670000px;}
.y65{bottom:913.380000px;}
.y6{bottom:916.980000px;}
.y37{bottom:928.860000px;}
.y134{bottom:929.220000px;}
.y93{bottom:937.410000px;}
.y64{bottom:940.020000px;}
.y36{bottom:946.410000px;}
.y133{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y153{bottom:954.960000px;}
.y35{bottom:963.960000px;}
.y132{bottom:964.410000px;}
.y152{bottom:972.600000px;}
.y92{bottom:972.960000px;}
.y63{bottom:975.570000px;}
.y34{bottom:981.600000px;}
.y131{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y91{bottom:990.600000px;}
.y62{bottom:993.210000px;}
.y33{bottom:999.150000px;}
.y130{bottom:999.600000px;}
.y90{bottom:1008.150000px;}
.y61{bottom:1010.790000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y12f{bottom:1017.180000px;}
.y8f{bottom:1025.820000px;}
.y60{bottom:1028.340000px;}
.y31{bottom:1034.370000px;}
.y12e{bottom:1034.820000px;}
.y8e{bottom:1043.370000px;}
.y5f{bottom:1045.980000px;}
.y12d{bottom:1052.370000px;}
.y8d{bottom:1060.920000px;}
.y5e{bottom:1063.530000px;}
.y30{bottom:1069.920000px;}
.y8c{bottom:1078.560000px;}
.y5d{bottom:1081.170000px;}
.y2f{bottom:1087.560000px;}
.y8b{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y5c{bottom:1107.720000px;}
.y8a{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h11{height:26.640000px;}
.hf{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:41.661211px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h23{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.hd{height:70.777617px;}
.h4{height:72.985430px;}
.h13{height:74.004654px;}
.he{height:82.551445px;}
.h20{height:274.500000px;}
.h15{height:280.080000px;}
.h1f{height:281.280000px;}
.h16{height:287.850000px;}
.h1a{height:299.280000px;}
.h14{height:309.450000px;}
.h1d{height:312.780000px;}
.h1b{height:317.250000px;}
.h1c{height:317.280000px;}
.h22{height:342.030000px;}
.h21{height:351.030000px;}
.h17{height:373.530000px;}
.h1e{height:389.280000px;}
.h19{height:391.530000px;}
.h18{height:393.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:208.980000px;}
.w4{width:251.310000px;}
.wd{width:369.480000px;}
.we{width:371.730000px;}
.w9{width:371.910000px;}
.wa{width:385.230000px;}
.wb{width:608.010000px;}
.w6{width:638.700000px;}
.w5{width:650.400000px;}
.wc{width:671.010000px;}
.w7{width:673.260000px;}
.w8{width:675.510000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x29{left:71.549987px;}
.x14{left:75.959987px;}
.x25{left:78.659987px;}
.x2f{left:83.249987px;}
.x2d{left:98.999987px;}
.x18{left:108.900000px;}
.x11{left:109.980000px;}
.x27{left:111.150000px;}
.xa{left:121.410000px;}
.xe{left:127.260000px;}
.x1b{left:129.509987px;}
.x22{left:142.650000px;}
.x16{left:151.469987px;}
.x2a{left:188.579987px;}
.x2{left:202.799987px;}
.x28{left:208.919987px;}
.x6{left:216.120000px;}
.xd{left:240.509987px;}
.x10{left:249.239987px;}
.x4{left:319.349987px;}
.x1c{left:347.069987px;}
.x9{left:356.879987px;}
.x2b{left:361.380000px;}
.x15{left:363.179987px;}
.x1f{left:370.380000px;}
.x26{left:373.889987px;}
.x1e{left:377.130000px;}
.x20{left:383.880000px;}
.x21{left:387.479987px;}
.x2e{left:414.569987px;}
.x8{left:425.820000px;}
.x1d{left:439.950000px;}
.x2c{left:445.530000px;}
.x17{left:446.609987px;}
.x5{left:490.439987px;}
.x24{left:590.910000px;}
.x23{left:599.910000px;}
.xb{left:627.270000px;}
.xf{left:630.510000px;}
.xc{left:642.210000px;}
.x19{left:660.660000px;}
.x13{left:662.910000px;}
.x12{left:665.160000px;}
.x1a{left:667.410000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:26.880000pt;}
.v5{vertical-align:31.360000pt;}
.ls14{letter-spacing:-0.395200pt;}
.ls20{letter-spacing:-0.217067pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls1f{letter-spacing:-0.077333pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.056533pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls1e{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.004800pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.050347pt;}
.ls17{letter-spacing:0.053760pt;}
.ls9{letter-spacing:0.058133pt;}
.ls13{letter-spacing:0.060800pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087360pt;}
.ls3{letter-spacing:0.088533pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.100800pt;}
.lse{letter-spacing:0.103467pt;}
.ls21{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.160533pt;}
.ls19{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.403200pt;}
.ls1b{letter-spacing:1.683200pt;}
.ls25{letter-spacing:42.423680pt;}
.ls22{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.884267pt;}
.wsb{word-spacing:-11.857600pt;}
.wsa{word-spacing:-11.817600pt;}
.wsd{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.539733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws13{word-spacing:-8.236800pt;}
.ws12{word-spacing:-8.159467pt;}
.wsf{word-spacing:-7.698133pt;}
.ws3{word-spacing:-7.603200pt;}
.ws11{word-spacing:-0.082560pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._9{margin-left:-3.794133pt;}
._6{margin-left:-2.885867pt;}
._7{margin-left:-1.893333pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.904629pt;}
._a{width:1.843859pt;}
._8{width:2.857386pt;}
._4{width:3.875947pt;}
._3{width:4.875520pt;}
._1{width:6.188256pt;}
._c{width:7.171744pt;}
._5{width:8.205131pt;}
._f{width:9.209685pt;}
._e{width:10.100160pt;}
._13{width:12.702080pt;}
._d{width:14.001280pt;}
._b{width:14.909867pt;}
._16{width:15.981770pt;}
._14{width:18.062720pt;}
._15{width:19.588267pt;}
._12{width:20.868385pt;}
._10{width:21.963840pt;}
._11{width:22.878187pt;}
._17{width:25.811520pt;}
._18{width:26.788800pt;}
._19{width:30.834880pt;}
._1a{width:32.064000pt;}
._1f{width:40.774720pt;}
._1d{width:101.803200pt;}
._1e{width:103.085760pt;}
._1b{width:109.605440pt;}
._1c{width:110.727680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.920000pt;}
.yb3{bottom:4.000000pt;}
.y107{bottom:6.000000pt;}
.ya8{bottom:6.960000pt;}
.ya6{bottom:7.040000pt;}
.ydc{bottom:8.000000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:115.306667pt;}
.yb1{bottom:122.106667pt;}
.y151{bottom:124.106667pt;}
.y29{bottom:124.746667pt;}
.y10b{bottom:133.306667pt;}
.y12c{bottom:133.386667pt;}
.y175{bottom:134.826667pt;}
.y150{bottom:139.706667pt;}
.y28{bottom:140.426667pt;}
.ydf{bottom:140.906667pt;}
.y89{bottom:146.026667pt;}
.y5a{bottom:146.906667pt;}
.y12b{bottom:149.066667pt;}
.y174{bottom:150.506667pt;}
.y14f{bottom:155.306667pt;}
.y27{bottom:156.026667pt;}
.yb0{bottom:156.506667pt;}
.y88{bottom:161.626667pt;}
.y12a{bottom:164.666667pt;}
.y26{bottom:171.706667pt;}
.y173{bottom:174.106667pt;}
.yb8{bottom:175.066667pt;}
.y59{bottom:178.586667pt;}
.y14e{bottom:178.986667pt;}
.y129{bottom:180.266667pt;}
.y25{bottom:187.306667pt;}
.y172{bottom:189.786667pt;}
.y87{bottom:190.346667pt;}
.yaf{bottom:190.906667pt;}
.y58{bottom:194.186667pt;}
.y14d{bottom:194.586667pt;}
.y128{bottom:195.946667pt;}
.y86{bottom:197.066667pt;}
.y24{bottom:202.906667pt;}
.y171{bottom:205.386667pt;}
.y57{bottom:209.866667pt;}
.y14c{bottom:218.266667pt;}
.y23{bottom:218.586667pt;}
.yae{bottom:225.306667pt;}
.y56{bottom:225.466667pt;}
.y127{bottom:227.546667pt;}
.y170{bottom:228.986667pt;}
.y85{bottom:232.026667pt;}
.y14b{bottom:233.866667pt;}
.y22{bottom:234.186667pt;}
.y55{bottom:241.066667pt;}
.y126{bottom:243.226667pt;}
.y16f{bottom:244.666667pt;}
.yd6{bottom:245.386667pt;}
.yfe{bottom:246.906667pt;}
.y104{bottom:247.386667pt;}
.y84{bottom:247.706667pt;}
.y14a{bottom:257.466667pt;}
.yd0{bottom:257.626667pt;}
.y21{bottom:258.106667pt;}
.y125{bottom:258.826667pt;}
.yad{bottom:259.706667pt;}
.y83{bottom:263.306667pt;}
.yd9{bottom:263.866667pt;}
.y54{bottom:264.746667pt;}
.y16e{bottom:268.266667pt;}
.y149{bottom:273.146667pt;}
.ycf{bottom:273.306667pt;}
.y124{bottom:274.426667pt;}
.yd5{bottom:274.506667pt;}
.yd8{bottom:276.426667pt;}
.y103{bottom:276.506667pt;}
.yfd{bottom:278.506667pt;}
.y82{bottom:278.986667pt;}
.y16d{bottom:283.946667pt;}
.yce{bottom:288.906667pt;}
.y123{bottom:290.106667pt;}
.yac{bottom:292.986667pt;}
.y81{bottom:294.586667pt;}
.yf8{bottom:296.026667pt;}
.y53{bottom:296.346667pt;}
.y148{bottom:296.746667pt;}
.y16c{bottom:299.546667pt;}
.y20{bottom:301.066667pt;}
.yab{bottom:303.786667pt;}
.ycd{bottom:304.586667pt;}
.yd4{bottom:305.546667pt;}
.y122{bottom:305.706667pt;}
.y102{bottom:307.546667pt;}
.yfc{bottom:309.546667pt;}
.y80{bottom:310.186667pt;}
.yf7{bottom:311.626667pt;}
.y52{bottom:311.946667pt;}
.y147{bottom:312.426667pt;}
.y1f{bottom:316.986667pt;}
.yd3{bottom:318.026667pt;}
.y101{bottom:320.026667pt;}
.ycc{bottom:320.186667pt;}
.y121{bottom:321.386667pt;}
.yfb{bottom:322.026667pt;}
.y16b{bottom:323.146667pt;}
.y7f{bottom:325.866667pt;}
.yd7{bottom:326.186667pt;}
.yf6{bottom:327.306667pt;}
.y51{bottom:327.626667pt;}
.yaa{bottom:328.106667pt;}
.yd2{bottom:328.186667pt;}
.y100{bottom:330.186667pt;}
.yfa{bottom:332.186667pt;}
.ycb{bottom:335.786667pt;}
.y146{bottom:336.346667pt;}
.y120{bottom:336.986667pt;}
.y16a{bottom:338.826667pt;}
.y7e{bottom:341.466667pt;}
.y50{bottom:343.226667pt;}
.y1e{bottom:349.866667pt;}
.ya9{bottom:352.426667pt;}
.y11f{bottom:352.586667pt;}
.y169{bottom:354.426667pt;}
.y7d{bottom:357.146667pt;}
.yf5{bottom:358.906667pt;}
.y1d{bottom:365.466667pt;}
.y4f{bottom:366.906667pt;}
.yca{bottom:367.466667pt;}
.y11e{bottom:368.266667pt;}
.y7c{bottom:372.746667pt;}
.yf4{bottom:374.586667pt;}
.ya7{bottom:376.746667pt;}
.y168{bottom:378.106667pt;}
.y145{bottom:379.226667pt;}
.y1c{bottom:381.146667pt;}
.yc9{bottom:383.066667pt;}
.y11d{bottom:383.866667pt;}
.yf3{bottom:390.186667pt;}
.y167{bottom:393.706667pt;}
.y7b{bottom:396.346667pt;}
.y1b{bottom:396.746667pt;}
.y4e{bottom:398.506667pt;}
.yc8{bottom:398.666667pt;}
.y11c{bottom:399.546667pt;}
.ya5{bottom:400.986667pt;}
.y144{bottom:403.146667pt;}
.y1a{bottom:412.346667pt;}
.y4d{bottom:414.106667pt;}
.yc7{bottom:414.346667pt;}
.y166{bottom:417.306667pt;}
.yf2{bottom:421.813333pt;}
.y19{bottom:428.053333pt;}
.y4c{bottom:429.813333pt;}
.yc6{bottom:429.973333pt;}
.y11b{bottom:431.173333pt;}
.y165{bottom:433.013333pt;}
.y143{bottom:436.053333pt;}
.yf1{bottom:437.493333pt;}
.yde{bottom:441.973333pt;}
.y18{bottom:443.653333pt;}
.ya4{bottom:444.293333pt;}
.y4b{bottom:445.413333pt;}
.yc5{bottom:445.653333pt;}
.y11a{bottom:446.773333pt;}
.yb7{bottom:449.973333pt;}
.y142{bottom:451.733333pt;}
.yf0{bottom:453.093333pt;}
.y164{bottom:456.613333pt;}
.ydd{bottom:457.573333pt;}
.y17{bottom:459.333333pt;}
.y7a{bottom:459.653333pt;}
.yc4{bottom:461.253333pt;}
.y119{bottom:462.453333pt;}
.y10a{bottom:464.293333pt;}
.y141{bottom:467.333333pt;}
.yef{bottom:468.693333pt;}
.y4a{bottom:469.093333pt;}
.y163{bottom:472.293333pt;}
.y16{bottom:474.933333pt;}
.y79{bottom:475.333333pt;}
.ya3{bottom:475.973333pt;}
.yc3{bottom:476.853333pt;}
.y118{bottom:478.053333pt;}
.ydb{bottom:478.213333pt;}
.yb6{bottom:481.573333pt;}
.y140{bottom:482.933333pt;}
.yee{bottom:484.373333pt;}
.y162{bottom:487.893333pt;}
.y15{bottom:490.533333pt;}
.y78{bottom:490.933333pt;}
.ya2{bottom:491.573333pt;}
.yc2{bottom:492.533333pt;}
.y117{bottom:493.733333pt;}
.y109{bottom:495.973333pt;}
.yed{bottom:499.973333pt;}
.y49{bottom:501.013333pt;}
.yb4{bottom:502.213333pt;}
.y14{bottom:506.213333pt;}
.y77{bottom:506.533333pt;}
.y13f{bottom:506.853333pt;}
.ya1{bottom:507.253333pt;}
.y116{bottom:509.333333pt;}
.y161{bottom:511.493333pt;}
.y108{bottom:511.573333pt;}
.yec{bottom:515.653333pt;}
.y13{bottom:521.813333pt;}
.y76{bottom:522.213333pt;}
.ya0{bottom:522.853333pt;}
.yc1{bottom:524.133333pt;}
.y115{bottom:524.933333pt;}
.y160{bottom:527.173333pt;}
.y106{bottom:532.213333pt;}
.y12{bottom:537.493333pt;}
.y75{bottom:537.813333pt;}
.y9f{bottom:538.453333pt;}
.yc0{bottom:539.813333pt;}
.y114{bottom:540.613333pt;}
.y15f{bottom:542.773333pt;}
.y48{bottom:543.893333pt;}
.yeb{bottom:547.253333pt;}
.y74{bottom:553.413333pt;}
.ybf{bottom:555.413333pt;}
.y113{bottom:556.213333pt;}
.y47{bottom:559.493333pt;}
.y11{bottom:561.413333pt;}
.yea{bottom:562.853333pt;}
.y13e{bottom:563.733333pt;}
.y15e{bottom:566.453333pt;}
.y73{bottom:569.093333pt;}
.y9e{bottom:570.133333pt;}
.ybe{bottom:571.013333pt;}
.y46{bottom:575.173333pt;}
.ye9{bottom:578.533333pt;}
.y15d{bottom:582.053333pt;}
.y72{bottom:584.693333pt;}
.y9d{bottom:585.733333pt;}
.y112{bottom:587.813333pt;}
.y45{bottom:590.773333pt;}
.ye8{bottom:594.133333pt;}
.y13d{bottom:596.613333pt;}
.y15c{bottom:597.653333pt;}
.y71{bottom:600.373333pt;}
.y9c{bottom:601.413333pt;}
.ybd{bottom:602.693333pt;}
.y111{bottom:603.493333pt;}
.y10{bottom:604.293333pt;}
.y44{bottom:606.453333pt;}
.ye7{bottom:609.813333pt;}
.y13c{bottom:612.293333pt;}
.y70{bottom:615.973333pt;}
.y9b{bottom:617.013333pt;}
.ybc{bottom:618.293333pt;}
.y110{bottom:619.093333pt;}
.y15b{bottom:621.333333pt;}
.y43{bottom:622.053333pt;}
.ye6{bottom:625.413333pt;}
.y9a{bottom:632.613333pt;}
.yf{bottom:635.893333pt;}
.y13b{bottom:636.133333pt;}
.y15a{bottom:636.933333pt;}
.y42{bottom:637.653333pt;}
.y6f{bottom:639.573333pt;}
.ye5{bottom:641.013333pt;}
.ybb{bottom:641.973333pt;}
.y10f{bottom:643.013333pt;}
.y159{bottom:652.613333pt;}
.y41{bottom:653.333333pt;}
.ye4{bottom:656.693333pt;}
.y99{bottom:664.293333pt;}
.ye{bottom:667.733333pt;}
.y40{bottom:668.933333pt;}
.y13a{bottom:669.333333pt;}
.y6e{bottom:671.253333pt;}
.yba{bottom:673.573333pt;}
.yd1{bottom:676.213333pt;}
.yff{bottom:678.213333pt;}
.y98{bottom:679.893333pt;}
.yf9{bottom:680.213333pt;}
.ye3{bottom:680.293333pt;}
.y3f{bottom:684.613333pt;}
.y10e{bottom:685.973333pt;}
.y6d{bottom:686.853333pt;}
.y158{bottom:691.813333pt;}
.yb9{bottom:694.213333pt;}
.y97{bottom:695.573333pt;}
.yd{bottom:699.733333pt;}
.y3e{bottom:700.213333pt;}
.y10d{bottom:701.573333pt;}
.y6c{bottom:702.533333pt;}
.ye2{bottom:711.973333pt;}
.y139{bottom:712.293333pt;}
.y157{bottom:715.493333pt;}
.y3d{bottom:715.813333pt;}
.y6b{bottom:718.133333pt;}
.yc{bottom:719.093333pt;}
.y96{bottom:719.173333pt;}
.y10c{bottom:722.213333pt;}
.ye1{bottom:727.573333pt;}
.y138{bottom:727.893333pt;}
.y156{bottom:731.093333pt;}
.y3c{bottom:731.493333pt;}
.yb{bottom:731.733333pt;}
.y6a{bottom:733.733333pt;}
.y137{bottom:743.573333pt;}
.y3b{bottom:747.093333pt;}
.ye0{bottom:748.213333pt;}
.y69{bottom:749.413333pt;}
.ya{bottom:751.093333pt;}
.yb2{bottom:751.173333pt;}
.y155{bottom:754.693333pt;}
.yda{bottom:760.213333pt;}
.y3a{bottom:762.693333pt;}
.y9{bottom:763.733333pt;}
.y68{bottom:765.013333pt;}
.y136{bottom:767.413333pt;}
.y154{bottom:770.373333pt;}
.y105{bottom:776.213333pt;}
.y39{bottom:778.373333pt;}
.y67{bottom:780.693333pt;}
.y8{bottom:783.093333pt;}
.y95{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y66{bottom:796.293333pt;}
.y94{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y135{bottom:810.373333pt;}
.y65{bottom:811.893333pt;}
.y6{bottom:815.093333pt;}
.y37{bottom:825.653333pt;}
.y134{bottom:825.973333pt;}
.y93{bottom:833.253333pt;}
.y64{bottom:835.573333pt;}
.y36{bottom:841.253333pt;}
.y133{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y153{bottom:848.853333pt;}
.y35{bottom:856.853333pt;}
.y132{bottom:857.253333pt;}
.y152{bottom:864.533333pt;}
.y92{bottom:864.853333pt;}
.y63{bottom:867.173333pt;}
.y34{bottom:872.533333pt;}
.y131{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y91{bottom:880.533333pt;}
.y62{bottom:882.853333pt;}
.y33{bottom:888.133333pt;}
.y130{bottom:888.533333pt;}
.y90{bottom:896.133333pt;}
.y61{bottom:898.480000pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y12f{bottom:904.160000pt;}
.y8f{bottom:911.840000pt;}
.y60{bottom:914.080000pt;}
.y31{bottom:919.440000pt;}
.y12e{bottom:919.840000pt;}
.y8e{bottom:927.440000pt;}
.y5f{bottom:929.760000pt;}
.y12d{bottom:935.440000pt;}
.y8d{bottom:943.040000pt;}
.y5e{bottom:945.360000pt;}
.y30{bottom:951.040000pt;}
.y8c{bottom:958.720000pt;}
.y5d{bottom:961.040000pt;}
.y2f{bottom:966.720000pt;}
.y8b{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y5c{bottom:984.640000pt;}
.y8a{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h11{height:23.680000pt;}
.hf{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:37.032187pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h23{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.hd{height:62.913437pt;}
.h4{height:64.875937pt;}
.h13{height:65.781915pt;}
.he{height:73.379063pt;}
.h20{height:244.000000pt;}
.h15{height:248.960000pt;}
.h1f{height:250.026667pt;}
.h16{height:255.866667pt;}
.h1a{height:266.026667pt;}
.h14{height:275.066667pt;}
.h1d{height:278.026667pt;}
.h1b{height:282.000000pt;}
.h1c{height:282.026667pt;}
.h22{height:304.026667pt;}
.h21{height:312.026667pt;}
.h17{height:332.026667pt;}
.h1e{height:346.026667pt;}
.h19{height:348.026667pt;}
.h18{height:350.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:185.760000pt;}
.w4{width:223.386667pt;}
.wd{width:328.426667pt;}
.we{width:330.426667pt;}
.w9{width:330.586667pt;}
.wa{width:342.426667pt;}
.wb{width:540.453333pt;}
.w6{width:567.733333pt;}
.w5{width:578.133333pt;}
.wc{width:596.453333pt;}
.w7{width:598.453333pt;}
.w8{width:600.453333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x29{left:63.599988pt;}
.x14{left:67.519988pt;}
.x25{left:69.919988pt;}
.x2f{left:73.999988pt;}
.x2d{left:87.999988pt;}
.x18{left:96.800000pt;}
.x11{left:97.760000pt;}
.x27{left:98.800000pt;}
.xa{left:107.920000pt;}
.xe{left:113.120000pt;}
.x1b{left:115.119988pt;}
.x22{left:126.800000pt;}
.x16{left:134.639988pt;}
.x2a{left:167.626655pt;}
.x2{left:180.266655pt;}
.x28{left:185.706655pt;}
.x6{left:192.106667pt;}
.xd{left:213.786655pt;}
.x10{left:221.546655pt;}
.x4{left:283.866655pt;}
.x1c{left:308.506655pt;}
.x9{left:317.226655pt;}
.x2b{left:321.226667pt;}
.x15{left:322.826655pt;}
.x1f{left:329.226667pt;}
.x26{left:332.346655pt;}
.x1e{left:335.226667pt;}
.x20{left:341.226667pt;}
.x21{left:344.426655pt;}
.x2e{left:368.506655pt;}
.x8{left:378.506667pt;}
.x1d{left:391.066667pt;}
.x2c{left:396.026667pt;}
.x17{left:396.986655pt;}
.x5{left:435.946655pt;}
.x24{left:525.253333pt;}
.x23{left:533.253333pt;}
.xb{left:557.573333pt;}
.xf{left:560.453333pt;}
.xc{left:570.853333pt;}
.x19{left:587.253333pt;}
.x13{left:589.253333pt;}
.x12{left:591.253333pt;}
.x1a{left:593.253333pt;}
.x3{left:704.053322pt;}
}




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