
    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_5e96a305bf8e0f4ce6bfb683.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851562;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_d33dcc792177db398c293810.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_9772d595f9f9303eb500763c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_7b8eac02f5a0b29317fa6efd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2baad0d0c76b8518cc2e883c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.054688;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_ccfc5bbff29f03e2236d9147.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_bc3619365d14e6e0324fb4bd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63809820904fb6e2839cdf8d.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_a2c2c1cccee38dbbb085f228.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_25945d8455607353c53e2352.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.v3{vertical-align:-60.480000px;}
.v2{vertical-align:-24.480120px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480120px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144001px;}
.ls9{letter-spacing:0.230400px;}
.ls4{letter-spacing:0.616320px;}
.ls5{letter-spacing:0.719941px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.079940px;}
.ls2{letter-spacing:6.036482px;}
.ls7{letter-spacing:6.480000px;}
.ls8{letter-spacing:7.920001px;}
.lsa{letter-spacing:161.999983px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-20.879999px;}
.ws5{word-spacing:-20.015999px;}
.ws9{word-spacing:-16.199999px;}
.ws3{word-spacing:-14.811839px;}
.ws2{word-spacing:-12.486239px;}
.ws8{word-spacing:-11.880000px;}
.ws4{word-spacing:-10.008000px;}
.ws1{word-spacing:-0.054920px;}
.ws0{word-spacing:-0.053280px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-5.562646px;}
._7{margin-left:-3.957020px;}
._3{margin-left:-2.142749px;}
._2{margin-left:-1.087105px;}
._0{width:1.059840px;}
._1{width:2.691358px;}
._8{width:3.706526px;}
._9{width:5.284874px;}
._5{width:6.327360px;}
._4{width:7.513920px;}
._6{width:8.732160px;}
._13{width:10.068598px;}
._b{width:11.129487px;}
._a{width:12.140698px;}
._1d{width:13.261390px;}
._14{width:14.296692px;}
._15{width:15.413759px;}
._1e{width:17.278124px;}
._1f{width:18.402328px;}
._1a{width:20.047613px;}
._18{width:21.460057px;}
._17{width:22.973846px;}
._16{width:24.420992px;}
._1b{width:25.580241px;}
._12{width:27.234624px;}
._c{width:28.640217px;}
._d{width:30.258606px;}
._1c{width:31.399322px;}
._11{width:32.437266px;}
._e{width:34.031606px;}
._f{width:35.251199px;}
._10{width:36.992183px;}
._21{width:57.032638px;}
._20{width:58.687198px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:11.520000px;}
.fs9{font-size:35.999999px;}
.fs2{font-size:41.759998px;}
.fs5{font-size:47.519998px;}
.fs0{font-size:53.279998px;}
.fs1{font-size:54.919765px;}
.fsb{font-size:59.039998px;}
.fsc{font-size:60.857036px;}
.fs7{font-size:64.799997px;}
.fsa{font-size:66.794308px;}
.fs3{font-size:71.999997px;}
.fs6{font-size:77.759997px;}
.fs8{font-size:83.519997px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.240000px;}
.y6{bottom:19.800001px;}
.y1{bottom:61.680056px;}
.yf4{bottom:63.720000px;}
.y52{bottom:64.079995px;}
.yf3{bottom:78.840001px;}
.y8b{bottom:79.199998px;}
.yc6{bottom:88.559989px;}
.yf2{bottom:93.959989px;}
.y8a{bottom:94.320004px;}
.y51{bottom:103.320004px;}
.yc5{bottom:103.680004px;}
.yf1{bottom:109.079989px;}
.y89{bottom:109.439989px;}
.y50{bottom:123.840004px;}
.y88{bottom:124.200005px;}
.yc4{bottom:127.800004px;}
.y87{bottom:139.319989px;}
.y113{bottom:140.760005px;}
.yc3{bottom:142.920005px;}
.y4f{bottom:145.800005px;}
.y86{bottom:154.439990px;}
.yc2{bottom:158.040005px;}
.y112{bottom:161.279989px;}
.yf0{bottom:164.159990px;}
.yc1{bottom:173.159990px;}
.y4e{bottom:174.599990px;}
.y85{bottom:179.640005px;}
.y111{bottom:180.359990px;}
.yc0{bottom:188.279989px;}
.yef{bottom:191.519990px;}
.y84{bottom:198.720004px;}
.y110{bottom:199.439989px;}
.y4d{bottom:201.599990px;}
.ybf{bottom:203.399990px;}
.yee{bottom:215.640005px;}
.y10f{bottom:218.159990px;}
.ybe{bottom:218.519990px;}
.y4c{bottom:219.599990px;}
.y83{bottom:226.079989px;}
.yed{bottom:230.760005px;}
.y10e{bottom:237.239990px;}
.y4b{bottom:237.599990px;}
.ybd{bottom:242.640005px;}
.yec{bottom:245.880005px;}
.y82{bottom:250.199990px;}
.y4a{bottom:255.599990px;}
.ybc{bottom:257.760005px;}
.y81{bottom:265.319990px;}
.yeb{bottom:269.999989px;}
.ybb{bottom:272.880005px;}
.y49{bottom:273.599989px;}
.y80{bottom:280.439990px;}
.yea{bottom:285.119989px;}
.yba{bottom:287.999989px;}
.y48{bottom:291.599989px;}
.y10d{bottom:295.559990px;}
.ye9{bottom:300.239989px;}
.y7f{bottom:304.559990px;}
.y47{bottom:309.599989px;}
.y10c{bottom:310.680004px;}
.yb9{bottom:312.119989px;}
.ye8{bottom:315.359989px;}
.y7e{bottom:319.680004px;}
.y10b{bottom:325.800005px;}
.yb8{bottom:327.239989px;}
.y46{bottom:327.599975px;}
.ye7{bottom:330.479989px;}
.yb7{bottom:342.360020px;}
.y7d{bottom:343.800005px;}
.ye6{bottom:345.239989px;}
.y45{bottom:345.599975px;}
.y10a{bottom:349.919974px;}
.yb6{bottom:357.120005px;}
.y7c{bottom:358.919974px;}
.y109{bottom:365.040005px;}
.ye5{bottom:369.360020px;}
.y44{bottom:373.679975px;}
.y108{bottom:380.159989px;}
.yb5{bottom:382.319990px;}
.y7b{bottom:383.040005px;}
.ye4{bottom:393.479989px;}
.y7a{bottom:398.159989px;}
.y43{bottom:401.040005px;}
.yb4{bottom:401.399989px;}
.y107{bottom:403.919974px;}
.y79{bottom:412.919974px;}
.y2d{bottom:415.439974px;}
.ye3{bottom:417.960004px;}
.y78{bottom:428.040005px;}
.yb3{bottom:428.759974px;}
.y2c{bottom:430.559990px;}
.y42{bottom:432.720005px;}
.ye2{bottom:441.359975px;}
.y77{bottom:443.159989px;}
.y2b{bottom:445.319990px;}
.y106{bottom:452.159989px;}
.yb2{bottom:452.880005px;}
.y41{bottom:453.599975px;}
.y76{bottom:458.280020px;}
.y2a{bottom:460.439975px;}
.ye1{bottom:464.759974px;}
.y105{bottom:467.280020px;}
.yb1{bottom:467.999989px;}
.y75{bottom:473.399989px;}
.y40{bottom:474.839975px;}
.y29{bottom:475.559990px;}
.yb0{bottom:483.120005px;}
.ye0{bottom:488.159989px;}
.y28{bottom:490.319990px;}
.y104{bottom:491.399989px;}
.y3f{bottom:495.720005px;}
.y74{bottom:497.519974px;}
.y27{bottom:505.439975px;}
.yaf{bottom:507.239989px;}
.ydf{bottom:512.279960px;}
.y73{bottom:512.640005px;}
.y103{bottom:515.519974px;}
.y26{bottom:520.559990px;}
.yae{bottom:522.359975px;}
.y3e{bottom:525.960004px;}
.y72{bottom:527.759974px;}
.y25{bottom:535.319990px;}
.yde{bottom:535.679975px;}
.yad{bottom:537.479989px;}
.y102{bottom:539.640005px;}
.y71{bottom:542.880005px;}
.y3d{bottom:549.720005px;}
.y24{bottom:550.439975px;}
.y70{bottom:557.999989px;}
.ydd{bottom:559.079990px;}
.yac{bottom:561.599975px;}
.y101{bottom:563.759974px;}
.y23{bottom:565.559990px;}
.y3c{bottom:567.720005px;}
.y6f{bottom:573.120005px;}
.yab{bottom:576.720005px;}
.y100{bottom:578.880005px;}
.y22{bottom:580.319990px;}
.ydc{bottom:582.479989px;}
.y3b{bottom:585.720005px;}
.y6e{bottom:588.239989px;}
.yaa{bottom:591.839975px;}
.y21{bottom:595.439975px;}
.yff{bottom:602.999989px;}
.y6d{bottom:603.359975px;}
.y3a{bottom:603.720005px;}
.ya9{bottom:606.960004px;}
.ydb{bottom:610.199959px;}
.y20{bottom:610.559990px;}
.yfe{bottom:618.120005px;}
.y39{bottom:621.720005px;}
.y1f{bottom:625.319990px;}
.y6c{bottom:627.479989px;}
.ya8{bottom:636.839975px;}
.y38{bottom:639.720005px;}
.y1e{bottom:640.439975px;}
.yda{bottom:641.519974px;}
.yfd{bottom:642.239989px;}
.y6b{bottom:642.599975px;}
.ya7{bottom:651.960004px;}
.y1d{bottom:655.559990px;}
.yfc{bottom:657.359975px;}
.y37{bottom:657.720005px;}
.yd9{bottom:664.199959px;}
.y1c{bottom:670.319990px;}
.y6a{bottom:672.479989px;}
.y36{bottom:675.720005px;}
.ya6{bottom:676.079990px;}
.y1b{bottom:685.439975px;}
.yd8{bottom:688.319990px;}
.ya5{bottom:691.199959px;}
.y35{bottom:693.720005px;}
.y69{bottom:696.599975px;}
.y1a{bottom:700.559990px;}
.ya4{bottom:706.319945px;}
.y34{bottom:711.720005px;}
.yd7{bottom:712.439975px;}
.y19{bottom:715.319945px;}
.yfb{bottom:720.720005px;}
.ya3{bottom:721.439975px;}
.y68{bottom:726.840020px;}
.yd6{bottom:727.559990px;}
.y33{bottom:729.720005px;}
.y18{bottom:730.439975px;}
.yfa{bottom:735.479944px;}
.ya2{bottom:736.559990px;}
.y67{bottom:741.959959px;}
.yd5{bottom:742.680020px;}
.y17{bottom:747.000034px;}
.y32{bottom:747.720005px;}
.yf9{bottom:750.599974px;}
.ya1{bottom:751.680020px;}
.y66{bottom:757.079990px;}
.yd4{bottom:757.799959px;}
.y31{bottom:765.720005px;}
.ya0{bottom:766.799959px;}
.y16{bottom:769.680020px;}
.y65{bottom:772.200004px;}
.yf8{bottom:774.720005px;}
.yd3{bottom:781.919974px;}
.y30{bottom:783.720005px;}
.y15{bottom:784.799959px;}
.y64{bottom:787.319945px;}
.yf7{bottom:789.840020px;}
.y9f{bottom:790.919974px;}
.yd2{bottom:797.040005px;}
.y14{bottom:799.559990px;}
.y2f{bottom:801.720005px;}
.y9e{bottom:806.040005px;}
.y63{bottom:811.439975px;}
.yd1{bottom:812.159944px;}
.yf6{bottom:813.959959px;}
.y13{bottom:814.680020px;}
.y9d{bottom:821.159944px;}
.y62{bottom:826.559990px;}
.yd0{bottom:827.279959px;}
.yf5{bottom:829.079990px;}
.y2e{bottom:829.439975px;}
.y12{bottom:829.799959px;}
.y9c{bottom:836.279959px;}
.y61{bottom:841.680020px;}
.ycf{bottom:842.399990px;}
.y9b{bottom:851.399990px;}
.y11{bottom:854.279959px;}
.yce{bottom:857.520019px;}
.y60{bottom:865.799959px;}
.y9a{bottom:866.520019px;}
.y10{bottom:878.759974px;}
.y5f{bottom:880.919974px;}
.y99{bottom:881.279959px;}
.y5e{bottom:896.040005px;}
.ycd{bottom:896.399990px;}
.y98{bottom:905.399990px;}
.yf{bottom:908.639944px;}
.ycc{bottom:911.520019px;}
.y5d{bottom:920.159944px;}
.y97{bottom:920.520019px;}
.ycb{bottom:926.639944px;}
.y5c{bottom:935.279959px;}
.y96{bottom:935.639944px;}
.ye{bottom:939.239990px;}
.y5b{bottom:950.399990px;}
.y95{bottom:950.759974px;}
.yd{bottom:958.680020px;}
.y5a{bottom:965.159944px;}
.y94{bottom:965.880005px;}
.yc{bottom:977.759974px;}
.y93{bottom:980.999945px;}
.y59{bottom:989.279959px;}
.yca{bottom:996.119960px;}
.yb{bottom:997.200004px;}
.y92{bottom:1005.119960px;}
.yc9{bottom:1011.239990px;}
.y58{bottom:1014.479944px;}
.y91{bottom:1020.239990px;}
.ya{bottom:1024.559990px;}
.yc8{bottom:1026.360019px;}
.y90{bottom:1035.360019px;}
.yc7{bottom:1041.479944px;}
.y57{bottom:1041.839930px;}
.y9{bottom:1048.319945px;}
.y8f{bottom:1050.479944px;}
.y56{bottom:1065.599974px;}
.y8{bottom:1072.439975px;}
.y8e{bottom:1080.720004px;}
.y5{bottom:1083.959959px;}
.y55{bottom:1092.599974px;}
.y8d{bottom:1095.839930px;}
.y4{bottom:1108.439975px;}
.y3{bottom:1127.159944px;}
.y8c{bottom:1132.919974px;}
.y54{bottom:1142.999945px;}
.y2{bottom:1146.239990px;}
.y53{bottom:1148.399990px;}
.h5{height:9.365625px;}
.h11{height:10.327500px;}
.h15{height:42.374089px;}
.h12{height:43.189451px;}
.h2{height:43.316014px;}
.h3{height:43.925085px;}
.h16{height:44.992967px;}
.h13{height:46.508146px;}
.ha{height:47.764686px;}
.h10{height:47.988279px;}
.h14{height:49.065467px;}
.h4{height:49.992185px;}
.h7{height:53.852342px;}
.hc{height:56.753196px;}
.hb{height:56.753556px;}
.hd{height:57.990935px;}
.hf{height:58.092185px;}
.he{height:59.835935px;}
.h9{height:64.546872px;}
.h6{height:64.622810px;}
.h8{height:69.409685px;}
.h1{height:1174.320000px;}
.h0{height:1263.000000px;}
.w7{width:62.639968px;}
.w9{width:82.080048px;}
.w6{width:127.439987px;}
.w5{width:175.319985px;}
.w8{width:181.439985px;}
.w2{width:215.280000px;}
.w3{width:432.000000px;}
.w4{width:631.800015px;}
.w1{width:838.439940px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x33{left:5.399997px;}
.x34{left:7.560001px;}
.x13{left:9.360008px;}
.x40{left:11.879997px;}
.x19{left:12.959999px;}
.x1d{left:17.280000px;}
.x14{left:20.520000px;}
.x42{left:23.039985px;}
.x39{left:25.920000px;}
.x1{left:27.000003px;}
.x15{left:29.520000px;}
.x10{left:32.400009px;}
.x11{left:35.280006px;}
.x44{left:36.719970px;}
.x1b{left:39.240004px;}
.x16{left:42.479998px;}
.x3a{left:43.559997px;}
.x18{left:45.360008px;}
.x32{left:50.039997px;}
.xe{left:51.479998px;}
.x41{left:53.640000px;}
.x1a{left:55.080003px;}
.x3d{left:59.760000px;}
.x3c{left:64.079997px;}
.x43{left:65.519982px;}
.x17{left:67.680003px;}
.x12{left:73.440003px;}
.x3b{left:76.679985px;}
.x2{left:79.200002px;}
.x3e{left:82.439985px;}
.x3f{left:86.759985px;}
.x1e{left:89.280003px;}
.x9{left:91.799993px;}
.xd{left:96.839997px;}
.x2a{left:99.359994px;}
.x49{left:100.439996px;}
.xf{left:103.679988px;}
.x2f{left:116.640000px;}
.x7{left:124.199997px;}
.x28{left:137.159997px;}
.x31{left:141.120003px;}
.x21{left:142.199997px;}
.x50{left:167.400012px;}
.xc{left:174.599982px;}
.x25{left:195.479982px;}
.x22{left:222.479982px;}
.x47{left:248.399982px;}
.x4f{left:250.199997px;}
.x1f{left:258.479982px;}
.x8{left:284.039997px;}
.x46{left:292.679997px;}
.x2e{left:297.359982px;}
.x4c{left:310.319997px;}
.x1c{left:314.279985px;}
.x35{left:317.160000px;}
.x23{left:347.399982px;}
.xa{left:362.159997px;}
.x30{left:377.279982px;}
.x29{left:385.919997px;}
.xb{left:389.159997px;}
.x2b{left:404.999997px;}
.x3{left:425.519982px;}
.x6{left:430.560012px;}
.x36{left:445.320000px;}
.x4{left:476.640012px;}
.x37{left:508.680000px;}
.x4a{left:529.560012px;}
.x4d{left:559.439982px;}
.x20{left:568.079997px;}
.x48{left:570.239997px;}
.x2c{left:592.199982px;}
.x26{left:595.079997px;}
.x4b{left:605.879967px;}
.x27{left:650.159997px;}
.x4e{left:656.279982px;}
.x2d{left:669.959967px;}
.x38{left:690.840000px;}
.x24{left:725.759997px;}
.x45{left:768.239952px;}
.x5{left:1060.199982px;}
@media print{
.v3{vertical-align:-53.760000pt;}
.v2{vertical-align:-21.760107pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760107pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128001pt;}
.ls9{letter-spacing:0.204800pt;}
.ls4{letter-spacing:0.547840pt;}
.ls5{letter-spacing:0.639947pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.959947pt;}
.ls2{letter-spacing:5.365762pt;}
.ls7{letter-spacing:5.760000pt;}
.ls8{letter-spacing:7.040001pt;}
.lsa{letter-spacing:143.999985pt;}
.ws6{word-spacing:-18.559999pt;}
.ws5{word-spacing:-17.791999pt;}
.ws9{word-spacing:-14.399999pt;}
.ws3{word-spacing:-13.166079pt;}
.ws2{word-spacing:-11.098880pt;}
.ws8{word-spacing:-10.560000pt;}
.ws4{word-spacing:-8.896000pt;}
.ws1{word-spacing:-0.048818pt;}
.ws0{word-spacing:-0.047360pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-4.944575pt;}
._7{margin-left:-3.517351pt;}
._3{margin-left:-1.904666pt;}
._2{margin-left:-0.966316pt;}
._0{width:0.942080pt;}
._1{width:2.392318pt;}
._8{width:3.294690pt;}
._9{width:4.697666pt;}
._5{width:5.624320pt;}
._4{width:6.679040pt;}
._6{width:7.761920pt;}
._13{width:8.949865pt;}
._b{width:9.892877pt;}
._a{width:10.791731pt;}
._1d{width:11.787902pt;}
._14{width:12.708171pt;}
._15{width:13.701119pt;}
._1e{width:15.358333pt;}
._1f{width:16.357625pt;}
._1a{width:17.820101pt;}
._18{width:19.075606pt;}
._17{width:20.421197pt;}
._16{width:21.707548pt;}
._1b{width:22.737992pt;}
._12{width:24.208555pt;}
._c{width:25.457971pt;}
._d{width:26.896539pt;}
._1c{width:27.910508pt;}
._11{width:28.833125pt;}
._e{width:30.250316pt;}
._f{width:31.334399pt;}
._10{width:32.881940pt;}
._21{width:50.695678pt;}
._20{width:52.166398pt;}
.fs4{font-size:10.240000pt;}
.fs9{font-size:31.999999pt;}
.fs2{font-size:37.119998pt;}
.fs5{font-size:42.239998pt;}
.fs0{font-size:47.359998pt;}
.fs1{font-size:48.817569pt;}
.fsb{font-size:52.479998pt;}
.fsc{font-size:54.095144pt;}
.fs7{font-size:57.599998pt;}
.fsa{font-size:59.372719pt;}
.fs3{font-size:63.999997pt;}
.fs6{font-size:69.119997pt;}
.fs8{font-size:74.239997pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.880000pt;}
.y6{bottom:17.600001pt;}
.y1{bottom:54.826716pt;}
.yf4{bottom:56.640000pt;}
.y52{bottom:56.959996pt;}
.yf3{bottom:70.080001pt;}
.y8b{bottom:70.399999pt;}
.yc6{bottom:78.719991pt;}
.yf2{bottom:83.519991pt;}
.y8a{bottom:83.840004pt;}
.y51{bottom:91.840004pt;}
.yc5{bottom:92.160004pt;}
.yf1{bottom:96.959991pt;}
.y89{bottom:97.279991pt;}
.y50{bottom:110.080004pt;}
.y88{bottom:110.400004pt;}
.yc4{bottom:113.600004pt;}
.y87{bottom:123.839991pt;}
.y113{bottom:125.120004pt;}
.yc3{bottom:127.040004pt;}
.y4f{bottom:129.600004pt;}
.y86{bottom:137.279991pt;}
.yc2{bottom:140.480004pt;}
.y112{bottom:143.359991pt;}
.yf0{bottom:145.919991pt;}
.yc1{bottom:153.919991pt;}
.y4e{bottom:155.199991pt;}
.y85{bottom:159.680004pt;}
.y111{bottom:160.319991pt;}
.yc0{bottom:167.359991pt;}
.yef{bottom:170.239991pt;}
.y84{bottom:176.640004pt;}
.y110{bottom:177.279991pt;}
.y4d{bottom:179.199991pt;}
.ybf{bottom:180.799991pt;}
.yee{bottom:191.680004pt;}
.y10f{bottom:193.919991pt;}
.ybe{bottom:194.239991pt;}
.y4c{bottom:195.199991pt;}
.y83{bottom:200.959991pt;}
.yed{bottom:205.120004pt;}
.y10e{bottom:210.879991pt;}
.y4b{bottom:211.199991pt;}
.ybd{bottom:215.680004pt;}
.yec{bottom:218.560004pt;}
.y82{bottom:222.399991pt;}
.y4a{bottom:227.199991pt;}
.ybc{bottom:229.120004pt;}
.y81{bottom:235.839991pt;}
.yeb{bottom:239.999991pt;}
.ybb{bottom:242.560004pt;}
.y49{bottom:243.199991pt;}
.y80{bottom:249.279991pt;}
.yea{bottom:253.439991pt;}
.yba{bottom:255.999991pt;}
.y48{bottom:259.199991pt;}
.y10d{bottom:262.719991pt;}
.ye9{bottom:266.879991pt;}
.y7f{bottom:270.719991pt;}
.y47{bottom:275.199991pt;}
.y10c{bottom:276.160004pt;}
.yb9{bottom:277.439991pt;}
.ye8{bottom:280.319991pt;}
.y7e{bottom:284.160004pt;}
.y10b{bottom:289.600004pt;}
.yb8{bottom:290.879991pt;}
.y46{bottom:291.199977pt;}
.ye7{bottom:293.759991pt;}
.yb7{bottom:304.320017pt;}
.y7d{bottom:305.600004pt;}
.ye6{bottom:306.879991pt;}
.y45{bottom:307.199977pt;}
.y10a{bottom:311.039977pt;}
.yb6{bottom:317.440004pt;}
.y7c{bottom:319.039977pt;}
.y109{bottom:324.480004pt;}
.ye5{bottom:328.320017pt;}
.y44{bottom:332.159977pt;}
.y108{bottom:337.919991pt;}
.yb5{bottom:339.839991pt;}
.y7b{bottom:340.480004pt;}
.ye4{bottom:349.759991pt;}
.y7a{bottom:353.919991pt;}
.y43{bottom:356.480004pt;}
.yb4{bottom:356.799991pt;}
.y107{bottom:359.039977pt;}
.y79{bottom:367.039977pt;}
.y2d{bottom:369.279977pt;}
.ye3{bottom:371.520004pt;}
.y78{bottom:380.480004pt;}
.yb3{bottom:381.119977pt;}
.y2c{bottom:382.719991pt;}
.y42{bottom:384.640004pt;}
.ye2{bottom:392.319977pt;}
.y77{bottom:393.919991pt;}
.y2b{bottom:395.839991pt;}
.y106{bottom:401.919991pt;}
.yb2{bottom:402.560004pt;}
.y41{bottom:403.199977pt;}
.y76{bottom:407.360017pt;}
.y2a{bottom:409.279977pt;}
.ye1{bottom:413.119977pt;}
.y105{bottom:415.360017pt;}
.yb1{bottom:415.999991pt;}
.y75{bottom:420.799991pt;}
.y40{bottom:422.079977pt;}
.y29{bottom:422.719991pt;}
.yb0{bottom:429.440004pt;}
.ye0{bottom:433.919991pt;}
.y28{bottom:435.839991pt;}
.y104{bottom:436.799991pt;}
.y3f{bottom:440.640004pt;}
.y74{bottom:442.239977pt;}
.y27{bottom:449.279977pt;}
.yaf{bottom:450.879991pt;}
.ydf{bottom:455.359964pt;}
.y73{bottom:455.680004pt;}
.y103{bottom:458.239977pt;}
.y26{bottom:462.719991pt;}
.yae{bottom:464.319977pt;}
.y3e{bottom:467.520004pt;}
.y72{bottom:469.119977pt;}
.y25{bottom:475.839991pt;}
.yde{bottom:476.159977pt;}
.yad{bottom:477.759991pt;}
.y102{bottom:479.680004pt;}
.y71{bottom:482.560004pt;}
.y3d{bottom:488.640004pt;}
.y24{bottom:489.279977pt;}
.y70{bottom:495.999991pt;}
.ydd{bottom:496.959991pt;}
.yac{bottom:499.199977pt;}
.y101{bottom:501.119977pt;}
.y23{bottom:502.719991pt;}
.y3c{bottom:504.640004pt;}
.y6f{bottom:509.440004pt;}
.yab{bottom:512.640004pt;}
.y100{bottom:514.560004pt;}
.y22{bottom:515.839991pt;}
.ydc{bottom:517.759991pt;}
.y3b{bottom:520.640004pt;}
.y6e{bottom:522.879991pt;}
.yaa{bottom:526.079977pt;}
.y21{bottom:529.279977pt;}
.yff{bottom:535.999991pt;}
.y6d{bottom:536.319977pt;}
.y3a{bottom:536.640004pt;}
.ya9{bottom:539.520004pt;}
.ydb{bottom:542.399964pt;}
.y20{bottom:542.719991pt;}
.yfe{bottom:549.440004pt;}
.y39{bottom:552.640004pt;}
.y1f{bottom:555.839991pt;}
.y6c{bottom:557.759991pt;}
.ya8{bottom:566.079977pt;}
.y38{bottom:568.640004pt;}
.y1e{bottom:569.279977pt;}
.yda{bottom:570.239977pt;}
.yfd{bottom:570.879991pt;}
.y6b{bottom:571.199977pt;}
.ya7{bottom:579.520004pt;}
.y1d{bottom:582.719991pt;}
.yfc{bottom:584.319977pt;}
.y37{bottom:584.640004pt;}
.yd9{bottom:590.399964pt;}
.y1c{bottom:595.839991pt;}
.y6a{bottom:597.759991pt;}
.y36{bottom:600.640004pt;}
.ya6{bottom:600.959991pt;}
.y1b{bottom:609.279977pt;}
.yd8{bottom:611.839991pt;}
.ya5{bottom:614.399964pt;}
.y35{bottom:616.640004pt;}
.y69{bottom:619.199977pt;}
.y1a{bottom:622.719991pt;}
.ya4{bottom:627.839951pt;}
.y34{bottom:632.640004pt;}
.yd7{bottom:633.279977pt;}
.y19{bottom:635.839951pt;}
.yfb{bottom:640.640004pt;}
.ya3{bottom:641.279977pt;}
.y68{bottom:646.080017pt;}
.yd6{bottom:646.719991pt;}
.y33{bottom:648.640004pt;}
.y18{bottom:649.279977pt;}
.yfa{bottom:653.759951pt;}
.ya2{bottom:654.719991pt;}
.y67{bottom:659.519964pt;}
.yd5{bottom:660.160017pt;}
.y17{bottom:664.000031pt;}
.y32{bottom:664.640004pt;}
.yf9{bottom:667.199977pt;}
.ya1{bottom:668.160017pt;}
.y66{bottom:672.959991pt;}
.yd4{bottom:673.599964pt;}
.y31{bottom:680.640004pt;}
.ya0{bottom:681.599964pt;}
.y16{bottom:684.160017pt;}
.y65{bottom:686.400004pt;}
.yf8{bottom:688.640004pt;}
.yd3{bottom:695.039977pt;}
.y30{bottom:696.640004pt;}
.y15{bottom:697.599964pt;}
.y64{bottom:699.839951pt;}
.yf7{bottom:702.080017pt;}
.y9f{bottom:703.039977pt;}
.yd2{bottom:708.480004pt;}
.y14{bottom:710.719991pt;}
.y2f{bottom:712.640004pt;}
.y9e{bottom:716.480004pt;}
.y63{bottom:721.279977pt;}
.yd1{bottom:721.919951pt;}
.yf6{bottom:723.519964pt;}
.y13{bottom:724.160017pt;}
.y9d{bottom:729.919951pt;}
.y62{bottom:734.719991pt;}
.yd0{bottom:735.359964pt;}
.yf5{bottom:736.959991pt;}
.y2e{bottom:737.279977pt;}
.y12{bottom:737.599964pt;}
.y9c{bottom:743.359964pt;}
.y61{bottom:748.160017pt;}
.ycf{bottom:748.799991pt;}
.y9b{bottom:756.799991pt;}
.y11{bottom:759.359964pt;}
.yce{bottom:762.240017pt;}
.y60{bottom:769.599964pt;}
.y9a{bottom:770.240017pt;}
.y10{bottom:781.119977pt;}
.y5f{bottom:783.039977pt;}
.y99{bottom:783.359964pt;}
.y5e{bottom:796.480004pt;}
.ycd{bottom:796.799991pt;}
.y98{bottom:804.799991pt;}
.yf{bottom:807.679951pt;}
.ycc{bottom:810.240017pt;}
.y5d{bottom:817.919951pt;}
.y97{bottom:818.240017pt;}
.ycb{bottom:823.679951pt;}
.y5c{bottom:831.359964pt;}
.y96{bottom:831.679951pt;}
.ye{bottom:834.879991pt;}
.y5b{bottom:844.799991pt;}
.y95{bottom:845.119977pt;}
.yd{bottom:852.160017pt;}
.y5a{bottom:857.919951pt;}
.y94{bottom:858.560004pt;}
.yc{bottom:869.119977pt;}
.y93{bottom:871.999951pt;}
.y59{bottom:879.359964pt;}
.yca{bottom:885.439964pt;}
.yb{bottom:886.400004pt;}
.y92{bottom:893.439964pt;}
.yc9{bottom:898.879991pt;}
.y58{bottom:901.759951pt;}
.y91{bottom:906.879991pt;}
.ya{bottom:910.719991pt;}
.yc8{bottom:912.320017pt;}
.y90{bottom:920.320017pt;}
.yc7{bottom:925.759951pt;}
.y57{bottom:926.079937pt;}
.y9{bottom:931.839951pt;}
.y8f{bottom:933.759951pt;}
.y56{bottom:947.199977pt;}
.y8{bottom:953.279977pt;}
.y8e{bottom:960.640004pt;}
.y5{bottom:963.519964pt;}
.y55{bottom:971.199977pt;}
.y8d{bottom:974.079937pt;}
.y4{bottom:985.279977pt;}
.y3{bottom:1001.919951pt;}
.y8c{bottom:1007.039977pt;}
.y54{bottom:1015.999951pt;}
.y2{bottom:1018.879991pt;}
.y53{bottom:1020.799991pt;}
.h5{height:8.325000pt;}
.h11{height:9.180000pt;}
.h15{height:37.665857pt;}
.h12{height:38.390623pt;}
.h2{height:38.503123pt;}
.h3{height:39.044520pt;}
.h16{height:39.993748pt;}
.h13{height:41.340575pt;}
.ha{height:42.457498pt;}
.h10{height:42.656248pt;}
.h14{height:43.613748pt;}
.h4{height:44.437498pt;}
.h7{height:47.868748pt;}
.hc{height:50.447285pt;}
.hb{height:50.447605pt;}
.hd{height:51.547498pt;}
.hf{height:51.637498pt;}
.he{height:53.187498pt;}
.h9{height:57.374998pt;}
.h6{height:57.442498pt;}
.h8{height:61.697497pt;}
.h1{height:1043.840000pt;}
.h0{height:1122.666667pt;}
.w7{width:55.679972pt;}
.w9{width:72.960043pt;}
.w6{width:113.279988pt;}
.w5{width:155.839987pt;}
.w8{width:161.279987pt;}
.w2{width:191.360000pt;}
.w3{width:384.000000pt;}
.w4{width:561.600013pt;}
.w1{width:745.279947pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x33{left:4.799997pt;}
.x34{left:6.720001pt;}
.x13{left:8.320007pt;}
.x40{left:10.559997pt;}
.x19{left:11.519999pt;}
.x1d{left:15.360000pt;}
.x14{left:18.240000pt;}
.x42{left:20.479987pt;}
.x39{left:23.040000pt;}
.x1{left:24.000003pt;}
.x15{left:26.240000pt;}
.x10{left:28.800008pt;}
.x11{left:31.360005pt;}
.x44{left:32.639973pt;}
.x1b{left:34.880004pt;}
.x16{left:37.759999pt;}
.x3a{left:38.719997pt;}
.x18{left:40.320007pt;}
.x32{left:44.479997pt;}
.xe{left:45.759999pt;}
.x41{left:47.680000pt;}
.x1a{left:48.960003pt;}
.x3d{left:53.120000pt;}
.x3c{left:56.959997pt;}
.x43{left:58.239984pt;}
.x17{left:60.160003pt;}
.x12{left:65.280003pt;}
.x3b{left:68.159987pt;}
.x2{left:70.400001pt;}
.x3e{left:73.279987pt;}
.x3f{left:77.119987pt;}
.x1e{left:79.360003pt;}
.x9{left:81.599993pt;}
.xd{left:86.079997pt;}
.x2a{left:88.319995pt;}
.x49{left:89.279996pt;}
.xf{left:92.159989pt;}
.x2f{left:103.680000pt;}
.x7{left:110.399997pt;}
.x28{left:121.919997pt;}
.x31{left:125.440003pt;}
.x21{left:126.399997pt;}
.x50{left:148.800011pt;}
.xc{left:155.199984pt;}
.x25{left:173.759984pt;}
.x22{left:197.759984pt;}
.x47{left:220.799984pt;}
.x4f{left:222.399997pt;}
.x1f{left:229.759984pt;}
.x8{left:252.479997pt;}
.x46{left:260.159997pt;}
.x2e{left:264.319984pt;}
.x4c{left:275.839997pt;}
.x1c{left:279.359987pt;}
.x35{left:281.920000pt;}
.x23{left:308.799984pt;}
.xa{left:321.919997pt;}
.x30{left:335.359984pt;}
.x29{left:343.039997pt;}
.xb{left:345.919997pt;}
.x2b{left:359.999997pt;}
.x3{left:378.239984pt;}
.x6{left:382.720011pt;}
.x36{left:395.840000pt;}
.x4{left:423.680011pt;}
.x37{left:452.160000pt;}
.x4a{left:470.720011pt;}
.x4d{left:497.279984pt;}
.x20{left:504.959997pt;}
.x48{left:506.879997pt;}
.x2c{left:526.399984pt;}
.x26{left:528.959997pt;}
.x4b{left:538.559971pt;}
.x27{left:577.919997pt;}
.x4e{left:583.359984pt;}
.x2d{left:595.519971pt;}
.x38{left:614.080000pt;}
.x24{left:645.119997pt;}
.x45{left:682.879957pt;}
.x5{left:942.399984pt;}
}




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