
    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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_cab2580dacf52ef06559de43.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_79599ee64d9c05961fc2ac94.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_3e882f70c1d2a68c9e66a8b8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_e530f44d9f59d50aa525dc99.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_83ba9dcb25b12dc9945f36fa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_da00100aa1c5837154b8cc03.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3dc22082e33d7da2beb7519c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_5d505347948f40345217dd29.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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:ffb;src:url('chunks/assets/font_d2ae1257f99e315dd2ac8414.woff')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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:ffc;src:url('chunks/assets/font_ab26b7e91294dd22e3939d99.woff')format("woff");}.ffc{font-family:ffc;line-height:1.082031;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:ffd;src:url('chunks/assets/font_dae946bd20dc36c7e6871b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.082031;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:ffe;src:url('chunks/assets/font_8132c0eae73425e938c5dfb1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.v5{vertical-align:29.520000px;}
.lsa{letter-spacing:-0.870000px;}
.lsc{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.457800px;}
.ls1c{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.152400px;}
.ls20{letter-spacing:-0.112200px;}
.ls12{letter-spacing:-0.109200px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.109200px;}
.ls17{letter-spacing:0.115200px;}
.ls19{letter-spacing:0.118080px;}
.ls21{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.221760px;}
.ls13{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.264960px;}
.ls15{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.306600px;}
.ls1f{letter-spacing:0.315600px;}
.ls18{letter-spacing:0.341760px;}
.ls1e{letter-spacing:0.354240px;}
.ls4{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.374400px;}
.ls1d{letter-spacing:0.485280px;}
.ls22{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.738000px;}
.ls10{letter-spacing:9.378720px;}
.lse{letter-spacing:844.140000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws12{word-spacing:-71.712000px;}
.ws15{word-spacing:-66.240000px;}
.ws17{word-spacing:-65.952000px;}
.ws2{word-spacing:-24.678000px;}
.wsd{word-spacing:-24.300000px;}
.ws1{word-spacing:-23.921280px;}
.ws1e{word-spacing:-18.576000px;}
.ws1d{word-spacing:-18.144000px;}
.ws1c{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.ws1a{word-spacing:-16.712400px;}
.wse{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.450800px;}
.ws19{word-spacing:-16.447800px;}
.ws9{word-spacing:-16.407600px;}
.ws18{word-spacing:-16.272000px;}
.wsb{word-spacing:-16.254600px;}
.ws14{word-spacing:-16.145400px;}
.ws7{word-spacing:-16.102200px;}
.ws1b{word-spacing:-15.948000px;}
.ws11{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.690000px;}
.ws4{word-spacing:-10.800000px;}
.ws16{word-spacing:-10.755600px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws13{word-spacing:-0.038880px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-1.177920px;}
._0{width:1.618320px;}
._2{width:2.824800px;}
._5{width:107.976000px;}
._4{width:143.976000px;}
._3{width:199.416000px;}
.fc4{color:rgb(15,71,97);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.580000px;}
.y109{bottom:18.540000px;}
.y106{bottom:18.720000px;}
.y113{bottom:18.765000px;}
.y105{bottom:19.980000px;}
.y111{bottom:30.600000px;}
.y108{bottom:52.560000px;}
.y10f{bottom:52.740000px;}
.y10b{bottom:52.785000px;}
.y5{bottom:58.860000px;}
.y101{bottom:58.896000px;}
.y4{bottom:75.816000px;}
.yd5{bottom:107.856000px;}
.y7d{bottom:111.636000px;}
.y197{bottom:113.436000px;}
.y181{bottom:115.776000px;}
.y152{bottom:120.276000px;}
.y24{bottom:123.516000px;}
.y9f{bottom:125.496000px;}
.y16e{bottom:126.216000px;}
.y140{bottom:129.636000px;}
.ycb{bottom:131.256000px;}
.y1b3{bottom:131.616000px;}
.yee{bottom:139.896000px;}
.y4d{bottom:141.516000px;}
.yb9{bottom:142.236000px;}
.yad{bottom:142.416000px;}
.y196{bottom:144.396000px;}
.y75{bottom:145.476000px;}
.y7c{bottom:149.616000px;}
.y180{bottom:153.750000px;}
.y151{bottom:158.070000px;}
.y23{bottom:161.310000px;}
.y1b2{bottom:162.750000px;}
.y5c{bottom:163.110000px;}
.y9e{bottom:163.470000px;}
.y15f{bottom:164.190000px;}
.y13f{bottom:167.610000px;}
.yca{bottom:169.050000px;}
.y8c{bottom:175.530000px;}
.yed{bottom:177.690000px;}
.y4c{bottom:179.490000px;}
.y173{bottom:179.670000px;}
.yac{bottom:180.210000px;}
.y135{bottom:180.930000px;}
.yf6{bottom:183.090000px;}
.y74{bottom:183.450000px;}
.y7b{bottom:187.410000px;}
.y115{bottom:188.490000px;}
.y17f{bottom:191.730000px;}
.y1b1{bottom:193.710000px;}
.y150{bottom:196.050000px;}
.y22{bottom:199.290000px;}
.y5b{bottom:201.090000px;}
.y9d{bottom:201.450000px;}
.y15e{bottom:202.170000px;}
.y13e{bottom:205.590000px;}
.y195{bottom:206.490000px;}
.yc9{bottom:209.370000px;}
.y73{bottom:212.250000px;}
.y8b{bottom:213.510000px;}
.yec{bottom:215.670000px;}
.yf5{bottom:217.110000px;}
.y4b{bottom:217.470000px;}
.yab{bottom:218.190000px;}
.y134{bottom:218.910000px;}
.y114{bottom:224.490000px;}
.y1b0{bottom:224.850000px;}
.y7a{bottom:225.390000px;}
.y17e{bottom:229.530000px;}
.y14f{bottom:234.030000px;}
.y21{bottom:237.270000px;}
.y194{bottom:237.450000px;}
.y5a{bottom:238.890000px;}
.yf4{bottom:239.250000px;}
.y9c{bottom:239.430000px;}
.y15d{bottom:239.970000px;}
.y112{bottom:241.950000px;}
.y13d{bottom:243.570000px;}
.yc8{bottom:249.690000px;}
.y8a{bottom:251.310000px;}
.yeb{bottom:253.650000px;}
.y4a{bottom:255.270000px;}
.y172{bottom:255.450000px;}
.y1af{bottom:255.810000px;}
.yaa{bottom:256.170000px;}
.y133{bottom:256.890000px;}
.yb8{bottom:258.330000px;}
.y17d{bottom:260.670000px;}
.y72{bottom:263.370000px;}
.y193{bottom:268.590000px;}
.yf3{bottom:269.130000px;}
.y169{bottom:272.010000px;}
.y20{bottom:275.250000px;}
.y59{bottom:276.870000px;}
.y9b{bottom:277.230000px;}
.y15c{bottom:277.950000px;}
.y13c{bottom:281.370000px;}
.y14e{bottom:284.070000px;}
.y1ae{bottom:286.950000px;}
.y89{bottom:289.290000px;}
.yc7{bottom:290.010000px;}
.yea{bottom:291.630000px;}
.y49{bottom:293.250000px;}
.y171{bottom:293.430000px;}
.ya9{bottom:294.150000px;}
.y132{bottom:294.870000px;}
.yb7{bottom:296.310000px;}
.y192{bottom:299.550000px;}
.y71{bottom:301.350000px;}
.y58{bottom:308.010000px;}
.y168{bottom:309.990000px;}
.y110{bottom:310.215000px;}
.y1f{bottom:313.230000px;}
.y9a{bottom:315.210000px;}
.y15b{bottom:315.930000px;}
.y17c{bottom:316.650000px;}
.y1ad{bottom:317.955000px;}
.y13b{bottom:319.395000px;}
.y14d{bottom:321.915000px;}
.y88{bottom:327.315000px;}
.yc6{bottom:328.035000px;}
.ye9{bottom:329.655000px;}
.y191{bottom:330.735000px;}
.y48{bottom:331.275000px;}
.y170{bottom:331.455000px;}
.ya8{bottom:332.175000px;}
.y131{bottom:332.715000px;}
.yb6{bottom:334.335000px;}
.y1b4{bottom:338.295000px;}
.y70{bottom:339.375000px;}
.y167{bottom:347.835000px;}
.y17b{bottom:348.015000px;}
.y1ac{bottom:349.095000px;}
.y99{bottom:353.235000px;}
.y16d{bottom:353.955000px;}
.y13a{bottom:357.375000px;}
.y14c{bottom:359.895000px;}
.yf2{bottom:360.615000px;}
.y190{bottom:361.695000px;}
.y1e{bottom:363.135000px;}
.y87{bottom:365.295000px;}
.yc5{bottom:365.835000px;}
.y15a{bottom:368.175000px;}
.y47{bottom:369.255000px;}
.y16f{bottom:369.435000px;}
.ya7{bottom:370.155000px;}
.y130{bottom:370.695000px;}
.y35{bottom:371.775000px;}
.y6f{bottom:377.175000px;}
.y10e{bottom:378.255000px;}
.ye8{bottom:379.515000px;}
.y57{bottom:380.055000px;}
.yf1{bottom:382.755000px;}
.y166{bottom:385.815000px;}
.y98{bottom:391.215000px;}
.y16c{bottom:391.935000px;}
.y18f{bottom:392.835000px;}
.y14b{bottom:397.875000px;}
.ya6{bottom:398.955000px;}
.y1d{bottom:401.115000px;}
.y86{bottom:403.275000px;}
.yc4{bottom:403.815000px;}
.yf0{bottom:404.895000px;}
.y46{bottom:407.235000px;}
.y12f{bottom:408.675000px;}
.y1ab{bottom:411.195000px;}
.yb5{bottom:414.435000px;}
.y6e{bottom:415.155000px;}
.ye7{bottom:417.495000px;}
.y56{bottom:417.855000px;}
.y159{bottom:419.295000px;}
.y17a{bottom:419.835000px;}
.y34{bottom:423.255000px;}
.y165{bottom:423.795000px;}
.y97{bottom:429.195000px;}
.y16b{bottom:429.735000px;}
.y14a{bottom:435.855000px;}
.ya5{bottom:437.295000px;}
.y1c{bottom:439.095000px;}
.y85{bottom:441.075000px;}
.yc3{bottom:441.795000px;}
.y1aa{bottom:442.155000px;}
.y45{bottom:445.215000px;}
.y10d{bottom:446.505000px;}
.y12e{bottom:446.655000px;}
.yef{bottom:451.335000px;}
.yb4{bottom:452.235000px;}
.y6d{bottom:453.135000px;}
.y18e{bottom:454.935000px;}
.ye6{bottom:455.475000px;}
.y55{bottom:455.835000px;}
.y158{bottom:457.275000px;}
.y179{bottom:457.815000px;}
.y33{bottom:461.235000px;}
.y164{bottom:461.775000px;}
.y11e{bottom:465.195000px;}
.y96{bottom:467.175000px;}
.y1a9{bottom:473.295000px;}
.y149{bottom:473.835000px;}
.y1b{bottom:477.075000px;}
.y84{bottom:479.055000px;}
.yc2{bottom:479.775000px;}
.y16a{bottom:481.935000px;}
.y44{bottom:483.015000px;}
.y139{bottom:483.195000px;}
.y12d{bottom:484.635000px;}
.yb3{bottom:490.215000px;}
.y6c{bottom:491.115000px;}
.ye5{bottom:493.455000px;}
.y54{bottom:493.815000px;}
.y157{bottom:495.255000px;}
.y178{bottom:495.615000px;}
.y163{bottom:499.755000px;}
.y11d{bottom:503.175000px;}
.y1a8{bottom:504.255000px;}
.y95{bottom:504.975000px;}
.yc1{bottom:508.575000px;}
.ya4{bottom:509.115000px;}
.y18d{bottom:510.555000px;}
.y32{bottom:511.095000px;}
.y148{bottom:511.635000px;}
.y10c{bottom:514.545000px;}
.y1a{bottom:514.875000px;}
.y83{bottom:517.035000px;}
.y43{bottom:520.995000px;}
.y138{bottom:521.175000px;}
.y12c{bottom:522.435000px;}
.yb2{bottom:528.195000px;}
.y6b{bottom:529.095000px;}
.ye4{bottom:531.255000px;}
.y156{bottom:533.235000px;}
.y1a7{bottom:535.395000px;}
.y162{bottom:537.735000px;}
.y11c{bottom:540.975000px;}
.y94{bottom:542.955000px;}
.y53{bottom:543.315000px;}
.yc0{bottom:543.855000px;}
.ya3{bottom:547.095000px;}
.y177{bottom:547.815000px;}
.yfe{bottom:549.075000px;}
.y147{bottom:549.615000px;}
.y82{bottom:555.015000px;}
.y42{bottom:558.975000px;}
.y137{bottom:559.155000px;}
.y12b{bottom:560.415000px;}
.y31{bottom:561.135000px;}
.y19{bottom:564.915000px;}
.yb1{bottom:566.175000px;}
.y1a6{bottom:566.355000px;}
.y6a{bottom:567.075000px;}
.ye3{bottom:569.265000px;}
.y155{bottom:571.065000px;}
.y161{bottom:575.565000px;}
.ybf{bottom:577.905000px;}
.y11b{bottom:578.985000px;}
.y93{bottom:580.965000px;}
.y18c{bottom:582.405000px;}
.y10a{bottom:582.585000px;}
.ya2{bottom:585.105000px;}
.y146{bottom:587.625000px;}
.y81{bottom:592.845000px;}
.y136{bottom:597.165000px;}
.y1a5{bottom:597.525000px;}
.y12a{bottom:598.425000px;}
.ybe{bottom:600.045000px;}
.y18{bottom:602.925000px;}
.yb0{bottom:604.185000px;}
.y69{bottom:604.905000px;}
.ye2{bottom:607.245000px;}
.y41{bottom:608.865000px;}
.y154{bottom:609.045000px;}
.y30{bottom:611.025000px;}
.y11a{bottom:616.965000px;}
.y92{bottom:618.945000px;}
.y176{bottom:619.845000px;}
.y18b{bottom:620.385000px;}
.y160{bottom:621.825000px;}
.ybd{bottom:622.005000px;}
.ya1{bottom:623.085000px;}
.y145{bottom:625.605000px;}
.y1a4{bottom:628.485000px;}
.y80{bottom:633.705000px;}
.y52{bottom:634.965000px;}
.y129{bottom:636.405000px;}
.y17{bottom:640.905000px;}
.yaf{bottom:642.165000px;}
.y68{bottom:642.885000px;}
.ybc{bottom:644.145000px;}
.ye1{bottom:645.225000px;}
.y40{bottom:646.845000px;}
.y153{bottom:647.025000px;}
.y91{bottom:647.745000px;}
.y107{bottom:651.570000px;}
.y119{bottom:654.945000px;}
.y175{bottom:657.645000px;}
.y18a{bottom:658.185000px;}
.y1a3{bottom:659.625000px;}
.y2f{bottom:661.065000px;}
.y144{bottom:663.585000px;}
.y51{bottom:672.945000px;}
.ybb{bottom:674.745000px;}
.yd4{bottom:675.645000px;}
.y16{bottom:678.705000px;}
.y67{bottom:680.865000px;}
.ye0{bottom:683.205000px;}
.y3f{bottom:684.825000px;}
.y7f{bottom:685.005000px;}
.y128{bottom:686.265000px;}
.y174{bottom:688.785000px;}
.y1a2{bottom:690.585000px;}
.y118{bottom:692.925000px;}
.yae{bottom:694.185000px;}
.y189{bottom:696.165000px;}
.y2e{bottom:698.865000px;}
.y143{bottom:701.385000px;}
.y90{bottom:704.985000px;}
.y15{bottom:708.585000px;}
.y50{bottom:710.925000px;}
.yd3{bottom:713.625000px;}
.y66{bottom:718.845000px;}
.y104{bottom:719.610000px;}
.ydf{bottom:721.005000px;}
.y1a1{bottom:721.725000px;}
.y3e{bottom:722.805000px;}
.y7e{bottom:722.985000px;}
.y127{bottom:724.245000px;}
.y117{bottom:730.725000px;}
.y188{bottom:734.145000px;}
.y2d{bottom:736.845000px;}
.y142{bottom:739.365000px;}
.y8f{bottom:742.785000px;}
.y79{bottom:747.645000px;}
.y4f{bottom:748.905000px;}
.yd2{bottom:751.605000px;}
.y1a0{bottom:752.685000px;}
.y65{bottom:756.825000px;}
.yde{bottom:758.985000px;}
.y3d{bottom:760.785000px;}
.y14{bottom:761.865000px;}
.y126{bottom:762.225000px;}
.y116{bottom:768.705000px;}
.y103{bottom:769.110000px;}
.y8e{bottom:780.765000px;}
.y19f{bottom:783.825000px;}
.y141{bottom:785.625000px;}
.y2c{bottom:786.885000px;}
.y187{bottom:788.505000px;}
.yd1{bottom:791.745000px;}
.y102{bottom:793.230000px;}
.yfd{bottom:794.625000px;}
.y13{bottom:795.885000px;}
.ydd{bottom:796.965000px;}
.y3c{bottom:798.765000px;}
.y125{bottom:800.205000px;}
.y64{bottom:806.685000px;}
.y19e{bottom:814.785000px;}
.y8d{bottom:818.745000px;}
.y100{bottom:824.550000px;}
.y2b{bottom:824.730000px;}
.y12{bottom:829.770000px;}
.yd0{bottom:832.110000px;}
.yfc{bottom:832.650000px;}
.ydc{bottom:834.990000px;}
.y3b{bottom:836.610000px;}
.y78{bottom:836.790000px;}
.yff{bottom:841.500000px;}
.y63{bottom:844.710000px;}
.y19d{bottom:845.970000px;}
.y124{bottom:846.330000px;}
.y11{bottom:847.050000px;}
.y186{bottom:860.370000px;}
.y2a{bottom:862.710000px;}
.y10{bottom:864.150000px;}
.yf{bottom:869.370000px;}
.ycf{bottom:870.090000px;}
.yfb{bottom:870.630000px;}
.ydb{bottom:872.970000px;}
.y3a{bottom:874.590000px;}
.y77{bottom:874.770000px;}
.y19c{bottom:876.930000px;}
.ye{bottom:881.430000px;}
.y62{bottom:882.690000px;}
.y123{bottom:897.630000px;}
.y185{bottom:898.350000px;}
.yd{bottom:898.710000px;}
.y29{bottom:900.690000px;}
.yc{bottom:903.930000px;}
.yce{bottom:908.070000px;}
.yfa{bottom:908.610000px;}
.yda{bottom:910.950000px;}
.y39{bottom:912.570000px;}
.y76{bottom:912.750000px;}
.y61{bottom:920.670000px;}
.yb{bottom:931.290000px;}
.y122{bottom:935.430000px;}
.y184{bottom:936.150000px;}
.y4e{bottom:938.670000px;}
.y19b{bottom:939.030000px;}
.ycd{bottom:946.050000px;}
.yf9{bottom:946.590000px;}
.ya{bottom:950.370000px;}
.y38{bottom:950.550000px;}
.y28{bottom:950.730000px;}
.y60{bottom:958.470000px;}
.yd9{bottom:962.970000px;}
.y183{bottom:967.290000px;}
.y19a{bottom:970.170000px;}
.y121{bottom:973.410000px;}
.ya0{bottom:976.650000px;}
.y9{bottom:984.390000px;}
.yf8{bottom:984.570000px;}
.ycc{bottom:986.190000px;}
.y27{bottom:988.530000px;}
.y5f{bottom:996.450000px;}
.yd8{bottom:998.250000px;}
.y199{bottom:1001.130000px;}
.y8{bottom:1002.390000px;}
.y120{bottom:1011.390000px;}
.yd7{bottom:1020.390000px;}
.yf7{bottom:1022.370000px;}
.yba{bottom:1024.170000px;}
.y37{bottom:1026.330000px;}
.y26{bottom:1026.510000px;}
.y7{bottom:1030.110000px;}
.y198{bottom:1032.270000px;}
.y5e{bottom:1034.430000px;}
.y182{bottom:1036.950000px;}
.yd6{bottom:1042.350000px;}
.y11f{bottom:1042.530000px;}
.y36{bottom:1057.470000px;}
.y6{bottom:1057.650000px;}
.y5d{bottom:1063.230000px;}
.y25{bottom:1064.490000px;}
.y3{bottom:1094.580000px;}
.y1{bottom:1111.500000px;}
.h1{height:22.500000px;}
.h6{height:28.115859px;}
.h18{height:35.460000px;}
.hd{height:41.809570px;}
.h7{height:43.215117px;}
.hb{height:46.736719px;}
.h4{height:46.801758px;}
.h8{height:47.901094px;}
.ha{height:50.800781px;}
.h16{height:52.066406px;}
.h5{height:53.958516px;}
.he{height:54.078516px;}
.hf{height:54.596250px;}
.h13{height:57.362344px;}
.h19{height:57.410156px;}
.h14{height:57.482344px;}
.h12{height:59.343750px;}
.h9{height:59.436914px;}
.h10{height:61.779375px;}
.h2{height:62.402344px;}
.h3{height:67.565039px;}
.h1a{height:68.040000px;}
.h1b{height:68.256000px;}
.h17{height:69.248320px;}
.hc{height:69.715898px;}
.h11{height:80.937773px;}
.h15{height:918.000000px;}
.h0{height:1188.000000px;}
.w11{width:58.140000px;}
.w12{width:61.380000px;}
.w9{width:62.820000px;}
.wa{width:66.636000px;}
.wf{width:68.580000px;}
.w8{width:79.200000px;}
.w7{width:80.136000px;}
.w14{width:100.296000px;}
.w13{width:127.476000px;}
.w10{width:134.136000px;}
.we{width:145.980000px;}
.wb{width:214.560000px;}
.w1{width:234.030000px;}
.wc{width:253.650000px;}
.wd{width:284.835000px;}
.w3{width:917.999973px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.w6{width:1187.999965px;}
.w5{width:1187.999982px;}
.w4{width:1188.000000px;}
.x0{left:0.000000px;}
.x15{left:52.379973px;}
.x10{left:61.919973px;}
.x8{left:71.459973px;}
.x9{left:80.999986px;}
.x1{left:108.036000px;}
.x7{left:112.175986px;}
.x3{left:117.000000px;}
.xe{left:120.275986px;}
.xc{left:125.315986px;}
.xd{left:136.115986px;}
.x12{left:150.509986px;}
.x13{left:162.029986px;}
.x17{left:188.130000px;}
.x16{left:215.325000px;}
.x6{left:225.045000px;}
.x5{left:234.585000px;}
.x18{left:267.330000px;}
.xf{left:269.129986px;}
.x11{left:273.989986px;}
.xa{left:276.329986px;}
.x19{left:330.150000px;}
.x2{left:342.075000px;}
.x1a{left:396.795000px;}
.x22{left:448.994986px;}
.xb{left:459.074986px;}
.x1d{left:542.775000px;}
.x4{left:576.105000px;}
.x1b{left:611.355000px;}
.x1e{left:745.485000px;}
.x1f{left:803.625000px;}
.x14{left:810.149986px;}
.x1c{left:865.005000px;}
.x20{left:992.490000px;}
.x21{left:1050.630000px;}
@media print{
.v6{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.v5{vertical-align:26.240000pt;}
.lsa{letter-spacing:-0.773333pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls1c{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls20{letter-spacing:-0.099733pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls17{letter-spacing:0.102400pt;}
.ls19{letter-spacing:0.104960pt;}
.ls21{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.197120pt;}
.ls13{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.235520pt;}
.ls15{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.272533pt;}
.ls1f{letter-spacing:0.280533pt;}
.ls18{letter-spacing:0.303787pt;}
.ls1e{letter-spacing:0.314880pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.332800pt;}
.ls1d{letter-spacing:0.431360pt;}
.ls22{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.656000pt;}
.ls10{letter-spacing:8.336640pt;}
.lse{letter-spacing:750.346667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws12{word-spacing:-63.744000pt;}
.ws15{word-spacing:-58.880000pt;}
.ws17{word-spacing:-58.624000pt;}
.ws2{word-spacing:-21.936000pt;}
.wsd{word-spacing:-21.600000pt;}
.ws1{word-spacing:-21.263360pt;}
.ws1e{word-spacing:-16.512000pt;}
.ws1d{word-spacing:-16.128000pt;}
.ws1c{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.ws1a{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.622933pt;}
.ws19{word-spacing:-14.620267pt;}
.ws9{word-spacing:-14.584533pt;}
.ws18{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws14{word-spacing:-14.351467pt;}
.ws7{word-spacing:-14.313067pt;}
.ws1b{word-spacing:-14.176000pt;}
.ws11{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.946667pt;}
.ws4{word-spacing:-9.600000pt;}
.ws16{word-spacing:-9.560533pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws13{word-spacing:-0.034560pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-1.047040pt;}
._0{width:1.438507pt;}
._2{width:2.510933pt;}
._5{width:95.978667pt;}
._4{width:127.978667pt;}
._3{width:177.258667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.960000pt;}
.y109{bottom:16.480000pt;}
.y106{bottom:16.640000pt;}
.y113{bottom:16.680000pt;}
.y105{bottom:17.760000pt;}
.y111{bottom:27.200000pt;}
.y108{bottom:46.720000pt;}
.y10f{bottom:46.880000pt;}
.y10b{bottom:46.920000pt;}
.y5{bottom:52.320000pt;}
.y101{bottom:52.352000pt;}
.y4{bottom:67.392000pt;}
.yd5{bottom:95.872000pt;}
.y7d{bottom:99.232000pt;}
.y197{bottom:100.832000pt;}
.y181{bottom:102.912000pt;}
.y152{bottom:106.912000pt;}
.y24{bottom:109.792000pt;}
.y9f{bottom:111.552000pt;}
.y16e{bottom:112.192000pt;}
.y140{bottom:115.232000pt;}
.ycb{bottom:116.672000pt;}
.y1b3{bottom:116.992000pt;}
.yee{bottom:124.352000pt;}
.y4d{bottom:125.792000pt;}
.yb9{bottom:126.432000pt;}
.yad{bottom:126.592000pt;}
.y196{bottom:128.352000pt;}
.y75{bottom:129.312000pt;}
.y7c{bottom:132.992000pt;}
.y180{bottom:136.666667pt;}
.y151{bottom:140.506667pt;}
.y23{bottom:143.386667pt;}
.y1b2{bottom:144.666667pt;}
.y5c{bottom:144.986667pt;}
.y9e{bottom:145.306667pt;}
.y15f{bottom:145.946667pt;}
.y13f{bottom:148.986667pt;}
.yca{bottom:150.266667pt;}
.y8c{bottom:156.026667pt;}
.yed{bottom:157.946667pt;}
.y4c{bottom:159.546667pt;}
.y173{bottom:159.706667pt;}
.yac{bottom:160.186667pt;}
.y135{bottom:160.826667pt;}
.yf6{bottom:162.746667pt;}
.y74{bottom:163.066667pt;}
.y7b{bottom:166.586667pt;}
.y115{bottom:167.546667pt;}
.y17f{bottom:170.426667pt;}
.y1b1{bottom:172.186667pt;}
.y150{bottom:174.266667pt;}
.y22{bottom:177.146667pt;}
.y5b{bottom:178.746667pt;}
.y9d{bottom:179.066667pt;}
.y15e{bottom:179.706667pt;}
.y13e{bottom:182.746667pt;}
.y195{bottom:183.546667pt;}
.yc9{bottom:186.106667pt;}
.y73{bottom:188.666667pt;}
.y8b{bottom:189.786667pt;}
.yec{bottom:191.706667pt;}
.yf5{bottom:192.986667pt;}
.y4b{bottom:193.306667pt;}
.yab{bottom:193.946667pt;}
.y134{bottom:194.586667pt;}
.y114{bottom:199.546667pt;}
.y1b0{bottom:199.866667pt;}
.y7a{bottom:200.346667pt;}
.y17e{bottom:204.026667pt;}
.y14f{bottom:208.026667pt;}
.y21{bottom:210.906667pt;}
.y194{bottom:211.066667pt;}
.y5a{bottom:212.346667pt;}
.yf4{bottom:212.666667pt;}
.y9c{bottom:212.826667pt;}
.y15d{bottom:213.306667pt;}
.y112{bottom:215.066667pt;}
.y13d{bottom:216.506667pt;}
.yc8{bottom:221.946667pt;}
.y8a{bottom:223.386667pt;}
.yeb{bottom:225.466667pt;}
.y4a{bottom:226.906667pt;}
.y172{bottom:227.066667pt;}
.y1af{bottom:227.386667pt;}
.yaa{bottom:227.706667pt;}
.y133{bottom:228.346667pt;}
.yb8{bottom:229.626667pt;}
.y17d{bottom:231.706667pt;}
.y72{bottom:234.106667pt;}
.y193{bottom:238.746667pt;}
.yf3{bottom:239.226667pt;}
.y169{bottom:241.786667pt;}
.y20{bottom:244.666667pt;}
.y59{bottom:246.106667pt;}
.y9b{bottom:246.426667pt;}
.y15c{bottom:247.066667pt;}
.y13c{bottom:250.106667pt;}
.y14e{bottom:252.506667pt;}
.y1ae{bottom:255.066667pt;}
.y89{bottom:257.146667pt;}
.yc7{bottom:257.786667pt;}
.yea{bottom:259.226667pt;}
.y49{bottom:260.666667pt;}
.y171{bottom:260.826667pt;}
.ya9{bottom:261.466667pt;}
.y132{bottom:262.106667pt;}
.yb7{bottom:263.386667pt;}
.y192{bottom:266.266667pt;}
.y71{bottom:267.866667pt;}
.y58{bottom:273.786667pt;}
.y168{bottom:275.546667pt;}
.y110{bottom:275.746667pt;}
.y1f{bottom:278.426667pt;}
.y9a{bottom:280.186667pt;}
.y15b{bottom:280.826667pt;}
.y17c{bottom:281.466667pt;}
.y1ad{bottom:282.626667pt;}
.y13b{bottom:283.906667pt;}
.y14d{bottom:286.146667pt;}
.y88{bottom:290.946667pt;}
.yc6{bottom:291.586667pt;}
.ye9{bottom:293.026667pt;}
.y191{bottom:293.986667pt;}
.y48{bottom:294.466667pt;}
.y170{bottom:294.626667pt;}
.ya8{bottom:295.266667pt;}
.y131{bottom:295.746667pt;}
.yb6{bottom:297.186667pt;}
.y1b4{bottom:300.706667pt;}
.y70{bottom:301.666667pt;}
.y167{bottom:309.186667pt;}
.y17b{bottom:309.346667pt;}
.y1ac{bottom:310.306667pt;}
.y99{bottom:313.986667pt;}
.y16d{bottom:314.626667pt;}
.y13a{bottom:317.666667pt;}
.y14c{bottom:319.906667pt;}
.yf2{bottom:320.546667pt;}
.y190{bottom:321.506667pt;}
.y1e{bottom:322.786667pt;}
.y87{bottom:324.706667pt;}
.yc5{bottom:325.186667pt;}
.y15a{bottom:327.266667pt;}
.y47{bottom:328.226667pt;}
.y16f{bottom:328.386667pt;}
.ya7{bottom:329.026667pt;}
.y130{bottom:329.506667pt;}
.y35{bottom:330.466667pt;}
.y6f{bottom:335.266667pt;}
.y10e{bottom:336.226667pt;}
.ye8{bottom:337.346667pt;}
.y57{bottom:337.826667pt;}
.yf1{bottom:340.226667pt;}
.y166{bottom:342.946667pt;}
.y98{bottom:347.746667pt;}
.y16c{bottom:348.386667pt;}
.y18f{bottom:349.186667pt;}
.y14b{bottom:353.666667pt;}
.ya6{bottom:354.626667pt;}
.y1d{bottom:356.546667pt;}
.y86{bottom:358.466667pt;}
.yc4{bottom:358.946667pt;}
.yf0{bottom:359.906667pt;}
.y46{bottom:361.986667pt;}
.y12f{bottom:363.266667pt;}
.y1ab{bottom:365.506667pt;}
.yb5{bottom:368.386667pt;}
.y6e{bottom:369.026667pt;}
.ye7{bottom:371.106667pt;}
.y56{bottom:371.426667pt;}
.y159{bottom:372.706667pt;}
.y17a{bottom:373.186667pt;}
.y34{bottom:376.226667pt;}
.y165{bottom:376.706667pt;}
.y97{bottom:381.506667pt;}
.y16b{bottom:381.986667pt;}
.y14a{bottom:387.426667pt;}
.ya5{bottom:388.706667pt;}
.y1c{bottom:390.306667pt;}
.y85{bottom:392.066667pt;}
.yc3{bottom:392.706667pt;}
.y1aa{bottom:393.026667pt;}
.y45{bottom:395.746667pt;}
.y10d{bottom:396.893333pt;}
.y12e{bottom:397.026667pt;}
.yef{bottom:401.186667pt;}
.yb4{bottom:401.986667pt;}
.y6d{bottom:402.786667pt;}
.y18e{bottom:404.386667pt;}
.ye6{bottom:404.866667pt;}
.y55{bottom:405.186667pt;}
.y158{bottom:406.466667pt;}
.y179{bottom:406.946667pt;}
.y33{bottom:409.986667pt;}
.y164{bottom:410.466667pt;}
.y11e{bottom:413.506667pt;}
.y96{bottom:415.266667pt;}
.y1a9{bottom:420.706667pt;}
.y149{bottom:421.186667pt;}
.y1b{bottom:424.066667pt;}
.y84{bottom:425.826667pt;}
.yc2{bottom:426.466667pt;}
.y16a{bottom:428.386667pt;}
.y44{bottom:429.346667pt;}
.y139{bottom:429.506667pt;}
.y12d{bottom:430.786667pt;}
.yb3{bottom:435.746667pt;}
.y6c{bottom:436.546667pt;}
.ye5{bottom:438.626667pt;}
.y54{bottom:438.946667pt;}
.y157{bottom:440.226667pt;}
.y178{bottom:440.546667pt;}
.y163{bottom:444.226667pt;}
.y11d{bottom:447.266667pt;}
.y1a8{bottom:448.226667pt;}
.y95{bottom:448.866667pt;}
.yc1{bottom:452.066667pt;}
.ya4{bottom:452.546667pt;}
.y18d{bottom:453.826667pt;}
.y32{bottom:454.306667pt;}
.y148{bottom:454.786667pt;}
.y10c{bottom:457.373333pt;}
.y1a{bottom:457.666667pt;}
.y83{bottom:459.586667pt;}
.y43{bottom:463.106667pt;}
.y138{bottom:463.266667pt;}
.y12c{bottom:464.386667pt;}
.yb2{bottom:469.506667pt;}
.y6b{bottom:470.306667pt;}
.ye4{bottom:472.226667pt;}
.y156{bottom:473.986667pt;}
.y1a7{bottom:475.906667pt;}
.y162{bottom:477.986667pt;}
.y11c{bottom:480.866667pt;}
.y94{bottom:482.626667pt;}
.y53{bottom:482.946667pt;}
.yc0{bottom:483.426667pt;}
.ya3{bottom:486.306667pt;}
.y177{bottom:486.946667pt;}
.yfe{bottom:488.066667pt;}
.y147{bottom:488.546667pt;}
.y82{bottom:493.346667pt;}
.y42{bottom:496.866667pt;}
.y137{bottom:497.026667pt;}
.y12b{bottom:498.146667pt;}
.y31{bottom:498.786667pt;}
.y19{bottom:502.146667pt;}
.yb1{bottom:503.266667pt;}
.y1a6{bottom:503.426667pt;}
.y6a{bottom:504.066667pt;}
.ye3{bottom:506.013333pt;}
.y155{bottom:507.613333pt;}
.y161{bottom:511.613333pt;}
.ybf{bottom:513.693333pt;}
.y11b{bottom:514.653333pt;}
.y93{bottom:516.413333pt;}
.y18c{bottom:517.693333pt;}
.y10a{bottom:517.853333pt;}
.ya2{bottom:520.093333pt;}
.y146{bottom:522.333333pt;}
.y81{bottom:526.973333pt;}
.y136{bottom:530.813333pt;}
.y1a5{bottom:531.133333pt;}
.y12a{bottom:531.933333pt;}
.ybe{bottom:533.373333pt;}
.y18{bottom:535.933333pt;}
.yb0{bottom:537.053333pt;}
.y69{bottom:537.693333pt;}
.ye2{bottom:539.773333pt;}
.y41{bottom:541.213333pt;}
.y154{bottom:541.373333pt;}
.y30{bottom:543.133333pt;}
.y11a{bottom:548.413333pt;}
.y92{bottom:550.173333pt;}
.y176{bottom:550.973333pt;}
.y18b{bottom:551.453333pt;}
.y160{bottom:552.733333pt;}
.ybd{bottom:552.893333pt;}
.ya1{bottom:553.853333pt;}
.y145{bottom:556.093333pt;}
.y1a4{bottom:558.653333pt;}
.y80{bottom:563.293333pt;}
.y52{bottom:564.413333pt;}
.y129{bottom:565.693333pt;}
.y17{bottom:569.693333pt;}
.yaf{bottom:570.813333pt;}
.y68{bottom:571.453333pt;}
.ybc{bottom:572.573333pt;}
.ye1{bottom:573.533333pt;}
.y40{bottom:574.973333pt;}
.y153{bottom:575.133333pt;}
.y91{bottom:575.773333pt;}
.y107{bottom:579.173333pt;}
.y119{bottom:582.173333pt;}
.y175{bottom:584.573333pt;}
.y18a{bottom:585.053333pt;}
.y1a3{bottom:586.333333pt;}
.y2f{bottom:587.613333pt;}
.y144{bottom:589.853333pt;}
.y51{bottom:598.173333pt;}
.ybb{bottom:599.773333pt;}
.yd4{bottom:600.573333pt;}
.y16{bottom:603.293333pt;}
.y67{bottom:605.213333pt;}
.ye0{bottom:607.293333pt;}
.y3f{bottom:608.733333pt;}
.y7f{bottom:608.893333pt;}
.y128{bottom:610.013333pt;}
.y174{bottom:612.253333pt;}
.y1a2{bottom:613.853333pt;}
.y118{bottom:615.933333pt;}
.yae{bottom:617.053333pt;}
.y189{bottom:618.813333pt;}
.y2e{bottom:621.213333pt;}
.y143{bottom:623.453333pt;}
.y90{bottom:626.653333pt;}
.y15{bottom:629.853333pt;}
.y50{bottom:631.933333pt;}
.yd3{bottom:634.333333pt;}
.y66{bottom:638.973333pt;}
.y104{bottom:639.653333pt;}
.ydf{bottom:640.893333pt;}
.y1a1{bottom:641.533333pt;}
.y3e{bottom:642.493333pt;}
.y7e{bottom:642.653333pt;}
.y127{bottom:643.773333pt;}
.y117{bottom:649.533333pt;}
.y188{bottom:652.573333pt;}
.y2d{bottom:654.973333pt;}
.y142{bottom:657.213333pt;}
.y8f{bottom:660.253333pt;}
.y79{bottom:664.573333pt;}
.y4f{bottom:665.693333pt;}
.yd2{bottom:668.093333pt;}
.y1a0{bottom:669.053333pt;}
.y65{bottom:672.733333pt;}
.yde{bottom:674.653333pt;}
.y3d{bottom:676.253333pt;}
.y14{bottom:677.213333pt;}
.y126{bottom:677.533333pt;}
.y116{bottom:683.293333pt;}
.y103{bottom:683.653333pt;}
.y8e{bottom:694.013333pt;}
.y19f{bottom:696.733333pt;}
.y141{bottom:698.333333pt;}
.y2c{bottom:699.453333pt;}
.y187{bottom:700.893333pt;}
.yd1{bottom:703.773333pt;}
.y102{bottom:705.093333pt;}
.yfd{bottom:706.333333pt;}
.y13{bottom:707.453333pt;}
.ydd{bottom:708.413333pt;}
.y3c{bottom:710.013333pt;}
.y125{bottom:711.293333pt;}
.y64{bottom:717.053333pt;}
.y19e{bottom:724.253333pt;}
.y8d{bottom:727.773333pt;}
.y100{bottom:732.933333pt;}
.y2b{bottom:733.093333pt;}
.y12{bottom:737.573333pt;}
.yd0{bottom:739.653333pt;}
.yfc{bottom:740.133333pt;}
.ydc{bottom:742.213333pt;}
.y3b{bottom:743.653333pt;}
.y78{bottom:743.813333pt;}
.yff{bottom:748.000000pt;}
.y63{bottom:750.853333pt;}
.y19d{bottom:751.973333pt;}
.y124{bottom:752.293333pt;}
.y11{bottom:752.933333pt;}
.y186{bottom:764.773333pt;}
.y2a{bottom:766.853333pt;}
.y10{bottom:768.133333pt;}
.yf{bottom:772.773333pt;}
.ycf{bottom:773.413333pt;}
.yfb{bottom:773.893333pt;}
.ydb{bottom:775.973333pt;}
.y3a{bottom:777.413333pt;}
.y77{bottom:777.573333pt;}
.y19c{bottom:779.493333pt;}
.ye{bottom:783.493333pt;}
.y62{bottom:784.613333pt;}
.y123{bottom:797.893333pt;}
.y185{bottom:798.533333pt;}
.yd{bottom:798.853333pt;}
.y29{bottom:800.613333pt;}
.yc{bottom:803.493333pt;}
.yce{bottom:807.173333pt;}
.yfa{bottom:807.653333pt;}
.yda{bottom:809.733333pt;}
.y39{bottom:811.173333pt;}
.y76{bottom:811.333333pt;}
.y61{bottom:818.373333pt;}
.yb{bottom:827.813333pt;}
.y122{bottom:831.493333pt;}
.y184{bottom:832.133333pt;}
.y4e{bottom:834.373333pt;}
.y19b{bottom:834.693333pt;}
.ycd{bottom:840.933333pt;}
.yf9{bottom:841.413333pt;}
.ya{bottom:844.773333pt;}
.y38{bottom:844.933333pt;}
.y28{bottom:845.093333pt;}
.y60{bottom:851.973333pt;}
.yd9{bottom:855.973333pt;}
.y183{bottom:859.813333pt;}
.y19a{bottom:862.373333pt;}
.y121{bottom:865.253333pt;}
.ya0{bottom:868.133333pt;}
.y9{bottom:875.013333pt;}
.yf8{bottom:875.173333pt;}
.ycc{bottom:876.613333pt;}
.y27{bottom:878.693333pt;}
.y5f{bottom:885.733333pt;}
.yd8{bottom:887.333333pt;}
.y199{bottom:889.893333pt;}
.y8{bottom:891.013333pt;}
.y120{bottom:899.013333pt;}
.yd7{bottom:907.013333pt;}
.yf7{bottom:908.773333pt;}
.yba{bottom:910.373333pt;}
.y37{bottom:912.293333pt;}
.y26{bottom:912.453333pt;}
.y7{bottom:915.653333pt;}
.y198{bottom:917.573333pt;}
.y5e{bottom:919.493333pt;}
.y182{bottom:921.733333pt;}
.yd6{bottom:926.533333pt;}
.y11f{bottom:926.693333pt;}
.y36{bottom:939.973333pt;}
.y6{bottom:940.133333pt;}
.y5d{bottom:945.093333pt;}
.y25{bottom:946.213333pt;}
.y3{bottom:972.960000pt;}
.y1{bottom:988.000000pt;}
.h1{height:20.000000pt;}
.h6{height:24.991875pt;}
.h18{height:31.520000pt;}
.hd{height:37.164062pt;}
.h7{height:38.413438pt;}
.hb{height:41.543750pt;}
.h4{height:41.601562pt;}
.h8{height:42.578750pt;}
.ha{height:45.156250pt;}
.h16{height:46.281250pt;}
.h5{height:47.963125pt;}
.he{height:48.069792pt;}
.hf{height:48.530000pt;}
.h13{height:50.988750pt;}
.h19{height:51.031250pt;}
.h14{height:51.095417pt;}
.h12{height:52.750000pt;}
.h9{height:52.832812pt;}
.h10{height:54.915000pt;}
.h2{height:55.468750pt;}
.h3{height:60.057813pt;}
.h1a{height:60.480000pt;}
.h1b{height:60.672000pt;}
.h17{height:61.554062pt;}
.hc{height:61.969687pt;}
.h11{height:71.944688pt;}
.h15{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w11{width:51.680000pt;}
.w12{width:54.560000pt;}
.w9{width:55.840000pt;}
.wa{width:59.232000pt;}
.wf{width:60.960000pt;}
.w8{width:70.400000pt;}
.w7{width:71.232000pt;}
.w14{width:89.152000pt;}
.w13{width:113.312000pt;}
.w10{width:119.232000pt;}
.we{width:129.760000pt;}
.wb{width:190.720000pt;}
.w1{width:208.026667pt;}
.wc{width:225.466667pt;}
.wd{width:253.186667pt;}
.w3{width:815.999976pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.w6{width:1055.999969pt;}
.w5{width:1055.999984pt;}
.w4{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x15{left:46.559976pt;}
.x10{left:55.039976pt;}
.x8{left:63.519976pt;}
.x9{left:71.999988pt;}
.x1{left:96.032000pt;}
.x7{left:99.711988pt;}
.x3{left:104.000000pt;}
.xe{left:106.911988pt;}
.xc{left:111.391988pt;}
.xd{left:120.991988pt;}
.x12{left:133.786655pt;}
.x13{left:144.026655pt;}
.x17{left:167.226667pt;}
.x16{left:191.400000pt;}
.x6{left:200.040000pt;}
.x5{left:208.520000pt;}
.x18{left:237.626667pt;}
.xf{left:239.226655pt;}
.x11{left:243.546655pt;}
.xa{left:245.626655pt;}
.x19{left:293.466667pt;}
.x2{left:304.066667pt;}
.x1a{left:352.706667pt;}
.x22{left:399.106655pt;}
.xb{left:408.066655pt;}
.x1d{left:482.466667pt;}
.x4{left:512.093333pt;}
.x1b{left:543.426667pt;}
.x1e{left:662.653333pt;}
.x1f{left:714.333333pt;}
.x14{left:720.133321pt;}
.x1c{left:768.893333pt;}
.x20{left:882.213333pt;}
.x21{left:933.893333pt;}
}




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