
    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_dd0b8bcf501214c3387f865a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_2695927d97074f0972c9440a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_8a2cc39c54e54354e8212d48.woff')format("woff");}.ff3{font-family:ff3;line-height:0.677246;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_81103c13e6aaa9777e132040.woff')format("woff");}.ff4{font-family:ff4;line-height:0.889648;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:-14.544002px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.998001px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006000px;}
.ls3{letter-spacing:14.112000px;}
.ls0{letter-spacing:849.120000px;}
.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:-14.916000px;}
.ws1{word-spacing:-13.560000px;}
.ws4{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.492000px;}
.ws3{word-spacing:-6.780000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-14.256000px;}
._4{margin-left:-9.900000px;}
._0{margin-left:-6.798000px;}
._2{margin-left:-3.564000px;}
._21{margin-left:-2.508000px;}
._5{margin-left:-1.452000px;}
._1{width:1.056000px;}
._7{width:2.178000px;}
._6{width:3.366000px;}
._f{width:4.818000px;}
._15{width:6.732000px;}
._14{width:8.118000px;}
._16{width:9.174000px;}
._a{width:10.296000px;}
._22{width:12.078000px;}
._9{width:13.794000px;}
._12{width:15.972000px;}
._11{width:17.028000px;}
._c{width:18.810000px;}
._17{width:19.866000px;}
._8{width:21.780000px;}
._19{width:22.968000px;}
._e{width:24.420000px;}
._d{width:25.476000px;}
._10{width:27.060000px;}
._18{width:31.482000px;}
._b{width:34.386000px;}
._1f{width:35.802000px;}
._1d{width:36.990000px;}
._1e{width:38.838000px;}
._1a{width:42.090002px;}
._1b{width:44.838000px;}
._23{width:45.864000px;}
._13{width:47.058000px;}
._1c{width:48.534000px;}
._25{width:62.724000px;}
._20{width:65.004000px;}
._24{width:849.090000px;}
.fc7{color:rgb(0,91,141);}
.fc6{color:rgb(192,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,94,147);}
.fc2{color:rgb(0,126,197);}
.fc1{color:rgb(66,92,108);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:6.000000px;}
.fsa{font-size:30.000000px;}
.fs9{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.029001px;}
.y2{bottom:4.431001px;}
.y10d{bottom:6.625500px;}
.yb4{bottom:6.936001px;}
.y108{bottom:7.028998px;}
.yb2{bottom:7.029001px;}
.y134{bottom:8.931001px;}
.y10c{bottom:9.625500px;}
.yb{bottom:10.875000px;}
.y29{bottom:14.964001px;}
.y28{bottom:16.393501px;}
.y113{bottom:21.625500px;}
.y12a{bottom:21.930001px;}
.y5{bottom:23.438998px;}
.y114{bottom:24.625500px;}
.y4{bottom:24.868498px;}
.y107{bottom:25.339499px;}
.y6{bottom:25.500011px;}
.y2a{bottom:25.500063px;}
.y140{bottom:26.931001px;}
.ya{bottom:27.374999px;}
.y10b{bottom:27.625500px;}
.y14b{bottom:30.241502px;}
.y133{bottom:35.931001px;}
.y115{bottom:39.625500px;}
.y112{bottom:42.625500px;}
.y3{bottom:43.810513px;}
.y27{bottom:43.810564px;}
.y10a{bottom:45.625500px;}
.y13f{bottom:49.431001px;}
.y9{bottom:50.624999px;}
.y14a{bottom:52.741502px;}
.y132{bottom:58.431001px;}
.y111{bottom:60.625500px;}
.y13e{bottom:71.931001px;}
.y149{bottom:75.241502px;}
.y110{bottom:78.625500px;}
.y131{bottom:80.931001px;}
.y13d{bottom:94.431001px;}
.y10f{bottom:96.625500px;}
.y148{bottom:97.741502px;}
.y130{bottom:103.431001px;}
.y119{bottom:114.625500px;}
.y13c{bottom:116.931001px;}
.y147{bottom:120.241502px;}
.y12f{bottom:125.931001px;}
.y13b{bottom:139.431001px;}
.y146{bottom:142.741502px;}
.y12e{bottom:148.431001px;}
.ycf{bottom:155.733021px;}
.y4c{bottom:158.239537px;}
.yb0{bottom:161.496068px;}
.y13a{bottom:161.931001px;}
.y145{bottom:165.241502px;}
.y14c{bottom:166.674016px;}
.yce{bottom:167.955022px;}
.y12d{bottom:170.931001px;}
.y11b{bottom:177.162077px;}
.y4b{bottom:180.739537px;}
.y139{bottom:184.431001px;}
.y143{bottom:184.743032px;}
.y8e{bottom:185.239537px;}
.y6f{bottom:187.468572px;}
.y144{bottom:187.741502px;}
.yaf{bottom:192.996031px;}
.y12c{bottom:193.431001px;}
.y26{bottom:195.801042px;}
.y11a{bottom:199.165576px;}
.yfa{bottom:203.239540px;}
.y8d{bottom:207.739537px;}
.y6e{bottom:209.968572px;}
.yae{bottom:213.138027px;}
.y118{bottom:214.693531px;}
.y4a{bottom:216.448577px;}
.yf9{bottom:225.739540px;}
.ycd{bottom:230.760015px;}
.y6d{bottom:232.468572px;}
.yad{bottom:233.280029px;}
.y25{bottom:241.083043px;}
.y8c{bottom:248.239537px;}
.yf8{bottom:248.239540px;}
.ycc{bottom:253.260015px;}
.yac{bottom:253.422030px;}
.y6c{bottom:254.968572px;}
.y24{bottom:263.583043px;}
.y49{bottom:267.874535px;}
.y8b{bottom:270.739537px;}
.y6b{bottom:277.468572px;}
.ycb{bottom:288.163530px;}
.y48{bottom:290.374535px;}
.yab{bottom:291.564033px;}
.y8a{bottom:293.239537px;}
.y23{bottom:293.583043px;}
.y6a{bottom:299.968572px;}
.y47{bottom:312.874532px;}
.yaa{bottom:314.064033px;}
.y89{bottom:315.739540px;}
.y69{bottom:322.468572px;}
.y22{bottom:323.583043px;}
.yf7{bottom:333.739540px;}
.y46{bottom:335.374532px;}
.ya9{bottom:336.564031px;}
.yca{bottom:336.732030px;}
.y88{bottom:338.239537px;}
.y68{bottom:344.968526px;}
.y117{bottom:347.443531px;}
.y21{bottom:353.583043px;}
.yf6{bottom:356.239540px;}
.ya8{bottom:359.064031px;}
.yc9{bottom:359.232030px;}
.y87{bottom:360.739537px;}
.y67{bottom:367.468526px;}
.y45{bottom:375.874535px;}
.yf5{bottom:378.739537px;}
.yc8{bottom:381.732030px;}
.y86{bottom:383.239537px;}
.y20{bottom:383.583043px;}
.y66{bottom:389.968526px;}
.y142{bottom:391.303534px;}
.ya7{bottom:393.967546px;}
.y44{bottom:398.374532px;}
.yf4{bottom:401.239537px;}
.yc7{bottom:404.232030px;}
.y85{bottom:405.739537px;}
.y65{bottom:412.468526px;}
.y1f{bottom:413.583043px;}
.y43{bottom:420.874532px;}
.y116{bottom:426.193531px;}
.yc6{bottom:426.732030px;}
.y84{bottom:428.239537px;}
.yf3{bottom:441.739540px;}
.ya6{bottom:442.536049px;}
.y1e{bottom:443.583043px;}
.y64{bottom:448.177520px;}
.y83{bottom:450.739537px;}
.y42{bottom:461.374535px;}
.yc5{bottom:461.635546px;}
.yf2{bottom:464.239537px;}
.y141{bottom:464.659535px;}
.ya5{bottom:465.036049px;}
.y82{bottom:473.239540px;}
.y1d{bottom:473.583043px;}
.y138{bottom:482.728529px;}
.y41{bottom:483.874535px;}
.yf1{bottom:486.739537px;}
.ya4{bottom:487.536046px;}
.y81{bottom:495.739537px;}
.y63{bottom:502.624546px;}
.y1c{bottom:503.583043px;}
.y10e{bottom:504.943531px;}
.y40{bottom:506.374535px;}
.ya3{bottom:510.036046px;}
.yc4{bottom:510.204048px;}
.y80{bottom:518.239537px;}
.yf0{bottom:522.448531px;}
.y62{bottom:525.787548px;}
.y3f{bottom:528.874532px;}
.yc3{bottom:532.704048px;}
.y1b{bottom:533.583043px;}
.y7f{bottom:540.739537px;}
.ya2{bottom:545.745040px;}
.y61{bottom:548.950549px;}
.y3e{bottom:551.374532px;}
.yc2{bottom:555.204048px;}
.y7e{bottom:563.239537px;}
.y1a{bottom:563.583043px;}
.y60{bottom:572.113552px;}
.yef{bottom:573.874535px;}
.yc1{bottom:577.704048px;}
.y7d{bottom:585.739537px;}
.y3d{bottom:591.874535px;}
.y19{bottom:593.583043px;}
.y5f{bottom:595.276553px;}
.yee{bottom:596.374535px;}
.ya1{bottom:597.171043px;}
.yc0{bottom:600.204045px;}
.y7c{bottom:608.239537px;}
.y3c{bottom:614.374535px;}
.y5e{bottom:618.439533px;}
.yed{bottom:618.874535px;}
.ya0{bottom:619.671043px;}
.y109{bottom:619.693534px;}
.ybf{bottom:622.704045px;}
.y18{bottom:623.583043px;}
.y3b{bottom:636.874535px;}
.yec{bottom:641.374532px;}
.y5d{bottom:641.602535px;}
.y9f{bottom:642.171041px;}
.ybe{bottom:645.204045px;}
.y7b{bottom:648.739540px;}
.y17{bottom:653.583043px;}
.y3a{bottom:659.374532px;}
.yd7{bottom:663.273016px;}
.yeb{bottom:663.874532px;}
.y9e{bottom:664.671041px;}
.y5c{bottom:664.765536px;}
.y7a{bottom:671.239540px;}
.y39{bottom:681.874532px;}
.y106{bottom:683.443534px;}
.y16{bottom:683.583043px;}
.y137{bottom:685.978529px;}
.y9d{bottom:687.171041px;}
.y5b{bottom:687.928515px;}
.yd6{bottom:688.333511px;}
.y79{bottom:693.739537px;}
.yea{bottom:704.374535px;}
.y9c{bottom:709.671041px;}
.y5a{bottom:711.091540px;}
.yd5{bottom:713.394012px;}
.y15{bottom:713.583043px;}
.y78{bottom:716.239537px;}
.y127{bottom:719.571040px;}
.y38{bottom:722.374535px;}
.ye9{bottom:726.874535px;}
.y9b{bottom:732.171041px;}
.y59{bottom:734.254543px;}
.yd4{bottom:738.454514px;}
.y105{bottom:742.093534px;}
.y14{bottom:743.583043px;}
.y37{bottom:744.874535px;}
.ye1{bottom:745.389039px;}
.ye8{bottom:749.374535px;}
.y77{bottom:751.948531px;}
.y9a{bottom:754.671041px;}
.y58{bottom:757.417544px;}
.y126{bottom:757.713040px;}
.y136{bottom:759.334531px;}
.ybd{bottom:766.290040px;}
.y36{bottom:767.374535px;}
.y104{bottom:769.806035px;}
.ye7{bottom:771.874535px;}
.y13{bottom:773.583043px;}
.y99{bottom:777.171041px;}
.y135{bottom:777.703530px;}
.y12b{bottom:778.903536px;}
.y57{bottom:780.580523px;}
.y35{bottom:789.874532px;}
.ybc{bottom:789.921043px;}
.ye0{bottom:790.671041px;}
.ye6{bottom:794.374532px;}
.y125{bottom:798.213043px;}
.y98{bottom:799.671041px;}
.y76{bottom:803.374535px;}
.y12{bottom:803.583043px;}
.y56{bottom:803.743525px;}
.ybb{bottom:810.063044px;}
.y103{bottom:810.306038px;}
.y34{bottom:812.374532px;}
.ye5{bottom:816.874532px;}
.y124{bottom:820.713040px;}
.y97{bottom:822.171041px;}
.y75{bottom:825.874532px;}
.y55{bottom:826.906527px;}
.yba{bottom:830.205035px;}
.ydf{bottom:831.171043px;}
.y102{bottom:832.806038px;}
.y11{bottom:833.583043px;}
.y123{bottom:843.213040px;}
.y96{bottom:844.671041px;}
.yd3{bottom:845.916029px;}
.y33{bottom:848.083526px;}
.y74{bottom:848.374532px;}
.y54{bottom:850.069529px;}
.ye4{bottom:852.583526px;}
.yde{bottom:853.671041px;}
.y101{bottom:855.306035px;}
.y10{bottom:863.583043px;}
.y95{bottom:867.171041px;}
.yd2{bottom:870.976524px;}
.y53{bottom:873.232531px;}
.ydd{bottom:876.171041px;}
.y100{bottom:877.806035px;}
.y122{bottom:883.713040px;}
.y73{bottom:884.083526px;}
.y94{bottom:889.671041px;}
.yf{bottom:893.583043px;}
.yd1{bottom:896.037025px;}
.y32{bottom:899.509541px;}
.ye3{bottom:904.009538px;}
.y121{bottom:906.213040px;}
.y52{bottom:906.583537px;}
.y93{bottom:912.171041px;}
.ydc{bottom:916.671043px;}
.yff{bottom:918.306035px;}
.ye{bottom:920.416536px;}
.yd0{bottom:921.097527px;}
.y31{bottom:922.009541px;}
.ye2{bottom:926.509538px;}
.y72{bottom:935.509538px;}
.y120{bottom:937.713040px;}
.ydb{bottom:939.171043px;}
.yfe{bottom:940.806035px;}
.y92{bottom:943.671041px;}
.y30{bottom:944.509541px;}
.y51{bottom:958.009538px;}
.yda{bottom:961.671041px;}
.yd{bottom:965.698537px;}
.y2f{bottom:967.009538px;}
.yb9{bottom:970.314031px;}
.y11f{bottom:978.213037px;}
.y91{bottom:979.380034px;}
.y50{bottom:980.509538px;}
.yfd{bottom:981.306038px;}
.yd9{bottom:984.171041px;}
.y2e{bottom:989.509538px;}
.y129{bottom:991.153536px;}
.yb8{bottom:992.814031px;}
.y71{bottom:994.524033px;}
.y11e{bottom:1000.713035px;}
.yfc{bottom:1003.806038px;}
.yb7{bottom:1011.183030px;}
.yb6{bottom:1012.383036px;}
.yc{bottom:1016.629535px;}
.y4f{bottom:1017.024035px;}
.yd8{bottom:1019.880034px;}
.y11d{bottom:1023.213035px;}
.yfb{bottom:1026.306038px;}
.y2d{bottom:1030.009535px;}
.y90{bottom:1030.806035px;}
.yb5{bottom:1037.443531px;}
.y8{bottom:1048.050035px;}
.y70{bottom:1048.806038px;}
.y2c{bottom:1052.509535px;}
.y8f{bottom:1053.306035px;}
.y11c{bottom:1059.727535px;}
.yb3{bottom:1062.504032px;}
.y128{bottom:1064.509535px;}
.y4e{bottom:1071.306035px;}
.yb1{bottom:1087.564533px;}
.y2b{bottom:1089.024034px;}
.y4d{bottom:1093.806035px;}
.y1{bottom:1180.800035px;}
.h13{height:5.080078px;}
.h2{height:22.500000px;}
.hf{height:24.310501px;}
.h15{height:26.096623px;}
.hb{height:37.050001px;}
.h12{height:38.416992px;}
.h1b{height:40.640625px;}
.h16{height:42.620999px;}
.h10{height:42.685547px;}
.h5{height:43.652344px;}
.h4{height:45.524998px;}
.h11{height:45.720703px;}
.h14{height:46.954102px;}
.h6{height:48.017578px;}
.h1c{height:50.800781px;}
.h1d{height:50.925001px;}
.he{height:52.382812px;}
.h3{height:55.880859px;}
.hc{height:58.735502px;}
.hd{height:61.113281px;}
.h17{height:63.000000px;}
.h8{height:63.824999px;}
.h7{height:67.210499px;}
.ha{height:69.843750px;}
.h19{height:78.000000px;}
.h9{height:96.035156px;}
.h18{height:114.000000px;}
.h1a{height:132.000000px;}
.h1f{height:202.500000px;}
.h20{height:205.810501px;}
.h1e{height:211.500000px;}
.h0{height:1262.850037px;}
.h1{height:1263.000000px;}
.w4{width:68.024998px;}
.wc{width:82.425001px;}
.w11{width:95.550001px;}
.wf{width:95.625000px;}
.w10{width:96.149998px;}
.we{width:106.200005px;}
.w9{width:119.399998px;}
.w6{width:137.325005px;}
.wb{width:145.274998px;}
.wa{width:145.424995px;}
.wd{width:148.649998px;}
.w5{width:165.750000px;}
.w8{width:166.725002px;}
.w7{width:166.875000px;}
.w3{width:569.775009px;}
.w12{width:637.800018px;}
.w2{width:892.949947px;}
.w0{width:892.949982px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:4.275000px;}
.x20{left:15.150001px;}
.x1c{left:26.219999px;}
.x1d{left:27.300001px;}
.x7{left:33.664501px;}
.x3{left:34.694999px;}
.x1f{left:42.150001px;}
.x1e{left:55.350002px;}
.x1{left:106.350002px;}
.x5{left:122.850002px;}
.xb{left:131.850002px;}
.xa{left:133.350002px;}
.x8{left:138.225002px;}
.x6{left:139.350002px;}
.x1b{left:144.375002px;}
.xc{left:157.350002px;}
.x9{left:165.225002px;}
.x12{left:225.750000px;}
.xe{left:243.675007px;}
.x16{left:255.000000px;}
.x11{left:321.600002px;}
.x17{left:361.199993px;}
.x13{left:371.175007px;}
.xf{left:410.550007px;}
.x18{left:456.824993px;}
.x14{left:516.449993px;}
.x19{left:552.975002px;}
.x10{left:577.424984px;}
.x1a{left:648.600002px;}
.x15{left:661.725002px;}
.x2{left:676.125011px;}
.x4{left:684.824993px;}
@media print{
.v2{vertical-align:-12.928001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.776001pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005333pt;}
.ls3{letter-spacing:12.544000pt;}
.ls0{letter-spacing:754.773333pt;}
.ws5{word-spacing:-13.258667pt;}
.ws1{word-spacing:-12.053333pt;}
.ws4{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.437333pt;}
.ws3{word-spacing:-6.026667pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-12.672000pt;}
._4{margin-left:-8.800000pt;}
._0{margin-left:-6.042667pt;}
._2{margin-left:-3.168000pt;}
._21{margin-left:-2.229333pt;}
._5{margin-left:-1.290667pt;}
._1{width:0.938667pt;}
._7{width:1.936000pt;}
._6{width:2.992000pt;}
._f{width:4.282667pt;}
._15{width:5.984000pt;}
._14{width:7.216000pt;}
._16{width:8.154667pt;}
._a{width:9.152000pt;}
._22{width:10.736000pt;}
._9{width:12.261333pt;}
._12{width:14.197333pt;}
._11{width:15.136000pt;}
._c{width:16.720000pt;}
._17{width:17.658667pt;}
._8{width:19.360000pt;}
._19{width:20.416000pt;}
._e{width:21.706667pt;}
._d{width:22.645333pt;}
._10{width:24.053333pt;}
._18{width:27.984000pt;}
._b{width:30.565333pt;}
._1f{width:31.824000pt;}
._1d{width:32.880000pt;}
._1e{width:34.522667pt;}
._1a{width:37.413335pt;}
._1b{width:39.856000pt;}
._23{width:40.768000pt;}
._13{width:41.829333pt;}
._1c{width:43.141333pt;}
._25{width:55.754667pt;}
._20{width:57.781333pt;}
._24{width:754.746667pt;}
.fs8{font-size:5.333333pt;}
.fsa{font-size:26.666667pt;}
.fs9{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.581334pt;}
.y2{bottom:3.938667pt;}
.y10d{bottom:5.889333pt;}
.yb4{bottom:6.165334pt;}
.y108{bottom:6.247999pt;}
.yb2{bottom:6.248001pt;}
.y134{bottom:7.938667pt;}
.y10c{bottom:8.556000pt;}
.yb{bottom:9.666667pt;}
.y29{bottom:13.301334pt;}
.y28{bottom:14.572001pt;}
.y113{bottom:19.222666pt;}
.y12a{bottom:19.493334pt;}
.y5{bottom:20.834665pt;}
.y114{bottom:21.889333pt;}
.y4{bottom:22.105331pt;}
.y107{bottom:22.524000pt;}
.y6{bottom:22.666677pt;}
.y2a{bottom:22.666723pt;}
.y140{bottom:23.938667pt;}
.ya{bottom:24.333332pt;}
.y10b{bottom:24.556000pt;}
.y14b{bottom:26.881335pt;}
.y133{bottom:31.938667pt;}
.y115{bottom:35.222666pt;}
.y112{bottom:37.889333pt;}
.y3{bottom:38.942678pt;}
.y27{bottom:38.942724pt;}
.y10a{bottom:40.556000pt;}
.y13f{bottom:43.938667pt;}
.y9{bottom:44.999999pt;}
.y14a{bottom:46.881335pt;}
.y132{bottom:51.938667pt;}
.y111{bottom:53.889333pt;}
.y13e{bottom:63.938667pt;}
.y149{bottom:66.881335pt;}
.y110{bottom:69.889333pt;}
.y131{bottom:71.938667pt;}
.y13d{bottom:83.938667pt;}
.y10f{bottom:85.889333pt;}
.y148{bottom:86.881335pt;}
.y130{bottom:91.938667pt;}
.y119{bottom:101.889333pt;}
.y13c{bottom:103.938667pt;}
.y147{bottom:106.881335pt;}
.y12f{bottom:111.938667pt;}
.y13b{bottom:123.938667pt;}
.y146{bottom:126.881335pt;}
.y12e{bottom:131.938667pt;}
.ycf{bottom:138.429352pt;}
.y4c{bottom:140.657366pt;}
.yb0{bottom:143.552060pt;}
.y13a{bottom:143.938667pt;}
.y145{bottom:146.881335pt;}
.y14c{bottom:148.154681pt;}
.yce{bottom:149.293353pt;}
.y12d{bottom:151.938667pt;}
.y11b{bottom:157.477402pt;}
.y4b{bottom:160.657366pt;}
.y139{bottom:163.938667pt;}
.y143{bottom:164.216029pt;}
.y8e{bottom:164.657366pt;}
.y6f{bottom:166.638730pt;}
.y144{bottom:166.881335pt;}
.yaf{bottom:171.552027pt;}
.y12c{bottom:171.938667pt;}
.y26{bottom:174.045371pt;}
.y11a{bottom:177.036068pt;}
.yfa{bottom:180.657369pt;}
.y8d{bottom:184.657366pt;}
.y6e{bottom:186.638730pt;}
.yae{bottom:189.456024pt;}
.y118{bottom:190.838694pt;}
.y4a{bottom:192.398735pt;}
.yf9{bottom:200.657369pt;}
.ycd{bottom:205.120013pt;}
.y6d{bottom:206.638730pt;}
.yad{bottom:207.360026pt;}
.y25{bottom:214.296038pt;}
.y8c{bottom:220.657366pt;}
.yf8{bottom:220.657369pt;}
.ycc{bottom:225.120013pt;}
.yac{bottom:225.264027pt;}
.y6c{bottom:226.638730pt;}
.y24{bottom:234.296038pt;}
.y49{bottom:238.110697pt;}
.y8b{bottom:240.657366pt;}
.y6b{bottom:246.638730pt;}
.ycb{bottom:256.145360pt;}
.y48{bottom:258.110697pt;}
.yab{bottom:259.168030pt;}
.y8a{bottom:260.657366pt;}
.y23{bottom:260.962705pt;}
.y6a{bottom:266.638730pt;}
.y47{bottom:278.110695pt;}
.yaa{bottom:279.168030pt;}
.y89{bottom:280.657369pt;}
.y69{bottom:286.638730pt;}
.y22{bottom:287.629372pt;}
.yf7{bottom:296.657369pt;}
.y46{bottom:298.110695pt;}
.ya9{bottom:299.168027pt;}
.yca{bottom:299.317360pt;}
.y88{bottom:300.657366pt;}
.y68{bottom:306.638690pt;}
.y117{bottom:308.838694pt;}
.y21{bottom:314.296038pt;}
.yf6{bottom:316.657369pt;}
.ya8{bottom:319.168027pt;}
.yc9{bottom:319.317360pt;}
.y87{bottom:320.657366pt;}
.y67{bottom:326.638690pt;}
.y45{bottom:334.110697pt;}
.yf5{bottom:336.657366pt;}
.yc8{bottom:339.317360pt;}
.y86{bottom:340.657366pt;}
.y20{bottom:340.962705pt;}
.y66{bottom:346.638690pt;}
.y142{bottom:347.825363pt;}
.ya7{bottom:350.193375pt;}
.y44{bottom:354.110695pt;}
.yf4{bottom:356.657366pt;}
.yc7{bottom:359.317360pt;}
.y85{bottom:360.657366pt;}
.y65{bottom:366.638690pt;}
.y1f{bottom:367.629372pt;}
.y43{bottom:374.110695pt;}
.y116{bottom:378.838694pt;}
.yc6{bottom:379.317360pt;}
.y84{bottom:380.657366pt;}
.yf3{bottom:392.657369pt;}
.ya6{bottom:393.365377pt;}
.y1e{bottom:394.296038pt;}
.y64{bottom:398.380018pt;}
.y83{bottom:400.657366pt;}
.y42{bottom:410.110697pt;}
.yc5{bottom:410.342707pt;}
.yf2{bottom:412.657366pt;}
.y141{bottom:413.030698pt;}
.ya5{bottom:413.365377pt;}
.y82{bottom:420.657369pt;}
.y1d{bottom:420.962705pt;}
.y138{bottom:429.092026pt;}
.y41{bottom:430.110697pt;}
.yf1{bottom:432.657366pt;}
.ya4{bottom:433.365374pt;}
.y81{bottom:440.657366pt;}
.y63{bottom:446.777374pt;}
.y1c{bottom:447.629372pt;}
.y10e{bottom:448.838694pt;}
.y40{bottom:450.110697pt;}
.ya3{bottom:453.365374pt;}
.yc4{bottom:453.514709pt;}
.y80{bottom:460.657366pt;}
.yf0{bottom:464.398694pt;}
.y62{bottom:467.366709pt;}
.y3f{bottom:470.110695pt;}
.yc3{bottom:473.514709pt;}
.y1b{bottom:474.296038pt;}
.y7f{bottom:480.657366pt;}
.ya2{bottom:485.106702pt;}
.y61{bottom:487.956043pt;}
.y3e{bottom:490.110695pt;}
.yc2{bottom:493.514709pt;}
.y7e{bottom:500.657366pt;}
.y1a{bottom:500.962705pt;}
.y60{bottom:508.545380pt;}
.yef{bottom:510.110697pt;}
.yc1{bottom:513.514709pt;}
.y7d{bottom:520.657366pt;}
.y3d{bottom:526.110697pt;}
.y19{bottom:527.629372pt;}
.y5f{bottom:529.134713pt;}
.yee{bottom:530.110697pt;}
.ya1{bottom:530.818705pt;}
.yc0{bottom:533.514707pt;}
.y7c{bottom:540.657366pt;}
.y3c{bottom:546.110697pt;}
.y5e{bottom:549.724030pt;}
.yed{bottom:550.110697pt;}
.ya0{bottom:550.818705pt;}
.y109{bottom:550.838697pt;}
.ybf{bottom:553.514707pt;}
.y18{bottom:554.296038pt;}
.y3b{bottom:566.110697pt;}
.yec{bottom:570.110695pt;}
.y5d{bottom:570.313365pt;}
.y9f{bottom:570.818703pt;}
.ybe{bottom:573.514707pt;}
.y7b{bottom:576.657369pt;}
.y17{bottom:580.962705pt;}
.y3a{bottom:586.110695pt;}
.yd7{bottom:589.576014pt;}
.yeb{bottom:590.110695pt;}
.y9e{bottom:590.818703pt;}
.y5c{bottom:590.902699pt;}
.y7a{bottom:596.657369pt;}
.y39{bottom:606.110695pt;}
.y106{bottom:607.505363pt;}
.y16{bottom:607.629372pt;}
.y137{bottom:609.758692pt;}
.y9d{bottom:610.818703pt;}
.y5b{bottom:611.492013pt;}
.yd6{bottom:611.852010pt;}
.y79{bottom:616.657366pt;}
.yea{bottom:626.110697pt;}
.y9c{bottom:630.818703pt;}
.y5a{bottom:632.081369pt;}
.yd5{bottom:634.128011pt;}
.y15{bottom:634.296038pt;}
.y78{bottom:636.657366pt;}
.y127{bottom:639.618702pt;}
.y38{bottom:642.110697pt;}
.ye9{bottom:646.110697pt;}
.y9b{bottom:650.818703pt;}
.y59{bottom:652.670705pt;}
.yd4{bottom:656.404012pt;}
.y105{bottom:659.638697pt;}
.y14{bottom:660.962705pt;}
.y37{bottom:662.110697pt;}
.ye1{bottom:662.568035pt;}
.ye8{bottom:666.110697pt;}
.y77{bottom:668.398694pt;}
.y9a{bottom:670.818703pt;}
.y58{bottom:673.260039pt;}
.y126{bottom:673.522703pt;}
.y136{bottom:674.964027pt;}
.ybd{bottom:681.146702pt;}
.y36{bottom:682.110697pt;}
.y104{bottom:684.272031pt;}
.ye7{bottom:686.110697pt;}
.y13{bottom:687.629372pt;}
.y99{bottom:690.818703pt;}
.y135{bottom:691.292027pt;}
.y12b{bottom:692.358699pt;}
.y57{bottom:693.849354pt;}
.y35{bottom:702.110695pt;}
.ybc{bottom:702.152039pt;}
.ye0{bottom:702.818703pt;}
.ye6{bottom:706.110695pt;}
.y125{bottom:709.522705pt;}
.y98{bottom:710.818703pt;}
.y76{bottom:714.110697pt;}
.y12{bottom:714.296038pt;}
.y56{bottom:714.438689pt;}
.ybb{bottom:720.056039pt;}
.y103{bottom:720.272034pt;}
.y34{bottom:722.110695pt;}
.ye5{bottom:726.110695pt;}
.y124{bottom:729.522703pt;}
.y97{bottom:730.818703pt;}
.y75{bottom:734.110695pt;}
.y55{bottom:735.028024pt;}
.yba{bottom:737.960031pt;}
.ydf{bottom:738.818705pt;}
.y102{bottom:740.272034pt;}
.y11{bottom:740.962705pt;}
.y123{bottom:749.522703pt;}
.y96{bottom:750.818703pt;}
.yd3{bottom:751.925359pt;}
.y33{bottom:753.852023pt;}
.y74{bottom:754.110695pt;}
.y54{bottom:755.617359pt;}
.ye4{bottom:757.852023pt;}
.yde{bottom:758.818703pt;}
.y101{bottom:760.272031pt;}
.y10{bottom:767.629372pt;}
.y95{bottom:770.818703pt;}
.yd2{bottom:774.201355pt;}
.y53{bottom:776.206694pt;}
.ydd{bottom:778.818703pt;}
.y100{bottom:780.272031pt;}
.y122{bottom:785.522703pt;}
.y73{bottom:785.852023pt;}
.y94{bottom:790.818703pt;}
.yf{bottom:794.296038pt;}
.yd1{bottom:796.477356pt;}
.y32{bottom:799.564036pt;}
.ye3{bottom:803.564033pt;}
.y121{bottom:805.522703pt;}
.y52{bottom:805.852033pt;}
.y93{bottom:810.818703pt;}
.ydc{bottom:814.818705pt;}
.yff{bottom:816.272031pt;}
.ye{bottom:818.148032pt;}
.yd0{bottom:818.753357pt;}
.y31{bottom:819.564036pt;}
.ye2{bottom:823.564033pt;}
.y72{bottom:831.564033pt;}
.y120{bottom:833.522703pt;}
.ydb{bottom:834.818705pt;}
.yfe{bottom:836.272031pt;}
.y92{bottom:838.818703pt;}
.y30{bottom:839.564036pt;}
.y51{bottom:851.564033pt;}
.yda{bottom:854.818703pt;}
.yd{bottom:858.398699pt;}
.y2f{bottom:859.564033pt;}
.yb9{bottom:862.501361pt;}
.y11f{bottom:869.522700pt;}
.y91{bottom:870.560031pt;}
.y50{bottom:871.564033pt;}
.yfd{bottom:872.272034pt;}
.yd9{bottom:874.818703pt;}
.y2e{bottom:879.564033pt;}
.y129{bottom:881.025365pt;}
.yb8{bottom:882.501361pt;}
.y71{bottom:884.021362pt;}
.y11e{bottom:889.522697pt;}
.yfc{bottom:892.272034pt;}
.yb7{bottom:898.829360pt;}
.yb6{bottom:899.896032pt;}
.yc{bottom:903.670698pt;}
.y4f{bottom:904.021365pt;}
.yd8{bottom:906.560031pt;}
.y11d{bottom:909.522697pt;}
.yfb{bottom:912.272034pt;}
.y2d{bottom:915.564031pt;}
.y90{bottom:916.272031pt;}
.yb5{bottom:922.172028pt;}
.y8{bottom:931.600032pt;}
.y70{bottom:932.272034pt;}
.y2c{bottom:935.564031pt;}
.y8f{bottom:936.272031pt;}
.y11c{bottom:941.980031pt;}
.yb3{bottom:944.448029pt;}
.y128{bottom:946.230698pt;}
.y4e{bottom:952.272031pt;}
.yb1{bottom:966.724030pt;}
.y2b{bottom:968.021364pt;}
.y4d{bottom:972.272031pt;}
.y1{bottom:1049.600032pt;}
.h13{height:4.515625pt;}
.h2{height:20.000000pt;}
.hf{height:21.609334pt;}
.h15{height:23.196999pt;}
.hb{height:32.933334pt;}
.h12{height:34.148438pt;}
.h1b{height:36.125000pt;}
.h16{height:37.885333pt;}
.h10{height:37.942708pt;}
.h5{height:38.802083pt;}
.h4{height:40.466665pt;}
.h11{height:40.640625pt;}
.h14{height:41.736979pt;}
.h6{height:42.682292pt;}
.h1c{height:45.156250pt;}
.h1d{height:45.266668pt;}
.he{height:46.562500pt;}
.h3{height:49.671875pt;}
.hc{height:52.209335pt;}
.hd{height:54.322917pt;}
.h17{height:56.000000pt;}
.h8{height:56.733332pt;}
.h7{height:59.742666pt;}
.ha{height:62.083333pt;}
.h19{height:69.333333pt;}
.h9{height:85.364583pt;}
.h18{height:101.333333pt;}
.h1a{height:117.333333pt;}
.h1f{height:180.000000pt;}
.h20{height:182.942668pt;}
.h1e{height:188.000000pt;}
.h0{height:1122.533366pt;}
.h1{height:1122.666667pt;}
.w4{width:60.466665pt;}
.wc{width:73.266668pt;}
.w11{width:84.933334pt;}
.wf{width:85.000000pt;}
.w10{width:85.466665pt;}
.we{width:94.400004pt;}
.w9{width:106.133331pt;}
.w6{width:122.066671pt;}
.wb{width:129.133331pt;}
.wa{width:129.266663pt;}
.wd{width:132.133331pt;}
.w5{width:147.333333pt;}
.w8{width:148.200002pt;}
.w7{width:148.333333pt;}
.w3{width:506.466675pt;}
.w12{width:566.933350pt;}
.w2{width:793.733287pt;}
.w0{width:793.733317pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.800000pt;}
.x20{left:13.466667pt;}
.x1c{left:23.306666pt;}
.x1d{left:24.266668pt;}
.x7{left:29.924001pt;}
.x3{left:30.839999pt;}
.x1f{left:37.466667pt;}
.x1e{left:49.200002pt;}
.x1{left:94.533335pt;}
.x5{left:109.200002pt;}
.xb{left:117.200002pt;}
.xa{left:118.533335pt;}
.x8{left:122.866669pt;}
.x6{left:123.866669pt;}
.x1b{left:128.333335pt;}
.xc{left:139.866669pt;}
.x9{left:146.866669pt;}
.x12{left:200.666667pt;}
.xe{left:216.600006pt;}
.x16{left:226.666667pt;}
.x11{left:285.866669pt;}
.x17{left:321.066661pt;}
.x13{left:329.933339pt;}
.xf{left:364.933339pt;}
.x18{left:406.066661pt;}
.x14{left:459.066661pt;}
.x19{left:491.533335pt;}
.x10{left:513.266652pt;}
.x1a{left:576.533335pt;}
.x15{left:588.200002pt;}
.x2{left:601.000010pt;}
.x4{left:608.733327pt;}
}




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