
    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_cfc871ef7fc1dca45b3e6d41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d82af4351858a1c9eca4c35c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_01e5daaa467dadbe7aa42ec4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.745117;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_3ad4dc9aca341a1d157b7e8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_ca1dcfd6736e98101ccfde2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_54890777e9de677918bb031c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_81833ef625c0291910872f3f.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.463075px;}
.ls1{letter-spacing:5.432027px;}
.lsb{letter-spacing:10.472004px;}
.ls5{letter-spacing:31.688084px;}
.ls3{letter-spacing:32.408237px;}
.ls8{letter-spacing:42.488192px;}
.ls9{letter-spacing:42.488197px;}
.ls2{letter-spacing:73.794570px;}
.ls4{letter-spacing:186.152076px;}
.ls7{letter-spacing:186.152108px;}
.lsa{letter-spacing:187.503089px;}
.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;}
}
.ws1{word-spacing:-16.887938px;}
.ws2{word-spacing:-14.861385px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-4.931278px;}
._11{margin-left:-3.810373px;}
._10{margin-left:-2.577785px;}
._1{margin-left:-1.082822px;}
._0{width:1.353528px;}
._5{width:2.826355px;}
._6{width:4.094561px;}
._a{width:5.329230px;}
._9{width:6.463350px;}
._b{width:8.162415px;}
._c{width:9.592141px;}
._34{width:10.602651px;}
._29{width:11.607438px;}
._7{width:12.746171px;}
._8{width:14.243128px;}
._d{width:15.362247px;}
._3{width:18.137276px;}
._28{width:19.204271px;}
._2a{width:20.214805px;}
._26{width:21.670809px;}
._27{width:22.706496px;}
._2{width:23.939307px;}
._12{width:25.670193px;}
._13{width:26.751095px;}
._2e{width:27.835375px;}
._3a{width:28.998011px;}
._30{width:30.928410px;}
._2f{width:32.736357px;}
._33{width:33.915657px;}
._31{width:34.983738px;}
._32{width:36.182453px;}
._39{width:43.684345px;}
._38{width:44.955953px;}
._3b{width:51.893390px;}
._36{width:53.258273px;}
._35{width:54.776865px;}
._e{width:58.770022px;}
._3d{width:60.395959px;}
._3e{width:74.364186px;}
._3f{width:75.665230px;}
._37{width:77.562867px;}
._3c{width:125.703516px;}
._4{width:186.442830px;}
._25{width:795.084098px;}
._2c{width:801.624560px;}
._2d{width:830.467163px;}
._2b{width:845.598755px;}
._1c{width:905.335014px;}
._20{width:978.193528px;}
._22{width:1099.751203px;}
._1b{width:1126.093182px;}
._21{width:1193.672181px;}
._1d{width:1358.526361px;}
._1e{width:1380.065491px;}
._1f{width:1471.818339px;}
._1a{width:1562.250798px;}
._19{width:1774.816930px;}
._16{width:1824.345671px;}
._17{width:1840.671586px;}
._23{width:1849.835421px;}
._24{width:1894.130224px;}
._18{width:1896.327631px;}
._14{width:2081.478288px;}
._15{width:2108.106989px;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(60,64,67);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(113,113,113);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:56.171887px;}
.fs8{font-size:62.147700px;}
.fs7{font-size:67.551750px;}
.fs0{font-size:67.676404px;}
.fs9{font-size:72.955800px;}
.fs3{font-size:79.180921px;}
.fs6{font-size:81.888213px;}
.fs4{font-size:90.010090px;}
.fs2{font-size:101.514606px;}
.fs1{font-size:135.352809px;}
.y0{bottom:0.000000px;}
.y76{bottom:3.779983px;}
.y7e{bottom:3.779984px;}
.y82{bottom:3.780000px;}
.y19{bottom:23.220017px;}
.yb9{bottom:76.860008px;}
.y6d{bottom:80.100013px;}
.y16{bottom:88.376771px;}
.y7d{bottom:90.360008px;}
.y108{bottom:95.220017px;}
.yd5{bottom:97.559967px;}
.y37{bottom:97.740006px;}
.y10e{bottom:99.539977px;}
.yb8{bottom:106.200027px;}
.y6c{bottom:109.259994px;}
.y7c{bottom:113.580025px;}
.yee{bottom:118.980011px;}
.y107{bottom:124.200027px;}
.yd4{bottom:126.720017px;}
.y15{bottom:132.122364px;}
.y7b{bottom:133.019989px;}
.y36{bottom:134.100013px;}
.yb7{bottom:135.179970px;}
.y6b{bottom:138.419975px;}
.ye3{bottom:139.679970px;}
.yed{bottom:148.139992px;}
.y106{bottom:153.539977px;}
.y9f{bottom:155.519989px;}
.yd3{bottom:155.879998px;}
.y10d{bottom:157.860008px;}
.y14{bottom:162.350494px;}
.y7a{bottom:164.340019px;}
.yb6{bottom:164.519989px;}
.y6a{bottom:167.580025px;}
.y35{bottom:170.639992px;}
.yec{bottom:177.299973px;}
.y105{bottom:182.519989px;}
.y129{bottom:182.700027px;}
.y9e{bottom:184.679970px;}
.yd2{bottom:185.220017px;}
.y79{bottom:187.559967px;}
.y13{bottom:191.164447px;}
.yb5{bottom:193.679970px;}
.y69{bottom:196.740006px;}
.yeb{bottom:206.460022px;}
.y34{bottom:207.000000px;}
.y128{bottom:208.080025px;}
.y104{bottom:211.860008px;}
.y9d{bottom:213.840019px;}
.yd1{bottom:214.200027px;}
.y10c{bottom:216.360008px;}
.yb4{bottom:222.840019px;}
.y12{bottom:225.187453px;}
.y68{bottom:225.899986px;}
.y78{bottom:226.440033px;}
.yea{bottom:235.799973px;}
.y103{bottom:241.019989px;}
.y9c{bottom:243.000000px;}
.yd0{bottom:243.360008px;}
.y33{bottom:243.539977px;}
.yb3{bottom:252.000000px;}
.y67{bottom:255.240006px;}
.y75{bottom:257.580025px;}
.y11{bottom:259.198424px;}
.y77{bottom:261.360008px;}
.ye9{bottom:264.779983px;}
.y102{bottom:270.179970px;}
.y9b{bottom:272.340019px;}
.ye2{bottom:272.700027px;}
.y10b{bottom:274.679970px;}
.y32{bottom:279.899986px;}
.yb2{bottom:281.340019px;}
.y66{bottom:284.220017px;}
.ycf{bottom:286.740006px;}
.y10{bottom:291.057340px;}
.ye8{bottom:294.120002px;}
.y74{bottom:298.980011px;}
.y101{bottom:299.340019px;}
.y9a{bottom:301.320030px;}
.ye1{bottom:301.860008px;}
.yb1{bottom:310.320030px;}
.y65{bottom:313.559967px;}
.yce{bottom:315.899986px;}
.y31{bottom:316.440033px;}
.ye7{bottom:322.019989px;}
.yf{bottom:322.381528px;}
.y73{bottom:328.139992px;}
.y100{bottom:328.679970px;}
.y99{bottom:330.659981px;}
.ye0{bottom:331.019989px;}
.y10a{bottom:333.000000px;}
.yb0{bottom:339.659981px;}
.y64{bottom:342.720017px;}
.ycd{bottom:345.059967px;}
.ye6{bottom:348.840019px;}
.y109{bottom:352.440033px;}
.ye{bottom:354.596941px;}
.y72{bottom:357.480011px;}
.yff{bottom:357.659981px;}
.y30{bottom:359.820030px;}
.ydf{bottom:360.179970px;}
.y61{bottom:368.460022px;}
.yaf{bottom:368.639992px;}
.y63{bottom:371.879998px;}
.ye5{bottom:372.960022px;}
.ycc{bottom:374.399986px;}
.y71{bottom:386.460022px;}
.yfe{bottom:387.000000px;}
.y98{bottom:388.980011px;}
.yde{bottom:389.340019px;}
.y126{bottom:391.320030px;}
.yd{bottom:392.043774px;}
.yae{bottom:397.799973px;}
.y4d{bottom:401.039977px;}
.y2f{bottom:403.019989px;}
.ycb{bottom:403.379998px;}
.y60{bottom:405.000000px;}
.y125{bottom:410.940033px;}
.y70{bottom:415.799973px;}
.yfd{bottom:416.159981px;}
.y97{bottom:418.139992px;}
.ydd{bottom:418.679970px;}
.y5f{bottom:430.019989px;}
.y4c{bottom:430.200027px;}
.y2e{bottom:432.179970px;}
.yca{bottom:432.720017px;}
.yc{bottom:435.773244px;}
.yad{bottom:441.360008px;}
.y6f{bottom:443.700027px;}
.yfc{bottom:445.320030px;}
.y96{bottom:447.480011px;}
.ydc{bottom:447.659981px;}
.y124{bottom:449.639992px;}
.y4b{bottom:459.360008px;}
.y2d{bottom:461.519989px;}
.yc9{bottom:461.700027px;}
.y123{bottom:469.080025px;}
.yac{bottom:470.340019px;}
.y6e{bottom:471.600013px;}
.y5e{bottom:473.940033px;}
.yfb{bottom:474.480011px;}
.yb{bottom:475.195273px;}
.y95{bottom:476.460022px;}
.ydb{bottom:477.000000px;}
.y4a{bottom:488.519989px;}
.y2c{bottom:490.500000px;}
.yc8{bottom:491.039977px;}
.yab{bottom:499.679970px;}
.yfa{bottom:503.820030px;}
.y94{bottom:505.799973px;}
.yda{bottom:506.159981px;}
.y122{bottom:507.960022px;}
.ya{bottom:511.550842px;}
.y5d{bottom:512.100013px;}
.y49{bottom:517.860008px;}
.yc7{bottom:520.200027px;}
.y121{bottom:527.399986px;}
.yaa{bottom:528.840019px;}
.yf9{bottom:532.799973px;}
.y2b{bottom:533.879998px;}
.y93{bottom:534.960022px;}
.yd9{bottom:535.139992px;}
.y48{bottom:546.840019px;}
.y5c{bottom:549.179970px;}
.yc6{bottom:549.360008px;}
.y9{bottom:550.435833px;}
.ya9{bottom:557.820030px;}
.yf8{bottom:562.139992px;}
.y2a{bottom:563.039977px;}
.y92{bottom:564.120002px;}
.yd8{bottom:564.480011px;}
.y120{bottom:566.279983px;}
.y47{bottom:576.179970px;}
.y5b{bottom:576.539977px;}
.yc5{bottom:578.519989px;}
.y11f{bottom:585.899986px;}
.ya8{bottom:587.159981px;}
.y8{bottom:589.496595px;}
.yf7{bottom:591.299973px;}
.y29{bottom:592.200027px;}
.y91{bottom:593.279983px;}
.yd7{bottom:593.639992px;}
.y5a{bottom:603.720017px;}
.y46{bottom:605.340019px;}
.yc4{bottom:607.860008px;}
.y127{bottom:610.919975px;}
.ya7{bottom:616.319995px;}
.yf6{bottom:620.459988px;}
.y28{bottom:621.360008px;}
.y90{bottom:622.439999px;}
.y11e{bottom:624.779983px;}
.y59{bottom:630.899986px;}
.y7{bottom:634.497102px;}
.y45{bottom:634.500000px;}
.yc3{bottom:636.839985px;}
.y11d{bottom:644.220017px;}
.ya6{bottom:645.480011px;}
.yf5{bottom:649.620002px;}
.y27{bottom:650.699993px;}
.y8f{bottom:651.600013px;}
.y58{bottom:658.259994px;}
.y44{bottom:663.660015px;}
.yc2{bottom:666.180004px;}
.ya5{bottom:674.639992px;}
.y6{bottom:676.977601px;}
.yf4{bottom:678.959988px;}
.y26{bottom:679.680004px;}
.y8e{bottom:680.939999px;}
.y11c{bottom:683.100013px;}
.y57{bottom:685.620002px;}
.y43{bottom:693.000000px;}
.yc1{bottom:695.339985px;}
.y11b{bottom:702.540012px;}
.ya4{bottom:703.980011px;}
.yf3{bottom:707.939999px;}
.y25{bottom:709.019989px;}
.y8d{bottom:709.920010px;}
.y56{bottom:712.800007px;}
.y42{bottom:721.980011px;}
.ye4{bottom:723.240006px;}
.y5{bottom:723.773899px;}
.yc0{bottom:724.500000px;}
.ya3{bottom:732.959988px;}
.yf2{bottom:737.100013px;}
.y8c{bottom:739.259994px;}
.y55{bottom:740.160015px;}
.y11a{bottom:741.420010px;}
.y41{bottom:751.319995px;}
.y24{bottom:752.220017px;}
.ybf{bottom:753.660015px;}
.y119{bottom:760.860008px;}
.ya2{bottom:762.300007px;}
.yf1{bottom:766.259994px;}
.y54{bottom:767.339985px;}
.y8b{bottom:768.420010px;}
.y40{bottom:780.480011px;}
.y23{bottom:781.379998px;}
.y4{bottom:782.817268px;}
.ybe{bottom:783.000000px;}
.ya1{bottom:790.199993px;}
.y53{bottom:794.519989px;}
.yf0{bottom:795.420010px;}
.y8a{bottom:797.579990px;}
.y118{bottom:799.920010px;}
.y3f{bottom:809.639992px;}
.y22{bottom:810.720017px;}
.yd6{bottom:810.899986px;}
.ybd{bottom:811.980011px;}
.ya0{bottom:814.319995px;}
.y117{bottom:819.360008px;}
.y52{bottom:822.959988px;}
.yef{bottom:824.579990px;}
.y89{bottom:826.740006px;}
.y3e{bottom:838.800007px;}
.y21{bottom:839.699993px;}
.ybc{bottom:841.319995px;}
.y3{bottom:842.934606px;}
.y88{bottom:856.079990px;}
.y116{bottom:858.240006px;}
.y51{bottom:861.300007px;}
.y3d{bottom:867.959988px;}
.ybb{bottom:870.480011px;}
.y115{bottom:877.680004px;}
.y20{bottom:883.079990px;}
.y87{bottom:885.060001px;}
.y3c{bottom:897.120002px;}
.yba{bottom:898.379998px;}
.y50{bottom:899.459988px;}
.y2{bottom:901.977963px;}
.y1f{bottom:912.240006px;}
.y86{bottom:914.219999px;}
.y114{bottom:916.560001px;}
.y3b{bottom:926.460004px;}
.y113{bottom:936.000000px;}
.y4f{bottom:937.800007px;}
.y1e{bottom:941.400003px;}
.y85{bottom:943.560001px;}
.y3a{bottom:955.439999px;}
.y1d{bottom:970.560001px;}
.y84{bottom:971.460004px;}
.y112{bottom:975.060001px;}
.y4e{bottom:975.960004px;}
.y39{bottom:984.780001px;}
.y111{bottom:994.500000px;}
.y83{bottom:998.099997px;}
.y1c{bottom:999.900003px;}
.y38{bottom:1013.939999px;}
.y81{bottom:1021.139992px;}
.y110{bottom:1033.379998px;}
.y62{bottom:1035.900003px;}
.y1b{bottom:1043.099997px;}
.y80{bottom:1044.360000px;}
.y10f{bottom:1052.819996px;}
.y7f{bottom:1063.799998px;}
.y1a{bottom:1072.260003px;}
.y18{bottom:1102.860000px;}
.y1{bottom:1122.298041px;}
.y17{bottom:1122.299998px;}
.h10{height:18.899986px;}
.h11{height:18.900003px;}
.h12{height:47.278377px;}
.h8{height:49.890949px;}
.he{height:51.389466px;}
.h13{height:55.714442px;}
.hd{height:59.305687px;}
.hb{height:59.998356px;}
.h7{height:60.109072px;}
.ha{height:60.559088px;}
.h1{height:60.670839px;}
.hc{height:61.813899px;}
.hf{height:65.403735px;}
.h4{height:70.327195px;}
.h9{height:72.731768px;}
.h6{height:73.905409px;}
.h5{height:79.945485px;}
.h3{height:90.163608px;}
.h2{height:120.218144px;}
.h0{height:1188.000000px;}
.w3{width:8.459954px;}
.w1{width:8.460004px;}
.w8{width:8.460021px;}
.w5{width:8.460022px;}
.w7{width:58.139992px;}
.w4{width:102.420009px;}
.w6{width:103.319996px;}
.w2{width:180.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:139.141137px;}
.x1b{left:146.879998px;}
.x6{left:151.026416px;}
.x24{left:154.259994px;}
.x15{left:164.520006px;}
.x2b{left:169.560001px;}
.x1{left:170.997492px;}
.x18{left:179.639992px;}
.x23{left:186.479994px;}
.x12{left:187.919992px;}
.x10{left:189.900003px;}
.x7{left:191.876393px;}
.x13{left:204.840002px;}
.x20{left:208.259994px;}
.x28{left:214.740006px;}
.x1a{left:224.099997px;}
.x5{left:239.584537px;}
.x19{left:240.659998px;}
.x4{left:249.473414px;}
.x25{left:266.039996px;}
.xb{left:288.899987px;}
.x26{left:291.420010px;}
.xa{left:296.281941px;}
.x9{left:308.699427px;}
.xc{left:334.794290px;}
.xd{left:352.617769px;}
.x8{left:399.965528px;}
.x11{left:402.300007px;}
.x14{left:411.480011px;}
.x16{left:413.459988px;}
.x17{left:420.480011px;}
.x2a{left:423.000000px;}
.xe{left:425.160015px;}
.x29{left:428.040012px;}
.x2c{left:429.300007px;}
.xf{left:442.259994px;}
.x21{left:458.459988px;}
.x1c{left:466.379998px;}
.x2{left:474.665891px;}
.x1e{left:568.620002px;}
.x1f{left:627.480011px;}
.x1d{left:646.200027px;}
.x2d{left:731.340019px;}
.x22{left:778.320030px;}
.x2e{left:844.559967px;}
.x27{left:866.159981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.189400pt;}
.ls1{letter-spacing:4.828468pt;}
.lsb{letter-spacing:9.308448pt;}
.ls5{letter-spacing:28.167186pt;}
.ls3{letter-spacing:28.807322pt;}
.ls8{letter-spacing:37.767282pt;}
.ls9{letter-spacing:37.767286pt;}
.ls2{letter-spacing:65.595174pt;}
.ls4{letter-spacing:165.468512pt;}
.ls7{letter-spacing:165.468540pt;}
.lsa{letter-spacing:166.669412pt;}
.ws1{word-spacing:-15.011500pt;}
.ws2{word-spacing:-13.210120pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-4.383358pt;}
._11{margin-left:-3.386998pt;}
._10{margin-left:-2.291365pt;}
._1{margin-left:-0.962509pt;}
._0{width:1.203136pt;}
._5{width:2.512315pt;}
._6{width:3.639610pt;}
._a{width:4.737093pt;}
._9{width:5.745200pt;}
._b{width:7.255480pt;}
._c{width:8.526348pt;}
._34{width:9.424578pt;}
._29{width:10.317723pt;}
._7{width:11.329930pt;}
._8{width:12.660558pt;}
._d{width:13.655331pt;}
._3{width:16.122023pt;}
._28{width:17.070463pt;}
._2a{width:17.968715pt;}
._26{width:19.262942pt;}
._27{width:20.183552pt;}
._2{width:21.279384pt;}
._12{width:22.817949pt;}
._13{width:23.778751pt;}
._2e{width:24.742556pt;}
._3a{width:25.776010pt;}
._30{width:27.491920pt;}
._2f{width:29.098984pt;}
._33{width:30.147251pt;}
._31{width:31.096656pt;}
._32{width:32.162181pt;}
._39{width:38.830529pt;}
._38{width:39.960848pt;}
._3b{width:46.127458pt;}
._36{width:47.340687pt;}
._35{width:48.690547pt;}
._e{width:52.240020pt;}
._3d{width:53.685297pt;}
._3e{width:66.101498pt;}
._3f{width:67.257982pt;}
._37{width:68.944770pt;}
._3c{width:111.736458pt;}
._4{width:165.726960pt;}
._25{width:706.741420pt;}
._2c{width:712.555165pt;}
._2d{width:738.193034pt;}
._2b{width:751.643338pt;}
._1c{width:804.742234pt;}
._20{width:869.505358pt;}
._22{width:977.556625pt;}
._1b{width:1000.971717pt;}
._21{width:1061.041939pt;}
._1d{width:1207.578987pt;}
._1e{width:1226.724881pt;}
._1f{width:1308.282968pt;}
._1a{width:1388.667376pt;}
._19{width:1577.615049pt;}
._16{width:1621.640597pt;}
._17{width:1636.152521pt;}
._23{width:1644.298152pt;}
._24{width:1683.671310pt;}
._18{width:1685.624561pt;}
._14{width:1850.202922pt;}
._15{width:1873.872879pt;}
.fs5{font-size:49.930567pt;}
.fs8{font-size:55.242400pt;}
.fs7{font-size:60.046000pt;}
.fs0{font-size:60.156804pt;}
.fs9{font-size:64.849600pt;}
.fs3{font-size:70.383041pt;}
.fs6{font-size:72.789523pt;}
.fs4{font-size:80.008969pt;}
.fs2{font-size:90.235206pt;}
.fs1{font-size:120.313608pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:3.359985pt;}
.y7e{bottom:3.359986pt;}
.y82{bottom:3.360000pt;}
.y19{bottom:20.640015pt;}
.yb9{bottom:68.320007pt;}
.y6d{bottom:71.200012pt;}
.y16{bottom:78.557129pt;}
.y7d{bottom:80.320007pt;}
.y108{bottom:84.640015pt;}
.yd5{bottom:86.719971pt;}
.y37{bottom:86.880005pt;}
.y10e{bottom:88.479980pt;}
.yb8{bottom:94.400024pt;}
.y6c{bottom:97.119995pt;}
.y7c{bottom:100.960022pt;}
.yee{bottom:105.760010pt;}
.y107{bottom:110.400024pt;}
.yd4{bottom:112.640015pt;}
.y15{bottom:117.442101pt;}
.y7b{bottom:118.239990pt;}
.y36{bottom:119.200012pt;}
.yb7{bottom:120.159973pt;}
.y6b{bottom:123.039978pt;}
.ye3{bottom:124.159973pt;}
.yed{bottom:131.679993pt;}
.y106{bottom:136.479980pt;}
.y9f{bottom:138.239990pt;}
.yd3{bottom:138.559998pt;}
.y10d{bottom:140.320007pt;}
.y14{bottom:144.311550pt;}
.y7a{bottom:146.080017pt;}
.yb6{bottom:146.239990pt;}
.y6a{bottom:148.960022pt;}
.y35{bottom:151.679993pt;}
.yec{bottom:157.599976pt;}
.y105{bottom:162.239990pt;}
.y129{bottom:162.400024pt;}
.y9e{bottom:164.159973pt;}
.yd2{bottom:164.640015pt;}
.y79{bottom:166.719971pt;}
.y13{bottom:169.923953pt;}
.yb5{bottom:172.159973pt;}
.y69{bottom:174.880005pt;}
.yeb{bottom:183.520020pt;}
.y34{bottom:184.000000pt;}
.y128{bottom:184.960022pt;}
.y104{bottom:188.320007pt;}
.y9d{bottom:190.080017pt;}
.yd1{bottom:190.400024pt;}
.y10c{bottom:192.320007pt;}
.yb4{bottom:198.080017pt;}
.y12{bottom:200.166625pt;}
.y68{bottom:200.799988pt;}
.y78{bottom:201.280029pt;}
.yea{bottom:209.599976pt;}
.y103{bottom:214.239990pt;}
.y9c{bottom:216.000000pt;}
.yd0{bottom:216.320007pt;}
.y33{bottom:216.479980pt;}
.yb3{bottom:224.000000pt;}
.y67{bottom:226.880005pt;}
.y75{bottom:228.960022pt;}
.y11{bottom:230.398599pt;}
.y77{bottom:232.320007pt;}
.ye9{bottom:235.359985pt;}
.y102{bottom:240.159973pt;}
.y9b{bottom:242.080017pt;}
.ye2{bottom:242.400024pt;}
.y10b{bottom:244.159973pt;}
.y32{bottom:248.799988pt;}
.yb2{bottom:250.080017pt;}
.y66{bottom:252.640015pt;}
.ycf{bottom:254.880005pt;}
.y10{bottom:258.717636pt;}
.ye8{bottom:261.440002pt;}
.y74{bottom:265.760010pt;}
.y101{bottom:266.080017pt;}
.y9a{bottom:267.840027pt;}
.ye1{bottom:268.320007pt;}
.yb1{bottom:275.840027pt;}
.y65{bottom:278.719971pt;}
.yce{bottom:280.799988pt;}
.y31{bottom:281.280029pt;}
.ye7{bottom:286.239990pt;}
.yf{bottom:286.561358pt;}
.y73{bottom:291.679993pt;}
.y100{bottom:292.159973pt;}
.y99{bottom:293.919983pt;}
.ye0{bottom:294.239990pt;}
.y10a{bottom:296.000000pt;}
.yb0{bottom:301.919983pt;}
.y64{bottom:304.640015pt;}
.ycd{bottom:306.719971pt;}
.ye6{bottom:310.080017pt;}
.y109{bottom:313.280029pt;}
.ye{bottom:315.197281pt;}
.y72{bottom:317.760010pt;}
.yff{bottom:317.919983pt;}
.y30{bottom:319.840027pt;}
.ydf{bottom:320.159973pt;}
.y61{bottom:327.520020pt;}
.yaf{bottom:327.679993pt;}
.y63{bottom:330.559998pt;}
.ye5{bottom:331.520020pt;}
.ycc{bottom:332.799988pt;}
.y71{bottom:343.520020pt;}
.yfe{bottom:344.000000pt;}
.y98{bottom:345.760010pt;}
.yde{bottom:346.080017pt;}
.y126{bottom:347.840027pt;}
.yd{bottom:348.483355pt;}
.yae{bottom:353.599976pt;}
.y4d{bottom:356.479980pt;}
.y2f{bottom:358.239990pt;}
.ycb{bottom:358.559998pt;}
.y60{bottom:360.000000pt;}
.y125{bottom:365.280029pt;}
.y70{bottom:369.599976pt;}
.yfd{bottom:369.919983pt;}
.y97{bottom:371.679993pt;}
.ydd{bottom:372.159973pt;}
.y5f{bottom:382.239990pt;}
.y4c{bottom:382.400024pt;}
.y2e{bottom:384.159973pt;}
.yca{bottom:384.640015pt;}
.yc{bottom:387.353995pt;}
.yad{bottom:392.320007pt;}
.y6f{bottom:394.400024pt;}
.yfc{bottom:395.840027pt;}
.y96{bottom:397.760010pt;}
.ydc{bottom:397.919983pt;}
.y124{bottom:399.679993pt;}
.y4b{bottom:408.320007pt;}
.y2d{bottom:410.239990pt;}
.yc9{bottom:410.400024pt;}
.y123{bottom:416.960022pt;}
.yac{bottom:418.080017pt;}
.y6e{bottom:419.200012pt;}
.y5e{bottom:421.280029pt;}
.yfb{bottom:421.760010pt;}
.yb{bottom:422.395798pt;}
.y95{bottom:423.520020pt;}
.ydb{bottom:424.000000pt;}
.y4a{bottom:434.239990pt;}
.y2c{bottom:436.000000pt;}
.yc8{bottom:436.479980pt;}
.yab{bottom:444.159973pt;}
.yfa{bottom:447.840027pt;}
.y94{bottom:449.599976pt;}
.yda{bottom:449.919983pt;}
.y122{bottom:451.520020pt;}
.ya{bottom:454.711859pt;}
.y5d{bottom:455.200012pt;}
.y49{bottom:460.320007pt;}
.yc7{bottom:462.400024pt;}
.y121{bottom:468.799988pt;}
.yaa{bottom:470.080017pt;}
.yf9{bottom:473.599976pt;}
.y2b{bottom:474.559998pt;}
.y93{bottom:475.520020pt;}
.yd9{bottom:475.679993pt;}
.y48{bottom:486.080017pt;}
.y5c{bottom:488.159973pt;}
.yc6{bottom:488.320007pt;}
.y9{bottom:489.276296pt;}
.ya9{bottom:495.840027pt;}
.yf8{bottom:499.679993pt;}
.y2a{bottom:500.479980pt;}
.y92{bottom:501.440002pt;}
.yd8{bottom:501.760010pt;}
.y120{bottom:503.359985pt;}
.y47{bottom:512.159973pt;}
.y5b{bottom:512.479980pt;}
.yc5{bottom:514.239990pt;}
.y11f{bottom:520.799988pt;}
.ya8{bottom:521.919983pt;}
.y8{bottom:523.996973pt;}
.yf7{bottom:525.599976pt;}
.y29{bottom:526.400024pt;}
.y91{bottom:527.359985pt;}
.yd7{bottom:527.679993pt;}
.y5a{bottom:536.640015pt;}
.y46{bottom:538.080017pt;}
.yc4{bottom:540.320007pt;}
.y127{bottom:543.039978pt;}
.ya7{bottom:547.839996pt;}
.yf6{bottom:551.519989pt;}
.y28{bottom:552.320007pt;}
.y90{bottom:553.279999pt;}
.y11e{bottom:555.359985pt;}
.y59{bottom:560.799988pt;}
.y7{bottom:563.997424pt;}
.y45{bottom:564.000000pt;}
.yc3{bottom:566.079987pt;}
.y11d{bottom:572.640015pt;}
.ya6{bottom:573.760010pt;}
.yf5{bottom:577.440002pt;}
.y27{bottom:578.399994pt;}
.y8f{bottom:579.200012pt;}
.y58{bottom:585.119995pt;}
.y44{bottom:589.920013pt;}
.yc2{bottom:592.160004pt;}
.ya5{bottom:599.679993pt;}
.y6{bottom:601.757868pt;}
.yf4{bottom:603.519989pt;}
.y26{bottom:604.160004pt;}
.y8e{bottom:605.279999pt;}
.y11c{bottom:607.200012pt;}
.y57{bottom:609.440002pt;}
.y43{bottom:616.000000pt;}
.yc1{bottom:618.079987pt;}
.y11b{bottom:624.480011pt;}
.ya4{bottom:625.760010pt;}
.yf3{bottom:629.279999pt;}
.y25{bottom:630.239990pt;}
.y8d{bottom:631.040009pt;}
.y56{bottom:633.600006pt;}
.y42{bottom:641.760010pt;}
.ye4{bottom:642.880005pt;}
.y5{bottom:643.354577pt;}
.yc0{bottom:644.000000pt;}
.ya3{bottom:651.519989pt;}
.yf2{bottom:655.200012pt;}
.y8c{bottom:657.119995pt;}
.y55{bottom:657.920013pt;}
.y11a{bottom:659.040009pt;}
.y41{bottom:667.839996pt;}
.y24{bottom:668.640015pt;}
.ybf{bottom:669.920013pt;}
.y119{bottom:676.320007pt;}
.ya2{bottom:677.600006pt;}
.yf1{bottom:681.119995pt;}
.y54{bottom:682.079987pt;}
.y8b{bottom:683.040009pt;}
.y40{bottom:693.760010pt;}
.y23{bottom:694.559998pt;}
.y4{bottom:695.837572pt;}
.ybe{bottom:696.000000pt;}
.ya1{bottom:702.399994pt;}
.y53{bottom:706.239990pt;}
.yf0{bottom:707.040009pt;}
.y8a{bottom:708.959991pt;}
.y118{bottom:711.040009pt;}
.y3f{bottom:719.679993pt;}
.y22{bottom:720.640015pt;}
.yd6{bottom:720.799988pt;}
.ybd{bottom:721.760010pt;}
.ya0{bottom:723.839996pt;}
.y117{bottom:728.320007pt;}
.y52{bottom:731.519989pt;}
.yef{bottom:732.959991pt;}
.y89{bottom:734.880005pt;}
.y3e{bottom:745.600006pt;}
.y21{bottom:746.399994pt;}
.ybc{bottom:747.839996pt;}
.y3{bottom:749.275206pt;}
.y88{bottom:760.959991pt;}
.y116{bottom:762.880005pt;}
.y51{bottom:765.600006pt;}
.y3d{bottom:771.519989pt;}
.ybb{bottom:773.760010pt;}
.y115{bottom:780.160004pt;}
.y20{bottom:784.959991pt;}
.y87{bottom:786.720001pt;}
.y3c{bottom:797.440002pt;}
.yba{bottom:798.559998pt;}
.y50{bottom:799.519989pt;}
.y2{bottom:801.758189pt;}
.y1f{bottom:810.880005pt;}
.y86{bottom:812.639999pt;}
.y114{bottom:814.720001pt;}
.y3b{bottom:823.520004pt;}
.y113{bottom:832.000000pt;}
.y4f{bottom:833.600006pt;}
.y1e{bottom:836.800003pt;}
.y85{bottom:838.720001pt;}
.y3a{bottom:849.279999pt;}
.y1d{bottom:862.720001pt;}
.y84{bottom:863.520004pt;}
.y112{bottom:866.720001pt;}
.y4e{bottom:867.520004pt;}
.y39{bottom:875.360001pt;}
.y111{bottom:884.000000pt;}
.y83{bottom:887.199997pt;}
.y1c{bottom:888.800003pt;}
.y38{bottom:901.279999pt;}
.y81{bottom:907.679993pt;}
.y110{bottom:918.559998pt;}
.y62{bottom:920.800003pt;}
.y1b{bottom:927.199997pt;}
.y80{bottom:928.320000pt;}
.y10f{bottom:935.839996pt;}
.y7f{bottom:945.599998pt;}
.y1a{bottom:953.120003pt;}
.y18{bottom:980.320000pt;}
.y1{bottom:997.598259pt;}
.y17{bottom:997.599998pt;}
.h10{height:16.799988pt;}
.h11{height:16.800003pt;}
.h12{height:42.025224pt;}
.h8{height:44.347510pt;}
.he{height:45.679525pt;}
.h13{height:49.523948pt;}
.hd{height:52.716166pt;}
.hb{height:53.331872pt;}
.h7{height:53.430286pt;}
.ha{height:53.830301pt;}
.h1{height:53.929635pt;}
.hc{height:54.945688pt;}
.hf{height:58.136653pt;}
.h4{height:62.513062pt;}
.h9{height:64.650460pt;}
.h6{height:65.693697pt;}
.h5{height:71.062653pt;}
.h3{height:80.145429pt;}
.h2{height:106.860572pt;}
.h0{height:1056.000000pt;}
.w3{width:7.519959pt;}
.w1{width:7.520004pt;}
.w8{width:7.520019pt;}
.w5{width:7.520020pt;}
.w7{width:51.679993pt;}
.w4{width:91.040008pt;}
.w6{width:91.839996pt;}
.w2{width:160.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:123.681011pt;}
.x1b{left:130.559998pt;}
.x6{left:134.245703pt;}
.x24{left:137.119995pt;}
.x15{left:146.240005pt;}
.x2b{left:150.720001pt;}
.x1{left:151.997771pt;}
.x18{left:159.679993pt;}
.x23{left:165.759995pt;}
.x12{left:167.039993pt;}
.x10{left:168.800003pt;}
.x7{left:170.556794pt;}
.x13{left:182.080002pt;}
.x20{left:185.119995pt;}
.x28{left:190.880005pt;}
.x1a{left:199.199997pt;}
.x5{left:212.964033pt;}
.x19{left:213.919998pt;}
.x4{left:221.754146pt;}
.x25{left:236.479996pt;}
.xb{left:256.799989pt;}
.x26{left:259.040009pt;}
.xa{left:263.361725pt;}
.x9{left:274.399491pt;}
.xc{left:297.594924pt;}
.xd{left:313.438017pt;}
.x8{left:355.524914pt;}
.x11{left:357.600006pt;}
.x14{left:365.760010pt;}
.x16{left:367.519989pt;}
.x17{left:373.760010pt;}
.x2a{left:376.000000pt;}
.xe{left:377.920013pt;}
.x29{left:380.480011pt;}
.x2c{left:381.600006pt;}
.xf{left:393.119995pt;}
.x21{left:407.519989pt;}
.x1c{left:414.559998pt;}
.x2{left:421.925237pt;}
.x1e{left:505.440002pt;}
.x1f{left:557.760010pt;}
.x1d{left:574.400024pt;}
.x2d{left:650.080017pt;}
.x22{left:691.840027pt;}
.x2e{left:750.719971pt;}
.x27{left:769.919983pt;}
}




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