
    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_f84c0930859dd7b200a620b5.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_154f1688b9d28651e3948120.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_326e05088c56a012aad804ea.woff2')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_b4748b88975356df798a84ab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0996010db40535ce746326ce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_813c0717514919fe43a14270.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d515fbfe468d72f5f18296b9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ae4070a0f96d6f500e91fe8e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ls27{letter-spacing:-0.378600px;}
.ls24{letter-spacing:-0.308400px;}
.ls21{letter-spacing:-0.243600px;}
.ls12{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.162000px;}
.ls20{letter-spacing:-0.160800px;}
.ls23{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.084000px;}
.ls8{letter-spacing:-0.064800px;}
.ls13{letter-spacing:-0.063600px;}
.ls1c{letter-spacing:-0.038880px;}
.lsa{letter-spacing:-0.031800px;}
.ls1f{letter-spacing:-0.011160px;}
.ls1d{letter-spacing:-0.008280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.ls14{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.158400px;}
.ls11{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.201600px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:11.253600px;}
.ls15{letter-spacing:16.293600px;}
.ls26{letter-spacing:47.726640px;}
.lsd{letter-spacing:55.286640px;}
.ls10{letter-spacing:63.566640px;}
.ls17{letter-spacing:69.933600px;}
.ls3{letter-spacing:80.344800px;}
.ls25{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;}
}
.ws1{word-spacing:-18.612000px;}
.ws6{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.428000px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.369800px;}
.ws16{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.218120px;}
.ws13{word-spacing:-13.215240px;}
.ws10{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.161600px;}
.ws3{word-spacing:-13.134000px;}
.ws17{word-spacing:-13.072800px;}
.ws14{word-spacing:-13.065600px;}
.wse{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.ws15{word-spacing:-12.982800px;}
.ws18{word-spacing:-12.918000px;}
.ws19{word-spacing:-12.847800px;}
.ws0{word-spacing:-9.810000px;}
.wsa{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._f{margin-left:-6.596831px;}
._a{margin-left:-3.969840px;}
._9{margin-left:-2.344800px;}
._0{margin-left:-1.020000px;}
._1{width:1.182552px;}
._4{width:2.263439px;}
._2{width:4.216188px;}
._3{width:5.522655px;}
._7{width:6.930689px;}
._6{width:8.536800px;}
._5{width:10.401000px;}
._d{width:11.602920px;}
._b{width:14.669280px;}
._c{width:15.751440px;}
._8{width:17.074200px;}
._e{width:18.757440px;}
._12{width:20.140200px;}
._13{width:21.643200px;}
._14{width:22.809240px;}
._10{width:58.136040px;}
._11{width:243.869400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.fs5{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:7.830000px;}
.y81{bottom:7.860000px;}
.y7e{bottom:7.920000px;}
.yd0{bottom:12.420000px;}
.ycf{bottom:25.380000px;}
.yc0{bottom:25.470000px;}
.yaa{bottom:29.880000px;}
.ycd{bottom:29.910000px;}
.yad{bottom:29.970000px;}
.yd2{bottom:47.520000px;}
.yac{bottom:52.020000px;}
.yca{bottom:67.050000px;}
.yc9{bottom:71.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.yc6{bottom:80.190000px;}
.ycb{bottom:84.690000px;}
.yc8{bottom:89.190000px;}
.y1{bottom:101.640000px;}
.yc5{bottom:102.240000px;}
.yc7{bottom:106.740000px;}
.y12b{bottom:111.990000px;}
.yc4{bottom:124.320000px;}
.yd7{bottom:124.590000px;}
.y27{bottom:126.840000px;}
.y12a{bottom:129.540000px;}
.y64{bottom:137.550000px;}
.y26{bottom:145.290000px;}
.ybe{bottom:153.300000px;}
.yfe{bottom:154.380000px;}
.y63{bottom:155.190000px;}
.y129{bottom:156.090000px;}
.ya4{bottom:157.080000px;}
.yd6{bottom:160.230000px;}
.y25{bottom:162.840000px;}
.yfd{bottom:171.930000px;}
.y62{bottom:172.740000px;}
.y128{bottom:173.730000px;}
.ya3{bottom:174.720000px;}
.ybd{bottom:180.660000px;}
.y24{bottom:181.290000px;}
.y7a{bottom:185.970000px;}
.yfc{bottom:189.570000px;}
.y127{bottom:191.280000px;}
.ya2{bottom:192.360000px;}
.yd5{bottom:195.780000px;}
.y23{bottom:198.840000px;}
.y47{bottom:199.200000px;}
.ybc{bottom:207.930000px;}
.y61{bottom:208.380000px;}
.y126{bottom:208.830000px;}
.ya1{bottom:209.910000px;}
.y46{bottom:216.750000px;}
.y79{bottom:221.520000px;}
.yfb{bottom:225.120000px;}
.y60{bottom:225.930000px;}
.yd4{bottom:228.000000px;}
.y45{bottom:234.390000px;}
.y22{bottom:235.200000px;}
.ybb{bottom:235.290000px;}
.y125{bottom:235.470000px;}
.yfa{bottom:242.760000px;}
.y5f{bottom:243.480000px;}
.ya0{bottom:248.430000px;}
.y44{bottom:251.940000px;}
.y21{bottom:252.840000px;}
.y124{bottom:253.020000px;}
.y78{bottom:253.740000px;}
.yf9{bottom:260.310000px;}
.yba{bottom:262.650000px;}
.y9f{bottom:266.070000px;}
.y43{bottom:269.490000px;}
.y5e{bottom:270.120000px;}
.y20{bottom:270.390000px;}
.y123{bottom:279.660000px;}
.y42{bottom:287.130000px;}
.yb9{bottom:290.010000px;}
.yf8{bottom:295.860000px;}
.y122{bottom:297.210000px;}
.y9e{bottom:304.590000px;}
.y41{bottom:304.680000px;}
.y1f{bottom:306.030000px;}
.yf7{bottom:313.500000px;}
.yb8{bottom:317.280000px;}
.y9d{bottom:322.230000px;}
.y40{bottom:322.320000px;}
.y1e{bottom:323.580000px;}
.y121{bottom:323.760000px;}
.yf6{bottom:331.050000px;}
.y9c{bottom:339.870000px;}
.y1d{bottom:341.130000px;}
.y120{bottom:341.400000px;}
.yf5{bottom:348.690000px;}
.y3f{bottom:348.870000px;}
.y5d{bottom:354.270000px;}
.y9b{bottom:357.420000px;}
.y11f{bottom:358.950000px;}
.yf4{bottom:366.240000px;}
.y5c{bottom:371.910000px;}
.y1c{bottom:376.770000px;}
.y143{bottom:381.180000px;}
.y3e{bottom:381.450000px;}
.yf3{bottom:383.790000px;}
.y11e{bottom:385.590000px;}
.yb7{bottom:388.830000px;}
.y1b{bottom:394.320000px;}
.y9a{bottom:396.030000px;}
.y142{bottom:398.730000px;}
.yf2{bottom:401.430000px;}
.y11d{bottom:403.140000px;}
.y5b{bottom:407.460000px;}
.y1a{bottom:411.960000px;}
.y99{bottom:413.580000px;}
.y3d{bottom:417.090000px;}
.y11c{bottom:420.690000px;}
.y5a{bottom:425.010000px;}
.y141{bottom:425.370000px;}
.yf1{bottom:428.340000px;}
.y19{bottom:429.510000px;}
.y98{bottom:431.130000px;}
.y59{bottom:442.650000px;}
.y140{bottom:442.920000px;}
.y11b{bottom:447.330000px;}
.y97{bottom:448.770000px;}
.y3c{bottom:449.310000px;}
.y18{bottom:456.420000px;}
.yb6{bottom:459.570000px;}
.y58{bottom:460.200000px;}
.y13f{bottom:460.470000px;}
.y96{bottom:466.320000px;}
.y11a{bottom:473.910000px;}
.yf0{bottom:476.610000px;}
.y57{bottom:477.780000px;}
.yb5{bottom:486.240000px;}
.y77{bottom:486.690000px;}
.y13e{bottom:487.140000px;}
.y119{bottom:491.550000px;}
.y95{bottom:493.260000px;}
.yef{bottom:494.160000px;}
.y56{bottom:495.420000px;}
.y13d{bottom:504.690000px;}
.y17{bottom:505.050000px;}
.yee{bottom:511.800000px;}
.y118{bottom:518.100000px;}
.y76{bottom:518.910000px;}
.yb4{bottom:519.180000px;}
.yed{bottom:529.350000px;}
.y55{bottom:530.970000px;}
.y13c{bottom:531.330000px;}
.y117{bottom:535.650000px;}
.y94{bottom:541.590000px;}
.y16{bottom:542.040000px;}
.yb3{bottom:546.540000px;}
.yec{bottom:546.990000px;}
.y54{bottom:548.610000px;}
.y13b{bottom:548.880000px;}
.y93{bottom:559.140000px;}
.y15{bottom:559.680000px;}
.y116{bottom:562.290000px;}
.y53{bottom:566.160000px;}
.y13a{bottom:566.430000px;}
.yb2{bottom:573.810000px;}
.y92{bottom:576.690000px;}
.y14{bottom:577.230000px;}
.yeb{bottom:582.540000px;}
.y52{bottom:583.710000px;}
.y115{bottom:588.840000px;}
.y139{bottom:593.070000px;}
.y13{bottom:594.780000px;}
.yea{bottom:600.090000px;}
.yb1{bottom:601.170000px;}
.y51{bottom:601.350000px;}
.y91{bottom:603.330000px;}
.y114{bottom:606.480000px;}
.y138{bottom:610.620000px;}
.y12{bottom:612.420000px;}
.ye9{bottom:617.730000px;}
.y50{bottom:618.900000px;}
.yb0{bottom:628.530000px;}
.y11{bottom:629.970000px;}
.y113{bottom:633.030000px;}
.ye8{bottom:635.280000px;}
.y4f{bottom:636.540000px;}
.y137{bottom:637.260000px;}
.y90{bottom:638.880000px;}
.y10{bottom:647.610000px;}
.y112{bottom:650.580000px;}
.ye7{bottom:652.920000px;}
.y136{bottom:654.810000px;}
.yaf{bottom:655.890000px;}
.y8f{bottom:656.520000px;}
.y4e{bottom:663.090000px;}
.yf{bottom:665.160000px;}
.ye6{bottom:670.470000px;}
.y135{bottom:672.360000px;}
.y8e{bottom:674.070000px;}
.y111{bottom:677.220000px;}
.ye{bottom:682.710000px;}
.yae{bottom:683.160000px;}
.y110{bottom:694.770000px;}
.y4d{bottom:698.640000px;}
.y134{bottom:699.000000px;}
.yd{bottom:700.350000px;}
.y8d{bottom:700.620000px;}
.ye5{bottom:706.020000px;}
.yab{bottom:710.520000px;}
.y4c{bottom:716.280000px;}
.y133{bottom:716.550000px;}
.yc{bottom:717.900000px;}
.y10f{bottom:721.410000px;}
.ye4{bottom:723.660000px;}
.y4b{bottom:733.830000px;}
.yb{bottom:735.540000px;}
.y8c{bottom:736.260000px;}
.y10e{bottom:738.960000px;}
.ye3{bottom:741.210000px;}
.y132{bottom:743.190000px;}
.y75{bottom:751.740000px;}
.y8b{bottom:753.810000px;}
.y3b{bottom:758.580000px;}
.ye2{bottom:758.850000px;}
.y4a{bottom:760.470000px;}
.y131{bottom:760.740000px;}
.ya{bottom:762.450000px;}
.y10d{bottom:765.510000px;}
.y74{bottom:769.290000px;}
.y8a{bottom:771.450000px;}
.ye1{bottom:776.400000px;}
.y3a{bottom:777.030000px;}
.ya9{bottom:782.070000px;}
.y10c{bottom:783.150000px;}
.y73{bottom:786.930000px;}
.y130{bottom:787.290000px;}
.y89{bottom:789.000000px;}
.y49{bottom:796.020000px;}
.y72{bottom:804.480000px;}
.y12f{bottom:804.930000px;}
.y10b{bottom:809.700000px;}
.y9{bottom:810.690000px;}
.yd3{bottom:811.950000px;}
.y39{bottom:813.480000px;}
.y88{bottom:815.550000px;}
.y12e{bottom:822.480000px;}
.yd1{bottom:826.890000px;}
.y10a{bottom:827.340000px;}
.y48{bottom:828.240000px;}
.ye0{bottom:829.590000px;}
.y71{bottom:840.030000px;}
.y87{bottom:845.520000px;}
.y8{bottom:846.510000px;}
.ydf{bottom:847.140000px;}
.y38{bottom:849.030000px;}
.ya8{bottom:852.810000px;}
.y109{bottom:853.890000px;}
.y70{bottom:857.670000px;}
.y37{bottom:866.670000px;}
.y108{bottom:871.440000px;}
.y86{bottom:872.880000px;}
.yde{bottom:874.050000px;}
.y6f{bottom:875.220000px;}
.ya7{bottom:879.450000px;}
.y7{bottom:882.510000px;}
.y36{bottom:884.220000px;}
.y107{bottom:889.080000px;}
.y12d{bottom:893.220000px;}
.yc3{bottom:893.850000px;}
.y85{bottom:900.240000px;}
.y35{bottom:901.860000px;}
.y12c{bottom:910.860000px;}
.ya6{bottom:915.270000px;}
.y106{bottom:915.990000px;}
.y6{bottom:918.510000px;}
.y34{bottom:919.410000px;}
.ydd{bottom:919.680000px;}
.y84{bottom:927.600000px;}
.y33{bottom:936.960000px;}
.y6e{bottom:937.410000px;}
.yce{bottom:943.350000px;}
.y5{bottom:954.600000px;}
.y83{bottom:954.870000px;}
.y6d{bottom:954.960000px;}
.y32{bottom:963.600000px;}
.y105{bottom:964.230000px;}
.ydc{bottom:964.680000px;}
.y6c{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y82{bottom:982.230000px;}
.ycc{bottom:988.260000px;}
.y6b{bottom:990.150000px;}
.y104{bottom:991.140000px;}
.ydb{bottom:991.950000px;}
.y31{bottom:999.150000px;}
.y6a{bottom:1007.790000px;}
.y80{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y30{bottom:1016.820000px;}
.yda{bottom:1019.340000px;}
.y103{bottom:1028.160000px;}
.y2f{bottom:1034.370000px;}
.y7f{bottom:1036.890000px;}
.y69{bottom:1043.370000px;}
.y102{bottom:1045.800000px;}
.yd9{bottom:1046.700000px;}
.y2e{bottom:1051.920000px;}
.yc2{bottom:1059.030000px;}
.y68{bottom:1060.920000px;}
.y101{bottom:1063.350000px;}
.y7d{bottom:1064.250000px;}
.y2d{bottom:1069.560000px;}
.yd8{bottom:1073.970000px;}
.y67{bottom:1078.560000px;}
.ya5{bottom:1087.560000px;}
.y100{bottom:1090.260000px;}
.y7b{bottom:1091.610000px;}
.yc1{bottom:1094.670000px;}
.y66{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.ybf{bottom:1109.610000px;}
.y65{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yff{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.580000px;}
.hc{height:26.640000px;}
.h16{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h14{height:44.100000px;}
.h11{height:44.190000px;}
.he{height:48.600000px;}
.h13{height:48.630000px;}
.h10{height:48.690000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.h7{height:61.793886px;}
.h8{height:62.585859px;}
.h15{height:66.240000px;}
.ha{height:68.582109px;}
.hf{height:70.740000px;}
.h4{height:101.499961px;}
.h12{height:143.040000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:38.370000px;}
.w9{width:40.620000px;}
.we{width:73.710000px;}
.wc{width:75.600000px;}
.w8{width:81.630000px;}
.wf{width:89.310000px;}
.wb{width:95.250000px;}
.w13{width:95.310000px;}
.w12{width:95.400000px;}
.w11{width:101.790000px;}
.wd{width:124.200000px;}
.w4{width:168.510000px;}
.w15{width:206.010000px;}
.w3{width:217.980000px;}
.wa{width:230.040000px;}
.w6{width:232.290000px;}
.w7{width:234.480000px;}
.w10{width:293.940000px;}
.w14{width:548.970000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x11{left:28.170000px;}
.xf{left:55.530000px;}
.x1{left:68.040000px;}
.x2{left:95.040000px;}
.x22{left:111.239987px;}
.x3{left:122.040000px;}
.x13{left:152.100000px;}
.x18{left:164.730000px;}
.x14{left:191.280000px;}
.x17{left:193.530000px;}
.x4{left:202.799987px;}
.x19{left:241.050000px;}
.xe{left:253.020000px;}
.x9{left:274.709987px;}
.x20{left:278.129987px;}
.x7{left:322.859987px;}
.xb{left:338.609987px;}
.xd{left:354.089987px;}
.x1a{left:366.060000px;}
.x15{left:424.380000px;}
.x1b{left:440.490000px;}
.x10{left:471.720000px;}
.x1c{left:530.520000px;}
.xc{left:568.139987px;}
.xa{left:570.389987px;}
.x21{left:618.450000px;}
.x1d{left:633.030000px;}
.x16{left:659.580000px;}
.x1f{left:700.889987px;}
.x8{left:718.889987px;}
.x6{left:724.559987px;}
.x1e{left:729.150000px;}
.x5{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls27{letter-spacing:-0.336533pt;}
.ls24{letter-spacing:-0.274133pt;}
.ls21{letter-spacing:-0.216533pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls20{letter-spacing:-0.142933pt;}
.ls23{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.074667pt;}
.ls8{letter-spacing:-0.057600pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls1c{letter-spacing:-0.034560pt;}
.lsa{letter-spacing:-0.028267pt;}
.ls1f{letter-spacing:-0.009920pt;}
.ls1d{letter-spacing:-0.007360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.ls14{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.140800pt;}
.ls11{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.179200pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:10.003200pt;}
.ls15{letter-spacing:14.483200pt;}
.ls26{letter-spacing:42.423680pt;}
.lsd{letter-spacing:49.143680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls17{letter-spacing:62.163200pt;}
.ls3{letter-spacing:71.417600pt;}
.ls25{letter-spacing:71.863680pt;}
.ws1{word-spacing:-16.544000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.936000pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.884267pt;}
.ws16{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.749440pt;}
.ws13{word-spacing:-11.746880pt;}
.ws10{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.699200pt;}
.ws3{word-spacing:-11.674667pt;}
.ws17{word-spacing:-11.620267pt;}
.ws14{word-spacing:-11.613867pt;}
.wse{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.540267pt;}
.ws18{word-spacing:-11.482667pt;}
.ws19{word-spacing:-11.420267pt;}
.ws0{word-spacing:-8.720000pt;}
.wsa{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._f{margin-left:-5.863850pt;}
._a{margin-left:-3.528746pt;}
._9{margin-left:-2.084267pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.051158pt;}
._4{width:2.011945pt;}
._2{width:3.747723pt;}
._3{width:4.909027pt;}
._7{width:6.160613pt;}
._6{width:7.588266pt;}
._5{width:9.245334pt;}
._d{width:10.313706pt;}
._b{width:13.039360pt;}
._c{width:14.001280pt;}
._8{width:15.177067pt;}
._e{width:16.673280pt;}
._12{width:17.902400pt;}
._13{width:19.238400pt;}
._14{width:20.274880pt;}
._10{width:51.676480pt;}
._11{width:216.772800pt;}
.fs0{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.fs5{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:6.960000pt;}
.y81{bottom:6.986667pt;}
.y7e{bottom:7.040000pt;}
.yd0{bottom:11.040000pt;}
.ycf{bottom:22.560000pt;}
.yc0{bottom:22.640000pt;}
.yaa{bottom:26.560000pt;}
.ycd{bottom:26.586667pt;}
.yad{bottom:26.640000pt;}
.yd2{bottom:42.240000pt;}
.yac{bottom:46.240000pt;}
.yca{bottom:59.600000pt;}
.yc9{bottom:63.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.yc6{bottom:71.280000pt;}
.ycb{bottom:75.280000pt;}
.yc8{bottom:79.280000pt;}
.y1{bottom:90.346667pt;}
.yc5{bottom:90.880000pt;}
.yc7{bottom:94.880000pt;}
.y12b{bottom:99.546667pt;}
.yc4{bottom:110.506667pt;}
.yd7{bottom:110.746667pt;}
.y27{bottom:112.746667pt;}
.y12a{bottom:115.146667pt;}
.y64{bottom:122.266667pt;}
.y26{bottom:129.146667pt;}
.ybe{bottom:136.266667pt;}
.yfe{bottom:137.226667pt;}
.y63{bottom:137.946667pt;}
.y129{bottom:138.746667pt;}
.ya4{bottom:139.626667pt;}
.yd6{bottom:142.426667pt;}
.y25{bottom:144.746667pt;}
.yfd{bottom:152.826667pt;}
.y62{bottom:153.546667pt;}
.y128{bottom:154.426667pt;}
.ya3{bottom:155.306667pt;}
.ybd{bottom:160.586667pt;}
.y24{bottom:161.146667pt;}
.y7a{bottom:165.306667pt;}
.yfc{bottom:168.506667pt;}
.y127{bottom:170.026667pt;}
.ya2{bottom:170.986667pt;}
.yd5{bottom:174.026667pt;}
.y23{bottom:176.746667pt;}
.y47{bottom:177.066667pt;}
.ybc{bottom:184.826667pt;}
.y61{bottom:185.226667pt;}
.y126{bottom:185.626667pt;}
.ya1{bottom:186.586667pt;}
.y46{bottom:192.666667pt;}
.y79{bottom:196.906667pt;}
.yfb{bottom:200.106667pt;}
.y60{bottom:200.826667pt;}
.yd4{bottom:202.666667pt;}
.y45{bottom:208.346667pt;}
.y22{bottom:209.066667pt;}
.ybb{bottom:209.146667pt;}
.y125{bottom:209.306667pt;}
.yfa{bottom:215.786667pt;}
.y5f{bottom:216.426667pt;}
.ya0{bottom:220.826667pt;}
.y44{bottom:223.946667pt;}
.y21{bottom:224.746667pt;}
.y124{bottom:224.906667pt;}
.y78{bottom:225.546667pt;}
.yf9{bottom:231.386667pt;}
.yba{bottom:233.466667pt;}
.y9f{bottom:236.506667pt;}
.y43{bottom:239.546667pt;}
.y5e{bottom:240.106667pt;}
.y20{bottom:240.346667pt;}
.y123{bottom:248.586667pt;}
.y42{bottom:255.226667pt;}
.yb9{bottom:257.786667pt;}
.yf8{bottom:262.986667pt;}
.y122{bottom:264.186667pt;}
.y9e{bottom:270.746667pt;}
.y41{bottom:270.826667pt;}
.y1f{bottom:272.026667pt;}
.yf7{bottom:278.666667pt;}
.yb8{bottom:282.026667pt;}
.y9d{bottom:286.426667pt;}
.y40{bottom:286.506667pt;}
.y1e{bottom:287.626667pt;}
.y121{bottom:287.786667pt;}
.yf6{bottom:294.266667pt;}
.y9c{bottom:302.106667pt;}
.y1d{bottom:303.226667pt;}
.y120{bottom:303.466667pt;}
.yf5{bottom:309.946667pt;}
.y3f{bottom:310.106667pt;}
.y5d{bottom:314.906667pt;}
.y9b{bottom:317.706667pt;}
.y11f{bottom:319.066667pt;}
.yf4{bottom:325.546667pt;}
.y5c{bottom:330.586667pt;}
.y1c{bottom:334.906667pt;}
.y143{bottom:338.826667pt;}
.y3e{bottom:339.066667pt;}
.yf3{bottom:341.146667pt;}
.y11e{bottom:342.746667pt;}
.yb7{bottom:345.626667pt;}
.y1b{bottom:350.506667pt;}
.y9a{bottom:352.026667pt;}
.y142{bottom:354.426667pt;}
.yf2{bottom:356.826667pt;}
.y11d{bottom:358.346667pt;}
.y5b{bottom:362.186667pt;}
.y1a{bottom:366.186667pt;}
.y99{bottom:367.626667pt;}
.y3d{bottom:370.746667pt;}
.y11c{bottom:373.946667pt;}
.y5a{bottom:377.786667pt;}
.y141{bottom:378.106667pt;}
.yf1{bottom:380.746667pt;}
.y19{bottom:381.786667pt;}
.y98{bottom:383.226667pt;}
.y59{bottom:393.466667pt;}
.y140{bottom:393.706667pt;}
.y11b{bottom:397.626667pt;}
.y97{bottom:398.906667pt;}
.y3c{bottom:399.386667pt;}
.y18{bottom:405.706667pt;}
.yb6{bottom:408.506667pt;}
.y58{bottom:409.066667pt;}
.y13f{bottom:409.306667pt;}
.y96{bottom:414.506667pt;}
.y11a{bottom:421.253333pt;}
.yf0{bottom:423.653333pt;}
.y57{bottom:424.693333pt;}
.yb5{bottom:432.213333pt;}
.y77{bottom:432.613333pt;}
.y13e{bottom:433.013333pt;}
.y119{bottom:436.933333pt;}
.y95{bottom:438.453333pt;}
.yef{bottom:439.253333pt;}
.y56{bottom:440.373333pt;}
.y13d{bottom:448.613333pt;}
.y17{bottom:448.933333pt;}
.yee{bottom:454.933333pt;}
.y118{bottom:460.533333pt;}
.y76{bottom:461.253333pt;}
.yb4{bottom:461.493333pt;}
.yed{bottom:470.533333pt;}
.y55{bottom:471.973333pt;}
.y13c{bottom:472.293333pt;}
.y117{bottom:476.133333pt;}
.y94{bottom:481.413333pt;}
.y16{bottom:481.813333pt;}
.yb3{bottom:485.813333pt;}
.yec{bottom:486.213333pt;}
.y54{bottom:487.653333pt;}
.y13b{bottom:487.893333pt;}
.y93{bottom:497.013333pt;}
.y15{bottom:497.493333pt;}
.y116{bottom:499.813333pt;}
.y53{bottom:503.253333pt;}
.y13a{bottom:503.493333pt;}
.yb2{bottom:510.053333pt;}
.y92{bottom:512.613333pt;}
.y14{bottom:513.093333pt;}
.yeb{bottom:517.813333pt;}
.y52{bottom:518.853333pt;}
.y115{bottom:523.413333pt;}
.y139{bottom:527.173333pt;}
.y13{bottom:528.693333pt;}
.yea{bottom:533.413333pt;}
.yb1{bottom:534.373333pt;}
.y51{bottom:534.533333pt;}
.y91{bottom:536.293333pt;}
.y114{bottom:539.093333pt;}
.y138{bottom:542.773333pt;}
.y12{bottom:544.373333pt;}
.ye9{bottom:549.093333pt;}
.y50{bottom:550.133333pt;}
.yb0{bottom:558.693333pt;}
.y11{bottom:559.973333pt;}
.y113{bottom:562.693333pt;}
.ye8{bottom:564.693333pt;}
.y4f{bottom:565.813333pt;}
.y137{bottom:566.453333pt;}
.y90{bottom:567.893333pt;}
.y10{bottom:575.653333pt;}
.y112{bottom:578.293333pt;}
.ye7{bottom:580.373333pt;}
.y136{bottom:582.053333pt;}
.yaf{bottom:583.013333pt;}
.y8f{bottom:583.573333pt;}
.y4e{bottom:589.413333pt;}
.yf{bottom:591.253333pt;}
.ye6{bottom:595.973333pt;}
.y135{bottom:597.653333pt;}
.y8e{bottom:599.173333pt;}
.y111{bottom:601.973333pt;}
.ye{bottom:606.853333pt;}
.yae{bottom:607.253333pt;}
.y110{bottom:617.573333pt;}
.y4d{bottom:621.013333pt;}
.y134{bottom:621.333333pt;}
.yd{bottom:622.533333pt;}
.y8d{bottom:622.773333pt;}
.ye5{bottom:627.573333pt;}
.yab{bottom:631.573333pt;}
.y4c{bottom:636.693333pt;}
.y133{bottom:636.933333pt;}
.yc{bottom:638.133333pt;}
.y10f{bottom:641.253333pt;}
.ye4{bottom:643.253333pt;}
.y4b{bottom:652.293333pt;}
.yb{bottom:653.813333pt;}
.y8c{bottom:654.453333pt;}
.y10e{bottom:656.853333pt;}
.ye3{bottom:658.853333pt;}
.y132{bottom:660.613333pt;}
.y75{bottom:668.213333pt;}
.y8b{bottom:670.053333pt;}
.y3b{bottom:674.293333pt;}
.ye2{bottom:674.533333pt;}
.y4a{bottom:675.973333pt;}
.y131{bottom:676.213333pt;}
.ya{bottom:677.733333pt;}
.y10d{bottom:680.453333pt;}
.y74{bottom:683.813333pt;}
.y8a{bottom:685.733333pt;}
.ye1{bottom:690.133333pt;}
.y3a{bottom:690.693333pt;}
.ya9{bottom:695.173333pt;}
.y10c{bottom:696.133333pt;}
.y73{bottom:699.493333pt;}
.y130{bottom:699.813333pt;}
.y89{bottom:701.333333pt;}
.y49{bottom:707.573333pt;}
.y72{bottom:715.093333pt;}
.y12f{bottom:715.493333pt;}
.y10b{bottom:719.733333pt;}
.y9{bottom:720.613333pt;}
.yd3{bottom:721.733333pt;}
.y39{bottom:723.093333pt;}
.y88{bottom:724.933333pt;}
.y12e{bottom:731.093333pt;}
.yd1{bottom:735.013333pt;}
.y10a{bottom:735.413333pt;}
.y48{bottom:736.213333pt;}
.ye0{bottom:737.413333pt;}
.y71{bottom:746.693333pt;}
.y87{bottom:751.573333pt;}
.y8{bottom:752.453333pt;}
.ydf{bottom:753.013333pt;}
.y38{bottom:754.693333pt;}
.ya8{bottom:758.053333pt;}
.y109{bottom:759.013333pt;}
.y70{bottom:762.373333pt;}
.y37{bottom:770.373333pt;}
.y108{bottom:774.613333pt;}
.y86{bottom:775.893333pt;}
.yde{bottom:776.933333pt;}
.y6f{bottom:777.973333pt;}
.ya7{bottom:781.733333pt;}
.y7{bottom:784.453333pt;}
.y36{bottom:785.973333pt;}
.y107{bottom:790.293333pt;}
.y12d{bottom:793.973333pt;}
.yc3{bottom:794.533333pt;}
.y85{bottom:800.213333pt;}
.y35{bottom:801.653333pt;}
.y12c{bottom:809.653333pt;}
.ya6{bottom:813.573333pt;}
.y106{bottom:814.213333pt;}
.y6{bottom:816.453333pt;}
.y34{bottom:817.253333pt;}
.ydd{bottom:817.493333pt;}
.y84{bottom:824.533333pt;}
.y33{bottom:832.853333pt;}
.y6e{bottom:833.253333pt;}
.yce{bottom:838.533333pt;}
.y5{bottom:848.533333pt;}
.y83{bottom:848.773333pt;}
.y6d{bottom:848.853333pt;}
.y32{bottom:856.533333pt;}
.y105{bottom:857.093333pt;}
.ydc{bottom:857.493333pt;}
.y6c{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y82{bottom:873.093333pt;}
.ycc{bottom:878.453333pt;}
.y6b{bottom:880.133333pt;}
.y104{bottom:881.013333pt;}
.ydb{bottom:881.733333pt;}
.y31{bottom:888.133333pt;}
.y6a{bottom:895.813333pt;}
.y80{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y30{bottom:903.840000pt;}
.yda{bottom:906.080000pt;}
.y103{bottom:913.920000pt;}
.y2f{bottom:919.440000pt;}
.y7f{bottom:921.680000pt;}
.y69{bottom:927.440000pt;}
.y102{bottom:929.600000pt;}
.yd9{bottom:930.400000pt;}
.y2e{bottom:935.040000pt;}
.yc2{bottom:941.360000pt;}
.y68{bottom:943.040000pt;}
.y101{bottom:945.200000pt;}
.y7d{bottom:946.000000pt;}
.y2d{bottom:950.720000pt;}
.yd8{bottom:954.640000pt;}
.y67{bottom:958.720000pt;}
.ya5{bottom:966.720000pt;}
.y100{bottom:969.120000pt;}
.y7b{bottom:970.320000pt;}
.yc1{bottom:973.040000pt;}
.y66{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.ybf{bottom:986.320000pt;}
.y65{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yff{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.626667pt;}
.hc{height:23.680000pt;}
.h16{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h14{height:39.200000pt;}
.h11{height:39.280000pt;}
.he{height:43.200000pt;}
.h13{height:43.226667pt;}
.h10{height:43.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.h7{height:54.927899pt;}
.h8{height:55.631875pt;}
.h15{height:58.880000pt;}
.ha{height:60.961875pt;}
.hf{height:62.880000pt;}
.h4{height:90.222187pt;}
.h12{height:127.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:34.106667pt;}
.w9{width:36.106667pt;}
.we{width:65.520000pt;}
.wc{width:67.200000pt;}
.w8{width:72.560000pt;}
.wf{width:79.386667pt;}
.wb{width:84.666667pt;}
.w13{width:84.720000pt;}
.w12{width:84.800000pt;}
.w11{width:90.480000pt;}
.wd{width:110.400000pt;}
.w4{width:149.786667pt;}
.w15{width:183.120000pt;}
.w3{width:193.760000pt;}
.wa{width:204.480000pt;}
.w6{width:206.480000pt;}
.w7{width:208.426667pt;}
.w10{width:261.280000pt;}
.w14{width:487.973333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x11{left:25.040000pt;}
.xf{left:49.360000pt;}
.x1{left:60.480000pt;}
.x2{left:84.480000pt;}
.x22{left:98.879988pt;}
.x3{left:108.480000pt;}
.x13{left:135.200000pt;}
.x18{left:146.426667pt;}
.x14{left:170.026667pt;}
.x17{left:172.026667pt;}
.x4{left:180.266655pt;}
.x19{left:214.266667pt;}
.xe{left:224.906667pt;}
.x9{left:244.186655pt;}
.x20{left:247.226655pt;}
.x7{left:286.986655pt;}
.xb{left:300.986655pt;}
.xd{left:314.746655pt;}
.x1a{left:325.386667pt;}
.x15{left:377.226667pt;}
.x1b{left:391.546667pt;}
.x10{left:419.306667pt;}
.x1c{left:471.573333pt;}
.xc{left:505.013322pt;}
.xa{left:507.013322pt;}
.x21{left:549.733333pt;}
.x1d{left:562.693333pt;}
.x16{left:586.293333pt;}
.x1f{left:623.013322pt;}
.x8{left:639.013322pt;}
.x6{left:644.053322pt;}
.x1e{left:648.133333pt;}
.x5{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; }
  