
    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_531664b80a7b3be144074056.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_67f5ffd3e1b69f01abed4991.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_77342ecf2f6ebf306eeabe92.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_111b0e022fb91b6c37c1a9b1.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_0a07f3fa0a62e841ffd23d4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_f14f38520ded444574274eff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dcf0a067687497d1bdc82e04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.220000px;}
.ls4{letter-spacing:-3.300000px;}
.ls3{letter-spacing:-2.160000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.858000px;}
.ls6{letter-spacing:3.564000px;}
.ls5{letter-spacing:6.138000px;}
.ls0{letter-spacing:56.160000px;}
.ls2{letter-spacing:1967.580000px;}
.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;}
}
.ws0{word-spacing:-164.160000px;}
.ws23{word-spacing:-18.348000px;}
.ws2{word-spacing:-16.680000px;}
.ws9{word-spacing:-13.380000px;}
.ws56{word-spacing:-4.818000px;}
.wse{word-spacing:-4.620000px;}
.ws50{word-spacing:-4.488000px;}
.ws42{word-spacing:-3.696000px;}
.ws40{word-spacing:-3.498000px;}
.ws34{word-spacing:-3.432000px;}
.ws11{word-spacing:-3.234000px;}
.ws48{word-spacing:-3.102000px;}
.ws41{word-spacing:-2.970000px;}
.ws25{word-spacing:-2.574000px;}
.wsc{word-spacing:-2.100000px;}
.ws33{word-spacing:-2.046000px;}
.ws22{word-spacing:-1.914000px;}
.ws13{word-spacing:-1.518000px;}
.ws4a{word-spacing:-1.386000px;}
.ws3a{word-spacing:-1.122000px;}
.ws58{word-spacing:-0.924000px;}
.wsa{word-spacing:-0.900000px;}
.ws43{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.726000px;}
.ws1b{word-spacing:-0.660000px;}
.ws4b{word-spacing:-0.594000px;}
.ws55{word-spacing:-0.528000px;}
.ws26{word-spacing:-0.132000px;}
.ws2b{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws3f{word-spacing:0.462000px;}
.ws1d{word-spacing:0.528000px;}
.ws54{word-spacing:0.594000px;}
.ws16{word-spacing:0.792000px;}
.ws47{word-spacing:0.858000px;}
.ws51{word-spacing:0.924000px;}
.ws2d{word-spacing:0.990000px;}
.ws49{word-spacing:1.122000px;}
.ws1a{word-spacing:1.254000px;}
.ws28{word-spacing:1.386000px;}
.ws46{word-spacing:1.452000px;}
.ws21{word-spacing:1.914000px;}
.ws5{word-spacing:2.160000px;}
.ws4e{word-spacing:2.574000px;}
.ws31{word-spacing:3.036000px;}
.ws12{word-spacing:3.234000px;}
.ws2f{word-spacing:3.366000px;}
.ws44{word-spacing:3.432000px;}
.ws15{word-spacing:3.630000px;}
.ws2a{word-spacing:3.828000px;}
.ws3d{word-spacing:3.894000px;}
.ws24{word-spacing:4.026000px;}
.ws3b{word-spacing:4.092000px;}
.wsb{word-spacing:4.320000px;}
.ws27{word-spacing:4.554000px;}
.ws2e{word-spacing:4.818000px;}
.ws45{word-spacing:4.884000px;}
.ws3c{word-spacing:4.950000px;}
.ws18{word-spacing:5.016000px;}
.ws36{word-spacing:5.280000px;}
.ws29{word-spacing:5.544000px;}
.ws1f{word-spacing:5.610000px;}
.ws19{word-spacing:5.808000px;}
.ws38{word-spacing:5.874000px;}
.ws3{word-spacing:6.060000px;}
.ws30{word-spacing:6.138000px;}
.ws4d{word-spacing:6.270000px;}
.ws1c{word-spacing:7.260000px;}
.ws1e{word-spacing:7.590000px;}
.ws4f{word-spacing:7.920000px;}
.ws4c{word-spacing:8.382000px;}
.ws35{word-spacing:8.514000px;}
.ws52{word-spacing:8.580000px;}
.ws3e{word-spacing:8.844000px;}
.ws57{word-spacing:9.108000px;}
.ws20{word-spacing:9.372000px;}
.ws53{word-spacing:9.570000px;}
.ws2c{word-spacing:10.296000px;}
.ws14{word-spacing:11.814000px;}
.ws6{word-spacing:12.528000px;}
.ws39{word-spacing:13.200000px;}
.ws37{word-spacing:13.266000px;}
.ws10{word-spacing:14.190000px;}
.ws7{word-spacing:19.872000px;}
.ws4{word-spacing:20.820000px;}
.ws17{word-spacing:21.912000px;}
.ws8{word-spacing:35.370000px;}
.wsf{word-spacing:1934.760000px;}
._3{margin-left:-30.240000px;}
._18{margin-left:-14.400000px;}
._0{margin-left:-7.884000px;}
._5{margin-left:-6.660000px;}
._8{margin-left:-5.400000px;}
._1{margin-left:-4.104000px;}
._25{margin-left:-3.096000px;}
._2{margin-left:-2.052000px;}
._27{margin-left:-1.038000px;}
._14{width:1.080000px;}
._a{width:2.106000px;}
._22{width:3.300000px;}
._24{width:4.620000px;}
._6{width:5.724000px;}
._1a{width:6.780000px;}
._28{width:7.854000px;}
._29{width:9.306000px;}
._9{width:10.368000px;}
._26{width:13.068000px;}
._15{width:14.400000px;}
._2a{width:15.408000px;}
._b{width:33.210000px;}
._c{width:38.520000px;}
._10{width:41.640000px;}
._16{width:50.760000px;}
._17{width:51.780000px;}
._7{width:55.920000px;}
._1d{width:62.160000px;}
._12{width:79.080000px;}
._11{width:107.700000px;}
._e{width:109.020000px;}
._1e{width:113.280000px;}
._19{width:122.940000px;}
._20{width:135.540000px;}
._1c{width:171.360000px;}
._f{width:178.980000px;}
._1f{width:182.700000px;}
._13{width:183.780000px;}
._21{width:187.140000px;}
._1b{width:191.160000px;}
._d{width:199.320000px;}
._4{width:2125.398600px;}
._23{width:2126.694600px;}
.fc5{color:rgb(52,128,103);}
.fc6{color:rgb(101,98,99);}
.fc4{color:rgb(90,87,88);}
.fc3{color:rgb(59,75,167);}
.fc2{color:rgb(168,36,35);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:56.561850px;}
.y1a{bottom:57.116850px;}
.y95{bottom:107.226150px;}
.y4d{bottom:107.663100px;}
.ycb{bottom:111.703650px;}
.y16{bottom:120.233100px;}
.y94{bottom:123.726150px;}
.y1{bottom:128.099100px;}
.yca{bottom:128.203650px;}
.y4{bottom:128.987850px;}
.y3{bottom:129.162150px;}
.y5{bottom:131.111850px;}
.y93{bottom:140.226150px;}
.y15{bottom:143.738100px;}
.yc9{bottom:144.703650px;}
.yf8{bottom:148.212150px;}
.y4c{bottom:149.183100px;}
.y5f{bottom:150.668100px;}
.y92{bottom:156.726150px;}
.y14{bottom:158.738100px;}
.yf7{bottom:164.712150px;}
.yc8{bottom:178.215150px;}
.yf6{bottom:181.212150px;}
.y91{bottom:181.723650px;}
.y13{bottom:182.243100px;}
.y5e{bottom:184.508100px;}
.y4b{bottom:184.703100px;}
.y4a{bottom:186.203100px;}
.yc7{bottom:196.216650px;}
.yf5{bottom:197.712150px;}
.y90{bottom:198.223650px;}
.y12{bottom:205.748100px;}
.y49{bottom:208.958100px;}
.yf4{bottom:214.212150px;}
.yc6{bottom:214.218150px;}
.y8f{bottom:214.723650px;}
.y5d{bottom:228.443100px;}
.y48{bottom:229.208100px;}
.y11{bottom:229.253100px;}
.yf3{bottom:230.712150px;}
.y8e{bottom:231.223650px;}
.yc5{bottom:232.219650px;}
.yf2{bottom:247.212150px;}
.yc4{bottom:250.221150px;}
.y10{bottom:252.758100px;}
.y47{bottom:257.963100px;}
.yf1{bottom:263.712150px;}
.yc3{bottom:268.222650px;}
.yf{bottom:276.263100px;}
.y8d{bottom:277.489650px;}
.y46{bottom:278.213100px;}
.y5c{bottom:278.468100px;}
.yf0{bottom:280.212150px;}
.yc2{bottom:286.224150px;}
.yef{bottom:296.712150px;}
.y45{bottom:299.483100px;}
.ye{bottom:299.768100px;}
.yc1{bottom:304.225650px;}
.yee{bottom:313.212150px;}
.yd{bottom:314.768100px;}
.y44{bottom:319.733100px;}
.yc0{bottom:322.227150px;}
.y5b{bottom:322.688100px;}
.yed{bottom:329.712150px;}
.yc{bottom:338.273100px;}
.y43{bottom:341.003100px;}
.y8c{bottom:341.757150px;}
.yec{bottom:346.212150px;}
.ybf{bottom:348.726150px;}
.y42{bottom:361.253100px;}
.y41{bottom:361.268100px;}
.yb{bottom:361.778100px;}
.yeb{bottom:362.712150px;}
.y5a{bottom:363.248100px;}
.ybe{bottom:375.225150px;}
.y40{bottom:382.538100px;}
.ya{bottom:385.283100px;}
.yea{bottom:387.709650px;}
.ybd{bottom:393.226650px;}
.y8b{bottom:396.768150px;}
.y59{bottom:402.773100px;}
.y3f{bottom:402.788100px;}
.ye9{bottom:404.209650px;}
.y9{bottom:408.788100px;}
.ybc{bottom:411.228150px;}
.y8a{bottom:413.268150px;}
.y3e{bottom:417.788100px;}
.ye8{bottom:420.709650px;}
.ybb{bottom:429.229650px;}
.y89{bottom:429.768150px;}
.ye7{bottom:437.209650px;}
.y3d{bottom:439.058100px;}
.y88{bottom:446.268150px;}
.ye6{bottom:453.709650px;}
.yba{bottom:455.728650px;}
.y8{bottom:455.798100px;}
.y3c{bottom:459.308100px;}
.y58{bottom:459.818100px;}
.y87{bottom:462.768150px;}
.ye5{bottom:470.209650px;}
.yb9{bottom:473.730150px;}
.y86{bottom:479.268150px;}
.y3b{bottom:480.578100px;}
.ye4{bottom:486.709650px;}
.yb8{bottom:491.731650px;}
.y85{bottom:495.768150px;}
.y3a{bottom:500.828100px;}
.y57{bottom:501.338100px;}
.ye3{bottom:503.209650px;}
.yb7{bottom:509.733150px;}
.y84{bottom:512.268150px;}
.ye2{bottom:519.709650px;}
.y39{bottom:522.098100px;}
.yb6{bottom:527.734650px;}
.ye1{bottom:536.209650px;}
.y83{bottom:537.265650px;}
.y38{bottom:542.348100px;}
.y56{bottom:542.378100px;}
.yb5{bottom:545.736150px;}
.ye0{bottom:552.709650px;}
.y82{bottom:553.765650px;}
.y37{bottom:563.618100px;}
.yb4{bottom:563.737650px;}
.ydf{bottom:569.209650px;}
.y81{bottom:570.265650px;}
.y36{bottom:583.868100px;}
.y55{bottom:584.183100px;}
.yde{bottom:585.709650px;}
.y80{bottom:586.765650px;}
.yb3{bottom:590.236650px;}
.y35{bottom:598.868100px;}
.ydd{bottom:602.209650px;}
.y7f{bottom:603.265650px;}
.yb2{bottom:608.238150px;}
.ydc{bottom:618.709650px;}
.y7e{bottom:619.765650px;}
.y34{bottom:620.138100px;}
.yb1{bottom:626.239650px;}
.y7d{bottom:636.265650px;}
.y33{bottom:640.388100px;}
.y54{bottom:640.883100px;}
.ydb{bottom:643.707150px;}
.yb0{bottom:644.241150px;}
.y7c{bottom:652.765650px;}
.yda{bottom:660.207150px;}
.y32{bottom:661.658100px;}
.yaf{bottom:662.242650px;}
.y7b{bottom:669.265650px;}
.yd9{bottom:676.707150px;}
.yae{bottom:680.244150px;}
.y31{bottom:681.908100px;}
.y53{bottom:682.238100px;}
.y7a{bottom:685.765650px;}
.yd8{bottom:693.207150px;}
.yad{bottom:698.245650px;}
.y79{bottom:702.265650px;}
.y30{bottom:703.178100px;}
.yd7{bottom:709.707150px;}
.yac{bottom:716.247150px;}
.y78{bottom:718.765650px;}
.y2f{bottom:723.428100px;}
.y52{bottom:723.788100px;}
.yd6{bottom:726.207150px;}
.yab{bottom:734.248650px;}
.y77{bottom:735.265650px;}
.y2e{bottom:738.428100px;}
.yd5{bottom:742.707150px;}
.y76{bottom:751.765650px;}
.yaa{bottom:752.250150px;}
.yd4{bottom:759.207150px;}
.y2d{bottom:759.698100px;}
.y75{bottom:768.265650px;}
.ya9{bottom:770.251650px;}
.yd3{bottom:775.707150px;}
.y2c{bottom:779.948100px;}
.y51{bottom:780.188100px;}
.y74{bottom:784.765650px;}
.ya8{bottom:788.253150px;}
.yd2{bottom:792.207150px;}
.y73{bottom:801.265650px;}
.ya7{bottom:806.254650px;}
.y2b{bottom:808.703100px;}
.yd1{bottom:808.707150px;}
.y72{bottom:817.765650px;}
.ya6{bottom:824.256150px;}
.y4e{bottom:827.663100px;}
.y2a{bottom:828.953100px;}
.y71{bottom:834.265650px;}
.ya5{bottom:842.257650px;}
.y70{bottom:850.765650px;}
.yd0{bottom:854.973150px;}
.y29{bottom:857.708100px;}
.y6f{bottom:867.265650px;}
.ya4{bottom:868.756650px;}
.y28{bottom:872.708100px;}
.y6e{bottom:883.765650px;}
.ya3{bottom:886.758150px;}
.y27{bottom:887.708100px;}
.y6d{bottom:900.265650px;}
.y26{bottom:902.708100px;}
.ya2{bottom:904.759650px;}
.y6c{bottom:916.765650px;}
.ycf{bottom:919.240650px;}
.ya1{bottom:922.761150px;}
.y25{bottom:930.458100px;}
.y1c{bottom:930.608100px;}
.y6b{bottom:933.265650px;}
.ya0{bottom:940.762650px;}
.y6a{bottom:949.765650px;}
.y9f{bottom:958.764150px;}
.y24{bottom:959.213100px;}
.y69{bottom:966.265650px;}
.y23{bottom:974.213100px;}
.yce{bottom:974.251650px;}
.y9e{bottom:976.765650px;}
.y68{bottom:982.765650px;}
.ycd{bottom:990.751650px;}
.y9d{bottom:994.767150px;}
.y67{bottom:999.265650px;}
.y1b{bottom:1001.048100px;}
.y22{bottom:1001.963100px;}
.y9c{bottom:1012.768650px;}
.y66{bottom:1015.765650px;}
.ycc{bottom:1024.263150px;}
.y9b{bottom:1030.770150px;}
.y21{bottom:1035.998100px;}
.y50{bottom:1036.238100px;}
.y65{bottom:1040.763150px;}
.y64{bottom:1057.263150px;}
.y20{bottom:1057.268100px;}
.y9a{bottom:1057.269150px;}
.y2{bottom:1073.213700px;}
.y63{bottom:1073.763150px;}
.y99{bottom:1073.769150px;}
.y4f{bottom:1076.693100px;}
.y1f{bottom:1077.518100px;}
.y19{bottom:1086.872100px;}
.y62{bottom:1090.263150px;}
.y98{bottom:1090.269150px;}
.y61{bottom:1106.763150px;}
.y97{bottom:1106.769150px;}
.y18{bottom:1110.375600px;}
.y1e{bottom:1119.038100px;}
.y60{bottom:1123.263150px;}
.y96{bottom:1123.269150px;}
.y17{bottom:1125.374100px;}
.y1d{bottom:1157.318100px;}
.y6{bottom:1201.924650px;}
.hb{height:45.000000px;}
.ha{height:48.410156px;}
.h9{height:48.752930px;}
.h8{height:53.789062px;}
.h7{height:54.169922px;}
.h6{height:56.009062px;}
.hc{height:59.167969px;}
.h5{height:59.586914px;}
.h2{height:97.505859px;}
.h4{height:130.007812px;}
.h3{height:300.164062px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:39.330600px;}
.x7{left:85.039350px;}
.x5{left:88.000800px;}
.x4{left:91.204800px;}
.x11{left:119.062350px;}
.xa{left:127.559100px;}
.x10{left:162.473250px;}
.x14{left:170.079450px;}
.x3{left:199.842450px;}
.x1{left:203.031450px;}
.x9{left:208.084350px;}
.x12{left:278.204850px;}
.xc{left:289.140300px;}
.x6{left:389.055150px;}
.x2{left:395.433150px;}
.xf{left:406.268250px;}
.x15{left:419.741100px;}
.xd{left:690.802950px;}
.xe{left:773.858250px;}
.x13{left:834.016800px;}
.xb{left:842.205300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.973333pt;}
.ls4{letter-spacing:-2.933333pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.762667pt;}
.ls6{letter-spacing:3.168000pt;}
.ls5{letter-spacing:5.456000pt;}
.ls0{letter-spacing:49.920000pt;}
.ls2{letter-spacing:1748.960000pt;}
.ws0{word-spacing:-145.920000pt;}
.ws23{word-spacing:-16.309333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws9{word-spacing:-11.893333pt;}
.ws56{word-spacing:-4.282667pt;}
.wse{word-spacing:-4.106667pt;}
.ws50{word-spacing:-3.989333pt;}
.ws42{word-spacing:-3.285333pt;}
.ws40{word-spacing:-3.109333pt;}
.ws34{word-spacing:-3.050667pt;}
.ws11{word-spacing:-2.874667pt;}
.ws48{word-spacing:-2.757333pt;}
.ws41{word-spacing:-2.640000pt;}
.ws25{word-spacing:-2.288000pt;}
.wsc{word-spacing:-1.866667pt;}
.ws33{word-spacing:-1.818667pt;}
.ws22{word-spacing:-1.701333pt;}
.ws13{word-spacing:-1.349333pt;}
.ws4a{word-spacing:-1.232000pt;}
.ws3a{word-spacing:-0.997333pt;}
.ws58{word-spacing:-0.821333pt;}
.wsa{word-spacing:-0.800000pt;}
.ws43{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.645333pt;}
.ws1b{word-spacing:-0.586667pt;}
.ws4b{word-spacing:-0.528000pt;}
.ws55{word-spacing:-0.469333pt;}
.ws26{word-spacing:-0.117333pt;}
.ws2b{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.410667pt;}
.ws1d{word-spacing:0.469333pt;}
.ws54{word-spacing:0.528000pt;}
.ws16{word-spacing:0.704000pt;}
.ws47{word-spacing:0.762667pt;}
.ws51{word-spacing:0.821333pt;}
.ws2d{word-spacing:0.880000pt;}
.ws49{word-spacing:0.997333pt;}
.ws1a{word-spacing:1.114667pt;}
.ws28{word-spacing:1.232000pt;}
.ws46{word-spacing:1.290667pt;}
.ws21{word-spacing:1.701333pt;}
.ws5{word-spacing:1.920000pt;}
.ws4e{word-spacing:2.288000pt;}
.ws31{word-spacing:2.698667pt;}
.ws12{word-spacing:2.874667pt;}
.ws2f{word-spacing:2.992000pt;}
.ws44{word-spacing:3.050667pt;}
.ws15{word-spacing:3.226667pt;}
.ws2a{word-spacing:3.402667pt;}
.ws3d{word-spacing:3.461333pt;}
.ws24{word-spacing:3.578667pt;}
.ws3b{word-spacing:3.637333pt;}
.wsb{word-spacing:3.840000pt;}
.ws27{word-spacing:4.048000pt;}
.ws2e{word-spacing:4.282667pt;}
.ws45{word-spacing:4.341333pt;}
.ws3c{word-spacing:4.400000pt;}
.ws18{word-spacing:4.458667pt;}
.ws36{word-spacing:4.693333pt;}
.ws29{word-spacing:4.928000pt;}
.ws1f{word-spacing:4.986667pt;}
.ws19{word-spacing:5.162667pt;}
.ws38{word-spacing:5.221333pt;}
.ws3{word-spacing:5.386667pt;}
.ws30{word-spacing:5.456000pt;}
.ws4d{word-spacing:5.573333pt;}
.ws1c{word-spacing:6.453333pt;}
.ws1e{word-spacing:6.746667pt;}
.ws4f{word-spacing:7.040000pt;}
.ws4c{word-spacing:7.450667pt;}
.ws35{word-spacing:7.568000pt;}
.ws52{word-spacing:7.626667pt;}
.ws3e{word-spacing:7.861333pt;}
.ws57{word-spacing:8.096000pt;}
.ws20{word-spacing:8.330667pt;}
.ws53{word-spacing:8.506667pt;}
.ws2c{word-spacing:9.152000pt;}
.ws14{word-spacing:10.501333pt;}
.ws6{word-spacing:11.136000pt;}
.ws39{word-spacing:11.733333pt;}
.ws37{word-spacing:11.792000pt;}
.ws10{word-spacing:12.613333pt;}
.ws7{word-spacing:17.664000pt;}
.ws4{word-spacing:18.506667pt;}
.ws17{word-spacing:19.477333pt;}
.ws8{word-spacing:31.440000pt;}
.wsf{word-spacing:1719.786667pt;}
._3{margin-left:-26.880000pt;}
._18{margin-left:-12.800000pt;}
._0{margin-left:-7.008000pt;}
._5{margin-left:-5.920000pt;}
._8{margin-left:-4.800000pt;}
._1{margin-left:-3.648000pt;}
._25{margin-left:-2.752000pt;}
._2{margin-left:-1.824000pt;}
._27{margin-left:-0.922667pt;}
._14{width:0.960000pt;}
._a{width:1.872000pt;}
._22{width:2.933333pt;}
._24{width:4.106667pt;}
._6{width:5.088000pt;}
._1a{width:6.026667pt;}
._28{width:6.981333pt;}
._29{width:8.272000pt;}
._9{width:9.216000pt;}
._26{width:11.616000pt;}
._15{width:12.800000pt;}
._2a{width:13.696000pt;}
._b{width:29.520000pt;}
._c{width:34.240000pt;}
._10{width:37.013333pt;}
._16{width:45.120000pt;}
._17{width:46.026667pt;}
._7{width:49.706667pt;}
._1d{width:55.253333pt;}
._12{width:70.293333pt;}
._11{width:95.733333pt;}
._e{width:96.906667pt;}
._1e{width:100.693333pt;}
._19{width:109.280000pt;}
._20{width:120.480000pt;}
._1c{width:152.320000pt;}
._f{width:159.093333pt;}
._1f{width:162.400000pt;}
._13{width:163.360000pt;}
._21{width:166.346667pt;}
._1b{width:169.920000pt;}
._d{width:177.173333pt;}
._4{width:1889.243200pt;}
._23{width:1890.395200pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:50.277200pt;}
.y1a{bottom:50.770533pt;}
.y95{bottom:95.312133pt;}
.y4d{bottom:95.700533pt;}
.ycb{bottom:99.292133pt;}
.y16{bottom:106.873867pt;}
.y94{bottom:109.978800pt;}
.y1{bottom:113.865867pt;}
.yca{bottom:113.958800pt;}
.y4{bottom:114.655867pt;}
.y3{bottom:114.810800pt;}
.y5{bottom:116.543867pt;}
.y93{bottom:124.645467pt;}
.y15{bottom:127.767200pt;}
.yc9{bottom:128.625467pt;}
.yf8{bottom:131.744133pt;}
.y4c{bottom:132.607200pt;}
.y5f{bottom:133.927200pt;}
.y92{bottom:139.312133pt;}
.y14{bottom:141.100533pt;}
.yf7{bottom:146.410800pt;}
.yc8{bottom:158.413467pt;}
.yf6{bottom:161.077467pt;}
.y91{bottom:161.532133pt;}
.y13{bottom:161.993867pt;}
.y5e{bottom:164.007200pt;}
.y4b{bottom:164.180533pt;}
.y4a{bottom:165.513867pt;}
.yc7{bottom:174.414800pt;}
.yf5{bottom:175.744133pt;}
.y90{bottom:176.198800pt;}
.y12{bottom:182.887200pt;}
.y49{bottom:185.740533pt;}
.yf4{bottom:190.410800pt;}
.yc6{bottom:190.416133pt;}
.y8f{bottom:190.865467pt;}
.y5d{bottom:203.060533pt;}
.y48{bottom:203.740533pt;}
.y11{bottom:203.780533pt;}
.yf3{bottom:205.077467pt;}
.y8e{bottom:205.532133pt;}
.yc5{bottom:206.417467pt;}
.yf2{bottom:219.744133pt;}
.yc4{bottom:222.418800pt;}
.y10{bottom:224.673867pt;}
.y47{bottom:229.300533pt;}
.yf1{bottom:234.410800pt;}
.yc3{bottom:238.420133pt;}
.yf{bottom:245.567200pt;}
.y8d{bottom:246.657467pt;}
.y46{bottom:247.300533pt;}
.y5c{bottom:247.527200pt;}
.yf0{bottom:249.077467pt;}
.yc2{bottom:254.421467pt;}
.yef{bottom:263.744133pt;}
.y45{bottom:266.207200pt;}
.ye{bottom:266.460533pt;}
.yc1{bottom:270.422800pt;}
.yee{bottom:278.410800pt;}
.yd{bottom:279.793867pt;}
.y44{bottom:284.207200pt;}
.yc0{bottom:286.424133pt;}
.y5b{bottom:286.833867pt;}
.yed{bottom:293.077467pt;}
.yc{bottom:300.687200pt;}
.y43{bottom:303.113867pt;}
.y8c{bottom:303.784133pt;}
.yec{bottom:307.744133pt;}
.ybf{bottom:309.978800pt;}
.y42{bottom:321.113867pt;}
.y41{bottom:321.127200pt;}
.yb{bottom:321.580533pt;}
.yeb{bottom:322.410800pt;}
.y5a{bottom:322.887200pt;}
.ybe{bottom:333.533467pt;}
.y40{bottom:340.033867pt;}
.ya{bottom:342.473867pt;}
.yea{bottom:344.630800pt;}
.ybd{bottom:349.534800pt;}
.y8b{bottom:352.682800pt;}
.y59{bottom:358.020533pt;}
.y3f{bottom:358.033867pt;}
.ye9{bottom:359.297467pt;}
.y9{bottom:363.367200pt;}
.ybc{bottom:365.536133pt;}
.y8a{bottom:367.349467pt;}
.y3e{bottom:371.367200pt;}
.ye8{bottom:373.964133pt;}
.ybb{bottom:381.537467pt;}
.y89{bottom:382.016133pt;}
.ye7{bottom:388.630800pt;}
.y3d{bottom:390.273867pt;}
.y88{bottom:396.682800pt;}
.ye6{bottom:403.297467pt;}
.yba{bottom:405.092133pt;}
.y8{bottom:405.153867pt;}
.y3c{bottom:408.273867pt;}
.y58{bottom:408.727200pt;}
.y87{bottom:411.349467pt;}
.ye5{bottom:417.964133pt;}
.yb9{bottom:421.093467pt;}
.y86{bottom:426.016133pt;}
.y3b{bottom:427.180533pt;}
.ye4{bottom:432.630800pt;}
.yb8{bottom:437.094800pt;}
.y85{bottom:440.682800pt;}
.y3a{bottom:445.180533pt;}
.y57{bottom:445.633867pt;}
.ye3{bottom:447.297467pt;}
.yb7{bottom:453.096133pt;}
.y84{bottom:455.349467pt;}
.ye2{bottom:461.964133pt;}
.y39{bottom:464.087200pt;}
.yb6{bottom:469.097467pt;}
.ye1{bottom:476.630800pt;}
.y83{bottom:477.569467pt;}
.y38{bottom:482.087200pt;}
.y56{bottom:482.113867pt;}
.yb5{bottom:485.098800pt;}
.ye0{bottom:491.297467pt;}
.y82{bottom:492.236133pt;}
.y37{bottom:500.993867pt;}
.yb4{bottom:501.100133pt;}
.ydf{bottom:505.964133pt;}
.y81{bottom:506.902800pt;}
.y36{bottom:518.993867pt;}
.y55{bottom:519.273867pt;}
.yde{bottom:520.630800pt;}
.y80{bottom:521.569467pt;}
.yb3{bottom:524.654800pt;}
.y35{bottom:532.327200pt;}
.ydd{bottom:535.297467pt;}
.y7f{bottom:536.236133pt;}
.yb2{bottom:540.656133pt;}
.ydc{bottom:549.964133pt;}
.y7e{bottom:550.902800pt;}
.y34{bottom:551.233867pt;}
.yb1{bottom:556.657467pt;}
.y7d{bottom:565.569467pt;}
.y33{bottom:569.233867pt;}
.y54{bottom:569.673867pt;}
.ydb{bottom:572.184133pt;}
.yb0{bottom:572.658800pt;}
.y7c{bottom:580.236133pt;}
.yda{bottom:586.850800pt;}
.y32{bottom:588.140533pt;}
.yaf{bottom:588.660133pt;}
.y7b{bottom:594.902800pt;}
.yd9{bottom:601.517467pt;}
.yae{bottom:604.661467pt;}
.y31{bottom:606.140533pt;}
.y53{bottom:606.433867pt;}
.y7a{bottom:609.569467pt;}
.yd8{bottom:616.184133pt;}
.yad{bottom:620.662800pt;}
.y79{bottom:624.236133pt;}
.y30{bottom:625.047200pt;}
.yd7{bottom:630.850800pt;}
.yac{bottom:636.664133pt;}
.y78{bottom:638.902800pt;}
.y2f{bottom:643.047200pt;}
.y52{bottom:643.367200pt;}
.yd6{bottom:645.517467pt;}
.yab{bottom:652.665467pt;}
.y77{bottom:653.569467pt;}
.y2e{bottom:656.380533pt;}
.yd5{bottom:660.184133pt;}
.y76{bottom:668.236133pt;}
.yaa{bottom:668.666800pt;}
.yd4{bottom:674.850800pt;}
.y2d{bottom:675.287200pt;}
.y75{bottom:682.902800pt;}
.ya9{bottom:684.668133pt;}
.yd3{bottom:689.517467pt;}
.y2c{bottom:693.287200pt;}
.y51{bottom:693.500533pt;}
.y74{bottom:697.569467pt;}
.ya8{bottom:700.669467pt;}
.yd2{bottom:704.184133pt;}
.y73{bottom:712.236133pt;}
.ya7{bottom:716.670800pt;}
.y2b{bottom:718.847200pt;}
.yd1{bottom:718.850800pt;}
.y72{bottom:726.902800pt;}
.ya6{bottom:732.672133pt;}
.y4e{bottom:735.700533pt;}
.y2a{bottom:736.847200pt;}
.y71{bottom:741.569467pt;}
.ya5{bottom:748.673467pt;}
.y70{bottom:756.236133pt;}
.yd0{bottom:759.976133pt;}
.y29{bottom:762.407200pt;}
.y6f{bottom:770.902800pt;}
.ya4{bottom:772.228133pt;}
.y28{bottom:775.740533pt;}
.y6e{bottom:785.569467pt;}
.ya3{bottom:788.229467pt;}
.y27{bottom:789.073867pt;}
.y6d{bottom:800.236133pt;}
.y26{bottom:802.407200pt;}
.ya2{bottom:804.230800pt;}
.y6c{bottom:814.902800pt;}
.ycf{bottom:817.102800pt;}
.ya1{bottom:820.232133pt;}
.y25{bottom:827.073867pt;}
.y1c{bottom:827.207200pt;}
.y6b{bottom:829.569467pt;}
.ya0{bottom:836.233467pt;}
.y6a{bottom:844.236133pt;}
.y9f{bottom:852.234800pt;}
.y24{bottom:852.633867pt;}
.y69{bottom:858.902800pt;}
.y23{bottom:865.967200pt;}
.yce{bottom:866.001467pt;}
.y9e{bottom:868.236133pt;}
.y68{bottom:873.569467pt;}
.ycd{bottom:880.668133pt;}
.y9d{bottom:884.237467pt;}
.y67{bottom:888.236133pt;}
.y1b{bottom:889.820533pt;}
.y22{bottom:890.633867pt;}
.y9c{bottom:900.238800pt;}
.y66{bottom:902.902800pt;}
.ycc{bottom:910.456133pt;}
.y9b{bottom:916.240133pt;}
.y21{bottom:920.887200pt;}
.y50{bottom:921.100533pt;}
.y65{bottom:925.122800pt;}
.y64{bottom:939.789467pt;}
.y20{bottom:939.793867pt;}
.y9a{bottom:939.794800pt;}
.y2{bottom:953.967733pt;}
.y63{bottom:954.456133pt;}
.y99{bottom:954.461467pt;}
.y4f{bottom:957.060533pt;}
.y1f{bottom:957.793867pt;}
.y19{bottom:966.108533pt;}
.y62{bottom:969.122800pt;}
.y98{bottom:969.128133pt;}
.y61{bottom:983.789467pt;}
.y97{bottom:983.794800pt;}
.y18{bottom:987.000533pt;}
.y1e{bottom:994.700533pt;}
.y60{bottom:998.456133pt;}
.y96{bottom:998.461467pt;}
.y17{bottom:1000.332533pt;}
.y1d{bottom:1028.727200pt;}
.y6{bottom:1068.377467pt;}
.hb{height:40.000000pt;}
.ha{height:43.031250pt;}
.h9{height:43.335938pt;}
.h8{height:47.812500pt;}
.h7{height:48.151042pt;}
.h6{height:49.785833pt;}
.hc{height:52.593750pt;}
.h5{height:52.966146pt;}
.h2{height:86.671875pt;}
.h4{height:115.562500pt;}
.h3{height:266.812500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:34.960533pt;}
.x7{left:75.590533pt;}
.x5{left:78.222933pt;}
.x4{left:81.070933pt;}
.x11{left:105.833200pt;}
.xa{left:113.385867pt;}
.x10{left:144.420667pt;}
.x14{left:151.181733pt;}
.x3{left:177.637733pt;}
.x1{left:180.472400pt;}
.x9{left:184.963867pt;}
.x12{left:247.293200pt;}
.xc{left:257.013600pt;}
.x6{left:345.826800pt;}
.x2{left:351.496133pt;}
.xf{left:361.127333pt;}
.x15{left:373.103200pt;}
.xd{left:614.047067pt;}
.xe{left:687.874000pt;}
.x13{left:741.348267pt;}
.xb{left:748.626933pt;}
}




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