
    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_be83c98b3e879f8c6bb3b1fa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_2c428e4adaa7b797a001379c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_9d9029b74b2a62147c1999de.woff')format("woff");}.ff3{font-family:ff3;line-height:0.835938;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_a2e10fd9d8c829c3dda58c97.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_dcb202f2bf7ea2ff5fbf4070.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_14042fb4bbc6b6b78532125d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_19a78a1acb7074ce492e79ae.woff')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_d135561c145e54af8fa33d7c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.684082;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_7eae3fcac9328c45a8183e79.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v4{vertical-align:-20.780280px;}
.v6{vertical-align:-17.699340px;}
.v5{vertical-align:-15.001380px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.271460px;}
.v2{vertical-align:4.013700px;}
.v3{vertical-align:6.556638px;}
.v1{vertical-align:22.880856px;}
.v7{vertical-align:36.184560px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000025px;}
.ls1{letter-spacing:0.000041px;}
.ls3{letter-spacing:0.342728px;}
.ls2{letter-spacing:2.406008px;}
.ls0{letter-spacing:51.023592px;}
.ls6{letter-spacing:77.642577px;}
.ls5{letter-spacing:317.682819px;}
.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;}
}
.wse{word-spacing:-33.000001px;}
.ws0{word-spacing:-18.336914px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:16.382248px;}
.ws8{word-spacing:39.137512px;}
.wsb{word-spacing:53.503584px;}
.wsd{word-spacing:94.644269px;}
.ws3{word-spacing:105.091907px;}
.ws6{word-spacing:105.091923px;}
.ws9{word-spacing:157.198972px;}
.ws7{word-spacing:190.890772px;}
.wsa{word-spacing:239.747632px;}
.ws4{word-spacing:297.459797px;}
.ws2{word-spacing:329.859917px;}
.ws5{word-spacing:335.475052px;}
._a{width:1.253772px;}
._1{width:2.406087px;}
._2{width:3.655697px;}
._5{width:4.731856px;}
._3{width:6.430978px;}
._c{width:8.268765px;}
._10{width:9.452436px;}
._d{width:10.541280px;}
._8{width:11.606085px;}
._16{width:12.771332px;}
._12{width:14.377593px;}
._4{width:16.193018px;}
._b{width:17.319445px;}
._11{width:19.560696px;}
._7{width:21.181951px;}
._6{width:22.399697px;}
._e{width:23.691464px;}
._9{width:25.673900px;}
._f{width:27.628915px;}
._19{width:28.898791px;}
._14{width:30.007871px;}
._15{width:31.712624px;}
._28{width:32.744932px;}
._24{width:33.917629px;}
._29{width:35.046884px;}
._13{width:36.330137px;}
._27{width:37.343808px;}
._18{width:38.936369px;}
._2a{width:42.416189px;}
._0{width:51.023802px;}
._17{width:52.957030px;}
._1d{width:65.030101px;}
._23{width:67.888409px;}
._22{width:75.490889px;}
._1c{width:78.714661px;}
._2c{width:115.182165px;}
._26{width:120.537039px;}
._2b{width:123.007272px;}
._2e{width:126.541398px;}
._25{width:134.221599px;}
._1f{width:183.091741px;}
._1e{width:196.776301px;}
._1b{width:216.783481px;}
._1a{width:230.468101px;}
._21{width:265.640461px;}
._20{width:279.324841px;}
._2d{width:660.462310px;}
.fc1{color:rgb(5,97,193);}
.fc3{color:rgb(63,63,63);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000001px;}
.fs4{font-size:33.000001px;}
.fs0{font-size:54.000001px;}
.fs5{font-size:60.000001px;}
.fs3{font-size:66.000001px;}
.fs2{font-size:72.000001px;}
.fs1{font-size:78.000002px;}
.y0{bottom:0.000000px;}
.y24{bottom:79.151370px;}
.y2{bottom:80.104980px;}
.y1{bottom:116.780280px;}
.y154{bottom:122.594700px;}
.y173{bottom:132.198945px;}
.y178{bottom:134.225550px;}
.yc2{bottom:136.414035px;}
.y172{bottom:151.172340px;}
.yf5{bottom:151.737675px;}
.y4f{bottom:153.198945px;}
.yc1{bottom:155.387415px;}
.y171{bottom:170.145720px;}
.y4e{bottom:172.172340px;}
.y14b{bottom:176.039430px;}
.y19b{bottom:184.986060px;}
.y170{bottom:189.119115px;}
.y4d{bottom:191.145720px;}
.y67{bottom:192.188595px;}
.yf6{bottom:194.929500px;}
.yc0{bottom:195.042945px;}
.y19a{bottom:203.959440px;}
.y16f{bottom:208.092495px;}
.y14c{bottom:208.514835px;}
.y4c{bottom:210.119115px;}
.y5c{bottom:223.668090px;}
.y16e{bottom:227.065890px;}
.y22{bottom:229.054965px;}
.y177{bottom:229.092495px;}
.y199{bottom:234.932835px;}
.y5d{bottom:239.407830px;}
.y14d{bottom:241.986150px;}
.y4b{bottom:248.065890px;}
.ybf{bottom:248.487675px;}
.yf7{bottom:249.833595px;}
.y198{bottom:253.906215px;}
.y16d{bottom:265.012665px;}
.y21{bottom:267.001740px;}
.y4a{bottom:267.039270px;}
.y197{bottom:272.879610px;}
.y14e{bottom:275.457465px;}
.y5e{bottom:279.539700px;}
.yb5{bottom:279.967170px;}
.y16c{bottom:283.986060px;}
.y20{bottom:285.975135px;}
.y49{bottom:286.012665px;}
.ye1{bottom:288.072240px;}
.y196{bottom:291.852990px;}
.yb6{bottom:295.706910px;}
.y86{bottom:299.101770px;}
.y16b{bottom:302.959440px;}
.yf8{bottom:304.737675px;}
.y1f{bottom:304.948515px;}
.y176{bottom:304.986060px;}
.y14f{bottom:308.928765px;}
.y10c{bottom:315.521940px;}
.y5f{bottom:319.671480px;}
.y16a{bottom:321.932835px;}
.ybd{bottom:322.038945px;}
.y195{bottom:322.826385px;}
.y1e{bottom:323.921910px;}
.y48{bottom:323.959440px;}
.yb7{bottom:326.463780px;}
.ye0{bottom:328.045620px;}
.y85{bottom:339.075165px;}
.y169{bottom:340.906215px;}
.y194{bottom:341.799780px;}
.y150{bottom:342.400080px;}
.y1d{bottom:342.895290px;}
.y47{bottom:342.932835px;}
.ydf{bottom:347.019015px;}
.y10b{bottom:355.495335px;}
.yb8{bottom:357.220545px;}
.y84{bottom:358.048560px;}
.yf9{bottom:359.641755px;}
.y60{bottom:359.803350px;}
.y168{bottom:359.879610px;}
.y193{bottom:360.773160px;}
.y1c{bottom:361.868685px;}
.y46{bottom:361.906215px;}
.yde{bottom:365.992395px;}
.y10a{bottom:374.468715px;}
.y151{bottom:375.871395px;}
.y83{bottom:377.021940px;}
.y167{bottom:378.852990px;}
.y192{bottom:379.746555px;}
.y1b{bottom:380.842065px;}
.y45{bottom:380.879610px;}
.y125{bottom:383.717010px;}
.ydd{bottom:384.965790px;}
.yb9{bottom:387.977415px;}
.y109{bottom:393.442110px;}
.y9f{bottom:393.745335px;}
.ybe{bottom:394.407900px;}
.y82{bottom:395.995335px;}
.y166{bottom:397.826385px;}
.y1a{bottom:399.815460px;}
.y44{bottom:399.852990px;}
.y61{bottom:399.935205px;}
.ydc{bottom:403.939185px;}
.y152{bottom:409.342710px;}
.y191{bottom:410.719935px;}
.y108{bottom:412.415490px;}
.yfa{bottom:414.545835px;}
.y81{bottom:414.968715px;}
.y165{bottom:416.799780px;}
.yba{bottom:418.734285px;}
.y19{bottom:418.788855px;}
.y43{bottom:418.826385px;}
.y66{bottom:421.682100px;}
.ydb{bottom:422.912520px;}
.y124{bottom:423.690360px;}
.y190{bottom:429.693285px;}
.y107{bottom:431.388840px;}
.y9e{bottom:433.718670px;}
.y80{bottom:433.942065px;}
.y64{bottom:434.669775px;}
.y164{bottom:435.773115px;}
.y18{bottom:437.762235px;}
.y42{bottom:437.799735px;}
.y62{bottom:440.067030px;}
.yda{bottom:441.885915px;}
.y123{bottom:442.663740px;}
.y153{bottom:442.814025px;}
.ybb{bottom:449.491110px;}
.y106{bottom:450.362235px;}
.y9d{bottom:452.692065px;}
.y7f{bottom:452.915445px;}
.y163{bottom:454.746510px;}
.y17{bottom:456.735630px;}
.y175{bottom:456.773115px;}
.y18f{bottom:460.666665px;}
.yd9{bottom:460.859295px;}
.y122{bottom:461.637135px;}
.y13e{bottom:464.465745px;}
.y65{bottom:471.035160px;}
.y162{bottom:473.719890px;}
.y16{bottom:475.709010px;}
.y41{bottom:475.746510px;}
.y18e{bottom:479.640060px;}
.y63{bottom:480.198855px;}
.ybc{bottom:480.247920px;}
.y121{bottom:480.610515px;}
.yf4{bottom:486.359295px;}
.y105{bottom:490.017750px;}
.y7e{bottom:492.570975px;}
.y9c{bottom:492.665445px;}
.y174{bottom:494.719890px;}
.y18d{bottom:498.613455px;}
.yd8{bottom:500.514810px;}
.y14a{bottom:503.911050px;}
.y13d{bottom:504.439140px;}
.y161{bottom:511.666665px;}
.y40{bottom:513.693285px;}
.y120{bottom:520.712820px;}
.y13c{bottom:523.412520px;}
.y5b{bottom:524.560230px;}
.yb4{bottom:524.609295px;}
.yf3{bottom:526.332690px;}
.y18c{bottom:529.586835px;}
.y160{bottom:530.640060px;}
.y9b{bottom:532.638840px;}
.y3f{bottom:532.666665px;}
.y11f{bottom:540.926925px;}
.y13b{bottom:542.385915px;}
.yfc{bottom:543.462615px;}
.y149{bottom:543.884445px;}
.yf2{bottom:545.306070px;}
.yc4{bottom:545.719935px;}
.y72{bottom:546.015840px;}
.y15{bottom:546.277860px;}
.y18b{bottom:548.560230px;}
.y15f{bottom:549.613455px;}
.y9a{bottom:551.612235px;}
.y3e{bottom:551.640060px;}
.y11e{bottom:561.141030px;}
.y13a{bottom:561.359295px;}
.y73{bottom:561.755580px;}
.yf1{bottom:564.279465px;}
.y5a{bottom:564.533610px;}
.yb3{bottom:564.582690px;}
.yd0{bottom:565.038120px;}
.y18a{bottom:567.533610px;}
.y15e{bottom:568.586835px;}
.y99{bottom:570.585615px;}
.y3d{bottom:570.613455px;}
.yfd{bottom:576.078645px;}
.y139{bottom:580.332690px;}
.yf0{bottom:583.252860px;}
.yc5{bottom:583.386615px;}
.y59{bottom:583.507005px;}
.yb2{bottom:583.556070px;}
.y15d{bottom:587.560230px;}
.y98{bottom:589.559010px;}
.y3c{bottom:589.586835px;}
.y7c{bottom:593.516835px;}
.y189{bottom:598.507005px;}
.y138{bottom:599.306070px;}
.y74{bottom:600.009015px;}
.yef{bottom:602.226240px;}
.y58{bottom:602.480385px;}
.yb1{bottom:602.529465px;}
.y14{bottom:603.198075px;}
.y7b{bottom:605.896590px;}
.y15c{bottom:606.533610px;}
.y97{bottom:608.532390px;}
.y3b{bottom:608.560230px;}
.yfe{bottom:609.831210px;}
.y188{bottom:617.480385px;}
.y137{bottom:618.279465px;}
.yce{bottom:620.430270px;}
.yc6{bottom:621.053280px;}
.yee{bottom:621.199635px;}
.yb0{bottom:621.502860px;}
.y13{bottom:622.171470px;}
.y15b{bottom:625.507005px;}
.y96{bottom:627.505785px;}
.y3a{bottom:627.533610px;}
.y187{bottom:636.453780px;}
.y136{bottom:637.252860px;}
.y75{bottom:638.262405px;}
.yaf{bottom:640.476240px;}
.y12{bottom:641.144850px;}
.y57{bottom:642.453780px;}
.yff{bottom:643.583775px;}
.y95{bottom:646.479165px;}
.y39{bottom:646.507005px;}
.y135{bottom:656.226240px;}
.yc7{bottom:658.719960px;}
.yae{bottom:659.449635px;}
.y11{bottom:660.118245px;}
.yed{bottom:660.855150px;}
.y15a{bottom:663.453780px;}
.y94{bottom:665.452560px;}
.y38{bottom:665.480385px;}
.yd7{bottom:665.781465px;}
.y186{bottom:674.400555px;}
.y134{bottom:675.199635px;}
.y76{bottom:676.515840px;}
.y100{bottom:677.336340px;}
.y10{bottom:679.091625px;}
.yd6{bottom:682.260960px;}
.y56{bottom:682.427175px;}
.y37{bottom:684.453780px;}
.y7d{bottom:685.126965px;}
.y185{bottom:693.373950px;}
.yc8{bottom:696.386625px;}
.yf{bottom:698.065020px;}
.yd5{bottom:698.740455px;}
.yad{bottom:699.105150px;}
.y55{bottom:701.400555px;}
.y36{bottom:703.427175px;}
.y93{bottom:705.108075px;}
.y101{bottom:711.088905px;}
.ye2{bottom:714.300015px;}
.y77{bottom:714.769275px;}
.y133{bottom:714.855150px;}
.yd4{bottom:715.219935px;}
.ye{bottom:717.038400px;}
.y54{bottom:720.373950px;}
.y92{bottom:722.356620px;}
.y35{bottom:722.400555px;}
.y184{bottom:724.347330px;}
.yd3{bottom:731.699430px;}
.yc9{bottom:734.053260px;}
.yd{bottom:736.011795px;}
.y10d{bottom:739.172700px;}
.y53{bottom:739.347330px;}
.y34{bottom:741.373950px;}
.y183{bottom:743.320725px;}
.y102{bottom:744.841455px;}
.ye3{bottom:745.565775px;}
.yd2{bottom:748.178925px;}
.yac{bottom:752.550015px;}
.y78{bottom:753.022710px;}
.yc{bottom:754.985190px;}
.y10e{bottom:757.438620px;}
.y52{bottom:758.320725px;}
.y33{bottom:760.347330px;}
.yd1{bottom:764.658420px;}
.y126{bottom:766.800015px;}
.yca{bottom:771.719970px;}
.yb{bottom:773.958570px;}
.y10f{bottom:775.704525px;}
.ye4{bottom:776.617860px;}
.y51{bottom:777.294120px;}
.y7a{bottom:777.975075px;}
.y103{bottom:778.594020px;}
.y32{bottom:779.320725px;}
.y182{bottom:781.267500px;}
.y13f{bottom:781.903290px;}
.ya0{bottom:784.029510px;}
.y130{bottom:784.966095px;}
.y79{bottom:791.276100px;}
.ya{bottom:792.931965px;}
.y87{bottom:793.050015px;}
.y127{bottom:793.205835px;}
.y110{bottom:793.970490px;}
.y159{bottom:796.267500px;}
.y31{bottom:798.294120px;}
.ya1{bottom:799.769250px;}
.y181{bottom:800.240895px;}
.y12f{bottom:801.445590px;}
.ye5{bottom:807.669885px;}
.y88{bottom:808.789740px;}
.y140{bottom:809.130345px;}
.ycb{bottom:809.386620px;}
.y9{bottom:811.905345px;}
.y111{bottom:812.236365px;}
.y104{bottom:812.346585px;}
.y158{bottom:815.240910px;}
.y30{bottom:817.267530px;}
.y132{bottom:817.946685px;}
.y128{bottom:826.186425px;}
.y112{bottom:830.502270px;}
.y8{bottom:830.878740px;}
.y180{bottom:831.214305px;}
.ya2{bottom:834.167955px;}
.y157{bottom:834.214305px;}
.y131{bottom:834.426180px;}
.y71{bottom:835.637400px;}
.y91{bottom:835.781160px;}
.y2f{bottom:836.240910px;}
.y141{bottom:836.357385px;}
.ye6{bottom:838.721940px;}
.ycc{bottom:847.053285px;}
.y89{bottom:847.418145px;}
.y113{bottom:848.768190px;}
.y7{bottom:849.852120px;}
.y17f{bottom:850.187685px;}
.ycf{bottom:853.077345px;}
.y156{bottom:853.187685px;}
.y2e{bottom:855.214305px;}
.y129{bottom:859.167030px;}
.y142{bottom:863.584440px;}
.y114{bottom:867.034110px;}
.ya3{bottom:868.566675px;}
.y17e{bottom:869.161080px;}
.ye7{bottom:869.773995px;}
.yfb{bottom:873.584175px;}
.y2d{bottom:874.187685px;}
.y70{bottom:875.610780px;}
.ycd{bottom:884.719935px;}
.y115{bottom:885.300015px;}
.y8a{bottom:886.046580px;}
.y17d{bottom:888.134475px;}
.y143{bottom:890.811495px;}
.y155{bottom:891.134475px;}
.y12a{bottom:892.147620px;}
.y2c{bottom:893.161080px;}
.y6f{bottom:894.584175px;}
.ye8{bottom:900.826035px;}
.ya4{bottom:902.965395px;}
.y116{bottom:903.565935px;}
.y2b{bottom:912.134475px;}
.y6e{bottom:913.557570px;}
.y144{bottom:918.038550px;}
.y17c{bottom:919.107855px;}
.yab{bottom:919.298955px;}
.y117{bottom:921.831855px;}
.y8b{bottom:924.675000px;}
.y12b{bottom:925.128210px;}
.yc3{bottom:929.081250px;}
.y2a{bottom:931.107855px;}
.ye9{bottom:931.878090px;}
.y6d{bottom:932.530950px;}
.ya5{bottom:937.364089px;}
.y17b{bottom:938.081246px;}
.y118{bottom:940.097763px;}
.y6{bottom:941.119194px;}
.y145{bottom:945.265594px;}
.y29{bottom:950.081246px;}
.y6c{bottom:951.504341px;}
.y17a{bottom:957.054635px;}
.y12c{bottom:958.108796px;}
.y119{bottom:958.363654px;}
.y5{bottom:960.092583px;}
.yea{bottom:962.930145px;}
.y8c{bottom:963.303406px;}
.y90{bottom:968.292892px;}
.y28{bottom:969.054635px;}
.y6b{bottom:970.477730px;}
.ya6{bottom:971.762832px;}
.y146{bottom:972.492645px;}
.y179{bottom:976.028024px;}
.y11a{bottom:976.629593px;}
.y4{bottom:980.069389px;}
.y27{bottom:988.028024px;}
.y6a{bottom:989.451119px;}
.ya9{bottom:990.119843px;}
.y12d{bottom:991.089386px;}
.yeb{bottom:993.982200px;}
.y11b{bottom:994.895485px;}
.y147{bottom:999.719695px;}
.ya8{bottom:1000.237107px;}
.y8d{bottom:1001.931839px;}
.y3{bottom:1002.042057px;}
.ya7{bottom:1006.161530px;}
.y26{bottom:1007.001411px;}
.yaa{bottom:1010.354370px;}
.y11c{bottom:1013.161400px;}
.y8f{bottom:1018.297302px;}
.y12e{bottom:1024.069977px;}
.yec{bottom:1025.034257px;}
.y50{bottom:1025.974800px;}
.y148{bottom:1026.946748px;}
.y69{bottom:1029.106636px;}
.y11d{bottom:1031.427315px;}
.y8e{bottom:1040.560250px;}
.y25{bottom:1044.948189px;}
.y68{bottom:1046.355171px;}
.y23{bottom:1085.110840px;}
.hf{height:24.741211px;}
.ha{height:35.991212px;}
.h9{height:44.534181px;}
.h11{height:48.114259px;}
.h1{height:48.410157px;}
.h8{height:53.789064px;}
.hb{height:54.287110px;}
.h7{height:54.544920px;}
.he{height:58.652330px;}
.hd{height:58.652390px;}
.h5{height:59.006837px;}
.h4{height:59.167970px;}
.h3{height:59.378907px;}
.h6{height:59.715822px;}
.h10{height:65.818336px;}
.h2{height:69.925783px;}
.hc{height:72.175772px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:106.350003px;}
.x3{left:117.483399px;}
.x3e{left:121.349991px;}
.x9{left:133.350003px;}
.x8{left:138.300007px;}
.x10{left:141.319336px;}
.x47{left:151.918946px;}
.x12{left:160.350003px;}
.x29{left:174.750000px;}
.x6{left:179.261352px;}
.x34{left:183.766113px;}
.x31{left:190.024657px;}
.x52{left:192.385254px;}
.xb{left:202.875000px;}
.x37{left:204.000000px;}
.x3b{left:205.560059px;}
.x27{left:211.803956px;}
.x13{left:216.375000px;}
.x18{left:223.125000px;}
.x1f{left:227.625000px;}
.x1e{left:240.473877px;}
.x5a{left:246.296631px;}
.x28{left:274.479120px;}
.x5{left:279.739695px;}
.x23{left:302.165775px;}
.x2e{left:312.920310px;}
.xc{left:323.630565px;}
.x14{left:328.309440px;}
.x19{left:332.359425px;}
.x2c{left:337.415250px;}
.x3d{left:342.717540px;}
.x22{left:346.321725px;}
.x36{left:362.053350px;}
.x24{left:363.352890px;}
.x43{left:367.264275px;}
.xf{left:374.936715px;}
.x5b{left:383.609760px;}
.x30{left:386.405085px;}
.x1b{left:387.709710px;}
.x46{left:399.065640px;}
.x48{left:401.379270px;}
.x2a{left:410.900025px;}
.x35{left:412.725585px;}
.x53{left:414.462660px;}
.x11{left:416.464605px;}
.xd{left:419.793600px;}
.x15{left:422.493615px;}
.x20{left:428.164770px;}
.x4f{left:429.619725px;}
.x2d{left:435.394965px;}
.x5d{left:439.957575px;}
.xa{left:445.090575px;}
.x4{left:447.380865px;}
.x3c{left:450.657720px;}
.x42{left:452.067945px;}
.x2{left:453.577515px;}
.x7{left:454.828860px;}
.x51{left:457.392795px;}
.x3f{left:462.668385px;}
.x3a{left:464.381745px;}
.x50{left:466.400250px;}
.x1c{left:471.296265px;}
.x41{left:473.268855px;}
.x4c{left:476.158350px;}
.x4d{left:480.662115px;}
.x4e{left:485.165865px;}
.x25{left:489.159390px;}
.x32{left:506.302365px;}
.x1a{left:511.906680px;}
.x16{left:513.256620px;}
.x1d{left:515.956650px;}
.x44{left:526.271115px;}
.x59{left:528.303960px;}
.x4b{left:537.013455px;}
.x39{left:552.763875px;}
.x5e{left:564.715125px;}
.x5f{left:570.655980px;}
.x58{left:579.219915px;}
.x26{left:581.898195px;}
.x21{left:597.269715px;}
.x17{left:604.019715px;}
.x2b{left:606.859500px;}
.x40{left:611.074770px;}
.xe{left:612.119655px;}
.x57{left:626.062545px;}
.x38{left:641.145990px;}
.x2f{left:655.849365px;}
.x45{left:664.077120px;}
.x56{left:672.905175px;}
.x33{left:716.423490px;}
.x55{left:721.784505px;}
.x5c{left:754.821855px;}
.x49{left:756.891450px;}
.x4a{left:767.454810px;}
.x54{left:768.627135px;}
@media print{
.v4{vertical-align:-18.471360pt;}
.v6{vertical-align:-15.732747pt;}
.v5{vertical-align:-13.334560pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.130187pt;}
.v2{vertical-align:3.567733pt;}
.v3{vertical-align:5.828123pt;}
.v1{vertical-align:20.338539pt;}
.v7{vertical-align:32.164053pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000022pt;}
.ls1{letter-spacing:0.000036pt;}
.ls3{letter-spacing:0.304647pt;}
.ls2{letter-spacing:2.138674pt;}
.ls0{letter-spacing:45.354304pt;}
.ls6{letter-spacing:69.015624pt;}
.ls5{letter-spacing:282.384728pt;}
.wse{word-spacing:-29.333334pt;}
.ws0{word-spacing:-16.299479pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:14.561998pt;}
.ws8{word-spacing:34.788899pt;}
.wsb{word-spacing:47.558741pt;}
.wsd{word-spacing:84.128239pt;}
.ws3{word-spacing:93.415028pt;}
.ws6{word-spacing:93.415043pt;}
.ws9{word-spacing:139.732419pt;}
.ws7{word-spacing:169.680686pt;}
.wsa{word-spacing:213.109006pt;}
.ws4{word-spacing:264.408709pt;}
.ws2{word-spacing:293.208815pt;}
.ws5{word-spacing:298.200046pt;}
._a{width:1.114464pt;}
._1{width:2.138744pt;}
._2{width:3.249509pt;}
._5{width:4.206095pt;}
._3{width:5.716425pt;}
._c{width:7.350013pt;}
._10{width:8.402166pt;}
._d{width:9.370027pt;}
._8{width:10.316520pt;}
._16{width:11.352295pt;}
._12{width:12.780082pt;}
._4{width:14.393794pt;}
._b{width:15.395062pt;}
._11{width:17.387285pt;}
._7{width:18.828401pt;}
._6{width:19.910841pt;}
._e{width:21.059079pt;}
._9{width:22.821245pt;}
._f{width:24.559035pt;}
._19{width:25.687815pt;}
._14{width:26.673663pt;}
._15{width:28.188999pt;}
._28{width:29.106606pt;}
._24{width:30.149004pt;}
._29{width:31.152785pt;}
._13{width:32.293455pt;}
._27{width:33.194496pt;}
._18{width:34.610106pt;}
._2a{width:37.703279pt;}
._0{width:45.354491pt;}
._17{width:47.072916pt;}
._1d{width:57.804534pt;}
._23{width:60.345253pt;}
._22{width:67.103013pt;}
._1c{width:69.968588pt;}
._2c{width:102.384147pt;}
._26{width:107.144034pt;}
._2b{width:109.339797pt;}
._2e{width:112.481243pt;}
._25{width:119.308088pt;}
._1f{width:162.748214pt;}
._1e{width:174.912268pt;}
._1b{width:192.696428pt;}
._1a{width:204.860534pt;}
._21{width:236.124854pt;}
._20{width:248.288748pt;}
._2d{width:587.077609pt;}
.fs6{font-size:26.666667pt;}
.fs4{font-size:29.333334pt;}
.fs0{font-size:48.000001pt;}
.fs5{font-size:53.333334pt;}
.fs3{font-size:58.666668pt;}
.fs2{font-size:64.000001pt;}
.fs1{font-size:69.333335pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:70.356773pt;}
.y2{bottom:71.204427pt;}
.y1{bottom:103.804693pt;}
.y154{bottom:108.973067pt;}
.y173{bottom:117.510173pt;}
.y178{bottom:119.311600pt;}
.yc2{bottom:121.256920pt;}
.y172{bottom:134.375413pt;}
.yf5{bottom:134.877933pt;}
.y4f{bottom:136.176840pt;}
.yc1{bottom:138.122147pt;}
.y171{bottom:151.240640pt;}
.y4e{bottom:153.042080pt;}
.y14b{bottom:156.479493pt;}
.y19b{bottom:164.432053pt;}
.y170{bottom:168.105880pt;}
.y4d{bottom:169.907307pt;}
.y67{bottom:170.834307pt;}
.yf6{bottom:173.270667pt;}
.yc0{bottom:173.371507pt;}
.y19a{bottom:181.297280pt;}
.y16f{bottom:184.971107pt;}
.y14c{bottom:185.346520pt;}
.y4c{bottom:186.772547pt;}
.y5c{bottom:198.816080pt;}
.y16e{bottom:201.836347pt;}
.y22{bottom:203.604413pt;}
.y177{bottom:203.637773pt;}
.y199{bottom:208.829187pt;}
.y5d{bottom:212.806960pt;}
.y14d{bottom:215.098800pt;}
.y4b{bottom:220.503013pt;}
.ybf{bottom:220.877933pt;}
.yf7{bottom:222.074307pt;}
.y198{bottom:225.694413pt;}
.y16d{bottom:235.566813pt;}
.y21{bottom:237.334880pt;}
.y4a{bottom:237.368240pt;}
.y197{bottom:242.559653pt;}
.y14e{bottom:244.851080pt;}
.y5e{bottom:248.479733pt;}
.yb5{bottom:248.859707pt;}
.y16c{bottom:252.432053pt;}
.y20{bottom:254.200120pt;}
.y49{bottom:254.233480pt;}
.ye1{bottom:256.064213pt;}
.y196{bottom:259.424880pt;}
.yb6{bottom:262.850587pt;}
.y86{bottom:265.868240pt;}
.y16b{bottom:269.297280pt;}
.yf8{bottom:270.877933pt;}
.y1f{bottom:271.065347pt;}
.y176{bottom:271.098720pt;}
.y14f{bottom:274.603347pt;}
.y10c{bottom:280.463947pt;}
.y5f{bottom:284.152427pt;}
.y16a{bottom:286.162520pt;}
.ybd{bottom:286.256840pt;}
.y195{bottom:286.956787pt;}
.y1e{bottom:287.930587pt;}
.y48{bottom:287.963947pt;}
.yb7{bottom:290.190027pt;}
.ye0{bottom:291.596107pt;}
.y85{bottom:301.400147pt;}
.y169{bottom:303.027747pt;}
.y194{bottom:303.822027pt;}
.y150{bottom:304.355627pt;}
.y1d{bottom:304.795813pt;}
.y47{bottom:304.829187pt;}
.ydf{bottom:308.461347pt;}
.y10b{bottom:315.995853pt;}
.yb8{bottom:317.529373pt;}
.y84{bottom:318.265387pt;}
.yf9{bottom:319.681560pt;}
.y60{bottom:319.825200pt;}
.y168{bottom:319.892987pt;}
.y193{bottom:320.687253pt;}
.y1c{bottom:321.661053pt;}
.y46{bottom:321.694413pt;}
.yde{bottom:325.326573pt;}
.y10a{bottom:332.861080pt;}
.y151{bottom:334.107907pt;}
.y83{bottom:335.130613pt;}
.y167{bottom:336.758213pt;}
.y192{bottom:337.552493pt;}
.y1b{bottom:338.526280pt;}
.y45{bottom:338.559653pt;}
.y125{bottom:341.081787pt;}
.ydd{bottom:342.191813pt;}
.yb9{bottom:344.868813pt;}
.y109{bottom:349.726320pt;}
.y9f{bottom:349.995853pt;}
.ybe{bottom:350.584800pt;}
.y82{bottom:351.995853pt;}
.y166{bottom:353.623453pt;}
.y1a{bottom:355.391520pt;}
.y44{bottom:355.424880pt;}
.y61{bottom:355.497960pt;}
.ydc{bottom:359.057053pt;}
.y152{bottom:363.860187pt;}
.y191{bottom:365.084387pt;}
.y108{bottom:366.591547pt;}
.yfa{bottom:368.485187pt;}
.y81{bottom:368.861080pt;}
.y165{bottom:370.488693pt;}
.yba{bottom:372.208253pt;}
.y19{bottom:372.256760pt;}
.y43{bottom:372.290120pt;}
.y66{bottom:374.828533pt;}
.ydb{bottom:375.922240pt;}
.y124{bottom:376.613653pt;}
.y190{bottom:381.949587pt;}
.y107{bottom:383.456747pt;}
.y9e{bottom:385.527707pt;}
.y80{bottom:385.726280pt;}
.y64{bottom:386.373133pt;}
.y164{bottom:387.353880pt;}
.y18{bottom:389.121987pt;}
.y42{bottom:389.155320pt;}
.y62{bottom:391.170693pt;}
.yda{bottom:392.787480pt;}
.y123{bottom:393.478880pt;}
.y153{bottom:393.612467pt;}
.ybb{bottom:399.547653pt;}
.y106{bottom:400.321987pt;}
.y9d{bottom:402.392947pt;}
.y7f{bottom:402.591507pt;}
.y163{bottom:404.219120pt;}
.y17{bottom:405.987227pt;}
.y175{bottom:406.020547pt;}
.y18f{bottom:409.481480pt;}
.yd9{bottom:409.652707pt;}
.y122{bottom:410.344120pt;}
.y13e{bottom:412.858440pt;}
.y65{bottom:418.697920pt;}
.y162{bottom:421.084347pt;}
.y16{bottom:422.852453pt;}
.y41{bottom:422.885787pt;}
.y18e{bottom:426.346720pt;}
.y63{bottom:426.843427pt;}
.ybc{bottom:426.887040pt;}
.y121{bottom:427.209347pt;}
.yf4{bottom:432.319373pt;}
.y105{bottom:435.571333pt;}
.y7e{bottom:437.840867pt;}
.y9c{bottom:437.924840pt;}
.y174{bottom:439.751013pt;}
.y18d{bottom:443.211960pt;}
.yd8{bottom:444.902053pt;}
.y14a{bottom:447.920933pt;}
.y13d{bottom:448.390347pt;}
.y161{bottom:454.814813pt;}
.y40{bottom:456.616253pt;}
.y120{bottom:462.855840pt;}
.y13c{bottom:465.255573pt;}
.y5b{bottom:466.275760pt;}
.yb4{bottom:466.319373pt;}
.yf3{bottom:467.851280pt;}
.y18c{bottom:470.743853pt;}
.y160{bottom:471.680053pt;}
.y9b{bottom:473.456747pt;}
.y3f{bottom:473.481480pt;}
.y11f{bottom:480.823933pt;}
.y13b{bottom:482.120813pt;}
.yfc{bottom:483.077880pt;}
.y149{bottom:483.452840pt;}
.yf2{bottom:484.716507pt;}
.yc4{bottom:485.084387pt;}
.y72{bottom:485.347413pt;}
.y15{bottom:485.580320pt;}
.y18b{bottom:487.609093pt;}
.y15f{bottom:488.545293pt;}
.y9a{bottom:490.321987pt;}
.y3e{bottom:490.346720pt;}
.y11e{bottom:498.792027pt;}
.y13a{bottom:498.986040pt;}
.y73{bottom:499.338293pt;}
.yf1{bottom:501.581747pt;}
.y5a{bottom:501.807653pt;}
.yb3{bottom:501.851280pt;}
.yd0{bottom:502.256107pt;}
.y18a{bottom:504.474320pt;}
.y15e{bottom:505.410520pt;}
.y99{bottom:507.187213pt;}
.y3d{bottom:507.211960pt;}
.yfd{bottom:512.069907pt;}
.y139{bottom:515.851280pt;}
.yf0{bottom:518.446987pt;}
.yc5{bottom:518.565880pt;}
.y59{bottom:518.672893pt;}
.yb2{bottom:518.716507pt;}
.y15d{bottom:522.275760pt;}
.y98{bottom:524.052453pt;}
.y3c{bottom:524.077187pt;}
.y7c{bottom:527.570520pt;}
.y189{bottom:532.006227pt;}
.y138{bottom:532.716507pt;}
.y74{bottom:533.341347pt;}
.yef{bottom:535.312213pt;}
.y58{bottom:535.538120pt;}
.yb1{bottom:535.581747pt;}
.y14{bottom:536.176067pt;}
.y7b{bottom:538.574747pt;}
.y15c{bottom:539.140987pt;}
.y97{bottom:540.917680pt;}
.y3b{bottom:540.942427pt;}
.yfe{bottom:542.072187pt;}
.y188{bottom:548.871453pt;}
.y137{bottom:549.581747pt;}
.yce{bottom:551.493573pt;}
.yc6{bottom:552.047360pt;}
.yee{bottom:552.177453pt;}
.yb0{bottom:552.446987pt;}
.y13{bottom:553.041307pt;}
.y15b{bottom:556.006227pt;}
.y96{bottom:557.782920pt;}
.y3a{bottom:557.807653pt;}
.y187{bottom:565.736693pt;}
.y136{bottom:566.446987pt;}
.y75{bottom:567.344360pt;}
.yaf{bottom:569.312213pt;}
.y12{bottom:569.906533pt;}
.y57{bottom:571.070027pt;}
.yff{bottom:572.074467pt;}
.y95{bottom:574.648147pt;}
.y39{bottom:574.672893pt;}
.y135{bottom:583.312213pt;}
.yc7{bottom:585.528853pt;}
.yae{bottom:586.177453pt;}
.y11{bottom:586.771773pt;}
.yed{bottom:587.426800pt;}
.y15a{bottom:589.736693pt;}
.y94{bottom:591.513387pt;}
.y38{bottom:591.538120pt;}
.yd7{bottom:591.805747pt;}
.y186{bottom:599.467160pt;}
.y134{bottom:600.177453pt;}
.y76{bottom:601.347413pt;}
.y100{bottom:602.076747pt;}
.y10{bottom:603.637000pt;}
.yd6{bottom:606.454187pt;}
.y56{bottom:606.601933pt;}
.y37{bottom:608.403360pt;}
.y7d{bottom:609.001747pt;}
.y185{bottom:616.332400pt;}
.yc8{bottom:619.010333pt;}
.yf{bottom:620.502240pt;}
.yd5{bottom:621.102627pt;}
.yad{bottom:621.426800pt;}
.y55{bottom:623.467160pt;}
.y36{bottom:625.268600pt;}
.y93{bottom:626.762733pt;}
.y101{bottom:632.079027pt;}
.ye2{bottom:634.933347pt;}
.y77{bottom:635.350467pt;}
.y133{bottom:635.426800pt;}
.yd4{bottom:635.751053pt;}
.ye{bottom:637.367467pt;}
.y54{bottom:640.332400pt;}
.y92{bottom:642.094773pt;}
.y35{bottom:642.133827pt;}
.y184{bottom:643.864293pt;}
.yd3{bottom:650.399493pt;}
.yc9{bottom:652.491787pt;}
.yd{bottom:654.232707pt;}
.y10d{bottom:657.042400pt;}
.y53{bottom:657.197627pt;}
.y34{bottom:658.999067pt;}
.y183{bottom:660.729533pt;}
.y102{bottom:662.081293pt;}
.ye3{bottom:662.725133pt;}
.yd2{bottom:665.047933pt;}
.yac{bottom:668.933347pt;}
.y78{bottom:669.353520pt;}
.yc{bottom:671.097947pt;}
.y10e{bottom:673.278773pt;}
.y52{bottom:674.062867pt;}
.y33{bottom:675.864293pt;}
.yd1{bottom:679.696373pt;}
.y126{bottom:681.600013pt;}
.yca{bottom:685.973307pt;}
.yb{bottom:687.963173pt;}
.y10f{bottom:689.515133pt;}
.ye4{bottom:690.326987pt;}
.y51{bottom:690.928107pt;}
.y7a{bottom:691.533400pt;}
.y103{bottom:692.083573pt;}
.y32{bottom:692.729533pt;}
.y182{bottom:694.460000pt;}
.y13f{bottom:695.025147pt;}
.ya0{bottom:696.915120pt;}
.y130{bottom:697.747640pt;}
.y79{bottom:703.356533pt;}
.ya{bottom:704.828413pt;}
.y87{bottom:704.933347pt;}
.y127{bottom:705.071853pt;}
.y110{bottom:705.751547pt;}
.y159{bottom:707.793333pt;}
.y31{bottom:709.594773pt;}
.ya1{bottom:710.906000pt;}
.y181{bottom:711.325240pt;}
.y12f{bottom:712.396080pt;}
.ye5{bottom:717.928787pt;}
.y88{bottom:718.924213pt;}
.y140{bottom:719.226973pt;}
.ycb{bottom:719.454773pt;}
.y9{bottom:721.693640pt;}
.y111{bottom:721.987880pt;}
.y104{bottom:722.085853pt;}
.y158{bottom:724.658587pt;}
.y30{bottom:726.460027pt;}
.y132{bottom:727.063720pt;}
.y128{bottom:734.387933pt;}
.y112{bottom:738.224240pt;}
.y8{bottom:738.558880pt;}
.y180{bottom:738.857160pt;}
.ya2{bottom:741.482627pt;}
.y157{bottom:741.523827pt;}
.y131{bottom:741.712160pt;}
.y71{bottom:742.788800pt;}
.y91{bottom:742.916587pt;}
.y2f{bottom:743.325253pt;}
.y141{bottom:743.428787pt;}
.ye6{bottom:745.530613pt;}
.ycc{bottom:752.936253pt;}
.y89{bottom:753.260573pt;}
.y113{bottom:754.460613pt;}
.y7{bottom:755.424107pt;}
.y17f{bottom:755.722387pt;}
.ycf{bottom:758.290973pt;}
.y156{bottom:758.389053pt;}
.y2e{bottom:760.190493pt;}
.y129{bottom:763.704027pt;}
.y142{bottom:767.630613pt;}
.y114{bottom:770.696987pt;}
.ya3{bottom:772.059267pt;}
.y17e{bottom:772.587627pt;}
.ye7{bottom:773.132440pt;}
.yfb{bottom:776.519267pt;}
.y2d{bottom:777.055720pt;}
.y70{bottom:778.320693pt;}
.ycd{bottom:786.417720pt;}
.y115{bottom:786.933347pt;}
.y8a{bottom:787.596960pt;}
.y17d{bottom:789.452867pt;}
.y143{bottom:791.832440pt;}
.y155{bottom:792.119533pt;}
.y12a{bottom:793.020107pt;}
.y2c{bottom:793.920960pt;}
.y6f{bottom:795.185933pt;}
.ye8{bottom:800.734253pt;}
.ya4{bottom:802.635907pt;}
.y116{bottom:803.169720pt;}
.y2b{bottom:810.786200pt;}
.y6e{bottom:812.051173pt;}
.y144{bottom:816.034267pt;}
.y17c{bottom:816.984760pt;}
.yab{bottom:817.154627pt;}
.y117{bottom:819.406093pt;}
.y8b{bottom:821.933333pt;}
.y12b{bottom:822.336187pt;}
.yc3{bottom:825.850000pt;}
.y2a{bottom:827.651427pt;}
.ye9{bottom:828.336080pt;}
.y6d{bottom:828.916400pt;}
.ya5{bottom:833.212524pt;}
.y17b{bottom:833.849996pt;}
.y118{bottom:835.642456pt;}
.y6{bottom:836.550395pt;}
.y145{bottom:840.236084pt;}
.y29{bottom:844.516663pt;}
.y6c{bottom:845.781636pt;}
.y17a{bottom:850.715231pt;}
.y12c{bottom:851.652263pt;}
.y119{bottom:851.878804pt;}
.y5{bottom:853.415629pt;}
.yea{bottom:855.937907pt;}
.y8c{bottom:856.269695pt;}
.y90{bottom:860.704793pt;}
.y28{bottom:861.381897pt;}
.y6b{bottom:862.646871pt;}
.ya6{bottom:863.789184pt;}
.y146{bottom:864.437907pt;}
.y179{bottom:867.580465pt;}
.y11a{bottom:868.115193pt;}
.y4{bottom:871.172791pt;}
.y27{bottom:878.247132pt;}
.y6a{bottom:879.512105pt;}
.ya9{bottom:880.106527pt;}
.y12d{bottom:880.968343pt;}
.yeb{bottom:883.539733pt;}
.y11b{bottom:884.351543pt;}
.y147{bottom:888.639729pt;}
.ya8{bottom:889.099651pt;}
.y8d{bottom:890.606079pt;}
.y3{bottom:890.704051pt;}
.ya7{bottom:894.365804pt;}
.y26{bottom:895.112365pt;}
.yaa{bottom:898.092773pt;}
.y11c{bottom:900.587911pt;}
.y8f{bottom:905.153157pt;}
.y12e{bottom:910.284424pt;}
.yec{bottom:911.141561pt;}
.y50{bottom:911.977600pt;}
.y148{bottom:912.841553pt;}
.y69{bottom:914.761455pt;}
.y11d{bottom:916.824280pt;}
.y8e{bottom:924.942444pt;}
.y25{bottom:928.842835pt;}
.y68{bottom:930.093485pt;}
.y23{bottom:964.542969pt;}
.hf{height:21.992188pt;}
.ha{height:31.992188pt;}
.h9{height:39.585938pt;}
.h11{height:42.768230pt;}
.h1{height:43.031251pt;}
.h8{height:47.812501pt;}
.hb{height:48.255209pt;}
.h7{height:48.484374pt;}
.he{height:52.135404pt;}
.hd{height:52.135458pt;}
.h5{height:52.450522pt;}
.h4{height:52.593751pt;}
.h3{height:52.781251pt;}
.h6{height:53.080730pt;}
.h10{height:58.505188pt;}
.h2{height:62.156251pt;}
.hc{height:64.156241pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.533336pt;}
.x3{left:104.429688pt;}
.x3e{left:107.866659pt;}
.x9{left:118.533336pt;}
.x8{left:122.933340pt;}
.x10{left:125.617188pt;}
.x47{left:135.039063pt;}
.x12{left:142.533336pt;}
.x29{left:155.333333pt;}
.x6{left:159.343424pt;}
.x34{left:163.347656pt;}
.x31{left:168.910807pt;}
.x52{left:171.009115pt;}
.xb{left:180.333333pt;}
.x37{left:181.333333pt;}
.x3b{left:182.720052pt;}
.x27{left:188.270183pt;}
.x13{left:192.333333pt;}
.x18{left:198.333333pt;}
.x1f{left:202.333333pt;}
.x1e{left:213.754557pt;}
.x5a{left:218.930339pt;}
.x28{left:243.981440pt;}
.x5{left:248.657507pt;}
.x23{left:268.591800pt;}
.x2e{left:278.151387pt;}
.xc{left:287.671613pt;}
.x14{left:291.830613pt;}
.x19{left:295.430600pt;}
.x2c{left:299.924667pt;}
.x3d{left:304.637813pt;}
.x22{left:307.841533pt;}
.x36{left:321.825200pt;}
.x24{left:322.980347pt;}
.x43{left:326.457133pt;}
.xf{left:333.277080pt;}
.x5b{left:340.986453pt;}
.x30{left:343.471187pt;}
.x1b{left:344.630853pt;}
.x46{left:354.725013pt;}
.x48{left:356.781573pt;}
.x2a{left:365.244467pt;}
.x35{left:366.867187pt;}
.x53{left:368.411253pt;}
.x11{left:370.190760pt;}
.xd{left:373.149867pt;}
.x15{left:375.549880pt;}
.x20{left:380.590907pt;}
.x4f{left:381.884200pt;}
.x2d{left:387.017747pt;}
.x5d{left:391.073400pt;}
.xa{left:395.636067pt;}
.x4{left:397.671880pt;}
.x3c{left:400.584640pt;}
.x42{left:401.838173pt;}
.x2{left:403.180013pt;}
.x7{left:404.292320pt;}
.x51{left:406.571373pt;}
.x3f{left:411.260787pt;}
.x3a{left:412.783773pt;}
.x50{left:414.578000pt;}
.x1c{left:418.930013pt;}
.x41{left:420.683427pt;}
.x4c{left:423.251867pt;}
.x4d{left:427.255213pt;}
.x4e{left:431.258547pt;}
.x25{left:434.808347pt;}
.x32{left:450.046547pt;}
.x1a{left:455.028160pt;}
.x16{left:456.228107pt;}
.x1d{left:458.628133pt;}
.x44{left:467.796547pt;}
.x59{left:469.603520pt;}
.x4b{left:477.345293pt;}
.x39{left:491.345667pt;}
.x5e{left:501.969000pt;}
.x5f{left:507.249760pt;}
.x58{left:514.862147pt;}
.x26{left:517.242840pt;}
.x21{left:530.906413pt;}
.x17{left:536.906413pt;}
.x2b{left:539.430667pt;}
.x40{left:543.177573pt;}
.xe{left:544.106360pt;}
.x57{left:556.500040pt;}
.x38{left:569.907547pt;}
.x2f{left:582.977213pt;}
.x45{left:590.290773pt;}
.x56{left:598.137933pt;}
.x33{left:636.820880pt;}
.x55{left:641.586227pt;}
.x5c{left:670.952760pt;}
.x49{left:672.792400pt;}
.x4a{left:682.182053pt;}
.x54{left:683.224120pt;}
}




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