
    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_ecdf594c2901015cc88acc24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_f81e1ffa3b5a119d24804e1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_bdc29d10186c4a1a83cb3214.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.127000;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_87817cc62adcf9b24ac8088b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_f8d88198686e4652ea2555a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ddcb722a1e88f699655f3146.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860352;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_2fef81020cdcd8023d9a33f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.718000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000069px;}
.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;}
}
.ws3{word-spacing:-49.500001px;}
.ws2{word-spacing:-18.336914px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-10.511916px;}
._8{margin-left:-8.927809px;}
._7{margin-left:-6.767866px;}
._0{margin-left:-4.932313px;}
._6{margin-left:-3.167702px;}
._1{margin-left:-1.943220px;}
._a{width:4.500002px;}
._9{width:13.501319px;}
._4{width:22.500225px;}
._3{width:26.784309px;}
._2{width:391.716048px;}
.fc2{color:rgb(17,84,204);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs1{font-size:66.240001px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:11.970000px;}
.y45{bottom:12.285000px;}
.y13{bottom:12.594115px;}
.y1a{bottom:12.599105px;}
.y58{bottom:14.535000px;}
.y6d{bottom:15.345000px;}
.y48{bottom:32.535000px;}
.y7{bottom:33.345000px;}
.y12{bottom:34.470000px;}
.y44{bottom:34.785000px;}
.yd4{bottom:52.785000px;}
.yb{bottom:54.720000px;}
.y11{bottom:55.845000px;}
.yd3{bottom:73.035000px;}
.y20{bottom:76.095000px;}
.y10{bottom:77.220000px;}
.y63{bottom:87.050570px;}
.y42{bottom:88.410000px;}
.ycc{bottom:89.625000px;}
.yd2{bottom:93.285000px;}
.y103{bottom:97.500000px;}
.yf{bottom:98.595000px;}
.yec{bottom:98.625000px;}
.y25{bottom:104.240602px;}
.yad{bottom:105.285000px;}
.y41{bottom:105.375000px;}
.y87{bottom:106.352400px;}
.ycb{bottom:109.875000px;}
.yf5{bottom:113.535000px;}
.yeb{bottom:118.875000px;}
.ye{bottom:119.970000px;}
.yac{bottom:127.785000px;}
.y86{bottom:128.910000px;}
.y102{bottom:134.625000px;}
.y40{bottom:143.625000px;}
.yca{bottom:147.000000px;}
.yab{bottom:150.285000px;}
.y85{bottom:151.410000px;}
.y101{bottom:154.875000px;}
.yea{bottom:156.000000px;}
.y62{bottom:163.550570px;}
.yaa{bottom:172.785000px;}
.y84{bottom:173.910000px;}
.y3f{bottom:181.875000px;}
.yc9{bottom:184.125000px;}
.y100{bottom:192.000000px;}
.ye9{bottom:193.125000px;}
.ya9{bottom:195.285000px;}
.y83{bottom:196.410000px;}
.yc8{bottom:204.375000px;}
.y24{bottom:211.115602px;}
.yff{bottom:212.250000px;}
.ye8{bottom:213.375000px;}
.ya8{bottom:217.785000px;}
.y82{bottom:218.910000px;}
.y3e{bottom:220.125000px;}
.y81{bottom:241.410000px;}
.yc7{bottom:241.500000px;}
.y61{bottom:243.345000px;}
.yfe{bottom:249.375000px;}
.ye7{bottom:250.500000px;}
.ya7{bottom:256.125000px;}
.y3d{bottom:258.375000px;}
.y60{bottom:261.750000px;}
.y80{bottom:263.910000px;}
.y5f{bottom:264.000000px;}
.ye6{bottom:270.750000px;}
.y7f{bottom:286.410000px;}
.yfd{bottom:286.500000px;}
.y10e{bottom:291.261047px;}
.ya5{bottom:294.375000px;}
.y3c{bottom:296.625000px;}
.yc6{bottom:298.875000px;}
.y5e{bottom:301.125000px;}
.y5d{bottom:303.375000px;}
.ye5{bottom:307.875000px;}
.ya6{bottom:312.375000px;}
.y7e{bottom:315.750000px;}
.y23{bottom:320.160000px;}
.yfc{bottom:323.625000px;}
.ye4{bottom:328.125000px;}
.y3b{bottom:334.875000px;}
.yc5{bottom:336.000000px;}
.y5c{bottom:340.500000px;}
.y22{bottom:342.660000px;}
.y5b{bottom:342.750000px;}
.ya3{bottom:354.000000px;}
.yc4{bottom:356.250000px;}
.y21{bottom:359.625000px;}
.yfb{bottom:360.750000px;}
.y7d{bottom:363.000000px;}
.ye3{bottom:365.250000px;}
.y7c{bottom:366.375000px;}
.ya4{bottom:372.000000px;}
.y3a{bottom:373.125000px;}
.ya2{bottom:375.375000px;}
.y5a{bottom:379.875000px;}
.y59{bottom:382.125000px;}
.ye2{bottom:385.500000px;}
.yc3{bottom:393.375000px;}
.y1f{bottom:397.875000px;}
.y39{bottom:411.375000px;}
.y7b{bottom:413.625000px;}
.y10d{bottom:414.345000px;}
.y7a{bottom:417.000000px;}
.yfa{bottom:418.125000px;}
.y1d{bottom:419.250000px;}
.y57{bottom:421.500000px;}
.ye1{bottom:422.625000px;}
.yc2{bottom:430.500000px;}
.ya1{bottom:431.625000px;}
.y10c{bottom:432.750000px;}
.ya0{bottom:435.000000px;}
.ye0{bottom:442.875000px;}
.y38{bottom:449.625000px;}
.yc1{bottom:450.750000px;}
.y78{bottom:455.250000px;}
.y56{bottom:458.625000px;}
.y1e{bottom:462.000000px;}
.y79{bottom:473.250000px;}
.y77{bottom:476.625000px;}
.ydf{bottom:480.000000px;}
.y37{bottom:487.875000px;}
.y10b{bottom:490.125000px;}
.y9f{bottom:491.250000px;}
.yf9{bottom:492.375000px;}
.y9e{bottom:494.625000px;}
.y55{bottom:495.750000px;}
.y19{bottom:503.625000px;}
.y1c{bottom:504.750000px;}
.yc0{bottom:508.125000px;}
.y36{bottom:509.250000px;}
.y10a{bottom:510.375000px;}
.y76{bottom:514.875000px;}
.yde{bottom:517.125000px;}
.y109{bottom:530.625000px;}
.y54{bottom:532.875000px;}
.y75{bottom:536.250000px;}
.y9c{bottom:541.875000px;}
.y9d{bottom:545.250000px;}
.y1b{bottom:547.500000px;}
.y35{bottom:551.595000px;}
.ydd{bottom:554.250000px;}
.yf8{bottom:556.410000px;}
.ybf{bottom:565.500000px;}
.y108{bottom:567.750000px;}
.y34{bottom:570.000000px;}
.yf7{bottom:578.910000px;}
.y74{bottom:583.500000px;}
.y73{bottom:586.875000px;}
.y107{bottom:588.000000px;}
.ydc{bottom:591.375000px;}
.y18{bottom:597.000000px;}
.yf6{bottom:601.410000px;}
.ybe{bottom:602.625000px;}
.y9b{bottom:604.875000px;}
.y53{bottom:607.125000px;}
.y33{bottom:608.250000px;}
.yf4{bottom:618.375000px;}
.ybd{bottom:622.875000px;}
.y106{bottom:625.125000px;}
.ydb{bottom:628.500000px;}
.y72{bottom:634.125000px;}
.y71{bottom:637.500000px;}
.y16{bottom:639.750000px;}
.y9a{bottom:643.125000px;}
.y52{bottom:644.250000px;}
.y32{bottom:646.500000px;}
.yda{bottom:648.750000px;}
.ybc{bottom:660.000000px;}
.y105{bottom:662.250000px;}
.ybb{bottom:680.250000px;}
.y51{bottom:681.375000px;}
.y17{bottom:682.500000px;}
.y31{bottom:684.750000px;}
.y99{bottom:685.875000px;}
.y70{bottom:688.125000px;}
.yba{bottom:717.375000px;}
.y50{bottom:718.500000px;}
.y104{bottom:719.625000px;}
.y30{bottom:723.000000px;}
.y97{bottom:724.125000px;}
.y14{bottom:728.625000px;}
.y6f{bottom:735.375000px;}
.y6e{bottom:738.750000px;}
.y98{bottom:742.125000px;}
.y96{bottom:745.500000px;}
.y15{bottom:750.000000px;}
.yb9{bottom:754.500000px;}
.y4f{bottom:755.625000px;}
.yf3{bottom:756.750000px;}
.y2f{bottom:761.250000px;}
.yd9{bottom:767.595000px;}
.yf2{bottom:777.000000px;}
.y6c{bottom:784.875000px;}
.yd{bottom:788.250000px;}
.yb8{bottom:791.625000px;}
.yd8{bottom:792.345000px;}
.y4e{bottom:792.750000px;}
.y95{bottom:796.125000px;}
.y2e{bottom:799.500000px;}
.yf1{bottom:814.125000px;}
.yd7{bottom:817.095000px;}
.y6b{bottom:826.500000px;}
.yb7{bottom:828.750000px;}
.y4d{bottom:829.875000px;}
.yf0{bottom:834.375000px;}
.y2d{bottom:837.750000px;}
.yd6{bottom:841.845000px;}
.y94{bottom:843.375000px;}
.y93{bottom:846.750000px;}
.ya{bottom:853.500000px;}
.yb6{bottom:865.875000px;}
.yd5{bottom:866.595000px;}
.y4c{bottom:867.000000px;}
.yef{bottom:871.500000px;}
.y2c{bottom:876.000000px;}
.yd1{bottom:885.000000px;}
.yb5{bottom:886.125000px;}
.y92{bottom:894.000000px;}
.yc{bottom:896.250000px;}
.y91{bottom:897.375000px;}
.y4b{bottom:904.125000px;}
.yee{bottom:908.625000px;}
.y2b{bottom:914.250000px;}
.yb4{bottom:923.250000px;}
.y6a{bottom:927.750000px;}
.yed{bottom:928.875000px;}
.y4a{bottom:941.250000px;}
.y9{bottom:942.375000px;}
.yb3{bottom:943.500000px;}
.y90{bottom:944.625000px;}
.y8f{bottom:948.000000px;}
.y29{bottom:952.500000px;}
.y8{bottom:963.750000px;}
.yd0{bottom:966.000000px;}
.y69{bottom:970.095000px;}
.y2a{bottom:973.875000px;}
.y49{bottom:978.375000px;}
.yb2{bottom:980.625000px;}
.y68{bottom:991.235992px;}
.y28{bottom:995.250000px;}
.y6{bottom:1002.000000px;}
.y8e{bottom:1003.125000px;}
.y8d{bottom:1006.500000px;}
.y47{bottom:1015.500000px;}
.y4{bottom:1023.375000px;}
.yb1{bottom:1024.410000px;}
.y46{bottom:1035.750000px;}
.y27{bottom:1037.675570px;}
.yb0{bottom:1047.720000px;}
.y67{bottom:1051.095000px;}
.y8c{bottom:1053.750000px;}
.y8b{bottom:1057.125000px;}
.ycf{bottom:1060.500000px;}
.yaf{bottom:1072.470000px;}
.y43{bottom:1072.875000px;}
.y3{bottom:1074.900635px;}
.yce{bottom:1080.750000px;}
.y66{bottom:1083.720000px;}
.y89{bottom:1095.375000px;}
.yae{bottom:1105.095000px;}
.y88{bottom:1113.375000px;}
.y65{bottom:1116.345000px;}
.y2{bottom:1116.602400px;}
.y26{bottom:1116.660000px;}
.y8a{bottom:1116.750000px;}
.ycd{bottom:1117.875000px;}
.y64{bottom:1137.720000px;}
.y1{bottom:1139.160000px;}
.hc{height:36.000000px;}
.h4{height:37.125000px;}
.he{height:38.250000px;}
.hf{height:40.500000px;}
.h15{height:51.696000px;}
.hd{height:56.250000px;}
.h2{height:56.304001px;}
.h6{height:58.500000px;}
.hb{height:59.167970px;}
.h1{height:59.586915px;}
.h3{height:61.200000px;}
.h10{height:64.546875px;}
.h11{height:65.003906px;}
.h5{height:65.448000px;}
.h14{height:76.500000px;}
.h7{height:79.875000px;}
.h9{height:81.000000px;}
.ha{height:101.250000px;}
.h12{height:117.000000px;}
.h13{height:137.250000px;}
.h8{height:145.125000px;}
.h0{height:1263.000000px;}
.w1d{width:36.000000px;}
.w2c{width:42.750000px;}
.w17{width:48.375000px;}
.w25{width:49.500000px;}
.w34{width:50.625000px;}
.w15{width:55.125000px;}
.wd{width:56.250000px;}
.wc{width:63.000000px;}
.w13{width:65.250000px;}
.w14{width:66.375000px;}
.wb{width:67.500000px;}
.w9{width:68.625000px;}
.w11{width:70.875000px;}
.w12{width:72.000000px;}
.wa{width:74.250000px;}
.w2{width:77.625000px;}
.w22{width:81.000000px;}
.w1f{width:83.250000px;}
.w29{width:84.375000px;}
.w30{width:89.999977px;}
.w8{width:90.000000px;}
.w10{width:92.249977px;}
.w7{width:95.624978px;}
.w6{width:95.625000px;}
.wf{width:102.375000px;}
.w4{width:104.625000px;}
.w2e{width:117.000000px;}
.w27{width:121.500000px;}
.w28{width:124.874978px;}
.w2f{width:128.250000px;}
.we{width:136.125000px;}
.w5{width:139.500000px;}
.w1b{width:141.750000px;}
.w36{width:146.250000px;}
.w1a{width:154.125000px;}
.w18{width:155.250000px;}
.w35{width:158.624977px;}
.w37{width:185.625000px;}
.w19{width:219.374977px;}
.w3{width:229.500000px;}
.w20{width:231.750000px;}
.w23{width:244.125000px;}
.w2a{width:248.625000px;}
.w1{width:263.249970px;}
.w31{width:303.750000px;}
.w2b{width:332.999970px;}
.w21{width:336.374970px;}
.w1e{width:347.624970px;}
.w26{width:582.750000px;}
.w2d{width:642.375000px;}
.w32{width:686.250000px;}
.w33{width:694.125000px;}
.w24{width:700.875000px;}
.w1c{width:702.000000px;}
.w16{width:723.375000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x18{left:6.750000px;}
.x4b{left:8.104434px;}
.x47{left:9.229434px;}
.xc{left:10.241927px;}
.x7{left:12.446952px;}
.x28{left:14.660302px;}
.xd{left:15.750000px;}
.x10{left:16.875000px;}
.x48{left:18.000000px;}
.x57{left:20.812500px;}
.x5e{left:21.972802px;}
.xb{left:23.768904px;}
.x51{left:25.073856px;}
.x63{left:27.674604px;}
.x12{left:29.249983px;}
.x52{left:30.407152px;}
.x2b{left:31.646753px;}
.xe{left:33.749991px;}
.x9{left:35.941335px;}
.x5{left:37.822289px;}
.x13{left:39.640346px;}
.x39{left:41.556052px;}
.x14{left:42.749983px;}
.x38{left:43.896346px;}
.x3a{left:44.971539px;}
.xf{left:47.249991px;}
.x30{left:50.034039px;}
.x35{left:51.208846px;}
.x34{left:53.012510px;}
.x32{left:54.619037px;}
.x11{left:56.515346px;}
.x36{left:57.597507px;}
.x37{left:59.200010px;}
.x4d{left:60.623889px;}
.x3b{left:62.745005px;}
.x33{left:63.785007px;}
.x17{left:67.122002px;}
.x2d{left:69.750000px;}
.x62{left:71.113704px;}
.x2a{left:75.636972px;}
.x15{left:85.122002px;}
.x26{left:86.247002px;}
.x31{left:92.628668px;}
.x40{left:94.122002px;}
.x42{left:95.934934px;}
.x56{left:97.185994px;}
.x3e{left:100.872002px;}
.x3f{left:101.997002px;}
.x5d{left:112.379614px;}
.x41{left:116.027092px;}
.x4{left:118.872002px;}
.x5b{left:124.748494px;}
.x27{left:127.004614px;}
.x58{left:130.122002px;}
.x45{left:131.247002px;}
.x29{left:135.747002px;}
.x50{left:136.872002px;}
.x4e{left:139.122002px;}
.x5f{left:150.372002px;}
.x3{left:180.747002px;}
.x44{left:185.737060px;}
.x60{left:202.122001px;}
.x21{left:204.372001px;}
.x19{left:207.747002px;}
.x59{left:248.247002px;}
.x53{left:259.497000px;}
.x16{left:263.661627px;}
.x61{left:287.622000px;}
.x2c{left:292.122000px;}
.x1a{left:304.497000px;}
.x22{left:307.872000px;}
.x3c{left:329.955797px;}
.x65{left:331.810010px;}
.x4f{left:345.028760px;}
.x5c{left:346.500000px;}
.x43{left:350.437500px;}
.x1{left:353.585285px;}
.x5a{left:377.622000px;}
.x6{left:383.246985px;}
.x54{left:385.496985px;}
.x1b{left:401.246985px;}
.x3d{left:446.560010px;}
.x8{left:461.996985px;}
.x4a{left:468.746985px;}
.x55{left:470.996985px;}
.x46{left:479.996985px;}
.x1c{left:492.371985px;}
.x2e{left:512.621985px;}
.x4c{left:550.871985px;}
.x1d{left:562.121985px;}
.x23{left:564.371985px;}
.x64{left:594.746985px;}
.x1e{left:637.496985px;}
.x2f{left:667.871985px;}
.xa{left:692.621985px;}
.x24{left:703.871985px;}
.x1f{left:706.121985px;}
.x20{left:770.246985px;}
.x25{left:771.371985px;}
.x2{left:775.373019px;}
.x49{left:807.998019px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000061pt;}
.ws3{word-spacing:-44.000001pt;}
.ws2{word-spacing:-16.299479pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-9.343925pt;}
._8{margin-left:-7.935830pt;}
._7{margin-left:-6.015881pt;}
._0{margin-left:-4.384279pt;}
._6{margin-left:-2.815735pt;}
._1{margin-left:-1.727306pt;}
._a{width:4.000002pt;}
._9{width:12.001172pt;}
._4{width:20.000200pt;}
._3{width:23.808274pt;}
._2{width:348.192042pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:58.880001pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:10.640000pt;}
.y45{bottom:10.920000pt;}
.y13{bottom:11.194769pt;}
.y1a{bottom:11.199204pt;}
.y58{bottom:12.920000pt;}
.y6d{bottom:13.640000pt;}
.y48{bottom:28.920000pt;}
.y7{bottom:29.640000pt;}
.y12{bottom:30.640000pt;}
.y44{bottom:30.920000pt;}
.yd4{bottom:46.920000pt;}
.yb{bottom:48.640000pt;}
.y11{bottom:49.640000pt;}
.yd3{bottom:64.920000pt;}
.y20{bottom:67.640000pt;}
.y10{bottom:68.640000pt;}
.y63{bottom:77.378284pt;}
.y42{bottom:78.586667pt;}
.ycc{bottom:79.666667pt;}
.yd2{bottom:82.920000pt;}
.y103{bottom:86.666667pt;}
.yf{bottom:87.640000pt;}
.yec{bottom:87.666667pt;}
.y25{bottom:92.658313pt;}
.yad{bottom:93.586667pt;}
.y41{bottom:93.666667pt;}
.y87{bottom:94.535467pt;}
.ycb{bottom:97.666667pt;}
.yf5{bottom:100.920000pt;}
.yeb{bottom:105.666667pt;}
.ye{bottom:106.640000pt;}
.yac{bottom:113.586667pt;}
.y86{bottom:114.586667pt;}
.y102{bottom:119.666667pt;}
.y40{bottom:127.666667pt;}
.yca{bottom:130.666667pt;}
.yab{bottom:133.586667pt;}
.y85{bottom:134.586667pt;}
.y101{bottom:137.666667pt;}
.yea{bottom:138.666667pt;}
.y62{bottom:145.378284pt;}
.yaa{bottom:153.586667pt;}
.y84{bottom:154.586667pt;}
.y3f{bottom:161.666667pt;}
.yc9{bottom:163.666667pt;}
.y100{bottom:170.666667pt;}
.ye9{bottom:171.666667pt;}
.ya9{bottom:173.586667pt;}
.y83{bottom:174.586667pt;}
.yc8{bottom:181.666667pt;}
.y24{bottom:187.658313pt;}
.yff{bottom:188.666667pt;}
.ye8{bottom:189.666667pt;}
.ya8{bottom:193.586667pt;}
.y82{bottom:194.586667pt;}
.y3e{bottom:195.666667pt;}
.y81{bottom:214.586667pt;}
.yc7{bottom:214.666667pt;}
.y61{bottom:216.306667pt;}
.yfe{bottom:221.666667pt;}
.ye7{bottom:222.666667pt;}
.ya7{bottom:227.666667pt;}
.y3d{bottom:229.666667pt;}
.y60{bottom:232.666667pt;}
.y80{bottom:234.586667pt;}
.y5f{bottom:234.666667pt;}
.ye6{bottom:240.666667pt;}
.y7f{bottom:254.586667pt;}
.yfd{bottom:254.666667pt;}
.y10e{bottom:258.898708pt;}
.ya5{bottom:261.666667pt;}
.y3c{bottom:263.666667pt;}
.yc6{bottom:265.666667pt;}
.y5e{bottom:267.666667pt;}
.y5d{bottom:269.666667pt;}
.ye5{bottom:273.666667pt;}
.ya6{bottom:277.666667pt;}
.y7e{bottom:280.666667pt;}
.y23{bottom:284.586667pt;}
.yfc{bottom:287.666667pt;}
.ye4{bottom:291.666667pt;}
.y3b{bottom:297.666667pt;}
.yc5{bottom:298.666667pt;}
.y5c{bottom:302.666667pt;}
.y22{bottom:304.586667pt;}
.y5b{bottom:304.666667pt;}
.ya3{bottom:314.666667pt;}
.yc4{bottom:316.666667pt;}
.y21{bottom:319.666667pt;}
.yfb{bottom:320.666667pt;}
.y7d{bottom:322.666667pt;}
.ye3{bottom:324.666667pt;}
.y7c{bottom:325.666667pt;}
.ya4{bottom:330.666667pt;}
.y3a{bottom:331.666667pt;}
.ya2{bottom:333.666667pt;}
.y5a{bottom:337.666667pt;}
.y59{bottom:339.666667pt;}
.ye2{bottom:342.666667pt;}
.yc3{bottom:349.666667pt;}
.y1f{bottom:353.666667pt;}
.y39{bottom:365.666667pt;}
.y7b{bottom:367.666667pt;}
.y10d{bottom:368.306667pt;}
.y7a{bottom:370.666667pt;}
.yfa{bottom:371.666667pt;}
.y1d{bottom:372.666667pt;}
.y57{bottom:374.666667pt;}
.ye1{bottom:375.666667pt;}
.yc2{bottom:382.666667pt;}
.ya1{bottom:383.666667pt;}
.y10c{bottom:384.666667pt;}
.ya0{bottom:386.666667pt;}
.ye0{bottom:393.666667pt;}
.y38{bottom:399.666667pt;}
.yc1{bottom:400.666667pt;}
.y78{bottom:404.666667pt;}
.y56{bottom:407.666667pt;}
.y1e{bottom:410.666667pt;}
.y79{bottom:420.666667pt;}
.y77{bottom:423.666667pt;}
.ydf{bottom:426.666667pt;}
.y37{bottom:433.666667pt;}
.y10b{bottom:435.666667pt;}
.y9f{bottom:436.666667pt;}
.yf9{bottom:437.666667pt;}
.y9e{bottom:439.666667pt;}
.y55{bottom:440.666667pt;}
.y19{bottom:447.666667pt;}
.y1c{bottom:448.666667pt;}
.yc0{bottom:451.666667pt;}
.y36{bottom:452.666667pt;}
.y10a{bottom:453.666667pt;}
.y76{bottom:457.666667pt;}
.yde{bottom:459.666667pt;}
.y109{bottom:471.666667pt;}
.y54{bottom:473.666667pt;}
.y75{bottom:476.666667pt;}
.y9c{bottom:481.666667pt;}
.y9d{bottom:484.666667pt;}
.y1b{bottom:486.666667pt;}
.y35{bottom:490.306667pt;}
.ydd{bottom:492.666667pt;}
.yf8{bottom:494.586667pt;}
.ybf{bottom:502.666667pt;}
.y108{bottom:504.666667pt;}
.y34{bottom:506.666667pt;}
.yf7{bottom:514.586667pt;}
.y74{bottom:518.666667pt;}
.y73{bottom:521.666667pt;}
.y107{bottom:522.666667pt;}
.ydc{bottom:525.666667pt;}
.y18{bottom:530.666667pt;}
.yf6{bottom:534.586667pt;}
.ybe{bottom:535.666667pt;}
.y9b{bottom:537.666667pt;}
.y53{bottom:539.666667pt;}
.y33{bottom:540.666667pt;}
.yf4{bottom:549.666667pt;}
.ybd{bottom:553.666667pt;}
.y106{bottom:555.666667pt;}
.ydb{bottom:558.666667pt;}
.y72{bottom:563.666667pt;}
.y71{bottom:566.666667pt;}
.y16{bottom:568.666667pt;}
.y9a{bottom:571.666667pt;}
.y52{bottom:572.666667pt;}
.y32{bottom:574.666667pt;}
.yda{bottom:576.666667pt;}
.ybc{bottom:586.666667pt;}
.y105{bottom:588.666667pt;}
.ybb{bottom:604.666667pt;}
.y51{bottom:605.666667pt;}
.y17{bottom:606.666667pt;}
.y31{bottom:608.666667pt;}
.y99{bottom:609.666667pt;}
.y70{bottom:611.666667pt;}
.yba{bottom:637.666667pt;}
.y50{bottom:638.666667pt;}
.y104{bottom:639.666667pt;}
.y30{bottom:642.666667pt;}
.y97{bottom:643.666667pt;}
.y14{bottom:647.666667pt;}
.y6f{bottom:653.666667pt;}
.y6e{bottom:656.666667pt;}
.y98{bottom:659.666667pt;}
.y96{bottom:662.666667pt;}
.y15{bottom:666.666667pt;}
.yb9{bottom:670.666667pt;}
.y4f{bottom:671.666667pt;}
.yf3{bottom:672.666667pt;}
.y2f{bottom:676.666667pt;}
.yd9{bottom:682.306667pt;}
.yf2{bottom:690.666667pt;}
.y6c{bottom:697.666667pt;}
.yd{bottom:700.666667pt;}
.yb8{bottom:703.666667pt;}
.yd8{bottom:704.306667pt;}
.y4e{bottom:704.666667pt;}
.y95{bottom:707.666667pt;}
.y2e{bottom:710.666667pt;}
.yf1{bottom:723.666667pt;}
.yd7{bottom:726.306667pt;}
.y6b{bottom:734.666667pt;}
.yb7{bottom:736.666667pt;}
.y4d{bottom:737.666667pt;}
.yf0{bottom:741.666667pt;}
.y2d{bottom:744.666667pt;}
.yd6{bottom:748.306667pt;}
.y94{bottom:749.666667pt;}
.y93{bottom:752.666667pt;}
.ya{bottom:758.666667pt;}
.yb6{bottom:769.666667pt;}
.yd5{bottom:770.306667pt;}
.y4c{bottom:770.666667pt;}
.yef{bottom:774.666667pt;}
.y2c{bottom:778.666667pt;}
.yd1{bottom:786.666667pt;}
.yb5{bottom:787.666667pt;}
.y92{bottom:794.666667pt;}
.yc{bottom:796.666667pt;}
.y91{bottom:797.666667pt;}
.y4b{bottom:803.666667pt;}
.yee{bottom:807.666667pt;}
.y2b{bottom:812.666667pt;}
.yb4{bottom:820.666667pt;}
.y6a{bottom:824.666667pt;}
.yed{bottom:825.666667pt;}
.y4a{bottom:836.666667pt;}
.y9{bottom:837.666667pt;}
.yb3{bottom:838.666667pt;}
.y90{bottom:839.666667pt;}
.y8f{bottom:842.666667pt;}
.y29{bottom:846.666667pt;}
.y8{bottom:856.666667pt;}
.yd0{bottom:858.666667pt;}
.y69{bottom:862.306667pt;}
.y2a{bottom:865.666667pt;}
.y49{bottom:869.666667pt;}
.yb2{bottom:871.666667pt;}
.y68{bottom:881.098659pt;}
.y28{bottom:884.666667pt;}
.y6{bottom:890.666667pt;}
.y8e{bottom:891.666667pt;}
.y8d{bottom:894.666667pt;}
.y47{bottom:902.666667pt;}
.y4{bottom:909.666667pt;}
.yb1{bottom:910.586667pt;}
.y46{bottom:920.666667pt;}
.y27{bottom:922.378284pt;}
.yb0{bottom:931.306667pt;}
.y67{bottom:934.306666pt;}
.y8c{bottom:936.666667pt;}
.y8b{bottom:939.666667pt;}
.ycf{bottom:942.666667pt;}
.yaf{bottom:953.306667pt;}
.y43{bottom:953.666667pt;}
.y3{bottom:955.467231pt;}
.yce{bottom:960.666667pt;}
.y66{bottom:963.306667pt;}
.y89{bottom:973.666667pt;}
.yae{bottom:982.306667pt;}
.y88{bottom:989.666667pt;}
.y65{bottom:992.306667pt;}
.y2{bottom:992.535467pt;}
.y26{bottom:992.586667pt;}
.y8a{bottom:992.666667pt;}
.ycd{bottom:993.666667pt;}
.y64{bottom:1011.306667pt;}
.y1{bottom:1012.586667pt;}
.hc{height:32.000000pt;}
.h4{height:33.000000pt;}
.he{height:34.000000pt;}
.hf{height:36.000000pt;}
.h15{height:45.952000pt;}
.hd{height:50.000000pt;}
.h2{height:50.048001pt;}
.h6{height:52.000000pt;}
.hb{height:52.593751pt;}
.h1{height:52.966147pt;}
.h3{height:54.400000pt;}
.h10{height:57.375000pt;}
.h11{height:57.781250pt;}
.h5{height:58.176000pt;}
.h14{height:68.000000pt;}
.h7{height:71.000000pt;}
.h9{height:72.000000pt;}
.ha{height:90.000000pt;}
.h12{height:104.000000pt;}
.h13{height:122.000000pt;}
.h8{height:129.000000pt;}
.h0{height:1122.666667pt;}
.w1d{width:32.000000pt;}
.w2c{width:38.000000pt;}
.w17{width:43.000000pt;}
.w25{width:44.000000pt;}
.w34{width:45.000000pt;}
.w15{width:49.000000pt;}
.wd{width:50.000000pt;}
.wc{width:56.000000pt;}
.w13{width:58.000000pt;}
.w14{width:59.000000pt;}
.wb{width:60.000000pt;}
.w9{width:61.000000pt;}
.w11{width:63.000000pt;}
.w12{width:64.000000pt;}
.wa{width:66.000000pt;}
.w2{width:69.000000pt;}
.w22{width:72.000000pt;}
.w1f{width:74.000000pt;}
.w29{width:75.000000pt;}
.w30{width:79.999980pt;}
.w8{width:80.000000pt;}
.w10{width:81.999980pt;}
.w7{width:84.999980pt;}
.w6{width:85.000000pt;}
.wf{width:91.000000pt;}
.w4{width:93.000000pt;}
.w2e{width:104.000000pt;}
.w27{width:108.000000pt;}
.w28{width:110.999980pt;}
.w2f{width:114.000000pt;}
.we{width:121.000000pt;}
.w5{width:124.000000pt;}
.w1b{width:126.000000pt;}
.w36{width:130.000000pt;}
.w1a{width:137.000000pt;}
.w18{width:138.000000pt;}
.w35{width:140.999980pt;}
.w37{width:165.000000pt;}
.w19{width:194.999980pt;}
.w3{width:204.000000pt;}
.w20{width:206.000000pt;}
.w23{width:217.000000pt;}
.w2a{width:221.000000pt;}
.w1{width:233.999973pt;}
.w31{width:270.000000pt;}
.w2b{width:295.999973pt;}
.w21{width:298.999973pt;}
.w1e{width:308.999973pt;}
.w26{width:518.000000pt;}
.w2d{width:571.000000pt;}
.w32{width:610.000000pt;}
.w33{width:617.000000pt;}
.w24{width:623.000000pt;}
.w1c{width:624.000000pt;}
.w16{width:643.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x18{left:6.000000pt;}
.x4b{left:7.203941pt;}
.x47{left:8.203941pt;}
.xc{left:9.103935pt;}
.x7{left:11.063957pt;}
.x28{left:13.031380pt;}
.xd{left:14.000000pt;}
.x10{left:15.000000pt;}
.x48{left:16.000000pt;}
.x57{left:18.500000pt;}
.x5e{left:19.531380pt;}
.xb{left:21.127914pt;}
.x51{left:22.287872pt;}
.x63{left:24.599648pt;}
.x12{left:25.999985pt;}
.x52{left:27.028580pt;}
.x2b{left:28.130447pt;}
.xe{left:29.999992pt;}
.x9{left:31.947853pt;}
.x5{left:33.619812pt;}
.x13{left:35.235863pt;}
.x39{left:36.938713pt;}
.x14{left:37.999985pt;}
.x38{left:39.018974pt;}
.x3a{left:39.974701pt;}
.xf{left:41.999992pt;}
.x30{left:44.474701pt;}
.x35{left:45.518974pt;}
.x34{left:47.122231pt;}
.x32{left:48.550255pt;}
.x11{left:50.235863pt;}
.x36{left:51.197784pt;}
.x37{left:52.622231pt;}
.x4d{left:53.887901pt;}
.x3b{left:55.773338pt;}
.x33{left:56.697784pt;}
.x17{left:59.664001pt;}
.x2d{left:62.000000pt;}
.x62{left:63.212181pt;}
.x2a{left:67.232864pt;}
.x15{left:75.664001pt;}
.x26{left:76.664001pt;}
.x31{left:82.336594pt;}
.x40{left:83.664001pt;}
.x42{left:85.275497pt;}
.x56{left:86.387550pt;}
.x3e{left:89.664001pt;}
.x3f{left:90.664001pt;}
.x5d{left:99.892990pt;}
.x41{left:103.135193pt;}
.x4{left:105.664001pt;}
.x5b{left:110.887550pt;}
.x27{left:112.892990pt;}
.x58{left:115.664001pt;}
.x45{left:116.664001pt;}
.x29{left:120.664001pt;}
.x50{left:121.664001pt;}
.x4e{left:123.664001pt;}
.x5f{left:133.664001pt;}
.x3{left:160.664001pt;}
.x44{left:165.099609pt;}
.x60{left:179.664001pt;}
.x21{left:181.664001pt;}
.x19{left:184.664001pt;}
.x59{left:220.664001pt;}
.x53{left:230.664000pt;}
.x16{left:234.365890pt;}
.x61{left:255.664000pt;}
.x2c{left:259.664000pt;}
.x1a{left:270.664000pt;}
.x22{left:273.664000pt;}
.x3c{left:293.294041pt;}
.x65{left:294.942231pt;}
.x4f{left:306.692231pt;}
.x5c{left:308.000000pt;}
.x43{left:311.500000pt;}
.x1{left:314.298031pt;}
.x5a{left:335.664000pt;}
.x6{left:340.663987pt;}
.x54{left:342.663987pt;}
.x1b{left:356.663987pt;}
.x3d{left:396.942231pt;}
.x8{left:410.663987pt;}
.x4a{left:416.663987pt;}
.x55{left:418.663987pt;}
.x46{left:426.663987pt;}
.x1c{left:437.663987pt;}
.x2e{left:455.663987pt;}
.x4c{left:489.663987pt;}
.x1d{left:499.663987pt;}
.x23{left:501.663987pt;}
.x64{left:528.663987pt;}
.x1e{left:566.663987pt;}
.x2f{left:593.663987pt;}
.xa{left:615.663987pt;}
.x24{left:625.663987pt;}
.x1f{left:627.663987pt;}
.x20{left:684.663987pt;}
.x25{left:685.663987pt;}
.x2{left:689.220461pt;}
.x49{left:718.220461pt;}
}




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