
    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_59595accaa831f7956a4f720.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_e198b8ef9d1e00ce94fb8db0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_ee1cc70f603a6fca1d2abed0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_fc59b70989d1b3491fce71f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_bf8bab822a58227b8aae1a2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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_fb785b460919be20c8be9f06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_996113f292fe4e93d6e152d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_83e1608b618f1033d32b1194.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_420d0b39d8ce2b938c08ba5c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_a88255b13a7556c9de4add30.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862793;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_8a73b9c97ab5b289f3f702c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_5fa16886f5c230a4fc70e600.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.721000;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_ed816e3183e018b32d2818e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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:ffe;src:url('chunks/assets/font_9724e0ae218731b42802d14a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942000;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:fff;src:url('chunks/assets/font_5a0296404136126e6080e02e.woff2')format("woff");}.fff{font-family:fff;line-height:0.721000;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:ff10;src:url('chunks/assets/font_a250f0e5d9fb3bdc18882c93.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:28.800000px;}
.ls7{letter-spacing:-2.460000px;}
.lsa{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.800000px;}
.ls0{letter-spacing:2.940000px;}
.ls6{letter-spacing:7.686000px;}
.ls5{letter-spacing:7.872000px;}
.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;}
}
.ws1f{word-spacing:-54.000000px;}
.ws0{word-spacing:-17.628000px;}
.ws16{word-spacing:-16.272000px;}
.ws3{word-spacing:-14.916000px;}
.ws1{word-spacing:-13.560000px;}
.ws1b{word-spacing:-12.960000px;}
.ws2{word-spacing:-12.204000px;}
.ws4{word-spacing:-11.664000px;}
.ws9{word-spacing:-11.100000px;}
.ws1c{word-spacing:-10.848000px;}
.ws12{word-spacing:-10.176000px;}
.ws13{word-spacing:-9.216000px;}
.ws15{word-spacing:-7.905480px;}
.wsa{word-spacing:-3.420000px;}
.wsd{word-spacing:-2.400000px;}
.ws32{word-spacing:-2.220000px;}
.ws23{word-spacing:-2.160000px;}
.ws2d{word-spacing:-1.860000px;}
.ws17{word-spacing:-1.800000px;}
.ws1a{word-spacing:-1.680000px;}
.ws2c{word-spacing:-0.960000px;}
.ws8{word-spacing:-0.540000px;}
.wsb{word-spacing:-0.420000px;}
.ws18{word-spacing:-0.288000px;}
.ws34{word-spacing:-0.120000px;}
.ws21{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.540000px;}
.ws19{word-spacing:0.600000px;}
.ws11{word-spacing:0.720000px;}
.ws33{word-spacing:1.080000px;}
.ws1e{word-spacing:1.200000px;}
.ws1d{word-spacing:1.740000px;}
.wsc{word-spacing:1.800000px;}
.ws25{word-spacing:2.100000px;}
.ws27{word-spacing:2.160000px;}
.ws26{word-spacing:2.520000px;}
.ws2f{word-spacing:2.760000px;}
.wsf{word-spacing:3.180000px;}
.ws29{word-spacing:3.240000px;}
.ws2a{word-spacing:3.360000px;}
.ws28{word-spacing:3.420000px;}
.ws10{word-spacing:3.900000px;}
.wse{word-spacing:4.260000px;}
.ws24{word-spacing:4.380000px;}
.ws2e{word-spacing:4.740000px;}
.ws22{word-spacing:5.280000px;}
.ws31{word-spacing:5.460000px;}
.ws2b{word-spacing:5.640000px;}
.ws30{word-spacing:6.780000px;}
.ws20{word-spacing:7.020000px;}
.ws6{word-spacing:15.660000px;}
.ws14{word-spacing:223.440000px;}
._14{margin-left:-9.264000px;}
._1a{margin-left:-8.097000px;}
._4{margin-left:-6.361200px;}
._2{margin-left:-4.530600px;}
._3{margin-left:-3.470400px;}
._8{margin-left:-2.397000px;}
._1{margin-left:-1.382400px;}
._7{width:1.354800px;}
._5{width:2.557200px;}
._6{width:3.734400px;}
._d{width:4.830600px;}
._a{width:6.000000px;}
._b{width:7.478400px;}
._c{width:8.587200px;}
._16{width:10.186740px;}
._18{width:12.017400px;}
._1d{width:13.384800px;}
._19{width:15.015600px;}
._1b{width:17.412000px;}
._1c{width:18.706800px;}
._17{width:20.610000px;}
._15{width:274.540800px;}
._11{width:295.776000px;}
._13{width:398.400000px;}
._12{width:400.512000px;}
._e{width:429.360000px;}
._f{width:462.576000px;}
._10{width:524.102400px;}
._1e{width:1123.956000px;}
._9{width:1151.334000px;}
._0{width:1354.698000px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(217,25,32);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(145,143,143);}
.fs8{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.150600px;}
.y35{bottom:46.851450px;}
.y165{bottom:75.461850px;}
.y6c{bottom:78.327900px;}
.y29{bottom:85.292700px;}
.ycd{bottom:86.520450px;}
.y116{bottom:88.696050px;}
.yff{bottom:89.546550px;}
.yac{bottom:89.820600px;}
.y164{bottom:93.461850px;}
.y140{bottom:94.472250px;}
.y136{bottom:94.709100px;}
.y6b{bottom:96.327900px;}
.ydf{bottom:96.987450px;}
.ycc{bottom:100.920450px;}
.y115{bottom:103.096050px;}
.y28{bottom:103.292700px;}
.yfe{bottom:103.946550px;}
.yab{bottom:107.820600px;}
.yde{bottom:111.387450px;}
.y163{bottom:111.461850px;}
.y135{bottom:112.709100px;}
.ycb{bottom:115.320450px;}
.y13f{bottom:116.072250px;}
.y114{bottom:117.496050px;}
.yfd{bottom:118.346550px;}
.y6a{bottom:118.572900px;}
.y27{bottom:121.292700px;}
.ydd{bottom:125.787450px;}
.yaa{bottom:125.820600px;}
.y162{bottom:129.461850px;}
.yca{bottom:129.720450px;}
.y134{bottom:130.709100px;}
.y19c{bottom:131.458500px;}
.y69{bottom:136.572900px;}
.y13e{bottom:137.672250px;}
.y1ca{bottom:138.970350px;}
.y26{bottom:139.292700px;}
.y161{bottom:147.461850px;}
.ya9{bottom:148.072500px;}
.y133{bottom:148.709100px;}
.y19b{bottom:149.458500px;}
.y1c9{bottom:156.970350px;}
.y25{bottom:157.292700px;}
.y68{bottom:158.817900px;}
.y13d{bottom:159.272250px;}
.y160{bottom:165.461850px;}
.y132{bottom:166.709100px;}
.y19a{bottom:167.458500px;}
.yb2{bottom:172.771650px;}
.y1c8{bottom:174.970350px;}
.ya8{bottom:176.376450px;}
.y24{bottom:179.544750px;}
.y13c{bottom:180.872250px;}
.y67{bottom:181.062900px;}
.y131{bottom:184.709100px;}
.y15f{bottom:187.713900px;}
.y199{bottom:193.963500px;}
.ya7{bottom:194.376450px;}
.y66{bottom:199.062900px;}
.y1c7{bottom:201.475350px;}
.y13b{bottom:202.472250px;}
.y130{bottom:202.709100px;}
.y23{bottom:207.848700px;}
.y198{bottom:211.963500px;}
.ya6{bottom:212.376450px;}
.y15e{bottom:217.817850px;}
.y1c6{bottom:219.475350px;}
.y65{bottom:221.307900px;}
.y12f{bottom:224.961000px;}
.y22{bottom:225.848700px;}
.y197{bottom:229.963500px;}
.ya5{bottom:230.376450px;}
.y15d{bottom:235.817850px;}
.y1c5{bottom:237.475350px;}
.y64{bottom:239.307900px;}
.y21{bottom:248.100600px;}
.ya4{bottom:248.376450px;}
.y12e{bottom:255.062850px;}
.y196{bottom:256.468500px;}
.y15c{bottom:258.069750px;}
.y63{bottom:261.559800px;}
.y1c4{bottom:263.980350px;}
.ya3{bottom:266.376450px;}
.y12d{bottom:273.062850px;}
.y195{bottom:274.468500px;}
.y20{bottom:276.404550px;}
.y1c3{bottom:281.980350px;}
.ya2{bottom:284.376450px;}
.y15b{bottom:288.185550px;}
.y62{bottom:289.863750px;}
.y12c{bottom:291.062850px;}
.y194{bottom:292.468500px;}
.y1f{bottom:294.404550px;}
.y1c2{bottom:299.980350px;}
.ya1{bottom:302.376450px;}
.y61{bottom:307.863750px;}
.y12b{bottom:309.062850px;}
.y15a{bottom:310.430550px;}
.y1e{bottom:312.404550px;}
.y193{bottom:318.973500px;}
.ya0{bottom:320.376450px;}
.y60{bottom:325.863750px;}
.y1c1{bottom:326.485350px;}
.y12a{bottom:327.062850px;}
.y159{bottom:328.430550px;}
.y1d{bottom:330.404550px;}
.y192{bottom:336.973500px;}
.y9f{bottom:338.376450px;}
.y5f{bottom:343.863750px;}
.y1c0{bottom:344.485350px;}
.y129{bottom:345.062850px;}
.y1c{bottom:348.404550px;}
.y158{bottom:350.675550px;}
.y191{bottom:354.973500px;}
.y9e{bottom:356.376450px;}
.y16c{bottom:357.428850px;}
.y5e{bottom:361.863750px;}
.y1bf{bottom:362.485350px;}
.y128{bottom:363.062850px;}
.y1b{bottom:366.404550px;}
.y157{bottom:368.675550px;}
.y9d{bottom:374.376450px;}
.y16b{bottom:379.028850px;}
.y5d{bottom:379.863750px;}
.y1be{bottom:380.485350px;}
.y127{bottom:381.062850px;}
.y190{bottom:381.478500px;}
.y1a{bottom:384.404550px;}
.y156{bottom:386.675550px;}
.y9c{bottom:392.376450px;}
.y5c{bottom:397.863750px;}
.y18f{bottom:399.478500px;}
.y16a{bottom:400.628850px;}
.y19{bottom:402.404550px;}
.y155{bottom:404.675550px;}
.y1bd{bottom:406.990350px;}
.y126{bottom:407.567850px;}
.y9b{bottom:410.376450px;}
.y5b{bottom:415.863750px;}
.y18e{bottom:417.478500px;}
.y18{bottom:420.404550px;}
.y169{bottom:422.228850px;}
.y154{bottom:422.675550px;}
.y1bc{bottom:424.990350px;}
.y125{bottom:425.567850px;}
.y9a{bottom:428.376450px;}
.y5a{bottom:438.115650px;}
.y17{bottom:438.404550px;}
.y153{bottom:440.675550px;}
.y1bb{bottom:442.990350px;}
.y124{bottom:443.567850px;}
.y168{bottom:443.828850px;}
.y18d{bottom:443.983500px;}
.y99{bottom:450.628350px;}
.y152{bottom:458.675550px;}
.y16{bottom:460.656600px;}
.y123{bottom:461.567850px;}
.y18c{bottom:461.983500px;}
.y59{bottom:462.167700px;}
.y167{bottom:465.428850px;}
.y1ba{bottom:469.495350px;}
.y151{bottom:476.675550px;}
.y18b{bottom:479.983500px;}
.y98{bottom:480.731250px;}
.y1b9{bottom:487.495350px;}
.y122{bottom:488.072850px;}
.y58{bottom:492.291450px;}
.y33{bottom:494.084250px;}
.y150{bottom:494.675550px;}
.y18a{bottom:497.983500px;}
.y97{bottom:498.731250px;}
.y1b8{bottom:505.495350px;}
.y121{bottom:506.072850px;}
.y32{bottom:510.284250px;}
.y57{bottom:510.291450px;}
.y14f{bottom:512.675550px;}
.y96{bottom:516.731250px;}
.y120{bottom:524.072850px;}
.y189{bottom:524.488500px;}
.y31{bottom:526.484250px;}
.y14e{bottom:530.675550px;}
.y1b7{bottom:532.000350px;}
.y56{bottom:532.536450px;}
.y11f{bottom:542.072850px;}
.y188{bottom:542.488500px;}
.y30{bottom:542.684250px;}
.y95{bottom:543.236250px;}
.y14d{bottom:548.675550px;}
.y1b6{bottom:550.000350px;}
.y113{bottom:553.921800px;}
.y55{bottom:554.781450px;}
.y2f{bottom:558.884250px;}
.yfc{bottom:559.972650px;}
.y11e{bottom:560.072850px;}
.y187{bottom:560.488500px;}
.y94{bottom:561.236250px;}
.y14c{bottom:566.675550px;}
.y1b5{bottom:568.000350px;}
.y112{bottom:571.921800px;}
.y54{bottom:572.781450px;}
.y2e{bottom:575.084250px;}
.yfb{bottom:577.972650px;}
.y11d{bottom:578.072850px;}
.y93{bottom:579.236250px;}
.y14b{bottom:584.675550px;}
.y1b4{bottom:586.000350px;}
.y186{bottom:586.993500px;}
.ydc{bottom:592.525350px;}
.y111{bottom:594.173700px;}
.y53{bottom:595.026450px;}
.yfa{bottom:595.972650px;}
.y11c{bottom:596.072850px;}
.y92{bottom:597.236250px;}
.y2d{bottom:599.789250px;}
.yc9{bottom:601.030350px;}
.y14a{bottom:602.675550px;}
.y185{bottom:604.993500px;}
.ydb{bottom:610.525350px;}
.y1b3{bottom:612.505350px;}
.y52{bottom:613.026450px;}
.yf9{bottom:613.972650px;}
.y11b{bottom:614.072850px;}
.y91{bottom:615.236250px;}
.y2c{bottom:615.989250px;}
.yc8{bottom:619.030350px;}
.y149{bottom:620.675550px;}
.y110{bottom:622.475550px;}
.y184{bottom:622.993500px;}
.yda{bottom:628.525350px;}
.y1b2{bottom:630.505350px;}
.y51{bottom:631.026450px;}
.yf8{bottom:631.972650px;}
.y11a{bottom:632.072850px;}
.y90{bottom:633.236250px;}
.yc7{bottom:637.030350px;}
.y10f{bottom:640.475550px;}
.y15{bottom:644.831250px;}
.yd9{bottom:646.525350px;}
.y148{bottom:647.180550px;}
.y1b1{bottom:648.505350px;}
.y50{bottom:649.026450px;}
.y183{bottom:649.498500px;}
.yf7{bottom:649.972650px;}
.y119{bottom:650.072850px;}
.yc6{bottom:655.030350px;}
.y10e{bottom:658.475550px;}
.y14{bottom:661.031250px;}
.yd8{bottom:664.525350px;}
.y147{bottom:665.180550px;}
.y4f{bottom:667.026450px;}
.y182{bottom:667.498500px;}
.yf6{bottom:667.972650px;}
.y118{bottom:668.072850px;}
.y8f{bottom:670.270050px;}
.y1b0{bottom:675.010350px;}
.y10d{bottom:676.475550px;}
.y13{bottom:677.231250px;}
.yc5{bottom:681.535350px;}
.y146{bottom:683.180550px;}
.y8e{bottom:684.670050px;}
.y4e{bottom:685.026450px;}
.y181{bottom:685.498500px;}
.yf5{bottom:685.972650px;}
.y117{bottom:686.072850px;}
.yd7{bottom:691.030350px;}
.y1af{bottom:693.010350px;}
.y12{bottom:693.431250px;}
.y10c{bottom:694.475550px;}
.yc4{bottom:699.535350px;}
.y145{bottom:701.180550px;}
.yf4{bottom:703.972650px;}
.y8c{bottom:707.278050px;}
.yd6{bottom:709.030350px;}
.y11{bottom:709.631250px;}
.y1ae{bottom:711.010350px;}
.y4d{bottom:711.531450px;}
.y180{bottom:712.003500px;}
.y10b{bottom:712.475550px;}
.y72{bottom:712.948950px;}
.yc3{bottom:717.535350px;}
.y144{bottom:719.180550px;}
.y8a{bottom:721.678050px;}
.y10{bottom:725.831250px;}
.yd5{bottom:727.030350px;}
.y8d{bottom:728.878050px;}
.y4c{bottom:729.531450px;}
.y17f{bottom:730.003500px;}
.yf3{bottom:730.477650px;}
.y13a{bottom:732.288150px;}
.y71{bottom:734.548950px;}
.yc2{bottom:735.535350px;}
.y89{bottom:736.078050px;}
.y1ad{bottom:737.515350px;}
.y10a{bottom:738.980550px;}
.yd4{bottom:745.030350px;}
.y143{bottom:745.685550px;}
.y139{bottom:746.688150px;}
.y4b{bottom:747.531450px;}
.yf2{bottom:748.477650px;}
.y8b{bottom:750.478050px;}
.yf{bottom:750.536250px;}
.yc1{bottom:753.535350px;}
.y1ac{bottom:755.515350px;}
.y70{bottom:756.148950px;}
.y17e{bottom:756.508500px;}
.y109{bottom:756.980550px;}
.y138{bottom:761.088150px;}
.yd3{bottom:763.030350px;}
.y142{bottom:763.685550px;}
.y4a{bottom:765.531450px;}
.ye{bottom:766.736250px;}
.yf1{bottom:770.729550px;}
.y88{bottom:771.382050px;}
.yc0{bottom:771.535350px;}
.y1ab{bottom:773.515350px;}
.y17d{bottom:774.508500px;}
.y108{bottom:774.980550px;}
.y137{bottom:775.488150px;}
.y6f{bottom:777.748950px;}
.y85{bottom:778.582050px;}
.y49{bottom:783.531450px;}
.y87{bottom:785.782050px;}
.y141{bottom:785.937450px;}
.yd2{bottom:789.535350px;}
.y17c{bottom:792.508500px;}
.y107{bottom:792.980550px;}
.y84{bottom:792.982050px;}
.yd{bottom:795.103950px;}
.ybf{bottom:798.040350px;}
.yf0{bottom:799.030350px;}
.y6e{bottom:799.348950px;}
.y1aa{bottom:800.020350px;}
.y86{bottom:800.182050px;}
.y48{bottom:801.531450px;}
.yd1{bottom:807.535350px;}
.yc{bottom:809.503950px;}
.y106{bottom:810.980550px;}
.ybe{bottom:816.040350px;}
.yef{bottom:817.030350px;}
.y1a9{bottom:818.020350px;}
.y17b{bottom:819.013500px;}
.y47{bottom:819.531450px;}
.y6d{bottom:820.948950px;}
.y83{bottom:821.086050px;}
.yd0{bottom:825.535350px;}
.y80{bottom:828.286050px;}
.y105{bottom:828.980550px;}
.ybd{bottom:834.040350px;}
.yee{bottom:835.030350px;}
.y82{bottom:835.486050px;}
.y1a8{bottom:836.020350px;}
.y17a{bottom:837.013500px;}
.y46{bottom:837.531450px;}
.yb{bottom:838.384200px;}
.y7f{bottom:842.686050px;}
.ycf{bottom:843.535350px;}
.y104{bottom:846.980550px;}
.y81{bottom:849.886050px;}
.ybc{bottom:852.040350px;}
.yed{bottom:853.030350px;}
.y179{bottom:855.013500px;}
.y45{bottom:855.531450px;}
.ya{bottom:860.629200px;}
.yce{bottom:861.535350px;}
.y1a7{bottom:862.525350px;}
.y103{bottom:864.980550px;}
.ybb{bottom:870.040350px;}
.y44{bottom:873.531450px;}
.y7e{bottom:875.302050px;}
.y9{bottom:878.629200px;}
.yec{bottom:879.535350px;}
.y1a6{bottom:880.525350px;}
.y178{bottom:881.518500px;}
.yba{bottom:888.040350px;}
.y102{bottom:891.485550px;}
.y43{bottom:891.531450px;}
.yeb{bottom:897.535350px;}
.y1a5{bottom:898.525350px;}
.y8{bottom:900.874200px;}
.y7d{bottom:905.389500px;}
.yb9{bottom:906.040350px;}
.y177{bottom:908.023500px;}
.y101{bottom:909.485550px;}
.y42{bottom:909.531450px;}
.yea{bottom:915.535350px;}
.y7{bottom:918.874200px;}
.yb8{bottom:924.040350px;}
.y1a4{bottom:925.030350px;}
.y166{bottom:925.157400px;}
.y176{bottom:926.023500px;}
.y41{bottom:927.531450px;}
.y100{bottom:931.737450px;}
.y7c{bottom:932.545350px;}
.ye9{bottom:933.535350px;}
.yb7{bottom:942.040350px;}
.y1a3{bottom:943.030350px;}
.y40{bottom:945.531450px;}
.y7b{bottom:950.545350px;}
.ye8{bottom:951.535350px;}
.y175{bottom:952.528500px;}
.y2b{bottom:956.573400px;}
.yb6{bottom:960.040350px;}
.y1a2{bottom:961.030350px;}
.y3f{bottom:963.531450px;}
.y7a{bottom:968.545350px;}
.ye7{bottom:969.535350px;}
.y174{bottom:970.528500px;}
.y2a{bottom:972.773400px;}
.yb5{bottom:978.040350px;}
.y1a1{bottom:979.030350px;}
.y3e{bottom:981.531450px;}
.y79{bottom:986.545350px;}
.ye6{bottom:987.535350px;}
.yb4{bottom:996.040350px;}
.y173{bottom:997.033500px;}
.y3d{bottom:1003.783500px;}
.y78{bottom:1004.545350px;}
.y1a0{bottom:1005.535350px;}
.y6{bottom:1005.883650px;}
.ye2{bottom:1010.488800px;}
.yb3{bottom:1014.040350px;}
.y172{bottom:1015.033500px;}
.y77{bottom:1022.545350px;}
.y19f{bottom:1023.535350px;}
.y5{bottom:1029.283650px;}
.ye5{bottom:1032.040350px;}
.ye1{bottom:1032.088800px;}
.y171{bottom:1033.030350px;}
.y76{bottom:1040.545350px;}
.y19e{bottom:1041.535350px;}
.y3c{bottom:1043.989500px;}
.ye4{bottom:1050.040350px;}
.ye0{bottom:1053.688800px;}
.y75{bottom:1058.545350px;}
.y170{bottom:1059.535350px;}
.y3b{bottom:1061.989500px;}
.y4{bottom:1065.439650px;}
.ye3{bottom:1068.040350px;}
.yb1{bottom:1075.288800px;}
.y74{bottom:1076.545350px;}
.y16f{bottom:1077.535350px;}
.y3a{bottom:1084.241400px;}
.y19d{bottom:1086.040350px;}
.y73{bottom:1094.545350px;}
.yb0{bottom:1096.888800px;}
.y16e{bottom:1104.040350px;}
.y3{bottom:1105.183650px;}
.y39{bottom:1112.545350px;}
.yaf{bottom:1118.488800px;}
.y16d{bottom:1122.040350px;}
.y38{bottom:1130.545350px;}
.yae{bottom:1140.088800px;}
.y2{bottom:1142.695650px;}
.y37{bottom:1148.545350px;}
.yad{bottom:1161.688800px;}
.y36{bottom:1166.545350px;}
.y34{bottom:1218.693900px;}
.ha{height:33.257812px;}
.h10{height:34.080000px;}
.h13{height:34.453125px;}
.h12{height:34.608000px;}
.hd{height:37.415039px;}
.hc{height:38.759766px;}
.h14{height:39.585938px;}
.h7{height:41.572266px;}
.h9{height:43.066406px;}
.h2{height:44.534180px;}
.h15{height:45.181641px;}
.h8{height:49.482422px;}
.h16{height:49.495022px;}
.hf{height:49.886719px;}
.he{height:54.430664px;}
.hb{height:59.378906px;}
.h11{height:63.408000px;}
.h6{height:64.327148px;}
.h5{height:74.562000px;}
.h3{height:102.816000px;}
.h4{height:105.264000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:83.622000px;}
.x1{left:85.039350px;}
.x11{left:91.357350px;}
.x8{left:98.161500px;}
.x2{left:106.316700px;}
.x4{left:107.433000px;}
.xc{left:128.539350px;}
.x3{left:156.604350px;}
.x10{left:163.153350px;}
.x7{left:210.465150px;}
.xb{left:237.347250px;}
.x12{left:354.061350px;}
.x15{left:376.299300px;}
.x14{left:416.692950px;}
.xd{left:480.472350px;}
.xe{left:527.188650px;}
.x9{left:575.115450px;}
.xa{left:576.518250px;}
.x6{left:643.657800px;}
.x13{left:654.253350px;}
.x5{left:657.217800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:25.600000pt;}
.ls7{letter-spacing:-2.186667pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.600000pt;}
.ls0{letter-spacing:2.613333pt;}
.ls6{letter-spacing:6.832000pt;}
.ls5{letter-spacing:6.997333pt;}
.ws1f{word-spacing:-48.000000pt;}
.ws0{word-spacing:-15.669333pt;}
.ws16{word-spacing:-14.464000pt;}
.ws3{word-spacing:-13.258667pt;}
.ws1{word-spacing:-12.053333pt;}
.ws1b{word-spacing:-11.520000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.368000pt;}
.ws9{word-spacing:-9.866667pt;}
.ws1c{word-spacing:-9.642667pt;}
.ws12{word-spacing:-9.045333pt;}
.ws13{word-spacing:-8.192000pt;}
.ws15{word-spacing:-7.027093pt;}
.wsa{word-spacing:-3.040000pt;}
.wsd{word-spacing:-2.133333pt;}
.ws32{word-spacing:-1.973333pt;}
.ws23{word-spacing:-1.920000pt;}
.ws2d{word-spacing:-1.653333pt;}
.ws17{word-spacing:-1.600000pt;}
.ws1a{word-spacing:-1.493333pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws8{word-spacing:-0.480000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws18{word-spacing:-0.256000pt;}
.ws34{word-spacing:-0.106667pt;}
.ws21{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.480000pt;}
.ws19{word-spacing:0.533333pt;}
.ws11{word-spacing:0.640000pt;}
.ws33{word-spacing:0.960000pt;}
.ws1e{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.546667pt;}
.wsc{word-spacing:1.600000pt;}
.ws25{word-spacing:1.866667pt;}
.ws27{word-spacing:1.920000pt;}
.ws26{word-spacing:2.240000pt;}
.ws2f{word-spacing:2.453333pt;}
.wsf{word-spacing:2.826667pt;}
.ws29{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.986667pt;}
.ws28{word-spacing:3.040000pt;}
.ws10{word-spacing:3.466667pt;}
.wse{word-spacing:3.786667pt;}
.ws24{word-spacing:3.893333pt;}
.ws2e{word-spacing:4.213333pt;}
.ws22{word-spacing:4.693333pt;}
.ws31{word-spacing:4.853333pt;}
.ws2b{word-spacing:5.013333pt;}
.ws30{word-spacing:6.026667pt;}
.ws20{word-spacing:6.240000pt;}
.ws6{word-spacing:13.920000pt;}
.ws14{word-spacing:198.613333pt;}
._14{margin-left:-8.234667pt;}
._1a{margin-left:-7.197333pt;}
._4{margin-left:-5.654400pt;}
._2{margin-left:-4.027200pt;}
._3{margin-left:-3.084800pt;}
._8{margin-left:-2.130667pt;}
._1{margin-left:-1.228800pt;}
._7{width:1.204267pt;}
._5{width:2.273067pt;}
._6{width:3.319467pt;}
._d{width:4.293867pt;}
._a{width:5.333333pt;}
._b{width:6.647467pt;}
._c{width:7.633067pt;}
._16{width:9.054880pt;}
._18{width:10.682133pt;}
._1d{width:11.897600pt;}
._19{width:13.347200pt;}
._1b{width:15.477333pt;}
._1c{width:16.628267pt;}
._17{width:18.320000pt;}
._15{width:244.036267pt;}
._11{width:262.912000pt;}
._13{width:354.133333pt;}
._12{width:356.010667pt;}
._e{width:381.653333pt;}
._f{width:411.178667pt;}
._10{width:465.868800pt;}
._1e{width:999.072000pt;}
._9{width:1023.408000pt;}
._0{width:1204.176000pt;}
.fs8{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.133867pt;}
.y35{bottom:41.645733pt;}
.y165{bottom:67.077200pt;}
.y6c{bottom:69.624800pt;}
.y29{bottom:75.815733pt;}
.ycd{bottom:76.907067pt;}
.y116{bottom:78.840933pt;}
.yff{bottom:79.596933pt;}
.yac{bottom:79.840533pt;}
.y164{bottom:83.077200pt;}
.y140{bottom:83.975333pt;}
.y136{bottom:84.185867pt;}
.y6b{bottom:85.624800pt;}
.ydf{bottom:86.211067pt;}
.ycc{bottom:89.707067pt;}
.y115{bottom:91.640933pt;}
.y28{bottom:91.815733pt;}
.yfe{bottom:92.396933pt;}
.yab{bottom:95.840533pt;}
.yde{bottom:99.011067pt;}
.y163{bottom:99.077200pt;}
.y135{bottom:100.185867pt;}
.ycb{bottom:102.507067pt;}
.y13f{bottom:103.175333pt;}
.y114{bottom:104.440933pt;}
.yfd{bottom:105.196933pt;}
.y6a{bottom:105.398133pt;}
.y27{bottom:107.815733pt;}
.ydd{bottom:111.811067pt;}
.yaa{bottom:111.840533pt;}
.y162{bottom:115.077200pt;}
.yca{bottom:115.307067pt;}
.y134{bottom:116.185867pt;}
.y19c{bottom:116.852000pt;}
.y69{bottom:121.398133pt;}
.y13e{bottom:122.375333pt;}
.y1ca{bottom:123.529200pt;}
.y26{bottom:123.815733pt;}
.y161{bottom:131.077200pt;}
.ya9{bottom:131.620000pt;}
.y133{bottom:132.185867pt;}
.y19b{bottom:132.852000pt;}
.y1c9{bottom:139.529200pt;}
.y25{bottom:139.815733pt;}
.y68{bottom:141.171467pt;}
.y13d{bottom:141.575333pt;}
.y160{bottom:147.077200pt;}
.y132{bottom:148.185867pt;}
.y19a{bottom:148.852000pt;}
.yb2{bottom:153.574800pt;}
.y1c8{bottom:155.529200pt;}
.ya8{bottom:156.779067pt;}
.y24{bottom:159.595333pt;}
.y13c{bottom:160.775333pt;}
.y67{bottom:160.944800pt;}
.y131{bottom:164.185867pt;}
.y15f{bottom:166.856800pt;}
.y199{bottom:172.412000pt;}
.ya7{bottom:172.779067pt;}
.y66{bottom:176.944800pt;}
.y1c7{bottom:179.089200pt;}
.y13b{bottom:179.975333pt;}
.y130{bottom:180.185867pt;}
.y23{bottom:184.754400pt;}
.y198{bottom:188.412000pt;}
.ya6{bottom:188.779067pt;}
.y15e{bottom:193.615867pt;}
.y1c6{bottom:195.089200pt;}
.y65{bottom:196.718133pt;}
.y12f{bottom:199.965333pt;}
.y22{bottom:200.754400pt;}
.y197{bottom:204.412000pt;}
.ya5{bottom:204.779067pt;}
.y15d{bottom:209.615867pt;}
.y1c5{bottom:211.089200pt;}
.y64{bottom:212.718133pt;}
.y21{bottom:220.533867pt;}
.ya4{bottom:220.779067pt;}
.y12e{bottom:226.722533pt;}
.y196{bottom:227.972000pt;}
.y15c{bottom:229.395333pt;}
.y63{bottom:232.497600pt;}
.y1c4{bottom:234.649200pt;}
.ya3{bottom:236.779067pt;}
.y12d{bottom:242.722533pt;}
.y195{bottom:243.972000pt;}
.y20{bottom:245.692933pt;}
.y1c3{bottom:250.649200pt;}
.ya2{bottom:252.779067pt;}
.y15b{bottom:256.164933pt;}
.y62{bottom:257.656667pt;}
.y12c{bottom:258.722533pt;}
.y194{bottom:259.972000pt;}
.y1f{bottom:261.692933pt;}
.y1c2{bottom:266.649200pt;}
.ya1{bottom:268.779067pt;}
.y61{bottom:273.656667pt;}
.y12b{bottom:274.722533pt;}
.y15a{bottom:275.938267pt;}
.y1e{bottom:277.692933pt;}
.y193{bottom:283.532000pt;}
.ya0{bottom:284.779067pt;}
.y60{bottom:289.656667pt;}
.y1c1{bottom:290.209200pt;}
.y12a{bottom:290.722533pt;}
.y159{bottom:291.938267pt;}
.y1d{bottom:293.692933pt;}
.y192{bottom:299.532000pt;}
.y9f{bottom:300.779067pt;}
.y5f{bottom:305.656667pt;}
.y1c0{bottom:306.209200pt;}
.y129{bottom:306.722533pt;}
.y1c{bottom:309.692933pt;}
.y158{bottom:311.711600pt;}
.y191{bottom:315.532000pt;}
.y9e{bottom:316.779067pt;}
.y16c{bottom:317.714533pt;}
.y5e{bottom:321.656667pt;}
.y1bf{bottom:322.209200pt;}
.y128{bottom:322.722533pt;}
.y1b{bottom:325.692933pt;}
.y157{bottom:327.711600pt;}
.y9d{bottom:332.779067pt;}
.y16b{bottom:336.914533pt;}
.y5d{bottom:337.656667pt;}
.y1be{bottom:338.209200pt;}
.y127{bottom:338.722533pt;}
.y190{bottom:339.092000pt;}
.y1a{bottom:341.692933pt;}
.y156{bottom:343.711600pt;}
.y9c{bottom:348.779067pt;}
.y5c{bottom:353.656667pt;}
.y18f{bottom:355.092000pt;}
.y16a{bottom:356.114533pt;}
.y19{bottom:357.692933pt;}
.y155{bottom:359.711600pt;}
.y1bd{bottom:361.769200pt;}
.y126{bottom:362.282533pt;}
.y9b{bottom:364.779067pt;}
.y5b{bottom:369.656667pt;}
.y18e{bottom:371.092000pt;}
.y18{bottom:373.692933pt;}
.y169{bottom:375.314533pt;}
.y154{bottom:375.711600pt;}
.y1bc{bottom:377.769200pt;}
.y125{bottom:378.282533pt;}
.y9a{bottom:380.779067pt;}
.y5a{bottom:389.436133pt;}
.y17{bottom:389.692933pt;}
.y153{bottom:391.711600pt;}
.y1bb{bottom:393.769200pt;}
.y124{bottom:394.282533pt;}
.y168{bottom:394.514533pt;}
.y18d{bottom:394.652000pt;}
.y99{bottom:400.558533pt;}
.y152{bottom:407.711600pt;}
.y16{bottom:409.472533pt;}
.y123{bottom:410.282533pt;}
.y18c{bottom:410.652000pt;}
.y59{bottom:410.815733pt;}
.y167{bottom:413.714533pt;}
.y1ba{bottom:417.329200pt;}
.y151{bottom:423.711600pt;}
.y18b{bottom:426.652000pt;}
.y98{bottom:427.316667pt;}
.y1b9{bottom:433.329200pt;}
.y122{bottom:433.842533pt;}
.y58{bottom:437.592400pt;}
.y33{bottom:439.186000pt;}
.y150{bottom:439.711600pt;}
.y18a{bottom:442.652000pt;}
.y97{bottom:443.316667pt;}
.y1b8{bottom:449.329200pt;}
.y121{bottom:449.842533pt;}
.y32{bottom:453.586000pt;}
.y57{bottom:453.592400pt;}
.y14f{bottom:455.711600pt;}
.y96{bottom:459.316667pt;}
.y120{bottom:465.842533pt;}
.y189{bottom:466.212000pt;}
.y31{bottom:467.986000pt;}
.y14e{bottom:471.711600pt;}
.y1b7{bottom:472.889200pt;}
.y56{bottom:473.365733pt;}
.y11f{bottom:481.842533pt;}
.y188{bottom:482.212000pt;}
.y30{bottom:482.386000pt;}
.y95{bottom:482.876667pt;}
.y14d{bottom:487.711600pt;}
.y1b6{bottom:488.889200pt;}
.y113{bottom:492.374933pt;}
.y55{bottom:493.139067pt;}
.y2f{bottom:496.786000pt;}
.yfc{bottom:497.753467pt;}
.y11e{bottom:497.842533pt;}
.y187{bottom:498.212000pt;}
.y94{bottom:498.876667pt;}
.y14c{bottom:503.711600pt;}
.y1b5{bottom:504.889200pt;}
.y112{bottom:508.374933pt;}
.y54{bottom:509.139067pt;}
.y2e{bottom:511.186000pt;}
.yfb{bottom:513.753467pt;}
.y11d{bottom:513.842533pt;}
.y93{bottom:514.876667pt;}
.y14b{bottom:519.711600pt;}
.y1b4{bottom:520.889200pt;}
.y186{bottom:521.772000pt;}
.ydc{bottom:526.689200pt;}
.y111{bottom:528.154400pt;}
.y53{bottom:528.912400pt;}
.yfa{bottom:529.753467pt;}
.y11c{bottom:529.842533pt;}
.y92{bottom:530.876667pt;}
.y2d{bottom:533.146000pt;}
.yc9{bottom:534.249200pt;}
.y14a{bottom:535.711600pt;}
.y185{bottom:537.772000pt;}
.ydb{bottom:542.689200pt;}
.y1b3{bottom:544.449200pt;}
.y52{bottom:544.912400pt;}
.yf9{bottom:545.753467pt;}
.y11b{bottom:545.842533pt;}
.y91{bottom:546.876667pt;}
.y2c{bottom:547.546000pt;}
.yc8{bottom:550.249200pt;}
.y149{bottom:551.711600pt;}
.y110{bottom:553.311600pt;}
.y184{bottom:553.772000pt;}
.yda{bottom:558.689200pt;}
.y1b2{bottom:560.449200pt;}
.y51{bottom:560.912400pt;}
.yf8{bottom:561.753467pt;}
.y11a{bottom:561.842533pt;}
.y90{bottom:562.876667pt;}
.yc7{bottom:566.249200pt;}
.y10f{bottom:569.311600pt;}
.y15{bottom:573.183333pt;}
.yd9{bottom:574.689200pt;}
.y148{bottom:575.271600pt;}
.y1b1{bottom:576.449200pt;}
.y50{bottom:576.912400pt;}
.y183{bottom:577.332000pt;}
.yf7{bottom:577.753467pt;}
.y119{bottom:577.842533pt;}
.yc6{bottom:582.249200pt;}
.y10e{bottom:585.311600pt;}
.y14{bottom:587.583333pt;}
.yd8{bottom:590.689200pt;}
.y147{bottom:591.271600pt;}
.y4f{bottom:592.912400pt;}
.y182{bottom:593.332000pt;}
.yf6{bottom:593.753467pt;}
.y118{bottom:593.842533pt;}
.y8f{bottom:595.795600pt;}
.y1b0{bottom:600.009200pt;}
.y10d{bottom:601.311600pt;}
.y13{bottom:601.983333pt;}
.yc5{bottom:605.809200pt;}
.y146{bottom:607.271600pt;}
.y8e{bottom:608.595600pt;}
.y4e{bottom:608.912400pt;}
.y181{bottom:609.332000pt;}
.yf5{bottom:609.753467pt;}
.y117{bottom:609.842533pt;}
.yd7{bottom:614.249200pt;}
.y1af{bottom:616.009200pt;}
.y12{bottom:616.383333pt;}
.y10c{bottom:617.311600pt;}
.yc4{bottom:621.809200pt;}
.y145{bottom:623.271600pt;}
.yf4{bottom:625.753467pt;}
.y8c{bottom:628.691600pt;}
.yd6{bottom:630.249200pt;}
.y11{bottom:630.783333pt;}
.y1ae{bottom:632.009200pt;}
.y4d{bottom:632.472400pt;}
.y180{bottom:632.892000pt;}
.y10b{bottom:633.311600pt;}
.y72{bottom:633.732400pt;}
.yc3{bottom:637.809200pt;}
.y144{bottom:639.271600pt;}
.y8a{bottom:641.491600pt;}
.y10{bottom:645.183333pt;}
.yd5{bottom:646.249200pt;}
.y8d{bottom:647.891600pt;}
.y4c{bottom:648.472400pt;}
.y17f{bottom:648.892000pt;}
.yf3{bottom:649.313467pt;}
.y13a{bottom:650.922800pt;}
.y71{bottom:652.932400pt;}
.yc2{bottom:653.809200pt;}
.y89{bottom:654.291600pt;}
.y1ad{bottom:655.569200pt;}
.y10a{bottom:656.871600pt;}
.yd4{bottom:662.249200pt;}
.y143{bottom:662.831600pt;}
.y139{bottom:663.722800pt;}
.y4b{bottom:664.472400pt;}
.yf2{bottom:665.313467pt;}
.y8b{bottom:667.091600pt;}
.yf{bottom:667.143333pt;}
.yc1{bottom:669.809200pt;}
.y1ac{bottom:671.569200pt;}
.y70{bottom:672.132400pt;}
.y17e{bottom:672.452000pt;}
.y109{bottom:672.871600pt;}
.y138{bottom:676.522800pt;}
.yd3{bottom:678.249200pt;}
.y142{bottom:678.831600pt;}
.y4a{bottom:680.472400pt;}
.ye{bottom:681.543333pt;}
.yf1{bottom:685.092933pt;}
.y88{bottom:685.672933pt;}
.yc0{bottom:685.809200pt;}
.y1ab{bottom:687.569200pt;}
.y17d{bottom:688.452000pt;}
.y108{bottom:688.871600pt;}
.y137{bottom:689.322800pt;}
.y6f{bottom:691.332400pt;}
.y85{bottom:692.072933pt;}
.y49{bottom:696.472400pt;}
.y87{bottom:698.472933pt;}
.y141{bottom:698.611067pt;}
.yd2{bottom:701.809200pt;}
.y17c{bottom:704.452000pt;}
.y107{bottom:704.871600pt;}
.y84{bottom:704.872933pt;}
.yd{bottom:706.759067pt;}
.ybf{bottom:709.369200pt;}
.yf0{bottom:710.249200pt;}
.y6e{bottom:710.532400pt;}
.y1aa{bottom:711.129200pt;}
.y86{bottom:711.272933pt;}
.y48{bottom:712.472400pt;}
.yd1{bottom:717.809200pt;}
.yc{bottom:719.559067pt;}
.y106{bottom:720.871600pt;}
.ybe{bottom:725.369200pt;}
.yef{bottom:726.249200pt;}
.y1a9{bottom:727.129200pt;}
.y17b{bottom:728.012000pt;}
.y47{bottom:728.472400pt;}
.y6d{bottom:729.732400pt;}
.y83{bottom:729.854267pt;}
.yd0{bottom:733.809200pt;}
.y80{bottom:736.254267pt;}
.y105{bottom:736.871600pt;}
.ybd{bottom:741.369200pt;}
.yee{bottom:742.249200pt;}
.y82{bottom:742.654267pt;}
.y1a8{bottom:743.129200pt;}
.y17a{bottom:744.012000pt;}
.y46{bottom:744.472400pt;}
.yb{bottom:745.230400pt;}
.y7f{bottom:749.054267pt;}
.ycf{bottom:749.809200pt;}
.y104{bottom:752.871600pt;}
.y81{bottom:755.454267pt;}
.ybc{bottom:757.369200pt;}
.yed{bottom:758.249200pt;}
.y179{bottom:760.012000pt;}
.y45{bottom:760.472400pt;}
.ya{bottom:765.003733pt;}
.yce{bottom:765.809200pt;}
.y1a7{bottom:766.689200pt;}
.y103{bottom:768.871600pt;}
.ybb{bottom:773.369200pt;}
.y44{bottom:776.472400pt;}
.y7e{bottom:778.046267pt;}
.y9{bottom:781.003733pt;}
.yec{bottom:781.809200pt;}
.y1a6{bottom:782.689200pt;}
.y178{bottom:783.572000pt;}
.yba{bottom:789.369200pt;}
.y102{bottom:792.431600pt;}
.y43{bottom:792.472400pt;}
.yeb{bottom:797.809200pt;}
.y1a5{bottom:798.689200pt;}
.y8{bottom:800.777067pt;}
.y7d{bottom:804.790667pt;}
.yb9{bottom:805.369200pt;}
.y177{bottom:807.132000pt;}
.y101{bottom:808.431600pt;}
.y42{bottom:808.472400pt;}
.yea{bottom:813.809200pt;}
.y7{bottom:816.777067pt;}
.yb8{bottom:821.369200pt;}
.y1a4{bottom:822.249200pt;}
.y166{bottom:822.362133pt;}
.y176{bottom:823.132000pt;}
.y41{bottom:824.472400pt;}
.y100{bottom:828.211067pt;}
.y7c{bottom:828.929200pt;}
.ye9{bottom:829.809200pt;}
.yb7{bottom:837.369200pt;}
.y1a3{bottom:838.249200pt;}
.y40{bottom:840.472400pt;}
.y7b{bottom:844.929200pt;}
.ye8{bottom:845.809200pt;}
.y175{bottom:846.692000pt;}
.y2b{bottom:850.287467pt;}
.yb6{bottom:853.369200pt;}
.y1a2{bottom:854.249200pt;}
.y3f{bottom:856.472400pt;}
.y7a{bottom:860.929200pt;}
.ye7{bottom:861.809200pt;}
.y174{bottom:862.692000pt;}
.y2a{bottom:864.687467pt;}
.yb5{bottom:869.369200pt;}
.y1a1{bottom:870.249200pt;}
.y3e{bottom:872.472400pt;}
.y79{bottom:876.929200pt;}
.ye6{bottom:877.809200pt;}
.yb4{bottom:885.369200pt;}
.y173{bottom:886.252000pt;}
.y3d{bottom:892.252000pt;}
.y78{bottom:892.929200pt;}
.y1a0{bottom:893.809200pt;}
.y6{bottom:894.118800pt;}
.ye2{bottom:898.212267pt;}
.yb3{bottom:901.369200pt;}
.y172{bottom:902.252000pt;}
.y77{bottom:908.929200pt;}
.y19f{bottom:909.809200pt;}
.y5{bottom:914.918800pt;}
.ye5{bottom:917.369200pt;}
.ye1{bottom:917.412267pt;}
.y171{bottom:918.249200pt;}
.y76{bottom:924.929200pt;}
.y19e{bottom:925.809200pt;}
.y3c{bottom:927.990667pt;}
.ye4{bottom:933.369200pt;}
.ye0{bottom:936.612267pt;}
.y75{bottom:940.929200pt;}
.y170{bottom:941.809200pt;}
.y3b{bottom:943.990667pt;}
.y4{bottom:947.057467pt;}
.ye3{bottom:949.369200pt;}
.yb1{bottom:955.812267pt;}
.y74{bottom:956.929200pt;}
.y16f{bottom:957.809200pt;}
.y3a{bottom:963.770133pt;}
.y19d{bottom:965.369200pt;}
.y73{bottom:972.929200pt;}
.yb0{bottom:975.012267pt;}
.y16e{bottom:981.369200pt;}
.y3{bottom:982.385467pt;}
.y39{bottom:988.929200pt;}
.yaf{bottom:994.212267pt;}
.y16d{bottom:997.369200pt;}
.y38{bottom:1004.929200pt;}
.yae{bottom:1013.412267pt;}
.y2{bottom:1015.729467pt;}
.y37{bottom:1020.929200pt;}
.yad{bottom:1032.612267pt;}
.y36{bottom:1036.929200pt;}
.y34{bottom:1083.283467pt;}
.ha{height:29.562500pt;}
.h10{height:30.293333pt;}
.h13{height:30.625000pt;}
.h12{height:30.762667pt;}
.hd{height:33.257812pt;}
.hc{height:34.453125pt;}
.h14{height:35.187500pt;}
.h7{height:36.953125pt;}
.h9{height:38.281250pt;}
.h2{height:39.585938pt;}
.h15{height:40.161458pt;}
.h8{height:43.984375pt;}
.h16{height:43.995575pt;}
.hf{height:44.343750pt;}
.he{height:48.382812pt;}
.hb{height:52.781250pt;}
.h11{height:56.362667pt;}
.h6{height:57.179688pt;}
.h5{height:66.277333pt;}
.h3{height:91.392000pt;}
.h4{height:93.568000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:74.330667pt;}
.x1{left:75.590533pt;}
.x11{left:81.206533pt;}
.x8{left:87.254667pt;}
.x2{left:94.503733pt;}
.x4{left:95.496000pt;}
.xc{left:114.257200pt;}
.x3{left:139.203867pt;}
.x10{left:145.025200pt;}
.x7{left:187.080133pt;}
.xb{left:210.975333pt;}
.x12{left:314.721200pt;}
.x15{left:334.488267pt;}
.x14{left:370.393733pt;}
.xd{left:427.086533pt;}
.xe{left:468.612133pt;}
.x9{left:511.213733pt;}
.xa{left:512.460667pt;}
.x6{left:572.140267pt;}
.x13{left:581.558533pt;}
.x5{left:584.193600pt;}
}




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