
    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_e22dd48402cb566df28b0025.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_8dbe29cada45210aa4092ee0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d8cc4d42f648f24edb5839d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734375;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_b28b1dbb1183286566a5ab92.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_63f37576bc5bb19b10facd0c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6662ab4dc458883119e31168.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_c3ff6194d8c4e0cc4bc6cfc9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710938;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_0a46de06b72ddd5bca386293.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_5c4fc1f108d669f4ddde20d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.811035;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:ffa;src:url('chunks/assets/font_a0026dc95454f92778a4af4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.845703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.689031px;}
.v1{vertical-align:43.200010px;}
.v4{vertical-align:54.531492px;}
.v2{vertical-align:86.588251px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000990px;}
.ls6{letter-spacing:106.500000px;}
.ls1{letter-spacing:107.953131px;}
.ls2{letter-spacing:107.972165px;}
.ls3{letter-spacing:107.976563px;}
.ls4{letter-spacing:108.000003px;}
.ls5{letter-spacing:108.000408px;}
.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;}
}
.ws5{word-spacing:-57.600004px;}
.ws18{word-spacing:-51.000000px;}
.ws3{word-spacing:-33.000002px;}
.ws17{word-spacing:-31.500001px;}
.ws1{word-spacing:-30.000000px;}
.ws14{word-spacing:-27.750000px;}
.ws2{word-spacing:-27.000001px;}
.ws6{word-spacing:-24.000002px;}
.ws11{word-spacing:-22.500001px;}
.ws15{word-spacing:-19.500001px;}
.ws16{word-spacing:-18.000001px;}
.ws4{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:140.875290px;}
.ws10{word-spacing:246.523058px;}
.wsd{word-spacing:258.691058px;}
.wse{word-spacing:261.569425px;}
.wsc{word-spacing:263.819677px;}
.ws12{word-spacing:267.621615px;}
.wsf{word-spacing:279.828427px;}
.wsa{word-spacing:285.677442px;}
.ws7{word-spacing:299.824376px;}
.ws9{word-spacing:483.528417px;}
.ws13{word-spacing:574.724609px;}
.wsb{word-spacing:624.258186px;}
._16{margin-left:-25.602211px;}
._11{margin-left:-16.380001px;}
._20{margin-left:-13.482675px;}
._e{margin-left:-10.920000px;}
._13{margin-left:-9.216000px;}
._12{margin-left:-7.992000px;}
._0{margin-left:-6.264000px;}
._1{margin-left:-4.884000px;}
._14{margin-left:-3.780000px;}
._5{margin-left:-2.160000px;}
._22{margin-left:-1.057410px;}
._7{width:1.189109px;}
._37{width:2.217285px;}
._3b{width:3.311217px;}
._32{width:4.551000px;}
._17{width:6.372000px;}
._2{width:7.680000px;}
._3{width:9.088859px;}
._1e{width:10.908000px;}
._28{width:12.312000px;}
._38{width:13.776965px;}
._36{width:15.455036px;}
._39{width:16.486886px;}
._35{width:18.144001px;}
._1a{width:19.762831px;}
._1b{width:21.176056px;}
._18{width:23.436001px;}
._19{width:25.047901px;}
._c{width:26.904002px;}
._1f{width:28.296001px;}
._21{width:32.616001px;}
._29{width:34.776001px;}
._1c{width:38.880001px;}
._1d{width:41.259916px;}
._f{width:44.688003px;}
._9{width:49.800000px;}
._3a{width:50.952372px;}
._10{width:55.176003px;}
._34{width:64.416004px;}
._25{width:70.987637px;}
._24{width:72.652367px;}
._23{width:89.964003px;}
._15{width:151.092005px;}
._26{width:162.648005px;}
._27{width:163.887170px;}
._4{width:180.480001px;}
._6{width:181.641067px;}
._d{width:199.728012px;}
._2a{width:292.149203px;}
._a{width:304.920002px;}
._b{width:307.434266px;}
._2b{width:389.835302px;}
._2e{width:405.285460px;}
._2f{width:491.665385px;}
._30{width:535.886218px;}
._31{width:544.115171px;}
._8{width:575.520004px;}
._2c{width:594.059538px;}
._2d{width:598.837374px;}
._33{width:606.290825px;}
.fce{color:rgb(91,155,213);}
.fcd{color:rgb(165,165,165);}
.fc0{color:rgb(12,52,61);}
.fc1{color:rgb(136,136,136);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc6{color:rgb(237,125,49);}
.fc4{color:rgb(5,99,193);}
.fcf{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,255);}
.fc7{color:rgb(255,192,0);}
.fc9{color:rgb(68,114,196);}
.fc8{color:rgb(74,134,232);}
.fca{color:rgb(153,0,255);}
.fcb{color:rgb(56,118,29);}
.fcc{color:rgb(112,173,71);}
.fs8{font-size:72.000002px;}
.fsc{font-size:78.000005px;}
.fsa{font-size:84.000000px;}
.fs9{font-size:90.000003px;}
.fs7{font-size:96.000006px;}
.fs6{font-size:106.950000px;}
.fs5{font-size:108.000003px;}
.fsb{font-size:111.000001px;}
.fs4{font-size:114.000007px;}
.fs3{font-size:120.000001px;}
.fsd{font-size:126.000004px;}
.fs1{font-size:132.000007px;}
.fsf{font-size:156.000011px;}
.fse{font-size:162.000005px;}
.fs2{font-size:180.000006px;}
.fs10{font-size:204.000001px;}
.fs0{font-size:348.000023px;}
.y0{bottom:0.000000px;}
.yad{bottom:34.842395px;}
.ya6{bottom:39.145824px;}
.yb2{bottom:41.229054px;}
.y6{bottom:47.954509px;}
.yac{bottom:59.682396px;}
.y6f{bottom:60.627693px;}
.ya5{bottom:63.985814px;}
.yb1{bottom:66.069055px;}
.yf2{bottom:67.680989px;}
.y5e{bottom:76.077775px;}
.yab{bottom:84.522408px;}
.y6e{bottom:85.827692px;}
.ya4{bottom:88.825814px;}
.yb0{bottom:90.909044px;}
.yca{bottom:94.498746px;}
.yd6{bottom:94.505940px;}
.yc7{bottom:99.379102px;}
.y5d{bottom:107.127772px;}
.y4c{bottom:107.984565px;}
.yaa{bottom:109.362409px;}
.ye4{bottom:110.214388px;}
.yf1{bottom:112.239214px;}
.y2a{bottom:113.064379px;}
.ya3{bottom:113.665815px;}
.y7e{bottom:114.048855px;}
.yba{bottom:114.713100px;}
.yaf{bottom:115.749045px;}
.y6d{bottom:132.621789px;}
.ya9{bottom:134.202398px;}
.yc6{bottom:135.379103px;}
.yc9{bottom:135.898741px;}
.yd5{bottom:137.975941px;}
.y5c{bottom:138.177772px;}
.yae{bottom:140.589046px;}
.y4b{bottom:145.244566px;}
.y29{bottom:145.464387px;}
.y3c{bottom:147.146300px;}
.y1e{bottom:149.574687px;}
.y7d{bottom:152.343879px;}
.ye3{bottom:153.684367px;}
.yf0{bottom:155.709193px;}
.yb9{bottom:156.113090px;}
.y6c{bottom:157.821788px;}
.ya8{bottom:159.042399px;}
.y5b{bottom:169.227768px;}
.yd4{bottom:181.445920px;}
.y1d{bottom:181.974692px;}
.y4a{bottom:182.504601px;}
.ya7{bottom:183.882400px;}
.y3b{bottom:186.521293px;}
.y28{bottom:186.864393px;}
.y7c{bottom:190.638880px;}
.y8d{bottom:191.676969px;}
.yc8{bottom:195.495280px;}
.ye2{bottom:197.154346px;}
.yb8{bottom:197.513087px;}
.yef{bottom:199.179194px;}
.y9a{bottom:200.995885px;}
.y11{bottom:212.815140px;}
.y8c{bottom:218.586968px;}
.y49{bottom:219.764591px;}
.y4{bottom:221.285906px;}
.y6b{bottom:221.467238px;}
.yd3{bottom:224.915899px;}
.y99{bottom:227.905883px;}
.y7b{bottom:228.933881px;}
.y5a{bottom:234.000387px;}
.y27{bottom:238.137540px;}
.yb7{bottom:238.913082px;}
.ye1{bottom:240.624336px;}
.yee{bottom:242.649173px;}
.y30{bottom:244.001727px;}
.y8b{bottom:245.496967px;}
.y6a{bottom:246.667237px;}
.y10{bottom:248.815141px;}
.y91{bottom:252.081518px;}
.y98{bottom:254.815882px;}
.y59{bottom:255.600387px;}
.y48{bottom:257.024592px;}
.y7a{bottom:267.228883px;}
.yd2{bottom:268.385889px;}
.y26{bottom:270.537541px;}
.y8a{bottom:272.406965px;}
.y2f{bottom:276.401739px;}
.y90{bottom:278.991516px;}
.y97{bottom:281.725881px;}
.yc5{bottom:283.951401px;}
.ye0{bottom:284.094315px;}
.yf{bottom:284.815142px;}
.yed{bottom:286.119152px;}
.ybb{bottom:292.477933px;}
.y69{bottom:293.461334px;}
.y47{bottom:294.284582px;}
.y58{bottom:298.795664px;}
.y25{bottom:302.937531px;}
.y79{bottom:305.523906px;}
.y8f{bottom:305.901515px;}
.y2e{bottom:308.801729px;}
.yd1{bottom:311.855868px;}
.y68{bottom:318.661333px;}
.y57{bottom:320.395664px;}
.ye{bottom:320.815143px;}
.y3{bottom:325.685887px;}
.ydf{bottom:327.564305px;}
.yc4{bottom:329.491425px;}
.yec{bottom:329.589142px;}
.y46{bottom:331.544572px;}
.y8e{bottom:332.811513px;}
.y24{bottom:335.337532px;}
.y89{bottom:336.270533px;}
.y2d{bottom:341.201730px;}
.y78{bottom:343.818919px;}
.ya2{bottom:348.829961px;}
.y3a{bottom:350.985360px;}
.yd0{bottom:355.325847px;}
.yd{bottom:356.815144px;}
.y17{bottom:360.130024px;}
.y88{bottom:363.180532px;}
.y56{bottom:363.590119px;}
.y67{bottom:365.455430px;}
.y55{bottom:366.830120px;}
.y23{bottom:367.737540px;}
.y45{bottom:368.804562px;}
.yde{bottom:371.034284px;}
.yeb{bottom:373.059121px;}
.y2c{bottom:373.601738px;}
.yc3{bottom:375.031426px;}
.ya1{bottom:375.739958px;}
.y77{bottom:382.113931px;}
.y54{bottom:388.430120px;}
.y87{bottom:390.090530px;}
.y39{bottom:390.360354px;}
.y66{bottom:390.655429px;}
.ybd{bottom:391.141708px;}
.ycf{bottom:398.795848px;}
.y16{bottom:399.460026px;}
.y22{bottom:400.137546px;}
.ya0{bottom:402.649956px;}
.y96{bottom:403.600716px;}
.y44{bottom:406.064575px;}
.ydd{bottom:414.504263px;}
.y2b{bottom:415.001744px;}
.yea{bottom:416.529100px;}
.y76{bottom:420.408921px;}
.yc2{bottom:420.571416px;}
.y1c{bottom:428.372707px;}
.yc{bottom:428.815147px;}
.y9f{bottom:429.559955px;}
.y2{bottom:430.085890px;}
.y95{bottom:430.510715px;}
.yf5{bottom:432.747528px;}
.ybc{bottom:436.681709px;}
.y53{bottom:437.000017px;}
.y65{bottom:437.498358px;}
.y15{bottom:438.790027px;}
.yce{bottom:442.265849px;}
.y43{bottom:443.324576px;}
.y64{bottom:444.651293px;}
.y86{bottom:453.951139px;}
.y9e{bottom:456.469954px;}
.y94{bottom:457.420714px;}
.ydc{bottom:457.974264px;}
.y52{bottom:458.600018px;}
.y75{bottom:458.703923px;}
.ye9{bottom:459.999101px;}
.y1f{bottom:460.498219px;}
.y21{bottom:461.022334px;}
.yb{bottom:464.815148px;}
.yc1{bottom:466.111418px;}
.y1b{bottom:467.702708px;}
.y63{bottom:469.851291px;}
.y14{bottom:478.120028px;}
.y85{bottom:480.861138px;}
.ycd{bottom:485.735862px;}
.y74{bottom:496.998912px;}
.ydb{bottom:501.444266px;}
.yf4{bottom:503.127519px;}
.ye8{bottom:503.469103px;}
.y1a{bottom:507.032709px;}
.y84{bottom:507.771137px;}
.y42{bottom:510.356927px;}
.yc0{bottom:511.651414px;}
.y62{bottom:516.645400px;}
.y13{bottom:517.450029px;}
.y20{bottom:520.614407px;}
.yb5{bottom:522.811420px;}
.y9d{bottom:527.259213px;}
.y93{bottom:528.209995px;}
.ycc{bottom:529.205852px;}
.y51{bottom:533.797918px;}
.y1{bottom:534.485894px;}
.y73{bottom:535.293902px;}
.ya{bottom:536.815150px;}
.y61{bottom:541.845399px;}
.yda{bottom:544.914278px;}
.ye7{bottom:546.939115px;}
.y41{bottom:547.616917px;}
.y9c{bottom:554.169212px;}
.y92{bottom:555.119994px;}
.y36{bottom:556.990271px;}
.ybf{bottom:557.191409px;}
.yb4{bottom:564.211416px;}
.y50{bottom:566.917919px;}
.y38{bottom:567.070980px;}
.ycb{bottom:572.675846px;}
.yf3{bottom:573.507513px;}
.y72{bottom:573.588892px;}
.y9b{bottom:581.079210px;}
.y83{bottom:582.029993px;}
.y40{bottom:584.876907px;}
.yd9{bottom:588.384269px;}
.y60{bottom:588.639496px;}
.ye6{bottom:590.409105px;}
.y33{bottom:590.416283px;}
.y35{bottom:596.365264px;}
.y4f{bottom:600.037926px;}
.ybe{bottom:602.731411px;}
.y19{bottom:604.014563px;}
.yb3{bottom:605.611411px;}
.y37{bottom:606.445973px;}
.y9{bottom:608.815152px;}
.y71{bottom:611.883894px;}
.y5f{bottom:613.839495px;}
.y3f{bottom:622.136919px;}
.y32{bottom:627.676295px;}
.y4e{bottom:633.157917px;}
.ye5{bottom:633.879099px;}
.yd8{bottom:635.634272px;}
.yd7{bottom:644.554249px;}
.y8{bottom:644.815153px;}
.y18{bottom:645.414558px;}
.y70{bottom:650.178895px;}
.y82{bottom:650.286023px;}
.y80{bottom:651.236806px;}
.yb6{bottom:659.176296px;}
.y3e{bottom:659.396920px;}
.y31{bottom:664.936297px;}
.y4d{bottom:666.277911px;}
.y7f{bottom:668.653929px;}
.y81{bottom:681.336020px;}
.y5{bottom:728.644368px;}
.yf6{bottom:745.805904px;}
.y34{bottom:749.045904px;}
.y7{bottom:750.917647px;}
.y3d{bottom:751.611024px;}
.y12{bottom:752.789996px;}
.h11{height:49.992189px;}
.h12{height:54.000002px;}
.he{height:63.949221px;}
.h14{height:65.390627px;}
.h18{height:66.656254px;}
.h1d{height:69.278325px;}
.hc{height:69.750004px;}
.h15{height:74.607422px;}
.ha{height:74.988284px;}
.h19{height:76.345286px;}
.h1b{height:77.071289px;}
.h8{height:78.468753px;}
.h6{height:79.154301px;}
.h13{height:79.936526px;}
.hd{height:85.265630px;}
.h20{height:87.486331px;}
.h1e{height:91.546878px;}
.h2{height:91.652349px;}
.h9{height:94.991236px;}
.h7{height:95.923831px;}
.h1a{height:98.588379px;}
.h5{height:101.252936px;}
.h22{height:103.974617px;}
.h4{height:106.582032px;}
.h10{height:107.149231px;}
.h16{height:110.048046px;}
.h1f{height:111.911136px;}
.hb{height:117.240241px;}
.h1c{height:134.468018px;}
.h23{height:141.644532px;}
.h21{height:143.885747px;}
.hf{height:150.349224px;}
.h17{height:153.244505px;}
.h3{height:159.873052px;}
.h1{height:309.087911px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x48{left:28.934056px;}
.x15{left:42.835631px;}
.x6{left:48.011813px;}
.x41{left:53.494987px;}
.x31{left:54.572836px;}
.x2e{left:58.054137px;}
.x8{left:64.175106px;}
.x33{left:66.195637px;}
.x6a{left:72.826776px;}
.x34{left:74.347493px;}
.x3d{left:76.308235px;}
.x21{left:77.357527px;}
.x62{left:80.214566px;}
.x3f{left:85.019192px;}
.x40{left:86.945954px;}
.x29{left:89.109808px;}
.xc{left:91.461575px;}
.x44{left:94.448467px;}
.x16{left:96.835632px;}
.x3a{left:99.581862px;}
.x3b{left:100.760403px;}
.x57{left:103.539592px;}
.x32{left:105.197838px;}
.x56{left:106.466352px;}
.x43{left:107.494989px;}
.x30{left:112.054139px;}
.x25{left:115.240928px;}
.x3e{left:117.961981px;}
.x9{left:121.163389px;}
.x2f{left:122.746038px;}
.x6b{left:126.826778px;}
.xa{left:130.050350px;}
.x6c{left:131.326778px;}
.x65{left:134.214568px;}
.x64{left:138.714568px;}
.x5c{left:139.928111px;}
.x2d{left:145.686020px;}
.xd{left:146.955717px;}
.x1a{left:150.835634px;}
.x70{left:159.896281px;}
.x42{left:162.233272px;}
.x39{left:163.340555px;}
.x6d{left:185.326780px;}
.x63{left:192.714569px;}
.x61{left:198.919892px;}
.x36{left:204.519685px;}
.xf{left:206.274548px;}
.xe{left:220.419095px;}
.x5a{left:231.673603px;}
.x2a{left:235.376636px;}
.x60{left:241.646453px;}
.x6e{left:256.220018px;}
.x26{left:260.267195px;}
.x22{left:264.520381px;}
.x19{left:289.623920px;}
.x14{left:290.830116px;}
.x6f{left:322.739009px;}
.x20{left:335.690628px;}
.x58{left:347.326846px;}
.x3c{left:362.739493px;}
.x1d{left:392.584963px;}
.xb{left:394.365248px;}
.x1e{left:415.214608px;}
.x3{left:425.145647px;}
.x2{left:437.336761px;}
.x66{left:484.967979px;}
.x49{left:502.077785px;}
.x35{left:512.106091px;}
.x5d{left:556.609365px;}
.x1f{left:559.159679px;}
.x4f{left:601.208980px;}
.x69{left:606.218487px;}
.x59{left:612.097850px;}
.x50{left:643.950189px;}
.x1{left:646.581272px;}
.x54{left:648.226067px;}
.x18{left:654.122882px;}
.x51{left:661.800779px;}
.x37{left:663.617159px;}
.x45{left:666.235911px;}
.x7{left:681.757829px;}
.x55{left:684.977534px;}
.x52{left:694.302738px;}
.x53{left:699.809085px;}
.x4{left:702.057094px;}
.x5b{left:711.160032px;}
.x1b{left:754.671287px;}
.x1c{left:808.671288px;}
.x12{left:877.122000px;}
.x17{left:879.290286px;}
.x10{left:891.008135px;}
.x5e{left:905.841283px;}
.x2b{left:923.316727px;}
.x13{left:932.616142px;}
.x27{left:938.871343px;}
.x23{left:964.084176px;}
.x68{left:967.314023px;}
.x4a{left:975.227431px;}
.x5f{left:978.732706px;}
.x11{left:992.885589px;}
.x28{left:1020.865341px;}
.x46{left:1023.850720px;}
.x38{left:1025.379933px;}
.x24{left:1031.852688px;}
.x4b{left:1077.362539px;}
.x2c{left:1087.272541px;}
.x67{left:1100.701959px;}
.x4d{left:1102.112540px;}
.x5{left:1105.317969px;}
.x4c{left:1132.140377px;}
.x47{left:1133.977671px;}
.x4e{left:1145.139399px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.612472pt;}
.v1{vertical-align:38.400009pt;}
.v4{vertical-align:48.472438pt;}
.v2{vertical-align:76.967334pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000880pt;}
.ls6{letter-spacing:94.666667pt;}
.ls1{letter-spacing:95.958339pt;}
.ls2{letter-spacing:95.975258pt;}
.ls3{letter-spacing:95.979167pt;}
.ls4{letter-spacing:96.000003pt;}
.ls5{letter-spacing:96.000363pt;}
.ws5{word-spacing:-51.200003pt;}
.ws18{word-spacing:-45.333333pt;}
.ws3{word-spacing:-29.333335pt;}
.ws17{word-spacing:-28.000001pt;}
.ws1{word-spacing:-26.666667pt;}
.ws14{word-spacing:-24.666667pt;}
.ws2{word-spacing:-24.000001pt;}
.ws6{word-spacing:-21.333335pt;}
.ws11{word-spacing:-20.000001pt;}
.ws15{word-spacing:-17.333335pt;}
.ws16{word-spacing:-16.000001pt;}
.ws4{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:125.222480pt;}
.ws10{word-spacing:219.131607pt;}
.wsd{word-spacing:229.947607pt;}
.wse{word-spacing:232.506155pt;}
.wsc{word-spacing:234.506380pt;}
.ws12{word-spacing:237.885880pt;}
.wsf{word-spacing:248.736380pt;}
.wsa{word-spacing:253.935504pt;}
.ws7{word-spacing:266.510557pt;}
.ws9{word-spacing:429.803038pt;}
.ws13{word-spacing:510.866319pt;}
.wsb{word-spacing:554.896166pt;}
._16{margin-left:-22.757521pt;}
._11{margin-left:-14.560000pt;}
._20{margin-left:-11.984600pt;}
._e{margin-left:-9.706667pt;}
._13{margin-left:-8.192000pt;}
._12{margin-left:-7.104000pt;}
._0{margin-left:-5.568000pt;}
._1{margin-left:-4.341334pt;}
._14{margin-left:-3.360000pt;}
._5{margin-left:-1.920000pt;}
._22{margin-left:-0.939920pt;}
._7{width:1.056985pt;}
._37{width:1.970920pt;}
._3b{width:2.943304pt;}
._32{width:4.045333pt;}
._17{width:5.664000pt;}
._2{width:6.826667pt;}
._3{width:8.078985pt;}
._1e{width:9.696000pt;}
._28{width:10.944000pt;}
._38{width:12.246191pt;}
._36{width:13.737810pt;}
._39{width:14.655010pt;}
._35{width:16.128001pt;}
._1a{width:17.566961pt;}
._1b{width:18.823161pt;}
._18{width:20.832001pt;}
._19{width:22.264801pt;}
._c{width:23.914668pt;}
._1f{width:25.152001pt;}
._21{width:28.992001pt;}
._29{width:30.912001pt;}
._1c{width:34.560001pt;}
._1d{width:36.675481pt;}
._f{width:39.722669pt;}
._9{width:44.266667pt;}
._3a{width:45.290997pt;}
._10{width:49.045336pt;}
._34{width:57.258670pt;}
._25{width:63.100122pt;}
._24{width:64.579882pt;}
._23{width:79.968003pt;}
._15{width:134.304004pt;}
._26{width:144.576005pt;}
._27{width:145.677485pt;}
._4{width:160.426668pt;}
._6{width:161.458726pt;}
._d{width:177.536010pt;}
._2a{width:259.688180pt;}
._a{width:271.040002pt;}
._b{width:273.274903pt;}
._2b{width:346.520268pt;}
._2e{width:360.253742pt;}
._2f{width:437.035898pt;}
._30{width:476.343305pt;}
._31{width:483.657930pt;}
._8{width:511.573337pt;}
._2c{width:528.052923pt;}
._2d{width:532.299888pt;}
._33{width:538.925178pt;}
.fs8{font-size:64.000002pt;}
.fsc{font-size:69.333338pt;}
.fsa{font-size:74.666666pt;}
.fs9{font-size:80.000003pt;}
.fs7{font-size:85.333339pt;}
.fs6{font-size:95.066667pt;}
.fs5{font-size:96.000003pt;}
.fsb{font-size:98.666667pt;}
.fs4{font-size:101.333339pt;}
.fs3{font-size:106.666667pt;}
.fsd{font-size:112.000004pt;}
.fs1{font-size:117.333340pt;}
.fsf{font-size:138.666676pt;}
.fse{font-size:144.000005pt;}
.fs2{font-size:160.000005pt;}
.fs10{font-size:181.333334pt;}
.fs0{font-size:309.333354pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:30.971018pt;}
.ya6{bottom:34.796288pt;}
.yb2{bottom:36.648048pt;}
.y6{bottom:42.626230pt;}
.yac{bottom:53.051019pt;}
.y6f{bottom:53.891283pt;}
.ya5{bottom:56.876279pt;}
.yb1{bottom:58.728049pt;}
.yf2{bottom:60.160879pt;}
.y5e{bottom:67.624689pt;}
.yab{bottom:75.131029pt;}
.y6e{bottom:76.291281pt;}
.ya4{bottom:78.956279pt;}
.yb0{bottom:80.808040pt;}
.yca{bottom:83.998886pt;}
.yd6{bottom:84.005280pt;}
.yc7{bottom:88.336980pt;}
.y5d{bottom:95.224686pt;}
.y4c{bottom:95.986280pt;}
.yaa{bottom:97.211030pt;}
.ye4{bottom:97.968345pt;}
.yf1{bottom:99.768190pt;}
.y2a{bottom:100.501670pt;}
.ya3{bottom:101.036280pt;}
.y7e{bottom:101.376760pt;}
.yba{bottom:101.967200pt;}
.yaf{bottom:102.888040pt;}
.y6d{bottom:117.886035pt;}
.ya9{bottom:119.291021pt;}
.yc6{bottom:120.336981pt;}
.yc9{bottom:120.798881pt;}
.yd5{bottom:122.645281pt;}
.y5c{bottom:122.824686pt;}
.yae{bottom:124.968041pt;}
.y4b{bottom:129.106281pt;}
.y29{bottom:129.301677pt;}
.y3c{bottom:130.796711pt;}
.y1e{bottom:132.955277pt;}
.y7d{bottom:135.416781pt;}
.ye3{bottom:136.608326pt;}
.yf0{bottom:138.408171pt;}
.yb9{bottom:138.767191pt;}
.y6c{bottom:140.286033pt;}
.ya8{bottom:141.371021pt;}
.y5b{bottom:150.424683pt;}
.yd4{bottom:161.285262pt;}
.y1d{bottom:161.755282pt;}
.y4a{bottom:162.226312pt;}
.ya7{bottom:163.451022pt;}
.y3b{bottom:165.796705pt;}
.y28{bottom:166.101682pt;}
.y7c{bottom:169.456782pt;}
.y8d{bottom:170.379528pt;}
.yc8{bottom:173.773583pt;}
.ye2{bottom:175.248308pt;}
.yb8{bottom:175.567189pt;}
.yef{bottom:177.048173pt;}
.y9a{bottom:178.663009pt;}
.y11{bottom:189.169013pt;}
.y8c{bottom:194.299527pt;}
.y49{bottom:195.346303pt;}
.y4{bottom:196.698583pt;}
.y6b{bottom:196.859767pt;}
.yd3{bottom:199.925243pt;}
.y99{bottom:202.583007pt;}
.y7b{bottom:203.496783pt;}
.y5a{bottom:208.000344pt;}
.y27{bottom:211.677814pt;}
.yb7{bottom:212.367184pt;}
.ye1{bottom:213.888299pt;}
.yee{bottom:215.688154pt;}
.y30{bottom:216.890424pt;}
.y8b{bottom:218.219526pt;}
.y6a{bottom:219.259766pt;}
.y10{bottom:221.169014pt;}
.y91{bottom:224.072460pt;}
.y98{bottom:226.503006pt;}
.y59{bottom:227.200344pt;}
.y48{bottom:228.466304pt;}
.y7a{bottom:237.536785pt;}
.yd2{bottom:238.565235pt;}
.y26{bottom:240.477815pt;}
.y8a{bottom:242.139525pt;}
.y2f{bottom:245.690435pt;}
.y90{bottom:247.992459pt;}
.y97{bottom:250.423005pt;}
.yc5{bottom:252.401245pt;}
.ye0{bottom:252.528280pt;}
.yf{bottom:253.169015pt;}
.yed{bottom:254.328135pt;}
.ybb{bottom:259.980385pt;}
.y69{bottom:260.854519pt;}
.y47{bottom:261.586295pt;}
.y58{bottom:265.596145pt;}
.y25{bottom:269.277806pt;}
.y79{bottom:271.576806pt;}
.y8f{bottom:271.912458pt;}
.y2e{bottom:274.490426pt;}
.yd1{bottom:277.205216pt;}
.y68{bottom:283.254518pt;}
.y57{bottom:284.796146pt;}
.ye{bottom:285.169016pt;}
.y3{bottom:289.498566pt;}
.ydf{bottom:291.168271pt;}
.yc4{bottom:292.881266pt;}
.yec{bottom:292.968126pt;}
.y46{bottom:294.706286pt;}
.y8e{bottom:295.832456pt;}
.y24{bottom:298.077806pt;}
.y89{bottom:298.907141pt;}
.y2d{bottom:303.290427pt;}
.y78{bottom:305.616817pt;}
.ya2{bottom:310.071077pt;}
.y3a{bottom:311.986987pt;}
.yd0{bottom:315.845197pt;}
.yd{bottom:317.169017pt;}
.y17{bottom:320.115577pt;}
.y88{bottom:322.827139pt;}
.y56{bottom:323.191217pt;}
.y67{bottom:324.849271pt;}
.y55{bottom:326.071217pt;}
.y23{bottom:326.877813pt;}
.y45{bottom:327.826277pt;}
.yde{bottom:329.808253pt;}
.yeb{bottom:331.608108pt;}
.y2c{bottom:332.090434pt;}
.yc3{bottom:333.361268pt;}
.ya1{bottom:333.991074pt;}
.y77{bottom:339.656828pt;}
.y54{bottom:345.271218pt;}
.y87{bottom:346.747138pt;}
.y39{bottom:346.986981pt;}
.y66{bottom:347.249270pt;}
.ybd{bottom:347.681518pt;}
.ycf{bottom:354.485198pt;}
.y16{bottom:355.075578pt;}
.y22{bottom:355.677818pt;}
.ya0{bottom:357.911072pt;}
.y96{bottom:358.756192pt;}
.y44{bottom:360.946289pt;}
.ydd{bottom:368.448234pt;}
.y2b{bottom:368.890439pt;}
.yea{bottom:370.248089pt;}
.y76{bottom:373.696819pt;}
.yc2{bottom:373.841259pt;}
.y1c{bottom:380.775739pt;}
.yc{bottom:381.169019pt;}
.y9f{bottom:381.831071pt;}
.y2{bottom:382.298569pt;}
.y95{bottom:382.676191pt;}
.yf5{bottom:384.664469pt;}
.ybc{bottom:388.161519pt;}
.y53{bottom:388.444459pt;}
.y65{bottom:388.887429pt;}
.y15{bottom:390.035579pt;}
.yce{bottom:393.125200pt;}
.y43{bottom:394.066290pt;}
.y64{bottom:395.245594pt;}
.y86{bottom:403.512124pt;}
.y9e{bottom:405.751070pt;}
.y94{bottom:406.596190pt;}
.ydc{bottom:407.088235pt;}
.y52{bottom:407.644460pt;}
.y75{bottom:407.736820pt;}
.ye9{bottom:408.888090pt;}
.y1f{bottom:409.331750pt;}
.y21{bottom:409.797630pt;}
.yb{bottom:413.169020pt;}
.yc1{bottom:414.321260pt;}
.y1b{bottom:415.735740pt;}
.y63{bottom:417.645592pt;}
.y14{bottom:424.995581pt;}
.y85{bottom:427.432123pt;}
.ycd{bottom:431.765211pt;}
.y74{bottom:441.776811pt;}
.ydb{bottom:445.728236pt;}
.yf4{bottom:447.224461pt;}
.ye8{bottom:447.528091pt;}
.y1a{bottom:450.695741pt;}
.y84{bottom:451.352121pt;}
.y42{bottom:453.650601pt;}
.yc0{bottom:454.801257pt;}
.y62{bottom:459.240356pt;}
.y13{bottom:459.955582pt;}
.y20{bottom:462.768362pt;}
.yb5{bottom:464.721262pt;}
.y9d{bottom:468.674856pt;}
.y93{bottom:469.519996pt;}
.ycc{bottom:470.405202pt;}
.y51{bottom:474.487038pt;}
.y1{bottom:475.098572pt;}
.y73{bottom:475.816802pt;}
.ya{bottom:477.169022pt;}
.y61{bottom:481.640354pt;}
.yda{bottom:484.368247pt;}
.ye7{bottom:486.168103pt;}
.y41{bottom:486.770593pt;}
.y9c{bottom:492.594855pt;}
.y92{bottom:493.439995pt;}
.y36{bottom:495.102463pt;}
.ybf{bottom:495.281253pt;}
.yb4{bottom:501.521259pt;}
.y50{bottom:503.927039pt;}
.y38{bottom:504.063093pt;}
.ycb{bottom:509.045196pt;}
.yf3{bottom:509.784456pt;}
.y72{bottom:509.856793pt;}
.y9b{bottom:516.514853pt;}
.y83{bottom:517.359994pt;}
.y40{bottom:519.890584pt;}
.yd9{bottom:523.008239pt;}
.y60{bottom:523.235108pt;}
.ye6{bottom:524.808094pt;}
.y33{bottom:524.814474pt;}
.y35{bottom:530.102457pt;}
.y4f{bottom:533.367045pt;}
.ybe{bottom:535.761254pt;}
.y19{bottom:536.901834pt;}
.yb3{bottom:538.321254pt;}
.y37{bottom:539.063087pt;}
.y9{bottom:541.169024pt;}
.y71{bottom:543.896794pt;}
.y5f{bottom:545.635106pt;}
.y3f{bottom:553.010595pt;}
.y32{bottom:557.934485pt;}
.y4e{bottom:562.807037pt;}
.ye5{bottom:563.448088pt;}
.yd8{bottom:565.008242pt;}
.yd7{bottom:572.937110pt;}
.y8{bottom:573.169025pt;}
.y18{bottom:573.701829pt;}
.y70{bottom:577.936795pt;}
.y82{bottom:578.032020pt;}
.y80{bottom:578.877160pt;}
.yb6{bottom:585.934486pt;}
.y3e{bottom:586.130596pt;}
.y31{bottom:591.054486pt;}
.y4d{bottom:592.247032pt;}
.y7f{bottom:594.359048pt;}
.y81{bottom:605.632017pt;}
.y5{bottom:647.683883pt;}
.yf6{bottom:662.938581pt;}
.y34{bottom:665.818581pt;}
.y7{bottom:667.482353pt;}
.y3d{bottom:668.098688pt;}
.y12{bottom:669.146663pt;}
.h11{height:44.437501pt;}
.h12{height:48.000002pt;}
.he{height:56.843752pt;}
.h14{height:58.125002pt;}
.h18{height:59.250004pt;}
.h1d{height:61.580734pt;}
.hc{height:62.000004pt;}
.h15{height:66.317708pt;}
.ha{height:66.656252pt;}
.h19{height:67.862476pt;}
.h1b{height:68.507813pt;}
.h8{height:69.750002pt;}
.h6{height:70.359379pt;}
.h13{height:71.054690pt;}
.hd{height:75.791671pt;}
.h20{height:77.765627pt;}
.h1e{height:81.375003pt;}
.h2{height:81.468754pt;}
.h9{height:84.436654pt;}
.h7{height:85.265628pt;}
.h1a{height:87.634115pt;}
.h5{height:90.002609pt;}
.h22{height:92.421882pt;}
.h4{height:94.739584pt;}
.h10{height:95.243761pt;}
.h16{height:97.820485pt;}
.h1f{height:99.476566pt;}
.hb{height:104.213547pt;}
.h1c{height:119.527127pt;}
.h23{height:125.906250pt;}
.h21{height:127.898442pt;}
.hf{height:133.643754pt;}
.h17{height:136.217338pt;}
.h3{height:142.109380pt;}
.h1{height:274.744810pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x48{left:25.719161pt;}
.x15{left:38.076116pt;}
.x6{left:42.677167pt;}
.x41{left:47.551100pt;}
.x31{left:48.509188pt;}
.x2e{left:51.603678pt;}
.x8{left:57.044539pt;}
.x33{left:58.840566pt;}
.x6a{left:64.734912pt;}
.x34{left:66.086660pt;}
.x3d{left:67.829542pt;}
.x21{left:68.762246pt;}
.x62{left:71.301836pt;}
.x3f{left:75.572615pt;}
.x40{left:77.285292pt;}
.x29{left:79.208719pt;}
.xc{left:81.299178pt;}
.x44{left:83.954193pt;}
.x16{left:86.076118pt;}
.x3a{left:88.517211pt;}
.x3b{left:89.564803pt;}
.x57{left:92.035193pt;}
.x32{left:93.509189pt;}
.x56{left:94.636757pt;}
.x43{left:95.551101pt;}
.x30{left:99.603679pt;}
.x25{left:102.436380pt;}
.x3e{left:104.855094pt;}
.x9{left:107.700790pt;}
.x2f{left:109.107589pt;}
.x6b{left:112.734914pt;}
.xa{left:115.600311pt;}
.x6c{left:116.734914pt;}
.x65{left:119.301838pt;}
.x64{left:123.301838pt;}
.x5c{left:124.380543pt;}
.x2d{left:129.498684pt;}
.xd{left:130.627304pt;}
.x1a{left:134.076119pt;}
.x70{left:142.130028pt;}
.x42{left:144.207353pt;}
.x39{left:145.191605pt;}
.x6d{left:164.734915pt;}
.x63{left:171.301839pt;}
.x61{left:176.817682pt;}
.x36{left:181.795276pt;}
.xf{left:183.355154pt;}
.xe{left:195.928084pt;}
.x5a{left:205.932092pt;}
.x2a{left:209.223677pt;}
.x60{left:214.796847pt;}
.x6e{left:227.751127pt;}
.x26{left:231.348617pt;}
.x22{left:235.129228pt;}
.x19{left:257.443484pt;}
.x14{left:258.515658pt;}
.x6f{left:286.879119pt;}
.x20{left:298.391670pt;}
.x58{left:308.734974pt;}
.x3c{left:322.435105pt;}
.x1d{left:348.964411pt;}
.xb{left:350.546887pt;}
.x1e{left:369.079652pt;}
.x3{left:377.907242pt;}
.x2{left:388.743787pt;}
.x66{left:431.082648pt;}
.x49{left:446.291364pt;}
.x35{left:455.205415pt;}
.x5d{left:494.763880pt;}
.x1f{left:497.030826pt;}
.x4f{left:534.407982pt;}
.x69{left:538.860877pt;}
.x59{left:544.086977pt;}
.x50{left:572.400168pt;}
.x1{left:574.738908pt;}
.x54{left:576.200948pt;}
.x18{left:581.442562pt;}
.x51{left:588.267359pt;}
.x37{left:589.881919pt;}
.x45{left:592.209699pt;}
.x7{left:606.006959pt;}
.x55{left:608.868919pt;}
.x52{left:617.157990pt;}
.x53{left:622.052520pt;}
.x4{left:624.050750pt;}
.x5b{left:632.142250pt;}
.x1b{left:670.818921pt;}
.x1c{left:718.818923pt;}
.x12{left:779.664000pt;}
.x17{left:781.591365pt;}
.x10{left:792.007231pt;}
.x5e{left:805.192252pt;}
.x2b{left:820.725979pt;}
.x13{left:828.992127pt;}
.x27{left:834.552305pt;}
.x23{left:856.963712pt;}
.x68{left:859.834688pt;}
.x4a{left:866.868828pt;}
.x5f{left:869.984628pt;}
.x11{left:882.564968pt;}
.x28{left:907.435859pt;}
.x46{left:910.089529pt;}
.x38{left:911.448829pt;}
.x24{left:917.202389pt;}
.x4b{left:957.655591pt;}
.x2c{left:966.464481pt;}
.x67{left:978.401741pt;}
.x4d{left:979.655591pt;}
.x5{left:982.504861pt;}
.x4c{left:1006.347002pt;}
.x47{left:1007.980152pt;}
.x4e{left:1017.901688pt;}
}




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