
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_119180e4f9f6fcef55e248f4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_31e5b71d2e80ab125f055737.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6030af2a97699fdcb7f43dba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_db20ef8ec5097d3d0b0e4c5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_f39db6dbb2db2c8c1671d5bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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);}
.v1{vertical-align:-17.999999px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024609px;}
.ls1{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.052734px;}
.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;}
}
.ws7{word-spacing:-20.302734px;}
.ws2{word-spacing:-18.984374px;}
.ws8{word-spacing:-16.242188px;}
.ws4{word-spacing:-14.238281px;}
.ws9{word-spacing:-13.273242px;}
.ws1{word-spacing:-12.656249px;}
.ws3{word-spacing:-9.689941px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:441.210941px;}
.ws6{word-spacing:525.023438px;}
._3e{margin-left:-8.337111px;}
._6{margin-left:-7.232705px;}
._1{margin-left:-5.734865px;}
._3{margin-left:-4.241603px;}
._2{margin-left:-2.966302px;}
._0{margin-left:-1.651464px;}
._d{width:1.364843px;}
._7{width:2.894488px;}
._c{width:4.356215px;}
._9{width:6.301071px;}
._8{width:8.053457px;}
._b{width:9.268408px;}
._15{width:10.409974px;}
._26{width:11.668150px;}
._5{width:12.884764px;}
._4{width:13.894819px;}
._e{width:15.309793px;}
._a{width:16.919702px;}
._44{width:17.974933px;}
._34{width:20.278354px;}
._22{width:21.591774px;}
._3d{width:22.906623px;}
._21{width:23.941408px;}
._41{width:24.960929px;}
._11{width:26.489341px;}
._12{width:28.161619px;}
._25{width:29.798421px;}
._30{width:30.902340px;}
._2e{width:32.655085px;}
._2c{width:33.813570px;}
._27{width:34.885025px;}
._39{width:35.989973px;}
._28{width:37.117925px;}
._29{width:38.172617px;}
._3b{width:39.311757px;}
._3c{width:40.821361px;}
._23{width:42.316380px;}
._13{width:44.173826px;}
._14{width:45.755856px;}
._43{width:46.810544px;}
._37{width:47.935546px;}
._3a{width:49.534276px;}
._38{width:50.634199px;}
._2d{width:51.735921px;}
._51{width:52.764104px;}
._2a{width:53.859372px;}
._2b{width:55.757806px;}
._24{width:57.748536px;}
._36{width:58.961422px;}
._35{width:60.077632px;}
._4f{width:61.860920px;}
._32{width:64.423825px;}
._33{width:65.847652px;}
._2f{width:67.798825px;}
._42{width:69.380860px;}
._31{width:70.692142px;}
._50{width:71.732899px;}
._3f{width:73.318355px;}
._45{width:76.687449px;}
._40{width:83.273408px;}
._57{width:107.718746px;}
._4d{width:137.121373px;}
._4b{width:139.352014px;}
._47{width:156.533490px;}
._4c{width:172.147984px;}
._4e{width:207.100855px;}
._4a{width:246.109438px;}
._17{width:264.638683px;}
._16{width:297.421862px;}
._48{width:301.978410px;}
._1d{width:304.998056px;}
._55{width:310.429674px;}
._1e{width:320.564148px;}
._49{width:323.241723px;}
._19{width:330.521470px;}
._1c{width:344.935533px;}
._18{width:360.544884px;}
._52{width:382.078107px;}
._54{width:390.234361px;}
._1b{width:396.404279px;}
._46{width:434.088827px;}
._10{width:488.860795px;}
._1f{width:599.853490px;}
._20{width:616.811957px;}
._f{width:644.326168px;}
._53{width:904.078110px;}
._56{width:1088.015588px;}
._1a{width:1648.546783px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,8,8);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.350000px;}
.fs2{font-size:35.999999px;}
.fsd{font-size:37.755000px;}
.fs9{font-size:40.499998px;}
.fs4{font-size:44.999998px;}
.fs7{font-size:47.249998px;}
.fsb{font-size:47.520000px;}
.fs1{font-size:53.999998px;}
.fsa{font-size:59.399997px;}
.fs3{font-size:66.599998px;}
.fs6{font-size:67.499997px;}
.fs5{font-size:91.799996px;}
.fsc{font-size:99.900000px;}
.fs0{font-size:107.999996px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.049955px;}
.y30{bottom:52.330066px;}
.y102{bottom:80.455065px;}
.y2f{bottom:86.080064px;}
.y2e{bottom:95.080064px;}
.y101{bottom:100.705064px;}
.y8c{bottom:107.455064px;}
.y111{bottom:109.705063px;}
.y2d{bottom:115.330063px;}
.y100{bottom:120.955063px;}
.y60{bottom:125.455063px;}
.y2c{bottom:126.580063px;}
.y8b{bottom:127.705063px;}
.y110{bottom:129.955063px;}
.yd8{bottom:138.955062px;}
.yb2{bottom:141.205062px;}
.y5f{bottom:145.705062px;}
.yfa{bottom:146.830062px;}
.y8a{bottom:147.955062px;}
.y2b{bottom:149.080062px;}
.y10f{bottom:150.205062px;}
.yd7{bottom:159.205061px;}
.y2a{bottom:160.330061px;}
.yb1{bottom:161.455061px;}
.y5e{bottom:165.955061px;}
.yf9{bottom:167.080061px;}
.y89{bottom:168.205061px;}
.y10e{bottom:170.455061px;}
.yd6{bottom:179.455061px;}
.yb0{bottom:181.705060px;}
.y5d{bottom:186.205060px;}
.yf8{bottom:187.330060px;}
.y10d{bottom:190.705060px;}
.y88{bottom:199.705060px;}
.yaf{bottom:201.955060px;}
.y5c{bottom:206.455059px;}
.yf7{bottom:207.580059px;}
.y10c{bottom:210.955059px;}
.yff{bottom:215.455059px;}
.y87{bottom:219.955059px;}
.yae{bottom:222.205059px;}
.y5b{bottom:226.705059px;}
.yf6{bottom:227.830059px;}
.y10b{bottom:231.205058px;}
.y86{bottom:240.205058px;}
.yad{bottom:242.455058px;}
.y5a{bottom:246.955058px;}
.yf5{bottom:248.080058px;}
.yd5{bottom:251.455058px;}
.ycb{bottom:258.205057px;}
.y85{bottom:260.455057px;}
.yac{bottom:262.705057px;}
.y59{bottom:267.205057px;}
.yf4{bottom:268.330057px;}
.yd4{bottom:271.705057px;}
.yca{bottom:278.455056px;}
.y84{bottom:280.705056px;}
.yab{bottom:282.955056px;}
.y58{bottom:287.455056px;}
.yd3{bottom:291.955056px;}
.y121{bottom:294.205056px;}
.yc9{bottom:298.705056px;}
.yf3{bottom:299.830056px;}
.y83{bottom:300.955055px;}
.yaa{bottom:303.205055px;}
.yd2{bottom:312.205055px;}
.y120{bottom:314.455055px;}
.y57{bottom:318.955055px;}
.ya9{bottom:323.455055px;}
.y118{bottom:327.955054px;}
.y29{bottom:331.330054px;}
.y82{bottom:332.455054px;}
.y11f{bottom:334.705054px;}
.y56{bottom:339.205054px;}
.ya8{bottom:343.705054px;}
.y117{bottom:348.205053px;}
.y28{bottom:351.580053px;}
.y81{bottom:352.705053px;}
.y10a{bottom:354.955053px;}
.y55{bottom:359.455053px;}
.ya7{bottom:363.955053px;}
.y27{bottom:371.830053px;}
.y80{bottom:372.955052px;}
.y109{bottom:375.205052px;}
.y116{bottom:377.455052px;}
.y54{bottom:379.705052px;}
.ya6{bottom:384.205052px;}
.y26{bottom:392.080052px;}
.y7f{bottom:393.205052px;}
.y108{bottom:395.455052px;}
.y115{bottom:397.705051px;}
.y53{bottom:399.955051px;}
.yd1{bottom:406.705051px;}
.y25{bottom:412.330051px;}
.y7e{bottom:413.455051px;}
.ya5{bottom:415.705051px;}
.y114{bottom:417.955051px;}
.y52{bottom:420.205050px;}
.y24{bottom:432.580050px;}
.y7d{bottom:433.705050px;}
.yd0{bottom:438.205050px;}
.y51{bottom:440.455050px;}
.ya4{bottom:447.205049px;}
.yfe{bottom:449.455049px;}
.y23{bottom:452.830049px;}
.y7c{bottom:453.955049px;}
.y50{bottom:460.705049px;}
.ya3{bottom:467.455049px;}
.y11e{bottom:469.705048px;}
.yf2{bottom:473.080048px;}
.y4f{bottom:480.955048px;}
.y22{bottom:483.205048px;}
.y7b{bottom:487.705048px;}
.y11d{bottom:489.955048px;}
.yf1{bottom:493.330047px;}
.y4e{bottom:501.205047px;}
.ya2{bottom:507.955047px;}
.y11c{bottom:510.205047px;}
.yf0{bottom:513.580047px;}
.y4d{bottom:521.455046px;}
.ya1{bottom:528.205046px;}
.y21{bottom:530.455046px;}
.yc8{bottom:532.705046px;}
.y4c{bottom:541.705045px;}
.yef{bottom:545.080045px;}
.ya0{bottom:548.455045px;}
.y20{bottom:550.705045px;}
.yc7{bottom:552.955045px;}
.y107{bottom:559.705045px;}
.y4b{bottom:561.955045px;}
.y9f{bottom:568.705044px;}
.y7a{bottom:570.955044px;}
.yee{bottom:576.580044px;}
.y106{bottom:579.955044px;}
.y1f{bottom:582.205044px;}
.yc6{bottom:584.455044px;}
.y9e{bottom:588.955043px;}
.y79{bottom:591.205043px;}
.yed{bottom:596.830043px;}
.y105{bottom:600.205043px;}
.y1e{bottom:602.455043px;}
.yc5{bottom:604.705043px;}
.y78{bottom:611.455043px;}
.y4a{bottom:613.705042px;}
.yec{bottom:617.080042px;}
.y9d{bottom:620.455042px;}
.y1d{bottom:622.705042px;}
.yc4{bottom:624.955042px;}
.y77{bottom:631.705042px;}
.y49{bottom:633.955042px;}
.yeb{bottom:637.330041px;}
.y9c{bottom:640.705041px;}
.y1c{bottom:642.955041px;}
.yc3{bottom:645.205041px;}
.y76{bottom:651.955041px;}
.y48{bottom:654.205041px;}
.yea{bottom:657.580041px;}
.y9b{bottom:660.955040px;}
.y1b{bottom:663.205040px;}
.yc2{bottom:665.455040px;}
.y75{bottom:672.205040px;}
.y47{bottom:674.455040px;}
.ye9{bottom:677.830040px;}
.y9a{bottom:681.205040px;}
.y1a{bottom:683.455040px;}
.y74{bottom:692.455039px;}
.y46{bottom:694.705039px;}
.yc1{bottom:696.955039px;}
.ye8{bottom:698.080039px;}
.y99{bottom:701.455039px;}
.y19{bottom:703.705039px;}
.y73{bottom:712.705038px;}
.y45{bottom:714.955038px;}
.yc0{bottom:717.205038px;}
.y98{bottom:721.705038px;}
.y18{bottom:723.955038px;}
.ye7{bottom:729.580038px;}
.y72{bottom:732.955037px;}
.y44{bottom:735.205037px;}
.ybf{bottom:737.455037px;}
.y97{bottom:741.955037px;}
.y17{bottom:744.205037px;}
.ycf{bottom:746.455037px;}
.y71{bottom:753.205037px;}
.y43{bottom:755.455037px;}
.ybe{bottom:757.705036px;}
.y96{bottom:762.205036px;}
.ye6{bottom:763.330036px;}
.y16{bottom:764.455036px;}
.yce{bottom:766.705036px;}
.y70{bottom:773.455036px;}
.y42{bottom:775.705036px;}
.ybd{bottom:777.955036px;}
.y95{bottom:782.455035px;}
.y15{bottom:784.705035px;}
.y11b{bottom:786.955035px;}
.y6f{bottom:793.705035px;}
.y41{bottom:795.955035px;}
.ybc{bottom:798.205035px;}
.y94{bottom:802.705035px;}
.y14{bottom:804.955034px;}
.y11a{bottom:807.205034px;}
.ye5{bottom:808.330034px;}
.y6e{bottom:813.955034px;}
.y40{bottom:816.205034px;}
.ybb{bottom:818.455034px;}
.y93{bottom:822.955034px;}
.y13{bottom:825.205034px;}
.y119{bottom:827.455034px;}
.ye4{bottom:829.705033px;}
.y6d{bottom:834.205033px;}
.y3f{bottom:836.455033px;}
.yba{bottom:838.705033px;}
.y113{bottom:843.205033px;}
.y12{bottom:845.455033px;}
.ye3{bottom:849.955033px;}
.y92{bottom:854.455032px;}
.y3e{bottom:856.705032px;}
.yb9{bottom:858.955032px;}
.y112{bottom:863.455032px;}
.y11{bottom:865.705032px;}
.y6c{bottom:867.955032px;}
.ye2{bottom:871.330032px;}
.y91{bottom:874.705032px;}
.y3d{bottom:876.955031px;}
.yb8{bottom:879.205031px;}
.y10{bottom:885.955031px;}
.ye1{bottom:892.705031px;}
.yfd{bottom:894.955031px;}
.y3c{bottom:897.205031px;}
.yb7{bottom:899.455031px;}
.y90{bottom:908.455030px;}
.y6b{bottom:910.705030px;}
.ye0{bottom:914.080030px;}
.y3b{bottom:917.455030px;}
.yb6{bottom:919.705030px;}
.yfc{bottom:928.705029px;}
.yf{bottom:930.955029px;}
.ydf{bottom:934.330029px;}
.y3a{bottom:937.705029px;}
.y104{bottom:942.205029px;}
.y6a{bottom:951.205028px;}
.ye{bottom:954.580028px;}
.yde{bottom:955.705028px;}
.y39{bottom:957.955028px;}
.y103{bottom:962.455028px;}
.y69{bottom:971.455028px;}
.yd{bottom:975.955027px;}
.y38{bottom:978.205027px;}
.yb5{bottom:982.705027px;}
.y68{bottom:991.705027px;}
.ydd{bottom:997.330026px;}
.y37{bottom:998.455026px;}
.yb{bottom:1000.705026px;}
.yb4{bottom:1002.955026px;}
.yc{bottom:1007.455026px;}
.y67{bottom:1011.955026px;}
.y36{bottom:1018.705026px;}
.yb3{bottom:1023.205025px;}
.y8f{bottom:1032.205025px;}
.ya{bottom:1033.330025px;}
.y35{bottom:1038.955025px;}
.ydc{bottom:1040.080025px;}
.y66{bottom:1043.455025px;}
.y8e{bottom:1052.455024px;}
.y34{bottom:1059.205024px;}
.ydb{bottom:1060.330024px;}
.y9{bottom:1061.455024px;}
.y65{bottom:1063.705024px;}
.ycd{bottom:1072.705023px;}
.y33{bottom:1079.455023px;}
.yda{bottom:1081.705023px;}
.y64{bottom:1083.955023px;}
.ycc{bottom:1092.955022px;}
.y32{bottom:1099.705022px;}
.yd9{bottom:1103.080022px;}
.y63{bottom:1104.205022px;}
.yfb{bottom:1113.205022px;}
.y4{bottom:1116.580021px;}
.y62{bottom:1124.455021px;}
.y8{bottom:1126.705021px;}
.y7{bottom:1131.205021px;}
.y31{bottom:1133.455021px;}
.y3{bottom:1143.580020px;}
.y61{bottom:1144.705020px;}
.y6{bottom:1157.080020px;}
.y2{bottom:1177.330019px;}
.y8d{bottom:1198.705018px;}
.y5{bottom:1205.455018px;}
.hb{height:21.677783px;}
.h5{height:27.527343px;}
.h11{height:28.684951px;}
.h12{height:28.869302px;}
.hc{height:30.968260px;}
.ha{height:36.129637px;}
.hf{height:36.336094px;}
.h4{height:41.291014px;}
.h7{height:42.749998px;}
.hd{height:45.420115px;}
.he{height:56.429997px;}
.h6{height:63.269998px;}
.h9{height:64.124997px;}
.h8{height:87.209996px;}
.h10{height:94.905000px;}
.h3{height:102.599996px;}
.h2{height:1262.830015px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x26{left:42.679686px;}
.x8{left:62.683591px;}
.x21{left:65.179685px;}
.x9{left:86.818356px;}
.x13{left:92.074215px;}
.x10{left:94.324215px;}
.x15{left:100.037105px;}
.x11{left:102.199214px;}
.x17{left:104.343746px;}
.x7{left:107.701167px;}
.x16{left:125.314448px;}
.x19{left:139.341791px;}
.x18{left:140.660150px;}
.x12{left:166.183587px;}
.x1a{left:205.980460px;}
.x1{left:232.558584px;}
.xa{left:263.144520px;}
.x3{left:319.359362px;}
.x1b{left:334.265611px;}
.xf{left:338.009757px;}
.xb{left:355.886704px;}
.x14{left:381.550765px;}
.x2{left:391.113265px;}
.xc{left:421.945295px;}
.xd{left:438.749982px;}
.x22{left:469.107408px;}
.x24{left:470.232408px;}
.x23{left:512.525375px;}
.x1c{left:524.179666px;}
.xe{left:528.925759px;}
.x1d{left:538.558571px;}
.x1e{left:543.480446px;}
.x1f{left:554.044904px;}
.x25{left:608.062475px;}
.x5{left:701.437471px;}
.x6{left:710.050752px;}
.x4{left:718.523408px;}
.x20{left:811.160122px;}
@media print{
.v1{vertical-align:-15.999999pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021874pt;}
.ls1{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.046875pt;}
.ws7{word-spacing:-18.046874pt;}
.ws2{word-spacing:-16.874999pt;}
.ws8{word-spacing:-14.437500pt;}
.ws4{word-spacing:-12.656249pt;}
.ws9{word-spacing:-11.798437pt;}
.ws1{word-spacing:-11.250000pt;}
.ws3{word-spacing:-8.613281pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:392.187503pt;}
.ws6{word-spacing:466.687501pt;}
._3e{margin-left:-7.410765pt;}
._6{margin-left:-6.429071pt;}
._1{margin-left:-5.097658pt;}
._3{margin-left:-3.770314pt;}
._2{margin-left:-2.636713pt;}
._0{margin-left:-1.467968pt;}
._d{width:1.213194pt;}
._7{width:2.572878pt;}
._c{width:3.872192pt;}
._9{width:5.600952pt;}
._8{width:7.158628pt;}
._b{width:8.238585pt;}
._15{width:9.253310pt;}
._26{width:10.371689pt;}
._5{width:11.453123pt;}
._4{width:12.350950pt;}
._e{width:13.608705pt;}
._a{width:15.039735pt;}
._44{width:15.977718pt;}
._34{width:18.025203pt;}
._22{width:19.192688pt;}
._3d{width:20.361443pt;}
._21{width:21.281251pt;}
._41{width:22.187493pt;}
._11{width:23.546081pt;}
._12{width:25.032550pt;}
._25{width:26.487485pt;}
._30{width:27.468747pt;}
._2e{width:29.026742pt;}
._2c{width:30.056507pt;}
._27{width:31.008912pt;}
._39{width:31.991087pt;}
._28{width:32.993711pt;}
._29{width:33.931215pt;}
._3b{width:34.943784pt;}
._3c{width:36.285654pt;}
._23{width:37.614560pt;}
._13{width:39.265623pt;}
._14{width:40.671872pt;}
._43{width:41.609372pt;}
._37{width:42.609374pt;}
._3a{width:44.030467pt;}
._38{width:45.008177pt;}
._2d{width:45.987486pt;}
._51{width:46.901426pt;}
._2a{width:47.874998pt;}
._2b{width:49.562494pt;}
._24{width:51.332032pt;}
._36{width:52.410153pt;}
._35{width:53.402340pt;}
._4f{width:54.987485pt;}
._32{width:57.265622pt;}
._33{width:58.531246pt;}
._2f{width:60.265622pt;}
._42{width:61.671875pt;}
._31{width:62.837459pt;}
._50{width:63.762577pt;}
._3f{width:65.171871pt;}
._45{width:68.166621pt;}
._40{width:74.020807pt;}
._57{width:95.749996pt;}
._4d{width:121.885665pt;}
._4b{width:123.868457pt;}
._47{width:139.140880pt;}
._4c{width:153.020430pt;}
._4e{width:184.089649pt;}
._4a{width:218.763945pt;}
._17{width:235.234385pt;}
._16{width:264.374989pt;}
._48{width:268.425253pt;}
._1d{width:271.109383pt;}
._55{width:275.937488pt;}
._1e{width:284.945909pt;}
._49{width:287.325976pt;}
._19{width:293.796863pt;}
._1c{width:306.609362pt;}
._18{width:320.484342pt;}
._52{width:339.624984pt;}
._54{width:346.874988pt;}
._1b{width:352.359359pt;}
._46{width:385.856735pt;}
._10{width:434.542929pt;}
._1f{width:533.203103pt;}
._20{width:548.277295pt;}
._f{width:572.734371pt;}
._53{width:803.624987pt;}
._56{width:967.124967pt;}
._1a{width:1465.374918pt;}
.fs8{font-size:25.200000pt;}
.fs2{font-size:31.999999pt;}
.fsd{font-size:33.560000pt;}
.fs9{font-size:35.999999pt;}
.fs4{font-size:39.999998pt;}
.fs7{font-size:41.999998pt;}
.fsb{font-size:42.240000pt;}
.fs1{font-size:47.999998pt;}
.fsa{font-size:52.799997pt;}
.fs3{font-size:59.199998pt;}
.fs6{font-size:59.999998pt;}
.fs5{font-size:81.599997pt;}
.fsc{font-size:88.800000pt;}
.fs0{font-size:95.999996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.044404pt;}
.y30{bottom:46.515614pt;}
.y102{bottom:71.515613pt;}
.y2f{bottom:76.515613pt;}
.y2e{bottom:84.515612pt;}
.y101{bottom:89.515612pt;}
.y8c{bottom:95.515612pt;}
.y111{bottom:97.515612pt;}
.y2d{bottom:102.515612pt;}
.y100{bottom:107.515612pt;}
.y60{bottom:111.515611pt;}
.y2c{bottom:112.515611pt;}
.y8b{bottom:113.515611pt;}
.y110{bottom:115.515611pt;}
.yd8{bottom:123.515611pt;}
.yb2{bottom:125.515611pt;}
.y5f{bottom:129.515611pt;}
.yfa{bottom:130.515611pt;}
.y8a{bottom:131.515611pt;}
.y2b{bottom:132.515610pt;}
.y10f{bottom:133.515610pt;}
.yd7{bottom:141.515610pt;}
.y2a{bottom:142.515610pt;}
.yb1{bottom:143.515610pt;}
.y5e{bottom:147.515610pt;}
.yf9{bottom:148.515610pt;}
.y89{bottom:149.515610pt;}
.y10e{bottom:151.515610pt;}
.yd6{bottom:159.515609pt;}
.yb0{bottom:161.515609pt;}
.y5d{bottom:165.515609pt;}
.yf8{bottom:166.515609pt;}
.y10d{bottom:169.515609pt;}
.y88{bottom:177.515609pt;}
.yaf{bottom:179.515609pt;}
.y5c{bottom:183.515608pt;}
.yf7{bottom:184.515608pt;}
.y10c{bottom:187.515608pt;}
.yff{bottom:191.515608pt;}
.y87{bottom:195.515608pt;}
.yae{bottom:197.515608pt;}
.y5b{bottom:201.515608pt;}
.yf6{bottom:202.515608pt;}
.y10b{bottom:205.515607pt;}
.y86{bottom:213.515607pt;}
.yad{bottom:215.515607pt;}
.y5a{bottom:219.515607pt;}
.yf5{bottom:220.515607pt;}
.yd5{bottom:223.515607pt;}
.ycb{bottom:229.515606pt;}
.y85{bottom:231.515606pt;}
.yac{bottom:233.515606pt;}
.y59{bottom:237.515606pt;}
.yf4{bottom:238.515606pt;}
.yd4{bottom:241.515606pt;}
.yca{bottom:247.515606pt;}
.y84{bottom:249.515606pt;}
.yab{bottom:251.515606pt;}
.y58{bottom:255.515605pt;}
.yd3{bottom:259.515605pt;}
.y121{bottom:261.515605pt;}
.yc9{bottom:265.515605pt;}
.yf3{bottom:266.515605pt;}
.y83{bottom:267.515605pt;}
.yaa{bottom:269.515605pt;}
.yd2{bottom:277.515604pt;}
.y120{bottom:279.515604pt;}
.y57{bottom:283.515604pt;}
.ya9{bottom:287.515604pt;}
.y118{bottom:291.515604pt;}
.y29{bottom:294.515604pt;}
.y82{bottom:295.515604pt;}
.y11f{bottom:297.515604pt;}
.y56{bottom:301.515603pt;}
.ya8{bottom:305.515603pt;}
.y117{bottom:309.515603pt;}
.y28{bottom:312.515603pt;}
.y81{bottom:313.515603pt;}
.y10a{bottom:315.515603pt;}
.y55{bottom:319.515603pt;}
.ya7{bottom:323.515603pt;}
.y27{bottom:330.515602pt;}
.y80{bottom:331.515602pt;}
.y109{bottom:333.515602pt;}
.y116{bottom:335.515602pt;}
.y54{bottom:337.515602pt;}
.ya6{bottom:341.515602pt;}
.y26{bottom:348.515601pt;}
.y7f{bottom:349.515601pt;}
.y108{bottom:351.515601pt;}
.y115{bottom:353.515601pt;}
.y53{bottom:355.515601pt;}
.yd1{bottom:361.515601pt;}
.y25{bottom:366.515601pt;}
.y7e{bottom:367.515601pt;}
.ya5{bottom:369.515601pt;}
.y114{bottom:371.515601pt;}
.y52{bottom:373.515600pt;}
.y24{bottom:384.515600pt;}
.y7d{bottom:385.515600pt;}
.yd0{bottom:389.515600pt;}
.y51{bottom:391.515600pt;}
.ya4{bottom:397.515599pt;}
.yfe{bottom:399.515599pt;}
.y23{bottom:402.515599pt;}
.y7c{bottom:403.515599pt;}
.y50{bottom:409.515599pt;}
.ya3{bottom:415.515599pt;}
.y11e{bottom:417.515599pt;}
.yf2{bottom:420.515598pt;}
.y4f{bottom:427.515598pt;}
.y22{bottom:429.515598pt;}
.y7b{bottom:433.515598pt;}
.y11d{bottom:435.515598pt;}
.yf1{bottom:438.515598pt;}
.y4e{bottom:445.515597pt;}
.ya2{bottom:451.515597pt;}
.y11c{bottom:453.515597pt;}
.yf0{bottom:456.515597pt;}
.y4d{bottom:463.515597pt;}
.ya1{bottom:469.515596pt;}
.y21{bottom:471.515596pt;}
.yc8{bottom:473.515596pt;}
.y4c{bottom:481.515596pt;}
.yef{bottom:484.515596pt;}
.ya0{bottom:487.515596pt;}
.y20{bottom:489.515596pt;}
.yc7{bottom:491.515596pt;}
.y107{bottom:497.515595pt;}
.y4b{bottom:499.515595pt;}
.y9f{bottom:505.515595pt;}
.y7a{bottom:507.515595pt;}
.yee{bottom:512.515595pt;}
.y106{bottom:515.515595pt;}
.y1f{bottom:517.515594pt;}
.yc6{bottom:519.515594pt;}
.y9e{bottom:523.515594pt;}
.y79{bottom:525.515594pt;}
.yed{bottom:530.515594pt;}
.y105{bottom:533.515594pt;}
.y1e{bottom:535.515594pt;}
.yc5{bottom:537.515594pt;}
.y78{bottom:543.515593pt;}
.y4a{bottom:545.515593pt;}
.yec{bottom:548.515593pt;}
.y9d{bottom:551.515593pt;}
.y1d{bottom:553.515593pt;}
.yc4{bottom:555.515593pt;}
.y77{bottom:561.515593pt;}
.y49{bottom:563.515593pt;}
.yeb{bottom:566.515592pt;}
.y9c{bottom:569.515592pt;}
.y1c{bottom:571.515592pt;}
.yc3{bottom:573.515592pt;}
.y76{bottom:579.515592pt;}
.y48{bottom:581.515592pt;}
.yea{bottom:584.515592pt;}
.y9b{bottom:587.515592pt;}
.y1b{bottom:589.515591pt;}
.yc2{bottom:591.515591pt;}
.y75{bottom:597.515591pt;}
.y47{bottom:599.515591pt;}
.ye9{bottom:602.515591pt;}
.y9a{bottom:605.515591pt;}
.y1a{bottom:607.515591pt;}
.y74{bottom:615.515590pt;}
.y46{bottom:617.515590pt;}
.yc1{bottom:619.515590pt;}
.ye8{bottom:620.515590pt;}
.y99{bottom:623.515590pt;}
.y19{bottom:625.515590pt;}
.y73{bottom:633.515590pt;}
.y45{bottom:635.515590pt;}
.yc0{bottom:637.515589pt;}
.y98{bottom:641.515589pt;}
.y18{bottom:643.515589pt;}
.ye7{bottom:648.515589pt;}
.y72{bottom:651.515589pt;}
.y44{bottom:653.515589pt;}
.ybf{bottom:655.515589pt;}
.y97{bottom:659.515589pt;}
.y17{bottom:661.515588pt;}
.ycf{bottom:663.515588pt;}
.y71{bottom:669.515588pt;}
.y43{bottom:671.515588pt;}
.ybe{bottom:673.515588pt;}
.y96{bottom:677.515588pt;}
.ye6{bottom:678.515588pt;}
.y16{bottom:679.515588pt;}
.yce{bottom:681.515588pt;}
.y70{bottom:687.515587pt;}
.y42{bottom:689.515587pt;}
.ybd{bottom:691.515587pt;}
.y95{bottom:695.515587pt;}
.y15{bottom:697.515587pt;}
.y11b{bottom:699.515587pt;}
.y6f{bottom:705.515587pt;}
.y41{bottom:707.515587pt;}
.ybc{bottom:709.515586pt;}
.y94{bottom:713.515586pt;}
.y14{bottom:715.515586pt;}
.y11a{bottom:717.515586pt;}
.ye5{bottom:718.515586pt;}
.y6e{bottom:723.515586pt;}
.y40{bottom:725.515586pt;}
.ybb{bottom:727.515586pt;}
.y93{bottom:731.515586pt;}
.y13{bottom:733.515585pt;}
.y119{bottom:735.515585pt;}
.ye4{bottom:737.515585pt;}
.y6d{bottom:741.515585pt;}
.y3f{bottom:743.515585pt;}
.yba{bottom:745.515585pt;}
.y113{bottom:749.515585pt;}
.y12{bottom:751.515585pt;}
.ye3{bottom:755.515585pt;}
.y92{bottom:759.515584pt;}
.y3e{bottom:761.515584pt;}
.yb9{bottom:763.515584pt;}
.y112{bottom:767.515584pt;}
.y11{bottom:769.515584pt;}
.y6c{bottom:771.515584pt;}
.ye2{bottom:774.515584pt;}
.y91{bottom:777.515584pt;}
.y3d{bottom:779.515584pt;}
.yb8{bottom:781.515583pt;}
.y10{bottom:787.515583pt;}
.ye1{bottom:793.515583pt;}
.yfd{bottom:795.515583pt;}
.y3c{bottom:797.515583pt;}
.yb7{bottom:799.515583pt;}
.y90{bottom:807.515582pt;}
.y6b{bottom:809.515582pt;}
.ye0{bottom:812.515582pt;}
.y3b{bottom:815.515582pt;}
.yb6{bottom:817.515582pt;}
.yfc{bottom:825.515582pt;}
.yf{bottom:827.515582pt;}
.ydf{bottom:830.515581pt;}
.y3a{bottom:833.515581pt;}
.y104{bottom:837.515581pt;}
.y6a{bottom:845.515581pt;}
.ye{bottom:848.515581pt;}
.yde{bottom:849.515581pt;}
.y39{bottom:851.515581pt;}
.y103{bottom:855.515580pt;}
.y69{bottom:863.515580pt;}
.yd{bottom:867.515580pt;}
.y38{bottom:869.515580pt;}
.yb5{bottom:873.515580pt;}
.y68{bottom:881.515579pt;}
.ydd{bottom:886.515579pt;}
.y37{bottom:887.515579pt;}
.yb{bottom:889.515579pt;}
.yb4{bottom:891.515579pt;}
.yc{bottom:895.515579pt;}
.y67{bottom:899.515579pt;}
.y36{bottom:905.515578pt;}
.yb3{bottom:909.515578pt;}
.y8f{bottom:917.515578pt;}
.ya{bottom:918.515578pt;}
.y35{bottom:923.515578pt;}
.ydc{bottom:924.515577pt;}
.y66{bottom:927.515577pt;}
.y8e{bottom:935.515577pt;}
.y34{bottom:941.515577pt;}
.ydb{bottom:942.515577pt;}
.y9{bottom:943.515577pt;}
.y65{bottom:945.515577pt;}
.ycd{bottom:953.515576pt;}
.y33{bottom:959.515576pt;}
.yda{bottom:961.515576pt;}
.y64{bottom:963.515576pt;}
.ycc{bottom:971.515576pt;}
.y32{bottom:977.515575pt;}
.yd9{bottom:980.515575pt;}
.y63{bottom:981.515575pt;}
.yfb{bottom:989.515575pt;}
.y4{bottom:992.515575pt;}
.y62{bottom:999.515574pt;}
.y8{bottom:1001.515574pt;}
.y7{bottom:1005.515574pt;}
.y31{bottom:1007.515574pt;}
.y3{bottom:1016.515574pt;}
.y61{bottom:1017.515574pt;}
.y6{bottom:1028.515573pt;}
.y2{bottom:1046.515572pt;}
.y8d{bottom:1065.515572pt;}
.y5{bottom:1071.515571pt;}
.hb{height:19.269140pt;}
.h5{height:24.468749pt;}
.h11{height:25.497734pt;}
.h12{height:25.661601pt;}
.hc{height:27.527343pt;}
.ha{height:32.115233pt;}
.hf{height:32.298750pt;}
.h4{height:36.703123pt;}
.h7{height:37.999998pt;}
.hd{height:40.373435pt;}
.he{height:50.159997pt;}
.h6{height:56.239998pt;}
.h9{height:56.999998pt;}
.h8{height:77.519997pt;}
.h10{height:84.360000pt;}
.h3{height:91.199996pt;}
.h2{height:1122.515569pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x26{left:37.937498pt;}
.x8{left:55.718748pt;}
.x21{left:57.937498pt;}
.x9{left:77.171872pt;}
.x13{left:81.843747pt;}
.x10{left:83.843747pt;}
.x15{left:88.921871pt;}
.x11{left:90.843746pt;}
.x17{left:92.749996pt;}
.x7{left:95.734371pt;}
.x16{left:111.390620pt;}
.x19{left:123.859370pt;}
.x18{left:125.031245pt;}
.x12{left:147.718744pt;}
.x1a{left:183.093742pt;}
.x1{left:206.718741pt;}
.xa{left:233.906240pt;}
.x3{left:283.874988pt;}
.x1b{left:297.124988pt;}
.xf{left:300.453117pt;}
.xb{left:316.343737pt;}
.x14{left:339.156236pt;}
.x2{left:347.656236pt;}
.xc{left:375.062484pt;}
.xd{left:389.999984pt;}
.x22{left:416.984363pt;}
.x24{left:417.984363pt;}
.x23{left:455.578111pt;}
.x1c{left:465.937481pt;}
.xe{left:470.156230pt;}
.x1d{left:478.718730pt;}
.x1e{left:483.093730pt;}
.x1f{left:492.484359pt;}
.x25{left:540.499977pt;}
.x5{left:623.499974pt;}
.x6{left:631.156224pt;}
.x4{left:638.687473pt;}
.x20{left:721.031220pt;}
}




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