
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_6ce1e125b93eae292b64fbd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_383d6c3c264b4cf6616e1774.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_a64ea1b59d1405afa72870b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_7e8182ea1360feab4d059a5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_f07b9fb0029504b4fb36be30.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_ffad2c21e154eca8eec32ef6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_638eb7f0f83ef67230eaab9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_54e49e2bb4994f7819541493.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-61.200000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.176000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.226200px;}
.ls16{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.108000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.169800px;}
.ls10{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.384000px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.733600px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws7{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.539200px;}
._7{width:4.158000px;}
._8{width:5.346000px;}
._d{width:6.394320px;}
._e{width:7.622160px;}
._b{width:8.653680px;}
._a{width:9.936000px;}
._c{width:11.124000px;}
._9{width:12.433680px;}
._11{width:13.572960px;}
._4{width:16.650000px;}
._16{width:18.047520px;}
._21{width:19.591200px;}
._10{width:20.916000px;}
._6{width:23.058000px;}
._5{width:24.138000px;}
._f{width:25.398000px;}
._1b{width:36.871920px;}
._17{width:50.684640px;}
._13{width:52.178640px;}
._14{width:66.034800px;}
._12{width:79.241760px;}
._15{width:80.735760px;}
._1f{width:95.914800px;}
._1a{width:106.461120px;}
._19{width:107.508240px;}
._18{width:109.540080px;}
._1d{width:115.994160px;}
._1c{width:122.268960px;}
._20{width:140.555520px;}
._1e{width:170.794080px;}
._3{width:1560.216960px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:1.075500px;}
.y44{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.yb7{bottom:4.665000px;}
.y83{bottom:4.680000px;}
.ybe{bottom:4.845000px;}
.y5a{bottom:5.010000px;}
.y8a{bottom:5.025000px;}
.y85{bottom:5.040000px;}
.y8c{bottom:5.205000px;}
.y88{bottom:5.220000px;}
.y2{bottom:9.930000px;}
.y15a{bottom:16.740000px;}
.y160{bottom:17.085000px;}
.y15c{bottom:17.100000px;}
.y57{bottom:17.449500px;}
.y43{bottom:21.045000px;}
.y4{bottom:23.070000px;}
.y82{bottom:23.400000px;}
.y109{bottom:23.745000px;}
.yca{bottom:23.760000px;}
.y4c{bottom:30.949500px;}
.y56{bottom:33.109500px;}
.y42{bottom:38.190000px;}
.y3{bottom:48.090000px;}
.y55{bottom:50.749500px;}
.y4b{bottom:51.469500px;}
.y41{bottom:55.470000px;}
.y4a{bottom:64.429500px;}
.y54{bottom:66.409500px;}
.y8{bottom:72.000000px;}
.y40{bottom:72.750000px;}
.y53{bottom:83.689500px;}
.y49{bottom:86.389500px;}
.y3f{bottom:90.030000px;}
.y7{bottom:91.296000px;}
.y52{bottom:99.709500px;}
.y3e{bottom:107.310000px;}
.y16d{bottom:112.176000px;}
.y51{bottom:115.189500px;}
.ye0{bottom:116.676000px;}
.y98{bottom:117.936000px;}
.y10c{bottom:121.896000px;}
.yc2{bottom:122.076000px;}
.y3d{bottom:124.410000px;}
.y16c{bottom:129.816000px;}
.y50{bottom:130.669500px;}
.ydf{bottom:133.776000px;}
.y97{bottom:135.216000px;}
.yc1{bottom:139.176000px;}
.y46{bottom:139.180500px;}
.y138{bottom:140.256000px;}
.y3c{bottom:141.690000px;}
.y4f{bottom:146.149500px;}
.y16b{bottom:147.096000px;}
.y48{bottom:148.489500px;}
.yde{bottom:151.050000px;}
.y96{bottom:152.490000px;}
.yc0{bottom:156.810000px;}
.y137{bottom:158.610000px;}
.y3b{bottom:158.970000px;}
.y47{bottom:159.109500px;}
.y4e{bottom:161.269500px;}
.y16a{bottom:164.190000px;}
.ydd{bottom:167.970000px;}
.y95{bottom:169.770000px;}
.ybf{bottom:172.830000px;}
.y58{bottom:175.669500px;}
.y3a{bottom:176.250000px;}
.y136{bottom:176.610000px;}
.y169{bottom:181.110000px;}
.ybd{bottom:183.105000px;}
.ydc{bottom:185.610000px;}
.y94{bottom:186.870000px;}
.y39{bottom:193.530000px;}
.y135{bottom:193.890000px;}
.y168{bottom:198.750000px;}
.ybc{bottom:202.545000px;}
.ydb{bottom:202.890000px;}
.y93{bottom:204.150000px;}
.y38{bottom:210.810000px;}
.y134{bottom:211.530000px;}
.y167{bottom:216.030000px;}
.yda{bottom:220.170000px;}
.y10b{bottom:221.085000px;}
.y92{bottom:221.430000px;}
.ybb{bottom:221.985000px;}
.y37{bottom:227.910000px;}
.y133{bottom:228.630000px;}
.y166{bottom:233.310000px;}
.yd9{bottom:237.270000px;}
.y91{bottom:238.710000px;}
.yba{bottom:241.245000px;}
.y36{bottom:245.190000px;}
.y132{bottom:245.910000px;}
.y165{bottom:250.590000px;}
.yd8{bottom:254.550000px;}
.y90{bottom:255.630000px;}
.y10a{bottom:259.065000px;}
.yb9{bottom:260.685000px;}
.y35{bottom:262.470000px;}
.y131{bottom:264.270000px;}
.y164{bottom:267.690000px;}
.yd7{bottom:271.470000px;}
.y8f{bottom:273.270000px;}
.y34{bottom:279.750000px;}
.yb8{bottom:279.945000px;}
.y130{bottom:282.630000px;}
.y163{bottom:284.610000px;}
.yd6{bottom:289.110000px;}
.y8e{bottom:290.370000px;}
.y108{bottom:297.045000px;}
.y33{bottom:297.060000px;}
.yb6{bottom:299.385000px;}
.y12f{bottom:300.990000px;}
.y162{bottom:302.250000px;}
.y8d{bottom:304.785000px;}
.yd5{bottom:306.390000px;}
.y1f{bottom:308.580000px;}
.y32{bottom:313.980000px;}
.y161{bottom:317.730000px;}
.y12e{bottom:318.090000px;}
.yb5{bottom:322.410000px;}
.yd4{bottom:323.670000px;}
.y8b{bottom:324.045000px;}
.y15f{bottom:325.125000px;}
.y1e{bottom:325.680000px;}
.y11{bottom:328.185000px;}
.y31{bottom:331.080000px;}
.y12d{bottom:335.010000px;}
.y107{bottom:335.025000px;}
.yb4{bottom:339.330000px;}
.yd3{bottom:340.770000px;}
.y89{bottom:343.485000px;}
.y30{bottom:346.560000px;}
.y1d{bottom:349.800000px;}
.y12c{bottom:352.695000px;}
.y106{bottom:354.495000px;}
.y15e{bottom:356.475000px;}
.yb3{bottom:357.015000px;}
.yd2{bottom:357.735000px;}
.y2f{bottom:362.040000px;}
.y87{bottom:362.775000px;}
.y12b{bottom:369.975000px;}
.y1c{bottom:373.920000px;}
.yb2{bottom:374.295000px;}
.yd1{bottom:375.375000px;}
.y2e{bottom:377.700000px;}
.y86{bottom:382.215000px;}
.y12a{bottom:387.255000px;}
.y15d{bottom:387.975000px;}
.yb1{bottom:391.575000px;}
.yd0{bottom:392.655000px;}
.y2d{bottom:393.180000px;}
.y105{bottom:394.815000px;}
.y1b{bottom:398.040000px;}
.y84{bottom:401.655000px;}
.y129{bottom:404.535000px;}
.ycf{bottom:406.875000px;}
.y104{bottom:407.955000px;}
.y2c{bottom:408.660000px;}
.yb0{bottom:408.675000px;}
.y15b{bottom:419.295000px;}
.y81{bottom:420.915000px;}
.y128{bottom:421.635000px;}
.y1a{bottom:422.160000px;}
.y2b{bottom:424.140000px;}
.yaf{bottom:425.595000px;}
.yce{bottom:426.315000px;}
.y127{bottom:438.555000px;}
.y2a{bottom:439.620000px;}
.y103{bottom:442.695000px;}
.yae{bottom:442.875000px;}
.ycd{bottom:445.575000px;}
.y19{bottom:446.460000px;}
.y159{bottom:450.615000px;}
.y29{bottom:455.280000px;}
.y126{bottom:456.195000px;}
.y102{bottom:459.975000px;}
.yad{bottom:460.515000px;}
.y80{bottom:462.315000px;}
.ycc{bottom:465.015000px;}
.y18{bottom:470.580000px;}
.y28{bottom:470.760000px;}
.y125{bottom:473.475000px;}
.y101{bottom:477.255000px;}
.yac{bottom:477.795000px;}
.y7f{bottom:479.595000px;}
.y158{bottom:484.095000px;}
.ycb{bottom:484.275000px;}
.y27{bottom:486.240000px;}
.y124{bottom:490.755000px;}
.y100{bottom:494.175000px;}
.y17{bottom:494.700000px;}
.yab{bottom:495.075000px;}
.y157{bottom:495.795000px;}
.y7e{bottom:497.235000px;}
.y26{bottom:501.720000px;}
.yc9{bottom:503.715000px;}
.y123{bottom:507.855000px;}
.yaa{bottom:511.815000px;}
.y156{bottom:513.075000px;}
.y7d{bottom:514.335000px;}
.y25{bottom:517.380000px;}
.y16{bottom:518.820000px;}
.y122{bottom:524.775000px;}
.yff{bottom:528.915000px;}
.ya9{bottom:529.455000px;}
.y155{bottom:530.535000px;}
.y7c{bottom:531.615000px;}
.y24{bottom:532.860000px;}
.yc8{bottom:541.695000px;}
.y121{bottom:542.415000px;}
.y15{bottom:542.940000px;}
.yfe{bottom:546.195000px;}
.ya8{bottom:546.735000px;}
.y23{bottom:548.385000px;}
.y7b{bottom:548.895000px;}
.y120{bottom:559.695000px;}
.yfd{bottom:563.475000px;}
.y22{bottom:563.865000px;}
.ya7{bottom:564.015000px;}
.y7a{bottom:566.175000px;}
.y14{bottom:567.105000px;}
.y154{bottom:567.255000px;}
.y11f{bottom:576.975000px;}
.y21{bottom:579.525000px;}
.ya6{bottom:580.935000px;}
.yfc{bottom:581.835000px;}
.y79{bottom:583.095000px;}
.y153{bottom:585.255000px;}
.y13{bottom:591.405000px;}
.y11e{bottom:593.895000px;}
.ya5{bottom:598.575000px;}
.yfb{bottom:600.195000px;}
.yc7{bottom:600.375000px;}
.y78{bottom:600.735000px;}
.y152{bottom:602.895000px;}
.y20{bottom:610.305000px;}
.y11d{bottom:611.385000px;}
.y45{bottom:612.645000px;}
.y12{bottom:615.525000px;}
.ya4{bottom:615.705000px;}
.y77{bottom:617.865000px;}
.yfa{bottom:618.585000px;}
.y151{bottom:621.105000px;}
.y11c{bottom:628.665000px;}
.ya3{bottom:632.625000px;}
.y76{bottom:635.145000px;}
.yf9{bottom:635.685000px;}
.y150{bottom:639.465000px;}
.y11b{bottom:645.945000px;}
.ya2{bottom:650.265000px;}
.y75{bottom:652.425000px;}
.yf8{bottom:652.965000px;}
.y14f{bottom:657.465000px;}
.y11a{bottom:663.225000px;}
.ya1{bottom:667.545000px;}
.y74{bottom:669.705000px;}
.yf7{bottom:670.245000px;}
.y14e{bottom:675.105000px;}
.y119{bottom:680.505000px;}
.ya0{bottom:685.905000px;}
.y73{bottom:686.625000px;}
.yf6{bottom:687.165000px;}
.y14d{bottom:693.465000px;}
.y118{bottom:698.865000px;}
.y9f{bottom:703.005000px;}
.y72{bottom:704.085000px;}
.yf5{bottom:704.805000px;}
.y14c{bottom:711.645000px;}
.y117{bottom:717.045000px;}
.yf4{bottom:719.025000px;}
.y9e{bottom:721.005000px;}
.y71{bottom:721.365000px;}
.y14b{bottom:729.645000px;}
.y116{bottom:735.405000px;}
.yf3{bottom:738.285000px;}
.y70{bottom:738.645000px;}
.y14a{bottom:747.285000px;}
.y115{bottom:752.685000px;}
.y6f{bottom:755.925000px;}
.yf2{bottom:757.725000px;}
.y149{bottom:764.565000px;}
.y17b{bottom:768.885000px;}
.y114{bottom:769.605000px;}
.y6e{bottom:772.845000px;}
.yc6{bottom:773.205000px;}
.yf1{bottom:777.165000px;}
.y148{bottom:781.845000px;}
.y17a{bottom:786.165000px;}
.y113{bottom:787.245000px;}
.y6d{bottom:790.485000px;}
.yf0{bottom:796.425000px;}
.y147{bottom:798.765000px;}
.y179{bottom:803.265000px;}
.y112{bottom:804.345000px;}
.y6c{bottom:807.585000px;}
.yef{bottom:815.865000px;}
.y146{bottom:816.225000px;}
.y178{bottom:820.545000px;}
.y111{bottom:821.625000px;}
.y6b{bottom:824.865000px;}
.y145{bottom:833.505000px;}
.y177{bottom:837.825000px;}
.yee{bottom:838.545000px;}
.y110{bottom:838.905000px;}
.yc5{bottom:841.785000px;}
.y6a{bottom:842.145000px;}
.y144{bottom:851.865000px;}
.y176{bottom:855.105000px;}
.yed{bottom:856.185000px;}
.y69{bottom:859.425000px;}
.y143{bottom:869.145000px;}
.y175{bottom:872.430000px;}
.yec{bottom:873.510000px;}
.y68{bottom:876.390000px;}
.y9d{bottom:876.750000px;}
.y142{bottom:887.550000px;}
.y174{bottom:889.710000px;}
.y10f{bottom:890.430000px;}
.yeb{bottom:890.790000px;}
.y67{bottom:894.030000px;}
.y141{bottom:904.650000px;}
.y173{bottom:906.450000px;}
.yea{bottom:907.890000px;}
.y66{bottom:911.130000px;}
.y140{bottom:922.650000px;}
.y172{bottom:924.090000px;}
.ye9{bottom:925.170000px;}
.y65{bottom:928.410000px;}
.y13f{bottom:940.290000px;}
.y171{bottom:941.370000px;}
.ye8{bottom:942.450000px;}
.y64{bottom:945.690000px;}
.y10{bottom:953.610000px;}
.yf{bottom:955.410000px;}
.y13e{bottom:957.570000px;}
.y170{bottom:958.650000px;}
.ye7{bottom:959.370000px;}
.ye{bottom:960.450000px;}
.y63{bottom:962.970000px;}
.y13d{bottom:975.930000px;}
.ye6{bottom:977.010000px;}
.yd{bottom:977.550000px;}
.y62{bottom:979.890000px;}
.y9c{bottom:980.250000px;}
.y13c{bottom:993.210000px;}
.ye5{bottom:994.290000px;}
.yc{bottom:994.830000px;}
.y16f{bottom:995.370000px;}
.yc4{bottom:996.990000px;}
.y61{bottom:997.350000px;}
.ye4{bottom:1011.390000px;}
.y16e{bottom:1013.550000px;}
.y9b{bottom:1014.270000px;}
.y60{bottom:1014.630000px;}
.ye3{bottom:1028.670000px;}
.y10e{bottom:1029.750000px;}
.yb{bottom:1030.290000px;}
.y5f{bottom:1031.910000px;}
.ye2{bottom:1047.030000px;}
.y10d{bottom:1048.110000px;}
.y5e{bottom:1049.190000px;}
.ya{bottom:1054.410000px;}
.y13b{bottom:1064.310000px;}
.ye1{bottom:1065.390000px;}
.y5d{bottom:1066.110000px;}
.y9a{bottom:1066.470000px;}
.y13a{bottom:1082.310000px;}
.y9{bottom:1082.850000px;}
.yc3{bottom:1083.390000px;}
.y5c{bottom:1083.750000px;}
.y59{bottom:1086.480000px;}
.y139{bottom:1099.770000px;}
.y99{bottom:1100.490000px;}
.y5b{bottom:1100.850000px;}
.y6{bottom:1116.510000px;}
.y1{bottom:1123.530000px;}
.hb{height:5.653125px;}
.hf{height:12.012891px;}
.h17{height:18.525000px;}
.h1d{height:18.540000px;}
.h19{height:18.561000px;}
.h18{height:18.705000px;}
.h1e{height:18.720000px;}
.h20{height:18.741000px;}
.h14{height:27.540000px;}
.h24{height:29.664141px;}
.h12{height:29.678906px;}
.h6{height:30.077578px;}
.h22{height:30.585000px;}
.h23{height:30.621000px;}
.h21{height:36.281250px;}
.h16{height:37.245000px;}
.h1c{height:40.964766px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h1f{height:42.164648px;}
.h10{height:52.971680px;}
.h13{height:54.421875px;}
.h8{height:57.324375px;}
.h1a{height:58.621992px;}
.h7{height:58.651172px;}
.ha{height:60.226875px;}
.h1b{height:61.423863px;}
.h15{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h11{height:188.275500px;}
.hc{height:625.050000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:-518.880000px;}
.w9{width:53.091000px;}
.wf{width:55.980000px;}
.w10{width:56.016000px;}
.w6{width:77.580000px;}
.w2{width:104.040000px;}
.w1e{width:104.616000px;}
.we{width:110.196000px;}
.w1a{width:117.216000px;}
.wa{width:121.356000px;}
.w17{width:124.236000px;}
.w1f{width:126.720000px;}
.wc{width:127.281000px;}
.w1d{width:127.965000px;}
.wd{width:131.025000px;}
.w4{width:132.651000px;}
.w15{width:144.030000px;}
.w21{width:144.561000px;}
.w13{width:147.636000px;}
.w19{width:149.565000px;}
.w18{width:149.601000px;}
.w12{width:153.570000px;}
.w16{width:155.010000px;}
.w1c{width:157.155000px;}
.w1b{width:161.850000px;}
.wb{width:166.530000px;}
.w8{width:172.440000px;}
.w20{width:173.910000px;}
.w14{width:176.595000px;}
.w11{width:254.355000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x17{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1b{left:18.180000px;}
.x15{left:19.980000px;}
.x14{left:28.980000px;}
.xe{left:43.740000px;}
.x1c{left:47.700000px;}
.xf{left:50.760000px;}
.xd{left:55.080000px;}
.x1d{left:57.060000px;}
.x13{left:67.134000px;}
.x11{left:71.814000px;}
.x12{left:73.254000px;}
.x1{left:78.327000px;}
.x8{left:86.436000px;}
.x2{left:95.763000px;}
.x1e{left:102.774000px;}
.x1a{left:106.734000px;}
.x25{left:113.436000px;}
.x10{left:124.554000px;}
.x2b{left:134.676000px;}
.x5{left:141.345000px;}
.x20{left:145.476000px;}
.x2e{left:156.270000px;}
.x31{left:163.470000px;}
.x35{left:170.670000px;}
.x26{left:178.950000px;}
.x3{left:182.370000px;}
.x21{left:199.290000px;}
.x16{left:219.090000px;}
.x36{left:276.015000px;}
.x32{left:281.415000px;}
.x27{left:289.875000px;}
.x2f{left:312.015000px;}
.x22{left:321.375000px;}
.x28{left:346.575000px;}
.x29{left:403.275000px;}
.x2c{left:437.340000px;}
.x33{left:444.000000px;}
.x2a{left:460.020000px;}
.x23{left:488.640000px;}
.xa{left:532.365000px;}
.xb{left:573.945000px;}
.x37{left:578.100000px;}
.xc{left:585.510000px;}
.x30{left:587.490000px;}
.x34{left:601.890000px;}
.x2d{left:614.670000px;}
.x24{left:616.650000px;}
.x7{left:784.440000px;}
.x9{left:806.580000px;}
.x18{left:815.580000px;}
.x19{left:1412.040000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-54.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls16{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.150933pt;}
.ls10{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.674667pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws7{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.257067pt;}
._7{width:3.696000pt;}
._8{width:4.752000pt;}
._d{width:5.683840pt;}
._e{width:6.775253pt;}
._b{width:7.692160pt;}
._a{width:8.832000pt;}
._c{width:9.888000pt;}
._9{width:11.052160pt;}
._11{width:12.064853pt;}
._4{width:14.800000pt;}
._16{width:16.042240pt;}
._21{width:17.414400pt;}
._10{width:18.592000pt;}
._6{width:20.496000pt;}
._5{width:21.456000pt;}
._f{width:22.576000pt;}
._1b{width:32.775040pt;}
._17{width:45.053013pt;}
._13{width:46.381013pt;}
._14{width:58.697600pt;}
._12{width:70.437120pt;}
._15{width:71.765120pt;}
._1f{width:85.257600pt;}
._1a{width:94.632107pt;}
._19{width:95.562880pt;}
._18{width:97.368960pt;}
._1d{width:103.105920pt;}
._1c{width:108.683520pt;}
._20{width:124.938240pt;}
._1e{width:151.816960pt;}
._3{width:1386.859520pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.956000pt;}
.y44{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.yb7{bottom:4.146667pt;}
.y83{bottom:4.160000pt;}
.ybe{bottom:4.306667pt;}
.y5a{bottom:4.453333pt;}
.y8a{bottom:4.466667pt;}
.y85{bottom:4.480000pt;}
.y8c{bottom:4.626667pt;}
.y88{bottom:4.640000pt;}
.y2{bottom:8.826667pt;}
.y15a{bottom:14.880000pt;}
.y160{bottom:15.186667pt;}
.y15c{bottom:15.200000pt;}
.y57{bottom:15.510667pt;}
.y43{bottom:18.706667pt;}
.y4{bottom:20.506667pt;}
.y82{bottom:20.800000pt;}
.y109{bottom:21.106667pt;}
.yca{bottom:21.120000pt;}
.y4c{bottom:27.510667pt;}
.y56{bottom:29.430667pt;}
.y42{bottom:33.946667pt;}
.y3{bottom:42.746667pt;}
.y55{bottom:45.110667pt;}
.y4b{bottom:45.750667pt;}
.y41{bottom:49.306667pt;}
.y4a{bottom:57.270667pt;}
.y54{bottom:59.030667pt;}
.y8{bottom:64.000000pt;}
.y40{bottom:64.666667pt;}
.y53{bottom:74.390667pt;}
.y49{bottom:76.790667pt;}
.y3f{bottom:80.026667pt;}
.y7{bottom:81.152000pt;}
.y52{bottom:88.630667pt;}
.y3e{bottom:95.386667pt;}
.y16d{bottom:99.712000pt;}
.y51{bottom:102.390667pt;}
.ye0{bottom:103.712000pt;}
.y98{bottom:104.832000pt;}
.y10c{bottom:108.352000pt;}
.yc2{bottom:108.512000pt;}
.y3d{bottom:110.586667pt;}
.y16c{bottom:115.392000pt;}
.y50{bottom:116.150667pt;}
.ydf{bottom:118.912000pt;}
.y97{bottom:120.192000pt;}
.yc1{bottom:123.712000pt;}
.y46{bottom:123.716000pt;}
.y138{bottom:124.672000pt;}
.y3c{bottom:125.946667pt;}
.y4f{bottom:129.910667pt;}
.y16b{bottom:130.752000pt;}
.y48{bottom:131.990667pt;}
.yde{bottom:134.266667pt;}
.y96{bottom:135.546667pt;}
.yc0{bottom:139.386667pt;}
.y137{bottom:140.986667pt;}
.y3b{bottom:141.306667pt;}
.y47{bottom:141.430667pt;}
.y4e{bottom:143.350667pt;}
.y16a{bottom:145.946667pt;}
.ydd{bottom:149.306667pt;}
.y95{bottom:150.906667pt;}
.ybf{bottom:153.626667pt;}
.y58{bottom:156.150667pt;}
.y3a{bottom:156.666667pt;}
.y136{bottom:156.986667pt;}
.y169{bottom:160.986667pt;}
.ybd{bottom:162.760000pt;}
.ydc{bottom:164.986667pt;}
.y94{bottom:166.106667pt;}
.y39{bottom:172.026667pt;}
.y135{bottom:172.346667pt;}
.y168{bottom:176.666667pt;}
.ybc{bottom:180.040000pt;}
.ydb{bottom:180.346667pt;}
.y93{bottom:181.466667pt;}
.y38{bottom:187.386667pt;}
.y134{bottom:188.026667pt;}
.y167{bottom:192.026667pt;}
.yda{bottom:195.706667pt;}
.y10b{bottom:196.520000pt;}
.y92{bottom:196.826667pt;}
.ybb{bottom:197.320000pt;}
.y37{bottom:202.586667pt;}
.y133{bottom:203.226667pt;}
.y166{bottom:207.386667pt;}
.yd9{bottom:210.906667pt;}
.y91{bottom:212.186667pt;}
.yba{bottom:214.440000pt;}
.y36{bottom:217.946667pt;}
.y132{bottom:218.586667pt;}
.y165{bottom:222.746667pt;}
.yd8{bottom:226.266667pt;}
.y90{bottom:227.226667pt;}
.y10a{bottom:230.280000pt;}
.yb9{bottom:231.720000pt;}
.y35{bottom:233.306667pt;}
.y131{bottom:234.906667pt;}
.y164{bottom:237.946667pt;}
.yd7{bottom:241.306667pt;}
.y8f{bottom:242.906667pt;}
.y34{bottom:248.666667pt;}
.yb8{bottom:248.840000pt;}
.y130{bottom:251.226667pt;}
.y163{bottom:252.986667pt;}
.yd6{bottom:256.986667pt;}
.y8e{bottom:258.106667pt;}
.y108{bottom:264.040000pt;}
.y33{bottom:264.053333pt;}
.yb6{bottom:266.120000pt;}
.y12f{bottom:267.546667pt;}
.y162{bottom:268.666667pt;}
.y8d{bottom:270.920000pt;}
.yd5{bottom:272.346667pt;}
.y1f{bottom:274.293333pt;}
.y32{bottom:279.093333pt;}
.y161{bottom:282.426667pt;}
.y12e{bottom:282.746667pt;}
.yb5{bottom:286.586667pt;}
.yd4{bottom:287.706667pt;}
.y8b{bottom:288.040000pt;}
.y15f{bottom:289.000000pt;}
.y1e{bottom:289.493333pt;}
.y11{bottom:291.720000pt;}
.y31{bottom:294.293333pt;}
.y12d{bottom:297.786667pt;}
.y107{bottom:297.800000pt;}
.yb4{bottom:301.626667pt;}
.yd3{bottom:302.906667pt;}
.y89{bottom:305.320000pt;}
.y30{bottom:308.053333pt;}
.y1d{bottom:310.933333pt;}
.y12c{bottom:313.506667pt;}
.y106{bottom:315.106667pt;}
.y15e{bottom:316.866667pt;}
.yb3{bottom:317.346667pt;}
.yd2{bottom:317.986667pt;}
.y2f{bottom:321.813333pt;}
.y87{bottom:322.466667pt;}
.y12b{bottom:328.866667pt;}
.y1c{bottom:332.373333pt;}
.yb2{bottom:332.706667pt;}
.yd1{bottom:333.666667pt;}
.y2e{bottom:335.733333pt;}
.y86{bottom:339.746667pt;}
.y12a{bottom:344.226667pt;}
.y15d{bottom:344.866667pt;}
.yb1{bottom:348.066667pt;}
.yd0{bottom:349.026667pt;}
.y2d{bottom:349.493333pt;}
.y105{bottom:350.946667pt;}
.y1b{bottom:353.813333pt;}
.y84{bottom:357.026667pt;}
.y129{bottom:359.586667pt;}
.ycf{bottom:361.666667pt;}
.y104{bottom:362.626667pt;}
.y2c{bottom:363.253333pt;}
.yb0{bottom:363.266667pt;}
.y15b{bottom:372.706667pt;}
.y81{bottom:374.146667pt;}
.y128{bottom:374.786667pt;}
.y1a{bottom:375.253333pt;}
.y2b{bottom:377.013333pt;}
.yaf{bottom:378.306667pt;}
.yce{bottom:378.946667pt;}
.y127{bottom:389.826667pt;}
.y2a{bottom:390.773333pt;}
.y103{bottom:393.506667pt;}
.yae{bottom:393.666667pt;}
.ycd{bottom:396.066667pt;}
.y19{bottom:396.853333pt;}
.y159{bottom:400.546667pt;}
.y29{bottom:404.693333pt;}
.y126{bottom:405.506667pt;}
.y102{bottom:408.866667pt;}
.yad{bottom:409.346667pt;}
.y80{bottom:410.946667pt;}
.ycc{bottom:413.346667pt;}
.y18{bottom:418.293333pt;}
.y28{bottom:418.453333pt;}
.y125{bottom:420.866667pt;}
.y101{bottom:424.226667pt;}
.yac{bottom:424.706667pt;}
.y7f{bottom:426.306667pt;}
.y158{bottom:430.306667pt;}
.ycb{bottom:430.466667pt;}
.y27{bottom:432.213333pt;}
.y124{bottom:436.226667pt;}
.y100{bottom:439.266667pt;}
.y17{bottom:439.733333pt;}
.yab{bottom:440.066667pt;}
.y157{bottom:440.706667pt;}
.y7e{bottom:441.986667pt;}
.y26{bottom:445.973333pt;}
.yc9{bottom:447.746667pt;}
.y123{bottom:451.426667pt;}
.yaa{bottom:454.946667pt;}
.y156{bottom:456.066667pt;}
.y7d{bottom:457.186667pt;}
.y25{bottom:459.893333pt;}
.y16{bottom:461.173333pt;}
.y122{bottom:466.466667pt;}
.yff{bottom:470.146667pt;}
.ya9{bottom:470.626667pt;}
.y155{bottom:471.586667pt;}
.y7c{bottom:472.546667pt;}
.y24{bottom:473.653333pt;}
.yc8{bottom:481.506667pt;}
.y121{bottom:482.146667pt;}
.y15{bottom:482.613333pt;}
.yfe{bottom:485.506667pt;}
.ya8{bottom:485.986667pt;}
.y23{bottom:487.453333pt;}
.y7b{bottom:487.906667pt;}
.y120{bottom:497.506667pt;}
.yfd{bottom:500.866667pt;}
.y22{bottom:501.213333pt;}
.ya7{bottom:501.346667pt;}
.y7a{bottom:503.266667pt;}
.y14{bottom:504.093333pt;}
.y154{bottom:504.226667pt;}
.y11f{bottom:512.866667pt;}
.y21{bottom:515.133333pt;}
.ya6{bottom:516.386667pt;}
.yfc{bottom:517.186667pt;}
.y79{bottom:518.306667pt;}
.y153{bottom:520.226667pt;}
.y13{bottom:525.693333pt;}
.y11e{bottom:527.906667pt;}
.ya5{bottom:532.066667pt;}
.yfb{bottom:533.506667pt;}
.yc7{bottom:533.666667pt;}
.y78{bottom:533.986667pt;}
.y152{bottom:535.906667pt;}
.y20{bottom:542.493333pt;}
.y11d{bottom:543.453333pt;}
.y45{bottom:544.573333pt;}
.y12{bottom:547.133333pt;}
.ya4{bottom:547.293333pt;}
.y77{bottom:549.213333pt;}
.yfa{bottom:549.853333pt;}
.y151{bottom:552.093333pt;}
.y11c{bottom:558.813333pt;}
.ya3{bottom:562.333333pt;}
.y76{bottom:564.573333pt;}
.yf9{bottom:565.053333pt;}
.y150{bottom:568.413333pt;}
.y11b{bottom:574.173333pt;}
.ya2{bottom:578.013333pt;}
.y75{bottom:579.933333pt;}
.yf8{bottom:580.413333pt;}
.y14f{bottom:584.413333pt;}
.y11a{bottom:589.533333pt;}
.ya1{bottom:593.373333pt;}
.y74{bottom:595.293333pt;}
.yf7{bottom:595.773333pt;}
.y14e{bottom:600.093333pt;}
.y119{bottom:604.893333pt;}
.ya0{bottom:609.693333pt;}
.y73{bottom:610.333333pt;}
.yf6{bottom:610.813333pt;}
.y14d{bottom:616.413333pt;}
.y118{bottom:621.213333pt;}
.y9f{bottom:624.893333pt;}
.y72{bottom:625.853333pt;}
.yf5{bottom:626.493333pt;}
.y14c{bottom:632.573333pt;}
.y117{bottom:637.373333pt;}
.yf4{bottom:639.133333pt;}
.y9e{bottom:640.893333pt;}
.y71{bottom:641.213333pt;}
.y14b{bottom:648.573333pt;}
.y116{bottom:653.693333pt;}
.yf3{bottom:656.253333pt;}
.y70{bottom:656.573333pt;}
.y14a{bottom:664.253333pt;}
.y115{bottom:669.053333pt;}
.y6f{bottom:671.933333pt;}
.yf2{bottom:673.533333pt;}
.y149{bottom:679.613333pt;}
.y17b{bottom:683.453333pt;}
.y114{bottom:684.093333pt;}
.y6e{bottom:686.973333pt;}
.yc6{bottom:687.293333pt;}
.yf1{bottom:690.813333pt;}
.y148{bottom:694.973333pt;}
.y17a{bottom:698.813333pt;}
.y113{bottom:699.773333pt;}
.y6d{bottom:702.653333pt;}
.yf0{bottom:707.933333pt;}
.y147{bottom:710.013333pt;}
.y179{bottom:714.013333pt;}
.y112{bottom:714.973333pt;}
.y6c{bottom:717.853333pt;}
.yef{bottom:725.213333pt;}
.y146{bottom:725.533333pt;}
.y178{bottom:729.373333pt;}
.y111{bottom:730.333333pt;}
.y6b{bottom:733.213333pt;}
.y145{bottom:740.893333pt;}
.y177{bottom:744.733333pt;}
.yee{bottom:745.373333pt;}
.y110{bottom:745.693333pt;}
.yc5{bottom:748.253333pt;}
.y6a{bottom:748.573333pt;}
.y144{bottom:757.213333pt;}
.y176{bottom:760.093333pt;}
.yed{bottom:761.053333pt;}
.y69{bottom:763.933333pt;}
.y143{bottom:772.573333pt;}
.y175{bottom:775.493333pt;}
.yec{bottom:776.453333pt;}
.y68{bottom:779.013333pt;}
.y9d{bottom:779.333333pt;}
.y142{bottom:788.933333pt;}
.y174{bottom:790.853333pt;}
.y10f{bottom:791.493333pt;}
.yeb{bottom:791.813333pt;}
.y67{bottom:794.693333pt;}
.y141{bottom:804.133333pt;}
.y173{bottom:805.733333pt;}
.yea{bottom:807.013333pt;}
.y66{bottom:809.893333pt;}
.y140{bottom:820.133333pt;}
.y172{bottom:821.413333pt;}
.ye9{bottom:822.373333pt;}
.y65{bottom:825.253333pt;}
.y13f{bottom:835.813333pt;}
.y171{bottom:836.773333pt;}
.ye8{bottom:837.733333pt;}
.y64{bottom:840.613333pt;}
.y10{bottom:847.653333pt;}
.yf{bottom:849.253333pt;}
.y13e{bottom:851.173333pt;}
.y170{bottom:852.133333pt;}
.ye7{bottom:852.773333pt;}
.ye{bottom:853.733333pt;}
.y63{bottom:855.973333pt;}
.y13d{bottom:867.493333pt;}
.ye6{bottom:868.453333pt;}
.yd{bottom:868.933333pt;}
.y62{bottom:871.013333pt;}
.y9c{bottom:871.333333pt;}
.y13c{bottom:882.853333pt;}
.ye5{bottom:883.813333pt;}
.yc{bottom:884.293333pt;}
.y16f{bottom:884.773333pt;}
.yc4{bottom:886.213333pt;}
.y61{bottom:886.533333pt;}
.ye4{bottom:899.013333pt;}
.y16e{bottom:900.933333pt;}
.y9b{bottom:901.573333pt;}
.y60{bottom:901.893333pt;}
.ye3{bottom:914.373333pt;}
.y10e{bottom:915.333333pt;}
.yb{bottom:915.813333pt;}
.y5f{bottom:917.253333pt;}
.ye2{bottom:930.693333pt;}
.y10d{bottom:931.653333pt;}
.y5e{bottom:932.613333pt;}
.ya{bottom:937.253333pt;}
.y13b{bottom:946.053333pt;}
.ye1{bottom:947.013333pt;}
.y5d{bottom:947.653333pt;}
.y9a{bottom:947.973333pt;}
.y13a{bottom:962.053333pt;}
.y9{bottom:962.533333pt;}
.yc3{bottom:963.013333pt;}
.y5c{bottom:963.333333pt;}
.y59{bottom:965.760000pt;}
.y139{bottom:977.573333pt;}
.y99{bottom:978.213333pt;}
.y5b{bottom:978.533333pt;}
.y6{bottom:992.453333pt;}
.y1{bottom:998.693333pt;}
.hb{height:5.025000pt;}
.hf{height:10.678125pt;}
.h17{height:16.466667pt;}
.h1d{height:16.480000pt;}
.h19{height:16.498667pt;}
.h18{height:16.626667pt;}
.h1e{height:16.640000pt;}
.h20{height:16.658667pt;}
.h14{height:24.480000pt;}
.h24{height:26.368125pt;}
.h12{height:26.381250pt;}
.h6{height:26.735625pt;}
.h22{height:27.186667pt;}
.h23{height:27.218667pt;}
.h21{height:32.250000pt;}
.h16{height:33.106667pt;}
.h1c{height:36.413125pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h1f{height:37.479688pt;}
.h10{height:47.085938pt;}
.h13{height:48.375000pt;}
.h8{height:50.955000pt;}
.h1a{height:52.108438pt;}
.h7{height:52.134375pt;}
.ha{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h15{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h11{height:167.356000pt;}
.hc{height:555.600000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:-461.226667pt;}
.w9{width:47.192000pt;}
.wf{width:49.760000pt;}
.w10{width:49.792000pt;}
.w6{width:68.960000pt;}
.w2{width:92.480000pt;}
.w1e{width:92.992000pt;}
.we{width:97.952000pt;}
.w1a{width:104.192000pt;}
.wa{width:107.872000pt;}
.w17{width:110.432000pt;}
.w1f{width:112.640000pt;}
.wc{width:113.138667pt;}
.w1d{width:113.746667pt;}
.wd{width:116.466667pt;}
.w4{width:117.912000pt;}
.w15{width:128.026667pt;}
.w21{width:128.498667pt;}
.w13{width:131.232000pt;}
.w19{width:132.946667pt;}
.w18{width:132.978667pt;}
.w12{width:136.506667pt;}
.w16{width:137.786667pt;}
.w1c{width:139.693333pt;}
.w1b{width:143.866667pt;}
.wb{width:148.026667pt;}
.w8{width:153.280000pt;}
.w20{width:154.586667pt;}
.w14{width:156.973333pt;}
.w11{width:226.093333pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1b{left:16.160000pt;}
.x15{left:17.760000pt;}
.x14{left:25.760000pt;}
.xe{left:38.880000pt;}
.x1c{left:42.400000pt;}
.xf{left:45.120000pt;}
.xd{left:48.960000pt;}
.x1d{left:50.720000pt;}
.x13{left:59.674667pt;}
.x11{left:63.834667pt;}
.x12{left:65.114667pt;}
.x1{left:69.624000pt;}
.x8{left:76.832000pt;}
.x2{left:85.122667pt;}
.x1e{left:91.354667pt;}
.x1a{left:94.874667pt;}
.x25{left:100.832000pt;}
.x10{left:110.714667pt;}
.x2b{left:119.712000pt;}
.x5{left:125.640000pt;}
.x20{left:129.312000pt;}
.x2e{left:138.906667pt;}
.x31{left:145.306667pt;}
.x35{left:151.706667pt;}
.x26{left:159.066667pt;}
.x3{left:162.106667pt;}
.x21{left:177.146667pt;}
.x16{left:194.746667pt;}
.x36{left:245.346667pt;}
.x32{left:250.146667pt;}
.x27{left:257.666667pt;}
.x2f{left:277.346667pt;}
.x22{left:285.666667pt;}
.x28{left:308.066667pt;}
.x29{left:358.466667pt;}
.x2c{left:388.746667pt;}
.x33{left:394.666667pt;}
.x2a{left:408.906667pt;}
.x23{left:434.346667pt;}
.xa{left:473.213333pt;}
.xb{left:510.173333pt;}
.x37{left:513.866667pt;}
.xc{left:520.453333pt;}
.x30{left:522.213333pt;}
.x34{left:535.013333pt;}
.x2d{left:546.373333pt;}
.x24{left:548.133333pt;}
.x7{left:697.280000pt;}
.x9{left:716.960000pt;}
.x18{left:724.960000pt;}
.x19{left:1255.146667pt;}
}




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