
    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_6403d5c3bf682ba1681fcdfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.154297;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_bfa26cff02f27834f85d5fe9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_83a6e8fce0e4f25fd21c0159.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c94b3616e7a620d345b929f8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f18be7bf1a3cfc7f28209fa4.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_a12bd8baeca692b392dd621a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051758;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:-82.080000px;}
.v3{vertical-align:-16.453123px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.257812px;}
.ls25{letter-spacing:-73.684800px;}
.ls36{letter-spacing:-68.860800px;}
.ls1f{letter-spacing:-63.619200px;}
.ls21{letter-spacing:-63.511200px;}
.ls2d{letter-spacing:-63.316800px;}
.ls1a{letter-spacing:-62.366400px;}
.ls37{letter-spacing:-59.544000px;}
.ls19{letter-spacing:-58.500000px;}
.ls32{letter-spacing:-57.196800px;}
.ls2f{letter-spacing:-55.843200px;}
.ls33{letter-spacing:-55.828800px;}
.ls26{letter-spacing:-55.800000px;}
.ls39{letter-spacing:-54.576000px;}
.ls28{letter-spacing:-54.561600px;}
.ls27{letter-spacing:-54.410400px;}
.ls22{letter-spacing:-50.637600px;}
.ls30{letter-spacing:-49.428000px;}
.ls38{letter-spacing:-46.771200px;}
.ls14{letter-spacing:-46.756800px;}
.ls24{letter-spacing:-45.504000px;}
.ls20{letter-spacing:-45.468000px;}
.ls18{letter-spacing:-45.460800px;}
.ls2a{letter-spacing:-42.796800px;}
.ls31{letter-spacing:-40.968000px;}
.ls23{letter-spacing:-36.396000px;}
.ls1e{letter-spacing:-36.000000px;}
.ls29{letter-spacing:-35.172000px;}
.ls1b{letter-spacing:-32.500800px;}
.ls2e{letter-spacing:-0.036000px;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.014400px;}
.ls4{letter-spacing:28.007424px;}
.ls3{letter-spacing:32.050368px;}
.ls12{letter-spacing:33.764688px;}
.ls11{letter-spacing:33.776996px;}
.ls9{letter-spacing:33.984000px;}
.ls5{letter-spacing:48.304656px;}
.ls13{letter-spacing:57.304755px;}
.lsa{letter-spacing:63.588816px;}
.ls6{letter-spacing:82.160189px;}
.ls7{letter-spacing:82.160191px;}
.ls8{letter-spacing:82.863315px;}
.lsb{letter-spacing:119.194416px;}
.lsc{letter-spacing:129.093637px;}
.lsf{letter-spacing:129.811536px;}
.lsd{letter-spacing:147.670992px;}
.ls10{letter-spacing:151.902032px;}
.lse{letter-spacing:164.214775px;}
.ls2b{letter-spacing:197.091360px;}
.ls1c{letter-spacing:306.000000px;}
.ls16{letter-spacing:384.841938px;}
.ls17{letter-spacing:401.615951px;}
.ls34{letter-spacing:1012.289760px;}
.ls0{letter-spacing:1069.811712px;}
.ls2c{letter-spacing:1301.309280px;}
.ls35{letter-spacing:1549.055520px;}
.ls1d{letter-spacing:1705.148352px;}
.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;}
}
.wsa{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.985600px;}
.ws6{word-spacing:-17.964000px;}
.ws4{word-spacing:-0.060480px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:14.500800px;}
.ws7{word-spacing:31.428000px;}
.ws9{word-spacing:39.196800px;}
.ws8{word-spacing:46.893600px;}
.ws3{word-spacing:784.195911px;}
._6d{margin-left:-114.608362px;}
._86{margin-left:-109.370988px;}
._76{margin-left:-107.085456px;}
._80{margin-left:-101.631146px;}
._79{margin-left:-100.077682px;}
._88{margin-left:-98.567978px;}
._8a{margin-left:-96.816125px;}
._7c{margin-left:-95.730754px;}
._6e{margin-left:-94.536000px;}
._7d{margin-left:-93.130884px;}
._8d{margin-left:-91.368000px;}
._7e{margin-left:-88.608859px;}
._6f{margin-left:-87.310159px;}
._81{margin-left:-86.067943px;}
._74{margin-left:-84.692765px;}
._73{margin-left:-82.635732px;}
._7b{margin-left:-80.852825px;}
._43{margin-left:-78.855754px;}
._2e{margin-left:-77.506877px;}
._6b{margin-left:-76.158619px;}
._42{margin-left:-75.058877px;}
._6c{margin-left:-73.518185px;}
._2f{margin-left:-72.387000px;}
._85{margin-left:-71.209418px;}
._39{margin-left:-70.159500px;}
._6a{margin-left:-68.840438px;}
._69{margin-left:-66.711946px;}
._67{margin-left:-65.326997px;}
._21{margin-left:-63.605815px;}
._38{margin-left:-62.364377px;}
._31{margin-left:-60.652685px;}
._3a{margin-left:-59.366254px;}
._75{margin-left:-58.175950px;}
._32{margin-left:-57.121315px;}
._33{margin-left:-55.802815px;}
._8b{margin-left:-54.789732px;}
._40{margin-left:-53.735623px;}
._2a{margin-left:-52.272000px;}
._3e{margin-left:-51.206630px;}
._65{margin-left:-50.108054px;}
._36{margin-left:-49.071377px;}
._34{margin-left:-47.880000px;}
._37{margin-left:-45.969638px;}
._3d{margin-left:-44.191685px;}
._3f{margin-left:-43.021116px;}
._35{margin-left:-41.973746px;}
._78{margin-left:-40.966632px;}
._2d{margin-left:-39.936960px;}
._66{margin-left:-38.716870px;}
._41{margin-left:-37.546877px;}
._23{margin-left:-36.394877px;}
._61{margin-left:-35.184960px;}
._26{margin-left:-33.940800px;}
._30{margin-left:-32.167577px;}
._5a{margin-left:-31.102574px;}
._51{margin-left:-29.305958px;}
._5b{margin-left:-28.152000px;}
._59{margin-left:-26.539841px;}
._5c{margin-left:-25.477574px;}
._53{margin-left:-24.412666px;}
._47{margin-left:-23.256000px;}
._60{margin-left:-22.118407px;}
._52{margin-left:-21.115354px;}
._48{margin-left:-19.296000px;}
._4b{margin-left:-17.568000px;}
._4f{margin-left:-16.092000px;}
._4e{margin-left:-14.911200px;}
._27{margin-left:-13.896000px;}
._55{margin-left:-12.744000px;}
._4a{margin-left:-11.664000px;}
._4d{margin-left:-10.663200px;}
._46{margin-left:-8.935200px;}
._49{margin-left:-7.848000px;}
._56{margin-left:-6.801581px;}
._29{margin-left:-5.040000px;}
._28{margin-left:-3.816000px;}
._4c{margin-left:-2.592000px;}
._1c{margin-left:-1.000800px;}
._a{width:1.008000px;}
._5{width:2.037600px;}
._d{width:3.117600px;}
._4{width:4.932000px;}
._16{width:5.976000px;}
._9{width:7.041600px;}
._0{width:8.913600px;}
._7{width:9.978912px;}
._2{width:11.044800px;}
._1{width:12.326400px;}
._b{width:13.759200px;}
._6{width:15.213600px;}
._c{width:16.365600px;}
._54{width:17.585942px;}
._57{width:18.785088px;}
._10{width:19.980000px;}
._11{width:21.088800px;}
._e{width:22.118400px;}
._12{width:23.529600px;}
._3{width:24.537600px;}
._8{width:26.352000px;}
._1a{width:27.705600px;}
._8f{width:28.728000px;}
._13{width:29.743200px;}
._1b{width:30.751200px;}
._15{width:32.407200px;}
._17{width:33.580800px;}
._1d{width:34.804800px;}
._1f{width:35.938656px;}
._45{width:36.957168px;}
._1e{width:38.570832px;}
._18{width:39.751200px;}
._19{width:40.975200px;}
._70{width:42.076800px;}
._83{width:44.164800px;}
._14{width:46.051200px;}
._71{width:47.894400px;}
._24{width:49.752000px;}
._3b{width:51.732000px;}
._90{width:52.743312px;}
._22{width:62.397034px;}
._8e{width:67.014432px;}
._91{width:113.477904px;}
._20{width:144.448272px;}
._84{width:147.008448px;}
._92{width:155.131200px;}
._25{width:247.806432px;}
._2b{width:263.393280px;}
._5d{width:341.979264px;}
._3c{width:410.923296px;}
._44{width:426.948624px;}
._5e{width:781.115818px;}
._2c{width:823.165056px;}
._f{width:846.000000px;}
._82{width:1106.721475px;}
._89{width:1258.947593px;}
._72{width:2032.029216px;}
._8c{width:2586.053897px;}
._7f{width:2706.463168px;}
._5f{width:2728.346875px;}
._87{width:2732.624978px;}
._7a{width:2738.352463px;}
._68{width:2740.271969px;}
._77{width:2746.643292px;}
._50{width:2748.247776px;}
._62{width:2755.057968px;}
._64{width:2761.505208px;}
._58{width:2768.790211px;}
._63{width:2770.094880px;}
.fc4{color:rgb(39,57,193);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:123.750000px;}
.y31{bottom:125.640000px;}
.y33{bottom:126.000000px;}
.y7c{bottom:145.359844px;}
.y53{bottom:146.160000px;}
.y30{bottom:146.520000px;}
.y7d{bottom:148.418438px;}
.y7b{bottom:167.206641px;}
.y2f{bottom:167.400000px;}
.y7a{bottom:187.656328px;}
.y2e{bottom:187.920000px;}
.y2d{bottom:208.800000px;}
.y2c{bottom:229.320000px;}
.y79{bottom:248.125781px;}
.y2b{bottom:250.200000px;}
.y81{bottom:270.360000px;}
.y2a{bottom:270.720000px;}
.y29{bottom:291.240000px;}
.y28{bottom:312.120000px;}
.y78{bottom:330.390000px;}
.y51{bottom:330.759140px;}
.y76{bottom:331.181016px;}
.y52{bottom:331.304063px;}
.y27{bottom:332.640000px;}
.y75{bottom:333.378281px;}
.y74{bottom:352.359844px;}
.y26{bottom:353.520000px;}
.y25{bottom:374.040000px;}
.y77{bottom:375.270469px;}
.y50{bottom:394.093828px;}
.y73{bottom:394.603594px;}
.y4c{bottom:394.832109px;}
.y24{bottom:394.920000px;}
.y4f{bottom:395.834063px;}
.y4d{bottom:396.326250px;}
.y4e{bottom:398.154375px;}
.y23{bottom:415.440000px;}
.y49{bottom:433.920586px;}
.y48{bottom:436.188164px;}
.y22{bottom:436.320000px;}
.y4a{bottom:436.583672px;}
.y4b{bottom:440.433281px;}
.y21{bottom:456.840000px;}
.y20{bottom:477.720000px;}
.y1f{bottom:498.240000px;}
.y45{bottom:518.346563px;}
.y1e{bottom:519.120000px;}
.y47{bottom:519.243047px;}
.y46{bottom:521.370000px;}
.y44{bottom:522.459844px;}
.y1d{bottom:539.640000px;}
.y1c{bottom:560.520000px;}
.y42{bottom:580.908164px;}
.y1b{bottom:581.040000px;}
.y41{bottom:581.163047px;}
.y43{bottom:583.711875px;}
.y1a{bottom:601.920000px;}
.y63{bottom:620.190000px;}
.y64{bottom:622.439964px;}
.y19{bottom:622.440000px;}
.y61{bottom:641.860944px;}
.y62{bottom:643.319928px;}
.y18{bottom:643.320000px;}
.y60{bottom:661.589964px;}
.y5f{bottom:663.839964px;}
.y17{bottom:663.840000px;}
.y5e{bottom:684.719928px;}
.y16{bottom:684.720000px;}
.y5d{bottom:705.239856px;}
.y15{bottom:705.240000px;}
.y5c{bottom:726.119964px;}
.y14{bottom:726.120000px;}
.y5b{bottom:746.639856px;}
.y13{bottom:746.640000px;}
.y5a{bottom:767.519964px;}
.y12{bottom:767.520000px;}
.y59{bottom:788.039928px;}
.y11{bottom:788.040000px;}
.y10{bottom:808.920000px;}
.y58{bottom:829.439856px;}
.yf{bottom:829.440000px;}
.ye{bottom:850.320000px;}
.y71{bottom:868.783288px;}
.y72{bottom:870.646569px;}
.y70{bottom:870.839928px;}
.yd{bottom:870.840000px;}
.y6f{bottom:890.348762px;}
.y6d{bottom:890.559700px;}
.y6e{bottom:891.719856px;}
.yc{bottom:891.720000px;}
.y6c{bottom:912.239928px;}
.yb{bottom:912.240000px;}
.y6a{bottom:931.959732px;}
.y6b{bottom:933.119888px;}
.y57{bottom:933.119978px;}
.ya{bottom:933.120000px;}
.y56{bottom:935.194198px;}
.y68{bottom:953.639888px;}
.y9{bottom:953.640000px;}
.y69{bottom:954.870357px;}
.y40{bottom:973.623516px;}
.y65{bottom:974.519888px;}
.y67{bottom:974.519978px;}
.y8{bottom:974.520000px;}
.y3f{bottom:974.783672px;}
.y66{bottom:975.750357px;}
.y3e{bottom:993.475547px;}
.y54{bottom:995.039978px;}
.y7{bottom:995.040000px;}
.y3c{bottom:995.127891px;}
.y3d{bottom:995.778281px;}
.y55{bottom:997.114198px;}
.y3a{bottom:1015.023516px;}
.y6{bottom:1015.920000px;}
.y3b{bottom:1016.834063px;}
.y39{bottom:1034.875547px;}
.y38{bottom:1035.543516px;}
.y5{bottom:1036.440000px;}
.y37{bottom:1036.527891px;}
.y36{bottom:1055.755547px;}
.y32{bottom:1057.320000px;}
.y34{bottom:1057.583672px;}
.y35{bottom:1058.234063px;}
.y4{bottom:1077.840000px;}
.y3{bottom:1098.720000px;}
.y2{bottom:1119.240000px;}
.y80{bottom:1137.869964px;}
.y7f{bottom:1140.119964px;}
.y1{bottom:1140.120000px;}
.h3{height:60.082031px;}
.h7{height:60.187500px;}
.h5{height:67.570226px;}
.h2{height:67.570313px;}
.h6{height:67.570456px;}
.h4{height:73.828125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:106.200072px;}
.x1{left:116.665272px;}
.x16{left:133.200072px;}
.x9{left:138.075084px;}
.x44{left:143.607060px;}
.x6{left:148.725216px;}
.xc{left:151.247669px;}
.x59{left:159.375384px;}
.xb{left:160.414662px;}
.xf{left:164.633429px;}
.xa{left:165.740833px;}
.xd{left:169.520148px;}
.xe{left:171.102179px;}
.x7{left:175.725216px;}
.x41{left:179.983512px;}
.x17{left:187.200000px;}
.x40{left:190.309932px;}
.x4c{left:195.746776px;}
.x4b{left:201.222361px;}
.x8{left:202.725216px;}
.x1d{left:214.200072px;}
.x1b{left:221.547755px;}
.x26{left:223.129775px;}
.x1c{left:224.553615px;}
.x23{left:225.766486px;}
.x21{left:229.018461px;}
.x25{left:231.391494px;}
.x1a{left:233.237207px;}
.x1f{left:235.504790px;}
.x19{left:237.455957px;}
.x20{left:239.196196px;}
.x1e{left:243.687407px;}
.x18{left:251.254785px;}
.x22{left:254.436409px;}
.x36{left:266.094360px;}
.x35{left:270.594394px;}
.x34{left:274.681308px;}
.x29{left:279.049555px;}
.x24{left:288.195895px;}
.x28{left:289.939204px;}
.x50{left:291.916753px;}
.x15{left:293.674502px;}
.x14{left:299.905947px;}
.x5{left:311.400144px;}
.x30{left:318.655512px;}
.x2f{left:324.388548px;}
.x4f{left:326.936774px;}
.x2b{left:332.319972px;}
.x2e{left:334.935432px;}
.x2a{left:343.209621px;}
.x4a{left:362.727978px;}
.x49{left:367.351025px;}
.x27{left:376.889400px;}
.x2{left:416.239200px;}
.x13{left:418.197943px;}
.x12{left:426.380559px;}
.x33{left:430.427633px;}
.x32{left:436.395407px;}
.x54{left:437.960329px;}
.x53{left:442.047243px;}
.x11{left:445.057317px;}
.x3{left:446.400000px;}
.x10{left:452.563177px;}
.x48{left:461.890440px;}
.x69{left:470.884381px;}
.x47{left:473.173200px;}
.x68{left:474.971295px;}
.x58{left:486.251494px;}
.x57{left:490.338408px;}
.x56{left:521.284700px;}
.x55{left:524.844270px;}
.x63{left:525.863748px;}
.x62{left:530.478006px;}
.x43{left:531.862459px;}
.x42{left:540.713045px;}
.x46{left:541.922146px;}
.x45{left:546.009060px;}
.x6f{left:549.186120px;}
.x6b{left:562.360865px;}
.x6a{left:568.328639px;}
.x3f{left:617.082499px;}
.x3e{left:621.362773px;}
.x67{left:647.483016px;}
.x66{left:651.569931px;}
.x5d{left:653.771553px;}
.x5c{left:658.051827px;}
.x3d{left:659.454217px;}
.x3c{left:663.734491px;}
.x65{left:672.645902px;}
.x64{left:677.163481px;}
.x4e{left:678.855240px;}
.x61{left:687.732136px;}
.x60{left:693.699910px;}
.x5b{left:696.789619px;}
.x5a{left:701.069893px;}
.x6e{left:702.651857px;}
.x5f{left:704.670377px;}
.x6d{left:708.619631px;}
.x5e{left:710.638151px;}
.x31{left:718.744680px;}
.x6c{left:720.827640px;}
.x51{left:733.500000px;}
.x3a{left:748.829520px;}
.x52{left:750.991527px;}
.x39{left:757.548257px;}
.x38{left:763.516031px;}
.x3b{left:768.253320px;}
.x37{left:775.724040px;}
.x2d{left:779.129640px;}
.x4d{left:780.430320px;}
.x2c{left:781.788600px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v3{vertical-align:-14.624998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.562500pt;}
.ls25{letter-spacing:-65.497600pt;}
.ls36{letter-spacing:-61.209600pt;}
.ls1f{letter-spacing:-56.550400pt;}
.ls21{letter-spacing:-56.454400pt;}
.ls2d{letter-spacing:-56.281600pt;}
.ls1a{letter-spacing:-55.436800pt;}
.ls37{letter-spacing:-52.928000pt;}
.ls19{letter-spacing:-52.000000pt;}
.ls32{letter-spacing:-50.841600pt;}
.ls2f{letter-spacing:-49.638400pt;}
.ls33{letter-spacing:-49.625600pt;}
.ls26{letter-spacing:-49.600000pt;}
.ls39{letter-spacing:-48.512000pt;}
.ls28{letter-spacing:-48.499200pt;}
.ls27{letter-spacing:-48.364800pt;}
.ls22{letter-spacing:-45.011200pt;}
.ls30{letter-spacing:-43.936000pt;}
.ls38{letter-spacing:-41.574400pt;}
.ls14{letter-spacing:-41.561600pt;}
.ls24{letter-spacing:-40.448000pt;}
.ls20{letter-spacing:-40.416000pt;}
.ls18{letter-spacing:-40.409600pt;}
.ls2a{letter-spacing:-38.041600pt;}
.ls31{letter-spacing:-36.416000pt;}
.ls23{letter-spacing:-32.352000pt;}
.ls1e{letter-spacing:-32.000000pt;}
.ls29{letter-spacing:-31.264000pt;}
.ls1b{letter-spacing:-28.889600pt;}
.ls2e{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.012800pt;}
.ls4{letter-spacing:24.895488pt;}
.ls3{letter-spacing:28.489216pt;}
.ls12{letter-spacing:30.013056pt;}
.ls11{letter-spacing:30.023997pt;}
.ls9{letter-spacing:30.208000pt;}
.ls5{letter-spacing:42.937472pt;}
.ls13{letter-spacing:50.937560pt;}
.lsa{letter-spacing:56.523392pt;}
.ls6{letter-spacing:73.031279pt;}
.ls7{letter-spacing:73.031281pt;}
.ls8{letter-spacing:73.656280pt;}
.lsb{letter-spacing:105.950592pt;}
.lsc{letter-spacing:114.749900pt;}
.lsf{letter-spacing:115.388032pt;}
.lsd{letter-spacing:131.263104pt;}
.ls10{letter-spacing:135.024029pt;}
.lse{letter-spacing:145.968689pt;}
.ls2b{letter-spacing:175.192320pt;}
.ls1c{letter-spacing:272.000000pt;}
.ls16{letter-spacing:342.081723pt;}
.ls17{letter-spacing:356.991956pt;}
.ls34{letter-spacing:899.813120pt;}
.ls0{letter-spacing:950.943744pt;}
.ls2c{letter-spacing:1156.719360pt;}
.ls35{letter-spacing:1376.938240pt;}
.ls1d{letter-spacing:1515.687424pt;}
.wsa{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.987200pt;}
.ws6{word-spacing:-15.968000pt;}
.ws4{word-spacing:-0.053760pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:12.889600pt;}
.ws7{word-spacing:27.936000pt;}
.ws9{word-spacing:34.841600pt;}
.ws8{word-spacing:41.683200pt;}
.ws3{word-spacing:697.063032pt;}
._6d{margin-left:-101.874099pt;}
._86{margin-left:-97.218656pt;}
._76{margin-left:-95.187072pt;}
._80{margin-left:-90.338797pt;}
._79{margin-left:-88.957939pt;}
._88{margin-left:-87.615981pt;}
._8a{margin-left:-86.058778pt;}
._7c{margin-left:-85.094003pt;}
._6e{margin-left:-84.032000pt;}
._7d{margin-left:-82.783008pt;}
._8d{margin-left:-81.216000pt;}
._7e{margin-left:-78.763430pt;}
._6f{margin-left:-77.609030pt;}
._81{margin-left:-76.504838pt;}
._74{margin-left:-75.282458pt;}
._73{margin-left:-73.453984pt;}
._7b{margin-left:-71.869178pt;}
._43{margin-left:-70.094003pt;}
._2e{margin-left:-68.895002pt;}
._6b{margin-left:-67.696550pt;}
._42{margin-left:-66.719002pt;}
._6c{margin-left:-65.349498pt;}
._2f{margin-left:-64.344000pt;}
._85{margin-left:-63.297261pt;}
._39{margin-left:-62.364000pt;}
._6a{margin-left:-61.191501pt;}
._69{margin-left:-59.299507pt;}
._67{margin-left:-58.068442pt;}
._21{margin-left:-56.538502pt;}
._38{margin-left:-55.435002pt;}
._31{margin-left:-53.913498pt;}
._3a{margin-left:-52.770003pt;}
._75{margin-left:-51.711955pt;}
._32{margin-left:-50.774502pt;}
._33{margin-left:-49.602502pt;}
._8b{margin-left:-48.701984pt;}
._40{margin-left:-47.764998pt;}
._2a{margin-left:-46.464000pt;}
._3e{margin-left:-45.517005pt;}
._65{margin-left:-44.540493pt;}
._36{margin-left:-43.619002pt;}
._34{margin-left:-42.560000pt;}
._37{margin-left:-40.861901pt;}
._3d{margin-left:-39.281498pt;}
._3f{margin-left:-38.240992pt;}
._35{margin-left:-37.309997pt;}
._78{margin-left:-36.414784pt;}
._2d{margin-left:-35.499520pt;}
._66{margin-left:-34.414995pt;}
._41{margin-left:-33.375002pt;}
._23{margin-left:-32.351002pt;}
._61{margin-left:-31.275520pt;}
._26{margin-left:-30.169600pt;}
._30{margin-left:-28.593402pt;}
._5a{margin-left:-27.646733pt;}
._51{margin-left:-26.049741pt;}
._5b{margin-left:-25.024000pt;}
._59{margin-left:-23.590970pt;}
._5c{margin-left:-22.646733pt;}
._53{margin-left:-21.700147pt;}
._47{margin-left:-20.672000pt;}
._60{margin-left:-19.660806pt;}
._52{margin-left:-18.769203pt;}
._48{margin-left:-17.152000pt;}
._4b{margin-left:-15.616000pt;}
._4f{margin-left:-14.304000pt;}
._4e{margin-left:-13.254400pt;}
._27{margin-left:-12.352000pt;}
._55{margin-left:-11.328000pt;}
._4a{margin-left:-10.368000pt;}
._4d{margin-left:-9.478400pt;}
._46{margin-left:-7.942400pt;}
._49{margin-left:-6.976000pt;}
._56{margin-left:-6.045850pt;}
._29{margin-left:-4.480000pt;}
._28{margin-left:-3.392000pt;}
._4c{margin-left:-2.304000pt;}
._1c{margin-left:-0.889600pt;}
._a{width:0.896000pt;}
._5{width:1.811200pt;}
._d{width:2.771200pt;}
._4{width:4.384000pt;}
._16{width:5.312000pt;}
._9{width:6.259200pt;}
._0{width:7.923200pt;}
._7{width:8.870144pt;}
._2{width:9.817600pt;}
._1{width:10.956800pt;}
._b{width:12.230400pt;}
._6{width:13.523200pt;}
._c{width:14.547200pt;}
._54{width:15.631949pt;}
._57{width:16.697856pt;}
._10{width:17.760000pt;}
._11{width:18.745600pt;}
._e{width:19.660800pt;}
._12{width:20.915200pt;}
._3{width:21.811200pt;}
._8{width:23.424000pt;}
._1a{width:24.627200pt;}
._8f{width:25.536000pt;}
._13{width:26.438400pt;}
._1b{width:27.334400pt;}
._15{width:28.806400pt;}
._17{width:29.849600pt;}
._1d{width:30.937600pt;}
._1f{width:31.945472pt;}
._45{width:32.850816pt;}
._1e{width:34.285184pt;}
._18{width:35.334400pt;}
._19{width:36.422400pt;}
._70{width:37.401600pt;}
._83{width:39.257600pt;}
._14{width:40.934400pt;}
._71{width:42.572800pt;}
._24{width:44.224000pt;}
._3b{width:45.984000pt;}
._90{width:46.882944pt;}
._22{width:55.464030pt;}
._8e{width:59.568384pt;}
._91{width:100.869248pt;}
._20{width:128.398464pt;}
._84{width:130.674176pt;}
._92{width:137.894400pt;}
._25{width:220.272384pt;}
._2b{width:234.127360pt;}
._5d{width:303.981568pt;}
._3c{width:365.265152pt;}
._44{width:379.509888pt;}
._5e{width:694.325171pt;}
._2c{width:731.702272pt;}
._f{width:752.000000pt;}
._82{width:983.752422pt;}
._89{width:1119.064527pt;}
._72{width:1806.248192pt;}
._8c{width:2298.714575pt;}
._7f{width:2405.745038pt;}
._5f{width:2425.197222pt;}
._87{width:2428.999981pt;}
._7a{width:2434.091078pt;}
._68{width:2435.797306pt;}
._77{width:2441.460704pt;}
._50{width:2442.886912pt;}
._62{width:2448.940416pt;}
._64{width:2454.671296pt;}
._58{width:2461.146854pt;}
._63{width:2462.306560pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:110.000000pt;}
.y31{bottom:111.680000pt;}
.y33{bottom:112.000000pt;}
.y7c{bottom:129.208750pt;}
.y53{bottom:129.920000pt;}
.y30{bottom:130.240000pt;}
.y7d{bottom:131.927501pt;}
.y7b{bottom:148.628125pt;}
.y2f{bottom:148.800000pt;}
.y7a{bottom:166.805625pt;}
.y2e{bottom:167.040000pt;}
.y2d{bottom:185.600000pt;}
.y2c{bottom:203.840000pt;}
.y79{bottom:220.556250pt;}
.y2b{bottom:222.400000pt;}
.y81{bottom:240.320000pt;}
.y2a{bottom:240.640000pt;}
.y29{bottom:258.880000pt;}
.y28{bottom:277.440000pt;}
.y78{bottom:293.680000pt;}
.y51{bottom:294.008125pt;}
.y76{bottom:294.383125pt;}
.y52{bottom:294.492500pt;}
.y27{bottom:295.680000pt;}
.y75{bottom:296.336250pt;}
.y74{bottom:313.208750pt;}
.y26{bottom:314.240000pt;}
.y25{bottom:332.480000pt;}
.y77{bottom:333.573750pt;}
.y50{bottom:350.305625pt;}
.y73{bottom:350.758750pt;}
.y4c{bottom:350.961875pt;}
.y24{bottom:351.040000pt;}
.y4f{bottom:351.852500pt;}
.y4d{bottom:352.290000pt;}
.y4e{bottom:353.915000pt;}
.y23{bottom:369.280000pt;}
.y49{bottom:385.707187pt;}
.y48{bottom:387.722812pt;}
.y22{bottom:387.840000pt;}
.y4a{bottom:388.074375pt;}
.y4b{bottom:391.496250pt;}
.y21{bottom:406.080000pt;}
.y20{bottom:424.640000pt;}
.y1f{bottom:442.880000pt;}
.y45{bottom:460.752500pt;}
.y1e{bottom:461.440000pt;}
.y47{bottom:461.549375pt;}
.y46{bottom:463.440000pt;}
.y44{bottom:464.408750pt;}
.y1d{bottom:479.680000pt;}
.y1c{bottom:498.240000pt;}
.y42{bottom:516.362812pt;}
.y1b{bottom:516.480000pt;}
.y41{bottom:516.589375pt;}
.y43{bottom:518.855000pt;}
.y1a{bottom:535.040000pt;}
.y63{bottom:551.280000pt;}
.y64{bottom:553.279968pt;}
.y19{bottom:553.280000pt;}
.y61{bottom:570.543061pt;}
.y62{bottom:571.839936pt;}
.y18{bottom:571.840000pt;}
.y60{bottom:588.079968pt;}
.y5f{bottom:590.079968pt;}
.y17{bottom:590.080000pt;}
.y5e{bottom:608.639936pt;}
.y16{bottom:608.640000pt;}
.y5d{bottom:626.879872pt;}
.y15{bottom:626.880000pt;}
.y5c{bottom:645.439968pt;}
.y14{bottom:645.440000pt;}
.y5b{bottom:663.679872pt;}
.y13{bottom:663.680000pt;}
.y5a{bottom:682.239968pt;}
.y12{bottom:682.240000pt;}
.y59{bottom:700.479936pt;}
.y11{bottom:700.480000pt;}
.y10{bottom:719.040000pt;}
.y58{bottom:737.279872pt;}
.yf{bottom:737.280000pt;}
.ye{bottom:755.840000pt;}
.y71{bottom:772.251811pt;}
.y72{bottom:773.908061pt;}
.y70{bottom:774.079936pt;}
.yd{bottom:774.080000pt;}
.y6f{bottom:791.421122pt;}
.y6d{bottom:791.608622pt;}
.y6e{bottom:792.639872pt;}
.yc{bottom:792.640000pt;}
.y6c{bottom:810.879936pt;}
.yb{bottom:810.880000pt;}
.y6a{bottom:828.408651pt;}
.y6b{bottom:829.439901pt;}
.y57{bottom:829.439981pt;}
.ya{bottom:829.440000pt;}
.y56{bottom:831.283731pt;}
.y68{bottom:847.679901pt;}
.y9{bottom:847.680000pt;}
.y69{bottom:848.773651pt;}
.y40{bottom:865.443125pt;}
.y65{bottom:866.239901pt;}
.y67{bottom:866.239981pt;}
.y8{bottom:866.240000pt;}
.y3f{bottom:866.474375pt;}
.y66{bottom:867.333651pt;}
.y3e{bottom:883.089375pt;}
.y54{bottom:884.479981pt;}
.y7{bottom:884.480000pt;}
.y3c{bottom:884.558125pt;}
.y3d{bottom:885.136250pt;}
.y55{bottom:886.323731pt;}
.y3a{bottom:902.243125pt;}
.y6{bottom:903.040000pt;}
.y3b{bottom:903.852500pt;}
.y39{bottom:919.889375pt;}
.y38{bottom:920.483125pt;}
.y5{bottom:921.280000pt;}
.y37{bottom:921.358125pt;}
.y36{bottom:938.449375pt;}
.y32{bottom:939.840000pt;}
.y34{bottom:940.074375pt;}
.y35{bottom:940.652500pt;}
.y4{bottom:958.080000pt;}
.y3{bottom:976.640000pt;}
.y2{bottom:994.880000pt;}
.y80{bottom:1011.439968pt;}
.y7f{bottom:1013.439968pt;}
.y1{bottom:1013.440000pt;}
.h3{height:53.406250pt;}
.h7{height:53.500000pt;}
.h5{height:60.062423pt;}
.h2{height:60.062500pt;}
.h6{height:60.062628pt;}
.h4{height:65.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:94.400064pt;}
.x1{left:103.702464pt;}
.x16{left:118.400064pt;}
.x9{left:122.733408pt;}
.x44{left:127.650720pt;}
.x6{left:132.200192pt;}
.xc{left:134.442372pt;}
.x59{left:141.667008pt;}
.xb{left:142.590811pt;}
.xf{left:146.340826pt;}
.xa{left:147.325185pt;}
.xd{left:150.684576pt;}
.xe{left:152.090826pt;}
.x7{left:156.200192pt;}
.x41{left:159.985344pt;}
.x17{left:166.400000pt;}
.x40{left:169.164384pt;}
.x4c{left:173.997134pt;}
.x4b{left:178.864321pt;}
.x8{left:180.200192pt;}
.x1d{left:190.400064pt;}
.x1b{left:196.931338pt;}
.x26{left:198.337578pt;}
.x1c{left:199.603213pt;}
.x23{left:200.681321pt;}
.x21{left:203.571966pt;}
.x25{left:205.681328pt;}
.x1a{left:207.321962pt;}
.x1f{left:209.337591pt;}
.x19{left:211.071961pt;}
.x20{left:212.618841pt;}
.x1e{left:216.611028pt;}
.x18{left:223.337587pt;}
.x22{left:226.165697pt;}
.x36{left:236.528320pt;}
.x35{left:240.528350pt;}
.x34{left:244.161163pt;}
.x29{left:248.044049pt;}
.x24{left:256.174129pt;}
.x28{left:257.723737pt;}
.x50{left:259.481558pt;}
.x15{left:261.044002pt;}
.x14{left:266.583064pt;}
.x5{left:276.800128pt;}
.x30{left:283.249344pt;}
.x2f{left:288.345376pt;}
.x4f{left:290.610465pt;}
.x2b{left:295.395531pt;}
.x2e{left:297.720384pt;}
.x2a{left:305.075219pt;}
.x4a{left:322.424870pt;}
.x49{left:326.534244pt;}
.x27{left:335.012800pt;}
.x2{left:369.990400pt;}
.x13{left:371.731505pt;}
.x12{left:379.004942pt;}
.x33{left:382.602341pt;}
.x32{left:387.907029pt;}
.x54{left:389.298070pt;}
.x53{left:392.930883pt;}
.x11{left:395.606504pt;}
.x3{left:396.800000pt;}
.x10{left:402.278379pt;}
.x48{left:410.569280pt;}
.x69{left:418.563894pt;}
.x47{left:420.598400pt;}
.x68{left:422.196707pt;}
.x58{left:432.223550pt;}
.x57{left:435.856363pt;}
.x56{left:463.364178pt;}
.x55{left:466.528240pt;}
.x63{left:467.434443pt;}
.x62{left:471.536006pt;}
.x43{left:472.766630pt;}
.x42{left:480.633818pt;}
.x46{left:481.708574pt;}
.x45{left:485.341387pt;}
.x6f{left:488.165440pt;}
.x6b{left:499.876325pt;}
.x6a{left:505.181013pt;}
.x3f{left:548.517777pt;}
.x3e{left:552.322465pt;}
.x67{left:575.540459pt;}
.x66{left:579.173272pt;}
.x5d{left:581.130269pt;}
.x5c{left:584.934957pt;}
.x3d{left:586.181526pt;}
.x3c{left:589.986214pt;}
.x65{left:597.907469pt;}
.x64{left:601.923094pt;}
.x4e{left:603.426880pt;}
.x61{left:611.317454pt;}
.x60{left:616.622142pt;}
.x5b{left:619.368550pt;}
.x5a{left:623.173238pt;}
.x6e{left:624.579429pt;}
.x5f{left:626.373669pt;}
.x6d{left:629.884117pt;}
.x5e{left:631.678357pt;}
.x31{left:638.884160pt;}
.x6c{left:640.735680pt;}
.x51{left:652.000000pt;}
.x3a{left:665.626240pt;}
.x52{left:667.548024pt;}
.x39{left:673.376229pt;}
.x38{left:678.680917pt;}
.x3b{left:682.891840pt;}
.x37{left:689.532480pt;}
.x2d{left:692.559680pt;}
.x4d{left:693.715840pt;}
.x2c{left:694.923200pt;}
}




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