
    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_e5c7779b85b92ec285bcddd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_8666d2ce3a625167f9a966fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_4e157f292fca763d277df18c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_650ead067b10e46770b0b403.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_cc8df246a617d1554d643661.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c7aa6691796b8ae24bf2f1d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_33433ad971801756aa4ccf79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_d5c82c0ac528dc9662b10dab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_18ddc24b6b5ed234ead5ec0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8ac403a2556b1d11962ab9c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.647999px;}
.ls6{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.145200px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.575999px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-19.038210px;}
.ws4{word-spacing:-16.559974px;}
.ws3{word-spacing:-16.487974px;}
.ws2{word-spacing:-16.271974px;}
.ws7{word-spacing:-16.127974px;}
.ws5{word-spacing:-15.623975px;}
.ws1{word-spacing:-13.505738px;}
.ws0{word-spacing:0.000000px;}
._1c{margin-left:-9.143985px;}
._1a{margin-left:-7.277809px;}
._3{margin-left:-6.247171px;}
._1b{margin-left:-4.463993px;}
._2{margin-left:-2.885353px;}
._0{margin-left:-1.388408px;}
._1{width:1.195739px;}
._19{width:2.236152px;}
._7{width:3.748494px;}
._8{width:5.121021px;}
._c{width:6.997525px;}
._b{width:8.021416px;}
._15{width:9.718143px;}
._14{width:10.737036px;}
._11{width:19.113933px;}
._12{width:20.441006px;}
._13{width:23.089054px;}
._d{width:24.432907px;}
._e{width:25.449958px;}
._a{width:26.754733px;}
._9{width:27.796492px;}
._4{width:36.656995px;}
._10{width:38.119775px;}
._f{width:39.685419px;}
._17{width:41.433880px;}
._16{width:42.844467px;}
._6{width:75.768609px;}
._5{width:77.125197px;}
._18{width:98.356163px;}
.fc2{color:rgb(47,84,150);}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.759904px;}
.fs1{font-size:66.239894px;}
.fs0{font-size:71.999885px;}
.fs6{font-size:84.239865px;}
.fs4{font-size:107.999827px;}
.fs3{font-size:120.239808px;}
.fs5{font-size:143.999770px;}
.y0{bottom:0.000000px;}
.y14a{bottom:37.845156px;}
.y7d{bottom:57.816507px;}
.y149{bottom:67.545109px;}
.y7c{bottom:79.776472px;}
.y148{bottom:97.245061px;}
.ye1{bottom:113.256419px;}
.yef{bottom:114.696416px;}
.y110{bottom:119.376859px;}
.y9b{bottom:119.916408px;}
.yb4{bottom:121.356406px;}
.y69{bottom:122.436404px;}
.ybe{bottom:123.876402px;}
.y147{bottom:126.945014px;}
.y141{bottom:131.436390px;}
.y12b{bottom:132.876387px;}
.y37{bottom:135.756383px;}
.y4f{bottom:136.116382px;}
.yc8{bottom:137.556380px;}
.y15{bottom:139.536377px;}
.y10f{bottom:144.936818px;}
.y9a{bottom:145.296368px;}
.ydb{bottom:146.736365px;}
.ydc{bottom:147.816363px;}
.ybd{bottom:149.256361px;}
.ye0{bottom:150.691259px;}
.yee{bottom:152.131257px;}
.y125{bottom:152.491256px;}
.y140{bottom:156.811249px;}
.y12a{bottom:158.431247px;}
.yb3{bottom:158.791246px;}
.y68{bottom:159.871244px;}
.y131{bottom:160.051244px;}
.y14{bottom:160.591243px;}
.y36{bottom:161.311242px;}
.y4e{bottom:161.491242px;}
.yc7{bottom:162.931239px;}
.y146{bottom:168.524947px;}
.y10e{bottom:170.311228px;}
.yff{bottom:170.851227px;}
.yda{bottom:172.291224px;}
.ya8{bottom:173.191223px;}
.ycb{bottom:174.631221px;}
.y7b{bottom:174.991220px;}
.y124{bottom:177.871215px;}
.y13{bottom:181.831209px;}
.y13f{bottom:182.371208px;}
.y99{bottom:182.731208px;}
.y129{bottom:183.811206px;}
.yb2{bottom:184.171205px;}
.y67{bottom:185.251204px;}
.y130{bottom:185.611203px;}
.ybc{bottom:186.691201px;}
.y4d{bottom:187.051201px;}
.ydf{bottom:188.131199px;}
.yed{bottom:189.571197px;}
.y10d{bottom:195.871187px;}
.yfe{bottom:196.231186px;}
.yd9{bottom:197.671184px;}
.y145{bottom:198.404899px;}
.y35{bottom:198.751182px;}
.y62{bottom:198.931182px;}
.yfa{bottom:200.191180px;}
.y7a{bottom:200.371179px;}
.y142{bottom:201.990960px;}
.y12{bottom:203.971174px;}
.y13e{bottom:207.751168px;}
.y98{bottom:208.291167px;}
.y128{bottom:209.191165px;}
.yf2{bottom:209.731164px;}
.y66{bottom:210.631163px;}
.y12f{bottom:210.991162px;}
.ybb{bottom:212.071161px;}
.y4c{bottom:212.431160px;}
.y123{bottom:215.311156px;}
.y10c{bottom:221.251146px;}
.yb1{bottom:221.611145px;}
.y104{bottom:222.691144px;}
.ya7{bottom:224.131141px;}
.y61{bottom:224.491141px;}
.yde{bottom:225.571139px;}
.y79{bottom:225.931139px;}
.yec{bottom:227.011137px;}
.y13d{bottom:233.311127px;}
.y97{bottom:233.671126px;}
.y127{bottom:234.751124px;}
.yd8{bottom:235.111124px;}
.y34{bottom:236.191122px;}
.y12e{bottom:236.371122px;}
.yba{bottom:237.631120px;}
.y4b{bottom:238.036119px;}
.y11{bottom:239.296117px;}
.y144{bottom:239.831833px;}
.y122{bottom:240.916115px;}
.y10b{bottom:246.676105px;}
.yb0{bottom:247.216104px;}
.y20{bottom:248.116103px;}
.ya6{bottom:249.736100px;}
.y60{bottom:249.916100px;}
.y78{bottom:251.356098px;}
.y13c{bottom:258.736086px;}
.y96{bottom:259.096085px;}
.y126{bottom:260.176084px;}
.yd7{bottom:260.536083px;}
.y33{bottom:261.616081px;}
.y12d{bottom:261.976081px;}
.yb9{bottom:263.056079px;}
.yc6{bottom:263.416079px;}
.yeb{bottom:264.496077px;}
.y121{bottom:266.296074px;}
.y143{bottom:269.711785px;}
.y10a{bottom:272.236064px;}
.yf1{bottom:272.596064px;}
.y10{bottom:274.576061px;}
.ya5{bottom:275.116060px;}
.y4a{bottom:275.476059px;}
.y77{bottom:276.916057px;}
.y13b{bottom:284.116045px;}
.y95{bottom:284.656045px;}
.y103{bottom:285.736043px;}
.y32{bottom:287.176041px;}
.y12c{bottom:287.356040px;}
.ydd{bottom:288.616038px;}
.yc5{bottom:288.796038px;}
.y120{bottom:291.676033px;}
.y109{bottom:297.616024px;}
.yd6{bottom:297.976023px;}
.y1f{bottom:298.336023px;}
.y65{bottom:299.056022px;}
.ya4{bottom:300.496019px;}
.y49{bottom:300.856019px;}
.yea{bottom:301.936017px;}
.ye6{bottom:302.296016px;}
.y13a{bottom:309.676005px;}
.yf{bottom:309.856004px;}
.yfd{bottom:310.036004px;}
.y102{bottom:311.116002px;}
.y31{bottom:312.556000px;}
.y5f{bottom:312.915999px;}
.y76{bottom:314.355997px;}
.y94{bottom:322.095985px;}
.y108{bottom:323.175983px;}
.yd5{bottom:323.535982px;}
.y58{bottom:324.615981px;}
.yca{bottom:326.055978px;}
.y48{bottom:326.235978px;}
.ye5{bottom:327.675976px;}
.y11f{bottom:329.295973px;}
.y139{bottom:335.055964px;}
.yfc{bottom:335.595963px;}
.y101{bottom:336.495962px;}
.y30{bottom:337.935959px;}
.y5e{bottom:338.295959px;}
.ye9{bottom:339.375957px;}
.y75{bottom:339.735956px;}
.ye{bottom:345.315947px;}
.y93{bottom:347.475944px;}
.y1e{bottom:348.555942px;}
.yd4{bottom:348.915942px;}
.y57{bottom:349.995940px;}
.yc9{bottom:351.435938px;}
.y47{bottom:351.795937px;}
.ye4{bottom:353.235935px;}
.y11e{bottom:354.675933px;}
.y138{bottom:360.615923px;}
.yfb{bottom:360.975922px;}
.y100{bottom:362.055921px;}
.y2f{bottom:363.495918px;}
.y5d{bottom:363.675918px;}
.y74{bottom:365.295916px;}
.y92{bottom:373.035903px;}
.y107{bottom:373.935902px;}
.yf0{bottom:374.475901px;}
.y56{bottom:375.375899px;}
.ye8{bottom:376.815897px;}
.y46{bottom:377.175897px;}
.yd{bottom:380.595891px;}
.y137{bottom:385.995882px;}
.yd3{bottom:386.355882px;}
.yf9{bottom:387.435880px;}
.y2e{bottom:388.875878px;}
.y5c{bottom:389.235877px;}
.y73{bottom:390.675875px;}
.y11d{bottom:392.115873px;}
.y91{bottom:398.415863px;}
.y106{bottom:399.495861px;}
.y55{bottom:400.935859px;}
.y45{bottom:402.735856px;}
.y1d{bottom:402.915855px;}
.yaf{bottom:410.475843px;}
.y136{bottom:411.375842px;}
.yd2{bottom:411.915841px;}
.y84{bottom:412.815839px;}
.ya3{bottom:414.435837px;}
.y5b{bottom:414.615837px;}
.yc{bottom:415.875835px;}
.y72{bottom:416.055834px;}
.ycd{bottom:417.315832px;}
.y11c{bottom:417.495832px;}
.y90{bottom:423.795822px;}
.y105{bottom:424.875820px;}
.y2d{bottom:426.315818px;}
.y7f{bottom:428.142815px;}
.yae{bottom:435.882803px;}
.y135{bottom:436.962801px;}
.y83{bottom:438.402799px;}
.ya2{bottom:439.842796px;}
.y44{bottom:440.202796px;}
.y71{bottom:441.642793px;}
.y11b{bottom:443.082791px;}
.y8f{bottom:449.382781px;}
.yf8{bottom:450.462779px;}
.yb{bottom:451.182778px;}
.y2c{bottom:451.902777px;}
.yc4{bottom:453.522774px;}
.ycc{bottom:454.782772px;}
.yad{bottom:461.262762px;}
.y1c{bottom:461.622761px;}
.y134{bottom:462.342760px;}
.y82{bottom:463.782758px;}
.ya1{bottom:465.222756px;}
.y43{bottom:465.582755px;}
.ye3{bottom:467.022753px;}
.yd1{bottom:474.762740px;}
.yf7{bottom:475.842739px;}
.y2b{bottom:477.282736px;}
.y70{bottom:479.082733px;}
.y11a{bottom:480.522731px;}
.ya{bottom:486.642721px;}
.y8e{bottom:486.822721px;}
.y133{bottom:487.902719px;}
.y54{bottom:489.342717px;}
.ya0{bottom:490.782715px;}
.y42{bottom:490.962714px;}
.yc2{bottom:492.222712px;}
.yd0{bottom:500.322699px;}
.y81{bottom:501.222698px;}
.yb8{bottom:502.662696px;}
.y6f{bottom:504.462693px;}
.y119{bottom:505.902691px;}
.y1b{bottom:511.842681px;}
.y8d{bottom:512.202680px;}
.y132{bottom:513.282679px;}
.y2a{bottom:514.722676px;}
.y41{bottom:516.522674px;}
.y9{bottom:521.922665px;}
.ycf{bottom:525.702659px;}
.y80{bottom:526.782657px;}
.y9f{bottom:528.222655px;}
.y5a{bottom:528.582654px;}
.yc1{bottom:529.662653px;}
.y6e{bottom:530.022652px;}
.y118{bottom:531.462650px;}
.yac{bottom:537.762640px;}
.yf6{bottom:538.662638px;}
.y29{bottom:540.102636px;}
.y40{bottom:541.902633px;}
.y8c{bottom:549.642621px;}
.y64{bottom:552.162617px;}
.y9e{bottom:553.602614px;}
.y59{bottom:553.962614px;}
.ye2{bottom:555.402611px;}
.y8{bottom:557.202608px;}
.y1a{bottom:561.882601px;}
.yab{bottom:563.142599px;}
.yf5{bottom:564.222597px;}
.y53{bottom:565.662595px;}
.yc0{bottom:567.102593px;}
.y6d{bottom:567.462592px;}
.y117{bottom:568.902590px;}
.y8b{bottom:575.202580px;}
.y28{bottom:577.722576px;}
.ye7{bottom:579.162573px;}
.y3f{bottom:579.342573px;}
.yaa{bottom:588.522558px;}
.yf4{bottom:589.602557px;}
.y9d{bottom:591.042554px;}
.y7{bottom:592.662552px;}
.y6c{bottom:592.842551px;}
.y116{bottom:594.282549px;}
.y8a{bottom:600.582539px;}
.y27{bottom:603.102535px;}
.ybf{bottom:604.542533px;}
.y3e{bottom:604.902532px;}
.y19{bottom:612.102521px;}
.ya9{bottom:614.082517px;}
.yf3{bottom:615.162516px;}
.y9c{bottom:616.647513px;}
.y6b{bottom:618.267511px;}
.y89{bottom:626.187498px;}
.y6{bottom:627.987495px;}
.y52{bottom:628.527494px;}
.y3d{bottom:630.327491px;}
.y115{bottom:631.767489px;}
.yce{bottom:639.507477px;}
.y26{bottom:640.587475px;}
.yb7{bottom:642.027473px;}
.y6a{bottom:643.827470px;}
.y88{bottom:651.567457px;}
.y51{bottom:654.087453px;}
.y3c{bottom:655.887451px;}
.y114{bottom:657.327448px;}
.y18{bottom:662.367440px;}
.y5{bottom:663.267439px;}
.y25{bottom:665.967434px;}
.yb6{bottom:667.407432px;}
.yc3{bottom:669.207429px;}
.y87{bottom:676.947417px;}
.y50{bottom:679.467413px;}
.y3b{bottom:681.267410px;}
.y24{bottom:691.527394px;}
.y113{bottom:694.767388px;}
.y4{bottom:698.547382px;}
.y17{bottom:701.967377px;}
.y86{bottom:702.507376px;}
.y63{bottom:705.027372px;}
.y3a{bottom:706.647369px;}
.y23{bottom:716.907353px;}
.y112{bottom:720.147348px;}
.yb5{bottom:730.407331px;}
.y39{bottom:732.207328px;}
.y3{bottom:734.007326px;}
.y85{bottom:735.267324px;}
.y7e{bottom:738.147319px;}
.y22{bottom:742.467312px;}
.y111{bottom:752.907295px;}
.y16{bottom:756.327290px;}
.y38{bottom:764.967276px;}
.y21{bottom:767.847271px;}
.y2{bottom:769.287269px;}
.y1{bottom:822.778684px;}
.h3{height:44.149148px;}
.h4{height:45.410552px;}
.h2{height:47.988204px;}
.hd{height:49.218671px;}
.h5{height:49.284413px;}
.he{height:49.288984px;}
.h10{height:49.359296px;}
.h6{height:54.628506px;}
.h13{height:57.750376px;}
.hf{height:59.378811px;}
.h11{height:69.473209px;}
.ha{height:71.982307px;}
.h9{height:73.828007px;}
.hb{height:73.933475px;}
.h7{height:80.140301px;}
.h8{height:82.195181px;}
.hc{height:95.976409px;}
.h12{height:289.693440px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w2{width:562.109040px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x22{left:26.100000px;}
.x24{left:53.496473px;}
.x25{left:64.656455px;}
.x26{left:66.276452px;}
.x23{left:94.356407px;}
.x28{left:97.776402px;}
.x1{left:108.036427px;}
.x16{left:109.836424px;}
.x14{left:117.756412px;}
.x19{left:119.916408px;}
.x1a{left:122.616404px;}
.x4{left:124.236401px;}
.x18{left:125.496399px;}
.x1d{left:129.636393px;}
.x27{left:138.451237px;}
.x3{left:140.436375px;}
.x1c{left:148.716362px;}
.x12{left:153.751254px;}
.x20{left:158.611246px;}
.x11{left:176.791217px;}
.x1e{left:181.290310px;}
.x9{left:189.931196px;}
.x1f{left:192.090293px;}
.x5{left:200.236180px;}
.xe{left:209.776164px;}
.xa{left:222.196144px;}
.x21{left:225.436139px;}
.xc{left:240.916115px;}
.xd{left:245.236108px;}
.xb{left:257.836087px;}
.x13{left:268.456070px;}
.x10{left:272.416064px;}
.x15{left:278.896054px;}
.x1b{left:285.016044px;}
.x17{left:292.396032px;}
.x6{left:312.196000px;}
.x2{left:314.715996px;}
.x7{left:368.742910px;}
.xf{left:503.247695px;}
.x8{left:521.427666px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.575999pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.129066pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.511999pt;}
.ws6{word-spacing:-16.922853pt;}
.ws4{word-spacing:-14.719976pt;}
.ws3{word-spacing:-14.655977pt;}
.ws2{word-spacing:-14.463977pt;}
.ws7{word-spacing:-14.335977pt;}
.ws5{word-spacing:-13.887978pt;}
.ws1{word-spacing:-12.005101pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-8.127987pt;}
._1a{margin-left:-6.469164pt;}
._3{margin-left:-5.553041pt;}
._1b{margin-left:-3.967994pt;}
._2{margin-left:-2.564758pt;}
._0{margin-left:-1.234140pt;}
._1{width:1.062879pt;}
._19{width:1.987691pt;}
._7{width:3.331995pt;}
._8{width:4.552018pt;}
._c{width:6.220022pt;}
._b{width:7.130148pt;}
._15{width:8.638349pt;}
._14{width:9.544032pt;}
._11{width:16.990163pt;}
._12{width:18.169783pt;}
._13{width:20.523604pt;}
._d{width:21.718140pt;}
._e{width:22.622185pt;}
._a{width:23.781985pt;}
._9{width:24.707992pt;}
._4{width:32.583995pt;}
._10{width:33.884244pt;}
._f{width:35.275928pt;}
._17{width:36.830116pt;}
._16{width:38.083971pt;}
._6{width:67.349875pt;}
._5{width:68.555730pt;}
._18{width:87.427700pt;}
.fs2{font-size:53.119915pt;}
.fs1{font-size:58.879906pt;}
.fs0{font-size:63.999898pt;}
.fs6{font-size:74.879880pt;}
.fs4{font-size:95.999846pt;}
.fs3{font-size:106.879829pt;}
.fs5{font-size:127.999795pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:33.640139pt;}
.y7d{bottom:51.392451pt;}
.y149{bottom:60.040097pt;}
.y7c{bottom:70.912420pt;}
.y148{bottom:86.440054pt;}
.ye1{bottom:100.672372pt;}
.yef{bottom:101.952370pt;}
.y110{bottom:106.112764pt;}
.y9b{bottom:106.592363pt;}
.yb4{bottom:107.872361pt;}
.y69{bottom:108.832359pt;}
.ybe{bottom:110.112357pt;}
.y147{bottom:112.840012pt;}
.y141{bottom:116.832346pt;}
.y12b{bottom:118.112344pt;}
.y37{bottom:120.672340pt;}
.y4f{bottom:120.992340pt;}
.yc8{bottom:122.272338pt;}
.y15{bottom:124.032335pt;}
.y10f{bottom:128.832727pt;}
.y9a{bottom:129.152327pt;}
.ydb{bottom:130.432325pt;}
.ydc{bottom:131.392323pt;}
.ybd{bottom:132.672321pt;}
.ye0{bottom:133.947786pt;}
.yee{bottom:135.227784pt;}
.y125{bottom:135.547783pt;}
.y140{bottom:139.387777pt;}
.y12a{bottom:140.827775pt;}
.yb3{bottom:141.147774pt;}
.y68{bottom:142.107773pt;}
.y131{bottom:142.267772pt;}
.y14{bottom:142.747772pt;}
.y36{bottom:143.387771pt;}
.y4e{bottom:143.547770pt;}
.yc7{bottom:144.827768pt;}
.y146{bottom:149.799953pt;}
.y10e{bottom:151.387758pt;}
.yff{bottom:151.867757pt;}
.yda{bottom:153.147755pt;}
.ya8{bottom:153.947754pt;}
.ycb{bottom:155.227752pt;}
.y7b{bottom:155.547751pt;}
.y124{bottom:158.107747pt;}
.y13{bottom:161.627741pt;}
.y13f{bottom:162.107741pt;}
.y99{bottom:162.427740pt;}
.y129{bottom:163.387739pt;}
.yb2{bottom:163.707738pt;}
.y67{bottom:164.667737pt;}
.y130{bottom:164.987736pt;}
.ybc{bottom:165.947734pt;}
.y4d{bottom:166.267734pt;}
.ydf{bottom:167.227732pt;}
.yed{bottom:168.507730pt;}
.y10d{bottom:174.107721pt;}
.yfe{bottom:174.427721pt;}
.yd9{bottom:175.707719pt;}
.y145{bottom:176.359911pt;}
.y35{bottom:176.667717pt;}
.y62{bottom:176.827717pt;}
.yfa{bottom:177.947715pt;}
.y7a{bottom:178.107715pt;}
.y142{bottom:179.547520pt;}
.y12{bottom:181.307710pt;}
.y13e{bottom:184.667705pt;}
.y98{bottom:185.147704pt;}
.y128{bottom:185.947702pt;}
.yf2{bottom:186.427702pt;}
.y66{bottom:187.227700pt;}
.y12f{bottom:187.547700pt;}
.ybb{bottom:188.507698pt;}
.y4c{bottom:188.827698pt;}
.y123{bottom:191.387694pt;}
.y10c{bottom:196.667685pt;}
.yb1{bottom:196.987685pt;}
.y104{bottom:197.947683pt;}
.ya7{bottom:199.227681pt;}
.y61{bottom:199.547681pt;}
.yde{bottom:200.507679pt;}
.y79{bottom:200.827679pt;}
.yec{bottom:201.787677pt;}
.y13d{bottom:207.387668pt;}
.y97{bottom:207.707668pt;}
.y127{bottom:208.667666pt;}
.yd8{bottom:208.987666pt;}
.y34{bottom:209.947664pt;}
.y12e{bottom:210.107664pt;}
.yba{bottom:211.227662pt;}
.y4b{bottom:211.587661pt;}
.y11{bottom:212.707660pt;}
.y144{bottom:213.183852pt;}
.y122{bottom:214.147657pt;}
.y10b{bottom:219.267649pt;}
.yb0{bottom:219.747648pt;}
.y20{bottom:220.547647pt;}
.ya6{bottom:221.987645pt;}
.y60{bottom:222.147645pt;}
.y78{bottom:223.427643pt;}
.y13c{bottom:229.987632pt;}
.y96{bottom:230.307632pt;}
.y126{bottom:231.267630pt;}
.yd7{bottom:231.587629pt;}
.y33{bottom:232.547628pt;}
.y12d{bottom:232.867627pt;}
.yb9{bottom:233.827626pt;}
.yc6{bottom:234.147625pt;}
.yeb{bottom:235.107624pt;}
.y121{bottom:236.707621pt;}
.y143{bottom:239.743809pt;}
.y10a{bottom:241.987613pt;}
.yf1{bottom:242.307612pt;}
.y10{bottom:244.067609pt;}
.ya5{bottom:244.547609pt;}
.y4a{bottom:244.867608pt;}
.y77{bottom:246.147606pt;}
.y13b{bottom:252.547596pt;}
.y95{bottom:253.027595pt;}
.y103{bottom:253.987594pt;}
.y32{bottom:255.267592pt;}
.y12c{bottom:255.427591pt;}
.ydd{bottom:256.547590pt;}
.yc5{bottom:256.707589pt;}
.y120{bottom:259.267585pt;}
.y109{bottom:264.547577pt;}
.yd6{bottom:264.867576pt;}
.y1f{bottom:265.187576pt;}
.y65{bottom:265.827575pt;}
.ya4{bottom:267.107573pt;}
.y49{bottom:267.427572pt;}
.yea{bottom:268.387571pt;}
.ye6{bottom:268.707570pt;}
.y13a{bottom:275.267560pt;}
.yf{bottom:275.427559pt;}
.yfd{bottom:275.587559pt;}
.y102{bottom:276.547558pt;}
.y31{bottom:277.827555pt;}
.y5f{bottom:278.147555pt;}
.y76{bottom:279.427553pt;}
.y94{bottom:286.307542pt;}
.y108{bottom:287.267540pt;}
.yd5{bottom:287.587540pt;}
.y58{bottom:288.547538pt;}
.yca{bottom:289.827536pt;}
.y48{bottom:289.987536pt;}
.ye5{bottom:291.267534pt;}
.y11f{bottom:292.707532pt;}
.y139{bottom:297.827523pt;}
.yfc{bottom:298.307523pt;}
.y101{bottom:299.107521pt;}
.y30{bottom:300.387519pt;}
.y5e{bottom:300.707519pt;}
.ye9{bottom:301.667517pt;}
.y75{bottom:301.987517pt;}
.ye{bottom:306.947509pt;}
.y93{bottom:308.867506pt;}
.y1e{bottom:309.827504pt;}
.yd4{bottom:310.147504pt;}
.y57{bottom:311.107502pt;}
.yc9{bottom:312.387500pt;}
.y47{bottom:312.707500pt;}
.ye4{bottom:313.987498pt;}
.y11e{bottom:315.267496pt;}
.y138{bottom:320.547487pt;}
.yfb{bottom:320.867487pt;}
.y100{bottom:321.827485pt;}
.y2f{bottom:323.107483pt;}
.y5d{bottom:323.267483pt;}
.y74{bottom:324.707480pt;}
.y92{bottom:331.587469pt;}
.y107{bottom:332.387468pt;}
.yf0{bottom:332.867467pt;}
.y56{bottom:333.667466pt;}
.ye8{bottom:334.947464pt;}
.y46{bottom:335.267464pt;}
.yd{bottom:338.307459pt;}
.y137{bottom:343.107451pt;}
.yd3{bottom:343.427451pt;}
.yf9{bottom:344.387449pt;}
.y2e{bottom:345.667447pt;}
.y5c{bottom:345.987446pt;}
.y73{bottom:347.267444pt;}
.y11d{bottom:348.547442pt;}
.y91{bottom:354.147433pt;}
.y106{bottom:355.107432pt;}
.y55{bottom:356.387430pt;}
.y45{bottom:357.987427pt;}
.y1d{bottom:358.147427pt;}
.yaf{bottom:364.867416pt;}
.y136{bottom:365.667415pt;}
.yd2{bottom:366.147414pt;}
.y84{bottom:366.947413pt;}
.ya3{bottom:368.387411pt;}
.y5b{bottom:368.547410pt;}
.yc{bottom:369.667409pt;}
.y72{bottom:369.827408pt;}
.ycd{bottom:370.947406pt;}
.y11c{bottom:371.107406pt;}
.y90{bottom:376.707397pt;}
.y105{bottom:377.667396pt;}
.y2d{bottom:378.947394pt;}
.y7f{bottom:380.571391pt;}
.yae{bottom:387.451380pt;}
.y135{bottom:388.411379pt;}
.y83{bottom:389.691376pt;}
.ya2{bottom:390.971374pt;}
.y44{bottom:391.291374pt;}
.y71{bottom:392.571372pt;}
.y11b{bottom:393.851370pt;}
.y8f{bottom:399.451361pt;}
.yf8{bottom:400.411359pt;}
.yb{bottom:401.051358pt;}
.y2c{bottom:401.691357pt;}
.yc4{bottom:403.131355pt;}
.ycc{bottom:404.251353pt;}
.yad{bottom:410.011344pt;}
.y1c{bottom:410.331343pt;}
.y134{bottom:410.971342pt;}
.y82{bottom:412.251340pt;}
.ya1{bottom:413.531338pt;}
.y43{bottom:413.851338pt;}
.ye3{bottom:415.131336pt;}
.yd1{bottom:422.011325pt;}
.yf7{bottom:422.971323pt;}
.y2b{bottom:424.251321pt;}
.y70{bottom:425.851319pt;}
.y11a{bottom:427.131317pt;}
.ya{bottom:432.571308pt;}
.y8e{bottom:432.731308pt;}
.y133{bottom:433.691306pt;}
.y54{bottom:434.971304pt;}
.ya0{bottom:436.251302pt;}
.y42{bottom:436.411302pt;}
.yc2{bottom:437.531300pt;}
.yd0{bottom:444.731288pt;}
.y81{bottom:445.531287pt;}
.yb8{bottom:446.811285pt;}
.y6f{bottom:448.411283pt;}
.y119{bottom:449.691280pt;}
.y1b{bottom:454.971272pt;}
.y8d{bottom:455.291272pt;}
.y132{bottom:456.251270pt;}
.y2a{bottom:457.531268pt;}
.y41{bottom:459.131265pt;}
.y9{bottom:463.931258pt;}
.ycf{bottom:467.291252pt;}
.y80{bottom:468.251251pt;}
.y9f{bottom:469.531249pt;}
.y5a{bottom:469.851248pt;}
.yc1{bottom:470.811247pt;}
.y6e{bottom:471.131246pt;}
.y118{bottom:472.411244pt;}
.yac{bottom:478.011235pt;}
.yf6{bottom:478.811234pt;}
.y29{bottom:480.091232pt;}
.y40{bottom:481.691229pt;}
.y8c{bottom:488.571218pt;}
.y64{bottom:490.811215pt;}
.y9e{bottom:492.091213pt;}
.y59{bottom:492.411212pt;}
.ye2{bottom:493.691210pt;}
.y8{bottom:495.291208pt;}
.y1a{bottom:499.451201pt;}
.yab{bottom:500.571199pt;}
.yf5{bottom:501.531198pt;}
.y53{bottom:502.811196pt;}
.yc0{bottom:504.091193pt;}
.y6d{bottom:504.411193pt;}
.y117{bottom:505.691191pt;}
.y8b{bottom:511.291182pt;}
.y28{bottom:513.531178pt;}
.ye7{bottom:514.811176pt;}
.y3f{bottom:514.971176pt;}
.yaa{bottom:523.131163pt;}
.yf4{bottom:524.091161pt;}
.y9d{bottom:525.371159pt;}
.y7{bottom:526.811157pt;}
.y6c{bottom:526.971157pt;}
.y116{bottom:528.251155pt;}
.y8a{bottom:533.851146pt;}
.y27{bottom:536.091142pt;}
.ybf{bottom:537.371140pt;}
.y3e{bottom:537.691140pt;}
.y19{bottom:544.091129pt;}
.ya9{bottom:545.851127pt;}
.yf3{bottom:546.811125pt;}
.y9c{bottom:548.131123pt;}
.y6b{bottom:549.571121pt;}
.y89{bottom:556.611109pt;}
.y6{bottom:558.211107pt;}
.y52{bottom:558.691106pt;}
.y3d{bottom:560.291104pt;}
.y115{bottom:561.571101pt;}
.yce{bottom:568.451090pt;}
.y26{bottom:569.411089pt;}
.yb7{bottom:570.691087pt;}
.y6a{bottom:572.291084pt;}
.y88{bottom:579.171073pt;}
.y51{bottom:581.411070pt;}
.y3c{bottom:583.011067pt;}
.y114{bottom:584.291065pt;}
.y18{bottom:588.771058pt;}
.y5{bottom:589.571057pt;}
.y25{bottom:591.971053pt;}
.yb6{bottom:593.251051pt;}
.yc3{bottom:594.851048pt;}
.y87{bottom:601.731037pt;}
.y50{bottom:603.971034pt;}
.y3b{bottom:605.571031pt;}
.y24{bottom:614.691016pt;}
.y113{bottom:617.571012pt;}
.y4{bottom:620.931007pt;}
.y17{bottom:623.971002pt;}
.y86{bottom:624.451001pt;}
.y63{bottom:626.690997pt;}
.y3a{bottom:628.130995pt;}
.y23{bottom:637.250980pt;}
.y112{bottom:640.130976pt;}
.yb5{bottom:649.250961pt;}
.y39{bottom:650.850959pt;}
.y3{bottom:652.450956pt;}
.y85{bottom:653.570954pt;}
.y7e{bottom:656.130950pt;}
.y22{bottom:659.970944pt;}
.y111{bottom:669.250929pt;}
.y16{bottom:672.290924pt;}
.y38{bottom:679.970912pt;}
.y21{bottom:682.530908pt;}
.y2{bottom:683.810906pt;}
.y1{bottom:731.358830pt;}
.h3{height:39.243687pt;}
.h4{height:40.364935pt;}
.h2{height:42.656182pt;}
.hd{height:43.749930pt;}
.h5{height:43.808367pt;}
.he{height:43.812430pt;}
.h10{height:43.874930pt;}
.h6{height:48.558672pt;}
.h13{height:51.333668pt;}
.hf{height:52.781166pt;}
.h11{height:61.753964pt;}
.ha{height:63.984273pt;}
.h9{height:65.624895pt;}
.hb{height:65.718645pt;}
.h7{height:71.235824pt;}
.h8{height:73.062383pt;}
.hc{height:85.312364pt;}
.h12{height:257.505280pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w2{width:499.652480pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x22{left:23.200000pt;}
.x24{left:47.552420pt;}
.x25{left:57.472404pt;}
.x26{left:58.912402pt;}
.x23{left:83.872362pt;}
.x28{left:86.912357pt;}
.x1{left:96.032380pt;}
.x16{left:97.632377pt;}
.x14{left:104.672366pt;}
.x19{left:106.592363pt;}
.x1a{left:108.992359pt;}
.x4{left:110.432357pt;}
.x18{left:111.552355pt;}
.x1d{left:115.232349pt;}
.x27{left:123.067766pt;}
.x3{left:124.832334pt;}
.x1c{left:132.192322pt;}
.x12{left:136.667781pt;}
.x20{left:140.987774pt;}
.x11{left:157.147749pt;}
.x1e{left:161.146942pt;}
.x9{left:168.827730pt;}
.x1f{left:170.746927pt;}
.x5{left:177.987715pt;}
.xe{left:186.467702pt;}
.xa{left:197.507684pt;}
.x21{left:200.387679pt;}
.xc{left:214.147657pt;}
.xd{left:217.987651pt;}
.xb{left:229.187633pt;}
.x13{left:238.627618pt;}
.x10{left:242.147613pt;}
.x15{left:247.907603pt;}
.x1b{left:253.347595pt;}
.x17{left:259.907584pt;}
.x6{left:277.507556pt;}
.x2{left:279.747552pt;}
.x7{left:327.771476pt;}
.xf{left:447.331284pt;}
.x8{left:463.491258pt;}
}




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