
    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_36db29c402c6961f1255ffc2.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_4205ecfa83d67d6400df36d7.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_4e02012eb65a3a8f32a24645.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_d9f9182f1af4034ef804ab66.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_6c0d3862b81f2c162a65e90a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_28e49f52c810186a69200b93.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2ab0a70d0c34b74e1204a4d0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.105600px;}
.ls13{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.181200px;}
.ls17{letter-spacing:0.199200px;}
.ls15{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:11.640000px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws11{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.332000px;}
.ws5{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsa{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-4.060319px;}
._2{margin-left:-2.640000px;}
._0{margin-left:-1.104000px;}
._1{width:1.090188px;}
._8{width:2.150400px;}
._7{width:3.907800px;}
._c{width:5.530800px;}
._d{width:6.613200px;}
._e{width:7.695600px;}
._3{width:9.378600px;}
._9{width:11.367360px;}
._12{width:14.527200px;}
._6{width:15.532800px;}
._a{width:16.593000px;}
._b{width:17.856602px;}
._13{width:18.937800px;}
._14{width:19.950970px;}
._1c{width:20.990750px;}
._1a{width:22.124160px;}
._1b{width:23.152802px;}
._4{width:24.168000px;}
._19{width:26.008440px;}
._1d{width:27.174240px;}
._1e{width:28.329240px;}
._18{width:30.084717px;}
._5{width:31.142400px;}
._16{width:32.885640px;}
._10{width:41.745120px;}
._f{width:43.106040px;}
._15{width:65.290320px;}
._17{width:66.973680px;}
._21{width:95.891400px;}
._23{width:156.732840px;}
._24{width:263.445840px;}
._25{width:264.768480px;}
._1f{width:309.076920px;}
._20{width:310.098960px;}
._22{width:1105.666920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.830000px;}
.y35{bottom:7.920000px;}
.y3d{bottom:25.380000px;}
.y39{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y16c{bottom:112.980000px;}
.y197{bottom:113.430000px;}
.yae{bottom:121.260000px;}
.y16b{bottom:130.530000px;}
.y196{bottom:131.070000px;}
.y1b0{bottom:131.340000px;}
.y11e{bottom:135.570000px;}
.yad{bottom:138.900000px;}
.y57{bottom:141.240000px;}
.yd1{bottom:142.860000px;}
.y16a{bottom:148.170000px;}
.y195{bottom:148.620000px;}
.y1af{bottom:148.980000px;}
.y81{bottom:150.600000px;}
.y11d{bottom:153.120000px;}
.y27{bottom:156.270000px;}
.yd0{bottom:160.500000px;}
.y169{bottom:165.720000px;}
.yac{bottom:165.810000px;}
.y194{bottom:166.260000px;}
.y1ae{bottom:166.530000px;}
.y80{bottom:168.240000px;}
.y11c{bottom:170.670000px;}
.y26{bottom:173.820000px;}
.y56{bottom:176.790000px;}
.ycf{bottom:178.050000px;}
.y193{bottom:183.810000px;}
.y1ad{bottom:184.170000px;}
.y7f{bottom:185.790000px;}
.y145{bottom:188.130000px;}
.y11b{bottom:188.310000px;}
.y25{bottom:191.370000px;}
.y55{bottom:194.430000px;}
.yce{bottom:195.600000px;}
.y168{bottom:201.270000px;}
.y192{bottom:201.360000px;}
.y1ac{bottom:201.720000px;}
.y7e{bottom:203.430000px;}
.yf0{bottom:204.150000px;}
.y11a{bottom:205.860000px;}
.y24{bottom:209.010000px;}
.y54{bottom:211.980000px;}
.yab{bottom:214.050000px;}
.y167{bottom:218.910000px;}
.y191{bottom:219.000000px;}
.y1ab{bottom:219.270000px;}
.y7d{bottom:220.980000px;}
.ycd{bottom:222.510000px;}
.y119{bottom:223.500000px;}
.y144{bottom:223.680000px;}
.y53{bottom:229.530000px;}
.yef{bottom:231.420000px;}
.yaa{bottom:231.600000px;}
.y23{bottom:235.560000px;}
.y166{bottom:236.460000px;}
.y190{bottom:236.550000px;}
.y1aa{bottom:236.910000px;}
.y7c{bottom:238.530000px;}
.y118{bottom:241.050000px;}
.y143{bottom:241.320000px;}
.ya9{bottom:249.240000px;}
.y165{bottom:254.100000px;}
.y1a9{bottom:254.460000px;}
.y52{bottom:256.440000px;}
.y117{bottom:258.600000px;}
.yee{bottom:258.780000px;}
.y142{bottom:258.870000px;}
.ya8{bottom:266.790000px;}
.ycc{bottom:270.840000px;}
.y22{bottom:271.200000px;}
.y164{bottom:271.650000px;}
.y1a8{bottom:272.100000px;}
.y18f{bottom:272.190000px;}
.y7b{bottom:274.170000px;}
.y116{bottom:276.240000px;}
.y141{bottom:276.510000px;}
.yed{bottom:286.140000px;}
.ycb{bottom:288.390000px;}
.y21{bottom:288.750000px;}
.y163{bottom:289.200000px;}
.y1a7{bottom:289.650000px;}
.y18e{bottom:289.740000px;}
.y7a{bottom:291.720000px;}
.y140{bottom:294.060000px;}
.ya7{bottom:302.430000px;}
.y115{bottom:302.790000px;}
.y51{bottom:304.770000px;}
.yca{bottom:305.940000px;}
.y20{bottom:306.300000px;}
.y162{bottom:306.840000px;}
.y1a6{bottom:307.200000px;}
.y18d{bottom:307.290000px;}
.y79{bottom:309.360000px;}
.y13f{bottom:311.610000px;}
.yec{bottom:313.410000px;}
.ya6{bottom:319.980000px;}
.y50{bottom:322.320000px;}
.yc9{bottom:323.580000px;}
.y1f{bottom:323.940000px;}
.y161{bottom:324.390000px;}
.y1a5{bottom:324.840000px;}
.y18c{bottom:324.930000px;}
.y78{bottom:326.910000px;}
.y13e{bottom:329.250000px;}
.ya5{bottom:337.530000px;}
.y114{bottom:338.700000px;}
.y4f{bottom:339.870000px;}
.y1e{bottom:341.490000px;}
.y160{bottom:341.940000px;}
.y1a4{bottom:342.390000px;}
.y18b{bottom:342.480000px;}
.y77{bottom:344.460000px;}
.y13d{bottom:346.800000px;}
.ya4{bottom:355.170000px;}
.y4e{bottom:357.510000px;}
.y1d{bottom:359.130000px;}
.y1a3{bottom:359.940000px;}
.y18a{bottom:360.120000px;}
.y76{bottom:362.100000px;}
.yeb{bottom:362.190000px;}
.y13c{bottom:364.440000px;}
.y15f{bottom:368.580000px;}
.ya3{bottom:372.720000px;}
.y4d{bottom:375.060000px;}
.y1c{bottom:376.680000px;}
.yc8{bottom:376.770000px;}
.y189{bottom:377.670000px;}
.y75{bottom:379.650000px;}
.y1a2{bottom:386.850000px;}
.y113{bottom:386.940000px;}
.y4c{bottom:392.700000px;}
.y1b{bottom:394.230000px;}
.yc7{bottom:394.320000px;}
.y188{bottom:395.220000px;}
.y74{bottom:397.290000px;}
.yea{bottom:397.740000px;}
.y13b{bottom:399.990000px;}
.y15e{bottom:404.130000px;}
.y112{bottom:404.580000px;}
.ya2{bottom:408.360000px;}
.y4b{bottom:410.250000px;}
.yc6{bottom:411.870000px;}
.y187{bottom:412.860000px;}
.ye9{bottom:415.290000px;}
.y13a{bottom:417.540000px;}
.y1a{bottom:421.140000px;}
.y15d{bottom:421.770000px;}
.y111{bottom:422.130000px;}
.y73{bottom:424.110000px;}
.ya1{bottom:425.910000px;}
.ye8{bottom:432.930000px;}
.y139{bottom:435.180000px;}
.y15c{bottom:439.320000px;}
.y186{bottom:439.410000px;}
.y110{bottom:439.770000px;}
.ya0{bottom:443.460000px;}
.y4a{bottom:445.800000px;}
.yc5{bottom:447.510000px;}
.ye7{bottom:450.480000px;}
.y138{bottom:452.730000px;}
.y15b{bottom:456.870000px;}
.y10f{bottom:457.320000px;}
.y9f{bottom:461.100000px;}
.y49{bottom:463.440000px;}
.yc4{bottom:465.060000px;}
.ye6{bottom:468.120000px;}
.y19{bottom:469.470000px;}
.y72{bottom:469.860000px;}
.y137{bottom:470.400000px;}
.y185{bottom:472.470000px;}
.y15a{bottom:474.540000px;}
.y10e{bottom:474.900000px;}
.y9e{bottom:478.680000px;}
.y48{bottom:481.020000px;}
.yc3{bottom:482.730000px;}
.ye5{bottom:485.700000px;}
.y18{bottom:487.410000px;}
.y136{bottom:487.950000px;}
.y159{bottom:492.090000px;}
.y10d{bottom:492.540000px;}
.y9d{bottom:496.230000px;}
.y47{bottom:498.660000px;}
.y184{bottom:499.740000px;}
.yc2{bottom:500.280000px;}
.ye4{bottom:503.250000px;}
.y135{bottom:505.500000px;}
.y158{bottom:509.730000px;}
.y10c{bottom:510.090000px;}
.y71{bottom:514.770000px;}
.y46{bottom:516.210000px;}
.yc1{bottom:517.830000px;}
.ye3{bottom:520.890000px;}
.y134{bottom:523.140000px;}
.y17{bottom:524.400000px;}
.y183{bottom:527.100000px;}
.y157{bottom:527.280000px;}
.y10b{bottom:527.730000px;}
.y9c{bottom:531.870000px;}
.y45{bottom:533.760000px;}
.ye2{bottom:538.440000px;}
.y133{bottom:540.690000px;}
.y16{bottom:541.950000px;}
.y70{bottom:542.130000px;}
.y9b{bottom:549.420000px;}
.yc0{bottom:553.470000px;}
.y182{bottom:554.460000px;}
.ye1{bottom:556.080000px;}
.y1a1{bottom:558.330000px;}
.y15{bottom:559.590000px;}
.y156{bottom:562.830000px;}
.y10a{bottom:563.280000px;}
.y9a{bottom:567.060000px;}
.y132{bottom:567.330000px;}
.y44{bottom:569.400000px;}
.ybf{bottom:571.020000px;}
.y1a0{bottom:575.880000px;}
.y14{bottom:577.140000px;}
.y155{bottom:580.470000px;}
.y109{bottom:580.830000px;}
.y181{bottom:581.730000px;}
.y99{bottom:584.610000px;}
.y43{bottom:586.950000px;}
.ybe{bottom:588.660000px;}
.ye0{bottom:591.630000px;}
.y13{bottom:594.780000px;}
.y6f{bottom:596.760000px;}
.y154{bottom:598.020000px;}
.y108{bottom:598.470000px;}
.y98{bottom:602.160000px;}
.y131{bottom:602.880000px;}
.y42{bottom:604.590000px;}
.ybd{bottom:606.210000px;}
.y180{bottom:609.090000px;}
.ydf{bottom:609.180000px;}
.y19f{bottom:611.430000px;}
.y12{bottom:612.330000px;}
.y153{bottom:615.660000px;}
.y107{bottom:616.020000px;}
.y130{bottom:620.430000px;}
.y41{bottom:622.140000px;}
.yde{bottom:626.820000px;}
.y97{bottom:629.070000px;}
.y11{bottom:629.880000px;}
.y152{bottom:633.210000px;}
.y106{bottom:633.660000px;}
.y12f{bottom:638.070000px;}
.y40{bottom:639.690000px;}
.y6e{bottom:641.670000px;}
.ybc{bottom:641.760000px;}
.ydd{bottom:644.370000px;}
.y19e{bottom:646.620000px;}
.y10{bottom:647.520000px;}
.y151{bottom:650.760000px;}
.y105{bottom:651.210000px;}
.y12e{bottom:655.620000px;}
.y3f{bottom:657.330000px;}
.y17f{bottom:657.780000px;}
.ybb{bottom:659.400000px;}
.ydc{bottom:662.010000px;}
.y19d{bottom:664.260000px;}
.yf{bottom:665.070000px;}
.y150{bottom:668.400000px;}
.y104{bottom:668.760000px;}
.y12d{bottom:673.260000px;}
.y3e{bottom:674.880000px;}
.yba{bottom:676.950000px;}
.y96{bottom:677.400000px;}
.ydb{bottom:679.560000px;}
.y19c{bottom:681.810000px;}
.ye{bottom:682.710000px;}
.y14f{bottom:685.950000px;}
.y103{bottom:686.400000px;}
.y6d{bottom:690.360000px;}
.y12c{bottom:690.810000px;}
.y17e{bottom:693.420000px;}
.yb9{bottom:694.590000px;}
.y95{bottom:694.950000px;}
.yda{bottom:697.110000px;}
.y19b{bottom:699.360000px;}
.yd{bottom:700.260000px;}
.y102{bottom:703.950000px;}
.y3c{bottom:707.910000px;}
.y12b{bottom:708.360000px;}
.y17d{bottom:710.970000px;}
.yb8{bottom:712.140000px;}
.y94{bottom:712.590000px;}
.yd9{bottom:714.750000px;}
.y19a{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y1b9{bottom:721.590000px;}
.y6c{bottom:726.000000px;}
.y17c{bottom:728.520000px;}
.y93{bottom:730.140000px;}
.y101{bottom:730.590000px;}
.yd8{bottom:732.300000px;}
.y199{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y1b8{bottom:739.140000px;}
.y6b{bottom:743.550000px;}
.y17b{bottom:746.160000px;}
.y92{bottom:747.690000px;}
.y14e{bottom:748.140000px;}
.yd7{bottom:749.850000px;}
.y198{bottom:752.190000px;}
.y3b{bottom:752.820000px;}
.ya{bottom:753.000000px;}
.y6a{bottom:761.190000px;}
.y12a{bottom:761.550000px;}
.y17a{bottom:763.710000px;}
.yb7{bottom:765.330000px;}
.y14d{bottom:765.690000px;}
.y100{bottom:766.140000px;}
.yd6{bottom:767.490000px;}
.y69{bottom:778.740000px;}
.y129{bottom:779.190000px;}
.y9{bottom:779.910000px;}
.y3a{bottom:780.090000px;}
.y179{bottom:781.350000px;}
.yb6{bottom:782.880000px;}
.y91{bottom:783.330000px;}
.yff{bottom:783.690000px;}
.yd5{bottom:794.040000px;}
.y68{bottom:796.290000px;}
.y128{bottom:796.740000px;}
.y178{bottom:798.900000px;}
.yb5{bottom:800.520000px;}
.y90{bottom:800.880000px;}
.yfe{bottom:801.330000px;}
.y67{bottom:813.930000px;}
.y127{bottom:814.290000px;}
.y177{bottom:816.450000px;}
.yb4{bottom:818.070000px;}
.y8f{bottom:818.520000px;}
.yfd{bottom:818.880000px;}
.y38{bottom:825.000000px;}
.yd4{bottom:826.620000px;}
.y8{bottom:828.240000px;}
.y66{bottom:831.480000px;}
.y126{bottom:831.930000px;}
.y176{bottom:834.090000px;}
.y8e{bottom:836.070000px;}
.yfc{bottom:836.520000px;}
.yb3{bottom:844.980000px;}
.y1b7{bottom:845.070000px;}
.y65{bottom:849.030000px;}
.y125{bottom:849.480000px;}
.y8d{bottom:853.620000px;}
.yfb{bottom:854.070000px;}
.yd3{bottom:862.530000px;}
.y1b6{bottom:862.620000px;}
.y7{bottom:863.790000px;}
.y124{bottom:867.030000px;}
.y175{bottom:869.640000px;}
.y36{bottom:870.000000px;}
.y14c{bottom:871.260000px;}
.yfa{bottom:871.620000px;}
.y1b5{bottom:880.260000px;}
.y64{bottom:884.670000px;}
.y174{bottom:887.280000px;}
.y14b{bottom:888.810000px;}
.y8c{bottom:889.260000px;}
.yb2{bottom:893.220000px;}
.y34{bottom:897.270000px;}
.y1b4{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.y63{bottom:902.220000px;}
.y173{bottom:904.830000px;}
.y8b{bottom:906.810000px;}
.yb1{bottom:910.860000px;}
.y62{bottom:919.860000px;}
.y172{bottom:922.380000px;}
.y8a{bottom:924.450000px;}
.yb0{bottom:928.410000px;}
.y5{bottom:935.610000px;}
.y61{bottom:937.410000px;}
.y171{bottom:940.020000px;}
.y89{bottom:942.000000px;}
.y33{bottom:945.960000px;}
.y60{bottom:954.960000px;}
.y170{bottom:957.570000px;}
.y88{bottom:959.550000px;}
.yaf{bottom:963.600000px;}
.y123{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.y16f{bottom:975.210000px;}
.y87{bottom:977.190000px;}
.yf9{bottom:977.550000px;}
.yd2{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y5f{bottom:990.600000px;}
.y16e{bottom:992.760000px;}
.y86{bottom:994.740000px;}
.yf8{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y122{bottom:999.600000px;}
.y1b3{bottom:1003.740000px;}
.y5e{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y14a{bottom:1012.320000px;}
.yf7{bottom:1012.770000px;}
.y30{bottom:1016.820000px;}
.y121{bottom:1017.180000px;}
.y16d{bottom:1019.340000px;}
.y1b2{bottom:1021.320000px;}
.y85{bottom:1021.680000px;}
.y5d{bottom:1025.820000px;}
.y149{bottom:1029.960000px;}
.yf6{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y120{bottom:1034.820000px;}
.y1b1{bottom:1038.960000px;}
.y5c{bottom:1043.370000px;}
.y148{bottom:1047.510000px;}
.yf5{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y11f{bottom:1052.370000px;}
.y5b{bottom:1060.920000px;}
.y147{bottom:1065.150000px;}
.yf4{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.y84{bottom:1069.920000px;}
.y5a{bottom:1078.560000px;}
.yf3{bottom:1083.150000px;}
.y2c{bottom:1087.110000px;}
.y83{bottom:1087.560000px;}
.y146{bottom:1091.700000px;}
.y59{bottom:1096.110000px;}
.yf2{bottom:1100.700000px;}
.y82{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yf1{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:59.973223px;}
.h7{height:60.960938px;}
.hf{height:61.793886px;}
.h8{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:147.270000px;}
.w3{width:168.600000px;}
.w9{width:170.400000px;}
.wc{width:188.220000px;}
.wd{width:220.050000px;}
.w4{width:241.650000px;}
.wa{width:264.180000px;}
.w7{width:302.790000px;}
.w8{width:304.200000px;}
.we{width:306.930000px;}
.wb{width:308.430000px;}
.w5{width:344.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:74.340000px;}
.xc{left:88.200000px;}
.xf{left:111.239987px;}
.x2{left:211.079987px;}
.x7{left:216.750000px;}
.x5{left:238.080000px;}
.xa{left:245.550000px;}
.xd{left:277.230000px;}
.x6{left:480.450000px;}
.xe{left:498.090000px;}
.xb{left:510.450000px;}
.x8{left:520.260000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.093867pt;}
.ls13{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.161067pt;}
.ls17{letter-spacing:0.177067pt;}
.ls15{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:10.346667pt;}
.ls18{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws11{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.850667pt;}
.ws5{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsa{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.609173pt;}
._2{margin-left:-2.346667pt;}
._0{margin-left:-0.981333pt;}
._1{width:0.969056pt;}
._8{width:1.911467pt;}
._7{width:3.473600pt;}
._c{width:4.916266pt;}
._d{width:5.878400pt;}
._e{width:6.840534pt;}
._3{width:8.336533pt;}
._9{width:10.104320pt;}
._12{width:12.913067pt;}
._6{width:13.806933pt;}
._a{width:14.749333pt;}
._b{width:15.872535pt;}
._13{width:16.833600pt;}
._14{width:17.734195pt;}
._1c{width:18.658445pt;}
._1a{width:19.665920pt;}
._1b{width:20.580269pt;}
._4{width:21.482666pt;}
._19{width:23.118614pt;}
._1d{width:24.154880pt;}
._1e{width:25.181547pt;}
._18{width:26.741970pt;}
._5{width:27.682134pt;}
._16{width:29.231680pt;}
._10{width:37.106773pt;}
._f{width:38.316480pt;}
._15{width:58.035840pt;}
._17{width:59.532160pt;}
._21{width:85.236800pt;}
._23{width:139.318080pt;}
._24{width:234.174080pt;}
._25{width:235.349760pt;}
._1f{width:274.735040pt;}
._20{width:275.643520pt;}
._22{width:982.815040pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.960000pt;}
.y35{bottom:7.040000pt;}
.y3d{bottom:22.560000pt;}
.y39{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y16c{bottom:100.426667pt;}
.y197{bottom:100.826667pt;}
.yae{bottom:107.786667pt;}
.y16b{bottom:116.026667pt;}
.y196{bottom:116.506667pt;}
.y1b0{bottom:116.746667pt;}
.y11e{bottom:120.506667pt;}
.yad{bottom:123.466667pt;}
.y57{bottom:125.546667pt;}
.yd1{bottom:126.986667pt;}
.y16a{bottom:131.706667pt;}
.y195{bottom:132.106667pt;}
.y1af{bottom:132.426667pt;}
.y81{bottom:133.866667pt;}
.y11d{bottom:136.106667pt;}
.y27{bottom:138.906667pt;}
.yd0{bottom:142.666667pt;}
.y169{bottom:147.306667pt;}
.yac{bottom:147.386667pt;}
.y194{bottom:147.786667pt;}
.y1ae{bottom:148.026667pt;}
.y80{bottom:149.546667pt;}
.y11c{bottom:151.706667pt;}
.y26{bottom:154.506667pt;}
.y56{bottom:157.146667pt;}
.ycf{bottom:158.266667pt;}
.y193{bottom:163.386667pt;}
.y1ad{bottom:163.706667pt;}
.y7f{bottom:165.146667pt;}
.y145{bottom:167.226667pt;}
.y11b{bottom:167.386667pt;}
.y25{bottom:170.106667pt;}
.y55{bottom:172.826667pt;}
.yce{bottom:173.866667pt;}
.y168{bottom:178.906667pt;}
.y192{bottom:178.986667pt;}
.y1ac{bottom:179.306667pt;}
.y7e{bottom:180.826667pt;}
.yf0{bottom:181.466667pt;}
.y11a{bottom:182.986667pt;}
.y24{bottom:185.786667pt;}
.y54{bottom:188.426667pt;}
.yab{bottom:190.266667pt;}
.y167{bottom:194.586667pt;}
.y191{bottom:194.666667pt;}
.y1ab{bottom:194.906667pt;}
.y7d{bottom:196.426667pt;}
.ycd{bottom:197.786667pt;}
.y119{bottom:198.666667pt;}
.y144{bottom:198.826667pt;}
.y53{bottom:204.026667pt;}
.yef{bottom:205.706667pt;}
.yaa{bottom:205.866667pt;}
.y23{bottom:209.386667pt;}
.y166{bottom:210.186667pt;}
.y190{bottom:210.266667pt;}
.y1aa{bottom:210.586667pt;}
.y7c{bottom:212.026667pt;}
.y118{bottom:214.266667pt;}
.y143{bottom:214.506667pt;}
.ya9{bottom:221.546667pt;}
.y165{bottom:225.866667pt;}
.y1a9{bottom:226.186667pt;}
.y52{bottom:227.946667pt;}
.y117{bottom:229.866667pt;}
.yee{bottom:230.026667pt;}
.y142{bottom:230.106667pt;}
.ya8{bottom:237.146667pt;}
.ycc{bottom:240.746667pt;}
.y22{bottom:241.066667pt;}
.y164{bottom:241.466667pt;}
.y1a8{bottom:241.866667pt;}
.y18f{bottom:241.946667pt;}
.y7b{bottom:243.706667pt;}
.y116{bottom:245.546667pt;}
.y141{bottom:245.786667pt;}
.yed{bottom:254.346667pt;}
.ycb{bottom:256.346667pt;}
.y21{bottom:256.666667pt;}
.y163{bottom:257.066667pt;}
.y1a7{bottom:257.466667pt;}
.y18e{bottom:257.546667pt;}
.y7a{bottom:259.306667pt;}
.y140{bottom:261.386667pt;}
.ya7{bottom:268.826667pt;}
.y115{bottom:269.146667pt;}
.y51{bottom:270.906667pt;}
.yca{bottom:271.946667pt;}
.y20{bottom:272.266667pt;}
.y162{bottom:272.746667pt;}
.y1a6{bottom:273.066667pt;}
.y18d{bottom:273.146667pt;}
.y79{bottom:274.986667pt;}
.y13f{bottom:276.986667pt;}
.yec{bottom:278.586667pt;}
.ya6{bottom:284.426667pt;}
.y50{bottom:286.506667pt;}
.yc9{bottom:287.626667pt;}
.y1f{bottom:287.946667pt;}
.y161{bottom:288.346667pt;}
.y1a5{bottom:288.746667pt;}
.y18c{bottom:288.826667pt;}
.y78{bottom:290.586667pt;}
.y13e{bottom:292.666667pt;}
.ya5{bottom:300.026667pt;}
.y114{bottom:301.066667pt;}
.y4f{bottom:302.106667pt;}
.y1e{bottom:303.546667pt;}
.y160{bottom:303.946667pt;}
.y1a4{bottom:304.346667pt;}
.y18b{bottom:304.426667pt;}
.y77{bottom:306.186667pt;}
.y13d{bottom:308.266667pt;}
.ya4{bottom:315.706667pt;}
.y4e{bottom:317.786667pt;}
.y1d{bottom:319.226667pt;}
.y1a3{bottom:319.946667pt;}
.y18a{bottom:320.106667pt;}
.y76{bottom:321.866667pt;}
.yeb{bottom:321.946667pt;}
.y13c{bottom:323.946667pt;}
.y15f{bottom:327.626667pt;}
.ya3{bottom:331.306667pt;}
.y4d{bottom:333.386667pt;}
.y1c{bottom:334.826667pt;}
.yc8{bottom:334.906667pt;}
.y189{bottom:335.706667pt;}
.y75{bottom:337.466667pt;}
.y1a2{bottom:343.866667pt;}
.y113{bottom:343.946667pt;}
.y4c{bottom:349.066667pt;}
.y1b{bottom:350.426667pt;}
.yc7{bottom:350.506667pt;}
.y188{bottom:351.306667pt;}
.y74{bottom:353.146667pt;}
.yea{bottom:353.546667pt;}
.y13b{bottom:355.546667pt;}
.y15e{bottom:359.226667pt;}
.y112{bottom:359.626667pt;}
.ya2{bottom:362.986667pt;}
.y4b{bottom:364.666667pt;}
.yc6{bottom:366.106667pt;}
.y187{bottom:366.986667pt;}
.ye9{bottom:369.146667pt;}
.y13a{bottom:371.146667pt;}
.y1a{bottom:374.346667pt;}
.y15d{bottom:374.906667pt;}
.y111{bottom:375.226667pt;}
.y73{bottom:376.986667pt;}
.ya1{bottom:378.586667pt;}
.ye8{bottom:384.826667pt;}
.y139{bottom:386.826667pt;}
.y15c{bottom:390.506667pt;}
.y186{bottom:390.586667pt;}
.y110{bottom:390.906667pt;}
.ya0{bottom:394.186667pt;}
.y4a{bottom:396.266667pt;}
.yc5{bottom:397.786667pt;}
.ye7{bottom:400.426667pt;}
.y138{bottom:402.426667pt;}
.y15b{bottom:406.106667pt;}
.y10f{bottom:406.506667pt;}
.y9f{bottom:409.866667pt;}
.y49{bottom:411.946667pt;}
.yc4{bottom:413.386667pt;}
.ye6{bottom:416.106667pt;}
.y19{bottom:417.306667pt;}
.y72{bottom:417.653333pt;}
.y137{bottom:418.133333pt;}
.y185{bottom:419.973333pt;}
.y15a{bottom:421.813333pt;}
.y10e{bottom:422.133333pt;}
.y9e{bottom:425.493333pt;}
.y48{bottom:427.573333pt;}
.yc3{bottom:429.093333pt;}
.ye5{bottom:431.733333pt;}
.y18{bottom:433.253333pt;}
.y136{bottom:433.733333pt;}
.y159{bottom:437.413333pt;}
.y10d{bottom:437.813333pt;}
.y9d{bottom:441.093333pt;}
.y47{bottom:443.253333pt;}
.y184{bottom:444.213333pt;}
.yc2{bottom:444.693333pt;}
.ye4{bottom:447.333333pt;}
.y135{bottom:449.333333pt;}
.y158{bottom:453.093333pt;}
.y10c{bottom:453.413333pt;}
.y71{bottom:457.573333pt;}
.y46{bottom:458.853333pt;}
.yc1{bottom:460.293333pt;}
.ye3{bottom:463.013333pt;}
.y134{bottom:465.013333pt;}
.y17{bottom:466.133333pt;}
.y183{bottom:468.533333pt;}
.y157{bottom:468.693333pt;}
.y10b{bottom:469.093333pt;}
.y9c{bottom:472.773333pt;}
.y45{bottom:474.453333pt;}
.ye2{bottom:478.613333pt;}
.y133{bottom:480.613333pt;}
.y16{bottom:481.733333pt;}
.y70{bottom:481.893333pt;}
.y9b{bottom:488.373333pt;}
.yc0{bottom:491.973333pt;}
.y182{bottom:492.853333pt;}
.ye1{bottom:494.293333pt;}
.y1a1{bottom:496.293333pt;}
.y15{bottom:497.413333pt;}
.y156{bottom:500.293333pt;}
.y10a{bottom:500.693333pt;}
.y9a{bottom:504.053333pt;}
.y132{bottom:504.293333pt;}
.y44{bottom:506.133333pt;}
.ybf{bottom:507.573333pt;}
.y1a0{bottom:511.893333pt;}
.y14{bottom:513.013333pt;}
.y155{bottom:515.973333pt;}
.y109{bottom:516.293333pt;}
.y181{bottom:517.093333pt;}
.y99{bottom:519.653333pt;}
.y43{bottom:521.733333pt;}
.ybe{bottom:523.253333pt;}
.ye0{bottom:525.893333pt;}
.y13{bottom:528.693333pt;}
.y6f{bottom:530.453333pt;}
.y154{bottom:531.573333pt;}
.y108{bottom:531.973333pt;}
.y98{bottom:535.253333pt;}
.y131{bottom:535.893333pt;}
.y42{bottom:537.413333pt;}
.ybd{bottom:538.853333pt;}
.y180{bottom:541.413333pt;}
.ydf{bottom:541.493333pt;}
.y19f{bottom:543.493333pt;}
.y12{bottom:544.293333pt;}
.y153{bottom:547.253333pt;}
.y107{bottom:547.573333pt;}
.y130{bottom:551.493333pt;}
.y41{bottom:553.013333pt;}
.yde{bottom:557.173333pt;}
.y97{bottom:559.173333pt;}
.y11{bottom:559.893333pt;}
.y152{bottom:562.853333pt;}
.y106{bottom:563.253333pt;}
.y12f{bottom:567.173333pt;}
.y40{bottom:568.613333pt;}
.y6e{bottom:570.373333pt;}
.ybc{bottom:570.453333pt;}
.ydd{bottom:572.773333pt;}
.y19e{bottom:574.773333pt;}
.y10{bottom:575.573333pt;}
.y151{bottom:578.453333pt;}
.y105{bottom:578.853333pt;}
.y12e{bottom:582.773333pt;}
.y3f{bottom:584.293333pt;}
.y17f{bottom:584.693333pt;}
.ybb{bottom:586.133333pt;}
.ydc{bottom:588.453333pt;}
.y19d{bottom:590.453333pt;}
.yf{bottom:591.173333pt;}
.y150{bottom:594.133333pt;}
.y104{bottom:594.453333pt;}
.y12d{bottom:598.453333pt;}
.y3e{bottom:599.893333pt;}
.yba{bottom:601.733333pt;}
.y96{bottom:602.133333pt;}
.ydb{bottom:604.053333pt;}
.y19c{bottom:606.053333pt;}
.ye{bottom:606.853333pt;}
.y14f{bottom:609.733333pt;}
.y103{bottom:610.133333pt;}
.y6d{bottom:613.653333pt;}
.y12c{bottom:614.053333pt;}
.y17e{bottom:616.373333pt;}
.yb9{bottom:617.413333pt;}
.y95{bottom:617.733333pt;}
.yda{bottom:619.653333pt;}
.y19b{bottom:621.653333pt;}
.yd{bottom:622.453333pt;}
.y102{bottom:625.733333pt;}
.y3c{bottom:629.253333pt;}
.y12b{bottom:629.653333pt;}
.y17d{bottom:631.973333pt;}
.yb8{bottom:633.013333pt;}
.y94{bottom:633.413333pt;}
.yd9{bottom:635.333333pt;}
.y19a{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y1b9{bottom:641.413333pt;}
.y6c{bottom:645.333333pt;}
.y17c{bottom:647.573333pt;}
.y93{bottom:649.013333pt;}
.y101{bottom:649.413333pt;}
.yd8{bottom:650.933333pt;}
.y199{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y1b8{bottom:657.013333pt;}
.y6b{bottom:660.933333pt;}
.y17b{bottom:663.253333pt;}
.y92{bottom:664.613333pt;}
.y14e{bottom:665.013333pt;}
.yd7{bottom:666.533333pt;}
.y198{bottom:668.613333pt;}
.y3b{bottom:669.173333pt;}
.ya{bottom:669.333333pt;}
.y6a{bottom:676.613333pt;}
.y12a{bottom:676.933333pt;}
.y17a{bottom:678.853333pt;}
.yb7{bottom:680.293333pt;}
.y14d{bottom:680.613333pt;}
.y100{bottom:681.013333pt;}
.yd6{bottom:682.213333pt;}
.y69{bottom:692.213333pt;}
.y129{bottom:692.613333pt;}
.y9{bottom:693.253333pt;}
.y3a{bottom:693.413333pt;}
.y179{bottom:694.533333pt;}
.yb6{bottom:695.893333pt;}
.y91{bottom:696.293333pt;}
.yff{bottom:696.613333pt;}
.yd5{bottom:705.813333pt;}
.y68{bottom:707.813333pt;}
.y128{bottom:708.213333pt;}
.y178{bottom:710.133333pt;}
.yb5{bottom:711.573333pt;}
.y90{bottom:711.893333pt;}
.yfe{bottom:712.293333pt;}
.y67{bottom:723.493333pt;}
.y127{bottom:723.813333pt;}
.y177{bottom:725.733333pt;}
.yb4{bottom:727.173333pt;}
.y8f{bottom:727.573333pt;}
.yfd{bottom:727.893333pt;}
.y38{bottom:733.333333pt;}
.yd4{bottom:734.773333pt;}
.y8{bottom:736.213333pt;}
.y66{bottom:739.093333pt;}
.y126{bottom:739.493333pt;}
.y176{bottom:741.413333pt;}
.y8e{bottom:743.173333pt;}
.yfc{bottom:743.573333pt;}
.yb3{bottom:751.093333pt;}
.y1b7{bottom:751.173333pt;}
.y65{bottom:754.693333pt;}
.y125{bottom:755.093333pt;}
.y8d{bottom:758.773333pt;}
.yfb{bottom:759.173333pt;}
.yd3{bottom:766.693333pt;}
.y1b6{bottom:766.773333pt;}
.y7{bottom:767.813333pt;}
.y124{bottom:770.693333pt;}
.y175{bottom:773.013333pt;}
.y36{bottom:773.333333pt;}
.y14c{bottom:774.453333pt;}
.yfa{bottom:774.773333pt;}
.y1b5{bottom:782.453333pt;}
.y64{bottom:786.373333pt;}
.y174{bottom:788.693333pt;}
.y14b{bottom:790.053333pt;}
.y8c{bottom:790.453333pt;}
.yb2{bottom:793.973333pt;}
.y34{bottom:797.573333pt;}
.y1b4{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.y63{bottom:801.973333pt;}
.y173{bottom:804.293333pt;}
.y8b{bottom:806.053333pt;}
.yb1{bottom:809.653333pt;}
.y62{bottom:817.653333pt;}
.y172{bottom:819.893333pt;}
.y8a{bottom:821.733333pt;}
.yb0{bottom:825.253333pt;}
.y5{bottom:831.653333pt;}
.y61{bottom:833.253333pt;}
.y171{bottom:835.573333pt;}
.y89{bottom:837.333333pt;}
.y33{bottom:840.853333pt;}
.y60{bottom:848.853333pt;}
.y170{bottom:851.173333pt;}
.y88{bottom:852.933333pt;}
.yaf{bottom:856.533333pt;}
.y123{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.y16f{bottom:866.853333pt;}
.y87{bottom:868.613333pt;}
.yf9{bottom:868.933333pt;}
.yd2{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y5f{bottom:880.533333pt;}
.y16e{bottom:882.453333pt;}
.y86{bottom:884.213333pt;}
.yf8{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y122{bottom:888.533333pt;}
.y1b3{bottom:892.213333pt;}
.y5e{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y14a{bottom:899.840000pt;}
.yf7{bottom:900.240000pt;}
.y30{bottom:903.840000pt;}
.y121{bottom:904.160000pt;}
.y16d{bottom:906.080000pt;}
.y1b2{bottom:907.840000pt;}
.y85{bottom:908.160000pt;}
.y5d{bottom:911.840000pt;}
.y149{bottom:915.520000pt;}
.yf6{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y120{bottom:919.840000pt;}
.y1b1{bottom:923.520000pt;}
.y5c{bottom:927.440000pt;}
.y148{bottom:931.120000pt;}
.yf5{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y11f{bottom:935.440000pt;}
.y5b{bottom:943.040000pt;}
.y147{bottom:946.800000pt;}
.yf4{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.y84{bottom:951.040000pt;}
.y5a{bottom:958.720000pt;}
.yf3{bottom:962.800000pt;}
.y2c{bottom:966.320000pt;}
.y83{bottom:966.720000pt;}
.y146{bottom:970.400000pt;}
.y59{bottom:974.320000pt;}
.yf2{bottom:978.400000pt;}
.y82{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yf1{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:53.309531pt;}
.h7{height:54.187500pt;}
.hf{height:54.927899pt;}
.h8{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:130.906667pt;}
.w3{width:149.866667pt;}
.w9{width:151.466667pt;}
.wc{width:167.306667pt;}
.wd{width:195.600000pt;}
.w4{width:214.800000pt;}
.wa{width:234.826667pt;}
.w7{width:269.146667pt;}
.w8{width:270.400000pt;}
.we{width:272.826667pt;}
.wb{width:274.160000pt;}
.w5{width:305.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:66.080000pt;}
.xc{left:78.400000pt;}
.xf{left:98.879988pt;}
.x2{left:187.626655pt;}
.x7{left:192.666667pt;}
.x5{left:211.626667pt;}
.xa{left:218.266667pt;}
.xd{left:246.426667pt;}
.x6{left:427.066667pt;}
.xe{left:442.746667pt;}
.xb{left:453.733333pt;}
.x8{left:462.453333pt;}
.x3{left:711.413322pt;}
}




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