
    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_aab96f30d22b7e0b7bd79330.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_dddc150dbe36fee18ac85bee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_5c7c866376e408ee19e4ac38.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_930ee9f0c70ddb8c9c8ebc75.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_b97aafb32447cddab387d7bb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_d2c19b3918f3d145f7e996c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_de84f1ffe1b944f98496e32f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-29.520000px;}
.v5{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.080000px;}
.v3{vertical-align:15.408000px;}
.v4{vertical-align:21.840000px;}
.v1{vertical-align:42.180000px;}
.ls20{letter-spacing:-0.367800px;}
.ls27{letter-spacing:-0.306600px;}
.ls1f{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.229800px;}
.ls25{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.162600px;}
.ls4{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.080400px;}
.ls24{letter-spacing:-0.046080px;}
.ls22{letter-spacing:-0.042600px;}
.ls5{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.142560px;}
.ls2b{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.162600px;}
.ls2a{letter-spacing:0.175800px;}
.ls1e{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.280200px;}
.ls1{letter-spacing:29.592000px;}
.ls11{letter-spacing:29.628000px;}
.ls19{letter-spacing:30.024000px;}
.ls26{letter-spacing:30.348000px;}
.ls23{letter-spacing:30.360000px;}
.lsa{letter-spacing:31.884480px;}
.ls10{letter-spacing:50.358816px;}
.lsf{letter-spacing:50.472000px;}
.ls13{letter-spacing:50.490816px;}
.ls12{letter-spacing:50.604000px;}
.ls1c{letter-spacing:59.463792px;}
.ls1b{letter-spacing:87.753600px;}
.ls18{letter-spacing:87.840000px;}
.ls1d{letter-spacing:88.560000px;}
.ls9{letter-spacing:93.225600px;}
.ls8{letter-spacing:93.276000px;}
.ls16{letter-spacing:93.345600px;}
.ls14{letter-spacing:93.396000px;}
.ls3{letter-spacing:97.560000px;}
.ls29{letter-spacing:115.509600px;}
.ls17{letter-spacing:115.560000px;}
.lsd{letter-spacing:120.009600px;}
.lse{letter-spacing:120.060000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,50,100),0 0.015em rgb(0,50,100),0.015em 0 rgb(0,50,100),0 -0.015em  rgb(0,50,100);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,50,100);text-shadow:none;}
}
.ws8{word-spacing:-64.178520px;}
.ws1a{word-spacing:-60.192000px;}
.wsb{word-spacing:-55.864080px;}
.ws5{word-spacing:-55.701480px;}
.ws6{word-spacing:-40.032000px;}
.ws13{word-spacing:-38.430720px;}
.wse{word-spacing:-33.533520px;}
.ws7{word-spacing:-33.426720px;}
.ws18{word-spacing:-33.120120px;}
.wsc{word-spacing:-30.064032px;}
.ws1{word-spacing:-30.024000px;}
.ws1b{word-spacing:-29.988000px;}
.ws16{word-spacing:-29.808000px;}
.ws9{word-spacing:-26.661312px;}
.wsa{word-spacing:-26.621280px;}
.wsf{word-spacing:-25.020000px;}
.ws11{word-spacing:-23.418720px;}
.ws19{word-spacing:-0.888000px;}
.wsd{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.108144px;}
.ws15{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.145560px;}
.ws17{word-spacing:14.148000px;}
.ws10{word-spacing:107.099520px;}
.ws12{word-spacing:786.612000px;}
.ws2{word-spacing:3327.672000px;}
._7{margin-left:-16.727040px;}
._1{margin-left:-12.371040px;}
._6{margin-left:-11.325600px;}
._5{margin-left:-9.757440px;}
._4{margin-left:-7.666560px;}
._3{margin-left:-6.272640px;}
._2{margin-left:-4.306080px;}
._8{margin-left:-3.136320px;}
._0{margin-left:-1.606080px;}
._9{width:1.462080px;}
._f{width:2.524320px;}
._a{width:3.882720px;}
._14{width:28.708320px;}
._11{width:32.040000px;}
._e{width:72.288000px;}
._12{width:74.531040px;}
._13{width:165.472320px;}
._d{width:582.285120px;}
._10{width:1548.610080px;}
._b{width:2332.679520px;}
._c{width:2368.364064px;}
.fc7{color:transparent;}
.fc6{color:rgb(191,209,0);}
.fc4{color:rgb(0,161,229);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,50,100);}
.fs3{font-size:54.000000px;}
.fs11{font-size:66.240000px;}
.fs9{font-size:79.920000px;}
.fs6{font-size:84.240000px;}
.fsd{font-size:90.000000px;}
.fsc{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:108.144000px;}
.fse{font-size:115.200000px;}
.fs2{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsf{font-size:138.240000px;}
.fs7{font-size:144.000000px;}
.fs4{font-size:167.760000px;}
.fs0{font-size:174.240000px;}
.fsa{font-size:192.240000px;}
.fs10{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:10.512000px;}
.y61{bottom:17.496000px;}
.y98{bottom:18.975000px;}
.y7{bottom:25.524000px;}
.yc0{bottom:30.312000px;}
.y16{bottom:36.216000px;}
.y3{bottom:37.116000px;}
.y96{bottom:38.880000px;}
.y32{bottom:40.068000px;}
.y8b{bottom:42.696000px;}
.ybf{bottom:50.112000px;}
.ya4{bottom:51.480000px;}
.yaf{bottom:54.072000px;}
.y5f{bottom:57.708000px;}
.y95{bottom:59.220000px;}
.y34{bottom:62.100000px;}
.ybe{bottom:71.208000px;}
.y31{bottom:72.216000px;}
.y6c{bottom:72.972000px;}
.y8a{bottom:84.096000px;}
.y41{bottom:85.644000px;}
.yae{bottom:86.472000px;}
.y94{bottom:86.835000px;}
.ybd{bottom:91.008000px;}
.y2{bottom:91.512000px;}
.y5e{bottom:93.708000px;}
.y33{bottom:98.100000px;}
.y6b{bottom:101.808000px;}
.y30{bottom:108.216000px;}
.y8d{bottom:115.410000px;}
.y66{bottom:117.324000px;}
.y40{bottom:118.044000px;}
.y4c{bottom:119.052000px;}
.y9b{bottom:122.832000px;}
.y89{bottom:125.532000px;}
.y5d{bottom:129.708000px;}
.ya5{bottom:132.045000px;}
.ya1{bottom:132.090000px;}
.ya3{bottom:132.195000px;}
.yca{bottom:143.316000px;}
.y1{bottom:145.692000px;}
.y8e{bottom:147.060000px;}
.y65{bottom:149.724000px;}
.y3f{bottom:150.450000px;}
.y4b{bottom:151.455000px;}
.yba{bottom:154.725000px;}
.y9a{bottom:155.235000px;}
.y5c{bottom:165.705000px;}
.y42{bottom:166.860000px;}
.y88{bottom:166.935000px;}
.yc9{bottom:175.755000px;}
.y8f{bottom:178.710000px;}
.y1c{bottom:181.410000px;}
.y64{bottom:182.130000px;}
.y3e{bottom:182.880000px;}
.y4a{bottom:183.855000px;}
.yb9{bottom:187.125000px;}
.y99{bottom:187.635000px;}
.yc{bottom:189.750000px;}
.y5b{bottom:201.705000px;}
.y78{bottom:204.735000px;}
.yc8{bottom:208.155000px;}
.y87{bottom:208.335000px;}
.y90{bottom:210.345000px;}
.y63{bottom:214.530000px;}
.y3d{bottom:215.280000px;}
.y49{bottom:216.285000px;}
.ya2{bottom:218.340000px;}
.yb{bottom:222.150000px;}
.y26{bottom:223.305000px;}
.y1b{bottom:224.610000px;}
.y6{bottom:235.980000px;}
.y8c{bottom:239.220000px;}
.yc7{bottom:240.555000px;}
.y91{bottom:241.950000px;}
.y7a{bottom:246.810000px;}
.y3c{bottom:247.680000px;}
.y48{bottom:248.685000px;}
.y86{bottom:251.895000px;}
.ybc{bottom:258.945000px;}
.y25{bottom:259.350000px;}
.y2c{bottom:267.120000px;}
.yf{bottom:267.990000px;}
.yb8{bottom:269.925000px;}
.y92{bottom:273.600000px;}
.y51{bottom:277.125000px;}
.y7b{bottom:283.110000px;}
.ya0{bottom:285.480000px;}
.y5{bottom:289.590000px;}
.y73{bottom:290.595000px;}
.y85{bottom:293.325000px;}
.y29{bottom:293.865000px;}
.y24{bottom:295.350000px;}
.y76{bottom:297.255000px;}
.ye{bottom:300.390000px;}
.y93{bottom:305.250000px;}
.y5a{bottom:305.535000px;}
.y4d{bottom:306.870000px;}
.y50{bottom:313.125000px;}
.y79{bottom:320.145000px;}
.y4{bottom:321.990000px;}
.ybb{bottom:323.745000px;}
.y72{bottom:329.475000px;}
.y23{bottom:331.350000px;}
.yd{bottom:332.790000px;}
.y84{bottom:334.725000px;}
.y75{bottom:336.135000px;}
.y15{bottom:340.710000px;}
.y97{bottom:342.180000px;}
.yc6{bottom:342.615000px;}
.y59{bottom:348.735000px;}
.y77{bottom:351.750000px;}
.y9f{bottom:354.135000px;}
.y6f{bottom:354.210000px;}
.yb7{bottom:354.930000px;}
.y3b{bottom:359.565000px;}
.y22{bottom:367.350000px;}
.y71{bottom:368.385000px;}
.y83{bottom:373.965000px;}
.yc5{bottom:375.045000px;}
.y74{bottom:378.075000px;}
.ya{bottom:378.645000px;}
.y58{bottom:391.755000px;}
.y6e{bottom:393.090000px;}
.y3a{bottom:395.565000px;}
.yb6{bottom:396.330000px;}
.y21{bottom:403.350000px;}
.y70{bottom:409.320000px;}
.y9{bottom:411.045000px;}
.y82{bottom:415.365000px;}
.y2b{bottom:416.955000px;}
.y55{bottom:420.150000px;}
.y4f{bottom:421.125000px;}
.y2f{bottom:426.705000px;}
.y47{bottom:427.500000px;}
.y9e{bottom:429.270000px;}
.y39{bottom:431.565000px;}
.y57{bottom:434.955000px;}
.yac{bottom:437.040000px;}
.yb5{bottom:437.730000px;}
.y6d{bottom:438.585000px;}
.ycd{bottom:439.740000px;}
.yc4{bottom:439.845000px;}
.y13{bottom:440.670000px;}
.y6a{bottom:442.050000px;}
.y9d{bottom:454.470000px;}
.y81{bottom:456.765000px;}
.y4e{bottom:457.170000px;}
.y54{bottom:463.350000px;}
.y46{bottom:463.500000px;}
.y2e{bottom:467.130000px;}
.y38{bottom:467.565000px;}
.yab{bottom:469.440000px;}
.yc3{bottom:472.245000px;}
.y12{bottom:473.070000px;}
.y1a{bottom:473.970000px;}
.y2a{bottom:475.275000px;}
.y20{bottom:475.380000px;}
.yb4{bottom:477.000000px;}
.y56{bottom:478.980000px;}
.y9c{bottom:479.670000px;}
.y80{bottom:498.210000px;}
.y45{bottom:499.500000px;}
.yaa{bottom:501.840000px;}
.y37{bottom:503.610000px;}
.y11{bottom:505.470000px;}
.y19{bottom:506.370000px;}
.y53{bottom:510.405000px;}
.y1f{bottom:511.380000px;}
.ycc{bottom:516.675000px;}
.y69{bottom:518.400000px;}
.y7f{bottom:530.610000px;}
.ya9{bottom:534.240000px;}
.y44{bottom:535.500000px;}
.yc2{bottom:537.090000px;}
.y10{bottom:537.870000px;}
.y62{bottom:538.590000px;}
.y18{bottom:538.770000px;}
.y36{bottom:539.610000px;}
.y2d{bottom:541.410000px;}
.y1e{bottom:547.380000px;}
.y68{bottom:550.800000px;}
.yb3{bottom:561.960000px;}
.ya8{bottom:566.640000px;}
.y43{bottom:571.530000px;}
.y7e{bottom:572.010000px;}
.yad{bottom:580.320000px;}
.ycb{bottom:580.680000px;}
.yb0{bottom:581.370000px;}
.y67{bottom:583.200000px;}
.y1d{bottom:583.380000px;}
.y60{bottom:585.645000px;}
.ya7{bottom:599.070000px;}
.yb2{bottom:603.360000px;}
.y17{bottom:603.615000px;}
.y28{bottom:609.270000px;}
.y35{bottom:611.610000px;}
.y7d{bottom:613.410000px;}
.y14{bottom:624.030000px;}
.y52{bottom:625.710000px;}
.ya6{bottom:631.470000px;}
.yb1{bottom:642.630000px;}
.y7c{bottom:648.330000px;}
.y27{bottom:721.650000px;}
.y8{bottom:727.350000px;}
.h5{height:39.471680px;}
.h27{height:48.871406px;}
.h19{height:61.575820px;}
.h9{height:63.961523px;}
.h1c{height:65.786133px;}
.h11{height:69.996445px;}
.h10{height:70.101703px;}
.h1d{height:71.982422px;}
.h1a{height:72.007031px;}
.h1e{height:72.078398px;}
.h1b{height:72.115313px;}
.h3{height:78.943359px;}
.h7{height:79.048617px;}
.h18{height:79.681641px;}
.h2{height:81.210938px;}
.h1f{height:81.319219px;}
.h14{height:82.687500px;}
.h15{height:82.797750px;}
.h21{height:84.206250px;}
.h4{height:87.890273px;}
.hc{height:87.995531px;}
.h12{height:88.712227px;}
.hf{height:88.818469px;}
.he{height:90.414844px;}
.h16{height:90.523125px;}
.h22{height:91.290937px;}
.h25{height:101.047500px;}
.h17{height:103.050937px;}
.h24{height:103.950000px;}
.h13{height:104.120227px;}
.ha{height:105.257812px;}
.hb{height:108.281250px;}
.h6{height:122.215781px;}
.h8{height:124.291289px;}
.h1{height:126.936563px;}
.hd{height:140.049844px;}
.h26{height:162.421875px;}
.h23{height:289.980000px;}
.h20{height:380.520000px;}
.h0{height:810.000000px;}
.w3{width:115.020000px;}
.w4{width:161.100000px;}
.w6{width:164.520000px;}
.w5{width:188.820000px;}
.w2{width:557.280000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x57{left:10.799979px;}
.x1b{left:16.127979px;}
.x58{left:22.571979px;}
.x23{left:27.251979px;}
.x2b{left:28.799979px;}
.x47{left:41.430000px;}
.x50{left:47.051979px;}
.x1{left:51.047979px;}
.x5{left:57.815979px;}
.x3b{left:61.703979px;}
.x40{left:64.365000px;}
.x3f{left:77.730000px;}
.x3d{left:89.927979px;}
.x2a{left:96.191979px;}
.x51{left:101.051979px;}
.x11{left:107.207979px;}
.x12{left:108.467979px;}
.x41{left:125.310000px;}
.x31{left:130.571979px;}
.x56{left:132.515979px;}
.x29{left:134.387979px;}
.x27{left:140.111979px;}
.x20{left:143.279979px;}
.x3c{left:144.359979px;}
.x48{left:170.925000px;}
.x28{left:173.984979px;}
.x13{left:184.064979px;}
.x19{left:227.309979px;}
.x49{left:229.425000px;}
.x1a{left:232.094979px;}
.x6{left:266.009979px;}
.x8{left:278.429979px;}
.x10{left:283.319979px;}
.x42{left:293.040000px;}
.x7{left:308.699979px;}
.x39{left:355.709979px;}
.x38{left:357.914979px;}
.x3a{left:360.209979px;}
.x44{left:372.885000px;}
.x43{left:405.570000px;}
.xe{left:437.789979px;}
.xd{left:441.569979px;}
.x9{left:450.209979px;}
.xa{left:454.349979px;}
.x46{left:458.745000px;}
.xc{left:470.909979px;}
.xb{left:474.509979px;}
.xf{left:476.849979px;}
.x18{left:479.129979px;}
.x45{left:491.430000px;}
.x21{left:529.049979px;}
.x55{left:568.769979px;}
.x15{left:598.319979px;}
.x30{left:673.199979px;}
.x1c{left:674.534979px;}
.x25{left:685.799979px;}
.x14{left:696.389979px;}
.x32{left:717.224979px;}
.x33{left:719.669979px;}
.x4c{left:734.220000px;}
.x52{left:740.669979px;}
.x2c{left:746.459979px;}
.x2d{left:747.929979px;}
.x4a{left:758.849979px;}
.x54{left:783.389979px;}
.x3e{left:792.360000px;}
.x53{left:794.669979px;}
.x2{left:807.044979px;}
.x1f{left:840.269979px;}
.x4d{left:849.060000px;}
.x16{left:862.844979px;}
.x26{left:878.789979px;}
.x17{left:896.684979px;}
.x24{left:913.679979px;}
.x34{left:916.454979px;}
.x35{left:918.974979px;}
.x3{left:969.449979px;}
.x1e{left:1002.884979px;}
.x1d{left:1005.014979px;}
.x4e{left:1009.980000px;}
.x2e{left:1045.334979px;}
.x2f{left:1049.189979px;}
.x22{left:1057.169979px;}
.x36{left:1114.559979px;}
.x37{left:1118.129979px;}
.x59{left:1144.109979px;}
.x4f{left:1198.620000px;}
.x4{left:1238.609979px;}
.x4b{left:1327.859979px;}
@media print{
.v2{vertical-align:-26.240000pt;}
.v5{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.960000pt;}
.v3{vertical-align:13.696000pt;}
.v4{vertical-align:19.413333pt;}
.v1{vertical-align:37.493333pt;}
.ls20{letter-spacing:-0.326933pt;}
.ls27{letter-spacing:-0.272533pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.204267pt;}
.ls25{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.144533pt;}
.ls4{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.071467pt;}
.ls24{letter-spacing:-0.040960pt;}
.ls22{letter-spacing:-0.037867pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.126720pt;}
.ls2b{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.144533pt;}
.ls2a{letter-spacing:0.156267pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.249067pt;}
.ls1{letter-spacing:26.304000pt;}
.ls11{letter-spacing:26.336000pt;}
.ls19{letter-spacing:26.688000pt;}
.ls26{letter-spacing:26.976000pt;}
.ls23{letter-spacing:26.986667pt;}
.lsa{letter-spacing:28.341760pt;}
.ls10{letter-spacing:44.763392pt;}
.lsf{letter-spacing:44.864000pt;}
.ls13{letter-spacing:44.880725pt;}
.ls12{letter-spacing:44.981333pt;}
.ls1c{letter-spacing:52.856704pt;}
.ls1b{letter-spacing:78.003200pt;}
.ls18{letter-spacing:78.080000pt;}
.ls1d{letter-spacing:78.720000pt;}
.ls9{letter-spacing:82.867200pt;}
.ls8{letter-spacing:82.912000pt;}
.ls16{letter-spacing:82.973867pt;}
.ls14{letter-spacing:83.018667pt;}
.ls3{letter-spacing:86.720000pt;}
.ls29{letter-spacing:102.675200pt;}
.ls17{letter-spacing:102.720000pt;}
.lsd{letter-spacing:106.675200pt;}
.lse{letter-spacing:106.720000pt;}
.ws8{word-spacing:-57.047573pt;}
.ws1a{word-spacing:-53.504000pt;}
.wsb{word-spacing:-49.656960pt;}
.ws5{word-spacing:-49.512427pt;}
.ws6{word-spacing:-35.584000pt;}
.ws13{word-spacing:-34.160640pt;}
.wse{word-spacing:-29.807573pt;}
.ws7{word-spacing:-29.712640pt;}
.ws18{word-spacing:-29.440107pt;}
.wsc{word-spacing:-26.723584pt;}
.ws1{word-spacing:-26.688000pt;}
.ws1b{word-spacing:-26.656000pt;}
.ws16{word-spacing:-26.496000pt;}
.ws9{word-spacing:-23.698944pt;}
.wsa{word-spacing:-23.663360pt;}
.wsf{word-spacing:-22.240000pt;}
.ws11{word-spacing:-20.816640pt;}
.ws19{word-spacing:-0.789333pt;}
.wsd{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.096128pt;}
.ws15{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.129387pt;}
.ws17{word-spacing:12.576000pt;}
.ws10{word-spacing:95.199573pt;}
.ws12{word-spacing:699.210667pt;}
.ws2{word-spacing:2957.930667pt;}
._7{margin-left:-14.868480pt;}
._1{margin-left:-10.996480pt;}
._6{margin-left:-10.067200pt;}
._5{margin-left:-8.673280pt;}
._4{margin-left:-6.814720pt;}
._3{margin-left:-5.575680pt;}
._2{margin-left:-3.827627pt;}
._8{margin-left:-2.787840pt;}
._0{margin-left:-1.427627pt;}
._9{width:1.299627pt;}
._f{width:2.243840pt;}
._a{width:3.451307pt;}
._14{width:25.518507pt;}
._11{width:28.480000pt;}
._e{width:64.256000pt;}
._12{width:66.249813pt;}
._13{width:147.086507pt;}
._d{width:517.586773pt;}
._10{width:1376.542293pt;}
._b{width:2073.492907pt;}
._c{width:2105.212501pt;}
.fs3{font-size:48.000000pt;}
.fs11{font-size:58.880000pt;}
.fs9{font-size:71.040000pt;}
.fs6{font-size:74.880000pt;}
.fsd{font-size:80.000000pt;}
.fsc{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:96.128000pt;}
.fse{font-size:102.400000pt;}
.fs2{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsf{font-size:122.880000pt;}
.fs7{font-size:128.000000pt;}
.fs4{font-size:149.120000pt;}
.fs0{font-size:154.880000pt;}
.fsa{font-size:170.880000pt;}
.fs10{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:9.344000pt;}
.y61{bottom:15.552000pt;}
.y98{bottom:16.866667pt;}
.y7{bottom:22.688000pt;}
.yc0{bottom:26.944000pt;}
.y16{bottom:32.192000pt;}
.y3{bottom:32.992000pt;}
.y96{bottom:34.560000pt;}
.y32{bottom:35.616000pt;}
.y8b{bottom:37.952000pt;}
.ybf{bottom:44.544000pt;}
.ya4{bottom:45.760000pt;}
.yaf{bottom:48.064000pt;}
.y5f{bottom:51.296000pt;}
.y95{bottom:52.640000pt;}
.y34{bottom:55.200000pt;}
.ybe{bottom:63.296000pt;}
.y31{bottom:64.192000pt;}
.y6c{bottom:64.864000pt;}
.y8a{bottom:74.752000pt;}
.y41{bottom:76.128000pt;}
.yae{bottom:76.864000pt;}
.y94{bottom:77.186667pt;}
.ybd{bottom:80.896000pt;}
.y2{bottom:81.344000pt;}
.y5e{bottom:83.296000pt;}
.y33{bottom:87.200000pt;}
.y6b{bottom:90.496000pt;}
.y30{bottom:96.192000pt;}
.y8d{bottom:102.586667pt;}
.y66{bottom:104.288000pt;}
.y40{bottom:104.928000pt;}
.y4c{bottom:105.824000pt;}
.y9b{bottom:109.184000pt;}
.y89{bottom:111.584000pt;}
.y5d{bottom:115.296000pt;}
.ya5{bottom:117.373333pt;}
.ya1{bottom:117.413333pt;}
.ya3{bottom:117.506667pt;}
.yca{bottom:127.392000pt;}
.y1{bottom:129.504000pt;}
.y8e{bottom:130.720000pt;}
.y65{bottom:133.088000pt;}
.y3f{bottom:133.733333pt;}
.y4b{bottom:134.626667pt;}
.yba{bottom:137.533333pt;}
.y9a{bottom:137.986667pt;}
.y5c{bottom:147.293333pt;}
.y42{bottom:148.320000pt;}
.y88{bottom:148.386667pt;}
.yc9{bottom:156.226667pt;}
.y8f{bottom:158.853333pt;}
.y1c{bottom:161.253333pt;}
.y64{bottom:161.893333pt;}
.y3e{bottom:162.560000pt;}
.y4a{bottom:163.426667pt;}
.yb9{bottom:166.333333pt;}
.y99{bottom:166.786667pt;}
.yc{bottom:168.666667pt;}
.y5b{bottom:179.293333pt;}
.y78{bottom:181.986667pt;}
.yc8{bottom:185.026667pt;}
.y87{bottom:185.186667pt;}
.y90{bottom:186.973333pt;}
.y63{bottom:190.693333pt;}
.y3d{bottom:191.360000pt;}
.y49{bottom:192.253333pt;}
.ya2{bottom:194.080000pt;}
.yb{bottom:197.466667pt;}
.y26{bottom:198.493333pt;}
.y1b{bottom:199.653333pt;}
.y6{bottom:209.760000pt;}
.y8c{bottom:212.640000pt;}
.yc7{bottom:213.826667pt;}
.y91{bottom:215.066667pt;}
.y7a{bottom:219.386667pt;}
.y3c{bottom:220.160000pt;}
.y48{bottom:221.053333pt;}
.y86{bottom:223.906667pt;}
.ybc{bottom:230.173333pt;}
.y25{bottom:230.533333pt;}
.y2c{bottom:237.440000pt;}
.yf{bottom:238.213333pt;}
.yb8{bottom:239.933333pt;}
.y92{bottom:243.200000pt;}
.y51{bottom:246.333333pt;}
.y7b{bottom:251.653333pt;}
.ya0{bottom:253.760000pt;}
.y5{bottom:257.413333pt;}
.y73{bottom:258.306667pt;}
.y85{bottom:260.733333pt;}
.y29{bottom:261.213333pt;}
.y24{bottom:262.533333pt;}
.y76{bottom:264.226667pt;}
.ye{bottom:267.013333pt;}
.y93{bottom:271.333333pt;}
.y5a{bottom:271.586667pt;}
.y4d{bottom:272.773333pt;}
.y50{bottom:278.333333pt;}
.y79{bottom:284.573333pt;}
.y4{bottom:286.213333pt;}
.ybb{bottom:287.773333pt;}
.y72{bottom:292.866667pt;}
.y23{bottom:294.533333pt;}
.yd{bottom:295.813333pt;}
.y84{bottom:297.533333pt;}
.y75{bottom:298.786667pt;}
.y15{bottom:302.853333pt;}
.y97{bottom:304.160000pt;}
.yc6{bottom:304.546667pt;}
.y59{bottom:309.986667pt;}
.y77{bottom:312.666667pt;}
.y9f{bottom:314.786667pt;}
.y6f{bottom:314.853333pt;}
.yb7{bottom:315.493333pt;}
.y3b{bottom:319.613333pt;}
.y22{bottom:326.533333pt;}
.y71{bottom:327.453333pt;}
.y83{bottom:332.413333pt;}
.yc5{bottom:333.373333pt;}
.y74{bottom:336.066667pt;}
.ya{bottom:336.573333pt;}
.y58{bottom:348.226667pt;}
.y6e{bottom:349.413333pt;}
.y3a{bottom:351.613333pt;}
.yb6{bottom:352.293333pt;}
.y21{bottom:358.533333pt;}
.y70{bottom:363.840000pt;}
.y9{bottom:365.373333pt;}
.y82{bottom:369.213333pt;}
.y2b{bottom:370.626667pt;}
.y55{bottom:373.466667pt;}
.y4f{bottom:374.333333pt;}
.y2f{bottom:379.293333pt;}
.y47{bottom:380.000000pt;}
.y9e{bottom:381.573333pt;}
.y39{bottom:383.613333pt;}
.y57{bottom:386.626667pt;}
.yac{bottom:388.480000pt;}
.yb5{bottom:389.093333pt;}
.y6d{bottom:389.853333pt;}
.ycd{bottom:390.880000pt;}
.yc4{bottom:390.973333pt;}
.y13{bottom:391.706667pt;}
.y6a{bottom:392.933333pt;}
.y9d{bottom:403.973333pt;}
.y81{bottom:406.013333pt;}
.y4e{bottom:406.373333pt;}
.y54{bottom:411.866667pt;}
.y46{bottom:412.000000pt;}
.y2e{bottom:415.226667pt;}
.y38{bottom:415.613333pt;}
.yab{bottom:417.280000pt;}
.yc3{bottom:419.773333pt;}
.y12{bottom:420.506667pt;}
.y1a{bottom:421.306667pt;}
.y2a{bottom:422.466667pt;}
.y20{bottom:422.560000pt;}
.yb4{bottom:424.000000pt;}
.y56{bottom:425.760000pt;}
.y9c{bottom:426.373333pt;}
.y80{bottom:442.853333pt;}
.y45{bottom:444.000000pt;}
.yaa{bottom:446.080000pt;}
.y37{bottom:447.653333pt;}
.y11{bottom:449.306667pt;}
.y19{bottom:450.106667pt;}
.y53{bottom:453.693333pt;}
.y1f{bottom:454.560000pt;}
.ycc{bottom:459.266667pt;}
.y69{bottom:460.800000pt;}
.y7f{bottom:471.653333pt;}
.ya9{bottom:474.880000pt;}
.y44{bottom:476.000000pt;}
.yc2{bottom:477.413333pt;}
.y10{bottom:478.106667pt;}
.y62{bottom:478.746667pt;}
.y18{bottom:478.906667pt;}
.y36{bottom:479.653333pt;}
.y2d{bottom:481.253333pt;}
.y1e{bottom:486.560000pt;}
.y68{bottom:489.600000pt;}
.yb3{bottom:499.520000pt;}
.ya8{bottom:503.680000pt;}
.y43{bottom:508.026667pt;}
.y7e{bottom:508.453333pt;}
.yad{bottom:515.840000pt;}
.ycb{bottom:516.160000pt;}
.yb0{bottom:516.773333pt;}
.y67{bottom:518.400000pt;}
.y1d{bottom:518.560000pt;}
.y60{bottom:520.573333pt;}
.ya7{bottom:532.506667pt;}
.yb2{bottom:536.320000pt;}
.y17{bottom:536.546667pt;}
.y28{bottom:541.573333pt;}
.y35{bottom:543.653333pt;}
.y7d{bottom:545.253333pt;}
.y14{bottom:554.693333pt;}
.y52{bottom:556.186667pt;}
.ya6{bottom:561.306667pt;}
.yb1{bottom:571.226667pt;}
.y7c{bottom:576.293333pt;}
.y27{bottom:641.466667pt;}
.y8{bottom:646.533333pt;}
.h5{height:35.085938pt;}
.h27{height:43.441250pt;}
.h19{height:54.734062pt;}
.h9{height:56.854687pt;}
.h1c{height:58.476562pt;}
.h11{height:62.219062pt;}
.h10{height:62.312625pt;}
.h1d{height:63.984375pt;}
.h1a{height:64.006250pt;}
.h1e{height:64.069688pt;}
.h1b{height:64.102500pt;}
.h3{height:70.171875pt;}
.h7{height:70.265437pt;}
.h18{height:70.828125pt;}
.h2{height:72.187500pt;}
.h1f{height:72.283750pt;}
.h14{height:73.500000pt;}
.h15{height:73.598000pt;}
.h21{height:74.850000pt;}
.h4{height:78.124687pt;}
.hc{height:78.218250pt;}
.h12{height:78.855312pt;}
.hf{height:78.949750pt;}
.he{height:80.368750pt;}
.h16{height:80.465000pt;}
.h22{height:81.147500pt;}
.h25{height:89.820000pt;}
.h17{height:91.600833pt;}
.h24{height:92.400000pt;}
.h13{height:92.551313pt;}
.ha{height:93.562500pt;}
.hb{height:96.250000pt;}
.h6{height:108.636250pt;}
.h8{height:110.481146pt;}
.h1{height:112.832500pt;}
.hd{height:124.488750pt;}
.h26{height:144.375000pt;}
.h23{height:257.760000pt;}
.h20{height:338.240000pt;}
.h0{height:720.000000pt;}
.w3{width:102.240000pt;}
.w4{width:143.200000pt;}
.w6{width:146.240000pt;}
.w5{width:167.840000pt;}
.w2{width:495.360000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x57{left:9.599981pt;}
.x1b{left:14.335981pt;}
.x58{left:20.063981pt;}
.x23{left:24.223981pt;}
.x2b{left:25.599981pt;}
.x47{left:36.826667pt;}
.x50{left:41.823981pt;}
.x1{left:45.375981pt;}
.x5{left:51.391981pt;}
.x3b{left:54.847981pt;}
.x40{left:57.213333pt;}
.x3f{left:69.093333pt;}
.x3d{left:79.935981pt;}
.x2a{left:85.503981pt;}
.x51{left:89.823981pt;}
.x11{left:95.295981pt;}
.x12{left:96.415981pt;}
.x41{left:111.386667pt;}
.x31{left:116.063981pt;}
.x56{left:117.791981pt;}
.x29{left:119.455981pt;}
.x27{left:124.543981pt;}
.x20{left:127.359981pt;}
.x3c{left:128.319981pt;}
.x48{left:151.933333pt;}
.x28{left:154.653314pt;}
.x13{left:163.613314pt;}
.x19{left:202.053314pt;}
.x49{left:203.933333pt;}
.x1a{left:206.306648pt;}
.x6{left:236.453314pt;}
.x8{left:247.493314pt;}
.x10{left:251.839981pt;}
.x42{left:260.480000pt;}
.x7{left:274.399981pt;}
.x39{left:316.186648pt;}
.x38{left:318.146648pt;}
.x3a{left:320.186648pt;}
.x44{left:331.453333pt;}
.x43{left:360.506667pt;}
.xe{left:389.146648pt;}
.xd{left:392.506648pt;}
.x9{left:400.186648pt;}
.xa{left:403.866648pt;}
.x46{left:407.773333pt;}
.xc{left:418.586648pt;}
.xb{left:421.786648pt;}
.xf{left:423.866648pt;}
.x18{left:425.893314pt;}
.x45{left:436.826667pt;}
.x21{left:470.266648pt;}
.x55{left:505.573314pt;}
.x15{left:531.839981pt;}
.x30{left:598.399981pt;}
.x1c{left:599.586648pt;}
.x25{left:609.599981pt;}
.x14{left:619.013314pt;}
.x32{left:637.533314pt;}
.x33{left:639.706648pt;}
.x4c{left:652.640000pt;}
.x52{left:658.373314pt;}
.x2c{left:663.519981pt;}
.x2d{left:664.826648pt;}
.x4a{left:674.533314pt;}
.x54{left:696.346648pt;}
.x3e{left:704.320000pt;}
.x53{left:706.373314pt;}
.x2{left:717.373314pt;}
.x1f{left:746.906648pt;}
.x4d{left:754.720000pt;}
.x16{left:766.973314pt;}
.x26{left:781.146648pt;}
.x17{left:797.053314pt;}
.x24{left:812.159981pt;}
.x34{left:814.626648pt;}
.x35{left:816.866648pt;}
.x3{left:861.733314pt;}
.x1e{left:891.453314pt;}
.x1d{left:893.346648pt;}
.x4e{left:897.760000pt;}
.x2e{left:929.186648pt;}
.x2f{left:932.613314pt;}
.x22{left:939.706648pt;}
.x36{left:990.719981pt;}
.x37{left:993.893314pt;}
.x59{left:1016.986648pt;}
.x4f{left:1065.440000pt;}
.x4{left:1100.986648pt;}
.x4b{left:1180.319981pt;}
}




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