
    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_67a431192c9f77e8d3535085.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_faa5f1d4e01655a0f70500aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_4fbeed3278f399434fca7460.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e8ed90aef791f49a13766026.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.882324;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_9dd791f61f350ba4a6222c9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cff0a4531658cbe982d67dd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_96f28234ebf86e5204d6c1eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_c81e0269b4af1df4868a4ef7.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-71.999971px;}
.v1{vertical-align:-10.079996px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.021240px;}
.ls7{letter-spacing:0.082320px;}
.ls8{letter-spacing:0.375684px;}
.ls2{letter-spacing:0.388560px;}
.ls9{letter-spacing:18.847432px;}
.ls6{letter-spacing:19.567792px;}
.ls5{letter-spacing:53.501979px;}
.ls4{letter-spacing:78.484889px;}
.ls3{letter-spacing:113.983154px;}
.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;}
}
.ws0{word-spacing:-32.399987px;}
.ws3{word-spacing:-14.939994px;}
.ws4{word-spacing:-13.875678px;}
.ws1{word-spacing:-13.499995px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-4.212111px;}
._9{margin-left:-3.173318px;}
._2{margin-left:-2.142681px;}
._0{margin-left:-1.045782px;}
._1{width:1.172425px;}
._c{width:2.196848px;}
._3{width:3.219081px;}
._4{width:4.757337px;}
._6{width:5.805265px;}
._7{width:7.587909px;}
._5{width:8.661377px;}
._b{width:9.764154px;}
._a{width:10.973322px;}
._d{width:12.248251px;}
._8{width:20.413353px;}
._22{width:29.636623px;}
._21{width:30.916736px;}
._23{width:70.737973px;}
._11{width:90.571434px;}
._13{width:108.691519px;}
._12{width:200.862406px;}
._1a{width:241.490059px;}
._18{width:262.387695px;}
._1f{width:267.460813px;}
._10{width:302.868440px;}
._f{width:323.681517px;}
._1b{width:374.326974px;}
._15{width:400.392404px;}
._14{width:415.727050px;}
._17{width:428.141235px;}
._19{width:477.898719px;}
._1d{width:505.917698px;}
._1c{width:554.903778px;}
._e{width:737.888105px;}
._16{width:748.698901px;}
._1e{width:793.362283px;}
.fc2{color:rgb(46,46,46);}
.fc1{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.999986px;}
.fs2{font-size:38.879984px;}
.fs4{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs5{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.ye8{bottom:3.239030px;}
.yec{bottom:3.239036px;}
.yd5{bottom:3.239277px;}
.yda{bottom:3.239290px;}
.y7b{bottom:227.999909px;}
.y28{bottom:232.139907px;}
.yc2{bottom:233.939906px;}
.y97{bottom:236.459905px;}
.y10d{bottom:238.439905px;}
.ydc{bottom:238.799904px;}
.y51{bottom:240.059904px;}
.y7a{bottom:245.999902px;}
.y27{bottom:251.759899px;}
.yc1{bottom:251.939899px;}
.y96{bottom:254.459898px;}
.ye3{bottom:256.439897px;}
.y50{bottom:258.059897px;}
.ydb{bottom:258.779896px;}
.y11b{bottom:262.199895px;}
.y79{bottom:263.999894px;}
.yc0{bottom:269.939892px;}
.yd9{bottom:271.020600px;}
.y95{bottom:272.459891px;}
.yd8{bottom:274.259890px;}
.y10c{bottom:274.439890px;}
.y4f{bottom:276.059890px;}
.y11a{bottom:278.579889px;}
.y78{bottom:281.999887px;}
.y26{bottom:284.699886px;}
.ye2{bottom:287.759885px;}
.ybf{bottom:287.939885px;}
.yd7{bottom:289.739884px;}
.y94{bottom:290.459884px;}
.y10b{bottom:292.439883px;}
.y4e{bottom:294.059882px;}
.y119{bottom:294.959882px;}
.y77{bottom:299.999880px;}
.y25{bottom:301.259879px;}
.yd4{bottom:304.500600px;}
.yd6{bottom:305.219878px;}
.ybe{bottom:305.939878px;}
.yd3{bottom:307.739877px;}
.y93{bottom:308.459877px;}
.y10a{bottom:310.439876px;}
.y118{bottom:311.699875px;}
.y4d{bottom:312.059875px;}
.y24{bottom:317.819873px;}
.yd2{bottom:324.479870px;}
.y92{bottom:326.459869px;}
.y117{bottom:328.259869px;}
.y109{bottom:328.439869px;}
.y76{bottom:329.879868px;}
.y4c{bottom:330.059868px;}
.y23{bottom:334.199866px;}
.ybd{bottom:341.759863px;}
.y91{bottom:344.459862px;}
.y116{bottom:344.639862px;}
.y108{bottom:346.439861px;}
.y4b{bottom:348.059861px;}
.y22{bottom:350.759860px;}
.yd1{bottom:353.819858px;}
.y115{bottom:361.199856px;}
.y90{bottom:362.459855px;}
.y107{bottom:364.439854px;}
.y4a{bottom:366.059854px;}
.y75{bottom:366.419853px;}
.y21{bottom:367.319853px;}
.ybc{bottom:367.499853px;}
.y114{bottom:377.759849px;}
.y8f{bottom:380.459848px;}
.y106{bottom:382.439847px;}
.y20{bottom:383.699847px;}
.y49{bottom:384.059846px;}
.ybb{bottom:385.499846px;}
.yd0{bottom:388.559845px;}
.y113{bottom:394.139842px;}
.y8e{bottom:398.459841px;}
.y1f{bottom:400.259840px;}
.y105{bottom:400.439840px;}
.y48{bottom:402.059839px;}
.yba{bottom:403.499839px;}
.ycf{bottom:406.559837px;}
.y112{bottom:410.699836px;}
.y74{bottom:415.559834px;}
.y8d{bottom:416.459833px;}
.y1e{bottom:416.819833px;}
.y104{bottom:418.439833px;}
.y47{bottom:420.059832px;}
.yb9{bottom:421.499831px;}
.y111{bottom:426.179830px;}
.y1d{bottom:433.199827px;}
.y73{bottom:433.559827px;}
.yce{bottom:436.259825px;}
.y103{bottom:436.439825px;}
.y46{bottom:438.059825px;}
.yb8{bottom:439.499824px;}
.y110{bottom:441.659823px;}
.y1c{bottom:449.759820px;}
.y72{bottom:451.559819px;}
.y8c{bottom:452.099819px;}
.y102{bottom:454.439818px;}
.y45{bottom:456.059818px;}
.y10f{bottom:457.319817px;}
.yb7{bottom:457.499817px;}
.y1b{bottom:466.319813px;}
.y71{bottom:469.559812px;}
.y101{bottom:472.439811px;}
.y44{bottom:474.059810px;}
.yb6{bottom:475.499810px;}
.y8b{bottom:476.039810px;}
.ycd{bottom:481.799807px;}
.y1a{bottom:482.699807px;}
.y70{bottom:487.559805px;}
.y100{bottom:490.439804px;}
.y43{bottom:492.059803px;}
.y10e{bottom:492.419803px;}
.y139{bottom:492.959803px;}
.yb5{bottom:493.499803px;}
.y19{bottom:499.259800px;}
.ye1{bottom:502.499799px;}
.y6f{bottom:505.559798px;}
.yff{bottom:508.439797px;}
.y42{bottom:510.059796px;}
.yb4{bottom:511.499795px;}
.ye0{bottom:520.499792px;}
.y6e{bottom:523.559791px;}
.y138{bottom:524.459790px;}
.yfe{bottom:526.439789px;}
.y41{bottom:528.059789px;}
.yb3{bottom:529.499788px;}
.ycc{bottom:530.939788px;}
.y6d{bottom:541.559783px;}
.yfd{bottom:544.439782px;}
.y40{bottom:546.059782px;}
.yb2{bottom:547.499781px;}
.ycb{bottom:548.939780px;}
.y137{bottom:555.959778px;}
.ydf{bottom:556.319777px;}
.y6c{bottom:559.559776px;}
.y18{bottom:560.639776px;}
.yfc{bottom:562.439775px;}
.y3f{bottom:564.059774px;}
.yb1{bottom:565.499774px;}
.yca{bottom:566.939773px;}
.y6b{bottom:577.559769px;}
.yfb{bottom:580.439768px;}
.y3e{bottom:582.059767px;}
.yb0{bottom:583.499767px;}
.yde{bottom:584.399766px;}
.yc9{bottom:584.939766px;}
.y136{bottom:587.459765px;}
.y16{bottom:591.599763px;}
.y6a{bottom:595.559762px;}
.y17{bottom:596.099762px;}
.yfa{bottom:598.439761px;}
.y3d{bottom:600.059760px;}
.yaf{bottom:601.499759px;}
.yc8{bottom:602.939759px;}
.y69{bottom:613.559755px;}
.yf9{bottom:616.439753px;}
.y3c{bottom:618.059753px;}
.y135{bottom:618.959752px;}
.yae{bottom:619.499752px;}
.yc7{bottom:620.939752px;}
.y15{bottom:623.639751px;}
.y14{bottom:628.139749px;}
.y68{bottom:631.559747px;}
.y134{bottom:635.699746px;}
.y3b{bottom:636.059746px;}
.yad{bottom:637.499745px;}
.yc6{bottom:638.939744px;}
.y67{bottom:649.559740px;}
.y133{bottom:652.259739px;}
.yf8{bottom:652.439739px;}
.y3a{bottom:654.059738px;}
.y12{bottom:654.599738px;}
.yac{bottom:655.499738px;}
.yc5{bottom:656.939737px;}
.y13{bottom:659.099736px;}
.y66{bottom:667.559733px;}
.y132{bottom:668.639733px;}
.yf7{bottom:670.439732px;}
.y39{bottom:672.059731px;}
.yab{bottom:673.499731px;}
.y131{bottom:685.199726px;}
.y65{bottom:685.559726px;}
.y11{bottom:686.639725px;}
.yc4{bottom:686.819725px;}
.yf6{bottom:688.439725px;}
.y38{bottom:690.059724px;}
.y10{bottom:691.139724px;}
.yaa{bottom:691.499723px;}
.y8a{bottom:700.499720px;}
.y130{bottom:701.759719px;}
.y64{bottom:703.559719px;}
.yf5{bottom:706.439717px;}
.y37{bottom:708.059717px;}
.ya9{bottom:709.499716px;}
.yf{bottom:717.599713px;}
.y12f{bottom:718.139713px;}
.y89{bottom:718.499713px;}
.y63{bottom:721.559711px;}
.yf4{bottom:724.439710px;}
.y36{bottom:726.059710px;}
.ya8{bottom:727.499709px;}
.yc3{bottom:731.819707px;}
.y12e{bottom:734.699706px;}
.y88{bottom:736.499705px;}
.y62{bottom:739.559704px;}
.yf3{bottom:742.439703px;}
.y35{bottom:744.059702px;}
.ya7{bottom:745.499702px;}
.ye{bottom:749.639700px;}
.y12d{bottom:751.259699px;}
.yd{bottom:754.139698px;}
.y87{bottom:754.499698px;}
.y61{bottom:757.559697px;}
.y34{bottom:762.059695px;}
.ya6{bottom:763.499695px;}
.y12c{bottom:767.639693px;}
.y86{bottom:772.499691px;}
.y60{bottom:775.559690px;}
.yf2{bottom:778.979688px;}
.y33{bottom:780.059688px;}
.yc{bottom:780.599688px;}
.ya5{bottom:781.499687px;}
.y12b{bottom:784.199686px;}
.y85{bottom:790.499684px;}
.y5f{bottom:793.559683px;}
.yb{bottom:797.159681px;}
.y32{bottom:798.059681px;}
.ya4{bottom:799.499680px;}
.y12a{bottom:800.579680px;}
.y84{bottom:808.499677px;}
.y5e{bottom:811.559675px;}
.y129{bottom:816.059674px;}
.ya3{bottom:817.499673px;}
.y31{bottom:820.559672px;}
.y83{bottom:826.499669px;}
.yf1{bottom:827.939669px;}
.ya{bottom:829.019668px;}
.y5d{bottom:829.559668px;}
.y128{bottom:831.719667px;}
.ya2{bottom:835.499666px;}
.y30{bottom:838.559665px;}
.y82{bottom:844.499662px;}
.y127{bottom:847.199661px;}
.y5c{bottom:847.559661px;}
.yf0{bottom:847.919661px;}
.ya1{bottom:853.499659px;}
.y2f{bottom:856.559657px;}
.y9{bottom:860.519656px;}
.y81{bottom:862.499655px;}
.yef{bottom:863.399655px;}
.y126{bottom:863.759654px;}
.y8{bottom:865.019654px;}
.y5b{bottom:865.559654px;}
.ya0{bottom:871.499651px;}
.y2e{bottom:874.559650px;}
.yee{bottom:879.059648px;}
.y125{bottom:880.319648px;}
.y80{bottom:880.499648px;}
.y5a{bottom:883.559647px;}
.y9f{bottom:889.499644px;}
.ydd{bottom:892.379643px;}
.y6{bottom:892.559643px;}
.yed{bottom:895.259642px;}
.y124{bottom:896.699641px;}
.y7{bottom:897.779641px;}
.y7f{bottom:898.499641px;}
.y59{bottom:901.559639px;}
.y9e{bottom:907.499637px;}
.yeb{bottom:907.500600px;}
.y4{bottom:910.559636px;}
.yea{bottom:910.739636px;}
.y123{bottom:913.259635px;}
.y5{bottom:915.779634px;}
.y7e{bottom:916.499633px;}
.y58{bottom:919.559632px;}
.ye7{bottom:922.980600px;}
.y9d{bottom:925.499630px;}
.ye9{bottom:926.219630px;}
.ye6{bottom:928.739629px;}
.y122{bottom:929.819628px;}
.y2d{bottom:933.059627px;}
.y7d{bottom:934.499626px;}
.y57{bottom:937.559625px;}
.y9c{bottom:943.499623px;}
.ye5{bottom:945.479622px;}
.y121{bottom:946.199622px;}
.y2c{bottom:951.059620px;}
.y56{bottom:955.559618px;}
.y9b{bottom:961.499615px;}
.y120{bottom:962.759615px;}
.y7c{bottom:964.379614px;}
.y3{bottom:965.639614px;}
.y2b{bottom:969.059612px;}
.y55{bottom:973.559611px;}
.ye4{bottom:974.639610px;}
.y11f{bottom:979.319608px;}
.y9a{bottom:979.499608px;}
.y2a{bottom:987.059605px;}
.y54{bottom:991.559603px;}
.y2{bottom:992.639603px;}
.y11e{bottom:995.699602px;}
.y99{bottom:997.499601px;}
.y53{bottom:1009.559596px;}
.y11d{bottom:1012.259595px;}
.y1{bottom:1019.639592px;}
.y29{bottom:1022.339591px;}
.y98{bottom:1027.379589px;}
.y52{bottom:1027.559589px;}
.y11c{bottom:1028.819588px;}
.he{height:15.300000px;}
.h4{height:35.332017px;}
.h3{height:38.158578px;}
.hc{height:43.419358px;}
.h6{height:52.971658px;}
.h5{height:52.998026px;}
.h7{height:54.421853px;}
.hf{height:56.320290px;}
.h2{height:58.651148px;}
.hd{height:60.226851px;}
.hb{height:62.327788px;}
.h8{height:70.664034px;}
.ha{height:72.562471px;}
.h9{height:75.093720px;}
.h1{height:84.898091px;}
.h0{height:1263.000000px;}
.w1{width:1.800000px;}
.w3{width:5.220000px;}
.w2{width:5.400000px;}
.w4{width:6.120000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x26{left:187.019925px;}
.x1{left:190.259924px;}
.x3e{left:193.859922px;}
.x28{left:204.119913px;}
.x1d{left:205.379947px;}
.x32{left:212.579915px;}
.x33{left:213.841389px;}
.x2{left:216.719981px;}
.x3{left:223.740517px;}
.x2d{left:226.799909px;}
.x24{left:229.499763px;}
.x39{left:244.439906px;}
.x4{left:246.599901px;}
.x5{left:251.459899px;}
.x18{left:255.779898px;}
.x19{left:260.279896px;}
.x2e{left:264.960369px;}
.x25{left:267.839893px;}
.x2c{left:270.899892px;}
.x14{left:272.339891px;}
.x15{left:279.179888px;}
.x2a{left:283.680550px;}
.x38{left:298.079881px;}
.x35{left:299.339880px;}
.x27{left:302.759879px;}
.x1f{left:329.939532px;}
.x20{left:336.779865px;}
.x37{left:338.220034px;}
.x1b{left:340.379864px;}
.x1c{left:344.879862px;}
.x6{left:358.199857px;}
.x7{left:363.059855px;}
.x21{left:369.899913px;}
.xe{left:372.059089px;}
.x17{left:377.457504px;}
.x3c{left:386.459845px;}
.x16{left:390.598964px;}
.x1a{left:392.760988px;}
.x2f{left:411.300000px;}
.xf{left:423.899830px;}
.x10{left:428.759828px;}
.x8{left:442.259823px;}
.x23{left:446.399821px;}
.x9{left:449.639820px;}
.x30{left:457.019817px;}
.x3a{left:504.900000px;}
.x31{left:509.760000px;}
.x11{left:511.919795px;}
.x12{left:516.779793px;}
.x13{left:520.559792px;}
.x22{left:522.899791px;}
.xa{left:523.979790px;}
.xb{left:531.359787px;}
.x29{left:551.699779px;}
.x3d{left:582.299767px;}
.x36{left:589.679764px;}
.x3b{left:590.939764px;}
.xc{left:627.119749px;}
.x2b{left:628.199749px;}
.xd{left:634.499746px;}
.x1e{left:687.239725px;}
.x34{left:732.601967px;}
@media print{
.v2{vertical-align:-63.999974pt;}
.v1{vertical-align:-8.959996pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018880pt;}
.ls7{letter-spacing:0.073173pt;}
.ls8{letter-spacing:0.333941pt;}
.ls2{letter-spacing:0.345387pt;}
.ls9{letter-spacing:16.753273pt;}
.ls6{letter-spacing:17.393593pt;}
.ls5{letter-spacing:47.557314pt;}
.ls4{letter-spacing:69.764345pt;}
.ls3{letter-spacing:101.318359pt;}
.ws0{word-spacing:-28.799988pt;}
.ws3{word-spacing:-13.279995pt;}
.ws4{word-spacing:-12.333936pt;}
.ws1{word-spacing:-11.999995pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-3.744099pt;}
._9{margin-left:-2.820727pt;}
._2{margin-left:-1.904606pt;}
._0{margin-left:-0.929584pt;}
._1{width:1.042156pt;}
._c{width:1.952754pt;}
._3{width:2.861405pt;}
._4{width:4.228744pt;}
._6{width:5.160235pt;}
._7{width:6.744808pt;}
._5{width:7.699002pt;}
._b{width:8.679248pt;}
._a{width:9.754064pt;}
._d{width:10.887334pt;}
._8{width:18.145203pt;}
._22{width:26.343665pt;}
._21{width:27.481543pt;}
._23{width:62.878198pt;}
._11{width:80.507941pt;}
._13{width:96.614684pt;}
._12{width:178.544361pt;}
._1a{width:214.657830pt;}
._18{width:233.233507pt;}
._1f{width:237.742945pt;}
._10{width:269.216391pt;}
._f{width:287.716904pt;}
._1b{width:332.735088pt;}
._15{width:355.904359pt;}
._14{width:369.535156pt;}
._17{width:380.569987pt;}
._19{width:424.798861pt;}
._1d{width:449.704620pt;}
._1c{width:493.247803pt;}
._e{width:655.900538pt;}
._16{width:665.510134pt;}
._1e{width:705.210918pt;}
.fs3{font-size:31.999987pt;}
.fs2{font-size:34.559986pt;}
.fs4{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs5{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.879137pt;}
.yec{bottom:2.879143pt;}
.yd5{bottom:2.879357pt;}
.yda{bottom:2.879369pt;}
.y7b{bottom:202.666586pt;}
.y28{bottom:206.346584pt;}
.yc2{bottom:207.946583pt;}
.y97{bottom:210.186583pt;}
.y10d{bottom:211.946582pt;}
.ydc{bottom:212.266582pt;}
.y51{bottom:213.386581pt;}
.y7a{bottom:218.666579pt;}
.y27{bottom:223.786577pt;}
.yc1{bottom:223.946577pt;}
.y96{bottom:226.186576pt;}
.ye3{bottom:227.946575pt;}
.y50{bottom:229.386575pt;}
.ydb{bottom:230.026575pt;}
.y11b{bottom:233.066573pt;}
.y79{bottom:234.666573pt;}
.yc0{bottom:239.946571pt;}
.yd9{bottom:240.907200pt;}
.y95{bottom:242.186570pt;}
.yd8{bottom:243.786569pt;}
.y10c{bottom:243.946569pt;}
.y4f{bottom:245.386569pt;}
.y11a{bottom:247.626568pt;}
.y78{bottom:250.666566pt;}
.y26{bottom:253.066565pt;}
.ye2{bottom:255.786564pt;}
.ybf{bottom:255.946564pt;}
.yd7{bottom:257.546564pt;}
.y94{bottom:258.186563pt;}
.y10b{bottom:259.946563pt;}
.y4e{bottom:261.386562pt;}
.y119{bottom:262.186562pt;}
.y77{bottom:266.666560pt;}
.y25{bottom:267.786560pt;}
.yd4{bottom:270.667200pt;}
.yd6{bottom:271.306558pt;}
.ybe{bottom:271.946558pt;}
.yd3{bottom:273.546557pt;}
.y93{bottom:274.186557pt;}
.y10a{bottom:275.946556pt;}
.y118{bottom:277.066556pt;}
.y4d{bottom:277.386556pt;}
.y24{bottom:282.506554pt;}
.yd2{bottom:288.426551pt;}
.y92{bottom:290.186551pt;}
.y117{bottom:291.786550pt;}
.y109{bottom:291.946550pt;}
.y76{bottom:293.226549pt;}
.y4c{bottom:293.386549pt;}
.y23{bottom:297.066548pt;}
.ybd{bottom:303.786545pt;}
.y91{bottom:306.186544pt;}
.y116{bottom:306.346544pt;}
.y108{bottom:307.946543pt;}
.y4b{bottom:309.386543pt;}
.y22{bottom:311.786542pt;}
.yd1{bottom:314.506541pt;}
.y115{bottom:321.066538pt;}
.y90{bottom:322.186538pt;}
.y107{bottom:323.946537pt;}
.y4a{bottom:325.386537pt;}
.y75{bottom:325.706536pt;}
.y21{bottom:326.506536pt;}
.ybc{bottom:326.666536pt;}
.y114{bottom:335.786532pt;}
.y8f{bottom:338.186531pt;}
.y106{bottom:339.946531pt;}
.y20{bottom:341.066530pt;}
.y49{bottom:341.386530pt;}
.ybb{bottom:342.666530pt;}
.yd0{bottom:345.386529pt;}
.y113{bottom:350.346527pt;}
.y8e{bottom:354.186525pt;}
.y1f{bottom:355.786524pt;}
.y105{bottom:355.946524pt;}
.y48{bottom:357.386524pt;}
.yba{bottom:358.666523pt;}
.ycf{bottom:361.386522pt;}
.y112{bottom:365.066521pt;}
.y74{bottom:369.386519pt;}
.y8d{bottom:370.186519pt;}
.y1e{bottom:370.506518pt;}
.y104{bottom:371.946518pt;}
.y47{bottom:373.386517pt;}
.yb9{bottom:374.666517pt;}
.y111{bottom:378.826515pt;}
.y1d{bottom:385.066513pt;}
.y73{bottom:385.386513pt;}
.yce{bottom:387.786512pt;}
.y103{bottom:387.946511pt;}
.y46{bottom:389.386511pt;}
.yb8{bottom:390.666510pt;}
.y110{bottom:392.586510pt;}
.y1c{bottom:399.786507pt;}
.y72{bottom:401.386506pt;}
.y8c{bottom:401.866506pt;}
.y102{bottom:403.946505pt;}
.y45{bottom:405.386505pt;}
.y10f{bottom:406.506504pt;}
.yb7{bottom:406.666504pt;}
.y1b{bottom:414.506501pt;}
.y71{bottom:417.386500pt;}
.y101{bottom:419.946499pt;}
.y44{bottom:421.386498pt;}
.yb6{bottom:422.666498pt;}
.y8b{bottom:423.146497pt;}
.ycd{bottom:428.266495pt;}
.y1a{bottom:429.066495pt;}
.y70{bottom:433.386493pt;}
.y100{bottom:435.946492pt;}
.y43{bottom:437.386492pt;}
.y10e{bottom:437.706492pt;}
.y139{bottom:438.186491pt;}
.yb5{bottom:438.666491pt;}
.y19{bottom:443.786489pt;}
.ye1{bottom:446.666488pt;}
.y6f{bottom:449.386487pt;}
.yff{bottom:451.946486pt;}
.y42{bottom:453.386485pt;}
.yb4{bottom:454.666485pt;}
.ye0{bottom:462.666482pt;}
.y6e{bottom:465.386481pt;}
.y138{bottom:466.186480pt;}
.yfe{bottom:467.946479pt;}
.y41{bottom:469.386479pt;}
.yb3{bottom:470.666478pt;}
.ycc{bottom:471.946478pt;}
.y6d{bottom:481.386474pt;}
.yfd{bottom:483.946473pt;}
.y40{bottom:485.386473pt;}
.yb2{bottom:486.666472pt;}
.ycb{bottom:487.946471pt;}
.y137{bottom:494.186469pt;}
.ydf{bottom:494.506469pt;}
.y6c{bottom:497.386468pt;}
.y18{bottom:498.346467pt;}
.yfc{bottom:499.946467pt;}
.y3f{bottom:501.386466pt;}
.yb1{bottom:502.666466pt;}
.yca{bottom:503.946465pt;}
.y6b{bottom:513.386461pt;}
.yfb{bottom:515.946460pt;}
.y3e{bottom:517.386460pt;}
.yb0{bottom:518.666459pt;}
.yde{bottom:519.466459pt;}
.yc9{bottom:519.946459pt;}
.y136{bottom:522.186458pt;}
.y16{bottom:525.866456pt;}
.y6a{bottom:529.386455pt;}
.y17{bottom:529.866455pt;}
.yfa{bottom:531.946454pt;}
.y3d{bottom:533.386453pt;}
.yaf{bottom:534.666453pt;}
.yc8{bottom:535.946452pt;}
.y69{bottom:545.386449pt;}
.yf9{bottom:547.946447pt;}
.y3c{bottom:549.386447pt;}
.y135{bottom:550.186447pt;}
.yae{bottom:550.666446pt;}
.yc7{bottom:551.946446pt;}
.y15{bottom:554.346445pt;}
.y14{bottom:558.346443pt;}
.y68{bottom:561.386442pt;}
.y134{bottom:565.066441pt;}
.y3b{bottom:565.386441pt;}
.yad{bottom:566.666440pt;}
.yc6{bottom:567.946439pt;}
.y67{bottom:577.386436pt;}
.y133{bottom:579.786435pt;}
.yf8{bottom:579.946435pt;}
.y3a{bottom:581.386434pt;}
.y12{bottom:581.866434pt;}
.yac{bottom:582.666434pt;}
.yc5{bottom:583.946433pt;}
.y13{bottom:585.866432pt;}
.y66{bottom:593.386429pt;}
.y132{bottom:594.346429pt;}
.yf7{bottom:595.946428pt;}
.y39{bottom:597.386428pt;}
.yab{bottom:598.666427pt;}
.y131{bottom:609.066423pt;}
.y65{bottom:609.386423pt;}
.y11{bottom:610.346423pt;}
.yc4{bottom:610.506422pt;}
.yf6{bottom:611.946422pt;}
.y38{bottom:613.386421pt;}
.y10{bottom:614.346421pt;}
.yaa{bottom:614.666421pt;}
.y8a{bottom:622.666418pt;}
.y130{bottom:623.786417pt;}
.y64{bottom:625.386417pt;}
.yf5{bottom:627.946415pt;}
.y37{bottom:629.386415pt;}
.ya9{bottom:630.666414pt;}
.yf{bottom:637.866412pt;}
.y12f{bottom:638.346411pt;}
.y89{bottom:638.666411pt;}
.y63{bottom:641.386410pt;}
.yf4{bottom:643.946409pt;}
.y36{bottom:645.386409pt;}
.ya8{bottom:646.666408pt;}
.yc3{bottom:650.506406pt;}
.y12e{bottom:653.066405pt;}
.y88{bottom:654.666405pt;}
.y62{bottom:657.386404pt;}
.yf3{bottom:659.946403pt;}
.y35{bottom:661.386402pt;}
.ya7{bottom:662.666402pt;}
.ye{bottom:666.346400pt;}
.y12d{bottom:667.786400pt;}
.yd{bottom:670.346399pt;}
.y87{bottom:670.666398pt;}
.y61{bottom:673.386397pt;}
.y34{bottom:677.386396pt;}
.ya6{bottom:678.666395pt;}
.y12c{bottom:682.346394pt;}
.y86{bottom:686.666392pt;}
.y60{bottom:689.386391pt;}
.yf2{bottom:692.426390pt;}
.y33{bottom:693.386389pt;}
.yc{bottom:693.866389pt;}
.ya5{bottom:694.666389pt;}
.y12b{bottom:697.066388pt;}
.y85{bottom:702.666386pt;}
.y5f{bottom:705.386385pt;}
.yb{bottom:708.586383pt;}
.y32{bottom:709.386383pt;}
.ya4{bottom:710.666382pt;}
.y12a{bottom:711.626382pt;}
.y84{bottom:718.666379pt;}
.y5e{bottom:721.386378pt;}
.y129{bottom:725.386377pt;}
.ya3{bottom:726.666376pt;}
.y31{bottom:729.386375pt;}
.y83{bottom:734.666373pt;}
.yf1{bottom:735.946372pt;}
.ya{bottom:736.906372pt;}
.y5d{bottom:737.386372pt;}
.y128{bottom:739.306371pt;}
.ya2{bottom:742.666370pt;}
.y30{bottom:745.386369pt;}
.y82{bottom:750.666366pt;}
.y127{bottom:753.066365pt;}
.y5c{bottom:753.386365pt;}
.yf0{bottom:753.706365pt;}
.ya1{bottom:758.666363pt;}
.y2f{bottom:761.386362pt;}
.y9{bottom:764.906361pt;}
.y81{bottom:766.666360pt;}
.yef{bottom:767.466360pt;}
.y126{bottom:767.786360pt;}
.y8{bottom:768.906359pt;}
.y5b{bottom:769.386359pt;}
.ya0{bottom:774.666357pt;}
.y2e{bottom:777.386356pt;}
.yee{bottom:781.386354pt;}
.y125{bottom:782.506354pt;}
.y80{bottom:782.666354pt;}
.y5a{bottom:785.386353pt;}
.y9f{bottom:790.666350pt;}
.ydd{bottom:793.226349pt;}
.y6{bottom:793.386349pt;}
.yed{bottom:795.786348pt;}
.y124{bottom:797.066348pt;}
.y7{bottom:798.026347pt;}
.y7f{bottom:798.666347pt;}
.y59{bottom:801.386346pt;}
.y9e{bottom:806.666344pt;}
.yeb{bottom:806.667200pt;}
.y4{bottom:809.386343pt;}
.yea{bottom:809.546343pt;}
.y123{bottom:811.786342pt;}
.y5{bottom:814.026341pt;}
.y7e{bottom:814.666341pt;}
.y58{bottom:817.386340pt;}
.ye7{bottom:820.427200pt;}
.y9d{bottom:822.666338pt;}
.ye9{bottom:823.306337pt;}
.ye6{bottom:825.546336pt;}
.y122{bottom:826.506336pt;}
.y2d{bottom:829.386335pt;}
.y7d{bottom:830.666334pt;}
.y57{bottom:833.386333pt;}
.y9c{bottom:838.666331pt;}
.ye5{bottom:840.426330pt;}
.y121{bottom:841.066330pt;}
.y2c{bottom:845.386329pt;}
.y56{bottom:849.386327pt;}
.y9b{bottom:854.666325pt;}
.y120{bottom:855.786324pt;}
.y7c{bottom:857.226324pt;}
.y3{bottom:858.346323pt;}
.y2b{bottom:861.386322pt;}
.y55{bottom:865.386321pt;}
.ye4{bottom:866.346320pt;}
.y11f{bottom:870.506318pt;}
.y9a{bottom:870.666318pt;}
.y2a{bottom:877.386316pt;}
.y54{bottom:881.386314pt;}
.y2{bottom:882.346314pt;}
.y11e{bottom:885.066313pt;}
.y99{bottom:886.666312pt;}
.y53{bottom:897.386308pt;}
.y11d{bottom:899.786307pt;}
.y1{bottom:906.346304pt;}
.y29{bottom:908.746303pt;}
.y98{bottom:913.226301pt;}
.y52{bottom:913.386301pt;}
.y11c{bottom:914.506301pt;}
.he{height:13.600000pt;}
.h4{height:31.406237pt;}
.h3{height:33.918736pt;}
.hc{height:38.594985pt;}
.h6{height:47.085919pt;}
.h5{height:47.109356pt;}
.h7{height:48.374981pt;}
.hf{height:50.062480pt;}
.h2{height:52.134354pt;}
.hd{height:53.534979pt;}
.hb{height:55.402478pt;}
.h8{height:62.812475pt;}
.ha{height:64.499974pt;}
.h9{height:66.749973pt;}
.h1{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w1{width:1.600000pt;}
.w3{width:4.640000pt;}
.w2{width:4.800000pt;}
.w4{width:5.440000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x26{left:166.239934pt;}
.x1{left:169.119932pt;}
.x3e{left:172.319931pt;}
.x28{left:181.439922pt;}
.x1d{left:182.559953pt;}
.x32{left:188.959924pt;}
.x33{left:190.081235pt;}
.x2{left:192.639983pt;}
.x3{left:198.880459pt;}
.x2d{left:201.599919pt;}
.x24{left:203.999790pt;}
.x39{left:217.279916pt;}
.x4{left:219.199912pt;}
.x5{left:223.519911pt;}
.x18{left:227.359909pt;}
.x19{left:231.359907pt;}
.x2e{left:235.520328pt;}
.x25{left:238.079905pt;}
.x2c{left:240.799904pt;}
.x14{left:242.079903pt;}
.x15{left:248.159901pt;}
.x2a{left:252.160489pt;}
.x38{left:264.959894pt;}
.x35{left:266.079894pt;}
.x27{left:269.119892pt;}
.x1f{left:293.279584pt;}
.x20{left:299.359880pt;}
.x37{left:300.640030pt;}
.x1b{left:302.559879pt;}
.x1c{left:306.559877pt;}
.x6{left:318.399873pt;}
.x7{left:322.719871pt;}
.x21{left:328.799923pt;}
.xe{left:330.719190pt;}
.x17{left:335.517781pt;}
.x3c{left:343.519863pt;}
.x16{left:347.199079pt;}
.x1a{left:349.120878pt;}
.x2f{left:365.600000pt;}
.xf{left:376.799849pt;}
.x10{left:381.119848pt;}
.x8{left:393.119843pt;}
.x23{left:396.799841pt;}
.x9{left:399.679840pt;}
.x30{left:406.239838pt;}
.x3a{left:448.800000pt;}
.x31{left:453.120000pt;}
.x11{left:455.039818pt;}
.x12{left:459.359816pt;}
.x13{left:462.719815pt;}
.x22{left:464.799814pt;}
.xa{left:465.759814pt;}
.xb{left:472.319811pt;}
.x29{left:490.399804pt;}
.x3d{left:517.599793pt;}
.x36{left:524.159790pt;}
.x3b{left:525.279790pt;}
.xc{left:557.439777pt;}
.x2b{left:558.399777pt;}
.xd{left:563.999774pt;}
.x1e{left:610.879756pt;}
.x34{left:651.201749pt;}
}




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