
    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_551b57cca396cd215c1e708a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_6137f10090492bfba21852c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_61f9d5dad6be2ea3bc96cfb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f716aa36c6a6362fdc2439c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f0d94d443434a3fd36ae06f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_e60ed4d7614de3d7db699361.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_9e8335c510d92ff51648c1cb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0fd7e29970a52ad7c1802ad5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983887;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_fffb45dbf46b4d926bef203d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.240600px;}
.ls2{letter-spacing:-0.229800px;}
.ls1b{letter-spacing:-0.107400px;}
.ls8{letter-spacing:-0.093600px;}
.ls6{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.041040px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.064200px;}
.lse{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.112200px;}
.ls5{letter-spacing:0.142560px;}
.lsd{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.182400px;}
.ls4{letter-spacing:0.213600px;}
.ls16{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.357000px;}
.ls14{letter-spacing:0.401760px;}
.ls9{letter-spacing:0.493200px;}
.ls1e{letter-spacing:0.606000px;}
.ls1a{letter-spacing:0.786000px;}
.ls13{letter-spacing:1.710000px;}
.ls15{letter-spacing:2.430000px;}
.ls11{letter-spacing:9.378720px;}
.ls12{letter-spacing:62.957280px;}
.lsb{letter-spacing:71.429760px;}
.lsc{letter-spacing:157.805760px;}
.ls1c{letter-spacing:391.134240px;}
.ls1d{letter-spacing:850.650240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-32.256000px;}
.ws0{word-spacing:-27.174240px;}
.ws15{word-spacing:-22.247760px;}
.ws14{word-spacing:-21.641760px;}
.ws6{word-spacing:-19.251840px;}
.ws5{word-spacing:-19.220640px;}
.ws7{word-spacing:-18.944640px;}
.ws2{word-spacing:-18.808440px;}
.wse{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.272000px;}
.ws12{word-spacing:-14.291760px;}
.wsb{word-spacing:-13.862760px;}
.ws10{word-spacing:-13.811760px;}
.ws16{word-spacing:-13.617960px;}
.wsa{word-spacing:-13.599360px;}
.wsc{word-spacing:-13.569960px;}
.ws9{word-spacing:-13.566360px;}
.ws8{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.464720px;}
.ws4{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.398360px;}
.wsf{word-spacing:-13.265160px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-12.754080px;}
._16{margin-left:-11.193840px;}
._13{margin-left:-9.150480px;}
._15{margin-left:-7.364160px;}
._14{margin-left:-6.019680px;}
._11{margin-left:-4.734960px;}
._20{margin-left:-3.721200px;}
._10{margin-left:-2.612880px;}
._0{margin-left:-1.442880px;}
._1{width:1.161840px;}
._2{width:2.502720px;}
._9{width:3.865440px;}
._e{width:4.985520px;}
._d{width:6.035760px;}
._1c{width:7.948080px;}
._1d{width:8.970960px;}
._c{width:10.491360px;}
._7{width:12.284160px;}
._b{width:15.059520px;}
._6{width:16.493760px;}
._5{width:17.629200px;}
._1e{width:18.764640px;}
._1f{width:19.776240px;}
._a{width:23.127120px;}
._8{width:26.115120px;}
._17{width:114.600720px;}
._19{width:130.627440px;}
._1b{width:140.416080px;}
._1a{width:167.974320px;}
._4{width:193.337760px;}
._18{width:198.894240px;}
._3{width:422.268480px;}
._f{width:850.650240px;}
.fc6{color:transparent;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(89,153,211);}
.fc0{color:rgb(30,76,119);}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y105{bottom:12.240000px;}
.ycf{bottom:12.780000px;}
.yd4{bottom:16.020000px;}
.ydf{bottom:16.050000px;}
.ye7{bottom:16.065000px;}
.ydc{bottom:16.200000px;}
.yd6{bottom:16.245000px;}
.y2d{bottom:16.920000px;}
.y3d{bottom:17.094000px;}
.y28{bottom:17.100000px;}
.y36{bottom:18.180000px;}
.yce{bottom:27.360000px;}
.yda{bottom:33.120000px;}
.ye0{bottom:33.150000px;}
.ye8{bottom:33.165000px;}
.ydd{bottom:33.300000px;}
.y2a{bottom:45.180000px;}
.y2f{bottom:45.360000px;}
.y3a{bottom:54.180000px;}
.y3c{bottom:54.354000px;}
.y35{bottom:55.440000px;}
.y18{bottom:65.700000px;}
.y39{bottom:82.440000px;}
.y34{bottom:92.520000px;}
.y17{bottom:94.680000px;}
.y38{bottom:110.520000px;}
.y3e{bottom:127.440000px;}
.y33{bottom:129.780000px;}
.y103{bottom:130.680000px;}
.y37{bottom:138.780000px;}
.y13{bottom:141.336000px;}
.y3b{bottom:147.636000px;}
.y102{bottom:150.870000px;}
.yb3{bottom:162.570000px;}
.y32{bottom:167.085000px;}
.y101{bottom:171.030000px;}
.y12{bottom:178.410000px;}
.y100{bottom:191.190000px;}
.yb2{bottom:191.550000px;}
.ycc{bottom:192.630000px;}
.y7b{bottom:195.870000px;}
.yff{bottom:211.350000px;}
.ycb{bottom:212.790000px;}
.yb1{bottom:220.710000px;}
.y11{bottom:221.610000px;}
.y31{bottom:222.150000px;}
.y7a{bottom:225.030000px;}
.yfe{bottom:231.510000px;}
.yca{bottom:232.950000px;}
.yb0{bottom:249.870000px;}
.yfd{bottom:251.670000px;}
.yc9{bottom:252.930000px;}
.y79{bottom:254.190000px;}
.yaf{bottom:270.030000px;}
.yc8{bottom:273.090000px;}
.y10{bottom:278.850000px;}
.yfc{bottom:280.830000px;}
.y78{bottom:283.350000px;}
.yae{bottom:290.190000px;}
.yc7{bottom:293.250000px;}
.yfb{bottom:300.810000px;}
.y9e{bottom:305.490000px;}
.yad{bottom:310.350000px;}
.yc6{bottom:313.410000px;}
.y77{bottom:316.110000px;}
.yfa{bottom:320.970000px;}
.yac{bottom:330.510000px;}
.yf{bottom:333.930000px;}
.y9d{bottom:334.650000px;}
.yf9{bottom:341.130000px;}
.yc5{bottom:342.570000px;}
.yab{bottom:350.670000px;}
.y76{bottom:353.730000px;}
.y9c{bottom:354.810000px;}
.yc4{bottom:362.730000px;}
.y11f{bottom:364.170000px;}
.yf8{bottom:370.290000px;}
.yaa{bottom:370.830000px;}
.ye{bottom:374.250000px;}
.y9b{bottom:374.970000px;}
.ye6{bottom:379.470000px;}
.y5c{bottom:382.890000px;}
.yf7{bottom:390.495000px;}
.ya9{bottom:390.855000px;}
.y9a{bottom:395.175000px;}
.y11e{bottom:399.135000px;}
.yc3{bottom:403.095000px;}
.y30{bottom:409.395000px;}
.yf6{bottom:410.655000px;}
.ya8{bottom:411.015000px;}
.y5b{bottom:412.095000px;}
.y99{bottom:415.335000px;}
.y75{bottom:415.695000px;}
.yd{bottom:416.415000px;}
.ye5{bottom:421.635000px;}
.yc2{bottom:423.255000px;}
.yf5{bottom:430.815000px;}
.ya7{bottom:431.175000px;}
.y98{bottom:435.495000px;}
.y5a{bottom:441.255000px;}
.yc1{bottom:443.415000px;}
.y2e{bottom:446.475000px;}
.yc{bottom:450.975000px;}
.y74{bottom:453.315000px;}
.y97{bottom:455.655000px;}
.ya6{bottom:460.335000px;}
.yc0{bottom:463.395000px;}
.ye4{bottom:463.935000px;}
.y59{bottom:470.415000px;}
.yf4{bottom:471.135000px;}
.y73{bottom:473.475000px;}
.ybf{bottom:483.555000px;}
.y96{bottom:484.815000px;}
.ya5{bottom:487.155000px;}
.yf3{bottom:491.115000px;}
.y72{bottom:493.635000px;}
.y58{bottom:499.575000px;}
.y95{bottom:504.795000px;}
.ye3{bottom:506.055000px;}
.ya4{bottom:509.295000px;}
.yf2{bottom:511.275000px;}
.y2c{bottom:511.995000px;}
.yb{bottom:515.235000px;}
.ybe{bottom:518.295000px;}
.y71{bottom:522.795000px;}
.y94{bottom:524.955000px;}
.y57{bottom:528.735000px;}
.ybd{bottom:538.455000px;}
.yf1{bottom:540.435000px;}
.y70{bottom:542.775000px;}
.y93{bottom:545.115000px;}
.ye2{bottom:548.175000px;}
.y2b{bottom:549.075000px;}
.y56{bottom:557.895000px;}
.yf0{bottom:560.595000px;}
.y92{bottom:565.275000px;}
.ybc{bottom:567.615000px;}
.y6f{bottom:571.935000px;}
.ya{bottom:573.195000px;}
.y55{bottom:577.875000px;}
.yef{bottom:580.755000px;}
.y29{bottom:586.335000px;}
.ybb{bottom:587.595000px;}
.ye1{bottom:590.295000px;}
.y6e{bottom:592.095000px;}
.y91{bottom:594.435000px;}
.y54{bottom:598.035000px;}
.yee{bottom:600.915000px;}
.yba{bottom:607.755000px;}
.y6d{bottom:612.255000px;}
.y90{bottom:614.595000px;}
.y11b{bottom:614.775000px;}
.y53{bottom:618.195000px;}
.yed{bottom:621.075000px;}
.yde{bottom:632.595000px;}
.y6c{bottom:633.135000px;}
.y9{bottom:634.395000px;}
.y8f{bottom:634.755000px;}
.yb9{bottom:636.915000px;}
.y52{bottom:638.355000px;}
.yec{bottom:641.265000px;}
.y11a{bottom:643.965000px;}
.y27{bottom:651.705000px;}
.y8e{bottom:654.945000px;}
.yb8{bottom:657.105000px;}
.y51{bottom:658.545000px;}
.y132{bottom:661.245000px;}
.yeb{bottom:661.425000px;}
.y119{bottom:664.125000px;}
.y8{bottom:674.745000px;}
.y8d{bottom:675.105000px;}
.yb7{bottom:677.265000px;}
.y50{bottom:678.705000px;}
.yea{bottom:681.585000px;}
.y118{bottom:684.105000px;}
.y6b{bottom:685.725000px;}
.y131{bottom:690.405000px;}
.y26{bottom:697.065000px;}
.yb6{bottom:697.425000px;}
.ye9{bottom:701.565000px;}
.y8c{bottom:704.265000px;}
.y4f{bottom:707.865000px;}
.y130{bottom:710.565000px;}
.y6a{bottom:714.885000px;}
.y7{bottom:715.065000px;}
.y104{bottom:716.145000px;}
.ydb{bottom:716.865000px;}
.yb5{bottom:717.585000px;}
.y8b{bottom:724.245000px;}
.y117{bottom:724.425000px;}
.y25{bottom:725.145000px;}
.y4e{bottom:728.025000px;}
.yb4{bottom:737.565000px;}
.y12f{bottom:739.725000px;}
.y69{bottom:744.045000px;}
.y8a{bottom:744.405000px;}
.y116{bottom:744.585000px;}
.y4d{bottom:748.185000px;}
.y24{bottom:753.405000px;}
.yd9{bottom:759.165000px;}
.y89{bottom:764.565000px;}
.y115{bottom:764.745000px;}
.y4c{bottom:768.345000px;}
.y12e{bottom:768.885000px;}
.y68{bottom:773.205000px;}
.y6{bottom:776.265000px;}
.y23{bottom:781.665000px;}
.y88{bottom:784.725000px;}
.y114{bottom:784.905000px;}
.y4b{bottom:788.325000px;}
.y12d{bottom:789.045000px;}
.y123{bottom:799.125000px;}
.yd8{bottom:801.285000px;}
.y67{bottom:802.365000px;}
.y87{bottom:804.885000px;}
.y113{bottom:805.065000px;}
.y22{bottom:809.745000px;}
.y4a{bottom:817.485000px;}
.y12c{bottom:818.205000px;}
.y112{bottom:825.225000px;}
.y66{bottom:831.525000px;}
.y86{bottom:834.045000px;}
.y5{bottom:837.645000px;}
.y21{bottom:838.185000px;}
.y12b{bottom:838.365000px;}
.yd7{bottom:843.405000px;}
.y85{bottom:854.205000px;}
.y111{bottom:854.385000px;}
.y49{bottom:857.805000px;}
.y65{bottom:860.685000px;}
.y122{bottom:863.205000px;}
.y12a{bottom:867.525000px;}
.y20{bottom:873.645000px;}
.y84{bottom:874.365000px;}
.y4{bottom:877.965000px;}
.y121{bottom:883.365000px;}
.y110{bottom:883.545000px;}
.yd5{bottom:885.525000px;}
.y129{bottom:887.685000px;}
.y64{bottom:889.665000px;}
.y83{bottom:894.570000px;}
.y48{bottom:898.170000px;}
.y1f{bottom:901.950000px;}
.y10f{bottom:903.570000px;}
.y82{bottom:914.730000px;}
.y128{bottom:916.710000px;}
.y47{bottom:918.330000px;}
.y63{bottom:918.870000px;}
.ya3{bottom:920.310000px;}
.y10e{bottom:923.730000px;}
.yd3{bottom:927.870000px;}
.y1e{bottom:930.210000px;}
.y81{bottom:934.710000px;}
.y127{bottom:936.870000px;}
.y120{bottom:943.710000px;}
.y10d{bottom:943.890000px;}
.y46{bottom:947.490000px;}
.y62{bottom:948.030000px;}
.y3{bottom:948.570000px;}
.ya2{bottom:949.470000px;}
.y1d{bottom:958.290000px;}
.y80{bottom:963.870000px;}
.y10c{bottom:964.050000px;}
.y126{bottom:966.030000px;}
.y45{bottom:967.650000px;}
.ya1{bottom:969.630000px;}
.y61{bottom:977.190000px;}
.yd2{bottom:978.450000px;}
.y7f{bottom:984.030000px;}
.y10b{bottom:984.210000px;}
.y125{bottom:986.190000px;}
.y1c{bottom:986.550000px;}
.y44{bottom:987.810000px;}
.ya0{bottom:989.790000px;}
.y7e{bottom:1004.190000px;}
.y10a{bottom:1004.370000px;}
.y60{bottom:1006.350000px;}
.y43{bottom:1007.790000px;}
.y9f{bottom:1009.770000px;}
.y1b{bottom:1014.630000px;}
.y124{bottom:1015.350000px;}
.yd1{bottom:1023.990000px;}
.y7d{bottom:1024.350000px;}
.y109{bottom:1024.530000px;}
.y42{bottom:1027.950000px;}
.y2{bottom:1035.150000px;}
.y5f{bottom:1035.510000px;}
.y1a{bottom:1042.890000px;}
.y7c{bottom:1044.510000px;}
.y108{bottom:1044.690000px;}
.y41{bottom:1048.110000px;}
.yd0{bottom:1052.970000px;}
.y5e{bottom:1064.670000px;}
.y40{bottom:1068.270000px;}
.ycd{bottom:1069.530000px;}
.y107{bottom:1073.850000px;}
.y11d{bottom:1082.310000px;}
.y19{bottom:1082.670000px;}
.y5d{bottom:1085.550000px;}
.y3f{bottom:1088.250000px;}
.y106{bottom:1094.010000px;}
.y11c{bottom:1097.070000px;}
.y1{bottom:1104.630000px;}
.y16{bottom:1122.990000px;}
.y15{bottom:1152.180000px;}
.y14{bottom:1193.400000px;}
.h20{height:23.580000px;}
.h1b{height:33.120000px;}
.h1f{height:33.156000px;}
.h1e{height:33.300000px;}
.h1d{height:33.336000px;}
.h10{height:37.080000px;}
.he{height:37.260000px;}
.h1a{height:38.700000px;}
.h19{height:38.865234px;}
.h7{height:47.980898px;}
.ha{height:59.439023px;}
.hb{height:61.423863px;}
.hf{height:65.376000px;}
.h11{height:65.520000px;}
.h16{height:65.884219px;}
.h13{height:74.520000px;}
.h21{height:80.208984px;}
.h9{height:83.787539px;}
.h14{height:86.255508px;}
.h18{height:86.585445px;}
.h15{height:91.177734px;}
.h17{height:98.426190px;}
.hc{height:110.583984px;}
.h1c{height:111.006981px;}
.h6{height:112.429688px;}
.hd{height:114.027539px;}
.h8{height:119.594180px;}
.h4{height:123.116836px;}
.h5{height:125.171719px;}
.h2{height:143.226562px;}
.h12{height:187.230000px;}
.h3{height:221.167969px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:171.030000px;}
.w8{width:226.830000px;}
.w7{width:227.550000px;}
.w3{width:265.530000px;}
.w4{width:403.995000px;}
.w9{width:460.365000px;}
.w5{width:628.125000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x23{left:45.720000px;}
.x1d{left:50.400000px;}
.x1f{left:51.660000px;}
.x19{left:54.900000px;}
.x1e{left:56.880000px;}
.x1b{left:61.020000px;}
.x17{left:63.174000px;}
.x21{left:64.980000px;}
.x24{left:66.060000px;}
.x20{left:72.540000px;}
.x22{left:75.954000px;}
.x1c{left:80.454000px;}
.x10{left:95.616000px;}
.x1{left:106.235987px;}
.x6{left:109.655987px;}
.x2{left:122.255987px;}
.x13{left:124.235987px;}
.x3{left:125.855987px;}
.x26{left:127.475987px;}
.x16{left:132.336000px;}
.x14{left:137.735987px;}
.x7{left:150.689987px;}
.xb{left:176.069987px;}
.x25{left:196.410000px;}
.xf{left:233.849987px;}
.x18{left:278.175000px;}
.xe{left:294.554987px;}
.xa{left:311.834987px;}
.xc{left:317.414987px;}
.xd{left:321.734987px;}
.x4{left:344.234987px;}
.x9{left:354.134987px;}
.x8{left:360.074987px;}
.x12{left:361.155000px;}
.x5{left:446.324987px;}
.x1a{left:505.725000px;}
.x15{left:775.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.213867pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls1b{letter-spacing:-0.095467pt;}
.ls8{letter-spacing:-0.083200pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.036480pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.057067pt;}
.lse{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.099733pt;}
.ls5{letter-spacing:0.126720pt;}
.lsd{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.162133pt;}
.ls4{letter-spacing:0.189867pt;}
.ls16{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.317333pt;}
.ls14{letter-spacing:0.357120pt;}
.ls9{letter-spacing:0.438400pt;}
.ls1e{letter-spacing:0.538667pt;}
.ls1a{letter-spacing:0.698667pt;}
.ls13{letter-spacing:1.520000pt;}
.ls15{letter-spacing:2.160000pt;}
.ls11{letter-spacing:8.336640pt;}
.ls12{letter-spacing:55.962027pt;}
.lsb{letter-spacing:63.493120pt;}
.lsc{letter-spacing:140.271787pt;}
.ls1c{letter-spacing:347.674880pt;}
.ls1d{letter-spacing:756.133547pt;}
.ws1{word-spacing:-28.672000pt;}
.ws0{word-spacing:-24.154880pt;}
.ws15{word-spacing:-19.775787pt;}
.ws14{word-spacing:-19.237120pt;}
.ws6{word-spacing:-17.112747pt;}
.ws5{word-spacing:-17.085013pt;}
.ws7{word-spacing:-16.839680pt;}
.ws2{word-spacing:-16.718613pt;}
.wse{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.464000pt;}
.ws12{word-spacing:-12.703787pt;}
.wsb{word-spacing:-12.322453pt;}
.ws10{word-spacing:-12.277120pt;}
.ws16{word-spacing:-12.104853pt;}
.wsa{word-spacing:-12.088320pt;}
.wsc{word-spacing:-12.062187pt;}
.ws9{word-spacing:-12.058987pt;}
.ws8{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.968640pt;}
.ws4{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.909653pt;}
.wsf{word-spacing:-11.791253pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-11.336960pt;}
._16{margin-left:-9.950080pt;}
._13{margin-left:-8.133760pt;}
._15{margin-left:-6.545920pt;}
._14{margin-left:-5.350827pt;}
._11{margin-left:-4.208853pt;}
._20{margin-left:-3.307733pt;}
._10{margin-left:-2.322560pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.032747pt;}
._2{width:2.224640pt;}
._9{width:3.435947pt;}
._e{width:4.431573pt;}
._d{width:5.365120pt;}
._1c{width:7.064960pt;}
._1d{width:7.974187pt;}
._c{width:9.325653pt;}
._7{width:10.919253pt;}
._b{width:13.386240pt;}
._6{width:14.661120pt;}
._5{width:15.670400pt;}
._1e{width:16.679680pt;}
._1f{width:17.578880pt;}
._a{width:20.557440pt;}
._8{width:23.213440pt;}
._17{width:101.867307pt;}
._19{width:116.113280pt;}
._1b{width:124.814293pt;}
._1a{width:149.310507pt;}
._4{width:171.855787pt;}
._18{width:176.794880pt;}
._3{width:375.349760pt;}
._f{width:756.133547pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:10.880000pt;}
.ycf{bottom:11.360000pt;}
.yd4{bottom:14.240000pt;}
.ydf{bottom:14.266667pt;}
.ye7{bottom:14.280000pt;}
.ydc{bottom:14.400000pt;}
.yd6{bottom:14.440000pt;}
.y2d{bottom:15.040000pt;}
.y3d{bottom:15.194667pt;}
.y28{bottom:15.200000pt;}
.y36{bottom:16.160000pt;}
.yce{bottom:24.320000pt;}
.yda{bottom:29.440000pt;}
.ye0{bottom:29.466667pt;}
.ye8{bottom:29.480000pt;}
.ydd{bottom:29.600000pt;}
.y2a{bottom:40.160000pt;}
.y2f{bottom:40.320000pt;}
.y3a{bottom:48.160000pt;}
.y3c{bottom:48.314667pt;}
.y35{bottom:49.280000pt;}
.y18{bottom:58.400000pt;}
.y39{bottom:73.280000pt;}
.y34{bottom:82.240000pt;}
.y17{bottom:84.160000pt;}
.y38{bottom:98.240000pt;}
.y3e{bottom:113.280000pt;}
.y33{bottom:115.360000pt;}
.y103{bottom:116.160000pt;}
.y37{bottom:123.360000pt;}
.y13{bottom:125.632000pt;}
.y3b{bottom:131.232000pt;}
.y102{bottom:134.106667pt;}
.yb3{bottom:144.506667pt;}
.y32{bottom:148.520000pt;}
.y101{bottom:152.026667pt;}
.y12{bottom:158.586667pt;}
.y100{bottom:169.946667pt;}
.yb2{bottom:170.266667pt;}
.ycc{bottom:171.226667pt;}
.y7b{bottom:174.106667pt;}
.yff{bottom:187.866667pt;}
.ycb{bottom:189.146667pt;}
.yb1{bottom:196.186667pt;}
.y11{bottom:196.986667pt;}
.y31{bottom:197.466667pt;}
.y7a{bottom:200.026667pt;}
.yfe{bottom:205.786667pt;}
.yca{bottom:207.066667pt;}
.yb0{bottom:222.106667pt;}
.yfd{bottom:223.706667pt;}
.yc9{bottom:224.826667pt;}
.y79{bottom:225.946667pt;}
.yaf{bottom:240.026667pt;}
.yc8{bottom:242.746667pt;}
.y10{bottom:247.866667pt;}
.yfc{bottom:249.626667pt;}
.y78{bottom:251.866667pt;}
.yae{bottom:257.946667pt;}
.yc7{bottom:260.666667pt;}
.yfb{bottom:267.386667pt;}
.y9e{bottom:271.546667pt;}
.yad{bottom:275.866667pt;}
.yc6{bottom:278.586667pt;}
.y77{bottom:280.986667pt;}
.yfa{bottom:285.306667pt;}
.yac{bottom:293.786667pt;}
.yf{bottom:296.826667pt;}
.y9d{bottom:297.466667pt;}
.yf9{bottom:303.226667pt;}
.yc5{bottom:304.506667pt;}
.yab{bottom:311.706667pt;}
.y76{bottom:314.426667pt;}
.y9c{bottom:315.386667pt;}
.yc4{bottom:322.426667pt;}
.y11f{bottom:323.706667pt;}
.yf8{bottom:329.146667pt;}
.yaa{bottom:329.626667pt;}
.ye{bottom:332.666667pt;}
.y9b{bottom:333.306667pt;}
.ye6{bottom:337.306667pt;}
.y5c{bottom:340.346667pt;}
.yf7{bottom:347.106667pt;}
.ya9{bottom:347.426667pt;}
.y9a{bottom:351.266667pt;}
.y11e{bottom:354.786667pt;}
.yc3{bottom:358.306667pt;}
.y30{bottom:363.906667pt;}
.yf6{bottom:365.026667pt;}
.ya8{bottom:365.346667pt;}
.y5b{bottom:366.306667pt;}
.y99{bottom:369.186667pt;}
.y75{bottom:369.506667pt;}
.yd{bottom:370.146667pt;}
.ye5{bottom:374.786667pt;}
.yc2{bottom:376.226667pt;}
.yf5{bottom:382.946667pt;}
.ya7{bottom:383.266667pt;}
.y98{bottom:387.106667pt;}
.y5a{bottom:392.226667pt;}
.yc1{bottom:394.146667pt;}
.y2e{bottom:396.866667pt;}
.yc{bottom:400.866667pt;}
.y74{bottom:402.946667pt;}
.y97{bottom:405.026667pt;}
.ya6{bottom:409.186667pt;}
.yc0{bottom:411.906667pt;}
.ye4{bottom:412.386667pt;}
.y59{bottom:418.146667pt;}
.yf4{bottom:418.786667pt;}
.y73{bottom:420.866667pt;}
.ybf{bottom:429.826667pt;}
.y96{bottom:430.946667pt;}
.ya5{bottom:433.026667pt;}
.yf3{bottom:436.546667pt;}
.y72{bottom:438.786667pt;}
.y58{bottom:444.066667pt;}
.y95{bottom:448.706667pt;}
.ye3{bottom:449.826667pt;}
.ya4{bottom:452.706667pt;}
.yf2{bottom:454.466667pt;}
.y2c{bottom:455.106667pt;}
.yb{bottom:457.986667pt;}
.ybe{bottom:460.706667pt;}
.y71{bottom:464.706667pt;}
.y94{bottom:466.626667pt;}
.y57{bottom:469.986667pt;}
.ybd{bottom:478.626667pt;}
.yf1{bottom:480.386667pt;}
.y70{bottom:482.466667pt;}
.y93{bottom:484.546667pt;}
.ye2{bottom:487.266667pt;}
.y2b{bottom:488.066667pt;}
.y56{bottom:495.906667pt;}
.yf0{bottom:498.306667pt;}
.y92{bottom:502.466667pt;}
.ybc{bottom:504.546667pt;}
.y6f{bottom:508.386667pt;}
.ya{bottom:509.506667pt;}
.y55{bottom:513.666667pt;}
.yef{bottom:516.226667pt;}
.y29{bottom:521.186667pt;}
.ybb{bottom:522.306667pt;}
.ye1{bottom:524.706667pt;}
.y6e{bottom:526.306667pt;}
.y91{bottom:528.386667pt;}
.y54{bottom:531.586667pt;}
.yee{bottom:534.146667pt;}
.yba{bottom:540.226667pt;}
.y6d{bottom:544.226667pt;}
.y90{bottom:546.306667pt;}
.y11b{bottom:546.466667pt;}
.y53{bottom:549.506667pt;}
.yed{bottom:552.066667pt;}
.yde{bottom:562.306667pt;}
.y6c{bottom:562.786667pt;}
.y9{bottom:563.906667pt;}
.y8f{bottom:564.226667pt;}
.yb9{bottom:566.146667pt;}
.y52{bottom:567.426667pt;}
.yec{bottom:570.013333pt;}
.y11a{bottom:572.413333pt;}
.y27{bottom:579.293333pt;}
.y8e{bottom:582.173333pt;}
.yb8{bottom:584.093333pt;}
.y51{bottom:585.373333pt;}
.y132{bottom:587.773333pt;}
.yeb{bottom:587.933333pt;}
.y119{bottom:590.333333pt;}
.y8{bottom:599.773333pt;}
.y8d{bottom:600.093333pt;}
.yb7{bottom:602.013333pt;}
.y50{bottom:603.293333pt;}
.yea{bottom:605.853333pt;}
.y118{bottom:608.093333pt;}
.y6b{bottom:609.533333pt;}
.y131{bottom:613.693333pt;}
.y26{bottom:619.613333pt;}
.yb6{bottom:619.933333pt;}
.ye9{bottom:623.613333pt;}
.y8c{bottom:626.013333pt;}
.y4f{bottom:629.213333pt;}
.y130{bottom:631.613333pt;}
.y6a{bottom:635.453333pt;}
.y7{bottom:635.613333pt;}
.y104{bottom:636.573333pt;}
.ydb{bottom:637.213333pt;}
.yb5{bottom:637.853333pt;}
.y8b{bottom:643.773333pt;}
.y117{bottom:643.933333pt;}
.y25{bottom:644.573333pt;}
.y4e{bottom:647.133333pt;}
.yb4{bottom:655.613333pt;}
.y12f{bottom:657.533333pt;}
.y69{bottom:661.373333pt;}
.y8a{bottom:661.693333pt;}
.y116{bottom:661.853333pt;}
.y4d{bottom:665.053333pt;}
.y24{bottom:669.693333pt;}
.yd9{bottom:674.813333pt;}
.y89{bottom:679.613333pt;}
.y115{bottom:679.773333pt;}
.y4c{bottom:682.973333pt;}
.y12e{bottom:683.453333pt;}
.y68{bottom:687.293333pt;}
.y6{bottom:690.013333pt;}
.y23{bottom:694.813333pt;}
.y88{bottom:697.533333pt;}
.y114{bottom:697.693333pt;}
.y4b{bottom:700.733333pt;}
.y12d{bottom:701.373333pt;}
.y123{bottom:710.333333pt;}
.yd8{bottom:712.253333pt;}
.y67{bottom:713.213333pt;}
.y87{bottom:715.453333pt;}
.y113{bottom:715.613333pt;}
.y22{bottom:719.773333pt;}
.y4a{bottom:726.653333pt;}
.y12c{bottom:727.293333pt;}
.y112{bottom:733.533333pt;}
.y66{bottom:739.133333pt;}
.y86{bottom:741.373333pt;}
.y5{bottom:744.573333pt;}
.y21{bottom:745.053333pt;}
.y12b{bottom:745.213333pt;}
.yd7{bottom:749.693333pt;}
.y85{bottom:759.293333pt;}
.y111{bottom:759.453333pt;}
.y49{bottom:762.493333pt;}
.y65{bottom:765.053333pt;}
.y122{bottom:767.293333pt;}
.y12a{bottom:771.133333pt;}
.y20{bottom:776.573333pt;}
.y84{bottom:777.213333pt;}
.y4{bottom:780.413333pt;}
.y121{bottom:785.213333pt;}
.y110{bottom:785.373333pt;}
.yd5{bottom:787.133333pt;}
.y129{bottom:789.053333pt;}
.y64{bottom:790.813333pt;}
.y83{bottom:795.173333pt;}
.y48{bottom:798.373333pt;}
.y1f{bottom:801.733333pt;}
.y10f{bottom:803.173333pt;}
.y82{bottom:813.093333pt;}
.y128{bottom:814.853333pt;}
.y47{bottom:816.293333pt;}
.y63{bottom:816.773333pt;}
.ya3{bottom:818.053333pt;}
.y10e{bottom:821.093333pt;}
.yd3{bottom:824.773333pt;}
.y1e{bottom:826.853333pt;}
.y81{bottom:830.853333pt;}
.y127{bottom:832.773333pt;}
.y120{bottom:838.853333pt;}
.y10d{bottom:839.013333pt;}
.y46{bottom:842.213333pt;}
.y62{bottom:842.693333pt;}
.y3{bottom:843.173333pt;}
.ya2{bottom:843.973333pt;}
.y1d{bottom:851.813333pt;}
.y80{bottom:856.773333pt;}
.y10c{bottom:856.933333pt;}
.y126{bottom:858.693333pt;}
.y45{bottom:860.133333pt;}
.ya1{bottom:861.893333pt;}
.y61{bottom:868.613333pt;}
.yd2{bottom:869.733333pt;}
.y7f{bottom:874.693333pt;}
.y10b{bottom:874.853333pt;}
.y125{bottom:876.613333pt;}
.y1c{bottom:876.933333pt;}
.y44{bottom:878.053333pt;}
.ya0{bottom:879.813333pt;}
.y7e{bottom:892.613333pt;}
.y10a{bottom:892.773333pt;}
.y60{bottom:894.533333pt;}
.y43{bottom:895.813333pt;}
.y9f{bottom:897.573333pt;}
.y1b{bottom:901.893333pt;}
.y124{bottom:902.533333pt;}
.yd1{bottom:910.213333pt;}
.y7d{bottom:910.533333pt;}
.y109{bottom:910.693333pt;}
.y42{bottom:913.733333pt;}
.y2{bottom:920.133333pt;}
.y5f{bottom:920.453333pt;}
.y1a{bottom:927.013333pt;}
.y7c{bottom:928.453333pt;}
.y108{bottom:928.613333pt;}
.y41{bottom:931.653333pt;}
.yd0{bottom:935.973333pt;}
.y5e{bottom:946.373333pt;}
.y40{bottom:949.573333pt;}
.ycd{bottom:950.693333pt;}
.y107{bottom:954.533333pt;}
.y11d{bottom:962.053333pt;}
.y19{bottom:962.373333pt;}
.y5d{bottom:964.933333pt;}
.y3f{bottom:967.333333pt;}
.y106{bottom:972.453333pt;}
.y11c{bottom:975.173333pt;}
.y1{bottom:981.893333pt;}
.y16{bottom:998.213333pt;}
.y15{bottom:1024.160000pt;}
.y14{bottom:1060.800000pt;}
.h20{height:20.960000pt;}
.h1b{height:29.440000pt;}
.h1f{height:29.472000pt;}
.h1e{height:29.600000pt;}
.h1d{height:29.632000pt;}
.h10{height:32.960000pt;}
.he{height:33.120000pt;}
.h1a{height:34.400000pt;}
.h19{height:34.546875pt;}
.h7{height:42.649687pt;}
.ha{height:52.834688pt;}
.hb{height:54.598989pt;}
.hf{height:58.112000pt;}
.h11{height:58.240000pt;}
.h16{height:58.563750pt;}
.h13{height:66.240000pt;}
.h21{height:71.296875pt;}
.h9{height:74.477812pt;}
.h14{height:76.671562pt;}
.h18{height:76.964840pt;}
.h15{height:81.046875pt;}
.h17{height:87.489947pt;}
.hc{height:98.296875pt;}
.h1c{height:98.672872pt;}
.h6{height:99.937500pt;}
.hd{height:101.357812pt;}
.h8{height:106.305937pt;}
.h4{height:109.437187pt;}
.h5{height:111.263750pt;}
.h2{height:127.312500pt;}
.h12{height:166.426667pt;}
.h3{height:196.593750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:152.026667pt;}
.w8{width:201.626667pt;}
.w7{width:202.266667pt;}
.w3{width:236.026667pt;}
.w4{width:359.106667pt;}
.w9{width:409.213333pt;}
.w5{width:558.333333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x23{left:40.640000pt;}
.x1d{left:44.800000pt;}
.x1f{left:45.920000pt;}
.x19{left:48.800000pt;}
.x1e{left:50.560000pt;}
.x1b{left:54.240000pt;}
.x17{left:56.154667pt;}
.x21{left:57.760000pt;}
.x24{left:58.720000pt;}
.x20{left:64.480000pt;}
.x22{left:67.514667pt;}
.x1c{left:71.514667pt;}
.x10{left:84.992000pt;}
.x1{left:94.431988pt;}
.x6{left:97.471988pt;}
.x2{left:108.671988pt;}
.x13{left:110.431988pt;}
.x3{left:111.871988pt;}
.x26{left:113.311988pt;}
.x16{left:117.632000pt;}
.x14{left:122.431988pt;}
.x7{left:133.946655pt;}
.xb{left:156.506655pt;}
.x25{left:174.586667pt;}
.xf{left:207.866655pt;}
.x18{left:247.266667pt;}
.xe{left:261.826655pt;}
.xa{left:277.186655pt;}
.xc{left:282.146655pt;}
.xd{left:285.986655pt;}
.x4{left:305.986655pt;}
.x9{left:314.786655pt;}
.x8{left:320.066655pt;}
.x12{left:321.026667pt;}
.x5{left:396.733322pt;}
.x1a{left:449.533333pt;}
.x15{left:689.733322pt;}
}




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