
    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_927ff4f98f15a6fb4dd81b4e.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_dd72ed49e1d09db186fb30a5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cbb6617ab70214628544ac28.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_18f877f7f1369dba8a7c14aa.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f85d131bd2b94a523190e86b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f9e690539025318d390ebcce.woff')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_7a59e5a0e23047646cb6946a.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls23{letter-spacing:-0.427200px;}
.ls15{letter-spacing:-0.299400px;}
.ls20{letter-spacing:-0.243600px;}
.ls12{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.160800px;}
.ls21{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls24{letter-spacing:-0.067200px;}
.ls16{letter-spacing:-0.066000px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls6{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.060600px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.115800px;}
.ls14{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.168480px;}
.ls11{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.181200px;}
.lsd{letter-spacing:0.199200px;}
.ls17{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls1e{letter-spacing:47.726640px;}
.ls1c{letter-spacing:49.725360px;}
.ls1d{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;}
}
.ws1a{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.560400px;}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.425600px;}
.ws14{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.ws13{word-spacing:-13.342200px;}
.ws6{word-spacing:-13.275600px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.160400px;}
.ws19{word-spacing:-13.159200px;}
.ws17{word-spacing:-13.072800px;}
.ws12{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.982800px;}
.ws18{word-spacing:-12.799200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.614200px;}
.ws10{word-spacing:-8.553600px;}
.wsf{word-spacing:-8.254200px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._2{margin-left:-5.189617px;}
._1{margin-left:-3.449772px;}
._9{margin-left:-2.259456px;}
._0{margin-left:-1.110000px;}
._3{width:1.163628px;}
._4{width:3.092807px;}
._7{width:4.268400px;}
._8{width:5.290800px;}
._b{width:6.371999px;}
._e{width:8.056801px;}
._12{width:9.062039px;}
._a{width:10.401000px;}
._13{width:11.663280px;}
._d{width:14.849400px;}
._11{width:15.874082px;}
._c{width:17.014200px;}
._f{width:18.757440px;}
._10{width:19.864452px;}
._5{width:21.282600px;}
._6{width:22.364400px;}
._19{width:23.955600px;}
._14{width:25.009920px;}
._25{width:26.031960px;}
._33{width:27.925560px;}
._34{width:29.002080px;}
._1e{width:31.502880px;}
._2f{width:32.825520px;}
._15{width:34.088040px;}
._16{width:35.349960px;}
._38{width:36.758280px;}
._2a{width:38.816760px;}
._18{width:40.220280px;}
._28{width:43.466760px;}
._3f{width:44.568480px;}
._40{width:45.661200px;}
._1b{width:47.073960px;}
._3e{width:51.694680px;}
._2d{width:52.785360px;}
._21{width:53.867520px;}
._22{width:54.949680px;}
._41{width:56.055600px;}
._23{width:57.655080px;}
._3b{width:59.302080px;}
._3c{width:60.371400px;}
._3a{width:61.526520px;}
._35{width:63.396360px;}
._36{width:66.095640px;}
._37{width:67.447560px;}
._24{width:68.596920px;}
._3d{width:71.982960px;}
._26{width:73.466640px;}
._27{width:74.824296px;}
._17{width:80.801280px;}
._42{width:85.033440px;}
._43{width:86.211000px;}
._29{width:91.202040px;}
._2c{width:92.404440px;}
._1c{width:99.318240px;}
._31{width:104.458320px;}
._32{width:105.481200px;}
._1f{width:108.576720px;}
._2b{width:111.582720px;}
._1d{width:151.322040px;}
._39{width:171.463080px;}
._2e{width:191.361960px;}
._1a{width:286.712280px;}
._20{width:358.315200px;}
._30{width:851.018932px;}
.fc2{color:transparent;}
.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;}
.yed{bottom:7.830000px;}
.ydd{bottom:7.920000px;}
.ye1{bottom:25.470000px;}
.ye0{bottom:43.020000px;}
.ye5{bottom:43.110000px;}
.yec{bottom:60.600000px;}
.ydf{bottom:60.660000px;}
.ye2{bottom:64.440000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.ye8{bottom:78.210000px;}
.yeb{bottom:78.240000px;}
.ye9{bottom:81.990000px;}
.yee{bottom:82.020000px;}
.yf0{bottom:95.850000px;}
.yf1{bottom:99.630000px;}
.y1{bottom:101.640000px;}
.yf8{bottom:121.620000px;}
.yd6{bottom:123.510000px;}
.y178{bottom:124.680000px;}
.y5b{bottom:130.530000px;}
.ya9{bottom:134.580000px;}
.y11d{bottom:137.460000px;}
.y8b{bottom:139.170000px;}
.y27{bottom:140.250000px;}
.yd5{bottom:141.150000px;}
.y177{bottom:142.320000px;}
.y153{bottom:146.910000px;}
.y5a{bottom:148.170000px;}
.ya8{bottom:152.130000px;}
.y11c{bottom:155.100000px;}
.y8a{bottom:156.720000px;}
.yf7{bottom:156.810000px;}
.y26{bottom:157.800000px;}
.yd4{bottom:158.700000px;}
.y152{bottom:164.460000px;}
.y59{bottom:165.720000px;}
.y176{bottom:168.870000px;}
.ya7{bottom:169.680000px;}
.y89{bottom:174.270000px;}
.yf6{bottom:174.360000px;}
.y25{bottom:175.350000px;}
.y151{bottom:182.100000px;}
.y58{bottom:183.270000px;}
.y175{bottom:186.510000px;}
.ya6{bottom:187.320000px;}
.y11b{bottom:190.650000px;}
.y88{bottom:191.910000px;}
.yf5{bottom:192.000000px;}
.y24{bottom:192.990000px;}
.yd3{bottom:194.250000px;}
.y57{bottom:200.910000px;}
.ya5{bottom:204.870000px;}
.y11a{bottom:208.200000px;}
.y150{bottom:208.650000px;}
.y87{bottom:209.460000px;}
.yf4{bottom:209.550000px;}
.yd2{bottom:211.890000px;}
.y174{bottom:213.060000px;}
.y56{bottom:218.460000px;}
.ya4{bottom:222.510000px;}
.y119{bottom:225.840000px;}
.y14f{bottom:226.200000px;}
.y86{bottom:227.100000px;}
.y23{bottom:228.540000px;}
.yd1{bottom:229.440000px;}
.y173{bottom:230.610000px;}
.y55{bottom:236.100000px;}
.yf3{bottom:236.460000px;}
.ya3{bottom:240.060000px;}
.y14e{bottom:243.840000px;}
.y85{bottom:244.650000px;}
.y22{bottom:246.090000px;}
.yd0{bottom:247.080000px;}
.y54{bottom:253.650000px;}
.yf2{bottom:255.810000px;}
.y172{bottom:257.250000px;}
.y118{bottom:261.390000px;}
.y131{bottom:261.480000px;}
.y84{bottom:262.200000px;}
.y21{bottom:263.730000px;}
.ya2{bottom:266.610000px;}
.y14d{bottom:270.390000px;}
.y53{bottom:271.200000px;}
.y171{bottom:274.800000px;}
.y117{bottom:278.940000px;}
.y130{bottom:279.030000px;}
.y20{bottom:281.280000px;}
.ycf{bottom:282.630000px;}
.y14c{bottom:287.940000px;}
.y83{bottom:288.840000px;}
.y116{bottom:296.580000px;}
.y52{bottom:297.840000px;}
.y1f{bottom:298.920000px;}
.yce{bottom:300.180000px;}
.yef{bottom:301.440000px;}
.ya1{bottom:302.250000px;}
.y115{bottom:314.130000px;}
.y14b{bottom:314.580000px;}
.y1e{bottom:316.470000px;}
.ycd{bottom:317.820000px;}
.y170{bottom:318.990000px;}
.ya0{bottom:319.800000px;}
.y82{bottom:324.390000px;}
.y14a{bottom:332.130000px;}
.y12f{bottom:332.220000px;}
.y51{bottom:333.390000px;}
.y1d{bottom:334.020000px;}
.ycc{bottom:335.370000px;}
.y16f{bottom:336.540000px;}
.y9f{bottom:337.440000px;}
.y81{bottom:341.940000px;}
.y188{bottom:345.540000px;}
.y114{bottom:349.770000px;}
.y50{bottom:350.940000px;}
.y1c{bottom:351.660000px;}
.ycb{bottom:353.010000px;}
.y9e{bottom:354.990000px;}
.y149{bottom:358.770000px;}
.y16e{bottom:363.180000px;}
.y113{bottom:367.320000px;}
.y4f{bottom:368.580000px;}
.y80{bottom:368.850000px;}
.y1b{bottom:369.210000px;}
.y9d{bottom:372.540000px;}
.y148{bottom:376.320000px;}
.y16d{bottom:380.730000px;}
.y112{bottom:384.870000px;}
.y4e{bottom:386.130000px;}
.y1a{bottom:386.850000px;}
.yca{bottom:388.560000px;}
.y187{bottom:389.730000px;}
.y9c{bottom:390.180000px;}
.y111{bottom:402.510000px;}
.y147{bottom:402.870000px;}
.y4d{bottom:403.770000px;}
.y12e{bottom:404.940000px;}
.yc9{bottom:406.110000px;}
.y16c{bottom:407.370000px;}
.y9b{bottom:407.730000px;}
.y19{bottom:413.400000px;}
.yea{bottom:416.730000px;}
.y7f{bottom:417.180000px;}
.y4c{bottom:421.320000px;}
.y12d{bottom:422.490000px;}
.yc8{bottom:423.750000px;}
.y16b{bottom:424.920000px;}
.y9a{bottom:425.370000px;}
.y146{bottom:429.510000px;}
.y186{bottom:433.920000px;}
.y7e{bottom:434.730000px;}
.y110{bottom:438.060000px;}
.y4b{bottom:438.870000px;}
.yc7{bottom:441.300000px;}
.y12c{bottom:441.390000px;}
.y145{bottom:447.060000px;}
.y18{bottom:449.310000px;}
.y16a{bottom:451.470000px;}
.y99{bottom:451.920000px;}
.y7d{bottom:452.370000px;}
.y10f{bottom:455.700000px;}
.y4a{bottom:456.510000px;}
.yc6{bottom:458.940000px;}
.y144{bottom:464.700000px;}
.y169{bottom:469.110000px;}
.y7c{bottom:469.950000px;}
.y49{bottom:474.090000px;}
.yc5{bottom:476.520000px;}
.y12b{bottom:477.780000px;}
.y185{bottom:478.140000px;}
.y10e{bottom:482.280000px;}
.y168{bottom:486.690000px;}
.y7b{bottom:487.500000px;}
.y143{bottom:491.280000px;}
.y48{bottom:491.730000px;}
.y12a{bottom:495.330000px;}
.y184{bottom:495.690000px;}
.y17{bottom:497.580000px;}
.y7a{bottom:505.140000px;}
.y142{bottom:508.830000px;}
.yc4{bottom:512.070000px;}
.y167{bottom:513.330000px;}
.y129{bottom:514.230000px;}
.ye7{bottom:514.410000px;}
.y16{bottom:515.490000px;}
.y10d{bottom:517.830000px;}
.y47{bottom:518.280000px;}
.y183{bottom:522.330000px;}
.y79{bottom:522.690000px;}
.y141{bottom:526.470000px;}
.yc3{bottom:529.710000px;}
.y166{bottom:530.880000px;}
.y128{bottom:531.780000px;}
.y10c{bottom:535.470000px;}
.y182{bottom:539.880000px;}
.y98{bottom:540.330000px;}
.yc2{bottom:547.260000px;}
.y78{bottom:549.330000px;}
.y127{bottom:550.590000px;}
.y15{bottom:552.570000px;}
.y10b{bottom:553.020000px;}
.y46{bottom:553.830000px;}
.y165{bottom:557.430000px;}
.y97{bottom:557.880000px;}
.y181{bottom:566.430000px;}
.y126{bottom:568.140000px;}
.y14{bottom:570.120000px;}
.y140{bottom:570.660000px;}
.y45{bottom:571.470000px;}
.yc1{bottom:574.170000px;}
.y164{bottom:575.070000px;}
.y96{bottom:575.430000px;}
.y180{bottom:584.070000px;}
.y77{bottom:584.880000px;}
.y125{bottom:586.950000px;}
.y13{bottom:587.670000px;}
.y10a{bottom:588.660000px;}
.y44{bottom:589.020000px;}
.y95{bottom:593.070000px;}
.y13f{bottom:597.210000px;}
.y163{bottom:601.620000px;}
.y76{bottom:602.430000px;}
.y124{bottom:604.500000px;}
.y12{bottom:605.310000px;}
.y109{bottom:606.210000px;}
.y43{bottom:606.660000px;}
.y94{bottom:610.620000px;}
.ye6{bottom:612.060000px;}
.y162{bottom:619.260000px;}
.y75{bottom:620.070000px;}
.yc0{bottom:622.410000px;}
.y11{bottom:622.860000px;}
.y108{bottom:623.760000px;}
.y42{bottom:624.210000px;}
.y17f{bottom:628.260000px;}
.y93{bottom:637.260000px;}
.y74{bottom:637.620000px;}
.ybf{bottom:640.050000px;}
.y10{bottom:640.500000px;}
.y107{bottom:641.400000px;}
.y41{bottom:641.760000px;}
.y161{bottom:645.810000px;}
.y73{bottom:655.260000px;}
.ybe{bottom:657.600000px;}
.yf{bottom:658.050000px;}
.y123{bottom:658.950000px;}
.y40{bottom:659.400000px;}
.y160{bottom:663.360000px;}
.y13e{bottom:667.950000px;}
.y17e{bottom:672.360000px;}
.y72{bottom:672.810000px;}
.ye{bottom:675.600000px;}
.y3f{bottom:676.950000px;}
.y13d{bottom:685.590000px;}
.y15f{bottom:690.000000px;}
.y71{bottom:690.360000px;}
.ye4{bottom:692.160000px;}
.yd{bottom:693.240000px;}
.y106{bottom:694.590000px;}
.y3e{bottom:703.590000px;}
.y15e{bottom:707.550000px;}
.y70{bottom:708.000000px;}
.yc{bottom:710.790000px;}
.y105{bottom:712.140000px;}
.y17d{bottom:716.550000px;}
.y92{bottom:725.550000px;}
.ybd{bottom:728.340000px;}
.yb{bottom:728.430000px;}
.y104{bottom:729.690000px;}
.y15d{bottom:734.190000px;}
.y6f{bottom:734.550000px;}
.y3d{bottom:739.140000px;}
.y91{bottom:743.190000px;}
.ybc{bottom:745.980000px;}
.y15c{bottom:751.740000px;}
.ya{bottom:755.340000px;}
.y13c{bottom:756.330000px;}
.y3c{bottom:756.690000px;}
.y90{bottom:760.740000px;}
.ybb{bottom:763.530000px;}
.y103{bottom:765.330000px;}
.y15b{bottom:769.290000px;}
.y6e{bottom:770.190000px;}
.ye3{bottom:772.260000px;}
.y13b{bottom:773.880000px;}
.y3b{bottom:774.330000px;}
.y17c{bottom:778.290000px;}
.yba{bottom:781.170000px;}
.y102{bottom:782.880000px;}
.y8f{bottom:787.290000px;}
.y6d{bottom:787.740000px;}
.y13a{bottom:791.520000px;}
.y3a{bottom:791.880000px;}
.y15a{bottom:795.930000px;}
.yb9{bottom:798.720000px;}
.y101{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y17b{bottom:804.930000px;}
.y6c{bottom:805.290000px;}
.y39{bottom:809.520000px;}
.y159{bottom:813.480000px;}
.y100{bottom:818.070000px;}
.y17a{bottom:822.480000px;}
.y6b{bottom:822.930000px;}
.y38{bottom:827.070000px;}
.yb8{bottom:834.270000px;}
.y122{bottom:835.620000px;}
.y8{bottom:839.130000px;}
.y158{bottom:840.030000px;}
.y6a{bottom:840.480000px;}
.y37{bottom:844.620000px;}
.yb7{bottom:851.910000px;}
.yde{bottom:852.360000px;}
.yff{bottom:853.620000px;}
.y157{bottom:857.670000px;}
.y69{bottom:858.030000px;}
.y36{bottom:862.260000px;}
.y179{bottom:866.670000px;}
.yb6{bottom:869.460000px;}
.yfe{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.y68{bottom:875.670000px;}
.y35{bottom:879.810000px;}
.y156{bottom:884.220000px;}
.yfd{bottom:888.810000px;}
.y67{bottom:893.220000px;}
.y155{bottom:901.860000px;}
.yb5{bottom:905.100000px;}
.y34{bottom:906.450000px;}
.y66{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.yfc{bottom:915.720000px;}
.yb4{bottom:922.650000px;}
.y121{bottom:924.000000px;}
.y8e{bottom:928.410000px;}
.ydc{bottom:932.460000px;}
.y65{bottom:937.410000px;}
.yb3{bottom:940.200000px;}
.y120{bottom:941.550000px;}
.y33{bottom:942.000000px;}
.y8d{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y139{bottom:950.550000px;}
.yb2{bottom:957.840000px;}
.y32{bottom:959.550000px;}
.yfb{bottom:963.960000px;}
.y138{bottom:968.190000px;}
.y11f{bottom:968.460000px;}
.y8c{bottom:972.600000px;}
.y64{bottom:972.960000px;}
.yb1{bottom:975.390000px;}
.y31{bottom:977.190000px;}
.ydb{bottom:981.150000px;}
.yfa{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y154{bottom:990.150000px;}
.y63{bottom:990.600000px;}
.yb0{bottom:993.030000px;}
.y137{bottom:994.740000px;}
.yf9{bottom:999.150000px;}
.y30{bottom:1004.100000px;}
.y62{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y136{bottom:1012.320000px;}
.yda{bottom:1016.820000px;}
.y61{bottom:1025.820000px;}
.yaf{bottom:1028.610000px;}
.yd9{bottom:1034.370000px;}
.y135{bottom:1038.960000px;}
.y60{bottom:1043.370000px;}
.yae{bottom:1046.160000px;}
.yd8{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y134{bottom:1056.510000px;}
.y5f{bottom:1060.920000px;}
.yad{bottom:1063.800000px;}
.yd7{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y5e{bottom:1078.560000px;}
.yac{bottom:1081.350000px;}
.y133{bottom:1083.150000px;}
.y11e{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y5d{bottom:1096.110000px;}
.y132{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.yab{bottom:1108.260000px;}
.y5c{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yaa{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.hc{height:32.918906px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h11{height:61.793886px;}
.h8{height:62.585859px;}
.h10{height:67.714259px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:79.380000px;}
.hd{height:96.930000px;}
.he{height:96.960000px;}
.hf{height:114.570000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:91.980000px;}
.w3{width:159.330000px;}
.w4{width:246.600000px;}
.w5{width:255.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x8{left:75.959987px;}
.x9{left:102.959987px;}
.xa{left:111.239987px;}
.x2{left:202.799987px;}
.x5{left:228.900000px;}
.x6{left:476.310000px;}
.x7{left:732.480000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls23{letter-spacing:-0.379733pt;}
.ls15{letter-spacing:-0.266133pt;}
.ls20{letter-spacing:-0.216533pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.142933pt;}
.ls21{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls24{letter-spacing:-0.059733pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls6{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.102933pt;}
.ls14{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.149760pt;}
.ls11{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.161067pt;}
.lsd{letter-spacing:0.177067pt;}
.ls17{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:44.200320pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws1a{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.498133pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.933867pt;}
.ws14{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.ws13{word-spacing:-11.859733pt;}
.ws6{word-spacing:-11.800533pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.698133pt;}
.ws19{word-spacing:-11.697067pt;}
.ws17{word-spacing:-11.620267pt;}
.ws12{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.540267pt;}
.ws18{word-spacing:-11.377067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.657067pt;}
.ws10{word-spacing:-7.603200pt;}
.wsf{word-spacing:-7.337067pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._2{margin-left:-4.612993pt;}
._1{margin-left:-3.066464pt;}
._9{margin-left:-2.008406pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.034336pt;}
._4{width:2.749161pt;}
._7{width:3.794133pt;}
._8{width:4.702934pt;}
._b{width:5.663999pt;}
._e{width:7.161601pt;}
._12{width:8.055145pt;}
._a{width:9.245334pt;}
._13{width:10.367360pt;}
._d{width:13.199466pt;}
._11{width:14.110295pt;}
._c{width:15.123734pt;}
._f{width:16.673280pt;}
._10{width:17.657290pt;}
._5{width:18.917867pt;}
._6{width:19.879466pt;}
._19{width:21.293867pt;}
._14{width:22.231040pt;}
._25{width:23.139520pt;}
._33{width:24.822720pt;}
._34{width:25.779627pt;}
._1e{width:28.002560pt;}
._2f{width:29.178240pt;}
._15{width:30.300480pt;}
._16{width:31.422187pt;}
._38{width:32.674027pt;}
._2a{width:34.503787pt;}
._18{width:35.751360pt;}
._28{width:38.637120pt;}
._3f{width:39.616427pt;}
._40{width:40.587733pt;}
._1b{width:41.843520pt;}
._3e{width:45.950827pt;}
._2d{width:46.920320pt;}
._21{width:47.882240pt;}
._22{width:48.844160pt;}
._41{width:49.827200pt;}
._23{width:51.248960pt;}
._3b{width:52.712960pt;}
._3c{width:53.663467pt;}
._3a{width:54.690240pt;}
._35{width:56.352320pt;}
._36{width:58.751680pt;}
._37{width:59.953387pt;}
._24{width:60.975040pt;}
._3d{width:63.984853pt;}
._26{width:65.303680pt;}
._27{width:66.510486pt;}
._17{width:71.823360pt;}
._42{width:75.585280pt;}
._43{width:76.632000pt;}
._29{width:81.068480pt;}
._2c{width:82.137280pt;}
._1c{width:88.282880pt;}
._31{width:92.851840pt;}
._32{width:93.761067pt;}
._1f{width:96.512640pt;}
._2b{width:99.184640pt;}
._1d{width:134.508480pt;}
._39{width:152.411627pt;}
._2e{width:170.099520pt;}
._1a{width:254.855360pt;}
._20{width:318.502400pt;}
._30{width:756.461273pt;}
.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;}
.yed{bottom:6.960000pt;}
.ydd{bottom:7.040000pt;}
.ye1{bottom:22.640000pt;}
.ye0{bottom:38.240000pt;}
.ye5{bottom:38.320000pt;}
.yec{bottom:53.866667pt;}
.ydf{bottom:53.920000pt;}
.ye2{bottom:57.280000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.ye8{bottom:69.520000pt;}
.yeb{bottom:69.546667pt;}
.ye9{bottom:72.880000pt;}
.yee{bottom:72.906667pt;}
.yf0{bottom:85.200000pt;}
.yf1{bottom:88.560000pt;}
.y1{bottom:90.346667pt;}
.yf8{bottom:108.106667pt;}
.yd6{bottom:109.786667pt;}
.y178{bottom:110.826667pt;}
.y5b{bottom:116.026667pt;}
.ya9{bottom:119.626667pt;}
.y11d{bottom:122.186667pt;}
.y8b{bottom:123.706667pt;}
.y27{bottom:124.666667pt;}
.yd5{bottom:125.466667pt;}
.y177{bottom:126.506667pt;}
.y153{bottom:130.586667pt;}
.y5a{bottom:131.706667pt;}
.ya8{bottom:135.226667pt;}
.y11c{bottom:137.866667pt;}
.y8a{bottom:139.306667pt;}
.yf7{bottom:139.386667pt;}
.y26{bottom:140.266667pt;}
.yd4{bottom:141.066667pt;}
.y152{bottom:146.186667pt;}
.y59{bottom:147.306667pt;}
.y176{bottom:150.106667pt;}
.ya7{bottom:150.826667pt;}
.y89{bottom:154.906667pt;}
.yf6{bottom:154.986667pt;}
.y25{bottom:155.866667pt;}
.y151{bottom:161.866667pt;}
.y58{bottom:162.906667pt;}
.y175{bottom:165.786667pt;}
.ya6{bottom:166.506667pt;}
.y11b{bottom:169.466667pt;}
.y88{bottom:170.586667pt;}
.yf5{bottom:170.666667pt;}
.y24{bottom:171.546667pt;}
.yd3{bottom:172.666667pt;}
.y57{bottom:178.586667pt;}
.ya5{bottom:182.106667pt;}
.y11a{bottom:185.066667pt;}
.y150{bottom:185.466667pt;}
.y87{bottom:186.186667pt;}
.yf4{bottom:186.266667pt;}
.yd2{bottom:188.346667pt;}
.y174{bottom:189.386667pt;}
.y56{bottom:194.186667pt;}
.ya4{bottom:197.786667pt;}
.y119{bottom:200.746667pt;}
.y14f{bottom:201.066667pt;}
.y86{bottom:201.866667pt;}
.y23{bottom:203.146667pt;}
.yd1{bottom:203.946667pt;}
.y173{bottom:204.986667pt;}
.y55{bottom:209.866667pt;}
.yf3{bottom:210.186667pt;}
.ya3{bottom:213.386667pt;}
.y14e{bottom:216.746667pt;}
.y85{bottom:217.466667pt;}
.y22{bottom:218.746667pt;}
.yd0{bottom:219.626667pt;}
.y54{bottom:225.466667pt;}
.yf2{bottom:227.386667pt;}
.y172{bottom:228.666667pt;}
.y118{bottom:232.346667pt;}
.y131{bottom:232.426667pt;}
.y84{bottom:233.066667pt;}
.y21{bottom:234.426667pt;}
.ya2{bottom:236.986667pt;}
.y14d{bottom:240.346667pt;}
.y53{bottom:241.066667pt;}
.y171{bottom:244.266667pt;}
.y117{bottom:247.946667pt;}
.y130{bottom:248.026667pt;}
.y20{bottom:250.026667pt;}
.ycf{bottom:251.226667pt;}
.y14c{bottom:255.946667pt;}
.y83{bottom:256.746667pt;}
.y116{bottom:263.626667pt;}
.y52{bottom:264.746667pt;}
.y1f{bottom:265.706667pt;}
.yce{bottom:266.826667pt;}
.yef{bottom:267.946667pt;}
.ya1{bottom:268.666667pt;}
.y115{bottom:279.226667pt;}
.y14b{bottom:279.626667pt;}
.y1e{bottom:281.306667pt;}
.ycd{bottom:282.506667pt;}
.y170{bottom:283.546667pt;}
.ya0{bottom:284.266667pt;}
.y82{bottom:288.346667pt;}
.y14a{bottom:295.226667pt;}
.y12f{bottom:295.306667pt;}
.y51{bottom:296.346667pt;}
.y1d{bottom:296.906667pt;}
.ycc{bottom:298.106667pt;}
.y16f{bottom:299.146667pt;}
.y9f{bottom:299.946667pt;}
.y81{bottom:303.946667pt;}
.y188{bottom:307.146667pt;}
.y114{bottom:310.906667pt;}
.y50{bottom:311.946667pt;}
.y1c{bottom:312.586667pt;}
.ycb{bottom:313.786667pt;}
.y9e{bottom:315.546667pt;}
.y149{bottom:318.906667pt;}
.y16e{bottom:322.826667pt;}
.y113{bottom:326.506667pt;}
.y4f{bottom:327.626667pt;}
.y80{bottom:327.866667pt;}
.y1b{bottom:328.186667pt;}
.y9d{bottom:331.146667pt;}
.y148{bottom:334.506667pt;}
.y16d{bottom:338.426667pt;}
.y112{bottom:342.106667pt;}
.y4e{bottom:343.226667pt;}
.y1a{bottom:343.866667pt;}
.yca{bottom:345.386667pt;}
.y187{bottom:346.426667pt;}
.y9c{bottom:346.826667pt;}
.y111{bottom:357.786667pt;}
.y147{bottom:358.106667pt;}
.y4d{bottom:358.906667pt;}
.y12e{bottom:359.946667pt;}
.yc9{bottom:360.986667pt;}
.y16c{bottom:362.106667pt;}
.y9b{bottom:362.426667pt;}
.y19{bottom:367.466667pt;}
.yea{bottom:370.426667pt;}
.y7f{bottom:370.826667pt;}
.y4c{bottom:374.506667pt;}
.y12d{bottom:375.546667pt;}
.yc8{bottom:376.666667pt;}
.y16b{bottom:377.706667pt;}
.y9a{bottom:378.106667pt;}
.y146{bottom:381.786667pt;}
.y186{bottom:385.706667pt;}
.y7e{bottom:386.426667pt;}
.y110{bottom:389.386667pt;}
.y4b{bottom:390.106667pt;}
.yc7{bottom:392.266667pt;}
.y12c{bottom:392.346667pt;}
.y145{bottom:397.386667pt;}
.y18{bottom:399.386667pt;}
.y16a{bottom:401.306667pt;}
.y99{bottom:401.706667pt;}
.y7d{bottom:402.106667pt;}
.y10f{bottom:405.066667pt;}
.y4a{bottom:405.786667pt;}
.yc6{bottom:407.946667pt;}
.y144{bottom:413.066667pt;}
.y169{bottom:416.986667pt;}
.y7c{bottom:417.733333pt;}
.y49{bottom:421.413333pt;}
.yc5{bottom:423.573333pt;}
.y12b{bottom:424.693333pt;}
.y185{bottom:425.013333pt;}
.y10e{bottom:428.693333pt;}
.y168{bottom:432.613333pt;}
.y7b{bottom:433.333333pt;}
.y143{bottom:436.693333pt;}
.y48{bottom:437.093333pt;}
.y12a{bottom:440.293333pt;}
.y184{bottom:440.613333pt;}
.y17{bottom:442.293333pt;}
.y7a{bottom:449.013333pt;}
.y142{bottom:452.293333pt;}
.yc4{bottom:455.173333pt;}
.y167{bottom:456.293333pt;}
.y129{bottom:457.093333pt;}
.ye7{bottom:457.253333pt;}
.y16{bottom:458.213333pt;}
.y10d{bottom:460.293333pt;}
.y47{bottom:460.693333pt;}
.y183{bottom:464.293333pt;}
.y79{bottom:464.613333pt;}
.y141{bottom:467.973333pt;}
.yc3{bottom:470.853333pt;}
.y166{bottom:471.893333pt;}
.y128{bottom:472.693333pt;}
.y10c{bottom:475.973333pt;}
.y182{bottom:479.893333pt;}
.y98{bottom:480.293333pt;}
.yc2{bottom:486.453333pt;}
.y78{bottom:488.293333pt;}
.y127{bottom:489.413333pt;}
.y15{bottom:491.173333pt;}
.y10b{bottom:491.573333pt;}
.y46{bottom:492.293333pt;}
.y165{bottom:495.493333pt;}
.y97{bottom:495.893333pt;}
.y181{bottom:503.493333pt;}
.y126{bottom:505.013333pt;}
.y14{bottom:506.773333pt;}
.y140{bottom:507.253333pt;}
.y45{bottom:507.973333pt;}
.yc1{bottom:510.373333pt;}
.y164{bottom:511.173333pt;}
.y96{bottom:511.493333pt;}
.y180{bottom:519.173333pt;}
.y77{bottom:519.893333pt;}
.y125{bottom:521.733333pt;}
.y13{bottom:522.373333pt;}
.y10a{bottom:523.253333pt;}
.y44{bottom:523.573333pt;}
.y95{bottom:527.173333pt;}
.y13f{bottom:530.853333pt;}
.y163{bottom:534.773333pt;}
.y76{bottom:535.493333pt;}
.y124{bottom:537.333333pt;}
.y12{bottom:538.053333pt;}
.y109{bottom:538.853333pt;}
.y43{bottom:539.253333pt;}
.y94{bottom:542.773333pt;}
.ye6{bottom:544.053333pt;}
.y162{bottom:550.453333pt;}
.y75{bottom:551.173333pt;}
.yc0{bottom:553.253333pt;}
.y11{bottom:553.653333pt;}
.y108{bottom:554.453333pt;}
.y42{bottom:554.853333pt;}
.y17f{bottom:558.453333pt;}
.y93{bottom:566.453333pt;}
.y74{bottom:566.773333pt;}
.ybf{bottom:568.933333pt;}
.y10{bottom:569.333333pt;}
.y107{bottom:570.133333pt;}
.y41{bottom:570.453333pt;}
.y161{bottom:574.053333pt;}
.y73{bottom:582.453333pt;}
.ybe{bottom:584.533333pt;}
.yf{bottom:584.933333pt;}
.y123{bottom:585.733333pt;}
.y40{bottom:586.133333pt;}
.y160{bottom:589.653333pt;}
.y13e{bottom:593.733333pt;}
.y17e{bottom:597.653333pt;}
.y72{bottom:598.053333pt;}
.ye{bottom:600.533333pt;}
.y3f{bottom:601.733333pt;}
.y13d{bottom:609.413333pt;}
.y15f{bottom:613.333333pt;}
.y71{bottom:613.653333pt;}
.ye4{bottom:615.253333pt;}
.yd{bottom:616.213333pt;}
.y106{bottom:617.413333pt;}
.y3e{bottom:625.413333pt;}
.y15e{bottom:628.933333pt;}
.y70{bottom:629.333333pt;}
.yc{bottom:631.813333pt;}
.y105{bottom:633.013333pt;}
.y17d{bottom:636.933333pt;}
.y92{bottom:644.933333pt;}
.ybd{bottom:647.413333pt;}
.yb{bottom:647.493333pt;}
.y104{bottom:648.613333pt;}
.y15d{bottom:652.613333pt;}
.y6f{bottom:652.933333pt;}
.y3d{bottom:657.013333pt;}
.y91{bottom:660.613333pt;}
.ybc{bottom:663.093333pt;}
.y15c{bottom:668.213333pt;}
.ya{bottom:671.413333pt;}
.y13c{bottom:672.293333pt;}
.y3c{bottom:672.613333pt;}
.y90{bottom:676.213333pt;}
.ybb{bottom:678.693333pt;}
.y103{bottom:680.293333pt;}
.y15b{bottom:683.813333pt;}
.y6e{bottom:684.613333pt;}
.ye3{bottom:686.453333pt;}
.y13b{bottom:687.893333pt;}
.y3b{bottom:688.293333pt;}
.y17c{bottom:691.813333pt;}
.yba{bottom:694.373333pt;}
.y102{bottom:695.893333pt;}
.y8f{bottom:699.813333pt;}
.y6d{bottom:700.213333pt;}
.y13a{bottom:703.573333pt;}
.y3a{bottom:703.893333pt;}
.y15a{bottom:707.493333pt;}
.yb9{bottom:709.973333pt;}
.y101{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y17b{bottom:715.493333pt;}
.y6c{bottom:715.813333pt;}
.y39{bottom:719.573333pt;}
.y159{bottom:723.093333pt;}
.y100{bottom:727.173333pt;}
.y17a{bottom:731.093333pt;}
.y6b{bottom:731.493333pt;}
.y38{bottom:735.173333pt;}
.yb8{bottom:741.573333pt;}
.y122{bottom:742.773333pt;}
.y8{bottom:745.893333pt;}
.y158{bottom:746.693333pt;}
.y6a{bottom:747.093333pt;}
.y37{bottom:750.773333pt;}
.yb7{bottom:757.253333pt;}
.yde{bottom:757.653333pt;}
.yff{bottom:758.773333pt;}
.y157{bottom:762.373333pt;}
.y69{bottom:762.693333pt;}
.y36{bottom:766.453333pt;}
.y179{bottom:770.373333pt;}
.yb6{bottom:772.853333pt;}
.yfe{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.y68{bottom:778.373333pt;}
.y35{bottom:782.053333pt;}
.y156{bottom:785.973333pt;}
.yfd{bottom:790.053333pt;}
.y67{bottom:793.973333pt;}
.y155{bottom:801.653333pt;}
.yb5{bottom:804.533333pt;}
.y34{bottom:805.733333pt;}
.y66{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.yfc{bottom:813.973333pt;}
.yb4{bottom:820.133333pt;}
.y121{bottom:821.333333pt;}
.y8e{bottom:825.253333pt;}
.ydc{bottom:828.853333pt;}
.y65{bottom:833.253333pt;}
.yb3{bottom:835.733333pt;}
.y120{bottom:836.933333pt;}
.y33{bottom:837.333333pt;}
.y8d{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y139{bottom:844.933333pt;}
.yb2{bottom:851.413333pt;}
.y32{bottom:852.933333pt;}
.yfb{bottom:856.853333pt;}
.y138{bottom:860.613333pt;}
.y11f{bottom:860.853333pt;}
.y8c{bottom:864.533333pt;}
.y64{bottom:864.853333pt;}
.yb1{bottom:867.013333pt;}
.y31{bottom:868.613333pt;}
.ydb{bottom:872.133333pt;}
.yfa{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y154{bottom:880.133333pt;}
.y63{bottom:880.533333pt;}
.yb0{bottom:882.693333pt;}
.y137{bottom:884.213333pt;}
.yf9{bottom:888.133333pt;}
.y30{bottom:892.533333pt;}
.y62{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y136{bottom:899.840000pt;}
.yda{bottom:903.840000pt;}
.y61{bottom:911.840000pt;}
.yaf{bottom:914.320000pt;}
.yd9{bottom:919.440000pt;}
.y135{bottom:923.520000pt;}
.y60{bottom:927.440000pt;}
.yae{bottom:929.920000pt;}
.yd8{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y134{bottom:939.120000pt;}
.y5f{bottom:943.040000pt;}
.yad{bottom:945.600000pt;}
.yd7{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y5e{bottom:958.720000pt;}
.yac{bottom:961.200000pt;}
.y133{bottom:962.800000pt;}
.y11e{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y5d{bottom:974.320000pt;}
.y132{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.yab{bottom:985.120000pt;}
.y5c{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yaa{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.hc{height:29.261250pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h11{height:54.927899pt;}
.h8{height:55.631875pt;}
.h10{height:60.190452pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:70.560000pt;}
.hd{height:86.160000pt;}
.he{height:86.186667pt;}
.hf{height:101.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:81.760000pt;}
.w3{width:141.626667pt;}
.w4{width:219.200000pt;}
.w5{width:226.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x8{left:67.519988pt;}
.x9{left:91.519988pt;}
.xa{left:98.879988pt;}
.x2{left:180.266655pt;}
.x5{left:203.466667pt;}
.x6{left:423.386667pt;}
.x7{left:651.093333pt;}
.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; }
  