
    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_b75cf6fb2cb6ea0591ae8a73.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_3ae9fa550857e2963df1340c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_c0bbedcd8df4fcd5622a5968.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_c3382a159e9a7b75fdd6222f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cfcd68ccd2da749649f37fc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_58aa2c215bf5cf9d25f8d68a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d797793111b12d45e10a6071.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_048cdd3f90c69a41ace3fa9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.046387;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_7cb32e752ed3ed122a3f4f5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_6304e5dee7a30134b5c0d25c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_30af04c6bbc4751d79b775ea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37dc8783c3234e708e243561.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-39.000000px;}
.v4{vertical-align:-27.000000px;}
.v8{vertical-align:-20.880000px;}
.v7{vertical-align:-6.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:39.000000px;}
.lse{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.094800px;}
.ls10{letter-spacing:-0.090000px;}
.ls3{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.017280px;}
.ls1b{letter-spacing:-0.013320px;}
.ls1f{letter-spacing:-0.012960px;}
.ls13{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.017280px;}
.ls16{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.094200px;}
.ls12{letter-spacing:0.115680px;}
.ls2{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.265200px;}
.ls15{letter-spacing:0.360000px;}
.lsc{letter-spacing:51.984000px;}
.lsa{letter-spacing:53.522640px;}
.ls5{letter-spacing:54.998640px;}
.lsf{letter-spacing:846.120000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws2{word-spacing:-27.000000px;}
.ws8{word-spacing:-24.030000px;}
.ws12{word-spacing:-19.624200px;}
.wsd{word-spacing:-19.530000px;}
.ws0{word-spacing:-18.984000px;}
.ws9{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.568000px;}
.ws11{word-spacing:-17.496000px;}
.ws3{word-spacing:-17.280000px;}
.ws1c{word-spacing:-15.210000px;}
.ws14{word-spacing:-15.183600px;}
.ws1a{word-spacing:-15.120000px;}
.ws15{word-spacing:-15.083280px;}
.ws16{word-spacing:-15.030000px;}
.ws19{word-spacing:-15.016680px;}
.ws1b{word-spacing:-14.850000px;}
.ws18{word-spacing:-14.723400px;}
.ws10{word-spacing:-12.235200px;}
.ws4{word-spacing:-11.970000px;}
.wsc{word-spacing:-11.875200px;}
.ws17{word-spacing:-9.720000px;}
.ws1d{word-spacing:-9.702720px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-16.406400px;}
._4{margin-left:-12.876000px;}
._7{margin-left:-10.898400px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._5{margin-left:-3.136800px;}
._1{margin-left:-1.996800px;}
._8{width:1.108800px;}
._17{width:2.265600px;}
._a{width:3.278400px;}
._9{width:4.502400px;}
._0{width:5.587200px;}
._13{width:6.796800px;}
._15{width:8.064000px;}
._c{width:9.648000px;}
._d{width:10.872000px;}
._22{width:12.024000px;}
._1e{width:13.464000px;}
._21{width:14.472000px;}
._18{width:15.552000px;}
._b{width:16.848000px;}
._16{width:19.080000px;}
._19{width:20.088000px;}
._1f{width:21.168000px;}
._10{width:22.680000px;}
._11{width:23.884800px;}
._12{width:25.046400px;}
._f{width:26.640000px;}
._e{width:27.864000px;}
._24{width:29.592000px;}
._28{width:30.600000px;}
._29{width:35.044800px;}
._1d{width:36.072000px;}
._1c{width:37.704000px;}
._14{width:38.880000px;}
._1a{width:48.384000px;}
._25{width:49.464000px;}
._26{width:50.611200px;}
._2a{width:72.432000px;}
._1b{width:78.048000px;}
._2d{width:85.224000px;}
._2c{width:86.256000px;}
._2b{width:119.376000px;}
._27{width:122.472000px;}
._23{width:154.872000px;}
._20{width:215.208000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:38.880000px;}
.fs6{font-size:47.880000px;}
.fsa{font-size:60.120000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:78.120000px;}
.fs7{font-size:83.880000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs8{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y179{bottom:-5.400000px;}
.y194{bottom:-2.610000px;}
.y18a{bottom:-2.520000px;}
.y191{bottom:-2.070000px;}
.y198{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y161{bottom:4.050000px;}
.y168{bottom:4.590000px;}
.y16e{bottom:4.770000px;}
.y17a{bottom:4.950000px;}
.y188{bottom:5.850000px;}
.y187{bottom:6.030000px;}
.y193{bottom:6.060000px;}
.y18b{bottom:6.120000px;}
.y16b{bottom:6.480000px;}
.y190{bottom:6.570000px;}
.y170{bottom:7.560000px;}
.yc{bottom:8.040000px;}
.yc9{bottom:57.060000px;}
.y1b{bottom:57.150000px;}
.yc8{bottom:77.760000px;}
.y1a{bottom:77.850000px;}
.y14{bottom:99.795000px;}
.y18{bottom:113.670000px;}
.y148{bottom:114.030000px;}
.ybf{bottom:117.000000px;}
.y138{bottom:131.400000px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y103{bottom:140.580000px;}
.y127{bottom:141.660000px;}
.y14b{bottom:143.460000px;}
.yf2{bottom:144.900000px;}
.yda{bottom:146.610000px;}
.y4d{bottom:149.850000px;}
.y65{bottom:151.650000px;}
.y15{bottom:154.950000px;}
.y147{bottom:155.430000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.ybe{bottom:158.400000px;}
.ya7{bottom:162.180000px;}
.y8a{bottom:166.410000px;}
.y137{bottom:172.800000px;}
.y102{bottom:181.980000px;}
.y14f{bottom:184.770000px;}
.yf1{bottom:186.300000px;}
.yd9{bottom:188.010000px;}
.y4c{bottom:191.250000px;}
.y64{bottom:193.050000px;}
.y126{bottom:195.030000px;}
.y35{bottom:195.750000px;}
.y146{bottom:196.830000px;}
.ybd{bottom:199.800000px;}
.y113{bottom:204.030000px;}
.y89{bottom:207.810000px;}
.y136{bottom:214.200000px;}
.ya6{bottom:215.550000px;}
.y101{bottom:223.380000px;}
.yd8{bottom:229.350000px;}
.y4b{bottom:232.680000px;}
.y63{bottom:234.480000px;}
.y125{bottom:236.460000px;}
.y145{bottom:238.260000px;}
.yf0{bottom:239.700000px;}
.ybc{bottom:241.230000px;}
.y34{bottom:249.150000px;}
.y135{bottom:255.630000px;}
.ya5{bottom:256.980000px;}
.y112{bottom:257.430000px;}
.y100{bottom:264.810000px;}
.yd7{bottom:270.750000px;}
.y4a{bottom:274.080000px;}
.y92{bottom:275.880000px;}
.y124{bottom:277.860000px;}
.y144{bottom:279.660000px;}
.yef{bottom:281.100000px;}
.ybb{bottom:282.630000px;}
.y62{bottom:287.850000px;}
.y33{bottom:290.550000px;}
.y14a{bottom:291.630000px;}
.ya4{bottom:298.380000px;}
.yff{bottom:306.210000px;}
.y134{bottom:309.000000px;}
.y111{bottom:310.800000px;}
.yd6{bottom:312.150000px;}
.y49{bottom:315.480000px;}
.y91{bottom:317.280000px;}
.y123{bottom:319.260000px;}
.yee{bottom:322.500000px;}
.yba{bottom:324.030000px;}
.y61{bottom:329.250000px;}
.y32{bottom:331.950000px;}
.y143{bottom:333.030000px;}
.y88{bottom:336.900000px;}
.ya3{bottom:339.780000px;}
.y76{bottom:341.310000px;}
.ya{bottom:344.680500px;}
.yfe{bottom:347.610000px;}
.y133{bottom:350.400000px;}
.yd5{bottom:353.550000px;}
.y48{bottom:356.880000px;}
.y90{bottom:358.680000px;}
.y176{bottom:360.120000px;}
.y122{bottom:360.660000px;}
.yed{bottom:363.900000px;}
.y110{bottom:364.260000px;}
.yb9{bottom:365.430000px;}
.y60{bottom:370.650000px;}
.y31{bottom:373.350000px;}
.y142{bottom:374.430000px;}
.y175{bottom:377.400000px;}
.ya2{bottom:381.180000px;}
.y75{bottom:382.710000px;}
.yd{bottom:386.490000px;}
.yfd{bottom:389.010000px;}
.y87{bottom:391.800000px;}
.y174{bottom:394.590000px;}
.yd4{bottom:394.950000px;}
.y9{bottom:395.689500px;}
.y15d{bottom:397.020000px;}
.y47{bottom:398.280000px;}
.y8f{bottom:400.080000px;}
.y132{bottom:403.860000px;}
.yec{bottom:405.300000px;}
.yb8{bottom:406.830000px;}
.y173{bottom:409.170000px;}
.y5f{bottom:412.050000px;}
.y121{bottom:414.030000px;}
.y30{bottom:414.750000px;}
.y14e{bottom:415.830000px;}
.y10f{bottom:417.630000px;}
.ya1{bottom:422.580000px;}
.y74{bottom:424.110000px;}
.y141{bottom:427.800000px;}
.y172{bottom:429.870000px;}
.yfc{bottom:430.410000px;}
.yb{bottom:434.850000px;}
.y46{bottom:439.680000px;}
.y8e{bottom:441.390000px;}
.y86{bottom:445.260000px;}
.y8{bottom:446.698500px;}
.yeb{bottom:446.700000px;}
.yb7{bottom:448.230000px;}
.yd3{bottom:448.410000px;}
.y15c{bottom:450.390000px;}
.y171{bottom:450.570000px;}
.y5e{bottom:453.450000px;}
.y120{bottom:455.430000px;}
.y2f{bottom:456.150000px;}
.ya0{bottom:463.980000px;}
.y73{bottom:465.510000px;}
.y140{bottom:469.200000px;}
.y10e{bottom:471.000000px;}
.y16f{bottom:471.270000px;}
.y45{bottom:481.080000px;}
.yfb{bottom:483.780000px;}
.y85{bottom:486.660000px;}
.y11{bottom:488.055000px;}
.yea{bottom:488.100000px;}
.yd2{bottom:489.810000px;}
.y5d{bottom:494.850000px;}
.y11f{bottom:496.830000px;}
.y2e{bottom:497.550000px;}
.y7{bottom:497.707500px;}
.y19b{bottom:497.820000px;}
.y16d{bottom:498.990000px;}
.yb6{bottom:501.600000px;}
.y15b{bottom:503.850000px;}
.y9f{bottom:505.380000px;}
.y72{bottom:506.910000px;}
.y13f{bottom:510.600000px;}
.y10d{bottom:512.400000px;}
.y16c{bottom:521.130000px;}
.y44{bottom:522.480000px;}
.yfa{bottom:525.180000px;}
.y84{bottom:528.060000px;}
.ye9{bottom:529.500000px;}
.yd1{bottom:531.210000px;}
.y19a{bottom:532.020000px;}
.y5c{bottom:536.250000px;}
.y12{bottom:538.230000px;}
.y2d{bottom:538.950000px;}
.y131{bottom:540.030000px;}
.y16a{bottom:541.860000px;}
.yb5{bottom:543.000000px;}
.y9e{bottom:546.780000px;}
.y71{bottom:548.310000px;}
.y6{bottom:548.716500px;}
.y199{bottom:549.570000px;}
.y11e{bottom:550.200000px;}
.y13e{bottom:552.000000px;}
.y15a{bottom:553.080000px;}
.y10c{bottom:561.900000px;}
.y43{bottom:563.880000px;}
.y14d{bottom:564.060000px;}
.y157{bottom:564.510000px;}
.yf9{bottom:566.580000px;}
.y169{bottom:567.510000px;}
.y83{bottom:569.460000px;}
.ye8{bottom:570.900000px;}
.yd0{bottom:572.610000px;}
.y197{bottom:573.150000px;}
.y5b{bottom:577.650000px;}
.y2c{bottom:580.350000px;}
.y130{bottom:581.430000px;}
.yb4{bottom:584.400000px;}
.y159{bottom:587.730000px;}
.y167{bottom:588.210000px;}
.y19{bottom:589.605000px;}
.y70{bottom:589.710000px;}
.y9d{bottom:590.070000px;}
.y11d{bottom:591.600000px;}
.y196{bottom:596.820000px;}
.y156{bottom:599.070000px;}
.y5{bottom:599.725500px;}
.y13d{bottom:605.370000px;}
.yf8{bottom:607.980000px;}
.y166{bottom:609.900000px;}
.y82{bottom:610.770000px;}
.ye7{bottom:612.300000px;}
.ycf{bottom:613.920000px;}
.y42{bottom:617.250000px;}
.y5a{bottom:619.050000px;}
.y195{bottom:619.320000px;}
.y2b{bottom:621.750000px;}
.yb3{bottom:625.800000px;}
.y10b{bottom:626.970000px;}
.y165{bottom:630.600000px;}
.y6f{bottom:631.020000px;}
.ye{bottom:631.920000px;}
.y11c{bottom:633.000000px;}
.y155{bottom:633.540000px;}
.y158{bottom:634.170000px;}
.y12f{bottom:634.800000px;}
.y192{bottom:641.820000px;}
.y9c{bottom:644.970000px;}
.y13c{bottom:646.800000px;}
.yf7{bottom:649.410000px;}
.y164{bottom:651.300000px;}
.ye6{bottom:653.730000px;}
.yce{bottom:657.330000px;}
.y41{bottom:658.680000px;}
.y59{bottom:660.480000px;}
.y2a{bottom:663.180000px;}
.y81{bottom:664.260000px;}
.y18f{bottom:664.350000px;}
.yb2{bottom:667.230000px;}
.y6e{bottom:672.450000px;}
.y163{bottom:672.720000px;}
.y12e{bottom:676.230000px;}
.y154{bottom:679.650000px;}
.y10a{bottom:680.460000px;}
.y11b{bottom:686.400000px;}
.y18e{bottom:687.930000px;}
.y13b{bottom:688.200000px;}
.yf6{bottom:690.810000px;}
.y162{bottom:694.230000px;}
.ye5{bottom:695.130000px;}
.y9b{bottom:698.460000px;}
.y40{bottom:700.080000px;}
.y58{bottom:701.880000px;}
.y29{bottom:704.580000px;}
.y80{bottom:705.660000px;}
.yb1{bottom:708.630000px;}
.y18d{bottom:710.430000px;}
.ycd{bottom:712.230000px;}
.y6d{bottom:713.850000px;}
.y160{bottom:715.650000px;}
.y109{bottom:721.860000px;}
.y11a{bottom:727.800000px;}
.y12d{bottom:729.600000px;}
.yf5{bottom:732.210000px;}
.y18c{bottom:732.930000px;}
.ye4{bottom:736.530000px;}
.y9a{bottom:739.860000px;}
.y3f{bottom:741.480000px;}
.y149{bottom:741.660000px;}
.y57{bottom:743.280000px;}
.y28{bottom:745.980000px;}
.y7f{bottom:747.060000px;}
.yb0{bottom:750.030000px;}
.y6c{bottom:755.250000px;}
.y15f{bottom:755.610000px;}
.y189{bottom:756.150000px;}
.y108{bottom:763.260000px;}
.ycc{bottom:765.600000px;}
.y119{bottom:769.200000px;}
.y12c{bottom:771.000000px;}
.y15e{bottom:772.800000px;}
.ye3{bottom:777.930000px;}
.y4{bottom:778.225500px;}
.y186{bottom:779.460000px;}
.y99{bottom:781.260000px;}
.yf4{bottom:781.710000px;}
.y3e{bottom:782.880000px;}
.y13a{bottom:783.060000px;}
.y56{bottom:784.680000px;}
.y7e{bottom:788.460000px;}
.yaf{bottom:791.430000px;}
.y27{bottom:795.480000px;}
.y8d{bottom:796.650000px;}
.y107{bottom:804.660000px;}
.ycb{bottom:807.000000px;}
.y6b{bottom:808.710000px;}
.y153{bottom:812.400000px;}
.y13{bottom:815.670000px;}
.y185{bottom:821.130000px;}
.y98{bottom:822.660000px;}
.y3d{bottom:824.280000px;}
.y12b{bottom:824.460000px;}
.y55{bottom:826.080000px;}
.y7d{bottom:829.860000px;}
.ye2{bottom:831.300000px;}
.yae{bottom:832.830000px;}
.yf3{bottom:836.430000px;}
.y8c{bottom:838.050000px;}
.y184{bottom:838.320000px;}
.yc7{bottom:839.040000px;}
.y106{bottom:846.060000px;}
.yca{bottom:848.400000px;}
.y6a{bottom:850.110000px;}
.y26{bottom:860.550000px;}
.y97{bottom:864.060000px;}
.y3c{bottom:865.680000px;}
.y12a{bottom:865.860000px;}
.y183{bottom:869.820000px;}
.y7c{bottom:871.260000px;}
.ye1{bottom:872.700000px;}
.yad{bottom:874.230000px;}
.y54{bottom:879.450000px;}
.yc6{bottom:889.800000px;}
.y69{bottom:891.510000px;}
.y25{bottom:893.220000px;}
.y105{bottom:895.560000px;}
.y182{bottom:904.110000px;}
.y96{bottom:905.460000px;}
.y3{bottom:905.716500px;}
.y14c{bottom:907.260000px;}
.y7b{bottom:912.660000px;}
.ye0{bottom:914.100000px;}
.yac{bottom:915.630000px;}
.y3b{bottom:919.050000px;}
.y129{bottom:919.230000px;}
.y53{bottom:920.850000px;}
.yc5{bottom:931.200000px;}
.y24{bottom:931.920000px;}
.y68{bottom:932.910000px;}
.y95{bottom:946.770000px;}
.y152{bottom:948.570000px;}
.y23{bottom:952.620000px;}
.y181{bottom:953.520000px;}
.y7a{bottom:954.060000px;}
.ydf{bottom:955.500000px;}
.yab{bottom:957.030000px;}
.y180{bottom:958.740000px;}
.y118{bottom:958.830000px;}
.y3a{bottom:960.450000px;}
.y104{bottom:960.630000px;}
.y52{bottom:962.250000px;}
.y2{bottom:964.228500px;}
.y17f{bottom:968.100000px;}
.yc4{bottom:972.600000px;}
.y22{bottom:973.320000px;}
.y67{bottom:974.220000px;}
.y21{bottom:980.070000px;}
.y1{bottom:989.716500px;}
.y151{bottom:989.970000px;}
.y94{bottom:990.150000px;}
.y17e{bottom:990.600000px;}
.y20{bottom:994.020000px;}
.y79{bottom:995.370000px;}
.yde{bottom:996.900000px;}
.yaa{bottom:998.430000px;}
.y117{bottom:1000.230000px;}
.y39{bottom:1001.850000px;}
.y128{bottom:1002.030000px;}
.y51{bottom:1003.650000px;}
.y17d{bottom:1013.100000px;}
.yc3{bottom:1014.000000px;}
.y1f{bottom:1014.720000px;}
.y66{bottom:1015.620000px;}
.y17c{bottom:1035.600000px;}
.y78{bottom:1036.770000px;}
.ydd{bottom:1038.300000px;}
.ya9{bottom:1039.830000px;}
.y116{bottom:1041.630000px;}
.y38{bottom:1043.250000px;}
.y139{bottom:1043.430000px;}
.y8b{bottom:1044.960000px;}
.y93{bottom:1045.050000px;}
.yc2{bottom:1055.400000px;}
.y50{bottom:1057.020000px;}
.y17b{bottom:1058.820000px;}
.y1e{bottom:1059.900000px;}
.y77{bottom:1080.090000px;}
.y178{bottom:1082.160000px;}
.y115{bottom:1083.060000px;}
.ya8{bottom:1083.150000px;}
.y37{bottom:1084.680000px;}
.y150{bottom:1084.860000px;}
.ydc{bottom:1091.700000px;}
.y1d{bottom:1095.660000px;}
.yc1{bottom:1096.830000px;}
.y4f{bottom:1098.450000px;}
.y177{bottom:1123.830000px;}
.y1c{bottom:1131.300000px;}
.y114{bottom:1132.560000px;}
.y36{bottom:1134.180000px;}
.yc0{bottom:1138.230000px;}
.y4e{bottom:1139.850000px;}
.ydb{bottom:1141.020000px;}
.h19{height:20.700000px;}
.h1c{height:20.730000px;}
.h1a{height:21.690000px;}
.h1d{height:22.140000px;}
.h20{height:22.500000px;}
.h21{height:22.530000px;}
.h24{height:23.580000px;}
.h25{height:23.670000px;}
.h1b{height:25.650000px;}
.h1e{height:27.720000px;}
.h22{height:32.292422px;}
.h4{height:33.000000px;}
.he{height:39.767520px;}
.h16{height:42.418652px;}
.h23{height:49.552031px;}
.h14{height:49.933652px;}
.h10{height:50.027344px;}
.h1f{height:53.172422px;}
.h13{height:56.873496px;}
.h3{height:58.406250px;}
.ha{height:59.800781px;}
.h2{height:66.750000px;}
.hd{height:66.767520px;}
.h15{height:66.887520px;}
.h5{height:67.740234px;}
.h11{height:67.819043px;}
.hf{height:69.667910px;}
.h12{height:69.977988px;}
.hb{height:76.201172px;}
.hc{height:87.768750px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h17{height:892.980000px;}
.h18{height:893.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:16.650000px;}
.w12{width:25.200000px;}
.w10{width:41.220000px;}
.w26{width:57.420000px;}
.w28{width:57.510000px;}
.w25{width:69.660000px;}
.w27{width:69.690000px;}
.w11{width:83.730000px;}
.w20{width:98.040000px;}
.w1c{width:103.860000px;}
.w17{width:107.100000px;}
.w1f{width:116.130000px;}
.w16{width:120.600000px;}
.w22{width:127.080000px;}
.w24{width:127.200000px;}
.w18{width:127.650000px;}
.w1a{width:165.330000px;}
.w1b{width:165.360000px;}
.w19{width:168.480000px;}
.w21{width:204.510000px;}
.w1e{width:205.230000px;}
.w1d{width:223.320000px;}
.w13{width:227.700000px;}
.w14{width:296.130000px;}
.w8{width:301.170000px;}
.w15{width:330.690000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wb{width:892.979973px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.wf{width:1262.879962px;}
.we{width:1262.879981px;}
.wc{width:1262.880000px;}
.wd{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x18{left:8.100000px;}
.x35{left:9.360000px;}
.x34{left:12.600000px;}
.x38{left:14.850000px;}
.x2d{left:17.100000px;}
.x2a{left:18.360000px;}
.x46{left:21.060000px;}
.x2f{left:23.850000px;}
.x4a{left:24.930000px;}
.x2e{left:27.360000px;}
.x4b{left:28.710000px;}
.x31{left:30.600000px;}
.x33{left:31.860000px;}
.x2b{left:34.290000px;}
.x22{left:36.990000px;}
.x40{left:39.960000px;}
.x2c{left:41.670000px;}
.x30{left:43.290000px;}
.x20{left:45.270000px;}
.x41{left:46.800000px;}
.x23{left:48.780000px;}
.x32{left:50.670000px;}
.x11{left:52.379973px;}
.xf{left:53.999973px;}
.x27{left:55.800000px;}
.x28{left:59.310000px;}
.xe{left:62.999973px;}
.x25{left:67.770000px;}
.x36{left:70.650000px;}
.xc{left:71.999973px;}
.x37{left:73.650000px;}
.x39{left:75.240000px;}
.x12{left:79.379987px;}
.xd{left:80.999987px;}
.x29{left:82.620000px;}
.x49{left:85.140000px;}
.x4d{left:90.720000px;}
.x3e{left:93.510000px;}
.x4c{left:95.940000px;}
.x3d{left:102.630000px;}
.x1c{left:104.850000px;}
.x10{left:106.379987px;}
.xb{left:107.999987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x17{left:129.150000px;}
.x1e{left:139.080000px;}
.x14{left:142.409987px;}
.x19{left:170.370000px;}
.x5{left:174.105000px;}
.x3b{left:180.300000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x42{left:208.830000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x1a{left:254.100000px;}
.x1b{left:279.300000px;}
.x3c{left:284.160000px;}
.x3a{left:303.599981px;}
.x21{left:399.900000px;}
.x43{left:413.340000px;}
.x13{left:437.549987px;}
.xa{left:442.049987px;}
.x47{left:483.000000px;}
.x1d{left:507.000000px;}
.x44{left:540.420000px;}
.x45{left:557.070000px;}
.x3f{left:605.520000px;}
.x16{left:622.499981px;}
.x48{left:626.760000px;}
.x24{left:634.650000px;}
.x15{left:786.689987px;}
.x1f{left:803.130000px;}
.x26{left:968.460000px;}
@media print{
.v2{vertical-align:-34.666667pt;}
.v4{vertical-align:-24.000000pt;}
.v8{vertical-align:-18.560000pt;}
.v7{vertical-align:-5.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:34.666667pt;}
.lse{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.084267pt;}
.ls10{letter-spacing:-0.080000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.015360pt;}
.ls1b{letter-spacing:-0.011840pt;}
.ls1f{letter-spacing:-0.011520pt;}
.ls13{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.015360pt;}
.ls16{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.083733pt;}
.ls12{letter-spacing:0.102827pt;}
.ls2{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.235733pt;}
.ls15{letter-spacing:0.320000pt;}
.lsc{letter-spacing:46.208000pt;}
.lsa{letter-spacing:47.575680pt;}
.ls5{letter-spacing:48.887680pt;}
.lsf{letter-spacing:752.106667pt;}
.wse{word-spacing:-64.000000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws8{word-spacing:-21.360000pt;}
.ws12{word-spacing:-17.443733pt;}
.wsd{word-spacing:-17.360000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws9{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.616000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-13.520000pt;}
.ws14{word-spacing:-13.496533pt;}
.ws1a{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.407360pt;}
.ws16{word-spacing:-13.360000pt;}
.ws19{word-spacing:-13.348160pt;}
.ws1b{word-spacing:-13.200000pt;}
.ws18{word-spacing:-13.087467pt;}
.ws10{word-spacing:-10.875733pt;}
.ws4{word-spacing:-10.640000pt;}
.wsc{word-spacing:-10.555733pt;}
.ws17{word-spacing:-8.640000pt;}
.ws1d{word-spacing:-8.624640pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-14.583467pt;}
._4{margin-left:-11.445333pt;}
._7{margin-left:-9.687467pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._5{margin-left:-2.788267pt;}
._1{margin-left:-1.774933pt;}
._8{width:0.985600pt;}
._17{width:2.013867pt;}
._a{width:2.914133pt;}
._9{width:4.002133pt;}
._0{width:4.966400pt;}
._13{width:6.041600pt;}
._15{width:7.168000pt;}
._c{width:8.576000pt;}
._d{width:9.664000pt;}
._22{width:10.688000pt;}
._1e{width:11.968000pt;}
._21{width:12.864000pt;}
._18{width:13.824000pt;}
._b{width:14.976000pt;}
._16{width:16.960000pt;}
._19{width:17.856000pt;}
._1f{width:18.816000pt;}
._10{width:20.160000pt;}
._11{width:21.230933pt;}
._12{width:22.263467pt;}
._f{width:23.680000pt;}
._e{width:24.768000pt;}
._24{width:26.304000pt;}
._28{width:27.200000pt;}
._29{width:31.150933pt;}
._1d{width:32.064000pt;}
._1c{width:33.514667pt;}
._14{width:34.560000pt;}
._1a{width:43.008000pt;}
._25{width:43.968000pt;}
._26{width:44.987733pt;}
._2a{width:64.384000pt;}
._1b{width:69.376000pt;}
._2d{width:75.754667pt;}
._2c{width:76.672000pt;}
._2b{width:106.112000pt;}
._27{width:108.864000pt;}
._23{width:137.664000pt;}
._20{width:191.296000pt;}
.fsb{font-size:34.560000pt;}
.fs6{font-size:42.560000pt;}
.fsa{font-size:53.440000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:69.440000pt;}
.fs7{font-size:74.560000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs8{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y179{bottom:-4.800000pt;}
.y194{bottom:-2.320000pt;}
.y18a{bottom:-2.240000pt;}
.y191{bottom:-1.840000pt;}
.y198{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:3.600000pt;}
.y168{bottom:4.080000pt;}
.y16e{bottom:4.240000pt;}
.y17a{bottom:4.400000pt;}
.y188{bottom:5.200000pt;}
.y187{bottom:5.360000pt;}
.y193{bottom:5.386667pt;}
.y18b{bottom:5.440000pt;}
.y16b{bottom:5.760000pt;}
.y190{bottom:5.840000pt;}
.y170{bottom:6.720000pt;}
.yc{bottom:7.146667pt;}
.yc9{bottom:50.720000pt;}
.y1b{bottom:50.800000pt;}
.yc8{bottom:69.120000pt;}
.y1a{bottom:69.200000pt;}
.y14{bottom:88.706667pt;}
.y18{bottom:101.040000pt;}
.y148{bottom:101.360000pt;}
.ybf{bottom:104.000000pt;}
.y138{bottom:116.800000pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y103{bottom:124.960000pt;}
.y127{bottom:125.920000pt;}
.y14b{bottom:127.520000pt;}
.yf2{bottom:128.800000pt;}
.yda{bottom:130.320000pt;}
.y4d{bottom:133.200000pt;}
.y65{bottom:134.800000pt;}
.y15{bottom:137.733333pt;}
.y147{bottom:138.160000pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.ybe{bottom:140.800000pt;}
.ya7{bottom:144.160000pt;}
.y8a{bottom:147.920000pt;}
.y137{bottom:153.600000pt;}
.y102{bottom:161.760000pt;}
.y14f{bottom:164.240000pt;}
.yf1{bottom:165.600000pt;}
.yd9{bottom:167.120000pt;}
.y4c{bottom:170.000000pt;}
.y64{bottom:171.600000pt;}
.y126{bottom:173.360000pt;}
.y35{bottom:174.000000pt;}
.y146{bottom:174.960000pt;}
.ybd{bottom:177.600000pt;}
.y113{bottom:181.360000pt;}
.y89{bottom:184.720000pt;}
.y136{bottom:190.400000pt;}
.ya6{bottom:191.600000pt;}
.y101{bottom:198.560000pt;}
.yd8{bottom:203.866667pt;}
.y4b{bottom:206.826667pt;}
.y63{bottom:208.426667pt;}
.y125{bottom:210.186667pt;}
.y145{bottom:211.786667pt;}
.yf0{bottom:213.066667pt;}
.ybc{bottom:214.426667pt;}
.y34{bottom:221.466667pt;}
.y135{bottom:227.226667pt;}
.ya5{bottom:228.426667pt;}
.y112{bottom:228.826667pt;}
.y100{bottom:235.386667pt;}
.yd7{bottom:240.666667pt;}
.y4a{bottom:243.626667pt;}
.y92{bottom:245.226667pt;}
.y124{bottom:246.986667pt;}
.y144{bottom:248.586667pt;}
.yef{bottom:249.866667pt;}
.ybb{bottom:251.226667pt;}
.y62{bottom:255.866667pt;}
.y33{bottom:258.266667pt;}
.y14a{bottom:259.226667pt;}
.ya4{bottom:265.226667pt;}
.yff{bottom:272.186667pt;}
.y134{bottom:274.666667pt;}
.y111{bottom:276.266667pt;}
.yd6{bottom:277.466667pt;}
.y49{bottom:280.426667pt;}
.y91{bottom:282.026667pt;}
.y123{bottom:283.786667pt;}
.yee{bottom:286.666667pt;}
.yba{bottom:288.026667pt;}
.y61{bottom:292.666667pt;}
.y32{bottom:295.066667pt;}
.y143{bottom:296.026667pt;}
.y88{bottom:299.466667pt;}
.ya3{bottom:302.026667pt;}
.y76{bottom:303.386667pt;}
.ya{bottom:306.382667pt;}
.yfe{bottom:308.986667pt;}
.y133{bottom:311.466667pt;}
.yd5{bottom:314.266667pt;}
.y48{bottom:317.226667pt;}
.y90{bottom:318.826667pt;}
.y176{bottom:320.106667pt;}
.y122{bottom:320.586667pt;}
.yed{bottom:323.466667pt;}
.y110{bottom:323.786667pt;}
.yb9{bottom:324.826667pt;}
.y60{bottom:329.466667pt;}
.y31{bottom:331.866667pt;}
.y142{bottom:332.826667pt;}
.y175{bottom:335.466667pt;}
.ya2{bottom:338.826667pt;}
.y75{bottom:340.186667pt;}
.yd{bottom:343.546667pt;}
.yfd{bottom:345.786667pt;}
.y87{bottom:348.266667pt;}
.y174{bottom:350.746667pt;}
.yd4{bottom:351.066667pt;}
.y9{bottom:351.724000pt;}
.y15d{bottom:352.906667pt;}
.y47{bottom:354.026667pt;}
.y8f{bottom:355.626667pt;}
.y132{bottom:358.986667pt;}
.yec{bottom:360.266667pt;}
.yb8{bottom:361.626667pt;}
.y173{bottom:363.706667pt;}
.y5f{bottom:366.266667pt;}
.y121{bottom:368.026667pt;}
.y30{bottom:368.666667pt;}
.y14e{bottom:369.626667pt;}
.y10f{bottom:371.226667pt;}
.ya1{bottom:375.626667pt;}
.y74{bottom:376.986667pt;}
.y141{bottom:380.266667pt;}
.y172{bottom:382.106667pt;}
.yfc{bottom:382.586667pt;}
.yb{bottom:386.533333pt;}
.y46{bottom:390.826667pt;}
.y8e{bottom:392.346667pt;}
.y86{bottom:395.786667pt;}
.y8{bottom:397.065333pt;}
.yeb{bottom:397.066667pt;}
.yb7{bottom:398.426667pt;}
.yd3{bottom:398.586667pt;}
.y15c{bottom:400.346667pt;}
.y171{bottom:400.506667pt;}
.y5e{bottom:403.066667pt;}
.y120{bottom:404.826667pt;}
.y2f{bottom:405.466667pt;}
.ya0{bottom:412.426667pt;}
.y73{bottom:413.786667pt;}
.y140{bottom:417.066667pt;}
.y10e{bottom:418.666667pt;}
.y16f{bottom:418.906667pt;}
.y45{bottom:427.626667pt;}
.yfb{bottom:430.026667pt;}
.y85{bottom:432.586667pt;}
.y11{bottom:433.826667pt;}
.yea{bottom:433.866667pt;}
.yd2{bottom:435.386667pt;}
.y5d{bottom:439.866667pt;}
.y11f{bottom:441.626667pt;}
.y2e{bottom:442.266667pt;}
.y7{bottom:442.406667pt;}
.y19b{bottom:442.506667pt;}
.y16d{bottom:443.546667pt;}
.yb6{bottom:445.866667pt;}
.y15b{bottom:447.866667pt;}
.y9f{bottom:449.226667pt;}
.y72{bottom:450.586667pt;}
.y13f{bottom:453.866667pt;}
.y10d{bottom:455.466667pt;}
.y16c{bottom:463.226667pt;}
.y44{bottom:464.426667pt;}
.yfa{bottom:466.826667pt;}
.y84{bottom:469.386667pt;}
.ye9{bottom:470.666667pt;}
.yd1{bottom:472.186667pt;}
.y19a{bottom:472.906667pt;}
.y5c{bottom:476.666667pt;}
.y12{bottom:478.426667pt;}
.y2d{bottom:479.066667pt;}
.y131{bottom:480.026667pt;}
.y16a{bottom:481.653333pt;}
.yb5{bottom:482.666667pt;}
.y9e{bottom:486.026667pt;}
.y71{bottom:487.386667pt;}
.y6{bottom:487.748000pt;}
.y199{bottom:488.506667pt;}
.y11e{bottom:489.066667pt;}
.y13e{bottom:490.666667pt;}
.y15a{bottom:491.626667pt;}
.y10c{bottom:499.466667pt;}
.y43{bottom:501.226667pt;}
.y14d{bottom:501.386667pt;}
.y157{bottom:501.786667pt;}
.yf9{bottom:503.626667pt;}
.y169{bottom:504.453333pt;}
.y83{bottom:506.186667pt;}
.ye8{bottom:507.466667pt;}
.yd0{bottom:508.986667pt;}
.y197{bottom:509.466667pt;}
.y5b{bottom:513.466667pt;}
.y2c{bottom:515.866667pt;}
.y130{bottom:516.826667pt;}
.yb4{bottom:519.466667pt;}
.y159{bottom:522.426667pt;}
.y167{bottom:522.853333pt;}
.y19{bottom:524.093333pt;}
.y70{bottom:524.186667pt;}
.y9d{bottom:524.506667pt;}
.y11d{bottom:525.866667pt;}
.y196{bottom:530.506667pt;}
.y156{bottom:532.506667pt;}
.y5{bottom:533.089333pt;}
.y13d{bottom:538.106667pt;}
.yf8{bottom:540.426667pt;}
.y166{bottom:542.133333pt;}
.y82{bottom:542.906667pt;}
.ye7{bottom:544.266667pt;}
.ycf{bottom:545.706667pt;}
.y42{bottom:548.666667pt;}
.y5a{bottom:550.266667pt;}
.y195{bottom:550.506667pt;}
.y2b{bottom:552.666667pt;}
.yb3{bottom:556.266667pt;}
.y10b{bottom:557.306667pt;}
.y165{bottom:560.533333pt;}
.y6f{bottom:560.906667pt;}
.ye{bottom:561.706667pt;}
.y11c{bottom:562.666667pt;}
.y155{bottom:563.146667pt;}
.y158{bottom:563.706667pt;}
.y12f{bottom:564.266667pt;}
.y192{bottom:570.506667pt;}
.y9c{bottom:573.306667pt;}
.y13c{bottom:574.933333pt;}
.yf7{bottom:577.253333pt;}
.y164{bottom:578.933333pt;}
.ye6{bottom:581.093333pt;}
.yce{bottom:584.293333pt;}
.y41{bottom:585.493333pt;}
.y59{bottom:587.093333pt;}
.y2a{bottom:589.493333pt;}
.y81{bottom:590.453333pt;}
.y18f{bottom:590.533333pt;}
.yb2{bottom:593.093333pt;}
.y6e{bottom:597.733333pt;}
.y163{bottom:597.973333pt;}
.y12e{bottom:601.093333pt;}
.y154{bottom:604.133333pt;}
.y10a{bottom:604.853333pt;}
.y11b{bottom:610.133333pt;}
.y18e{bottom:611.493333pt;}
.y13b{bottom:611.733333pt;}
.yf6{bottom:614.053333pt;}
.y162{bottom:617.093333pt;}
.ye5{bottom:617.893333pt;}
.y9b{bottom:620.853333pt;}
.y40{bottom:622.293333pt;}
.y58{bottom:623.893333pt;}
.y29{bottom:626.293333pt;}
.y80{bottom:627.253333pt;}
.yb1{bottom:629.893333pt;}
.y18d{bottom:631.493333pt;}
.ycd{bottom:633.093333pt;}
.y6d{bottom:634.533333pt;}
.y160{bottom:636.133333pt;}
.y109{bottom:641.653333pt;}
.y11a{bottom:646.933333pt;}
.y12d{bottom:648.533333pt;}
.yf5{bottom:650.853333pt;}
.y18c{bottom:651.493333pt;}
.ye4{bottom:654.693333pt;}
.y9a{bottom:657.653333pt;}
.y3f{bottom:659.093333pt;}
.y149{bottom:659.253333pt;}
.y57{bottom:660.693333pt;}
.y28{bottom:663.093333pt;}
.y7f{bottom:664.053333pt;}
.yb0{bottom:666.693333pt;}
.y6c{bottom:671.333333pt;}
.y15f{bottom:671.653333pt;}
.y189{bottom:672.133333pt;}
.y108{bottom:678.453333pt;}
.ycc{bottom:680.533333pt;}
.y119{bottom:683.733333pt;}
.y12c{bottom:685.333333pt;}
.y15e{bottom:686.933333pt;}
.ye3{bottom:691.493333pt;}
.y4{bottom:691.756000pt;}
.y186{bottom:692.853333pt;}
.y99{bottom:694.453333pt;}
.yf4{bottom:694.853333pt;}
.y3e{bottom:695.893333pt;}
.y13a{bottom:696.053333pt;}
.y56{bottom:697.493333pt;}
.y7e{bottom:700.853333pt;}
.yaf{bottom:703.493333pt;}
.y27{bottom:707.093333pt;}
.y8d{bottom:708.133333pt;}
.y107{bottom:715.253333pt;}
.ycb{bottom:717.333333pt;}
.y6b{bottom:718.853333pt;}
.y153{bottom:722.133333pt;}
.y13{bottom:725.040000pt;}
.y185{bottom:729.893333pt;}
.y98{bottom:731.253333pt;}
.y3d{bottom:732.693333pt;}
.y12b{bottom:732.853333pt;}
.y55{bottom:734.293333pt;}
.y7d{bottom:737.653333pt;}
.ye2{bottom:738.933333pt;}
.yae{bottom:740.293333pt;}
.yf3{bottom:743.493333pt;}
.y8c{bottom:744.933333pt;}
.y184{bottom:745.173333pt;}
.yc7{bottom:745.813333pt;}
.y106{bottom:752.053333pt;}
.yca{bottom:754.133333pt;}
.y6a{bottom:755.653333pt;}
.y26{bottom:764.933333pt;}
.y97{bottom:768.053333pt;}
.y3c{bottom:769.493333pt;}
.y12a{bottom:769.653333pt;}
.y183{bottom:773.173333pt;}
.y7c{bottom:774.453333pt;}
.ye1{bottom:775.733333pt;}
.yad{bottom:777.093333pt;}
.y54{bottom:781.733333pt;}
.yc6{bottom:790.933333pt;}
.y69{bottom:792.453333pt;}
.y25{bottom:793.973333pt;}
.y105{bottom:796.053333pt;}
.y182{bottom:803.653333pt;}
.y96{bottom:804.853333pt;}
.y3{bottom:805.081333pt;}
.y14c{bottom:806.453333pt;}
.y7b{bottom:811.253333pt;}
.ye0{bottom:812.533333pt;}
.yac{bottom:813.893333pt;}
.y3b{bottom:816.933333pt;}
.y129{bottom:817.093333pt;}
.y53{bottom:818.533333pt;}
.yc5{bottom:827.733333pt;}
.y24{bottom:828.373333pt;}
.y68{bottom:829.253333pt;}
.y95{bottom:841.573333pt;}
.y152{bottom:843.173333pt;}
.y23{bottom:846.773333pt;}
.y181{bottom:847.573333pt;}
.y7a{bottom:848.053333pt;}
.ydf{bottom:849.333333pt;}
.yab{bottom:850.693333pt;}
.y180{bottom:852.213333pt;}
.y118{bottom:852.293333pt;}
.y3a{bottom:853.733333pt;}
.y104{bottom:853.893333pt;}
.y52{bottom:855.333333pt;}
.y2{bottom:857.092000pt;}
.y17f{bottom:860.533333pt;}
.yc4{bottom:864.533333pt;}
.y22{bottom:865.173333pt;}
.y67{bottom:865.973333pt;}
.y21{bottom:871.173333pt;}
.y1{bottom:879.748000pt;}
.y151{bottom:879.973333pt;}
.y94{bottom:880.133333pt;}
.y17e{bottom:880.533333pt;}
.y20{bottom:883.573333pt;}
.y79{bottom:884.773333pt;}
.yde{bottom:886.133333pt;}
.yaa{bottom:887.493333pt;}
.y117{bottom:889.093333pt;}
.y39{bottom:890.533333pt;}
.y128{bottom:890.693333pt;}
.y51{bottom:892.133333pt;}
.y17d{bottom:900.533333pt;}
.yc3{bottom:901.333333pt;}
.y1f{bottom:901.973333pt;}
.y66{bottom:902.773333pt;}
.y17c{bottom:920.533333pt;}
.y78{bottom:921.573333pt;}
.ydd{bottom:922.933333pt;}
.ya9{bottom:924.293333pt;}
.y116{bottom:925.893333pt;}
.y38{bottom:927.333333pt;}
.y139{bottom:927.493333pt;}
.y8b{bottom:928.853333pt;}
.y93{bottom:928.933333pt;}
.yc2{bottom:938.133333pt;}
.y50{bottom:939.573333pt;}
.y17b{bottom:941.173333pt;}
.y1e{bottom:942.133333pt;}
.y77{bottom:960.080000pt;}
.y178{bottom:961.920000pt;}
.y115{bottom:962.720000pt;}
.ya8{bottom:962.800000pt;}
.y37{bottom:964.160000pt;}
.y150{bottom:964.320000pt;}
.ydc{bottom:970.400000pt;}
.y1d{bottom:973.920000pt;}
.yc1{bottom:974.960000pt;}
.y4f{bottom:976.400000pt;}
.y177{bottom:998.960000pt;}
.y1c{bottom:1005.600000pt;}
.y114{bottom:1006.720000pt;}
.y36{bottom:1008.160000pt;}
.yc0{bottom:1011.760000pt;}
.y4e{bottom:1013.200000pt;}
.ydb{bottom:1014.240000pt;}
.h19{height:18.400000pt;}
.h1c{height:18.426667pt;}
.h1a{height:19.280000pt;}
.h1d{height:19.680000pt;}
.h20{height:20.000000pt;}
.h21{height:20.026667pt;}
.h24{height:20.960000pt;}
.h25{height:21.040000pt;}
.h1b{height:22.800000pt;}
.h1e{height:24.640000pt;}
.h22{height:28.704375pt;}
.h4{height:29.333333pt;}
.he{height:35.348906pt;}
.h16{height:37.705469pt;}
.h23{height:44.046250pt;}
.h14{height:44.385469pt;}
.h10{height:44.468750pt;}
.h1f{height:47.264375pt;}
.h13{height:50.554219pt;}
.h3{height:51.916667pt;}
.ha{height:53.156250pt;}
.h2{height:59.333333pt;}
.hd{height:59.348906pt;}
.h15{height:59.455573pt;}
.h5{height:60.213542pt;}
.h11{height:60.283594pt;}
.hf{height:61.927031pt;}
.h12{height:62.202656pt;}
.hb{height:67.734375pt;}
.hc{height:78.016667pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h17{height:793.760000pt;}
.h18{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:14.800000pt;}
.w12{width:22.400000pt;}
.w10{width:36.640000pt;}
.w26{width:51.040000pt;}
.w28{width:51.120000pt;}
.w25{width:61.920000pt;}
.w27{width:61.946667pt;}
.w11{width:74.426667pt;}
.w20{width:87.146667pt;}
.w1c{width:92.320000pt;}
.w17{width:95.200000pt;}
.w1f{width:103.226667pt;}
.w16{width:107.200000pt;}
.w22{width:112.960000pt;}
.w24{width:113.066667pt;}
.w18{width:113.466667pt;}
.w1a{width:146.960000pt;}
.w1b{width:146.986667pt;}
.w19{width:149.760000pt;}
.w21{width:181.786667pt;}
.w1e{width:182.426667pt;}
.w1d{width:198.506667pt;}
.w13{width:202.400000pt;}
.w14{width:263.226667pt;}
.w8{width:267.706667pt;}
.w15{width:293.946667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wb{width:793.759976pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.wf{width:1122.559967pt;}
.we{width:1122.559983pt;}
.wc{width:1122.560000pt;}
.wd{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x18{left:7.200000pt;}
.x35{left:8.320000pt;}
.x34{left:11.200000pt;}
.x38{left:13.200000pt;}
.x2d{left:15.200000pt;}
.x2a{left:16.320000pt;}
.x46{left:18.720000pt;}
.x2f{left:21.200000pt;}
.x4a{left:22.160000pt;}
.x2e{left:24.320000pt;}
.x4b{left:25.520000pt;}
.x31{left:27.200000pt;}
.x33{left:28.320000pt;}
.x2b{left:30.480000pt;}
.x22{left:32.880000pt;}
.x40{left:35.520000pt;}
.x2c{left:37.040000pt;}
.x30{left:38.480000pt;}
.x20{left:40.240000pt;}
.x41{left:41.600000pt;}
.x23{left:43.360000pt;}
.x32{left:45.040000pt;}
.x11{left:46.559976pt;}
.xf{left:47.999976pt;}
.x27{left:49.600000pt;}
.x28{left:52.720000pt;}
.xe{left:55.999976pt;}
.x25{left:60.240000pt;}
.x36{left:62.800000pt;}
.xc{left:63.999976pt;}
.x37{left:65.466667pt;}
.x39{left:66.880000pt;}
.x12{left:70.559988pt;}
.xd{left:71.999988pt;}
.x29{left:73.440000pt;}
.x49{left:75.680000pt;}
.x4d{left:80.640000pt;}
.x3e{left:83.120000pt;}
.x4c{left:85.280000pt;}
.x3d{left:91.226667pt;}
.x1c{left:93.200000pt;}
.x10{left:94.559988pt;}
.xb{left:95.999988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x17{left:114.800000pt;}
.x1e{left:123.626667pt;}
.x14{left:126.586655pt;}
.x19{left:151.440000pt;}
.x5{left:154.760000pt;}
.x3b{left:160.266667pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x42{left:185.626667pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x1a{left:225.866667pt;}
.x1b{left:248.266667pt;}
.x3c{left:252.586667pt;}
.x3a{left:269.866650pt;}
.x21{left:355.466667pt;}
.x43{left:367.413333pt;}
.x13{left:388.933322pt;}
.xa{left:392.933322pt;}
.x47{left:429.333333pt;}
.x1d{left:450.666667pt;}
.x44{left:480.373333pt;}
.x45{left:495.173333pt;}
.x3f{left:538.240000pt;}
.x16{left:553.333317pt;}
.x48{left:557.120000pt;}
.x24{left:564.133333pt;}
.x15{left:699.279988pt;}
.x1f{left:713.893333pt;}
.x26{left:860.853333pt;}
}




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