
    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_96cfe970d391d9eff013fb4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_c7f9d9bc65ca3e2101db0f70.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_09b3e916c3499d3347cb1015.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_9bccd839a156fcbf05e7347c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_449c7a79f49847e54a2f189a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_4b40b3cf770fe2f030c271e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_8b5edbbdc02ec1166fa64dab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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;}
.lsa{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.954000px;}
.ls8{letter-spacing:-0.942000px;}
.ls10{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.466800px;}
.ls1c{letter-spacing:-0.417600px;}
.ls1b{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.020160px;}
.ls1a{letter-spacing:-0.015840px;}
.lsb{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015840px;}
.ls2{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.250800px;}
.ls14{letter-spacing:0.466800px;}
.ls9{letter-spacing:0.486600px;}
.ls1d{letter-spacing:0.501000px;}
.ls11{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.519840px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:9.106560px;}
.lse{letter-spacing:13.426560px;}
.ls3{letter-spacing:14.400000px;}
.ls15{letter-spacing:26.386560px;}
.ls17{letter-spacing:40.786560px;}
.ls18{letter-spacing:40.906560px;}
.ls19{letter-spacing:58.909440px;}
.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:-60.480000px;}
.wsc{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.606600px;}
.wsf{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.099840px;}
.ws10{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.wse{word-spacing:-14.166000px;}
.ws11{word-spacing:-14.148000px;}
.ws4{word-spacing:-13.680000px;}
.ws13{word-spacing:-12.600000px;}
.ws16{word-spacing:-12.381000px;}
.ws7{word-spacing:-12.240000px;}
.ws9{word-spacing:-12.130800px;}
.ws2{word-spacing:-11.880000px;}
.ws8{word-spacing:-11.864400px;}
.ws14{word-spacing:-11.864160px;}
.ws3{word-spacing:-11.160000px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:0.351360px;}
.wsa{word-spacing:12.453840px;}
.ws5{word-spacing:29.773080px;}
._14{margin-left:-2.910824px;}
._0{margin-left:-1.451399px;}
._1{width:1.148999px;}
._2{width:2.487364px;}
._6{width:3.566088px;}
._17{width:5.231123px;}
._c{width:6.266978px;}
._b{width:7.608609px;}
._1a{width:8.988332px;}
._d{width:10.169670px;}
._27{width:11.612402px;}
._1b{width:12.829423px;}
._1c{width:14.030997px;}
._e{width:15.485639px;}
._f{width:16.885089px;}
._19{width:17.985085px;}
._4{width:19.071020px;}
._3{width:20.667239px;}
._a{width:22.072538px;}
._8{width:23.178041px;}
._9{width:24.324031px;}
._7{width:25.528199px;}
._30{width:26.855265px;}
._32{width:27.941760px;}
._1d{width:29.312003px;}
._15{width:30.752421px;}
._16{width:31.930877px;}
._18{width:33.329385px;}
._5{width:34.721487px;}
._2a{width:35.866560px;}
._24{width:37.464802px;}
._13{width:38.687423px;}
._12{width:40.714263px;}
._2b{width:42.336000px;}
._40{width:43.356956px;}
._25{width:44.573397px;}
._26{width:45.860254px;}
._31{width:47.605544px;}
._35{width:48.610111px;}
._39{width:49.790728px;}
._34{width:50.984398px;}
._33{width:52.436160px;}
._21{width:54.560736px;}
._10{width:55.598486px;}
._11{width:57.302310px;}
._29{width:58.363200px;}
._28{width:59.693397px;}
._1f{width:63.072121px;}
._22{width:64.774201px;}
._3f{width:66.038279px;}
._23{width:67.313998px;}
._3c{width:69.733319px;}
._1e{width:73.410119px;}
._20{width:75.194326px;}
._38{width:77.293198px;}
._41{width:82.494599px;}
._36{width:83.643719px;}
._37{width:85.579079px;}
._3b{width:96.525959px;}
._3a{width:99.005518px;}
._42{width:100.661760px;}
._43{width:101.735144px;}
._2f{width:111.948601px;}
._2e{width:113.339399px;}
._3e{width:130.364744px;}
._3d{width:131.763360px;}
._2c{width:156.280199px;}
._2d{width:158.487001px;}
.fc6{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y7b{bottom:-13.356000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.680000px;}
.y8{bottom:6.516000px;}
.y4{bottom:7.236000px;}
.yb{bottom:12.240000px;}
.y6{bottom:18.360000px;}
.y3{bottom:19.116000px;}
.ya{bottom:26.280000px;}
.y5{bottom:32.040000px;}
.y9{bottom:39.960000px;}
.y170{bottom:79.956000px;}
.ye8{bottom:80.676000px;}
.y78{bottom:81.756000px;}
.y14a{bottom:83.556000px;}
.y118{bottom:84.636000px;}
.yb7{bottom:86.436000px;}
.y16f{bottom:97.956000px;}
.ye7{bottom:99.036000px;}
.y77{bottom:99.756000px;}
.y149{bottom:101.916000px;}
.y117{bottom:102.636000px;}
.yb6{bottom:104.436000px;}
.y44{bottom:106.236000px;}
.y1a4{bottom:112.716000px;}
.y16e{bottom:116.316000px;}
.ye6{bottom:117.036000px;}
.y76{bottom:117.756000px;}
.y148{bottom:119.916000px;}
.y43{bottom:120.276000px;}
.y116{bottom:120.636000px;}
.yb5{bottom:122.436000px;}
.y1a3{bottom:130.716000px;}
.y42{bottom:133.992000px;}
.y16d{bottom:134.352000px;}
.ye5{bottom:135.072000px;}
.y75{bottom:136.152000px;}
.y147{bottom:137.952000px;}
.y115{bottom:139.032000px;}
.yb4{bottom:140.472000px;}
.y188{bottom:140.832000px;}
.y1a2{bottom:149.112000px;}
.y16c{bottom:152.355000px;}
.ye4{bottom:153.435000px;}
.y74{bottom:154.155000px;}
.y146{bottom:156.315000px;}
.y114{bottom:157.035000px;}
.yb3{bottom:158.835000px;}
.y41{bottom:163.515000px;}
.y1a1{bottom:167.115000px;}
.y16b{bottom:170.715000px;}
.ye3{bottom:171.435000px;}
.y73{bottom:172.155000px;}
.y145{bottom:174.315000px;}
.y113{bottom:175.035000px;}
.yb2{bottom:176.835000px;}
.y40{bottom:177.195000px;}
.y1a0{bottom:185.115000px;}
.y16a{bottom:188.715000px;}
.ye2{bottom:189.435000px;}
.y72{bottom:190.155000px;}
.y3f{bottom:191.595000px;}
.y144{bottom:192.315000px;}
.y112{bottom:193.395000px;}
.yb1{bottom:194.835000px;}
.y19f{bottom:203.475000px;}
.y169{bottom:206.715000px;}
.ye1{bottom:207.795000px;}
.y3e{bottom:208.515000px;}
.y143{bottom:210.675000px;}
.y111{bottom:211.395000px;}
.yb0{bottom:213.195000px;}
.y19e{bottom:221.475000px;}
.y3d{bottom:223.995000px;}
.y168{bottom:224.715000px;}
.ye0{bottom:225.795000px;}
.y71{bottom:226.515000px;}
.y142{bottom:228.675000px;}
.y110{bottom:229.395000px;}
.yaf{bottom:231.195000px;}
.y3c{bottom:239.475000px;}
.y167{bottom:243.075000px;}
.ydf{bottom:243.795000px;}
.y70{bottom:244.515000px;}
.y141{bottom:246.675000px;}
.y10f{bottom:247.755000px;}
.yae{bottom:249.195000px;}
.y3b{bottom:254.955000px;}
.y19d{bottom:257.835000px;}
.y166{bottom:261.075000px;}
.yde{bottom:261.795000px;}
.y6f{bottom:262.875000px;}
.y140{bottom:264.675000px;}
.y10e{bottom:265.785000px;}
.yad{bottom:267.585000px;}
.y3a{bottom:270.465000px;}
.y19c{bottom:275.865000px;}
.y165{bottom:279.105000px;}
.ydd{bottom:280.185000px;}
.y6e{bottom:280.905000px;}
.y13f{bottom:283.065000px;}
.y10d{bottom:283.785000px;}
.yac{bottom:285.585000px;}
.y39{bottom:285.945000px;}
.y19b{bottom:293.865000px;}
.y164{bottom:297.465000px;}
.ydc{bottom:298.185000px;}
.y6d{bottom:298.905000px;}
.y13e{bottom:301.065000px;}
.y10c{bottom:302.145000px;}
.yab{bottom:303.585000px;}
.y19a{bottom:312.225000px;}
.y38{bottom:314.745000px;}
.y163{bottom:315.465000px;}
.ydb{bottom:316.185000px;}
.y6c{bottom:317.265000px;}
.y13d{bottom:319.065000px;}
.y10b{bottom:320.145000px;}
.yaa{bottom:321.945000px;}
.y179{bottom:323.745000px;}
.y187{bottom:325.545000px;}
.y199{bottom:330.225000px;}
.y37{bottom:333.105000px;}
.y162{bottom:333.465000px;}
.yda{bottom:334.545000px;}
.y6b{bottom:335.265000px;}
.y13c{bottom:337.425000px;}
.y10a{bottom:338.145000px;}
.ya9{bottom:339.945000px;}
.y178{bottom:341.025000px;}
.y186{bottom:342.825000px;}
.y36{bottom:351.105000px;}
.y161{bottom:351.825000px;}
.yd9{bottom:352.545000px;}
.y6a{bottom:353.265000px;}
.y13b{bottom:355.425000px;}
.y109{bottom:356.145000px;}
.y198{bottom:356.505000px;}
.ya8{bottom:357.945000px;}
.y177{bottom:368.025000px;}
.y35{bottom:369.105000px;}
.y160{bottom:369.825000px;}
.yd8{bottom:370.545000px;}
.y69{bottom:371.625000px;}
.y13a{bottom:373.425000px;}
.y108{bottom:374.505000px;}
.ya7{bottom:375.945000px;}
.y176{bottom:386.025000px;}
.y34{bottom:387.465000px;}
.y15f{bottom:387.825000px;}
.y155{bottom:388.905000px;}
.y68{bottom:389.625000px;}
.y139{bottom:391.785000px;}
.yd7{bottom:392.505000px;}
.ya6{bottom:394.305000px;}
.y107{bottom:396.105000px;}
.y175{bottom:404.430000px;}
.y33{bottom:405.510000px;}
.y15e{bottom:406.230000px;}
.y154{bottom:406.950000px;}
.y67{bottom:407.670000px;}
.yd6{bottom:409.830000px;}
.y197{bottom:410.550000px;}
.ya5{bottom:412.350000px;}
.y106{bottom:413.430000px;}
.y174{bottom:422.430000px;}
.y32{bottom:423.510000px;}
.y15d{bottom:424.230000px;}
.y153{bottom:424.950000px;}
.y66{bottom:425.670000px;}
.y138{bottom:427.830000px;}
.y196{bottom:428.910000px;}
.ya4{bottom:430.350000px;}
.yd5{bottom:436.830000px;}
.y105{bottom:440.430000px;}
.y31{bottom:441.510000px;}
.y15c{bottom:442.230000px;}
.y152{bottom:443.310000px;}
.y137{bottom:446.190000px;}
.y195{bottom:446.910000px;}
.y65{bottom:447.630000px;}
.ya3{bottom:448.710000px;}
.yd4{bottom:454.830000px;}
.y104{bottom:458.790000px;}
.y30{bottom:459.870000px;}
.y15b{bottom:460.230000px;}
.y136{bottom:464.190000px;}
.y64{bottom:464.910000px;}
.ya2{bottom:466.710000px;}
.yd3{bottom:473.190000px;}
.y103{bottom:476.790000px;}
.y2f{bottom:477.870000px;}
.y15a{bottom:478.590000px;}
.y151{bottom:482.190000px;}
.y194{bottom:483.270000px;}
.ya1{bottom:484.710000px;}
.y135{bottom:490.470000px;}
.yd2{bottom:491.190000px;}
.y63{bottom:491.910000px;}
.y102{bottom:494.790000px;}
.y2e{bottom:495.870000px;}
.y185{bottom:496.590000px;}
.y159{bottom:500.190000px;}
.y193{bottom:501.270000px;}
.ya0{bottom:503.070000px;}
.yd1{bottom:509.190000px;}
.y62{bottom:509.910000px;}
.y101{bottom:513.150000px;}
.y2d{bottom:514.230000px;}
.y184{bottom:514.590000px;}
.y192{bottom:519.270000px;}
.y9f{bottom:521.070000px;}
.y1c5{bottom:523.950000px;}
.y134{bottom:526.470000px;}
.yd0{bottom:527.550000px;}
.y61{bottom:528.270000px;}
.y100{bottom:531.150000px;}
.y183{bottom:532.980000px;}
.y2c{bottom:536.220000px;}
.y191{bottom:537.660000px;}
.y9e{bottom:539.100000px;}
.y1c4{bottom:541.980000px;}
.y133{bottom:544.500000px;}
.ycf{bottom:545.580000px;}
.y60{bottom:546.300000px;}
.yff{bottom:549.180000px;}
.y182{bottom:550.980000px;}
.y190{bottom:555.660000px;}
.y9d{bottom:557.460000px;}
.y1c3{bottom:558.540000px;}
.y132{bottom:562.860000px;}
.yce{bottom:563.580000px;}
.y5f{bottom:564.300000px;}
.yfe{bottom:567.540000px;}
.y181{bottom:568.980000px;}
.y1c2{bottom:572.940000px;}
.y18f{bottom:573.660000px;}
.y9c{bottom:575.460000px;}
.y2b{bottom:576.540000px;}
.y131{bottom:580.860000px;}
.ycd{bottom:581.580000px;}
.y5e{bottom:582.660000px;}
.yfd{bottom:585.540000px;}
.y180{bottom:587.340000px;}
.y1c1{bottom:590.220000px;}
.y18e{bottom:591.660000px;}
.y9b{bottom:593.460000px;}
.y130{bottom:598.860000px;}
.ycc{bottom:599.940000px;}
.y5d{bottom:600.660000px;}
.yfc{bottom:603.540000px;}
.y17f{bottom:605.340000px;}
.y1c0{bottom:607.500000px;}
.y18d{bottom:610.020000px;}
.y2a{bottom:611.460000px;}
.y12f{bottom:617.220000px;}
.ycb{bottom:617.940000px;}
.y5c{bottom:618.660000px;}
.yfb{bottom:621.540000px;}
.y17e{bottom:623.340000px;}
.y1bf{bottom:624.780000px;}
.y29{bottom:626.940000px;}
.y18c{bottom:628.020000px;}
.y9a{bottom:629.820000px;}
.y12e{bottom:635.220000px;}
.yca{bottom:635.940000px;}
.y5b{bottom:637.020000px;}
.yfa{bottom:639.900000px;}
.y17d{bottom:641.700000px;}
.y1be{bottom:642.060000px;}
.y28{bottom:642.420000px;}
.y18b{bottom:646.020000px;}
.y99{bottom:647.820000px;}
.y12d{bottom:653.220000px;}
.yc9{bottom:654.300000px;}
.y5a{bottom:655.020000px;}
.yf9{bottom:657.900000px;}
.y1bd{bottom:659.340000px;}
.y17c{bottom:659.700000px;}
.y27{bottom:664.020000px;}
.y18a{bottom:664.380000px;}
.y98{bottom:665.850000px;}
.y12c{bottom:671.610000px;}
.yc8{bottom:672.330000px;}
.y59{bottom:673.050000px;}
.yf8{bottom:675.930000px;}
.y1bc{bottom:676.650000px;}
.y17b{bottom:677.730000px;}
.y26{bottom:679.890000px;}
.y97{bottom:684.210000px;}
.y12b{bottom:689.610000px;}
.yc7{bottom:690.330000px;}
.y189{bottom:690.690000px;}
.y58{bottom:691.050000px;}
.y1bb{bottom:693.930000px;}
.yf7{bottom:694.290000px;}
.y25{bottom:695.370000px;}
.y17a{bottom:699.690000px;}
.y96{bottom:702.210000px;}
.y12a{bottom:707.610000px;}
.y1ba{bottom:707.970000px;}
.yc6{bottom:708.690000px;}
.y57{bottom:709.410000px;}
.y24{bottom:710.850000px;}
.yf6{bottom:712.290000px;}
.y95{bottom:720.210000px;}
.y129{bottom:725.610000px;}
.y23{bottom:726.330000px;}
.yc5{bottom:726.690000px;}
.y56{bottom:727.410000px;}
.y1b9{bottom:728.490000px;}
.yf5{bottom:730.290000px;}
.y94{bottom:738.570000px;}
.y22{bottom:741.810000px;}
.y1b8{bottom:742.170000px;}
.y128{bottom:743.970000px;}
.yc4{bottom:744.690000px;}
.y55{bottom:745.410000px;}
.yf4{bottom:748.650000px;}
.y1b7{bottom:755.850000px;}
.y93{bottom:756.570000px;}
.y21{bottom:757.290000px;}
.y127{bottom:761.970000px;}
.yc3{bottom:763.050000px;}
.y54{bottom:763.770000px;}
.yf3{bottom:766.650000px;}
.y1b6{bottom:769.890000px;}
.y20{bottom:772.770000px;}
.y92{bottom:774.570000px;}
.y126{bottom:779.970000px;}
.yc2{bottom:781.050000px;}
.y53{bottom:781.770000px;}
.y1b5{bottom:783.570000px;}
.yf2{bottom:784.650000px;}
.y1f{bottom:788.250000px;}
.y91{bottom:792.930000px;}
.y1b4{bottom:797.250000px;}
.y125{bottom:798.330000px;}
.yc1{bottom:799.050000px;}
.y52{bottom:799.815000px;}
.yf1{bottom:803.055000px;}
.y1e{bottom:803.775000px;}
.y90{bottom:810.975000px;}
.y1b3{bottom:811.335000px;}
.y124{bottom:816.375000px;}
.yc0{bottom:817.095000px;}
.y51{bottom:818.175000px;}
.y1d{bottom:819.615000px;}
.yf0{bottom:821.055000px;}
.y1b2{bottom:825.015000px;}
.y8f{bottom:828.975000px;}
.y123{bottom:834.375000px;}
.y1c{bottom:835.095000px;}
.ybf{bottom:835.455000px;}
.y50{bottom:836.175000px;}
.yef{bottom:839.055000px;}
.y1b1{bottom:840.495000px;}
.y8e{bottom:846.975000px;}
.y1b{bottom:850.575000px;}
.y122{bottom:852.735000px;}
.ybe{bottom:853.455000px;}
.y4f{bottom:854.175000px;}
.yee{bottom:857.055000px;}
.y8d{bottom:865.335000px;}
.y1a{bottom:866.055000px;}
.y1b0{bottom:868.575000px;}
.y121{bottom:870.735000px;}
.ybd{bottom:871.455000px;}
.y4e{bottom:872.535000px;}
.yed{bottom:875.415000px;}
.y19{bottom:881.535000px;}
.y8c{bottom:883.335000px;}
.y120{bottom:888.735000px;}
.ybc{bottom:889.815000px;}
.y4d{bottom:890.535000px;}
.yec{bottom:893.415000px;}
.y18{bottom:897.015000px;}
.y8b{bottom:901.335000px;}
.y1af{bottom:903.135000px;}
.y11f{bottom:907.095000px;}
.ybb{bottom:907.815000px;}
.y4c{bottom:908.535000px;}
.yeb{bottom:911.415000px;}
.y17{bottom:912.495000px;}
.y1ae{bottom:917.175000px;}
.y8a{bottom:919.695000px;}
.y11e{bottom:925.095000px;}
.yba{bottom:925.815000px;}
.y4b{bottom:926.535000px;}
.y16{bottom:927.975000px;}
.yea{bottom:929.775000px;}
.y1ad{bottom:930.855000px;}
.y89{bottom:937.725000px;}
.y11d{bottom:943.125000px;}
.y15{bottom:943.845000px;}
.y150{bottom:944.205000px;}
.y1ac{bottom:944.565000px;}
.y4a{bottom:944.925000px;}
.yb9{bottom:947.805000px;}
.y88{bottom:955.725000px;}
.ye9{bottom:956.085000px;}
.y1ab{bottom:958.605000px;}
.y14{bottom:959.325000px;}
.y11c{bottom:961.485000px;}
.y14f{bottom:962.205000px;}
.y49{bottom:962.925000px;}
.yb8{bottom:965.085000px;}
.y173{bottom:965.805000px;}
.y1aa{bottom:972.285000px;}
.y87{bottom:974.085000px;}
.y13{bottom:974.805000px;}
.y11b{bottom:979.485000px;}
.y14e{bottom:980.205000px;}
.y48{bottom:980.925000px;}
.y172{bottom:984.165000px;}
.y1a9{bottom:985.965000px;}
.y12{bottom:990.285000px;}
.y86{bottom:992.085000px;}
.y11a{bottom:997.485000px;}
.y14d{bottom:998.565000px;}
.y47{bottom:999.285000px;}
.y1a8{bottom:1000.005000px;}
.y11{bottom:1005.765000px;}
.y85{bottom:1010.085000px;}
.y171{bottom:1010.445000px;}
.y1a7{bottom:1013.685000px;}
.y158{bottom:1016.565000px;}
.y46{bottom:1017.285000px;}
.y119{bottom:1019.445000px;}
.y14c{bottom:1020.165000px;}
.y10{bottom:1021.245000px;}
.y1a6{bottom:1027.365000px;}
.y84{bottom:1028.445000px;}
.y45{bottom:1035.285000px;}
.yf{bottom:1036.725000px;}
.y14b{bottom:1037.445000px;}
.y157{bottom:1038.165000px;}
.y1a5{bottom:1041.405000px;}
.y83{bottom:1046.445000px;}
.y156{bottom:1055.445000px;}
.y82{bottom:1064.445000px;}
.ye{bottom:1070.970000px;}
.y81{bottom:1082.490000px;}
.y80{bottom:1100.850000px;}
.yd{bottom:1112.370000px;}
.y7f{bottom:1118.850000px;}
.y7e{bottom:1136.850000px;}
.yc{bottom:1153.770000px;}
.y7d{bottom:1155.210000px;}
.y7c{bottom:1173.210000px;}
.y7a{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y79{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.hc{height:33.180469px;}
.h10{height:34.595859px;}
.h5{height:36.150469px;}
.hb{height:38.608594px;}
.h9{height:39.650625px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h4{height:43.200000px;}
.he{height:44.031094px;}
.hf{height:44.798906px;}
.hd{height:46.251562px;}
.h8{height:46.736719px;}
.h11{height:50.229844px;}
.h6{height:51.120000px;}
.ha{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:185.865000px;}
.w3{width:267.945000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.830000px;}
.x6{left:64.116000px;}
.xb{left:70.236000px;}
.x7{left:75.276000px;}
.xa{left:81.036000px;}
.x12{left:86.075987px;}
.x15{left:102.275987px;}
.x10{left:103.715987px;}
.x8{left:115.596000px;}
.x14{left:147.671987px;}
.xc{left:177.915000px;}
.x13{left:181.874987px;}
.x9{left:391.110000px;}
.x1{left:399.420000px;}
.x2{left:426.780000px;}
.x3{left:439.020000px;}
.xf{left:446.579987px;}
.xe{left:457.380000px;}
.x17{left:462.419987px;}
.xd{left:468.180000px;}
.x4{left:473.580000px;}
.x16{left:489.449987px;}
.x1b{left:511.409987px;}
.x11{left:517.529987px;}
.x19{left:544.889987px;}
.x18{left:565.409987px;}
.x1a{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.848000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.414933pt;}
.ls1c{letter-spacing:-0.371200pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.017920pt;}
.ls1a{letter-spacing:-0.014080pt;}
.lsb{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.014080pt;}
.ls2{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.222933pt;}
.ls14{letter-spacing:0.414933pt;}
.ls9{letter-spacing:0.432533pt;}
.ls1d{letter-spacing:0.445333pt;}
.ls11{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.462080pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:8.094720pt;}
.lse{letter-spacing:11.934720pt;}
.ls3{letter-spacing:12.800000pt;}
.ls15{letter-spacing:23.454720pt;}
.ls17{letter-spacing:36.254720pt;}
.ls18{letter-spacing:36.361387pt;}
.ls19{letter-spacing:52.363947pt;}
.ws12{word-spacing:-53.760000pt;}
.wsc{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.872533pt;}
.wsf{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.422080pt;}
.ws10{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.wse{word-spacing:-12.592000pt;}
.ws11{word-spacing:-12.576000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws13{word-spacing:-11.200000pt;}
.ws16{word-spacing:-11.005333pt;}
.ws7{word-spacing:-10.880000pt;}
.ws9{word-spacing:-10.782933pt;}
.ws2{word-spacing:-10.560000pt;}
.ws8{word-spacing:-10.546133pt;}
.ws14{word-spacing:-10.545920pt;}
.ws3{word-spacing:-9.920000pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:0.312320pt;}
.wsa{word-spacing:11.070080pt;}
.ws5{word-spacing:26.464960pt;}
._14{margin-left:-2.587399pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.021332pt;}
._2{width:2.210990pt;}
._6{width:3.169856pt;}
._17{width:4.649887pt;}
._c{width:5.570647pt;}
._b{width:6.763208pt;}
._1a{width:7.989629pt;}
._d{width:9.039706pt;}
._27{width:10.322135pt;}
._1b{width:11.403931pt;}
._1c{width:12.471997pt;}
._e{width:13.765012pt;}
._f{width:15.008968pt;}
._19{width:15.986743pt;}
._4{width:16.952018pt;}
._3{width:18.370879pt;}
._a{width:19.620034pt;}
._8{width:20.602703pt;}
._9{width:21.621361pt;}
._7{width:22.691732pt;}
._30{width:23.871346pt;}
._32{width:24.837120pt;}
._1d{width:26.055113pt;}
._15{width:27.335485pt;}
._16{width:28.383002pt;}
._18{width:29.626120pt;}
._5{width:30.863544pt;}
._2a{width:31.881387pt;}
._24{width:33.302046pt;}
._13{width:34.388820pt;}
._12{width:36.190456pt;}
._2b{width:37.632000pt;}
._40{width:38.539517pt;}
._25{width:39.620797pt;}
._26{width:40.764670pt;}
._31{width:42.316039pt;}
._35{width:43.208987pt;}
._39{width:44.258425pt;}
._34{width:45.319465pt;}
._33{width:46.609920pt;}
._21{width:48.498432pt;}
._10{width:49.420877pt;}
._11{width:50.935386pt;}
._29{width:51.878400pt;}
._28{width:53.060797pt;}
._1f{width:56.064108pt;}
._22{width:57.577068pt;}
._3f{width:58.700692pt;}
._23{width:59.834665pt;}
._3c{width:61.985172pt;}
._1e{width:65.253439pt;}
._20{width:66.839401pt;}
._38{width:68.705065pt;}
._41{width:73.328532pt;}
._36{width:74.349972pt;}
._37{width:76.070292pt;}
._3b{width:85.800852pt;}
._3a{width:88.004905pt;}
._42{width:89.477120pt;}
._43{width:90.431239pt;}
._2f{width:99.509868pt;}
._2e{width:100.746132pt;}
._3e{width:115.879772pt;}
._3d{width:117.122987pt;}
._2c{width:138.915732pt;}
._2d{width:140.877334pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y7b{bottom:-11.872000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.160000pt;}
.y8{bottom:5.792000pt;}
.y4{bottom:6.432000pt;}
.yb{bottom:10.880000pt;}
.y6{bottom:16.320000pt;}
.y3{bottom:16.992000pt;}
.ya{bottom:23.360000pt;}
.y5{bottom:28.480000pt;}
.y9{bottom:35.520000pt;}
.y170{bottom:71.072000pt;}
.ye8{bottom:71.712000pt;}
.y78{bottom:72.672000pt;}
.y14a{bottom:74.272000pt;}
.y118{bottom:75.232000pt;}
.yb7{bottom:76.832000pt;}
.y16f{bottom:87.072000pt;}
.ye7{bottom:88.032000pt;}
.y77{bottom:88.672000pt;}
.y149{bottom:90.592000pt;}
.y117{bottom:91.232000pt;}
.yb6{bottom:92.832000pt;}
.y44{bottom:94.432000pt;}
.y1a4{bottom:100.192000pt;}
.y16e{bottom:103.392000pt;}
.ye6{bottom:104.032000pt;}
.y76{bottom:104.672000pt;}
.y148{bottom:106.592000pt;}
.y43{bottom:106.912000pt;}
.y116{bottom:107.232000pt;}
.yb5{bottom:108.832000pt;}
.y1a3{bottom:116.192000pt;}
.y42{bottom:119.104000pt;}
.y16d{bottom:119.424000pt;}
.ye5{bottom:120.064000pt;}
.y75{bottom:121.024000pt;}
.y147{bottom:122.624000pt;}
.y115{bottom:123.584000pt;}
.yb4{bottom:124.864000pt;}
.y188{bottom:125.184000pt;}
.y1a2{bottom:132.544000pt;}
.y16c{bottom:135.426667pt;}
.ye4{bottom:136.386667pt;}
.y74{bottom:137.026667pt;}
.y146{bottom:138.946667pt;}
.y114{bottom:139.586667pt;}
.yb3{bottom:141.186667pt;}
.y41{bottom:145.346667pt;}
.y1a1{bottom:148.546667pt;}
.y16b{bottom:151.746667pt;}
.ye3{bottom:152.386667pt;}
.y73{bottom:153.026667pt;}
.y145{bottom:154.946667pt;}
.y113{bottom:155.586667pt;}
.yb2{bottom:157.186667pt;}
.y40{bottom:157.506667pt;}
.y1a0{bottom:164.546667pt;}
.y16a{bottom:167.746667pt;}
.ye2{bottom:168.386667pt;}
.y72{bottom:169.026667pt;}
.y3f{bottom:170.306667pt;}
.y144{bottom:170.946667pt;}
.y112{bottom:171.906667pt;}
.yb1{bottom:173.186667pt;}
.y19f{bottom:180.866667pt;}
.y169{bottom:183.746667pt;}
.ye1{bottom:184.706667pt;}
.y3e{bottom:185.346667pt;}
.y143{bottom:187.266667pt;}
.y111{bottom:187.906667pt;}
.yb0{bottom:189.506667pt;}
.y19e{bottom:196.866667pt;}
.y3d{bottom:199.106667pt;}
.y168{bottom:199.746667pt;}
.ye0{bottom:200.706667pt;}
.y71{bottom:201.346667pt;}
.y142{bottom:203.266667pt;}
.y110{bottom:203.906667pt;}
.yaf{bottom:205.506667pt;}
.y3c{bottom:212.866667pt;}
.y167{bottom:216.066667pt;}
.ydf{bottom:216.706667pt;}
.y70{bottom:217.346667pt;}
.y141{bottom:219.266667pt;}
.y10f{bottom:220.226667pt;}
.yae{bottom:221.506667pt;}
.y3b{bottom:226.626667pt;}
.y19d{bottom:229.186667pt;}
.y166{bottom:232.066667pt;}
.yde{bottom:232.706667pt;}
.y6f{bottom:233.666667pt;}
.y140{bottom:235.266667pt;}
.y10e{bottom:236.253333pt;}
.yad{bottom:237.853333pt;}
.y3a{bottom:240.413333pt;}
.y19c{bottom:245.213333pt;}
.y165{bottom:248.093333pt;}
.ydd{bottom:249.053333pt;}
.y6e{bottom:249.693333pt;}
.y13f{bottom:251.613333pt;}
.y10d{bottom:252.253333pt;}
.yac{bottom:253.853333pt;}
.y39{bottom:254.173333pt;}
.y19b{bottom:261.213333pt;}
.y164{bottom:264.413333pt;}
.ydc{bottom:265.053333pt;}
.y6d{bottom:265.693333pt;}
.y13e{bottom:267.613333pt;}
.y10c{bottom:268.573333pt;}
.yab{bottom:269.853333pt;}
.y19a{bottom:277.533333pt;}
.y38{bottom:279.773333pt;}
.y163{bottom:280.413333pt;}
.ydb{bottom:281.053333pt;}
.y6c{bottom:282.013333pt;}
.y13d{bottom:283.613333pt;}
.y10b{bottom:284.573333pt;}
.yaa{bottom:286.173333pt;}
.y179{bottom:287.773333pt;}
.y187{bottom:289.373333pt;}
.y199{bottom:293.533333pt;}
.y37{bottom:296.093333pt;}
.y162{bottom:296.413333pt;}
.yda{bottom:297.373333pt;}
.y6b{bottom:298.013333pt;}
.y13c{bottom:299.933333pt;}
.y10a{bottom:300.573333pt;}
.ya9{bottom:302.173333pt;}
.y178{bottom:303.133333pt;}
.y186{bottom:304.733333pt;}
.y36{bottom:312.093333pt;}
.y161{bottom:312.733333pt;}
.yd9{bottom:313.373333pt;}
.y6a{bottom:314.013333pt;}
.y13b{bottom:315.933333pt;}
.y109{bottom:316.573333pt;}
.y198{bottom:316.893333pt;}
.ya8{bottom:318.173333pt;}
.y177{bottom:327.133333pt;}
.y35{bottom:328.093333pt;}
.y160{bottom:328.733333pt;}
.yd8{bottom:329.373333pt;}
.y69{bottom:330.333333pt;}
.y13a{bottom:331.933333pt;}
.y108{bottom:332.893333pt;}
.ya7{bottom:334.173333pt;}
.y176{bottom:343.133333pt;}
.y34{bottom:344.413333pt;}
.y15f{bottom:344.733333pt;}
.y155{bottom:345.693333pt;}
.y68{bottom:346.333333pt;}
.y139{bottom:348.253333pt;}
.yd7{bottom:348.893333pt;}
.ya6{bottom:350.493333pt;}
.y107{bottom:352.093333pt;}
.y175{bottom:359.493333pt;}
.y33{bottom:360.453333pt;}
.y15e{bottom:361.093333pt;}
.y154{bottom:361.733333pt;}
.y67{bottom:362.373333pt;}
.yd6{bottom:364.293333pt;}
.y197{bottom:364.933333pt;}
.ya5{bottom:366.533333pt;}
.y106{bottom:367.493333pt;}
.y174{bottom:375.493333pt;}
.y32{bottom:376.453333pt;}
.y15d{bottom:377.093333pt;}
.y153{bottom:377.733333pt;}
.y66{bottom:378.373333pt;}
.y138{bottom:380.293333pt;}
.y196{bottom:381.253333pt;}
.ya4{bottom:382.533333pt;}
.yd5{bottom:388.293333pt;}
.y105{bottom:391.493333pt;}
.y31{bottom:392.453333pt;}
.y15c{bottom:393.093333pt;}
.y152{bottom:394.053333pt;}
.y137{bottom:396.613333pt;}
.y195{bottom:397.253333pt;}
.y65{bottom:397.893333pt;}
.ya3{bottom:398.853333pt;}
.yd4{bottom:404.293333pt;}
.y104{bottom:407.813333pt;}
.y30{bottom:408.773333pt;}
.y15b{bottom:409.093333pt;}
.y136{bottom:412.613333pt;}
.y64{bottom:413.253333pt;}
.ya2{bottom:414.853333pt;}
.yd3{bottom:420.613333pt;}
.y103{bottom:423.813333pt;}
.y2f{bottom:424.773333pt;}
.y15a{bottom:425.413333pt;}
.y151{bottom:428.613333pt;}
.y194{bottom:429.573333pt;}
.ya1{bottom:430.853333pt;}
.y135{bottom:435.973333pt;}
.yd2{bottom:436.613333pt;}
.y63{bottom:437.253333pt;}
.y102{bottom:439.813333pt;}
.y2e{bottom:440.773333pt;}
.y185{bottom:441.413333pt;}
.y159{bottom:444.613333pt;}
.y193{bottom:445.573333pt;}
.ya0{bottom:447.173333pt;}
.yd1{bottom:452.613333pt;}
.y62{bottom:453.253333pt;}
.y101{bottom:456.133333pt;}
.y2d{bottom:457.093333pt;}
.y184{bottom:457.413333pt;}
.y192{bottom:461.573333pt;}
.y9f{bottom:463.173333pt;}
.y1c5{bottom:465.733333pt;}
.y134{bottom:467.973333pt;}
.yd0{bottom:468.933333pt;}
.y61{bottom:469.573333pt;}
.y100{bottom:472.133333pt;}
.y183{bottom:473.760000pt;}
.y2c{bottom:476.640000pt;}
.y191{bottom:477.920000pt;}
.y9e{bottom:479.200000pt;}
.y1c4{bottom:481.760000pt;}
.y133{bottom:484.000000pt;}
.ycf{bottom:484.960000pt;}
.y60{bottom:485.600000pt;}
.yff{bottom:488.160000pt;}
.y182{bottom:489.760000pt;}
.y190{bottom:493.920000pt;}
.y9d{bottom:495.520000pt;}
.y1c3{bottom:496.480000pt;}
.y132{bottom:500.320000pt;}
.yce{bottom:500.960000pt;}
.y5f{bottom:501.600000pt;}
.yfe{bottom:504.480000pt;}
.y181{bottom:505.760000pt;}
.y1c2{bottom:509.280000pt;}
.y18f{bottom:509.920000pt;}
.y9c{bottom:511.520000pt;}
.y2b{bottom:512.480000pt;}
.y131{bottom:516.320000pt;}
.ycd{bottom:516.960000pt;}
.y5e{bottom:517.920000pt;}
.yfd{bottom:520.480000pt;}
.y180{bottom:522.080000pt;}
.y1c1{bottom:524.640000pt;}
.y18e{bottom:525.920000pt;}
.y9b{bottom:527.520000pt;}
.y130{bottom:532.320000pt;}
.ycc{bottom:533.280000pt;}
.y5d{bottom:533.920000pt;}
.yfc{bottom:536.480000pt;}
.y17f{bottom:538.080000pt;}
.y1c0{bottom:540.000000pt;}
.y18d{bottom:542.240000pt;}
.y2a{bottom:543.520000pt;}
.y12f{bottom:548.640000pt;}
.ycb{bottom:549.280000pt;}
.y5c{bottom:549.920000pt;}
.yfb{bottom:552.480000pt;}
.y17e{bottom:554.080000pt;}
.y1bf{bottom:555.360000pt;}
.y29{bottom:557.280000pt;}
.y18c{bottom:558.240000pt;}
.y9a{bottom:559.840000pt;}
.y12e{bottom:564.640000pt;}
.yca{bottom:565.280000pt;}
.y5b{bottom:566.240000pt;}
.yfa{bottom:568.800000pt;}
.y17d{bottom:570.400000pt;}
.y1be{bottom:570.720000pt;}
.y28{bottom:571.040000pt;}
.y18b{bottom:574.240000pt;}
.y99{bottom:575.840000pt;}
.y12d{bottom:580.640000pt;}
.yc9{bottom:581.600000pt;}
.y5a{bottom:582.240000pt;}
.yf9{bottom:584.800000pt;}
.y1bd{bottom:586.080000pt;}
.y17c{bottom:586.400000pt;}
.y27{bottom:590.240000pt;}
.y18a{bottom:590.560000pt;}
.y98{bottom:591.866667pt;}
.y12c{bottom:596.986667pt;}
.yc8{bottom:597.626667pt;}
.y59{bottom:598.266667pt;}
.yf8{bottom:600.826667pt;}
.y1bc{bottom:601.466667pt;}
.y17b{bottom:602.426667pt;}
.y26{bottom:604.346667pt;}
.y97{bottom:608.186667pt;}
.y12b{bottom:612.986667pt;}
.yc7{bottom:613.626667pt;}
.y189{bottom:613.946667pt;}
.y58{bottom:614.266667pt;}
.y1bb{bottom:616.826667pt;}
.yf7{bottom:617.146667pt;}
.y25{bottom:618.106667pt;}
.y17a{bottom:621.946667pt;}
.y96{bottom:624.186667pt;}
.y12a{bottom:628.986667pt;}
.y1ba{bottom:629.306667pt;}
.yc6{bottom:629.946667pt;}
.y57{bottom:630.586667pt;}
.y24{bottom:631.866667pt;}
.yf6{bottom:633.146667pt;}
.y95{bottom:640.186667pt;}
.y129{bottom:644.986667pt;}
.y23{bottom:645.626667pt;}
.yc5{bottom:645.946667pt;}
.y56{bottom:646.586667pt;}
.y1b9{bottom:647.546667pt;}
.yf5{bottom:649.146667pt;}
.y94{bottom:656.506667pt;}
.y22{bottom:659.386667pt;}
.y1b8{bottom:659.706667pt;}
.y128{bottom:661.306667pt;}
.yc4{bottom:661.946667pt;}
.y55{bottom:662.586667pt;}
.yf4{bottom:665.466667pt;}
.y1b7{bottom:671.866667pt;}
.y93{bottom:672.506667pt;}
.y21{bottom:673.146667pt;}
.y127{bottom:677.306667pt;}
.yc3{bottom:678.266667pt;}
.y54{bottom:678.906667pt;}
.yf3{bottom:681.466667pt;}
.y1b6{bottom:684.346667pt;}
.y20{bottom:686.906667pt;}
.y92{bottom:688.506667pt;}
.y126{bottom:693.306667pt;}
.yc2{bottom:694.266667pt;}
.y53{bottom:694.906667pt;}
.y1b5{bottom:696.506667pt;}
.yf2{bottom:697.466667pt;}
.y1f{bottom:700.666667pt;}
.y91{bottom:704.826667pt;}
.y1b4{bottom:708.666667pt;}
.y125{bottom:709.626667pt;}
.yc1{bottom:710.266667pt;}
.y52{bottom:710.946667pt;}
.yf1{bottom:713.826667pt;}
.y1e{bottom:714.466667pt;}
.y90{bottom:720.866667pt;}
.y1b3{bottom:721.186667pt;}
.y124{bottom:725.666667pt;}
.yc0{bottom:726.306667pt;}
.y51{bottom:727.266667pt;}
.y1d{bottom:728.546667pt;}
.yf0{bottom:729.826667pt;}
.y1b2{bottom:733.346667pt;}
.y8f{bottom:736.866667pt;}
.y123{bottom:741.666667pt;}
.y1c{bottom:742.306667pt;}
.ybf{bottom:742.626667pt;}
.y50{bottom:743.266667pt;}
.yef{bottom:745.826667pt;}
.y1b1{bottom:747.106667pt;}
.y8e{bottom:752.866667pt;}
.y1b{bottom:756.066667pt;}
.y122{bottom:757.986667pt;}
.ybe{bottom:758.626667pt;}
.y4f{bottom:759.266667pt;}
.yee{bottom:761.826667pt;}
.y8d{bottom:769.186667pt;}
.y1a{bottom:769.826667pt;}
.y1b0{bottom:772.066667pt;}
.y121{bottom:773.986667pt;}
.ybd{bottom:774.626667pt;}
.y4e{bottom:775.586667pt;}
.yed{bottom:778.146667pt;}
.y19{bottom:783.586667pt;}
.y8c{bottom:785.186667pt;}
.y120{bottom:789.986667pt;}
.ybc{bottom:790.946667pt;}
.y4d{bottom:791.586667pt;}
.yec{bottom:794.146667pt;}
.y18{bottom:797.346667pt;}
.y8b{bottom:801.186667pt;}
.y1af{bottom:802.786667pt;}
.y11f{bottom:806.306667pt;}
.ybb{bottom:806.946667pt;}
.y4c{bottom:807.586667pt;}
.yeb{bottom:810.146667pt;}
.y17{bottom:811.106667pt;}
.y1ae{bottom:815.266667pt;}
.y8a{bottom:817.506667pt;}
.y11e{bottom:822.306667pt;}
.yba{bottom:822.946667pt;}
.y4b{bottom:823.586667pt;}
.y16{bottom:824.866667pt;}
.yea{bottom:826.466667pt;}
.y1ad{bottom:827.426667pt;}
.y89{bottom:833.533333pt;}
.y11d{bottom:838.333333pt;}
.y15{bottom:838.973333pt;}
.y150{bottom:839.293333pt;}
.y1ac{bottom:839.613333pt;}
.y4a{bottom:839.933333pt;}
.yb9{bottom:842.493333pt;}
.y88{bottom:849.533333pt;}
.ye9{bottom:849.853333pt;}
.y1ab{bottom:852.093333pt;}
.y14{bottom:852.733333pt;}
.y11c{bottom:854.653333pt;}
.y14f{bottom:855.293333pt;}
.y49{bottom:855.933333pt;}
.yb8{bottom:857.853333pt;}
.y173{bottom:858.493333pt;}
.y1aa{bottom:864.253333pt;}
.y87{bottom:865.853333pt;}
.y13{bottom:866.493333pt;}
.y11b{bottom:870.653333pt;}
.y14e{bottom:871.293333pt;}
.y48{bottom:871.933333pt;}
.y172{bottom:874.813333pt;}
.y1a9{bottom:876.413333pt;}
.y12{bottom:880.253333pt;}
.y86{bottom:881.853333pt;}
.y11a{bottom:886.653333pt;}
.y14d{bottom:887.613333pt;}
.y47{bottom:888.253333pt;}
.y1a8{bottom:888.893333pt;}
.y11{bottom:894.013333pt;}
.y85{bottom:897.853333pt;}
.y171{bottom:898.173333pt;}
.y1a7{bottom:901.053333pt;}
.y158{bottom:903.613333pt;}
.y46{bottom:904.253333pt;}
.y119{bottom:906.173333pt;}
.y14c{bottom:906.813333pt;}
.y10{bottom:907.773333pt;}
.y1a6{bottom:913.213333pt;}
.y84{bottom:914.173333pt;}
.y45{bottom:920.253333pt;}
.yf{bottom:921.533333pt;}
.y14b{bottom:922.173333pt;}
.y157{bottom:922.813333pt;}
.y1a5{bottom:925.693333pt;}
.y83{bottom:930.173333pt;}
.y156{bottom:938.173333pt;}
.y82{bottom:946.173333pt;}
.ye{bottom:951.973333pt;}
.y81{bottom:962.213333pt;}
.y80{bottom:978.533333pt;}
.yd{bottom:988.773333pt;}
.y7f{bottom:994.533333pt;}
.y7e{bottom:1010.533333pt;}
.yc{bottom:1025.573333pt;}
.y7d{bottom:1026.853333pt;}
.y7c{bottom:1042.853333pt;}
.y7a{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y79{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.hc{height:29.493750pt;}
.h10{height:30.751875pt;}
.h5{height:32.133750pt;}
.hb{height:34.318750pt;}
.h9{height:35.245000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h4{height:38.400000pt;}
.he{height:39.138750pt;}
.hf{height:39.821250pt;}
.hd{height:41.112500pt;}
.h8{height:41.543750pt;}
.h11{height:44.648750pt;}
.h6{height:45.440000pt;}
.ha{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.213333pt;}
.w3{width:238.173333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.626667pt;}
.x6{left:56.992000pt;}
.xb{left:62.432000pt;}
.x7{left:66.912000pt;}
.xa{left:72.032000pt;}
.x12{left:76.511988pt;}
.x15{left:90.911988pt;}
.x10{left:92.191988pt;}
.x8{left:102.752000pt;}
.x14{left:131.263988pt;}
.xc{left:158.146667pt;}
.x13{left:161.666655pt;}
.x9{left:347.653333pt;}
.x1{left:355.040000pt;}
.x2{left:379.360000pt;}
.x3{left:390.240000pt;}
.xf{left:396.959988pt;}
.xe{left:406.560000pt;}
.x17{left:411.039988pt;}
.xd{left:416.160000pt;}
.x4{left:420.960000pt;}
.x16{left:435.066655pt;}
.x1b{left:454.586655pt;}
.x11{left:460.026655pt;}
.x19{left:484.346655pt;}
.x18{left:502.586655pt;}
.x1a{left:731.493322pt;}
}




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