
    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_cb7021973d63c4f8ea2bd491.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_b8b2f09f23c453992faf369b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1778e8c0fcde5f6c63f48640.woff')format("woff");}.ff3{font-family:ff3;line-height:0.718750;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_f5da75955da5bda58f1602fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.718750;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_111e6f55c0d550afeec0afd7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_596a0e29e60f3ba7141eb305.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b688126f97086c6f37682eaa.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8fbd34b0e269bc78de113a8c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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:ff9;src:url('chunks/assets/font_8f77e77972138ccb6ad4768c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3791b0980c6bcf1ec7e0e0f6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e17071d61ca8d778f4a26f00.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ae8e8d6e6f307b392f7b61c9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls6{letter-spacing:-0.598752px;}
.ls13{letter-spacing:-0.459648px;}
.ls10{letter-spacing:-0.399168px;}
.lse{letter-spacing:-0.385920px;}
.ls19{letter-spacing:-0.338688px;}
.ls20{letter-spacing:-0.328032px;}
.ls17{letter-spacing:-0.320544px;}
.ls16{letter-spacing:-0.318384px;}
.ls15{letter-spacing:-0.302400px;}
.ls18{letter-spacing:-0.284612px;}
.ls11{letter-spacing:-0.260064px;}
.ls1a{letter-spacing:-0.241920px;}
.ls1b{letter-spacing:-0.238464px;}
.ls7{letter-spacing:-0.217728px;}
.lsf{letter-spacing:-0.198720px;}
.ls1c{letter-spacing:-0.179568px;}
.lsa{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.157248px;}
.ls9{letter-spacing:-0.154368px;}
.ls14{letter-spacing:-0.145152px;}
.lsb{letter-spacing:-0.125856px;}
.lsd{letter-spacing:-0.119232px;}
.ls1d{letter-spacing:-0.096768px;}
.ls8{letter-spacing:-0.079488px;}
.lsc{letter-spacing:-0.039744px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.139824px;}
.ls0{letter-spacing:0.295488px;}
.ls4{letter-spacing:0.326592px;}
.ls3{letter-spacing:0.709920px;}
.ls1e{letter-spacing:1.501344px;}
.ls1f{letter-spacing:3.091680px;}
.ls2{letter-spacing:12.002400px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-26.667072px;}
.wsf{word-spacing:-26.493408px;}
.ws2{word-spacing:-18.414720px;}
.wsc{word-spacing:-18.374976px;}
.wsa{word-spacing:-18.335232px;}
.ws4{word-spacing:-18.295488px;}
.ws3{word-spacing:-18.288864px;}
.wsb{word-spacing:-18.255744px;}
.ws5{word-spacing:-16.813440px;}
.wse{word-spacing:-16.716672px;}
.ws8{word-spacing:-16.668288px;}
.ws7{word-spacing:-16.656192px;}
.wsd{word-spacing:-16.571520px;}
.ws6{word-spacing:-16.553376px;}
.ws0{word-spacing:-0.057600px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-4.807584px;}
._c{margin-left:-3.690288px;}
._6{margin-left:-2.371824px;}
._1{margin-left:-1.088640px;}
._2{width:1.360800px;}
._4{width:2.450880px;}
._3{width:3.576960px;}
._7{width:4.901760px;}
._b{width:6.226560px;}
._12{width:7.382880px;}
._11{width:8.412480px;}
._f{width:9.418608px;}
._e{width:10.465920px;}
._8{width:11.790720px;}
._14{width:12.850560px;}
._15{width:14.535360px;}
._d{width:15.897600px;}
._1c{width:17.010432px;}
._13{width:19.301040px;}
._a{width:20.365920px;}
._9{width:21.528000px;}
._16{width:23.316480px;}
._1a{width:25.502400px;}
._10{width:27.092160px;}
._1f{width:30.602880px;}
._0{width:34.992000px;}
._20{width:36.282240px;}
._21{width:44.976960px;}
._1e{width:50.685552px;}
._1d{width:51.799680px;}
._5{width:78.626880px;}
._17{width:177.920640px;}
._18{width:208.920960px;}
._19{width:500.641920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:57.600000px;}
.fs7{font-size:59.294117px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:90.720000px;}
.fs5{font-size:96.480000px;}
.fs0{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:12.480000px;}
.y42{bottom:12.600000px;}
.y47{bottom:12.780000px;}
.y40{bottom:12.900000px;}
.y8e{bottom:12.960000px;}
.y6c{bottom:13.080000px;}
.y3e{bottom:13.200000px;}
.y8c{bottom:13.260000px;}
.y3a{bottom:13.440000px;}
.y3c{bottom:13.500000px;}
.y8a{bottom:13.560000px;}
.y4b{bottom:13.680000px;}
.y38{bottom:13.740000px;}
.y88{bottom:13.860000px;}
.y44{bottom:14.160000px;}
.y6a{bottom:17.040000px;}
.y69{bottom:17.276471px;}
.y68{bottom:22.080000px;}
.y46{bottom:31.860000px;}
.ya8{bottom:110.340000px;}
.y2f{bottom:110.700000px;}
.y2e{bottom:117.540000px;}
.ya7{bottom:127.980000px;}
.y2d{bottom:129.420000px;}
.y63{bottom:129.780000px;}
.ya6{bottom:134.820000px;}
.y62{bottom:136.620000px;}
.y2c{bottom:146.700000px;}
.y61{bottom:148.140000px;}
.yf3{bottom:161.460000px;}
.ya5{bottom:163.980000px;}
.y2b{bottom:164.340000px;}
.y60{bottom:165.780000px;}
.y2a{bottom:171.180000px;}
.y80{bottom:172.500000px;}
.y5f{bottom:172.620000px;}
.ya4{bottom:181.260000px;}
.y29{bottom:182.700000px;}
.yf2{bottom:183.420000px;}
.y5e{bottom:184.500000px;}
.ya3{bottom:198.540000px;}
.y28{bottom:200.340000px;}
.y5d{bottom:202.140000px;}
.ya2{bottom:205.380000px;}
.y27{bottom:207.180000px;}
.y7f{bottom:208.500000px;}
.y5c{bottom:208.980000px;}
.yf1{bottom:214.020000px;}
.ya1{bottom:217.620000px;}
.y26{bottom:219.060000px;}
.yd0{bottom:220.860000px;}
.y5b{bottom:221.220000px;}
.yf0{bottom:235.980000px;}
.y25{bottom:236.700000px;}
.ycf{bottom:238.140000px;}
.y24{bottom:243.540000px;}
.y7e{bottom:244.500000px;}
.y5a{bottom:247.860000px;}
.y23{bottom:255.780000px;}
.yce{bottom:262.620000px;}
.yef{bottom:266.580000px;}
.y59{bottom:269.820000px;}
.ycd{bottom:274.500000px;}
.y7d{bottom:280.500000px;}
.ycc{bottom:281.340000px;}
.yee{bottom:288.540000px;}
.y57{bottom:291.780000px;}
.ycb{bottom:293.580000px;}
.y58{bottom:298.620000px;}
.ya0{bottom:305.820000px;}
.y56{bottom:313.380000px;}
.y7c{bottom:316.500000px;}
.yed{bottom:319.500000px;}
.y9f{bottom:327.420000px;}
.yca{bottom:329.580000px;}
.y21{bottom:332.100000px;}
.y55{bottom:335.340000px;}
.y22{bottom:338.940000px;}
.y9e{bottom:349.380000px;}
.yec{bottom:350.100000px;}
.yc9{bottom:351.540000px;}
.y7b{bottom:352.500000px;}
.y20{bottom:354.060000px;}
.y54{bottom:356.940000px;}
.y9d{bottom:370.980000px;}
.yeb{bottom:372.060000px;}
.yc8{bottom:373.140000px;}
.y1f{bottom:375.660000px;}
.y7a{bottom:388.500000px;}
.y53{bottom:390.780000px;}
.yea{bottom:393.660000px;}
.yc7{bottom:395.100000px;}
.y1d{bottom:397.620000px;}
.y9c{bottom:401.940000px;}
.y1e{bottom:404.460000px;}
.yc6{bottom:417.060000px;}
.y1c{bottom:419.580000px;}
.y9a{bottom:423.900000px;}
.y79{bottom:424.500000px;}
.ye9{bottom:424.620000px;}
.y9b{bottom:430.740000px;}
.yc5{bottom:438.660000px;}
.y51{bottom:440.460000px;}
.y1b{bottom:441.180000px;}
.y99{bottom:445.500000px;}
.ye8{bottom:446.580000px;}
.y52{bottom:447.300000px;}
.y78{bottom:460.500000px;}
.yc4{bottom:460.620000px;}
.y50{bottom:462.420000px;}
.y1a{bottom:463.140000px;}
.y98{bottom:476.460000px;}
.ye7{bottom:477.180000px;}
.yc3{bottom:482.220000px;}
.y4f{bottom:484.380000px;}
.y19{bottom:484.740000px;}
.y77{bottom:496.500000px;}
.y96{bottom:498.060000px;}
.ye6{bottom:499.140000px;}
.yc2{bottom:504.180000px;}
.y97{bottom:504.900000px;}
.y4e{bottom:505.980000px;}
.y18{bottom:506.700000px;}
.y95{bottom:520.020000px;}
.ye5{bottom:520.740000px;}
.y17{bottom:528.660000px;}
.y76{bottom:532.500000px;}
.y4d{bottom:536.940000px;}
.yc1{bottom:537.660000px;}
.y94{bottom:541.980000px;}
.ye4{bottom:542.700000px;}
.y16{bottom:550.260000px;}
.y4c{bottom:561.000000px;}
.y93{bottom:563.580000px;}
.ye3{bottom:564.660000px;}
.y75{bottom:568.500000px;}
.y15{bottom:572.220000px;}
.y92{bottom:585.540000px;}
.yff{bottom:586.620000px;}
.yc0{bottom:587.700000px;}
.y14{bottom:593.820000px;}
.ye2{bottom:595.260000px;}
.y4a{bottom:598.500000px;}
.y74{bottom:604.500000px;}
.y91{bottom:607.140000px;}
.yfe{bottom:608.220000px;}
.ybf{bottom:609.660000px;}
.y13{bottom:615.780000px;}
.ye1{bottom:617.220000px;}
.yfd{bottom:630.180000px;}
.ybe{bottom:631.260000px;}
.y48{bottom:637.500000px;}
.y12{bottom:637.740000px;}
.ye0{bottom:639.180000px;}
.y73{bottom:640.500000px;}
.y90{bottom:640.980000px;}
.ybd{bottom:653.220000px;}
.ydf{bottom:660.780000px;}
.y11{bottom:671.220000px;}
.y45{bottom:675.000000px;}
.ybc{bottom:675.180000px;}
.y72{bottom:676.500000px;}
.yde{bottom:682.740000px;}
.y8f{bottom:691.020000px;}
.yba{bottom:696.780000px;}
.ybb{bottom:703.620000px;}
.y71{bottom:712.500000px;}
.ydd{bottom:713.340000px;}
.yfc{bottom:713.700000px;}
.y8d{bottom:715.500000px;}
.yb9{bottom:718.740000px;}
.y10{bottom:721.260000px;}
.y43{bottom:730.500000px;}
.ydc{bottom:735.300000px;}
.yb8{bottom:740.340000px;}
.yf{bottom:742.860000px;}
.y70{bottom:748.500000px;}
.y8b{bottom:753.000000px;}
.ydb{bottom:757.260000px;}
.yb7{bottom:762.300000px;}
.ye{bottom:764.820000px;}
.yfb{bottom:766.260000px;}
.y41{bottom:769.500000px;}
.yb6{bottom:784.260000px;}
.y6f{bottom:784.500000px;}
.yc{bottom:786.780000px;}
.yda{bottom:787.860000px;}
.y89{bottom:790.500000px;}
.yd{bottom:793.620000px;}
.yfa{bottom:796.860000px;}
.yb5{bottom:805.860000px;}
.y3f{bottom:807.000000px;}
.yb{bottom:808.380000px;}
.yd9{bottom:809.820000px;}
.yf9{bottom:818.820000px;}
.y6e{bottom:820.500000px;}
.yb3{bottom:827.820000px;}
.y87{bottom:828.000000px;}
.ya{bottom:830.340000px;}
.yd8{bottom:831.420000px;}
.yb4{bottom:834.660000px;}
.yf8{bottom:840.780000px;}
.y3d{bottom:844.500000px;}
.yb2{bottom:849.420000px;}
.y9{bottom:851.940000px;}
.y6d{bottom:856.500000px;}
.yd7{bottom:862.380000px;}
.y86{bottom:865.500000px;}
.y8{bottom:873.900000px;}
.y3b{bottom:882.000000px;}
.yb1{bottom:883.260000px;}
.yd6{bottom:884.340000px;}
.y6b{bottom:892.500000px;}
.yf7{bottom:893.340000px;}
.y7{bottom:895.860000px;}
.y85{bottom:904.500000px;}
.yd5{bottom:905.940000px;}
.yf6{bottom:915.300000px;}
.y6{bottom:917.460000px;}
.y39{bottom:919.500000px;}
.y67{bottom:928.500000px;}
.yaf{bottom:933.300000px;}
.yd4{bottom:936.900000px;}
.yb0{bottom:940.140000px;}
.y84{bottom:942.000000px;}
.yf5{bottom:945.900000px;}
.y5{bottom:951.300000px;}
.yae{bottom:954.900000px;}
.y37{bottom:957.000000px;}
.yd3{bottom:958.500000px;}
.yf4{bottom:967.860000px;}
.yad{bottom:976.860000px;}
.y83{bottom:979.500000px;}
.y66{bottom:989.460000px;}
.yac{bottom:998.460000px;}
.y4{bottom:1007.820000px;}
.y36{bottom:1011.420000px;}
.yaa{bottom:1020.420000px;}
.y3{bottom:1025.100000px;}
.yab{bottom:1027.260000px;}
.yd2{bottom:1033.020000px;}
.y65{bottom:1033.380000px;}
.y35{bottom:1042.380000px;}
.y82{bottom:1054.980000px;}
.y64{bottom:1063.980000px;}
.y2{bottom:1065.780000px;}
.yd1{bottom:1066.860000px;}
.y34{bottom:1072.980000px;}
.y81{bottom:1085.940000px;}
.y33{bottom:1094.940000px;}
.y32{bottom:1116.540000px;}
.y1{bottom:1117.260000px;}
.ya9{bottom:1123.380000px;}
.y30{bottom:1138.500000px;}
.y31{bottom:1145.340000px;}
.h4{height:30.015000px;}
.h10{height:36.000000px;}
.hb{height:37.500000px;}
.h9{height:39.000000px;}
.he{height:44.031094px;}
.h8{height:44.060625px;}
.hf{height:44.470588px;}
.hd{height:45.000000px;}
.ha{height:48.224531px;}
.h6{height:48.256875px;}
.hc{height:57.000000px;}
.h5{height:70.287188px;}
.h3{height:74.520000px;}
.h2{height:113.298750px;}
.h7{height:1251.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:82.500000px;}
.w6{width:84.000000px;}
.w7{width:103.500000px;}
.w3{width:117.000000px;}
.w8{width:126.000000px;}
.w4{width:186.000000px;}
.w9{width:247.500000px;}
.w2{width:880.800000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:8.699856px;}
.x2{left:12.000000px;}
.x23{left:45.737040px;}
.xc{left:96.720000px;}
.x1{left:108.720108px;}
.x26{left:111.527136px;}
.xd{left:114.480252px;}
.x1c{left:117.964368px;}
.x2e{left:120.240036px;}
.x33{left:123.360000px;}
.xe{left:135.240000px;}
.x1d{left:138.561192px;}
.x12{left:147.274416px;}
.xf{left:152.999028px;}
.x39{left:162.720108px;}
.x31{left:184.920000px;}
.x1f{left:192.000000px;}
.x32{left:208.274904px;}
.x35{left:238.920000px;}
.x1e{left:257.360364px;}
.x28{left:261.000000px;}
.x36{left:262.345248px;}
.x20{left:274.500000px;}
.x27{left:293.087556px;}
.x13{left:295.500000px;}
.x18{left:299.040000px;}
.x19{left:316.969272px;}
.xb{left:324.720108px;}
.x2c{left:334.320000px;}
.x2d{left:357.943860px;}
.x21{left:376.500000px;}
.x29{left:387.000000px;}
.x1a{left:407.760000px;}
.x15{left:412.500000px;}
.x1b{left:425.538000px;}
.x37{left:434.400000px;}
.x38{left:458.094600px;}
.x9{left:462.120000px;}
.x22{left:478.500000px;}
.xa{left:479.790360px;}
.x5{left:514.320000px;}
.x6{left:532.085400px;}
.x24{left:580.500000px;}
.x2f{left:609.360000px;}
.x30{left:632.998440px;}
.x16{left:638.520000px;}
.x17{left:656.458560px;}
.x25{left:682.500000px;}
.x7{left:691.440000px;}
.x10{left:698.280000px;}
.x8{left:709.270200px;}
.x3{left:712.320000px;}
.x11{left:716.113080px;}
.x4{left:730.105560px;}
.x34{left:740.279160px;}
.x2a{left:742.920000px;}
.x2b{left:766.507320px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls6{letter-spacing:-0.532224pt;}
.ls13{letter-spacing:-0.408576pt;}
.ls10{letter-spacing:-0.354816pt;}
.lse{letter-spacing:-0.343040pt;}
.ls19{letter-spacing:-0.301056pt;}
.ls20{letter-spacing:-0.291584pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls16{letter-spacing:-0.283008pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls18{letter-spacing:-0.252988pt;}
.ls11{letter-spacing:-0.231168pt;}
.ls1a{letter-spacing:-0.215040pt;}
.ls1b{letter-spacing:-0.211968pt;}
.ls7{letter-spacing:-0.193536pt;}
.lsf{letter-spacing:-0.176640pt;}
.ls1c{letter-spacing:-0.159616pt;}
.lsa{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.139776pt;}
.ls9{letter-spacing:-0.137216pt;}
.ls14{letter-spacing:-0.129024pt;}
.lsb{letter-spacing:-0.111872pt;}
.lsd{letter-spacing:-0.105984pt;}
.ls1d{letter-spacing:-0.086016pt;}
.ls8{letter-spacing:-0.070656pt;}
.lsc{letter-spacing:-0.035328pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.124288pt;}
.ls0{letter-spacing:0.262656pt;}
.ls4{letter-spacing:0.290304pt;}
.ls3{letter-spacing:0.631040pt;}
.ls1e{letter-spacing:1.334528pt;}
.ls1f{letter-spacing:2.748160pt;}
.ls2{letter-spacing:10.668800pt;}
.ws1{word-spacing:-23.704064pt;}
.wsf{word-spacing:-23.549696pt;}
.ws2{word-spacing:-16.368640pt;}
.wsc{word-spacing:-16.333312pt;}
.wsa{word-spacing:-16.297984pt;}
.ws4{word-spacing:-16.262656pt;}
.ws3{word-spacing:-16.256768pt;}
.wsb{word-spacing:-16.227328pt;}
.ws5{word-spacing:-14.945280pt;}
.wse{word-spacing:-14.859264pt;}
.ws8{word-spacing:-14.816256pt;}
.ws7{word-spacing:-14.805504pt;}
.wsd{word-spacing:-14.730240pt;}
.ws6{word-spacing:-14.714112pt;}
.ws0{word-spacing:-0.051200pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-4.273408pt;}
._c{margin-left:-3.280256pt;}
._6{margin-left:-2.108288pt;}
._1{margin-left:-0.967680pt;}
._2{width:1.209600pt;}
._4{width:2.178560pt;}
._3{width:3.179520pt;}
._7{width:4.357120pt;}
._b{width:5.534720pt;}
._12{width:6.562560pt;}
._11{width:7.477760pt;}
._f{width:8.372096pt;}
._e{width:9.303040pt;}
._8{width:10.480640pt;}
._14{width:11.422720pt;}
._15{width:12.920320pt;}
._d{width:14.131200pt;}
._1c{width:15.120384pt;}
._13{width:17.156480pt;}
._a{width:18.103040pt;}
._9{width:19.136000pt;}
._16{width:20.725760pt;}
._1a{width:22.668800pt;}
._10{width:24.081920pt;}
._1f{width:27.202560pt;}
._0{width:31.104000pt;}
._20{width:32.250880pt;}
._21{width:39.979520pt;}
._1e{width:45.053824pt;}
._1d{width:46.044160pt;}
._5{width:69.890560pt;}
._17{width:158.151680pt;}
._18{width:185.707520pt;}
._19{width:445.015040pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:51.200000pt;}
.fs7{font-size:52.705882pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:80.640000pt;}
.fs5{font-size:85.760000pt;}
.fs0{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:11.093333pt;}
.y42{bottom:11.200000pt;}
.y47{bottom:11.360000pt;}
.y40{bottom:11.466667pt;}
.y8e{bottom:11.520000pt;}
.y6c{bottom:11.626667pt;}
.y3e{bottom:11.733333pt;}
.y8c{bottom:11.786667pt;}
.y3a{bottom:11.946667pt;}
.y3c{bottom:12.000000pt;}
.y8a{bottom:12.053333pt;}
.y4b{bottom:12.160000pt;}
.y38{bottom:12.213333pt;}
.y88{bottom:12.320000pt;}
.y44{bottom:12.586667pt;}
.y6a{bottom:15.146667pt;}
.y69{bottom:15.356863pt;}
.y68{bottom:19.626667pt;}
.y46{bottom:28.320000pt;}
.ya8{bottom:98.080000pt;}
.y2f{bottom:98.400000pt;}
.y2e{bottom:104.480000pt;}
.ya7{bottom:113.760000pt;}
.y2d{bottom:115.040000pt;}
.y63{bottom:115.360000pt;}
.ya6{bottom:119.840000pt;}
.y62{bottom:121.440000pt;}
.y2c{bottom:130.400000pt;}
.y61{bottom:131.680000pt;}
.yf3{bottom:143.520000pt;}
.ya5{bottom:145.760000pt;}
.y2b{bottom:146.080000pt;}
.y60{bottom:147.360000pt;}
.y2a{bottom:152.160000pt;}
.y80{bottom:153.333333pt;}
.y5f{bottom:153.440000pt;}
.ya4{bottom:161.120000pt;}
.y29{bottom:162.400000pt;}
.yf2{bottom:163.040000pt;}
.y5e{bottom:164.000000pt;}
.ya3{bottom:176.480000pt;}
.y28{bottom:178.080000pt;}
.y5d{bottom:179.680000pt;}
.ya2{bottom:182.560000pt;}
.y27{bottom:184.160000pt;}
.y7f{bottom:185.333333pt;}
.y5c{bottom:185.760000pt;}
.yf1{bottom:190.240000pt;}
.ya1{bottom:193.440000pt;}
.y26{bottom:194.720000pt;}
.yd0{bottom:196.320000pt;}
.y5b{bottom:196.640000pt;}
.yf0{bottom:209.760000pt;}
.y25{bottom:210.400000pt;}
.ycf{bottom:211.680000pt;}
.y24{bottom:216.480000pt;}
.y7e{bottom:217.333333pt;}
.y5a{bottom:220.320000pt;}
.y23{bottom:227.360000pt;}
.yce{bottom:233.440000pt;}
.yef{bottom:236.960000pt;}
.y59{bottom:239.840000pt;}
.ycd{bottom:244.000000pt;}
.y7d{bottom:249.333333pt;}
.ycc{bottom:250.080000pt;}
.yee{bottom:256.480000pt;}
.y57{bottom:259.360000pt;}
.ycb{bottom:260.960000pt;}
.y58{bottom:265.440000pt;}
.ya0{bottom:271.840000pt;}
.y56{bottom:278.560000pt;}
.y7c{bottom:281.333333pt;}
.yed{bottom:284.000000pt;}
.y9f{bottom:291.040000pt;}
.yca{bottom:292.960000pt;}
.y21{bottom:295.200000pt;}
.y55{bottom:298.080000pt;}
.y22{bottom:301.280000pt;}
.y9e{bottom:310.560000pt;}
.yec{bottom:311.200000pt;}
.yc9{bottom:312.480000pt;}
.y7b{bottom:313.333333pt;}
.y20{bottom:314.720000pt;}
.y54{bottom:317.280000pt;}
.y9d{bottom:329.760000pt;}
.yeb{bottom:330.720000pt;}
.yc8{bottom:331.680000pt;}
.y1f{bottom:333.920000pt;}
.y7a{bottom:345.333333pt;}
.y53{bottom:347.360000pt;}
.yea{bottom:349.920000pt;}
.yc7{bottom:351.200000pt;}
.y1d{bottom:353.440000pt;}
.y9c{bottom:357.280000pt;}
.y1e{bottom:359.520000pt;}
.yc6{bottom:370.720000pt;}
.y1c{bottom:372.960000pt;}
.y9a{bottom:376.800000pt;}
.y79{bottom:377.333333pt;}
.ye9{bottom:377.440000pt;}
.y9b{bottom:382.880000pt;}
.yc5{bottom:389.920000pt;}
.y51{bottom:391.520000pt;}
.y1b{bottom:392.160000pt;}
.y99{bottom:396.000000pt;}
.ye8{bottom:396.960000pt;}
.y52{bottom:397.600000pt;}
.y78{bottom:409.333333pt;}
.yc4{bottom:409.440000pt;}
.y50{bottom:411.040000pt;}
.y1a{bottom:411.680000pt;}
.y98{bottom:423.520000pt;}
.ye7{bottom:424.160000pt;}
.yc3{bottom:428.640000pt;}
.y4f{bottom:430.560000pt;}
.y19{bottom:430.880000pt;}
.y77{bottom:441.333333pt;}
.y96{bottom:442.720000pt;}
.ye6{bottom:443.680000pt;}
.yc2{bottom:448.160000pt;}
.y97{bottom:448.800000pt;}
.y4e{bottom:449.760000pt;}
.y18{bottom:450.400000pt;}
.y95{bottom:462.240000pt;}
.ye5{bottom:462.880000pt;}
.y17{bottom:469.920000pt;}
.y76{bottom:473.333333pt;}
.y4d{bottom:477.280000pt;}
.yc1{bottom:477.920000pt;}
.y94{bottom:481.760000pt;}
.ye4{bottom:482.400000pt;}
.y16{bottom:489.120000pt;}
.y4c{bottom:498.666667pt;}
.y93{bottom:500.960000pt;}
.ye3{bottom:501.920000pt;}
.y75{bottom:505.333333pt;}
.y15{bottom:508.640000pt;}
.y92{bottom:520.480000pt;}
.yff{bottom:521.440000pt;}
.yc0{bottom:522.400000pt;}
.y14{bottom:527.840000pt;}
.ye2{bottom:529.120000pt;}
.y4a{bottom:532.000000pt;}
.y74{bottom:537.333333pt;}
.y91{bottom:539.680000pt;}
.yfe{bottom:540.640000pt;}
.ybf{bottom:541.920000pt;}
.y13{bottom:547.360000pt;}
.ye1{bottom:548.640000pt;}
.yfd{bottom:560.160000pt;}
.ybe{bottom:561.120000pt;}
.y48{bottom:566.666667pt;}
.y12{bottom:566.880000pt;}
.ye0{bottom:568.160000pt;}
.y73{bottom:569.333333pt;}
.y90{bottom:569.760000pt;}
.ybd{bottom:580.640000pt;}
.ydf{bottom:587.360000pt;}
.y11{bottom:596.640000pt;}
.y45{bottom:600.000000pt;}
.ybc{bottom:600.160000pt;}
.y72{bottom:601.333333pt;}
.yde{bottom:606.880000pt;}
.y8f{bottom:614.240000pt;}
.yba{bottom:619.360000pt;}
.ybb{bottom:625.440000pt;}
.y71{bottom:633.333333pt;}
.ydd{bottom:634.080000pt;}
.yfc{bottom:634.400000pt;}
.y8d{bottom:636.000000pt;}
.yb9{bottom:638.880000pt;}
.y10{bottom:641.120000pt;}
.y43{bottom:649.333333pt;}
.ydc{bottom:653.600000pt;}
.yb8{bottom:658.080000pt;}
.yf{bottom:660.320000pt;}
.y70{bottom:665.333333pt;}
.y8b{bottom:669.333333pt;}
.ydb{bottom:673.120000pt;}
.yb7{bottom:677.600000pt;}
.ye{bottom:679.840000pt;}
.yfb{bottom:681.120000pt;}
.y41{bottom:684.000000pt;}
.yb6{bottom:697.120000pt;}
.y6f{bottom:697.333333pt;}
.yc{bottom:699.360000pt;}
.yda{bottom:700.320000pt;}
.y89{bottom:702.666667pt;}
.yd{bottom:705.440000pt;}
.yfa{bottom:708.320000pt;}
.yb5{bottom:716.320000pt;}
.y3f{bottom:717.333333pt;}
.yb{bottom:718.560000pt;}
.yd9{bottom:719.840000pt;}
.yf9{bottom:727.840000pt;}
.y6e{bottom:729.333333pt;}
.yb3{bottom:735.840000pt;}
.y87{bottom:736.000000pt;}
.ya{bottom:738.080000pt;}
.yd8{bottom:739.040000pt;}
.yb4{bottom:741.920000pt;}
.yf8{bottom:747.360000pt;}
.y3d{bottom:750.666667pt;}
.yb2{bottom:755.040000pt;}
.y9{bottom:757.280000pt;}
.y6d{bottom:761.333333pt;}
.yd7{bottom:766.560000pt;}
.y86{bottom:769.333333pt;}
.y8{bottom:776.800000pt;}
.y3b{bottom:784.000000pt;}
.yb1{bottom:785.120000pt;}
.yd6{bottom:786.080000pt;}
.y6b{bottom:793.333333pt;}
.yf7{bottom:794.080000pt;}
.y7{bottom:796.320000pt;}
.y85{bottom:804.000000pt;}
.yd5{bottom:805.280000pt;}
.yf6{bottom:813.600000pt;}
.y6{bottom:815.520000pt;}
.y39{bottom:817.333333pt;}
.y67{bottom:825.333333pt;}
.yaf{bottom:829.600000pt;}
.yd4{bottom:832.800000pt;}
.yb0{bottom:835.680000pt;}
.y84{bottom:837.333333pt;}
.yf5{bottom:840.800000pt;}
.y5{bottom:845.600000pt;}
.yae{bottom:848.800000pt;}
.y37{bottom:850.666667pt;}
.yd3{bottom:852.000000pt;}
.yf4{bottom:860.320000pt;}
.yad{bottom:868.320000pt;}
.y83{bottom:870.666667pt;}
.y66{bottom:879.520000pt;}
.yac{bottom:887.520000pt;}
.y4{bottom:895.840000pt;}
.y36{bottom:899.040000pt;}
.yaa{bottom:907.040000pt;}
.y3{bottom:911.200000pt;}
.yab{bottom:913.120000pt;}
.yd2{bottom:918.240000pt;}
.y65{bottom:918.560000pt;}
.y35{bottom:926.560000pt;}
.y82{bottom:937.760000pt;}
.y64{bottom:945.760000pt;}
.y2{bottom:947.360000pt;}
.yd1{bottom:948.320000pt;}
.y34{bottom:953.760000pt;}
.y81{bottom:965.280000pt;}
.y33{bottom:973.280000pt;}
.y32{bottom:992.480000pt;}
.y1{bottom:993.120000pt;}
.ya9{bottom:998.560000pt;}
.y30{bottom:1012.000000pt;}
.y31{bottom:1018.080000pt;}
.h4{height:26.680000pt;}
.h10{height:32.000000pt;}
.hb{height:33.333333pt;}
.h9{height:34.666667pt;}
.he{height:39.138750pt;}
.h8{height:39.165000pt;}
.hf{height:39.529411pt;}
.hd{height:40.000000pt;}
.ha{height:42.866250pt;}
.h6{height:42.895000pt;}
.hc{height:50.666667pt;}
.h5{height:62.477500pt;}
.h3{height:66.240000pt;}
.h2{height:100.710000pt;}
.h7{height:1112.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:73.333333pt;}
.w6{width:74.666667pt;}
.w7{width:92.000000pt;}
.w3{width:104.000000pt;}
.w8{width:112.000000pt;}
.w4{width:165.333333pt;}
.w9{width:220.000000pt;}
.w2{width:782.933333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:7.733205pt;}
.x2{left:10.666667pt;}
.x23{left:40.655147pt;}
.xc{left:85.973333pt;}
.x1{left:96.640096pt;}
.x26{left:99.135232pt;}
.xd{left:101.760224pt;}
.x1c{left:104.857216pt;}
.x2e{left:106.880032pt;}
.x33{left:109.653333pt;}
.xe{left:120.213333pt;}
.x1d{left:123.165504pt;}
.x12{left:130.910592pt;}
.xf{left:135.999136pt;}
.x39{left:144.640096pt;}
.x31{left:164.373333pt;}
.x1f{left:170.666667pt;}
.x32{left:185.133248pt;}
.x35{left:212.373333pt;}
.x1e{left:228.764768pt;}
.x28{left:232.000000pt;}
.x36{left:233.195776pt;}
.x20{left:244.000000pt;}
.x27{left:260.522272pt;}
.x13{left:262.666667pt;}
.x18{left:265.813333pt;}
.x19{left:281.750464pt;}
.xb{left:288.640096pt;}
.x2c{left:297.173333pt;}
.x2d{left:318.172320pt;}
.x21{left:334.666667pt;}
.x29{left:344.000000pt;}
.x1a{left:362.453333pt;}
.x15{left:366.666667pt;}
.x1b{left:378.256000pt;}
.x37{left:386.133333pt;}
.x38{left:407.195200pt;}
.x9{left:410.773333pt;}
.x22{left:425.333333pt;}
.xa{left:426.480320pt;}
.x5{left:457.173333pt;}
.x6{left:472.964800pt;}
.x24{left:516.000000pt;}
.x2f{left:541.653333pt;}
.x30{left:562.665280pt;}
.x16{left:567.573333pt;}
.x17{left:583.518720pt;}
.x25{left:606.666667pt;}
.x7{left:614.613333pt;}
.x10{left:620.693333pt;}
.x8{left:630.462400pt;}
.x3{left:633.173333pt;}
.x11{left:636.544960pt;}
.x4{left:648.982720pt;}
.x34{left:658.025920pt;}
.x2a{left:660.373333pt;}
.x2b{left:681.339840pt;}
}




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