
    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_0ff776a483ceee35f97350a5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_44f59f8ed67549b88b4b236e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_a47bfaf7f3168b10ea52a996.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_caeedb33d95971b6fab73e71.woff')format("woff");}.ff5{font-family:ff5;line-height:0.984863;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_2a7e792664828c1bc2c17f91.woff')format("woff");}.ff6{font-family:ff6;line-height:0.984863;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_568008705eeae603303db64e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_cf2f56acf42cd31824614853.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c766dfd0fd6cd079cdb36a1b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_8ca3f73e3dcf1a8eb70006b4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_c855c63700a88f11216cdea2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3c726eca102ae9501ec5afea.woff')format("woff");}.ffc{font-family:ffc;line-height:1.060059;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_772020b8f256c88420f377a7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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_66b1e3a25082cdca9d99df79.woff')format("woff");}.ffe{font-family:ffe;line-height:0.977539;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_26f0a0b7d195402664a8eea9.woff')format("woff");}.fff{font-family:fff;line-height:0.977539;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.688477;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:ff11;src:url('chunks/assets/font_6d3d1cd3b4fd0b862cabed0b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.435059;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:ff12;src:url('chunks/assets/font_c781b0bc8a2e4faf06a57bac.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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:ff13;src:url('chunks/assets/font_c71a5d4bd1f5a3d1833b2dd8.woff')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d016f6f3802af9daa1f46a2a.woff')format("woff");}.ff14{font-family:ff14;line-height:0.934082;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:ff15;src:url('chunks/assets/font_e29586028349e0f42b1a266c.woff')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bce36c6aef5274ce28a097f5.woff')format("woff");}.ff16{font-family:ff16;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.858000px;}
.ls5{letter-spacing:-0.414000px;}
.ls11{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.138000px;}
.ls4{letter-spacing:-0.034560px;}
.lsd{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.163200px;}
.ls2{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.486000px;}
.ls0{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.582000px;}
.lsf{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.440000px;}
.ls7{letter-spacing:33.984000px;}
.ls8{letter-spacing:54.840000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.000000px;}
.ws13{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.532800px;}
.wsb{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.wsa{word-spacing:-12.294960px;}
.wse{word-spacing:-12.204000px;}
.ws3{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.876160px;}
.ws12{word-spacing:-11.574960px;}
.ws5{word-spacing:-11.124000px;}
.ws6{word-spacing:-11.070000px;}
.wsc{word-spacing:-10.854960px;}
.ws4{word-spacing:-10.710000px;}
.ws0{word-spacing:-0.031680px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:38.814000px;}
.ws11{word-spacing:52.434000px;}
.wsf{word-spacing:52.494000px;}
.ws10{word-spacing:72.954000px;}
._2a{margin-left:-3.292080px;}
._14{margin-left:-2.283360px;}
._0{margin-left:-1.134000px;}
._4{width:1.053360px;}
._9{width:2.330640px;}
._17{width:3.358080px;}
._c{width:4.464000px;}
._d{width:6.062640px;}
._7{width:7.992000px;}
._8{width:9.038640px;}
._5{width:10.080000px;}
._6{width:11.664000px;}
._a{width:13.032000px;}
._b{width:14.048640px;}
._12{width:15.912000px;}
._13{width:16.920000px;}
._1d{width:19.296000px;}
._1e{width:20.484000px;}
._15{width:21.600000px;}
._16{width:22.968000px;}
._18{width:24.768000px;}
._e{width:26.280000px;}
._f{width:27.576000px;}
._1c{width:28.656000px;}
._29{width:29.858640px;}
._2{width:30.870000px;}
._10{width:32.688000px;}
._11{width:33.840000px;}
._27{width:34.855920px;}
._19{width:35.928000px;}
._1f{width:37.278000px;}
._28{width:38.610000px;}
._2b{width:40.896000px;}
._2c{width:41.918640px;}
._25{width:43.920000px;}
._26{width:45.170640px;}
._1a{width:47.520000px;}
._1b{width:48.566640px;}
._20{width:52.128000px;}
._21{width:53.216640px;}
._23{width:85.374000px;}
._24{width:146.298000px;}
._22{width:264.690000px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fca{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc9{color:rgb(242,242,242);}
.fc8{color:rgb(217,217,217);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y31{bottom:0.150000px;}
.y2f{bottom:1.050000px;}
.y39{bottom:1.260000px;}
.y86{bottom:3.420000px;}
.yc3{bottom:3.600000px;}
.y3a{bottom:3.960000px;}
.y3{bottom:4.500000px;}
.y68{bottom:4.860000px;}
.y33{bottom:7.890000px;}
.y67{bottom:14.940000px;}
.y85{bottom:15.480000px;}
.yf1{bottom:17.670000px;}
.y3f{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y3b{bottom:35.280000px;}
.y1{bottom:42.660000px;}
.y35{bottom:43.380000px;}
.ye6{bottom:48.990000px;}
.y38{bottom:65.340000px;}
.ye5{bottom:70.530000px;}
.ye4{bottom:91.335000px;}
.ye3{bottom:107.715000px;}
.ye1{bottom:107.820000px;}
.y2d{bottom:116.640000px;}
.ydf{bottom:117.360000px;}
.yaa{bottom:120.060000px;}
.y128{bottom:123.120000px;}
.ye2{bottom:124.275000px;}
.yc2{bottom:128.880000px;}
.y66{bottom:130.860000px;}
.y84{bottom:131.760000px;}
.y12d{bottom:132.120000px;}
.ye7{bottom:134.670000px;}
.y2c{bottom:134.820000px;}
.y182{bottom:137.340000px;}
.yde{bottom:141.120000px;}
.ya9{bottom:143.820000px;}
.y127{bottom:147.060000px;}
.y150{bottom:150.120000px;}
.yc1{bottom:152.640000px;}
.y2b{bottom:153.000000px;}
.y65{bottom:154.800000px;}
.y83{bottom:155.520000px;}
.y114{bottom:156.060000px;}
.ye8{bottom:163.695000px;}
.y144{bottom:165.060000px;}
.ya8{bottom:167.580000px;}
.y181{bottom:170.280000px;}
.y126{bottom:170.820000px;}
.y2a{bottom:171.180000px;}
.ydd{bottom:173.880000px;}
.y14f{bottom:174.060000px;}
.yc0{bottom:176.400000px;}
.y82{bottom:179.460000px;}
.y113{bottom:179.820000px;}
.y170{bottom:185.040000px;}
.y143{bottom:188.820000px;}
.ya7{bottom:191.340000px;}
.y29{bottom:191.520000px;}
.ye9{bottom:192.705000px;}
.y64{bottom:193.500000px;}
.y180{bottom:194.040000px;}
.y125{bottom:194.580000px;}
.ydc{bottom:197.460000px;}
.y14e{bottom:197.820000px;}
.y81{bottom:203.220000px;}
.y112{bottom:203.580000px;}
.y16f{bottom:208.830000px;}
.y142{bottom:212.610000px;}
.y28{bottom:215.310000px;}
.y63{bottom:217.290000px;}
.y14d{bottom:221.610000px;}
.yea{bottom:221.760000px;}
.ydb{bottom:226.290000px;}
.ye0{bottom:226.440000px;}
.y17f{bottom:226.830000px;}
.y80{bottom:227.010000px;}
.y111{bottom:227.370000px;}
.ya6{bottom:230.250000px;}
.y12c{bottom:236.370000px;}
.ybf{bottom:239.070000px;}
.y27{bottom:240.150000px;}
.y62{bottom:241.230000px;}
.y16e{bottom:241.590000px;}
.y14c{bottom:245.370000px;}
.y17e{bottom:250.590000px;}
.yd4{bottom:250.770000px;}
.y110{bottom:251.310000px;}
.ya5{bottom:254.010000px;}
.y124{bottom:260.310000px;}
.ybe{bottom:262.830000px;}
.y61{bottom:264.990000px;}
.y7f{bottom:265.530000px;}
.y26{bottom:267.330000px;}
.y146{bottom:269.310000px;}
.y16d{bottom:274.530000px;}
.ya4{bottom:277.770000px;}
.yeb{bottom:279.795000px;}
.y17d{bottom:283.530000px;}
.y10f{bottom:284.070000px;}
.ybd{bottom:286.590000px;}
.y60{bottom:288.750000px;}
.yd3{bottom:289.650000px;}
.y25{bottom:291.270000px;}
.y145{bottom:293.070000px;}
.ya3{bottom:301.710000px;}
.y7e{bottom:304.590000px;}
.y16c{bottom:307.290000px;}
.y10e{bottom:307.830000px;}
.yec{bottom:308.805000px;}
.ybc{bottom:310.530000px;}
.y5f{bottom:312.510000px;}
.yd2{bottom:313.410000px;}
.y24{bottom:315.030000px;}
.y141{bottom:316.830000px;}
.ya2{bottom:325.470000px;}
.y7d{bottom:328.530000px;}
.y16b{bottom:331.050000px;}
.y10d{bottom:331.590000px;}
.y5e{bottom:336.450000px;}
.yd1{bottom:337.350000px;}
.yed{bottom:337.860000px;}
.y23{bottom:338.790000px;}
.y17c{bottom:340.050000px;}
.y140{bottom:340.590000px;}
.ya1{bottom:349.230000px;}
.y7c{bottom:352.290000px;}
.y10c{bottom:355.530000px;}
.y5d{bottom:360.210000px;}
.yd0{bottom:361.110000px;}
.y22{bottom:362.550000px;}
.y16a{bottom:363.810000px;}
.y13f{bottom:364.530000px;}
.yf0{bottom:365.790000px;}
.ya0{bottom:372.990000px;}
.y14b{bottom:373.530000px;}
.y7b{bottom:376.050000px;}
.y10b{bottom:379.290000px;}
.ycf{bottom:384.870000px;}
.y21{bottom:386.490000px;}
.y169{bottom:387.750000px;}
.y131{bottom:388.290000px;}
.y5c{bottom:396.210000px;}
.ybb{bottom:396.930000px;}
.y14a{bottom:397.290000px;}
.yef{bottom:397.470000px;}
.y7a{bottom:399.810000px;}
.y10a{bottom:403.050000px;}
.y20{bottom:410.250000px;}
.y9f{bottom:411.870000px;}
.y12b{bottom:412.050000px;}
.y5b{bottom:419.790000px;}
.y168{bottom:420.510000px;}
.yba{bottom:420.690000px;}
.y149{bottom:421.050000px;}
.y79{bottom:423.750000px;}
.yee{bottom:429.150000px;}
.y1f{bottom:434.010000px;}
.y9e{bottom:435.630000px;}
.y109{bottom:435.810000px;}
.y167{bottom:444.315000px;}
.yb9{bottom:444.495000px;}
.y148{bottom:444.855000px;}
.y5a{bottom:445.035000px;}
.y78{bottom:447.555000px;}
.y1e{bottom:457.815000px;}
.y9d{bottom:459.435000px;}
.y108{bottom:459.795000px;}
.yb8{bottom:468.255000px;}
.y147{bottom:468.795000px;}
.y59{bottom:470.055000px;}
.yce{bottom:471.315000px;}
.y166{bottom:477.075000px;}
.y1d{bottom:481.755000px;}
.y9c{bottom:483.375000px;}
.y107{bottom:483.555000px;}
.y77{bottom:486.255000px;}
.yb7{bottom:492.195000px;}
.y13e{bottom:492.555000px;}
.y58{bottom:493.815000px;}
.ycd{bottom:495.075000px;}
.y165{bottom:501.015000px;}
.y1c{bottom:505.515000px;}
.y9b{bottom:507.135000px;}
.y106{bottom:507.315000px;}
.y76{bottom:510.195000px;}
.yb6{bottom:515.955000px;}
.y13d{bottom:516.315000px;}
.ycc{bottom:519.015000px;}
.y164{bottom:524.775000px;}
.y1b{bottom:529.275000px;}
.y9a{bottom:530.895000px;}
.y105{bottom:531.075000px;}
.y57{bottom:533.955000px;}
.y130{bottom:540.075000px;}
.ycb{bottom:542.775000px;}
.y1a{bottom:553.035000px;}
.yb5{bottom:554.295000px;}
.y104{bottom:555.015000px;}
.y163{bottom:557.535000px;}
.y75{bottom:557.715000px;}
.y12a{bottom:564.015000px;}
.yca{bottom:566.535000px;}
.y99{bottom:569.775000px;}
.y56{bottom:572.655000px;}
.y19{bottom:576.975000px;}
.y103{bottom:578.775000px;}
.y162{bottom:581.295000px;}
.y74{bottom:581.475000px;}
.y129{bottom:587.775000px;}
.y17b{bottom:590.295000px;}
.y98{bottom:593.535000px;}
.y55{bottom:596.595000px;}
.y18{bottom:600.735000px;}
.y102{bottom:602.535000px;}
.y73{bottom:605.415000px;}
.y123{bottom:611.535000px;}
.y161{bottom:614.055000px;}
.y97{bottom:617.295000px;}
.y54{bottom:620.355000px;}
.y17a{bottom:623.055000px;}
.y17{bottom:624.495000px;}
.y101{bottom:626.295000px;}
.y72{bottom:629.175000px;}
.y122{bottom:635.295000px;}
.y160{bottom:637.995000px;}
.y96{bottom:641.055000px;}
.y53{bottom:644.115000px;}
.y13c{bottom:644.295000px;}
.y179{bottom:646.995000px;}
.y16{bottom:648.255000px;}
.yc9{bottom:652.935000px;}
.y100{bottom:658.695000px;}
.y121{bottom:659.055000px;}
.y15f{bottom:661.755000px;}
.y95{bottom:664.995000px;}
.y52{bottom:667.875000px;}
.y13b{bottom:668.055000px;}
.y178{bottom:670.755000px;}
.yc8{bottom:676.725000px;}
.y15{bottom:681.585000px;}
.y120{bottom:683.025000px;}
.y15e{bottom:685.545000px;}
.y94{bottom:688.785000px;}
.y51{bottom:691.845000px;}
.yff{bottom:692.025000px;}
.yc7{bottom:700.665000px;}
.y177{bottom:703.545000px;}
.y14{bottom:705.885000px;}
.y11f{bottom:706.785000px;}
.y15d{bottom:709.305000px;}
.yda{bottom:712.365000px;}
.y93{bottom:712.545000px;}
.y50{bottom:715.605000px;}
.yfe{bottom:715.785000px;}
.y176{bottom:727.305000px;}
.y11e{bottom:730.545000px;}
.y13{bottom:732.165000px;}
.y92{bottom:736.305000px;}
.y4f{bottom:739.365000px;}
.yfd{bottom:739.545000px;}
.y15c{bottom:742.245000px;}
.yd9{bottom:751.425000px;}
.y11d{bottom:754.305000px;}
.y12{bottom:755.385000px;}
.yb4{bottom:760.245000px;}
.y4e{bottom:763.125000px;}
.yfc{bottom:763.305000px;}
.y15b{bottom:766.005000px;}
.y13a{bottom:772.305000px;}
.y91{bottom:774.825000px;}
.yd8{bottom:775.185000px;}
.y11c{bottom:778.245000px;}
.y11{bottom:778.425000px;}
.y175{bottom:784.005000px;}
.y71{bottom:787.065000px;}
.yfb{bottom:787.245000px;}
.y139{bottom:796.245000px;}
.y15a{bottom:798.765000px;}
.yb3{bottom:798.945000px;}
.y10{bottom:801.645000px;}
.y4d{bottom:802.005000px;}
.y70{bottom:810.825000px;}
.yfa{bottom:811.005000px;}
.y90{bottom:814.065000px;}
.y174{bottom:816.765000px;}
.y138{bottom:820.005000px;}
.y159{bottom:822.525000px;}
.yb2{bottom:822.705000px;}
.y4c{bottom:825.765000px;}
.yf{bottom:831.885000px;}
.yc6{bottom:834.585000px;}
.yf9{bottom:834.765000px;}
.y8f{bottom:837.825000px;}
.y173{bottom:840.525000px;}
.y137{bottom:843.765000px;}
.yb1{bottom:846.645000px;}
.y4b{bottom:849.525000px;}
.ye{bottom:850.245000px;}
.y158{bottom:855.465000px;}
.yc5{bottom:858.345000px;}
.yf8{bottom:858.525000px;}
.y8e{bottom:861.585000px;}
.y136{bottom:867.525000px;}
.yb0{bottom:870.405000px;}
.yd{bottom:872.565000px;}
.y4a{bottom:873.465000px;}
.y157{bottom:879.225000px;}
.y11b{bottom:882.465000px;}
.y8d{bottom:885.345000px;}
.yf7{bottom:891.465000px;}
.yc4{bottom:893.985000px;}
.yaf{bottom:894.165000px;}
.y49{bottom:897.225000px;}
.yc{bottom:904.965000px;}
.y11a{bottom:906.225000px;}
.y8c{bottom:909.285000px;}
.y156{bottom:912.030000px;}
.yf6{bottom:915.270000px;}
.yae{bottom:917.970000px;}
.y48{bottom:921.030000px;}
.y135{bottom:924.270000px;}
.y119{bottom:930.030000px;}
.y8b{bottom:933.090000px;}
.y155{bottom:935.790000px;}
.yb{bottom:937.410000px;}
.yf5{bottom:939.030000px;}
.yad{bottom:941.910000px;}
.y47{bottom:944.790000px;}
.y134{bottom:948.030000px;}
.y12f{bottom:953.790000px;}
.y8a{bottom:956.850000px;}
.ya{bottom:962.070000px;}
.yf4{bottom:962.790000px;}
.yac{bottom:965.670000px;}
.y6f{bottom:968.730000px;}
.y133{bottom:971.790000px;}
.y9{bottom:973.590000px;}
.y172{bottom:977.730000px;}
.y89{bottom:980.610000px;}
.y46{bottom:983.670000px;}
.y32{bottom:984.240000px;}
.y12e{bottom:986.370000px;}
.yf3{bottom:986.730000px;}
.y2e{bottom:991.080000px;}
.y6e{bottom:992.490000px;}
.y30{bottom:993.240000px;}
.y8{bottom:993.390000px;}
.y132{bottom:995.730000px;}
.y171{bottom:1001.490000px;}
.yab{bottom:1004.010000px;}
.y88{bottom:1004.370000px;}
.y45{bottom:1007.430000px;}
.y118{bottom:1010.490000px;}
.yf2{bottom:1019.490000px;}
.y154{bottom:1025.250000px;}
.y7{bottom:1027.590000px;}
.y6d{bottom:1028.130000px;}
.yd7{bottom:1028.310000px;}
.y44{bottom:1031.190000px;}
.y117{bottom:1034.250000px;}
.y87{bottom:1043.250000px;}
.y153{bottom:1049.010000px;}
.yd6{bottom:1052.070000px;}
.y43{bottom:1055.130000px;}
.y116{bottom:1058.010000px;}
.y6{bottom:1062.870000px;}
.y6c{bottom:1067.010000px;}
.yd5{bottom:1075.830000px;}
.y42{bottom:1078.890000px;}
.y115{bottom:1081.950000px;}
.y6b{bottom:1090.950000px;}
.y5{bottom:1101.030000px;}
.y41{bottom:1102.650000px;}
.y152{bottom:1105.710000px;}
.y6a{bottom:1114.710000px;}
.y151{bottom:1138.110000px;}
.y40{bottom:1138.290000px;}
.y69{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3e{bottom:1164.600000px;}
.y3d{bottom:1180.440000px;}
.y3c{bottom:1196.280000px;}
.y34{bottom:1207.800000px;}
.y37{bottom:1220.040000px;}
.y36{bottom:1237.320000px;}
.h14{height:13.500000px;}
.h12{height:14.400000px;}
.h22{height:18.000000px;}
.h20{height:18.180000px;}
.h18{height:20.479922px;}
.h16{height:21.240000px;}
.h1a{height:24.840000px;}
.h7{height:36.281250px;}
.h2{height:38.405391px;}
.h19{height:38.464805px;}
.h5{height:38.469727px;}
.h1c{height:40.843828px;}
.h6{height:42.573164px;}
.h13{height:43.057617px;}
.h21{height:45.509766px;}
.h11{height:45.720703px;}
.h1b{height:47.650430px;}
.h17{height:49.680000px;}
.hf{height:51.679688px;}
.h15{height:52.817344px;}
.h4{height:53.709961px;}
.ha{height:54.421875px;}
.hc{height:65.534063px;}
.h3{height:65.884219px;}
.hb{height:67.824844px;}
.h25{height:70.628906px;}
.he{height:70.664062px;}
.hd{height:70.995234px;}
.h10{height:71.324297px;}
.h1e{height:72.562500px;}
.h1f{height:74.004654px;}
.h1d{height:74.953125px;}
.h24{height:80.516953px;}
.h8{height:80.703984px;}
.h9{height:81.078047px;}
.h23{height:466.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:76.140000px;}
.wb{width:77.400000px;}
.w7{width:78.480000px;}
.wa{width:83.160000px;}
.w9{width:83.520000px;}
.w12{width:84.060000px;}
.wf{width:85.140000px;}
.w11{width:85.860000px;}
.w13{width:86.940000px;}
.w10{width:87.840000px;}
.wd{width:88.740000px;}
.w5{width:90.720000px;}
.we{width:94.320000px;}
.w2{width:144.720000px;}
.w3{width:193.680000px;}
.w4{width:209.520000px;}
.w6{width:626.400000px;}
.wc{width:676.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:10.950000px;}
.xf{left:18.540000px;}
.xe{left:30.315000px;}
.x22{left:40.932000px;}
.x25{left:80.355000px;}
.x10{left:95.040000px;}
.x1{left:108.036000px;}
.xc{left:114.300000px;}
.x17{left:135.036000px;}
.x14{left:136.836000px;}
.x3{left:139.356000px;}
.x2{left:156.810000px;}
.x18{left:162.030000px;}
.x13{left:177.150000px;}
.x27{left:180.615000px;}
.x16{left:183.630000px;}
.x24{left:193.425000px;}
.x26{left:199.005000px;}
.x23{left:200.265000px;}
.x4{left:205.590000px;}
.x15{left:223.950000px;}
.x1e{left:225.975000px;}
.x1a{left:252.030000px;}
.x7{left:305.175000px;}
.x9{left:337.035000px;}
.x6{left:360.615000px;}
.xd{left:366.480000px;}
.x8{left:368.535000px;}
.x5{left:436.035000px;}
.x11{left:454.965000px;}
.x1f{left:623.520000px;}
.x20{left:625.320000px;}
.x21{left:632.340000px;}
.xa{left:668.700000px;}
.x1d{left:785.310000px;}
.x29{left:798.660000px;}
.x28{left:804.240000px;}
.x2b{left:806.040000px;}
.x2a{left:807.840000px;}
.x1b{left:809.460000px;}
.x1c{left:811.800000px;}
.x12{left:814.500000px;}
.x19{left:816.840000px;}
@media print{
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.762667pt;}
.ls5{letter-spacing:-0.368000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.122667pt;}
.ls4{letter-spacing:-0.030720pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.145067pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.432000pt;}
.ls0{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.517333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls8{letter-spacing:48.746667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws13{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.473600pt;}
.wsb{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.wsa{word-spacing:-10.928853pt;}
.wse{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.556587pt;}
.ws12{word-spacing:-10.288853pt;}
.ws5{word-spacing:-9.888000pt;}
.ws6{word-spacing:-9.840000pt;}
.wsc{word-spacing:-9.648853pt;}
.ws4{word-spacing:-9.520000pt;}
.ws0{word-spacing:-0.028160pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:34.501333pt;}
.ws11{word-spacing:46.608000pt;}
.wsf{word-spacing:46.661333pt;}
.ws10{word-spacing:64.848000pt;}
._2a{margin-left:-2.926293pt;}
._14{margin-left:-2.029653pt;}
._0{margin-left:-1.008000pt;}
._4{width:0.936320pt;}
._9{width:2.071680pt;}
._17{width:2.984960pt;}
._c{width:3.968000pt;}
._d{width:5.389013pt;}
._7{width:7.104000pt;}
._8{width:8.034347pt;}
._5{width:8.960000pt;}
._6{width:10.368000pt;}
._a{width:11.584000pt;}
._b{width:12.487680pt;}
._12{width:14.144000pt;}
._13{width:15.040000pt;}
._1d{width:17.152000pt;}
._1e{width:18.208000pt;}
._15{width:19.200000pt;}
._16{width:20.416000pt;}
._18{width:22.016000pt;}
._e{width:23.360000pt;}
._f{width:24.512000pt;}
._1c{width:25.472000pt;}
._29{width:26.541013pt;}
._2{width:27.440000pt;}
._10{width:29.056000pt;}
._11{width:30.080000pt;}
._27{width:30.983040pt;}
._19{width:31.936000pt;}
._1f{width:33.136000pt;}
._28{width:34.320000pt;}
._2b{width:36.352000pt;}
._2c{width:37.261013pt;}
._25{width:39.040000pt;}
._26{width:40.151680pt;}
._1a{width:42.240000pt;}
._1b{width:43.170347pt;}
._20{width:46.336000pt;}
._21{width:47.303680pt;}
._23{width:75.888000pt;}
._24{width:130.042667pt;}
._22{width:235.280000pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fs9{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:0.133333pt;}
.y2f{bottom:0.933333pt;}
.y39{bottom:1.120000pt;}
.y86{bottom:3.040000pt;}
.yc3{bottom:3.200000pt;}
.y3a{bottom:3.520000pt;}
.y3{bottom:4.000000pt;}
.y68{bottom:4.320000pt;}
.y33{bottom:7.013333pt;}
.y67{bottom:13.280000pt;}
.y85{bottom:13.760000pt;}
.yf1{bottom:15.706667pt;}
.y3f{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y3b{bottom:31.360000pt;}
.y1{bottom:37.920000pt;}
.y35{bottom:38.560000pt;}
.ye6{bottom:43.546667pt;}
.y38{bottom:58.080000pt;}
.ye5{bottom:62.693333pt;}
.ye4{bottom:81.186667pt;}
.ye3{bottom:95.746667pt;}
.ye1{bottom:95.840000pt;}
.y2d{bottom:103.680000pt;}
.ydf{bottom:104.320000pt;}
.yaa{bottom:106.720000pt;}
.y128{bottom:109.440000pt;}
.ye2{bottom:110.466667pt;}
.yc2{bottom:114.560000pt;}
.y66{bottom:116.320000pt;}
.y84{bottom:117.120000pt;}
.y12d{bottom:117.440000pt;}
.ye7{bottom:119.706667pt;}
.y2c{bottom:119.840000pt;}
.y182{bottom:122.080000pt;}
.yde{bottom:125.440000pt;}
.ya9{bottom:127.840000pt;}
.y127{bottom:130.720000pt;}
.y150{bottom:133.440000pt;}
.yc1{bottom:135.680000pt;}
.y2b{bottom:136.000000pt;}
.y65{bottom:137.600000pt;}
.y83{bottom:138.240000pt;}
.y114{bottom:138.720000pt;}
.ye8{bottom:145.506667pt;}
.y144{bottom:146.720000pt;}
.ya8{bottom:148.960000pt;}
.y181{bottom:151.360000pt;}
.y126{bottom:151.840000pt;}
.y2a{bottom:152.160000pt;}
.ydd{bottom:154.560000pt;}
.y14f{bottom:154.720000pt;}
.yc0{bottom:156.800000pt;}
.y82{bottom:159.520000pt;}
.y113{bottom:159.840000pt;}
.y170{bottom:164.480000pt;}
.y143{bottom:167.840000pt;}
.ya7{bottom:170.080000pt;}
.y29{bottom:170.240000pt;}
.ye9{bottom:171.293333pt;}
.y64{bottom:172.000000pt;}
.y180{bottom:172.480000pt;}
.y125{bottom:172.960000pt;}
.ydc{bottom:175.520000pt;}
.y14e{bottom:175.840000pt;}
.y81{bottom:180.640000pt;}
.y112{bottom:180.960000pt;}
.y16f{bottom:185.626667pt;}
.y142{bottom:188.986667pt;}
.y28{bottom:191.386667pt;}
.y63{bottom:193.146667pt;}
.y14d{bottom:196.986667pt;}
.yea{bottom:197.120000pt;}
.ydb{bottom:201.146667pt;}
.ye0{bottom:201.280000pt;}
.y17f{bottom:201.626667pt;}
.y80{bottom:201.786667pt;}
.y111{bottom:202.106667pt;}
.ya6{bottom:204.666667pt;}
.y12c{bottom:210.106667pt;}
.ybf{bottom:212.506667pt;}
.y27{bottom:213.466667pt;}
.y62{bottom:214.426667pt;}
.y16e{bottom:214.746667pt;}
.y14c{bottom:218.106667pt;}
.y17e{bottom:222.746667pt;}
.yd4{bottom:222.906667pt;}
.y110{bottom:223.386667pt;}
.ya5{bottom:225.786667pt;}
.y124{bottom:231.386667pt;}
.ybe{bottom:233.626667pt;}
.y61{bottom:235.546667pt;}
.y7f{bottom:236.026667pt;}
.y26{bottom:237.626667pt;}
.y146{bottom:239.386667pt;}
.y16d{bottom:244.026667pt;}
.ya4{bottom:246.906667pt;}
.yeb{bottom:248.706667pt;}
.y17d{bottom:252.026667pt;}
.y10f{bottom:252.506667pt;}
.ybd{bottom:254.746667pt;}
.y60{bottom:256.666667pt;}
.yd3{bottom:257.466667pt;}
.y25{bottom:258.906667pt;}
.y145{bottom:260.506667pt;}
.ya3{bottom:268.186667pt;}
.y7e{bottom:270.746667pt;}
.y16c{bottom:273.146667pt;}
.y10e{bottom:273.626667pt;}
.yec{bottom:274.493333pt;}
.ybc{bottom:276.026667pt;}
.y5f{bottom:277.786667pt;}
.yd2{bottom:278.586667pt;}
.y24{bottom:280.026667pt;}
.y141{bottom:281.626667pt;}
.ya2{bottom:289.306667pt;}
.y7d{bottom:292.026667pt;}
.y16b{bottom:294.266667pt;}
.y10d{bottom:294.746667pt;}
.y5e{bottom:299.066667pt;}
.yd1{bottom:299.866667pt;}
.yed{bottom:300.320000pt;}
.y23{bottom:301.146667pt;}
.y17c{bottom:302.266667pt;}
.y140{bottom:302.746667pt;}
.ya1{bottom:310.426667pt;}
.y7c{bottom:313.146667pt;}
.y10c{bottom:316.026667pt;}
.y5d{bottom:320.186667pt;}
.yd0{bottom:320.986667pt;}
.y22{bottom:322.266667pt;}
.y16a{bottom:323.386667pt;}
.y13f{bottom:324.026667pt;}
.yf0{bottom:325.146667pt;}
.ya0{bottom:331.546667pt;}
.y14b{bottom:332.026667pt;}
.y7b{bottom:334.266667pt;}
.y10b{bottom:337.146667pt;}
.ycf{bottom:342.106667pt;}
.y21{bottom:343.546667pt;}
.y169{bottom:344.666667pt;}
.y131{bottom:345.146667pt;}
.y5c{bottom:352.186667pt;}
.ybb{bottom:352.826667pt;}
.y14a{bottom:353.146667pt;}
.yef{bottom:353.306667pt;}
.y7a{bottom:355.386667pt;}
.y10a{bottom:358.266667pt;}
.y20{bottom:364.666667pt;}
.y9f{bottom:366.106667pt;}
.y12b{bottom:366.266667pt;}
.y5b{bottom:373.146667pt;}
.y168{bottom:373.786667pt;}
.yba{bottom:373.946667pt;}
.y149{bottom:374.266667pt;}
.y79{bottom:376.666667pt;}
.yee{bottom:381.466667pt;}
.y1f{bottom:385.786667pt;}
.y9e{bottom:387.226667pt;}
.y109{bottom:387.386667pt;}
.y167{bottom:394.946667pt;}
.yb9{bottom:395.106667pt;}
.y148{bottom:395.426667pt;}
.y5a{bottom:395.586667pt;}
.y78{bottom:397.826667pt;}
.y1e{bottom:406.946667pt;}
.y9d{bottom:408.386667pt;}
.y108{bottom:408.706667pt;}
.yb8{bottom:416.226667pt;}
.y147{bottom:416.706667pt;}
.y59{bottom:417.826667pt;}
.yce{bottom:418.946667pt;}
.y166{bottom:424.066667pt;}
.y1d{bottom:428.226667pt;}
.y9c{bottom:429.666667pt;}
.y107{bottom:429.826667pt;}
.y77{bottom:432.226667pt;}
.yb7{bottom:437.506667pt;}
.y13e{bottom:437.826667pt;}
.y58{bottom:438.946667pt;}
.ycd{bottom:440.066667pt;}
.y165{bottom:445.346667pt;}
.y1c{bottom:449.346667pt;}
.y9b{bottom:450.786667pt;}
.y106{bottom:450.946667pt;}
.y76{bottom:453.506667pt;}
.yb6{bottom:458.626667pt;}
.y13d{bottom:458.946667pt;}
.ycc{bottom:461.346667pt;}
.y164{bottom:466.466667pt;}
.y1b{bottom:470.466667pt;}
.y9a{bottom:471.906667pt;}
.y105{bottom:472.066667pt;}
.y57{bottom:474.626667pt;}
.y130{bottom:480.066667pt;}
.ycb{bottom:482.466667pt;}
.y1a{bottom:491.586667pt;}
.yb5{bottom:492.706667pt;}
.y104{bottom:493.346667pt;}
.y163{bottom:495.586667pt;}
.y75{bottom:495.746667pt;}
.y12a{bottom:501.346667pt;}
.yca{bottom:503.586667pt;}
.y99{bottom:506.466667pt;}
.y56{bottom:509.026667pt;}
.y19{bottom:512.866667pt;}
.y103{bottom:514.466667pt;}
.y162{bottom:516.706667pt;}
.y74{bottom:516.866667pt;}
.y129{bottom:522.466667pt;}
.y17b{bottom:524.706667pt;}
.y98{bottom:527.586667pt;}
.y55{bottom:530.306667pt;}
.y18{bottom:533.986667pt;}
.y102{bottom:535.586667pt;}
.y73{bottom:538.146667pt;}
.y123{bottom:543.586667pt;}
.y161{bottom:545.826667pt;}
.y97{bottom:548.706667pt;}
.y54{bottom:551.426667pt;}
.y17a{bottom:553.826667pt;}
.y17{bottom:555.106667pt;}
.y101{bottom:556.706667pt;}
.y72{bottom:559.266667pt;}
.y122{bottom:564.706667pt;}
.y160{bottom:567.106667pt;}
.y96{bottom:569.826667pt;}
.y53{bottom:572.546667pt;}
.y13c{bottom:572.706667pt;}
.y179{bottom:575.106667pt;}
.y16{bottom:576.226667pt;}
.yc9{bottom:580.386667pt;}
.y100{bottom:585.506667pt;}
.y121{bottom:585.826667pt;}
.y15f{bottom:588.226667pt;}
.y95{bottom:591.106667pt;}
.y52{bottom:593.666667pt;}
.y13b{bottom:593.826667pt;}
.y178{bottom:596.226667pt;}
.yc8{bottom:601.533333pt;}
.y15{bottom:605.853333pt;}
.y120{bottom:607.133333pt;}
.y15e{bottom:609.373333pt;}
.y94{bottom:612.253333pt;}
.y51{bottom:614.973333pt;}
.yff{bottom:615.133333pt;}
.yc7{bottom:622.813333pt;}
.y177{bottom:625.373333pt;}
.y14{bottom:627.453333pt;}
.y11f{bottom:628.253333pt;}
.y15d{bottom:630.493333pt;}
.yda{bottom:633.213333pt;}
.y93{bottom:633.373333pt;}
.y50{bottom:636.093333pt;}
.yfe{bottom:636.253333pt;}
.y176{bottom:646.493333pt;}
.y11e{bottom:649.373333pt;}
.y13{bottom:650.813333pt;}
.y92{bottom:654.493333pt;}
.y4f{bottom:657.213333pt;}
.yfd{bottom:657.373333pt;}
.y15c{bottom:659.773333pt;}
.yd9{bottom:667.933333pt;}
.y11d{bottom:670.493333pt;}
.y12{bottom:671.453333pt;}
.yb4{bottom:675.773333pt;}
.y4e{bottom:678.333333pt;}
.yfc{bottom:678.493333pt;}
.y15b{bottom:680.893333pt;}
.y13a{bottom:686.493333pt;}
.y91{bottom:688.733333pt;}
.yd8{bottom:689.053333pt;}
.y11c{bottom:691.773333pt;}
.y11{bottom:691.933333pt;}
.y175{bottom:696.893333pt;}
.y71{bottom:699.613333pt;}
.yfb{bottom:699.773333pt;}
.y139{bottom:707.773333pt;}
.y15a{bottom:710.013333pt;}
.yb3{bottom:710.173333pt;}
.y10{bottom:712.573333pt;}
.y4d{bottom:712.893333pt;}
.y70{bottom:720.733333pt;}
.yfa{bottom:720.893333pt;}
.y90{bottom:723.613333pt;}
.y174{bottom:726.013333pt;}
.y138{bottom:728.893333pt;}
.y159{bottom:731.133333pt;}
.yb2{bottom:731.293333pt;}
.y4c{bottom:734.013333pt;}
.yf{bottom:739.453333pt;}
.yc6{bottom:741.853333pt;}
.yf9{bottom:742.013333pt;}
.y8f{bottom:744.733333pt;}
.y173{bottom:747.133333pt;}
.y137{bottom:750.013333pt;}
.yb1{bottom:752.573333pt;}
.y4b{bottom:755.133333pt;}
.ye{bottom:755.773333pt;}
.y158{bottom:760.413333pt;}
.yc5{bottom:762.973333pt;}
.yf8{bottom:763.133333pt;}
.y8e{bottom:765.853333pt;}
.y136{bottom:771.133333pt;}
.yb0{bottom:773.693333pt;}
.yd{bottom:775.613333pt;}
.y4a{bottom:776.413333pt;}
.y157{bottom:781.533333pt;}
.y11b{bottom:784.413333pt;}
.y8d{bottom:786.973333pt;}
.yf7{bottom:792.413333pt;}
.yc4{bottom:794.653333pt;}
.yaf{bottom:794.813333pt;}
.y49{bottom:797.533333pt;}
.yc{bottom:804.413333pt;}
.y11a{bottom:805.533333pt;}
.y8c{bottom:808.253333pt;}
.y156{bottom:810.693333pt;}
.yf6{bottom:813.573333pt;}
.yae{bottom:815.973333pt;}
.y48{bottom:818.693333pt;}
.y135{bottom:821.573333pt;}
.y119{bottom:826.693333pt;}
.y8b{bottom:829.413333pt;}
.y155{bottom:831.813333pt;}
.yb{bottom:833.253333pt;}
.yf5{bottom:834.693333pt;}
.yad{bottom:837.253333pt;}
.y47{bottom:839.813333pt;}
.y134{bottom:842.693333pt;}
.y12f{bottom:847.813333pt;}
.y8a{bottom:850.533333pt;}
.ya{bottom:855.173333pt;}
.yf4{bottom:855.813333pt;}
.yac{bottom:858.373333pt;}
.y6f{bottom:861.093333pt;}
.y133{bottom:863.813333pt;}
.y9{bottom:865.413333pt;}
.y172{bottom:869.093333pt;}
.y89{bottom:871.653333pt;}
.y46{bottom:874.373333pt;}
.y32{bottom:874.880000pt;}
.y12e{bottom:876.773333pt;}
.yf3{bottom:877.093333pt;}
.y2e{bottom:880.960000pt;}
.y6e{bottom:882.213333pt;}
.y30{bottom:882.880000pt;}
.y8{bottom:883.013333pt;}
.y132{bottom:885.093333pt;}
.y171{bottom:890.213333pt;}
.yab{bottom:892.453333pt;}
.y88{bottom:892.773333pt;}
.y45{bottom:895.493333pt;}
.y118{bottom:898.213333pt;}
.yf2{bottom:906.213333pt;}
.y154{bottom:911.333333pt;}
.y7{bottom:913.413333pt;}
.y6d{bottom:913.893333pt;}
.yd7{bottom:914.053333pt;}
.y44{bottom:916.613333pt;}
.y117{bottom:919.333333pt;}
.y87{bottom:927.333333pt;}
.y153{bottom:932.453333pt;}
.yd6{bottom:935.173333pt;}
.y43{bottom:937.893333pt;}
.y116{bottom:940.453333pt;}
.y6{bottom:944.773333pt;}
.y6c{bottom:948.453333pt;}
.yd5{bottom:956.293333pt;}
.y42{bottom:959.013333pt;}
.y115{bottom:961.733333pt;}
.y6b{bottom:969.733333pt;}
.y5{bottom:978.693333pt;}
.y41{bottom:980.133333pt;}
.y152{bottom:982.853333pt;}
.y6a{bottom:990.853333pt;}
.y151{bottom:1011.653333pt;}
.y40{bottom:1011.813333pt;}
.y69{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3e{bottom:1035.200000pt;}
.y3d{bottom:1049.280000pt;}
.y3c{bottom:1063.360000pt;}
.y34{bottom:1073.600000pt;}
.y37{bottom:1084.480000pt;}
.y36{bottom:1099.840000pt;}
.h14{height:12.000000pt;}
.h12{height:12.800000pt;}
.h22{height:16.000000pt;}
.h20{height:16.160000pt;}
.h18{height:18.204375pt;}
.h16{height:18.880000pt;}
.h1a{height:22.080000pt;}
.h7{height:32.250000pt;}
.h2{height:34.138125pt;}
.h19{height:34.190937pt;}
.h5{height:34.195312pt;}
.h1c{height:36.305625pt;}
.h6{height:37.842813pt;}
.h13{height:38.273438pt;}
.h21{height:40.453125pt;}
.h11{height:40.640625pt;}
.h1b{height:42.355937pt;}
.h17{height:44.160000pt;}
.hf{height:45.937500pt;}
.h15{height:46.948750pt;}
.h4{height:47.742188pt;}
.ha{height:48.375000pt;}
.hc{height:58.252500pt;}
.h3{height:58.563750pt;}
.hb{height:60.288750pt;}
.h25{height:62.781250pt;}
.he{height:62.812500pt;}
.hd{height:63.106875pt;}
.h10{height:63.399375pt;}
.h1e{height:64.500000pt;}
.h1f{height:65.781915pt;}
.h1d{height:66.625000pt;}
.h24{height:71.570625pt;}
.h8{height:71.736875pt;}
.h9{height:72.069375pt;}
.h23{height:414.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:67.680000pt;}
.wb{width:68.800000pt;}
.w7{width:69.760000pt;}
.wa{width:73.920000pt;}
.w9{width:74.240000pt;}
.w12{width:74.720000pt;}
.wf{width:75.680000pt;}
.w11{width:76.320000pt;}
.w13{width:77.280000pt;}
.w10{width:78.080000pt;}
.wd{width:78.880000pt;}
.w5{width:80.640000pt;}
.we{width:83.840000pt;}
.w2{width:128.640000pt;}
.w3{width:172.160000pt;}
.w4{width:186.240000pt;}
.w6{width:556.800000pt;}
.wc{width:601.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.733333pt;}
.xf{left:16.480000pt;}
.xe{left:26.946667pt;}
.x22{left:36.384000pt;}
.x25{left:71.426667pt;}
.x10{left:84.480000pt;}
.x1{left:96.032000pt;}
.xc{left:101.600000pt;}
.x17{left:120.032000pt;}
.x14{left:121.632000pt;}
.x3{left:123.872000pt;}
.x2{left:139.386667pt;}
.x18{left:144.026667pt;}
.x13{left:157.466667pt;}
.x27{left:160.546667pt;}
.x16{left:163.226667pt;}
.x24{left:171.933333pt;}
.x26{left:176.893333pt;}
.x23{left:178.013333pt;}
.x4{left:182.746667pt;}
.x15{left:199.066667pt;}
.x1e{left:200.866667pt;}
.x1a{left:224.026667pt;}
.x7{left:271.266667pt;}
.x9{left:299.586667pt;}
.x6{left:320.546667pt;}
.xd{left:325.760000pt;}
.x8{left:327.586667pt;}
.x5{left:387.586667pt;}
.x11{left:404.413333pt;}
.x1f{left:554.240000pt;}
.x20{left:555.840000pt;}
.x21{left:562.080000pt;}
.xa{left:594.400000pt;}
.x1d{left:698.053333pt;}
.x29{left:709.920000pt;}
.x28{left:714.880000pt;}
.x2b{left:716.480000pt;}
.x2a{left:718.080000pt;}
.x1b{left:719.520000pt;}
.x1c{left:721.600000pt;}
.x12{left:724.000000pt;}
.x19{left:726.080000pt;}
}




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