
    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_a1d7ade21fe8b7d63d20942c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2eb933e07061e343b92e4076.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_7ffe06229eb130bcf6695285.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_6733070118f13327194112bc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f57373298ea23fd4579a88e2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1011707f4ebb40cda37fbad6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_473b5385f71eaa886b9671c3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944336;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_6c8f79b80c9168ea393ffb5b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_ea217f65447f87af1f264e91.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_601a8599f5e409149486b653.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d1fdb5a8f7cbf86c38203033.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f6179013ec4527592726d98a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_2657740c24a924449473b4ab.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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_712a12ac1690a714d10e09dc.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_91fe613097b31100561d8929.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.298200px;}
.lsa{letter-spacing:-0.127200px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.087600px;}
.ls13{letter-spacing:0.106560px;}
.ls2{letter-spacing:0.132600px;}
.lse{letter-spacing:0.173280px;}
.ls7{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.ls10{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.786240px;}
.ls16{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-7.565760px;}
._4{margin-left:-5.557680px;}
._3{margin-left:-3.348000px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.044000px;}
._1{width:1.188000px;}
._c{width:2.220960px;}
._b{width:3.638640px;}
._15{width:4.854960px;}
._f{width:6.049440px;}
._e{width:7.171200px;}
._d{width:8.187120px;}
._13{width:9.329760px;}
._16{width:10.823040px;}
._14{width:12.317760px;}
._6{width:13.386240px;}
._a{width:16.103520px;}
._9{width:17.449920px;}
._8{width:18.602640px;}
._7{width:19.831680px;}
._17{width:21.640320px;}
._11{width:23.366160px;}
._10{width:24.800400px;}
._5{width:27.018720px;}
._12{width:28.766880px;}
._18{width:30.844800px;}
._19{width:31.850640px;}
._1b{width:38.193840px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.180000px;}
.y9b{bottom:3.234000px;}
.y51{bottom:3.240000px;}
.y1a{bottom:3.600000px;}
.y3{bottom:3.636000px;}
.yd9{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y1d{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y54{bottom:14.940000px;}
.y4{bottom:17.496000px;}
.y53{bottom:17.820000px;}
.y2{bottom:20.196000px;}
.y50{bottom:20.565000px;}
.y19{bottom:23.805000px;}
.yb{bottom:30.240000px;}
.y4f{bottom:37.845000px;}
.y18{bottom:39.645000px;}
.y5{bottom:46.260000px;}
.ya{bottom:46.440000px;}
.y17{bottom:52.785000px;}
.y4e{bottom:55.125000px;}
.y16{bottom:65.925000px;}
.y1{bottom:68.760000px;}
.y4d{bottom:72.405000px;}
.y9{bottom:73.470000px;}
.y15{bottom:75.825000px;}
.y4c{bottom:89.685000px;}
.y14{bottom:90.405000px;}
.y8{bottom:93.090000px;}
.y13{bottom:105.705000px;}
.y4b{bottom:106.785000px;}
.y7{bottom:111.270000px;}
.y9d{bottom:111.636000px;}
.y5f{bottom:112.896000px;}
.y118{bottom:114.156000px;}
.y34{bottom:115.065000px;}
.yda{bottom:119.016000px;}
.y4a{bottom:124.065000px;}
.y12{bottom:124.785000px;}
.y5e{bottom:129.996000px;}
.y9c{bottom:130.356000px;}
.y33{bottom:130.365000px;}
.y117{bottom:131.256000px;}
.yd8{bottom:137.016000px;}
.y49{bottom:141.345000px;}
.y5d{bottom:147.276000px;}
.y32{bottom:147.825000px;}
.y116{bottom:148.536000px;}
.y9a{bottom:149.076000px;}
.y11{bottom:150.525000px;}
.yd7{bottom:158.250000px;}
.y48{bottom:158.625000px;}
.y138{bottom:163.470000px;}
.y5c{bottom:164.550000px;}
.y31{bottom:165.105000px;}
.y115{bottom:165.810000px;}
.y99{bottom:167.790000px;}
.y10{bottom:174.825000px;}
.yd6{bottom:175.530000px;}
.y47{bottom:175.905000px;}
.y137{bottom:180.750000px;}
.y5b{bottom:181.830000px;}
.y30{bottom:182.385000px;}
.y114{bottom:183.090000px;}
.y98{bottom:186.510000px;}
.yd5{bottom:192.810000px;}
.y46{bottom:193.185000px;}
.y136{bottom:198.030000px;}
.y5a{bottom:199.110000px;}
.y2f{bottom:200.205000px;}
.y113{bottom:200.370000px;}
.y97{bottom:205.230000px;}
.yd4{bottom:210.090000px;}
.y45{bottom:210.285000px;}
.y135{bottom:215.310000px;}
.y59{bottom:216.390000px;}
.y112{bottom:217.470000px;}
.y2e{bottom:217.485000px;}
.y96{bottom:224.130000px;}
.yd3{bottom:227.370000px;}
.y44{bottom:227.565000px;}
.y134{bottom:232.590000px;}
.y58{bottom:233.490000px;}
.y111{bottom:234.750000px;}
.y2d{bottom:234.945000px;}
.y95{bottom:242.850000px;}
.yd2{bottom:244.470000px;}
.y43{bottom:244.845000px;}
.y133{bottom:249.870000px;}
.y57{bottom:250.770000px;}
.y110{bottom:252.030000px;}
.y2c{bottom:252.405000px;}
.y94{bottom:261.570000px;}
.yd1{bottom:261.750000px;}
.y42{bottom:262.125000px;}
.y132{bottom:266.970000px;}
.y56{bottom:268.050000px;}
.y10f{bottom:269.310000px;}
.y2b{bottom:269.685000px;}
.yd0{bottom:279.030000px;}
.y41{bottom:279.435000px;}
.y93{bottom:280.290000px;}
.y131{bottom:284.250000px;}
.y55{bottom:285.330000px;}
.y10e{bottom:286.590000px;}
.y2a{bottom:287.175000px;}
.ycf{bottom:296.310000px;}
.y40{bottom:296.715000px;}
.y92{bottom:299.010000px;}
.y52{bottom:299.370000px;}
.y130{bottom:301.530000px;}
.y10d{bottom:303.870000px;}
.y29{bottom:304.635000px;}
.yce{bottom:311.070000px;}
.y3f{bottom:313.815000px;}
.y91{bottom:317.730000px;}
.y12f{bottom:318.810000px;}
.y10c{bottom:320.970000px;}
.y28{bottom:321.915000px;}
.y1e{bottom:328.530000px;}
.ycd{bottom:329.070000px;}
.y3e{bottom:331.095000px;}
.y12e{bottom:336.090000px;}
.y90{bottom:336.675000px;}
.y10b{bottom:338.295000px;}
.y27{bottom:339.375000px;}
.ycc{bottom:347.115000px;}
.y3d{bottom:348.375000px;}
.y12d{bottom:353.415000px;}
.y8f{bottom:355.395000px;}
.y10a{bottom:355.575000px;}
.y26{bottom:356.835000px;}
.ycb{bottom:365.115000px;}
.y3c{bottom:365.655000px;}
.y12c{bottom:370.515000px;}
.y109{bottom:372.855000px;}
.y25{bottom:374.115000px;}
.y8e{bottom:377.355000px;}
.y3b{bottom:382.935000px;}
.yca{bottom:383.115000px;}
.y12b{bottom:387.795000px;}
.y108{bottom:390.135000px;}
.y24{bottom:391.575000px;}
.y8d{bottom:394.635000px;}
.y3a{bottom:400.035000px;}
.yc9{bottom:401.115000px;}
.y12a{bottom:405.075000px;}
.y107{bottom:407.415000px;}
.y23{bottom:408.855000px;}
.y8c{bottom:411.915000px;}
.y39{bottom:417.315000px;}
.yc8{bottom:419.115000px;}
.y129{bottom:422.355000px;}
.y106{bottom:424.515000px;}
.y22{bottom:426.315000px;}
.y8b{bottom:429.015000px;}
.y38{bottom:434.595000px;}
.yc7{bottom:437.115000px;}
.y128{bottom:439.635000px;}
.y105{bottom:441.795000px;}
.y21{bottom:443.955000px;}
.y8a{bottom:446.295000px;}
.y37{bottom:451.875000px;}
.yc6{bottom:455.115000px;}
.y127{bottom:456.915000px;}
.y104{bottom:459.075000px;}
.y89{bottom:463.575000px;}
.y36{bottom:469.155000px;}
.y20{bottom:471.315000px;}
.yc5{bottom:473.115000px;}
.y126{bottom:474.015000px;}
.y103{bottom:476.355000px;}
.y88{bottom:478.335000px;}
.y35{bottom:486.435000px;}
.y1f{bottom:488.955000px;}
.yc4{bottom:491.115000px;}
.y125{bottom:491.295000px;}
.y102{bottom:493.635000px;}
.y87{bottom:496.335000px;}
.y124{bottom:508.575000px;}
.yc3{bottom:509.115000px;}
.y101{bottom:510.735000px;}
.y86{bottom:514.335000px;}
.y123{bottom:525.855000px;}
.yc2{bottom:527.115000px;}
.y100{bottom:528.015000px;}
.y85{bottom:532.335000px;}
.y122{bottom:543.135000px;}
.yc1{bottom:545.115000px;}
.yff{bottom:545.295000px;}
.y84{bottom:550.335000px;}
.y121{bottom:560.235000px;}
.yfe{bottom:562.575000px;}
.yc0{bottom:563.115000px;}
.y83{bottom:568.335000px;}
.y120{bottom:577.515000px;}
.yfd{bottom:579.855000px;}
.ybf{bottom:581.115000px;}
.y82{bottom:586.335000px;}
.y11f{bottom:594.795000px;}
.yfc{bottom:597.135000px;}
.ybe{bottom:599.115000px;}
.y81{bottom:604.365000px;}
.y11e{bottom:612.105000px;}
.yfb{bottom:614.265000px;}
.ybd{bottom:617.145000px;}
.y80{bottom:622.365000px;}
.y11d{bottom:629.385000px;}
.yfa{bottom:631.545000px;}
.ybc{bottom:635.145000px;}
.y7f{bottom:640.365000px;}
.y11c{bottom:646.665000px;}
.yf9{bottom:648.825000px;}
.ybb{bottom:653.145000px;}
.y7e{bottom:658.365000px;}
.y11b{bottom:663.765000px;}
.yf8{bottom:666.105000px;}
.yba{bottom:671.145000px;}
.y7d{bottom:676.365000px;}
.y11a{bottom:681.045000px;}
.yf7{bottom:683.385000px;}
.yb9{bottom:689.145000px;}
.y7c{bottom:694.365000px;}
.y119{bottom:698.325000px;}
.yf6{bottom:700.665000px;}
.yb8{bottom:707.145000px;}
.y7b{bottom:715.605000px;}
.yf5{bottom:717.765000px;}
.yb7{bottom:725.145000px;}
.y7a{bottom:732.885000px;}
.yf4{bottom:735.045000px;}
.yb6{bottom:743.145000px;}
.y79{bottom:750.165000px;}
.yf3{bottom:752.325000px;}
.yb5{bottom:761.145000px;}
.y78{bottom:767.265000px;}
.yf2{bottom:769.605000px;}
.yb4{bottom:782.385000px;}
.y77{bottom:784.545000px;}
.yf1{bottom:786.885000px;}
.yb3{bottom:799.665000px;}
.y76{bottom:801.825000px;}
.yf0{bottom:804.165000px;}
.yb2{bottom:816.765000px;}
.y75{bottom:819.105000px;}
.yef{bottom:821.265000px;}
.y1b{bottom:828.825000px;}
.yb1{bottom:834.045000px;}
.yee{bottom:836.025000px;}
.y74{bottom:836.385000px;}
.yb0{bottom:851.325000px;}
.y73{bottom:853.485000px;}
.yed{bottom:854.025000px;}
.yf{bottom:858.525000px;}
.yaf{bottom:868.605000px;}
.y72{bottom:870.810000px;}
.yec{bottom:872.070000px;}
.yae{bottom:885.930000px;}
.y71{bottom:888.090000px;}
.yeb{bottom:890.070000px;}
.yad{bottom:903.030000px;}
.y70{bottom:905.370000px;}
.yea{bottom:908.070000px;}
.yac{bottom:920.310000px;}
.y6f{bottom:922.650000px;}
.ye9{bottom:926.070000px;}
.yab{bottom:937.590000px;}
.y6e{bottom:939.930000px;}
.ye8{bottom:944.070000px;}
.yaa{bottom:954.870000px;}
.y6d{bottom:957.030000px;}
.ye7{bottom:962.070000px;}
.ya9{bottom:970.350000px;}
.y6c{bottom:974.310000px;}
.ye6{bottom:980.070000px;}
.ya8{bottom:989.070000px;}
.y6b{bottom:991.590000px;}
.ye5{bottom:998.070000px;}
.ya7{bottom:1007.790000px;}
.y6a{bottom:1008.870000px;}
.ye4{bottom:1016.070000px;}
.y69{bottom:1026.150000px;}
.ya6{bottom:1026.690000px;}
.ye3{bottom:1034.070000px;}
.y68{bottom:1043.430000px;}
.ya5{bottom:1045.410000px;}
.yd{bottom:1048.470000px;}
.ye2{bottom:1052.070000px;}
.y67{bottom:1060.530000px;}
.ya4{bottom:1064.130000px;}
.ye1{bottom:1070.070000px;}
.y6{bottom:1073.850000px;}
.y66{bottom:1077.810000px;}
.ya3{bottom:1082.850000px;}
.ye0{bottom:1088.070000px;}
.y65{bottom:1095.090000px;}
.ya2{bottom:1101.570000px;}
.ydf{bottom:1106.070000px;}
.y64{bottom:1112.370000px;}
.ya1{bottom:1120.290000px;}
.yde{bottom:1124.070000px;}
.y63{bottom:1129.650000px;}
.ya0{bottom:1139.220000px;}
.ydd{bottom:1142.100000px;}
.y62{bottom:1146.960000px;}
.y9f{bottom:1157.940000px;}
.ydc{bottom:1160.100000px;}
.y61{bottom:1164.060000px;}
.y9e{bottom:1176.660000px;}
.ydb{bottom:1178.100000px;}
.y60{bottom:1181.340000px;}
.h20{height:17.100000px;}
.h1d{height:17.280000px;}
.h1e{height:17.316000px;}
.hb{height:25.020000px;}
.h1b{height:29.160000px;}
.h12{height:29.700000px;}
.h11{height:32.103633px;}
.h2{height:33.156000px;}
.h8{height:36.180000px;}
.h1c{height:42.164648px;}
.h19{height:42.186445px;}
.h1a{height:43.215117px;}
.h21{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h15{height:47.980898px;}
.h1f{height:48.995859px;}
.h18{height:49.255313px;}
.h17{height:49.742227px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:189.930000px;}
.h14{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w15{width:106.416000px;}
.w16{width:106.560000px;}
.w13{width:106.740000px;}
.w12{width:106.776000px;}
.wf{width:118.260000px;}
.we{width:128.916000px;}
.w5{width:151.950000px;}
.wb{width:182.730000px;}
.w8{width:223.275000px;}
.wa{width:380.415000px;}
.wd{width:497.085000px;}
.w9{width:524.055000px;}
.w14{width:531.645000px;}
.w11{width:532.365000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w17{width:745.350000px;}
.w10{width:745.890000px;}
.wc{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.380000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xc{left:25.776000px;}
.x1{left:72.360000px;}
.x19{left:73.620000px;}
.x4{left:80.999987px;}
.xe{left:93.270000px;}
.x5{left:98.130000px;}
.xf{left:108.750000px;}
.x10{left:149.610000px;}
.xd{left:160.950000px;}
.x12{left:215.175000px;}
.x20{left:217.109987px;}
.x6{left:224.850000px;}
.x15{left:230.969987px;}
.x11{left:232.815000px;}
.x18{left:243.389987px;}
.x1d{left:251.129987px;}
.x9{left:288.435000px;}
.x13{left:296.175000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x16{left:454.035000px;}
.xa{left:455.700000px;}
.x1b{left:571.605000px;}
.x1e{left:605.985000px;}
.x17{left:637.125000px;}
.x1c{left:701.250000px;}
.x1f{left:713.130000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.265067pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.077867pt;}
.ls13{letter-spacing:0.094720pt;}
.ls2{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.154027pt;}
.ls7{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.ls10{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls16{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-6.725120pt;}
._4{margin-left:-4.940160pt;}
._3{margin-left:-2.976000pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.928000pt;}
._1{width:1.056000pt;}
._c{width:1.974187pt;}
._b{width:3.234347pt;}
._15{width:4.315520pt;}
._f{width:5.377280pt;}
._e{width:6.374400pt;}
._d{width:7.277440pt;}
._13{width:8.293120pt;}
._16{width:9.620480pt;}
._14{width:10.949120pt;}
._6{width:11.898880pt;}
._a{width:14.314240pt;}
._9{width:15.511040pt;}
._8{width:16.535680pt;}
._7{width:17.628160pt;}
._17{width:19.235840pt;}
._11{width:20.769920pt;}
._10{width:22.044800pt;}
._5{width:24.016640pt;}
._12{width:25.570560pt;}
._18{width:27.417600pt;}
._19{width:28.311680pt;}
._1b{width:33.950080pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.160000pt;}
.y9b{bottom:2.874667pt;}
.y51{bottom:2.880000pt;}
.y1a{bottom:3.200000pt;}
.y3{bottom:3.232000pt;}
.yd9{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y1d{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y54{bottom:13.280000pt;}
.y4{bottom:15.552000pt;}
.y53{bottom:15.840000pt;}
.y2{bottom:17.952000pt;}
.y50{bottom:18.280000pt;}
.y19{bottom:21.160000pt;}
.yb{bottom:26.880000pt;}
.y4f{bottom:33.640000pt;}
.y18{bottom:35.240000pt;}
.y5{bottom:41.120000pt;}
.ya{bottom:41.280000pt;}
.y17{bottom:46.920000pt;}
.y4e{bottom:49.000000pt;}
.y16{bottom:58.600000pt;}
.y1{bottom:61.120000pt;}
.y4d{bottom:64.360000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:67.400000pt;}
.y4c{bottom:79.720000pt;}
.y14{bottom:80.360000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:93.960000pt;}
.y4b{bottom:94.920000pt;}
.y7{bottom:98.906667pt;}
.y9d{bottom:99.232000pt;}
.y5f{bottom:100.352000pt;}
.y118{bottom:101.472000pt;}
.y34{bottom:102.280000pt;}
.yda{bottom:105.792000pt;}
.y4a{bottom:110.280000pt;}
.y12{bottom:110.920000pt;}
.y5e{bottom:115.552000pt;}
.y9c{bottom:115.872000pt;}
.y33{bottom:115.880000pt;}
.y117{bottom:116.672000pt;}
.yd8{bottom:121.792000pt;}
.y49{bottom:125.640000pt;}
.y5d{bottom:130.912000pt;}
.y32{bottom:131.400000pt;}
.y116{bottom:132.032000pt;}
.y9a{bottom:132.512000pt;}
.y11{bottom:133.800000pt;}
.yd7{bottom:140.666667pt;}
.y48{bottom:141.000000pt;}
.y138{bottom:145.306667pt;}
.y5c{bottom:146.266667pt;}
.y31{bottom:146.760000pt;}
.y115{bottom:147.386667pt;}
.y99{bottom:149.146667pt;}
.y10{bottom:155.400000pt;}
.yd6{bottom:156.026667pt;}
.y47{bottom:156.360000pt;}
.y137{bottom:160.666667pt;}
.y5b{bottom:161.626667pt;}
.y30{bottom:162.120000pt;}
.y114{bottom:162.746667pt;}
.y98{bottom:165.786667pt;}
.yd5{bottom:171.386667pt;}
.y46{bottom:171.720000pt;}
.y136{bottom:176.026667pt;}
.y5a{bottom:176.986667pt;}
.y2f{bottom:177.960000pt;}
.y113{bottom:178.106667pt;}
.y97{bottom:182.426667pt;}
.yd4{bottom:186.746667pt;}
.y45{bottom:186.920000pt;}
.y135{bottom:191.386667pt;}
.y59{bottom:192.346667pt;}
.y112{bottom:193.306667pt;}
.y2e{bottom:193.320000pt;}
.y96{bottom:199.226667pt;}
.yd3{bottom:202.106667pt;}
.y44{bottom:202.280000pt;}
.y134{bottom:206.746667pt;}
.y58{bottom:207.546667pt;}
.y111{bottom:208.666667pt;}
.y2d{bottom:208.840000pt;}
.y95{bottom:215.866667pt;}
.yd2{bottom:217.306667pt;}
.y43{bottom:217.640000pt;}
.y133{bottom:222.106667pt;}
.y57{bottom:222.906667pt;}
.y110{bottom:224.026667pt;}
.y2c{bottom:224.360000pt;}
.y94{bottom:232.506667pt;}
.yd1{bottom:232.666667pt;}
.y42{bottom:233.000000pt;}
.y132{bottom:237.306667pt;}
.y56{bottom:238.266667pt;}
.y10f{bottom:239.386667pt;}
.y2b{bottom:239.720000pt;}
.yd0{bottom:248.026667pt;}
.y41{bottom:248.386667pt;}
.y93{bottom:249.146667pt;}
.y131{bottom:252.666667pt;}
.y55{bottom:253.626667pt;}
.y10e{bottom:254.746667pt;}
.y2a{bottom:255.266667pt;}
.ycf{bottom:263.386667pt;}
.y40{bottom:263.746667pt;}
.y92{bottom:265.786667pt;}
.y52{bottom:266.106667pt;}
.y130{bottom:268.026667pt;}
.y10d{bottom:270.106667pt;}
.y29{bottom:270.786667pt;}
.yce{bottom:276.506667pt;}
.y3f{bottom:278.946667pt;}
.y91{bottom:282.426667pt;}
.y12f{bottom:283.386667pt;}
.y10c{bottom:285.306667pt;}
.y28{bottom:286.146667pt;}
.y1e{bottom:292.026667pt;}
.ycd{bottom:292.506667pt;}
.y3e{bottom:294.306667pt;}
.y12e{bottom:298.746667pt;}
.y90{bottom:299.266667pt;}
.y10b{bottom:300.706667pt;}
.y27{bottom:301.666667pt;}
.ycc{bottom:308.546667pt;}
.y3d{bottom:309.666667pt;}
.y12d{bottom:314.146667pt;}
.y8f{bottom:315.906667pt;}
.y10a{bottom:316.066667pt;}
.y26{bottom:317.186667pt;}
.ycb{bottom:324.546667pt;}
.y3c{bottom:325.026667pt;}
.y12c{bottom:329.346667pt;}
.y109{bottom:331.426667pt;}
.y25{bottom:332.546667pt;}
.y8e{bottom:335.426667pt;}
.y3b{bottom:340.386667pt;}
.yca{bottom:340.546667pt;}
.y12b{bottom:344.706667pt;}
.y108{bottom:346.786667pt;}
.y24{bottom:348.066667pt;}
.y8d{bottom:350.786667pt;}
.y3a{bottom:355.586667pt;}
.yc9{bottom:356.546667pt;}
.y12a{bottom:360.066667pt;}
.y107{bottom:362.146667pt;}
.y23{bottom:363.426667pt;}
.y8c{bottom:366.146667pt;}
.y39{bottom:370.946667pt;}
.yc8{bottom:372.546667pt;}
.y129{bottom:375.426667pt;}
.y106{bottom:377.346667pt;}
.y22{bottom:378.946667pt;}
.y8b{bottom:381.346667pt;}
.y38{bottom:386.306667pt;}
.yc7{bottom:388.546667pt;}
.y128{bottom:390.786667pt;}
.y105{bottom:392.706667pt;}
.y21{bottom:394.626667pt;}
.y8a{bottom:396.706667pt;}
.y37{bottom:401.666667pt;}
.yc6{bottom:404.546667pt;}
.y127{bottom:406.146667pt;}
.y104{bottom:408.066667pt;}
.y89{bottom:412.066667pt;}
.y36{bottom:417.026667pt;}
.y20{bottom:418.946667pt;}
.yc5{bottom:420.546667pt;}
.y126{bottom:421.346667pt;}
.y103{bottom:423.426667pt;}
.y88{bottom:425.186667pt;}
.y35{bottom:432.386667pt;}
.y1f{bottom:434.626667pt;}
.yc4{bottom:436.546667pt;}
.y125{bottom:436.706667pt;}
.y102{bottom:438.786667pt;}
.y87{bottom:441.186667pt;}
.y124{bottom:452.066667pt;}
.yc3{bottom:452.546667pt;}
.y101{bottom:453.986667pt;}
.y86{bottom:457.186667pt;}
.y123{bottom:467.426667pt;}
.yc2{bottom:468.546667pt;}
.y100{bottom:469.346667pt;}
.y85{bottom:473.186667pt;}
.y122{bottom:482.786667pt;}
.yc1{bottom:484.546667pt;}
.yff{bottom:484.706667pt;}
.y84{bottom:489.186667pt;}
.y121{bottom:497.986667pt;}
.yfe{bottom:500.066667pt;}
.yc0{bottom:500.546667pt;}
.y83{bottom:505.186667pt;}
.y120{bottom:513.346667pt;}
.yfd{bottom:515.426667pt;}
.ybf{bottom:516.546667pt;}
.y82{bottom:521.186667pt;}
.y11f{bottom:528.706667pt;}
.yfc{bottom:530.786667pt;}
.ybe{bottom:532.546667pt;}
.y81{bottom:537.213333pt;}
.y11e{bottom:544.093333pt;}
.yfb{bottom:546.013333pt;}
.ybd{bottom:548.573333pt;}
.y80{bottom:553.213333pt;}
.y11d{bottom:559.453333pt;}
.yfa{bottom:561.373333pt;}
.ybc{bottom:564.573333pt;}
.y7f{bottom:569.213333pt;}
.y11c{bottom:574.813333pt;}
.yf9{bottom:576.733333pt;}
.ybb{bottom:580.573333pt;}
.y7e{bottom:585.213333pt;}
.y11b{bottom:590.013333pt;}
.yf8{bottom:592.093333pt;}
.yba{bottom:596.573333pt;}
.y7d{bottom:601.213333pt;}
.y11a{bottom:605.373333pt;}
.yf7{bottom:607.453333pt;}
.yb9{bottom:612.573333pt;}
.y7c{bottom:617.213333pt;}
.y119{bottom:620.733333pt;}
.yf6{bottom:622.813333pt;}
.yb8{bottom:628.573333pt;}
.y7b{bottom:636.093333pt;}
.yf5{bottom:638.013333pt;}
.yb7{bottom:644.573333pt;}
.y7a{bottom:651.453333pt;}
.yf4{bottom:653.373333pt;}
.yb6{bottom:660.573333pt;}
.y79{bottom:666.813333pt;}
.yf3{bottom:668.733333pt;}
.yb5{bottom:676.573333pt;}
.y78{bottom:682.013333pt;}
.yf2{bottom:684.093333pt;}
.yb4{bottom:695.453333pt;}
.y77{bottom:697.373333pt;}
.yf1{bottom:699.453333pt;}
.yb3{bottom:710.813333pt;}
.y76{bottom:712.733333pt;}
.yf0{bottom:714.813333pt;}
.yb2{bottom:726.013333pt;}
.y75{bottom:728.093333pt;}
.yef{bottom:730.013333pt;}
.y1b{bottom:736.733333pt;}
.yb1{bottom:741.373333pt;}
.yee{bottom:743.133333pt;}
.y74{bottom:743.453333pt;}
.yb0{bottom:756.733333pt;}
.y73{bottom:758.653333pt;}
.yed{bottom:759.133333pt;}
.yf{bottom:763.133333pt;}
.yaf{bottom:772.093333pt;}
.y72{bottom:774.053333pt;}
.yec{bottom:775.173333pt;}
.yae{bottom:787.493333pt;}
.y71{bottom:789.413333pt;}
.yeb{bottom:791.173333pt;}
.yad{bottom:802.693333pt;}
.y70{bottom:804.773333pt;}
.yea{bottom:807.173333pt;}
.yac{bottom:818.053333pt;}
.y6f{bottom:820.133333pt;}
.ye9{bottom:823.173333pt;}
.yab{bottom:833.413333pt;}
.y6e{bottom:835.493333pt;}
.ye8{bottom:839.173333pt;}
.yaa{bottom:848.773333pt;}
.y6d{bottom:850.693333pt;}
.ye7{bottom:855.173333pt;}
.ya9{bottom:862.533333pt;}
.y6c{bottom:866.053333pt;}
.ye6{bottom:871.173333pt;}
.ya8{bottom:879.173333pt;}
.y6b{bottom:881.413333pt;}
.ye5{bottom:887.173333pt;}
.ya7{bottom:895.813333pt;}
.y6a{bottom:896.773333pt;}
.ye4{bottom:903.173333pt;}
.y69{bottom:912.133333pt;}
.ya6{bottom:912.613333pt;}
.ye3{bottom:919.173333pt;}
.y68{bottom:927.493333pt;}
.ya5{bottom:929.253333pt;}
.yd{bottom:931.973333pt;}
.ye2{bottom:935.173333pt;}
.y67{bottom:942.693333pt;}
.ya4{bottom:945.893333pt;}
.ye1{bottom:951.173333pt;}
.y6{bottom:954.533333pt;}
.y66{bottom:958.053333pt;}
.ya3{bottom:962.533333pt;}
.ye0{bottom:967.173333pt;}
.y65{bottom:973.413333pt;}
.ya2{bottom:979.173333pt;}
.ydf{bottom:983.173333pt;}
.y64{bottom:988.773333pt;}
.ya1{bottom:995.813333pt;}
.yde{bottom:999.173333pt;}
.y63{bottom:1004.133333pt;}
.ya0{bottom:1012.640000pt;}
.ydd{bottom:1015.200000pt;}
.y62{bottom:1019.520000pt;}
.y9f{bottom:1029.280000pt;}
.ydc{bottom:1031.200000pt;}
.y61{bottom:1034.720000pt;}
.y9e{bottom:1045.920000pt;}
.ydb{bottom:1047.200000pt;}
.y60{bottom:1050.080000pt;}
.h20{height:15.200000pt;}
.h1d{height:15.360000pt;}
.h1e{height:15.392000pt;}
.hb{height:22.240000pt;}
.h1b{height:25.920000pt;}
.h12{height:26.400000pt;}
.h11{height:28.536563pt;}
.h2{height:29.472000pt;}
.h8{height:32.160000pt;}
.h1c{height:37.479688pt;}
.h19{height:37.499062pt;}
.h1a{height:38.413438pt;}
.h21{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h15{height:42.649687pt;}
.h1f{height:43.551875pt;}
.h18{height:43.782500pt;}
.h17{height:44.215312pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:168.826667pt;}
.h14{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w15{width:94.592000pt;}
.w16{width:94.720000pt;}
.w13{width:94.880000pt;}
.w12{width:94.912000pt;}
.wf{width:105.120000pt;}
.we{width:114.592000pt;}
.w5{width:135.066667pt;}
.wb{width:162.426667pt;}
.w8{width:198.466667pt;}
.wa{width:338.146667pt;}
.wd{width:441.853333pt;}
.w9{width:465.826667pt;}
.w14{width:472.573333pt;}
.w11{width:473.213333pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w17{width:662.533333pt;}
.w10{width:663.013333pt;}
.wc{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.560000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xc{left:22.912000pt;}
.x1{left:64.320000pt;}
.x19{left:65.440000pt;}
.x4{left:71.999988pt;}
.xe{left:82.906667pt;}
.x5{left:87.226667pt;}
.xf{left:96.666667pt;}
.x10{left:132.986667pt;}
.xd{left:143.066667pt;}
.x12{left:191.266667pt;}
.x20{left:192.986655pt;}
.x6{left:199.866667pt;}
.x15{left:205.306655pt;}
.x11{left:206.946667pt;}
.x18{left:216.346655pt;}
.x1d{left:223.226655pt;}
.x9{left:256.386667pt;}
.x13{left:263.266667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x16{left:403.586667pt;}
.xa{left:405.066667pt;}
.x1b{left:508.093333pt;}
.x1e{left:538.653333pt;}
.x17{left:566.333333pt;}
.x1c{left:623.333333pt;}
.x1f{left:633.893333pt;}
.x3{left:663.013333pt;}
}




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