
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_30fe6f5d2ffeb2bfccc15396.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_86765eccb232077f11c8f869.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_48341743ebf32351325a5f05.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_4fa9e387400d1cd49f4e678a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_30a0e23d81734550de81ed2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_33d6cb051d750a3a85376625.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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_293ead331e68817a73e5d48b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.463800px;}
.ls1c{letter-spacing:-0.414000px;}
.ls28{letter-spacing:-0.326400px;}
.ls21{letter-spacing:-0.240600px;}
.ls18{letter-spacing:-0.172200px;}
.ls9{letter-spacing:-0.115800px;}
.ls19{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.107400px;}
.lsa{letter-spacing:-0.064800px;}
.ls2a{letter-spacing:-0.058320px;}
.ls29{letter-spacing:-0.038160px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.010080px;}
.ls1f{letter-spacing:0.023760px;}
.ls1e{letter-spacing:0.037200px;}
.ls1a{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.064200px;}
.ls14{letter-spacing:0.074880px;}
.ls12{letter-spacing:0.126720px;}
.ls1b{letter-spacing:0.140400px;}
.ls16{letter-spacing:0.143280px;}
.ls3{letter-spacing:0.174240px;}
.ls26{letter-spacing:0.175200px;}
.ls24{letter-spacing:0.179280px;}
.ls10{letter-spacing:0.186600px;}
.ls13{letter-spacing:0.195120px;}
.ls17{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.433440px;}
.ls20{letter-spacing:0.479400px;}
.ls25{letter-spacing:0.479520px;}
.ls5{letter-spacing:0.617760px;}
.ls1d{letter-spacing:0.637200px;}
.ls27{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2b{letter-spacing:12.186720px;}
.ls23{letter-spacing:42.426720px;}
.lsc{letter-spacing:47.610720px;}
.ls22{letter-spacing:59.850720px;}
.lsb{letter-spacing:63.450720px;}
.lse{letter-spacing:64.002720px;}
.ls4{letter-spacing:83.610720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.985160px;}
.wsd{word-spacing:-13.811760px;}
.wse{word-spacing:-13.715160px;}
.wsa{word-spacing:-13.692360px;}
.ws13{word-spacing:-13.680960px;}
.wsc{word-spacing:-13.569960px;}
.ws11{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.467600px;}
.ws15{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.398360px;}
.ws10{word-spacing:-13.396560px;}
.ws7{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.333560px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.774400px;}
._19{margin-left:-4.804320px;}
._6{margin-left:-3.312000px;}
._16{margin-left:-2.260080px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._e{width:3.286800px;}
._c{width:4.362480px;}
._d{width:5.586480px;}
._15{width:6.595680px;}
._9{width:7.750080px;}
._10{width:9.501360px;}
._f{width:10.577520px;}
._11{width:11.653200px;}
._12{width:15.358320px;}
._13{width:16.374240px;}
._14{width:17.390160px;}
._b{width:19.242720px;}
._a{width:20.383200px;}
._1d{width:21.423840px;}
._23{width:22.947840px;}
._27{width:24.382080px;}
._21{width:25.856160px;}
._1f{width:27.902160px;}
._20{width:28.969440px;}
._17{width:33.107040px;}
._18{width:34.431840px;}
._1e{width:37.768320px;}
._22{width:39.919680px;}
._26{width:43.465440px;}
._1c{width:44.501280px;}
._7{width:45.581760px;}
._8{width:46.988160px;}
._28{width:50.437440px;}
._1b{width:63.285840px;}
._2a{width:68.006880px;}
._1a{width:75.357360px;}
._25{width:79.361280px;}
._24{width:80.974800px;}
._29{width:188.662320px;}
.fc5{color:rgb(27,28,29);}
.fc4{color:rgb(62,63,58);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y66{bottom:6.660000px;}
.yf7{bottom:7.020000px;}
.y9c{bottom:10.980000px;}
.y69{bottom:17.100000px;}
.y76{bottom:17.280000px;}
.y72{bottom:21.060000px;}
.y6b{bottom:27.720000px;}
.ya0{bottom:27.750000px;}
.yf6{bottom:28.080000px;}
.y6d{bottom:31.500000px;}
.y6f{bottom:31.680000px;}
.y9b{bottom:32.040000px;}
.yf3{bottom:35.460000px;}
.y68{bottom:38.160000px;}
.ybc{bottom:38.205000px;}
.y75{bottom:38.340000px;}
.y6a{bottom:48.780000px;}
.ybd{bottom:48.825000px;}
.yf5{bottom:49.530000px;}
.y6{bottom:61.200000px;}
.ybe{bottom:69.885000px;}
.yf4{bottom:70.590000px;}
.ycb{bottom:94.320000px;}
.y81{bottom:100.800000px;}
.y64{bottom:104.220000px;}
.yf2{bottom:105.840000px;}
.yca{bottom:115.380000px;}
.y80{bottom:121.860000px;}
.y30{bottom:122.220000px;}
.y9f{bottom:124.740000px;}
.y63{bottom:125.280000px;}
.yc9{bottom:136.440000px;}
.y7f{bottom:142.920000px;}
.y2f{bottom:143.280000px;}
.y62{bottom:146.340000px;}
.yc8{bottom:157.530000px;}
.y2e{bottom:164.370000px;}
.y61{bottom:167.430000px;}
.yc7{bottom:178.590000px;}
.y7e{bottom:180.210000px;}
.y2d{bottom:185.430000px;}
.y60{bottom:188.490000px;}
.y9e{bottom:188.670000px;}
.yc6{bottom:199.650000px;}
.y2c{bottom:206.490000px;}
.y5f{bottom:209.550000px;}
.yc5{bottom:220.710000px;}
.y2b{bottom:227.550000px;}
.y7d{bottom:228.270000px;}
.y5e{bottom:230.610000px;}
.y9d{bottom:231.510000px;}
.yc4{bottom:235.830000px;}
.y2a{bottom:248.610000px;}
.yce{bottom:251.670000px;}
.yc3{bottom:257.610000px;}
.y5d{bottom:260.670000px;}
.y29{bottom:269.670000px;}
.ycd{bottom:272.730000px;}
.y9a{bottom:274.170000px;}
.yc2{bottom:279.390000px;}
.y5c{bottom:281.730000px;}
.y28{bottom:290.730000px;}
.ycc{bottom:293.790000px;}
.y7c{bottom:297.390000px;}
.yc1{bottom:301.170000px;}
.y5b{bottom:302.790000px;}
.y27{bottom:311.790000px;}
.yf1{bottom:314.850000px;}
.yc0{bottom:322.950000px;}
.y5a{bottom:323.850000px;}
.y26{bottom:332.850000px;}
.yf0{bottom:335.910000px;}
.y99{bottom:340.050000px;}
.ybf{bottom:344.730000px;}
.y59{bottom:344.910000px;}
.y7b{bottom:345.630000px;}
.y25{bottom:353.910000px;}
.yef{bottom:356.970000px;}
.y98{bottom:361.110000px;}
.y58{bottom:365.970000px;}
.ybb{bottom:366.690000px;}
.y24{bottom:374.970000px;}
.yee{bottom:378.030000px;}
.y97{bottom:382.170000px;}
.y57{bottom:387.030000px;}
.y23{bottom:396.030000px;}
.yed{bottom:399.090000px;}
.y96{bottom:403.275000px;}
.y56{bottom:408.135000px;}
.y7a{bottom:414.795000px;}
.y22{bottom:417.135000px;}
.yec{bottom:420.195000px;}
.y95{bottom:424.335000px;}
.y55{bottom:429.195000px;}
.y21{bottom:438.195000px;}
.yeb{bottom:441.255000px;}
.y94{bottom:445.395000px;}
.y54{bottom:450.255000px;}
.yba{bottom:458.355000px;}
.y20{bottom:459.255000px;}
.yea{bottom:462.315000px;}
.y79{bottom:462.855000px;}
.y93{bottom:466.455000px;}
.y53{bottom:471.315000px;}
.yb9{bottom:479.415000px;}
.y1f{bottom:480.315000px;}
.ye9{bottom:483.375000px;}
.y92{bottom:487.515000px;}
.y52{bottom:492.375000px;}
.yb8{bottom:500.475000px;}
.y1e{bottom:501.375000px;}
.ye8{bottom:504.435000px;}
.y91{bottom:508.575000px;}
.y78{bottom:511.095000px;}
.y51{bottom:513.435000px;}
.yb7{bottom:521.535000px;}
.y1d{bottom:522.435000px;}
.ye7{bottom:525.495000px;}
.y90{bottom:529.635000px;}
.y50{bottom:534.495000px;}
.yb6{bottom:542.595000px;}
.y1c{bottom:545.835000px;}
.ye6{bottom:546.555000px;}
.y8f{bottom:550.695000px;}
.y4f{bottom:555.555000px;}
.yb5{bottom:563.655000px;}
.ye5{bottom:567.615000px;}
.y8e{bottom:571.755000px;}
.y1b{bottom:575.715000px;}
.y4e{bottom:576.615000px;}
.y77{bottom:580.215000px;}
.yb4{bottom:584.715000px;}
.ye4{bottom:588.675000px;}
.y8d{bottom:592.815000px;}
.y1a{bottom:596.775000px;}
.y4d{bottom:597.675000px;}
.yb3{bottom:605.775000px;}
.ye3{bottom:609.735000px;}
.y8c{bottom:613.875000px;}
.y19{bottom:617.835000px;}
.y4c{bottom:618.735000px;}
.yb2{bottom:626.835000px;}
.ye2{bottom:630.795000px;}
.y8b{bottom:634.935000px;}
.y18{bottom:638.895000px;}
.y4b{bottom:639.795000px;}
.yb1{bottom:647.895000px;}
.y74{bottom:649.365000px;}
.ye1{bottom:651.885000px;}
.y8a{bottom:656.025000px;}
.y17{bottom:659.985000px;}
.y4a{bottom:660.885000px;}
.yb0{bottom:668.985000px;}
.ye0{bottom:672.945000px;}
.y89{bottom:677.085000px;}
.y16{bottom:681.045000px;}
.y49{bottom:681.945000px;}
.yaf{bottom:689.865000px;}
.ydf{bottom:694.005000px;}
.y88{bottom:698.145000px;}
.y15{bottom:702.105000px;}
.y48{bottom:703.005000px;}
.yae{bottom:714.165000px;}
.yde{bottom:715.065000px;}
.y73{bottom:718.485000px;}
.y87{bottom:719.205000px;}
.y14{bottom:723.165000px;}
.y47{bottom:724.065000px;}
.ydd{bottom:736.125000px;}
.y86{bottom:740.265000px;}
.y13{bottom:744.225000px;}
.y46{bottom:745.125000px;}
.yad{bottom:753.945000px;}
.ydc{bottom:757.005000px;}
.y85{bottom:762.225000px;}
.y12{bottom:765.285000px;}
.y45{bottom:766.005000px;}
.ydb{bottom:778.065000px;}
.y84{bottom:784.005000px;}
.y11{bottom:786.345000px;}
.y44{bottom:787.065000px;}
.y71{bottom:787.785000px;}
.yac{bottom:793.725000px;}
.yda{bottom:799.125000px;}
.y83{bottom:805.965000px;}
.y10{bottom:807.405000px;}
.y43{bottom:808.125000px;}
.yd9{bottom:820.185000px;}
.y82{bottom:827.745000px;}
.yf{bottom:828.465000px;}
.y42{bottom:829.185000px;}
.yab{bottom:831.165000px;}
.y70{bottom:835.845000px;}
.yd8{bottom:841.245000px;}
.ye{bottom:849.525000px;}
.y41{bottom:850.245000px;}
.yaa{bottom:852.225000px;}
.yd7{bottom:862.305000px;}
.y40{bottom:871.305000px;}
.yd{bottom:872.745000px;}
.ya9{bottom:873.285000px;}
.yd6{bottom:883.365000px;}
.y3f{bottom:892.365000px;}
.ya8{bottom:894.345000px;}
.yc{bottom:899.070000px;}
.yd5{bottom:904.470000px;}
.y6e{bottom:905.010000px;}
.y3e{bottom:913.470000px;}
.ya7{bottom:915.450000px;}
.yb{bottom:915.810000px;}
.yd4{bottom:925.530000px;}
.y3d{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.ya6{bottom:945.510000px;}
.yd3{bottom:946.590000px;}
.y3c{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.ya5{bottom:966.570000px;}
.yd2{bottom:967.650000px;}
.y6c{bottom:974.310000px;}
.y3b{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.ya4{bottom:987.630000px;}
.yd1{bottom:988.710000px;}
.y3a{bottom:997.710000px;}
.yd0{bottom:1009.770000px;}
.ya3{bottom:1014.810000px;}
.y39{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.ycf{bottom:1030.830000px;}
.y38{bottom:1039.830000px;}
.y67{bottom:1043.430000px;}
.ya2{bottom:1057.650000px;}
.y5{bottom:1060.350000px;}
.y37{bottom:1060.890000px;}
.y36{bottom:1081.950000px;}
.y4{bottom:1092.570000px;}
.ya1{bottom:1100.310000px;}
.y35{bottom:1103.010000px;}
.y65{bottom:1112.550000px;}
.y34{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y33{bottom:1145.130000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h12{height:2.864531px;}
.h9{height:21.060000px;}
.h7{height:38.671172px;}
.hc{height:42.120000px;}
.he{height:42.156000px;}
.hd{height:46.440000px;}
.hf{height:46.476000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:63.180000px;}
.hb{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h10{height:84.276000px;}
.h11{height:84.996000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:89.856000px;}
.w10{width:99.900000px;}
.w12{width:105.840000px;}
.w11{width:105.876000px;}
.we{width:108.396000px;}
.wf{width:112.896000px;}
.wa{width:149.436000px;}
.w4{width:153.570000px;}
.w14{width:161.310000px;}
.w9{width:183.270000px;}
.w7{width:184.755000px;}
.w3{width:186.690000px;}
.w6{width:203.790000px;}
.w15{width:210.810000px;}
.w5{width:223.095000px;}
.w8{width:238.890000px;}
.wb{width:243.615000px;}
.wc{width:254.730000px;}
.wd{width:272.955000px;}
.w16{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x19{left:-3.420000px;}
.x15{left:-2.340000px;}
.x0{left:0.000000px;}
.x5{left:1.080000px;}
.x1d{left:2.520000px;}
.x16{left:6.120000px;}
.x1b{left:7.740000px;}
.xb{left:13.536000px;}
.x13{left:22.896000px;}
.x1{left:53.999987px;}
.x4{left:57.420000px;}
.x12{left:62.820000px;}
.x2{left:75.239987px;}
.xf{left:78.840000px;}
.xa{left:81.540000px;}
.x3{left:108.035987px;}
.x9{left:135.035987px;}
.x14{left:171.570000px;}
.x1f{left:191.370000px;}
.x6{left:247.890000px;}
.x20{left:264.810000px;}
.xc{left:270.075000px;}
.x17{left:284.835000px;}
.x10{left:323.175000px;}
.x18{left:385.095000px;}
.x7{left:405.075000px;}
.x1a{left:491.325000px;}
.xd{left:512.565000px;}
.x11{left:578.625000px;}
.x1c{left:597.525000px;}
.x8{left:631.950000px;}
.x1e{left:687.750000px;}
.xe{left:699.630000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls1c{letter-spacing:-0.368000pt;}
.ls28{letter-spacing:-0.290133pt;}
.ls21{letter-spacing:-0.213867pt;}
.ls18{letter-spacing:-0.153067pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls19{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.095467pt;}
.lsa{letter-spacing:-0.057600pt;}
.ls2a{letter-spacing:-0.051840pt;}
.ls29{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.008960pt;}
.ls1f{letter-spacing:0.021120pt;}
.ls1e{letter-spacing:0.033067pt;}
.ls1a{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.057067pt;}
.ls14{letter-spacing:0.066560pt;}
.ls12{letter-spacing:0.112640pt;}
.ls1b{letter-spacing:0.124800pt;}
.ls16{letter-spacing:0.127360pt;}
.ls3{letter-spacing:0.154880pt;}
.ls26{letter-spacing:0.155733pt;}
.ls24{letter-spacing:0.159360pt;}
.ls10{letter-spacing:0.165867pt;}
.ls13{letter-spacing:0.173440pt;}
.ls17{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.385280pt;}
.ls20{letter-spacing:0.426133pt;}
.ls25{letter-spacing:0.426240pt;}
.ls5{letter-spacing:0.549120pt;}
.ls1d{letter-spacing:0.566400pt;}
.ls27{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2b{letter-spacing:10.832640pt;}
.ls23{letter-spacing:37.712640pt;}
.lsc{letter-spacing:42.320640pt;}
.ls22{letter-spacing:53.200640pt;}
.lsb{letter-spacing:56.400640pt;}
.lse{letter-spacing:56.891307pt;}
.ls4{letter-spacing:74.320640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.431253pt;}
.wsd{word-spacing:-12.277120pt;}
.wse{word-spacing:-12.191253pt;}
.wsa{word-spacing:-12.170987pt;}
.ws13{word-spacing:-12.160853pt;}
.wsc{word-spacing:-12.062187pt;}
.ws11{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.971200pt;}
.ws15{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.909653pt;}
.ws10{word-spacing:-11.908053pt;}
.ws7{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.852053pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.132800pt;}
._19{margin-left:-4.270507pt;}
._6{margin-left:-2.944000pt;}
._16{margin-left:-2.008960pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._e{width:2.921600pt;}
._c{width:3.877760pt;}
._d{width:4.965760pt;}
._15{width:5.862827pt;}
._9{width:6.888960pt;}
._10{width:8.445653pt;}
._f{width:9.402240pt;}
._11{width:10.358400pt;}
._12{width:13.651840pt;}
._13{width:14.554880pt;}
._14{width:15.457920pt;}
._b{width:17.104640pt;}
._a{width:18.118400pt;}
._1d{width:19.043413pt;}
._23{width:20.398080pt;}
._27{width:21.672960pt;}
._21{width:22.983253pt;}
._1f{width:24.801920pt;}
._20{width:25.750613pt;}
._17{width:29.428480pt;}
._18{width:30.606080pt;}
._1e{width:33.571840pt;}
._22{width:35.484160pt;}
._26{width:38.635947pt;}
._1c{width:39.556693pt;}
._7{width:40.517120pt;}
._8{width:41.767253pt;}
._28{width:44.833280pt;}
._1b{width:56.254080pt;}
._2a{width:60.450560pt;}
._1a{width:66.984320pt;}
._25{width:70.543360pt;}
._24{width:71.977600pt;}
._29{width:167.699840pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:5.920000pt;}
.yf7{bottom:6.240000pt;}
.y9c{bottom:9.760000pt;}
.y69{bottom:15.200000pt;}
.y76{bottom:15.360000pt;}
.y72{bottom:18.720000pt;}
.y6b{bottom:24.640000pt;}
.ya0{bottom:24.666667pt;}
.yf6{bottom:24.960000pt;}
.y6d{bottom:28.000000pt;}
.y6f{bottom:28.160000pt;}
.y9b{bottom:28.480000pt;}
.yf3{bottom:31.520000pt;}
.y68{bottom:33.920000pt;}
.ybc{bottom:33.960000pt;}
.y75{bottom:34.080000pt;}
.y6a{bottom:43.360000pt;}
.ybd{bottom:43.400000pt;}
.yf5{bottom:44.026667pt;}
.y6{bottom:54.400000pt;}
.ybe{bottom:62.120000pt;}
.yf4{bottom:62.746667pt;}
.ycb{bottom:83.840000pt;}
.y81{bottom:89.600000pt;}
.y64{bottom:92.640000pt;}
.yf2{bottom:94.080000pt;}
.yca{bottom:102.560000pt;}
.y80{bottom:108.320000pt;}
.y30{bottom:108.640000pt;}
.y9f{bottom:110.880000pt;}
.y63{bottom:111.360000pt;}
.yc9{bottom:121.280000pt;}
.y7f{bottom:127.040000pt;}
.y2f{bottom:127.360000pt;}
.y62{bottom:130.080000pt;}
.yc8{bottom:140.026667pt;}
.y2e{bottom:146.106667pt;}
.y61{bottom:148.826667pt;}
.yc7{bottom:158.746667pt;}
.y7e{bottom:160.186667pt;}
.y2d{bottom:164.826667pt;}
.y60{bottom:167.546667pt;}
.y9e{bottom:167.706667pt;}
.yc6{bottom:177.466667pt;}
.y2c{bottom:183.546667pt;}
.y5f{bottom:186.266667pt;}
.yc5{bottom:196.186667pt;}
.y2b{bottom:202.266667pt;}
.y7d{bottom:202.906667pt;}
.y5e{bottom:204.986667pt;}
.y9d{bottom:205.786667pt;}
.yc4{bottom:209.626667pt;}
.y2a{bottom:220.986667pt;}
.yce{bottom:223.706667pt;}
.yc3{bottom:228.986667pt;}
.y5d{bottom:231.706667pt;}
.y29{bottom:239.706667pt;}
.ycd{bottom:242.426667pt;}
.y9a{bottom:243.706667pt;}
.yc2{bottom:248.346667pt;}
.y5c{bottom:250.426667pt;}
.y28{bottom:258.426667pt;}
.ycc{bottom:261.146667pt;}
.y7c{bottom:264.346667pt;}
.yc1{bottom:267.706667pt;}
.y5b{bottom:269.146667pt;}
.y27{bottom:277.146667pt;}
.yf1{bottom:279.866667pt;}
.yc0{bottom:287.066667pt;}
.y5a{bottom:287.866667pt;}
.y26{bottom:295.866667pt;}
.yf0{bottom:298.586667pt;}
.y99{bottom:302.266667pt;}
.ybf{bottom:306.426667pt;}
.y59{bottom:306.586667pt;}
.y7b{bottom:307.226667pt;}
.y25{bottom:314.586667pt;}
.yef{bottom:317.306667pt;}
.y98{bottom:320.986667pt;}
.y58{bottom:325.306667pt;}
.ybb{bottom:325.946667pt;}
.y24{bottom:333.306667pt;}
.yee{bottom:336.026667pt;}
.y97{bottom:339.706667pt;}
.y57{bottom:344.026667pt;}
.y23{bottom:352.026667pt;}
.yed{bottom:354.746667pt;}
.y96{bottom:358.466667pt;}
.y56{bottom:362.786667pt;}
.y7a{bottom:368.706667pt;}
.y22{bottom:370.786667pt;}
.yec{bottom:373.506667pt;}
.y95{bottom:377.186667pt;}
.y55{bottom:381.506667pt;}
.y21{bottom:389.506667pt;}
.yeb{bottom:392.226667pt;}
.y94{bottom:395.906667pt;}
.y54{bottom:400.226667pt;}
.yba{bottom:407.426667pt;}
.y20{bottom:408.226667pt;}
.yea{bottom:410.946667pt;}
.y79{bottom:411.426667pt;}
.y93{bottom:414.626667pt;}
.y53{bottom:418.946667pt;}
.yb9{bottom:426.146667pt;}
.y1f{bottom:426.946667pt;}
.ye9{bottom:429.666667pt;}
.y92{bottom:433.346667pt;}
.y52{bottom:437.666667pt;}
.yb8{bottom:444.866667pt;}
.y1e{bottom:445.666667pt;}
.ye8{bottom:448.386667pt;}
.y91{bottom:452.066667pt;}
.y78{bottom:454.306667pt;}
.y51{bottom:456.386667pt;}
.yb7{bottom:463.586667pt;}
.y1d{bottom:464.386667pt;}
.ye7{bottom:467.106667pt;}
.y90{bottom:470.786667pt;}
.y50{bottom:475.106667pt;}
.yb6{bottom:482.306667pt;}
.y1c{bottom:485.186667pt;}
.ye6{bottom:485.826667pt;}
.y8f{bottom:489.506667pt;}
.y4f{bottom:493.826667pt;}
.yb5{bottom:501.026667pt;}
.ye5{bottom:504.546667pt;}
.y8e{bottom:508.226667pt;}
.y1b{bottom:511.746667pt;}
.y4e{bottom:512.546667pt;}
.y77{bottom:515.746667pt;}
.yb4{bottom:519.746667pt;}
.ye4{bottom:523.266667pt;}
.y8d{bottom:526.946667pt;}
.y1a{bottom:530.466667pt;}
.y4d{bottom:531.266667pt;}
.yb3{bottom:538.466667pt;}
.ye3{bottom:541.986667pt;}
.y8c{bottom:545.666667pt;}
.y19{bottom:549.186667pt;}
.y4c{bottom:549.986667pt;}
.yb2{bottom:557.186667pt;}
.ye2{bottom:560.706667pt;}
.y8b{bottom:564.386667pt;}
.y18{bottom:567.906667pt;}
.y4b{bottom:568.706667pt;}
.yb1{bottom:575.906667pt;}
.y74{bottom:577.213333pt;}
.ye1{bottom:579.453333pt;}
.y8a{bottom:583.133333pt;}
.y17{bottom:586.653333pt;}
.y4a{bottom:587.453333pt;}
.yb0{bottom:594.653333pt;}
.ye0{bottom:598.173333pt;}
.y89{bottom:601.853333pt;}
.y16{bottom:605.373333pt;}
.y49{bottom:606.173333pt;}
.yaf{bottom:613.213333pt;}
.ydf{bottom:616.893333pt;}
.y88{bottom:620.573333pt;}
.y15{bottom:624.093333pt;}
.y48{bottom:624.893333pt;}
.yae{bottom:634.813333pt;}
.yde{bottom:635.613333pt;}
.y73{bottom:638.653333pt;}
.y87{bottom:639.293333pt;}
.y14{bottom:642.813333pt;}
.y47{bottom:643.613333pt;}
.ydd{bottom:654.333333pt;}
.y86{bottom:658.013333pt;}
.y13{bottom:661.533333pt;}
.y46{bottom:662.333333pt;}
.yad{bottom:670.173333pt;}
.ydc{bottom:672.893333pt;}
.y85{bottom:677.533333pt;}
.y12{bottom:680.253333pt;}
.y45{bottom:680.893333pt;}
.ydb{bottom:691.613333pt;}
.y84{bottom:696.893333pt;}
.y11{bottom:698.973333pt;}
.y44{bottom:699.613333pt;}
.y71{bottom:700.253333pt;}
.yac{bottom:705.533333pt;}
.yda{bottom:710.333333pt;}
.y83{bottom:716.413333pt;}
.y10{bottom:717.693333pt;}
.y43{bottom:718.333333pt;}
.yd9{bottom:729.053333pt;}
.y82{bottom:735.773333pt;}
.yf{bottom:736.413333pt;}
.y42{bottom:737.053333pt;}
.yab{bottom:738.813333pt;}
.y70{bottom:742.973333pt;}
.yd8{bottom:747.773333pt;}
.ye{bottom:755.133333pt;}
.y41{bottom:755.773333pt;}
.yaa{bottom:757.533333pt;}
.yd7{bottom:766.493333pt;}
.y40{bottom:774.493333pt;}
.yd{bottom:775.773333pt;}
.ya9{bottom:776.253333pt;}
.yd6{bottom:785.213333pt;}
.y3f{bottom:793.213333pt;}
.ya8{bottom:794.973333pt;}
.yc{bottom:799.173333pt;}
.yd5{bottom:803.973333pt;}
.y6e{bottom:804.453333pt;}
.y3e{bottom:811.973333pt;}
.ya7{bottom:813.733333pt;}
.yb{bottom:814.053333pt;}
.yd4{bottom:822.693333pt;}
.y3d{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.ya6{bottom:840.453333pt;}
.yd3{bottom:841.413333pt;}
.y3c{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.ya5{bottom:859.173333pt;}
.yd2{bottom:860.133333pt;}
.y6c{bottom:866.053333pt;}
.y3b{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.ya4{bottom:877.893333pt;}
.yd1{bottom:878.853333pt;}
.y3a{bottom:886.853333pt;}
.yd0{bottom:897.573333pt;}
.ya3{bottom:902.053333pt;}
.y39{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.ycf{bottom:916.293333pt;}
.y38{bottom:924.293333pt;}
.y67{bottom:927.493333pt;}
.ya2{bottom:940.133333pt;}
.y5{bottom:942.533333pt;}
.y37{bottom:943.013333pt;}
.y36{bottom:961.733333pt;}
.y4{bottom:971.173333pt;}
.ya1{bottom:978.053333pt;}
.y35{bottom:980.453333pt;}
.y65{bottom:988.933333pt;}
.y34{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y33{bottom:1017.893333pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h12{height:2.546250pt;}
.h9{height:18.720000pt;}
.h7{height:34.374375pt;}
.hc{height:37.440000pt;}
.he{height:37.472000pt;}
.hd{height:41.280000pt;}
.hf{height:41.312000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:56.160000pt;}
.hb{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h10{height:74.912000pt;}
.h11{height:75.552000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:79.872000pt;}
.w10{width:88.800000pt;}
.w12{width:94.080000pt;}
.w11{width:94.112000pt;}
.we{width:96.352000pt;}
.wf{width:100.352000pt;}
.wa{width:132.832000pt;}
.w4{width:136.506667pt;}
.w14{width:143.386667pt;}
.w9{width:162.906667pt;}
.w7{width:164.226667pt;}
.w3{width:165.946667pt;}
.w6{width:181.146667pt;}
.w15{width:187.386667pt;}
.w5{width:198.306667pt;}
.w8{width:212.346667pt;}
.wb{width:216.546667pt;}
.wc{width:226.426667pt;}
.wd{width:242.626667pt;}
.w16{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x19{left:-3.040000pt;}
.x15{left:-2.080000pt;}
.x0{left:0.000000pt;}
.x5{left:0.960000pt;}
.x1d{left:2.240000pt;}
.x16{left:5.440000pt;}
.x1b{left:6.880000pt;}
.xb{left:12.032000pt;}
.x13{left:20.352000pt;}
.x1{left:47.999988pt;}
.x4{left:51.040000pt;}
.x12{left:55.840000pt;}
.x2{left:66.879988pt;}
.xf{left:70.080000pt;}
.xa{left:72.480000pt;}
.x3{left:96.031988pt;}
.x9{left:120.031988pt;}
.x14{left:152.506667pt;}
.x1f{left:170.106667pt;}
.x6{left:220.346667pt;}
.x20{left:235.386667pt;}
.xc{left:240.066667pt;}
.x17{left:253.186667pt;}
.x10{left:287.266667pt;}
.x18{left:342.306667pt;}
.x7{left:360.066667pt;}
.x1a{left:436.733333pt;}
.xd{left:455.613333pt;}
.x11{left:514.333333pt;}
.x1c{left:531.133333pt;}
.x8{left:561.733333pt;}
.x1e{left:611.333333pt;}
.xe{left:621.893333pt;}
}




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