
    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_dcbe887e029d786195bdb5ec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cefcbfdcb6c0742a7552d6c4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3232800b1843607835115e3b.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_06816a64e78f0c83cf0ef6dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708984;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_2eff158741b5be88acacf174.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_1e9af685679d1ed316906eb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_26afd79b6cac6369ad2f9405.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_84a094ce3e07a52b91209542.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.791992;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_1c507ab0011dbd707d923c43.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c29d6b67b17a32bbc5ff116b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8f7bee71c2d2839ec3a437a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b1906d6a86dc97670a57f2fd.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_636a59c425b34de3513b4fe0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919434;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;}
.m6{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-5.759998px;}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.v5{vertical-align:48.239981px;}
.v4{vertical-align:54.719978px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.031745px;}
.lsf{letter-spacing:0.034431px;}
.ls7{letter-spacing:0.034440px;}
.lsa{letter-spacing:0.063360px;}
.ls1{letter-spacing:0.063403px;}
.lsc{letter-spacing:0.147780px;}
.ls5{letter-spacing:0.213546px;}
.ls9{letter-spacing:1.474499px;}
.lse{letter-spacing:34.087306px;}
.lsd{letter-spacing:48.514781px;}
.lsb{letter-spacing:55.007378px;}
.ls10{letter-spacing:59.238576px;}
.ls4{letter-spacing:65.677294px;}
.ls3{letter-spacing:142.143543px;}
.ls6{letter-spacing:282.091207px;}
.ls0{letter-spacing:1338.912484px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-36.069532px;}
.ws7{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.623396px;}
.ws4{word-spacing:-16.613273px;}
.ws2{word-spacing:-16.559993px;}
.wsa{word-spacing:-15.839994px;}
.ws1{word-spacing:-14.939994px;}
.ws3{word-spacing:-14.374074px;}
.ws9{word-spacing:-11.246396px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:6.612549px;}
._11{margin-left:-4.296537px;}
._17{margin-left:-2.984496px;}
._1{margin-left:-1.750293px;}
._0{width:1.152887px;}
._6{width:2.704769px;}
._c{width:4.042777px;}
._5{width:5.201018px;}
._13{width:6.494119px;}
._1d{width:7.956641px;}
._9{width:9.221076px;}
._a{width:10.225268px;}
._3{width:11.968877px;}
._4{width:13.092846px;}
._1b{width:14.152752px;}
._7{width:15.356213px;}
._8{width:16.695865px;}
._1c{width:18.049800px;}
._19{width:19.836199px;}
._18{width:21.076297px;}
._14{width:26.306850px;}
._b{width:29.302728px;}
._d{width:35.920370px;}
._e{width:36.936586px;}
._16{width:46.924037px;}
._f{width:85.154546px;}
._15{width:116.176274px;}
._12{width:198.957039px;}
._1a{width:258.287657px;}
._2{width:269.106516px;}
._10{width:2692.942203px;}
.fcb{color:transparent;}
.fc8{color:rgb(44,62,80);}
.fc6{color:rgb(112,48,160);}
.fc5{color:rgb(0,0,255);}
.fc7{color:rgb(83,129,53);}
.fc4{color:rgb(0,32,96);}
.fcc{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fca{color:rgb(0,176,80);}
.fc9{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs7{font-size:51.119980px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.360000px;}
.y16{bottom:2.879626px;}
.yb{bottom:3.239989px;}
.y9{bottom:3.959980px;}
.y1e{bottom:4.319696px;}
.ya{bottom:24.120000px;}
.y8{bottom:46.260000px;}
.y6{bottom:50.219980px;}
.y7{bottom:50.759980px;}
.y5e{bottom:116.639953px;}
.yaa{bottom:121.679951px;}
.yc8{bottom:124.019950px;}
.yc7{bottom:144.539942px;}
.y5d{bottom:149.039940px;}
.y14{bottom:149.219940px;}
.ya9{bottom:152.639939px;}
.yc6{bottom:165.239934px;}
.y3e{bottom:181.259927px;}
.ya8{bottom:183.779926px;}
.y69{bottom:185.939926px;}
.y3d{bottom:201.959919px;}
.yc5{bottom:206.639917px;}
.y5c{bottom:213.839914px;}
.ya7{bottom:214.739914px;}
.y3c{bottom:222.659911px;}
.y89{bottom:226.979909px;}
.yc4{bottom:227.339909px;}
.y3b{bottom:243.359903px;}
.y2a{bottom:244.799902px;}
.ya6{bottom:245.879902px;}
.y88{bottom:247.679901px;}
.yc3{bottom:258.479897px;}
.y87{bottom:268.379893px;}
.ya5{bottom:273.239891px;}
.y5b{bottom:275.939890px;}
.ya4{bottom:285.299886px;}
.y42{bottom:287.999885px;}
.y86{bottom:289.079884px;}
.yc2{bottom:289.439884px;}
.y41{bottom:305.279878px;}
.y5a{bottom:306.719877px;}
.y85{bottom:309.779876px;}
.ye1{bottom:315.719874px;}
.yc1{bottom:320.579872px;}
.y40{bottom:322.559871px;}
.ya3{bottom:328.319869px;}
.y84{bottom:330.479868px;}
.y59{bottom:339.299864px;}
.y3f{bottom:340.559864px;}
.ye0{bottom:344.159862px;}
.y83{bottom:351.179860px;}
.yc0{bottom:351.539859px;}
.ya2{bottom:359.459856px;}
.y29{bottom:368.459853px;}
.y58{bottom:370.259852px;}
.y82{bottom:371.879851px;}
.ydf{bottom:372.779851px;}
.y3a{bottom:379.439848px;}
.ybf{bottom:382.679847px;}
.ya1{bottom:390.419844px;}
.y81{bottom:392.579843px;}
.yde{bottom:401.219840px;}
.y57{bottom:402.659839px;}
.y39{bottom:403.559839px;}
.y80{bottom:413.279835px;}
.ybe{bottom:413.639835px;}
.ya0{bottom:421.379831px;}
.ydd{bottom:429.659828px;}
.y56{bottom:433.619827px;}
.y7f{bottom:433.979826px;}
.y38{bottom:435.599826px;}
.ybd{bottom:444.779822px;}
.y9f{bottom:452.519819px;}
.y7e{bottom:454.679818px;}
.y28{bottom:455.039818px;}
.y37{bottom:456.299817px;}
.ydc{bottom:458.099817px;}
.y55{bottom:465.839814px;}
.y7d{bottom:475.379810px;}
.ybc{bottom:475.739810px;}
.y36{bottom:476.999809px;}
.y9e{bottom:483.479807px;}
.ydb{bottom:486.539805px;}
.y7c{bottom:496.079802px;}
.y35{bottom:497.699801px;}
.y54{bottom:498.239801px;}
.y27{bottom:500.579800px;}
.ybb{bottom:506.879797px;}
.yda{bottom:514.979794px;}
.y7b{bottom:516.779793px;}
.y9d{bottom:516.959793px;}
.y68{bottom:517.139793px;}
.y26{bottom:517.499793px;}
.y34{bottom:518.399793px;}
.y53{bottom:530.639788px;}
.y25{bottom:534.599786px;}
.y7a{bottom:537.479785px;}
.yba{bottom:537.839785px;}
.y33{bottom:539.099784px;}
.y9c{bottom:540.539784px;}
.yd9{bottom:543.419783px;}
.y24{bottom:550.259780px;}
.y79{bottom:558.719777px;}
.y32{bottom:559.799776px;}
.y9b{bottom:561.239776px;}
.y52{bottom:561.779775px;}
.yb9{bottom:568.979772px;}
.yd8{bottom:571.859771px;}
.y31{bottom:580.499768px;}
.y9a{bottom:581.939767px;}
.y78{bottom:589.139764px;}
.y51{bottom:592.739763px;}
.y23{bottom:594.359762px;}
.y76{bottom:598.139761px;}
.yb8{bottom:599.939760px;}
.yd7{bottom:600.299760px;}
.y30{bottom:601.199760px;}
.y99{bottom:602.639759px;}
.y77{bottom:608.759756px;}
.y2f{bottom:621.899751px;}
.y98{bottom:623.339751px;}
.y50{bottom:623.879750px;}
.yd6{bottom:628.919748px;}
.yb7{bottom:633.419747px;}
.y75{bottom:633.599747px;}
.y22{bottom:638.639745px;}
.y2e{bottom:642.599743px;}
.y97{bottom:644.039742px;}
.yd5{bottom:657.359737px;}
.y2d{bottom:663.299735px;}
.y4f{bottom:663.839734px;}
.y74{bottom:664.739734px;}
.yb6{bottom:667.259733px;}
.y21{bottom:682.919727px;}
.y2c{bottom:683.999726px;}
.y96{bottom:685.439726px;}
.yd4{bottom:685.799726px;}
.y4e{bottom:694.979722px;}
.y73{bottom:695.699722px;}
.yb5{bottom:698.219721px;}
.y20{bottom:700.199720px;}
.y2b{bottom:704.699718px;}
.y95{bottom:706.139718px;}
.yd3{bottom:714.239714px;}
.y4d{bottom:725.939710px;}
.y1f{bottom:726.839709px;}
.yb4{bottom:729.359708px;}
.yd2{bottom:742.679703px;}
.y94{bottom:747.539701px;}
.y1d{bottom:755.280000px;}
.y4c{bottom:757.079697px;}
.y72{bottom:757.799697px;}
.y1c{bottom:759.779696px;}
.yb3{bottom:760.319696px;}
.y93{bottom:768.239693px;}
.yd1{bottom:771.119692px;}
.y13{bottom:784.979686px;}
.y67{bottom:786.239686px;}
.y71{bottom:788.939684px;}
.yb2{bottom:791.459683px;}
.y4b{bottom:797.039681px;}
.yd0{bottom:799.559680px;}
.y92{bottom:809.639676px;}
.y66{bottom:817.379673px;}
.y70{bottom:819.899672px;}
.yb1{bottom:822.419671px;}
.y12{bottom:823.319671px;}
.ycf{bottom:827.999669px;}
.y4a{bottom:828.179669px;}
.y91{bottom:830.339668px;}
.y11{bottom:845.279662px;}
.y65{bottom:848.339661px;}
.y6f{bottom:851.039660px;}
.yb0{bottom:853.559659px;}
.yce{bottom:856.439657px;}
.y10{bottom:862.559655px;}
.yf{bottom:867.779653px;}
.y49{bottom:868.139653px;}
.y90{bottom:871.739651px;}
.y64{bottom:879.479648px;}
.yd{bottom:880.559648px;}
.y6e{bottom:881.999647px;}
.yaf{bottom:884.519646px;}
.ye{bottom:885.059646px;}
.y8f{bottom:892.439643px;}
.y48{bottom:899.279640px;}
.yc{bottom:906.839637px;}
.y63{bottom:910.439636px;}
.y6d{bottom:912.959635px;}
.y8e{bottom:913.139635px;}
.ycd{bottom:913.499635px;}
.yae{bottom:915.659634px;}
.y47{bottom:930.239628px;}
.y15{bottom:933.300000px;}
.y8d{bottom:933.659627px;}
.y1b{bottom:938.159625px;}
.y62{bottom:941.579623px;}
.ycc{bottom:941.939623px;}
.y6c{bottom:944.099622px;}
.yad{bottom:946.619621px;}
.y8c{bottom:954.359618px;}
.y1a{bottom:957.059617px;}
.y46{bottom:961.379615px;}
.ycb{bottom:970.379612px;}
.y61{bottom:972.359611px;}
.y6b{bottom:975.059610px;}
.y19{bottom:976.139610px;}
.yac{bottom:977.759609px;}
.y45{bottom:992.339603px;}
.y18{bottom:995.039602px;}
.y8b{bottom:995.759602px;}
.yca{bottom:998.819600px;}
.y60{bottom:1004.759598px;}
.y6a{bottom:1006.199598px;}
.yab{bottom:1007.459597px;}
.y44{bottom:1013.039595px;}
.y17{bottom:1013.939594px;}
.y8a{bottom:1016.459593px;}
.yc9{bottom:1017.899593px;}
.y43{bottom:1034.279586px;}
.y5f{bottom:1037.159585px;}
.y5{bottom:1093.139563px;}
.y3{bottom:1096.919561px;}
.y2{bottom:1114.199554px;}
.y1{bottom:1131.479547px;}
.h2{height:13.680000px;}
.hc{height:17.640000px;}
.h6{height:18.000000px;}
.h5{height:18.720000px;}
.he{height:20.160000px;}
.ha{height:27.014755px;}
.h9{height:33.824518px;}
.h17{height:35.843892px;}
.h3{height:36.597642px;}
.h13{height:39.339828px;}
.hb{height:40.501390px;}
.h12{height:40.530570px;}
.h1{height:41.522679px;}
.h11{height:43.536076px;}
.hf{height:44.149201px;}
.hd{height:44.893107px;}
.h4{height:46.025138px;}
.h10{height:47.465137px;}
.h15{height:48.796855px;}
.h14{height:50.027324px;}
.h8{height:50.484355px;}
.h18{height:52.417948px;}
.h16{height:52.453104px;}
.h7{height:57.092321px;}
.h1a{height:98.267304px;}
.h19{height:105.204333px;}
.h0{height:1188.000000px;}
.w5{width:3.600000px;}
.w2{width:5.940000px;}
.w1{width:6.840000px;}
.w3{width:7.560000px;}
.w6{width:33.660000px;}
.w4{width:58.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x30{left:86.399965px;}
.x21{left:93.779962px;}
.x3{left:94.859962px;}
.x1f{left:95.939962px;}
.x2c{left:97.199961px;}
.x1e{left:98.819960px;}
.x1b{left:100.079960px;}
.x1{left:107.999957px;}
.x1c{left:111.419955px;}
.x23{left:112.679955px;}
.x1d{left:115.200016px;}
.x16{left:116.639953px;}
.x4{left:120.239952px;}
.x32{left:124.199950px;}
.x7{left:128.159949px;}
.x17{left:137.160000px;}
.x22{left:147.779941px;}
.x31{left:151.200988px;}
.x20{left:158.939936px;}
.x34{left:178.199851px;}
.x33{left:182.699870px;}
.x18{left:195.660000px;}
.x19{left:199.260000px;}
.xa{left:224.999910px;}
.xb{left:229.859908px;}
.x1a{left:232.919907px;}
.xf{left:235.440000px;}
.xc{left:236.519042px;}
.x24{left:244.439902px;}
.x25{left:245.519902px;}
.x10{left:256.859897px;}
.x39{left:269.819892px;}
.x26{left:272.519891px;}
.x13{left:283.139887px;}
.x27{left:293.039720px;}
.x2b{left:296.819881px;}
.x29{left:302.030879px;}
.x36{left:324.539874px;}
.x35{left:326.519869px;}
.x28{left:347.039711px;}
.x8{left:363.779854px;}
.xd{left:366.839853px;}
.x2f{left:379.619848px;}
.x12{left:395.279842px;}
.x11{left:399.060290px;}
.x3e{left:403.199839px;}
.x14{left:404.819838px;}
.x3c{left:426.959829px;}
.x3a{left:445.859807px;}
.x5{left:454.139818px;}
.x3d{left:463.679815px;}
.xe{left:465.299814px;}
.x3b{left:509.579748px;}
.x9{left:560.159776px;}
.x2a{left:572.039771px;}
.x15{left:685.620025px;}
.x2d{left:711.539715px;}
.x2{left:718.199713px;}
.x37{left:765.719877px;}
.x38{left:782.999802px;}
.x6{left:817.200000px;}
.x2e{left:819.180000px;}
@media print{
.v3{vertical-align:-5.119998pt;}
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.v5{vertical-align:42.879983pt;}
.v4{vertical-align:48.639981pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.028218pt;}
.lsf{letter-spacing:0.030605pt;}
.ls7{letter-spacing:0.030613pt;}
.lsa{letter-spacing:0.056320pt;}
.ls1{letter-spacing:0.056358pt;}
.lsc{letter-spacing:0.131360pt;}
.ls5{letter-spacing:0.189819pt;}
.ls9{letter-spacing:1.310666pt;}
.lse{letter-spacing:30.299828pt;}
.lsd{letter-spacing:43.124249pt;}
.lsb{letter-spacing:48.895447pt;}
.ls10{letter-spacing:52.656512pt;}
.ls4{letter-spacing:58.379817pt;}
.ls3{letter-spacing:126.349816pt;}
.ls6{letter-spacing:250.747740pt;}
.ls0{letter-spacing:1190.144431pt;}
.ws5{word-spacing:-32.061806pt;}
.ws7{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.776352pt;}
.ws4{word-spacing:-14.767354pt;}
.ws2{word-spacing:-14.719994pt;}
.wsa{word-spacing:-14.079994pt;}
.ws1{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.776955pt;}
.ws9{word-spacing:-9.996796pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:5.877822pt;}
._11{margin-left:-3.819144pt;}
._17{margin-left:-2.652885pt;}
._1{margin-left:-1.555816pt;}
._0{width:1.024788pt;}
._6{width:2.404239pt;}
._c{width:3.593580pt;}
._5{width:4.623127pt;}
._13{width:5.772551pt;}
._1d{width:7.072570pt;}
._9{width:8.196512pt;}
._a{width:9.089127pt;}
._3{width:10.639002pt;}
._4{width:11.638085pt;}
._1b{width:12.580224pt;}
._7{width:13.649967pt;}
._8{width:14.840769pt;}
._1c{width:16.044267pt;}
._19{width:17.632177pt;}
._18{width:18.734486pt;}
._14{width:23.383866pt;}
._b{width:26.046869pt;}
._d{width:31.929218pt;}
._e{width:32.832521pt;}
._16{width:41.710255pt;}
._f{width:75.692930pt;}
._15{width:103.267799pt;}
._12{width:176.850702pt;}
._1a{width:229.589028pt;}
._2{width:239.205792pt;}
._10{width:2393.726402pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs7{font-size:45.439982pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.320000pt;}
.y16{bottom:2.559667pt;}
.yb{bottom:2.879990pt;}
.y9{bottom:3.519982pt;}
.y1e{bottom:3.839730pt;}
.ya{bottom:21.440000pt;}
.y8{bottom:41.120000pt;}
.y6{bottom:44.639982pt;}
.y7{bottom:45.119982pt;}
.y5e{bottom:103.679959pt;}
.yaa{bottom:108.159957pt;}
.yc8{bottom:110.239956pt;}
.yc7{bottom:128.479949pt;}
.y5d{bottom:132.479947pt;}
.y14{bottom:132.639947pt;}
.ya9{bottom:135.679946pt;}
.yc6{bottom:146.879941pt;}
.y3e{bottom:161.119936pt;}
.ya8{bottom:163.359935pt;}
.y69{bottom:165.279934pt;}
.y3d{bottom:179.519928pt;}
.yc5{bottom:183.679927pt;}
.y5c{bottom:190.079924pt;}
.ya7{bottom:190.879924pt;}
.y3c{bottom:197.919921pt;}
.y89{bottom:201.759919pt;}
.yc4{bottom:202.079919pt;}
.y3b{bottom:216.319913pt;}
.y2a{bottom:217.599913pt;}
.ya6{bottom:218.559913pt;}
.y88{bottom:220.159912pt;}
.yc3{bottom:229.759908pt;}
.y87{bottom:238.559905pt;}
.ya5{bottom:242.879903pt;}
.y5b{bottom:245.279902pt;}
.ya4{bottom:253.599899pt;}
.y42{bottom:255.999898pt;}
.y86{bottom:256.959897pt;}
.yc2{bottom:257.279897pt;}
.y41{bottom:271.359891pt;}
.y5a{bottom:272.639891pt;}
.y85{bottom:275.359890pt;}
.ye1{bottom:280.639888pt;}
.yc1{bottom:284.959886pt;}
.y40{bottom:286.719885pt;}
.ya3{bottom:291.839883pt;}
.y84{bottom:293.759882pt;}
.y59{bottom:301.599879pt;}
.y3f{bottom:302.719879pt;}
.ye0{bottom:305.919878pt;}
.y83{bottom:312.159875pt;}
.yc0{bottom:312.479875pt;}
.ya2{bottom:319.519872pt;}
.y29{bottom:327.519869pt;}
.y58{bottom:329.119868pt;}
.y82{bottom:330.559868pt;}
.ydf{bottom:331.359867pt;}
.y3a{bottom:337.279865pt;}
.ybf{bottom:340.159864pt;}
.ya1{bottom:347.039861pt;}
.y81{bottom:348.959860pt;}
.yde{bottom:356.639857pt;}
.y57{bottom:357.919857pt;}
.y39{bottom:358.719857pt;}
.y80{bottom:367.359853pt;}
.ybe{bottom:367.679853pt;}
.ya0{bottom:374.559850pt;}
.ydd{bottom:381.919847pt;}
.y56{bottom:385.439846pt;}
.y7f{bottom:385.759846pt;}
.y38{bottom:387.199845pt;}
.ybd{bottom:395.359842pt;}
.y9f{bottom:402.239839pt;}
.y7e{bottom:404.159838pt;}
.y28{bottom:404.479838pt;}
.y37{bottom:405.599838pt;}
.ydc{bottom:407.199837pt;}
.y55{bottom:414.079834pt;}
.y7d{bottom:422.559831pt;}
.ybc{bottom:422.879831pt;}
.y36{bottom:423.999830pt;}
.y9e{bottom:429.759828pt;}
.ydb{bottom:432.479827pt;}
.y7c{bottom:440.959824pt;}
.y35{bottom:442.399823pt;}
.y54{bottom:442.879823pt;}
.y27{bottom:444.959822pt;}
.ybb{bottom:450.559820pt;}
.yda{bottom:457.759817pt;}
.y7b{bottom:459.359816pt;}
.y9d{bottom:459.519816pt;}
.y68{bottom:459.679816pt;}
.y26{bottom:459.999816pt;}
.y34{bottom:460.799816pt;}
.y53{bottom:471.679811pt;}
.y25{bottom:475.199810pt;}
.y7a{bottom:477.759809pt;}
.yba{bottom:478.079809pt;}
.y33{bottom:479.199808pt;}
.y9c{bottom:480.479808pt;}
.yd9{bottom:483.039807pt;}
.y24{bottom:489.119804pt;}
.y79{bottom:496.639801pt;}
.y32{bottom:497.599801pt;}
.y9b{bottom:498.879800pt;}
.y52{bottom:499.359800pt;}
.yb9{bottom:505.759798pt;}
.yd8{bottom:508.319797pt;}
.y31{bottom:515.999794pt;}
.y9a{bottom:517.279793pt;}
.y78{bottom:523.679791pt;}
.y51{bottom:526.879789pt;}
.y23{bottom:528.319789pt;}
.y76{bottom:531.679787pt;}
.yb8{bottom:533.279787pt;}
.yd7{bottom:533.599787pt;}
.y30{bottom:534.399786pt;}
.y99{bottom:535.679786pt;}
.y77{bottom:541.119784pt;}
.y2f{bottom:552.799779pt;}
.y98{bottom:554.079778pt;}
.y50{bottom:554.559778pt;}
.yd6{bottom:559.039776pt;}
.yb7{bottom:563.039775pt;}
.y75{bottom:563.199775pt;}
.y22{bottom:567.679773pt;}
.y2e{bottom:571.199772pt;}
.y97{bottom:572.479771pt;}
.yd5{bottom:584.319766pt;}
.y2d{bottom:589.599764pt;}
.y4f{bottom:590.079764pt;}
.y74{bottom:590.879764pt;}
.yb6{bottom:593.119763pt;}
.y21{bottom:607.039757pt;}
.y2c{bottom:607.999757pt;}
.y96{bottom:609.279756pt;}
.yd4{bottom:609.599756pt;}
.y4e{bottom:617.759753pt;}
.y73{bottom:618.399753pt;}
.yb5{bottom:620.639752pt;}
.y20{bottom:622.399751pt;}
.y2b{bottom:626.399749pt;}
.y95{bottom:627.679749pt;}
.yd3{bottom:634.879746pt;}
.y4d{bottom:645.279742pt;}
.y1f{bottom:646.079742pt;}
.yb4{bottom:648.319741pt;}
.yd2{bottom:660.159736pt;}
.y94{bottom:664.479734pt;}
.y1d{bottom:671.360000pt;}
.y4c{bottom:672.959731pt;}
.y72{bottom:673.599731pt;}
.y1c{bottom:675.359730pt;}
.yb3{bottom:675.839730pt;}
.y93{bottom:682.879727pt;}
.yd1{bottom:685.439726pt;}
.y13{bottom:697.759721pt;}
.y67{bottom:698.879720pt;}
.y71{bottom:701.279719pt;}
.yb2{bottom:703.519719pt;}
.y4b{bottom:708.479717pt;}
.yd0{bottom:710.719716pt;}
.y92{bottom:719.679712pt;}
.y66{bottom:726.559709pt;}
.y70{bottom:728.799708pt;}
.yb1{bottom:731.039708pt;}
.y12{bottom:731.839707pt;}
.ycf{bottom:735.999706pt;}
.y4a{bottom:736.159706pt;}
.y91{bottom:738.079705pt;}
.y11{bottom:751.359699pt;}
.y65{bottom:754.079698pt;}
.y6f{bottom:756.479697pt;}
.yb0{bottom:758.719697pt;}
.yce{bottom:761.279695pt;}
.y10{bottom:766.719693pt;}
.yf{bottom:771.359691pt;}
.y49{bottom:771.679691pt;}
.y90{bottom:774.879690pt;}
.y64{bottom:781.759687pt;}
.yd{bottom:782.719687pt;}
.y6e{bottom:783.999686pt;}
.yaf{bottom:786.239686pt;}
.ye{bottom:786.719685pt;}
.y8f{bottom:793.279683pt;}
.y48{bottom:799.359680pt;}
.yc{bottom:806.079678pt;}
.y63{bottom:809.279676pt;}
.y6d{bottom:811.519675pt;}
.y8e{bottom:811.679675pt;}
.ycd{bottom:811.999675pt;}
.yae{bottom:813.919674pt;}
.y47{bottom:826.879669pt;}
.y15{bottom:829.600000pt;}
.y8d{bottom:829.919668pt;}
.y1b{bottom:833.919666pt;}
.y62{bottom:836.959665pt;}
.ycc{bottom:837.279665pt;}
.y6c{bottom:839.199664pt;}
.yad{bottom:841.439663pt;}
.y8c{bottom:848.319661pt;}
.y1a{bottom:850.719660pt;}
.y46{bottom:854.559658pt;}
.ycb{bottom:862.559655pt;}
.y61{bottom:864.319654pt;}
.y6b{bottom:866.719653pt;}
.y19{bottom:867.679653pt;}
.yac{bottom:869.119652pt;}
.y45{bottom:882.079647pt;}
.y18{bottom:884.479646pt;}
.y8b{bottom:885.119646pt;}
.yca{bottom:887.839645pt;}
.y60{bottom:893.119643pt;}
.y6a{bottom:894.399642pt;}
.yab{bottom:895.519642pt;}
.y44{bottom:900.479640pt;}
.y17{bottom:901.279639pt;}
.y8a{bottom:903.519639pt;}
.yc9{bottom:904.799638pt;}
.y43{bottom:919.359632pt;}
.y5f{bottom:921.919631pt;}
.y5{bottom:971.679611pt;}
.y3{bottom:975.039610pt;}
.y2{bottom:990.399604pt;}
.y1{bottom:1005.759598pt;}
.h2{height:12.160000pt;}
.hc{height:15.680000pt;}
.h6{height:16.000000pt;}
.h5{height:16.640000pt;}
.he{height:17.920000pt;}
.ha{height:24.013115pt;}
.h9{height:30.066238pt;}
.h17{height:31.861237pt;}
.h3{height:32.531237pt;}
.h13{height:34.968736pt;}
.hb{height:36.001236pt;}
.h12{height:36.027173pt;}
.h1{height:36.909048pt;}
.h11{height:38.698735pt;}
.hf{height:39.243734pt;}
.hd{height:39.904984pt;}
.h4{height:40.911234pt;}
.h10{height:42.191233pt;}
.h15{height:43.374983pt;}
.h14{height:44.468732pt;}
.h8{height:44.874982pt;}
.h18{height:46.593731pt;}
.h16{height:46.624981pt;}
.h7{height:50.748730pt;}
.h1a{height:87.348715pt;}
.h19{height:93.514963pt;}
.h0{height:1056.000000pt;}
.w5{width:3.200000pt;}
.w2{width:5.280000pt;}
.w1{width:6.080000pt;}
.w3{width:6.720000pt;}
.w6{width:29.920000pt;}
.w4{width:52.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x30{left:76.799969pt;}
.x21{left:83.359967pt;}
.x3{left:84.319966pt;}
.x1f{left:85.279966pt;}
.x2c{left:86.399965pt;}
.x1e{left:87.839965pt;}
.x1b{left:88.959964pt;}
.x1{left:95.999962pt;}
.x1c{left:99.039960pt;}
.x23{left:100.159960pt;}
.x1d{left:102.400014pt;}
.x16{left:103.679959pt;}
.x4{left:106.879957pt;}
.x32{left:110.399956pt;}
.x7{left:113.919954pt;}
.x17{left:121.920000pt;}
.x22{left:131.359947pt;}
.x31{left:134.400878pt;}
.x20{left:141.279943pt;}
.x34{left:158.399868pt;}
.x33{left:162.399884pt;}
.x18{left:173.920000pt;}
.x19{left:177.120000pt;}
.xa{left:199.999920pt;}
.xb{left:204.319918pt;}
.x1a{left:207.039917pt;}
.xf{left:209.280000pt;}
.xc{left:210.239148pt;}
.x24{left:217.279913pt;}
.x25{left:218.239913pt;}
.x10{left:228.319909pt;}
.x39{left:239.839904pt;}
.x26{left:242.239903pt;}
.x13{left:251.679899pt;}
.x27{left:260.479752pt;}
.x2b{left:263.839894pt;}
.x29{left:268.471893pt;}
.x36{left:288.479888pt;}
.x35{left:290.239884pt;}
.x28{left:308.479744pt;}
.x8{left:323.359871pt;}
.xd{left:326.079870pt;}
.x2f{left:337.439865pt;}
.x12{left:351.359859pt;}
.x11{left:354.720257pt;}
.x3e{left:358.399857pt;}
.x14{left:359.839856pt;}
.x3c{left:379.519848pt;}
.x3a{left:396.319828pt;}
.x5{left:403.679839pt;}
.x3d{left:412.159835pt;}
.xe{left:413.599835pt;}
.x3b{left:452.959776pt;}
.x9{left:497.919801pt;}
.x2a{left:508.479797pt;}
.x15{left:609.440022pt;}
.x2d{left:632.479747pt;}
.x2{left:638.399745pt;}
.x37{left:680.639890pt;}
.x38{left:695.999824pt;}
.x6{left:726.400000pt;}
.x2e{left:728.160000pt;}
}




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