
    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_931f46557d623ce0b66c5469.woff')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_b2d5749b11c306fd014bbe0e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_a08d5b627e83f0027699dd49.woff')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_a2816982d4812d4096d9987b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a539689c35038ca01df150c0.woff')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_2a7e1c67efeffd97637d1266.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_705fb1235f9a7457311ecc82.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d06e04e18596b85fad8c4625.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_421e8e0ebb1b87f46bb9a193.woff')format("woff");}.ff9{font-family:ff9;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;}
.m4{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,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);}
.v3{vertical-align:-70.560000px;}
.v2{vertical-align:-69.120000px;}
.v4{vertical-align:-14.121735px;}
.v5{vertical-align:-5.504203px;}
.v6{vertical-align:-2.883154px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:7.355080px;}
.v1{vertical-align:27.360000px;}
.ls1d{letter-spacing:-2.880000px;}
.ls19{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-0.954000px;}
.lsa{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.507000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.034560px;}
.ls24{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.152400px;}
.ls1f{letter-spacing:0.178560px;}
.ls2{letter-spacing:0.190080px;}
.ls1a{letter-spacing:0.190560px;}
.ls0{letter-spacing:0.254880px;}
.ls14{letter-spacing:0.305280px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.370080px;}
.ls15{letter-spacing:0.452160px;}
.lsb{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.630720px;}
.ls7{letter-spacing:0.642720px;}
.ls5{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.821280px;}
.ls10{letter-spacing:0.829440px;}
.ls16{letter-spacing:0.929280px;}
.lsc{letter-spacing:1.809120px;}
.ls1b{letter-spacing:2.160000px;}
.ls28{letter-spacing:6.480000px;}
.ls25{letter-spacing:13.680000px;}
.ls22{letter-spacing:23.760000px;}
.ls21{letter-spacing:25.200000px;}
.ls23{letter-spacing:53.758560px;}
.ls1c{letter-spacing:71.424000px;}
.ls20{letter-spacing:82.558560px;}
.ls17{letter-spacing:597.156000px;}
.lse{letter-spacing:676.356000px;}
.ls1e{letter-spacing:693.636000px;}
.ls11{letter-spacing:752.676000px;}
.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:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.wsd{word-spacing:-21.332160px;}
.ws8{word-spacing:-20.880000px;}
.ws4{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.172000px;}
.wsb{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws16{word-spacing:-15.857346px;}
.ws5{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.791820px;}
.ws10{word-spacing:-15.256517px;}
.ws11{word-spacing:-15.193474px;}
.ws7{word-spacing:-15.140160px;}
.wse{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.613000px;}
.ws1b{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.166000px;}
.ws1c{word-spacing:-13.698000px;}
.ws1d{word-spacing:-13.680000px;}
.ws18{word-spacing:-13.484314px;}
.ws19{word-spacing:-13.428594px;}
.ws9{word-spacing:0.000000px;}
.wsf{word-spacing:452.639943px;}
.ws17{word-spacing:457.153455px;}
.ws1a{word-spacing:467.502722px;}
.ws12{word-spacing:477.644493px;}
.ws13{word-spacing:504.842340px;}
.ws15{word-spacing:510.358076px;}
._d{margin-left:-4.415040px;}
._2{margin-left:-3.205440px;}
._0{margin-left:-1.995840px;}
._1{width:1.572480px;}
._4{width:3.017760px;}
._12{width:4.043520px;}
._3{width:5.045280px;}
._8{width:6.289920px;}
._7{width:7.801920px;}
._5{width:8.830080px;}
._6{width:10.221120px;}
._f{width:11.430720px;}
._10{width:12.649920px;}
._14{width:13.936320px;}
._13{width:15.261120px;}
._1e{width:16.304160px;}
._9{width:17.357760px;}
._a{width:18.385920px;}
._11{width:20.255040px;}
._16{width:22.003680px;}
._15{width:23.788800px;}
._e{width:25.044960px;}
._c{width:26.127360px;}
._b{width:27.336960px;}
._1a{width:28.586400px;}
._1d{width:30.447360px;}
._1c{width:31.564800px;}
._17{width:33.261120px;}
._18{width:36.043200px;}
._19{width:37.272960px;}
._1b{width:45.433440px;}
._22{width:71.015040px;}
._20{width:72.213120px;}
._1f{width:73.301760px;}
._21{width:74.452320px;}
._24{width:75.583200px;}
._23{width:76.628160px;}
._25{width:81.771840px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs4{font-size:50.400000px;}
.fsf{font-size:53.714374px;}
.fse{font-size:53.937255px;}
.fs10{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fsa{font-size:60.773896px;}
.fsb{font-size:61.026070px;}
.fsd{font-size:63.167280px;}
.fs8{font-size:63.360000px;}
.fsc{font-size:63.429385px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs9{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.yfb{bottom:3.240000px;}
.y81{bottom:3.600000px;}
.yfd{bottom:3.645000px;}
.y99{bottom:4.320000px;}
.y7f{bottom:5.400000px;}
.y7d{bottom:7.200000px;}
.y84{bottom:7.560000px;}
.yf0{bottom:9.306862px;}
.yd2{bottom:9.943971px;}
.yd0{bottom:10.196145px;}
.ye3{bottom:10.551409px;}
.ye5{bottom:10.879026px;}
.yee{bottom:12.705807px;}
.yfa{bottom:20.520000px;}
.y101{bottom:20.880000px;}
.y2{bottom:111.276000px;}
.yf5{bottom:138.636000px;}
.y67{bottom:144.756000px;}
.y89{bottom:145.116000px;}
.y33{bottom:146.196000px;}
.y116{bottom:146.556000px;}
.yb1{bottom:149.076000px;}
.ycb{bottom:151.590000px;}
.ye0{bottom:154.830000px;}
.yf4{bottom:157.350000px;}
.y146{bottom:160.230000px;}
.y66{bottom:163.830000px;}
.y88{bottom:164.190000px;}
.y32{bottom:165.270000px;}
.y115{bottom:165.630000px;}
.yca{bottom:170.670000px;}
.yef{bottom:171.786373px;}
.ydf{bottom:173.910000px;}
.yf3{bottom:174.630000px;}
.yed{bottom:174.683843px;}
.y145{bottom:177.150000px;}
.yd1{bottom:182.304036px;}
.ycf{bottom:182.430123px;}
.y65{bottom:182.910000px;}
.y31{bottom:183.990000px;}
.y114{bottom:184.350000px;}
.yb0{bottom:185.430000px;}
.yc9{bottom:189.750000px;}
.ye4{bottom:190.290076px;}
.yde{bottom:192.990000px;}
.ye2{bottom:193.042205px;}
.y144{bottom:194.475000px;}
.yaf{bottom:200.235000px;}
.y64{bottom:202.035000px;}
.y30{bottom:203.115000px;}
.y113{bottom:203.475000px;}
.yc8{bottom:208.875000px;}
.yf2{bottom:209.595000px;}
.y143{bottom:211.755000px;}
.ydd{bottom:212.115000px;}
.y87{bottom:219.315000px;}
.y63{bottom:220.755000px;}
.y2f{bottom:222.195000px;}
.y112{bottom:222.555000px;}
.yf1{bottom:224.355000px;}
.yec{bottom:225.303429px;}
.yc7{bottom:227.595000px;}
.y142{bottom:229.035000px;}
.ydc{bottom:230.835000px;}
.y86{bottom:234.435000px;}
.y62{bottom:239.835000px;}
.y2e{bottom:240.915000px;}
.y111{bottom:241.275000px;}
.y141{bottom:246.315000px;}
.yc6{bottom:246.675000px;}
.ydb{bottom:249.915000px;}
.y61{bottom:258.915000px;}
.y2d{bottom:259.995000px;}
.y110{bottom:260.355000px;}
.y140{bottom:263.595000px;}
.yc5{bottom:265.755000px;}
.yda{bottom:268.995000px;}
.y60{bottom:277.635000px;}
.y2c{bottom:279.075000px;}
.y10f{bottom:279.435000px;}
.y13f{bottom:280.875000px;}
.yc4{bottom:284.475000px;}
.yd9{bottom:287.715000px;}
.y5f{bottom:296.715000px;}
.y2b{bottom:298.155000px;}
.y10e{bottom:298.515000px;}
.yc3{bottom:303.555000px;}
.yd8{bottom:306.795000px;}
.y13e{bottom:315.435000px;}
.y5e{bottom:315.795000px;}
.y2a{bottom:316.875000px;}
.y10d{bottom:317.235000px;}
.yc2{bottom:322.665000px;}
.yd7{bottom:325.905000px;}
.y13d{bottom:332.745000px;}
.y5d{bottom:334.545000px;}
.y29{bottom:335.985000px;}
.y10c{bottom:336.345000px;}
.yc1{bottom:341.385000px;}
.yd6{bottom:346.425000px;}
.y13c{bottom:350.025000px;}
.y5c{bottom:353.625000px;}
.y28{bottom:355.065000px;}
.y10b{bottom:355.425000px;}
.yc0{bottom:360.465000px;}
.yd5{bottom:365.145000px;}
.y13b{bottom:366.945000px;}
.y5b{bottom:372.705000px;}
.y27{bottom:373.785000px;}
.y10a{bottom:374.145000px;}
.ybf{bottom:379.545000px;}
.yd4{bottom:382.425000px;}
.y13a{bottom:384.225000px;}
.y5a{bottom:391.785000px;}
.y26{bottom:392.865000px;}
.y109{bottom:393.225000px;}
.ybe{bottom:398.625000px;}
.y139{bottom:401.505000px;}
.yae{bottom:407.625000px;}
.y59{bottom:410.505000px;}
.y25{bottom:411.945000px;}
.y108{bottom:412.305000px;}
.ybd{bottom:417.345000px;}
.y138{bottom:418.785000px;}
.yad{bottom:426.705000px;}
.y58{bottom:429.585000px;}
.y24{bottom:430.665000px;}
.y107{bottom:431.385000px;}
.yd3{bottom:432.105000px;}
.yce{bottom:432.150000px;}
.y137{bottom:436.065000px;}
.ybc{bottom:436.425000px;}
.yac{bottom:445.785000px;}
.y57{bottom:448.710000px;}
.y23{bottom:449.790000px;}
.y106{bottom:450.870000px;}
.y136{bottom:453.390000px;}
.ybb{bottom:455.550000px;}
.yab{bottom:464.550000px;}
.y56{bottom:467.430000px;}
.y22{bottom:469.590000px;}
.y135{bottom:470.670000px;}
.yba{bottom:474.270000px;}
.yaa{bottom:483.630000px;}
.y55{bottom:486.510000px;}
.y134{bottom:487.950000px;}
.y21{bottom:492.630000px;}
.y105{bottom:492.990000px;}
.yb9{bottom:493.350000px;}
.ya9{bottom:502.710000px;}
.y133{bottom:505.230000px;}
.y54{bottom:505.590000px;}
.y20{bottom:509.910000px;}
.y104{bottom:510.270000px;}
.yb8{bottom:512.430000px;}
.ya8{bottom:521.430000px;}
.y132{bottom:522.510000px;}
.y103{bottom:523.950000px;}
.y53{bottom:524.310000px;}
.y1f{bottom:527.550000px;}
.yb7{bottom:531.510000px;}
.y131{bottom:539.790000px;}
.ya7{bottom:540.510000px;}
.y52{bottom:543.390000px;}
.y1e{bottom:546.990000px;}
.yeb{bottom:547.710000px;}
.yb6{bottom:550.590000px;}
.y130{bottom:557.070000px;}
.ya6{bottom:559.590000px;}
.y51{bottom:562.470000px;}
.yea{bottom:566.430000px;}
.y1d{bottom:568.950000px;}
.yb5{bottom:571.110000px;}
.y12f{bottom:574.020000px;}
.ya5{bottom:578.340000px;}
.y50{bottom:581.580000px;}
.ye9{bottom:583.740000px;}
.y1c{bottom:587.340000px;}
.yb4{bottom:589.500000px;}
.y12e{bottom:591.300000px;}
.ya4{bottom:597.420000px;}
.y4f{bottom:600.300000px;}
.ye8{bottom:601.020000px;}
.y85{bottom:602.820000px;}
.y1b{bottom:604.620000px;}
.yb3{bottom:607.140000px;}
.y12d{bottom:608.580000px;}
.ya3{bottom:616.500000px;}
.ye7{bottom:618.660000px;}
.y4e{bottom:619.380000px;}
.y83{bottom:620.820000px;}
.y1a{bottom:621.900000px;}
.yb2{bottom:622.260000px;}
.y12c{bottom:625.860000px;}
.ye6{bottom:633.780000px;}
.ye1{bottom:634.696866px;}
.ya2{bottom:635.580000px;}
.y4d{bottom:638.460000px;}
.y19{bottom:639.180000px;}
.y82{bottom:642.780000px;}
.y12b{bottom:643.140000px;}
.ya1{bottom:654.300000px;}
.y18{bottom:656.460000px;}
.y4c{bottom:657.180000px;}
.y12a{bottom:660.420000px;}
.y80{bottom:664.380000px;}
.ya0{bottom:673.380000px;}
.y17{bottom:673.740000px;}
.y4b{bottom:676.260000px;}
.y129{bottom:677.700000px;}
.y7e{bottom:682.380000px;}
.y16{bottom:691.020000px;}
.y9f{bottom:692.460000px;}
.y128{bottom:694.980000px;}
.y4a{bottom:695.340000px;}
.y7c{bottom:702.210000px;}
.y15{bottom:708.330000px;}
.y9e{bottom:711.930000px;}
.y127{bottom:712.290000px;}
.y49{bottom:714.450000px;}
.y14{bottom:725.610000px;}
.y7b{bottom:728.130000px;}
.y126{bottom:729.570000px;}
.y48{bottom:733.170000px;}
.y9d{bottom:735.330000px;}
.y102{bottom:737.490000px;}
.y13{bottom:742.890000px;}
.y125{bottom:746.850000px;}
.y9c{bottom:751.170000px;}
.y47{bottom:752.250000px;}
.y100{bottom:752.970000px;}
.y12{bottom:760.170000px;}
.y124{bottom:763.770000px;}
.y7a{bottom:764.130000px;}
.y9b{bottom:769.170000px;}
.y46{bottom:771.330000px;}
.y11{bottom:777.450000px;}
.y123{bottom:781.050000px;}
.y79{bottom:783.210000px;}
.y9a{bottom:787.170000px;}
.yff{bottom:788.250000px;}
.y45{bottom:790.050000px;}
.y10{bottom:794.370000px;}
.y122{bottom:798.330000px;}
.y78{bottom:802.290000px;}
.y98{bottom:805.170000px;}
.yfe{bottom:806.250000px;}
.y44{bottom:809.130000px;}
.yf{bottom:811.650000px;}
.y121{bottom:815.610000px;}
.y77{bottom:821.370000px;}
.yfc{bottom:824.250000px;}
.y43{bottom:828.255000px;}
.ye{bottom:829.335000px;}
.y120{bottom:832.935000px;}
.y76{bottom:840.135000px;}
.yf9{bottom:842.295000px;}
.y42{bottom:846.975000px;}
.yd{bottom:848.775000px;}
.y11f{bottom:850.215000px;}
.y75{bottom:859.215000px;}
.y97{bottom:864.255000px;}
.y41{bottom:866.055000px;}
.y11e{bottom:867.495000px;}
.yc{bottom:870.375000px;}
.y74{bottom:878.295000px;}
.yf8{bottom:881.535000px;}
.y96{bottom:883.335000px;}
.y11d{bottom:884.775000px;}
.y40{bottom:885.135000px;}
.yb{bottom:890.175000px;}
.y73{bottom:897.015000px;}
.y11c{bottom:902.055000px;}
.y95{bottom:902.415000px;}
.y3f{bottom:904.215000px;}
.y152{bottom:907.095000px;}
.ya{bottom:911.055000px;}
.y72{bottom:916.095000px;}
.yf7{bottom:917.895000px;}
.y11b{bottom:919.335000px;}
.y94{bottom:921.135000px;}
.y3e{bottom:922.935000px;}
.y151{bottom:924.375000px;}
.y71{bottom:935.175000px;}
.y11a{bottom:936.615000px;}
.yf6{bottom:936.975000px;}
.y9{bottom:938.415000px;}
.y93{bottom:940.215000px;}
.y150{bottom:941.655000px;}
.y3d{bottom:942.015000px;}
.y8{bottom:952.845000px;}
.y119{bottom:953.925000px;}
.y70{bottom:954.285000px;}
.ycd{bottom:955.725000px;}
.y14f{bottom:958.965000px;}
.y92{bottom:959.325000px;}
.y3c{bottom:961.125000px;}
.y6f{bottom:973.365000px;}
.ycc{bottom:974.805000px;}
.y7{bottom:975.165000px;}
.y14e{bottom:976.245000px;}
.y91{bottom:978.405000px;}
.y3b{bottom:979.845000px;}
.y118{bottom:993.525000px;}
.y6e{bottom:993.885000px;}
.y90{bottom:997.125000px;}
.y3a{bottom:998.925000px;}
.y6{bottom:1000.725000px;}
.y14d{bottom:1010.805000px;}
.y6d{bottom:1012.605000px;}
.y8f{bottom:1016.205000px;}
.y39{bottom:1018.005000px;}
.y14c{bottom:1028.085000px;}
.y6c{bottom:1031.685000px;}
.y5{bottom:1034.565000px;}
.y8e{bottom:1035.285000px;}
.y38{bottom:1036.725000px;}
.y14b{bottom:1045.005000px;}
.y6b{bottom:1050.765000px;}
.y117{bottom:1051.485000px;}
.y8d{bottom:1054.005000px;}
.y37{bottom:1055.805000px;}
.y14a{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y6a{bottom:1069.845000px;}
.y8c{bottom:1073.085000px;}
.y36{bottom:1074.885000px;}
.y149{bottom:1079.610000px;}
.y69{bottom:1088.610000px;}
.y8b{bottom:1092.210000px;}
.y35{bottom:1094.010000px;}
.y148{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y68{bottom:1108.410000px;}
.y8a{bottom:1111.290000px;}
.y34{bottom:1112.730000px;}
.y147{bottom:1114.170000px;}
.y1{bottom:1141.170000px;}
.h12{height:17.280000px;}
.h21{height:17.316000px;}
.h14{height:18.360000px;}
.h11{height:19.116000px;}
.h13{height:20.880000px;}
.hf{height:21.240000px;}
.h20{height:34.560000px;}
.h6{height:46.638281px;}
.hc{height:49.848750px;}
.h1e{height:52.717721px;}
.h1d{height:52.936467px;}
.hb{height:59.328281px;}
.h2{height:59.357813px;}
.h17{height:59.646255px;}
.h18{height:59.893750px;}
.h1f{height:60.072801px;}
.h10{height:60.952500px;}
.h1b{height:61.995231px;}
.h23{height:62.163910px;}
.h1a{height:62.252473px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.h7{height:70.664062px;}
.h15{height:72.562500px;}
.he{height:74.953125px;}
.h9{height:76.279219px;}
.h4{height:76.317188px;}
.h5{height:76.824844px;}
.h3{height:80.944453px;}
.h22{height:84.172500px;}
.hd{height:86.945625px;}
.h1c{height:317.605760px;}
.h16{height:346.153234px;}
.h19{height:357.773226px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:95.076000px;}
.wf{width:118.116000px;}
.we{width:118.476000px;}
.w7{width:120.276000px;}
.w9{width:137.556000px;}
.w6{width:141.552000px;}
.wd{width:144.072000px;}
.w3{width:163.515000px;}
.w5{width:169.635000px;}
.w4{width:212.115000px;}
.wc{width:394.300310px;}
.wa{width:406.955912px;}
.wb{width:428.854392px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xd{left:7.920000px;}
.x2a{left:51.181511px;}
.x21{left:53.377805px;}
.x29{left:54.745797px;}
.x19{left:55.775529px;}
.x1a{left:57.163606px;}
.x20{left:59.672905px;}
.xa{left:123.155987px;}
.x2{left:125.315987px;}
.x26{left:127.475987px;}
.x25{left:129.275987px;}
.x8{left:148.751987px;}
.x4{left:152.714987px;}
.x32{left:165.674987px;}
.xc{left:173.235000px;}
.x1{left:174.314987px;}
.x1c{left:190.733470px;}
.x2e{left:195.915000px;}
.x11{left:198.435000px;}
.x23{left:203.411261px;}
.x5{left:225.434987px;}
.x2d{left:228.674987px;}
.x1f{left:232.003666px;}
.x18{left:243.139003px;}
.x28{left:249.470631px;}
.x27{left:258.944987px;}
.x7{left:276.584987px;}
.x6{left:286.304987px;}
.x17{left:289.544987px;}
.x31{left:297.464987px;}
.x2b{left:325.977615px;}
.x1b{left:335.105006px;}
.xe{left:337.470000px;}
.x12{left:340.710000px;}
.x22{left:353.261100px;}
.x1e{left:364.829987px;}
.x9{left:372.029987px;}
.x3{left:446.579987px;}
.x2f{left:459.900000px;}
.x13{left:461.700000px;}
.xf{left:550.290000px;}
.x14{left:557.490000px;}
.x30{left:579.090000px;}
.x16{left:625.934987px;}
.x2c{left:644.654987px;}
.x1d{left:651.134987px;}
.x24{left:661.934987px;}
.x10{left:676.334987px;}
.x33{left:754.844987px;}
.xb{left:762.404987px;}
.x15{left:769.244987px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v2{vertical-align:-61.440000pt;}
.v4{vertical-align:-12.552654pt;}
.v5{vertical-align:-4.892625pt;}
.v6{vertical-align:-2.562803pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:6.537849pt;}
.v1{vertical-align:24.320000pt;}
.ls1d{letter-spacing:-2.560000pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-0.848000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.030720pt;}
.ls24{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.135467pt;}
.ls1f{letter-spacing:0.158720pt;}
.ls2{letter-spacing:0.168960pt;}
.ls1a{letter-spacing:0.169387pt;}
.ls0{letter-spacing:0.226560pt;}
.ls14{letter-spacing:0.271360pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.328960pt;}
.ls15{letter-spacing:0.401920pt;}
.lsb{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.560640pt;}
.ls7{letter-spacing:0.571307pt;}
.ls5{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.730027pt;}
.ls10{letter-spacing:0.737280pt;}
.ls16{letter-spacing:0.826027pt;}
.lsc{letter-spacing:1.608107pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls28{letter-spacing:5.760000pt;}
.ls25{letter-spacing:12.160000pt;}
.ls22{letter-spacing:21.120000pt;}
.ls21{letter-spacing:22.400000pt;}
.ls23{letter-spacing:47.785387pt;}
.ls1c{letter-spacing:63.488000pt;}
.ls20{letter-spacing:73.385387pt;}
.ls17{letter-spacing:530.805333pt;}
.lse{letter-spacing:601.205333pt;}
.ls1e{letter-spacing:616.565333pt;}
.ls11{letter-spacing:669.045333pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.wsd{word-spacing:-18.961920pt;}
.ws8{word-spacing:-18.560000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.264000pt;}
.wsb{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.095419pt;}
.ws5{word-spacing:-14.080000pt;}
.ws14{word-spacing:-14.037173pt;}
.ws10{word-spacing:-13.561349pt;}
.ws11{word-spacing:-13.505310pt;}
.ws7{word-spacing:-13.457920pt;}
.wse{word-spacing:-13.440000pt;}
.wsc{word-spacing:-12.989333pt;}
.ws1b{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.592000pt;}
.ws1c{word-spacing:-12.176000pt;}
.ws1d{word-spacing:-12.160000pt;}
.ws18{word-spacing:-11.986057pt;}
.ws19{word-spacing:-11.936528pt;}
.ws9{word-spacing:0.000000pt;}
.wsf{word-spacing:402.346616pt;}
.ws17{word-spacing:406.358627pt;}
.ws1a{word-spacing:415.557975pt;}
.ws12{word-spacing:424.572882pt;}
.ws13{word-spacing:448.748747pt;}
.ws15{word-spacing:453.651623pt;}
._d{margin-left:-3.924480pt;}
._2{margin-left:-2.849280pt;}
._0{margin-left:-1.774080pt;}
._1{width:1.397760pt;}
._4{width:2.682453pt;}
._12{width:3.594240pt;}
._3{width:4.484693pt;}
._8{width:5.591040pt;}
._7{width:6.935040pt;}
._5{width:7.848960pt;}
._6{width:9.085440pt;}
._f{width:10.160640pt;}
._10{width:11.244373pt;}
._14{width:12.387840pt;}
._13{width:13.565440pt;}
._1e{width:14.492587pt;}
._9{width:15.429120pt;}
._a{width:16.343040pt;}
._11{width:18.004480pt;}
._16{width:19.558827pt;}
._15{width:21.145600pt;}
._e{width:22.262187pt;}
._c{width:23.224320pt;}
._b{width:24.299520pt;}
._1a{width:25.410133pt;}
._1d{width:27.064320pt;}
._1c{width:28.057600pt;}
._17{width:29.565440pt;}
._18{width:32.038400pt;}
._19{width:33.131520pt;}
._1b{width:40.385280pt;}
._22{width:63.124480pt;}
._20{width:64.189440pt;}
._1f{width:65.157120pt;}
._21{width:66.179840pt;}
._24{width:67.185067pt;}
._23{width:68.113920pt;}
._25{width:72.686080pt;}
.fs5{font-size:42.240000pt;}
.fs4{font-size:44.800000pt;}
.fsf{font-size:47.746110pt;}
.fse{font-size:47.944227pt;}
.fs10{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fsa{font-size:54.021241pt;}
.fsb{font-size:54.245395pt;}
.fsd{font-size:56.148694pt;}
.fs8{font-size:56.320000pt;}
.fsc{font-size:56.381676pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs9{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:2.880000pt;}
.y81{bottom:3.200000pt;}
.yfd{bottom:3.240000pt;}
.y99{bottom:3.840000pt;}
.y7f{bottom:4.800000pt;}
.y7d{bottom:6.400000pt;}
.y84{bottom:6.720000pt;}
.yf0{bottom:8.272766pt;}
.yd2{bottom:8.839085pt;}
.yd0{bottom:9.063240pt;}
.ye3{bottom:9.379030pt;}
.ye5{bottom:9.670245pt;}
.yee{bottom:11.294051pt;}
.yfa{bottom:18.240000pt;}
.y101{bottom:18.560000pt;}
.y2{bottom:98.912000pt;}
.yf5{bottom:123.232000pt;}
.y67{bottom:128.672000pt;}
.y89{bottom:128.992000pt;}
.y33{bottom:129.952000pt;}
.y116{bottom:130.272000pt;}
.yb1{bottom:132.512000pt;}
.ycb{bottom:134.746667pt;}
.ye0{bottom:137.626667pt;}
.yf4{bottom:139.866667pt;}
.y146{bottom:142.426667pt;}
.y66{bottom:145.626667pt;}
.y88{bottom:145.946667pt;}
.y32{bottom:146.906667pt;}
.y115{bottom:147.226667pt;}
.yca{bottom:151.706667pt;}
.yef{bottom:152.698998pt;}
.ydf{bottom:154.586667pt;}
.yf3{bottom:155.226667pt;}
.yed{bottom:155.274527pt;}
.y145{bottom:157.466667pt;}
.yd1{bottom:162.048032pt;}
.ycf{bottom:162.160109pt;}
.y65{bottom:162.586667pt;}
.y31{bottom:163.546667pt;}
.y114{bottom:163.866667pt;}
.yb0{bottom:164.826667pt;}
.yc9{bottom:168.666667pt;}
.ye4{bottom:169.146734pt;}
.yde{bottom:171.546667pt;}
.ye2{bottom:171.593071pt;}
.y144{bottom:172.866667pt;}
.yaf{bottom:177.986667pt;}
.y64{bottom:179.586667pt;}
.y30{bottom:180.546667pt;}
.y113{bottom:180.866667pt;}
.yc8{bottom:185.666667pt;}
.yf2{bottom:186.306667pt;}
.y143{bottom:188.226667pt;}
.ydd{bottom:188.546667pt;}
.y87{bottom:194.946667pt;}
.y63{bottom:196.226667pt;}
.y2f{bottom:197.506667pt;}
.y112{bottom:197.826667pt;}
.yf1{bottom:199.426667pt;}
.yec{bottom:200.269715pt;}
.yc7{bottom:202.306667pt;}
.y142{bottom:203.586667pt;}
.ydc{bottom:205.186667pt;}
.y86{bottom:208.386667pt;}
.y62{bottom:213.186667pt;}
.y2e{bottom:214.146667pt;}
.y111{bottom:214.466667pt;}
.y141{bottom:218.946667pt;}
.yc6{bottom:219.266667pt;}
.ydb{bottom:222.146667pt;}
.y61{bottom:230.146667pt;}
.y2d{bottom:231.106667pt;}
.y110{bottom:231.426667pt;}
.y140{bottom:234.306667pt;}
.yc5{bottom:236.226667pt;}
.yda{bottom:239.106667pt;}
.y60{bottom:246.786667pt;}
.y2c{bottom:248.066667pt;}
.y10f{bottom:248.386667pt;}
.y13f{bottom:249.666667pt;}
.yc4{bottom:252.866667pt;}
.yd9{bottom:255.746667pt;}
.y5f{bottom:263.746667pt;}
.y2b{bottom:265.026667pt;}
.y10e{bottom:265.346667pt;}
.yc3{bottom:269.826667pt;}
.yd8{bottom:272.706667pt;}
.y13e{bottom:280.386667pt;}
.y5e{bottom:280.706667pt;}
.y2a{bottom:281.666667pt;}
.y10d{bottom:281.986667pt;}
.yc2{bottom:286.813333pt;}
.yd7{bottom:289.693333pt;}
.y13d{bottom:295.773333pt;}
.y5d{bottom:297.373333pt;}
.y29{bottom:298.653333pt;}
.y10c{bottom:298.973333pt;}
.yc1{bottom:303.453333pt;}
.yd6{bottom:307.933333pt;}
.y13c{bottom:311.133333pt;}
.y5c{bottom:314.333333pt;}
.y28{bottom:315.613333pt;}
.y10b{bottom:315.933333pt;}
.yc0{bottom:320.413333pt;}
.yd5{bottom:324.573333pt;}
.y13b{bottom:326.173333pt;}
.y5b{bottom:331.293333pt;}
.y27{bottom:332.253333pt;}
.y10a{bottom:332.573333pt;}
.ybf{bottom:337.373333pt;}
.yd4{bottom:339.933333pt;}
.y13a{bottom:341.533333pt;}
.y5a{bottom:348.253333pt;}
.y26{bottom:349.213333pt;}
.y109{bottom:349.533333pt;}
.ybe{bottom:354.333333pt;}
.y139{bottom:356.893333pt;}
.yae{bottom:362.333333pt;}
.y59{bottom:364.893333pt;}
.y25{bottom:366.173333pt;}
.y108{bottom:366.493333pt;}
.ybd{bottom:370.973333pt;}
.y138{bottom:372.253333pt;}
.yad{bottom:379.293333pt;}
.y58{bottom:381.853333pt;}
.y24{bottom:382.813333pt;}
.y107{bottom:383.453333pt;}
.yd3{bottom:384.093333pt;}
.yce{bottom:384.133333pt;}
.y137{bottom:387.613333pt;}
.ybc{bottom:387.933333pt;}
.yac{bottom:396.253333pt;}
.y57{bottom:398.853333pt;}
.y23{bottom:399.813333pt;}
.y106{bottom:400.773333pt;}
.y136{bottom:403.013333pt;}
.ybb{bottom:404.933333pt;}
.yab{bottom:412.933333pt;}
.y56{bottom:415.493333pt;}
.y22{bottom:417.413333pt;}
.y135{bottom:418.373333pt;}
.yba{bottom:421.573333pt;}
.yaa{bottom:429.893333pt;}
.y55{bottom:432.453333pt;}
.y134{bottom:433.733333pt;}
.y21{bottom:437.893333pt;}
.y105{bottom:438.213333pt;}
.yb9{bottom:438.533333pt;}
.ya9{bottom:446.853333pt;}
.y133{bottom:449.093333pt;}
.y54{bottom:449.413333pt;}
.y20{bottom:453.253333pt;}
.y104{bottom:453.573333pt;}
.yb8{bottom:455.493333pt;}
.ya8{bottom:463.493333pt;}
.y132{bottom:464.453333pt;}
.y103{bottom:465.733333pt;}
.y53{bottom:466.053333pt;}
.y1f{bottom:468.933333pt;}
.yb7{bottom:472.453333pt;}
.y131{bottom:479.813333pt;}
.ya7{bottom:480.453333pt;}
.y52{bottom:483.013333pt;}
.y1e{bottom:486.213333pt;}
.yeb{bottom:486.853333pt;}
.yb6{bottom:489.413333pt;}
.y130{bottom:495.173333pt;}
.ya6{bottom:497.413333pt;}
.y51{bottom:499.973333pt;}
.yea{bottom:503.493333pt;}
.y1d{bottom:505.733333pt;}
.yb5{bottom:507.653333pt;}
.y12f{bottom:510.240000pt;}
.ya5{bottom:514.080000pt;}
.y50{bottom:516.960000pt;}
.ye9{bottom:518.880000pt;}
.y1c{bottom:522.080000pt;}
.yb4{bottom:524.000000pt;}
.y12e{bottom:525.600000pt;}
.ya4{bottom:531.040000pt;}
.y4f{bottom:533.600000pt;}
.ye8{bottom:534.240000pt;}
.y85{bottom:535.840000pt;}
.y1b{bottom:537.440000pt;}
.yb3{bottom:539.680000pt;}
.y12d{bottom:540.960000pt;}
.ya3{bottom:548.000000pt;}
.ye7{bottom:549.920000pt;}
.y4e{bottom:550.560000pt;}
.y83{bottom:551.840000pt;}
.y1a{bottom:552.800000pt;}
.yb2{bottom:553.120000pt;}
.y12c{bottom:556.320000pt;}
.ye6{bottom:563.360000pt;}
.ye1{bottom:564.174992pt;}
.ya2{bottom:564.960000pt;}
.y4d{bottom:567.520000pt;}
.y19{bottom:568.160000pt;}
.y82{bottom:571.360000pt;}
.y12b{bottom:571.680000pt;}
.ya1{bottom:581.600000pt;}
.y18{bottom:583.520000pt;}
.y4c{bottom:584.160000pt;}
.y12a{bottom:587.040000pt;}
.y80{bottom:590.560000pt;}
.ya0{bottom:598.560000pt;}
.y17{bottom:598.880000pt;}
.y4b{bottom:601.120000pt;}
.y129{bottom:602.400000pt;}
.y7e{bottom:606.560000pt;}
.y16{bottom:614.240000pt;}
.y9f{bottom:615.520000pt;}
.y128{bottom:617.760000pt;}
.y4a{bottom:618.080000pt;}
.y7c{bottom:624.186667pt;}
.y15{bottom:629.626667pt;}
.y9e{bottom:632.826667pt;}
.y127{bottom:633.146667pt;}
.y49{bottom:635.066667pt;}
.y14{bottom:644.986667pt;}
.y7b{bottom:647.226667pt;}
.y126{bottom:648.506667pt;}
.y48{bottom:651.706667pt;}
.y9d{bottom:653.626667pt;}
.y102{bottom:655.546667pt;}
.y13{bottom:660.346667pt;}
.y125{bottom:663.866667pt;}
.y9c{bottom:667.706667pt;}
.y47{bottom:668.666667pt;}
.y100{bottom:669.306667pt;}
.y12{bottom:675.706667pt;}
.y124{bottom:678.906667pt;}
.y7a{bottom:679.226667pt;}
.y9b{bottom:683.706667pt;}
.y46{bottom:685.626667pt;}
.y11{bottom:691.066667pt;}
.y123{bottom:694.266667pt;}
.y79{bottom:696.186667pt;}
.y9a{bottom:699.706667pt;}
.yff{bottom:700.666667pt;}
.y45{bottom:702.266667pt;}
.y10{bottom:706.106667pt;}
.y122{bottom:709.626667pt;}
.y78{bottom:713.146667pt;}
.y98{bottom:715.706667pt;}
.yfe{bottom:716.666667pt;}
.y44{bottom:719.226667pt;}
.yf{bottom:721.466667pt;}
.y121{bottom:724.986667pt;}
.y77{bottom:730.106667pt;}
.yfc{bottom:732.666667pt;}
.y43{bottom:736.226667pt;}
.ye{bottom:737.186667pt;}
.y120{bottom:740.386667pt;}
.y76{bottom:746.786667pt;}
.yf9{bottom:748.706667pt;}
.y42{bottom:752.866667pt;}
.yd{bottom:754.466667pt;}
.y11f{bottom:755.746667pt;}
.y75{bottom:763.746667pt;}
.y97{bottom:768.226667pt;}
.y41{bottom:769.826667pt;}
.y11e{bottom:771.106667pt;}
.yc{bottom:773.666667pt;}
.y74{bottom:780.706667pt;}
.yf8{bottom:783.586667pt;}
.y96{bottom:785.186667pt;}
.y11d{bottom:786.466667pt;}
.y40{bottom:786.786667pt;}
.yb{bottom:791.266667pt;}
.y73{bottom:797.346667pt;}
.y11c{bottom:801.826667pt;}
.y95{bottom:802.146667pt;}
.y3f{bottom:803.746667pt;}
.y152{bottom:806.306667pt;}
.ya{bottom:809.826667pt;}
.y72{bottom:814.306667pt;}
.yf7{bottom:815.906667pt;}
.y11b{bottom:817.186667pt;}
.y94{bottom:818.786667pt;}
.y3e{bottom:820.386667pt;}
.y151{bottom:821.666667pt;}
.y71{bottom:831.266667pt;}
.y11a{bottom:832.546667pt;}
.yf6{bottom:832.866667pt;}
.y9{bottom:834.146667pt;}
.y93{bottom:835.746667pt;}
.y150{bottom:837.026667pt;}
.y3d{bottom:837.346667pt;}
.y8{bottom:846.973333pt;}
.y119{bottom:847.933333pt;}
.y70{bottom:848.253333pt;}
.ycd{bottom:849.533333pt;}
.y14f{bottom:852.413333pt;}
.y92{bottom:852.733333pt;}
.y3c{bottom:854.333333pt;}
.y6f{bottom:865.213333pt;}
.ycc{bottom:866.493333pt;}
.y7{bottom:866.813333pt;}
.y14e{bottom:867.773333pt;}
.y91{bottom:869.693333pt;}
.y3b{bottom:870.973333pt;}
.y118{bottom:883.133333pt;}
.y6e{bottom:883.453333pt;}
.y90{bottom:886.333333pt;}
.y3a{bottom:887.933333pt;}
.y6{bottom:889.533333pt;}
.y14d{bottom:898.493333pt;}
.y6d{bottom:900.093333pt;}
.y8f{bottom:903.293333pt;}
.y39{bottom:904.893333pt;}
.y14c{bottom:913.853333pt;}
.y6c{bottom:917.053333pt;}
.y5{bottom:919.613333pt;}
.y8e{bottom:920.253333pt;}
.y38{bottom:921.533333pt;}
.y14b{bottom:928.893333pt;}
.y6b{bottom:934.013333pt;}
.y117{bottom:934.653333pt;}
.y8d{bottom:936.893333pt;}
.y37{bottom:938.493333pt;}
.y14a{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y6a{bottom:950.973333pt;}
.y8c{bottom:953.853333pt;}
.y36{bottom:955.453333pt;}
.y149{bottom:959.653333pt;}
.y69{bottom:967.653333pt;}
.y8b{bottom:970.853333pt;}
.y35{bottom:972.453333pt;}
.y148{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y68{bottom:985.253333pt;}
.y8a{bottom:987.813333pt;}
.y34{bottom:989.093333pt;}
.y147{bottom:990.373333pt;}
.y1{bottom:1014.373333pt;}
.h12{height:15.360000pt;}
.h21{height:15.392000pt;}
.h14{height:16.320000pt;}
.h11{height:16.992000pt;}
.h13{height:18.560000pt;}
.hf{height:18.880000pt;}
.h20{height:30.720000pt;}
.h6{height:41.456250pt;}
.hc{height:44.310000pt;}
.h1e{height:46.860196pt;}
.h1d{height:47.054637pt;}
.hb{height:52.736250pt;}
.h2{height:52.762500pt;}
.h17{height:53.018894pt;}
.h18{height:53.238889pt;}
.h1f{height:53.398045pt;}
.h10{height:54.180000pt;}
.h1b{height:55.106872pt;}
.h23{height:55.256809pt;}
.h1a{height:55.335531pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.h7{height:62.812500pt;}
.h15{height:64.500000pt;}
.he{height:66.625000pt;}
.h9{height:67.803750pt;}
.h4{height:67.837500pt;}
.h5{height:68.288750pt;}
.h3{height:71.950625pt;}
.h22{height:74.820000pt;}
.hd{height:77.285000pt;}
.h1c{height:282.316231pt;}
.h16{height:307.691763pt;}
.h19{height:318.020645pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:84.512000pt;}
.wf{width:104.992000pt;}
.we{width:105.312000pt;}
.w7{width:106.912000pt;}
.w9{width:122.272000pt;}
.w6{width:125.824000pt;}
.wd{width:128.064000pt;}
.w3{width:145.346667pt;}
.w5{width:150.786667pt;}
.w4{width:188.546667pt;}
.wc{width:350.489164pt;}
.wa{width:361.738589pt;}
.wb{width:381.203904pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xd{left:7.040000pt;}
.x2a{left:45.494677pt;}
.x21{left:47.446938pt;}
.x29{left:48.662931pt;}
.x19{left:49.578248pt;}
.x1a{left:50.812094pt;}
.x20{left:53.042582pt;}
.xa{left:109.471988pt;}
.x2{left:111.391988pt;}
.x26{left:113.311988pt;}
.x25{left:114.911988pt;}
.x8{left:132.223988pt;}
.x4{left:135.746655pt;}
.x32{left:147.266655pt;}
.xc{left:153.986667pt;}
.x1{left:154.946655pt;}
.x1c{left:169.540862pt;}
.x2e{left:174.146667pt;}
.x11{left:176.386667pt;}
.x23{left:180.810010pt;}
.x5{left:200.386655pt;}
.x2d{left:203.266655pt;}
.x1f{left:206.225481pt;}
.x18{left:216.123558pt;}
.x28{left:221.751672pt;}
.x27{left:230.173322pt;}
.x7{left:245.853322pt;}
.x6{left:254.493322pt;}
.x17{left:257.373322pt;}
.x31{left:264.413322pt;}
.x2b{left:289.757880pt;}
.x1b{left:297.871116pt;}
.xe{left:299.973333pt;}
.x12{left:302.853333pt;}
.x22{left:314.009867pt;}
.x1e{left:324.293322pt;}
.x9{left:330.693322pt;}
.x3{left:396.959988pt;}
.x2f{left:408.800000pt;}
.x13{left:410.400000pt;}
.xf{left:489.146667pt;}
.x14{left:495.546667pt;}
.x30{left:514.746667pt;}
.x16{left:556.386655pt;}
.x2c{left:573.026655pt;}
.x1d{left:578.786655pt;}
.x24{left:588.386655pt;}
.x10{left:601.186655pt;}
.x33{left:670.973322pt;}
.xb{left:677.693322pt;}
.x15{left:683.773322pt;}
}




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