
    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_a8d976c96cfba66a568779e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_4d134ecb6d13ae1d7ff7053e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126953;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_2a07da877942ee87b86c7d11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007812;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_47488befd27a3a99fb302fc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_28ee8203c8db89913636116e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_0136cb67a2d68a1c89595758.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.818359;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_66e191117f41a5ab0f9cd983.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.098145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.168000px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.228000px;}
.ls9{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.302400px;}
.ls2{letter-spacing:81.000000px;}
.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:-37.584000px;}
.ws1{word-spacing:-30.067200px;}
.ws4{word-spacing:-29.232000px;}
.ws5{word-spacing:-23.385600px;}
.ws7{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.944000px;}
.ws8{word-spacing:-16.800000px;}
.ws9{word-spacing:-16.620000px;}
.ws2{word-spacing:-14.958000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-341.565600px;}
._12{margin-left:-90.540000px;}
._3{margin-left:-1.224000px;}
._0{width:1.024800px;}
._4{width:2.647200px;}
._17{width:3.667200px;}
._e{width:4.680000px;}
._9{width:5.760000px;}
._a{width:7.272000px;}
._c{width:9.216000px;}
._d{width:10.224000px;}
._b{width:11.592000px;}
._15{width:12.672000px;}
._5{width:13.752000px;}
._6{width:14.832000px;}
._7{width:15.840000px;}
._8{width:16.992000px;}
._16{width:18.360000px;}
._14{width:21.096000px;}
._1{width:22.176000px;}
._2{width:23.328000px;}
._1a{width:24.768000px;}
._18{width:28.008000px;}
._19{width:29.520000px;}
._13{width:59.994000px;}
._f{width:71.376000px;}
._11{width:312.606000px;}
.fc6{color:rgb(201,33,30);}
.fc5{color:rgb(243,110,31);}
.fc4{color:rgb(38,26,26);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(10,55,88);}
.fs4{font-size:38.400000px;}
.fsa{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:86.400000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y23{bottom:47.641500px;}
.y4c{bottom:48.391500px;}
.y22{bottom:87.841500px;}
.y10c{bottom:92.191500px;}
.y77{bottom:92.791500px;}
.ye3{bottom:94.441500px;}
.yc8{bottom:94.741500px;}
.y4b{bottom:97.441500px;}
.y100{bottom:98.341500px;}
.ya6{bottom:98.491500px;}
.y106{bottom:99.691500px;}
.y21{bottom:103.591500px;}
.ydf{bottom:108.391500px;}
.ye2{bottom:111.691500px;}
.y10b{bottom:111.991500px;}
.y136{bottom:112.741500px;}
.y76{bottom:116.491500px;}
.yff{bottom:118.141500px;}
.yc7{bottom:118.441500px;}
.y4a{bottom:121.291500px;}
.ya5{bottom:122.341500px;}
.ycc{bottom:122.791500px;}
.y105{bottom:123.541500px;}
.yde{bottom:128.191500px;}
.yf4{bottom:129.091500px;}
.y123{bottom:129.841500px;}
.y135{bottom:132.541500px;}
.y11f{bottom:132.991500px;}
.y20{bottom:135.691500px;}
.yc6{bottom:142.291500px;}
.ycb{bottom:142.591500px;}
.yaf{bottom:143.041500px;}
.y75{bottom:144.541500px;}
.ya4{bottom:146.041500px;}
.y104{bottom:147.241500px;}
.yf3{bottom:148.891500px;}
.y49{bottom:149.341500px;}
.y134{bottom:152.341500px;}
.y122{bottom:153.541500px;}
.y11e{bottom:156.841500px;}
.y1f{bottom:159.541500px;}
.yae{bottom:162.841500px;}
.yc5{bottom:165.991500px;}
.y74{bottom:168.391500px;}
.ya3{bottom:169.891500px;}
.y103{bottom:171.091500px;}
.y133{bottom:172.141500px;}
.y48{bottom:173.041500px;}
.y121{bottom:177.391500px;}
.y11d{bottom:180.541500px;}
.y1e{bottom:183.241500px;}
.yf8{bottom:188.641500px;}
.y132{bottom:191.941500px;}
.y73{bottom:192.091500px;}
.ya2{bottom:193.591500px;}
.y102{bottom:194.791500px;}
.y5e{bottom:196.591500px;}
.yc4{bottom:198.241500px;}
.y7e{bottom:201.391500px;}
.y11c{bottom:204.391500px;}
.y1d{bottom:207.091500px;}
.yf7{bottom:208.441500px;}
.y47{bottom:210.691500px;}
.ya1{bottom:217.441500px;}
.y72{bottom:220.141500px;}
.y5d{bottom:220.291500px;}
.yfc{bottom:221.041500px;}
.y7d{bottom:221.191500px;}
.yc3{bottom:222.091500px;}
.y11b{bottom:228.091500px;}
.y131{bottom:229.591500px;}
.ydb{bottom:230.641500px;}
.y1c{bottom:230.791500px;}
.y46{bottom:234.541500px;}
.yfb{bottom:240.841500px;}
.y71{bottom:243.991500px;}
.y5c{bottom:244.141500px;}
.y120{bottom:244.891500px;}
.yc2{bottom:245.791500px;}
.ya0{bottom:249.691500px;}
.y11a{bottom:251.941500px;}
.yda{bottom:254.491500px;}
.y1b{bottom:254.641500px;}
.y45{bottom:258.241500px;}
.y5b{bottom:267.841500px;}
.yc1{bottom:269.641500px;}
.y9f{bottom:273.391500px;}
.y119{bottom:275.641500px;}
.yd9{bottom:278.191500px;}
.y1a{bottom:278.341500px;}
.yad{bottom:281.791500px;}
.y70{bottom:284.791500px;}
.y44{bottom:286.291500px;}
.yf0{bottom:286.891500px;}
.y130{bottom:290.191500px;}
.y5a{bottom:291.691500px;}
.yc0{bottom:293.341500px;}
.y9e{bottom:297.241500px;}
.yac{bottom:301.591500px;}
.yd8{bottom:302.041500px;}
.y19{bottom:302.191500px;}
.y118{bottom:307.891500px;}
.y6f{bottom:308.491500px;}
.y43{bottom:309.991500px;}
.yef{bottom:310.591500px;}
.y59{bottom:315.391500px;}
.y9d{bottom:320.941500px;}
.y108{bottom:323.791500px;}
.ybf{bottom:325.591500px;}
.yd7{bottom:325.741500px;}
.y18{bottom:325.891500px;}
.y117{bottom:331.741500px;}
.y6e{bottom:332.341500px;}
.y42{bottom:333.841500px;}
.yee{bottom:334.441500px;}
.y58{bottom:339.241500px;}
.y107{bottom:343.591500px;}
.y9c{bottom:344.791500px;}
.y12f{bottom:348.991500px;}
.ybe{bottom:349.441500px;}
.yd6{bottom:349.591500px;}
.y116{bottom:355.441500px;}
.y6d{bottom:356.041500px;}
.y41{bottom:357.541500px;}
.y17{bottom:358.141500px;}
.y57{bottom:362.941500px;}
.y9b{bottom:368.491500px;}
.y12e{bottom:372.691500px;}
.ybd{bottom:373.141500px;}
.y115{bottom:379.291500px;}
.y6c{bottom:379.891500px;}
.y40{bottom:381.391500px;}
.yd5{bottom:381.841500px;}
.y16{bottom:381.991500px;}
.y9a{bottom:392.341500px;}
.y12d{bottom:396.541500px;}
.ybc{bottom:396.991500px;}
.y114{bottom:402.991500px;}
.y6b{bottom:403.591500px;}
.y3f{bottom:405.091500px;}
.yd4{bottom:405.541500px;}
.y15{bottom:405.691500px;}
.y99{bottom:416.041500px;}
.y12c{bottom:420.241500px;}
.ybb{bottom:420.691500px;}
.y56{bottom:422.041500px;}
.y6a{bottom:427.441500px;}
.y3e{bottom:428.941500px;}
.yd3{bottom:429.391500px;}
.y14{bottom:429.541500px;}
.y113{bottom:435.241500px;}
.yed{bottom:437.941500px;}
.y98{bottom:439.891500px;}
.y12b{bottom:444.091500px;}
.yba{bottom:444.541500px;}
.y55{bottom:449.941500px;}
.y69{bottom:451.141500px;}
.y3d{bottom:452.641500px;}
.yd2{bottom:453.091500px;}
.y13{bottom:453.241500px;}
.y112{bottom:459.091500px;}
.yec{bottom:461.791500px;}
.y97{bottom:463.591500px;}
.y54{bottom:467.191500px;}
.y12a{bottom:467.791500px;}
.y68{bottom:474.991500px;}
.yb9{bottom:476.791500px;}
.yd1{bottom:476.941500px;}
.y12{bottom:477.091500px;}
.y111{bottom:482.791500px;}
.y53{bottom:484.441500px;}
.y3c{bottom:484.891500px;}
.yeb{bottom:485.491500px;}
.y96{bottom:487.441500px;}
.y129{bottom:500.041500px;}
.yb8{bottom:500.491500px;}
.yd0{bottom:500.641500px;}
.y11{bottom:500.791500px;}
.y110{bottom:506.641500px;}
.y3b{bottom:508.741500px;}
.yea{bottom:509.341500px;}
.y95{bottom:519.691500px;}
.y128{bottom:523.891500px;}
.yb7{bottom:524.341500px;}
.ycf{bottom:524.491500px;}
.y10f{bottom:530.341500px;}
.y3a{bottom:532.441500px;}
.y10{bottom:533.041500px;}
.y67{bottom:538.291500px;}
.y94{bottom:543.391500px;}
.y127{bottom:547.591500px;}
.yb6{bottom:548.041500px;}
.y39{bottom:556.291500px;}
.yf{bottom:556.891500px;}
.y66{bottom:561.991500px;}
.y63{bottom:563.341500px;}
.y93{bottom:567.241500px;}
.y126{bottom:571.441500px;}
.yb5{bottom:571.891500px;}
.y65{bottom:579.241500px;}
.y38{bottom:579.991500px;}
.ye{bottom:580.591500px;}
.y92{bottom:590.941500px;}
.yb4{bottom:595.591500px;}
.yce{bottom:596.341500px;}
.y64{bottom:596.491500px;}
.y10a{bottom:596.941500px;}
.y62{bottom:597.841500px;}
.y10e{bottom:600.541500px;}
.y37{bottom:603.841500px;}
.yd{bottom:604.441500px;}
.yf2{bottom:608.191500px;}
.ye9{bottom:612.841500px;}
.y91{bottom:614.791500px;}
.ycd{bottom:616.141500px;}
.y109{bottom:616.741500px;}
.yb3{bottom:619.441500px;}
.y10d{bottom:620.341500px;}
.yf6{bottom:623.791500px;}
.yfe{bottom:623.941500px;}
.yf1{bottom:627.991500px;}
.y125{bottom:629.791500px;}
.yca{bottom:635.491500px;}
.ye8{bottom:636.691500px;}
.yb2{bottom:643.141500px;}
.yf5{bottom:643.591500px;}
.yfd{bottom:643.741500px;}
.ye1{bottom:645.541500px;}
.y90{bottom:647.041500px;}
.yc9{bottom:655.291500px;}
.y36{bottom:657.841500px;}
.ye7{bottom:660.391500px;}
.ye0{bottom:662.791500px;}
.ydd{bottom:670.591500px;}
.y8f{bottom:670.741500px;}
.ye6{bottom:684.241500px;}
.ydc{bottom:690.391500px;}
.y124{bottom:692.641500px;}
.y8e{bottom:694.591500px;}
.yb1{bottom:698.041500px;}
.ye5{bottom:707.941500px;}
.y35{bottom:716.491500px;}
.y145{bottom:717.433500px;}
.yb0{bottom:717.841500px;}
.y8d{bottom:718.291500px;}
.ye4{bottom:731.791500px;}
.y52{bottom:734.791500px;}
.y4f{bottom:734.941500px;}
.y144{bottom:739.483500px;}
.y34{bottom:740.191500px;}
.y8c{bottom:742.141500px;}
.yc{bottom:746.641500px;}
.y51{bottom:752.041500px;}
.y4e{bottom:752.191500px;}
.y143{bottom:761.533500px;}
.y33{bottom:764.041500px;}
.y8b{bottom:765.841500px;}
.y50{bottom:769.291500px;}
.y4d{bottom:769.441500px;}
.yb{bottom:772.891500px;}
.y7c{bottom:779.341500px;}
.y142{bottom:783.583500px;}
.y32{bottom:787.741500px;}
.y8a{bottom:798.091500px;}
.ya{bottom:799.291500px;}
.y7b{bottom:803.041500px;}
.y31{bottom:811.591500px;}
.y89{bottom:821.941500px;}
.y9{bottom:825.541500px;}
.y7a{bottom:826.891500px;}
.y30{bottom:835.291500px;}
.y88{bottom:845.641500px;}
.y61{bottom:846.841500px;}
.yfa{bottom:850.591500px;}
.y8{bottom:851.941500px;}
.y141{bottom:855.841500px;}
.y2f{bottom:859.141500px;}
.y60{bottom:864.091500px;}
.y87{bottom:869.491500px;}
.yf9{bottom:874.441500px;}
.y140{bottom:875.641500px;}
.y7{bottom:878.191500px;}
.y5f{bottom:881.341500px;}
.y2e{bottom:882.841500px;}
.y101{bottom:891.391500px;}
.y86{bottom:893.191500px;}
.y13f{bottom:895.441500px;}
.y6{bottom:900.241500px;}
.y79{bottom:906.691500px;}
.y2d{bottom:915.091500px;}
.y85{bottom:925.441500px;}
.y5{bottom:926.641500px;}
.y78{bottom:930.391500px;}
.y13e{bottom:933.091500px;}
.y2c{bottom:938.941500px;}
.y84{bottom:949.291500px;}
.y13d{bottom:952.891500px;}
.yab{bottom:954.241500px;}
.y2b{bottom:962.641500px;}
.y4{bottom:968.191500px;}
.y83{bottom:972.991500px;}
.yaa{bottom:977.941500px;}
.y2a{bottom:986.491500px;}
.y13c{bottom:990.541500px;}
.y82{bottom:996.841500px;}
.ya9{bottom:1001.791500px;}
.y29{bottom:1010.191500px;}
.y13b{bottom:1010.341500px;}
.y3{bottom:1015.291500px;}
.y81{bottom:1020.541500px;}
.ya8{bottom:1025.491500px;}
.y13a{bottom:1030.141500px;}
.y28{bottom:1034.041500px;}
.y80{bottom:1044.391500px;}
.ya7{bottom:1049.341500px;}
.y27{bottom:1057.741500px;}
.y139{bottom:1067.791500px;}
.y2{bottom:1074.091500px;}
.y26{bottom:1081.591500px;}
.y138{bottom:1087.591500px;}
.y7f{bottom:1102.741500px;}
.y25{bottom:1105.291500px;}
.y137{bottom:1107.391500px;}
.y24{bottom:1164.991500px;}
.ha{height:39.128906px;}
.he{height:44.226562px;}
.hd{height:45.197754px;}
.h9{height:46.828125px;}
.h8{height:52.031250px;}
.h6{height:52.787109px;}
.hc{height:53.173828px;}
.h5{height:56.512500px;}
.h7{height:62.437500px;}
.hb{height:78.216797px;}
.h4{height:100.564453px;}
.h3{height:106.416000px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.500000px;}
.x18{left:116.700000px;}
.x28{left:117.900000px;}
.x2d{left:119.550000px;}
.x2a{left:120.750000px;}
.x2e{left:128.850000px;}
.x17{left:130.200000px;}
.xd{left:131.850000px;}
.x1c{left:134.400000px;}
.x16{left:137.700000px;}
.xf{left:140.550000px;}
.x12{left:142.650000px;}
.xb{left:148.950000px;}
.x11{left:152.250000px;}
.x2b{left:169.050000px;}
.x2c{left:174.150000px;}
.x26{left:179.100000px;}
.x25{left:183.300000px;}
.x1d{left:186.000000px;}
.x1b{left:195.150000px;}
.x1e{left:206.100000px;}
.x23{left:210.450000px;}
.x29{left:234.150000px;}
.x21{left:237.000000px;}
.x27{left:255.450000px;}
.x22{left:262.350000px;}
.xe{left:276.000000px;}
.x24{left:311.250000px;}
.x2{left:340.950000px;}
.x10{left:355.950000px;}
.x3{left:376.650000px;}
.x8{left:424.950000px;}
.x6{left:430.200000px;}
.x9{left:450.750000px;}
.xa{left:452.400000px;}
.x19{left:455.100000px;}
.x4{left:460.800000px;}
.x7{left:469.650000px;}
.x5{left:475.200000px;}
.x15{left:476.250000px;}
.x14{left:479.250000px;}
.x1a{left:483.750000px;}
.x13{left:488.850000px;}
.x1f{left:526.200000px;}
.x20{left:546.300000px;}
.x1{left:553.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.149333pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.202667pt;}
.ls9{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.268800pt;}
.ls2{letter-spacing:72.000000pt;}
.ws0{word-spacing:-33.408000pt;}
.ws1{word-spacing:-26.726400pt;}
.ws4{word-spacing:-25.984000pt;}
.ws5{word-spacing:-20.787200pt;}
.ws7{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.728000pt;}
.ws8{word-spacing:-14.933333pt;}
.ws9{word-spacing:-14.773333pt;}
.ws2{word-spacing:-13.296000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-303.613867pt;}
._12{margin-left:-80.480000pt;}
._3{margin-left:-1.088000pt;}
._0{width:0.910933pt;}
._4{width:2.353067pt;}
._17{width:3.259733pt;}
._e{width:4.160000pt;}
._9{width:5.120000pt;}
._a{width:6.464000pt;}
._c{width:8.192000pt;}
._d{width:9.088000pt;}
._b{width:10.304000pt;}
._15{width:11.264000pt;}
._5{width:12.224000pt;}
._6{width:13.184000pt;}
._7{width:14.080000pt;}
._8{width:15.104000pt;}
._16{width:16.320000pt;}
._14{width:18.752000pt;}
._1{width:19.712000pt;}
._2{width:20.736000pt;}
._1a{width:22.016000pt;}
._18{width:24.896000pt;}
._19{width:26.240000pt;}
._13{width:53.328000pt;}
._f{width:63.445333pt;}
._11{width:277.872000pt;}
.fs4{font-size:34.133333pt;}
.fsa{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:76.800000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y23{bottom:42.348000pt;}
.y4c{bottom:43.014667pt;}
.y22{bottom:78.081333pt;}
.y10c{bottom:81.948000pt;}
.y77{bottom:82.481333pt;}
.ye3{bottom:83.948000pt;}
.yc8{bottom:84.214667pt;}
.y4b{bottom:86.614667pt;}
.y100{bottom:87.414667pt;}
.ya6{bottom:87.548000pt;}
.y106{bottom:88.614667pt;}
.y21{bottom:92.081333pt;}
.ydf{bottom:96.348000pt;}
.ye2{bottom:99.281333pt;}
.y10b{bottom:99.548000pt;}
.y136{bottom:100.214667pt;}
.y76{bottom:103.548000pt;}
.yff{bottom:105.014667pt;}
.yc7{bottom:105.281333pt;}
.y4a{bottom:107.814667pt;}
.ya5{bottom:108.748000pt;}
.ycc{bottom:109.148000pt;}
.y105{bottom:109.814667pt;}
.yde{bottom:113.948000pt;}
.yf4{bottom:114.748000pt;}
.y123{bottom:115.414667pt;}
.y135{bottom:117.814667pt;}
.y11f{bottom:118.214667pt;}
.y20{bottom:120.614667pt;}
.yc6{bottom:126.481333pt;}
.ycb{bottom:126.748000pt;}
.yaf{bottom:127.148000pt;}
.y75{bottom:128.481333pt;}
.ya4{bottom:129.814667pt;}
.y104{bottom:130.881333pt;}
.yf3{bottom:132.348000pt;}
.y49{bottom:132.748000pt;}
.y134{bottom:135.414667pt;}
.y122{bottom:136.481333pt;}
.y11e{bottom:139.414667pt;}
.y1f{bottom:141.814667pt;}
.yae{bottom:144.748000pt;}
.yc5{bottom:147.548000pt;}
.y74{bottom:149.681333pt;}
.ya3{bottom:151.014667pt;}
.y103{bottom:152.081333pt;}
.y133{bottom:153.014667pt;}
.y48{bottom:153.814667pt;}
.y121{bottom:157.681333pt;}
.y11d{bottom:160.481333pt;}
.y1e{bottom:162.881333pt;}
.yf8{bottom:167.681333pt;}
.y132{bottom:170.614667pt;}
.y73{bottom:170.748000pt;}
.ya2{bottom:172.081333pt;}
.y102{bottom:173.148000pt;}
.y5e{bottom:174.748000pt;}
.yc4{bottom:176.214667pt;}
.y7e{bottom:179.014667pt;}
.y11c{bottom:181.681333pt;}
.y1d{bottom:184.081333pt;}
.yf7{bottom:185.281333pt;}
.y47{bottom:187.281333pt;}
.ya1{bottom:193.281333pt;}
.y72{bottom:195.681333pt;}
.y5d{bottom:195.814667pt;}
.yfc{bottom:196.481333pt;}
.y7d{bottom:196.614667pt;}
.yc3{bottom:197.414667pt;}
.y11b{bottom:202.748000pt;}
.y131{bottom:204.081333pt;}
.ydb{bottom:205.014667pt;}
.y1c{bottom:205.148000pt;}
.y46{bottom:208.481333pt;}
.yfb{bottom:214.081333pt;}
.y71{bottom:216.881333pt;}
.y5c{bottom:217.014667pt;}
.y120{bottom:217.681333pt;}
.yc2{bottom:218.481333pt;}
.ya0{bottom:221.948000pt;}
.y11a{bottom:223.948000pt;}
.yda{bottom:226.214667pt;}
.y1b{bottom:226.348000pt;}
.y45{bottom:229.548000pt;}
.y5b{bottom:238.081333pt;}
.yc1{bottom:239.681333pt;}
.y9f{bottom:243.014667pt;}
.y119{bottom:245.014667pt;}
.yd9{bottom:247.281333pt;}
.y1a{bottom:247.414667pt;}
.yad{bottom:250.481333pt;}
.y70{bottom:253.148000pt;}
.y44{bottom:254.481333pt;}
.yf0{bottom:255.014667pt;}
.y130{bottom:257.948000pt;}
.y5a{bottom:259.281333pt;}
.yc0{bottom:260.748000pt;}
.y9e{bottom:264.214667pt;}
.yac{bottom:268.081333pt;}
.yd8{bottom:268.481333pt;}
.y19{bottom:268.614667pt;}
.y118{bottom:273.681333pt;}
.y6f{bottom:274.214667pt;}
.y43{bottom:275.548000pt;}
.yef{bottom:276.081333pt;}
.y59{bottom:280.348000pt;}
.y9d{bottom:285.281333pt;}
.y108{bottom:287.814667pt;}
.ybf{bottom:289.414667pt;}
.yd7{bottom:289.548000pt;}
.y18{bottom:289.681333pt;}
.y117{bottom:294.881333pt;}
.y6e{bottom:295.414667pt;}
.y42{bottom:296.748000pt;}
.yee{bottom:297.281333pt;}
.y58{bottom:301.548000pt;}
.y107{bottom:305.414667pt;}
.y9c{bottom:306.481333pt;}
.y12f{bottom:310.214667pt;}
.ybe{bottom:310.614667pt;}
.yd6{bottom:310.748000pt;}
.y116{bottom:315.948000pt;}
.y6d{bottom:316.481333pt;}
.y41{bottom:317.814667pt;}
.y17{bottom:318.348000pt;}
.y57{bottom:322.614667pt;}
.y9b{bottom:327.548000pt;}
.y12e{bottom:331.281333pt;}
.ybd{bottom:331.681333pt;}
.y115{bottom:337.148000pt;}
.y6c{bottom:337.681333pt;}
.y40{bottom:339.014667pt;}
.yd5{bottom:339.414667pt;}
.y16{bottom:339.548000pt;}
.y9a{bottom:348.748000pt;}
.y12d{bottom:352.481333pt;}
.ybc{bottom:352.881333pt;}
.y114{bottom:358.214667pt;}
.y6b{bottom:358.748000pt;}
.y3f{bottom:360.081333pt;}
.yd4{bottom:360.481333pt;}
.y15{bottom:360.614667pt;}
.y99{bottom:369.814667pt;}
.y12c{bottom:373.548000pt;}
.ybb{bottom:373.948000pt;}
.y56{bottom:375.148000pt;}
.y6a{bottom:379.948000pt;}
.y3e{bottom:381.281333pt;}
.yd3{bottom:381.681333pt;}
.y14{bottom:381.814667pt;}
.y113{bottom:386.881333pt;}
.yed{bottom:389.281333pt;}
.y98{bottom:391.014667pt;}
.y12b{bottom:394.748000pt;}
.yba{bottom:395.148000pt;}
.y55{bottom:399.948000pt;}
.y69{bottom:401.014667pt;}
.y3d{bottom:402.348000pt;}
.yd2{bottom:402.748000pt;}
.y13{bottom:402.881333pt;}
.y112{bottom:408.081333pt;}
.yec{bottom:410.481333pt;}
.y97{bottom:412.081333pt;}
.y54{bottom:415.281333pt;}
.y12a{bottom:415.814667pt;}
.y68{bottom:422.214667pt;}
.yb9{bottom:423.814667pt;}
.yd1{bottom:423.948000pt;}
.y12{bottom:424.081333pt;}
.y111{bottom:429.148000pt;}
.y53{bottom:430.614667pt;}
.y3c{bottom:431.014667pt;}
.yeb{bottom:431.548000pt;}
.y96{bottom:433.281333pt;}
.y129{bottom:444.481333pt;}
.yb8{bottom:444.881333pt;}
.yd0{bottom:445.014667pt;}
.y11{bottom:445.148000pt;}
.y110{bottom:450.348000pt;}
.y3b{bottom:452.214667pt;}
.yea{bottom:452.748000pt;}
.y95{bottom:461.948000pt;}
.y128{bottom:465.681333pt;}
.yb7{bottom:466.081333pt;}
.ycf{bottom:466.214667pt;}
.y10f{bottom:471.414667pt;}
.y3a{bottom:473.281333pt;}
.y10{bottom:473.814667pt;}
.y67{bottom:478.481333pt;}
.y94{bottom:483.014667pt;}
.y127{bottom:486.748000pt;}
.yb6{bottom:487.148000pt;}
.y39{bottom:494.481333pt;}
.yf{bottom:495.014667pt;}
.y66{bottom:499.548000pt;}
.y63{bottom:500.748000pt;}
.y93{bottom:504.214667pt;}
.y126{bottom:507.948000pt;}
.yb5{bottom:508.348000pt;}
.y65{bottom:514.881333pt;}
.y38{bottom:515.548000pt;}
.ye{bottom:516.081333pt;}
.y92{bottom:525.281333pt;}
.yb4{bottom:529.414667pt;}
.yce{bottom:530.081333pt;}
.y64{bottom:530.214667pt;}
.y10a{bottom:530.614667pt;}
.y62{bottom:531.414667pt;}
.y10e{bottom:533.814667pt;}
.y37{bottom:536.748000pt;}
.yd{bottom:537.281333pt;}
.yf2{bottom:540.614667pt;}
.ye9{bottom:544.748000pt;}
.y91{bottom:546.481333pt;}
.ycd{bottom:547.681333pt;}
.y109{bottom:548.214667pt;}
.yb3{bottom:550.614667pt;}
.y10d{bottom:551.414667pt;}
.yf6{bottom:554.481333pt;}
.yfe{bottom:554.614667pt;}
.yf1{bottom:558.214667pt;}
.y125{bottom:559.814667pt;}
.yca{bottom:564.881333pt;}
.ye8{bottom:565.948000pt;}
.yb2{bottom:571.681333pt;}
.yf5{bottom:572.081333pt;}
.yfd{bottom:572.214667pt;}
.ye1{bottom:573.814667pt;}
.y90{bottom:575.148000pt;}
.yc9{bottom:582.481333pt;}
.y36{bottom:584.748000pt;}
.ye7{bottom:587.014667pt;}
.ye0{bottom:589.148000pt;}
.ydd{bottom:596.081333pt;}
.y8f{bottom:596.214667pt;}
.ye6{bottom:608.214667pt;}
.ydc{bottom:613.681333pt;}
.y124{bottom:615.681333pt;}
.y8e{bottom:617.414667pt;}
.yb1{bottom:620.481333pt;}
.ye5{bottom:629.281333pt;}
.y35{bottom:636.881333pt;}
.y145{bottom:637.718667pt;}
.yb0{bottom:638.081333pt;}
.y8d{bottom:638.481333pt;}
.ye4{bottom:650.481333pt;}
.y52{bottom:653.148000pt;}
.y4f{bottom:653.281333pt;}
.y144{bottom:657.318667pt;}
.y34{bottom:657.948000pt;}
.y8c{bottom:659.681333pt;}
.yc{bottom:663.681333pt;}
.y51{bottom:668.481333pt;}
.y4e{bottom:668.614667pt;}
.y143{bottom:676.918667pt;}
.y33{bottom:679.148000pt;}
.y8b{bottom:680.748000pt;}
.y50{bottom:683.814667pt;}
.y4d{bottom:683.948000pt;}
.yb{bottom:687.014667pt;}
.y7c{bottom:692.748000pt;}
.y142{bottom:696.518667pt;}
.y32{bottom:700.214667pt;}
.y8a{bottom:709.414667pt;}
.ya{bottom:710.481333pt;}
.y7b{bottom:713.814667pt;}
.y31{bottom:721.414667pt;}
.y89{bottom:730.614667pt;}
.y9{bottom:733.814667pt;}
.y7a{bottom:735.014667pt;}
.y30{bottom:742.481333pt;}
.y88{bottom:751.681333pt;}
.y61{bottom:752.748000pt;}
.yfa{bottom:756.081333pt;}
.y8{bottom:757.281333pt;}
.y141{bottom:760.748000pt;}
.y2f{bottom:763.681333pt;}
.y60{bottom:768.081333pt;}
.y87{bottom:772.881333pt;}
.yf9{bottom:777.281333pt;}
.y140{bottom:778.348000pt;}
.y7{bottom:780.614667pt;}
.y5f{bottom:783.414667pt;}
.y2e{bottom:784.748000pt;}
.y101{bottom:792.348000pt;}
.y86{bottom:793.948000pt;}
.y13f{bottom:795.948000pt;}
.y6{bottom:800.214667pt;}
.y79{bottom:805.948000pt;}
.y2d{bottom:813.414667pt;}
.y85{bottom:822.614667pt;}
.y5{bottom:823.681333pt;}
.y78{bottom:827.014667pt;}
.y13e{bottom:829.414667pt;}
.y2c{bottom:834.614667pt;}
.y84{bottom:843.814667pt;}
.y13d{bottom:847.014667pt;}
.yab{bottom:848.214667pt;}
.y2b{bottom:855.681333pt;}
.y4{bottom:860.614667pt;}
.y83{bottom:864.881333pt;}
.yaa{bottom:869.281333pt;}
.y2a{bottom:876.881333pt;}
.y13c{bottom:880.481333pt;}
.y82{bottom:886.081333pt;}
.ya9{bottom:890.481333pt;}
.y29{bottom:897.948000pt;}
.y13b{bottom:898.081333pt;}
.y3{bottom:902.481333pt;}
.y81{bottom:907.148000pt;}
.ya8{bottom:911.548000pt;}
.y13a{bottom:915.681333pt;}
.y28{bottom:919.148000pt;}
.y80{bottom:928.348000pt;}
.ya7{bottom:932.748000pt;}
.y27{bottom:940.214667pt;}
.y139{bottom:949.148000pt;}
.y2{bottom:954.748000pt;}
.y26{bottom:961.414667pt;}
.y138{bottom:966.748000pt;}
.y7f{bottom:980.214667pt;}
.y25{bottom:982.481333pt;}
.y137{bottom:984.348000pt;}
.y24{bottom:1035.548000pt;}
.ha{height:34.781250pt;}
.he{height:39.312500pt;}
.hd{height:40.175781pt;}
.h9{height:41.625000pt;}
.h8{height:46.250000pt;}
.h6{height:46.921875pt;}
.hc{height:47.265625pt;}
.h5{height:50.233333pt;}
.h7{height:55.500000pt;}
.hb{height:69.526042pt;}
.h4{height:89.390625pt;}
.h3{height:94.592000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.666667pt;}
.x18{left:103.733333pt;}
.x28{left:104.800000pt;}
.x2d{left:106.266667pt;}
.x2a{left:107.333333pt;}
.x2e{left:114.533333pt;}
.x17{left:115.733333pt;}
.xd{left:117.200000pt;}
.x1c{left:119.466667pt;}
.x16{left:122.400000pt;}
.xf{left:124.933333pt;}
.x12{left:126.800000pt;}
.xb{left:132.400000pt;}
.x11{left:135.333333pt;}
.x2b{left:150.266667pt;}
.x2c{left:154.800000pt;}
.x26{left:159.200000pt;}
.x25{left:162.933333pt;}
.x1d{left:165.333333pt;}
.x1b{left:173.466667pt;}
.x1e{left:183.200000pt;}
.x23{left:187.066667pt;}
.x29{left:208.133333pt;}
.x21{left:210.666667pt;}
.x27{left:227.066667pt;}
.x22{left:233.200000pt;}
.xe{left:245.333333pt;}
.x24{left:276.666667pt;}
.x2{left:303.066667pt;}
.x10{left:316.400000pt;}
.x3{left:334.800000pt;}
.x8{left:377.733333pt;}
.x6{left:382.400000pt;}
.x9{left:400.666667pt;}
.xa{left:402.133333pt;}
.x19{left:404.533333pt;}
.x4{left:409.600000pt;}
.x7{left:417.466667pt;}
.x5{left:422.400000pt;}
.x15{left:423.333333pt;}
.x14{left:426.000000pt;}
.x1a{left:430.000000pt;}
.x13{left:434.533333pt;}
.x1f{left:467.733333pt;}
.x20{left:485.600000pt;}
.x1{left:491.733333pt;}
}




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