
    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_f98c47425de0134fcf5c4010.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_592da15566f27174a8ceb47c.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_ffe2a4488944e0ee9966395f.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_3f978ac9e17ac1eb6ba3a0a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1131b37b2c49272c9b3953da.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_af8f9cec738ad036aee05df0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c3edceb16eb5fe6afaee2daf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9a1808e7b79d7442f59f2661.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls17{letter-spacing:-0.966000px;}
.ls18{letter-spacing:-0.906000px;}
.ls19{letter-spacing:-0.513600px;}
.ls9{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.063600px;}
.ls12{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.116400px;}
.ls14{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1c{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls1b{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.369800px;}
.wsd{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.wse{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws3{word-spacing:-12.982800px;}
.ws11{word-spacing:-12.712800px;}
.ws10{word-spacing:-12.320400px;}
.wsf{word-spacing:-12.260400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._f{margin-left:-5.590524px;}
._17{margin-left:-4.512000px;}
._e{margin-left:-3.454800px;}
._a{margin-left:-2.196600px;}
._0{margin-left:-1.110000px;}
._2{width:1.173565px;}
._8{width:2.524800px;}
._9{width:3.669471px;}
._d{width:5.170200px;}
._b{width:6.312032px;}
._7{width:7.395000px;}
._4{width:9.078000px;}
._5{width:10.581000px;}
._6{width:11.923920px;}
._1{width:14.847012px;}
._3{width:16.713600px;}
._10{width:18.516960px;}
._c{width:20.560800px;}
._11{width:22.545000px;}
._13{width:24.108120px;}
._12{width:25.370640px;}
._14{width:29.639160px;}
._15{width:30.749160px;}
._16{width:31.863600px;}
._18{width:42.205235px;}
._19{width:43.623185px;}
._1b{width:102.264120px;}
._1e{width:103.707000px;}
._1c{width:119.759040px;}
._1d{width:120.841200px;}
._21{width:135.570600px;}
._1a{width:139.298040px;}
._1f{width:146.271960px;}
._20{width:147.381960px;}
.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;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y103{bottom:121.170000px;}
.y7a{bottom:127.470000px;}
.y157{bottom:128.460000px;}
.y124{bottom:133.500000px;}
.y5a{bottom:135.120000px;}
.y102{bottom:138.720000px;}
.y26{bottom:141.600000px;}
.ya6{bottom:143.130000px;}
.y17e{bottom:144.930000px;}
.y79{bottom:145.110000px;}
.y156{bottom:146.100000px;}
.y123{bottom:151.050000px;}
.y59{bottom:152.670000px;}
.y25{bottom:159.240000px;}
.ya5{bottom:160.680000px;}
.y17d{bottom:162.570000px;}
.y78{bottom:162.660000px;}
.y155{bottom:163.650000px;}
.y101{bottom:165.270000px;}
.y58{bottom:170.310000px;}
.ya4{bottom:178.320000px;}
.y122{bottom:187.500000px;}
.y57{bottom:187.860000px;}
.y17c{bottom:189.120000px;}
.yc8{bottom:194.430000px;}
.y24{bottom:194.790000px;}
.ydb{bottom:195.150000px;}
.ya3{bottom:195.870000px;}
.y77{bottom:198.300000px;}
.y154{bottom:199.200000px;}
.y100{bottom:200.910000px;}
.y121{bottom:205.140000px;}
.y17b{bottom:206.670000px;}
.y23{bottom:212.340000px;}
.yda{bottom:212.700000px;}
.ya2{bottom:213.510000px;}
.y56{bottom:214.770000px;}
.y76{bottom:215.850000px;}
.y153{bottom:216.840000px;}
.yff{bottom:218.460000px;}
.y120{bottom:222.690000px;}
.y22{bottom:229.980000px;}
.yc7{bottom:230.070000px;}
.ya1{bottom:231.060000px;}
.y17a{bottom:233.310000px;}
.y75{bottom:233.400000px;}
.y152{bottom:234.390000px;}
.yfe{bottom:236.100000px;}
.y11f{bottom:240.330000px;}
.y21{bottom:247.530000px;}
.yc6{bottom:247.620000px;}
.yd9{bottom:248.250000px;}
.ya0{bottom:248.610000px;}
.y179{bottom:250.860000px;}
.y74{bottom:251.040000px;}
.y151{bottom:252.030000px;}
.yfd{bottom:253.650000px;}
.y55{bottom:262.920000px;}
.yd8{bottom:265.890000px;}
.y11e{bottom:267.150000px;}
.y150{bottom:269.580000px;}
.yfc{bottom:271.200000px;}
.y9f{bottom:275.250000px;}
.y178{bottom:277.500000px;}
.y73{bottom:277.590000px;}
.y54{bottom:280.560000px;}
.y20{bottom:283.170000px;}
.yc5{bottom:283.260000px;}
.yd7{bottom:283.440000px;}
.y14f{bottom:287.130000px;}
.yfb{bottom:288.840000px;}
.y177{bottom:295.050000px;}
.y53{bottom:299.010000px;}
.y1f{bottom:300.720000px;}
.yc4{bottom:300.810000px;}
.yd6{bottom:301.080000px;}
.yfa{bottom:306.390000px;}
.y9e{bottom:310.800000px;}
.y176{bottom:312.600000px;}
.y72{bottom:313.230000px;}
.y11d{bottom:315.390000px;}
.y52{bottom:316.650000px;}
.y1e{bottom:318.270000px;}
.yc3{bottom:318.360000px;}
.yd5{bottom:318.630000px;}
.y14e{bottom:322.770000px;}
.yf9{bottom:323.940000px;}
.y9d{bottom:328.440000px;}
.y71{bottom:330.780000px;}
.y11c{bottom:333.030000px;}
.y51{bottom:334.200000px;}
.y1d{bottom:335.910000px;}
.yc2{bottom:336.000000px;}
.yd4{bottom:336.180000px;}
.y175{bottom:339.240000px;}
.y14d{bottom:340.320000px;}
.yf8{bottom:341.580000px;}
.y9c{bottom:345.990000px;}
.y70{bottom:348.330000px;}
.y11b{bottom:351.480000px;}
.y50{bottom:352.650000px;}
.yc1{bottom:353.550000px;}
.yd3{bottom:353.820000px;}
.y174{bottom:356.790000px;}
.y14c{bottom:357.960000px;}
.y9b{bottom:363.540000px;}
.y6f{bottom:365.970000px;}
.yf7{bottom:368.130000px;}
.y11a{bottom:369.030000px;}
.y4f{bottom:370.200000px;}
.yc0{bottom:371.190000px;}
.y1c{bottom:371.460000px;}
.y14b{bottom:375.510000px;}
.y9a{bottom:381.180000px;}
.y173{bottom:383.340000px;}
.y6e{bottom:383.520000px;}
.y119{bottom:387.480000px;}
.y4e{bottom:388.650000px;}
.ybf{bottom:388.740000px;}
.y1b{bottom:389.100000px;}
.yd2{bottom:389.370000px;}
.y14a{bottom:393.060000px;}
.y99{bottom:398.730000px;}
.y172{bottom:400.980000px;}
.y6d{bottom:401.160000px;}
.yf6{bottom:403.770000px;}
.y118{bottom:405.030000px;}
.y4d{bottom:406.200000px;}
.ybe{bottom:406.290000px;}
.y1a{bottom:406.650000px;}
.y149{bottom:410.700000px;}
.y98{bottom:416.370000px;}
.yf5{bottom:421.320000px;}
.yd1{bottom:421.590000px;}
.y117{bottom:423.480000px;}
.y19{bottom:424.200000px;}
.y4c{bottom:424.650000px;}
.y171{bottom:427.530000px;}
.ybd{bottom:432.930000px;}
.y6c{bottom:436.710000px;}
.yf4{bottom:438.870000px;}
.y116{bottom:441.030000px;}
.y4b{bottom:442.200000px;}
.y97{bottom:442.920000px;}
.y170{bottom:445.170000px;}
.y148{bottom:446.250000px;}
.y18{bottom:451.110000px;}
.y6b{bottom:454.260000px;}
.yf3{bottom:456.510000px;}
.y115{bottom:459.480000px;}
.y4a{bottom:460.560000px;}
.y147{bottom:463.800000px;}
.ybc{bottom:468.480000px;}
.y16f{bottom:471.750000px;}
.y6a{bottom:471.930000px;}
.yf2{bottom:474.090000px;}
.y114{bottom:477.060000px;}
.y96{bottom:478.500000px;}
.y146{bottom:481.470000px;}
.ybb{bottom:486.150000px;}
.y16e{bottom:489.300000px;}
.y69{bottom:489.480000px;}
.yf1{bottom:491.730000px;}
.y113{bottom:495.510000px;}
.y95{bottom:496.140000px;}
.y49{bottom:497.040000px;}
.y145{bottom:499.020000px;}
.y17{bottom:499.470000px;}
.yba{bottom:503.700000px;}
.y68{bottom:507.030000px;}
.yf0{bottom:509.280000px;}
.y112{bottom:513.060000px;}
.y94{bottom:513.690000px;}
.y48{bottom:514.680000px;}
.y16d{bottom:515.940000px;}
.y144{bottom:516.660000px;}
.y16{bottom:517.380000px;}
.yb9{bottom:521.250000px;}
.y67{bottom:524.670000px;}
.y93{bottom:531.330000px;}
.y111{bottom:531.510000px;}
.y47{bottom:532.230000px;}
.y16c{bottom:533.490000px;}
.y143{bottom:534.210000px;}
.yef{bottom:535.830000px;}
.yb8{bottom:538.890000px;}
.y92{bottom:548.880000px;}
.y110{bottom:549.060000px;}
.y46{bottom:549.780000px;}
.y66{bottom:551.220000px;}
.y142{bottom:551.760000px;}
.y15{bottom:554.370000px;}
.yb7{bottom:556.440000px;}
.y16b{bottom:560.130000px;}
.y91{bottom:566.430000px;}
.y45{bottom:567.420000px;}
.y10f{bottom:567.510000px;}
.y141{bottom:569.400000px;}
.yee{bottom:571.470000px;}
.y14{bottom:571.920000px;}
.yb6{bottom:574.080000px;}
.y16a{bottom:577.680000px;}
.y44{bottom:584.970000px;}
.y10e{bottom:585.060000px;}
.y65{bottom:586.860000px;}
.yed{bottom:589.020000px;}
.y13{bottom:589.560000px;}
.yb5{bottom:591.630000px;}
.y90{bottom:593.070000px;}
.y140{bottom:596.220000px;}
.y169{bottom:604.230000px;}
.yec{bottom:606.660000px;}
.y12{bottom:607.110000px;}
.yb4{bottom:609.180000px;}
.y43{bottom:611.880000px;}
.y64{bottom:619.080000px;}
.y10d{bottom:621.510000px;}
.y168{bottom:621.870000px;}
.yeb{bottom:624.210000px;}
.y11{bottom:624.750000px;}
.yb3{bottom:626.820000px;}
.y8f{bottom:628.620000px;}
.y10c{bottom:639.060000px;}
.yea{bottom:641.760000px;}
.y10{bottom:642.300000px;}
.y13f{bottom:644.460000px;}
.y8e{bottom:646.260000px;}
.y167{bottom:648.420000px;}
.y42{bottom:648.780000px;}
.yb2{bottom:653.370000px;}
.y10b{bottom:656.700000px;}
.ye9{bottom:659.400000px;}
.yf{bottom:659.850000px;}
.y13e{bottom:662.190000px;}
.y8d{bottom:663.810000px;}
.y166{bottom:666.060000px;}
.y41{bottom:666.420000px;}
.y10a{bottom:674.250000px;}
.ye{bottom:677.490000px;}
.y13d{bottom:679.740000px;}
.y8c{bottom:681.360000px;}
.y165{bottom:683.610000px;}
.y40{bottom:684.870000px;}
.yb1{bottom:685.950000px;}
.y109{bottom:691.800000px;}
.yd{bottom:695.040000px;}
.y13c{bottom:697.290000px;}
.y8b{bottom:699.000000px;}
.y3f{bottom:702.510000px;}
.y108{bottom:709.440000px;}
.y164{bottom:710.160000px;}
.yc{bottom:712.680000px;}
.y13b{bottom:714.930000px;}
.y8a{bottom:716.550000px;}
.y3e{bottom:720.060000px;}
.yb0{bottom:721.590000px;}
.y107{bottom:726.990000px;}
.y163{bottom:727.800000px;}
.yb{bottom:730.230000px;}
.y13a{bottom:732.480000px;}
.y89{bottom:734.190000px;}
.y3d{bottom:738.510000px;}
.yaf{bottom:739.140000px;}
.y162{bottom:745.350000px;}
.y139{bottom:750.120000px;}
.yd0{bottom:751.290000px;}
.y88{bottom:751.740000px;}
.y106{bottom:753.900000px;}
.y3c{bottom:756.060000px;}
.yae{bottom:756.690000px;}
.ya{bottom:757.140000px;}
.y138{bottom:767.670000px;}
.ycf{bottom:768.840000px;}
.y87{bottom:769.290000px;}
.y161{bottom:771.990000px;}
.yad{bottom:774.330000px;}
.y3b{bottom:774.510000px;}
.y137{bottom:786.120000px;}
.yce{bottom:786.390000px;}
.y86{bottom:786.930000px;}
.y160{bottom:789.540000px;}
.yac{bottom:791.880000px;}
.y3a{bottom:792.060000px;}
.y105{bottom:802.140000px;}
.y136{bottom:803.670000px;}
.ycd{bottom:804.030000px;}
.y9{bottom:805.380000px;}
.yab{bottom:809.520000px;}
.y39{bottom:809.610000px;}
.y85{bottom:813.480000px;}
.y15f{bottom:816.450000px;}
.y135{bottom:821.220000px;}
.y104{bottom:825.360000px;}
.yaa{bottom:827.070000px;}
.y38{bottom:828.060000px;}
.ycc{bottom:830.580000px;}
.y184{bottom:831.480000px;}
.y134{bottom:838.860000px;}
.y8{bottom:841.200000px;}
.ye8{bottom:844.620000px;}
.y37{bottom:845.610000px;}
.y84{bottom:849.030000px;}
.ya9{bottom:853.980000px;}
.y133{bottom:856.410000px;}
.y36{bottom:864.060000px;}
.y15e{bottom:864.690000px;}
.ycb{bottom:866.220000px;}
.y83{bottom:866.670000px;}
.ye7{bottom:871.260000px;}
.y132{bottom:874.050000px;}
.y7{bottom:877.200000px;}
.y35{bottom:881.700000px;}
.yca{bottom:883.770000px;}
.y82{bottom:884.220000px;}
.y131{bottom:891.600000px;}
.y183{bottom:893.220000px;}
.y34{bottom:899.250000px;}
.y81{bottom:901.860000px;}
.ya8{bottom:902.220000px;}
.ye6{bottom:906.810000px;}
.y130{bottom:909.150000px;}
.y182{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yc9{bottom:915.990000px;}
.y80{bottom:919.410000px;}
.ya7{bottom:919.860000px;}
.ye5{bottom:924.450000px;}
.y33{bottom:926.970000px;}
.y12f{bottom:927.600000px;}
.y181{bottom:928.410000px;}
.y15d{bottom:928.680000px;}
.y7f{bottom:936.960000px;}
.y63{bottom:937.410000px;}
.ye4{bottom:942.000000px;}
.y12e{bottom:945.150000px;}
.y15c{bottom:946.230000px;}
.y5{bottom:949.290000px;}
.y62{bottom:954.960000px;}
.ye3{bottom:959.550000px;}
.y12d{bottom:962.790000px;}
.y7e{bottom:963.600000px;}
.y32{bottom:963.960000px;}
.y61{bottom:972.600000px;}
.y15b{bottom:973.140000px;}
.ye2{bottom:977.190000px;}
.y12c{bottom:980.340000px;}
.y31{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y60{bottom:990.150000px;}
.ye1{bottom:994.740000px;}
.y12b{bottom:997.890000px;}
.y30{bottom:999.150000px;}
.y5f{bottom:1007.790000px;}
.y15a{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.y12a{bottom:1015.470000px;}
.y2f{bottom:1016.820000px;}
.y5e{bottom:1025.370000px;}
.ye0{bottom:1029.960000px;}
.y129{bottom:1033.920000px;}
.y7d{bottom:1034.370000px;}
.y159{bottom:1037.070000px;}
.y5d{bottom:1042.920000px;}
.ydf{bottom:1047.510000px;}
.y128{bottom:1051.560000px;}
.y7c{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y5c{bottom:1060.560000px;}
.y180{bottom:1060.920000px;}
.yde{bottom:1065.150000px;}
.y127{bottom:1069.110000px;}
.y7b{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.y158{bottom:1074.420000px;}
.y17f{bottom:1078.560000px;}
.y126{bottom:1086.750000px;}
.y5b{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.ydd{bottom:1091.700000px;}
.y125{bottom:1104.300000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.ydc{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h7{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x8{left:80.369987px;}
.x4{left:95.039987px;}
.xe{left:111.239987px;}
.xd{left:122.039987px;}
.x2{left:211.079987px;}
.x6{left:265.799987px;}
.x9{left:276.959987px;}
.xc{left:306.209987px;}
.xb{left:661.559987px;}
.x7{left:732.299987px;}
.xa{left:784.139987px;}
.x5{left:796.559987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.858667pt;}
.ls18{letter-spacing:-0.805333pt;}
.ls19{letter-spacing:-0.456533pt;}
.ls9{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.103467pt;}
.ls14{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1c{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.884267pt;}
.wsd{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws3{word-spacing:-11.540267pt;}
.ws11{word-spacing:-11.300267pt;}
.ws10{word-spacing:-10.951467pt;}
.wsf{word-spacing:-10.898133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._f{margin-left:-4.969354pt;}
._17{margin-left:-4.010666pt;}
._e{margin-left:-3.070934pt;}
._a{margin-left:-1.952533pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043169pt;}
._8{width:2.244266pt;}
._9{width:3.261752pt;}
._d{width:4.595733pt;}
._b{width:5.610695pt;}
._7{width:6.573334pt;}
._4{width:8.069333pt;}
._5{width:9.405333pt;}
._6{width:10.599040pt;}
._1{width:13.197344pt;}
._3{width:14.856534pt;}
._10{width:16.459520pt;}
._c{width:18.276266pt;}
._11{width:20.040000pt;}
._13{width:21.429440pt;}
._12{width:22.551680pt;}
._14{width:26.345920pt;}
._15{width:27.332587pt;}
._16{width:28.323200pt;}
._18{width:37.515764pt;}
._19{width:38.776165pt;}
._1b{width:90.901440pt;}
._1e{width:92.184000pt;}
._1c{width:106.452480pt;}
._1d{width:107.414400pt;}
._21{width:120.507200pt;}
._1a{width:123.820480pt;}
._1f{width:130.019520pt;}
._20{width:131.006187pt;}
.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;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y103{bottom:107.706667pt;}
.y7a{bottom:113.306667pt;}
.y157{bottom:114.186667pt;}
.y124{bottom:118.666667pt;}
.y5a{bottom:120.106667pt;}
.y102{bottom:123.306667pt;}
.y26{bottom:125.866667pt;}
.ya6{bottom:127.226667pt;}
.y17e{bottom:128.826667pt;}
.y79{bottom:128.986667pt;}
.y156{bottom:129.866667pt;}
.y123{bottom:134.266667pt;}
.y59{bottom:135.706667pt;}
.y25{bottom:141.546667pt;}
.ya5{bottom:142.826667pt;}
.y17d{bottom:144.506667pt;}
.y78{bottom:144.586667pt;}
.y155{bottom:145.466667pt;}
.y101{bottom:146.906667pt;}
.y58{bottom:151.386667pt;}
.ya4{bottom:158.506667pt;}
.y122{bottom:166.666667pt;}
.y57{bottom:166.986667pt;}
.y17c{bottom:168.106667pt;}
.yc8{bottom:172.826667pt;}
.y24{bottom:173.146667pt;}
.ydb{bottom:173.466667pt;}
.ya3{bottom:174.106667pt;}
.y77{bottom:176.266667pt;}
.y154{bottom:177.066667pt;}
.y100{bottom:178.586667pt;}
.y121{bottom:182.346667pt;}
.y17b{bottom:183.706667pt;}
.y23{bottom:188.746667pt;}
.yda{bottom:189.066667pt;}
.ya2{bottom:189.786667pt;}
.y56{bottom:190.906667pt;}
.y76{bottom:191.866667pt;}
.y153{bottom:192.746667pt;}
.yff{bottom:194.186667pt;}
.y120{bottom:197.946667pt;}
.y22{bottom:204.426667pt;}
.yc7{bottom:204.506667pt;}
.ya1{bottom:205.386667pt;}
.y17a{bottom:207.386667pt;}
.y75{bottom:207.466667pt;}
.y152{bottom:208.346667pt;}
.yfe{bottom:209.866667pt;}
.y11f{bottom:213.626667pt;}
.y21{bottom:220.026667pt;}
.yc6{bottom:220.106667pt;}
.yd9{bottom:220.666667pt;}
.ya0{bottom:220.986667pt;}
.y179{bottom:222.986667pt;}
.y74{bottom:223.146667pt;}
.y151{bottom:224.026667pt;}
.yfd{bottom:225.466667pt;}
.y55{bottom:233.706667pt;}
.yd8{bottom:236.346667pt;}
.y11e{bottom:237.466667pt;}
.y150{bottom:239.626667pt;}
.yfc{bottom:241.066667pt;}
.y9f{bottom:244.666667pt;}
.y178{bottom:246.666667pt;}
.y73{bottom:246.746667pt;}
.y54{bottom:249.386667pt;}
.y20{bottom:251.706667pt;}
.yc5{bottom:251.786667pt;}
.yd7{bottom:251.946667pt;}
.y14f{bottom:255.226667pt;}
.yfb{bottom:256.746667pt;}
.y177{bottom:262.266667pt;}
.y53{bottom:265.786667pt;}
.y1f{bottom:267.306667pt;}
.yc4{bottom:267.386667pt;}
.yd6{bottom:267.626667pt;}
.yfa{bottom:272.346667pt;}
.y9e{bottom:276.266667pt;}
.y176{bottom:277.866667pt;}
.y72{bottom:278.426667pt;}
.y11d{bottom:280.346667pt;}
.y52{bottom:281.466667pt;}
.y1e{bottom:282.906667pt;}
.yc3{bottom:282.986667pt;}
.yd5{bottom:283.226667pt;}
.y14e{bottom:286.906667pt;}
.yf9{bottom:287.946667pt;}
.y9d{bottom:291.946667pt;}
.y71{bottom:294.026667pt;}
.y11c{bottom:296.026667pt;}
.y51{bottom:297.066667pt;}
.y1d{bottom:298.586667pt;}
.yc2{bottom:298.666667pt;}
.yd4{bottom:298.826667pt;}
.y175{bottom:301.546667pt;}
.y14d{bottom:302.506667pt;}
.yf8{bottom:303.626667pt;}
.y9c{bottom:307.546667pt;}
.y70{bottom:309.626667pt;}
.y11b{bottom:312.426667pt;}
.y50{bottom:313.466667pt;}
.yc1{bottom:314.266667pt;}
.yd3{bottom:314.506667pt;}
.y174{bottom:317.146667pt;}
.y14c{bottom:318.186667pt;}
.y9b{bottom:323.146667pt;}
.y6f{bottom:325.306667pt;}
.yf7{bottom:327.226667pt;}
.y11a{bottom:328.026667pt;}
.y4f{bottom:329.066667pt;}
.yc0{bottom:329.946667pt;}
.y1c{bottom:330.186667pt;}
.y14b{bottom:333.786667pt;}
.y9a{bottom:338.826667pt;}
.y173{bottom:340.746667pt;}
.y6e{bottom:340.906667pt;}
.y119{bottom:344.426667pt;}
.y4e{bottom:345.466667pt;}
.ybf{bottom:345.546667pt;}
.y1b{bottom:345.866667pt;}
.yd2{bottom:346.106667pt;}
.y14a{bottom:349.386667pt;}
.y99{bottom:354.426667pt;}
.y172{bottom:356.426667pt;}
.y6d{bottom:356.586667pt;}
.yf6{bottom:358.906667pt;}
.y118{bottom:360.026667pt;}
.y4d{bottom:361.066667pt;}
.ybe{bottom:361.146667pt;}
.y1a{bottom:361.466667pt;}
.y149{bottom:365.066667pt;}
.y98{bottom:370.106667pt;}
.yf5{bottom:374.506667pt;}
.yd1{bottom:374.746667pt;}
.y117{bottom:376.426667pt;}
.y19{bottom:377.066667pt;}
.y4c{bottom:377.466667pt;}
.y171{bottom:380.026667pt;}
.ybd{bottom:384.826667pt;}
.y6c{bottom:388.186667pt;}
.yf4{bottom:390.106667pt;}
.y116{bottom:392.026667pt;}
.y4b{bottom:393.066667pt;}
.y97{bottom:393.706667pt;}
.y170{bottom:395.706667pt;}
.y148{bottom:396.666667pt;}
.y18{bottom:400.986667pt;}
.y6b{bottom:403.786667pt;}
.yf3{bottom:405.786667pt;}
.y115{bottom:408.426667pt;}
.y4a{bottom:409.386667pt;}
.y147{bottom:412.266667pt;}
.ybc{bottom:416.426667pt;}
.y16f{bottom:419.333333pt;}
.y6a{bottom:419.493333pt;}
.yf2{bottom:421.413333pt;}
.y114{bottom:424.053333pt;}
.y96{bottom:425.333333pt;}
.y146{bottom:427.973333pt;}
.ybb{bottom:432.133333pt;}
.y16e{bottom:434.933333pt;}
.y69{bottom:435.093333pt;}
.yf1{bottom:437.093333pt;}
.y113{bottom:440.453333pt;}
.y95{bottom:441.013333pt;}
.y49{bottom:441.813333pt;}
.y145{bottom:443.573333pt;}
.y17{bottom:443.973333pt;}
.yba{bottom:447.733333pt;}
.y68{bottom:450.693333pt;}
.yf0{bottom:452.693333pt;}
.y112{bottom:456.053333pt;}
.y94{bottom:456.613333pt;}
.y48{bottom:457.493333pt;}
.y16d{bottom:458.613333pt;}
.y144{bottom:459.253333pt;}
.y16{bottom:459.893333pt;}
.yb9{bottom:463.333333pt;}
.y67{bottom:466.373333pt;}
.y93{bottom:472.293333pt;}
.y111{bottom:472.453333pt;}
.y47{bottom:473.093333pt;}
.y16c{bottom:474.213333pt;}
.y143{bottom:474.853333pt;}
.yef{bottom:476.293333pt;}
.yb8{bottom:479.013333pt;}
.y92{bottom:487.893333pt;}
.y110{bottom:488.053333pt;}
.y46{bottom:488.693333pt;}
.y66{bottom:489.973333pt;}
.y142{bottom:490.453333pt;}
.y15{bottom:492.773333pt;}
.yb7{bottom:494.613333pt;}
.y16b{bottom:497.893333pt;}
.y91{bottom:503.493333pt;}
.y45{bottom:504.373333pt;}
.y10f{bottom:504.453333pt;}
.y141{bottom:506.133333pt;}
.yee{bottom:507.973333pt;}
.y14{bottom:508.373333pt;}
.yb6{bottom:510.293333pt;}
.y16a{bottom:513.493333pt;}
.y44{bottom:519.973333pt;}
.y10e{bottom:520.053333pt;}
.y65{bottom:521.653333pt;}
.yed{bottom:523.573333pt;}
.y13{bottom:524.053333pt;}
.yb5{bottom:525.893333pt;}
.y90{bottom:527.173333pt;}
.y140{bottom:529.973333pt;}
.y169{bottom:537.093333pt;}
.yec{bottom:539.253333pt;}
.y12{bottom:539.653333pt;}
.yb4{bottom:541.493333pt;}
.y43{bottom:543.893333pt;}
.y64{bottom:550.293333pt;}
.y10d{bottom:552.453333pt;}
.y168{bottom:552.773333pt;}
.yeb{bottom:554.853333pt;}
.y11{bottom:555.333333pt;}
.yb3{bottom:557.173333pt;}
.y8f{bottom:558.773333pt;}
.y10c{bottom:568.053333pt;}
.yea{bottom:570.453333pt;}
.y10{bottom:570.933333pt;}
.y13f{bottom:572.853333pt;}
.y8e{bottom:574.453333pt;}
.y167{bottom:576.373333pt;}
.y42{bottom:576.693333pt;}
.yb2{bottom:580.773333pt;}
.y10b{bottom:583.733333pt;}
.ye9{bottom:586.133333pt;}
.yf{bottom:586.533333pt;}
.y13e{bottom:588.613333pt;}
.y8d{bottom:590.053333pt;}
.y166{bottom:592.053333pt;}
.y41{bottom:592.373333pt;}
.y10a{bottom:599.333333pt;}
.ye{bottom:602.213333pt;}
.y13d{bottom:604.213333pt;}
.y8c{bottom:605.653333pt;}
.y165{bottom:607.653333pt;}
.y40{bottom:608.773333pt;}
.yb1{bottom:609.733333pt;}
.y109{bottom:614.933333pt;}
.yd{bottom:617.813333pt;}
.y13c{bottom:619.813333pt;}
.y8b{bottom:621.333333pt;}
.y3f{bottom:624.453333pt;}
.y108{bottom:630.613333pt;}
.y164{bottom:631.253333pt;}
.yc{bottom:633.493333pt;}
.y13b{bottom:635.493333pt;}
.y8a{bottom:636.933333pt;}
.y3e{bottom:640.053333pt;}
.yb0{bottom:641.413333pt;}
.y107{bottom:646.213333pt;}
.y163{bottom:646.933333pt;}
.yb{bottom:649.093333pt;}
.y13a{bottom:651.093333pt;}
.y89{bottom:652.613333pt;}
.y3d{bottom:656.453333pt;}
.yaf{bottom:657.013333pt;}
.y162{bottom:662.533333pt;}
.y139{bottom:666.773333pt;}
.yd0{bottom:667.813333pt;}
.y88{bottom:668.213333pt;}
.y106{bottom:670.133333pt;}
.y3c{bottom:672.053333pt;}
.yae{bottom:672.613333pt;}
.ya{bottom:673.013333pt;}
.y138{bottom:682.373333pt;}
.ycf{bottom:683.413333pt;}
.y87{bottom:683.813333pt;}
.y161{bottom:686.213333pt;}
.yad{bottom:688.293333pt;}
.y3b{bottom:688.453333pt;}
.y137{bottom:698.773333pt;}
.yce{bottom:699.013333pt;}
.y86{bottom:699.493333pt;}
.y160{bottom:701.813333pt;}
.yac{bottom:703.893333pt;}
.y3a{bottom:704.053333pt;}
.y105{bottom:713.013333pt;}
.y136{bottom:714.373333pt;}
.ycd{bottom:714.693333pt;}
.y9{bottom:715.893333pt;}
.yab{bottom:719.573333pt;}
.y39{bottom:719.653333pt;}
.y85{bottom:723.093333pt;}
.y15f{bottom:725.733333pt;}
.y135{bottom:729.973333pt;}
.y104{bottom:733.653333pt;}
.yaa{bottom:735.173333pt;}
.y38{bottom:736.053333pt;}
.ycc{bottom:738.293333pt;}
.y184{bottom:739.093333pt;}
.y134{bottom:745.653333pt;}
.y8{bottom:747.733333pt;}
.ye8{bottom:750.773333pt;}
.y37{bottom:751.653333pt;}
.y84{bottom:754.693333pt;}
.ya9{bottom:759.093333pt;}
.y133{bottom:761.253333pt;}
.y36{bottom:768.053333pt;}
.y15e{bottom:768.613333pt;}
.ycb{bottom:769.973333pt;}
.y83{bottom:770.373333pt;}
.ye7{bottom:774.453333pt;}
.y132{bottom:776.933333pt;}
.y7{bottom:779.733333pt;}
.y35{bottom:783.733333pt;}
.yca{bottom:785.573333pt;}
.y82{bottom:785.973333pt;}
.y131{bottom:792.533333pt;}
.y183{bottom:793.973333pt;}
.y34{bottom:799.333333pt;}
.y81{bottom:801.653333pt;}
.ya8{bottom:801.973333pt;}
.ye6{bottom:806.053333pt;}
.y130{bottom:808.133333pt;}
.y182{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yc9{bottom:814.213333pt;}
.y80{bottom:817.253333pt;}
.ya7{bottom:817.653333pt;}
.ye5{bottom:821.733333pt;}
.y33{bottom:823.973333pt;}
.y12f{bottom:824.533333pt;}
.y181{bottom:825.253333pt;}
.y15d{bottom:825.493333pt;}
.y7f{bottom:832.853333pt;}
.y63{bottom:833.253333pt;}
.ye4{bottom:837.333333pt;}
.y12e{bottom:840.133333pt;}
.y15c{bottom:841.093333pt;}
.y5{bottom:843.813333pt;}
.y62{bottom:848.853333pt;}
.ye3{bottom:852.933333pt;}
.y12d{bottom:855.813333pt;}
.y7e{bottom:856.533333pt;}
.y32{bottom:856.853333pt;}
.y61{bottom:864.533333pt;}
.y15b{bottom:865.013333pt;}
.ye2{bottom:868.613333pt;}
.y12c{bottom:871.413333pt;}
.y31{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y60{bottom:880.133333pt;}
.ye1{bottom:884.213333pt;}
.y12b{bottom:887.013333pt;}
.y30{bottom:888.133333pt;}
.y5f{bottom:895.813333pt;}
.y15a{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.y12a{bottom:902.640000pt;}
.y2f{bottom:903.840000pt;}
.y5e{bottom:911.440000pt;}
.ye0{bottom:915.520000pt;}
.y129{bottom:919.040000pt;}
.y7d{bottom:919.440000pt;}
.y159{bottom:921.840000pt;}
.y5d{bottom:927.040000pt;}
.ydf{bottom:931.120000pt;}
.y128{bottom:934.720000pt;}
.y7c{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y5c{bottom:942.720000pt;}
.y180{bottom:943.040000pt;}
.yde{bottom:946.800000pt;}
.y127{bottom:950.320000pt;}
.y7b{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.y158{bottom:955.040000pt;}
.y17f{bottom:958.720000pt;}
.y126{bottom:966.000000pt;}
.y5b{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.ydd{bottom:970.400000pt;}
.y125{bottom:981.600000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.ydc{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h7{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x8{left:71.439988pt;}
.x4{left:84.479988pt;}
.xe{left:98.879988pt;}
.xd{left:108.479988pt;}
.x2{left:187.626655pt;}
.x6{left:236.266655pt;}
.x9{left:246.186655pt;}
.xc{left:272.186655pt;}
.xb{left:588.053322pt;}
.x7{left:650.933322pt;}
.xa{left:697.013322pt;}
.x5{left:708.053322pt;}
.x3{left:718.773322pt;}
}




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