
    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_8f14b7325b117529daf823f0.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_c327767461892685f46e40b1.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_246ebbf616dbe221409c99c0.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_a16bf6dbd90db5f16824488b.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_aebe982af5e4ded4cda21982.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_dc935c67d8bba4e8a5e4a8fd.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_98efe91bade88ff585d0fe61.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,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);}
.m4{transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-81.360000px;}
.v2{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.666000px;}
.ls23{letter-spacing:-0.513600px;}
.lsb{letter-spacing:-0.414600px;}
.ls30{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.262200px;}
.ls24{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.223800px;}
.ls5{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.127800px;}
.ls13{letter-spacing:-0.109200px;}
.ls29{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.111000px;}
.ls1e{letter-spacing:0.153600px;}
.ls32{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.460200px;}
.ls14{letter-spacing:0.463800px;}
.ls2e{letter-spacing:0.466800px;}
.ls22{letter-spacing:0.513600px;}
.ls10{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.828000px;}
.ls2d{letter-spacing:0.900000px;}
.ls26{letter-spacing:0.924000px;}
.ls2b{letter-spacing:1.020000px;}
.ls28{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.980000px;}
.ls19{letter-spacing:5.940000px;}
.ls18{letter-spacing:6.660000px;}
.ls20{letter-spacing:7.380000px;}
.ls1b{letter-spacing:10.260000px;}
.ls1f{letter-spacing:12.420000px;}
.ls2c{letter-spacing:15.300000px;}
.ls1a{letter-spacing:18.180000px;}
.ls2a{letter-spacing:18.642720px;}
.ls17{letter-spacing:48.882720px;}
.ls9{letter-spacing:86.681280px;}
.ls2{letter-spacing:454.296000px;}
.ls15{letter-spacing:998.796000px;}
.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;}
}
.ws12{word-spacing:-66.240000px;}
.ws28{word-spacing:-33.704640px;}
.ws4{word-spacing:-30.060000px;}
.ws2{word-spacing:-23.940000px;}
.ws3{word-spacing:-23.758800px;}
.ws8{word-spacing:-21.420000px;}
.ws5{word-spacing:-19.440000px;}
.ws17{word-spacing:-18.463800px;}
.wsf{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.872200px;}
.ws11{word-spacing:-17.776200px;}
.ws13{word-spacing:-17.172000px;}
.wsa{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.407600px;}
.ws18{word-spacing:-16.297800px;}
.ws15{word-spacing:-16.254600px;}
.wse{word-spacing:-16.145400px;}
.ws22{word-spacing:-16.020000px;}
.ws1f{word-spacing:-15.864000px;}
.ws6{word-spacing:-15.840000px;}
.ws2b{word-spacing:-15.768000px;}
.ws14{word-spacing:-15.732000px;}
.ws2a{word-spacing:-15.606000px;}
.ws25{word-spacing:-15.552000px;}
.ws1b{word-spacing:-15.453600px;}
.ws26{word-spacing:-15.406800px;}
.ws27{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.300000px;}
.ws24{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.146400px;}
.ws21{word-spacing:-15.093600px;}
.ws0{word-spacing:-14.993280px;}
.ws1a{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.886720px;}
.ws23{word-spacing:-14.833200px;}
.ws1d{word-spacing:-14.680200px;}
.ws29{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.426400px;}
.ws20{word-spacing:-14.274000px;}
.ws19{word-spacing:-14.220000px;}
.wsb{word-spacing:0.000000px;}
._21{margin-left:-9.617760px;}
._1f{margin-left:-8.201760px;}
._8{margin-left:-3.714480px;}
._9{margin-left:-2.211120px;}
._1{margin-left:-1.009680px;}
._0{width:1.049040px;}
._2{width:2.700000px;}
._4{width:4.256880px;}
._7{width:6.141360px;}
._a{width:7.239120px;}
._6{width:8.885520px;}
._5{width:10.159200px;}
._d{width:11.796960px;}
._e{width:13.416960px;}
._f{width:14.880960px;}
._20{width:16.158480px;}
._1c{width:17.586000px;}
._3{width:18.764640px;}
._10{width:19.808880px;}
._1b{width:20.969520px;}
._12{width:22.054320px;}
._11{width:23.720400px;}
._15{width:24.739200px;}
._b{width:26.032320px;}
._c{width:27.316080px;}
._18{width:28.483200px;}
._19{width:29.492880px;}
._14{width:30.692880px;}
._13{width:31.831680px;}
._1e{width:35.322000px;}
._16{width:36.456960px;}
._17{width:37.543680px;}
._1a{width:39.103680px;}
._1d{width:40.442880px;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:111.456000px;}
.y125{bottom:139.896000px;}
.yac{bottom:141.336000px;}
.y64{bottom:145.656000px;}
.yd7{bottom:146.016000px;}
.y13d{bottom:148.176000px;}
.y8a{bottom:149.076000px;}
.yf2{bottom:155.010000px;}
.y124{bottom:158.970000px;}
.y31{bottom:160.230000px;}
.y63{bottom:164.550000px;}
.yd6{bottom:164.910000px;}
.y13c{bottom:165.450000px;}
.y89{bottom:166.350000px;}
.yf1{bottom:172.290000px;}
.y123{bottom:177.870000px;}
.y30{bottom:179.130000px;}
.yab{bottom:179.310000px;}
.y13b{bottom:182.730000px;}
.y62{bottom:183.450000px;}
.y88{bottom:183.990000px;}
.yf0{bottom:189.570000px;}
.y122{bottom:196.950000px;}
.y2f{bottom:198.210000px;}
.y13a{bottom:199.830000px;}
.yd5{bottom:202.890000px;}
.y61{bottom:203.610000px;}
.yef{bottom:206.850000px;}
.y121{bottom:215.850000px;}
.yaa{bottom:216.930000px;}
.y2e{bottom:217.110000px;}
.yd4{bottom:221.790000px;}
.y60{bottom:223.770000px;}
.yee{bottom:224.130000px;}
.y139{bottom:234.390000px;}
.y120{bottom:234.750000px;}
.y2d{bottom:236.190000px;}
.yd3{bottom:240.870000px;}
.yed{bottom:241.230000px;}
.y5f{bottom:242.670000px;}
.y138{bottom:251.670000px;}
.y11f{bottom:253.830000px;}
.y2c{bottom:255.090000px;}
.ya9{bottom:256.890000px;}
.yec{bottom:258.510000px;}
.yd2{bottom:259.410000px;}
.y5e{bottom:263.010000px;}
.y137{bottom:268.950000px;}
.y11e{bottom:272.730000px;}
.y2b{bottom:273.990000px;}
.ya8{bottom:275.790000px;}
.yd1{bottom:278.490000px;}
.y5d{bottom:281.910000px;}
.y136{bottom:286.230000px;}
.y11d{bottom:291.810000px;}
.y2a{bottom:293.070000px;}
.ya7{bottom:294.870000px;}
.yd0{bottom:297.750000px;}
.y5c{bottom:302.070000px;}
.y135{bottom:303.330000px;}
.yeb{bottom:310.350000px;}
.y11c{bottom:310.710000px;}
.y29{bottom:311.970000px;}
.ya6{bottom:313.770000px;}
.y134{bottom:320.610000px;}
.y5b{bottom:321.150000px;}
.yea{bottom:327.630000px;}
.y11b{bottom:329.790000px;}
.y28{bottom:331.050000px;}
.ya5{bottom:332.850000px;}
.ycf{bottom:333.930000px;}
.y133{bottom:337.935000px;}
.y5a{bottom:340.095000px;}
.ye9{bottom:344.775000px;}
.y11a{bottom:348.735000px;}
.yce{bottom:349.095000px;}
.y27{bottom:349.995000px;}
.ya4{bottom:351.435000px;}
.y87{bottom:352.335000px;}
.y132{bottom:355.215000px;}
.y59{bottom:358.995000px;}
.ye8{bottom:362.055000px;}
.y119{bottom:367.635000px;}
.y26{bottom:368.895000px;}
.ya3{bottom:370.335000px;}
.y86{bottom:371.415000px;}
.y131{bottom:372.495000px;}
.y58{bottom:378.075000px;}
.ye7{bottom:379.335000px;}
.y118{bottom:386.715000px;}
.y25{bottom:387.975000px;}
.ya2{bottom:389.775000px;}
.y85{bottom:390.315000px;}
.y57{bottom:396.615000px;}
.y117{bottom:405.615000px;}
.y24{bottom:406.875000px;}
.ya1{bottom:408.675000px;}
.y130{bottom:409.035000px;}
.y84{bottom:409.215000px;}
.ye6{bottom:413.895000px;}
.y56{bottom:415.875000px;}
.y116{bottom:424.695000px;}
.y23{bottom:425.955000px;}
.ya0{bottom:427.755000px;}
.y83{bottom:428.295000px;}
.y12f{bottom:429.375000px;}
.ye5{bottom:430.995000px;}
.y55{bottom:436.755000px;}
.y115{bottom:443.595000px;}
.y22{bottom:444.855000px;}
.y9f{bottom:446.655000px;}
.y82{bottom:447.195000px;}
.ye4{bottom:448.275000px;}
.y12e{bottom:448.815000px;}
.y54{bottom:455.655000px;}
.y114{bottom:462.495000px;}
.y21{bottom:463.755000px;}
.y9e{bottom:465.555000px;}
.y81{bottom:466.275000px;}
.y12d{bottom:467.715000px;}
.y53{bottom:474.555000px;}
.y113{bottom:481.575000px;}
.y20{bottom:482.835000px;}
.y9d{bottom:484.275000px;}
.y80{bottom:485.175000px;}
.y12c{bottom:486.795000px;}
.y52{bottom:493.635000px;}
.ye3{bottom:500.115000px;}
.y112{bottom:500.475000px;}
.y1f{bottom:501.735000px;}
.y9c{bottom:503.175000px;}
.y7f{bottom:504.075000px;}
.ycd{bottom:505.695000px;}
.y51{bottom:512.535000px;}
.ye2{bottom:517.395000px;}
.y111{bottom:519.555000px;}
.y1e{bottom:520.815000px;}
.y9b{bottom:522.615000px;}
.y7e{bottom:523.155000px;}
.ycc{bottom:524.595000px;}
.y50{bottom:531.615000px;}
.ye1{bottom:534.495000px;}
.y110{bottom:538.455000px;}
.y1d{bottom:539.715000px;}
.y9a{bottom:541.155000px;}
.y7d{bottom:542.055000px;}
.ycb{bottom:543.675000px;}
.y4f{bottom:550.155000px;}
.ye0{bottom:551.415000px;}
.y10f{bottom:557.355000px;}
.y1c{bottom:558.615000px;}
.y99{bottom:558.795000px;}
.y7c{bottom:560.595000px;}
.yca{bottom:562.575000px;}
.y4e{bottom:569.415000px;}
.y98{bottom:573.735000px;}
.y10e{bottom:576.435000px;}
.y1b{bottom:577.695000px;}
.y7b{bottom:578.235000px;}
.yc9{bottom:581.655000px;}
.y4d{bottom:590.115000px;}
.y10d{bottom:595.335000px;}
.y1a{bottom:597.315000px;}
.yc8{bottom:600.555000px;}
.y4c{bottom:609.225000px;}
.y10c{bottom:614.445000px;}
.yc7{bottom:619.485000px;}
.y19{bottom:620.745000px;}
.y4b{bottom:628.125000px;}
.y10b{bottom:633.345000px;}
.yc6{bottom:638.565000px;}
.y18{bottom:639.285000px;}
.y4a{bottom:647.205000px;}
.y10a{bottom:652.245000px;}
.y17{bottom:656.745000px;}
.yc5{bottom:657.465000px;}
.ydf{bottom:666.105000px;}
.y49{bottom:666.825000px;}
.y109{bottom:671.325000px;}
.y16{bottom:676.185000px;}
.yc4{bottom:676.545000px;}
.yde{bottom:685.185000px;}
.y48{bottom:690.225000px;}
.yc3{bottom:695.445000px;}
.y15{bottom:698.505000px;}
.ydd{bottom:704.085000px;}
.y7a{bottom:705.885000px;}
.y47{bottom:709.305000px;}
.yc2{bottom:713.985000px;}
.y12b{bottom:714.345000px;}
.y14{bottom:717.045000px;}
.ydc{bottom:722.985000px;}
.y79{bottom:724.785000px;}
.y108{bottom:727.845000px;}
.y46{bottom:728.205000px;}
.yc1{bottom:733.065000px;}
.y12a{bottom:733.425000px;}
.y13{bottom:734.145000px;}
.ydb{bottom:742.065000px;}
.y78{bottom:743.685000px;}
.y107{bottom:747.105000px;}
.y45{bottom:747.285000px;}
.y97{bottom:750.705000px;}
.y12{bottom:751.425000px;}
.yc0{bottom:752.325000px;}
.yda{bottom:760.965000px;}
.y77{bottom:762.765000px;}
.y44{bottom:766.185000px;}
.y106{bottom:767.805000px;}
.y11{bottom:768.705000px;}
.y96{bottom:769.605000px;}
.ybf{bottom:771.405000px;}
.yd9{bottom:780.045000px;}
.y76{bottom:781.665000px;}
.y43{bottom:785.085000px;}
.y10{bottom:785.985000px;}
.y105{bottom:786.345000px;}
.y95{bottom:788.505000px;}
.ybe{bottom:790.305000px;}
.yd8{bottom:799.665000px;}
.y75{bottom:800.385000px;}
.yf{bottom:803.265000px;}
.y104{bottom:803.625000px;}
.y42{bottom:804.165000px;}
.y94{bottom:807.585000px;}
.ybd{bottom:809.205000px;}
.y74{bottom:819.645000px;}
.ye{bottom:820.545000px;}
.y103{bottom:820.905000px;}
.y41{bottom:823.065000px;}
.y93{bottom:826.485000px;}
.ybc{bottom:828.285000px;}
.yd{bottom:837.645000px;}
.y102{bottom:838.185000px;}
.y73{bottom:840.345000px;}
.y40{bottom:842.145000px;}
.y92{bottom:845.205000px;}
.ybb{bottom:847.185000px;}
.yc{bottom:855.105000px;}
.y101{bottom:855.465000px;}
.y72{bottom:859.245000px;}
.y3f{bottom:861.045000px;}
.y91{bottom:864.105000px;}
.yba{bottom:866.265000px;}
.y100{bottom:872.790000px;}
.yb{bottom:874.590000px;}
.y71{bottom:878.370000px;}
.y3e{bottom:879.990000px;}
.y90{bottom:883.590000px;}
.yb9{bottom:884.850000px;}
.y129{bottom:885.210000px;}
.yff{bottom:889.890000px;}
.ya{bottom:896.910000px;}
.y70{bottom:897.270000px;}
.y3d{bottom:899.070000px;}
.y8f{bottom:902.490000px;}
.yb8{bottom:903.930000px;}
.y128{bottom:904.290000px;}
.yfe{bottom:907.170000px;}
.y6f{bottom:916.350000px;}
.y3c{bottom:917.970000px;}
.y8e{bottom:921.390000px;}
.yb7{bottom:923.190000px;}
.yfd{bottom:924.450000px;}
.y6e{bottom:935.250000px;}
.y9{bottom:936.510000px;}
.y3b{bottom:937.050000px;}
.y8d{bottom:940.470000px;}
.yfc{bottom:941.730000px;}
.yb6{bottom:942.090000px;}
.y6d{bottom:954.870000px;}
.y3a{bottom:955.950000px;}
.y8{bottom:956.130000px;}
.y8c{bottom:959.010000px;}
.yb5{bottom:961.170000px;}
.y39{bottom:974.850000px;}
.yfb{bottom:976.290000px;}
.y7{bottom:977.550000px;}
.y8b{bottom:978.090000px;}
.y6c{bottom:978.450000px;}
.yb4{bottom:980.070000px;}
.yfa{bottom:993.390000px;}
.y38{bottom:993.930000px;}
.y6b{bottom:997.350000px;}
.yb3{bottom:999.150000px;}
.y6{bottom:1000.770000px;}
.yf9{bottom:1010.670000px;}
.y37{bottom:1012.830000px;}
.y6a{bottom:1016.250000px;}
.yb2{bottom:1018.050000px;}
.yf8{bottom:1027.950000px;}
.y36{bottom:1031.910000px;}
.y5{bottom:1034.430000px;}
.y69{bottom:1035.330000px;}
.yb1{bottom:1036.590000px;}
.y127{bottom:1036.950000px;}
.yf7{bottom:1045.230000px;}
.y35{bottom:1050.810000px;}
.y68{bottom:1054.230000px;}
.yb0{bottom:1055.670000px;}
.y126{bottom:1056.030000px;}
.yf6{bottom:1062.510000px;}
.y4{bottom:1068.270000px;}
.y34{bottom:1069.710000px;}
.y67{bottom:1073.310000px;}
.yaf{bottom:1074.930000px;}
.yf5{bottom:1079.790000px;}
.y33{bottom:1088.790000px;}
.y66{bottom:1091.850000px;}
.yae{bottom:1094.010000px;}
.yf4{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y32{bottom:1108.410000px;}
.y65{bottom:1111.110000px;}
.yad{bottom:1112.910000px;}
.yf3{bottom:1114.170000px;}
.y1{bottom:1140.300000px;}
.h11{height:57.324375px;}
.ha{height:58.621992px;}
.h2{height:58.651172px;}
.h12{height:60.226875px;}
.h13{height:61.423863px;}
.h5{height:64.853086px;}
.h9{height:64.978594px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.hf{height:68.084282px;}
.h10{height:68.956875px;}
.hd{height:72.562500px;}
.he{height:74.953125px;}
.h8{height:76.279219px;}
.h7{height:76.317188px;}
.h4{height:81.432070px;}
.hc{height:84.898125px;}
.hb{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:123.155987px;}
.x32{left:127.835987px;}
.xe{left:131.795987px;}
.x33{left:136.835987px;}
.x4{left:138.275987px;}
.x1d{left:139.715987px;}
.xf{left:151.049987px;}
.x1b{left:156.989987px;}
.x5{left:158.249987px;}
.x26{left:162.029987px;}
.x27{left:163.649987px;}
.x17{left:164.909987px;}
.x30{left:166.169987px;}
.x19{left:171.029987px;}
.x1{left:183.989987px;}
.x36{left:191.549987px;}
.x34{left:226.469987px;}
.x2d{left:227.729987px;}
.x1e{left:234.929987px;}
.x2e{left:241.229987px;}
.x10{left:249.869987px;}
.x31{left:270.929987px;}
.x11{left:272.189987px;}
.x18{left:280.334987px;}
.x16{left:290.594987px;}
.x1a{left:297.974987px;}
.x28{left:302.654987px;}
.x35{left:312.914987px;}
.x1f{left:325.514987px;}
.x2f{left:332.714987px;}
.x24{left:339.374987px;}
.x20{left:341.354987px;}
.x12{left:344.774987px;}
.x2b{left:352.514987px;}
.x14{left:366.914987px;}
.x25{left:375.374987px;}
.x6{left:378.794987px;}
.x2a{left:383.834987px;}
.x13{left:385.814987px;}
.x7{left:398.954987px;}
.x21{left:439.814987px;}
.x3{left:447.194987px;}
.x22{left:452.234987px;}
.x8{left:509.684987px;}
.x9{left:535.964987px;}
.x23{left:555.584987px;}
.x2c{left:612.824987px;}
.xa{left:632.444987px;}
.x1c{left:635.504987px;}
.xb{left:640.004987px;}
.xc{left:646.484987px;}
.xd{left:664.709987px;}
.x2{left:747.509987px;}
.x29{left:756.689987px;}
@media print{
.v1{vertical-align:-72.320000pt;}
.v2{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.592000pt;}
.ls23{letter-spacing:-0.456533pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.233067pt;}
.ls24{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls5{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.113600pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls29{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.098667pt;}
.ls1e{letter-spacing:0.136533pt;}
.ls32{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.409067pt;}
.ls14{letter-spacing:0.412267pt;}
.ls2e{letter-spacing:0.414933pt;}
.ls22{letter-spacing:0.456533pt;}
.ls10{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.736000pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.821333pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls28{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.760000pt;}
.ls19{letter-spacing:5.280000pt;}
.ls18{letter-spacing:5.920000pt;}
.ls20{letter-spacing:6.560000pt;}
.ls1b{letter-spacing:9.120000pt;}
.ls1f{letter-spacing:11.040000pt;}
.ls2c{letter-spacing:13.600000pt;}
.ls1a{letter-spacing:16.160000pt;}
.ls2a{letter-spacing:16.571307pt;}
.ls17{letter-spacing:43.451307pt;}
.ls9{letter-spacing:77.050027pt;}
.ls2{letter-spacing:403.818667pt;}
.ls15{letter-spacing:887.818667pt;}
.ws12{word-spacing:-58.880000pt;}
.ws28{word-spacing:-29.959680pt;}
.ws4{word-spacing:-26.720000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws3{word-spacing:-21.118933pt;}
.ws8{word-spacing:-19.040000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws17{word-spacing:-16.412267pt;}
.wsf{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.886400pt;}
.ws11{word-spacing:-15.801067pt;}
.ws13{word-spacing:-15.264000pt;}
.wsa{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.584533pt;}
.ws18{word-spacing:-14.486933pt;}
.ws15{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.351467pt;}
.ws22{word-spacing:-14.240000pt;}
.ws1f{word-spacing:-14.101333pt;}
.ws6{word-spacing:-14.080000pt;}
.ws2b{word-spacing:-14.016000pt;}
.ws14{word-spacing:-13.984000pt;}
.ws2a{word-spacing:-13.872000pt;}
.ws25{word-spacing:-13.824000pt;}
.ws1b{word-spacing:-13.736533pt;}
.ws26{word-spacing:-13.694933pt;}
.ws27{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.600000pt;}
.ws24{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.463467pt;}
.ws21{word-spacing:-13.416533pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.232640pt;}
.ws23{word-spacing:-13.185067pt;}
.ws1d{word-spacing:-13.049067pt;}
.ws29{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.823467pt;}
.ws20{word-spacing:-12.688000pt;}
.ws19{word-spacing:-12.640000pt;}
.wsb{word-spacing:0.000000pt;}
._21{margin-left:-8.549120pt;}
._1f{margin-left:-7.290453pt;}
._8{margin-left:-3.301760pt;}
._9{margin-left:-1.965440pt;}
._1{margin-left:-0.897493pt;}
._0{width:0.932480pt;}
._2{width:2.400000pt;}
._4{width:3.783893pt;}
._7{width:5.458987pt;}
._a{width:6.434773pt;}
._6{width:7.898240pt;}
._5{width:9.030400pt;}
._d{width:10.486187pt;}
._e{width:11.926187pt;}
._f{width:13.227520pt;}
._20{width:14.363093pt;}
._1c{width:15.632000pt;}
._3{width:16.679680pt;}
._10{width:17.607893pt;}
._1b{width:18.639573pt;}
._12{width:19.603840pt;}
._11{width:21.084800pt;}
._15{width:21.990400pt;}
._b{width:23.139840pt;}
._c{width:24.280960pt;}
._18{width:25.318400pt;}
._19{width:26.215893pt;}
._14{width:27.282560pt;}
._13{width:28.294827pt;}
._1e{width:31.397333pt;}
._16{width:32.406187pt;}
._17{width:33.372160pt;}
._1a{width:34.758827pt;}
._1d{width:35.949227pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:99.072000pt;}
.y125{bottom:124.352000pt;}
.yac{bottom:125.632000pt;}
.y64{bottom:129.472000pt;}
.yd7{bottom:129.792000pt;}
.y13d{bottom:131.712000pt;}
.y8a{bottom:132.512000pt;}
.yf2{bottom:137.786667pt;}
.y124{bottom:141.306667pt;}
.y31{bottom:142.426667pt;}
.y63{bottom:146.266667pt;}
.yd6{bottom:146.586667pt;}
.y13c{bottom:147.066667pt;}
.y89{bottom:147.866667pt;}
.yf1{bottom:153.146667pt;}
.y123{bottom:158.106667pt;}
.y30{bottom:159.226667pt;}
.yab{bottom:159.386667pt;}
.y13b{bottom:162.426667pt;}
.y62{bottom:163.066667pt;}
.y88{bottom:163.546667pt;}
.yf0{bottom:168.506667pt;}
.y122{bottom:175.066667pt;}
.y2f{bottom:176.186667pt;}
.y13a{bottom:177.626667pt;}
.yd5{bottom:180.346667pt;}
.y61{bottom:180.986667pt;}
.yef{bottom:183.866667pt;}
.y121{bottom:191.866667pt;}
.yaa{bottom:192.826667pt;}
.y2e{bottom:192.986667pt;}
.yd4{bottom:197.146667pt;}
.y60{bottom:198.906667pt;}
.yee{bottom:199.226667pt;}
.y139{bottom:208.346667pt;}
.y120{bottom:208.666667pt;}
.y2d{bottom:209.946667pt;}
.yd3{bottom:214.106667pt;}
.yed{bottom:214.426667pt;}
.y5f{bottom:215.706667pt;}
.y138{bottom:223.706667pt;}
.y11f{bottom:225.626667pt;}
.y2c{bottom:226.746667pt;}
.ya9{bottom:228.346667pt;}
.yec{bottom:229.786667pt;}
.yd2{bottom:230.586667pt;}
.y5e{bottom:233.786667pt;}
.y137{bottom:239.066667pt;}
.y11e{bottom:242.426667pt;}
.y2b{bottom:243.546667pt;}
.ya8{bottom:245.146667pt;}
.yd1{bottom:247.546667pt;}
.y5d{bottom:250.586667pt;}
.y136{bottom:254.426667pt;}
.y11d{bottom:259.386667pt;}
.y2a{bottom:260.506667pt;}
.ya7{bottom:262.106667pt;}
.yd0{bottom:264.666667pt;}
.y5c{bottom:268.506667pt;}
.y135{bottom:269.626667pt;}
.yeb{bottom:275.866667pt;}
.y11c{bottom:276.186667pt;}
.y29{bottom:277.306667pt;}
.ya6{bottom:278.906667pt;}
.y134{bottom:284.986667pt;}
.y5b{bottom:285.466667pt;}
.yea{bottom:291.226667pt;}
.y11b{bottom:293.146667pt;}
.y28{bottom:294.266667pt;}
.ya5{bottom:295.866667pt;}
.ycf{bottom:296.826667pt;}
.y133{bottom:300.386667pt;}
.y5a{bottom:302.306667pt;}
.ye9{bottom:306.466667pt;}
.y11a{bottom:309.986667pt;}
.yce{bottom:310.306667pt;}
.y27{bottom:311.106667pt;}
.ya4{bottom:312.386667pt;}
.y87{bottom:313.186667pt;}
.y132{bottom:315.746667pt;}
.y59{bottom:319.106667pt;}
.ye8{bottom:321.826667pt;}
.y119{bottom:326.786667pt;}
.y26{bottom:327.906667pt;}
.ya3{bottom:329.186667pt;}
.y86{bottom:330.146667pt;}
.y131{bottom:331.106667pt;}
.y58{bottom:336.066667pt;}
.ye7{bottom:337.186667pt;}
.y118{bottom:343.746667pt;}
.y25{bottom:344.866667pt;}
.ya2{bottom:346.466667pt;}
.y85{bottom:346.946667pt;}
.y57{bottom:352.546667pt;}
.y117{bottom:360.546667pt;}
.y24{bottom:361.666667pt;}
.ya1{bottom:363.266667pt;}
.y130{bottom:363.586667pt;}
.y84{bottom:363.746667pt;}
.ye6{bottom:367.906667pt;}
.y56{bottom:369.666667pt;}
.y116{bottom:377.506667pt;}
.y23{bottom:378.626667pt;}
.ya0{bottom:380.226667pt;}
.y83{bottom:380.706667pt;}
.y12f{bottom:381.666667pt;}
.ye5{bottom:383.106667pt;}
.y55{bottom:388.226667pt;}
.y115{bottom:394.306667pt;}
.y22{bottom:395.426667pt;}
.y9f{bottom:397.026667pt;}
.y82{bottom:397.506667pt;}
.ye4{bottom:398.466667pt;}
.y12e{bottom:398.946667pt;}
.y54{bottom:405.026667pt;}
.y114{bottom:411.106667pt;}
.y21{bottom:412.226667pt;}
.y9e{bottom:413.826667pt;}
.y81{bottom:414.466667pt;}
.y12d{bottom:415.746667pt;}
.y53{bottom:421.826667pt;}
.y113{bottom:428.066667pt;}
.y20{bottom:429.186667pt;}
.y9d{bottom:430.466667pt;}
.y80{bottom:431.266667pt;}
.y12c{bottom:432.706667pt;}
.y52{bottom:438.786667pt;}
.ye3{bottom:444.546667pt;}
.y112{bottom:444.866667pt;}
.y1f{bottom:445.986667pt;}
.y9c{bottom:447.266667pt;}
.y7f{bottom:448.066667pt;}
.ycd{bottom:449.506667pt;}
.y51{bottom:455.586667pt;}
.ye2{bottom:459.906667pt;}
.y111{bottom:461.826667pt;}
.y1e{bottom:462.946667pt;}
.y9b{bottom:464.546667pt;}
.y7e{bottom:465.026667pt;}
.ycc{bottom:466.306667pt;}
.y50{bottom:472.546667pt;}
.ye1{bottom:475.106667pt;}
.y110{bottom:478.626667pt;}
.y1d{bottom:479.746667pt;}
.y9a{bottom:481.026667pt;}
.y7d{bottom:481.826667pt;}
.ycb{bottom:483.266667pt;}
.y4f{bottom:489.026667pt;}
.ye0{bottom:490.146667pt;}
.y10f{bottom:495.426667pt;}
.y1c{bottom:496.546667pt;}
.y99{bottom:496.706667pt;}
.y7c{bottom:498.306667pt;}
.yca{bottom:500.066667pt;}
.y4e{bottom:506.146667pt;}
.y98{bottom:509.986667pt;}
.y10e{bottom:512.386667pt;}
.y1b{bottom:513.506667pt;}
.y7b{bottom:513.986667pt;}
.yc9{bottom:517.026667pt;}
.y4d{bottom:524.546667pt;}
.y10d{bottom:529.186667pt;}
.y1a{bottom:530.946667pt;}
.yc8{bottom:533.826667pt;}
.y4c{bottom:541.533333pt;}
.y10c{bottom:546.173333pt;}
.yc7{bottom:550.653333pt;}
.y19{bottom:551.773333pt;}
.y4b{bottom:558.333333pt;}
.y10b{bottom:562.973333pt;}
.yc6{bottom:567.613333pt;}
.y18{bottom:568.253333pt;}
.y4a{bottom:575.293333pt;}
.y10a{bottom:579.773333pt;}
.y17{bottom:583.773333pt;}
.yc5{bottom:584.413333pt;}
.ydf{bottom:592.093333pt;}
.y49{bottom:592.733333pt;}
.y109{bottom:596.733333pt;}
.y16{bottom:601.053333pt;}
.yc4{bottom:601.373333pt;}
.yde{bottom:609.053333pt;}
.y48{bottom:613.533333pt;}
.yc3{bottom:618.173333pt;}
.y15{bottom:620.893333pt;}
.ydd{bottom:625.853333pt;}
.y7a{bottom:627.453333pt;}
.y47{bottom:630.493333pt;}
.yc2{bottom:634.653333pt;}
.y12b{bottom:634.973333pt;}
.y14{bottom:637.373333pt;}
.ydc{bottom:642.653333pt;}
.y79{bottom:644.253333pt;}
.y108{bottom:646.973333pt;}
.y46{bottom:647.293333pt;}
.yc1{bottom:651.613333pt;}
.y12a{bottom:651.933333pt;}
.y13{bottom:652.573333pt;}
.ydb{bottom:659.613333pt;}
.y78{bottom:661.053333pt;}
.y107{bottom:664.093333pt;}
.y45{bottom:664.253333pt;}
.y97{bottom:667.293333pt;}
.y12{bottom:667.933333pt;}
.yc0{bottom:668.733333pt;}
.yda{bottom:676.413333pt;}
.y77{bottom:678.013333pt;}
.y44{bottom:681.053333pt;}
.y106{bottom:682.493333pt;}
.y11{bottom:683.293333pt;}
.y96{bottom:684.093333pt;}
.ybf{bottom:685.693333pt;}
.yd9{bottom:693.373333pt;}
.y76{bottom:694.813333pt;}
.y43{bottom:697.853333pt;}
.y10{bottom:698.653333pt;}
.y105{bottom:698.973333pt;}
.y95{bottom:700.893333pt;}
.ybe{bottom:702.493333pt;}
.yd8{bottom:710.813333pt;}
.y75{bottom:711.453333pt;}
.yf{bottom:714.013333pt;}
.y104{bottom:714.333333pt;}
.y42{bottom:714.813333pt;}
.y94{bottom:717.853333pt;}
.ybd{bottom:719.293333pt;}
.y74{bottom:728.573333pt;}
.ye{bottom:729.373333pt;}
.y103{bottom:729.693333pt;}
.y41{bottom:731.613333pt;}
.y93{bottom:734.653333pt;}
.ybc{bottom:736.253333pt;}
.yd{bottom:744.573333pt;}
.y102{bottom:745.053333pt;}
.y73{bottom:746.973333pt;}
.y40{bottom:748.573333pt;}
.y92{bottom:751.293333pt;}
.ybb{bottom:753.053333pt;}
.yc{bottom:760.093333pt;}
.y101{bottom:760.413333pt;}
.y72{bottom:763.773333pt;}
.y3f{bottom:765.373333pt;}
.y91{bottom:768.093333pt;}
.yba{bottom:770.013333pt;}
.y100{bottom:775.813333pt;}
.yb{bottom:777.413333pt;}
.y71{bottom:780.773333pt;}
.y3e{bottom:782.213333pt;}
.y90{bottom:785.413333pt;}
.yb9{bottom:786.533333pt;}
.y129{bottom:786.853333pt;}
.yff{bottom:791.013333pt;}
.ya{bottom:797.253333pt;}
.y70{bottom:797.573333pt;}
.y3d{bottom:799.173333pt;}
.y8f{bottom:802.213333pt;}
.yb8{bottom:803.493333pt;}
.y128{bottom:803.813333pt;}
.yfe{bottom:806.373333pt;}
.y6f{bottom:814.533333pt;}
.y3c{bottom:815.973333pt;}
.y8e{bottom:819.013333pt;}
.yb7{bottom:820.613333pt;}
.yfd{bottom:821.733333pt;}
.y6e{bottom:831.333333pt;}
.y9{bottom:832.453333pt;}
.y3b{bottom:832.933333pt;}
.y8d{bottom:835.973333pt;}
.yfc{bottom:837.093333pt;}
.yb6{bottom:837.413333pt;}
.y6d{bottom:848.773333pt;}
.y3a{bottom:849.733333pt;}
.y8{bottom:849.893333pt;}
.y8c{bottom:852.453333pt;}
.yb5{bottom:854.373333pt;}
.y39{bottom:866.533333pt;}
.yfb{bottom:867.813333pt;}
.y7{bottom:868.933333pt;}
.y8b{bottom:869.413333pt;}
.y6c{bottom:869.733333pt;}
.yb4{bottom:871.173333pt;}
.yfa{bottom:883.013333pt;}
.y38{bottom:883.493333pt;}
.y6b{bottom:886.533333pt;}
.yb3{bottom:888.133333pt;}
.y6{bottom:889.573333pt;}
.yf9{bottom:898.373333pt;}
.y37{bottom:900.293333pt;}
.y6a{bottom:903.333333pt;}
.yb2{bottom:904.933333pt;}
.yf8{bottom:913.733333pt;}
.y36{bottom:917.253333pt;}
.y5{bottom:919.493333pt;}
.y69{bottom:920.293333pt;}
.yb1{bottom:921.413333pt;}
.y127{bottom:921.733333pt;}
.yf7{bottom:929.093333pt;}
.y35{bottom:934.053333pt;}
.y68{bottom:937.093333pt;}
.yb0{bottom:938.373333pt;}
.y126{bottom:938.693333pt;}
.yf6{bottom:944.453333pt;}
.y4{bottom:949.573333pt;}
.y34{bottom:950.853333pt;}
.y67{bottom:954.053333pt;}
.yaf{bottom:955.493333pt;}
.yf5{bottom:959.813333pt;}
.y33{bottom:967.813333pt;}
.y66{bottom:970.533333pt;}
.yae{bottom:972.453333pt;}
.yf4{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y32{bottom:985.253333pt;}
.y65{bottom:987.653333pt;}
.yad{bottom:989.253333pt;}
.yf3{bottom:990.373333pt;}
.y1{bottom:1013.600000pt;}
.h11{height:50.955000pt;}
.ha{height:52.108438pt;}
.h2{height:52.134375pt;}
.h12{height:53.535000pt;}
.h13{height:54.598989pt;}
.h5{height:57.647187pt;}
.h9{height:57.758750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.hf{height:60.519362pt;}
.h10{height:61.295000pt;}
.hd{height:64.500000pt;}
.he{height:66.625000pt;}
.h8{height:67.803750pt;}
.h7{height:67.837500pt;}
.h4{height:72.384062pt;}
.hc{height:75.465000pt;}
.hb{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:109.471988pt;}
.x32{left:113.631988pt;}
.xe{left:117.151988pt;}
.x33{left:121.631988pt;}
.x4{left:122.911988pt;}
.x1d{left:124.191988pt;}
.xf{left:134.266655pt;}
.x1b{left:139.546655pt;}
.x5{left:140.666655pt;}
.x26{left:144.026655pt;}
.x27{left:145.466655pt;}
.x17{left:146.586655pt;}
.x30{left:147.706655pt;}
.x19{left:152.026655pt;}
.x1{left:163.546655pt;}
.x36{left:170.266655pt;}
.x34{left:201.306655pt;}
.x2d{left:202.426655pt;}
.x1e{left:208.826655pt;}
.x2e{left:214.426655pt;}
.x10{left:222.106655pt;}
.x31{left:240.826655pt;}
.x11{left:241.946655pt;}
.x18{left:249.186655pt;}
.x16{left:258.306655pt;}
.x1a{left:264.866655pt;}
.x28{left:269.026655pt;}
.x35{left:278.146655pt;}
.x1f{left:289.346655pt;}
.x2f{left:295.746655pt;}
.x24{left:301.666655pt;}
.x20{left:303.426655pt;}
.x12{left:306.466655pt;}
.x2b{left:313.346655pt;}
.x14{left:326.146655pt;}
.x25{left:333.666655pt;}
.x6{left:336.706655pt;}
.x2a{left:341.186655pt;}
.x13{left:342.946655pt;}
.x7{left:354.626655pt;}
.x21{left:390.946655pt;}
.x3{left:397.506655pt;}
.x22{left:401.986655pt;}
.x8{left:453.053322pt;}
.x9{left:476.413322pt;}
.x23{left:493.853322pt;}
.x2c{left:544.733322pt;}
.xa{left:562.173322pt;}
.x1c{left:564.893322pt;}
.xb{left:568.893322pt;}
.xc{left:574.653322pt;}
.xd{left:590.853322pt;}
.x2{left:664.453322pt;}
.x29{left:672.613322pt;}
}




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