
    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_62c219cf5580d9162e9a4882.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2ad3205d2a7db057eed4c70e.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c92aa100030058db08868ee9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_ebcf1ea6f6f2809ee3207e85.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8dabb8c1338e1eae802a3ff7.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5aab9371584542626a745636.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7f2a9a8a36b992129e460ccc.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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(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);}
.v4{vertical-align:-62.760003px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls22{letter-spacing:-0.990000px;}
.ls28{letter-spacing:-0.666000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.ls23{letter-spacing:-0.450600px;}
.lse{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.089400px;}
.ls14{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.181200px;}
.ls1f{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.223920px;}
.ls1a{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.460080px;}
.ls1d{letter-spacing:0.460200px;}
.ls15{letter-spacing:0.900000px;}
.ls19{letter-spacing:0.924000px;}
.ls1{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.340000px;}
.ls2b{letter-spacing:3.060000px;}
.ls9{letter-spacing:5.940000px;}
.ls29{letter-spacing:7.380000px;}
.ls7{letter-spacing:10.980000px;}
.ls16{letter-spacing:12.420000px;}
.ls17{letter-spacing:26.820000px;}
.ls2a{letter-spacing:36.900000px;}
.ls2c{letter-spacing:47.676000px;}
.ls6{letter-spacing:54.000000px;}
.ls5{letter-spacing:54.720000px;}
.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;}
}
.ws9{word-spacing:-31.248000px;}
.ws5{word-spacing:-18.000000px;}
.ws16{word-spacing:-15.864000px;}
.ws11{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.680200px;}
.ws1e{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.479800px;}
.ws0{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.716000px;}
.wsf{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.482000px;}
.ws19{word-spacing:-13.392000px;}
.wse{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.241200px;}
.ws8{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.836200px;}
.ws7{word-spacing:-11.700000px;}
.ws1b{word-spacing:-11.070000px;}
.ws1{word-spacing:-10.529400px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.wsa{word-spacing:-9.720000px;}
.wsb{word-spacing:-7.560000px;}
.ws14{word-spacing:0.000000px;}
._21{margin-left:-2.095920px;}
._1{margin-left:-1.080000px;}
._0{width:1.085760px;}
._3{width:2.232000px;}
._c{width:3.787680px;}
._13{width:4.922400px;}
._b{width:5.946240px;}
._a{width:6.984000px;}
._9{width:8.334000px;}
._7{width:9.768000px;}
._6{width:11.124000px;}
._8{width:12.486000px;}
._11{width:13.807920px;}
._19{width:16.254720px;}
._12{width:17.287200px;}
._d{width:18.630000px;}
._16{width:19.678080px;}
._1a{width:21.013200px;}
._14{width:22.937760px;}
._15{width:24.312240px;}
._18{width:26.093280px;}
._17{width:27.250560px;}
._22{width:29.168640px;}
._1d{width:30.728880px;}
._1e{width:31.760640px;}
._23{width:32.965680px;}
._1b{width:35.856000px;}
._1c{width:37.020960px;}
._24{width:38.077680px;}
._1f{width:42.451200px;}
._20{width:43.705440px;}
._e{width:46.619997px;}
._4{width:55.068000px;}
._25{width:57.113280px;}
._10{width:80.100000px;}
._5{width:1147.146000px;}
._f{width:1834.296000px;}
._2{width:2055.186720px;}
.fca{color:rgb(68,114,196);}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(0,32,96);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fcc{color:rgb(46,116,181);}
.fc3{color:rgb(255,0,0);}
.fcb{color:rgb(34,34,34);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:108.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:3.225000px;}
.yc4{bottom:3.240000px;}
.yec{bottom:3.405000px;}
.ycb{bottom:3.420000px;}
.ye1{bottom:3.585000px;}
.yc1{bottom:3.600000px;}
.ye5{bottom:3.765000px;}
.ybc{bottom:3.780000px;}
.ydf{bottom:3.810000px;}
.yf4{bottom:4.140000px;}
.y44{bottom:4.320000px;}
.yfe{bottom:5.580000px;}
.y29{bottom:5.760000px;}
.y104{bottom:7.740000px;}
.y102{bottom:8.100000px;}
.yfb{bottom:8.280000px;}
.ybd{bottom:11.520000px;}
.yff{bottom:14.580000px;}
.y43{bottom:18.180000px;}
.y48{bottom:18.900000px;}
.ybb{bottom:19.260000px;}
.y3{bottom:19.800000px;}
.yfd{bottom:23.400000px;}
.y28{bottom:29.520000px;}
.y2{bottom:33.840000px;}
.y1{bottom:46.620000px;}
.y27{bottom:47.340000px;}
.y26{bottom:65.160000px;}
.y17c{bottom:70.380000px;}
.y10f{bottom:72.000000px;}
.y7f{bottom:75.240000px;}
.yf8{bottom:76.680000px;}
.yb6{bottom:77.040000px;}
.y25{bottom:82.980000px;}
.y17b{bottom:84.240000px;}
.y10e{bottom:88.560000px;}
.y41{bottom:90.720000px;}
.yf7{bottom:92.520000px;}
.y7e{bottom:95.040000px;}
.y13b{bottom:95.580000px;}
.yb5{bottom:96.840000px;}
.y24{bottom:100.980000px;}
.y17a{bottom:104.040000px;}
.y10d{bottom:106.560000px;}
.yf6{bottom:108.540000px;}
.y40{bottom:110.520000px;}
.y7d{bottom:114.840000px;}
.y13a{bottom:115.380000px;}
.yb4{bottom:116.820000px;}
.y179{bottom:117.900000px;}
.y23{bottom:118.800000px;}
.y10c{bottom:121.320000px;}
.yf5{bottom:124.380000px;}
.y3f{bottom:130.320000px;}
.y7c{bottom:134.820000px;}
.yf3{bottom:136.080000px;}
.yb3{bottom:136.620000px;}
.y22{bottom:136.650000px;}
.y178{bottom:137.700000px;}
.y3e{bottom:150.330000px;}
.y177{bottom:151.410000px;}
.yf2{bottom:153.405000px;}
.y21{bottom:154.470000px;}
.y7b{bottom:154.650000px;}
.y139{bottom:155.010000px;}
.yb2{bottom:156.450000px;}
.yf1{bottom:169.065000px;}
.y3d{bottom:170.130000px;}
.y176{bottom:171.210000px;}
.y20{bottom:172.290000px;}
.y7a{bottom:174.450000px;}
.y138{bottom:174.810000px;}
.yb1{bottom:176.250000px;}
.y2b{bottom:183.810000px;}
.y175{bottom:185.070000px;}
.yf0{bottom:185.445000px;}
.y3c{bottom:189.930000px;}
.y1f{bottom:190.290000px;}
.y79{bottom:193.890000px;}
.y119{bottom:194.250000px;}
.y137{bottom:194.430000px;}
.yb0{bottom:196.050000px;}
.y174{bottom:198.930000px;}
.yef{bottom:201.825000px;}
.y1e{bottom:208.110000px;}
.y3b{bottom:209.730000px;}
.y78{bottom:213.690000px;}
.y118{bottom:214.050000px;}
.y136{bottom:214.590000px;}
.yaf{bottom:216.030000px;}
.yee{bottom:217.485000px;}
.y173{bottom:218.730000px;}
.y1d{bottom:225.930000px;}
.y3a{bottom:229.530000px;}
.y172{bottom:232.410000px;}
.yed{bottom:233.865000px;}
.y77{bottom:234.030000px;}
.y135{bottom:234.390000px;}
.yae{bottom:235.830000px;}
.y1c{bottom:243.750000px;}
.y171{bottom:246.270000px;}
.y39{bottom:249.510000px;}
.yeb{bottom:250.245000px;}
.y76{bottom:253.830000px;}
.yad{bottom:255.630000px;}
.y1b{bottom:261.570000px;}
.yea{bottom:265.905000px;}
.y170{bottom:266.070000px;}
.y38{bottom:269.310000px;}
.y75{bottom:273.630000px;}
.yac{bottom:275.430000px;}
.y1a{bottom:279.390000px;}
.y16f{bottom:279.930000px;}
.ye9{bottom:282.285000px;}
.y37{bottom:289.110000px;}
.y74{bottom:293.430000px;}
.y134{bottom:293.970000px;}
.yab{bottom:295.230000px;}
.y19{bottom:297.390000px;}
.ye8{bottom:298.845000px;}
.y16e{bottom:299.730000px;}
.y36{bottom:308.910000px;}
.y73{bottom:313.230000px;}
.y16d{bottom:313.410000px;}
.y133{bottom:313.770000px;}
.y18{bottom:315.210000px;}
.ye7{bottom:315.225000px;}
.y16c{bottom:327.270000px;}
.y35{bottom:328.710000px;}
.ye6{bottom:330.885000px;}
.y17{bottom:333.030000px;}
.y72{bottom:333.210000px;}
.yaa{bottom:335.010000px;}
.y16b{bottom:347.070000px;}
.ye4{bottom:347.265000px;}
.y34{bottom:348.690000px;}
.y71{bottom:353.010000px;}
.ya9{bottom:354.810000px;}
.y16{bottom:354.990000px;}
.y16a{bottom:360.930000px;}
.ye2{bottom:363.645000px;}
.y2a{bottom:367.590000px;}
.y33{bottom:368.490000px;}
.y70{bottom:372.450000px;}
.y117{bottom:372.810000px;}
.y132{bottom:373.170000px;}
.ya8{bottom:374.610000px;}
.ye0{bottom:379.305000px;}
.y169{bottom:380.730000px;}
.y32{bottom:388.290000px;}
.y6f{bottom:392.250000px;}
.y116{bottom:392.610000px;}
.y131{bottom:393.150000px;}
.ya7{bottom:394.050000px;}
.y168{bottom:394.410000px;}
.yde{bottom:395.685000px;}
.y31{bottom:408.135000px;}
.y167{bottom:408.315000px;}
.ydd{bottom:412.095000px;}
.y6e{bottom:412.455000px;}
.y130{bottom:412.995000px;}
.ya6{bottom:414.075000px;}
.ydc{bottom:427.755000px;}
.y30{bottom:427.935000px;}
.y166{bottom:428.115000px;}
.y6d{bottom:432.435000px;}
.y12f{bottom:432.795000px;}
.ya5{bottom:434.235000px;}
.y165{bottom:441.975000px;}
.ydb{bottom:444.135000px;}
.y2f{bottom:447.915000px;}
.y6c{bottom:451.875000px;}
.y115{bottom:452.235000px;}
.y12e{bottom:452.595000px;}
.ya4{bottom:454.035000px;}
.yda{bottom:460.515000px;}
.y164{bottom:461.775000px;}
.y2e{bottom:467.715000px;}
.y6b{bottom:472.035000px;}
.y12d{bottom:472.395000px;}
.ya3{bottom:473.835000px;}
.y163{bottom:475.455000px;}
.yd9{bottom:476.175000px;}
.y2d{bottom:484.815000px;}
.y162{bottom:489.315000px;}
.y6a{bottom:491.835000px;}
.y12c{bottom:492.375000px;}
.yd8{bottom:492.555000px;}
.ya2{bottom:493.275000px;}
.y2c{bottom:502.275000px;}
.y161{bottom:503.175000px;}
.yd7{bottom:509.115000px;}
.y69{bottom:511.635000px;}
.y12b{bottom:512.175000px;}
.ya1{bottom:513.255000px;}
.y15{bottom:515.775000px;}
.y160{bottom:522.975000px;}
.yd6{bottom:524.595000px;}
.y68{bottom:531.615000px;}
.y12a{bottom:531.975000px;}
.ya0{bottom:533.415000px;}
.y15f{bottom:536.655000px;}
.yd5{bottom:540.975000px;}
.y15e{bottom:550.515000px;}
.y67{bottom:551.055000px;}
.y114{bottom:551.415000px;}
.y9f{bottom:553.215000px;}
.yd4{bottom:557.535000px;}
.y15d{bottom:570.315000px;}
.y66{bottom:570.855000px;}
.y113{bottom:571.215000px;}
.y129{bottom:571.575000px;}
.y9e{bottom:573.015000px;}
.y15c{bottom:583.995000px;}
.yd3{bottom:589.575000px;}
.y65{bottom:590.655000px;}
.y112{bottom:591.015000px;}
.y128{bottom:591.555000px;}
.y9d{bottom:592.815000px;}
.y15b{bottom:597.855000px;}
.yd2{bottom:605.955000px;}
.y64{bottom:610.815000px;}
.y127{bottom:611.355000px;}
.y9c{bottom:612.795000px;}
.y15a{bottom:617.655000px;}
.yd1{bottom:622.335000px;}
.y63{bottom:630.795000px;}
.y126{bottom:631.155000px;}
.y159{bottom:631.515000px;}
.y9b{bottom:632.595000px;}
.yd0{bottom:637.995000px;}
.y62{bottom:650.625000px;}
.y158{bottom:651.345000px;}
.y9a{bottom:652.425000px;}
.ycf{bottom:654.405000px;}
.y157{bottom:665.025000px;}
.y61{bottom:670.425000px;}
.yce{bottom:670.785000px;}
.y99{bottom:672.225000px;}
.y156{bottom:678.885000px;}
.ycd{bottom:686.445000px;}
.y125{bottom:687.885000px;}
.y60{bottom:690.225000px;}
.y98{bottom:692.025000px;}
.y10b{bottom:694.185000px;}
.y155{bottom:698.685000px;}
.ycc{bottom:702.825000px;}
.y5f{bottom:710.025000px;}
.y10a{bottom:711.285000px;}
.y97{bottom:712.005000px;}
.y154{bottom:712.545000px;}
.y124{bottom:713.085000px;}
.yca{bottom:719.205000px;}
.y109{bottom:725.325000px;}
.y5e{bottom:730.005000px;}
.y96{bottom:731.805000px;}
.y153{bottom:732.345000px;}
.yc9{bottom:734.865000px;}
.y108{bottom:740.805000px;}
.y123{bottom:743.685000px;}
.y152{bottom:746.025000px;}
.y5d{bottom:749.805000px;}
.yc8{bottom:751.245000px;}
.y95{bottom:751.605000px;}
.y107{bottom:755.565000px;}
.y122{bottom:763.485000px;}
.y151{bottom:765.825000px;}
.yc7{bottom:767.805000px;}
.y5c{bottom:769.605000px;}
.y94{bottom:771.405000px;}
.y150{bottom:779.685000px;}
.yc6{bottom:783.285000px;}
.y5b{bottom:789.405000px;}
.y93{bottom:791.205000px;}
.y14f{bottom:799.485000px;}
.yc5{bottom:799.845000px;}
.y121{bottom:803.085000px;}
.y5a{bottom:809.205000px;}
.y92{bottom:811.185000px;}
.y14e{bottom:813.345000px;}
.yc3{bottom:816.225000px;}
.y120{bottom:823.065000px;}
.y14d{bottom:827.025000px;}
.y59{bottom:829.185000px;}
.y91{bottom:830.985000px;}
.yc2{bottom:831.705000px;}
.y18a{bottom:835.845000px;}
.y11f{bottom:842.865000px;}
.y14c{bottom:846.825000px;}
.yc0{bottom:848.265000px;}
.y58{bottom:848.985000px;}
.y90{bottom:850.785000px;}
.y189{bottom:851.325000px;}
.y14b{bottom:860.685000px;}
.y11e{bottom:862.665000px;}
.ybf{bottom:864.645000px;}
.y188{bottom:866.985000px;}
.y57{bottom:868.785000px;}
.y8f{bottom:870.585000px;}
.y14a{bottom:880.485000px;}
.y11d{bottom:882.465000px;}
.y56{bottom:888.585000px;}
.y14{bottom:889.125000px;}
.y8e{bottom:890.385000px;}
.y149{bottom:894.345000px;}
.ybe{bottom:896.730000px;}
.y187{bottom:897.990000px;}
.y11c{bottom:901.950000px;}
.y13{bottom:908.250000px;}
.y55{bottom:908.430000px;}
.y8d{bottom:910.050000px;}
.y186{bottom:913.470000px;}
.yba{bottom:913.830000px;}
.y148{bottom:914.190000px;}
.y12{bottom:920.490000px;}
.y11b{bottom:921.930000px;}
.y147{bottom:927.870000px;}
.y54{bottom:928.410000px;}
.y185{bottom:929.130000px;}
.y8c{bottom:930.210000px;}
.y11{bottom:933.270000px;}
.y146{bottom:941.730000px;}
.y11a{bottom:944.610000px;}
.y53{bottom:948.210000px;}
.y10{bottom:949.110000px;}
.y8b{bottom:950.010000px;}
.yb9{bottom:950.910000px;}
.y184{bottom:960.090000px;}
.y145{bottom:961.530000px;}
.yf{bottom:964.950000px;}
.y106{bottom:965.130000px;}
.y52{bottom:968.010000px;}
.yb8{bottom:968.190000px;}
.y8a{bottom:969.810000px;}
.ye{bottom:973.950000px;}
.y144{bottom:975.390000px;}
.yb7{bottom:987.450000px;}
.y51{bottom:987.810000px;}
.y105{bottom:989.430000px;}
.yd{bottom:989.610000px;}
.y183{bottom:991.230000px;}
.y143{bottom:995.190000px;}
.y103{bottom:1001.130000px;}
.y182{bottom:1006.710000px;}
.y50{bottom:1007.610000px;}
.y142{bottom:1008.870000px;}
.y89{bottom:1009.410000px;}
.yc{bottom:1009.950000px;}
.y101{bottom:1023.450000px;}
.y4f{bottom:1027.410000px;}
.y141{bottom:1028.670000px;}
.y88{bottom:1029.390000px;}
.yb{bottom:1032.270000px;}
.y140{bottom:1042.530000px;}
.y181{bottom:1044.150000px;}
.y100{bottom:1046.310000px;}
.y4e{bottom:1047.390000px;}
.y87{bottom:1049.190000px;}
.y13f{bottom:1062.330000px;}
.yfc{bottom:1064.130000px;}
.y180{bottom:1064.850000px;}
.y4d{bottom:1067.190000px;}
.ya{bottom:1068.450000px;}
.y86{bottom:1068.990000px;}
.y13e{bottom:1076.190000px;}
.y17f{bottom:1085.550000px;}
.y4c{bottom:1086.990000px;}
.y85{bottom:1088.790000px;}
.y13d{bottom:1095.990000px;}
.yfa{bottom:1100.490000px;}
.y9{bottom:1101.210000px;}
.y17e{bottom:1106.250000px;}
.y4b{bottom:1106.790000px;}
.y84{bottom:1108.590000px;}
.y13c{bottom:1109.670000px;}
.y42{bottom:1112.730000px;}
.y8{bottom:1117.950000px;}
.y111{bottom:1126.230000px;}
.y4a{bottom:1126.590000px;}
.y83{bottom:1128.570000px;}
.yf9{bottom:1128.750000px;}
.y17d{bottom:1131.450000px;}
.y110{bottom:1146.240000px;}
.y49{bottom:1146.600000px;}
.y82{bottom:1146.780000px;}
.y7{bottom:1155.960000px;}
.y47{bottom:1164.780000px;}
.y81{bottom:1165.860000px;}
.y6{bottom:1167.480000px;}
.y5{bottom:1175.940000px;}
.y46{bottom:1183.860000px;}
.y80{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y45{bottom:1197.720000px;}
.h6{height:5.650313px;}
.hf{height:12.012891px;}
.h21{height:15.465000px;}
.h1c{height:15.480000px;}
.h1f{height:15.645000px;}
.h1d{height:15.660000px;}
.h18{height:16.365000px;}
.h1a{height:16.380000px;}
.h22{height:16.401000px;}
.h1e{height:16.410000px;}
.h20{height:16.545000px;}
.h1b{height:16.560000px;}
.h23{height:17.316000px;}
.h11{height:17.666016px;}
.h27{height:17.805000px;}
.h29{height:22.305000px;}
.h28{height:22.845000px;}
.h25{height:23.745000px;}
.h14{height:27.705000px;}
.he{height:29.664141px;}
.h19{height:32.062500px;}
.h17{height:32.565000px;}
.h26{height:35.625000px;}
.h3{height:40.985156px;}
.h15{height:42.922699px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h24{height:50.558906px;}
.hd{height:52.971680px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h12{height:55.503472px;}
.h13{height:58.651172px;}
.h9{height:60.226875px;}
.hc{height:66.543750px;}
.hb{height:66.757500px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.h2b{height:82.676953px;}
.h2a{height:84.898125px;}
.h2c{height:105.996094px;}
.ha{height:126.984375px;}
.h10{height:367.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:53.121000px;}
.w6{width:66.045000px;}
.w8{width:66.060000px;}
.w10{width:68.025000px;}
.wa{width:68.925000px;}
.w5{width:73.069500px;}
.w9{width:73.836000px;}
.w3{width:101.730000px;}
.wc{width:110.325000px;}
.wb{width:110.541000px;}
.wd{width:117.210000px;}
.wf{width:130.356000px;}
.w4{width:232.050000px;}
.we{width:244.819500px;}
.w11{width:285.720000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x29{left:8.089500px;}
.x14{left:9.165000px;}
.x9{left:10.650000px;}
.x2d{left:12.045000px;}
.x1a{left:13.125000px;}
.x10{left:15.109500px;}
.x20{left:16.920000px;}
.x27{left:19.065000px;}
.x23{left:20.340000px;}
.x16{left:21.780000px;}
.x11{left:23.389500px;}
.x18{left:24.480000px;}
.x21{left:25.725000px;}
.x8{left:26.850000px;}
.x1f{left:29.520000px;}
.x1c{left:30.945000px;}
.x24{left:32.205000px;}
.x26{left:34.230000px;}
.x22{left:36.750000px;}
.x1e{left:40.170000px;}
.x7{left:42.510000px;}
.x25{left:43.545000px;}
.x28{left:48.405000px;}
.x6{left:58.710000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.xc{left:113.076000px;}
.x12{left:151.965000px;}
.x30{left:158.250000px;}
.x13{left:218.025000px;}
.x15{left:271.155000px;}
.x2a{left:325.875000px;}
.x17{left:337.215000px;}
.xe{left:359.715000px;}
.xf{left:399.315000px;}
.x19{left:411.060000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x2b{left:456.240000px;}
.x1b{left:480.000000px;}
.x2c{left:524.280000px;}
.xd{left:590.370000px;}
.x1d{left:700.890000px;}
.x4{left:721.950000px;}
.x2e{left:809.280000px;}
.x2f{left:815.220000px;}
@media print{
.v4{vertical-align:-55.786669pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls22{letter-spacing:-0.880000pt;}
.ls28{letter-spacing:-0.592000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls23{letter-spacing:-0.400533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.079467pt;}
.ls14{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.161067pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.199040pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.408960pt;}
.ls1d{letter-spacing:0.409067pt;}
.ls15{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.821333pt;}
.ls1{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls2b{letter-spacing:2.720000pt;}
.ls9{letter-spacing:5.280000pt;}
.ls29{letter-spacing:6.560000pt;}
.ls7{letter-spacing:9.760000pt;}
.ls16{letter-spacing:11.040000pt;}
.ls17{letter-spacing:23.840000pt;}
.ls2a{letter-spacing:32.800000pt;}
.ls2c{letter-spacing:42.378667pt;}
.ls6{letter-spacing:48.000000pt;}
.ls5{letter-spacing:48.640000pt;}
.ws9{word-spacing:-27.776000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.101333pt;}
.ws11{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.049067pt;}
.ws1e{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.870933pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.192000pt;}
.wsf{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.984000pt;}
.ws19{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.881067pt;}
.ws8{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.521067pt;}
.ws7{word-spacing:-10.400000pt;}
.ws1b{word-spacing:-9.840000pt;}
.ws1{word-spacing:-9.359467pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.wsa{word-spacing:-8.640000pt;}
.wsb{word-spacing:-6.720000pt;}
.ws14{word-spacing:0.000000pt;}
._21{margin-left:-1.863040pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.965120pt;}
._3{width:1.984000pt;}
._c{width:3.366827pt;}
._13{width:4.375467pt;}
._b{width:5.285547pt;}
._a{width:6.208000pt;}
._9{width:7.408000pt;}
._7{width:8.682667pt;}
._6{width:9.888000pt;}
._8{width:11.098667pt;}
._11{width:12.273707pt;}
._19{width:14.448640pt;}
._12{width:15.366400pt;}
._d{width:16.560000pt;}
._16{width:17.491627pt;}
._1a{width:18.678400pt;}
._14{width:20.389120pt;}
._15{width:21.610880pt;}
._18{width:23.194027pt;}
._17{width:24.222720pt;}
._22{width:25.927680pt;}
._1d{width:27.314560pt;}
._1e{width:28.231680pt;}
._23{width:29.302827pt;}
._1b{width:31.872000pt;}
._1c{width:32.907520pt;}
._24{width:33.846827pt;}
._1f{width:37.734400pt;}
._20{width:38.849280pt;}
._e{width:41.439997pt;}
._4{width:48.949333pt;}
._25{width:50.767360pt;}
._10{width:71.200000pt;}
._5{width:1019.685333pt;}
._f{width:1630.485333pt;}
._2{width:1826.832640pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:96.000000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:2.866667pt;}
.yc4{bottom:2.880000pt;}
.yec{bottom:3.026667pt;}
.ycb{bottom:3.040000pt;}
.ye1{bottom:3.186667pt;}
.yc1{bottom:3.200000pt;}
.ye5{bottom:3.346667pt;}
.ybc{bottom:3.360000pt;}
.ydf{bottom:3.386667pt;}
.yf4{bottom:3.680000pt;}
.y44{bottom:3.840000pt;}
.yfe{bottom:4.960000pt;}
.y29{bottom:5.120000pt;}
.y104{bottom:6.880000pt;}
.y102{bottom:7.200000pt;}
.yfb{bottom:7.360000pt;}
.ybd{bottom:10.240000pt;}
.yff{bottom:12.960000pt;}
.y43{bottom:16.160000pt;}
.y48{bottom:16.800000pt;}
.ybb{bottom:17.120000pt;}
.y3{bottom:17.600000pt;}
.yfd{bottom:20.800000pt;}
.y28{bottom:26.240000pt;}
.y2{bottom:30.080000pt;}
.y1{bottom:41.440000pt;}
.y27{bottom:42.080000pt;}
.y26{bottom:57.920000pt;}
.y17c{bottom:62.560000pt;}
.y10f{bottom:64.000000pt;}
.y7f{bottom:66.880000pt;}
.yf8{bottom:68.160000pt;}
.yb6{bottom:68.480000pt;}
.y25{bottom:73.760000pt;}
.y17b{bottom:74.880000pt;}
.y10e{bottom:78.720000pt;}
.y41{bottom:80.640000pt;}
.yf7{bottom:82.240000pt;}
.y7e{bottom:84.480000pt;}
.y13b{bottom:84.960000pt;}
.yb5{bottom:86.080000pt;}
.y24{bottom:89.760000pt;}
.y17a{bottom:92.480000pt;}
.y10d{bottom:94.720000pt;}
.yf6{bottom:96.480000pt;}
.y40{bottom:98.240000pt;}
.y7d{bottom:102.080000pt;}
.y13a{bottom:102.560000pt;}
.yb4{bottom:103.840000pt;}
.y179{bottom:104.800000pt;}
.y23{bottom:105.600000pt;}
.y10c{bottom:107.840000pt;}
.yf5{bottom:110.560000pt;}
.y3f{bottom:115.840000pt;}
.y7c{bottom:119.840000pt;}
.yf3{bottom:120.960000pt;}
.yb3{bottom:121.440000pt;}
.y22{bottom:121.466667pt;}
.y178{bottom:122.400000pt;}
.y3e{bottom:133.626667pt;}
.y177{bottom:134.586667pt;}
.yf2{bottom:136.360000pt;}
.y21{bottom:137.306667pt;}
.y7b{bottom:137.466667pt;}
.y139{bottom:137.786667pt;}
.yb2{bottom:139.066667pt;}
.yf1{bottom:150.280000pt;}
.y3d{bottom:151.226667pt;}
.y176{bottom:152.186667pt;}
.y20{bottom:153.146667pt;}
.y7a{bottom:155.066667pt;}
.y138{bottom:155.386667pt;}
.yb1{bottom:156.666667pt;}
.y2b{bottom:163.386667pt;}
.y175{bottom:164.506667pt;}
.yf0{bottom:164.840000pt;}
.y3c{bottom:168.826667pt;}
.y1f{bottom:169.146667pt;}
.y79{bottom:172.346667pt;}
.y119{bottom:172.666667pt;}
.y137{bottom:172.826667pt;}
.yb0{bottom:174.266667pt;}
.y174{bottom:176.826667pt;}
.yef{bottom:179.400000pt;}
.y1e{bottom:184.986667pt;}
.y3b{bottom:186.426667pt;}
.y78{bottom:189.946667pt;}
.y118{bottom:190.266667pt;}
.y136{bottom:190.746667pt;}
.yaf{bottom:192.026667pt;}
.yee{bottom:193.320000pt;}
.y173{bottom:194.426667pt;}
.y1d{bottom:200.826667pt;}
.y3a{bottom:204.026667pt;}
.y172{bottom:206.586667pt;}
.yed{bottom:207.880000pt;}
.y77{bottom:208.026667pt;}
.y135{bottom:208.346667pt;}
.yae{bottom:209.626667pt;}
.y1c{bottom:216.666667pt;}
.y171{bottom:218.906667pt;}
.y39{bottom:221.786667pt;}
.yeb{bottom:222.440000pt;}
.y76{bottom:225.626667pt;}
.yad{bottom:227.226667pt;}
.y1b{bottom:232.506667pt;}
.yea{bottom:236.360000pt;}
.y170{bottom:236.506667pt;}
.y38{bottom:239.386667pt;}
.y75{bottom:243.226667pt;}
.yac{bottom:244.826667pt;}
.y1a{bottom:248.346667pt;}
.y16f{bottom:248.826667pt;}
.ye9{bottom:250.920000pt;}
.y37{bottom:256.986667pt;}
.y74{bottom:260.826667pt;}
.y134{bottom:261.306667pt;}
.yab{bottom:262.426667pt;}
.y19{bottom:264.346667pt;}
.ye8{bottom:265.640000pt;}
.y16e{bottom:266.426667pt;}
.y36{bottom:274.586667pt;}
.y73{bottom:278.426667pt;}
.y16d{bottom:278.586667pt;}
.y133{bottom:278.906667pt;}
.y18{bottom:280.186667pt;}
.ye7{bottom:280.200000pt;}
.y16c{bottom:290.906667pt;}
.y35{bottom:292.186667pt;}
.ye6{bottom:294.120000pt;}
.y17{bottom:296.026667pt;}
.y72{bottom:296.186667pt;}
.yaa{bottom:297.786667pt;}
.y16b{bottom:308.506667pt;}
.ye4{bottom:308.680000pt;}
.y34{bottom:309.946667pt;}
.y71{bottom:313.786667pt;}
.ya9{bottom:315.386667pt;}
.y16{bottom:315.546667pt;}
.y16a{bottom:320.826667pt;}
.ye2{bottom:323.240000pt;}
.y2a{bottom:326.746667pt;}
.y33{bottom:327.546667pt;}
.y70{bottom:331.066667pt;}
.y117{bottom:331.386667pt;}
.y132{bottom:331.706667pt;}
.ya8{bottom:332.986667pt;}
.ye0{bottom:337.160000pt;}
.y169{bottom:338.426667pt;}
.y32{bottom:345.146667pt;}
.y6f{bottom:348.666667pt;}
.y116{bottom:348.986667pt;}
.y131{bottom:349.466667pt;}
.ya7{bottom:350.266667pt;}
.y168{bottom:350.586667pt;}
.yde{bottom:351.720000pt;}
.y31{bottom:362.786667pt;}
.y167{bottom:362.946667pt;}
.ydd{bottom:366.306667pt;}
.y6e{bottom:366.626667pt;}
.y130{bottom:367.106667pt;}
.ya6{bottom:368.066667pt;}
.ydc{bottom:380.226667pt;}
.y30{bottom:380.386667pt;}
.y166{bottom:380.546667pt;}
.y6d{bottom:384.386667pt;}
.y12f{bottom:384.706667pt;}
.ya5{bottom:385.986667pt;}
.y165{bottom:392.866667pt;}
.ydb{bottom:394.786667pt;}
.y2f{bottom:398.146667pt;}
.y6c{bottom:401.666667pt;}
.y115{bottom:401.986667pt;}
.y12e{bottom:402.306667pt;}
.ya4{bottom:403.586667pt;}
.yda{bottom:409.346667pt;}
.y164{bottom:410.466667pt;}
.y2e{bottom:415.746667pt;}
.y6b{bottom:419.586667pt;}
.y12d{bottom:419.906667pt;}
.ya3{bottom:421.186667pt;}
.y163{bottom:422.626667pt;}
.yd9{bottom:423.266667pt;}
.y2d{bottom:430.946667pt;}
.y162{bottom:434.946667pt;}
.y6a{bottom:437.186667pt;}
.y12c{bottom:437.666667pt;}
.yd8{bottom:437.826667pt;}
.ya2{bottom:438.466667pt;}
.y2c{bottom:446.466667pt;}
.y161{bottom:447.266667pt;}
.yd7{bottom:452.546667pt;}
.y69{bottom:454.786667pt;}
.y12b{bottom:455.266667pt;}
.ya1{bottom:456.226667pt;}
.y15{bottom:458.466667pt;}
.y160{bottom:464.866667pt;}
.yd6{bottom:466.306667pt;}
.y68{bottom:472.546667pt;}
.y12a{bottom:472.866667pt;}
.ya0{bottom:474.146667pt;}
.y15f{bottom:477.026667pt;}
.yd5{bottom:480.866667pt;}
.y15e{bottom:489.346667pt;}
.y67{bottom:489.826667pt;}
.y114{bottom:490.146667pt;}
.y9f{bottom:491.746667pt;}
.yd4{bottom:495.586667pt;}
.y15d{bottom:506.946667pt;}
.y66{bottom:507.426667pt;}
.y113{bottom:507.746667pt;}
.y129{bottom:508.066667pt;}
.y9e{bottom:509.346667pt;}
.y15c{bottom:519.106667pt;}
.yd3{bottom:524.066667pt;}
.y65{bottom:525.026667pt;}
.y112{bottom:525.346667pt;}
.y128{bottom:525.826667pt;}
.y9d{bottom:526.946667pt;}
.y15b{bottom:531.426667pt;}
.yd2{bottom:538.626667pt;}
.y64{bottom:542.946667pt;}
.y127{bottom:543.426667pt;}
.y9c{bottom:544.706667pt;}
.y15a{bottom:549.026667pt;}
.yd1{bottom:553.186667pt;}
.y63{bottom:560.706667pt;}
.y126{bottom:561.026667pt;}
.y159{bottom:561.346667pt;}
.y9b{bottom:562.306667pt;}
.yd0{bottom:567.106667pt;}
.y62{bottom:578.333333pt;}
.y158{bottom:578.973333pt;}
.y9a{bottom:579.933333pt;}
.ycf{bottom:581.693333pt;}
.y157{bottom:591.133333pt;}
.y61{bottom:595.933333pt;}
.yce{bottom:596.253333pt;}
.y99{bottom:597.533333pt;}
.y156{bottom:603.453333pt;}
.ycd{bottom:610.173333pt;}
.y125{bottom:611.453333pt;}
.y60{bottom:613.533333pt;}
.y98{bottom:615.133333pt;}
.y10b{bottom:617.053333pt;}
.y155{bottom:621.053333pt;}
.ycc{bottom:624.733333pt;}
.y5f{bottom:631.133333pt;}
.y10a{bottom:632.253333pt;}
.y97{bottom:632.893333pt;}
.y154{bottom:633.373333pt;}
.y124{bottom:633.853333pt;}
.yca{bottom:639.293333pt;}
.y109{bottom:644.733333pt;}
.y5e{bottom:648.893333pt;}
.y96{bottom:650.493333pt;}
.y153{bottom:650.973333pt;}
.yc9{bottom:653.213333pt;}
.y108{bottom:658.493333pt;}
.y123{bottom:661.053333pt;}
.y152{bottom:663.133333pt;}
.y5d{bottom:666.493333pt;}
.yc8{bottom:667.773333pt;}
.y95{bottom:668.093333pt;}
.y107{bottom:671.613333pt;}
.y122{bottom:678.653333pt;}
.y151{bottom:680.733333pt;}
.yc7{bottom:682.493333pt;}
.y5c{bottom:684.093333pt;}
.y94{bottom:685.693333pt;}
.y150{bottom:693.053333pt;}
.yc6{bottom:696.253333pt;}
.y5b{bottom:701.693333pt;}
.y93{bottom:703.293333pt;}
.y14f{bottom:710.653333pt;}
.yc5{bottom:710.973333pt;}
.y121{bottom:713.853333pt;}
.y5a{bottom:719.293333pt;}
.y92{bottom:721.053333pt;}
.y14e{bottom:722.973333pt;}
.yc3{bottom:725.533333pt;}
.y120{bottom:731.613333pt;}
.y14d{bottom:735.133333pt;}
.y59{bottom:737.053333pt;}
.y91{bottom:738.653333pt;}
.yc2{bottom:739.293333pt;}
.y18a{bottom:742.973333pt;}
.y11f{bottom:749.213333pt;}
.y14c{bottom:752.733333pt;}
.yc0{bottom:754.013333pt;}
.y58{bottom:754.653333pt;}
.y90{bottom:756.253333pt;}
.y189{bottom:756.733333pt;}
.y14b{bottom:765.053333pt;}
.y11e{bottom:766.813333pt;}
.ybf{bottom:768.573333pt;}
.y188{bottom:770.653333pt;}
.y57{bottom:772.253333pt;}
.y8f{bottom:773.853333pt;}
.y14a{bottom:782.653333pt;}
.y11d{bottom:784.413333pt;}
.y56{bottom:789.853333pt;}
.y14{bottom:790.333333pt;}
.y8e{bottom:791.453333pt;}
.y149{bottom:794.973333pt;}
.ybe{bottom:797.093333pt;}
.y187{bottom:798.213333pt;}
.y11c{bottom:801.733333pt;}
.y13{bottom:807.333333pt;}
.y55{bottom:807.493333pt;}
.y8d{bottom:808.933333pt;}
.y186{bottom:811.973333pt;}
.yba{bottom:812.293333pt;}
.y148{bottom:812.613333pt;}
.y12{bottom:818.213333pt;}
.y11b{bottom:819.493333pt;}
.y147{bottom:824.773333pt;}
.y54{bottom:825.253333pt;}
.y185{bottom:825.893333pt;}
.y8c{bottom:826.853333pt;}
.y11{bottom:829.573333pt;}
.y146{bottom:837.093333pt;}
.y11a{bottom:839.653333pt;}
.y53{bottom:842.853333pt;}
.y10{bottom:843.653333pt;}
.y8b{bottom:844.453333pt;}
.yb9{bottom:845.253333pt;}
.y184{bottom:853.413333pt;}
.y145{bottom:854.693333pt;}
.yf{bottom:857.733333pt;}
.y106{bottom:857.893333pt;}
.y52{bottom:860.453333pt;}
.yb8{bottom:860.613333pt;}
.y8a{bottom:862.053333pt;}
.ye{bottom:865.733333pt;}
.y144{bottom:867.013333pt;}
.yb7{bottom:877.733333pt;}
.y51{bottom:878.053333pt;}
.y105{bottom:879.493333pt;}
.yd{bottom:879.653333pt;}
.y183{bottom:881.093333pt;}
.y143{bottom:884.613333pt;}
.y103{bottom:889.893333pt;}
.y182{bottom:894.853333pt;}
.y50{bottom:895.653333pt;}
.y142{bottom:896.773333pt;}
.y89{bottom:897.253333pt;}
.yc{bottom:897.733333pt;}
.y101{bottom:909.733333pt;}
.y4f{bottom:913.253333pt;}
.y141{bottom:914.373333pt;}
.y88{bottom:915.013333pt;}
.yb{bottom:917.573333pt;}
.y140{bottom:926.693333pt;}
.y181{bottom:928.133333pt;}
.y100{bottom:930.053333pt;}
.y4e{bottom:931.013333pt;}
.y87{bottom:932.613333pt;}
.y13f{bottom:944.293333pt;}
.yfc{bottom:945.893333pt;}
.y180{bottom:946.533333pt;}
.y4d{bottom:948.613333pt;}
.ya{bottom:949.733333pt;}
.y86{bottom:950.213333pt;}
.y13e{bottom:956.613333pt;}
.y17f{bottom:964.933333pt;}
.y4c{bottom:966.213333pt;}
.y85{bottom:967.813333pt;}
.y13d{bottom:974.213333pt;}
.yfa{bottom:978.213333pt;}
.y9{bottom:978.853333pt;}
.y17e{bottom:983.333333pt;}
.y4b{bottom:983.813333pt;}
.y84{bottom:985.413333pt;}
.y13c{bottom:986.373333pt;}
.y42{bottom:989.093333pt;}
.y8{bottom:993.733333pt;}
.y111{bottom:1001.093333pt;}
.y4a{bottom:1001.413333pt;}
.y83{bottom:1003.173333pt;}
.yf9{bottom:1003.333333pt;}
.y17d{bottom:1005.733333pt;}
.y110{bottom:1018.880000pt;}
.y49{bottom:1019.200000pt;}
.y82{bottom:1019.360000pt;}
.y7{bottom:1027.520000pt;}
.y47{bottom:1035.360000pt;}
.y81{bottom:1036.320000pt;}
.y6{bottom:1037.760000pt;}
.y5{bottom:1045.280000pt;}
.y46{bottom:1052.320000pt;}
.y80{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y45{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.hf{height:10.678125pt;}
.h21{height:13.746667pt;}
.h1c{height:13.760000pt;}
.h1f{height:13.906667pt;}
.h1d{height:13.920000pt;}
.h18{height:14.546667pt;}
.h1a{height:14.560000pt;}
.h22{height:14.578667pt;}
.h1e{height:14.586667pt;}
.h20{height:14.706667pt;}
.h1b{height:14.720000pt;}
.h23{height:15.392000pt;}
.h11{height:15.703125pt;}
.h27{height:15.826667pt;}
.h29{height:19.826667pt;}
.h28{height:20.306667pt;}
.h25{height:21.106667pt;}
.h14{height:24.626667pt;}
.he{height:26.368125pt;}
.h19{height:28.500000pt;}
.h17{height:28.946667pt;}
.h26{height:31.666667pt;}
.h3{height:36.431250pt;}
.h15{height:38.153511pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h24{height:44.941250pt;}
.hd{height:47.085938pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h12{height:49.336420pt;}
.h13{height:52.134375pt;}
.h9{height:53.535000pt;}
.hc{height:59.150000pt;}
.hb{height:59.340000pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2b{height:73.490625pt;}
.h2a{height:75.465000pt;}
.h2c{height:94.218750pt;}
.ha{height:112.875000pt;}
.h10{height:326.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:47.218667pt;}
.w6{width:58.706667pt;}
.w8{width:58.720000pt;}
.w10{width:60.466667pt;}
.wa{width:61.266667pt;}
.w5{width:64.950667pt;}
.w9{width:65.632000pt;}
.w3{width:90.426667pt;}
.wc{width:98.066667pt;}
.wb{width:98.258667pt;}
.wd{width:104.186667pt;}
.wf{width:115.872000pt;}
.w4{width:206.266667pt;}
.we{width:217.617333pt;}
.w11{width:253.973333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x29{left:7.190667pt;}
.x14{left:8.146667pt;}
.x9{left:9.466667pt;}
.x2d{left:10.706667pt;}
.x1a{left:11.666667pt;}
.x10{left:13.430667pt;}
.x20{left:15.040000pt;}
.x27{left:16.946667pt;}
.x23{left:18.080000pt;}
.x16{left:19.360000pt;}
.x11{left:20.790667pt;}
.x18{left:21.760000pt;}
.x21{left:22.866667pt;}
.x8{left:23.866667pt;}
.x1f{left:26.240000pt;}
.x1c{left:27.506667pt;}
.x24{left:28.626667pt;}
.x26{left:30.426667pt;}
.x22{left:32.666667pt;}
.x1e{left:35.706667pt;}
.x7{left:37.786667pt;}
.x25{left:38.706667pt;}
.x28{left:43.026667pt;}
.x6{left:52.186667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.xc{left:100.512000pt;}
.x12{left:135.080000pt;}
.x30{left:140.666667pt;}
.x13{left:193.800000pt;}
.x15{left:241.026667pt;}
.x2a{left:289.666667pt;}
.x17{left:299.746667pt;}
.xe{left:319.746667pt;}
.xf{left:354.946667pt;}
.x19{left:365.386667pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x2b{left:405.546667pt;}
.x1b{left:426.666667pt;}
.x2c{left:466.026667pt;}
.xd{left:524.773333pt;}
.x1d{left:623.013333pt;}
.x4{left:641.733333pt;}
.x2e{left:719.360000pt;}
.x2f{left:724.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; }
  