
    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_ac4625cab8cdc00a6bc64491.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117188;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_0facd496f6e722d398ec80aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_94c6e99b79d2ae0bcb910e35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957031;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_04a056f3f4d8ad47d78b1317.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_4f321b65d2cae32267086095.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_184a0111b3732be03fe6a545.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117188;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8030ee21f830baaf6284bf43.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cbef271fb7f5b3f8b4781a2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_6e1c070f67132577dc086c34.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls2b{letter-spacing:-0.828000px;}
.ls46{letter-spacing:-0.774000px;}
.ls31{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.540000px;}
.ls41{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.288000px;}
.ls44{letter-spacing:-0.259800px;}
.ls2a{letter-spacing:-0.252000px;}
.ls6{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.108000px;}
.ls45{letter-spacing:-0.100200px;}
.ls3f{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.018000px;}
.ls3b{letter-spacing:0.053280px;}
.ls33{letter-spacing:0.106560px;}
.ls37{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.206400px;}
.ls36{letter-spacing:0.206640px;}
.ls30{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.259800px;}
.ls35{letter-spacing:0.259920px;}
.ls38{letter-spacing:0.286560px;}
.ls42{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.386640px;}
.ls1d{letter-spacing:0.396000px;}
.ls29{letter-spacing:0.432000px;}
.ls43{letter-spacing:0.439920px;}
.ls2{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.684000px;}
.ls22{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.738000px;}
.ls2c{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.620000px;}
.ls24{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.340000px;}
.ls18{letter-spacing:2.545920px;}
.ls1a{letter-spacing:3.060000px;}
.ls19{letter-spacing:3.780000px;}
.lse{letter-spacing:3.960000px;}
.ls26{letter-spacing:4.500000px;}
.ls1c{letter-spacing:5.220000px;}
.lsf{letter-spacing:5.706720px;}
.ls23{letter-spacing:5.760000px;}
.ls3a{letter-spacing:5.940000px;}
.ls21{letter-spacing:7.200000px;}
.ls2d{letter-spacing:10.260000px;}
.ls20{letter-spacing:11.700000px;}
.ls1e{letter-spacing:13.140000px;}
.ls17{letter-spacing:19.440000px;}
.ls2e{letter-spacing:19.620000px;}
.ls3c{letter-spacing:22.500000px;}
.ls0{letter-spacing:24.480000px;}
.ls47{letter-spacing:35.460000px;}
.lsd{letter-spacing:151.896000px;}
.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;}
}
.ws18{word-spacing:-54.000000px;}
.ws19{word-spacing:-18.864000px;}
.ws14{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.254600px;}
.ws1d{word-spacing:-15.300000px;}
.ws21{word-spacing:-15.238800px;}
.ws23{word-spacing:-15.199800px;}
.ws1b{word-spacing:-15.146400px;}
.ws20{word-spacing:-15.120000px;}
.ws1e{word-spacing:-15.046800px;}
.ws1c{word-spacing:-14.993280px;}
.ws1a{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.886720px;}
.ws26{word-spacing:-14.839800px;}
.ws25{word-spacing:-14.680200px;}
.ws24{word-spacing:-14.479800px;}
.ws29{word-spacing:-14.400000px;}
.ws22{word-spacing:-14.328000px;}
.ws28{word-spacing:-14.166000px;}
.wsc{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.ws9{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.626000px;}
.ws13{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.ws15{word-spacing:-13.248000px;}
.wsd{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.906000px;}
.ws16{word-spacing:-12.672000px;}
.ws6{word-spacing:-12.060000px;}
.ws1f{word-spacing:-9.737280px;}
.ws12{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-1416.684000px;}
._1c{margin-left:-1399.080000px;}
._1b{margin-left:-414.180000px;}
._1f{margin-left:-5.256000px;}
._13{margin-left:-3.600000px;}
._c{margin-left:-2.436000px;}
._1{margin-left:-1.188000px;}
._0{width:1.164000px;}
._9{width:2.952000px;}
._a{width:4.176000px;}
._10{width:5.400000px;}
._4{width:6.552000px;}
._5{width:7.572000px;}
._e{width:8.712000px;}
._f{width:9.780000px;}
._12{width:10.908000px;}
._d{width:11.952000px;}
._19{width:12.996000px;}
._11{width:14.652000px;}
._b{width:16.272000px;}
._1a{width:17.664000px;}
._2{width:19.008000px;}
._3{width:20.088000px;}
._16{width:21.744000px;}
._8{width:23.040000px;}
._14{width:24.792000px;}
._6{width:26.424000px;}
._7{width:27.648000px;}
._26{width:28.872000px;}
._17{width:30.168000px;}
._18{width:31.320000px;}
._25{width:32.436000px;}
._22{width:34.488000px;}
._2c{width:36.072720px;}
._2a{width:38.664000px;}
._2b{width:39.684000px;}
._27{width:44.424000px;}
._28{width:45.552000px;}
._24{width:47.520000px;}
._23{width:48.636000px;}
._20{width:50.736000px;}
._21{width:51.792000px;}
._29{width:61.416000px;}
._1e{width:151.896000px;}
._15{width:582.096000px;}
.fcc{color:rgb(17,85,204);}
.fcb{color:rgb(24,24,23);}
.fc8{color:rgb(153,0,0);}
.fca{color:rgb(0,29,53);}
.fc3{color:rgb(84,79,79);}
.fc9{color:rgb(46,116,181);}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(32,33,34);}
.fc7{color:rgb(71,71,71);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(37,37,37);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.160000px;}
.y5a{bottom:57.600000px;}
.y2{bottom:72.360000px;}
.y59{bottom:77.760000px;}
.y38{bottom:130.320000px;}
.ycb{bottom:142.740000px;}
.yea{bottom:142.920000px;}
.y11b{bottom:144.000000px;}
.y37{bottom:145.800000px;}
.yd7{bottom:148.860000px;}
.y36{bottom:150.300000px;}
.ye9{bottom:160.200000px;}
.y11a{bottom:161.280000px;}
.y35{bottom:161.460000px;}
.yca{bottom:163.440000px;}
.yd6{bottom:169.560000px;}
.y34{bottom:176.970000px;}
.ye8{bottom:177.510000px;}
.y119{bottom:178.590000px;}
.yc9{bottom:184.170000px;}
.yd5{bottom:190.290000px;}
.y33{bottom:192.450000px;}
.ye7{bottom:194.790000px;}
.y118{bottom:195.870000px;}
.y8e{bottom:196.950000px;}
.yc8{bottom:204.870000px;}
.y32{bottom:207.930000px;}
.yd4{bottom:210.990000px;}
.ye6{bottom:212.070000px;}
.y31{bottom:212.430000px;}
.y117{bottom:212.970000px;}
.y30{bottom:223.590000px;}
.yc7{bottom:225.570000px;}
.y9a{bottom:228.090000px;}
.ye5{bottom:229.170000px;}
.y116{bottom:230.250000px;}
.yd3{bottom:231.690000px;}
.y2f{bottom:239.070000px;}
.ydc{bottom:240.690000px;}
.yc6{bottom:246.270000px;}
.ye4{bottom:246.450000px;}
.y115{bottom:247.530000px;}
.yd2{bottom:252.390000px;}
.y2e{bottom:254.550000px;}
.y8d{bottom:259.050000px;}
.ydb{bottom:261.390000px;}
.ye3{bottom:263.730000px;}
.y114{bottom:264.810000px;}
.yc5{bottom:266.970000px;}
.y2d{bottom:270.030000px;}
.ya4{bottom:271.650000px;}
.yd1{bottom:273.090000px;}
.y2c{bottom:274.530000px;}
.ye2{bottom:281.010000px;}
.yda{bottom:282.090000px;}
.y2b{bottom:285.690000px;}
.yd0{bottom:293.790000px;}
.yc4{bottom:296.670000px;}
.ye1{bottom:298.290000px;}
.y113{bottom:299.370000px;}
.y2a{bottom:301.170000px;}
.yd9{bottom:302.790000px;}
.y29{bottom:305.670000px;}
.ycf{bottom:314.490000px;}
.ye0{bottom:315.570000px;}
.y112{bottom:316.470000px;}
.y58{bottom:316.650000px;}
.yc3{bottom:317.370000px;}
.y28{bottom:318.270000px;}
.y8c{bottom:321.150000px;}
.yd8{bottom:323.490000px;}
.y57{bottom:332.130000px;}
.ya3{bottom:332.490000px;}
.ydf{bottom:332.670000px;}
.y111{bottom:333.750000px;}
.yc2{bottom:338.070000px;}
.yce{bottom:344.190000px;}
.y26{bottom:344.370000px;}
.y56{bottom:347.790000px;}
.yde{bottom:349.950000px;}
.y110{bottom:351.030000px;}
.y27{bottom:351.210000px;}
.y8b{bottom:352.290000px;}
.ya2{bottom:353.190000px;}
.yc1{bottom:358.770000px;}
.y55{bottom:363.270000px;}
.ycd{bottom:364.890000px;}
.y25{bottom:365.070000px;}
.ydd{bottom:367.230000px;}
.y99{bottom:367.770000px;}
.y10f{bottom:368.310000px;}
.ya1{bottom:373.890000px;}
.y54{bottom:378.750000px;}
.yc0{bottom:379.470000px;}
.y98{bottom:380.370000px;}
.y24{bottom:385.590000px;}
.y53{bottom:394.275000px;}
.ya0{bottom:394.635000px;}
.ybf{bottom:400.215000px;}
.y10e{bottom:402.915000px;}
.y23{bottom:406.335000px;}
.y52{bottom:409.935000px;}
.y9f{bottom:415.335000px;}
.y10d{bottom:420.015000px;}
.ybe{bottom:420.915000px;}
.y51{bottom:425.415000px;}
.y22{bottom:427.035000px;}
.y97{bottom:433.875000px;}
.y9e{bottom:436.035000px;}
.y10c{bottom:437.295000px;}
.y7c{bottom:440.895000px;}
.ybd{bottom:441.615000px;}
.y50{bottom:442.515000px;}
.y8a{bottom:445.395000px;}
.y96{bottom:447.735000px;}
.y10b{bottom:454.575000px;}
.y7b{bottom:456.375000px;}
.y20{bottom:456.735000px;}
.ybc{bottom:462.315000px;}
.y21{bottom:463.575000px;}
.y95{bottom:468.435000px;}
.y10a{bottom:471.855000px;}
.y7a{bottom:472.035000px;}
.y1f{bottom:477.435000px;}
.ybb{bottom:483.015000px;}
.y79{bottom:487.515000px;}
.y94{bottom:488.955000px;}
.y109{bottom:489.135000px;}
.y4f{bottom:497.955000px;}
.y1d{bottom:498.135000px;}
.y78{bottom:502.995000px;}
.yba{bottom:503.715000px;}
.y89{bottom:504.615000px;}
.y1e{bottom:504.975000px;}
.y108{bottom:506.235000px;}
.y77{bottom:507.495000px;}
.y93{bottom:509.655000px;}
.y76{bottom:518.475000px;}
.y4e{bottom:518.655000px;}
.y1b{bottom:518.835000px;}
.y107{bottom:523.515000px;}
.yb9{bottom:524.415000px;}
.y1c{bottom:525.675000px;}
.y88{bottom:530.355000px;}
.y75{bottom:534.135000px;}
.y92{bottom:537.195000px;}
.y74{bottom:538.635000px;}
.y4d{bottom:539.355000px;}
.y1a{bottom:539.535000px;}
.y106{bottom:540.795000px;}
.yb8{bottom:545.115000px;}
.y73{bottom:549.615000px;}
.y87{bottom:551.055000px;}
.y105{bottom:558.075000px;}
.y4c{bottom:560.055000px;}
.y19{bottom:560.235000px;}
.y72{bottom:565.095000px;}
.yb7{bottom:565.815000px;}
.y86{bottom:571.755000px;}
.y104{bottom:575.355000px;}
.y71{bottom:580.575000px;}
.y4b{bottom:580.755000px;}
.y18{bottom:580.935000px;}
.yb6{bottom:586.515000px;}
.y85{bottom:592.455000px;}
.y103{bottom:592.635000px;}
.y70{bottom:596.235000px;}
.y4a{bottom:601.455000px;}
.y17{bottom:601.635000px;}
.y102{bottom:609.735000px;}
.y6f{bottom:611.745000px;}
.ycc{bottom:613.185000px;}
.yb5{bottom:619.305000px;}
.y49{bottom:622.185000px;}
.y16{bottom:622.365000px;}
.y101{bottom:627.045000px;}
.y6e{bottom:627.225000px;}
.yb4{bottom:640.005000px;}
.y6d{bottom:642.705000px;}
.y48{bottom:642.885000px;}
.y15{bottom:643.065000px;}
.y100{bottom:644.325000px;}
.y6c{bottom:658.185000px;}
.yb3{bottom:660.705000px;}
.yff{bottom:661.605000px;}
.y47{bottom:663.585000px;}
.y14{bottom:663.765000px;}
.y84{bottom:670.425000px;}
.y6b{bottom:673.845000px;}
.yfe{bottom:678.885000px;}
.yb2{bottom:681.405000px;}
.y46{bottom:684.285000px;}
.y13{bottom:684.465000px;}
.y6a{bottom:689.325000px;}
.y9d{bottom:693.285000px;}
.yfd{bottom:696.165000px;}
.yb1{bottom:702.105000px;}
.y69{bottom:704.805000px;}
.y45{bottom:704.985000px;}
.y12{bottom:705.165000px;}
.y83{bottom:711.825000px;}
.yfc{bottom:713.265000px;}
.y9c{bottom:713.985000px;}
.y68{bottom:720.285000px;}
.yb0{bottom:722.805000px;}
.y44{bottom:725.685000px;}
.y11{bottom:725.865000px;}
.yfb{bottom:730.545000px;}
.y82{bottom:732.525000px;}
.y9b{bottom:734.685000px;}
.y67{bottom:735.945000px;}
.yaf{bottom:743.505000px;}
.y81{bottom:746.385000px;}
.y10{bottom:746.565000px;}
.yfa{bottom:747.825000px;}
.y66{bottom:751.425000px;}
.y43{bottom:755.385000px;}
.yae{bottom:764.205000px;}
.yf9{bottom:765.105000px;}
.y65{bottom:766.905000px;}
.y80{bottom:767.085000px;}
.yf{bottom:767.265000px;}
.y64{bottom:771.405000px;}
.y42{bottom:776.085000px;}
.yf8{bottom:782.385000px;}
.y63{bottom:784.005000px;}
.yad{bottom:784.905000px;}
.y7f{bottom:787.785000px;}
.ye{bottom:787.965000px;}
.y41{bottom:796.785000px;}
.yf7{bottom:799.665000px;}
.yac{bottom:805.605000px;}
.y61{bottom:808.485000px;}
.yd{bottom:808.665000px;}
.y62{bottom:815.325000px;}
.yf6{bottom:816.765000px;}
.y40{bottom:817.485000px;}
.y7e{bottom:824.325000px;}
.yab{bottom:826.305000px;}
.y5f{bottom:829.230000px;}
.yc{bottom:829.410000px;}
.yf5{bottom:834.090000px;}
.y60{bottom:836.070000px;}
.y3f{bottom:838.230000px;}
.yaa{bottom:847.050000px;}
.y5e{bottom:849.930000px;}
.yb{bottom:850.110000px;}
.yf4{bottom:851.370000px;}
.y3e{bottom:858.930000px;}
.ya9{bottom:867.750000px;}
.yf3{bottom:868.650000px;}
.y5d{bottom:870.630000px;}
.ya{bottom:872.430000px;}
.y3d{bottom:879.630000px;}
.yf2{bottom:885.930000px;}
.ya8{bottom:888.450000px;}
.y91{bottom:891.330000px;}
.y9{bottom:892.950000px;}
.y3c{bottom:900.330000px;}
.yf1{bottom:903.030000px;}
.y5c{bottom:907.170000px;}
.ya7{bottom:909.150000px;}
.y8{bottom:911.850000px;}
.y90{bottom:912.030000px;}
.yf0{bottom:920.310000px;}
.y3b{bottom:921.030000px;}
.ya6{bottom:929.850000px;}
.y7{bottom:932.730000px;}
.yef{bottom:937.590000px;}
.y3a{bottom:941.730000px;}
.y8f{bottom:948.570000px;}
.ya5{bottom:950.550000px;}
.yee{bottom:954.870000px;}
.y6{bottom:962.430000px;}
.yed{bottom:972.150000px;}
.y5{bottom:983.130000px;}
.yec{bottom:989.430000px;}
.y7d{bottom:989.970000px;}
.y4{bottom:1003.830000px;}
.yeb{bottom:1006.530000px;}
.y5b{bottom:1010.670000px;}
.y1{bottom:1078.380000px;}
.y39{bottom:1082.520000px;}
.hb{height:32.273438px;}
.he{height:40.025391px;}
.h8{height:43.246406px;}
.h3{height:48.410156px;}
.hc{height:48.673828px;}
.hf{height:50.273438px;}
.h4{height:50.992031px;}
.h5{height:53.367188px;}
.h15{height:53.573906px;}
.h14{height:53.865703px;}
.hd{height:55.291992px;}
.h16{height:55.735313px;}
.h7{height:59.383125px;}
.h6{height:64.546875px;}
.h2{height:64.898438px;}
.ha{height:65.884219px;}
.h9{height:70.606406px;}
.h13{height:70.726406px;}
.h10{height:75.519844px;}
.h12{height:96.820312px;}
.h11{height:97.347656px;}
.h0{height:1148.220000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w3{width:808.019976px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x1{left:127.655988px;}
.x11{left:132.155988px;}
.x25{left:136.655988px;}
.x2{left:169.949988px;}
.x1b{left:176.609976px;}
.x2d{left:180.749988px;}
.x1c{left:182.729988px;}
.x26{left:188.309988px;}
.x21{left:196.589976px;}
.x22{left:208.829988px;}
.x7{left:211.529988px;}
.xc{left:224.669976px;}
.xd{left:230.789988px;}
.x6{left:250.454988px;}
.x5{left:258.014988px;}
.x3{left:266.114988px;}
.x15{left:277.094976px;}
.x17{left:279.974976px;}
.x16{left:283.214988px;}
.x18{left:286.094988px;}
.xe{left:292.394976px;}
.xf{left:298.514988px;}
.x4{left:334.514988px;}
.x10{left:343.694988px;}
.x23{left:351.254976px;}
.x24{left:363.494988px;}
.xa{left:372.134976px;}
.x27{left:374.474976px;}
.xb{left:378.254988px;}
.x28{left:386.714988px;}
.x2b{left:391.034976px;}
.x2c{left:403.274988px;}
.x1f{left:454.784976px;}
.x20{left:467.024988px;}
.x29{left:506.264976px;}
.x2a{left:518.504988px;}
.x1d{left:526.064976px;}
.x19{left:534.344976px;}
.x1e{left:538.304988px;}
.x1a{left:540.464988px;}
.x13{left:619.709976px;}
.x14{left:625.829988px;}
.x12{left:667.229988px;}
.x8{left:674.429976px;}
.x9{left:680.549988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls2b{letter-spacing:-0.736000pt;}
.ls46{letter-spacing:-0.688000pt;}
.ls31{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls41{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls44{letter-spacing:-0.230933pt;}
.ls2a{letter-spacing:-0.224000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls45{letter-spacing:-0.089067pt;}
.ls3f{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.016000pt;}
.ls3b{letter-spacing:0.047360pt;}
.ls33{letter-spacing:0.094720pt;}
.ls37{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.183467pt;}
.ls36{letter-spacing:0.183680pt;}
.ls30{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.230933pt;}
.ls35{letter-spacing:0.231040pt;}
.ls38{letter-spacing:0.254720pt;}
.ls42{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.343680pt;}
.ls1d{letter-spacing:0.352000pt;}
.ls29{letter-spacing:0.384000pt;}
.ls43{letter-spacing:0.391040pt;}
.ls2{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.608000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.656000pt;}
.ls2c{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls18{letter-spacing:2.263040pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls19{letter-spacing:3.360000pt;}
.lse{letter-spacing:3.520000pt;}
.ls26{letter-spacing:4.000000pt;}
.ls1c{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.072640pt;}
.ls23{letter-spacing:5.120000pt;}
.ls3a{letter-spacing:5.280000pt;}
.ls21{letter-spacing:6.400000pt;}
.ls2d{letter-spacing:9.120000pt;}
.ls20{letter-spacing:10.400000pt;}
.ls1e{letter-spacing:11.680000pt;}
.ls17{letter-spacing:17.280000pt;}
.ls2e{letter-spacing:17.440000pt;}
.ls3c{letter-spacing:20.000000pt;}
.ls0{letter-spacing:21.760000pt;}
.ls47{letter-spacing:31.520000pt;}
.lsd{letter-spacing:135.018667pt;}
.ws18{word-spacing:-48.000000pt;}
.ws19{word-spacing:-16.768000pt;}
.ws14{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws1d{word-spacing:-13.600000pt;}
.ws21{word-spacing:-13.545600pt;}
.ws23{word-spacing:-13.510933pt;}
.ws1b{word-spacing:-13.463467pt;}
.ws20{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-13.374933pt;}
.ws1c{word-spacing:-13.327360pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws27{word-spacing:-13.232640pt;}
.ws26{word-spacing:-13.190933pt;}
.ws25{word-spacing:-13.049067pt;}
.ws24{word-spacing:-12.870933pt;}
.ws29{word-spacing:-12.800000pt;}
.ws22{word-spacing:-12.736000pt;}
.ws28{word-spacing:-12.592000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.ws9{word-spacing:-12.160000pt;}
.wsa{word-spacing:-12.112000pt;}
.ws13{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.ws15{word-spacing:-11.776000pt;}
.wsd{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.472000pt;}
.ws16{word-spacing:-11.264000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws1f{word-spacing:-8.655360pt;}
.ws12{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-1259.274667pt;}
._1c{margin-left:-1243.626667pt;}
._1b{margin-left:-368.160000pt;}
._1f{margin-left:-4.672000pt;}
._13{margin-left:-3.200000pt;}
._c{margin-left:-2.165333pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.034667pt;}
._9{width:2.624000pt;}
._a{width:3.712000pt;}
._10{width:4.800000pt;}
._4{width:5.824000pt;}
._5{width:6.730667pt;}
._e{width:7.744000pt;}
._f{width:8.693333pt;}
._12{width:9.696000pt;}
._d{width:10.624000pt;}
._19{width:11.552000pt;}
._11{width:13.024000pt;}
._b{width:14.464000pt;}
._1a{width:15.701333pt;}
._2{width:16.896000pt;}
._3{width:17.856000pt;}
._16{width:19.328000pt;}
._8{width:20.480000pt;}
._14{width:22.037333pt;}
._6{width:23.488000pt;}
._7{width:24.576000pt;}
._26{width:25.664000pt;}
._17{width:26.816000pt;}
._18{width:27.840000pt;}
._25{width:28.832000pt;}
._22{width:30.656000pt;}
._2c{width:32.064640pt;}
._2a{width:34.368000pt;}
._2b{width:35.274667pt;}
._27{width:39.488000pt;}
._28{width:40.490667pt;}
._24{width:42.240000pt;}
._23{width:43.232000pt;}
._20{width:45.098667pt;}
._21{width:46.037333pt;}
._29{width:54.592000pt;}
._1e{width:135.018667pt;}
._15{width:517.418667pt;}
.fs5{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:49.920000pt;}
.y5a{bottom:51.200000pt;}
.y2{bottom:64.320000pt;}
.y59{bottom:69.120000pt;}
.y38{bottom:115.840000pt;}
.ycb{bottom:126.880000pt;}
.yea{bottom:127.040000pt;}
.y11b{bottom:128.000000pt;}
.y37{bottom:129.600000pt;}
.yd7{bottom:132.320000pt;}
.y36{bottom:133.600000pt;}
.ye9{bottom:142.400000pt;}
.y11a{bottom:143.360000pt;}
.y35{bottom:143.520000pt;}
.yca{bottom:145.280000pt;}
.yd6{bottom:150.720000pt;}
.y34{bottom:157.306667pt;}
.ye8{bottom:157.786667pt;}
.y119{bottom:158.746667pt;}
.yc9{bottom:163.706667pt;}
.yd5{bottom:169.146667pt;}
.y33{bottom:171.066667pt;}
.ye7{bottom:173.146667pt;}
.y118{bottom:174.106667pt;}
.y8e{bottom:175.066667pt;}
.yc8{bottom:182.106667pt;}
.y32{bottom:184.826667pt;}
.yd4{bottom:187.546667pt;}
.ye6{bottom:188.506667pt;}
.y31{bottom:188.826667pt;}
.y117{bottom:189.306667pt;}
.y30{bottom:198.746667pt;}
.yc7{bottom:200.506667pt;}
.y9a{bottom:202.746667pt;}
.ye5{bottom:203.706667pt;}
.y116{bottom:204.666667pt;}
.yd3{bottom:205.946667pt;}
.y2f{bottom:212.506667pt;}
.ydc{bottom:213.946667pt;}
.yc6{bottom:218.906667pt;}
.ye4{bottom:219.066667pt;}
.y115{bottom:220.026667pt;}
.yd2{bottom:224.346667pt;}
.y2e{bottom:226.266667pt;}
.y8d{bottom:230.266667pt;}
.ydb{bottom:232.346667pt;}
.ye3{bottom:234.426667pt;}
.y114{bottom:235.386667pt;}
.yc5{bottom:237.306667pt;}
.y2d{bottom:240.026667pt;}
.ya4{bottom:241.466667pt;}
.yd1{bottom:242.746667pt;}
.y2c{bottom:244.026667pt;}
.ye2{bottom:249.786667pt;}
.yda{bottom:250.746667pt;}
.y2b{bottom:253.946667pt;}
.yd0{bottom:261.146667pt;}
.yc4{bottom:263.706667pt;}
.ye1{bottom:265.146667pt;}
.y113{bottom:266.106667pt;}
.y2a{bottom:267.706667pt;}
.yd9{bottom:269.146667pt;}
.y29{bottom:271.706667pt;}
.ycf{bottom:279.546667pt;}
.ye0{bottom:280.506667pt;}
.y112{bottom:281.306667pt;}
.y58{bottom:281.466667pt;}
.yc3{bottom:282.106667pt;}
.y28{bottom:282.906667pt;}
.y8c{bottom:285.466667pt;}
.yd8{bottom:287.546667pt;}
.y57{bottom:295.226667pt;}
.ya3{bottom:295.546667pt;}
.ydf{bottom:295.706667pt;}
.y111{bottom:296.666667pt;}
.yc2{bottom:300.506667pt;}
.yce{bottom:305.946667pt;}
.y26{bottom:306.106667pt;}
.y56{bottom:309.146667pt;}
.yde{bottom:311.066667pt;}
.y110{bottom:312.026667pt;}
.y27{bottom:312.186667pt;}
.y8b{bottom:313.146667pt;}
.ya2{bottom:313.946667pt;}
.yc1{bottom:318.906667pt;}
.y55{bottom:322.906667pt;}
.ycd{bottom:324.346667pt;}
.y25{bottom:324.506667pt;}
.ydd{bottom:326.426667pt;}
.y99{bottom:326.906667pt;}
.y10f{bottom:327.386667pt;}
.ya1{bottom:332.346667pt;}
.y54{bottom:336.666667pt;}
.yc0{bottom:337.306667pt;}
.y98{bottom:338.106667pt;}
.y24{bottom:342.746667pt;}
.y53{bottom:350.466667pt;}
.ya0{bottom:350.786667pt;}
.ybf{bottom:355.746667pt;}
.y10e{bottom:358.146667pt;}
.y23{bottom:361.186667pt;}
.y52{bottom:364.386667pt;}
.y9f{bottom:369.186667pt;}
.y10d{bottom:373.346667pt;}
.ybe{bottom:374.146667pt;}
.y51{bottom:378.146667pt;}
.y22{bottom:379.586667pt;}
.y97{bottom:385.666667pt;}
.y9e{bottom:387.586667pt;}
.y10c{bottom:388.706667pt;}
.y7c{bottom:391.906667pt;}
.ybd{bottom:392.546667pt;}
.y50{bottom:393.346667pt;}
.y8a{bottom:395.906667pt;}
.y96{bottom:397.986667pt;}
.y10b{bottom:404.066667pt;}
.y7b{bottom:405.666667pt;}
.y20{bottom:405.986667pt;}
.ybc{bottom:410.946667pt;}
.y21{bottom:412.066667pt;}
.y95{bottom:416.386667pt;}
.y10a{bottom:419.426667pt;}
.y7a{bottom:419.586667pt;}
.y1f{bottom:424.386667pt;}
.ybb{bottom:429.346667pt;}
.y79{bottom:433.346667pt;}
.y94{bottom:434.626667pt;}
.y109{bottom:434.786667pt;}
.y4f{bottom:442.626667pt;}
.y1d{bottom:442.786667pt;}
.y78{bottom:447.106667pt;}
.yba{bottom:447.746667pt;}
.y89{bottom:448.546667pt;}
.y1e{bottom:448.866667pt;}
.y108{bottom:449.986667pt;}
.y77{bottom:451.106667pt;}
.y93{bottom:453.026667pt;}
.y76{bottom:460.866667pt;}
.y4e{bottom:461.026667pt;}
.y1b{bottom:461.186667pt;}
.y107{bottom:465.346667pt;}
.yb9{bottom:466.146667pt;}
.y1c{bottom:467.266667pt;}
.y88{bottom:471.426667pt;}
.y75{bottom:474.786667pt;}
.y92{bottom:477.506667pt;}
.y74{bottom:478.786667pt;}
.y4d{bottom:479.426667pt;}
.y1a{bottom:479.586667pt;}
.y106{bottom:480.706667pt;}
.yb8{bottom:484.546667pt;}
.y73{bottom:488.546667pt;}
.y87{bottom:489.826667pt;}
.y105{bottom:496.066667pt;}
.y4c{bottom:497.826667pt;}
.y19{bottom:497.986667pt;}
.y72{bottom:502.306667pt;}
.yb7{bottom:502.946667pt;}
.y86{bottom:508.226667pt;}
.y104{bottom:511.426667pt;}
.y71{bottom:516.066667pt;}
.y4b{bottom:516.226667pt;}
.y18{bottom:516.386667pt;}
.yb6{bottom:521.346667pt;}
.y85{bottom:526.626667pt;}
.y103{bottom:526.786667pt;}
.y70{bottom:529.986667pt;}
.y4a{bottom:534.626667pt;}
.y17{bottom:534.786667pt;}
.y102{bottom:541.986667pt;}
.y6f{bottom:543.773333pt;}
.ycc{bottom:545.053333pt;}
.yb5{bottom:550.493333pt;}
.y49{bottom:553.053333pt;}
.y16{bottom:553.213333pt;}
.y101{bottom:557.373333pt;}
.y6e{bottom:557.533333pt;}
.yb4{bottom:568.893333pt;}
.y6d{bottom:571.293333pt;}
.y48{bottom:571.453333pt;}
.y15{bottom:571.613333pt;}
.y100{bottom:572.733333pt;}
.y6c{bottom:585.053333pt;}
.yb3{bottom:587.293333pt;}
.yff{bottom:588.093333pt;}
.y47{bottom:589.853333pt;}
.y14{bottom:590.013333pt;}
.y84{bottom:595.933333pt;}
.y6b{bottom:598.973333pt;}
.yfe{bottom:603.453333pt;}
.yb2{bottom:605.693333pt;}
.y46{bottom:608.253333pt;}
.y13{bottom:608.413333pt;}
.y6a{bottom:612.733333pt;}
.y9d{bottom:616.253333pt;}
.yfd{bottom:618.813333pt;}
.yb1{bottom:624.093333pt;}
.y69{bottom:626.493333pt;}
.y45{bottom:626.653333pt;}
.y12{bottom:626.813333pt;}
.y83{bottom:632.733333pt;}
.yfc{bottom:634.013333pt;}
.y9c{bottom:634.653333pt;}
.y68{bottom:640.253333pt;}
.yb0{bottom:642.493333pt;}
.y44{bottom:645.053333pt;}
.y11{bottom:645.213333pt;}
.yfb{bottom:649.373333pt;}
.y82{bottom:651.133333pt;}
.y9b{bottom:653.053333pt;}
.y67{bottom:654.173333pt;}
.yaf{bottom:660.893333pt;}
.y81{bottom:663.453333pt;}
.y10{bottom:663.613333pt;}
.yfa{bottom:664.733333pt;}
.y66{bottom:667.933333pt;}
.y43{bottom:671.453333pt;}
.yae{bottom:679.293333pt;}
.yf9{bottom:680.093333pt;}
.y65{bottom:681.693333pt;}
.y80{bottom:681.853333pt;}
.yf{bottom:682.013333pt;}
.y64{bottom:685.693333pt;}
.y42{bottom:689.853333pt;}
.yf8{bottom:695.453333pt;}
.y63{bottom:696.893333pt;}
.yad{bottom:697.693333pt;}
.y7f{bottom:700.253333pt;}
.ye{bottom:700.413333pt;}
.y41{bottom:708.253333pt;}
.yf7{bottom:710.813333pt;}
.yac{bottom:716.093333pt;}
.y61{bottom:718.653333pt;}
.yd{bottom:718.813333pt;}
.y62{bottom:724.733333pt;}
.yf6{bottom:726.013333pt;}
.y40{bottom:726.653333pt;}
.y7e{bottom:732.733333pt;}
.yab{bottom:734.493333pt;}
.y5f{bottom:737.093333pt;}
.yc{bottom:737.253333pt;}
.yf5{bottom:741.413333pt;}
.y60{bottom:743.173333pt;}
.y3f{bottom:745.093333pt;}
.yaa{bottom:752.933333pt;}
.y5e{bottom:755.493333pt;}
.yb{bottom:755.653333pt;}
.yf4{bottom:756.773333pt;}
.y3e{bottom:763.493333pt;}
.ya9{bottom:771.333333pt;}
.yf3{bottom:772.133333pt;}
.y5d{bottom:773.893333pt;}
.ya{bottom:775.493333pt;}
.y3d{bottom:781.893333pt;}
.yf2{bottom:787.493333pt;}
.ya8{bottom:789.733333pt;}
.y91{bottom:792.293333pt;}
.y9{bottom:793.733333pt;}
.y3c{bottom:800.293333pt;}
.yf1{bottom:802.693333pt;}
.y5c{bottom:806.373333pt;}
.ya7{bottom:808.133333pt;}
.y8{bottom:810.533333pt;}
.y90{bottom:810.693333pt;}
.yf0{bottom:818.053333pt;}
.y3b{bottom:818.693333pt;}
.ya6{bottom:826.533333pt;}
.y7{bottom:829.093333pt;}
.yef{bottom:833.413333pt;}
.y3a{bottom:837.093333pt;}
.y8f{bottom:843.173333pt;}
.ya5{bottom:844.933333pt;}
.yee{bottom:848.773333pt;}
.y6{bottom:855.493333pt;}
.yed{bottom:864.133333pt;}
.y5{bottom:873.893333pt;}
.yec{bottom:879.493333pt;}
.y7d{bottom:879.973333pt;}
.y4{bottom:892.293333pt;}
.yeb{bottom:894.693333pt;}
.y5b{bottom:898.373333pt;}
.y1{bottom:958.560000pt;}
.y39{bottom:962.240000pt;}
.hb{height:28.687500pt;}
.he{height:35.578125pt;}
.h8{height:38.441250pt;}
.h3{height:43.031250pt;}
.hc{height:43.265625pt;}
.hf{height:44.687500pt;}
.h4{height:45.326250pt;}
.h5{height:47.437500pt;}
.h15{height:47.621250pt;}
.h14{height:47.880625pt;}
.hd{height:49.148438pt;}
.h16{height:49.542500pt;}
.h7{height:52.785000pt;}
.h6{height:57.375000pt;}
.h2{height:57.687500pt;}
.ha{height:58.563750pt;}
.h9{height:62.761250pt;}
.h13{height:62.867917pt;}
.h10{height:67.128750pt;}
.h12{height:86.062500pt;}
.h11{height:86.531250pt;}
.h0{height:1020.640000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w3{width:718.239979pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471989pt;}
.x11{left:117.471989pt;}
.x25{left:121.471989pt;}
.x2{left:151.066656pt;}
.x1b{left:156.986645pt;}
.x2d{left:160.666656pt;}
.x1c{left:162.426656pt;}
.x26{left:167.386656pt;}
.x21{left:174.746645pt;}
.x22{left:185.626656pt;}
.x7{left:188.026656pt;}
.xc{left:199.706645pt;}
.xd{left:205.146656pt;}
.x6{left:222.626656pt;}
.x5{left:229.346656pt;}
.x3{left:236.546656pt;}
.x15{left:246.306645pt;}
.x17{left:248.866645pt;}
.x16{left:251.746656pt;}
.x18{left:254.306656pt;}
.xe{left:259.906645pt;}
.xf{left:265.346656pt;}
.x4{left:297.346656pt;}
.x10{left:305.506656pt;}
.x23{left:312.226645pt;}
.x24{left:323.106656pt;}
.xa{left:330.786645pt;}
.x27{left:332.866645pt;}
.xb{left:336.226656pt;}
.x28{left:343.746656pt;}
.x2b{left:347.586645pt;}
.x2c{left:358.466656pt;}
.x1f{left:404.253312pt;}
.x20{left:415.133323pt;}
.x29{left:450.013312pt;}
.x2a{left:460.893323pt;}
.x1d{left:467.613312pt;}
.x19{left:474.973312pt;}
.x1e{left:478.493323pt;}
.x1a{left:480.413323pt;}
.x13{left:550.853312pt;}
.x14{left:556.293323pt;}
.x12{left:593.093323pt;}
.x8{left:599.493312pt;}
.x9{left:604.933323pt;}
}




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