
    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_432a40e743c5832c774c6887.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099609;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_fd86b0b5e020ce6f9b61c5a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_5b4c64100aa4446a8d025d4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_e400aa17b4c7802d48b39c78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_4739634e703ba07d028d54dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.743164;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_5e3e02aecccbdf1513678f3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032000;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_09f80630b5d0279d2c6af3e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_e4d00ab1ca378b88eebcb131.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.099609;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_f4542d768a6dfc5ec8951f16.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_6a0239e93d8a0149c1a87f67.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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:ffb;src:url('chunks/assets/font_c4e51a3f812e1c40d1979f37.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_f41240f1af6533b0cd123444.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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:ffd;src:url('chunks/assets/font_8c95d6c6ebd523e42ed55a60.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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:ffe;src:url('chunks/assets/font_74d5fd1d332cbb8f966ca28e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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:fff;src:url('chunks/assets/font_caab50b0a96969f5ace55bea.woff2')format("woff");}.fff{font-family:fff;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-82.811628px;}
.v6{vertical-align:-69.107314px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.290094px;}
.v1{vertical-align:31.688627px;}
.v5{vertical-align:69.107314px;}
.v3{vertical-align:89.998890px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.095040px;}
.lsd{letter-spacing:0.437709px;}
.lsf{letter-spacing:19.453644px;}
.lsc{letter-spacing:28.514175px;}
.ls8{letter-spacing:28.602614px;}
.ls3{letter-spacing:29.310302px;}
.ls2{letter-spacing:29.338890px;}
.ls10{letter-spacing:36.131134px;}
.ls11{letter-spacing:37.471597px;}
.lse{letter-spacing:43.328797px;}
.lsb{letter-spacing:43.400910px;}
.ls4{letter-spacing:54.518405px;}
.ls1{letter-spacing:58.216320px;}
.lsa{letter-spacing:58.267620px;}
.ls7{letter-spacing:58.267639px;}
.ls9{letter-spacing:65.574040px;}
.ls5{letter-spacing:74.892278px;}
.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;}
}
.ws1f{word-spacing:-63.524335px;}
.ws15{word-spacing:-63.360367px;}
.ws24{word-spacing:-61.945792px;}
.ws21{word-spacing:-46.163595px;}
.ws23{word-spacing:-40.294938px;}
.ws0{word-spacing:-34.397911px;}
.ws5{word-spacing:-31.646046px;}
.ws14{word-spacing:-26.135949px;}
.ws1d{word-spacing:-26.040909px;}
.ws12{word-spacing:-25.945869px;}
.ws25{word-spacing:-22.997557px;}
.ws7{word-spacing:-21.654720px;}
.ws16{word-spacing:-20.990786px;}
.wsf{word-spacing:-20.049245px;}
.ws2{word-spacing:-19.171433px;}
.ws3{word-spacing:-19.066206px;}
.ws10{word-spacing:-17.297380px;}
.wsd{word-spacing:-11.865600px;}
.ws1b{word-spacing:-6.567021px;}
.ws1c{word-spacing:-2.375995px;}
.ws19{word-spacing:-2.137374px;}
.ws13{word-spacing:-1.300443px;}
.ws4{word-spacing:-1.159203px;}
.ws1a{word-spacing:-0.928796px;}
.ws18{word-spacing:-0.191519px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.185201px;}
.wse{word-spacing:0.695522px;}
.ws17{word-spacing:0.766075px;}
.ws8{word-spacing:2.472518px;}
.ws11{word-spacing:2.733118px;}
.ws9{word-spacing:3.173784px;}
.wsa{word-spacing:3.179501px;}
.wsb{word-spacing:3.211247px;}
.wsc{word-spacing:3.225600px;}
.ws6{word-spacing:4.334753px;}
.ws1e{word-spacing:21.434451px;}
.ws20{word-spacing:21.480657px;}
._20{margin-left:-19.131823px;}
._10{margin-left:-16.064691px;}
._21{margin-left:-12.329365px;}
._1b{margin-left:-11.158376px;}
._5{margin-left:-9.953995px;}
._19{margin-left:-8.025825px;}
._2{margin-left:-6.739211px;}
._6{margin-left:-5.613840px;}
._1d{margin-left:-4.432321px;}
._4{margin-left:-3.307677px;}
._a{margin-left:-2.187359px;}
._0{margin-left:-1.010882px;}
._1{width:1.179362px;}
._3{width:2.432881px;}
._c{width:3.715235px;}
._8{width:4.802382px;}
._e{width:6.259697px;}
._12{width:11.363038px;}
._11{width:14.716800px;}
._d{width:20.320586px;}
._1e{width:21.733955px;}
._15{width:23.113390px;}
._16{width:24.236596px;}
._1f{width:26.351959px;}
._7{width:35.402292px;}
._9{width:37.085652px;}
._1c{width:38.793726px;}
._b{width:53.020812px;}
._1a{width:59.965337px;}
._14{width:61.175665px;}
._f{width:62.365132px;}
._13{width:64.867831px;}
._18{width:161.893110px;}
._17{width:325.912177px;}
.fcb{color:rgb(146,208,80);}
.fca{color:rgb(192,0,0);}
.fc7{color:rgb(129,194,65);}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fcc{color:rgb(148,202,84);}
.fc2{color:rgb(35,129,196);}
.fc9{color:rgb(242,103,34);}
.fc1{color:rgb(40,128,194);}
.fc8{color:rgb(51,51,51);}
.fc4{color:rgb(21,21,21);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:38.880000px;}
.fse{font-size:57.599261px;}
.fsf{font-size:57.600000px;}
.fs13{font-size:63.360367px;}
.fs9{font-size:69.839584px;}
.fs4{font-size:73.440459px;}
.fs5{font-size:77.617139px;}
.fs12{font-size:84.240000px;}
.fs0{font-size:84.240136px;}
.fs14{font-size:92.879583px;}
.fs7{font-size:95.039814px;}
.fs15{font-size:95.759399px;}
.fs8{font-size:105.119906px;}
.fsd{font-size:105.120000px;}
.fsc{font-size:115.919583px;}
.fs2{font-size:125.999675px;}
.fs11{font-size:147.600000px;}
.fs16{font-size:147.600504px;}
.fs17{font-size:154.079720px;}
.fs18{font-size:168.480273px;}
.fsb{font-size:178.560365px;}
.fs3{font-size:189.360042px;}
.fsa{font-size:210.239811px;}
.fs19{font-size:226.079534px;}
.fs6{font-size:231.840640px;}
.fs1{font-size:284.399856px;}
.ybc{bottom:-4.306242px;}
.y0{bottom:0.000000px;}
.y69{bottom:4.321626px;}
.ybb{bottom:91.429269px;}
.y50{bottom:99.902559px;}
.y5d{bottom:105.657500px;}
.y67{bottom:109.259729px;}
.y66{bottom:115.198295px;}
.y52{bottom:122.226107px;}
.y4f{bottom:126.550052px;}
.y57{bottom:131.216966px;}
.yba{bottom:136.443503px;}
.y40{bottom:138.965014px;}
.y12{bottom:139.138401px;}
.y65{bottom:143.636514px;}
.y17{bottom:145.086706px;}
.y51{bottom:148.677847px;}
.y5c{bottom:151.384684px;}
.ya8{bottom:156.420017px;}
.yde{bottom:156.593287px;}
.y11{bottom:161.276079px;}
.y81{bottom:161.462560px;}
.y64{bottom:171.897919px;}
.y16{bottom:173.522092px;}
.y83{bottom:176.045843px;}
.y2{bottom:177.486442px;}
.y9b{bottom:178.383140px;}
.y90{bottom:181.803836px;}
.y5b{bottom:183.052052px;}
.y10{bottom:183.419393px;}
.ya7{bottom:184.856819px;}
.yb9{bottom:186.831281px;}
.y3f{bottom:186.835595px;}
.y80{bottom:189.364967px;}
.y63{bottom:200.344847px;}
.y1{bottom:202.680331px;}
.y82{bottom:203.945482px;}
.y9a{bottom:206.818526px;}
.y87{bottom:212.579862px;}
.ya6{bottom:213.303818px;}
.y5a{bottom:214.561827px;}
.y7c{bottom:218.344484px;}
.y3e{bottom:221.588827px;}
.yca{bottom:222.651717px;}
.yb1{bottom:225.174175px;}
.y32{bottom:226.267604px;}
.y62{bottom:228.780233px;}
.y99{bottom:235.265525px;}
.y29{bottom:235.803731px;}
.y1e{bottom:239.753204px;}
.ya5{bottom:241.739133px;}
.y7b{bottom:246.246961px;}
.y70{bottom:252.004516px;}
.yb0{bottom:260.452745px;}
.yc9{bottom:262.434696px;}
.y98{bottom:263.526859px;}
.y31{bottom:264.242852px;}
.y4c{bottom:268.028546px;}
.y3d{bottom:269.275490px;}
.y28{bottom:269.826098px;}
.ya4{bottom:270.000538px;}
.y6f{bottom:280.620167px;}
.y9{bottom:283.315060px;}
.yd1{bottom:284.945423px;}
.yd8{bottom:285.837537px;}
.y4b{bottom:293.033908px;}
.y85{bottom:298.083532px;}
.y30{bottom:302.048887px;}
.y27{bottom:304.017630px;}
.y3c{bottom:304.028721px;}
.y5f{bottom:306.719405px;}
.y6e{bottom:309.422781px;}
.yc8{bottom:315.352496px;}
.yaf{bottom:324.721636px;}
.yd0{bottom:325.627711px;}
.y84{bottom:325.985974px;}
.ya3{bottom:326.882852px;}
.y8{bottom:326.888949px;}
.yd7{bottom:327.604470px;}
.y4a{bottom:331.744013px;}
.y26{bottom:338.040044px;}
.y6d{bottom:338.225430px;}
.y2f{bottom:339.839573px;}
.y56{bottom:344.516413px;}
.y97{bottom:348.844594px;}
.y3b{bottom:351.899303px;}
.y49{bottom:356.762908px;}
.y7{bottom:357.127600px;}
.yae{bottom:360.180393px;}
.ycf{bottom:366.294602px;}
.yc7{bottom:367.202065px;}
.y25{bottom:372.246972px;}
.y8f{bottom:372.423438px;}
.yf{bottom:373.679204px;}
.yd6{bottom:374.035963px;}
.y96{bottom:377.279945px;}
.y2e{bottom:377.814822px;}
.y3a{bottom:386.638413px;}
.y54{bottom:387.350478px;}
.y58{bottom:390.595966px;}
.y5e{bottom:392.582521px;}
.y48{bottom:395.468321px;}
.ye0{bottom:396.002262px;}
.y68{bottom:398.876238px;}
.ye2{bottom:399.776218px;}
.y6{bottom:400.501531px;}
.y60{bottom:402.477577px;}
.y95{bottom:405.541315px;}
.y24{bottom:406.253943px;}
.y8e{bottom:406.254634px;}
.yc6{bottom:407.884306px;}
.yce{bottom:408.053221px;}
.ye{bottom:412.201408px;}
.yc1{bottom:413.819547px;}
.ya2{bottom:413.998847px;}
.y53{bottom:414.000745px;}
.y2d{bottom:415.620903px;}
.yd5{bottom:420.305249px;}
.y47{bottom:420.491908px;}
.ydf{bottom:421.196151px;}
.yad{bottom:424.431304px;}
.ye1{bottom:424.980400px;}
.y94{bottom:433.976665px;}
.y39{bottom:434.523159px;}
.y72{bottom:436.677312px;}
.y8d{bottom:436.865844px;}
.y23{bottom:440.276356px;}
.yc5{bottom:441.906719px;}
.ya1{bottom:442.445810px;}
.y46{bottom:448.926847px;}
.yb8{bottom:449.094757px;}
.yd{bottom:450.535302px;}
.y2c{bottom:453.596105px;}
.y5{bottom:458.811968px;}
.yac{bottom:459.709819px;}
.ycd{bottom:459.902251px;}
.yd4{bottom:467.810005px;}
.y38{bottom:469.262226px;}
.y7a{bottom:470.339361px;}
.ya0{bottom:470.881196px;}
.y1d{bottom:472.859684px;}
.y22{bottom:474.483285px;}
.yc0{bottom:476.465478px;}
.y8c{bottom:478.261953px;}
.yc4{bottom:483.835438px;}
.y71{bottom:485.282626px;}
.ydd{bottom:485.997549px;}
.y45{bottom:487.626598px;}
.yc{bottom:489.057478px;}
.y93{bottom:490.859050px;}
.y2b{bottom:491.402187px;}
.yab{bottom:495.006369px;}
.y79{bottom:498.241769px;}
.y9f{bottom:499.316547px;}
.ycc{bottom:500.584538px;}
.yb7{bottom:505.991969px;}
.y21{bottom:508.505651px;}
.y8b{bottom:512.099810px;}
.y44{bottom:512.629582px;}
.y1c{bottom:514.435420px;}
.y37{bottom:517.146971px;}
.yb{bottom:520.560123px;}
.y76{bottom:522.005872px;}
.ybf{bottom:522.904562px;}
.ydc{bottom:525.780502px;}
.yd3{bottom:526.506611px;}
.y6c{bottom:527.221285px;}
.y9e{bottom:527.577917px;}
.y2a{bottom:529.208245px;}
.ycb{bottom:534.606904px;}
.y4{bottom:535.501323px;}
.yc3{bottom:536.573078px;}
.y43{bottom:541.090827px;}
.y8a{bottom:542.524731px;}
.y20{bottom:542.528017px;}
.y1b{bottom:542.884026px;}
.y75{bottom:549.896965px;}
.y6b{bottom:555.123727px;}
.yaa{bottom:559.437468px;}
.yb6{bottom:562.863451px;}
.y36{bottom:565.017574px;}
.ydb{bottom:565.383267px;}
.y42{bottom:569.525766px;}
.y89{bottom:570.960473px;}
.yd2{bottom:571.855618px;}
.y92{bottom:576.002733px;}
.yc2{bottom:576.356030px;}
.ybe{bottom:580.674301px;}
.y1a{bottom:584.280096px;}
.y9d{bottom:584.460266px;}
.y78{bottom:594.363975px;}
.ya9{bottom:594.716010px;}
.y91{bottom:604.438101px;}
.y3{bottom:612.190703px;}
.y19{bottom:612.715857px;}
.y35{bottom:612.902341px;}
.y77{bottom:622.266400px;}
.y74{bottom:629.465935px;}
.y9c{bottom:642.235921px;}
.yb5{bottom:645.658797px;}
.y34{bottom:647.641409px;}
.y73{bottom:657.357011px;}
.y7f{bottom:660.236832px;}
.y4d{bottom:661.875307px;}
.yda{bottom:671.218894px;}
.y18{bottom:676.987848px;}
.ybd{bottom:677.157646px;}
.y7e{bottom:687.957848px;}
.y6a{bottom:693.006123px;}
.yb2{bottom:696.062621px;}
.y4e{bottom:703.449148px;}
.y14{bottom:707.581071px;}
.yb4{bottom:708.288592px;}
.y15{bottom:709.392324px;}
.y1f{bottom:711.368074px;}
.y7d{bottom:715.860273px;}
.y33{bottom:717.486382px;}
.y88{bottom:717.489312px;}
.y61{bottom:720.373061px;}
.y59{bottom:720.722967px;}
.y41{bottom:725.580419px;}
.yb3{bottom:730.448171px;}
.y55{bottom:730.787778px;}
.y13{bottom:731.523606px;}
.yd9{bottom:738.533817px;}
.ya{bottom:749.526828px;}
.y86{bottom:758.705447px;}
.h1c{height:20.339627px;}
.h2b{height:35.296550px;}
.h15{height:49.329058px;}
.h13{height:50.556824px;}
.h12{height:50.583902px;}
.h14{height:50.595584px;}
.h19{height:54.790630px;}
.h1d{height:54.914381px;}
.h6{height:55.940975px;}
.h7{height:59.122430px;}
.h18{height:63.507350px;}
.h17{height:72.193680px;}
.h2{height:72.846329px;}
.h9{height:82.185308px;}
.h1b{height:82.231714px;}
.h11{height:90.087840px;}
.hb{height:90.902028px;}
.h25{height:90.953356px;}
.hc{height:92.051175px;}
.h24{height:92.056052px;}
.h26{height:92.073575px;}
.hd{height:92.074059px;}
.h23{height:92.075278px;}
.ha{height:92.082135px;}
.h1e{height:92.380718px;}
.h20{height:95.101800px;}
.h1f{height:98.050517px;}
.h10{height:100.241006px;}
.h4{height:108.957727px;}
.h16{height:126.493200px;}
.h21{height:127.593338px;}
.h27{height:127.636959px;}
.h22{height:127.709030px;}
.h2c{height:145.692658px;}
.h2a{height:145.774924px;}
.hf{height:154.409378px;}
.h5{height:163.748357px;}
.h1a{height:172.184197px;}
.he{height:181.804055px;}
.h2d{height:195.501394px;}
.h8{height:200.483288px;}
.h29{height:202.333135px;}
.h28{height:202.347150px;}
.h3{height:245.933664px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:136.076561px;}
.w3{width:583.573348px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:9.717952px;}
.x20{left:48.407760px;}
.x45{left:50.943073px;}
.x1f{left:55.608480px;}
.x1b{left:61.731719px;}
.x13{left:63.908569px;}
.x36{left:66.238886px;}
.x10{left:70.203980px;}
.x17{left:77.210638px;}
.xb{left:78.308480px;}
.xc{left:79.751824px;}
.x1c{left:81.732881px;}
.x43{left:83.879138px;}
.x44{left:85.863000px;}
.x14{left:90.900644px;}
.x11{left:93.956052px;}
.x8{left:95.211670px;}
.xf{left:96.477632px;}
.x18{left:100.967755px;}
.x46{left:103.503078px;}
.x22{left:111.422053px;}
.x37{left:113.578162px;}
.x1d{left:116.457168px;}
.x16{left:120.065633px;}
.x19{left:124.556995px;}
.x12{left:140.407960px;}
.x47{left:143.641477px;}
.x48{left:167.404839px;}
.x42{left:178.199662px;}
.x49{left:190.983639px;}
.x2{left:192.608694px;}
.x27{left:194.581427px;}
.x34{left:200.521039px;}
.x5{left:230.220103px;}
.x6{left:257.213446px;}
.x3{left:281.518356px;}
.x26{left:297.538927px;}
.xa{left:303.659094px;}
.x1{left:362.884566px;}
.xd{left:369.552635px;}
.x4{left:455.588289px;}
.x4e{left:457.736977px;}
.x4d{left:464.400483px;}
.x23{left:467.460843px;}
.x7{left:489.771440px;}
.x21{left:540.179287px;}
.x28{left:559.443031px;}
.x2a{left:575.100585px;}
.x4b{left:652.862332px;}
.x4c{left:704.162758px;}
.x4a{left:711.714547px;}
.x35{left:714.602797px;}
.x24{left:743.216434px;}
.x3b{left:777.593219px;}
.x39{left:794.879541px;}
.x3d{left:804.603054px;}
.x2b{left:815.396222px;}
.x29{left:824.395633px;}
.x3c{left:830.518022px;}
.x1a{left:844.928306px;}
.x3f{left:845.998827px;}
.x15{left:857.511507px;}
.x33{left:859.677532px;}
.x40{left:861.298358px;}
.xe{left:867.236854px;}
.x1e{left:885.967460px;}
.x2c{left:891.175469px;}
.x41{left:892.796497px;}
.x38{left:894.783289px;}
.x2d{left:913.673995px;}
.x3e{left:952.914269px;}
.x3a{left:977.393490px;}
.x2e{left:996.291445px;}
.x32{left:1070.632217px;}
.x30{left:1073.161987px;}
.x31{left:1075.131923px;}
.x25{left:1126.803499px;}
.x2f{left:1149.841188px;}
@media print{
.v4{vertical-align:-73.610336pt;}
.v6{vertical-align:-61.428723pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.368973pt;}
.v1{vertical-align:28.167669pt;}
.v5{vertical-align:61.428723pt;}
.v3{vertical-align:79.999013pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.084480pt;}
.lsd{letter-spacing:0.389075pt;}
.lsf{letter-spacing:17.292128pt;}
.lsc{letter-spacing:25.345933pt;}
.ls8{letter-spacing:25.424546pt;}
.ls3{letter-spacing:26.053602pt;}
.ls2{letter-spacing:26.079013pt;}
.ls10{letter-spacing:32.116564pt;}
.ls11{letter-spacing:33.308087pt;}
.lse{letter-spacing:38.514486pt;}
.lsb{letter-spacing:38.578587pt;}
.ls4{letter-spacing:48.460804pt;}
.ls1{letter-spacing:51.747840pt;}
.lsa{letter-spacing:51.793440pt;}
.ls7{letter-spacing:51.793457pt;}
.ls9{letter-spacing:58.288036pt;}
.ls5{letter-spacing:66.570914pt;}
.ws1f{word-spacing:-56.466076pt;}
.ws15{word-spacing:-56.320326pt;}
.ws24{word-spacing:-55.062927pt;}
.ws21{word-spacing:-41.034306pt;}
.ws23{word-spacing:-35.817722pt;}
.ws0{word-spacing:-30.575921pt;}
.ws5{word-spacing:-28.129819pt;}
.ws14{word-spacing:-23.231954pt;}
.ws1d{word-spacing:-23.147475pt;}
.ws12{word-spacing:-23.062995pt;}
.ws25{word-spacing:-20.442273pt;}
.ws7{word-spacing:-19.248640pt;}
.ws16{word-spacing:-18.658476pt;}
.wsf{word-spacing:-17.821551pt;}
.ws2{word-spacing:-17.041274pt;}
.ws3{word-spacing:-16.947739pt;}
.ws10{word-spacing:-15.375449pt;}
.wsd{word-spacing:-10.547200pt;}
.ws1b{word-spacing:-5.837352pt;}
.ws1c{word-spacing:-2.111996pt;}
.ws19{word-spacing:-1.899888pt;}
.ws13{word-spacing:-1.155949pt;}
.ws4{word-spacing:-1.030403pt;}
.ws1a{word-spacing:-0.825596pt;}
.ws18{word-spacing:-0.170239pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.164624pt;}
.wse{word-spacing:0.618242pt;}
.ws17{word-spacing:0.680956pt;}
.ws8{word-spacing:2.197793pt;}
.ws11{word-spacing:2.429438pt;}
.ws9{word-spacing:2.821141pt;}
.wsa{word-spacing:2.826223pt;}
.wsb{word-spacing:2.854442pt;}
.wsc{word-spacing:2.867200pt;}
.ws6{word-spacing:3.853114pt;}
.ws1e{word-spacing:19.052845pt;}
.ws20{word-spacing:19.093917pt;}
._20{margin-left:-17.006065pt;}
._10{margin-left:-14.279725pt;}
._21{margin-left:-10.959436pt;}
._1b{margin-left:-9.918556pt;}
._5{margin-left:-8.847996pt;}
._19{margin-left:-7.134067pt;}
._2{margin-left:-5.990410pt;}
._6{margin-left:-4.990080pt;}
._1d{margin-left:-3.939841pt;}
._4{margin-left:-2.940157pt;}
._a{margin-left:-1.944319pt;}
._0{margin-left:-0.898561pt;}
._1{width:1.048322pt;}
._3{width:2.162561pt;}
._c{width:3.302431pt;}
._8{width:4.268784pt;}
._e{width:5.564175pt;}
._12{width:10.100479pt;}
._11{width:13.081600pt;}
._d{width:18.062743pt;}
._1e{width:19.319071pt;}
._15{width:20.545235pt;}
._16{width:21.543641pt;}
._1f{width:23.423963pt;}
._7{width:31.468704pt;}
._9{width:32.965024pt;}
._1c{width:34.483312pt;}
._b{width:47.129610pt;}
._1a{width:53.302522pt;}
._14{width:54.378369pt;}
._f{width:55.435673pt;}
._13{width:57.660294pt;}
._18{width:143.904987pt;}
._17{width:289.699713pt;}
.fs10{font-size:34.560000pt;}
.fse{font-size:51.199344pt;}
.fsf{font-size:51.200000pt;}
.fs13{font-size:56.320326pt;}
.fs9{font-size:62.079630pt;}
.fs4{font-size:65.280408pt;}
.fs5{font-size:68.993013pt;}
.fs12{font-size:74.880000pt;}
.fs0{font-size:74.880121pt;}
.fs14{font-size:82.559630pt;}
.fs7{font-size:84.479834pt;}
.fs15{font-size:85.119466pt;}
.fs8{font-size:93.439916pt;}
.fsd{font-size:93.440000pt;}
.fsc{font-size:103.039629pt;}
.fs2{font-size:111.999711pt;}
.fs11{font-size:131.200000pt;}
.fs16{font-size:131.200448pt;}
.fs17{font-size:136.959751pt;}
.fs18{font-size:149.760243pt;}
.fsb{font-size:158.720324pt;}
.fs3{font-size:168.320037pt;}
.fsa{font-size:186.879832pt;}
.fs19{font-size:200.959586pt;}
.fs6{font-size:206.080569pt;}
.fs1{font-size:252.799872pt;}
.ybc{bottom:-3.827771pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.841445pt;}
.ybb{bottom:81.270461pt;}
.y50{bottom:88.802274pt;}
.y5d{bottom:93.917778pt;}
.y67{bottom:97.119759pt;}
.y66{bottom:102.398485pt;}
.y52{bottom:108.645429pt;}
.y4f{bottom:112.488935pt;}
.y57{bottom:116.637303pt;}
.yba{bottom:121.283113pt;}
.y40{bottom:123.524457pt;}
.y12{bottom:123.678578pt;}
.y65{bottom:127.676901pt;}
.y17{bottom:128.965961pt;}
.y51{bottom:132.158086pt;}
.y5c{bottom:134.564164pt;}
.ya8{bottom:139.040015pt;}
.yde{bottom:139.194033pt;}
.y11{bottom:143.356514pt;}
.y81{bottom:143.522275pt;}
.y64{bottom:152.798150pt;}
.y16{bottom:154.241860pt;}
.y83{bottom:156.485194pt;}
.y2{bottom:157.765726pt;}
.y9b{bottom:158.562791pt;}
.y90{bottom:161.603409pt;}
.y5b{bottom:162.712935pt;}
.y10{bottom:163.039460pt;}
.ya7{bottom:164.317173pt;}
.yb9{bottom:166.072249pt;}
.y3f{bottom:166.076085pt;}
.y80{bottom:168.324416pt;}
.y63{bottom:178.084308pt;}
.y1{bottom:180.160294pt;}
.y82{bottom:181.284873pt;}
.y9a{bottom:183.838690pt;}
.y87{bottom:188.959878pt;}
.ya6{bottom:189.603394pt;}
.y5a{bottom:190.721624pt;}
.y7c{bottom:194.083986pt;}
.y3e{bottom:196.967846pt;}
.yca{bottom:197.912637pt;}
.yb1{bottom:200.154822pt;}
.y32{bottom:201.126759pt;}
.y62{bottom:203.360207pt;}
.y99{bottom:209.124911pt;}
.y29{bottom:209.603317pt;}
.y1e{bottom:213.113959pt;}
.ya5{bottom:214.879229pt;}
.y7b{bottom:218.886187pt;}
.y70{bottom:224.004014pt;}
.yb0{bottom:231.513551pt;}
.yc9{bottom:233.275286pt;}
.y98{bottom:234.246097pt;}
.y31{bottom:234.882536pt;}
.y4c{bottom:238.247596pt;}
.y3d{bottom:239.355991pt;}
.y28{bottom:239.845420pt;}
.ya4{bottom:240.000478pt;}
.y6f{bottom:249.440148pt;}
.y9{bottom:251.835609pt;}
.yd1{bottom:253.284820pt;}
.yd8{bottom:254.077811pt;}
.y4b{bottom:260.474585pt;}
.y85{bottom:264.963139pt;}
.y30{bottom:268.487900pt;}
.y27{bottom:270.237894pt;}
.y3c{bottom:270.247752pt;}
.y5f{bottom:272.639471pt;}
.y6e{bottom:275.042472pt;}
.yc8{bottom:280.313330pt;}
.yaf{bottom:288.641454pt;}
.yd0{bottom:289.446854pt;}
.y84{bottom:289.765310pt;}
.ya3{bottom:290.562535pt;}
.y8{bottom:290.567955pt;}
.yd7{bottom:291.203973pt;}
.y4a{bottom:294.883567pt;}
.y26{bottom:300.480039pt;}
.y6d{bottom:300.644827pt;}
.y2f{bottom:302.079621pt;}
.y56{bottom:306.236812pt;}
.y97{bottom:310.084084pt;}
.y3b{bottom:312.799380pt;}
.y49{bottom:317.122585pt;}
.y7{bottom:317.446756pt;}
.yae{bottom:320.160350pt;}
.ycf{bottom:325.595202pt;}
.yc7{bottom:326.401836pt;}
.y25{bottom:330.886198pt;}
.y8f{bottom:331.043056pt;}
.yf{bottom:332.159293pt;}
.yd6{bottom:332.476412pt;}
.y96{bottom:335.359951pt;}
.y2e{bottom:335.835397pt;}
.y3a{bottom:343.678590pt;}
.y54{bottom:344.311536pt;}
.y58{bottom:347.196414pt;}
.y5e{bottom:348.962241pt;}
.y48{bottom:351.527396pt;}
.ye0{bottom:352.002011pt;}
.y68{bottom:354.556656pt;}
.ye2{bottom:355.356638pt;}
.y6{bottom:356.001361pt;}
.y60{bottom:357.757846pt;}
.y95{bottom:360.481168pt;}
.y24{bottom:361.114616pt;}
.y8e{bottom:361.115230pt;}
.yc6{bottom:362.563828pt;}
.yce{bottom:362.713974pt;}
.ye{bottom:366.401252pt;}
.yc1{bottom:367.839597pt;}
.ya2{bottom:367.998975pt;}
.y53{bottom:368.000662pt;}
.y2d{bottom:369.440803pt;}
.yd5{bottom:373.604666pt;}
.y47{bottom:373.770585pt;}
.ydf{bottom:374.396579pt;}
.yad{bottom:377.272270pt;}
.ye1{bottom:377.760356pt;}
.y94{bottom:385.757036pt;}
.y39{bottom:386.242808pt;}
.y72{bottom:388.157610pt;}
.y8d{bottom:388.325195pt;}
.y23{bottom:391.356761pt;}
.yc5{bottom:392.805973pt;}
.ya1{bottom:393.285165pt;}
.y46{bottom:399.046086pt;}
.yb8{bottom:399.195340pt;}
.yd{bottom:400.475824pt;}
.y2c{bottom:403.196538pt;}
.y5{bottom:407.832861pt;}
.yac{bottom:408.630950pt;}
.ycd{bottom:408.802000pt;}
.yd4{bottom:415.831116pt;}
.y38{bottom:417.121979pt;}
.y7a{bottom:418.079432pt;}
.ya0{bottom:418.561063pt;}
.y1d{bottom:420.319719pt;}
.y22{bottom:421.762920pt;}
.yc0{bottom:423.524869pt;}
.y8c{bottom:425.121736pt;}
.yc4{bottom:430.075945pt;}
.y71{bottom:431.362334pt;}
.ydd{bottom:431.997822pt;}
.y45{bottom:433.445865pt;}
.yc{bottom:434.717758pt;}
.y93{bottom:436.319155pt;}
.y2b{bottom:436.801944pt;}
.yab{bottom:440.005662pt;}
.y79{bottom:442.881572pt;}
.y9f{bottom:443.836930pt;}
.ycc{bottom:444.964034pt;}
.yb7{bottom:449.770639pt;}
.y21{bottom:452.005023pt;}
.y8b{bottom:455.199831pt;}
.y44{bottom:455.670739pt;}
.y1c{bottom:457.275929pt;}
.y37{bottom:459.686197pt;}
.yb{bottom:462.720109pt;}
.y76{bottom:464.005219pt;}
.ybf{bottom:464.804055pt;}
.ydc{bottom:467.360446pt;}
.yd3{bottom:468.005877pt;}
.y6c{bottom:468.641142pt;}
.y9e{bottom:468.958148pt;}
.y2a{bottom:470.407329pt;}
.ycb{bottom:475.206137pt;}
.y4{bottom:476.001176pt;}
.yc3{bottom:476.953847pt;}
.y43{bottom:480.969624pt;}
.y8a{bottom:482.244205pt;}
.y20{bottom:482.247127pt;}
.y1b{bottom:482.563579pt;}
.y75{bottom:488.797302pt;}
.y6b{bottom:493.443313pt;}
.yaa{bottom:497.277749pt;}
.yb6{bottom:500.323068pt;}
.y36{bottom:502.237844pt;}
.ydb{bottom:502.562904pt;}
.y42{bottom:506.245125pt;}
.y89{bottom:507.520420pt;}
.yd2{bottom:508.316105pt;}
.y92{bottom:512.002429pt;}
.yc2{bottom:512.316471pt;}
.ybe{bottom:516.154935pt;}
.y1a{bottom:519.360085pt;}
.y9d{bottom:519.520236pt;}
.y78{bottom:528.323533pt;}
.ya9{bottom:528.636453pt;}
.y91{bottom:537.278312pt;}
.y3{bottom:544.169514pt;}
.y19{bottom:544.636317pt;}
.y35{bottom:544.802081pt;}
.y77{bottom:553.125689pt;}
.y74{bottom:559.525276pt;}
.y9c{bottom:570.876374pt;}
.yb5{bottom:573.918930pt;}
.y34{bottom:575.681252pt;}
.y73{bottom:584.317343pt;}
.y7f{bottom:586.877184pt;}
.y4d{bottom:588.333606pt;}
.yda{bottom:596.639017pt;}
.y18{bottom:601.766976pt;}
.ybd{bottom:601.917908pt;}
.y7e{bottom:611.518087pt;}
.y6a{bottom:616.005443pt;}
.yb2{bottom:618.722330pt;}
.y4e{bottom:625.288131pt;}
.y14{bottom:628.960952pt;}
.yb4{bottom:629.589860pt;}
.y15{bottom:630.570955pt;}
.y1f{bottom:632.327177pt;}
.y7d{bottom:636.320242pt;}
.y33{bottom:637.765673pt;}
.y88{bottom:637.768277pt;}
.y61{bottom:640.331609pt;}
.y59{bottom:640.642637pt;}
.y41{bottom:644.960373pt;}
.yb3{bottom:649.287263pt;}
.y55{bottom:649.589136pt;}
.y13{bottom:650.243206pt;}
.yd9{bottom:656.474504pt;}
.ya{bottom:666.246069pt;}
.y86{bottom:674.404842pt;}
.h1c{height:18.079668pt;}
.h2b{height:31.374711pt;}
.h15{height:43.848052pt;}
.h13{height:44.939399pt;}
.h12{height:44.963469pt;}
.h14{height:44.973852pt;}
.h19{height:48.702782pt;}
.h1d{height:48.812783pt;}
.h6{height:49.725311pt;}
.h7{height:52.553271pt;}
.h18{height:56.450978pt;}
.h17{height:64.172160pt;}
.h2{height:64.752292pt;}
.h9{height:73.053607pt;}
.h1b{height:73.094857pt;}
.h11{height:80.078080pt;}
.hb{height:80.801802pt;}
.h25{height:80.847427pt;}
.hc{height:81.823267pt;}
.h24{height:81.827602pt;}
.h26{height:81.843178pt;}
.hd{height:81.843608pt;}
.h23{height:81.844691pt;}
.ha{height:81.850786pt;}
.h1e{height:82.116194pt;}
.h20{height:84.534933pt;}
.h1f{height:87.156015pt;}
.h10{height:89.103117pt;}
.h4{height:96.851312pt;}
.h16{height:112.438400pt;}
.h21{height:113.416300pt;}
.h27{height:113.455075pt;}
.h22{height:113.519137pt;}
.h2c{height:129.504585pt;}
.h2a{height:129.577710pt;}
.hf{height:137.252780pt;}
.h5{height:145.554095pt;}
.h1a{height:153.052620pt;}
.he{height:161.603605pt;}
.h2d{height:173.779017pt;}
.h8{height:178.207367pt;}
.h29{height:179.851675pt;}
.h28{height:179.864133pt;}
.h3{height:218.607702pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:120.956943pt;}
.w3{width:518.731865pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:8.638179pt;}
.x20{left:43.029120pt;}
.x45{left:45.282731pt;}
.x1f{left:49.429760pt;}
.x1b{left:54.872639pt;}
.x13{left:56.807617pt;}
.x36{left:58.879010pt;}
.x10{left:62.403538pt;}
.x17{left:68.631678pt;}
.xb{left:69.607538pt;}
.xc{left:70.890511pt;}
.x1c{left:72.651450pt;}
.x43{left:74.559234pt;}
.x44{left:76.322667pt;}
.x14{left:80.800572pt;}
.x11{left:83.516491pt;}
.x8{left:84.632596pt;}
.xf{left:85.757895pt;}
.x18{left:89.749116pt;}
.x46{left:92.002736pt;}
.x22{left:99.041825pt;}
.x37{left:100.958366pt;}
.x1d{left:103.517482pt;}
.x16{left:106.725007pt;}
.x19{left:110.717329pt;}
.x12{left:124.807076pt;}
.x47{left:127.681313pt;}
.x48{left:148.804302pt;}
.x42{left:158.399699pt;}
.x49{left:169.763235pt;}
.x2{left:171.207728pt;}
.x27{left:172.961269pt;}
.x34{left:178.240924pt;}
.x5{left:204.640091pt;}
.x6{left:228.634175pt;}
.x3{left:250.238539pt;}
.x26{left:264.479046pt;}
.xa{left:269.919195pt;}
.x1{left:322.564058pt;}
.xd{left:328.491231pt;}
.x4{left:404.967368pt;}
.x4e{left:406.877313pt;}
.x4d{left:412.800430pt;}
.x23{left:415.520749pt;}
.x7{left:435.352391pt;}
.x21{left:480.159366pt;}
.x28{left:497.282694pt;}
.x2a{left:511.200520pt;}
.x4b{left:580.322073pt;}
.x4c{left:625.922452pt;}
.x4a{left:632.635153pt;}
.x35{left:635.202486pt;}
.x24{left:660.636830pt;}
.x3b{left:691.193972pt;}
.x39{left:706.559592pt;}
.x3d{left:715.202715pt;}
.x2b{left:724.796642pt;}
.x29{left:732.796118pt;}
.x3c{left:738.238242pt;}
.x1a{left:751.047383pt;}
.x3f{left:751.998957pt;}
.x15{left:762.232450pt;}
.x33{left:764.157806pt;}
.x40{left:765.598540pt;}
.xe{left:770.877203pt;}
.x1e{left:787.526631pt;}
.x2c{left:792.155972pt;}
.x41{left:793.596886pt;}
.x38{left:795.362923pt;}
.x2d{left:812.154662pt;}
.x3e{left:847.034906pt;}
.x3a{left:868.794214pt;}
.x2e{left:885.592396pt;}
.x32{left:951.673082pt;}
.x30{left:953.921766pt;}
.x31{left:955.672820pt;}
.x25{left:1001.603110pt;}
.x2f{left:1022.081056pt;}
}




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