
    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_6433b932ecc8bfb45b3f2a77.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b7a4b2113c0e62f018eaba9e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_79097cbc1949a505b7bd1033.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e3d4581004f3c678b28bab3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d4f6ff10fa0550e318c4ea7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706543;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_d0a684b054a501d0ef679d56.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_751e664a0347bc68a4c01cd6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ee28be69139c77fb049c2753.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-68.400000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-23.760000px;}
.v7{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.360000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls1e{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.702000px;}
.ls25{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.342000px;}
.lsc{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.220800px;}
.ls24{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.027360px;}
.ls18{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.036000px;}
.lse{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.340000px;}
.ls23{letter-spacing:2.988000px;}
.ls12{letter-spacing:3.180000px;}
.ls1d{letter-spacing:5.220000px;}
.ls15{letter-spacing:9.540000px;}
.ls5{letter-spacing:23.220000px;}
.ls22{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls21{letter-spacing:163.620000px;}
.ls1f{letter-spacing:378.300000px;}
.ls14{letter-spacing:966.900000px;}
.ls7{letter-spacing:1367.340000px;}
.ls20{letter-spacing:1410.900000px;}
.ls1b{letter-spacing:1659.840000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.254600px;}
.ws5{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.wsc{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.ws16{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.374000px;}
.ws12{word-spacing:-13.158000px;}
.wsb{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.798000px;}
.ws14{word-spacing:-12.672000px;}
.ws7{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._4{width:2.736000px;}
._7{width:3.821760px;}
._c{width:5.280240px;}
._e{width:6.413760px;}
._a{width:7.506000px;}
._9{width:8.748000px;}
._b{width:10.146000px;}
._12{width:11.219520px;}
._f{width:12.474000px;}
._13{width:15.557280px;}
._10{width:17.280000px;}
._11{width:18.659040px;}
._8{width:23.232000px;}
._5{width:26.676000px;}
._6{width:27.804000px;}
._d{width:29.502000px;}
._14{width:1173.714000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fsb{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y104{bottom:2.850000px;}
.y108{bottom:3.150000px;}
.y106{bottom:3.300000px;}
.yf5{bottom:18.450000px;}
.y90{bottom:21.825000px;}
.yd0{bottom:22.890000px;}
.y53{bottom:26.325000px;}
.y12b{bottom:33.090000px;}
.y1{bottom:40.875000px;}
.y30{bottom:54.060000px;}
.y3{bottom:57.975000px;}
.y8f{bottom:60.810000px;}
.yf4{bottom:64.785000px;}
.y52{bottom:68.394000px;}
.ycf{bottom:70.500000px;}
.y8e{bottom:76.500000px;}
.y2{bottom:76.905000px;}
.yf3{bottom:80.475000px;}
.y51{bottom:80.670000px;}
.yce{bottom:86.190000px;}
.y8d{bottom:91.980000px;}
.yf2{bottom:95.955000px;}
.ycd{bottom:101.670000px;}
.y8c{bottom:107.460000px;}
.y2d{bottom:109.845000px;}
.yf1{bottom:111.435000px;}
.ycc{bottom:117.150000px;}
.y2c{bottom:122.265000px;}
.y8b{bottom:123.120000px;}
.yf0{bottom:127.095000px;}
.y12a{bottom:130.635000px;}
.ycb{bottom:132.810000px;}
.y8a{bottom:138.600000px;}
.yef{bottom:142.575000px;}
.y129{bottom:146.295000px;}
.yca{bottom:148.290000px;}
.y89{bottom:154.080000px;}
.yee{bottom:158.055000px;}
.y128{bottom:161.955000px;}
.yc9{bottom:163.770000px;}
.y88{bottom:169.740000px;}
.yed{bottom:173.715000px;}
.y127{bottom:177.435000px;}
.yc8{bottom:179.250000px;}
.y87{bottom:185.220000px;}
.yec{bottom:189.195000px;}
.y126{bottom:193.095000px;}
.yc7{bottom:194.910000px;}
.y86{bottom:200.700000px;}
.yeb{bottom:204.675000px;}
.y125{bottom:208.755000px;}
.yc6{bottom:210.390000px;}
.y85{bottom:216.360000px;}
.yea{bottom:220.335000px;}
.y124{bottom:224.235000px;}
.yc5{bottom:226.050000px;}
.y84{bottom:231.840000px;}
.ye9{bottom:235.815000px;}
.y123{bottom:239.895000px;}
.yc4{bottom:241.530000px;}
.y83{bottom:247.320000px;}
.ye8{bottom:251.295000px;}
.y122{bottom:255.555000px;}
.yc3{bottom:257.010000px;}
.y82{bottom:262.980000px;}
.ye7{bottom:266.775000px;}
.y121{bottom:271.035000px;}
.yc2{bottom:272.670000px;}
.y81{bottom:278.460000px;}
.ye6{bottom:282.435000px;}
.yc1{bottom:288.150000px;}
.y80{bottom:294.120000px;}
.ye5{bottom:297.915000px;}
.y120{bottom:302.355000px;}
.yc0{bottom:303.630000px;}
.y7f{bottom:309.600000px;}
.ye4{bottom:313.575000px;}
.y11f{bottom:317.475000px;}
.ybf{bottom:319.290000px;}
.y2b{bottom:322.065000px;}
.y7e{bottom:325.080000px;}
.ye3{bottom:329.055000px;}
.ybe{bottom:334.410000px;}
.y2a{bottom:337.725000px;}
.y7d{bottom:340.605000px;}
.ye2{bottom:344.580000px;}
.y11e{bottom:349.020000px;}
.ybd{bottom:350.115000px;}
.y29{bottom:353.250000px;}
.y7c{bottom:356.265000px;}
.ye1{bottom:360.060000px;}
.y11d{bottom:364.500000px;}
.ybc{bottom:366.135000px;}
.y28{bottom:368.730000px;}
.y7b{bottom:371.565000px;}
.ye0{bottom:375.720000px;}
.y11c{bottom:380.160000px;}
.ybb{bottom:381.615000px;}
.y27{bottom:384.210000px;}
.y7a{bottom:387.045000px;}
.ydf{bottom:391.200000px;}
.y11b{bottom:395.640000px;}
.yba{bottom:397.095000px;}
.y26{bottom:399.870000px;}
.y79{bottom:402.705000px;}
.yde{bottom:406.680000px;}
.y11a{bottom:410.940000px;}
.yb9{bottom:412.755000px;}
.y50{bottom:412.770000px;}
.y25{bottom:415.350000px;}
.y78{bottom:418.545000px;}
.ydd{bottom:422.160000px;}
.yb8{bottom:428.235000px;}
.y4f{bottom:428.250000px;}
.y24{bottom:430.470000px;}
.y77{bottom:434.025000px;}
.ydc{bottom:437.820000px;}
.y119{bottom:442.080000px;}
.yb7{bottom:443.715000px;}
.y4e{bottom:443.910000px;}
.y76{bottom:449.685000px;}
.ydb{bottom:453.300000px;}
.y118{bottom:458.100000px;}
.yb6{bottom:459.375000px;}
.y4d{bottom:459.390000px;}
.y23{bottom:461.610000px;}
.y75{bottom:465.165000px;}
.yda{bottom:468.780000px;}
.y117{bottom:473.580000px;}
.yb5{bottom:474.855000px;}
.y4c{bottom:475.050000px;}
.y22{bottom:479.790000px;}
.y74{bottom:480.825000px;}
.yd9{bottom:484.440000px;}
.y116{bottom:486.000000px;}
.yb4{bottom:490.335000px;}
.y4b{bottom:490.350000px;}
.y73{bottom:496.305000px;}
.yd8{bottom:499.560000px;}
.yb3{bottom:505.815000px;}
.y4a{bottom:506.190000px;}
.y21{bottom:508.770000px;}
.y72{bottom:511.785000px;}
.yd7{bottom:515.220000px;}
.yb2{bottom:521.475000px;}
.y49{bottom:521.850000px;}
.y20{bottom:526.950000px;}
.y71{bottom:527.445000px;}
.yd6{bottom:531.240000px;}
.yb1{bottom:536.955000px;}
.y48{bottom:537.330000px;}
.y1f{bottom:542.430000px;}
.y70{bottom:542.925000px;}
.yd5{bottom:546.360000px;}
.yb0{bottom:552.615000px;}
.y47{bottom:552.810000px;}
.y1e{bottom:558.090000px;}
.y6f{bottom:564.345000px;}
.yaf{bottom:568.095000px;}
.y46{bottom:568.290000px;}
.y1c{bottom:573.735000px;}
.y1d{bottom:573.750000px;}
.y6e{bottom:573.885000px;}
.yd4{bottom:578.580000px;}
.yae{bottom:583.575000px;}
.y45{bottom:583.950000px;}
.y6d{bottom:589.545000px;}
.y1b{bottom:589.575000px;}
.yd3{bottom:596.940000px;}
.yad{bottom:599.235000px;}
.y44{bottom:599.430000px;}
.y6c{bottom:604.875000px;}
.yd2{bottom:609.390000px;}
.y1a{bottom:611.745000px;}
.yac{bottom:614.745000px;}
.y43{bottom:615.120000px;}
.yab{bottom:630.225000px;}
.y42{bottom:630.420000px;}
.y6b{bottom:636.375000px;}
.y19{bottom:638.385000px;}
.yaa{bottom:645.705000px;}
.y41{bottom:646.260000px;}
.y6a{bottom:648.795000px;}
.y18{bottom:653.865000px;}
.ya9{bottom:661.365000px;}
.y40{bottom:661.920000px;}
.y17{bottom:669.525000px;}
.y3f{bottom:674.160000px;}
.ya8{bottom:676.845000px;}
.ya7{bottom:692.505000px;}
.y16{bottom:704.085000px;}
.ya6{bottom:707.985000px;}
.ya5{bottom:723.465000px;}
.y15{bottom:725.685000px;}
.y115{bottom:735.300000px;}
.ya4{bottom:738.945000px;}
.y114{bottom:750.900000px;}
.y113{bottom:754.200000px;}
.ya3{bottom:754.605000px;}
.y14{bottom:760.245000px;}
.ya2{bottom:770.085000px;}
.y112{bottom:771.000000px;}
.y111{bottom:774.300000px;}
.ya1{bottom:785.565000px;}
.y110{bottom:791.400000px;}
.y10f{bottom:794.700000px;}
.y13{bottom:794.985000px;}
.ya0{bottom:801.225000px;}
.y10e{bottom:811.500000px;}
.y10d{bottom:814.800000px;}
.y9f{bottom:816.705000px;}
.y12{bottom:829.545000px;}
.y10c{bottom:831.900000px;}
.y69{bottom:832.095000px;}
.y9e{bottom:832.365000px;}
.y10b{bottom:835.200000px;}
.y68{bottom:847.575000px;}
.y9d{bottom:847.845000px;}
.y10a{bottom:852.000000px;}
.y67{bottom:863.235000px;}
.y9c{bottom:863.325000px;}
.y11{bottom:864.285000px;}
.y109{bottom:872.400000px;}
.y66{bottom:878.760000px;}
.y9b{bottom:878.850000px;}
.y107{bottom:892.650000px;}
.y10{bottom:893.310000px;}
.y65{bottom:894.420000px;}
.y9a{bottom:894.510000px;}
.y64{bottom:909.900000px;}
.y99{bottom:909.990000px;}
.y105{bottom:912.900000px;}
.y98{bottom:925.290000px;}
.y63{bottom:925.380000px;}
.yf{bottom:932.370000px;}
.y103{bottom:933.150000px;}
.y97{bottom:940.770000px;}
.y62{bottom:940.860000px;}
.y96{bottom:956.430000px;}
.y3e{bottom:956.610000px;}
.ye{bottom:956.670000px;}
.yd1{bottom:956.790000px;}
.y61{bottom:962.460000px;}
.y60{bottom:972.000000px;}
.y3d{bottom:972.090000px;}
.y102{bottom:972.210000px;}
.y95{bottom:972.270000px;}
.y5f{bottom:987.480000px;}
.y3c{bottom:987.570000px;}
.y101{bottom:987.690000px;}
.y94{bottom:987.930000px;}
.y5e{bottom:1003.140000px;}
.y3b{bottom:1003.230000px;}
.y100{bottom:1003.350000px;}
.y93{bottom:1003.410000px;}
.yd{bottom:1016.070000px;}
.y5d{bottom:1018.620000px;}
.yff{bottom:1018.830000px;}
.y92{bottom:1018.890000px;}
.y3a{bottom:1019.070000px;}
.ya{bottom:1034.070000px;}
.y5c{bottom:1034.280000px;}
.yfe{bottom:1034.310000px;}
.y39{bottom:1034.550000px;}
.yc{bottom:1039.290000px;}
.y5b{bottom:1049.760000px;}
.yfd{bottom:1049.970000px;}
.y38{bottom:1050.030000px;}
.y9{bottom:1057.290000px;}
.y5a{bottom:1065.240000px;}
.yfc{bottom:1065.450000px;}
.y91{bottom:1065.510000px;}
.y37{bottom:1065.690000px;}
.yb{bottom:1071.330000px;}
.y59{bottom:1080.720000px;}
.yfb{bottom:1080.930000px;}
.y36{bottom:1081.170000px;}
.y8{bottom:1086.630000px;}
.y58{bottom:1096.380000px;}
.yfa{bottom:1096.410000px;}
.y35{bottom:1096.650000px;}
.y7{bottom:1105.710000px;}
.y57{bottom:1112.040000px;}
.yf9{bottom:1112.070000px;}
.y34{bottom:1112.130000px;}
.y6{bottom:1122.990000px;}
.y56{bottom:1127.160000px;}
.yf8{bottom:1127.370000px;}
.y33{bottom:1127.790000px;}
.y5{bottom:1140.300000px;}
.y55{bottom:1142.850000px;}
.yf7{bottom:1143.240000px;}
.y32{bottom:1143.300000px;}
.y4{bottom:1158.300000px;}
.y54{bottom:1158.510000px;}
.y31{bottom:1158.960000px;}
.yf6{bottom:1164.660000px;}
.y2f{bottom:1175.160000px;}
.y2e{bottom:1193.700000px;}
.h1a{height:19.440000px;}
.h19{height:19.620000px;}
.h1b{height:19.635000px;}
.hb{height:35.314453px;}
.h16{height:35.332031px;}
.h11{height:38.158594px;}
.hf{height:39.772038px;}
.h12{height:47.344922px;}
.h6{height:48.616875px;}
.hc{height:52.971680px;}
.h13{height:52.998047px;}
.hd{height:54.421875px;}
.h1c{height:55.503491px;}
.h7{height:55.796836px;}
.h14{height:55.824609px;}
.h8{height:58.621992px;}
.h17{height:59.068031px;}
.h10{height:59.074453px;}
.h15{height:59.092031px;}
.h18{height:59.236031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w2{width:101.340000px;}
.w1{width:195.900000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x24{left:10.650000px;}
.x3{left:29.985000px;}
.x26{left:35.550000px;}
.x28{left:39.000000px;}
.xc{left:46.830000px;}
.x1b{left:47.835000px;}
.x10{left:50.430000px;}
.x2d{left:59.010000px;}
.x22{left:62.700000px;}
.x30{left:74.220000px;}
.x25{left:87.900000px;}
.x9{left:96.420000px;}
.x2e{left:114.720000px;}
.xb{left:231.150000px;}
.x6{left:244.170000px;}
.x1e{left:268.170000px;}
.x4{left:270.300000px;}
.x5{left:290.610000px;}
.x15{left:294.885000px;}
.x21{left:304.350000px;}
.x13{left:311.700000px;}
.x18{left:319.695000px;}
.x29{left:352.500000px;}
.x16{left:355.845000px;}
.x2a{left:357.450000px;}
.x1f{left:358.680000px;}
.x2b{left:376.650000px;}
.x27{left:392.250000px;}
.xa{left:398.280000px;}
.x2f{left:403.890000px;}
.xd{left:412.290000px;}
.x31{left:429.450000px;}
.x1{left:431.700000px;}
.x19{left:437.400000px;}
.x1c{left:445.065000px;}
.x11{left:449.310000px;}
.x20{left:459.900000px;}
.xe{left:462.580875px;}
.x2{left:465.585000px;}
.xf{left:467.100000px;}
.x7{left:478.965000px;}
.x23{left:500.550000px;}
.x8{left:506.580000px;}
.x12{left:616.800000px;}
.x2c{left:648.360000px;}
.x1d{left:681.570000px;}
.x1a{left:683.526000px;}
.x17{left:765.345000px;}
.x14{left:777.885000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-21.120000pt;}
.v7{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.320000pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls1e{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.624000pt;}
.ls25{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.304000pt;}
.lsc{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.196267pt;}
.ls24{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.024320pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.656000pt;}
.ls12{letter-spacing:2.826667pt;}
.ls1d{letter-spacing:4.640000pt;}
.ls15{letter-spacing:8.480000pt;}
.ls5{letter-spacing:20.640000pt;}
.ls22{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls21{letter-spacing:145.440000pt;}
.ls1f{letter-spacing:336.266667pt;}
.ls14{letter-spacing:859.466667pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls20{letter-spacing:1254.133333pt;}
.ls1b{letter-spacing:1475.413333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.448533pt;}
.ws5{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.wsc{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.ws16{word-spacing:-12.160000pt;}
.wsf{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.888000pt;}
.ws12{word-spacing:-11.696000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.376000pt;}
.ws14{word-spacing:-11.264000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._4{width:2.432000pt;}
._7{width:3.397120pt;}
._c{width:4.693547pt;}
._e{width:5.701120pt;}
._a{width:6.672000pt;}
._9{width:7.776000pt;}
._b{width:9.018667pt;}
._12{width:9.972907pt;}
._f{width:11.088000pt;}
._13{width:13.828693pt;}
._10{width:15.360000pt;}
._11{width:16.585813pt;}
._8{width:20.650667pt;}
._5{width:23.712000pt;}
._6{width:24.714667pt;}
._d{width:26.224000pt;}
._14{width:1043.301333pt;}
._3{width:1399.520000pt;}
.fs8{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fsb{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:2.533333pt;}
.y108{bottom:2.800000pt;}
.y106{bottom:2.933333pt;}
.yf5{bottom:16.400000pt;}
.y90{bottom:19.400000pt;}
.yd0{bottom:20.346667pt;}
.y53{bottom:23.400000pt;}
.y12b{bottom:29.413333pt;}
.y1{bottom:36.333333pt;}
.y30{bottom:48.053333pt;}
.y3{bottom:51.533333pt;}
.y8f{bottom:54.053333pt;}
.yf4{bottom:57.586667pt;}
.y52{bottom:60.794667pt;}
.ycf{bottom:62.666667pt;}
.y8e{bottom:68.000000pt;}
.y2{bottom:68.360000pt;}
.yf3{bottom:71.533333pt;}
.y51{bottom:71.706667pt;}
.yce{bottom:76.613333pt;}
.y8d{bottom:81.760000pt;}
.yf2{bottom:85.293333pt;}
.ycd{bottom:90.373333pt;}
.y8c{bottom:95.520000pt;}
.y2d{bottom:97.640000pt;}
.yf1{bottom:99.053333pt;}
.ycc{bottom:104.133333pt;}
.y2c{bottom:108.680000pt;}
.y8b{bottom:109.440000pt;}
.yf0{bottom:112.973333pt;}
.y12a{bottom:116.120000pt;}
.ycb{bottom:118.053333pt;}
.y8a{bottom:123.200000pt;}
.yef{bottom:126.733333pt;}
.y129{bottom:130.040000pt;}
.yca{bottom:131.813333pt;}
.y89{bottom:136.960000pt;}
.yee{bottom:140.493333pt;}
.y128{bottom:143.960000pt;}
.yc9{bottom:145.573333pt;}
.y88{bottom:150.880000pt;}
.yed{bottom:154.413333pt;}
.y127{bottom:157.720000pt;}
.yc8{bottom:159.333333pt;}
.y87{bottom:164.640000pt;}
.yec{bottom:168.173333pt;}
.y126{bottom:171.640000pt;}
.yc7{bottom:173.253333pt;}
.y86{bottom:178.400000pt;}
.yeb{bottom:181.933333pt;}
.y125{bottom:185.560000pt;}
.yc6{bottom:187.013333pt;}
.y85{bottom:192.320000pt;}
.yea{bottom:195.853333pt;}
.y124{bottom:199.320000pt;}
.yc5{bottom:200.933333pt;}
.y84{bottom:206.080000pt;}
.ye9{bottom:209.613333pt;}
.y123{bottom:213.240000pt;}
.yc4{bottom:214.693333pt;}
.y83{bottom:219.840000pt;}
.ye8{bottom:223.373333pt;}
.y122{bottom:227.160000pt;}
.yc3{bottom:228.453333pt;}
.y82{bottom:233.760000pt;}
.ye7{bottom:237.133333pt;}
.y121{bottom:240.920000pt;}
.yc2{bottom:242.373333pt;}
.y81{bottom:247.520000pt;}
.ye6{bottom:251.053333pt;}
.yc1{bottom:256.133333pt;}
.y80{bottom:261.440000pt;}
.ye5{bottom:264.813333pt;}
.y120{bottom:268.760000pt;}
.yc0{bottom:269.893333pt;}
.y7f{bottom:275.200000pt;}
.ye4{bottom:278.733333pt;}
.y11f{bottom:282.200000pt;}
.ybf{bottom:283.813333pt;}
.y2b{bottom:286.280000pt;}
.y7e{bottom:288.960000pt;}
.ye3{bottom:292.493333pt;}
.ybe{bottom:297.253333pt;}
.y2a{bottom:300.200000pt;}
.y7d{bottom:302.760000pt;}
.ye2{bottom:306.293333pt;}
.y11e{bottom:310.240000pt;}
.ybd{bottom:311.213333pt;}
.y29{bottom:314.000000pt;}
.y7c{bottom:316.680000pt;}
.ye1{bottom:320.053333pt;}
.y11d{bottom:324.000000pt;}
.ybc{bottom:325.453333pt;}
.y28{bottom:327.760000pt;}
.y7b{bottom:330.280000pt;}
.ye0{bottom:333.973333pt;}
.y11c{bottom:337.920000pt;}
.ybb{bottom:339.213333pt;}
.y27{bottom:341.520000pt;}
.y7a{bottom:344.040000pt;}
.ydf{bottom:347.733333pt;}
.y11b{bottom:351.680000pt;}
.yba{bottom:352.973333pt;}
.y26{bottom:355.440000pt;}
.y79{bottom:357.960000pt;}
.yde{bottom:361.493333pt;}
.y11a{bottom:365.280000pt;}
.yb9{bottom:366.893333pt;}
.y50{bottom:366.906667pt;}
.y25{bottom:369.200000pt;}
.y78{bottom:372.040000pt;}
.ydd{bottom:375.253333pt;}
.yb8{bottom:380.653333pt;}
.y4f{bottom:380.666667pt;}
.y24{bottom:382.640000pt;}
.y77{bottom:385.800000pt;}
.ydc{bottom:389.173333pt;}
.y119{bottom:392.960000pt;}
.yb7{bottom:394.413333pt;}
.y4e{bottom:394.586667pt;}
.y76{bottom:399.720000pt;}
.ydb{bottom:402.933333pt;}
.y118{bottom:407.200000pt;}
.yb6{bottom:408.333333pt;}
.y4d{bottom:408.346667pt;}
.y23{bottom:410.320000pt;}
.y75{bottom:413.480000pt;}
.yda{bottom:416.693333pt;}
.y117{bottom:420.960000pt;}
.yb5{bottom:422.093333pt;}
.y4c{bottom:422.266667pt;}
.y22{bottom:426.480000pt;}
.y74{bottom:427.400000pt;}
.yd9{bottom:430.613333pt;}
.y116{bottom:432.000000pt;}
.yb4{bottom:435.853333pt;}
.y4b{bottom:435.866667pt;}
.y73{bottom:441.160000pt;}
.yd8{bottom:444.053333pt;}
.yb3{bottom:449.613333pt;}
.y4a{bottom:449.946667pt;}
.y21{bottom:452.240000pt;}
.y72{bottom:454.920000pt;}
.yd7{bottom:457.973333pt;}
.yb2{bottom:463.533333pt;}
.y49{bottom:463.866667pt;}
.y20{bottom:468.400000pt;}
.y71{bottom:468.840000pt;}
.yd6{bottom:472.213333pt;}
.yb1{bottom:477.293333pt;}
.y48{bottom:477.626667pt;}
.y1f{bottom:482.160000pt;}
.y70{bottom:482.600000pt;}
.yd5{bottom:485.653333pt;}
.yb0{bottom:491.213333pt;}
.y47{bottom:491.386667pt;}
.y1e{bottom:496.080000pt;}
.y6f{bottom:501.640000pt;}
.yaf{bottom:504.973333pt;}
.y46{bottom:505.146667pt;}
.y1c{bottom:509.986667pt;}
.y1d{bottom:510.000000pt;}
.y6e{bottom:510.120000pt;}
.yd4{bottom:514.293333pt;}
.yae{bottom:518.733333pt;}
.y45{bottom:519.066667pt;}
.y6d{bottom:524.040000pt;}
.y1b{bottom:524.066667pt;}
.yd3{bottom:530.613333pt;}
.yad{bottom:532.653333pt;}
.y44{bottom:532.826667pt;}
.y6c{bottom:537.666667pt;}
.yd2{bottom:541.680000pt;}
.y1a{bottom:543.773333pt;}
.yac{bottom:546.440000pt;}
.y43{bottom:546.773333pt;}
.yab{bottom:560.200000pt;}
.y42{bottom:560.373333pt;}
.y6b{bottom:565.666667pt;}
.y19{bottom:567.453333pt;}
.yaa{bottom:573.960000pt;}
.y41{bottom:574.453333pt;}
.y6a{bottom:576.706667pt;}
.y18{bottom:581.213333pt;}
.ya9{bottom:587.880000pt;}
.y40{bottom:588.373333pt;}
.y17{bottom:595.133333pt;}
.y3f{bottom:599.253333pt;}
.ya8{bottom:601.640000pt;}
.ya7{bottom:615.560000pt;}
.y16{bottom:625.853333pt;}
.ya6{bottom:629.320000pt;}
.ya5{bottom:643.080000pt;}
.y15{bottom:645.053333pt;}
.y115{bottom:653.600000pt;}
.ya4{bottom:656.840000pt;}
.y114{bottom:667.466667pt;}
.y113{bottom:670.400000pt;}
.ya3{bottom:670.760000pt;}
.y14{bottom:675.773333pt;}
.ya2{bottom:684.520000pt;}
.y112{bottom:685.333333pt;}
.y111{bottom:688.266667pt;}
.ya1{bottom:698.280000pt;}
.y110{bottom:703.466667pt;}
.y10f{bottom:706.400000pt;}
.y13{bottom:706.653333pt;}
.ya0{bottom:712.200000pt;}
.y10e{bottom:721.333333pt;}
.y10d{bottom:724.266667pt;}
.y9f{bottom:725.960000pt;}
.y12{bottom:737.373333pt;}
.y10c{bottom:739.466667pt;}
.y69{bottom:739.640000pt;}
.y9e{bottom:739.880000pt;}
.y10b{bottom:742.400000pt;}
.y68{bottom:753.400000pt;}
.y9d{bottom:753.640000pt;}
.y10a{bottom:757.333333pt;}
.y67{bottom:767.320000pt;}
.y9c{bottom:767.400000pt;}
.y11{bottom:768.253333pt;}
.y109{bottom:775.466667pt;}
.y66{bottom:781.120000pt;}
.y9b{bottom:781.200000pt;}
.y107{bottom:793.466667pt;}
.y10{bottom:794.053333pt;}
.y65{bottom:795.040000pt;}
.y9a{bottom:795.120000pt;}
.y64{bottom:808.800000pt;}
.y99{bottom:808.880000pt;}
.y105{bottom:811.466667pt;}
.y98{bottom:822.480000pt;}
.y63{bottom:822.560000pt;}
.yf{bottom:828.773333pt;}
.y103{bottom:829.466667pt;}
.y97{bottom:836.240000pt;}
.y62{bottom:836.320000pt;}
.y96{bottom:850.160000pt;}
.y3e{bottom:850.320000pt;}
.ye{bottom:850.373333pt;}
.yd1{bottom:850.480000pt;}
.y61{bottom:855.520000pt;}
.y60{bottom:864.000000pt;}
.y3d{bottom:864.080000pt;}
.y102{bottom:864.186667pt;}
.y95{bottom:864.240000pt;}
.y5f{bottom:877.760000pt;}
.y3c{bottom:877.840000pt;}
.y101{bottom:877.946667pt;}
.y94{bottom:878.160000pt;}
.y5e{bottom:891.680000pt;}
.y3b{bottom:891.760000pt;}
.y100{bottom:891.866667pt;}
.y93{bottom:891.920000pt;}
.yd{bottom:903.173333pt;}
.y5d{bottom:905.440000pt;}
.yff{bottom:905.626667pt;}
.y92{bottom:905.680000pt;}
.y3a{bottom:905.840000pt;}
.ya{bottom:919.173333pt;}
.y5c{bottom:919.360000pt;}
.yfe{bottom:919.386667pt;}
.y39{bottom:919.600000pt;}
.yc{bottom:923.813333pt;}
.y5b{bottom:933.120000pt;}
.yfd{bottom:933.306667pt;}
.y38{bottom:933.360000pt;}
.y9{bottom:939.813333pt;}
.y5a{bottom:946.880000pt;}
.yfc{bottom:947.066667pt;}
.y91{bottom:947.120000pt;}
.y37{bottom:947.280000pt;}
.yb{bottom:952.293333pt;}
.y59{bottom:960.640000pt;}
.yfb{bottom:960.826667pt;}
.y36{bottom:961.040000pt;}
.y8{bottom:965.893333pt;}
.y58{bottom:974.560000pt;}
.yfa{bottom:974.586667pt;}
.y35{bottom:974.800000pt;}
.y7{bottom:982.853333pt;}
.y57{bottom:988.480000pt;}
.yf9{bottom:988.506667pt;}
.y34{bottom:988.560000pt;}
.y6{bottom:998.213333pt;}
.y56{bottom:1001.920000pt;}
.yf8{bottom:1002.106667pt;}
.y33{bottom:1002.480000pt;}
.y5{bottom:1013.600000pt;}
.y55{bottom:1015.866667pt;}
.yf7{bottom:1016.213333pt;}
.y32{bottom:1016.266667pt;}
.y4{bottom:1029.600000pt;}
.y54{bottom:1029.786667pt;}
.y31{bottom:1030.186667pt;}
.yf6{bottom:1035.253333pt;}
.y2f{bottom:1044.586667pt;}
.y2e{bottom:1061.066667pt;}
.h1a{height:17.280000pt;}
.h19{height:17.440000pt;}
.h1b{height:17.453333pt;}
.hb{height:31.390625pt;}
.h16{height:31.406250pt;}
.h11{height:33.918750pt;}
.hf{height:35.352923pt;}
.h12{height:42.084375pt;}
.h6{height:43.215000pt;}
.hc{height:47.085938pt;}
.h13{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1c{height:49.336436pt;}
.h7{height:49.597187pt;}
.h14{height:49.621875pt;}
.h8{height:52.108438pt;}
.h17{height:52.504917pt;}
.h10{height:52.510625pt;}
.h15{height:52.526250pt;}
.h18{height:52.654250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w2{width:90.080000pt;}
.w1{width:174.133333pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x24{left:9.466667pt;}
.x3{left:26.653333pt;}
.x26{left:31.600000pt;}
.x28{left:34.666667pt;}
.xc{left:41.626667pt;}
.x1b{left:42.520000pt;}
.x10{left:44.826667pt;}
.x2d{left:52.453333pt;}
.x22{left:55.733333pt;}
.x30{left:65.973333pt;}
.x25{left:78.133333pt;}
.x9{left:85.706667pt;}
.x2e{left:101.973333pt;}
.xb{left:205.466667pt;}
.x6{left:217.040000pt;}
.x1e{left:238.373333pt;}
.x4{left:240.266667pt;}
.x5{left:258.320000pt;}
.x15{left:262.120000pt;}
.x21{left:270.533333pt;}
.x13{left:277.066667pt;}
.x18{left:284.173333pt;}
.x29{left:313.333333pt;}
.x16{left:316.306667pt;}
.x2a{left:317.733333pt;}
.x1f{left:318.826667pt;}
.x2b{left:334.800000pt;}
.x27{left:348.666667pt;}
.xa{left:354.026667pt;}
.x2f{left:359.013333pt;}
.xd{left:366.480000pt;}
.x31{left:381.733333pt;}
.x1{left:383.733333pt;}
.x19{left:388.800000pt;}
.x1c{left:395.613333pt;}
.x11{left:399.386667pt;}
.x20{left:408.800000pt;}
.xe{left:411.183000pt;}
.x2{left:413.853333pt;}
.xf{left:415.200000pt;}
.x7{left:425.746667pt;}
.x23{left:444.933333pt;}
.x8{left:450.293333pt;}
.x12{left:548.266667pt;}
.x2c{left:576.320000pt;}
.x1d{left:605.840000pt;}
.x1a{left:607.578667pt;}
.x17{left:680.306667pt;}
.x14{left:691.453333pt;}
}




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