
    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_0e28bbc7c4030e5062da083f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_39259053dd4b566131d172fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_229bead5a3be410ead401f0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_2076c2b943b2d567a9f25ff9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_8561947677827bf0d0e84664.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7d7d861f214f3b3d6e8be223.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_81bf1724fcfa70ea9ce16fdc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_5f6f37dddb5561ea0996af84.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c47852d472493e57a196da21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls18{letter-spacing:-0.014400px;}
.lsc{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.123552px;}
.ls3{letter-spacing:0.155376px;}
.ls0{letter-spacing:0.159840px;}
.ls2{letter-spacing:0.161040px;}
.ls17{letter-spacing:0.161568px;}
.lsf{letter-spacing:0.204336px;}
.ls8{letter-spacing:0.223344px;}
.ls4{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.242064px;}
.lsa{letter-spacing:0.242352px;}
.ls20{letter-spacing:0.253872px;}
.ls12{letter-spacing:0.286848px;}
.lse{letter-spacing:0.318384px;}
.ls21{letter-spacing:0.318816px;}
.ls1c{letter-spacing:0.319680px;}
.ls25{letter-spacing:0.320280px;}
.lsd{letter-spacing:0.351648px;}
.ls16{letter-spacing:0.356400px;}
.ls10{letter-spacing:0.365904px;}
.ls22{letter-spacing:0.383760px;}
.ls1e{letter-spacing:0.419184px;}
.ls2b{letter-spacing:0.460512px;}
.ls2a{letter-spacing:0.466416px;}
.ls6{letter-spacing:0.478224px;}
.ls2d{letter-spacing:0.479400px;}
.ls26{letter-spacing:0.480000px;}
.ls31{letter-spacing:0.495936px;}
.ls1{letter-spacing:0.543168px;}
.ls2f{letter-spacing:0.554976px;}
.ls14{letter-spacing:0.578592px;}
.ls15{letter-spacing:0.637632px;}
.ls13{letter-spacing:0.702576px;}
.ls32{letter-spacing:0.802944px;}
.ls1f{letter-spacing:0.861984px;}
.ls1d{letter-spacing:0.897408px;}
.ls2c{letter-spacing:1.766400px;}
.ls27{letter-spacing:1.788600px;}
.ls2e{letter-spacing:5.118000px;}
.ls30{letter-spacing:10.551000px;}
.ls29{letter-spacing:16.586880px;}
.ls24{letter-spacing:46.586880px;}
.ls19{letter-spacing:54.866820px;}
.ls1b{letter-spacing:93.925440px;}
.ls23{letter-spacing:97.968360px;}
.ls1a{letter-spacing:121.944960px;}
.lsb{letter-spacing:149.964480px;}
.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;}
}
.wsa{word-spacing:-18.014400px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.985600px;}
.ws1{word-spacing:-16.956288px;}
.wsd{word-spacing:-15.462576px;}
.ws4{word-spacing:-15.397632px;}
.ws2{word-spacing:-15.338592px;}
.ws3{word-spacing:-15.238224px;}
.ws12{word-spacing:-15.226416px;}
.ws13{word-spacing:-15.220512px;}
.ws10{word-spacing:-15.179184px;}
.wsf{word-spacing:-15.143760px;}
.ws11{word-spacing:-15.078816px;}
.wse{word-spacing:-15.013872px;}
.ws6{word-spacing:-12.236400px;}
.ws0{word-spacing:-12.122352px;}
.ws7{word-spacing:-12.041568px;}
.ws5{word-spacing:-0.086400px;}
.wsc{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
._14{margin-left:-4.744800px;}
._11{margin-left:-3.564000px;}
._a{margin-left:-2.196000px;}
._1{margin-left:-1.188000px;}
._6{width:1.045440px;}
._3{width:2.994792px;}
._0{width:4.134240px;}
._8{width:5.264760px;}
._2{width:6.747840px;}
._16{width:7.784640px;}
._4{width:8.791200px;}
._5{width:10.052904px;}
._12{width:11.111688px;}
._7{width:12.254400px;}
._b{width:14.086800px;}
._17{width:15.296400px;}
._10{width:16.992000px;}
._20{width:18.206400px;}
._c{width:19.396800px;}
._19{width:20.581800px;}
._d{width:21.679200px;}
._1b{width:22.831200px;}
._18{width:24.400800px;}
._9{width:25.567200px;}
._13{width:27.324000px;}
._15{width:29.307060px;}
._1c{width:36.604800px;}
._1d{width:37.844640px;}
._1a{width:45.064800px;}
._1f{width:46.599840px;}
._1e{width:47.645280px;}
._e{width:956.208240px;}
._f{width:1570.490640px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs2{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.520000px;}
.yd{bottom:5.760000px;}
.yf{bottom:7.560000px;}
.y9{bottom:16.200000px;}
.y1{bottom:17.985900px;}
.ya9{bottom:25.560000px;}
.yb1{bottom:25.560015px;}
.yad{bottom:25.920000px;}
.y8{bottom:30.240000px;}
.y4{bottom:34.920000px;}
.y34{bottom:37.782885px;}
.yb{bottom:40.302885px;}
.y7{bottom:43.920000px;}
.y33{bottom:56.502885px;}
.y6{bottom:57.600000px;}
.y5{bottom:71.640000px;}
.y3{bottom:73.408785px;}
.y9d{bottom:94.662885px;}
.y77{bottom:106.182885px;}
.ycc{bottom:115.542885px;}
.y9c{bottom:118.782885px;}
.yf1{bottom:125.262885px;}
.y58{bottom:128.502885px;}
.y76{bottom:130.302885px;}
.yb0{bottom:132.088785px;}
.ycb{bottom:139.302900px;}
.y9b{bottom:142.542900px;}
.yf0{bottom:145.062900px;}
.y32{bottom:149.382900px;}
.y57{bottom:152.262900px;}
.y75{bottom:154.062900px;}
.yca{bottom:163.062900px;}
.yef{bottom:164.862900px;}
.y9a{bottom:166.302900px;}
.yaf{bottom:172.408800px;}
.y31{bottom:173.142900px;}
.y56{bottom:176.022900px;}
.y74{bottom:177.822900px;}
.yee{bottom:184.662900px;}
.y99{bottom:190.062900px;}
.y30{bottom:196.902900px;}
.y8a{bottom:197.262900px;}
.y55{bottom:199.782900px;}
.y73{bottom:201.582900px;}
.yed{bottom:204.822900px;}
.yc9{bottom:207.702900px;}
.yae{bottom:212.728800px;}
.y2f{bottom:220.662900px;}
.y89{bottom:221.022900px;}
.y54{bottom:223.542900px;}
.yec{bottom:224.622900px;}
.y72{bottom:226.782900px;}
.y98{bottom:234.702900px;}
.y2e{bottom:244.422900px;}
.y88{bottom:244.782900px;}
.y71{bottom:250.542900px;}
.yc8{bottom:252.702900px;}
.yac{bottom:253.048800px;}
.yeb{bottom:264.222900px;}
.y2d{bottom:268.542900px;}
.y70{bottom:274.302900px;}
.yc7{bottom:276.462900px;}
.y97{bottom:279.702900px;}
.yea{bottom:284.022900px;}
.y2c{bottom:292.302900px;}
.yab{bottom:293.728800px;}
.y6f{bottom:298.422900px;}
.yc6{bottom:300.222900px;}
.y96{bottom:303.462900px;}
.ye9{bottom:303.822900px;}
.y2b{bottom:316.062900px;}
.y87{bottom:316.422900px;}
.y6e{bottom:323.262900px;}
.ye8{bottom:323.622900px;}
.yc5{bottom:323.982900px;}
.y95{bottom:327.222900px;}
.yaa{bottom:334.048800px;}
.y53{bottom:339.822900px;}
.y86{bottom:340.182900px;}
.ye7{bottom:343.422900px;}
.y6d{bottom:347.022900px;}
.yc4{bottom:347.742900px;}
.y94{bottom:350.982900px;}
.y2a{bottom:360.702900px;}
.ye6{bottom:363.222900px;}
.y52{bottom:363.582900px;}
.y6c{bottom:370.782900px;}
.yc3{bottom:371.862900px;}
.ya8{bottom:374.368800px;}
.y93{bottom:374.742900px;}
.ye5{bottom:383.022900px;}
.y85{bottom:384.822900px;}
.y51{bottom:387.342900px;}
.y6b{bottom:394.542900px;}
.yc2{bottom:395.622900px;}
.ye4{bottom:403.182900px;}
.y29{bottom:405.702900px;}
.y50{bottom:411.102900px;}
.y6a{bottom:418.662900px;}
.yc1{bottom:419.382900px;}
.y92{bottom:419.742900px;}
.ye3{bottom:422.982900px;}
.ya7{bottom:425.142900px;}
.y28{bottom:429.462900px;}
.y84{bottom:429.822900px;}
.y4f{bottom:434.862900px;}
.ye2{bottom:442.782900px;}
.yc0{bottom:443.142900px;}
.y83{bottom:453.582900px;}
.ye1{bottom:462.582900px;}
.y69{bottom:464.382900px;}
.ybf{bottom:466.902900px;}
.ya6{bottom:469.782900px;}
.y27{bottom:474.102900px;}
.y82{bottom:477.342900px;}
.y4e{bottom:479.862900px;}
.ye0{bottom:482.382900px;}
.y91{bottom:488.142900px;}
.ybe{bottom:490.662900px;}
.ya5{bottom:493.902900px;}
.y26{bottom:497.862900px;}
.y81{bottom:501.102900px;}
.ydf{bottom:502.182900px;}
.y68{bottom:509.382900px;}
.y90{bottom:511.902900px;}
.ybd{bottom:514.422900px;}
.ya4{bottom:517.662900px;}
.y25{bottom:521.982900px;}
.y4d{bottom:524.502900px;}
.y80{bottom:524.862900px;}
.y67{bottom:533.142900px;}
.y8f{bottom:536.022900px;}
.ya3{bottom:541.422900px;}
.yde{bottom:541.782900px;}
.y24{bottom:545.742900px;}
.y4c{bottom:548.622900px;}
.y66{bottom:556.902900px;}
.ybc{bottom:559.422900px;}
.y8e{bottom:559.782900px;}
.ydd{bottom:561.582900px;}
.ya2{bottom:565.182900px;}
.y23{bottom:569.502900px;}
.y4b{bottom:572.382900px;}
.y65{bottom:580.662900px;}
.ydc{bottom:581.382900px;}
.ybb{bottom:583.182900px;}
.y8d{bottom:583.542900px;}
.ya1{bottom:588.942900px;}
.y22{bottom:593.262900px;}
.y4a{bottom:596.142900px;}
.ydb{bottom:601.542900px;}
.yba{bottom:606.942900px;}
.y8c{bottom:607.302900px;}
.ya0{bottom:612.702900px;}
.y21{bottom:617.022900px;}
.y7f{bottom:617.382900px;}
.y49{bottom:619.902900px;}
.yda{bottom:621.342900px;}
.y109{bottom:624.582900px;}
.y64{bottom:625.302900px;}
.yb9{bottom:630.702900px;}
.y20{bottom:640.782900px;}
.yd9{bottom:641.142900px;}
.y48{bottom:643.662900px;}
.y63{bottom:649.422900px;}
.y8b{bottom:651.942900px;}
.yb8{bottom:654.462900px;}
.y9f{bottom:657.702900px;}
.yd8{bottom:660.942900px;}
.y7e{bottom:662.022900px;}
.y1f{bottom:664.542900px;}
.y47{bottom:667.422900px;}
.y108{bottom:669.222900px;}
.y62{bottom:673.182900px;}
.yb7{bottom:678.222900px;}
.yd7{bottom:680.742900px;}
.y1e{bottom:688.302900px;}
.y46{bottom:691.182900px;}
.y61{bottom:696.942900px;}
.y9e{bottom:698.382900px;}
.yd6{bottom:700.542900px;}
.yb6{bottom:701.982900px;}
.y7d{bottom:703.062900px;}
.y1d{bottom:712.422900px;}
.y107{bottom:714.222900px;}
.y45{bottom:714.942900px;}
.yd5{bottom:720.342900px;}
.y60{bottom:720.702900px;}
.yb5{bottom:726.102900px;}
.y106{bottom:734.382900px;}
.y44{bottom:738.702900px;}
.y5f{bottom:744.462900px;}
.yb4{bottom:749.862900px;}
.y105{bottom:751.662900px;}
.y1c{bottom:754.542900px;}
.y43{bottom:762.822900px;}
.y5e{bottom:768.222900px;}
.y104{bottom:768.942900px;}
.y1b{bottom:776.502900px;}
.y103{bottom:785.862900px;}
.y42{bottom:786.582900px;}
.y5d{bottom:791.982900px;}
.y1a{bottom:792.342900px;}
.yb3{bottom:794.502900px;}
.y102{bottom:803.142900px;}
.yd4{bottom:807.462900px;}
.y19{bottom:808.182900px;}
.y41{bottom:810.342900px;}
.y5c{bottom:815.742900px;}
.y101{bottom:820.422900px;}
.y18{bottom:826.542900px;}
.yd3{bottom:831.222900px;}
.y40{bottom:834.102900px;}
.yb2{bottom:835.542900px;}
.y100{bottom:837.702900px;}
.y17{bottom:850.302900px;}
.yd2{bottom:854.982900px;}
.y3f{bottom:857.862900px;}
.y5b{bottom:860.742900px;}
.y16{bottom:870.102900px;}
.yff{bottom:872.262900px;}
.yd1{bottom:878.742900px;}
.y3e{bottom:881.622900px;}
.y5a{bottom:884.502900px;}
.yfe{bottom:889.542900px;}
.y15{bottom:896.742900px;}
.yd0{bottom:902.862900px;}
.y3d{bottom:905.382900px;}
.yfd{bottom:906.822900px;}
.y59{bottom:908.262900px;}
.y14{bottom:909.702900px;}
.yfc{bottom:924.102900px;}
.ycf{bottom:926.622900px;}
.y3c{bottom:929.142900px;}
.y13{bottom:936.342900px;}
.yfb{bottom:941.382900px;}
.yce{bottom:950.382900px;}
.y3b{bottom:953.262900px;}
.yfa{bottom:960.822900px;}
.y12{bottom:971.622900px;}
.ycd{bottom:974.142900px;}
.y7c{bottom:977.022900px;}
.yf9{bottom:980.622900px;}
.y3a{bottom:997.902900px;}
.yf8{bottom:1000.422900px;}
.y7b{bottom:1000.782900px;}
.yf7{bottom:1020.222900px;}
.y11{bottom:1020.942900px;}
.y39{bottom:1021.662900px;}
.y7a{bottom:1024.542900px;}
.yf6{bottom:1040.022900px;}
.y38{bottom:1045.422900px;}
.y79{bottom:1048.302900px;}
.yf5{bottom:1059.822900px;}
.y10{bottom:1060.542900px;}
.y37{bottom:1069.182900px;}
.y78{bottom:1072.062900px;}
.yf4{bottom:1079.622900px;}
.y36{bottom:1092.942900px;}
.yf3{bottom:1099.422900px;}
.y35{bottom:1117.062900px;}
.yf2{bottom:1119.582900px;}
.ye{bottom:1127.488800px;}
.y2{bottom:1136.862900px;}
.yc{bottom:1188.328800px;}
.h7{height:19.800000px;}
.h9{height:24.120000px;}
.hd{height:27.014766px;}
.h6{height:33.018047px;}
.h5{height:34.155000px;}
.h13{height:39.600000px;}
.h15{height:39.960000px;}
.h14{height:40.013438px;}
.he{height:41.022422px;}
.h8{height:42.435000px;}
.h3{height:46.575000px;}
.h11{height:48.796875px;}
.ha{height:50.027344px;}
.h12{height:51.750000px;}
.hf{height:53.402344px;}
.h10{height:58.031719px;}
.hc{height:65.325937px;}
.h4{height:82.800000px;}
.hb{height:83.045391px;}
.h2{height:1226.862900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:24.840000px;}
.wa{width:94.320000px;}
.w3{width:171.360000px;}
.w8{width:239.040000px;}
.w7{width:364.320000px;}
.w9{width:384.840000px;}
.w6{width:425.520000px;}
.w4{width:573.840000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.920000px;}
.x1d{left:9.090750px;}
.x21{left:10.811970px;}
.x2a{left:13.545000px;}
.x19{left:15.218550px;}
.x1{left:17.985900px;}
.x27{left:22.483110px;}
.x20{left:24.142050px;}
.x1a{left:26.878650px;}
.x1f{left:27.922350px;}
.x2b{left:30.818070px;}
.x26{left:33.547500px;}
.x28{left:35.329800px;}
.x24{left:36.366150px;}
.x1b{left:38.307075px;}
.x23{left:47.271930px;}
.x15{left:49.128615px;}
.x9{left:60.825900px;}
.x7{left:64.440000px;}
.x3{left:71.265900px;}
.x1c{left:77.898150px;}
.x14{left:87.825900px;}
.xd{left:91.440000px;}
.x25{left:95.721600px;}
.xe{left:118.440000px;}
.x17{left:123.407100px;}
.x22{left:148.833150px;}
.x1e{left:150.927900px;}
.x29{left:158.200800px;}
.x4{left:160.800300px;}
.xc{left:172.440000px;}
.xb{left:236.598600px;}
.x5{left:243.345900px;}
.x13{left:313.217400px;}
.x12{left:316.979100px;}
.x10{left:321.725100px;}
.x16{left:327.585900px;}
.x2d{left:359.210550px;}
.x2{left:434.669700px;}
.xa{left:486.345900px;}
.x2c{left:653.610000px;}
.x11{left:675.569850px;}
.x18{left:713.145900px;}
.xf{left:771.690000px;}
.x8{left:788.025900px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls18{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.109824pt;}
.ls3{letter-spacing:0.138112pt;}
.ls0{letter-spacing:0.142080pt;}
.ls2{letter-spacing:0.143147pt;}
.ls17{letter-spacing:0.143616pt;}
.lsf{letter-spacing:0.181632pt;}
.ls8{letter-spacing:0.198528pt;}
.ls4{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.215168pt;}
.lsa{letter-spacing:0.215424pt;}
.ls20{letter-spacing:0.225664pt;}
.ls12{letter-spacing:0.254976pt;}
.lse{letter-spacing:0.283008pt;}
.ls21{letter-spacing:0.283392pt;}
.ls1c{letter-spacing:0.284160pt;}
.ls25{letter-spacing:0.284693pt;}
.lsd{letter-spacing:0.312576pt;}
.ls16{letter-spacing:0.316800pt;}
.ls10{letter-spacing:0.325248pt;}
.ls22{letter-spacing:0.341120pt;}
.ls1e{letter-spacing:0.372608pt;}
.ls2b{letter-spacing:0.409344pt;}
.ls2a{letter-spacing:0.414592pt;}
.ls6{letter-spacing:0.425088pt;}
.ls2d{letter-spacing:0.426133pt;}
.ls26{letter-spacing:0.426667pt;}
.ls31{letter-spacing:0.440832pt;}
.ls1{letter-spacing:0.482816pt;}
.ls2f{letter-spacing:0.493312pt;}
.ls14{letter-spacing:0.514304pt;}
.ls15{letter-spacing:0.566784pt;}
.ls13{letter-spacing:0.624512pt;}
.ls32{letter-spacing:0.713728pt;}
.ls1f{letter-spacing:0.766208pt;}
.ls1d{letter-spacing:0.797696pt;}
.ls2c{letter-spacing:1.570133pt;}
.ls27{letter-spacing:1.589867pt;}
.ls2e{letter-spacing:4.549333pt;}
.ls30{letter-spacing:9.378667pt;}
.ls29{letter-spacing:14.743893pt;}
.ls24{letter-spacing:41.410560pt;}
.ls19{letter-spacing:48.770507pt;}
.ls1b{letter-spacing:83.489280pt;}
.ls23{letter-spacing:87.082987pt;}
.ls1a{letter-spacing:108.395520pt;}
.lsb{letter-spacing:133.301760pt;}
.wsa{word-spacing:-16.012800pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.987200pt;}
.ws1{word-spacing:-15.072256pt;}
.wsd{word-spacing:-13.744512pt;}
.ws4{word-spacing:-13.686784pt;}
.ws2{word-spacing:-13.634304pt;}
.ws3{word-spacing:-13.545088pt;}
.ws12{word-spacing:-13.534592pt;}
.ws13{word-spacing:-13.529344pt;}
.ws10{word-spacing:-13.492608pt;}
.wsf{word-spacing:-13.461120pt;}
.ws11{word-spacing:-13.403392pt;}
.wse{word-spacing:-13.345664pt;}
.ws6{word-spacing:-10.876800pt;}
.ws0{word-spacing:-10.775424pt;}
.ws7{word-spacing:-10.703616pt;}
.ws5{word-spacing:-0.076800pt;}
.wsc{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
._14{margin-left:-4.217600pt;}
._11{margin-left:-3.168000pt;}
._a{margin-left:-1.952000pt;}
._1{margin-left:-1.056000pt;}
._6{width:0.929280pt;}
._3{width:2.662037pt;}
._0{width:3.674880pt;}
._8{width:4.679787pt;}
._2{width:5.998080pt;}
._16{width:6.919680pt;}
._4{width:7.814400pt;}
._5{width:8.935915pt;}
._12{width:9.877056pt;}
._7{width:10.892800pt;}
._b{width:12.521600pt;}
._17{width:13.596800pt;}
._10{width:15.104000pt;}
._20{width:16.183467pt;}
._c{width:17.241600pt;}
._19{width:18.294933pt;}
._d{width:19.270400pt;}
._1b{width:20.294400pt;}
._18{width:21.689600pt;}
._9{width:22.726400pt;}
._13{width:24.288000pt;}
._15{width:26.050720pt;}
._1c{width:32.537600pt;}
._1d{width:33.639680pt;}
._1a{width:40.057600pt;}
._1f{width:41.422080pt;}
._1e{width:42.351360pt;}
._e{width:849.962880pt;}
._f{width:1395.991680pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.240000pt;}
.yd{bottom:5.120000pt;}
.yf{bottom:6.720000pt;}
.y9{bottom:14.400000pt;}
.y1{bottom:15.987467pt;}
.ya9{bottom:22.720000pt;}
.yb1{bottom:22.720013pt;}
.yad{bottom:23.040000pt;}
.y8{bottom:26.880000pt;}
.y4{bottom:31.040000pt;}
.y34{bottom:33.584787pt;}
.yb{bottom:35.824787pt;}
.y7{bottom:39.040000pt;}
.y33{bottom:50.224787pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:63.680000pt;}
.y3{bottom:65.252253pt;}
.y9d{bottom:84.144787pt;}
.y77{bottom:94.384787pt;}
.ycc{bottom:102.704787pt;}
.y9c{bottom:105.584787pt;}
.yf1{bottom:111.344787pt;}
.y58{bottom:114.224787pt;}
.y76{bottom:115.824787pt;}
.yb0{bottom:117.412253pt;}
.ycb{bottom:123.824800pt;}
.y9b{bottom:126.704800pt;}
.yf0{bottom:128.944800pt;}
.y32{bottom:132.784800pt;}
.y57{bottom:135.344800pt;}
.y75{bottom:136.944800pt;}
.yca{bottom:144.944800pt;}
.yef{bottom:146.544800pt;}
.y9a{bottom:147.824800pt;}
.yaf{bottom:153.252267pt;}
.y31{bottom:153.904800pt;}
.y56{bottom:156.464800pt;}
.y74{bottom:158.064800pt;}
.yee{bottom:164.144800pt;}
.y99{bottom:168.944800pt;}
.y30{bottom:175.024800pt;}
.y8a{bottom:175.344800pt;}
.y55{bottom:177.584800pt;}
.y73{bottom:179.184800pt;}
.yed{bottom:182.064800pt;}
.yc9{bottom:184.624800pt;}
.yae{bottom:189.092267pt;}
.y2f{bottom:196.144800pt;}
.y89{bottom:196.464800pt;}
.y54{bottom:198.704800pt;}
.yec{bottom:199.664800pt;}
.y72{bottom:201.584800pt;}
.y98{bottom:208.624800pt;}
.y2e{bottom:217.264800pt;}
.y88{bottom:217.584800pt;}
.y71{bottom:222.704800pt;}
.yc8{bottom:224.624800pt;}
.yac{bottom:224.932267pt;}
.yeb{bottom:234.864800pt;}
.y2d{bottom:238.704800pt;}
.y70{bottom:243.824800pt;}
.yc7{bottom:245.744800pt;}
.y97{bottom:248.624800pt;}
.yea{bottom:252.464800pt;}
.y2c{bottom:259.824800pt;}
.yab{bottom:261.092267pt;}
.y6f{bottom:265.264800pt;}
.yc6{bottom:266.864800pt;}
.y96{bottom:269.744800pt;}
.ye9{bottom:270.064800pt;}
.y2b{bottom:280.944800pt;}
.y87{bottom:281.264800pt;}
.y6e{bottom:287.344800pt;}
.ye8{bottom:287.664800pt;}
.yc5{bottom:287.984800pt;}
.y95{bottom:290.864800pt;}
.yaa{bottom:296.932267pt;}
.y53{bottom:302.064800pt;}
.y86{bottom:302.384800pt;}
.ye7{bottom:305.264800pt;}
.y6d{bottom:308.464800pt;}
.yc4{bottom:309.104800pt;}
.y94{bottom:311.984800pt;}
.y2a{bottom:320.624800pt;}
.ye6{bottom:322.864800pt;}
.y52{bottom:323.184800pt;}
.y6c{bottom:329.584800pt;}
.yc3{bottom:330.544800pt;}
.ya8{bottom:332.772267pt;}
.y93{bottom:333.104800pt;}
.ye5{bottom:340.464800pt;}
.y85{bottom:342.064800pt;}
.y51{bottom:344.304800pt;}
.y6b{bottom:350.704800pt;}
.yc2{bottom:351.664800pt;}
.ye4{bottom:358.384800pt;}
.y29{bottom:360.624800pt;}
.y50{bottom:365.424800pt;}
.y6a{bottom:372.144800pt;}
.yc1{bottom:372.784800pt;}
.y92{bottom:373.104800pt;}
.ye3{bottom:375.984800pt;}
.ya7{bottom:377.904800pt;}
.y28{bottom:381.744800pt;}
.y84{bottom:382.064800pt;}
.y4f{bottom:386.544800pt;}
.ye2{bottom:393.584800pt;}
.yc0{bottom:393.904800pt;}
.y83{bottom:403.184800pt;}
.ye1{bottom:411.184800pt;}
.y69{bottom:412.784800pt;}
.ybf{bottom:415.024800pt;}
.ya6{bottom:417.584800pt;}
.y27{bottom:421.424800pt;}
.y82{bottom:424.304800pt;}
.y4e{bottom:426.544800pt;}
.ye0{bottom:428.784800pt;}
.y91{bottom:433.904800pt;}
.ybe{bottom:436.144800pt;}
.ya5{bottom:439.024800pt;}
.y26{bottom:442.544800pt;}
.y81{bottom:445.424800pt;}
.ydf{bottom:446.384800pt;}
.y68{bottom:452.784800pt;}
.y90{bottom:455.024800pt;}
.ybd{bottom:457.264800pt;}
.ya4{bottom:460.144800pt;}
.y25{bottom:463.984800pt;}
.y4d{bottom:466.224800pt;}
.y80{bottom:466.544800pt;}
.y67{bottom:473.904800pt;}
.y8f{bottom:476.464800pt;}
.ya3{bottom:481.264800pt;}
.yde{bottom:481.584800pt;}
.y24{bottom:485.104800pt;}
.y4c{bottom:487.664800pt;}
.y66{bottom:495.024800pt;}
.ybc{bottom:497.264800pt;}
.y8e{bottom:497.584800pt;}
.ydd{bottom:499.184800pt;}
.ya2{bottom:502.384800pt;}
.y23{bottom:506.224800pt;}
.y4b{bottom:508.784800pt;}
.y65{bottom:516.144800pt;}
.ydc{bottom:516.784800pt;}
.ybb{bottom:518.384800pt;}
.y8d{bottom:518.704800pt;}
.ya1{bottom:523.504800pt;}
.y22{bottom:527.344800pt;}
.y4a{bottom:529.904800pt;}
.ydb{bottom:534.704800pt;}
.yba{bottom:539.504800pt;}
.y8c{bottom:539.824800pt;}
.ya0{bottom:544.624800pt;}
.y21{bottom:548.464800pt;}
.y7f{bottom:548.784800pt;}
.y49{bottom:551.024800pt;}
.yda{bottom:552.304800pt;}
.y109{bottom:555.184800pt;}
.y64{bottom:555.824800pt;}
.yb9{bottom:560.624800pt;}
.y20{bottom:569.584800pt;}
.yd9{bottom:569.904800pt;}
.y48{bottom:572.144800pt;}
.y63{bottom:577.264800pt;}
.y8b{bottom:579.504800pt;}
.yb8{bottom:581.744800pt;}
.y9f{bottom:584.624800pt;}
.yd8{bottom:587.504800pt;}
.y7e{bottom:588.464800pt;}
.y1f{bottom:590.704800pt;}
.y47{bottom:593.264800pt;}
.y108{bottom:594.864800pt;}
.y62{bottom:598.384800pt;}
.yb7{bottom:602.864800pt;}
.yd7{bottom:605.104800pt;}
.y1e{bottom:611.824800pt;}
.y46{bottom:614.384800pt;}
.y61{bottom:619.504800pt;}
.y9e{bottom:620.784800pt;}
.yd6{bottom:622.704800pt;}
.yb6{bottom:623.984800pt;}
.y7d{bottom:624.944800pt;}
.y1d{bottom:633.264800pt;}
.y107{bottom:634.864800pt;}
.y45{bottom:635.504800pt;}
.yd5{bottom:640.304800pt;}
.y60{bottom:640.624800pt;}
.yb5{bottom:645.424800pt;}
.y106{bottom:652.784800pt;}
.y44{bottom:656.624800pt;}
.y5f{bottom:661.744800pt;}
.yb4{bottom:666.544800pt;}
.y105{bottom:668.144800pt;}
.y1c{bottom:670.704800pt;}
.y43{bottom:678.064800pt;}
.y5e{bottom:682.864800pt;}
.y104{bottom:683.504800pt;}
.y1b{bottom:690.224800pt;}
.y103{bottom:698.544800pt;}
.y42{bottom:699.184800pt;}
.y5d{bottom:703.984800pt;}
.y1a{bottom:704.304800pt;}
.yb3{bottom:706.224800pt;}
.y102{bottom:713.904800pt;}
.yd4{bottom:717.744800pt;}
.y19{bottom:718.384800pt;}
.y41{bottom:720.304800pt;}
.y5c{bottom:725.104800pt;}
.y101{bottom:729.264800pt;}
.y18{bottom:734.704800pt;}
.yd3{bottom:738.864800pt;}
.y40{bottom:741.424800pt;}
.yb2{bottom:742.704800pt;}
.y100{bottom:744.624800pt;}
.y17{bottom:755.824800pt;}
.yd2{bottom:759.984800pt;}
.y3f{bottom:762.544800pt;}
.y5b{bottom:765.104800pt;}
.y16{bottom:773.424800pt;}
.yff{bottom:775.344800pt;}
.yd1{bottom:781.104800pt;}
.y3e{bottom:783.664800pt;}
.y5a{bottom:786.224800pt;}
.yfe{bottom:790.704800pt;}
.y15{bottom:797.104800pt;}
.yd0{bottom:802.544800pt;}
.y3d{bottom:804.784800pt;}
.yfd{bottom:806.064800pt;}
.y59{bottom:807.344800pt;}
.y14{bottom:808.624800pt;}
.yfc{bottom:821.424800pt;}
.ycf{bottom:823.664800pt;}
.y3c{bottom:825.904800pt;}
.y13{bottom:832.304800pt;}
.yfb{bottom:836.784800pt;}
.yce{bottom:844.784800pt;}
.y3b{bottom:847.344800pt;}
.yfa{bottom:854.064800pt;}
.y12{bottom:863.664800pt;}
.ycd{bottom:865.904800pt;}
.y7c{bottom:868.464800pt;}
.yf9{bottom:871.664800pt;}
.y3a{bottom:887.024800pt;}
.yf8{bottom:889.264800pt;}
.y7b{bottom:889.584800pt;}
.yf7{bottom:906.864800pt;}
.y11{bottom:907.504800pt;}
.y39{bottom:908.144800pt;}
.y7a{bottom:910.704800pt;}
.yf6{bottom:924.464800pt;}
.y38{bottom:929.264800pt;}
.y79{bottom:931.824800pt;}
.yf5{bottom:942.064800pt;}
.y10{bottom:942.704800pt;}
.y37{bottom:950.384800pt;}
.y78{bottom:952.944800pt;}
.yf4{bottom:959.664800pt;}
.y36{bottom:971.504800pt;}
.yf3{bottom:977.264800pt;}
.y35{bottom:992.944800pt;}
.yf2{bottom:995.184800pt;}
.ye{bottom:1002.212267pt;}
.y2{bottom:1010.544800pt;}
.yc{bottom:1056.292267pt;}
.h7{height:17.600000pt;}
.h9{height:21.440000pt;}
.hd{height:24.013125pt;}
.h6{height:29.349375pt;}
.h5{height:30.360000pt;}
.h13{height:35.200000pt;}
.h15{height:35.520000pt;}
.h14{height:35.567500pt;}
.he{height:36.464375pt;}
.h8{height:37.720000pt;}
.h3{height:41.400000pt;}
.h11{height:43.375000pt;}
.ha{height:44.468750pt;}
.h12{height:46.000000pt;}
.hf{height:47.468750pt;}
.h10{height:51.583750pt;}
.hc{height:58.067500pt;}
.h4{height:73.600000pt;}
.hb{height:73.818125pt;}
.h2{height:1090.544800pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:22.080000pt;}
.wa{width:83.840000pt;}
.w3{width:152.320000pt;}
.w8{width:212.480000pt;}
.w7{width:323.840000pt;}
.w9{width:342.080000pt;}
.w6{width:378.240000pt;}
.w4{width:510.080000pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.040000pt;}
.x1d{left:8.080667pt;}
.x21{left:9.610640pt;}
.x2a{left:12.040000pt;}
.x19{left:13.527600pt;}
.x1{left:15.987467pt;}
.x27{left:19.984987pt;}
.x20{left:21.459600pt;}
.x1a{left:23.892133pt;}
.x1f{left:24.819867pt;}
.x2b{left:27.393840pt;}
.x26{left:29.820000pt;}
.x28{left:31.404267pt;}
.x24{left:32.325467pt;}
.x1b{left:34.050733pt;}
.x23{left:42.019493pt;}
.x15{left:43.669880pt;}
.x9{left:54.067467pt;}
.x7{left:57.280000pt;}
.x3{left:63.347467pt;}
.x1c{left:69.242800pt;}
.x14{left:78.067467pt;}
.xd{left:81.280000pt;}
.x25{left:85.085867pt;}
.xe{left:105.280000pt;}
.x17{left:109.695200pt;}
.x22{left:132.296133pt;}
.x1e{left:134.158133pt;}
.x29{left:140.622933pt;}
.x4{left:142.933600pt;}
.xc{left:153.280000pt;}
.xb{left:210.309867pt;}
.x5{left:216.307467pt;}
.x13{left:278.415467pt;}
.x12{left:281.759200pt;}
.x10{left:285.977867pt;}
.x16{left:291.187467pt;}
.x2d{left:319.298267pt;}
.x2{left:386.373067pt;}
.xa{left:432.307467pt;}
.x2c{left:580.986667pt;}
.x11{left:600.506533pt;}
.x18{left:633.907467pt;}
.xf{left:685.946667pt;}
.x8{left:700.467467pt;}
}




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