
    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_983a8c8ac114fe4d34333ccb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e1ffbecd23cde39913565db9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_437386bd343c097f504a98e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a6c3917df76f6df2133436c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_73cdaa5c8ec45124a1082d18.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942871;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_d8548bfaeb31d2e598d1be96.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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);}
.v1{vertical-align:-134.640000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-23.160000px;}
.ls21{letter-spacing:-0.481200px;}
.ls15{letter-spacing:-0.367800px;}
.lsc{letter-spacing:-0.322800px;}
.ls13{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.269400px;}
.ls14{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.006060px;}
.ls19{letter-spacing:0.014688px;}
.ls1d{letter-spacing:0.036000px;}
.ls23{letter-spacing:0.079920px;}
.ls1{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.106800px;}
.ls38{letter-spacing:0.175968px;}
.lse{letter-spacing:0.198600px;}
.ls7{letter-spacing:0.198720px;}
.ls12{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.232200px;}
.ls32{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.252000px;}
.ls1a{letter-spacing:0.277800px;}
.ls0{letter-spacing:0.280080px;}
.ls2b{letter-spacing:0.280200px;}
.ls28{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.318720px;}
.ls25{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.918720px;}
.ls11{letter-spacing:0.936000px;}
.ls2{letter-spacing:1.134720px;}
.ls6{letter-spacing:1.638720px;}
.ls10{letter-spacing:1.656000px;}
.ls39{letter-spacing:2.376000px;}
.ls8{letter-spacing:2.478720px;}
.ls22{letter-spacing:2.970720px;}
.ls33{letter-spacing:90.216000px;}
.ls5{letter-spacing:96.984000px;}
.ls2d{letter-spacing:97.509600px;}
.ls2c{letter-spacing:97.560000px;}
.ls2f{letter-spacing:103.428000px;}
.ls24{letter-spacing:105.300000px;}
.ls2e{letter-spacing:111.693600px;}
.ls27{letter-spacing:111.744000px;}
.ls20{letter-spacing:115.833600px;}
.ls1f{letter-spacing:115.884000px;}
.ls34{letter-spacing:119.865600px;}
.ls35{letter-spacing:119.916000px;}
.ls2a{letter-spacing:120.009600px;}
.ls29{letter-spacing:120.060000px;}
.ls18{letter-spacing:122.184000px;}
.ls17{letter-spacing:124.200000px;}
.ls30{letter-spacing:128.628000px;}
.lsb{letter-spacing:214.937280px;}
.ls31{letter-spacing:219.600000px;}
.ls1e{letter-spacing:1559.190720px;}
.ls1b{letter-spacing:1584.546720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-66.653280px;}
.ws14{word-spacing:-66.546480px;}
.wse{word-spacing:-60.088032px;}
.ws10{word-spacing:-60.048000px;}
.ws3{word-spacing:-51.641280px;}
.ws4{word-spacing:-51.318480px;}
.ws19{word-spacing:-43.474752px;}
.wsd{word-spacing:-43.434720px;}
.ws17{word-spacing:-40.072032px;}
.ws15{word-spacing:-40.032000px;}
.ws13{word-spacing:-36.669312px;}
.ws11{word-spacing:-36.629280px;}
.ws1{word-spacing:-33.533520px;}
.ws16{word-spacing:-33.466752px;}
.ws0{word-spacing:-33.426720px;}
.ws18{word-spacing:-33.197352px;}
.wsf{word-spacing:-31.625280px;}
.wsb{word-spacing:-30.064032px;}
.wsa{word-spacing:-30.024000px;}
.ws9{word-spacing:-29.844000px;}
.ws5{word-spacing:-28.481280px;}
.ws7{word-spacing:-16.506480px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:42.768000px;}
.wsc{word-spacing:42.847272px;}
.ws6{word-spacing:45.342720px;}
._b{margin-left:-1009.107360px;}
._6{margin-left:-19.148112px;}
._d{margin-left:-12.734640px;}
._12{margin-left:-11.577600px;}
._11{margin-left:-10.442496px;}
._5{margin-left:-9.169200px;}
._7{margin-left:-6.711264px;}
._10{margin-left:-5.521728px;}
._2{margin-left:-4.457520px;}
._3{margin-left:-2.645280px;}
._0{margin-left:-1.434240px;}
._1{width:1.065600px;}
._4{width:2.301120px;}
._8{width:4.089888px;}
._a{width:22.826640px;}
._13{width:76.644000px;}
._9{width:96.984000px;}
._14{width:111.600000px;}
._f{width:124.344000px;}
._c{width:1592.204160px;}
._e{width:1617.560160px;}
.fc8{color:rgb(0,51,160);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(153,154,155);}
.fc5{color:rgb(255,130,0);}
.fc4{color:transparent;}
.fc9{color:rgb(120,190,32);}
.fc3{color:rgb(0,181,226);}
.fc2{color:rgb(84,88,90);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(151,155,158);}
.fs0{font-size:59.760000px;}
.fsf{font-size:84.240000px;}
.fs1e{font-size:84.384000px;}
.fs1d{font-size:95.760000px;}
.fs8{font-size:102.240000px;}
.fsc{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs12{font-size:113.760000px;}
.fs13{font-size:113.904000px;}
.fs1{font-size:120.240000px;}
.fs2{font-size:120.384000px;}
.fs14{font-size:131.760000px;}
.fs15{font-size:131.904000px;}
.fs1a{font-size:144.000000px;}
.fs1c{font-size:144.144000px;}
.fsb{font-size:156.240000px;}
.fsa{font-size:156.384000px;}
.fs18{font-size:162.000000px;}
.fs19{font-size:162.144000px;}
.fs1b{font-size:167.760000px;}
.fse{font-size:167.904000px;}
.fs6{font-size:185.760000px;}
.fs7{font-size:185.904000px;}
.fs5{font-size:192.384000px;}
.fs3{font-size:203.760000px;}
.fs4{font-size:203.904000px;}
.fs10{font-size:216.000000px;}
.fs11{font-size:216.144000px;}
.fs9{font-size:228.240000px;}
.fs17{font-size:239.760000px;}
.fs16{font-size:239.904000px;}
.y6f{bottom:-13.284000px;}
.y104{bottom:-0.144012px;}
.y0{bottom:0.000000px;}
.y6e{bottom:19.116000px;}
.yde{bottom:23.040000px;}
.y19{bottom:33.372000px;}
.y1{bottom:33.732000px;}
.ydf{bottom:34.632000px;}
.y2{bottom:36.828000px;}
.y6d{bottom:51.552000px;}
.y103{bottom:51.696000px;}
.ya9{bottom:67.032000px;}
.ydd{bottom:74.916000px;}
.y6c{bottom:83.952000px;}
.ya8{bottom:99.432000px;}
.y102{bottom:101.556000px;}
.y18{bottom:105.372000px;}
.y98{bottom:105.696000px;}
.yc1{bottom:106.560000px;}
.y6b{bottom:116.352000px;}
.y8d{bottom:127.980000px;}
.ydc{bottom:128.196000px;}
.ya7{bottom:131.832000px;}
.y101{bottom:140.472000px;}
.y17{bottom:143.892000px;}
.y3b{bottom:147.312000px;}
.y137{bottom:147.960000px;}
.y6a{bottom:148.752000px;}
.y2c{bottom:153.930000px;}
.yc0{bottom:158.400000px;}
.y7d{bottom:160.050000px;}
.y97{bottom:161.850000px;}
.ya6{bottom:164.265000px;}
.y8c{bottom:167.580000px;}
.y100{bottom:172.875000px;}
.y136{bottom:180.360000px;}
.y4c{bottom:181.155000px;}
.y3a{bottom:186.225000px;}
.y2b{bottom:186.330000px;}
.ydb{bottom:187.275000px;}
.y11b{bottom:191.730000px;}
.y16{bottom:194.145000px;}
.ya5{bottom:196.665000px;}
.y13f{bottom:196.845000px;}
.y7c{bottom:199.650000px;}
.ycf{bottom:205.170000px;}
.yff{bottom:205.275000px;}
.y8b{bottom:207.180000px;}
.ybf{bottom:208.980000px;}
.yf1{bottom:210.030000px;}
.y135{bottom:212.760000px;}
.y4b{bottom:213.585000px;}
.y10d{bottom:213.735000px;}
.y96{bottom:218.415000px;}
.y39{bottom:218.625000px;}
.y2a{bottom:218.730000px;}
.y13e{bottom:222.045000px;}
.y66{bottom:224.070000px;}
.ya4{bottom:229.065000px;}
.y8{bottom:229.605000px;}
.yda{bottom:230.475000px;}
.yb3{bottom:234.750000px;}
.y7b{bottom:239.295000px;}
.yce{bottom:240.990000px;}
.y11a{bottom:242.130000px;}
.yfe{bottom:244.155000px;}
.ybe{bottom:245.010000px;}
.y134{bottom:245.160000px;}
.y4a{bottom:245.985000px;}
.y8a{bottom:246.810000px;}
.y13d{bottom:247.290000px;}
.yc7{bottom:251.130000px;}
.y29{bottom:251.175000px;}
.y12a{bottom:251.715000px;}
.yf0{bottom:253.230000px;}
.y15{bottom:255.525000px;}
.y38{bottom:257.505000px;}
.y65{bottom:258.300000px;}
.ya3{bottom:261.465000px;}
.y10c{bottom:263.595000px;}
.y7{bottom:265.605000px;}
.y95{bottom:267.015000px;}
.y7a{bottom:270.975000px;}
.y13c{bottom:272.490000px;}
.yfd{bottom:276.585000px;}
.y133{bottom:277.590000px;}
.y49{bottom:278.385000px;}
.y89{bottom:278.490000px;}
.ybd{bottom:281.010000px;}
.yd9{bottom:282.315000px;}
.y28{bottom:283.575000px;}
.yb2{bottom:286.590000px;}
.y129{bottom:287.715000px;}
.y37{bottom:289.905000px;}
.y119{bottom:291.090000px;}
.ycd{bottom:291.420000px;}
.y64{bottom:292.500000px;}
.ya2{bottom:293.910000px;}
.y10b{bottom:296.025000px;}
.yef{bottom:296.430000px;}
.y13b{bottom:297.690000px;}
.y56{bottom:298.515000px;}
.y6{bottom:301.605000px;}
.yfc{bottom:308.985000px;}
.y132{bottom:309.990000px;}
.y88{bottom:310.170000px;}
.y79{bottom:310.575000px;}
.y48{bottom:310.785000px;}
.ye8{bottom:314.565000px;}
.y27{bottom:315.975000px;}
.y14{bottom:316.950000px;}
.ybc{bottom:317.010000px;}
.y63{bottom:319.860000px;}
.y13a{bottom:322.890000px;}
.y128{bottom:323.715000px;}
.y55{bottom:324.975000px;}
.y94{bottom:325.335000px;}
.yd8{bottom:325.515000px;}
.ya1{bottom:326.310000px;}
.y10a{bottom:328.425000px;}
.y36{bottom:328.830000px;}
.yb1{bottom:329.790000px;}
.y118{bottom:334.335000px;}
.y5{bottom:337.605000px;}
.ycc{bottom:341.820000px;}
.y87{bottom:341.850000px;}
.y78{bottom:342.255000px;}
.y131{bottom:342.390000px;}
.y47{bottom:343.230000px;}
.ye7{bottom:347.010000px;}
.y62{bottom:347.220000px;}
.yfb{bottom:347.865000px;}
.yee{bottom:348.300000px;}
.y26{bottom:348.375000px;}
.y139{bottom:349.350000px;}
.ybb{bottom:353.010000px;}
.y54{bottom:357.375000px;}
.ya0{bottom:358.710000px;}
.y127{bottom:359.745000px;}
.y13{bottom:367.170000px;}
.y109{bottom:367.305000px;}
.y35{bottom:367.710000px;}
.yd7{bottom:368.745000px;}
.yb0{bottom:373.035000px;}
.y4{bottom:373.650000px;}
.y77{bottom:373.965000px;}
.y61{bottom:374.610000px;}
.y12f{bottom:374.790000px;}
.y46{bottom:375.630000px;}
.y117{bottom:377.535000px;}
.ye6{bottom:379.410000px;}
.yfa{bottom:380.265000px;}
.yc6{bottom:380.775000px;}
.y25{bottom:380.805000px;}
.y86{bottom:381.495000px;}
.y138{bottom:381.780000px;}
.y53{bottom:389.775000px;}
.y9f{bottom:391.110000px;}
.ycb{bottom:392.250000px;}
.y126{bottom:395.745000px;}
.yba{bottom:396.255000px;}
.yed{bottom:400.140000px;}
.y60{bottom:401.970000px;}
.y76{bottom:405.645000px;}
.y108{bottom:406.185000px;}
.y34{bottom:406.590000px;}
.y12e{bottom:407.190000px;}
.y45{bottom:408.030000px;}
.y3{bottom:409.650000px;}
.ye5{bottom:411.810000px;}
.yf9{bottom:412.665000px;}
.y85{bottom:413.175000px;}
.y24{bottom:413.205000px;}
.y52{bottom:415.725000px;}
.yd6{bottom:420.585000px;}
.y116{bottom:420.735000px;}
.y93{bottom:422.565000px;}
.y9e{bottom:423.510000px;}
.yaf{bottom:424.875000px;}
.y12{bottom:428.550000px;}
.y5f{bottom:429.330000px;}
.y125{bottom:431.745000px;}
.yb9{bottom:432.255000px;}
.y107{bottom:438.630000px;}
.y12d{bottom:439.635000px;}
.y44{bottom:440.430000px;}
.y110{bottom:441.105000px;}
.y1a{bottom:442.335000px;}
.yca{bottom:442.650000px;}
.yec{bottom:443.340000px;}
.ye4{bottom:444.210000px;}
.y84{bottom:444.855000px;}
.yf8{bottom:445.110000px;}
.y75{bottom:445.245000px;}
.y33{bottom:445.470000px;}
.y23{bottom:445.605000px;}
.y51{bottom:448.125000px;}
.y140{bottom:452.520000px;}
.y9d{bottom:455.940000px;}
.y5e{bottom:463.530000px;}
.yd5{bottom:463.785000px;}
.y115{bottom:463.965000px;}
.yae{bottom:468.075000px;}
.yb8{bottom:468.255000px;}
.y106{bottom:471.030000px;}
.y11f{bottom:472.035000px;}
.y43{bottom:472.830000px;}
.y50{bottom:474.045000px;}
.y124{bottom:474.945000px;}
.y83{bottom:476.535000px;}
.ye3{bottom:476.640000px;}
.y74{bottom:476.925000px;}
.yf7{bottom:477.510000px;}
.y22{bottom:478.005000px;}
.y11{bottom:478.800000px;}
.y92{bottom:480.885000px;}
.y32{bottom:484.380000px;}
.yeb{bottom:486.570000px;}
.yc{bottom:488.310000px;}
.y9c{bottom:488.340000px;}
.y5d{bottom:490.890000px;}
.y10f{bottom:492.990000px;}
.yc9{bottom:493.050000px;}
.y105{bottom:503.430000px;}
.yb7{bottom:504.255000px;}
.y11e{bottom:504.435000px;}
.y42{bottom:505.260000px;}
.y4f{bottom:506.445000px;}
.yd4{bottom:507.030000px;}
.y114{bottom:507.165000px;}
.y73{bottom:508.605000px;}
.ye2{bottom:509.040000px;}
.yf6{bottom:509.910000px;}
.y3e{bottom:510.300000px;}
.y21{bottom:510.405000px;}
.y123{bottom:510.990000px;}
.y82{bottom:516.135000px;}
.y31{bottom:516.780000px;}
.y5c{bottom:518.295000px;}
.yad{bottom:519.945000px;}
.y9b{bottom:520.740000px;}
.y91{bottom:529.530000px;}
.y11d{bottom:536.835000px;}
.y41{bottom:537.660000px;}
.yea{bottom:538.410000px;}
.y4e{bottom:538.845000px;}
.y10{bottom:540.180000px;}
.yb6{bottom:540.285000px;}
.ye1{bottom:541.440000px;}
.y10e{bottom:542.130000px;}
.yf5{bottom:542.310000px;}
.yc5{bottom:542.805000px;}
.y20{bottom:542.850000px;}
.y5b{bottom:545.655000px;}
.y122{bottom:546.990000px;}
.yf2{bottom:547.230000px;}
.y81{bottom:547.845000px;}
.y72{bottom:548.250000px;}
.y3d{bottom:549.180000px;}
.yb{bottom:549.510000px;}
.y113{bottom:550.365000px;}
.y9a{bottom:553.140000px;}
.yc2{bottom:554.505000px;}
.y30{bottom:555.660000px;}
.yd3{bottom:558.870000px;}
.yac{bottom:563.145000px;}
.y4d{bottom:565.530000px;}
.y11c{bottom:569.235000px;}
.y5a{bottom:573.015000px;}
.ye0{bottom:573.840000px;}
.yf4{bottom:574.740000px;}
.yc4{bottom:575.205000px;}
.y1f{bottom:575.250000px;}
.yb5{bottom:576.285000px;}
.y90{bottom:578.130000px;}
.y80{bottom:579.525000px;}
.y71{bottom:579.930000px;}
.y12c{bottom:580.605000px;}
.y121{bottom:582.990000px;}
.y99{bottom:585.570000px;}
.y3c{bottom:588.060000px;}
.yf{bottom:590.400000px;}
.y112{bottom:593.565000px;}
.y2f{bottom:594.540000px;}
.yd2{bottom:602.070000px;}
.yab{bottom:606.345000px;}
.yf3{bottom:607.140000px;}
.y1e{bottom:607.650000px;}
.ya{bottom:610.710000px;}
.y69{bottom:611.355000px;}
.y70{bottom:611.610000px;}
.yb4{bottom:612.285000px;}
.y59{bottom:619.890000px;}
.y120{bottom:626.190000px;}
.y2e{bottom:626.970000px;}
.y12b{bottom:631.050000px;}
.y111{bottom:636.810000px;}
.yc3{bottom:640.050000px;}
.ye{bottom:640.650000px;}
.y40{bottom:640.875000px;}
.ye9{bottom:653.010000px;}
.yc8{bottom:662.010000px;}
.y8f{bottom:662.790000px;}
.y7f{bottom:664.920000px;}
.yd1{bottom:667.005000px;}
.y9{bottom:671.940000px;}
.y68{bottom:676.155000px;}
.y58{bottom:684.720000px;}
.y130{bottom:686.235000px;}
.y3f{bottom:687.675000px;}
.y1b{bottom:697.140000px;}
.yaa{bottom:699.405000px;}
.y2d{bottom:710.715000px;}
.y1d{bottom:713.190000px;}
.yd{bottom:726.810000px;}
.yd0{bottom:731.805000px;}
.y8e{bottom:734.790000px;}
.y7e{bottom:736.920000px;}
.y67{bottom:740.955000px;}
.y57{bottom:749.520000px;}
.y1c{bottom:759.990000px;}
.h1{height:62.327813px;}
.h33{height:79.207031px;}
.h1a{height:83.320312px;}
.h1d{height:83.425781px;}
.h15{height:87.859687px;}
.h3b{height:88.009875px;}
.h30{height:88.066406px;}
.h31{height:88.171875px;}
.h12{height:95.712891px;}
.h14{height:95.840508px;}
.h20{height:96.503906px;}
.h23{height:96.609375px;}
.h39{height:99.874688px;}
.h19{height:100.817578px;}
.h2d{height:105.468750px;}
.h37{height:105.574219px;}
.h2f{height:106.560352px;}
.hc{height:106.633125px;}
.h32{height:106.687969px;}
.h10{height:112.640625px;}
.h11{height:112.790813px;}
.h1f{height:116.769727px;}
.h22{height:116.897344px;}
.h1c{height:118.648125px;}
.h29{height:118.652344px;}
.h1b{height:118.798312px;}
.h2{height:125.406562px;}
.h3{height:125.556750px;}
.h2c{height:127.617188px;}
.h36{height:127.744805px;}
.h9{height:136.160156px;}
.h21{height:137.421562px;}
.h24{height:137.571750px;}
.h3a{height:138.464648px;}
.h28{height:143.569336px;}
.h4{height:148.342852px;}
.h5{height:148.447687px;}
.h34{height:148.674023px;}
.h2e{height:150.187500px;}
.h38{height:150.337688px;}
.h16{height:158.203125px;}
.h1e{height:158.308594px;}
.hf{height:162.953438px;}
.he{height:163.103625px;}
.h8{height:164.626172px;}
.h2b{height:168.960938px;}
.h2a{height:169.111125px;}
.h35{height:174.968437px;}
.h13{height:175.118625px;}
.h27{height:175.605469px;}
.h25{height:175.710937px;}
.ha{height:193.741875px;}
.hb{height:193.892063px;}
.h7{height:200.650500px;}
.h6{height:212.515312px;}
.h17{height:225.281250px;}
.h18{height:225.431438px;}
.hd{height:238.047188px;}
.h26{height:250.062187px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1e{left:8.208000px;}
.x4{left:10.800000px;}
.x2a{left:12.960000px;}
.x3{left:26.784000px;}
.x1b{left:30.204000px;}
.x5{left:32.004000px;}
.x18{left:35.568000px;}
.x2f{left:37.296000px;}
.x2e{left:39.240000px;}
.x21{left:45.972000px;}
.x1f{left:48.744000px;}
.x16{left:51.480000px;}
.xe{left:53.784000px;}
.x1a{left:55.944000px;}
.x17{left:56.988000px;}
.x13{left:62.280000px;}
.x2{left:66.564000px;}
.x27{left:69.120000px;}
.x1c{left:70.704000px;}
.x6{left:72.504000px;}
.x19{left:76.068000px;}
.x24{left:78.192000px;}
.x22{left:79.812000px;}
.x2c{left:83.520000px;}
.xf{left:94.320000px;}
.xb{left:95.940000px;}
.x8{left:107.064000px;}
.x7{left:108.144000px;}
.x28{left:109.620000px;}
.xc{left:113.292000px;}
.xd{left:118.836000px;}
.x2d{left:124.020000px;}
.x11{left:130.824000px;}
.x12{left:136.440000px;}
.x25{left:145.512000px;}
.x20{left:187.665000px;}
.xa{left:206.745000px;}
.x30{left:240.195000px;}
.x1d{left:263.055000px;}
.x10{left:265.830000px;}
.x23{left:269.535000px;}
.x29{left:283.215000px;}
.x14{left:288.435000px;}
.x9{left:291.750000px;}
.x15{left:295.530000px;}
.x2b{left:314.715000px;}
.x31{left:426.345000px;}
.x26{left:600.405000px;}
.x1{left:627.765000px;}
@media print{
.v1{vertical-align:-119.680000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-20.586667pt;}
.ls21{letter-spacing:-0.427733pt;}
.ls15{letter-spacing:-0.326933pt;}
.lsc{letter-spacing:-0.286933pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.239467pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.005387pt;}
.ls19{letter-spacing:0.013056pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls23{letter-spacing:0.071040pt;}
.ls1{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.094933pt;}
.ls38{letter-spacing:0.156416pt;}
.lse{letter-spacing:0.176533pt;}
.ls7{letter-spacing:0.176640pt;}
.ls12{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.206400pt;}
.ls32{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.224000pt;}
.ls1a{letter-spacing:0.246933pt;}
.ls0{letter-spacing:0.248960pt;}
.ls2b{letter-spacing:0.249067pt;}
.ls28{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.283307pt;}
.ls25{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.816640pt;}
.ls11{letter-spacing:0.832000pt;}
.ls2{letter-spacing:1.008640pt;}
.ls6{letter-spacing:1.456640pt;}
.ls10{letter-spacing:1.472000pt;}
.ls39{letter-spacing:2.112000pt;}
.ls8{letter-spacing:2.203307pt;}
.ls22{letter-spacing:2.640640pt;}
.ls33{letter-spacing:80.192000pt;}
.ls5{letter-spacing:86.208000pt;}
.ls2d{letter-spacing:86.675200pt;}
.ls2c{letter-spacing:86.720000pt;}
.ls2f{letter-spacing:91.936000pt;}
.ls24{letter-spacing:93.600000pt;}
.ls2e{letter-spacing:99.283200pt;}
.ls27{letter-spacing:99.328000pt;}
.ls20{letter-spacing:102.963200pt;}
.ls1f{letter-spacing:103.008000pt;}
.ls34{letter-spacing:106.547200pt;}
.ls35{letter-spacing:106.592000pt;}
.ls2a{letter-spacing:106.675200pt;}
.ls29{letter-spacing:106.720000pt;}
.ls18{letter-spacing:108.608000pt;}
.ls17{letter-spacing:110.400000pt;}
.ls30{letter-spacing:114.336000pt;}
.lsb{letter-spacing:191.055360pt;}
.ls31{letter-spacing:195.200000pt;}
.ls1e{letter-spacing:1385.947307pt;}
.ls1b{letter-spacing:1408.485973pt;}
.ws12{word-spacing:-59.247360pt;}
.ws14{word-spacing:-59.152427pt;}
.wse{word-spacing:-53.411584pt;}
.ws10{word-spacing:-53.376000pt;}
.ws3{word-spacing:-45.903360pt;}
.ws4{word-spacing:-45.616427pt;}
.ws19{word-spacing:-38.644224pt;}
.wsd{word-spacing:-38.608640pt;}
.ws17{word-spacing:-35.619584pt;}
.ws15{word-spacing:-35.584000pt;}
.ws13{word-spacing:-32.594944pt;}
.ws11{word-spacing:-32.559360pt;}
.ws1{word-spacing:-29.807573pt;}
.ws16{word-spacing:-29.748224pt;}
.ws0{word-spacing:-29.712640pt;}
.ws18{word-spacing:-29.508757pt;}
.wsf{word-spacing:-28.111360pt;}
.wsb{word-spacing:-26.723584pt;}
.wsa{word-spacing:-26.688000pt;}
.ws9{word-spacing:-26.528000pt;}
.ws5{word-spacing:-25.316693pt;}
.ws7{word-spacing:-14.672427pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:38.016000pt;}
.wsc{word-spacing:38.086464pt;}
.ws6{word-spacing:40.304640pt;}
._b{margin-left:-896.984320pt;}
._6{margin-left:-17.020544pt;}
._d{margin-left:-11.319680pt;}
._12{margin-left:-10.291200pt;}
._11{margin-left:-9.282219pt;}
._5{margin-left:-8.150400pt;}
._7{margin-left:-5.965568pt;}
._10{margin-left:-4.908203pt;}
._2{margin-left:-3.962240pt;}
._3{margin-left:-2.351360pt;}
._0{margin-left:-1.274880pt;}
._1{width:0.947200pt;}
._4{width:2.045440pt;}
._8{width:3.635456pt;}
._a{width:20.290347pt;}
._13{width:68.128000pt;}
._9{width:86.208000pt;}
._14{width:99.200000pt;}
._f{width:110.528000pt;}
._c{width:1415.292587pt;}
._e{width:1437.831253pt;}
.fs0{font-size:53.120000pt;}
.fsf{font-size:74.880000pt;}
.fs1e{font-size:75.008000pt;}
.fs1d{font-size:85.120000pt;}
.fs8{font-size:90.880000pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs12{font-size:101.120000pt;}
.fs13{font-size:101.248000pt;}
.fs1{font-size:106.880000pt;}
.fs2{font-size:107.008000pt;}
.fs14{font-size:117.120000pt;}
.fs15{font-size:117.248000pt;}
.fs1a{font-size:128.000000pt;}
.fs1c{font-size:128.128000pt;}
.fsb{font-size:138.880000pt;}
.fsa{font-size:139.008000pt;}
.fs18{font-size:144.000000pt;}
.fs19{font-size:144.128000pt;}
.fs1b{font-size:149.120000pt;}
.fse{font-size:149.248000pt;}
.fs6{font-size:165.120000pt;}
.fs7{font-size:165.248000pt;}
.fs5{font-size:171.008000pt;}
.fs3{font-size:181.120000pt;}
.fs4{font-size:181.248000pt;}
.fs10{font-size:192.000000pt;}
.fs11{font-size:192.128000pt;}
.fs9{font-size:202.880000pt;}
.fs17{font-size:213.120000pt;}
.fs16{font-size:213.248000pt;}
.y6f{bottom:-11.808000pt;}
.y104{bottom:-0.128011pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:16.992000pt;}
.yde{bottom:20.480000pt;}
.y19{bottom:29.664000pt;}
.y1{bottom:29.984000pt;}
.ydf{bottom:30.784000pt;}
.y2{bottom:32.736000pt;}
.y6d{bottom:45.824000pt;}
.y103{bottom:45.952000pt;}
.ya9{bottom:59.584000pt;}
.ydd{bottom:66.592000pt;}
.y6c{bottom:74.624000pt;}
.ya8{bottom:88.384000pt;}
.y102{bottom:90.272000pt;}
.y18{bottom:93.664000pt;}
.y98{bottom:93.952000pt;}
.yc1{bottom:94.720000pt;}
.y6b{bottom:103.424000pt;}
.y8d{bottom:113.760000pt;}
.ydc{bottom:113.952000pt;}
.ya7{bottom:117.184000pt;}
.y101{bottom:124.864000pt;}
.y17{bottom:127.904000pt;}
.y3b{bottom:130.944000pt;}
.y137{bottom:131.520000pt;}
.y6a{bottom:132.224000pt;}
.y2c{bottom:136.826667pt;}
.yc0{bottom:140.800000pt;}
.y7d{bottom:142.266667pt;}
.y97{bottom:143.866667pt;}
.ya6{bottom:146.013333pt;}
.y8c{bottom:148.960000pt;}
.y100{bottom:153.666667pt;}
.y136{bottom:160.320000pt;}
.y4c{bottom:161.026667pt;}
.y3a{bottom:165.533333pt;}
.y2b{bottom:165.626667pt;}
.ydb{bottom:166.466667pt;}
.y11b{bottom:170.426667pt;}
.y16{bottom:172.573333pt;}
.ya5{bottom:174.813333pt;}
.y13f{bottom:174.973333pt;}
.y7c{bottom:177.466667pt;}
.ycf{bottom:182.373333pt;}
.yff{bottom:182.466667pt;}
.y8b{bottom:184.160000pt;}
.ybf{bottom:185.760000pt;}
.yf1{bottom:186.693333pt;}
.y135{bottom:189.120000pt;}
.y4b{bottom:189.853333pt;}
.y10d{bottom:189.986667pt;}
.y96{bottom:194.146667pt;}
.y39{bottom:194.333333pt;}
.y2a{bottom:194.426667pt;}
.y13e{bottom:197.373333pt;}
.y66{bottom:199.173333pt;}
.ya4{bottom:203.613333pt;}
.y8{bottom:204.093333pt;}
.yda{bottom:204.866667pt;}
.yb3{bottom:208.666667pt;}
.y7b{bottom:212.706667pt;}
.yce{bottom:214.213333pt;}
.y11a{bottom:215.226667pt;}
.yfe{bottom:217.026667pt;}
.ybe{bottom:217.786667pt;}
.y134{bottom:217.920000pt;}
.y4a{bottom:218.653333pt;}
.y8a{bottom:219.386667pt;}
.y13d{bottom:219.813333pt;}
.yc7{bottom:223.226667pt;}
.y29{bottom:223.266667pt;}
.y12a{bottom:223.746667pt;}
.yf0{bottom:225.093333pt;}
.y15{bottom:227.133333pt;}
.y38{bottom:228.893333pt;}
.y65{bottom:229.600000pt;}
.ya3{bottom:232.413333pt;}
.y10c{bottom:234.306667pt;}
.y7{bottom:236.093333pt;}
.y95{bottom:237.346667pt;}
.y7a{bottom:240.866667pt;}
.y13c{bottom:242.213333pt;}
.yfd{bottom:245.853333pt;}
.y133{bottom:246.746667pt;}
.y49{bottom:247.453333pt;}
.y89{bottom:247.546667pt;}
.ybd{bottom:249.786667pt;}
.yd9{bottom:250.946667pt;}
.y28{bottom:252.066667pt;}
.yb2{bottom:254.746667pt;}
.y129{bottom:255.746667pt;}
.y37{bottom:257.693333pt;}
.y119{bottom:258.746667pt;}
.ycd{bottom:259.040000pt;}
.y64{bottom:260.000000pt;}
.ya2{bottom:261.253333pt;}
.y10b{bottom:263.133333pt;}
.yef{bottom:263.493333pt;}
.y13b{bottom:264.613333pt;}
.y56{bottom:265.346667pt;}
.y6{bottom:268.093333pt;}
.yfc{bottom:274.653333pt;}
.y132{bottom:275.546667pt;}
.y88{bottom:275.706667pt;}
.y79{bottom:276.066667pt;}
.y48{bottom:276.253333pt;}
.ye8{bottom:279.613333pt;}
.y27{bottom:280.866667pt;}
.y14{bottom:281.733333pt;}
.ybc{bottom:281.786667pt;}
.y63{bottom:284.320000pt;}
.y13a{bottom:287.013333pt;}
.y128{bottom:287.746667pt;}
.y55{bottom:288.866667pt;}
.y94{bottom:289.186667pt;}
.yd8{bottom:289.346667pt;}
.ya1{bottom:290.053333pt;}
.y10a{bottom:291.933333pt;}
.y36{bottom:292.293333pt;}
.yb1{bottom:293.146667pt;}
.y118{bottom:297.186667pt;}
.y5{bottom:300.093333pt;}
.ycc{bottom:303.840000pt;}
.y87{bottom:303.866667pt;}
.y78{bottom:304.226667pt;}
.y131{bottom:304.346667pt;}
.y47{bottom:305.093333pt;}
.ye7{bottom:308.453333pt;}
.y62{bottom:308.640000pt;}
.yfb{bottom:309.213333pt;}
.yee{bottom:309.600000pt;}
.y26{bottom:309.666667pt;}
.y139{bottom:310.533333pt;}
.ybb{bottom:313.786667pt;}
.y54{bottom:317.666667pt;}
.ya0{bottom:318.853333pt;}
.y127{bottom:319.773333pt;}
.y13{bottom:326.373333pt;}
.y109{bottom:326.493333pt;}
.y35{bottom:326.853333pt;}
.yd7{bottom:327.773333pt;}
.yb0{bottom:331.586667pt;}
.y4{bottom:332.133333pt;}
.y77{bottom:332.413333pt;}
.y61{bottom:332.986667pt;}
.y12f{bottom:333.146667pt;}
.y46{bottom:333.893333pt;}
.y117{bottom:335.586667pt;}
.ye6{bottom:337.253333pt;}
.yfa{bottom:338.013333pt;}
.yc6{bottom:338.466667pt;}
.y25{bottom:338.493333pt;}
.y86{bottom:339.106667pt;}
.y138{bottom:339.360000pt;}
.y53{bottom:346.466667pt;}
.y9f{bottom:347.653333pt;}
.ycb{bottom:348.666667pt;}
.y126{bottom:351.773333pt;}
.yba{bottom:352.226667pt;}
.yed{bottom:355.680000pt;}
.y60{bottom:357.306667pt;}
.y76{bottom:360.573333pt;}
.y108{bottom:361.053333pt;}
.y34{bottom:361.413333pt;}
.y12e{bottom:361.946667pt;}
.y45{bottom:362.693333pt;}
.y3{bottom:364.133333pt;}
.ye5{bottom:366.053333pt;}
.yf9{bottom:366.813333pt;}
.y85{bottom:367.266667pt;}
.y24{bottom:367.293333pt;}
.y52{bottom:369.533333pt;}
.yd6{bottom:373.853333pt;}
.y116{bottom:373.986667pt;}
.y93{bottom:375.613333pt;}
.y9e{bottom:376.453333pt;}
.yaf{bottom:377.666667pt;}
.y12{bottom:380.933333pt;}
.y5f{bottom:381.626667pt;}
.y125{bottom:383.773333pt;}
.yb9{bottom:384.226667pt;}
.y107{bottom:389.893333pt;}
.y12d{bottom:390.786667pt;}
.y44{bottom:391.493333pt;}
.y110{bottom:392.093333pt;}
.y1a{bottom:393.186667pt;}
.yca{bottom:393.466667pt;}
.yec{bottom:394.080000pt;}
.ye4{bottom:394.853333pt;}
.y84{bottom:395.426667pt;}
.yf8{bottom:395.653333pt;}
.y75{bottom:395.773333pt;}
.y33{bottom:395.973333pt;}
.y23{bottom:396.093333pt;}
.y51{bottom:398.333333pt;}
.y140{bottom:402.240000pt;}
.y9d{bottom:405.280000pt;}
.y5e{bottom:412.026667pt;}
.yd5{bottom:412.253333pt;}
.y115{bottom:412.413333pt;}
.yae{bottom:416.066667pt;}
.yb8{bottom:416.226667pt;}
.y106{bottom:418.693333pt;}
.y11f{bottom:419.586667pt;}
.y43{bottom:420.293333pt;}
.y50{bottom:421.373333pt;}
.y124{bottom:422.173333pt;}
.y83{bottom:423.586667pt;}
.ye3{bottom:423.680000pt;}
.y74{bottom:423.933333pt;}
.yf7{bottom:424.453333pt;}
.y22{bottom:424.893333pt;}
.y11{bottom:425.600000pt;}
.y92{bottom:427.453333pt;}
.y32{bottom:430.560000pt;}
.yeb{bottom:432.506667pt;}
.yc{bottom:434.053333pt;}
.y9c{bottom:434.080000pt;}
.y5d{bottom:436.346667pt;}
.y10f{bottom:438.213333pt;}
.yc9{bottom:438.266667pt;}
.y105{bottom:447.493333pt;}
.yb7{bottom:448.226667pt;}
.y11e{bottom:448.386667pt;}
.y42{bottom:449.120000pt;}
.y4f{bottom:450.173333pt;}
.yd4{bottom:450.693333pt;}
.y114{bottom:450.813333pt;}
.y73{bottom:452.093333pt;}
.ye2{bottom:452.480000pt;}
.yf6{bottom:453.253333pt;}
.y3e{bottom:453.600000pt;}
.y21{bottom:453.693333pt;}
.y123{bottom:454.213333pt;}
.y82{bottom:458.786667pt;}
.y31{bottom:459.360000pt;}
.y5c{bottom:460.706667pt;}
.yad{bottom:462.173333pt;}
.y9b{bottom:462.880000pt;}
.y91{bottom:470.693333pt;}
.y11d{bottom:477.186667pt;}
.y41{bottom:477.920000pt;}
.yea{bottom:478.586667pt;}
.y4e{bottom:478.973333pt;}
.y10{bottom:480.160000pt;}
.yb6{bottom:480.253333pt;}
.ye1{bottom:481.280000pt;}
.y10e{bottom:481.893333pt;}
.yf5{bottom:482.053333pt;}
.yc5{bottom:482.493333pt;}
.y20{bottom:482.533333pt;}
.y5b{bottom:485.026667pt;}
.y122{bottom:486.213333pt;}
.yf2{bottom:486.426667pt;}
.y81{bottom:486.973333pt;}
.y72{bottom:487.333333pt;}
.y3d{bottom:488.160000pt;}
.yb{bottom:488.453333pt;}
.y113{bottom:489.213333pt;}
.y9a{bottom:491.680000pt;}
.yc2{bottom:492.893333pt;}
.y30{bottom:493.920000pt;}
.yd3{bottom:496.773333pt;}
.yac{bottom:500.573333pt;}
.y4d{bottom:502.693333pt;}
.y11c{bottom:505.986667pt;}
.y5a{bottom:509.346667pt;}
.ye0{bottom:510.080000pt;}
.yf4{bottom:510.880000pt;}
.yc4{bottom:511.293333pt;}
.y1f{bottom:511.333333pt;}
.yb5{bottom:512.253333pt;}
.y90{bottom:513.893333pt;}
.y80{bottom:515.133333pt;}
.y71{bottom:515.493333pt;}
.y12c{bottom:516.093333pt;}
.y121{bottom:518.213333pt;}
.y99{bottom:520.506667pt;}
.y3c{bottom:522.720000pt;}
.yf{bottom:524.800000pt;}
.y112{bottom:527.613333pt;}
.y2f{bottom:528.480000pt;}
.yd2{bottom:535.173333pt;}
.yab{bottom:538.973333pt;}
.yf3{bottom:539.680000pt;}
.y1e{bottom:540.133333pt;}
.ya{bottom:542.853333pt;}
.y69{bottom:543.426667pt;}
.y70{bottom:543.653333pt;}
.yb4{bottom:544.253333pt;}
.y59{bottom:551.013333pt;}
.y120{bottom:556.613333pt;}
.y2e{bottom:557.306667pt;}
.y12b{bottom:560.933333pt;}
.y111{bottom:566.053333pt;}
.yc3{bottom:568.933333pt;}
.ye{bottom:569.466667pt;}
.y40{bottom:569.666667pt;}
.ye9{bottom:580.453333pt;}
.yc8{bottom:588.453333pt;}
.y8f{bottom:589.146667pt;}
.y7f{bottom:591.040000pt;}
.yd1{bottom:592.893333pt;}
.y9{bottom:597.280000pt;}
.y68{bottom:601.026667pt;}
.y58{bottom:608.640000pt;}
.y130{bottom:609.986667pt;}
.y3f{bottom:611.266667pt;}
.y1b{bottom:619.680000pt;}
.yaa{bottom:621.693333pt;}
.y2d{bottom:631.746667pt;}
.y1d{bottom:633.946667pt;}
.yd{bottom:646.053333pt;}
.yd0{bottom:650.493333pt;}
.y8e{bottom:653.146667pt;}
.y7e{bottom:655.040000pt;}
.y67{bottom:658.626667pt;}
.y57{bottom:666.240000pt;}
.y1c{bottom:675.546667pt;}
.h1{height:55.402500pt;}
.h33{height:70.406250pt;}
.h1a{height:74.062500pt;}
.h1d{height:74.156250pt;}
.h15{height:78.097500pt;}
.h3b{height:78.231000pt;}
.h30{height:78.281250pt;}
.h31{height:78.375000pt;}
.h12{height:85.078125pt;}
.h14{height:85.191563pt;}
.h20{height:85.781250pt;}
.h23{height:85.875000pt;}
.h39{height:88.777500pt;}
.h19{height:89.615625pt;}
.h2d{height:93.750000pt;}
.h37{height:93.843750pt;}
.h2f{height:94.720312pt;}
.hc{height:94.785000pt;}
.h32{height:94.833750pt;}
.h10{height:100.125000pt;}
.h11{height:100.258500pt;}
.h1f{height:103.795312pt;}
.h22{height:103.908750pt;}
.h1c{height:105.465000pt;}
.h29{height:105.468750pt;}
.h1b{height:105.598500pt;}
.h2{height:111.472500pt;}
.h3{height:111.606000pt;}
.h2c{height:113.437500pt;}
.h36{height:113.550938pt;}
.h9{height:121.031250pt;}
.h21{height:122.152500pt;}
.h24{height:122.286000pt;}
.h3a{height:123.079688pt;}
.h28{height:127.617188pt;}
.h4{height:131.860312pt;}
.h5{height:131.953500pt;}
.h34{height:132.154687pt;}
.h2e{height:133.500000pt;}
.h38{height:133.633500pt;}
.h16{height:140.625000pt;}
.h1e{height:140.718750pt;}
.hf{height:144.847500pt;}
.he{height:144.981000pt;}
.h8{height:146.334375pt;}
.h2b{height:150.187500pt;}
.h2a{height:150.321000pt;}
.h35{height:155.527500pt;}
.h13{height:155.661000pt;}
.h27{height:156.093750pt;}
.h25{height:156.187500pt;}
.ha{height:172.215000pt;}
.hb{height:172.348500pt;}
.h7{height:178.356000pt;}
.h6{height:188.902500pt;}
.h17{height:200.250000pt;}
.h18{height:200.383500pt;}
.hd{height:211.597500pt;}
.h26{height:222.277500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.296000pt;}
.x4{left:9.600000pt;}
.x2a{left:11.520000pt;}
.x3{left:23.808000pt;}
.x1b{left:26.848000pt;}
.x5{left:28.448000pt;}
.x18{left:31.616000pt;}
.x2f{left:33.152000pt;}
.x2e{left:34.880000pt;}
.x21{left:40.864000pt;}
.x1f{left:43.328000pt;}
.x16{left:45.760000pt;}
.xe{left:47.808000pt;}
.x1a{left:49.728000pt;}
.x17{left:50.656000pt;}
.x13{left:55.360000pt;}
.x2{left:59.168000pt;}
.x27{left:61.440000pt;}
.x1c{left:62.848000pt;}
.x6{left:64.448000pt;}
.x19{left:67.616000pt;}
.x24{left:69.504000pt;}
.x22{left:70.944000pt;}
.x2c{left:74.240000pt;}
.xf{left:83.840000pt;}
.xb{left:85.280000pt;}
.x8{left:95.168000pt;}
.x7{left:96.128000pt;}
.x28{left:97.440000pt;}
.xc{left:100.704000pt;}
.xd{left:105.632000pt;}
.x2d{left:110.240000pt;}
.x11{left:116.288000pt;}
.x12{left:121.280000pt;}
.x25{left:129.344000pt;}
.x20{left:166.813333pt;}
.xa{left:183.773333pt;}
.x30{left:213.506667pt;}
.x1d{left:233.826667pt;}
.x10{left:236.293333pt;}
.x23{left:239.586667pt;}
.x29{left:251.746667pt;}
.x14{left:256.386667pt;}
.x9{left:259.333333pt;}
.x15{left:262.693333pt;}
.x2b{left:279.746667pt;}
.x31{left:378.973333pt;}
.x26{left:533.693333pt;}
.x1{left:558.013333pt;}
}




    .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; }
  