
    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_d6ce6fb4de875e02db356c8d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_bad8417f9f2b7342fc13b85a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.756836;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_764b70e70474d6814246a6c3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.085938;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_ac7c0e864537e0d38d81980d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_7bbd1c6a15ea8aaa92c8dcc3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_b4fb87d3f2504597be1bc150.woff')format("woff");}.ff6{font-family:ff6;line-height:0.769531;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_504df93fdcaa64ea5a390071.woff')format("woff");}.ff7{font-family:ff7;line-height:0.747070;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_2b94c6e21007cbee7a2cc9d9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.771484;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_b5e9bfbe36ae966c303db26a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_1debd06bb5f2d0e2f42124b8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_a9843b64d56551c089816304.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.559969px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.320099px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009104px;}
.ls4{letter-spacing:0.398474px;}
.ls1{letter-spacing:0.515712px;}
.ls7{letter-spacing:0.653151px;}
.ls8{letter-spacing:0.653214px;}
.ls3{letter-spacing:0.686546px;}
.ls5{letter-spacing:55.505105px;}
.ls6{letter-spacing:798.114602px;}
.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;}
}
.ws2{word-spacing:-12.615983px;}
.ws3{word-spacing:-11.381845px;}
.ws1{word-spacing:-10.293835px;}
.ws0{word-spacing:-10.284731px;}
.ws5{word-spacing:-7.405032px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-3.753382px;}
._a{margin-left:-2.725165px;}
._3{margin-left:-1.163196px;}
._1{width:1.616003px;}
._2{width:3.280870px;}
._4{width:5.024164px;}
._d{width:6.678642px;}
._f{width:7.805533px;}
._7{width:9.109858px;}
._e{width:10.953047px;}
._13{width:14.242243px;}
._12{width:15.382527px;}
._11{width:16.888101px;}
._1a{width:18.814245px;}
._1b{width:19.834533px;}
._20{width:21.178653px;}
._6{width:22.234054px;}
._5{width:23.259388px;}
._8{width:25.014698px;}
._9{width:26.513864px;}
._17{width:27.904509px;}
._1e{width:28.927662px;}
._21{width:29.983930px;}
._1d{width:31.059527px;}
._1f{width:32.621211px;}
._1c{width:34.048200px;}
._19{width:36.361857px;}
._18{width:38.034392px;}
._c{width:39.321935px;}
._b{width:40.694610px;}
._14{width:43.228044px;}
._15{width:48.286527px;}
._16{width:49.622613px;}
._0{width:956.080217px;}
.fc4{color:rgb(21,41,118);}
.fc3{color:rgb(34,161,202);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(22,41,118);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.073850px;}
.fs6{font-size:36.477990px;}
.fs1{font-size:50.663700px;}
.fs5{font-size:56.068200px;}
.fs0{font-size:62.147700px;}
.fs3{font-size:67.551750px;}
.fs2{font-size:79.035746px;}
.fs4{font-size:101.327850px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.160006px;}
.y34{bottom:3.779983px;}
.y22{bottom:4.319996px;}
.yc{bottom:54.539977px;}
.y41{bottom:55.259994px;}
.yb{bottom:69.840019px;}
.y40{bottom:73.620002px;}
.ya{bottom:85.500000px;}
.y9f{bottom:90.539977px;}
.ybb{bottom:94.860008px;}
.y72{bottom:99.539977px;}
.y9{bottom:100.799973px;}
.yd4{bottom:104.039977px;}
.y64{bottom:104.580025px;}
.yb7{bottom:106.200027px;}
.yba{bottom:106.740006px;}
.ybe{bottom:108.899986px;}
.y143{bottom:109.799973px;}
.y9e{bottom:110.340019px;}
.y8{bottom:116.460022px;}
.y9d{bottom:122.220017px;}
.yb6{bottom:125.820030px;}
.y71{bottom:127.980011px;}
.y7d{bottom:129.960022px;}
.y142{bottom:130.139992px;}
.y129{bottom:130.320030px;}
.y7{bottom:131.759994px;}
.yd3{bottom:132.299973px;}
.y63{bottom:133.019989px;}
.yb4{bottom:134.460022px;}
.yb9{bottom:135.000000px;}
.ybd{bottom:135.360008px;}
.yfe{bottom:136.799973px;}
.yb5{bottom:137.700027px;}
.y6{bottom:147.419975px;}
.y141{bottom:150.659981px;}
.y128{bottom:150.840019px;}
.y70{bottom:156.240006px;}
.yfd{bottom:157.139992px;}
.y7c{bottom:158.399986px;}
.yd2{bottom:160.740006px;}
.y62{bottom:161.460022px;}
.ybc{bottom:161.820030px;}
.y5{bottom:162.899986px;}
.y9c{bottom:163.440033px;}
.y140{bottom:171.179970px;}
.y127{bottom:171.360008px;}
.yfc{bottom:177.659981px;}
.y4{bottom:178.379998px;}
.y6f{bottom:184.679970px;}
.y7b{bottom:186.840019px;}
.yd1{bottom:189.179970px;}
.y61{bottom:189.899986px;}
.yb3{bottom:191.159981px;}
.y13f{bottom:191.340019px;}
.y126{bottom:191.519989px;}
.y9b{bottom:191.700027px;}
.y3{bottom:193.860008px;}
.yfb{bottom:198.000000px;}
.y2{bottom:208.620002px;}
.y13e{bottom:211.860008px;}
.y125{bottom:212.039977px;}
.y6e{bottom:213.120002px;}
.y7a{bottom:215.279983px;}
.yd0{bottom:217.620002px;}
.y60{bottom:218.340019px;}
.yfa{bottom:218.519989px;}
.yb2{bottom:219.600013px;}
.y9a{bottom:220.139992px;}
.y13d{bottom:232.379998px;}
.y124{bottom:232.559967px;}
.y20{bottom:237.600013px;}
.yf9{bottom:239.039977px;}
.y6d{bottom:241.559967px;}
.y79{bottom:243.720017px;}
.ycf{bottom:246.059967px;}
.y5f{bottom:246.600013px;}
.yb1{bottom:248.039977px;}
.y99{bottom:248.580025px;}
.y13c{bottom:252.899986px;}
.y123{bottom:253.080025px;}
.yf8{bottom:259.379998px;}
.y1f{bottom:266.039977px;}
.y6c{bottom:270.000000px;}
.y78{bottom:271.980011px;}
.y13b{bottom:273.059967px;}
.y122{bottom:273.240006px;}
.yce{bottom:274.500000px;}
.y5e{bottom:275.039977px;}
.yb0{bottom:276.299973px;}
.y98{bottom:277.019989px;}
.yf7{bottom:279.720017px;}
.y13a{bottom:293.580025px;}
.y121{bottom:293.759994px;}
.y1e{bottom:294.480011px;}
.y6b{bottom:298.259994px;}
.yf6{bottom:300.240006px;}
.y77{bottom:300.419975px;}
.ycd{bottom:302.759994px;}
.y5d{bottom:303.480011px;}
.yaf{bottom:304.740006px;}
.y97{bottom:305.460022px;}
.y139{bottom:314.100013px;}
.y120{bottom:314.279983px;}
.yf5{bottom:320.759994px;}
.y1d{bottom:322.919975px;}
.y6a{bottom:326.519989px;}
.y76{bottom:328.860008px;}
.ycc{bottom:331.200027px;}
.y5c{bottom:331.919975px;}
.yae{bottom:333.179970px;}
.y96{bottom:333.899986px;}
.y138{bottom:334.620002px;}
.y11f{bottom:334.799973px;}
.yf4{bottom:341.100013px;}
.y1c{bottom:351.360008px;}
.y137{bottom:354.779983px;}
.y69{bottom:354.960022px;}
.y11e{bottom:355.139992px;}
.y75{bottom:357.299973px;}
.ycb{bottom:359.639992px;}
.y5b{bottom:360.179970px;}
.yf3{bottom:361.440033px;}
.yad{bottom:361.620002px;}
.y95{bottom:362.159981px;}
.y136{bottom:375.299973px;}
.y11d{bottom:375.480011px;}
.y1b{bottom:380.879998px;}
.yf2{bottom:381.960022px;}
.y68{bottom:383.399986px;}
.y74{bottom:386.820030px;}
.yca{bottom:388.080025px;}
.y5a{bottom:388.620002px;}
.yac{bottom:390.059967px;}
.y94{bottom:390.600013px;}
.y135{bottom:395.820030px;}
.y11c{bottom:396.000000px;}
.yf1{bottom:402.480011px;}
.y1a{bottom:411.840019px;}
.y73{bottom:416.159981px;}
.y134{bottom:416.340019px;}
.yc9{bottom:416.519989px;}
.y59{bottom:417.059967px;}
.yab{bottom:418.500000px;}
.y93{bottom:419.039977px;}
.yf0{bottom:422.820030px;}
.y133{bottom:436.679970px;}
.y11b{bottom:436.860008px;}
.y32{bottom:439.200027px;}
.y67{bottom:440.279983px;}
.y3c{bottom:442.259994px;}
.yef{bottom:443.159981px;}
.yc8{bottom:444.779983px;}
.y58{bottom:445.320030px;}
.yaa{bottom:446.940033px;}
.y92{bottom:447.480011px;}
.y132{bottom:457.019989px;}
.y11a{bottom:457.200027px;}
.y31{bottom:458.279983px;}
.y3b{bottom:460.980011px;}
.yee{bottom:463.679970px;}
.y66{bottom:469.980011px;}
.yc7{bottom:473.220017px;}
.y57{bottom:473.759994px;}
.ya9{bottom:475.200027px;}
.y91{bottom:475.919975px;}
.y30{bottom:477.179970px;}
.y131{bottom:477.539977px;}
.y119{bottom:477.720017px;}
.y3a{bottom:479.340019px;}
.yed{bottom:484.200027px;}
.y2f{bottom:496.080025px;}
.y39{bottom:498.059967px;}
.y118{bottom:498.240006px;}
.y65{bottom:500.940033px;}
.yc6{bottom:501.480011px;}
.y56{bottom:502.200027px;}
.ya8{bottom:503.639992px;}
.y90{bottom:504.179970px;}
.yec{bottom:504.539977px;}
.y2e{bottom:515.159981px;}
.y38{bottom:516.600013px;}
.y130{bottom:518.399986px;}
.y117{bottom:518.580025px;}
.yeb{bottom:524.879998px;}
.yc5{bottom:529.919975px;}
.y55{bottom:530.639992px;}
.ya7{bottom:532.080025px;}
.y8f{bottom:532.620002px;}
.y2d{bottom:534.059967px;}
.y37{bottom:535.139992px;}
.y12f{bottom:538.740006px;}
.y116{bottom:538.919975px;}
.yea{bottom:545.399986px;}
.y2c{bottom:552.960022px;}
.y36{bottom:553.860008px;}
.yc4{bottom:558.360008px;}
.y54{bottom:559.080025px;}
.y12e{bottom:559.259994px;}
.y115{bottom:559.440033px;}
.ya6{bottom:560.519989px;}
.y8e{bottom:560.879998px;}
.ye9{bottom:565.919975px;}
.y2b{bottom:571.860008px;}
.y35{bottom:572.220017px;}
.y12d{bottom:579.779983px;}
.y114{bottom:579.960022px;}
.y33{bottom:585.720017px;}
.ye8{bottom:586.259994px;}
.yc3{bottom:586.799973px;}
.y53{bottom:587.519989px;}
.ya5{bottom:588.779983px;}
.y8d{bottom:589.320030px;}
.y2a{bottom:590.940033px;}
.y12c{bottom:600.120002px;}
.y113{bottom:600.299973px;}
.ye7{bottom:606.600013px;}
.y29{bottom:609.659981px;}
.yc2{bottom:615.240006px;}
.y52{bottom:615.779983px;}
.ya4{bottom:617.220017px;}
.y8c{bottom:617.759994px;}
.y12b{bottom:620.459988px;}
.y112{bottom:620.639992px;}
.ye6{bottom:627.120002px;}
.y28{bottom:628.560001px;}
.y12a{bottom:640.980011px;}
.y111{bottom:641.160015px;}
.yc1{bottom:643.680004px;}
.y51{bottom:644.220017px;}
.ya3{bottom:645.480011px;}
.y8b{bottom:646.199993px;}
.y27{bottom:647.639992px;}
.y110{bottom:661.680004px;}
.y26{bottom:666.540012px;}
.ye5{bottom:667.980011px;}
.y50{bottom:672.660015px;}
.yc0{bottom:673.199993px;}
.ya2{bottom:673.920010px;}
.y8a{bottom:674.639992px;}
.y10f{bottom:682.019989px;}
.y25{bottom:685.439999px;}
.ye4{bottom:688.500000px;}
.y4f{bottom:701.100013px;}
.ybf{bottom:701.459988px;}
.ya1{bottom:702.360008px;}
.y89{bottom:703.079990px;}
.y24{bottom:704.339985px;}
.ye3{bottom:708.839985px;}
.y10e{bottom:722.879998px;}
.y23{bottom:723.420010px;}
.ye2{bottom:729.360008px;}
.y4e{bottom:729.540012px;}
.ya0{bottom:730.800007px;}
.y88{bottom:731.339985px;}
.y21{bottom:738.000000px;}
.y10d{bottom:743.399986px;}
.ye1{bottom:749.699993px;}
.y4d{bottom:757.800007px;}
.y87{bottom:759.779983px;}
.y10c{bottom:763.740006px;}
.ye0{bottom:770.220017px;}
.y19{bottom:781.019989px;}
.y10b{bottom:784.079990px;}
.y4c{bottom:786.240006px;}
.y86{bottom:788.220017px;}
.ydf{bottom:790.560001px;}
.y18{bottom:801.360008px;}
.y10a{bottom:804.600013px;}
.yde{bottom:811.079990px;}
.y4b{bottom:814.500000px;}
.y85{bottom:816.660015px;}
.y17{bottom:820.079990px;}
.y109{bottom:825.120002px;}
.ydd{bottom:831.420010px;}
.y16{bottom:839.160015px;}
.y4a{bottom:842.939999px;}
.yb8{bottom:843.300007px;}
.y84{bottom:845.100013px;}
.y108{bottom:845.459988px;}
.ydc{bottom:851.939999px;}
.y15{bottom:858.060001px;}
.y107{bottom:865.800007px;}
.y49{bottom:871.379998px;}
.ydb{bottom:872.279983px;}
.y83{bottom:873.540012px;}
.y14{bottom:884.699993px;}
.y106{bottom:886.319996px;}
.yda{bottom:892.800007px;}
.y48{bottom:899.819996px;}
.y82{bottom:901.800007px;}
.y105{bottom:906.840002px;}
.y13{bottom:910.620002px;}
.yd9{bottom:913.139992px;}
.yd5{bottom:927.180004px;}
.y47{bottom:928.259994px;}
.y81{bottom:930.060001px;}
.yd8{bottom:933.659998px;}
.y12{bottom:946.259994px;}
.y104{bottom:947.520006px;}
.yd7{bottom:954.000000px;}
.y46{bottom:956.699993px;}
.y80{bottom:958.500000px;}
.y103{bottom:968.039995px;}
.y144{bottom:980.639992px;}
.y11{bottom:981.900003px;}
.yd6{bottom:983.520006px;}
.y45{bottom:984.960004px;}
.y7f{bottom:986.939999px;}
.y102{bottom:988.560001px;}
.y101{bottom:1008.900003px;}
.y44{bottom:1013.400003px;}
.y7e{bottom:1013.759994px;}
.y10{bottom:1020.960004px;}
.y100{bottom:1029.240006px;}
.y43{bottom:1041.840002px;}
.yff{bottom:1049.760003px;}
.yf{bottom:1050.840002px;}
.y1{bottom:1065.239997px;}
.yd{bottom:1069.379998px;}
.y42{bottom:1070.280001px;}
.y3f{bottom:1088.099997px;}
.y3e{bottom:1106.280001px;}
.y3d{bottom:1124.640000px;}
.h5{height:16.740004px;}
.he{height:17.100013px;}
.hd{height:18.899987px;}
.h17{height:26.931682px;}
.h14{height:27.350221px;}
.h2{height:37.849346px;}
.h4{height:43.910189px;}
.h3{height:43.984404px;}
.h11{height:45.821791px;}
.h15{height:46.428702px;}
.ha{height:46.974922px;}
.h10{height:48.594265px;}
.hf{height:48.676396px;}
.h12{height:51.059624px;}
.hc{height:53.863363px;}
.h18{height:53.935270px;}
.h13{height:53.935544px;}
.h6{height:53.954400px;}
.h16{height:53.988839px;}
.h8{height:58.547049px;}
.hb{height:58.646002px;}
.h1{height:61.813899px;}
.h7{height:68.500219px;}
.h9{height:87.969198px;}
.h0{height:1188.000000px;}
.w2{width:3.240006px;}
.w8{width:8.819962px;}
.w6{width:9.720016px;}
.w4{width:9.720017px;}
.w3{width:45.539977px;}
.w1{width:51.480011px;}
.w5{width:60.659998px;}
.w7{width:63.180038px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:100.799998px;}
.x1{left:140.400003px;}
.x7{left:150.479994px;}
.x6{left:168.300007px;}
.x11{left:180.000000px;}
.x10{left:191.159998px;}
.x8{left:211.139992px;}
.xe{left:219.060001px;}
.xf{left:244.439999px;}
.xd{left:343.439999px;}
.xb{left:403.740006px;}
.x9{left:644.759994px;}
.x2{left:678.419975px;}
.xa{left:707.940033px;}
.x3{left:729.899987px;}
.x4{left:733.139992px;}
.xc{left:761.759994px;}
.x5{left:778.679970px;}
@media print{
.v2{vertical-align:-14.719972pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.840088pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008092pt;}
.ls4{letter-spacing:0.354199pt;}
.ls1{letter-spacing:0.458411pt;}
.ls7{letter-spacing:0.580578pt;}
.ls8{letter-spacing:0.580634pt;}
.ls3{letter-spacing:0.610263pt;}
.ls5{letter-spacing:49.337871pt;}
.ls6{letter-spacing:709.435202pt;}
.ws2{word-spacing:-11.214207pt;}
.ws3{word-spacing:-10.117195pt;}
.ws1{word-spacing:-9.150075pt;}
.ws0{word-spacing:-9.141983pt;}
.ws5{word-spacing:-6.582251pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-3.336340pt;}
._a{margin-left:-2.422369pt;}
._3{margin-left:-1.033952pt;}
._1{width:1.436447pt;}
._2{width:2.916329pt;}
._4{width:4.465924pt;}
._d{width:5.936570pt;}
._f{width:6.938252pt;}
._7{width:8.097652pt;}
._e{width:9.736041pt;}
._13{width:12.659771pt;}
._12{width:13.673357pt;}
._11{width:15.011645pt;}
._1a{width:16.723773pt;}
._1b{width:17.630696pt;}
._20{width:18.825470pt;}
._6{width:19.763604pt;}
._5{width:20.675012pt;}
._8{width:22.235287pt;}
._9{width:23.567879pt;}
._17{width:24.804008pt;}
._1e{width:25.713477pt;}
._21{width:26.652382pt;}
._1d{width:27.608468pt;}
._1f{width:28.996632pt;}
._1c{width:30.265067pt;}
._19{width:32.321651pt;}
._18{width:33.808349pt;}
._c{width:34.952831pt;}
._b{width:36.172987pt;}
._14{width:38.424928pt;}
._15{width:42.921357pt;}
._16{width:44.108990pt;}
._0{width:849.849082pt;}
.fs7{font-size:27.621200pt;}
.fs6{font-size:32.424880pt;}
.fs1{font-size:45.034400pt;}
.fs5{font-size:49.838400pt;}
.fs0{font-size:55.242400pt;}
.fs3{font-size:60.046000pt;}
.fs2{font-size:70.253996pt;}
.fs4{font-size:90.069200pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:1.920005pt;}
.y34{bottom:3.359985pt;}
.y22{bottom:3.839996pt;}
.yc{bottom:48.479980pt;}
.y41{bottom:49.119995pt;}
.yb{bottom:62.080017pt;}
.y40{bottom:65.440002pt;}
.ya{bottom:76.000000pt;}
.y9f{bottom:80.479980pt;}
.ybb{bottom:84.320007pt;}
.y72{bottom:88.479980pt;}
.y9{bottom:89.599976pt;}
.yd4{bottom:92.479980pt;}
.y64{bottom:92.960022pt;}
.yb7{bottom:94.400024pt;}
.yba{bottom:94.880005pt;}
.ybe{bottom:96.799988pt;}
.y143{bottom:97.599976pt;}
.y9e{bottom:98.080017pt;}
.y8{bottom:103.520020pt;}
.y9d{bottom:108.640015pt;}
.yb6{bottom:111.840027pt;}
.y71{bottom:113.760010pt;}
.y7d{bottom:115.520020pt;}
.y142{bottom:115.679993pt;}
.y129{bottom:115.840027pt;}
.y7{bottom:117.119995pt;}
.yd3{bottom:117.599976pt;}
.y63{bottom:118.239990pt;}
.yb4{bottom:119.520020pt;}
.yb9{bottom:120.000000pt;}
.ybd{bottom:120.320007pt;}
.yfe{bottom:121.599976pt;}
.yb5{bottom:122.400024pt;}
.y6{bottom:131.039978pt;}
.y141{bottom:133.919983pt;}
.y128{bottom:134.080017pt;}
.y70{bottom:138.880005pt;}
.yfd{bottom:139.679993pt;}
.y7c{bottom:140.799988pt;}
.yd2{bottom:142.880005pt;}
.y62{bottom:143.520020pt;}
.ybc{bottom:143.840027pt;}
.y5{bottom:144.799988pt;}
.y9c{bottom:145.280029pt;}
.y140{bottom:152.159973pt;}
.y127{bottom:152.320007pt;}
.yfc{bottom:157.919983pt;}
.y4{bottom:158.559998pt;}
.y6f{bottom:164.159973pt;}
.y7b{bottom:166.080017pt;}
.yd1{bottom:168.159973pt;}
.y61{bottom:168.799988pt;}
.yb3{bottom:169.919983pt;}
.y13f{bottom:170.080017pt;}
.y126{bottom:170.239990pt;}
.y9b{bottom:170.400024pt;}
.y3{bottom:172.320007pt;}
.yfb{bottom:176.000000pt;}
.y2{bottom:185.440002pt;}
.y13e{bottom:188.320007pt;}
.y125{bottom:188.479980pt;}
.y6e{bottom:189.440002pt;}
.y7a{bottom:191.359985pt;}
.yd0{bottom:193.440002pt;}
.y60{bottom:194.080017pt;}
.yfa{bottom:194.239990pt;}
.yb2{bottom:195.200012pt;}
.y9a{bottom:195.679993pt;}
.y13d{bottom:206.559998pt;}
.y124{bottom:206.719971pt;}
.y20{bottom:211.200012pt;}
.yf9{bottom:212.479980pt;}
.y6d{bottom:214.719971pt;}
.y79{bottom:216.640015pt;}
.ycf{bottom:218.719971pt;}
.y5f{bottom:219.200012pt;}
.yb1{bottom:220.479980pt;}
.y99{bottom:220.960022pt;}
.y13c{bottom:224.799988pt;}
.y123{bottom:224.960022pt;}
.yf8{bottom:230.559998pt;}
.y1f{bottom:236.479980pt;}
.y6c{bottom:240.000000pt;}
.y78{bottom:241.760010pt;}
.y13b{bottom:242.719971pt;}
.y122{bottom:242.880005pt;}
.yce{bottom:244.000000pt;}
.y5e{bottom:244.479980pt;}
.yb0{bottom:245.599976pt;}
.y98{bottom:246.239990pt;}
.yf7{bottom:248.640015pt;}
.y13a{bottom:260.960022pt;}
.y121{bottom:261.119995pt;}
.y1e{bottom:261.760010pt;}
.y6b{bottom:265.119995pt;}
.yf6{bottom:266.880005pt;}
.y77{bottom:267.039978pt;}
.ycd{bottom:269.119995pt;}
.y5d{bottom:269.760010pt;}
.yaf{bottom:270.880005pt;}
.y97{bottom:271.520020pt;}
.y139{bottom:279.200012pt;}
.y120{bottom:279.359985pt;}
.yf5{bottom:285.119995pt;}
.y1d{bottom:287.039978pt;}
.y6a{bottom:290.239990pt;}
.y76{bottom:292.320007pt;}
.ycc{bottom:294.400024pt;}
.y5c{bottom:295.039978pt;}
.yae{bottom:296.159973pt;}
.y96{bottom:296.799988pt;}
.y138{bottom:297.440002pt;}
.y11f{bottom:297.599976pt;}
.yf4{bottom:303.200012pt;}
.y1c{bottom:312.320007pt;}
.y137{bottom:315.359985pt;}
.y69{bottom:315.520020pt;}
.y11e{bottom:315.679993pt;}
.y75{bottom:317.599976pt;}
.ycb{bottom:319.679993pt;}
.y5b{bottom:320.159973pt;}
.yf3{bottom:321.280029pt;}
.yad{bottom:321.440002pt;}
.y95{bottom:321.919983pt;}
.y136{bottom:333.599976pt;}
.y11d{bottom:333.760010pt;}
.y1b{bottom:338.559998pt;}
.yf2{bottom:339.520020pt;}
.y68{bottom:340.799988pt;}
.y74{bottom:343.840027pt;}
.yca{bottom:344.960022pt;}
.y5a{bottom:345.440002pt;}
.yac{bottom:346.719971pt;}
.y94{bottom:347.200012pt;}
.y135{bottom:351.840027pt;}
.y11c{bottom:352.000000pt;}
.yf1{bottom:357.760010pt;}
.y1a{bottom:366.080017pt;}
.y73{bottom:369.919983pt;}
.y134{bottom:370.080017pt;}
.yc9{bottom:370.239990pt;}
.y59{bottom:370.719971pt;}
.yab{bottom:372.000000pt;}
.y93{bottom:372.479980pt;}
.yf0{bottom:375.840027pt;}
.y133{bottom:388.159973pt;}
.y11b{bottom:388.320007pt;}
.y32{bottom:390.400024pt;}
.y67{bottom:391.359985pt;}
.y3c{bottom:393.119995pt;}
.yef{bottom:393.919983pt;}
.yc8{bottom:395.359985pt;}
.y58{bottom:395.840027pt;}
.yaa{bottom:397.280029pt;}
.y92{bottom:397.760010pt;}
.y132{bottom:406.239990pt;}
.y11a{bottom:406.400024pt;}
.y31{bottom:407.359985pt;}
.y3b{bottom:409.760010pt;}
.yee{bottom:412.159973pt;}
.y66{bottom:417.760010pt;}
.yc7{bottom:420.640015pt;}
.y57{bottom:421.119995pt;}
.ya9{bottom:422.400024pt;}
.y91{bottom:423.039978pt;}
.y30{bottom:424.159973pt;}
.y131{bottom:424.479980pt;}
.y119{bottom:424.640015pt;}
.y3a{bottom:426.080017pt;}
.yed{bottom:430.400024pt;}
.y2f{bottom:440.960022pt;}
.y39{bottom:442.719971pt;}
.y118{bottom:442.880005pt;}
.y65{bottom:445.280029pt;}
.yc6{bottom:445.760010pt;}
.y56{bottom:446.400024pt;}
.ya8{bottom:447.679993pt;}
.y90{bottom:448.159973pt;}
.yec{bottom:448.479980pt;}
.y2e{bottom:457.919983pt;}
.y38{bottom:459.200012pt;}
.y130{bottom:460.799988pt;}
.y117{bottom:460.960022pt;}
.yeb{bottom:466.559998pt;}
.yc5{bottom:471.039978pt;}
.y55{bottom:471.679993pt;}
.ya7{bottom:472.960022pt;}
.y8f{bottom:473.440002pt;}
.y2d{bottom:474.719971pt;}
.y37{bottom:475.679993pt;}
.y12f{bottom:478.880005pt;}
.y116{bottom:479.039978pt;}
.yea{bottom:484.799988pt;}
.y2c{bottom:491.520020pt;}
.y36{bottom:492.320007pt;}
.yc4{bottom:496.320007pt;}
.y54{bottom:496.960022pt;}
.y12e{bottom:497.119995pt;}
.y115{bottom:497.280029pt;}
.ya6{bottom:498.239990pt;}
.y8e{bottom:498.559998pt;}
.ye9{bottom:503.039978pt;}
.y2b{bottom:508.320007pt;}
.y35{bottom:508.640015pt;}
.y12d{bottom:515.359985pt;}
.y114{bottom:515.520020pt;}
.y33{bottom:520.640015pt;}
.ye8{bottom:521.119995pt;}
.yc3{bottom:521.599976pt;}
.y53{bottom:522.239990pt;}
.ya5{bottom:523.359985pt;}
.y8d{bottom:523.840027pt;}
.y2a{bottom:525.280029pt;}
.y12c{bottom:533.440002pt;}
.y113{bottom:533.599976pt;}
.ye7{bottom:539.200012pt;}
.y29{bottom:541.919983pt;}
.yc2{bottom:546.880005pt;}
.y52{bottom:547.359985pt;}
.ya4{bottom:548.640015pt;}
.y8c{bottom:549.119995pt;}
.y12b{bottom:551.519989pt;}
.y112{bottom:551.679993pt;}
.ye6{bottom:557.440002pt;}
.y28{bottom:558.720001pt;}
.y12a{bottom:569.760010pt;}
.y111{bottom:569.920013pt;}
.yc1{bottom:572.160004pt;}
.y51{bottom:572.640015pt;}
.ya3{bottom:573.760010pt;}
.y8b{bottom:574.399994pt;}
.y27{bottom:575.679993pt;}
.y110{bottom:588.160004pt;}
.y26{bottom:592.480011pt;}
.ye5{bottom:593.760010pt;}
.y50{bottom:597.920013pt;}
.yc0{bottom:598.399994pt;}
.ya2{bottom:599.040009pt;}
.y8a{bottom:599.679993pt;}
.y10f{bottom:606.239990pt;}
.y25{bottom:609.279999pt;}
.ye4{bottom:612.000000pt;}
.y4f{bottom:623.200012pt;}
.ybf{bottom:623.519989pt;}
.ya1{bottom:624.320007pt;}
.y89{bottom:624.959991pt;}
.y24{bottom:626.079987pt;}
.ye3{bottom:630.079987pt;}
.y10e{bottom:642.559998pt;}
.y23{bottom:643.040009pt;}
.ye2{bottom:648.320007pt;}
.y4e{bottom:648.480011pt;}
.ya0{bottom:649.600006pt;}
.y88{bottom:650.079987pt;}
.y21{bottom:656.000000pt;}
.y10d{bottom:660.799988pt;}
.ye1{bottom:666.399994pt;}
.y4d{bottom:673.600006pt;}
.y87{bottom:675.359985pt;}
.y10c{bottom:678.880005pt;}
.ye0{bottom:684.640015pt;}
.y19{bottom:694.239990pt;}
.y10b{bottom:696.959991pt;}
.y4c{bottom:698.880005pt;}
.y86{bottom:700.640015pt;}
.ydf{bottom:702.720001pt;}
.y18{bottom:712.320007pt;}
.y10a{bottom:715.200012pt;}
.yde{bottom:720.959991pt;}
.y4b{bottom:724.000000pt;}
.y85{bottom:725.920013pt;}
.y17{bottom:728.959991pt;}
.y109{bottom:733.440002pt;}
.ydd{bottom:739.040009pt;}
.y16{bottom:745.920013pt;}
.y4a{bottom:749.279999pt;}
.yb8{bottom:749.600006pt;}
.y84{bottom:751.200012pt;}
.y108{bottom:751.519989pt;}
.ydc{bottom:757.279999pt;}
.y15{bottom:762.720001pt;}
.y107{bottom:769.600006pt;}
.y49{bottom:774.559998pt;}
.ydb{bottom:775.359985pt;}
.y83{bottom:776.480011pt;}
.y14{bottom:786.399994pt;}
.y106{bottom:787.839996pt;}
.yda{bottom:793.600006pt;}
.y48{bottom:799.839996pt;}
.y82{bottom:801.600006pt;}
.y105{bottom:806.080002pt;}
.y13{bottom:809.440002pt;}
.yd9{bottom:811.679993pt;}
.yd5{bottom:824.160004pt;}
.y47{bottom:825.119995pt;}
.y81{bottom:826.720001pt;}
.yd8{bottom:829.919998pt;}
.y12{bottom:841.119995pt;}
.y104{bottom:842.240005pt;}
.yd7{bottom:848.000000pt;}
.y46{bottom:850.399994pt;}
.y80{bottom:852.000000pt;}
.y103{bottom:860.479996pt;}
.y144{bottom:871.679993pt;}
.y11{bottom:872.800003pt;}
.yd6{bottom:874.240005pt;}
.y45{bottom:875.520004pt;}
.y7f{bottom:877.279999pt;}
.y102{bottom:878.720001pt;}
.y101{bottom:896.800003pt;}
.y44{bottom:900.800003pt;}
.y7e{bottom:901.119995pt;}
.y10{bottom:907.520004pt;}
.y100{bottom:914.880005pt;}
.y43{bottom:926.080002pt;}
.yff{bottom:933.120003pt;}
.yf{bottom:934.080002pt;}
.y1{bottom:946.879997pt;}
.yd{bottom:950.559998pt;}
.y42{bottom:951.360001pt;}
.y3f{bottom:967.199997pt;}
.y3e{bottom:983.360001pt;}
.y3d{bottom:999.680000pt;}
.h5{height:14.880004pt;}
.he{height:15.200012pt;}
.hd{height:16.799988pt;}
.h17{height:23.939272pt;}
.h14{height:24.311307pt;}
.h2{height:33.643863pt;}
.h4{height:39.031279pt;}
.h3{height:39.097248pt;}
.h11{height:40.730480pt;}
.h15{height:41.269957pt;}
.ha{height:41.755486pt;}
.h10{height:43.194902pt;}
.hf{height:43.267908pt;}
.h12{height:45.386332pt;}
.hc{height:47.878545pt;}
.h18{height:47.942462pt;}
.h13{height:47.942706pt;}
.h6{height:47.959466pt;}
.h16{height:47.990080pt;}
.h8{height:52.041821pt;}
.hb{height:52.129779pt;}
.h1{height:54.945688pt;}
.h7{height:60.889083pt;}
.h9{height:78.194843pt;}
.h0{height:1056.000000pt;}
.w2{width:2.880005pt;}
.w8{width:7.839966pt;}
.w6{width:8.640014pt;}
.w4{width:8.640015pt;}
.w3{width:40.479980pt;}
.w1{width:45.760010pt;}
.w5{width:53.919998pt;}
.w7{width:56.160034pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:89.599998pt;}
.x1{left:124.800003pt;}
.x7{left:133.759995pt;}
.x6{left:149.600006pt;}
.x11{left:160.000000pt;}
.x10{left:169.919998pt;}
.x8{left:187.679993pt;}
.xe{left:194.720001pt;}
.xf{left:217.279999pt;}
.xd{left:305.279999pt;}
.xb{left:358.880005pt;}
.x9{left:573.119995pt;}
.x2{left:603.039978pt;}
.xa{left:629.280029pt;}
.x3{left:648.799988pt;}
.x4{left:651.679993pt;}
.xc{left:677.119995pt;}
.x5{left:692.159973pt;}
}




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