
    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_0118db324cbcb9b7da502fab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_b96cfc07d81a8e8258f0ac39.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_73820b7dc28b4de4a118f9b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_4c94809981fcb6313218d0f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_dba00589ac365a046efb708d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4cde11ff35d12218efaa2c14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_42b41aafe47f30d18b8b132a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8568479db9138e8ee6a83b38.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120605;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_4ff46ffefcb0e7bf6c46c5d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_fd7161f048a606bca5401bd3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117676;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_018e7e2747e83fb26afc441d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987305;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.296000px;}
.ls16{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.223920px;}
.ls1c{letter-spacing:0.269280px;}
.lsa{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.298800px;}
.lse{letter-spacing:0.305280px;}
.ls11{letter-spacing:3.024000px;}
.lsd{letter-spacing:20.304000px;}
.ls1a{letter-spacing:23.904000px;}
.ls1d{letter-spacing:28.224000px;}
.lsc{letter-spacing:31.824000px;}
.lsb{letter-spacing:79.344000px;}
.ls18{letter-spacing:88.704000px;}
.ls17{letter-spacing:128.304000px;}
.ls1b{letter-spacing:131.904000px;}
.ls12{letter-spacing:134.784000px;}
.ls14{letter-spacing:141.786720px;}
.ls1{letter-spacing:190.800000px;}
.ls10{letter-spacing:195.786720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws9{word-spacing:-20.304000px;}
.wse{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.944000px;}
.wsd{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.482000px;}
.ws3{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:206.220000px;}
._36{margin-left:-12.816000px;}
._1b{margin-left:-5.376000px;}
._1a{margin-left:-3.696000px;}
._9{margin-left:-2.664000px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._f{width:3.168000px;}
._a{width:4.248000px;}
._b{width:5.916000px;}
._e{width:7.056000px;}
._14{width:8.208000px;}
._13{width:9.360000px;}
._5{width:10.512000px;}
._6{width:12.312000px;}
._17{width:14.112000px;}
._16{width:15.192000px;}
._15{width:16.344000px;}
._12{width:18.360000px;}
._d{width:21.528000px;}
._c{width:23.040000px;}
._26{width:24.168000px;}
._24{width:26.064000px;}
._11{width:27.360000px;}
._2b{width:30.744000px;}
._23{width:32.184000px;}
._22{width:33.696000px;}
._25{width:35.352000px;}
._1d{width:36.864000px;}
._1c{width:43.200000px;}
._32{width:44.724000px;}
._31{width:45.756000px;}
._19{width:47.088000px;}
._18{width:48.744000px;}
._1f{width:57.024000px;}
._1e{width:58.824000px;}
._27{width:68.688000px;}
._2a{width:71.016000px;}
._10{width:78.588000px;}
._21{width:82.944000px;}
._20{width:84.024000px;}
._33{width:88.704000px;}
._8{width:93.528000px;}
._7{width:94.680000px;}
._2f{width:106.992000px;}
._28{width:128.304000px;}
._34{width:131.904000px;}
._30{width:134.784000px;}
._29{width:160.992000px;}
._2e{width:255.720000px;}
._2d{width:288.900000px;}
._2c{width:305.400000px;}
._4{width:393.300000px;}
._3{width:833.400000px;}
._35{width:844.140000px;}
._2{width:1590.936000px;}
.fc9{color:rgb(238,0,0);}
.fc8{color:rgb(255,0,0);}
.fc7{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y2a{bottom:3.240000px;}
.y78{bottom:3.780000px;}
.yf5{bottom:4.680000px;}
.y109{bottom:4.725000px;}
.y156{bottom:7.020000px;}
.y12d{bottom:7.530000px;}
.y15b{bottom:7.560000px;}
.y127{bottom:7.815000px;}
.y15a{bottom:9.180000px;}
.yfc{bottom:11.160000px;}
.y10f{bottom:11.340000px;}
.yf2{bottom:14.040000px;}
.yf9{bottom:14.220000px;}
.y29{bottom:20.514000px;}
.yf3{bottom:24.480000px;}
.y75{bottom:25.560000px;}
.y77{bottom:25.920000px;}
.y48{bottom:36.360000px;}
.y28{bottom:37.794000px;}
.ye{bottom:43.740000px;}
.yc{bottom:68.580000px;}
.y126{bottom:81.075000px;}
.y27{bottom:81.354000px;}
.ya{bottom:94.860000px;}
.y47{bottom:100.800000px;}
.y26{bottom:112.494000px;}
.y12b{bottom:115.665000px;}
.y7f{bottom:132.516000px;}
.y46{bottom:133.020000px;}
.y97{bottom:133.056000px;}
.y1a{bottom:134.676000px;}
.y112{bottom:135.036000px;}
.y173{bottom:135.756000px;}
.yeb{bottom:136.296000px;}
.y12a{bottom:141.840000px;}
.y14e{bottom:143.136000px;}
.y67{bottom:145.656000px;}
.y4a{bottom:148.896000px;}
.y125{bottom:154.335000px;}
.yd4{bottom:155.190000px;}
.y7e{bottom:156.270000px;}
.y172{bottom:156.450000px;}
.y96{bottom:156.810000px;}
.y11d{bottom:158.250000px;}
.y111{bottom:158.790000px;}
.y25{bottom:158.934000px;}
.yc1{bottom:164.190000px;}
.y45{bottom:165.105000px;}
.y66{bottom:165.630000px;}
.yea{bottom:175.170000px;}
.y171{bottom:177.150000px;}
.yd3{bottom:179.130000px;}
.y14d{bottom:179.310000px;}
.y7d{bottom:180.030000px;}
.y95{bottom:180.750000px;}
.y11c{bottom:182.190000px;}
.yc0{bottom:187.950000px;}
.y110{bottom:188.490000px;}
.y24{bottom:190.074000px;}
.y44{bottom:197.325000px;}
.y170{bottom:197.850000px;}
.y49{bottom:198.030000px;}
.y65{bottom:198.750000px;}
.ye9{bottom:198.930000px;}
.yd2{bottom:202.890000px;}
.y94{bottom:204.510000px;}
.y11b{bottom:205.950000px;}
.y10e{bottom:206.130000px;}
.ybf{bottom:211.710000px;}
.y7c{bottom:212.430000px;}
.y16f{bottom:218.550000px;}
.y23{bottom:221.034000px;}
.y2f{bottom:222.690000px;}
.yd1{bottom:226.650000px;}
.y14c{bottom:226.830000px;}
.y124{bottom:227.595000px;}
.y93{bottom:228.270000px;}
.y10d{bottom:229.530000px;}
.y43{bottom:229.545000px;}
.y11a{bottom:229.710000px;}
.y64{bottom:230.970000px;}
.ybe{bottom:235.650000px;}
.y16e{bottom:239.250000px;}
.ye8{bottom:246.630000px;}
.yd0{bottom:250.410000px;}
.y92{bottom:252.030000px;}
.y22{bottom:252.219000px;}
.y119{bottom:253.470000px;}
.y129{bottom:257.865000px;}
.ybd{bottom:259.410000px;}
.y16d{bottom:259.950000px;}
.y42{bottom:261.765000px;}
.y63{bottom:263.190000px;}
.ye7{bottom:270.390000px;}
.y10c{bottom:271.650000px;}
.ycf{bottom:274.350000px;}
.y14b{bottom:274.710000px;}
.y91{bottom:275.790000px;}
.y118{bottom:277.410000px;}
.y16c{bottom:280.650000px;}
.ybc{bottom:283.170000px;}
.y21{bottom:283.179000px;}
.ye6{bottom:294.150000px;}
.y62{bottom:295.410000px;}
.yce{bottom:298.110000px;}
.y90{bottom:299.730000px;}
.y123{bottom:300.855000px;}
.y117{bottom:301.170000px;}
.y16b{bottom:301.350000px;}
.ybb{bottom:306.930000px;}
.y1aa{bottom:309.270000px;}
.y41{bottom:309.285000px;}
.y18e{bottom:313.050000px;}
.y10b{bottom:313.770000px;}
.y20{bottom:314.319000px;}
.ye5{bottom:317.910000px;}
.ycd{bottom:321.870000px;}
.y16a{bottom:322.050000px;}
.y8f{bottom:323.490000px;}
.y14a{bottom:325.290000px;}
.y61{bottom:327.450000px;}
.yba{bottom:330.870000px;}
.y10a{bottom:336.990000px;}
.y116{bottom:338.790000px;}
.y11e{bottom:340.560000px;}
.y40{bottom:341.505000px;}
.ye4{bottom:341.850000px;}
.y169{bottom:342.750000px;}
.y8e{bottom:343.290000px;}
.y1f{bottom:345.279000px;}
.ycc{bottom:345.630000px;}
.y18d{bottom:349.230000px;}
.y1a9{bottom:354.090000px;}
.yb9{bottom:354.630000px;}
.y149{bottom:354.990000px;}
.y108{bottom:360.210000px;}
.ye3{bottom:365.655000px;}
.ycb{bottom:369.615000px;}
.y3f{bottom:373.725000px;}
.y122{bottom:374.115000px;}
.y60{bottom:375.195000px;}
.y1e{bottom:376.419000px;}
.y1a8{bottom:377.895000px;}
.yb8{bottom:378.435000px;}
.y168{bottom:381.495000px;}
.y107{bottom:383.475000px;}
.ye2{bottom:389.415000px;}
.yca{bottom:393.375000px;}
.y148{bottom:396.255000px;}
.y18c{bottom:399.855000px;}
.y1a7{bottom:401.655000px;}
.yb7{bottom:402.195000px;}
.y167{bottom:405.435000px;}
.y3e{bottom:405.795000px;}
.y1d{bottom:407.379000px;}
.y5f{bottom:407.415000px;}
.ye1{bottom:413.175000px;}
.yc9{bottom:417.135000px;}
.y18b{bottom:423.795000px;}
.y1a6{bottom:425.415000px;}
.yb6{bottom:425.955000px;}
.y166{bottom:429.195000px;}
.ye0{bottom:437.115000px;}
.y3d{bottom:438.015000px;}
.y1c{bottom:438.519000px;}
.y5e{bottom:439.455000px;}
.yc8{bottom:440.895000px;}
.y147{bottom:446.655000px;}
.y121{bottom:447.375000px;}
.y106{bottom:447.555000px;}
.y1a5{bottom:449.355000px;}
.yb5{bottom:450.435000px;}
.y165{bottom:452.955000px;}
.ydf{bottom:460.875000px;}
.yc7{bottom:464.835000px;}
.y1b{bottom:469.659000px;}
.y3c{bottom:470.235000px;}
.y18a{bottom:471.315000px;}
.y5d{bottom:471.675000px;}
.yb4{bottom:472.935000px;}
.y1a4{bottom:473.115000px;}
.y146{bottom:476.535000px;}
.y164{bottom:476.715000px;}
.y105{bottom:477.255000px;}
.yde{bottom:484.635000px;}
.yc6{bottom:488.595000px;}
.y189{bottom:495.075000px;}
.y1a3{bottom:496.875000px;}
.y145{bottom:497.415000px;}
.yb3{bottom:497.595000px;}
.y104{bottom:497.955000px;}
.y163{bottom:500.655000px;}
.y5c{bottom:503.895000px;}
.yb2{bottom:517.035000px;}
.y3b{bottom:517.755000px;}
.y188{bottom:519.015000px;}
.y1a2{bottom:520.635000px;}
.y120{bottom:520.665000px;}
.ydd{bottom:523.515000px;}
.y162{bottom:524.415000px;}
.yc5{bottom:524.775000px;}
.y144{bottom:527.295000px;}
.y5b{bottom:536.115000px;}
.y103{bottom:536.835000px;}
.yb1{bottom:537.195000px;}
.y187{bottom:542.775000px;}
.y1a1{bottom:544.575000px;}
.ydc{bottom:547.275000px;}
.y143{bottom:547.995000px;}
.y3a{bottom:549.975000px;}
.y102{bottom:560.595000px;}
.y161{bottom:563.115000px;}
.y186{bottom:566.535000px;}
.y1a0{bottom:568.335000px;}
.y142{bottom:568.695000px;}
.ydb{bottom:571.035000px;}
.yc4{bottom:571.395000px;}
.yb0{bottom:573.735000px;}
.y39{bottom:582.195000px;}
.y5a{bottom:583.635000px;}
.y185{bottom:590.295000px;}
.y19f{bottom:592.095000px;}
.y160{bottom:592.815000px;}
.y11f{bottom:593.925000px;}
.yda{bottom:594.795000px;}
.y101{bottom:596.595000px;}
.yaf{bottom:596.955000px;}
.y141{bottom:598.575000px;}
.y128{bottom:613.290000px;}
.y184{bottom:614.235000px;}
.y38{bottom:614.415000px;}
.y59{bottom:615.855000px;}
.yd9{bottom:618.735000px;}
.y140{bottom:619.275000px;}
.yae{bottom:620.175000px;}
.y100{bottom:628.845000px;}
.y15f{bottom:631.725000px;}
.y183{bottom:638.025000px;}
.y19e{bottom:639.645000px;}
.y19{bottom:642.165000px;}
.yd8{bottom:642.525000px;}
.yad{bottom:643.245000px;}
.y37{bottom:646.635000px;}
.y58{bottom:648.105000px;}
.y13f{bottom:649.185000px;}
.y15e{bottom:652.425000px;}
.yff{bottom:661.065000px;}
.y182{bottom:661.785000px;}
.y19d{bottom:663.585000px;}
.yd7{bottom:666.285000px;}
.yac{bottom:666.465000px;}
.y18{bottom:666.825000px;}
.y13e{bottom:669.885000px;}
.y36{bottom:678.720000px;}
.y15d{bottom:682.125000px;}
.y19c{bottom:687.345000px;}
.yab{bottom:689.685000px;}
.yd6{bottom:690.045000px;}
.y17{bottom:690.225000px;}
.y13d{bottom:690.585000px;}
.yfe{bottom:693.285000px;}
.y7b{bottom:693.465000px;}
.y57{bottom:695.625000px;}
.y181{bottom:700.665000px;}
.yd5{bottom:710.205000px;}
.y35{bottom:710.940000px;}
.y19b{bottom:711.105000px;}
.y13c{bottom:711.465000px;}
.yaa{bottom:712.725000px;}
.y16{bottom:713.445000px;}
.y15c{bottom:721.005000px;}
.y180{bottom:724.425000px;}
.y56{bottom:727.845000px;}
.y15{bottom:729.825000px;}
.y19a{bottom:734.865000px;}
.ya9{bottom:735.405000px;}
.y7a{bottom:738.105000px;}
.yfd{bottom:740.985000px;}
.y13b{bottom:741.345000px;}
.y159{bottom:749.805000px;}
.y17f{bottom:754.125000px;}
.y34{bottom:758.460000px;}
.yfb{bottom:758.625000px;}
.y199{bottom:758.805000px;}
.ya8{bottom:759.165000px;}
.y79{bottom:759.705000px;}
.y55{bottom:760.065000px;}
.y14{bottom:762.045000px;}
.y13a{bottom:773.565000px;}
.y17e{bottom:774.825000px;}
.y74{bottom:781.125000px;}
.yfa{bottom:781.845000px;}
.y198{bottom:782.565000px;}
.ya7{bottom:782.925000px;}
.y33{bottom:790.680000px;}
.y54{bottom:792.285000px;}
.y13{bottom:794.265000px;}
.y17d{bottom:795.525000px;}
.y8d{bottom:796.245000px;}
.y158{bottom:801.285000px;}
.y76{bottom:802.545000px;}
.y197{bottom:806.325000px;}
.ya6{bottom:806.685000px;}
.y139{bottom:812.265000px;}
.y17c{bottom:816.225000px;}
.y8c{bottom:817.485000px;}
.y32{bottom:822.900000px;}
.yf8{bottom:823.965000px;}
.y196{bottom:830.085000px;}
.ya5{bottom:830.625000px;}
.y17b{bottom:836.925000px;}
.y53{bottom:839.805000px;}
.y138{bottom:842.325000px;}
.y12{bottom:842.505000px;}
.y157{bottom:845.205000px;}
.y73{bottom:849.885000px;}
.y195{bottom:854.025000px;}
.ya4{bottom:854.385000px;}
.y17a{bottom:857.625000px;}
.y8b{bottom:862.125000px;}
.yf7{bottom:866.085000px;}
.y11{bottom:866.625000px;}
.y31{bottom:870.420000px;}
.y72{bottom:870.585000px;}
.y52{bottom:872.025000px;}
.y137{bottom:872.205000px;}
.y194{bottom:877.785000px;}
.ya3{bottom:878.145000px;}
.y179{bottom:878.325000px;}
.y8a{bottom:884.490000px;}
.y155{bottom:889.170000px;}
.yf6{bottom:889.350000px;}
.y10{bottom:890.970000px;}
.y136{bottom:892.950000px;}
.y178{bottom:899.070000px;}
.y193{bottom:901.590000px;}
.ya2{bottom:901.950000px;}
.y51{bottom:904.290000px;}
.y71{bottom:906.810000px;}
.yf4{bottom:912.750000px;}
.yf{bottom:915.810000px;}
.y30{bottom:917.580000px;}
.y177{bottom:919.770000px;}
.y135{bottom:922.830000px;}
.y192{bottom:925.350000px;}
.ya1{bottom:925.890000px;}
.y70{bottom:927.510000px;}
.y154{bottom:928.770000px;}
.y89{bottom:929.130000px;}
.yf1{bottom:935.970000px;}
.y50{bottom:936.330000px;}
.y176{bottom:940.470000px;}
.y9{bottom:941.370000px;}
.y191{bottom:949.290000px;}
.y153{bottom:949.470000px;}
.ya0{bottom:949.650000px;}
.y12c{bottom:950.220000px;}
.y88{bottom:951.450000px;}
.y134{bottom:952.710000px;}
.y8{bottom:958.650000px;}
.y175{bottom:961.170000px;}
.y6f{bottom:963.690000px;}
.y4f{bottom:968.550000px;}
.y7{bottom:972.690000px;}
.y190{bottom:973.050000px;}
.y9f{bottom:973.410000px;}
.y87{bottom:973.770000px;}
.y152{bottom:979.170000px;}
.yf0{bottom:981.870000px;}
.y6e{bottom:984.390000px;}
.y133{bottom:984.930000px;}
.y115{bottom:990.690000px;}
.y18f{bottom:996.810000px;}
.y9e{bottom:997.170000px;}
.y86{bottom:997.530000px;}
.y151{bottom:999.870000px;}
.y6d{bottom:1005.090000px;}
.y4e{bottom:1016.070000px;}
.yef{bottom:1020.570000px;}
.y9d{bottom:1021.110000px;}
.y85{bottom:1021.470000px;}
.y132{bottom:1023.810000px;}
.y6c{bottom:1025.790000px;}
.y6{bottom:1027.230000px;}
.y114{bottom:1029.390000px;}
.yee{bottom:1044.510000px;}
.y9c{bottom:1044.870000px;}
.y84{bottom:1045.230000px;}
.y6b{bottom:1046.490000px;}
.y131{bottom:1047.570000px;}
.y4d{bottom:1048.290000px;}
.y5{bottom:1052.070000px;}
.y113{bottom:1053.330000px;}
.y150{bottom:1056.750000px;}
.yc3{bottom:1059.810000px;}
.y6a{bottom:1067.190000px;}
.yed{bottom:1068.270000px;}
.y9b{bottom:1068.630000px;}
.y83{bottom:1069.710000px;}
.y130{bottom:1071.330000px;}
.y4{bottom:1073.130000px;}
.y4c{bottom:1080.510000px;}
.y14f{bottom:1088.970000px;}
.y82{bottom:1092.030000px;}
.y9a{bottom:1093.110000px;}
.y3{bottom:1093.830000px;}
.y12f{bottom:1095.090000px;}
.yc2{bottom:1095.990000px;}
.y69{bottom:1103.190000px;}
.y2{bottom:1114.530000px;}
.y99{bottom:1115.430000px;}
.yec{bottom:1115.790000px;}
.y81{bottom:1116.870000px;}
.y12e{bottom:1119.030000px;}
.y174{bottom:1128.030000px;}
.y4b{bottom:1128.210000px;}
.y1{bottom:1131.270000px;}
.y80{bottom:1139.370000px;}
.y68{bottom:1139.550000px;}
.y98{bottom:1139.730000px;}
.y2e{bottom:1166.400000px;}
.y2d{bottom:1180.440000px;}
.y2c{bottom:1201.140000px;}
.y2b{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.480000px;}
.h14{height:20.700000px;}
.h19{height:22.500000px;}
.h1a{height:22.536000px;}
.h21{height:23.940000px;}
.h1e{height:27.180000px;}
.h22{height:28.260000px;}
.h7{height:39.049805px;}
.h5{height:39.471680px;}
.h18{height:41.400000px;}
.h13{height:42.840000px;}
.h4{height:43.215117px;}
.h2{height:43.273477px;}
.h1c{height:47.901094px;}
.h1d{height:48.005227px;}
.hc{height:48.278320px;}
.h3{height:52.136719px;}
.h1f{height:63.961367px;}
.h12{height:64.260000px;}
.h15{height:64.371094px;}
.he{height:64.546875px;}
.h10{height:65.144531px;}
.h17{height:65.320312px;}
.h16{height:65.884219px;}
.h20{height:67.006406px;}
.hb{height:67.406836px;}
.h9{height:69.341836px;}
.h11{height:71.613281px;}
.ha{height:76.219102px;}
.hd{height:502.095000px;}
.h1b{height:646.380000px;}
.hf{height:931.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:91.440000px;}
.we{width:102.636000px;}
.w13{width:116.136000px;}
.w10{width:117.180000px;}
.w12{width:120.240000px;}
.w15{width:121.320000px;}
.wd{width:127.080000px;}
.w14{width:152.850000px;}
.wf{width:157.170000px;}
.wc{width:162.750000px;}
.wb{width:167.400000px;}
.wa{width:167.430000px;}
.w1a{width:172.110000px;}
.w8{width:179.130000px;}
.w1b{width:183.990000px;}
.w16{width:185.790000px;}
.w11{width:198.435000px;}
.w1c{width:210.990000px;}
.w7{width:339.330000px;}
.w4{width:339.690000px;}
.w3{width:340.815000px;}
.w6{width:341.175000px;}
.w17{width:396.720000px;}
.w18{width:396.900000px;}
.w9{width:499.035000px;}
.w5{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:1.440000px;}
.x2d{left:4.680000px;}
.x46{left:5.940000px;}
.x2e{left:7.200000px;}
.x9{left:8.640000px;}
.x42{left:11.520000px;}
.x37{left:16.380000px;}
.x3a{left:17.865000px;}
.x35{left:19.125000px;}
.x4a{left:20.385000px;}
.x51{left:22.470000px;}
.x39{left:23.580000px;}
.x31{left:26.640000px;}
.x36{left:28.440000px;}
.x30{left:29.880000px;}
.x48{left:32.040000px;}
.x1f{left:33.705000px;}
.x3b{left:35.325000px;}
.x1b{left:37.080000px;}
.x47{left:38.160000px;}
.x1d{left:39.600000px;}
.x38{left:43.560000px;}
.x49{left:48.060000px;}
.x3e{left:51.120000px;}
.x21{left:55.080000px;}
.x60{left:58.854000px;}
.x13{left:62.094000px;}
.x3c{left:69.885000px;}
.x3d{left:71.100000px;}
.x20{left:80.094000px;}
.x4b{left:85.005000px;}
.x61{left:86.625000px;}
.x4c{left:87.660000px;}
.x3f{left:91.845000px;}
.x18{left:96.654000px;}
.x1a{left:103.680000px;}
.x7{left:106.235987px;}
.xe{left:110.735987px;}
.x52{left:113.070000px;}
.x5c{left:116.316000px;}
.x4d{left:119.925000px;}
.x62{left:126.225000px;}
.x58{left:146.735987px;}
.xc{left:151.049987px;}
.x23{left:153.749987px;}
.x16{left:160.229987px;}
.xb{left:164.729987px;}
.x53{left:168.765000px;}
.x54{left:173.729987px;}
.x4f{left:175.349987px;}
.x14{left:180.749987px;}
.x10{left:183.629987px;}
.x26{left:187.229987px;}
.x55{left:200.729987px;}
.x11{left:202.889987px;}
.x5d{left:208.110000px;}
.x27{left:214.229987px;}
.x41{left:217.830000px;}
.x59{left:221.249987px;}
.x40{left:232.229987px;}
.x17{left:234.569987px;}
.x28{left:241.229987px;}
.x2c{left:246.269987px;}
.x2{left:254.189987px;}
.x29{left:269.894987px;}
.x50{left:270.900000px;}
.x6{left:274.034987px;}
.x19{left:286.995000px;}
.x2a{left:297.614987px;}
.x5b{left:300.314987px;}
.xa{left:304.065000px;}
.xd{left:313.994987px;}
.x43{left:334.875000px;}
.x2f{left:337.575000px;}
.x15{left:339.879000px;}
.x5{left:362.414987px;}
.xf{left:371.054987px;}
.x4{left:379.874987px;}
.x5e{left:380.955000px;}
.x24{left:393.554987px;}
.x3{left:398.414987px;}
.x8{left:446.474987px;}
.x1c{left:455.145000px;}
.x25{left:470.084987px;}
.x12{left:473.504987px;}
.x5a{left:487.004987px;}
.x44{left:488.445000px;}
.x32{left:495.105000px;}
.x56{left:499.784987px;}
.x57{left:507.164987px;}
.x5f{left:565.845000px;}
.x45{left:610.485000px;}
.x34{left:612.645000px;}
.x1e{left:623.265000px;}
.x4e{left:669.209987px;}
.x22{left:754.349987px;}
.x2b{left:779.909987px;}
.x1{left:786.749987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.152000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.199040pt;}
.ls1c{letter-spacing:0.239360pt;}
.lsa{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.271360pt;}
.ls11{letter-spacing:2.688000pt;}
.lsd{letter-spacing:18.048000pt;}
.ls1a{letter-spacing:21.248000pt;}
.ls1d{letter-spacing:25.088000pt;}
.lsc{letter-spacing:28.288000pt;}
.lsb{letter-spacing:70.528000pt;}
.ls18{letter-spacing:78.848000pt;}
.ls17{letter-spacing:114.048000pt;}
.ls1b{letter-spacing:117.248000pt;}
.ls12{letter-spacing:119.808000pt;}
.ls14{letter-spacing:126.032640pt;}
.ls1{letter-spacing:169.600000pt;}
.ls10{letter-spacing:174.032640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws9{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.728000pt;}
.wsd{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.464000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.984000pt;}
.ws3{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:183.306667pt;}
._36{margin-left:-11.392000pt;}
._1b{margin-left:-4.778667pt;}
._1a{margin-left:-3.285333pt;}
._9{margin-left:-2.368000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._f{width:2.816000pt;}
._a{width:3.776000pt;}
._b{width:5.258667pt;}
._e{width:6.272000pt;}
._14{width:7.296000pt;}
._13{width:8.320000pt;}
._5{width:9.344000pt;}
._6{width:10.944000pt;}
._17{width:12.544000pt;}
._16{width:13.504000pt;}
._15{width:14.528000pt;}
._12{width:16.320000pt;}
._d{width:19.136000pt;}
._c{width:20.480000pt;}
._26{width:21.482667pt;}
._24{width:23.168000pt;}
._11{width:24.320000pt;}
._2b{width:27.328000pt;}
._23{width:28.608000pt;}
._22{width:29.952000pt;}
._25{width:31.424000pt;}
._1d{width:32.768000pt;}
._1c{width:38.400000pt;}
._32{width:39.754667pt;}
._31{width:40.672000pt;}
._19{width:41.856000pt;}
._18{width:43.328000pt;}
._1f{width:50.688000pt;}
._1e{width:52.288000pt;}
._27{width:61.056000pt;}
._2a{width:63.125333pt;}
._10{width:69.856000pt;}
._21{width:73.728000pt;}
._20{width:74.688000pt;}
._33{width:78.848000pt;}
._8{width:83.136000pt;}
._7{width:84.160000pt;}
._2f{width:95.104000pt;}
._28{width:114.048000pt;}
._34{width:117.248000pt;}
._30{width:119.808000pt;}
._29{width:143.104000pt;}
._2e{width:227.306667pt;}
._2d{width:256.800000pt;}
._2c{width:271.466667pt;}
._4{width:349.600000pt;}
._3{width:740.800000pt;}
._35{width:750.346667pt;}
._2{width:1414.165333pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y2a{bottom:2.880000pt;}
.y78{bottom:3.360000pt;}
.yf5{bottom:4.160000pt;}
.y109{bottom:4.200000pt;}
.y156{bottom:6.240000pt;}
.y12d{bottom:6.693333pt;}
.y15b{bottom:6.720000pt;}
.y127{bottom:6.946667pt;}
.y15a{bottom:8.160000pt;}
.yfc{bottom:9.920000pt;}
.y10f{bottom:10.080000pt;}
.yf2{bottom:12.480000pt;}
.yf9{bottom:12.640000pt;}
.y29{bottom:18.234667pt;}
.yf3{bottom:21.760000pt;}
.y75{bottom:22.720000pt;}
.y77{bottom:23.040000pt;}
.y48{bottom:32.320000pt;}
.y28{bottom:33.594667pt;}
.ye{bottom:38.880000pt;}
.yc{bottom:60.960000pt;}
.y126{bottom:72.066667pt;}
.y27{bottom:72.314667pt;}
.ya{bottom:84.320000pt;}
.y47{bottom:89.600000pt;}
.y26{bottom:99.994667pt;}
.y12b{bottom:102.813333pt;}
.y7f{bottom:117.792000pt;}
.y46{bottom:118.240000pt;}
.y97{bottom:118.272000pt;}
.y1a{bottom:119.712000pt;}
.y112{bottom:120.032000pt;}
.y173{bottom:120.672000pt;}
.yeb{bottom:121.152000pt;}
.y12a{bottom:126.080000pt;}
.y14e{bottom:127.232000pt;}
.y67{bottom:129.472000pt;}
.y4a{bottom:132.352000pt;}
.y125{bottom:137.186667pt;}
.yd4{bottom:137.946667pt;}
.y7e{bottom:138.906667pt;}
.y172{bottom:139.066667pt;}
.y96{bottom:139.386667pt;}
.y11d{bottom:140.666667pt;}
.y111{bottom:141.146667pt;}
.y25{bottom:141.274667pt;}
.yc1{bottom:145.946667pt;}
.y45{bottom:146.760000pt;}
.y66{bottom:147.226667pt;}
.yea{bottom:155.706667pt;}
.y171{bottom:157.466667pt;}
.yd3{bottom:159.226667pt;}
.y14d{bottom:159.386667pt;}
.y7d{bottom:160.026667pt;}
.y95{bottom:160.666667pt;}
.y11c{bottom:161.946667pt;}
.yc0{bottom:167.066667pt;}
.y110{bottom:167.546667pt;}
.y24{bottom:168.954667pt;}
.y44{bottom:175.400000pt;}
.y170{bottom:175.866667pt;}
.y49{bottom:176.026667pt;}
.y65{bottom:176.666667pt;}
.ye9{bottom:176.826667pt;}
.yd2{bottom:180.346667pt;}
.y94{bottom:181.786667pt;}
.y11b{bottom:183.066667pt;}
.y10e{bottom:183.226667pt;}
.ybf{bottom:188.186667pt;}
.y7c{bottom:188.826667pt;}
.y16f{bottom:194.266667pt;}
.y23{bottom:196.474667pt;}
.y2f{bottom:197.946667pt;}
.yd1{bottom:201.466667pt;}
.y14c{bottom:201.626667pt;}
.y124{bottom:202.306667pt;}
.y93{bottom:202.906667pt;}
.y10d{bottom:204.026667pt;}
.y43{bottom:204.040000pt;}
.y11a{bottom:204.186667pt;}
.y64{bottom:205.306667pt;}
.ybe{bottom:209.466667pt;}
.y16e{bottom:212.666667pt;}
.ye8{bottom:219.226667pt;}
.yd0{bottom:222.586667pt;}
.y92{bottom:224.026667pt;}
.y22{bottom:224.194667pt;}
.y119{bottom:225.306667pt;}
.y129{bottom:229.213333pt;}
.ybd{bottom:230.586667pt;}
.y16d{bottom:231.066667pt;}
.y42{bottom:232.680000pt;}
.y63{bottom:233.946667pt;}
.ye7{bottom:240.346667pt;}
.y10c{bottom:241.466667pt;}
.ycf{bottom:243.866667pt;}
.y14b{bottom:244.186667pt;}
.y91{bottom:245.146667pt;}
.y118{bottom:246.586667pt;}
.y16c{bottom:249.466667pt;}
.ybc{bottom:251.706667pt;}
.y21{bottom:251.714667pt;}
.ye6{bottom:261.466667pt;}
.y62{bottom:262.586667pt;}
.yce{bottom:264.986667pt;}
.y90{bottom:266.426667pt;}
.y123{bottom:267.426667pt;}
.y117{bottom:267.706667pt;}
.y16b{bottom:267.866667pt;}
.ybb{bottom:272.826667pt;}
.y1aa{bottom:274.906667pt;}
.y41{bottom:274.920000pt;}
.y18e{bottom:278.266667pt;}
.y10b{bottom:278.906667pt;}
.y20{bottom:279.394667pt;}
.ye5{bottom:282.586667pt;}
.ycd{bottom:286.106667pt;}
.y16a{bottom:286.266667pt;}
.y8f{bottom:287.546667pt;}
.y14a{bottom:289.146667pt;}
.y61{bottom:291.066667pt;}
.yba{bottom:294.106667pt;}
.y10a{bottom:299.546667pt;}
.y116{bottom:301.146667pt;}
.y11e{bottom:302.720000pt;}
.y40{bottom:303.560000pt;}
.ye4{bottom:303.866667pt;}
.y169{bottom:304.666667pt;}
.y8e{bottom:305.146667pt;}
.y1f{bottom:306.914667pt;}
.ycc{bottom:307.226667pt;}
.y18d{bottom:310.426667pt;}
.y1a9{bottom:314.746667pt;}
.yb9{bottom:315.226667pt;}
.y149{bottom:315.546667pt;}
.y108{bottom:320.186667pt;}
.ye3{bottom:325.026667pt;}
.ycb{bottom:328.546667pt;}
.y3f{bottom:332.200000pt;}
.y122{bottom:332.546667pt;}
.y60{bottom:333.506667pt;}
.y1e{bottom:334.594667pt;}
.y1a8{bottom:335.906667pt;}
.yb8{bottom:336.386667pt;}
.y168{bottom:339.106667pt;}
.y107{bottom:340.866667pt;}
.ye2{bottom:346.146667pt;}
.yca{bottom:349.666667pt;}
.y148{bottom:352.226667pt;}
.y18c{bottom:355.426667pt;}
.y1a7{bottom:357.026667pt;}
.yb7{bottom:357.506667pt;}
.y167{bottom:360.386667pt;}
.y3e{bottom:360.706667pt;}
.y1d{bottom:362.114667pt;}
.y5f{bottom:362.146667pt;}
.ye1{bottom:367.266667pt;}
.yc9{bottom:370.786667pt;}
.y18b{bottom:376.706667pt;}
.y1a6{bottom:378.146667pt;}
.yb6{bottom:378.626667pt;}
.y166{bottom:381.506667pt;}
.ye0{bottom:388.546667pt;}
.y3d{bottom:389.346667pt;}
.y1c{bottom:389.794667pt;}
.y5e{bottom:390.626667pt;}
.yc8{bottom:391.906667pt;}
.y147{bottom:397.026667pt;}
.y121{bottom:397.666667pt;}
.y106{bottom:397.826667pt;}
.y1a5{bottom:399.426667pt;}
.yb5{bottom:400.386667pt;}
.y165{bottom:402.626667pt;}
.ydf{bottom:409.666667pt;}
.yc7{bottom:413.186667pt;}
.y1b{bottom:417.474667pt;}
.y3c{bottom:417.986667pt;}
.y18a{bottom:418.946667pt;}
.y5d{bottom:419.266667pt;}
.yb4{bottom:420.386667pt;}
.y1a4{bottom:420.546667pt;}
.y146{bottom:423.586667pt;}
.y164{bottom:423.746667pt;}
.y105{bottom:424.226667pt;}
.yde{bottom:430.786667pt;}
.yc6{bottom:434.306667pt;}
.y189{bottom:440.066667pt;}
.y1a3{bottom:441.666667pt;}
.y145{bottom:442.146667pt;}
.yb3{bottom:442.306667pt;}
.y104{bottom:442.626667pt;}
.y163{bottom:445.026667pt;}
.y5c{bottom:447.906667pt;}
.yb2{bottom:459.586667pt;}
.y3b{bottom:460.226667pt;}
.y188{bottom:461.346667pt;}
.y1a2{bottom:462.786667pt;}
.y120{bottom:462.813333pt;}
.ydd{bottom:465.346667pt;}
.y162{bottom:466.146667pt;}
.yc5{bottom:466.466667pt;}
.y144{bottom:468.706667pt;}
.y5b{bottom:476.546667pt;}
.y103{bottom:477.186667pt;}
.yb1{bottom:477.506667pt;}
.y187{bottom:482.466667pt;}
.y1a1{bottom:484.066667pt;}
.ydc{bottom:486.466667pt;}
.y143{bottom:487.106667pt;}
.y3a{bottom:488.866667pt;}
.y102{bottom:498.306667pt;}
.y161{bottom:500.546667pt;}
.y186{bottom:503.586667pt;}
.y1a0{bottom:505.186667pt;}
.y142{bottom:505.506667pt;}
.ydb{bottom:507.586667pt;}
.yc4{bottom:507.906667pt;}
.yb0{bottom:509.986667pt;}
.y39{bottom:517.506667pt;}
.y5a{bottom:518.786667pt;}
.y185{bottom:524.706667pt;}
.y19f{bottom:526.306667pt;}
.y160{bottom:526.946667pt;}
.y11f{bottom:527.933333pt;}
.yda{bottom:528.706667pt;}
.y101{bottom:530.306667pt;}
.yaf{bottom:530.626667pt;}
.y141{bottom:532.066667pt;}
.y128{bottom:545.146667pt;}
.y184{bottom:545.986667pt;}
.y38{bottom:546.146667pt;}
.y59{bottom:547.426667pt;}
.yd9{bottom:549.986667pt;}
.y140{bottom:550.466667pt;}
.yae{bottom:551.266667pt;}
.y100{bottom:558.973333pt;}
.y15f{bottom:561.533333pt;}
.y183{bottom:567.133333pt;}
.y19e{bottom:568.573333pt;}
.y19{bottom:570.813333pt;}
.yd8{bottom:571.133333pt;}
.yad{bottom:571.773333pt;}
.y37{bottom:574.786667pt;}
.y58{bottom:576.093333pt;}
.y13f{bottom:577.053333pt;}
.y15e{bottom:579.933333pt;}
.yff{bottom:587.613333pt;}
.y182{bottom:588.253333pt;}
.y19d{bottom:589.853333pt;}
.yd7{bottom:592.253333pt;}
.yac{bottom:592.413333pt;}
.y18{bottom:592.733333pt;}
.y13e{bottom:595.453333pt;}
.y36{bottom:603.306667pt;}
.y15d{bottom:606.333333pt;}
.y19c{bottom:610.973333pt;}
.yab{bottom:613.053333pt;}
.yd6{bottom:613.373333pt;}
.y17{bottom:613.533333pt;}
.y13d{bottom:613.853333pt;}
.yfe{bottom:616.253333pt;}
.y7b{bottom:616.413333pt;}
.y57{bottom:618.333333pt;}
.y181{bottom:622.813333pt;}
.yd5{bottom:631.293333pt;}
.y35{bottom:631.946667pt;}
.y19b{bottom:632.093333pt;}
.y13c{bottom:632.413333pt;}
.yaa{bottom:633.533333pt;}
.y16{bottom:634.173333pt;}
.y15c{bottom:640.893333pt;}
.y180{bottom:643.933333pt;}
.y56{bottom:646.973333pt;}
.y15{bottom:648.733333pt;}
.y19a{bottom:653.213333pt;}
.ya9{bottom:653.693333pt;}
.y7a{bottom:656.093333pt;}
.yfd{bottom:658.653333pt;}
.y13b{bottom:658.973333pt;}
.y159{bottom:666.493333pt;}
.y17f{bottom:670.333333pt;}
.y34{bottom:674.186667pt;}
.yfb{bottom:674.333333pt;}
.y199{bottom:674.493333pt;}
.ya8{bottom:674.813333pt;}
.y79{bottom:675.293333pt;}
.y55{bottom:675.613333pt;}
.y14{bottom:677.373333pt;}
.y13a{bottom:687.613333pt;}
.y17e{bottom:688.733333pt;}
.y74{bottom:694.333333pt;}
.yfa{bottom:694.973333pt;}
.y198{bottom:695.613333pt;}
.ya7{bottom:695.933333pt;}
.y33{bottom:702.826667pt;}
.y54{bottom:704.253333pt;}
.y13{bottom:706.013333pt;}
.y17d{bottom:707.133333pt;}
.y8d{bottom:707.773333pt;}
.y158{bottom:712.253333pt;}
.y76{bottom:713.373333pt;}
.y197{bottom:716.733333pt;}
.ya6{bottom:717.053333pt;}
.y139{bottom:722.013333pt;}
.y17c{bottom:725.533333pt;}
.y8c{bottom:726.653333pt;}
.y32{bottom:731.466667pt;}
.yf8{bottom:732.413333pt;}
.y196{bottom:737.853333pt;}
.ya5{bottom:738.333333pt;}
.y17b{bottom:743.933333pt;}
.y53{bottom:746.493333pt;}
.y138{bottom:748.733333pt;}
.y12{bottom:748.893333pt;}
.y157{bottom:751.293333pt;}
.y73{bottom:755.453333pt;}
.y195{bottom:759.133333pt;}
.ya4{bottom:759.453333pt;}
.y17a{bottom:762.333333pt;}
.y8b{bottom:766.333333pt;}
.yf7{bottom:769.853333pt;}
.y11{bottom:770.333333pt;}
.y31{bottom:773.706667pt;}
.y72{bottom:773.853333pt;}
.y52{bottom:775.133333pt;}
.y137{bottom:775.293333pt;}
.y194{bottom:780.253333pt;}
.ya3{bottom:780.573333pt;}
.y179{bottom:780.733333pt;}
.y8a{bottom:786.213333pt;}
.y155{bottom:790.373333pt;}
.yf6{bottom:790.533333pt;}
.y10{bottom:791.973333pt;}
.y136{bottom:793.733333pt;}
.y178{bottom:799.173333pt;}
.y193{bottom:801.413333pt;}
.ya2{bottom:801.733333pt;}
.y51{bottom:803.813333pt;}
.y71{bottom:806.053333pt;}
.yf4{bottom:811.333333pt;}
.yf{bottom:814.053333pt;}
.y30{bottom:815.626667pt;}
.y177{bottom:817.573333pt;}
.y135{bottom:820.293333pt;}
.y192{bottom:822.533333pt;}
.ya1{bottom:823.013333pt;}
.y70{bottom:824.453333pt;}
.y154{bottom:825.573333pt;}
.y89{bottom:825.893333pt;}
.yf1{bottom:831.973333pt;}
.y50{bottom:832.293333pt;}
.y176{bottom:835.973333pt;}
.y9{bottom:836.773333pt;}
.y191{bottom:843.813333pt;}
.y153{bottom:843.973333pt;}
.ya0{bottom:844.133333pt;}
.y12c{bottom:844.640000pt;}
.y88{bottom:845.733333pt;}
.y134{bottom:846.853333pt;}
.y8{bottom:852.133333pt;}
.y175{bottom:854.373333pt;}
.y6f{bottom:856.613333pt;}
.y4f{bottom:860.933333pt;}
.y7{bottom:864.613333pt;}
.y190{bottom:864.933333pt;}
.y9f{bottom:865.253333pt;}
.y87{bottom:865.573333pt;}
.y152{bottom:870.373333pt;}
.yf0{bottom:872.773333pt;}
.y6e{bottom:875.013333pt;}
.y133{bottom:875.493333pt;}
.y115{bottom:880.613333pt;}
.y18f{bottom:886.053333pt;}
.y9e{bottom:886.373333pt;}
.y86{bottom:886.693333pt;}
.y151{bottom:888.773333pt;}
.y6d{bottom:893.413333pt;}
.y4e{bottom:903.173333pt;}
.yef{bottom:907.173333pt;}
.y9d{bottom:907.653333pt;}
.y85{bottom:907.973333pt;}
.y132{bottom:910.053333pt;}
.y6c{bottom:911.813333pt;}
.y6{bottom:913.093333pt;}
.y114{bottom:915.013333pt;}
.yee{bottom:928.453333pt;}
.y9c{bottom:928.773333pt;}
.y84{bottom:929.093333pt;}
.y6b{bottom:930.213333pt;}
.y131{bottom:931.173333pt;}
.y4d{bottom:931.813333pt;}
.y5{bottom:935.173333pt;}
.y113{bottom:936.293333pt;}
.y150{bottom:939.333333pt;}
.yc3{bottom:942.053333pt;}
.y6a{bottom:948.613333pt;}
.yed{bottom:949.573333pt;}
.y9b{bottom:949.893333pt;}
.y83{bottom:950.853333pt;}
.y130{bottom:952.293333pt;}
.y4{bottom:953.893333pt;}
.y4c{bottom:960.453333pt;}
.y14f{bottom:967.973333pt;}
.y82{bottom:970.693333pt;}
.y9a{bottom:971.653333pt;}
.y3{bottom:972.293333pt;}
.y12f{bottom:973.413333pt;}
.yc2{bottom:974.213333pt;}
.y69{bottom:980.613333pt;}
.y2{bottom:990.693333pt;}
.y99{bottom:991.493333pt;}
.yec{bottom:991.813333pt;}
.y81{bottom:992.773333pt;}
.y12e{bottom:994.693333pt;}
.y174{bottom:1002.693333pt;}
.y4b{bottom:1002.853333pt;}
.y1{bottom:1005.573333pt;}
.y80{bottom:1012.773333pt;}
.y68{bottom:1012.933333pt;}
.y98{bottom:1013.093333pt;}
.y2e{bottom:1036.800000pt;}
.y2d{bottom:1049.280000pt;}
.y2c{bottom:1067.680000pt;}
.y2b{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.760000pt;}
.h14{height:18.400000pt;}
.h19{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h21{height:21.280000pt;}
.h1e{height:24.160000pt;}
.h22{height:25.120000pt;}
.h7{height:34.710938pt;}
.h5{height:35.085938pt;}
.h18{height:36.800000pt;}
.h13{height:38.080000pt;}
.h4{height:38.413438pt;}
.h2{height:38.465312pt;}
.h1c{height:42.578750pt;}
.h1d{height:42.671312pt;}
.hc{height:42.914062pt;}
.h3{height:46.343750pt;}
.h1f{height:56.854549pt;}
.h12{height:57.120000pt;}
.h15{height:57.218750pt;}
.he{height:57.375000pt;}
.h10{height:57.906250pt;}
.h17{height:58.062500pt;}
.h16{height:58.563750pt;}
.h20{height:59.561250pt;}
.hb{height:59.917188pt;}
.h9{height:61.637188pt;}
.h11{height:63.656250pt;}
.ha{height:67.750312pt;}
.hd{height:446.306667pt;}
.h1b{height:574.560000pt;}
.hf{height:828.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:81.280000pt;}
.we{width:91.232000pt;}
.w13{width:103.232000pt;}
.w10{width:104.160000pt;}
.w12{width:106.880000pt;}
.w15{width:107.840000pt;}
.wd{width:112.960000pt;}
.w14{width:135.866667pt;}
.wf{width:139.706667pt;}
.wc{width:144.666667pt;}
.wb{width:148.800000pt;}
.wa{width:148.826667pt;}
.w1a{width:152.986667pt;}
.w8{width:159.226667pt;}
.w1b{width:163.546667pt;}
.w16{width:165.146667pt;}
.w11{width:176.386667pt;}
.w1c{width:187.546667pt;}
.w7{width:301.626667pt;}
.w4{width:301.946667pt;}
.w3{width:302.946667pt;}
.w6{width:303.266667pt;}
.w17{width:352.640000pt;}
.w18{width:352.800000pt;}
.w9{width:443.586667pt;}
.w5{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:1.280000pt;}
.x2d{left:4.160000pt;}
.x46{left:5.280000pt;}
.x2e{left:6.400000pt;}
.x9{left:7.680000pt;}
.x42{left:10.240000pt;}
.x37{left:14.560000pt;}
.x3a{left:15.880000pt;}
.x35{left:17.000000pt;}
.x4a{left:18.120000pt;}
.x51{left:19.973333pt;}
.x39{left:20.960000pt;}
.x31{left:23.680000pt;}
.x36{left:25.280000pt;}
.x30{left:26.560000pt;}
.x48{left:28.480000pt;}
.x1f{left:29.960000pt;}
.x3b{left:31.400000pt;}
.x1b{left:32.960000pt;}
.x47{left:33.920000pt;}
.x1d{left:35.200000pt;}
.x38{left:38.720000pt;}
.x49{left:42.720000pt;}
.x3e{left:45.440000pt;}
.x21{left:48.960000pt;}
.x60{left:52.314667pt;}
.x13{left:55.194667pt;}
.x3c{left:62.120000pt;}
.x3d{left:63.200000pt;}
.x20{left:71.194667pt;}
.x4b{left:75.560000pt;}
.x61{left:77.000000pt;}
.x4c{left:77.920000pt;}
.x3f{left:81.640000pt;}
.x18{left:85.914667pt;}
.x1a{left:92.160000pt;}
.x7{left:94.431988pt;}
.xe{left:98.431988pt;}
.x52{left:100.506667pt;}
.x5c{left:103.392000pt;}
.x4d{left:106.600000pt;}
.x62{left:112.200000pt;}
.x58{left:130.431988pt;}
.xc{left:134.266655pt;}
.x23{left:136.666655pt;}
.x16{left:142.426655pt;}
.xb{left:146.426655pt;}
.x53{left:150.013333pt;}
.x54{left:154.426655pt;}
.x4f{left:155.866655pt;}
.x14{left:160.666655pt;}
.x10{left:163.226655pt;}
.x26{left:166.426655pt;}
.x55{left:178.426655pt;}
.x11{left:180.346655pt;}
.x5d{left:184.986667pt;}
.x27{left:190.426655pt;}
.x41{left:193.626667pt;}
.x59{left:196.666655pt;}
.x40{left:206.426655pt;}
.x17{left:208.506655pt;}
.x28{left:214.426655pt;}
.x2c{left:218.906655pt;}
.x2{left:225.946655pt;}
.x29{left:239.906655pt;}
.x50{left:240.800000pt;}
.x6{left:243.586655pt;}
.x19{left:255.106667pt;}
.x2a{left:264.546655pt;}
.x5b{left:266.946655pt;}
.xa{left:270.280000pt;}
.xd{left:279.106655pt;}
.x43{left:297.666667pt;}
.x2f{left:300.066667pt;}
.x15{left:302.114667pt;}
.x5{left:322.146655pt;}
.xf{left:329.826655pt;}
.x4{left:337.666655pt;}
.x5e{left:338.626667pt;}
.x24{left:349.826655pt;}
.x3{left:354.146655pt;}
.x8{left:396.866655pt;}
.x1c{left:404.573333pt;}
.x25{left:417.853322pt;}
.x12{left:420.893322pt;}
.x5a{left:432.893322pt;}
.x44{left:434.173333pt;}
.x32{left:440.093333pt;}
.x56{left:444.253322pt;}
.x57{left:450.813322pt;}
.x5f{left:502.973333pt;}
.x45{left:542.653333pt;}
.x34{left:544.573333pt;}
.x1e{left:554.013333pt;}
.x4e{left:594.853322pt;}
.x22{left:670.533322pt;}
.x2b{left:693.253322pt;}
.x1{left:699.333322pt;}
}




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