
    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_8ce2daec947cba022a74a217.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c9e1f96eb944d485c4a1d48e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.149902;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_75c1440907222cfae5412f66.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_38e5d4779812fa2527817bf5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_cf0a640446bcf34fa8e5c16a.woff')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_778e54a5ed2f22ed66194ada.woff')format("woff");}.ff6{font-family:ff6;line-height:0.763184;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_58c22e38a07662723a23c50f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ffd0479da2cd00634f246d2d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_1eb6d288974a4e908f175e09.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_4328e024a8249f60977dbab0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.149902;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_11a3b5fb5281fd71b7c83988.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_4c2bdaffe2c161f2de2336ea.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-40.200000px;}
.v5{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:43.200000px;}
.v2{vertical-align:60.600000px;}
.v1{vertical-align:64.800000px;}
.ls2{letter-spacing:-6.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.300000px;}
.lsc{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.950000px;}
.ls3{letter-spacing:3.000000px;}
.ls4{letter-spacing:3.300000px;}
.ls5{letter-spacing:3.900000px;}
.ls8{letter-spacing:5.124000px;}
.ls19{letter-spacing:5.550000px;}
.lsb{letter-spacing:6.000000px;}
.ls16{letter-spacing:10.236000px;}
.ls10{letter-spacing:11.100000px;}
.ls17{letter-spacing:11.550000px;}
.ls1{letter-spacing:12.000000px;}
.ls14{letter-spacing:13.575000px;}
.ls12{letter-spacing:13.875000px;}
.lsa{letter-spacing:15.000000px;}
.ls11{letter-spacing:15.675000px;}
.lsf{letter-spacing:16.200000px;}
.lse{letter-spacing:17.025000px;}
.ls18{letter-spacing:18.018000px;}
.ls13{letter-spacing:18.075000px;}
.ls7{letter-spacing:21.018000px;}
.ls9{letter-spacing:23.937000px;}
.ls6{letter-spacing:38.550000px;}
.ls1a{letter-spacing:220.224000px;}
.ls1b{letter-spacing:701.352000px;}
.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;}
}
.ws10{word-spacing:-53.364000px;}
.ws1{word-spacing:-28.359000px;}
.ws3{word-spacing:-21.075000px;}
.ws0{word-spacing:-19.182000px;}
.ws17{word-spacing:-16.359000px;}
.ws5{word-spacing:-15.846000px;}
.wsb{word-spacing:-15.345600px;}
.ws12{word-spacing:-10.758000px;}
.wsc{word-spacing:-10.500000px;}
.ws1a{word-spacing:-10.425000px;}
.ws18{word-spacing:-9.975000px;}
.ws11{word-spacing:-9.525000px;}
.ws19{word-spacing:-8.775000px;}
.ws16{word-spacing:-8.325000px;}
.ws1b{word-spacing:-7.992000px;}
.ws4{word-spacing:-6.693000px;}
.ws15{word-spacing:-4.725000px;}
.ws14{word-spacing:-4.635000px;}
.ws13{word-spacing:-4.058400px;}
.ws2{word-spacing:-4.044000px;}
.ws8{word-spacing:-3.595200px;}
.ws9{word-spacing:-2.284800px;}
.wsa{word-spacing:-0.369600px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.258000px;}
.wsd{word-spacing:0.326400px;}
.wse{word-spacing:3.168000px;}
.wsf{word-spacing:9.660000px;}
.ws1c{word-spacing:243.615000px;}
._4e{margin-left:-49.833000px;}
._11{margin-left:-37.014000px;}
._4c{margin-left:-33.540000px;}
._12{margin-left:-30.450000px;}
._48{margin-left:-27.885000px;}
._47{margin-left:-25.998000px;}
._3d{margin-left:-24.264000px;}
._31{margin-left:-21.861000px;}
._3{margin-left:-20.178000px;}
._4{margin-left:-18.639000px;}
._21{margin-left:-17.142000px;}
._1d{margin-left:-15.456000px;}
._22{margin-left:-13.224000px;}
._49{margin-left:-11.841000px;}
._1e{margin-left:-10.764000px;}
._2{margin-left:-8.970000px;}
._1{margin-left:-7.314000px;}
._0{margin-left:-6.210000px;}
._23{margin-left:-4.443000px;}
._25{margin-left:-3.375000px;}
._20{margin-left:-2.223000px;}
._e{margin-left:-1.188000px;}
._10{width:1.512000px;}
._13{width:2.688000px;}
._1c{width:3.957000px;}
._14{width:4.974000px;}
._1b{width:6.603000px;}
._a{width:7.818000px;}
._24{width:9.777000px;}
._d{width:11.232000px;}
._8{width:12.282000px;}
._5{width:13.500000px;}
._9{width:15.318000px;}
._c{width:16.767000px;}
._2c{width:17.850000px;}
._1f{width:19.326000px;}
._b{width:20.358000px;}
._15{width:22.218000px;}
._16{width:23.598000px;}
._18{width:25.359000px;}
._6{width:26.460000px;}
._f{width:28.080000px;}
._32{width:29.109000px;}
._3f{width:30.171000px;}
._17{width:31.188000px;}
._1a{width:32.568000px;}
._2d{width:33.687000px;}
._26{width:34.845000px;}
._2a{width:36.369000px;}
._19{width:38.226000px;}
._3a{width:40.041000px;}
._27{width:41.331000px;}
._37{width:43.071000px;}
._2b{width:46.740000px;}
._40{width:48.072000px;}
._38{width:55.884000px;}
._4a{width:57.573000px;}
._33{width:62.118000px;}
._2f{width:63.945000px;}
._30{width:66.177000px;}
._3b{width:67.275000px;}
._39{width:69.375000px;}
._34{width:70.593000px;}
._4b{width:71.949000px;}
._35{width:72.954000px;}
._29{width:74.307000px;}
._3c{width:96.783000px;}
._4d{width:117.300000px;}
._44{width:122.166000px;}
._43{width:146.187000px;}
._45{width:152.397000px;}
._3e{width:155.724000px;}
._46{width:188.439000px;}
._36{width:190.494000px;}
._2e{width:196.056000px;}
._42{width:346.338000px;}
._41{width:379.107000px;}
._28{width:565.053000px;}
._7{width:570.936000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:19.200000px;}
.fs5{font-size:24.000000px;}
.fs12{font-size:30.000000px;}
.fs7{font-size:33.600000px;}
.fs10{font-size:36.000000px;}
.fse{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsc{font-size:45.600000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:55.200000px;}
.fs1{font-size:57.000000px;}
.fsf{font-size:60.000000px;}
.fs0{font-size:69.000000px;}
.fs3{font-size:75.000000px;}
.fs11{font-size:78.000000px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fsb{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y1a1{bottom:2.580000px;}
.y13{bottom:12.330000px;}
.y1a0{bottom:15.480000px;}
.y12{bottom:34.980000px;}
.y11{bottom:75.930000px;}
.y19f{bottom:103.380000px;}
.y185{bottom:108.330000px;}
.yd7{bottom:109.530000px;}
.y167{bottom:111.930000px;}
.y112{bottom:112.380000px;}
.y3a{bottom:112.680000px;}
.y9a{bottom:115.230000px;}
.y149{bottom:117.330000px;}
.yb9{bottom:119.580000px;}
.yf6{bottom:120.930000px;}
.y12d{bottom:121.680000px;}
.y79{bottom:123.480000px;}
.y184{bottom:128.880000px;}
.yd6{bottom:130.380000px;}
.y111{bottom:132.180000px;}
.y166{bottom:132.480000px;}
.y39{bottom:133.530000px;}
.y99{bottom:136.080000px;}
.y148{bottom:137.130000px;}
.yb8{bottom:140.130000px;}
.yf5{bottom:141.930000px;}
.y12c{bottom:142.980000px;}
.y183{bottom:148.380000px;}
.y78{bottom:148.680000px;}
.y10{bottom:149.430000px;}
.y1d{bottom:149.730000px;}
.yd5{bottom:150.480000px;}
.y110{bottom:152.280000px;}
.y165{bottom:153.030000px;}
.y59{bottom:153.780000px;}
.y38{bottom:154.080000px;}
.y98{bottom:156.330000px;}
.yf4{bottom:156.930000px;}
.yb7{bottom:157.680000px;}
.y147{bottom:158.130000px;}
.y77{bottom:168.930000px;}
.y182{bottom:169.530000px;}
.yd4{bottom:171.030000px;}
.y10f{bottom:172.530000px;}
.y58{bottom:173.580000px;}
.y37{bottom:173.880000px;}
.y97{bottom:176.730000px;}
.y146{bottom:178.980000px;}
.yb6{bottom:180.330000px;}
.yf3{bottom:181.530000px;}
.y12b{bottom:182.130000px;}
.y76{bottom:189.030000px;}
.y181{bottom:189.330000px;}
.yd3{bottom:191.580000px;}
.y164{bottom:192.930000px;}
.y10e{bottom:193.380000px;}
.y36{bottom:193.680000px;}
.y57{bottom:194.430000px;}
.y96{bottom:196.530000px;}
.y145{bottom:198.030000px;}
.yb5{bottom:200.130000px;}
.yf2{bottom:201.330000px;}
.y12a{bottom:201.930000px;}
.y75{bottom:208.530000px;}
.y180{bottom:209.580000px;}
.yd2{bottom:211.680000px;}
.y163{bottom:213.180000px;}
.y10d{bottom:213.480000px;}
.y56{bottom:214.230000px;}
.y35{bottom:214.530000px;}
.y95{bottom:217.530000px;}
.yb4{bottom:220.680000px;}
.y144{bottom:221.430000px;}
.yf1{bottom:221.730000px;}
.y129{bottom:222.180000px;}
.y74{bottom:229.380000px;}
.y17f{bottom:229.680000px;}
.y34{bottom:231.930000px;}
.y162{bottom:233.280000px;}
.y10c{bottom:233.730000px;}
.y55{bottom:234.780000px;}
.y94{bottom:238.680000px;}
.y143{bottom:239.730000px;}
.yb3{bottom:240.480000px;}
.yf0{bottom:241.980000px;}
.y128{bottom:243.330000px;}
.y73{bottom:249.480000px;}
.y17e{bottom:249.930000px;}
.y161{bottom:252.030000px;}
.yd1{bottom:252.780000px;}
.y10b{bottom:253.830000px;}
.y33{bottom:254.130000px;}
.y54{bottom:254.880000px;}
.y93{bottom:258.480000px;}
.y142{bottom:259.230000px;}
.yb2{bottom:260.730000px;}
.yef{bottom:262.530000px;}
.y127{bottom:262.830000px;}
.y72{bottom:270.030000px;}
.y17d{bottom:270.330000px;}
.yd0{bottom:272.580000px;}
.y160{bottom:273.330000px;}
.y32{bottom:274.380000px;}
.y53{bottom:275.130000px;}
.y10a{bottom:275.430000px;}
.y92{bottom:278.730000px;}
.yb1{bottom:280.080000px;}
.yee{bottom:281.580000px;}
.y141{bottom:281.880000px;}
.y126{bottom:282.630000px;}
.y71{bottom:289.830000px;}
.y17c{bottom:290.130000px;}
.ycf{bottom:293.130000px;}
.y15f{bottom:293.430000px;}
.y31{bottom:294.180000px;}
.y109{bottom:294.930000px;}
.y52{bottom:295.530000px;}
.y91{bottom:299.580000px;}
.yb0{bottom:300.930000px;}
.yc{bottom:302.130000px;}
.yed{bottom:302.430000px;}
.y125{bottom:303.180000px;}
.y70{bottom:309.630000px;}
.y17b{bottom:310.680000px;}
.yf{bottom:312.930000px;}
.yce{bottom:313.230000px;}
.y15e{bottom:313.980000px;}
.y30{bottom:314.280000px;}
.y51{bottom:315.030000px;}
.y90{bottom:320.130000px;}
.yaf{bottom:320.730000px;}
.y140{bottom:321.180000px;}
.yec{bottom:322.530000px;}
.y124{bottom:322.980000px;}
.y19d{bottom:327.330000px;}
.y6f{bottom:330.930000px;}
.ycd{bottom:333.330000px;}
.y15d{bottom:333.630000px;}
.y2f{bottom:334.530000px;}
.y19c{bottom:334.830000px;}
.y50{bottom:335.580000px;}
.y8f{bottom:339.930000px;}
.y13f{bottom:340.980000px;}
.yae{bottom:341.280000px;}
.yeb{bottom:342.330000px;}
.y123{bottom:343.080000px;}
.y6e{bottom:348.480000px;}
.y17a{bottom:351.030000px;}
.ye{bottom:353.580000px;}
.y15c{bottom:353.880000px;}
.ycc{bottom:354.330000px;}
.y2e{bottom:354.930000px;}
.y4f{bottom:355.680000px;}
.y8e{bottom:360.780000px;}
.yad{bottom:361.530000px;}
.y13e{bottom:361.830000px;}
.yea{bottom:362.580000px;}
.y122{bottom:363.930000px;}
.y19b{bottom:366.480000px;}
.yd{bottom:366.930000px;}
.y6d{bottom:370.080000px;}
.y19e{bottom:370.530000px;}
.y179{bottom:371.130000px;}
.y2d{bottom:371.580000px;}
.y15b{bottom:374.130000px;}
.ycb{bottom:374.430000px;}
.y4e{bottom:375.930000px;}
.y108{bottom:376.530000px;}
.ye9{bottom:379.830000px;}
.y9{bottom:380.130000px;}
.y8d{bottom:380.880000px;}
.yac{bottom:381.330000px;}
.y13d{bottom:382.380000px;}
.y121{bottom:383.730000px;}
.ya{bottom:390.330000px;}
.y6c{bottom:390.630000px;}
.y178{bottom:392.730000px;}
.y15a{bottom:394.230000px;}
.y2c{bottom:394.530000px;}
.yca{bottom:394.980000px;}
.y4d{bottom:396.030000px;}
.y107{bottom:396.780000px;}
.y8c{bottom:401.430000px;}
.y13c{bottom:402.480000px;}
.ye8{bottom:402.930000px;}
.y120{bottom:404.280000px;}
.yb{bottom:408.330000px;}
.y6b{bottom:410.430000px;}
.y177{bottom:411.930000px;}
.y159{bottom:414.330000px;}
.y2b{bottom:415.080000px;}
.y4c{bottom:416.880000px;}
.y106{bottom:417.630000px;}
.yab{bottom:421.980000px;}
.y8b{bottom:422.280000px;}
.y11f{bottom:422.730000px;}
.ye7{bottom:423.030000px;}
.y13b{bottom:424.080000px;}
.y6a{bottom:430.980000px;}
.y176{bottom:432.030000px;}
.y158{bottom:434.580000px;}
.y2a{bottom:434.880000px;}
.yc9{bottom:435.630000px;}
.y4b{bottom:436.680000px;}
.y105{bottom:437.130000px;}
.y8a{bottom:442.080000px;}
.y13a{bottom:443.130000px;}
.ye6{bottom:443.580000px;}
.y11e{bottom:444.630000px;}
.y19a{bottom:447.480000px;}
.y69{bottom:450.780000px;}
.y175{bottom:452.880000px;}
.y157{bottom:453.930000px;}
.y29{bottom:455.130000px;}
.yc8{bottom:455.730000px;}
.y4a{bottom:456.930000px;}
.y104{bottom:457.980000px;}
.yaa{bottom:462.330000px;}
.y89{bottom:462.630000px;}
.ye5{bottom:463.680000px;}
.y11d{bottom:465.480000px;}
.y194{bottom:469.530000px;}
.y68{bottom:470.880000px;}
.y174{bottom:472.680000px;}
.y156{bottom:474.930000px;}
.y28{bottom:475.530000px;}
.yc7{bottom:476.280000px;}
.y49{bottom:477.330000px;}
.y103{bottom:478.530000px;}
.ya9{bottom:480.330000px;}
.ye4{bottom:483.930000px;}
.y88{bottom:484.980000px;}
.y11c{bottom:485.730000px;}
.y193{bottom:488.130000px;}
.y67{bottom:491.130000px;}
.y199{bottom:492.480000px;}
.y27{bottom:493.980000px;}
.y155{bottom:494.730000px;}
.y173{bottom:495.030000px;}
.yc6{bottom:496.530000px;}
.y48{bottom:497.580000px;}
.y102{bottom:498.930000px;}
.ye3{bottom:499.380000px;}
.ya8{bottom:502.230000px;}
.y87{bottom:503.730000px;}
.y11b{bottom:505.080000px;}
.y192{bottom:508.380000px;}
.y66{bottom:513.030000px;}
.y172{bottom:513.780000px;}
.y154{bottom:514.830000px;}
.y26{bottom:515.580000px;}
.yc5{bottom:517.380000px;}
.y47{bottom:517.680000px;}
.y101{bottom:519.480000px;}
.ya7{bottom:523.080000px;}
.ye2{bottom:523.680000px;}
.y86{bottom:524.130000px;}
.y139{bottom:524.580000px;}
.y11a{bottom:525.330000px;}
.y191{bottom:528.480000px;}
.y65{bottom:529.230000px;}
.y25{bottom:533.880000px;}
.y153{bottom:534.930000px;}
.y198{bottom:535.380000px;}
.yc4{bottom:537.480000px;}
.y46{bottom:537.930000px;}
.y100{bottom:539.730000px;}
.ya6{bottom:542.880000px;}
.ye1{bottom:543.930000px;}
.y85{bottom:544.680000px;}
.y119{bottom:545.130000px;}
.y138{bottom:545.730000px;}
.y190{bottom:549.030000px;}
.y8{bottom:551.580000px;}
.y171{bottom:554.730000px;}
.y24{bottom:555.180000px;}
.y152{bottom:555.480000px;}
.yc3{bottom:557.730000px;}
.y45{bottom:558.030000px;}
.yff{bottom:560.130000px;}
.y197{bottom:561.330000px;}
.ya5{bottom:561.930000px;}
.ye0{bottom:564.180000px;}
.y84{bottom:564.930000px;}
.y137{bottom:565.230000px;}
.y118{bottom:565.980000px;}
.y18f{bottom:568.830000px;}
.y64{bottom:572.130000px;}
.y151{bottom:573.180000px;}
.y170{bottom:574.980000px;}
.y23{bottom:575.280000px;}
.yc2{bottom:578.130000px;}
.y44{bottom:578.280000px;}
.yfe{bottom:579.930000px;}
.ya4{bottom:583.230000px;}
.y83{bottom:584.280000px;}
.y136{bottom:585.780000px;}
.y117{bottom:586.830000px;}
.y196{bottom:588.630000px;}
.y1c{bottom:590.130000px;}
.y7{bottom:591.180000px;}
.y63{bottom:592.230000px;}
.y22{bottom:595.530000px;}
.y43{bottom:598.380000px;}
.yfd{bottom:600.930000px;}
.ya3{bottom:603.030000px;}
.ydf{bottom:605.130000px;}
.y116{bottom:605.880000px;}
.y135{bottom:606.330000px;}
.y82{bottom:607.380000px;}
.y18e{bottom:610.980000px;}
.y62{bottom:612.330000px;}
.y16f{bottom:613.830000px;}
.y21{bottom:615.930000px;}
.y42{bottom:618.480000px;}
.yc1{bottom:618.780000px;}
.yfc{bottom:621.330000px;}
.ya2{bottom:623.580000px;}
.y81{bottom:625.680000px;}
.y134{bottom:626.430000px;}
.y115{bottom:627.180000px;}
.y18d{bottom:629.730000px;}
.y61{bottom:632.880000px;}
.y150{bottom:635.730000px;}
.y16e{bottom:636.930000px;}
.y41{bottom:638.730000px;}
.yc0{bottom:639.330000px;}
.yfb{bottom:641.580000px;}
.y6{bottom:642.630000px;}
.ya1{bottom:643.380000px;}
.y18{bottom:645.180000px;}
.yde{bottom:645.930000px;}
.y80{bottom:646.530000px;}
.y133{bottom:646.980000px;}
.y60{bottom:650.580000px;}
.y18c{bottom:651.630000px;}
.y14f{bottom:655.980000px;}
.y16d{bottom:656.280000px;}
.y40{bottom:658.530000px;}
.ybf{bottom:659.880000px;}
.yfa{bottom:662.130000px;}
.ya0{bottom:663.930000px;}
.y5{bottom:664.230000px;}
.ydd{bottom:665.730000px;}
.y7f{bottom:666.330000px;}
.y132{bottom:668.580000px;}
.y18b{bottom:670.380000px;}
.y17{bottom:671.730000px;}
.y5f{bottom:672.930000px;}
.y14e{bottom:676.080000px;}
.y16c{bottom:676.830000px;}
.y3f{bottom:679.380000px;}
.ybe{bottom:679.680000px;}
.yf9{bottom:682.230000px;}
.y1b{bottom:682.530000px;}
.y4{bottom:682.980000px;}
.y9f{bottom:684.030000px;}
.ydc{bottom:685.830000px;}
.y7e{bottom:686.880000px;}
.y16{bottom:687.330000px;}
.y131{bottom:687.930000px;}
.y18a{bottom:690.480000px;}
.y5e{bottom:693.030000px;}
.y20{bottom:695.130000px;}
.y14d{bottom:696.330000px;}
.y16b{bottom:696.930000px;}
.y15{bottom:698.130000px;}
.y3e{bottom:699.180000px;}
.ybd{bottom:700.530000px;}
.yf8{bottom:702.780000px;}
.y9e{bottom:704.130000px;}
.ydb{bottom:706.680000px;}
.y7d{bottom:707.130000px;}
.y130{bottom:708.180000px;}
.y189{bottom:710.280000px;}
.y5d{bottom:712.830000px;}
.y14c{bottom:716.130000px;}
.y16a{bottom:717.630000px;}
.y3d{bottom:718.980000px;}
.ybc{bottom:719.730000px;}
.y1f{bottom:721.080000px;}
.yda{bottom:722.880000px;}
.y9d{bottom:723.930000px;}
.y114{bottom:727.530000px;}
.y7c{bottom:727.980000px;}
.y12f{bottom:728.730000px;}
.y2{bottom:729.780000px;}
.y188{bottom:731.130000px;}
.y5c{bottom:733.680000px;}
.y14b{bottom:736.230000px;}
.y169{bottom:737.730000px;}
.y3c{bottom:739.530000px;}
.ybb{bottom:740.580000px;}
.y14{bottom:743.430000px;}
.y9c{bottom:744.480000px;}
.y1e{bottom:745.230000px;}
.yd9{bottom:747.030000px;}
.y113{bottom:747.330000px;}
.y7b{bottom:747.780000px;}
.y1{bottom:748.530000px;}
.y5b{bottom:750.930000px;}
.y187{bottom:751.380000px;}
.y14a{bottom:756.330000px;}
.y168{bottom:757.830000px;}
.y3b{bottom:759.630000px;}
.yba{bottom:761.130000px;}
.yf7{bottom:763.530000px;}
.y9b{bottom:764.730000px;}
.yd8{bottom:767.130000px;}
.y7a{bottom:767.880000px;}
.y12e{bottom:769.380000px;}
.y186{bottom:771.180000px;}
.y5a{bottom:773.280000px;}
.y3{bottom:777.930000px;}
.y19{bottom:778.680000px;}
.y1a{bottom:813.930000px;}
.y195{bottom:816.180000px;}
.h8{height:18.000000px;}
.h15{height:19.995117px;}
.h13{height:23.472656px;}
.h10{height:27.000000px;}
.h12{height:27.283887px;}
.ha{height:31.500000px;}
.h6{height:36.000000px;}
.hf{height:45.000000px;}
.h7{height:51.109863px;}
.hb{height:53.987109px;}
.h3{height:54.411621px;}
.h9{height:55.747559px;}
.h14{height:56.250000px;}
.h2{height:67.483887px;}
.hd{height:90.000000px;}
.h11{height:95.187305px;}
.h5{height:103.095703px;}
.hc{height:128.083887px;}
.h4{height:132.283887px;}
.he{height:134.967773px;}
.h1{height:834.000000px;}
.h0{height:834.150000px;}
.w5{width:577.500000px;}
.w4{width:577.800000px;}
.w2{width:587.175000px;}
.w3{width:587.250000px;}
.w8{width:601.950000px;}
.w9{width:602.250000px;}
.w6{width:611.625000px;}
.w7{width:612.000000px;}
.w0{width:623.850000px;}
.w1{width:624.000000px;}
.x0{left:0.000000px;}
.x42{left:67.050000px;}
.x43{left:68.700000px;}
.x3{left:70.200000px;}
.x1b{left:71.250000px;}
.x34{left:72.750000px;}
.x2a{left:74.550000px;}
.x2b{left:75.600000px;}
.x2c{left:76.950000px;}
.x2d{left:78.450000px;}
.x2e{left:79.950000px;}
.x1c{left:81.000000px;}
.x31{left:82.500000px;}
.x12{left:83.550000px;}
.x1e{left:84.600000px;}
.x14{left:85.650000px;}
.x32{left:86.850000px;}
.x19{left:88.149000px;}
.x21{left:89.250000px;}
.x22{left:90.750000px;}
.x24{left:92.550000px;}
.x25{left:93.600000px;}
.x26{left:94.650000px;}
.x29{left:95.700000px;}
.x28{left:97.200000px;}
.x35{left:98.250000px;}
.x36{left:99.750000px;}
.x2f{left:100.800000px;}
.x37{left:101.850000px;}
.x30{left:103.050000px;}
.x3e{left:104.100000px;}
.x1d{left:105.150000px;}
.x3c{left:106.200000px;}
.x3f{left:107.250000px;}
.x38{left:108.450000px;}
.x3b{left:109.800000px;}
.x3a{left:110.850000px;}
.x4{left:111.900000px;}
.x10{left:114.150000px;}
.x3d{left:115.200000px;}
.x39{left:117.300000px;}
.x1f{left:118.350000px;}
.x20{left:119.550000px;}
.x15{left:121.350000px;}
.x41{left:123.150000px;}
.x23{left:124.500000px;}
.x33{left:126.000000px;}
.x40{left:127.050000px;}
.x27{left:129.300000px;}
.x8{left:131.700000px;}
.x48{left:133.650000px;}
.x13{left:136.800000px;}
.x46{left:141.450000px;}
.x45{left:142.950000px;}
.x44{left:144.000000px;}
.x18{left:147.537000px;}
.x16{left:163.050000px;}
.x1{left:167.400000px;}
.x2{left:169.950000px;}
.x17{left:184.200000px;}
.x6{left:186.150000px;}
.x7{left:231.150000px;}
.x49{left:270.450000px;}
.x11{left:318.150000px;}
.x5{left:323.550000px;}
.x4b{left:341.700000px;}
.x9{left:382.350000px;}
.x4a{left:388.800000px;}
.xa{left:393.450000px;}
.xc{left:394.500000px;}
.xb{left:403.200000px;}
.x4d{left:422.700000px;}
.x4c{left:427.350000px;}
.x4f{left:437.100000px;}
.x4e{left:478.500000px;}
.xf{left:488.550000px;}
.xe{left:499.950000px;}
.xd{left:501.450000px;}
.x50{left:504.450000px;}
.x1a{left:561.150000px;}
.x47{left:577.800000px;}
@media print{
.v4{vertical-align:-35.733333pt;}
.v5{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:38.400000pt;}
.v2{vertical-align:53.866667pt;}
.v1{vertical-align:57.600000pt;}
.ls2{letter-spacing:-5.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.266667pt;}
.lsc{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.733333pt;}
.ls3{letter-spacing:2.666667pt;}
.ls4{letter-spacing:2.933333pt;}
.ls5{letter-spacing:3.466667pt;}
.ls8{letter-spacing:4.554667pt;}
.ls19{letter-spacing:4.933333pt;}
.lsb{letter-spacing:5.333333pt;}
.ls16{letter-spacing:9.098667pt;}
.ls10{letter-spacing:9.866667pt;}
.ls17{letter-spacing:10.266667pt;}
.ls1{letter-spacing:10.666667pt;}
.ls14{letter-spacing:12.066667pt;}
.ls12{letter-spacing:12.333333pt;}
.lsa{letter-spacing:13.333333pt;}
.ls11{letter-spacing:13.933333pt;}
.lsf{letter-spacing:14.400000pt;}
.lse{letter-spacing:15.133333pt;}
.ls18{letter-spacing:16.016000pt;}
.ls13{letter-spacing:16.066667pt;}
.ls7{letter-spacing:18.682667pt;}
.ls9{letter-spacing:21.277333pt;}
.ls6{letter-spacing:34.266667pt;}
.ls1a{letter-spacing:195.754667pt;}
.ls1b{letter-spacing:623.424000pt;}
.ws10{word-spacing:-47.434667pt;}
.ws1{word-spacing:-25.208000pt;}
.ws3{word-spacing:-18.733333pt;}
.ws0{word-spacing:-17.050667pt;}
.ws17{word-spacing:-14.541333pt;}
.ws5{word-spacing:-14.085333pt;}
.wsb{word-spacing:-13.640533pt;}
.ws12{word-spacing:-9.562667pt;}
.wsc{word-spacing:-9.333333pt;}
.ws1a{word-spacing:-9.266667pt;}
.ws18{word-spacing:-8.866667pt;}
.ws11{word-spacing:-8.466667pt;}
.ws19{word-spacing:-7.800000pt;}
.ws16{word-spacing:-7.400000pt;}
.ws1b{word-spacing:-7.104000pt;}
.ws4{word-spacing:-5.949333pt;}
.ws15{word-spacing:-4.200000pt;}
.ws14{word-spacing:-4.120000pt;}
.ws13{word-spacing:-3.607467pt;}
.ws2{word-spacing:-3.594667pt;}
.ws8{word-spacing:-3.195733pt;}
.ws9{word-spacing:-2.030933pt;}
.wsa{word-spacing:-0.328533pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.229333pt;}
.wsd{word-spacing:0.290133pt;}
.wse{word-spacing:2.816000pt;}
.wsf{word-spacing:8.586667pt;}
.ws1c{word-spacing:216.546667pt;}
._4e{margin-left:-44.296000pt;}
._11{margin-left:-32.901333pt;}
._4c{margin-left:-29.813333pt;}
._12{margin-left:-27.066667pt;}
._48{margin-left:-24.786667pt;}
._47{margin-left:-23.109333pt;}
._3d{margin-left:-21.568000pt;}
._31{margin-left:-19.432000pt;}
._3{margin-left:-17.936000pt;}
._4{margin-left:-16.568000pt;}
._21{margin-left:-15.237333pt;}
._1d{margin-left:-13.738667pt;}
._22{margin-left:-11.754667pt;}
._49{margin-left:-10.525333pt;}
._1e{margin-left:-9.568000pt;}
._2{margin-left:-7.973333pt;}
._1{margin-left:-6.501333pt;}
._0{margin-left:-5.520000pt;}
._23{margin-left:-3.949333pt;}
._25{margin-left:-3.000000pt;}
._20{margin-left:-1.976000pt;}
._e{margin-left:-1.056000pt;}
._10{width:1.344000pt;}
._13{width:2.389333pt;}
._1c{width:3.517333pt;}
._14{width:4.421333pt;}
._1b{width:5.869333pt;}
._a{width:6.949333pt;}
._24{width:8.690667pt;}
._d{width:9.984000pt;}
._8{width:10.917333pt;}
._5{width:12.000000pt;}
._9{width:13.616000pt;}
._c{width:14.904000pt;}
._2c{width:15.866667pt;}
._1f{width:17.178667pt;}
._b{width:18.096000pt;}
._15{width:19.749333pt;}
._16{width:20.976000pt;}
._18{width:22.541333pt;}
._6{width:23.520000pt;}
._f{width:24.960000pt;}
._32{width:25.874667pt;}
._3f{width:26.818667pt;}
._17{width:27.722667pt;}
._1a{width:28.949333pt;}
._2d{width:29.944000pt;}
._26{width:30.973333pt;}
._2a{width:32.328000pt;}
._19{width:33.978667pt;}
._3a{width:35.592000pt;}
._27{width:36.738667pt;}
._37{width:38.285333pt;}
._2b{width:41.546667pt;}
._40{width:42.730667pt;}
._38{width:49.674667pt;}
._4a{width:51.176000pt;}
._33{width:55.216000pt;}
._2f{width:56.840000pt;}
._30{width:58.824000pt;}
._3b{width:59.800000pt;}
._39{width:61.666667pt;}
._34{width:62.749333pt;}
._4b{width:63.954667pt;}
._35{width:64.848000pt;}
._29{width:66.050667pt;}
._3c{width:86.029333pt;}
._4d{width:104.266667pt;}
._44{width:108.592000pt;}
._43{width:129.944000pt;}
._45{width:135.464000pt;}
._3e{width:138.421333pt;}
._46{width:167.501333pt;}
._36{width:169.328000pt;}
._2e{width:174.272000pt;}
._42{width:307.856000pt;}
._41{width:336.984000pt;}
._28{width:502.269333pt;}
._7{width:507.498667pt;}
.fs9{font-size:17.066667pt;}
.fs5{font-size:21.333333pt;}
.fs12{font-size:26.666667pt;}
.fs7{font-size:29.866667pt;}
.fs10{font-size:32.000000pt;}
.fse{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsc{font-size:40.533333pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:49.066667pt;}
.fs1{font-size:50.666667pt;}
.fsf{font-size:53.333333pt;}
.fs0{font-size:61.333333pt;}
.fs3{font-size:66.666667pt;}
.fs11{font-size:69.333333pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fsb{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y1a1{bottom:2.293333pt;}
.y13{bottom:10.960000pt;}
.y1a0{bottom:13.760000pt;}
.y12{bottom:31.093333pt;}
.y11{bottom:67.493333pt;}
.y19f{bottom:91.893333pt;}
.y185{bottom:96.293333pt;}
.yd7{bottom:97.360000pt;}
.y167{bottom:99.493333pt;}
.y112{bottom:99.893333pt;}
.y3a{bottom:100.160000pt;}
.y9a{bottom:102.426667pt;}
.y149{bottom:104.293333pt;}
.yb9{bottom:106.293333pt;}
.yf6{bottom:107.493333pt;}
.y12d{bottom:108.160000pt;}
.y79{bottom:109.760000pt;}
.y184{bottom:114.560000pt;}
.yd6{bottom:115.893333pt;}
.y111{bottom:117.493333pt;}
.y166{bottom:117.760000pt;}
.y39{bottom:118.693333pt;}
.y99{bottom:120.960000pt;}
.y148{bottom:121.893333pt;}
.yb8{bottom:124.560000pt;}
.yf5{bottom:126.160000pt;}
.y12c{bottom:127.093333pt;}
.y183{bottom:131.893333pt;}
.y78{bottom:132.160000pt;}
.y10{bottom:132.826667pt;}
.y1d{bottom:133.093333pt;}
.yd5{bottom:133.760000pt;}
.y110{bottom:135.360000pt;}
.y165{bottom:136.026667pt;}
.y59{bottom:136.693333pt;}
.y38{bottom:136.960000pt;}
.y98{bottom:138.960000pt;}
.yf4{bottom:139.493333pt;}
.yb7{bottom:140.160000pt;}
.y147{bottom:140.560000pt;}
.y77{bottom:150.160000pt;}
.y182{bottom:150.693333pt;}
.yd4{bottom:152.026667pt;}
.y10f{bottom:153.360000pt;}
.y58{bottom:154.293333pt;}
.y37{bottom:154.560000pt;}
.y97{bottom:157.093333pt;}
.y146{bottom:159.093333pt;}
.yb6{bottom:160.293333pt;}
.yf3{bottom:161.360000pt;}
.y12b{bottom:161.893333pt;}
.y76{bottom:168.026667pt;}
.y181{bottom:168.293333pt;}
.yd3{bottom:170.293333pt;}
.y164{bottom:171.493333pt;}
.y10e{bottom:171.893333pt;}
.y36{bottom:172.160000pt;}
.y57{bottom:172.826667pt;}
.y96{bottom:174.693333pt;}
.y145{bottom:176.026667pt;}
.yb5{bottom:177.893333pt;}
.yf2{bottom:178.960000pt;}
.y12a{bottom:179.493333pt;}
.y75{bottom:185.360000pt;}
.y180{bottom:186.293333pt;}
.yd2{bottom:188.160000pt;}
.y163{bottom:189.493333pt;}
.y10d{bottom:189.760000pt;}
.y56{bottom:190.426667pt;}
.y35{bottom:190.693333pt;}
.y95{bottom:193.360000pt;}
.yb4{bottom:196.160000pt;}
.y144{bottom:196.826667pt;}
.yf1{bottom:197.093333pt;}
.y129{bottom:197.493333pt;}
.y74{bottom:203.893333pt;}
.y17f{bottom:204.160000pt;}
.y34{bottom:206.160000pt;}
.y162{bottom:207.360000pt;}
.y10c{bottom:207.760000pt;}
.y55{bottom:208.693333pt;}
.y94{bottom:212.160000pt;}
.y143{bottom:213.093333pt;}
.yb3{bottom:213.760000pt;}
.yf0{bottom:215.093333pt;}
.y128{bottom:216.293333pt;}
.y73{bottom:221.760000pt;}
.y17e{bottom:222.160000pt;}
.y161{bottom:224.026667pt;}
.yd1{bottom:224.693333pt;}
.y10b{bottom:225.626667pt;}
.y33{bottom:225.893333pt;}
.y54{bottom:226.560000pt;}
.y93{bottom:229.760000pt;}
.y142{bottom:230.426667pt;}
.yb2{bottom:231.760000pt;}
.yef{bottom:233.360000pt;}
.y127{bottom:233.626667pt;}
.y72{bottom:240.026667pt;}
.y17d{bottom:240.293333pt;}
.yd0{bottom:242.293333pt;}
.y160{bottom:242.960000pt;}
.y32{bottom:243.893333pt;}
.y53{bottom:244.560000pt;}
.y10a{bottom:244.826667pt;}
.y92{bottom:247.760000pt;}
.yb1{bottom:248.960000pt;}
.yee{bottom:250.293333pt;}
.y141{bottom:250.560000pt;}
.y126{bottom:251.226667pt;}
.y71{bottom:257.626667pt;}
.y17c{bottom:257.893333pt;}
.ycf{bottom:260.560000pt;}
.y15f{bottom:260.826667pt;}
.y31{bottom:261.493333pt;}
.y109{bottom:262.160000pt;}
.y52{bottom:262.693333pt;}
.y91{bottom:266.293333pt;}
.yb0{bottom:267.493333pt;}
.yc{bottom:268.560000pt;}
.yed{bottom:268.826667pt;}
.y125{bottom:269.493333pt;}
.y70{bottom:275.226667pt;}
.y17b{bottom:276.160000pt;}
.yf{bottom:278.160000pt;}
.yce{bottom:278.426667pt;}
.y15e{bottom:279.093333pt;}
.y30{bottom:279.360000pt;}
.y51{bottom:280.026667pt;}
.y90{bottom:284.560000pt;}
.yaf{bottom:285.093333pt;}
.y140{bottom:285.493333pt;}
.yec{bottom:286.693333pt;}
.y124{bottom:287.093333pt;}
.y19d{bottom:290.960000pt;}
.y6f{bottom:294.160000pt;}
.ycd{bottom:296.293333pt;}
.y15d{bottom:296.560000pt;}
.y2f{bottom:297.360000pt;}
.y19c{bottom:297.626667pt;}
.y50{bottom:298.293333pt;}
.y8f{bottom:302.160000pt;}
.y13f{bottom:303.093333pt;}
.yae{bottom:303.360000pt;}
.yeb{bottom:304.293333pt;}
.y123{bottom:304.960000pt;}
.y6e{bottom:309.760000pt;}
.y17a{bottom:312.026667pt;}
.ye{bottom:314.293333pt;}
.y15c{bottom:314.560000pt;}
.ycc{bottom:314.960000pt;}
.y2e{bottom:315.493333pt;}
.y4f{bottom:316.160000pt;}
.y8e{bottom:320.693333pt;}
.yad{bottom:321.360000pt;}
.y13e{bottom:321.626667pt;}
.yea{bottom:322.293333pt;}
.y122{bottom:323.493333pt;}
.y19b{bottom:325.760000pt;}
.yd{bottom:326.160000pt;}
.y6d{bottom:328.960000pt;}
.y19e{bottom:329.360000pt;}
.y179{bottom:329.893333pt;}
.y2d{bottom:330.293333pt;}
.y15b{bottom:332.560000pt;}
.ycb{bottom:332.826667pt;}
.y4e{bottom:334.160000pt;}
.y108{bottom:334.693333pt;}
.ye9{bottom:337.626667pt;}
.y9{bottom:337.893333pt;}
.y8d{bottom:338.560000pt;}
.yac{bottom:338.960000pt;}
.y13d{bottom:339.893333pt;}
.y121{bottom:341.093333pt;}
.ya{bottom:346.960000pt;}
.y6c{bottom:347.226667pt;}
.y178{bottom:349.093333pt;}
.y15a{bottom:350.426667pt;}
.y2c{bottom:350.693333pt;}
.yca{bottom:351.093333pt;}
.y4d{bottom:352.026667pt;}
.y107{bottom:352.693333pt;}
.y8c{bottom:356.826667pt;}
.y13c{bottom:357.760000pt;}
.ye8{bottom:358.160000pt;}
.y120{bottom:359.360000pt;}
.yb{bottom:362.960000pt;}
.y6b{bottom:364.826667pt;}
.y177{bottom:366.160000pt;}
.y159{bottom:368.293333pt;}
.y2b{bottom:368.960000pt;}
.y4c{bottom:370.560000pt;}
.y106{bottom:371.226667pt;}
.yab{bottom:375.093333pt;}
.y8b{bottom:375.360000pt;}
.y11f{bottom:375.760000pt;}
.ye7{bottom:376.026667pt;}
.y13b{bottom:376.960000pt;}
.y6a{bottom:383.093333pt;}
.y176{bottom:384.026667pt;}
.y158{bottom:386.293333pt;}
.y2a{bottom:386.560000pt;}
.yc9{bottom:387.226667pt;}
.y4b{bottom:388.160000pt;}
.y105{bottom:388.560000pt;}
.y8a{bottom:392.960000pt;}
.y13a{bottom:393.893333pt;}
.ye6{bottom:394.293333pt;}
.y11e{bottom:395.226667pt;}
.y19a{bottom:397.760000pt;}
.y69{bottom:400.693333pt;}
.y175{bottom:402.560000pt;}
.y157{bottom:403.493333pt;}
.y29{bottom:404.560000pt;}
.yc8{bottom:405.093333pt;}
.y4a{bottom:406.160000pt;}
.y104{bottom:407.093333pt;}
.yaa{bottom:410.960000pt;}
.y89{bottom:411.226667pt;}
.ye5{bottom:412.160000pt;}
.y11d{bottom:413.760000pt;}
.y194{bottom:417.360000pt;}
.y68{bottom:418.560000pt;}
.y174{bottom:420.160000pt;}
.y156{bottom:422.160000pt;}
.y28{bottom:422.693333pt;}
.yc7{bottom:423.360000pt;}
.y49{bottom:424.293333pt;}
.y103{bottom:425.360000pt;}
.ya9{bottom:426.960000pt;}
.ye4{bottom:430.160000pt;}
.y88{bottom:431.093333pt;}
.y11c{bottom:431.760000pt;}
.y193{bottom:433.893333pt;}
.y67{bottom:436.560000pt;}
.y199{bottom:437.760000pt;}
.y27{bottom:439.093333pt;}
.y155{bottom:439.760000pt;}
.y173{bottom:440.026667pt;}
.yc6{bottom:441.360000pt;}
.y48{bottom:442.293333pt;}
.y102{bottom:443.493333pt;}
.ye3{bottom:443.893333pt;}
.ya8{bottom:446.426667pt;}
.y87{bottom:447.760000pt;}
.y11b{bottom:448.960000pt;}
.y192{bottom:451.893333pt;}
.y66{bottom:456.026667pt;}
.y172{bottom:456.693333pt;}
.y154{bottom:457.626667pt;}
.y26{bottom:458.293333pt;}
.yc5{bottom:459.893333pt;}
.y47{bottom:460.160000pt;}
.y101{bottom:461.760000pt;}
.ya7{bottom:464.960000pt;}
.ye2{bottom:465.493333pt;}
.y86{bottom:465.893333pt;}
.y139{bottom:466.293333pt;}
.y11a{bottom:466.960000pt;}
.y191{bottom:469.760000pt;}
.y65{bottom:470.426667pt;}
.y25{bottom:474.560000pt;}
.y153{bottom:475.493333pt;}
.y198{bottom:475.893333pt;}
.yc4{bottom:477.760000pt;}
.y46{bottom:478.160000pt;}
.y100{bottom:479.760000pt;}
.ya6{bottom:482.560000pt;}
.ye1{bottom:483.493333pt;}
.y85{bottom:484.160000pt;}
.y119{bottom:484.560000pt;}
.y138{bottom:485.093333pt;}
.y190{bottom:488.026667pt;}
.y8{bottom:490.293333pt;}
.y171{bottom:493.093333pt;}
.y24{bottom:493.493333pt;}
.y152{bottom:493.760000pt;}
.yc3{bottom:495.760000pt;}
.y45{bottom:496.026667pt;}
.yff{bottom:497.893333pt;}
.y197{bottom:498.960000pt;}
.ya5{bottom:499.493333pt;}
.ye0{bottom:501.493333pt;}
.y84{bottom:502.160000pt;}
.y137{bottom:502.426667pt;}
.y118{bottom:503.093333pt;}
.y18f{bottom:505.626667pt;}
.y64{bottom:508.560000pt;}
.y151{bottom:509.493333pt;}
.y170{bottom:511.093333pt;}
.y23{bottom:511.360000pt;}
.yc2{bottom:513.893333pt;}
.y44{bottom:514.026667pt;}
.yfe{bottom:515.493333pt;}
.ya4{bottom:518.426667pt;}
.y83{bottom:519.360000pt;}
.y136{bottom:520.693333pt;}
.y117{bottom:521.626667pt;}
.y196{bottom:523.226667pt;}
.y1c{bottom:524.560000pt;}
.y7{bottom:525.493333pt;}
.y63{bottom:526.426667pt;}
.y22{bottom:529.360000pt;}
.y43{bottom:531.893333pt;}
.yfd{bottom:534.160000pt;}
.ya3{bottom:536.026667pt;}
.ydf{bottom:537.893333pt;}
.y116{bottom:538.560000pt;}
.y135{bottom:538.960000pt;}
.y82{bottom:539.893333pt;}
.y18e{bottom:543.093333pt;}
.y62{bottom:544.293333pt;}
.y16f{bottom:545.626667pt;}
.y21{bottom:547.493333pt;}
.y42{bottom:549.760000pt;}
.yc1{bottom:550.026667pt;}
.yfc{bottom:552.293333pt;}
.ya2{bottom:554.293333pt;}
.y81{bottom:556.160000pt;}
.y134{bottom:556.826667pt;}
.y115{bottom:557.493333pt;}
.y18d{bottom:559.760000pt;}
.y61{bottom:562.560000pt;}
.y150{bottom:565.093333pt;}
.y16e{bottom:566.160000pt;}
.y41{bottom:567.760000pt;}
.yc0{bottom:568.293333pt;}
.yfb{bottom:570.293333pt;}
.y6{bottom:571.226667pt;}
.ya1{bottom:571.893333pt;}
.y18{bottom:573.493333pt;}
.yde{bottom:574.160000pt;}
.y80{bottom:574.693333pt;}
.y133{bottom:575.093333pt;}
.y60{bottom:578.293333pt;}
.y18c{bottom:579.226667pt;}
.y14f{bottom:583.093333pt;}
.y16d{bottom:583.360000pt;}
.y40{bottom:585.360000pt;}
.ybf{bottom:586.560000pt;}
.yfa{bottom:588.560000pt;}
.ya0{bottom:590.160000pt;}
.y5{bottom:590.426667pt;}
.ydd{bottom:591.760000pt;}
.y7f{bottom:592.293333pt;}
.y132{bottom:594.293333pt;}
.y18b{bottom:595.893333pt;}
.y17{bottom:597.093333pt;}
.y5f{bottom:598.160000pt;}
.y14e{bottom:600.960000pt;}
.y16c{bottom:601.626667pt;}
.y3f{bottom:603.893333pt;}
.ybe{bottom:604.160000pt;}
.yf9{bottom:606.426667pt;}
.y1b{bottom:606.693333pt;}
.y4{bottom:607.093333pt;}
.y9f{bottom:608.026667pt;}
.ydc{bottom:609.626667pt;}
.y7e{bottom:610.560000pt;}
.y16{bottom:610.960000pt;}
.y131{bottom:611.493333pt;}
.y18a{bottom:613.760000pt;}
.y5e{bottom:616.026667pt;}
.y20{bottom:617.893333pt;}
.y14d{bottom:618.960000pt;}
.y16b{bottom:619.493333pt;}
.y15{bottom:620.560000pt;}
.y3e{bottom:621.493333pt;}
.ybd{bottom:622.693333pt;}
.yf8{bottom:624.693333pt;}
.y9e{bottom:625.893333pt;}
.ydb{bottom:628.160000pt;}
.y7d{bottom:628.560000pt;}
.y130{bottom:629.493333pt;}
.y189{bottom:631.360000pt;}
.y5d{bottom:633.626667pt;}
.y14c{bottom:636.560000pt;}
.y16a{bottom:637.893333pt;}
.y3d{bottom:639.093333pt;}
.ybc{bottom:639.760000pt;}
.y1f{bottom:640.960000pt;}
.yda{bottom:642.560000pt;}
.y9d{bottom:643.493333pt;}
.y114{bottom:646.693333pt;}
.y7c{bottom:647.093333pt;}
.y12f{bottom:647.760000pt;}
.y2{bottom:648.693333pt;}
.y188{bottom:649.893333pt;}
.y5c{bottom:652.160000pt;}
.y14b{bottom:654.426667pt;}
.y169{bottom:655.760000pt;}
.y3c{bottom:657.360000pt;}
.ybb{bottom:658.293333pt;}
.y14{bottom:660.826667pt;}
.y9c{bottom:661.760000pt;}
.y1e{bottom:662.426667pt;}
.yd9{bottom:664.026667pt;}
.y113{bottom:664.293333pt;}
.y7b{bottom:664.693333pt;}
.y1{bottom:665.360000pt;}
.y5b{bottom:667.493333pt;}
.y187{bottom:667.893333pt;}
.y14a{bottom:672.293333pt;}
.y168{bottom:673.626667pt;}
.y3b{bottom:675.226667pt;}
.yba{bottom:676.560000pt;}
.yf7{bottom:678.693333pt;}
.y9b{bottom:679.760000pt;}
.yd8{bottom:681.893333pt;}
.y7a{bottom:682.560000pt;}
.y12e{bottom:683.893333pt;}
.y186{bottom:685.493333pt;}
.y5a{bottom:687.360000pt;}
.y3{bottom:691.493333pt;}
.y19{bottom:692.160000pt;}
.y1a{bottom:723.493333pt;}
.y195{bottom:725.493333pt;}
.h8{height:16.000000pt;}
.h15{height:17.773438pt;}
.h13{height:20.864583pt;}
.h10{height:24.000000pt;}
.h12{height:24.252344pt;}
.ha{height:28.000000pt;}
.h6{height:32.000000pt;}
.hf{height:40.000000pt;}
.h7{height:45.430990pt;}
.hb{height:47.988542pt;}
.h3{height:48.365885pt;}
.h9{height:49.553385pt;}
.h14{height:50.000000pt;}
.h2{height:59.985677pt;}
.hd{height:80.000000pt;}
.h11{height:84.610938pt;}
.h5{height:91.640625pt;}
.hc{height:113.852344pt;}
.h4{height:117.585677pt;}
.he{height:119.971354pt;}
.h1{height:741.333333pt;}
.h0{height:741.466667pt;}
.w5{width:513.333333pt;}
.w4{width:513.600000pt;}
.w2{width:521.933333pt;}
.w3{width:522.000000pt;}
.w8{width:535.066667pt;}
.w9{width:535.333333pt;}
.w6{width:543.666667pt;}
.w7{width:544.000000pt;}
.w0{width:554.533333pt;}
.w1{width:554.666667pt;}
.x0{left:0.000000pt;}
.x42{left:59.600000pt;}
.x43{left:61.066667pt;}
.x3{left:62.400000pt;}
.x1b{left:63.333333pt;}
.x34{left:64.666667pt;}
.x2a{left:66.266667pt;}
.x2b{left:67.200000pt;}
.x2c{left:68.400000pt;}
.x2d{left:69.733333pt;}
.x2e{left:71.066667pt;}
.x1c{left:72.000000pt;}
.x31{left:73.333333pt;}
.x12{left:74.266667pt;}
.x1e{left:75.200000pt;}
.x14{left:76.133333pt;}
.x32{left:77.200000pt;}
.x19{left:78.354667pt;}
.x21{left:79.333333pt;}
.x22{left:80.666667pt;}
.x24{left:82.266667pt;}
.x25{left:83.200000pt;}
.x26{left:84.133333pt;}
.x29{left:85.066667pt;}
.x28{left:86.400000pt;}
.x35{left:87.333333pt;}
.x36{left:88.666667pt;}
.x2f{left:89.600000pt;}
.x37{left:90.533333pt;}
.x30{left:91.600000pt;}
.x3e{left:92.533333pt;}
.x1d{left:93.466667pt;}
.x3c{left:94.400000pt;}
.x3f{left:95.333333pt;}
.x38{left:96.400000pt;}
.x3b{left:97.600000pt;}
.x3a{left:98.533333pt;}
.x4{left:99.466667pt;}
.x10{left:101.466667pt;}
.x3d{left:102.400000pt;}
.x39{left:104.266667pt;}
.x1f{left:105.200000pt;}
.x20{left:106.266667pt;}
.x15{left:107.866667pt;}
.x41{left:109.466667pt;}
.x23{left:110.666667pt;}
.x33{left:112.000000pt;}
.x40{left:112.933333pt;}
.x27{left:114.933333pt;}
.x8{left:117.066667pt;}
.x48{left:118.800000pt;}
.x13{left:121.600000pt;}
.x46{left:125.733333pt;}
.x45{left:127.066667pt;}
.x44{left:128.000000pt;}
.x18{left:131.144000pt;}
.x16{left:144.933333pt;}
.x1{left:148.800000pt;}
.x2{left:151.066667pt;}
.x17{left:163.733333pt;}
.x6{left:165.466667pt;}
.x7{left:205.466667pt;}
.x49{left:240.400000pt;}
.x11{left:282.800000pt;}
.x5{left:287.600000pt;}
.x4b{left:303.733333pt;}
.x9{left:339.866667pt;}
.x4a{left:345.600000pt;}
.xa{left:349.733333pt;}
.xc{left:350.666667pt;}
.xb{left:358.400000pt;}
.x4d{left:375.733333pt;}
.x4c{left:379.866667pt;}
.x4f{left:388.533333pt;}
.x4e{left:425.333333pt;}
.xf{left:434.266667pt;}
.xe{left:444.400000pt;}
.xd{left:445.733333pt;}
.x50{left:448.400000pt;}
.x1a{left:498.800000pt;}
.x47{left:513.600000pt;}
}




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