
    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_02a0b333b17603becdfa3593.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_d7fcbed1e4fce3944d6dc803.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_844c847bcc6fcd947291bb42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_dc468fbacaeaecd8d8a6269a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047000;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_275630d9b57858e2ef2c80ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_0910db3efba7215f8daaa8c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112000;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_e14f6e6b56e5d5548c36561e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_74ef30b32816b7ee1701d9a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_faee559ee16ec383e419dda2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.955000;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);}
.v2{vertical-align:-22.764000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.764000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.331200px;}
.lsd{letter-spacing:0.468307px;}
.ls7{letter-spacing:0.473430px;}
.ls8{letter-spacing:0.717309px;}
.ls6{letter-spacing:0.762138px;}
.ls5{letter-spacing:0.799200px;}
.ls12{letter-spacing:0.851805px;}
.ls18{letter-spacing:0.854601px;}
.ls10{letter-spacing:0.935126px;}
.lsa{letter-spacing:0.941126px;}
.ls4{letter-spacing:0.941472px;}
.lsf{letter-spacing:0.945379px;}
.ls1{letter-spacing:0.986301px;}
.ls3{letter-spacing:1.031130px;}
.ls2{letter-spacing:1.165626px;}
.ls17{letter-spacing:2.709351px;}
.ls15{letter-spacing:4.387221px;}
.ls14{letter-spacing:5.205351px;}
.ls13{letter-spacing:6.291351px;}
.ls16{letter-spacing:7.611351px;}
.ls11{letter-spacing:14.160307px;}
.lsc{letter-spacing:14.634307px;}
.lsb{letter-spacing:17.328010px;}
.lse{letter-spacing:17.892307px;}
.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;}
}
.ws5{word-spacing:-15.948144px;}
.ws2{word-spacing:-15.314611px;}
.ws3{word-spacing:-15.189082px;}
.ws0{word-spacing:-15.123129px;}
.wsc{word-spacing:-14.373139px;}
.wsb{word-spacing:-13.856028px;}
.wsd{word-spacing:-13.004223px;}
.wsa{word-spacing:-0.208061px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.259939px;}
.ws6{word-spacing:0.567984px;}
.ws4{word-spacing:1.136803px;}
.ws9{word-spacing:3.517939px;}
.ws7{word-spacing:11.763984px;}
._25{margin-left:-15.499025px;}
._19{margin-left:-14.227799px;}
._23{margin-left:-11.829604px;}
._11{margin-left:-9.384601px;}
._10{margin-left:-8.019856px;}
._1a{margin-left:-6.574707px;}
._18{margin-left:-4.142477px;}
._13{margin-left:-3.012710px;}
._d{margin-left:-1.512328px;}
._b{width:1.427993px;}
._5{width:2.957986px;}
._7{width:4.249980px;}
._12{width:5.478564px;}
._0{width:6.848539px;}
._1{width:8.014248px;}
._14{width:9.450150px;}
._a{width:10.573950px;}
._f{width:11.715228px;}
._9{width:13.667936px;}
._4{width:15.843925px;}
._6{width:21.113901px;}
._24{width:24.197251px;}
._e{width:25.297056px;}
._3{width:29.171863px;}
._8{width:34.169839px;}
._15{width:37.997620px;}
._c{width:46.579781px;}
._17{width:94.698177px;}
._1d{width:97.084589px;}
._16{width:107.105306px;}
._21{width:130.514938px;}
._22{width:141.167021px;}
._1e{width:153.702048px;}
._1f{width:205.510531px;}
._20{width:245.266925px;}
._1b{width:276.738989px;}
._1c{width:739.858138px;}
._2{width:845.750877px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:0.597600px;}
.fs3{font-size:33.999840px;}
.fs2{font-size:38.856960px;}
.fs5{font-size:42.742656px;}
.fs6{font-size:43.714080px;}
.fsb{font-size:43.935000px;}
.fse{font-size:47.343000px;}
.fsf{font-size:47.820600px;}
.fs1{font-size:48.571200px;}
.fsc{font-size:50.809200px;}
.fsd{font-size:53.798400px;}
.fs4{font-size:54.399744px;}
.fs10{font-size:56.787000px;}
.fsa{font-size:62.764800px;}
.fs7{font-size:65.753400px;}
.fs0{font-size:67.999680px;}
.fs9{font-size:68.742000px;}
.fs8{font-size:77.708400px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307350px;}
.y24{bottom:51.789042px;}
.y23{bottom:65.558977px;}
.y22{bottom:79.328912px;}
.y21{bottom:93.098848px;}
.y20{bottom:104.865221px;}
.y1f{bottom:127.159402px;}
.y43{bottom:144.567000px;}
.ycd{bottom:146.899500px;}
.y64{bottom:148.486500px;}
.y84{bottom:150.282000px;}
.yda{bottom:156.357000px;}
.ybc{bottom:162.850500px;}
.y53{bottom:164.125500px;}
.y83{bottom:164.737500px;}
.y102{bottom:166.318500px;}
.ycc{bottom:166.458000px;}
.y111{bottom:167.065500px;}
.y63{bottom:168.046500px;}
.yd9{bottom:174.640500px;}
.y82{bottom:179.194500px;}
.ybb{bottom:181.134000px;}
.y52{bottom:183.685500px;}
.y101{bottom:184.602000px;}
.y1e{bottom:185.044129px;}
.y110{bottom:185.349000px;}
.ycb{bottom:186.018000px;}
.y62{bottom:187.605000px;}
.y81{bottom:193.651500px;}
.yd8{bottom:193.671000px;}
.y1d{bottom:195.365509px;}
.yba{bottom:199.417500px;}
.y42{bottom:203.244000px;}
.y78{bottom:203.356500px;}
.y100{bottom:203.632500px;}
.y1c{bottom:204.836893px;}
.yca{bottom:205.576500px;}
.y61{bottom:207.165000px;}
.yd7{bottom:211.954500px;}
.y1b{bottom:213.433996px;}
.yb9{bottom:217.701000px;}
.yff{bottom:221.916000px;}
.y1a{bottom:222.043241px;}
.y10f{bottom:222.663000px;}
.y41{bottom:222.802500px;}
.y77{bottom:222.915000px;}
.yc9{bottom:225.135000px;}
.y60{bottom:226.723500px;}
.yd6{bottom:230.238000px;}
.y19{bottom:230.652486px;}
.y18{bottom:239.249588px;}
.yfe{bottom:240.199500px;}
.y10e{bottom:240.946500px;}
.y40{bottom:242.362500px;}
.yc8{bottom:244.695000px;}
.y5f{bottom:246.282000px;}
.y17{bottom:247.858834px;}
.yd5{bottom:248.521500px;}
.yb8{bottom:254.221500px;}
.y16{bottom:256.468079px;}
.yfd{bottom:258.483000px;}
.y10d{bottom:259.230000px;}
.y3f{bottom:261.921000px;}
.yc7{bottom:264.253500px;}
.y15{bottom:265.065181px;}
.y5e{bottom:265.842000px;}
.yd4{bottom:267.552000px;}
.y14{bottom:273.674426px;}
.yb7{bottom:273.780000px;}
.yfc{bottom:277.513500px;}
.y76{bottom:280.501500px;}
.y3e{bottom:281.479500px;}
.y67{bottom:281.481000px;}
.y13{bottom:282.283672px;}
.yc6{bottom:283.812000px;}
.y5d{bottom:285.400500px;}
.yd3{bottom:285.835500px;}
.yb6{bottom:293.340000px;}
.yfb{bottom:295.797000px;}
.y10c{bottom:296.544000px;}
.y75{bottom:297.510000px;}
.y12{bottom:299.987874px;}
.y3d{bottom:301.039500px;}
.yc5{bottom:303.372000px;}
.yd2{bottom:304.119000px;}
.y5c{bottom:304.959000px;}
.yb5{bottom:312.898500px;}
.yfa{bottom:314.080500px;}
.y74{bottom:314.517000px;}
.y10b{bottom:314.827500px;}
.y3c{bottom:320.598000px;}
.yc4{bottom:322.930500px;}
.yd1{bottom:323.149500px;}
.y5b{bottom:324.519000px;}
.y73{bottom:331.525500px;}
.yb4{bottom:332.457000px;}
.yf9{bottom:333.111000px;}
.y3b{bottom:340.158000px;}
.yd0{bottom:341.433000px;}
.yc3{bottom:342.490500px;}
.y5a{bottom:344.077500px;}
.y66{bottom:350.524500px;}
.yf8{bottom:351.394500px;}
.y72{bottom:354.510000px;}
.y3a{bottom:359.716500px;}
.yc2{bottom:362.049000px;}
.y59{bottom:363.637500px;}
.yf7{bottom:369.678000px;}
.ycf{bottom:370.084500px;}
.y10a{bottom:370.425000px;}
.y71{bottom:371.518500px;}
.yb3{bottom:371.748000px;}
.y39{bottom:379.275000px;}
.yc1{bottom:381.607500px;}
.y58{bottom:383.196000px;}
.y70{bottom:388.527000px;}
.yf6{bottom:388.708500px;}
.yb2{bottom:390.031500px;}
.y38{bottom:398.835000px;}
.yc0{bottom:401.167500px;}
.y57{bottom:402.754500px;}
.yf5{bottom:406.992000px;}
.yb1{bottom:408.315000px;}
.y11{bottom:409.188074px;}
.y6f{bottom:411.511500px;}
.y37{bottom:418.393500px;}
.y93{bottom:422.314500px;}
.yf4{bottom:425.275500px;}
.y109{bottom:426.022500px;}
.yb0{bottom:426.598500px;}
.y6e{bottom:428.520000px;}
.y56{bottom:432.681000px;}
.y36{bottom:437.952000px;}
.ybf{bottom:441.780000px;}
.y92{bottom:441.873000px;}
.y96{bottom:443.644500px;}
.yf3{bottom:444.306000px;}
.yaf{bottom:444.882000px;}
.y6d{bottom:445.527000px;}
.y35{bottom:457.512000px;}
.ybe{bottom:460.063500px;}
.y91{bottom:461.431500px;}
.yf2{bottom:462.589500px;}
.yae{bottom:463.165500px;}
.y65{bottom:467.880000px;}
.y6c{bottom:468.513000px;}
.y34{bottom:477.070500px;}
.ybd{bottom:478.347000px;}
.yf1{bottom:480.873000px;}
.y90{bottom:480.991500px;}
.yad{bottom:481.449000px;}
.y108{bottom:481.620000px;}
.y6b{bottom:485.520000px;}
.y98{bottom:486.900000px;}
.y33{bottom:496.630500px;}
.yac{bottom:499.732500px;}
.yf0{bottom:499.903500px;}
.y8f{bottom:500.550000px;}
.y32{bottom:516.189000px;}
.yef{bottom:518.187000px;}
.y8e{bottom:520.110000px;}
.y10{bottom:531.599641px;}
.y6a{bottom:532.089000px;}
.y31{bottom:535.747500px;}
.yab{bottom:536.253000px;}
.y107{bottom:536.470500px;}
.y55{bottom:536.730000px;}
.yee{bottom:537.217500px;}
.y8d{bottom:539.668500px;}
.y54{bottom:551.185500px;}
.y30{bottom:555.307500px;}
.yed{bottom:555.501000px;}
.yaa{bottom:555.811500px;}
.yf{bottom:558.143802px;}
.y8c{bottom:559.227000px;}
.y69{bottom:559.536000px;}
.ye{bottom:571.913737px;}
.yec{bottom:573.784500px;}
.y2f{bottom:574.866000px;}
.ya9{bottom:575.371500px;}
.y8a{bottom:578.787000px;}
.y8b{bottom:584.478000px;}
.yeb{bottom:592.068000px;}
.y2e{bottom:594.424500px;}
.ya8{bottom:594.930000px;}
.y88{bottom:598.345500px;}
.yd{bottom:598.712897px;}
.y89{bottom:604.036500px;}
.yea{bottom:610.351500px;}
.yc{bottom:612.482832px;}
.y11f{bottom:612.592500px;}
.y2d{bottom:613.984500px;}
.ya7{bottom:614.488500px;}
.y87{bottom:617.904000px;}
.yb{bottom:626.252767px;}
.ye9{bottom:629.382000px;}
.y11e{bottom:630.876000px;}
.y2c{bottom:633.543000px;}
.ya6{bottom:634.048500px;}
.y86{bottom:637.464000px;}
.ya{bottom:640.022702px;}
.y51{bottom:643.911000px;}
.ye8{bottom:647.665500px;}
.y11d{bottom:649.159500px;}
.y2b{bottom:653.103000px;}
.ya5{bottom:653.607000px;}
.y9{bottom:653.792638px;}
.y80{bottom:658.794000px;}
.y95{bottom:663.469500px;}
.ye7{bottom:665.949000px;}
.y85{bottom:667.390500px;}
.y11c{bottom:667.443000px;}
.y8{bottom:667.562573px;}
.y2a{bottom:672.661500px;}
.ya4{bottom:673.167000px;}
.y7f{bottom:678.352500px;}
.ye6{bottom:684.232500px;}
.y106{bottom:684.979500px;}
.y94{bottom:684.988500px;}
.y11b{bottom:686.473500px;}
.y50{bottom:692.220000px;}
.ya3{bottom:692.725500px;}
.y7e{bottom:697.912500px;}
.y29{bottom:702.588000px;}
.ye5{bottom:703.263000px;}
.y11a{bottom:704.757000px;}
.y4f{bottom:711.780000px;}
.ya2{bottom:712.284000px;}
.y7d{bottom:717.471000px;}
.ye4{bottom:721.546500px;}
.y119{bottom:723.040500px;}
.y7{bottom:731.239416px;}
.y4e{bottom:731.338500px;}
.ya1{bottom:731.844000px;}
.y7c{bottom:737.029500px;}
.y105{bottom:739.830000px;}
.ye3{bottom:740.577000px;}
.y118{bottom:741.324000px;}
.y6{bottom:748.445764px;}
.y4d{bottom:750.897000px;}
.ya0{bottom:751.402500px;}
.y7b{bottom:756.589500px;}
.ye2{bottom:758.860500px;}
.y117{bottom:760.356000px;}
.y5{bottom:765.652111px;}
.y4c{bottom:770.457000px;}
.y9f{bottom:770.961000px;}
.y97{bottom:776.148000px;}
.ye1{bottom:777.144000px;}
.y104{bottom:777.891000px;}
.y116{bottom:778.638000px;}
.y4{bottom:784.849878px;}
.y28{bottom:787.762500px;}
.y4b{bottom:790.015500px;}
.y9e{bottom:790.521000px;}
.y7a{bottom:795.706500px;}
.ye0{bottom:796.174500px;}
.y115{bottom:796.921500px;}
.y68{bottom:800.383500px;}
.y3{bottom:808.941193px;}
.y4a{bottom:809.575500px;}
.y9d{bottom:810.079500px;}
.y27{bottom:811.075500px;}
.ydf{bottom:814.458000px;}
.y114{bottom:815.205000px;}
.y79{bottom:815.266500px;}
.yce{bottom:819.942000px;}
.y49{bottom:829.134000px;}
.y9c{bottom:829.639500px;}
.y2{bottom:833.044651px;}
.yde{bottom:833.488500px;}
.y113{bottom:834.235500px;}
.y48{bottom:848.692500px;}
.y9b{bottom:849.198000px;}
.ydd{bottom:851.772000px;}
.y112{bottom:852.519000px;}
.y26{bottom:855.010500px;}
.y47{bottom:868.252500px;}
.y9a{bottom:868.756500px;}
.y103{bottom:870.055500px;}
.ydc{bottom:870.802500px;}
.y46{bottom:887.811000px;}
.ydb{bottom:889.086000px;}
.y99{bottom:897.640500px;}
.y25{bottom:897.882000px;}
.y45{bottom:907.369500px;}
.y44{bottom:948.189000px;}
.h6{height:25.193881px;}
.h5{height:28.793007px;}
.h8{height:32.392133px;}
.h4{height:35.991259px;}
.h14{height:37.564425px;}
.h7{height:40.310210px;}
.h13{height:40.886613px;}
.h11{height:43.441866px;}
.h17{height:44.804943px;}
.h12{height:45.997632px;}
.h15{height:46.553407px;}
.h16{height:48.552885px;}
.he{height:48.669336px;}
.h3{height:50.387763px;}
.hb{height:51.879433px;}
.h10{height:53.663904px;}
.hc{height:55.017547px;}
.hf{height:60.328425px;}
.hd{height:66.440682px;}
.h9{height:1020.472500px;}
.ha{height:1020.750000px;}
.h2{height:1022.290189px;}
.h0{height:1022.910000px;}
.h1{height:1023.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:37.861250px;}
.x1{left:44.746218px;}
.x7{left:79.636500px;}
.x5{left:106.422000px;}
.xd{left:114.148500px;}
.x2{left:120.468719px;}
.x22{left:122.097000px;}
.x6{left:123.424500px;}
.x1d{left:130.212000px;}
.xf{left:131.956500px;}
.x10{left:139.459500px;}
.x15{left:142.171500px;}
.x1b{left:179.103000px;}
.x9{left:191.428500px;}
.x11{left:197.569500px;}
.x1c{left:235.537500px;}
.xa{left:237.594000px;}
.x1e{left:324.637500px;}
.x19{left:346.302000px;}
.x4{left:354.533332px;}
.x13{left:364.257000px;}
.x16{left:369.847500px;}
.x1f{left:375.393000px;}
.x20{left:406.990500px;}
.x14{left:416.071500px;}
.x1a{left:433.615500px;}
.x17{left:454.738500px;}
.x21{left:460.114500px;}
.x18{left:464.317500px;}
.x8{left:471.945000px;}
.xb{left:522.307500px;}
.x12{left:556.729500px;}
.xc{left:587.763000px;}
.xe{left:607.072500px;}
@media print{
.v2{vertical-align:-20.234667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.234667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.294400pt;}
.lsd{letter-spacing:0.416273pt;}
.ls7{letter-spacing:0.420827pt;}
.ls8{letter-spacing:0.637608pt;}
.ls6{letter-spacing:0.677456pt;}
.ls5{letter-spacing:0.710400pt;}
.ls12{letter-spacing:0.757160pt;}
.ls18{letter-spacing:0.759645pt;}
.ls10{letter-spacing:0.831223pt;}
.lsa{letter-spacing:0.836557pt;}
.ls4{letter-spacing:0.836864pt;}
.lsf{letter-spacing:0.840337pt;}
.ls1{letter-spacing:0.876712pt;}
.ls3{letter-spacing:0.916560pt;}
.ls2{letter-spacing:1.036112pt;}
.ls17{letter-spacing:2.408312pt;}
.ls15{letter-spacing:3.899752pt;}
.ls14{letter-spacing:4.626979pt;}
.ls13{letter-spacing:5.592312pt;}
.ls16{letter-spacing:6.765645pt;}
.ls11{letter-spacing:12.586940pt;}
.lsc{letter-spacing:13.008273pt;}
.lsb{letter-spacing:15.402675pt;}
.lse{letter-spacing:15.904273pt;}
.ws5{word-spacing:-14.176128pt;}
.ws2{word-spacing:-13.612988pt;}
.ws3{word-spacing:-13.501406pt;}
.ws0{word-spacing:-13.442781pt;}
.wsc{word-spacing:-12.776124pt;}
.wsb{word-spacing:-12.316469pt;}
.wsd{word-spacing:-11.559309pt;}
.wsa{word-spacing:-0.184943pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.231057pt;}
.ws6{word-spacing:0.504875pt;}
.ws4{word-spacing:1.010492pt;}
.ws9{word-spacing:3.127057pt;}
.ws7{word-spacing:10.456875pt;}
._25{margin-left:-13.776911pt;}
._19{margin-left:-12.646932pt;}
._23{margin-left:-10.515203pt;}
._11{margin-left:-8.341868pt;}
._10{margin-left:-7.128761pt;}
._1a{margin-left:-5.844184pt;}
._18{margin-left:-3.682202pt;}
._13{margin-left:-2.677965pt;}
._d{margin-left:-1.344292pt;}
._b{width:1.269327pt;}
._5{width:2.629321pt;}
._7{width:3.777760pt;}
._12{width:4.869835pt;}
._0{width:6.087590pt;}
._1{width:7.123776pt;}
._14{width:8.400133pt;}
._a{width:9.399067pt;}
._f{width:10.413536pt;}
._9{width:12.149276pt;}
._4{width:14.083489pt;}
._6{width:18.767912pt;}
._24{width:21.508668pt;}
._e{width:22.486272pt;}
._3{width:25.930545pt;}
._8{width:30.373190pt;}
._15{width:33.775662pt;}
._c{width:41.404250pt;}
._17{width:84.176157pt;}
._1d{width:86.297412pt;}
._16{width:95.204716pt;}
._21{width:116.013278pt;}
._22{width:125.481796pt;}
._1e{width:136.624043pt;}
._1f{width:182.676028pt;}
._20{width:218.015044pt;}
._1b{width:245.990212pt;}
._1c{width:657.651678pt;}
._2{width:751.778557pt;}
.fs11{font-size:0.531200pt;}
.fs3{font-size:30.222080pt;}
.fs2{font-size:34.539520pt;}
.fs5{font-size:37.993472pt;}
.fs6{font-size:38.856960pt;}
.fsb{font-size:39.053333pt;}
.fse{font-size:42.082667pt;}
.fsf{font-size:42.507200pt;}
.fs1{font-size:43.174400pt;}
.fsc{font-size:45.163733pt;}
.fsd{font-size:47.820800pt;}
.fs4{font-size:48.355328pt;}
.fs10{font-size:50.477333pt;}
.fsa{font-size:55.790933pt;}
.fs7{font-size:58.447467pt;}
.fs0{font-size:60.444160pt;}
.fs9{font-size:61.104000pt;}
.fs8{font-size:69.074133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273200pt;}
.y24{bottom:46.034704pt;}
.y23{bottom:58.274646pt;}
.y22{bottom:70.514589pt;}
.y21{bottom:82.754531pt;}
.y20{bottom:93.213530pt;}
.y1f{bottom:113.030579pt;}
.y43{bottom:128.504000pt;}
.ycd{bottom:130.577333pt;}
.y64{bottom:131.988000pt;}
.y84{bottom:133.584000pt;}
.yda{bottom:138.984000pt;}
.ybc{bottom:144.756000pt;}
.y53{bottom:145.889333pt;}
.y83{bottom:146.433333pt;}
.y102{bottom:147.838667pt;}
.ycc{bottom:147.962667pt;}
.y111{bottom:148.502667pt;}
.y63{bottom:149.374667pt;}
.yd9{bottom:155.236000pt;}
.y82{bottom:159.284000pt;}
.ybb{bottom:161.008000pt;}
.y52{bottom:163.276000pt;}
.y101{bottom:164.090667pt;}
.y1e{bottom:164.483670pt;}
.y110{bottom:164.754667pt;}
.ycb{bottom:165.349333pt;}
.y62{bottom:166.760000pt;}
.y81{bottom:172.134667pt;}
.yd8{bottom:172.152000pt;}
.y1d{bottom:173.658230pt;}
.yba{bottom:177.260000pt;}
.y42{bottom:180.661333pt;}
.y78{bottom:180.761333pt;}
.y100{bottom:181.006667pt;}
.y1c{bottom:182.077238pt;}
.yca{bottom:182.734667pt;}
.y61{bottom:184.146667pt;}
.yd7{bottom:188.404000pt;}
.y1b{bottom:189.719107pt;}
.yb9{bottom:193.512000pt;}
.yff{bottom:197.258667pt;}
.y1a{bottom:197.371770pt;}
.y10f{bottom:197.922667pt;}
.y41{bottom:198.046667pt;}
.y77{bottom:198.146667pt;}
.yc9{bottom:200.120000pt;}
.y60{bottom:201.532000pt;}
.yd6{bottom:204.656000pt;}
.y19{bottom:205.024432pt;}
.y18{bottom:212.666301pt;}
.yfe{bottom:213.510667pt;}
.y10e{bottom:214.174667pt;}
.y40{bottom:215.433333pt;}
.yc8{bottom:217.506667pt;}
.y5f{bottom:218.917333pt;}
.y17{bottom:220.318963pt;}
.yd5{bottom:220.908000pt;}
.yb8{bottom:225.974667pt;}
.y16{bottom:227.971626pt;}
.yfd{bottom:229.762667pt;}
.y10d{bottom:230.426667pt;}
.y3f{bottom:232.818667pt;}
.yc7{bottom:234.892000pt;}
.y15{bottom:235.613494pt;}
.y5e{bottom:236.304000pt;}
.yd4{bottom:237.824000pt;}
.y14{bottom:243.266157pt;}
.yb7{bottom:243.360000pt;}
.yfc{bottom:246.678667pt;}
.y76{bottom:249.334667pt;}
.y3e{bottom:250.204000pt;}
.y67{bottom:250.205333pt;}
.y13{bottom:250.918819pt;}
.yc6{bottom:252.277333pt;}
.y5d{bottom:253.689333pt;}
.yd3{bottom:254.076000pt;}
.yb6{bottom:260.746667pt;}
.yfb{bottom:262.930667pt;}
.y10c{bottom:263.594667pt;}
.y75{bottom:264.453333pt;}
.y12{bottom:266.655888pt;}
.y3d{bottom:267.590667pt;}
.yc5{bottom:269.664000pt;}
.yd2{bottom:270.328000pt;}
.y5c{bottom:271.074667pt;}
.yb5{bottom:278.132000pt;}
.yfa{bottom:279.182667pt;}
.y74{bottom:279.570667pt;}
.y10b{bottom:279.846667pt;}
.y3c{bottom:284.976000pt;}
.yc4{bottom:287.049333pt;}
.yd1{bottom:287.244000pt;}
.y5b{bottom:288.461333pt;}
.y73{bottom:294.689333pt;}
.yb4{bottom:295.517333pt;}
.yf9{bottom:296.098667pt;}
.y3b{bottom:302.362667pt;}
.yd0{bottom:303.496000pt;}
.yc3{bottom:304.436000pt;}
.y5a{bottom:305.846667pt;}
.y66{bottom:311.577333pt;}
.yf8{bottom:312.350667pt;}
.y72{bottom:315.120000pt;}
.y3a{bottom:319.748000pt;}
.yc2{bottom:321.821333pt;}
.y59{bottom:323.233333pt;}
.yf7{bottom:328.602667pt;}
.ycf{bottom:328.964000pt;}
.y10a{bottom:329.266667pt;}
.y71{bottom:330.238667pt;}
.yb3{bottom:330.442667pt;}
.y39{bottom:337.133333pt;}
.yc1{bottom:339.206667pt;}
.y58{bottom:340.618667pt;}
.y70{bottom:345.357333pt;}
.yf6{bottom:345.518667pt;}
.yb2{bottom:346.694667pt;}
.y38{bottom:354.520000pt;}
.yc0{bottom:356.593333pt;}
.y57{bottom:358.004000pt;}
.yf5{bottom:361.770667pt;}
.yb1{bottom:362.946667pt;}
.y11{bottom:363.722733pt;}
.y6f{bottom:365.788000pt;}
.y37{bottom:371.905333pt;}
.y93{bottom:375.390667pt;}
.yf4{bottom:378.022667pt;}
.y109{bottom:378.686667pt;}
.yb0{bottom:379.198667pt;}
.y6e{bottom:380.906667pt;}
.y56{bottom:384.605333pt;}
.y36{bottom:389.290667pt;}
.ybf{bottom:392.693333pt;}
.y92{bottom:392.776000pt;}
.y96{bottom:394.350667pt;}
.yf3{bottom:394.938667pt;}
.yaf{bottom:395.450667pt;}
.y6d{bottom:396.024000pt;}
.y35{bottom:406.677333pt;}
.ybe{bottom:408.945333pt;}
.y91{bottom:410.161333pt;}
.yf2{bottom:411.190667pt;}
.yae{bottom:411.702667pt;}
.y65{bottom:415.893333pt;}
.y6c{bottom:416.456000pt;}
.y34{bottom:424.062667pt;}
.ybd{bottom:425.197333pt;}
.yf1{bottom:427.442667pt;}
.y90{bottom:427.548000pt;}
.yad{bottom:427.954667pt;}
.y108{bottom:428.106667pt;}
.y6b{bottom:431.573333pt;}
.y98{bottom:432.800000pt;}
.y33{bottom:441.449333pt;}
.yac{bottom:444.206667pt;}
.yf0{bottom:444.358667pt;}
.y8f{bottom:444.933333pt;}
.y32{bottom:458.834667pt;}
.yef{bottom:460.610667pt;}
.y8e{bottom:462.320000pt;}
.y10{bottom:472.533014pt;}
.y6a{bottom:472.968000pt;}
.y31{bottom:476.220000pt;}
.yab{bottom:476.669333pt;}
.y107{bottom:476.862667pt;}
.y55{bottom:477.093333pt;}
.yee{bottom:477.526667pt;}
.y8d{bottom:479.705333pt;}
.y54{bottom:489.942667pt;}
.y30{bottom:493.606667pt;}
.yed{bottom:493.778667pt;}
.yaa{bottom:494.054667pt;}
.yf{bottom:496.127824pt;}
.y8c{bottom:497.090667pt;}
.y69{bottom:497.365333pt;}
.ye{bottom:508.367766pt;}
.yec{bottom:510.030667pt;}
.y2f{bottom:510.992000pt;}
.ya9{bottom:511.441333pt;}
.y8a{bottom:514.477333pt;}
.y8b{bottom:519.536000pt;}
.yeb{bottom:526.282667pt;}
.y2e{bottom:528.377333pt;}
.ya8{bottom:528.826667pt;}
.y88{bottom:531.862667pt;}
.yd{bottom:532.189242pt;}
.y89{bottom:536.921333pt;}
.yea{bottom:542.534667pt;}
.yc{bottom:544.429184pt;}
.y11f{bottom:544.526667pt;}
.y2d{bottom:545.764000pt;}
.ya7{bottom:546.212000pt;}
.y87{bottom:549.248000pt;}
.yb{bottom:556.669126pt;}
.ye9{bottom:559.450667pt;}
.y11e{bottom:560.778667pt;}
.y2c{bottom:563.149333pt;}
.ya6{bottom:563.598667pt;}
.y86{bottom:566.634667pt;}
.ya{bottom:568.909069pt;}
.y51{bottom:572.365333pt;}
.ye8{bottom:575.702667pt;}
.y11d{bottom:577.030667pt;}
.y2b{bottom:580.536000pt;}
.ya5{bottom:580.984000pt;}
.y9{bottom:581.149011pt;}
.y80{bottom:585.594667pt;}
.y95{bottom:589.750667pt;}
.ye7{bottom:591.954667pt;}
.y85{bottom:593.236000pt;}
.y11c{bottom:593.282667pt;}
.y8{bottom:593.388954pt;}
.y2a{bottom:597.921333pt;}
.ya4{bottom:598.370667pt;}
.y7f{bottom:602.980000pt;}
.ye6{bottom:608.206667pt;}
.y106{bottom:608.870667pt;}
.y94{bottom:608.878667pt;}
.y11b{bottom:610.198667pt;}
.y50{bottom:615.306667pt;}
.ya3{bottom:615.756000pt;}
.y7e{bottom:620.366667pt;}
.y29{bottom:624.522667pt;}
.ye5{bottom:625.122667pt;}
.y11a{bottom:626.450667pt;}
.y4f{bottom:632.693333pt;}
.ya2{bottom:633.141333pt;}
.y7d{bottom:637.752000pt;}
.ye4{bottom:641.374667pt;}
.y119{bottom:642.702667pt;}
.y7{bottom:649.990592pt;}
.y4e{bottom:650.078667pt;}
.ya1{bottom:650.528000pt;}
.y7c{bottom:655.137333pt;}
.y105{bottom:657.626667pt;}
.ye3{bottom:658.290667pt;}
.y118{bottom:658.954667pt;}
.y6{bottom:665.285123pt;}
.y4d{bottom:667.464000pt;}
.ya0{bottom:667.913333pt;}
.y7b{bottom:672.524000pt;}
.ye2{bottom:674.542667pt;}
.y117{bottom:675.872000pt;}
.y5{bottom:680.579654pt;}
.y4c{bottom:684.850667pt;}
.y9f{bottom:685.298667pt;}
.y97{bottom:689.909333pt;}
.ye1{bottom:690.794667pt;}
.y104{bottom:691.458667pt;}
.y116{bottom:692.122667pt;}
.y4{bottom:697.644336pt;}
.y28{bottom:700.233333pt;}
.y4b{bottom:702.236000pt;}
.y9e{bottom:702.685333pt;}
.y7a{bottom:707.294667pt;}
.ye0{bottom:707.710667pt;}
.y115{bottom:708.374667pt;}
.y68{bottom:711.452000pt;}
.y3{bottom:719.058838pt;}
.y4a{bottom:719.622667pt;}
.y9d{bottom:720.070667pt;}
.y27{bottom:720.956000pt;}
.ydf{bottom:723.962667pt;}
.y114{bottom:724.626667pt;}
.y79{bottom:724.681333pt;}
.yce{bottom:728.837333pt;}
.y49{bottom:737.008000pt;}
.y9c{bottom:737.457333pt;}
.y2{bottom:740.484134pt;}
.yde{bottom:740.878667pt;}
.y113{bottom:741.542667pt;}
.y48{bottom:754.393333pt;}
.y9b{bottom:754.842667pt;}
.ydd{bottom:757.130667pt;}
.y112{bottom:757.794667pt;}
.y26{bottom:760.009333pt;}
.y47{bottom:771.780000pt;}
.y9a{bottom:772.228000pt;}
.y103{bottom:773.382667pt;}
.ydc{bottom:774.046667pt;}
.y46{bottom:789.165333pt;}
.ydb{bottom:790.298667pt;}
.y99{bottom:797.902667pt;}
.y25{bottom:798.117333pt;}
.y45{bottom:806.550667pt;}
.y44{bottom:842.834667pt;}
.h6{height:22.394561pt;}
.h5{height:25.593784pt;}
.h8{height:28.793007pt;}
.h4{height:31.992230pt;}
.h14{height:33.390600pt;}
.h7{height:35.831298pt;}
.h13{height:36.343656pt;}
.h11{height:38.614992pt;}
.h17{height:39.826616pt;}
.h12{height:40.886784pt;}
.h15{height:41.380806pt;}
.h16{height:43.158120pt;}
.he{height:43.261632pt;}
.h3{height:44.789123pt;}
.hb{height:46.115051pt;}
.h10{height:47.701248pt;}
.hc{height:48.904486pt;}
.hf{height:53.625267pt;}
.hd{height:59.058384pt;}
.h9{height:907.086667pt;}
.ha{height:907.333333pt;}
.h2{height:908.702390pt;}
.h0{height:909.253333pt;}
.h1{height:909.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:33.654445pt;}
.x1{left:39.774416pt;}
.x7{left:70.788000pt;}
.x5{left:94.597333pt;}
.xd{left:101.465333pt;}
.x2{left:107.083306pt;}
.x22{left:108.530667pt;}
.x6{left:109.710667pt;}
.x1d{left:115.744000pt;}
.xf{left:117.294667pt;}
.x10{left:123.964000pt;}
.x15{left:126.374667pt;}
.x1b{left:159.202667pt;}
.x9{left:170.158667pt;}
.x11{left:175.617333pt;}
.x1c{left:209.366667pt;}
.xa{left:211.194667pt;}
.x1e{left:288.566667pt;}
.x19{left:307.824000pt;}
.x4{left:315.140739pt;}
.x13{left:323.784000pt;}
.x16{left:328.753333pt;}
.x1f{left:333.682667pt;}
.x20{left:361.769333pt;}
.x14{left:369.841333pt;}
.x1a{left:385.436000pt;}
.x17{left:404.212000pt;}
.x21{left:408.990667pt;}
.x18{left:412.726667pt;}
.x8{left:419.506667pt;}
.xb{left:464.273333pt;}
.x12{left:494.870667pt;}
.xc{left:522.456000pt;}
.xe{left:539.620000pt;}
}




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