
    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_beaae9cc780887a82b62bba9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aa40f35048dd752b3cbcb7ea.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_7dc3b8aefdb3e473363824c7.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_1127e17d4797beffae164c3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854492;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_d1021bd3e8c5655d591eb6b0.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_6aef34ba321d2c1c66673a7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_953449014d3c32450d112982.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.977539;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_31b93d851e56a948207eabe8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_e1bba189b9d404a63c633012.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5d2b3ea6dc4b7222653dd956.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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);}
.m2{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.870000px;}
.ls6{letter-spacing:-0.618000px;}
.ls12{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.229800px;}
.ls17{letter-spacing:-0.222000px;}
.ls5{letter-spacing:-0.207600px;}
.ls8{letter-spacing:-0.172800px;}
.ls13{letter-spacing:-0.103800px;}
.lsc{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.069000px;}
.ls4{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.075000px;}
.ls1{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.220200px;}
.ls15{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.532800px;}
.lse{letter-spacing:0.813309px;}
.ls9{letter-spacing:1.267200px;}
.ls11{letter-spacing:7.363200px;}
.ls10{letter-spacing:9.907200px;}
.lsa{letter-spacing:32.947200px;}
.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;}
}
.wsb{word-spacing:-18.808440px;}
.ws0{word-spacing:-18.753000px;}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-14.878200px;}
.ws3{word-spacing:-14.673600px;}
.ws1{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws4{word-spacing:-14.503800px;}
.wsd{word-spacing:-14.469000px;}
.wsc{word-spacing:-14.158200px;}
.ws9{word-spacing:-13.555156px;}
.ws6{word-spacing:-11.880000px;}
.ws7{word-spacing:-9.092400px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:244.782560px;}
.ws8{word-spacing:632.559696px;}
._22{margin-left:-5.459131px;}
._21{margin-left:-4.245177px;}
._1f{margin-left:-2.782404px;}
._0{margin-left:-1.013040px;}
._2{width:1.046160px;}
._1{width:2.160240px;}
._e{width:3.444480px;}
._f{width:4.833840px;}
._b{width:6.292800px;}
._8{width:7.637040px;}
._a{width:9.452880px;}
._5{width:10.664640px;}
._6{width:11.762400px;}
._7{width:12.807120px;}
._14{width:15.963840px;}
._d{width:17.288640px;}
._18{width:18.294960px;}
._11{width:19.342080px;}
._10{width:20.468160px;}
._1a{width:21.503280px;}
._4{width:22.587840px;}
._3{width:23.846400px;}
._12{width:24.898320px;}
._13{width:25.927200px;}
._1b{width:27.092160px;}
._15{width:28.416960px;}
._1c{width:29.628960px;}
._1e{width:30.649440px;}
._17{width:32.658240px;}
._16{width:34.199280px;}
._1d{width:35.241600px;}
._19{width:36.498240px;}
._24{width:38.100000px;}
._9{width:39.147840px;}
._23{width:344.881208px;}
._20{width:673.044432px;}
._c{width:1269.328800px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(79,129,189);}
.fc5{color:rgb(54,96,145);}
.fc4{color:rgb(200,16,46);}
.fc3{color:rgb(0,32,96);}
.fc7{color:transparent;}
.fc2{color:rgb(0,51,102);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:54.220625px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y23{bottom:2.340000px;}
.yec{bottom:7.213387px;}
.yfd{bottom:7.213423px;}
.ye1{bottom:8.115060px;}
.y12b{bottom:9.900000px;}
.y76{bottom:10.080000px;}
.yf2{bottom:10.856147px;}
.y12d{bottom:13.680000px;}
.ydd{bottom:17.167861px;}
.y131{bottom:18.180000px;}
.y12f{bottom:18.360000px;}
.y133{bottom:18.405000px;}
.yfb{bottom:25.277307px;}
.yeb{bottom:25.282921px;}
.yf9{bottom:26.178584px;}
.ye0{bottom:26.208639px;}
.yf1{bottom:28.913659px;}
.ydb{bottom:35.225373px;}
.yee{bottom:37.966460px;}
.yf5{bottom:42.438760px;}
.yea{bottom:43.340433px;}
.yfc{bottom:43.370886px;}
.yf8{bottom:44.242107px;}
.ydf{bottom:44.278174px;}
.yfe{bottom:46.075906px;}
.y29{bottom:46.260000px;}
.y2{bottom:46.620000px;}
.yf0{bottom:46.983194px;}
.y25{bottom:51.840000px;}
.ydc{bottom:53.294907px;}
.y75{bottom:53.820000px;}
.y194{bottom:54.720000px;}
.y15f{bottom:54.900000px;}
.y12a{bottom:55.080000px;}
.ye9{bottom:61.434012px;}
.yf7{bottom:62.304428px;}
.yde{bottom:62.335686px;}
.yef{bottom:65.040706px;}
.y1{bottom:65.196000px;}
.yf3{bottom:71.388486px;}
.ye3{bottom:77.700200px;}
.ye8{bottom:79.503547px;}
.yf6{bottom:80.398007px;}
.y24{bottom:83.736000px;}
.y27{bottom:84.240000px;}
.ye7{bottom:97.561059px;}
.y22{bottom:111.096000px;}
.y21{bottom:114.876000px;}
.ye6{bottom:115.630593px;}
.ycb{bottom:116.856000px;}
.y15e{bottom:117.576000px;}
.y74{bottom:123.336000px;}
.ye5{bottom:133.688105px;}
.y20{bottom:135.036000px;}
.y129{bottom:136.656000px;}
.y15d{bottom:136.836000px;}
.yca{bottom:139.176000px;}
.y14c{bottom:142.416000px;}
.yaa{bottom:144.396000px;}
.y186{bottom:144.936000px;}
.y73{bottom:145.656000px;}
.ye4{bottom:151.757639px;}
.y50{bottom:152.130000px;}
.yd9{bottom:155.550000px;}
.y15c{bottom:156.270000px;}
.y1b2{bottom:156.630000px;}
.y128{bottom:158.790000px;}
.yc9{bottom:161.310000px;}
.y14b{bottom:164.550000px;}
.ya9{bottom:166.710000px;}
.y185{bottom:167.250000px;}
.y72{bottom:167.790000px;}
.y1f{bottom:174.090000px;}
.y4f{bottom:174.450000px;}
.y15b{bottom:175.530000px;}
.yd8{bottom:177.870000px;}
.y1b1{bottom:178.590000px;}
.y127{bottom:181.110000px;}
.y193{bottom:183.630000px;}
.y14a{bottom:186.870000px;}
.ya8{bottom:188.850000px;}
.y184{bottom:189.390000px;}
.y119{bottom:191.370000px;}
.y15a{bottom:194.790000px;}
.y1e{bottom:196.410000px;}
.y4e{bottom:196.590000px;}
.yc8{bottom:198.570000px;}
.yd7{bottom:200.010000px;}
.y126{bottom:203.430000px;}
.y71{bottom:205.050000px;}
.y192{bottom:205.770000px;}
.y149{bottom:209.010000px;}
.ya7{bottom:211.170000px;}
.y183{bottom:211.710000px;}
.y89{bottom:212.430000px;}
.y159{bottom:214.230000px;}
.y1b0{bottom:214.950000px;}
.y1d{bottom:218.550000px;}
.y4d{bottom:218.910000px;}
.yc7{bottom:220.890000px;}
.yd6{bottom:222.330000px;}
.y125{bottom:225.570000px;}
.y70{bottom:227.370000px;}
.y118{bottom:228.630000px;}
.y148{bottom:231.330000px;}
.ya6{bottom:233.310000px;}
.y158{bottom:233.490000px;}
.y182{bottom:234.030000px;}
.y88{bottom:234.570000px;}
.y1c{bottom:240.870000px;}
.y4c{bottom:241.050000px;}
.yc6{bottom:243.030000px;}
.y191{bottom:243.390000px;}
.yd5{bottom:244.470000px;}
.y6f{bottom:249.690000px;}
.y117{bottom:250.950000px;}
.y1af{bottom:252.570000px;}
.y157{bottom:252.930000px;}
.y147{bottom:253.650000px;}
.ya5{bottom:255.630000px;}
.y181{bottom:256.170000px;}
.y87{bottom:256.890000px;}
.y124{bottom:262.830000px;}
.y1b{bottom:263.190000px;}
.y4b{bottom:263.370000px;}
.y190{bottom:265.170000px;}
.yc5{bottom:265.350000px;}
.yd4{bottom:266.790000px;}
.y6e{bottom:271.830000px;}
.y156{bottom:272.190000px;}
.y116{bottom:273.090000px;}
.y1ae{bottom:274.350000px;}
.y146{bottom:275.790000px;}
.ya4{bottom:277.770000px;}
.y180{bottom:278.490000px;}
.y86{bottom:279.030000px;}
.y123{bottom:285.150000px;}
.y1a{bottom:285.330000px;}
.y4a{bottom:285.690000px;}
.yc4{bottom:287.670000px;}
.yd3{bottom:289.110000px;}
.y155{bottom:291.630000px;}
.y6d{bottom:294.150000px;}
.y115{bottom:295.410000px;}
.y145{bottom:298.110000px;}
.ya3{bottom:300.090000px;}
.y17f{bottom:300.630000px;}
.y85{bottom:301.350000px;}
.y18f{bottom:301.710000px;}
.y122{bottom:307.290000px;}
.y49{bottom:307.830000px;}
.yc3{bottom:309.855000px;}
.y154{bottom:310.935000px;}
.yd2{bottom:311.295000px;}
.y6c{bottom:316.335000px;}
.y114{bottom:317.595000px;}
.y19{bottom:319.575000px;}
.y144{bottom:320.295000px;}
.ya2{bottom:322.455000px;}
.y17e{bottom:322.995000px;}
.y84{bottom:323.715000px;}
.y18e{bottom:324.075000px;}
.y121{bottom:329.655000px;}
.y48{bottom:330.195000px;}
.y153{bottom:330.375000px;}
.y1ad{bottom:333.255000px;}
.yd1{bottom:333.615000px;}
.y6b{bottom:338.655000px;}
.y143{bottom:342.615000px;}
.ya1{bottom:344.595000px;}
.y17d{bottom:345.135000px;}
.y83{bottom:345.855000px;}
.yc2{bottom:347.115000px;}
.y152{bottom:349.635000px;}
.y120{bottom:351.795000px;}
.y47{bottom:352.335000px;}
.y113{bottom:354.855000px;}
.y1ac{bottom:355.395000px;}
.yd0{bottom:355.755000px;}
.y6a{bottom:360.795000px;}
.y18{bottom:361.155000px;}
.y18d{bottom:361.515000px;}
.y142{bottom:364.935000px;}
.ya0{bottom:366.915000px;}
.y17c{bottom:367.455000px;}
.y82{bottom:368.175000px;}
.y151{bottom:369.075000px;}
.yc1{bottom:369.435000px;}
.y11f{bottom:374.115000px;}
.y46{bottom:374.655000px;}
.y1c9{bottom:375.735000px;}
.y112{bottom:377.175000px;}
.ycf{bottom:380.955000px;}
.y69{bottom:383.115000px;}
.y17{bottom:383.295000px;}
.y150{bottom:388.335000px;}
.y17b{bottom:389.775000px;}
.y81{bottom:390.315000px;}
.yc0{bottom:391.575000px;}
.y1ab{bottom:393.015000px;}
.y45{bottom:396.975000px;}
.y1c8{bottom:397.875000px;}
.y111{bottom:399.315000px;}
.y141{bottom:402.015000px;}
.y9f{bottom:404.175000px;}
.y68{bottom:405.435000px;}
.y16{bottom:405.615000px;}
.y11e{bottom:411.375000px;}
.y17a{bottom:411.915000px;}
.y80{bottom:412.635000px;}
.y14f{bottom:413.535000px;}
.ybf{bottom:413.895000px;}
.y1aa{bottom:414.795000px;}
.y18c{bottom:419.835000px;}
.y110{bottom:421.635000px;}
.y140{bottom:424.335000px;}
.y9e{bottom:426.315000px;}
.y67{bottom:430.455000px;}
.y11d{bottom:433.695000px;}
.y44{bottom:434.055000px;}
.y179{bottom:434.235000px;}
.y7f{bottom:434.775000px;}
.y1c7{bottom:435.135000px;}
.ybe{bottom:436.035000px;}
.yce{bottom:440.715000px;}
.y18b{bottom:442.155000px;}
.y10f{bottom:443.955000px;}
.y15{bottom:445.755000px;}
.y13f{bottom:446.655000px;}
.y9d{bottom:448.635000px;}
.y1a9{bottom:451.695000px;}
.y11c{bottom:455.835000px;}
.y43{bottom:456.375000px;}
.y7e{bottom:457.095000px;}
.y1c6{bottom:457.455000px;}
.ybd{bottom:458.355000px;}
.y178{bottom:459.255000px;}
.y18a{bottom:464.475000px;}
.y10e{bottom:466.095000px;}
.y13e{bottom:468.795000px;}
.y9c{bottom:470.775000px;}
.y14e{bottom:473.115000px;}
.ycd{bottom:474.195000px;}
.yfa{bottom:475.211468px;}
.y11b{bottom:478.155000px;}
.y42{bottom:478.695000px;}
.y7d{bottom:479.415000px;}
.y1c5{bottom:479.595000px;}
.ybc{bottom:483.555000px;}
.y14{bottom:486.075000px;}
.y10d{bottom:488.415000px;}
.y13d{bottom:491.115000px;}
.y66{bottom:493.095000px;}
.y11a{bottom:500.295000px;}
.y41{bottom:500.835000px;}
.y7c{bottom:501.555000px;}
.y14d{bottom:506.775000px;}
.y10c{bottom:510.555000px;}
.y13c{bottom:513.255000px;}
.y65{bottom:515.415000px;}
.y1c4{bottom:516.855000px;}
.y177{bottom:521.895000px;}
.y40{bottom:523.155000px;}
.y7b{bottom:523.875000px;}
.y1a8{bottom:525.315000px;}
.y13{bottom:526.215000px;}
.y10b{bottom:532.875000px;}
.y13b{bottom:535.575000px;}
.yf4{bottom:535.744203px;}
.y64{bottom:537.555000px;}
.y1c3{bottom:539.175000px;}
.y176{bottom:544.215000px;}
.y3f{bottom:545.295000px;}
.y7a{bottom:546.015000px;}
.y189{bottom:546.195000px;}
.y1a7{bottom:547.095000px;}
.y10a{bottom:557.895000px;}
.y63{bottom:559.875000px;}
.y1c2{bottom:561.345000px;}
.y175{bottom:566.385000px;}
.y12{bottom:566.565000px;}
.y3e{bottom:567.645000px;}
.y79{bottom:568.365000px;}
.y13a{bottom:580.065000px;}
.y62{bottom:582.045000px;}
.y1a6{bottom:584.025000px;}
.y11{bottom:585.285000px;}
.y174{bottom:588.705000px;}
.y3d{bottom:589.965000px;}
.y78{bottom:590.505000px;}
.ybb{bottom:590.685000px;}
.y1c1{bottom:598.605000px;}
.y139{bottom:602.385000px;}
.y188{bottom:602.565000px;}
.y61{bottom:604.365000px;}
.y1a5{bottom:605.805000px;}
.y173{bottom:611.025000px;}
.y3c{bottom:612.105000px;}
.yba{bottom:612.825000px;}
.y109{bottom:620.565000px;}
.y1c0{bottom:620.925000px;}
.y138{bottom:624.525000px;}
.y10{bottom:626.145000px;}
.y60{bottom:626.685000px;}
.y1a4{bottom:627.585000px;}
.yed{bottom:630.568984px;}
.y172{bottom:633.165000px;}
.y3b{bottom:634.425000px;}
.yb9{bottom:635.145000px;}
.y9b{bottom:641.625000px;}
.y108{bottom:642.885000px;}
.y1bf{bottom:643.065000px;}
.y5f{bottom:648.825000px;}
.y137{bottom:649.725000px;}
.y171{bottom:655.485000px;}
.y3a{bottom:656.565000px;}
.yb8{bottom:657.285000px;}
.ye{bottom:663.405000px;}
.y9a{bottom:663.945000px;}
.y1a3{bottom:664.125000px;}
.y107{bottom:665.025000px;}
.yf{bottom:667.185000px;}
.y5e{bottom:671.145000px;}
.y170{bottom:677.625000px;}
.y39{bottom:678.885000px;}
.yb7{bottom:679.605000px;}
.y1be{bottom:680.325000px;}
.y99{bottom:686.085000px;}
.y1a2{bottom:686.265000px;}
.y106{bottom:687.345000px;}
.y5d{bottom:693.285000px;}
.yd{bottom:697.065000px;}
.y16f{bottom:699.945000px;}
.y38{bottom:701.025000px;}
.y1bd{bottom:702.645000px;}
.y98{bottom:708.405000px;}
.y1a1{bottom:708.585000px;}
.y105{bottom:709.665000px;}
.y136{bottom:712.365000px;}
.y5c{bottom:715.605000px;}
.ye2{bottom:716.408289px;}
.yb6{bottom:716.865000px;}
.y16e{bottom:722.085000px;}
.yc{bottom:722.805000px;}
.y37{bottom:723.345000px;}
.y1bc{bottom:724.785000px;}
.y97{bottom:730.545000px;}
.y104{bottom:731.805000px;}
.y135{bottom:734.505000px;}
.y5b{bottom:737.745000px;}
.yb5{bottom:739.005000px;}
.y16d{bottom:744.405000px;}
.y36{bottom:745.665000px;}
.y1a0{bottom:745.845000px;}
.yb{bottom:750.525000px;}
.y134{bottom:750.885000px;}
.y96{bottom:752.865000px;}
.y103{bottom:754.125000px;}
.y5a{bottom:760.065000px;}
.yb4{bottom:761.325000px;}
.y1bb{bottom:762.045000px;}
.y16c{bottom:766.725000px;}
.y35{bottom:767.805000px;}
.y19f{bottom:768.165000px;}
.y95{bottom:775.005000px;}
.y102{bottom:776.265000px;}
.y59{bottom:782.385000px;}
.yb3{bottom:783.645000px;}
.y1ba{bottom:784.365000px;}
.y34{bottom:790.125000px;}
.ya{bottom:791.025000px;}
.y16b{bottom:791.745000px;}
.y94{bottom:797.325000px;}
.y101{bottom:798.585000px;}
.y132{bottom:799.485000px;}
.y58{bottom:804.525000px;}
.y19e{bottom:805.245000px;}
.yb2{bottom:805.785000px;}
.y1b9{bottom:806.685000px;}
.y33{bottom:812.310000px;}
.y100{bottom:820.950000px;}
.y57{bottom:826.890000px;}
.yb1{bottom:828.150000px;}
.y9{bottom:831.390000px;}
.y32{bottom:834.630000px;}
.y19d{bottom:842.550000px;}
.y187{bottom:843.090000px;}
.y1b8{bottom:843.990000px;}
.yff{bottom:845.970000px;}
.y130{bottom:848.130000px;}
.y56{bottom:849.030000px;}
.y16a{bottom:851.550000px;}
.y93{bottom:856.950000px;}
.y31{bottom:859.830000px;}
.y77{bottom:864.150000px;}
.y19c{bottom:864.870000px;}
.yb0{bottom:865.410000px;}
.y1b7{bottom:866.130000px;}
.y169{bottom:870.810000px;}
.y55{bottom:871.350000px;}
.y92{bottom:879.090000px;}
.y8{bottom:881.430000px;}
.yda{bottom:882.616747px;}
.y30{bottom:886.290000px;}
.yaf{bottom:887.550000px;}
.y1b6{bottom:888.450000px;}
.y168{bottom:890.250000px;}
.y12e{bottom:896.550000px;}
.y91{bottom:901.410000px;}
.y19b{bottom:902.130000px;}
.y7{bottom:905.550000px;}
.y2f{bottom:908.610000px;}
.y167{bottom:909.510000px;}
.yae{bottom:909.870000px;}
.y90{bottom:923.550000px;}
.y19a{bottom:924.450000px;}
.y1b5{bottom:925.890000px;}
.y166{bottom:928.950000px;}
.y54{bottom:930.750000px;}
.yad{bottom:932.010000px;}
.y2e{bottom:933.810000px;}
.y6{bottom:933.990000px;}
.y8f{bottom:945.870000px;}
.y1b4{bottom:947.670000px;}
.y165{bottom:948.210000px;}
.y53{bottom:953.070000px;}
.yac{bottom:954.330000px;}
.y199{bottom:961.530000px;}
.y164{bottom:967.650000px;}
.y8e{bottom:968.010000px;}
.y5{bottom:975.390000px;}
.yab{bottom:979.350000px;}
.ycc{bottom:982.590000px;}
.y198{bottom:983.850000px;}
.y1b3{bottom:984.570000px;}
.y163{bottom:986.910000px;}
.y8d{bottom:990.330000px;}
.y2d{bottom:997.530000px;}
.y4{bottom:1004.190000px;}
.y12c{bottom:1004.730000px;}
.y162{bottom:1006.350000px;}
.y8c{bottom:1012.650000px;}
.y2c{bottom:1019.850000px;}
.y197{bottom:1021.470000px;}
.y161{bottom:1025.610000px;}
.y8b{bottom:1034.790000px;}
.y2b{bottom:1041.990000px;}
.y196{bottom:1043.250000px;}
.y160{bottom:1045.050000px;}
.y3{bottom:1048.650000px;}
.y8a{bottom:1059.990000px;}
.y2a{bottom:1064.340000px;}
.y195{bottom:1065.060000px;}
.y26{bottom:1084.860000px;}
.y52{bottom:1105.560000px;}
.y51{bottom:1121.400000px;}
.y28{bottom:1122.660000px;}
.hf{height:27.540000px;}
.h17{height:27.720000px;}
.h9{height:32.918906px;}
.h7{height:35.357344px;}
.h13{height:37.859128px;}
.h18{height:39.585000px;}
.h1{height:40.843828px;}
.hc{height:43.057617px;}
.he{height:45.720703px;}
.h1a{height:48.405000px;}
.h19{height:48.585000px;}
.h1c{height:48.600000px;}
.h1b{height:48.622500px;}
.ha{height:50.597578px;}
.h11{height:53.214579px;}
.h2{height:56.084062px;}
.h16{height:59.630666px;}
.h1d{height:65.010937px;}
.h4{height:71.324297px;}
.h10{height:80.399209px;}
.h14{height:84.937631px;}
.h8{height:86.255508px;}
.h15{height:93.924309px;}
.hb{height:97.200000px;}
.hd{height:98.100000px;}
.h5{height:101.804766px;}
.h3{height:111.558516px;}
.h12{height:165.306785px;}
.h6{height:1187.997990px;}
.h0{height:1188.000000px;}
.w4{width:40.680000px;}
.we{width:40.860000px;}
.w6{width:75.867018px;}
.w3{width:80.280000px;}
.w7{width:84.918136px;}
.w2{width:98.280000px;}
.w9{width:129.049500px;}
.wb{width:140.616000px;}
.wc{width:141.465000px;}
.wd{width:141.501000px;}
.wa{width:142.221000px;}
.w8{width:308.014679px;}
.w5{width:695.522837px;}
.w1{width:917.998125px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:1.804210px;}
.x27{left:5.412629px;}
.x34{left:8.449500px;}
.x22{left:9.947209px;}
.x1b{left:11.850000px;}
.x14{left:14.190000px;}
.x26{left:16.261943px;}
.x25{left:18.968258px;}
.x20{left:20.778482px;}
.x36{left:22.500000px;}
.x23{left:24.380887px;}
.x2d{left:26.269500px;}
.x33{left:29.730000px;}
.x2a{left:32.505845px;}
.x16{left:40.140000px;}
.x37{left:45.163500px;}
.x30{left:51.120000px;}
.x35{left:68.430000px;}
.x1{left:108.036000px;}
.x1f{left:111.152105px;}
.x12{left:112.176000px;}
.x8{left:113.436000px;}
.x18{left:118.836000px;}
.x7{left:133.416000px;}
.x38{left:148.536000px;}
.x3a{left:161.130000px;}
.x19{left:164.730000px;}
.x2{left:178.050000px;}
.x28{left:205.993394px;}
.x17{left:217.470000px;}
.x5{left:229.170000px;}
.x2e{left:240.705000px;}
.xf{left:254.370000px;}
.x1d{left:260.670000px;}
.x10{left:264.090000px;}
.x2c{left:288.570000px;}
.x3{left:300.495000px;}
.xe{left:305.715000px;}
.x11{left:324.075000px;}
.x6{left:340.635000px;}
.xd{left:366.375000px;}
.x2f{left:382.935000px;}
.xa{left:410.115000px;}
.x4{left:459.075000px;}
.xb{left:503.203125px;}
.xc{left:507.885000px;}
.x31{left:523.560000px;}
.x21{left:644.091592px;}
.x32{left:665.040000px;}
.x24{left:720.854701px;}
.x39{left:755.460000px;}
.x2b{left:757.440000px;}
.x1a{left:759.240000px;}
.x3b{left:761.040000px;}
.x1c{left:762.840000px;}
.x1e{left:807.810000px;}
.x9{left:810.150000px;}
.x13{left:819.720000px;}
.x15{left:869.220000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.773333pt;}
.ls6{letter-spacing:-0.549333pt;}
.ls12{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.204267pt;}
.ls17{letter-spacing:-0.197333pt;}
.ls5{letter-spacing:-0.184533pt;}
.ls8{letter-spacing:-0.153600pt;}
.ls13{letter-spacing:-0.092267pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.061333pt;}
.ls4{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.066667pt;}
.ls1{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.195733pt;}
.ls15{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.473600pt;}
.lse{letter-spacing:0.722942pt;}
.ls9{letter-spacing:1.126400pt;}
.ls11{letter-spacing:6.545067pt;}
.ls10{letter-spacing:8.806400pt;}
.lsa{letter-spacing:29.286400pt;}
.wsb{word-spacing:-16.718613pt;}
.ws0{word-spacing:-16.669333pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.225067pt;}
.ws3{word-spacing:-13.043200pt;}
.ws1{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws4{word-spacing:-12.892267pt;}
.wsd{word-spacing:-12.861333pt;}
.wsc{word-spacing:-12.585067pt;}
.ws9{word-spacing:-12.049028pt;}
.ws6{word-spacing:-10.560000pt;}
.ws7{word-spacing:-8.082133pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:217.584497pt;}
.ws8{word-spacing:562.275285pt;}
._22{margin-left:-4.852561pt;}
._21{margin-left:-3.773491pt;}
._1f{margin-left:-2.473248pt;}
._0{margin-left:-0.900480pt;}
._2{width:0.929920pt;}
._1{width:1.920213pt;}
._e{width:3.061760pt;}
._f{width:4.296747pt;}
._b{width:5.593600pt;}
._8{width:6.788480pt;}
._a{width:8.402560pt;}
._5{width:9.479680pt;}
._6{width:10.455467pt;}
._7{width:11.384107pt;}
._14{width:14.190080pt;}
._d{width:15.367680pt;}
._18{width:16.262187pt;}
._11{width:17.192960pt;}
._10{width:18.193920pt;}
._1a{width:19.114027pt;}
._4{width:20.078080pt;}
._3{width:21.196800pt;}
._12{width:22.131840pt;}
._13{width:23.046400pt;}
._1b{width:24.081920pt;}
._15{width:25.259520pt;}
._1c{width:26.336853pt;}
._1e{width:27.243947pt;}
._17{width:29.029547pt;}
._16{width:30.399360pt;}
._1d{width:31.325867pt;}
._19{width:32.442880pt;}
._24{width:33.866667pt;}
._9{width:34.798080pt;}
._23{width:306.561073pt;}
._20{width:598.261718pt;}
._c{width:1128.292267pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:48.196111pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.080000pt;}
.yec{bottom:6.411900pt;}
.yfd{bottom:6.411932pt;}
.ye1{bottom:7.213387pt;}
.y12b{bottom:8.800000pt;}
.y76{bottom:8.960000pt;}
.yf2{bottom:9.649909pt;}
.y12d{bottom:12.160000pt;}
.ydd{bottom:15.260321pt;}
.y131{bottom:16.160000pt;}
.y12f{bottom:16.320000pt;}
.y133{bottom:16.360000pt;}
.yfb{bottom:22.468717pt;}
.yeb{bottom:22.473708pt;}
.yf9{bottom:23.269852pt;}
.ye0{bottom:23.296568pt;}
.yf1{bottom:25.701031pt;}
.ydb{bottom:31.311443pt;}
.yee{bottom:33.747964pt;}
.yf5{bottom:37.723342pt;}
.yea{bottom:38.524830pt;}
.yfc{bottom:38.551899pt;}
.yf8{bottom:39.326317pt;}
.ydf{bottom:39.358377pt;}
.yfe{bottom:40.956361pt;}
.y29{bottom:41.120000pt;}
.y2{bottom:41.440000pt;}
.yf0{bottom:41.762839pt;}
.y25{bottom:46.080000pt;}
.ydc{bottom:47.373251pt;}
.y75{bottom:47.840000pt;}
.y194{bottom:48.640000pt;}
.y15f{bottom:48.800000pt;}
.y12a{bottom:48.960000pt;}
.ye9{bottom:54.608011pt;}
.yf7{bottom:55.381713pt;}
.yde{bottom:55.409498pt;}
.yef{bottom:57.813961pt;}
.y1{bottom:57.952000pt;}
.yf3{bottom:63.456432pt;}
.ye3{bottom:69.066844pt;}
.ye8{bottom:70.669819pt;}
.yf6{bottom:71.464895pt;}
.y24{bottom:74.432000pt;}
.y27{bottom:74.880000pt;}
.ye7{bottom:86.720941pt;}
.y22{bottom:98.752000pt;}
.y21{bottom:102.112000pt;}
.ye6{bottom:102.782749pt;}
.ycb{bottom:103.872000pt;}
.y15e{bottom:104.512000pt;}
.y74{bottom:109.632000pt;}
.ye5{bottom:118.833871pt;}
.y20{bottom:120.032000pt;}
.y129{bottom:121.472000pt;}
.y15d{bottom:121.632000pt;}
.yca{bottom:123.712000pt;}
.y14c{bottom:126.592000pt;}
.yaa{bottom:128.352000pt;}
.y186{bottom:128.832000pt;}
.y73{bottom:129.472000pt;}
.ye4{bottom:134.895679pt;}
.y50{bottom:135.226667pt;}
.yd9{bottom:138.266667pt;}
.y15c{bottom:138.906667pt;}
.y1b2{bottom:139.226667pt;}
.y128{bottom:141.146667pt;}
.yc9{bottom:143.386667pt;}
.y14b{bottom:146.266667pt;}
.ya9{bottom:148.186667pt;}
.y185{bottom:148.666667pt;}
.y72{bottom:149.146667pt;}
.y1f{bottom:154.746667pt;}
.y4f{bottom:155.066667pt;}
.y15b{bottom:156.026667pt;}
.yd8{bottom:158.106667pt;}
.y1b1{bottom:158.746667pt;}
.y127{bottom:160.986667pt;}
.y193{bottom:163.226667pt;}
.y14a{bottom:166.106667pt;}
.ya8{bottom:167.866667pt;}
.y184{bottom:168.346667pt;}
.y119{bottom:170.106667pt;}
.y15a{bottom:173.146667pt;}
.y1e{bottom:174.586667pt;}
.y4e{bottom:174.746667pt;}
.yc8{bottom:176.506667pt;}
.yd7{bottom:177.786667pt;}
.y126{bottom:180.826667pt;}
.y71{bottom:182.266667pt;}
.y192{bottom:182.906667pt;}
.y149{bottom:185.786667pt;}
.ya7{bottom:187.706667pt;}
.y183{bottom:188.186667pt;}
.y89{bottom:188.826667pt;}
.y159{bottom:190.426667pt;}
.y1b0{bottom:191.066667pt;}
.y1d{bottom:194.266667pt;}
.y4d{bottom:194.586667pt;}
.yc7{bottom:196.346667pt;}
.yd6{bottom:197.626667pt;}
.y125{bottom:200.506667pt;}
.y70{bottom:202.106667pt;}
.y118{bottom:203.226667pt;}
.y148{bottom:205.626667pt;}
.ya6{bottom:207.386667pt;}
.y158{bottom:207.546667pt;}
.y182{bottom:208.026667pt;}
.y88{bottom:208.506667pt;}
.y1c{bottom:214.106667pt;}
.y4c{bottom:214.266667pt;}
.yc6{bottom:216.026667pt;}
.y191{bottom:216.346667pt;}
.yd5{bottom:217.306667pt;}
.y6f{bottom:221.946667pt;}
.y117{bottom:223.066667pt;}
.y1af{bottom:224.506667pt;}
.y157{bottom:224.826667pt;}
.y147{bottom:225.466667pt;}
.ya5{bottom:227.226667pt;}
.y181{bottom:227.706667pt;}
.y87{bottom:228.346667pt;}
.y124{bottom:233.626667pt;}
.y1b{bottom:233.946667pt;}
.y4b{bottom:234.106667pt;}
.y190{bottom:235.706667pt;}
.yc5{bottom:235.866667pt;}
.yd4{bottom:237.146667pt;}
.y6e{bottom:241.626667pt;}
.y156{bottom:241.946667pt;}
.y116{bottom:242.746667pt;}
.y1ae{bottom:243.866667pt;}
.y146{bottom:245.146667pt;}
.ya4{bottom:246.906667pt;}
.y180{bottom:247.546667pt;}
.y86{bottom:248.026667pt;}
.y123{bottom:253.466667pt;}
.y1a{bottom:253.626667pt;}
.y4a{bottom:253.946667pt;}
.yc4{bottom:255.706667pt;}
.yd3{bottom:256.986667pt;}
.y155{bottom:259.226667pt;}
.y6d{bottom:261.466667pt;}
.y115{bottom:262.586667pt;}
.y145{bottom:264.986667pt;}
.ya3{bottom:266.746667pt;}
.y17f{bottom:267.226667pt;}
.y85{bottom:267.866667pt;}
.y18f{bottom:268.186667pt;}
.y122{bottom:273.146667pt;}
.y49{bottom:273.626667pt;}
.yc3{bottom:275.426667pt;}
.y154{bottom:276.386667pt;}
.yd2{bottom:276.706667pt;}
.y6c{bottom:281.186667pt;}
.y114{bottom:282.306667pt;}
.y19{bottom:284.066667pt;}
.y144{bottom:284.706667pt;}
.ya2{bottom:286.626667pt;}
.y17e{bottom:287.106667pt;}
.y84{bottom:287.746667pt;}
.y18e{bottom:288.066667pt;}
.y121{bottom:293.026667pt;}
.y48{bottom:293.506667pt;}
.y153{bottom:293.666667pt;}
.y1ad{bottom:296.226667pt;}
.yd1{bottom:296.546667pt;}
.y6b{bottom:301.026667pt;}
.y143{bottom:304.546667pt;}
.ya1{bottom:306.306667pt;}
.y17d{bottom:306.786667pt;}
.y83{bottom:307.426667pt;}
.yc2{bottom:308.546667pt;}
.y152{bottom:310.786667pt;}
.y120{bottom:312.706667pt;}
.y47{bottom:313.186667pt;}
.y113{bottom:315.426667pt;}
.y1ac{bottom:315.906667pt;}
.yd0{bottom:316.226667pt;}
.y6a{bottom:320.706667pt;}
.y18{bottom:321.026667pt;}
.y18d{bottom:321.346667pt;}
.y142{bottom:324.386667pt;}
.ya0{bottom:326.146667pt;}
.y17c{bottom:326.626667pt;}
.y82{bottom:327.266667pt;}
.y151{bottom:328.066667pt;}
.yc1{bottom:328.386667pt;}
.y11f{bottom:332.546667pt;}
.y46{bottom:333.026667pt;}
.y1c9{bottom:333.986667pt;}
.y112{bottom:335.266667pt;}
.ycf{bottom:338.626667pt;}
.y69{bottom:340.546667pt;}
.y17{bottom:340.706667pt;}
.y150{bottom:345.186667pt;}
.y17b{bottom:346.466667pt;}
.y81{bottom:346.946667pt;}
.yc0{bottom:348.066667pt;}
.y1ab{bottom:349.346667pt;}
.y45{bottom:352.866667pt;}
.y1c8{bottom:353.666667pt;}
.y111{bottom:354.946667pt;}
.y141{bottom:357.346667pt;}
.y9f{bottom:359.266667pt;}
.y68{bottom:360.386667pt;}
.y16{bottom:360.546667pt;}
.y11e{bottom:365.666667pt;}
.y17a{bottom:366.146667pt;}
.y80{bottom:366.786667pt;}
.y14f{bottom:367.586667pt;}
.ybf{bottom:367.906667pt;}
.y1aa{bottom:368.706667pt;}
.y18c{bottom:373.186667pt;}
.y110{bottom:374.786667pt;}
.y140{bottom:377.186667pt;}
.y9e{bottom:378.946667pt;}
.y67{bottom:382.626667pt;}
.y11d{bottom:385.506667pt;}
.y44{bottom:385.826667pt;}
.y179{bottom:385.986667pt;}
.y7f{bottom:386.466667pt;}
.y1c7{bottom:386.786667pt;}
.ybe{bottom:387.586667pt;}
.yce{bottom:391.746667pt;}
.y18b{bottom:393.026667pt;}
.y10f{bottom:394.626667pt;}
.y15{bottom:396.226667pt;}
.y13f{bottom:397.026667pt;}
.y9d{bottom:398.786667pt;}
.y1a9{bottom:401.506667pt;}
.y11c{bottom:405.186667pt;}
.y43{bottom:405.666667pt;}
.y7e{bottom:406.306667pt;}
.y1c6{bottom:406.626667pt;}
.ybd{bottom:407.426667pt;}
.y178{bottom:408.226667pt;}
.y18a{bottom:412.866667pt;}
.y10e{bottom:414.306667pt;}
.y13e{bottom:416.706667pt;}
.y9c{bottom:418.466667pt;}
.y14e{bottom:420.546667pt;}
.ycd{bottom:421.506667pt;}
.yfa{bottom:422.410194pt;}
.y11b{bottom:425.026667pt;}
.y42{bottom:425.506667pt;}
.y7d{bottom:426.146667pt;}
.y1c5{bottom:426.306667pt;}
.ybc{bottom:429.826667pt;}
.y14{bottom:432.066667pt;}
.y10d{bottom:434.146667pt;}
.y13d{bottom:436.546667pt;}
.y66{bottom:438.306667pt;}
.y11a{bottom:444.706667pt;}
.y41{bottom:445.186667pt;}
.y7c{bottom:445.826667pt;}
.y14d{bottom:450.466667pt;}
.y10c{bottom:453.826667pt;}
.y13c{bottom:456.226667pt;}
.y65{bottom:458.146667pt;}
.y1c4{bottom:459.426667pt;}
.y177{bottom:463.906667pt;}
.y40{bottom:465.026667pt;}
.y7b{bottom:465.666667pt;}
.y1a8{bottom:466.946667pt;}
.y13{bottom:467.746667pt;}
.y10b{bottom:473.666667pt;}
.y13b{bottom:476.066667pt;}
.yf4{bottom:476.217070pt;}
.y64{bottom:477.826667pt;}
.y1c3{bottom:479.266667pt;}
.y176{bottom:483.746667pt;}
.y3f{bottom:484.706667pt;}
.y7a{bottom:485.346667pt;}
.y189{bottom:485.506667pt;}
.y1a7{bottom:486.306667pt;}
.y10a{bottom:495.906667pt;}
.y63{bottom:497.666667pt;}
.y1c2{bottom:498.973333pt;}
.y175{bottom:503.453333pt;}
.y12{bottom:503.613333pt;}
.y3e{bottom:504.573333pt;}
.y79{bottom:505.213333pt;}
.y13a{bottom:515.613333pt;}
.y62{bottom:517.373333pt;}
.y1a6{bottom:519.133333pt;}
.y11{bottom:520.253333pt;}
.y174{bottom:523.293333pt;}
.y3d{bottom:524.413333pt;}
.y78{bottom:524.893333pt;}
.ybb{bottom:525.053333pt;}
.y1c1{bottom:532.093333pt;}
.y139{bottom:535.453333pt;}
.y188{bottom:535.613333pt;}
.y61{bottom:537.213333pt;}
.y1a5{bottom:538.493333pt;}
.y173{bottom:543.133333pt;}
.y3c{bottom:544.093333pt;}
.yba{bottom:544.733333pt;}
.y109{bottom:551.613333pt;}
.y1c0{bottom:551.933333pt;}
.y138{bottom:555.133333pt;}
.y10{bottom:556.573333pt;}
.y60{bottom:557.053333pt;}
.y1a4{bottom:557.853333pt;}
.yed{bottom:560.505763pt;}
.y172{bottom:562.813333pt;}
.y3b{bottom:563.933333pt;}
.yb9{bottom:564.573333pt;}
.y9b{bottom:570.333333pt;}
.y108{bottom:571.453333pt;}
.y1bf{bottom:571.613333pt;}
.y5f{bottom:576.733333pt;}
.y137{bottom:577.533333pt;}
.y171{bottom:582.653333pt;}
.y3a{bottom:583.613333pt;}
.yb8{bottom:584.253333pt;}
.ye{bottom:589.693333pt;}
.y9a{bottom:590.173333pt;}
.y1a3{bottom:590.333333pt;}
.y107{bottom:591.133333pt;}
.yf{bottom:593.053333pt;}
.y5e{bottom:596.573333pt;}
.y170{bottom:602.333333pt;}
.y39{bottom:603.453333pt;}
.yb7{bottom:604.093333pt;}
.y1be{bottom:604.733333pt;}
.y99{bottom:609.853333pt;}
.y1a2{bottom:610.013333pt;}
.y106{bottom:610.973333pt;}
.y5d{bottom:616.253333pt;}
.yd{bottom:619.613333pt;}
.y16f{bottom:622.173333pt;}
.y38{bottom:623.133333pt;}
.y1bd{bottom:624.573333pt;}
.y98{bottom:629.693333pt;}
.y1a1{bottom:629.853333pt;}
.y105{bottom:630.813333pt;}
.y136{bottom:633.213333pt;}
.y5c{bottom:636.093333pt;}
.ye2{bottom:636.807368pt;}
.yb6{bottom:637.213333pt;}
.y16e{bottom:641.853333pt;}
.yc{bottom:642.493333pt;}
.y37{bottom:642.973333pt;}
.y1bc{bottom:644.253333pt;}
.y97{bottom:649.373333pt;}
.y104{bottom:650.493333pt;}
.y135{bottom:652.893333pt;}
.y5b{bottom:655.773333pt;}
.yb5{bottom:656.893333pt;}
.y16d{bottom:661.693333pt;}
.y36{bottom:662.813333pt;}
.y1a0{bottom:662.973333pt;}
.yb{bottom:667.133333pt;}
.y134{bottom:667.453333pt;}
.y96{bottom:669.213333pt;}
.y103{bottom:670.333333pt;}
.y5a{bottom:675.613333pt;}
.yb4{bottom:676.733333pt;}
.y1bb{bottom:677.373333pt;}
.y16c{bottom:681.533333pt;}
.y35{bottom:682.493333pt;}
.y19f{bottom:682.813333pt;}
.y95{bottom:688.893333pt;}
.y102{bottom:690.013333pt;}
.y59{bottom:695.453333pt;}
.yb3{bottom:696.573333pt;}
.y1ba{bottom:697.213333pt;}
.y34{bottom:702.333333pt;}
.ya{bottom:703.133333pt;}
.y16b{bottom:703.773333pt;}
.y94{bottom:708.733333pt;}
.y101{bottom:709.853333pt;}
.y132{bottom:710.653333pt;}
.y58{bottom:715.133333pt;}
.y19e{bottom:715.773333pt;}
.yb2{bottom:716.253333pt;}
.y1b9{bottom:717.053333pt;}
.y33{bottom:722.053333pt;}
.y100{bottom:729.733333pt;}
.y57{bottom:735.013333pt;}
.yb1{bottom:736.133333pt;}
.y9{bottom:739.013333pt;}
.y32{bottom:741.893333pt;}
.y19d{bottom:748.933333pt;}
.y187{bottom:749.413333pt;}
.y1b8{bottom:750.213333pt;}
.yff{bottom:751.973333pt;}
.y130{bottom:753.893333pt;}
.y56{bottom:754.693333pt;}
.y16a{bottom:756.933333pt;}
.y93{bottom:761.733333pt;}
.y31{bottom:764.293333pt;}
.y77{bottom:768.133333pt;}
.y19c{bottom:768.773333pt;}
.yb0{bottom:769.253333pt;}
.y1b7{bottom:769.893333pt;}
.y169{bottom:774.053333pt;}
.y55{bottom:774.533333pt;}
.y92{bottom:781.413333pt;}
.y8{bottom:783.493333pt;}
.yda{bottom:784.548219pt;}
.y30{bottom:787.813333pt;}
.yaf{bottom:788.933333pt;}
.y1b6{bottom:789.733333pt;}
.y168{bottom:791.333333pt;}
.y12e{bottom:796.933333pt;}
.y91{bottom:801.253333pt;}
.y19b{bottom:801.893333pt;}
.y7{bottom:804.933333pt;}
.y2f{bottom:807.653333pt;}
.y167{bottom:808.453333pt;}
.yae{bottom:808.773333pt;}
.y90{bottom:820.933333pt;}
.y19a{bottom:821.733333pt;}
.y1b5{bottom:823.013333pt;}
.y166{bottom:825.733333pt;}
.y54{bottom:827.333333pt;}
.yad{bottom:828.453333pt;}
.y2e{bottom:830.053333pt;}
.y6{bottom:830.213333pt;}
.y8f{bottom:840.773333pt;}
.y1b4{bottom:842.373333pt;}
.y165{bottom:842.853333pt;}
.y53{bottom:847.173333pt;}
.yac{bottom:848.293333pt;}
.y199{bottom:854.693333pt;}
.y164{bottom:860.133333pt;}
.y8e{bottom:860.453333pt;}
.y5{bottom:867.013333pt;}
.yab{bottom:870.533333pt;}
.ycc{bottom:873.413333pt;}
.y198{bottom:874.533333pt;}
.y1b3{bottom:875.173333pt;}
.y163{bottom:877.253333pt;}
.y8d{bottom:880.293333pt;}
.y2d{bottom:886.693333pt;}
.y4{bottom:892.613333pt;}
.y12c{bottom:893.093333pt;}
.y162{bottom:894.533333pt;}
.y8c{bottom:900.133333pt;}
.y2c{bottom:906.533333pt;}
.y197{bottom:907.973333pt;}
.y161{bottom:911.653333pt;}
.y8b{bottom:919.813333pt;}
.y2b{bottom:926.213333pt;}
.y196{bottom:927.333333pt;}
.y160{bottom:928.933333pt;}
.y3{bottom:932.133333pt;}
.y8a{bottom:942.213333pt;}
.y2a{bottom:946.080000pt;}
.y195{bottom:946.720000pt;}
.y26{bottom:964.320000pt;}
.y52{bottom:982.720000pt;}
.y51{bottom:996.800000pt;}
.y28{bottom:997.920000pt;}
.hf{height:24.480000pt;}
.h17{height:24.640000pt;}
.h9{height:29.261250pt;}
.h7{height:31.428750pt;}
.h13{height:33.652558pt;}
.h18{height:35.186667pt;}
.h1{height:36.305625pt;}
.hc{height:38.273438pt;}
.he{height:40.640625pt;}
.h1a{height:43.026667pt;}
.h19{height:43.186667pt;}
.h1c{height:43.200000pt;}
.h1b{height:43.220000pt;}
.ha{height:44.975625pt;}
.h11{height:47.301848pt;}
.h2{height:49.852500pt;}
.h16{height:53.005036pt;}
.h1d{height:57.787500pt;}
.h4{height:63.399375pt;}
.h10{height:71.465963pt;}
.h14{height:75.500117pt;}
.h8{height:76.671562pt;}
.h15{height:83.488275pt;}
.hb{height:86.400000pt;}
.hd{height:87.200000pt;}
.h5{height:90.493125pt;}
.h3{height:99.163125pt;}
.h12{height:146.939364pt;}
.h6{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w4{width:36.160000pt;}
.we{width:36.320000pt;}
.w6{width:67.437349pt;}
.w3{width:71.360000pt;}
.w7{width:75.482788pt;}
.w2{width:87.360000pt;}
.w9{width:114.710667pt;}
.wb{width:124.992000pt;}
.wc{width:125.746667pt;}
.wd{width:125.778667pt;}
.wa{width:126.418667pt;}
.w8{width:273.790826pt;}
.w5{width:618.242522pt;}
.w1{width:815.998333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.603742pt;}
.x27{left:4.811226pt;}
.x34{left:7.510667pt;}
.x22{left:8.841964pt;}
.x1b{left:10.533333pt;}
.x14{left:12.613333pt;}
.x26{left:14.455061pt;}
.x25{left:16.860674pt;}
.x20{left:18.469761pt;}
.x36{left:20.000000pt;}
.x23{left:21.671900pt;}
.x2d{left:23.350667pt;}
.x33{left:26.426667pt;}
.x2a{left:28.894084pt;}
.x16{left:35.680000pt;}
.x37{left:40.145333pt;}
.x30{left:45.440000pt;}
.x35{left:60.826667pt;}
.x1{left:96.032000pt;}
.x1f{left:98.801871pt;}
.x12{left:99.712000pt;}
.x8{left:100.832000pt;}
.x18{left:105.632000pt;}
.x7{left:118.592000pt;}
.x38{left:132.032000pt;}
.x3a{left:143.226667pt;}
.x19{left:146.426667pt;}
.x2{left:158.266667pt;}
.x28{left:183.105239pt;}
.x17{left:193.306667pt;}
.x5{left:203.706667pt;}
.x2e{left:213.960000pt;}
.xf{left:226.106667pt;}
.x1d{left:231.706667pt;}
.x10{left:234.746667pt;}
.x2c{left:256.506667pt;}
.x3{left:267.106667pt;}
.xe{left:271.746667pt;}
.x11{left:288.066667pt;}
.x6{left:302.786667pt;}
.xd{left:325.666667pt;}
.x2f{left:340.386667pt;}
.xa{left:364.546667pt;}
.x4{left:408.066667pt;}
.xb{left:447.291667pt;}
.xc{left:451.453333pt;}
.x31{left:465.386667pt;}
.x21{left:572.525860pt;}
.x32{left:591.146667pt;}
.x24{left:640.759734pt;}
.x39{left:671.520000pt;}
.x2b{left:673.280000pt;}
.x1a{left:674.880000pt;}
.x3b{left:676.480000pt;}
.x1c{left:678.080000pt;}
.x1e{left:718.053333pt;}
.x9{left:720.133333pt;}
.x13{left:728.640000pt;}
.x15{left:772.640000pt;}
}




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