
    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_fe4afeff204700857d5d8aab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_1f01f120c8e803f536bce44b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_c19f1302b1ea6dff79654a79.woff')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_4786a2375f1165bd308900f8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_d25d3f91a8cf841f96d183fc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_edb2699d5ceee7cf63f6447e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_160a83e243e5ce7c0c952666.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_2a021338726364b2634d986a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_533861a276aca57405cbd7e9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_fa49075a7a7084bfc74c8d1d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_5a21bfdcbf09112131937fd8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.030273;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_b5e4a88a0ec7a528e0f3c64d.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b315dba3b53962d3a7d31923.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8da7c3e2d1d110350669e1a9.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff11{font-family:ff11;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-8.880000px;}
.lsb{letter-spacing:-5.688000px;}
.ls12{letter-spacing:-1.152000px;}
.lsf{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.245400px;}
.ls7{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.178800px;}
.ls1e{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.141000px;}
.ls1f{letter-spacing:0.144600px;}
.ls9{letter-spacing:0.162720px;}
.ls1b{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.238320px;}
.ls3{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.296400px;}
.ls21{letter-spacing:0.317400px;}
.ls1a{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.486000px;}
.ls0{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.958320px;}
.ls20{letter-spacing:7.218720px;}
.lsa{letter-spacing:41.754720px;}
.ls1{letter-spacing:54.840000px;}
.ls15{letter-spacing:54.864000px;}
.lsd{letter-spacing:64.002720px;}
.ls2{letter-spacing:70.344000px;}
.lse{letter-spacing:844.140000px;}
.ls17{letter-spacing:849.144000px;}
.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;}
}
.wsb{word-spacing:-95.760000px;}
.ws1{word-spacing:-72.000000px;}
.ws9{word-spacing:-59.760000px;}
.ws1a{word-spacing:-23.206320px;}
.ws0{word-spacing:-22.960920px;}
.ws19{word-spacing:-18.799080px;}
.ws8{word-spacing:-18.481680px;}
.ws15{word-spacing:-18.302880px;}
.ws17{word-spacing:-15.111240px;}
.ws13{word-spacing:-15.048000px;}
.ws3{word-spacing:-14.904000px;}
.ws14{word-spacing:-14.832000px;}
.wse{word-spacing:-14.688000px;}
.ws4{word-spacing:-14.616000px;}
.ws7{word-spacing:-14.544000px;}
.ws16{word-spacing:-14.472000px;}
.ws10{word-spacing:-14.400000px;}
.ws2{word-spacing:-14.328000px;}
.wsf{word-spacing:-14.112000px;}
.wsa{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.464000px;}
.ws18{word-spacing:-12.131280px;}
.wsd{word-spacing:-11.448000px;}
.ws11{word-spacing:-10.926000px;}
.ws6{word-spacing:-8.928000px;}
.ws12{word-spacing:-5.736000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-17.400480px;}
._9{margin-left:-12.904800px;}
._6{margin-left:-11.162400px;}
._8{margin-left:-9.823200px;}
._3{margin-left:-8.355120px;}
._7{margin-left:-6.556800px;}
._2{margin-left:-5.147040px;}
._1{margin-left:-3.926160px;}
._0{margin-left:-1.915200px;}
._4{width:1.281600px;}
._a{width:2.312160px;}
._b{width:5.544000px;}
._c{width:9.102960px;}
.fc6{color:rgb(21,61,99);}
.fc4{color:rgb(70,120,134);}
.fc5{color:rgb(14,40,65);}
.fc3{color:rgb(238,0,0);}
.fc1{color:rgb(15,71,97);}
.fc2{color:rgb(74,74,74);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y12e{bottom:4.140000px;}
.y167{bottom:5.040000px;}
.y1a5{bottom:5.085000px;}
.y182{bottom:5.220000px;}
.y117{bottom:6.120000px;}
.y11e{bottom:6.165000px;}
.y12b{bottom:7.560000px;}
.y13a{bottom:7.770000px;}
.y136{bottom:22.320000px;}
.y12d{bottom:22.500000px;}
.y130{bottom:22.545000px;}
.y1b8{bottom:26.994000px;}
.y16c{bottom:27.000000px;}
.y178{bottom:27.030000px;}
.y17f{bottom:27.045000px;}
.y176{bottom:27.174000px;}
.y170{bottom:27.180000px;}
.y191{bottom:48.954000px;}
.y16b{bottom:48.960000px;}
.y19a{bottom:48.990000px;}
.y17e{bottom:49.005000px;}
.y16f{bottom:49.140000px;}
.y190{bottom:70.914000px;}
.y16a{bottom:70.920000px;}
.y193{bottom:70.950000px;}
.y19e{bottom:70.965000px;}
.y17a{bottom:71.100000px;}
.y17d{bottom:71.145000px;}
.y18f{bottom:92.874000px;}
.y174{bottom:92.880000px;}
.y1c7{bottom:92.910000px;}
.y19d{bottom:92.925000px;}
.y169{bottom:93.060000px;}
.y197{bottom:93.105000px;}
.y25{bottom:111.996000px;}
.y18e{bottom:112.356000px;}
.y13d{bottom:113.436000px;}
.y18b{bottom:114.840000px;}
.y1c6{bottom:114.870000px;}
.y1c0{bottom:114.885000px;}
.y1c4{bottom:115.020000px;}
.y196{bottom:115.065000px;}
.y1a0{bottom:115.236000px;}
.yff{bottom:116.856000px;}
.ya6{bottom:119.016000px;}
.y4b{bottom:120.456000px;}
.y1cb{bottom:124.776000px;}
.y1b7{bottom:126.036000px;}
.y24{bottom:130.356000px;}
.y23{bottom:135.576000px;}
.y18a{bottom:136.800000px;}
.y1c5{bottom:136.830000px;}
.y1c3{bottom:136.980000px;}
.y175{bottom:137.016000px;}
.y1bf{bottom:137.025000px;}
.y12a{bottom:137.916000px;}
.y95{bottom:139.536000px;}
.y13c{bottom:141.696000px;}
.y15d{bottom:143.676000px;}
.ya5{bottom:144.396000px;}
.y4a{bottom:145.836000px;}
.y22{bottom:148.716000px;}
.y21{bottom:153.930000px;}
.yfe{bottom:154.290000px;}
.yb9{bottom:155.190000px;}
.y189{bottom:158.760000px;}
.y1c2{bottom:158.940000px;}
.y1be{bottom:158.985000px;}
.y94{bottom:164.910000px;}
.y129{bottom:165.990000px;}
.y20{bottom:167.790000px;}
.y15c{bottom:169.050000px;}
.y1ca{bottom:169.410000px;}
.ya4{bottom:169.950000px;}
.y6c{bottom:170.130000px;}
.y1b6{bottom:170.670000px;}
.y49{bottom:171.210000px;}
.y188{bottom:180.720000px;}
.y173{bottom:181.830000px;}
.y19f{bottom:182.010000px;}
.y93{bottom:190.470000px;}
.yb8{bottom:190.830000px;}
.yfd{bottom:191.730000px;}
.y6b{bottom:195.690000px;}
.y48{bottom:196.770000px;}
.y187{bottom:202.680000px;}
.ya3{bottom:205.590000px;}
.y15b{bottom:206.490000px;}
.yd1{bottom:210.810000px;}
.y1c9{bottom:214.050000px;}
.y1b5{bottom:215.310000px;}
.y92{bottom:215.850000px;}
.y47{bottom:218.730000px;}
.yb7{bottom:219.090000px;}
.y6a{bottom:221.070000px;}
.y18d{bottom:222.870000px;}
.yfc{bottom:229.170000px;}
.y15a{bottom:232.050000px;}
.ya2{bottom:233.850000px;}
.y1f{bottom:237.990000px;}
.y46{bottom:240.690000px;}
.y91{bottom:241.230000px;}
.yd0{bottom:241.770000px;}
.ye3{bottom:243.570000px;}
.y159{bottom:257.430000px;}
.y69{bottom:258.510000px;}
.y1b4{bottom:260.130000px;}
.y45{bottom:262.650000px;}
.ydc{bottom:265.710000px;}
.yfb{bottom:266.610000px;}
.y18c{bottom:267.510000px;}
.ycf{bottom:269.130000px;}
.y90{bottom:269.670000px;}
.y19c{bottom:270.570000px;}
.y1e{bottom:270.930000px;}
.y10d{bottom:277.410000px;}
.ye2{bottom:279.210000px;}
.y158{bottom:283.035000px;}
.y68{bottom:283.935000px;}
.y44{bottom:284.655000px;}
.y172{bottom:292.395000px;}
.y1d{bottom:296.355000px;}
.ydb{bottom:303.195000px;}
.yfa{bottom:304.095000px;}
.y1b3{bottom:304.815000px;}
.y43{bottom:306.615000px;}
.ye1{bottom:307.515000px;}
.y67{bottom:309.495000px;}
.y186{bottom:312.375000px;}
.y8f{bottom:312.735000px;}
.y10c{bottom:313.095000px;}
.y157{bottom:320.475000px;}
.y42{bottom:328.575000px;}
.y1c{bottom:329.295000px;}
.y66{bottom:334.875000px;}
.y8e{bottom:338.115000px;}
.yf9{bottom:339.735000px;}
.yda{bottom:340.635000px;}
.y10b{bottom:341.355000px;}
.y114{bottom:342.615000px;}
.y156{bottom:345.855000px;}
.y1c8{bottom:346.755000px;}
.y1b2{bottom:349.455000px;}
.y41{bottom:350.535000px;}
.y79{bottom:353.775000px;}
.y1b{bottom:362.235000px;}
.y8d{bottom:363.675000px;}
.yf8{bottom:367.995000px;}
.y155{bottom:371.235000px;}
.y65{bottom:372.315000px;}
.y40{bottom:372.495000px;}
.yd9{bottom:376.275000px;}
.y113{bottom:378.255000px;}
.ya1{bottom:380.415000px;}
.y171{bottom:381.135000px;}
.y19b{bottom:381.315000px;}
.y105{bottom:387.795000px;}
.y8c{bottom:389.055000px;}
.y1b1{bottom:394.275000px;}
.y1a{bottom:395.175000px;}
.y78{bottom:396.795000px;}
.y64{bottom:397.875000px;}
.y3f{bottom:400.935000px;}
.yd8{bottom:404.535000px;}
.ya0{bottom:405.795000px;}
.y112{bottom:406.515000px;}
.ye9{bottom:407.955000px;}
.y154{bottom:408.675000px;}
.y8b{bottom:414.615000px;}
.y77{bottom:422.175000px;}
.y63{bottom:423.255000px;}
.y104{bottom:423.435000px;}
.yce{bottom:424.695000px;}
.y19{bottom:428.115000px;}
.yf1{bottom:430.455000px;}
.y9f{bottom:431.175000px;}
.y153{bottom:434.235000px;}
.ye8{bottom:436.215000px;}
.y1b0{bottom:438.915000px;}
.y8a{bottom:439.995000px;}
.y3e{bottom:440.535000px;}
.y76{bottom:447.735000px;}
.y103{bottom:451.695000px;}
.y9e{bottom:456.735000px;}
.y152{bottom:459.615000px;}
.y62{bottom:460.695000px;}
.y18{bottom:461.055000px;}
.ycd{bottom:462.315000px;}
.y3d{bottom:462.495000px;}
.yf0{bottom:466.095000px;}
.y89{bottom:468.255000px;}
.y75{bottom:473.115000px;}
.y10a{bottom:479.415000px;}
.y9d{bottom:482.115000px;}
.y3c{bottom:484.455000px;}
.y61{bottom:486.255000px;}
.ycc{bottom:487.695000px;}
.ye0{bottom:490.035000px;}
.y17{bottom:493.995000px;}
.yef{bottom:494.175000px;}
.y151{bottom:497.055000px;}
.y74{bottom:498.495000px;}
.y1af{bottom:505.515000px;}
.y3b{bottom:506.415000px;}
.y9c{bottom:507.675000px;}
.y88{bottom:509.475000px;}
.y60{bottom:511.635000px;}
.y109{bottom:512.715000px;}
.ycb{bottom:513.075000px;}
.y16e{bottom:514.335000px;}
.yf7{bottom:519.915000px;}
.ydf{bottom:525.675000px;}
.y16{bottom:527.115000px;}
.y3a{bottom:529.635000px;}
.y185{bottom:532.875000px;}
.y199{bottom:535.755000px;}
.y9b{bottom:535.935000px;}
.y87{bottom:537.735000px;}
.yca{bottom:538.635000px;}
.y111{bottom:540.075000px;}
.y13b{bottom:541.695000px;}
.y73{bottom:542.055000px;}
.yd7{bottom:549.255000px;}
.y108{bottom:550.155000px;}
.y1ae{bottom:550.335000px;}
.y39{bottom:551.595000px;}
.yf6{bottom:553.215000px;}
.yde{bottom:553.935000px;}
.y5f{bottom:554.835000px;}
.y139{bottom:559.335000px;}
.y150{bottom:560.595000px;}
.yc9{bottom:564.015000px;}
.y15{bottom:564.585000px;}
.y72{bottom:567.465000px;}
.y110{bottom:571.605000px;}
.yec{bottom:575.565000px;}
.y102{bottom:576.825000px;}
.y9a{bottom:577.185000px;}
.y184{bottom:577.545000px;}
.y5e{bottom:580.245000px;}
.y16d{bottom:581.145000px;}
.y138{bottom:581.865000px;}
.yb6{bottom:582.405000px;}
.yd6{bottom:582.585000px;}
.y107{bottom:585.825000px;}
.y14f{bottom:586.005000px;}
.yf5{bottom:588.885000px;}
.y38{bottom:590.145000px;}
.y71{bottom:593.025000px;}
.y1ad{bottom:595.005000px;}
.yc8{bottom:601.485000px;}
.y14{bottom:602.025000px;}
.y10f{bottom:602.925000px;}
.y99{bottom:605.265000px;}
.y128{bottom:608.325000px;}
.y101{bottom:610.125000px;}
.yeb{bottom:611.205000px;}
.y14e{bottom:611.385000px;}
.ye7{bottom:612.465000px;}
.y106{bottom:614.085000px;}
.y37{bottom:615.705000px;}
.yf4{bottom:617.145000px;}
.y1ac{bottom:617.685000px;}
.yd5{bottom:618.225000px;}
.y70{bottom:618.405000px;}
.yee{bottom:618.765000px;}
.y137{bottom:619.305000px;}
.yb5{bottom:619.845000px;}
.y183{bottom:622.185000px;}
.y5d{bottom:623.445000px;}
.y198{bottom:624.525000px;}
.yc7{bottom:627.045000px;}
.y10e{bottom:631.185000px;}
.y1c1{bottom:633.885000px;}
.y14d{bottom:636.945000px;}
.y13{bottom:639.465000px;}
.y1ab{bottom:640.365000px;}
.y36{bottom:641.085000px;}
.y6f{bottom:643.785000px;}
.ye6{bottom:645.765000px;}
.y127{bottom:645.945000px;}
.yd4{bottom:646.485000px;}
.yed{bottom:647.025000px;}
.y168{bottom:647.745000px;}
.y5c{bottom:648.645000px;}
.y135{bottom:656.745000px;}
.yb4{bottom:657.285000px;}
.y14c{bottom:662.325000px;}
.y1aa{bottom:663.225000px;}
.y126{bottom:663.585000px;}
.yc6{bottom:664.485000px;}
.y86{bottom:664.665000px;}
.y181{bottom:666.825000px;}
.y100{bottom:674.025000px;}
.y12{bottom:676.905000px;}
.y35{bottom:678.525000px;}
.ye5{bottom:681.405000px;}
.yb3{bottom:682.665000px;}
.y125{bottom:686.085000px;}
.y6e{bottom:687.345000px;}
.y14b{bottom:687.885000px;}
.y85{bottom:690.225000px;}
.y5b{bottom:692.205000px;}
.y134{bottom:694.005000px;}
.yc5{bottom:701.925000px;}
.y11{bottom:702.285000px;}
.y34{bottom:704.085000px;}
.y1a9{bottom:707.865000px;}
.y124{bottom:708.585000px;}
.yb2{bottom:709.305000px;}
.ye4{bottom:709.665000px;}
.y133{bottom:716.505000px;}
.y5a{bottom:717.585000px;}
.y84{bottom:718.485000px;}
.y14a{bottom:722.265000px;}
.y6d{bottom:725.865000px;}
.yc4{bottom:727.305000px;}
.y10{bottom:728.925000px;}
.y33{bottom:729.465000px;}
.y123{bottom:731.085000px;}
.y98{bottom:731.805000px;}
.yb1{bottom:735.945000px;}
.y59{bottom:743.145000px;}
.y1a8{bottom:752.505000px;}
.y122{bottom:753.585000px;}
.yc3{bottom:753.945000px;}
.yf{bottom:754.305000px;}
.y32{bottom:754.845000px;}
.y180{bottom:755.565000px;}
.y166{bottom:758.445000px;}
.y83{bottom:759.705000px;}
.yb0{bottom:762.585000px;}
.y97{bottom:767.265000px;}
.y58{bottom:768.525000px;}
.y121{bottom:776.085000px;}
.y132{bottom:776.445000px;}
.y149{bottom:776.805000px;}
.y195{bottom:778.965000px;}
.yc2{bottom:779.325000px;}
.ye{bottom:781.125000px;}
.y82{bottom:787.965000px;}
.yaf{bottom:789.225000px;}
.y31{bottom:792.285000px;}
.y57{bottom:793.905000px;}
.y96{bottom:795.525000px;}
.y1a7{bottom:797.325000px;}
.y120{bottom:798.585000px;}
.y148{bottom:798.765000px;}
.y131{bottom:798.945000px;}
.y165{bottom:800.205000px;}
.yc1{bottom:806.145000px;}
.yd{bottom:806.505000px;}
.y1bd{bottom:810.465000px;}
.y30{bottom:817.665000px;}
.y56{bottom:819.465000px;}
.y1a6{bottom:820.005000px;}
.y147{bottom:820.725000px;}
.y11f{bottom:821.085000px;}
.y17c{bottom:822.165000px;}
.yae{bottom:827.925000px;}
.yc0{bottom:831.525000px;}
.y164{bottom:834.765000px;}
.y12f{bottom:836.205000px;}
.y1a4{bottom:842.685000px;}
.y11d{bottom:843.585000px;}
.y146{bottom:843.765000px;}
.y2f{bottom:844.485000px;}
.y55{bottom:844.845000px;}
.yc{bottom:845.205000px;}
.yad{bottom:853.350000px;}
.ybf{bottom:858.210000px;}
.y1a3{bottom:865.410000px;}
.y145{bottom:865.770000px;}
.y11c{bottom:866.130000px;}
.y2e{bottom:869.910000px;}
.y54{bottom:870.450000px;}
.yb{bottom:870.630000px;}
.y163{bottom:872.070000px;}
.y12c{bottom:873.690000px;}
.yac{bottom:878.910000px;}
.ybe{bottom:883.590000px;}
.y144{bottom:887.910000px;}
.y11b{bottom:888.630000px;}
.y53{bottom:895.830000px;}
.ya{bottom:896.190000px;}
.y2d{bottom:896.550000px;}
.y143{bottom:909.870000px;}
.y1a2{bottom:910.230000px;}
.y17b{bottom:910.950000px;}
.y11a{bottom:911.130000px;}
.y194{bottom:911.670000px;}
.y162{bottom:914.370000px;}
.yab{bottom:916.350000px;}
.y52{bottom:921.210000px;}
.y9{bottom:921.570000px;}
.y2c{bottom:921.930000px;}
.ybd{bottom:922.290000px;}
.y142{bottom:931.830000px;}
.y119{bottom:933.630000px;}
.y81{bottom:936.870000px;}
.yaa{bottom:941.730000px;}
.ybc{bottom:947.850000px;}
.y141{bottom:954.870000px;}
.y118{bottom:956.130000px;}
.y8{bottom:958.830000px;}
.y2b{bottom:960.630000px;}
.y80{bottom:962.250000px;}
.ya9{bottom:967.290000px;}
.y51{bottom:967.650000px;}
.ybb{bottom:973.230000px;}
.y140{bottom:976.830000px;}
.y116{bottom:978.630000px;}
.y161{bottom:981.150000px;}
.y2a{bottom:986.190000px;}
.y1bc{bottom:987.090000px;}
.y7f{bottom:987.630000px;}
.ya8{bottom:992.670000px;}
.yba{bottom:998.610000px;}
.y1a1{bottom:998.790000px;}
.y13f{bottom:998.970000px;}
.y50{bottom:1010.670000px;}
.y29{bottom:1011.570000px;}
.y7e{bottom:1013.190000px;}
.yf3{bottom:1015.710000px;}
.y115{bottom:1019.850000px;}
.y13e{bottom:1020.930000px;}
.ya7{bottom:1021.110000px;}
.y179{bottom:1021.470000px;}
.y7{bottom:1022.370000px;}
.y160{bottom:1024.170000px;}
.y1cd{bottom:1025.790000px;}
.y1bb{bottom:1029.030000px;}
.y4f{bottom:1036.050000px;}
.y28{bottom:1037.130000px;}
.y7d{bottom:1038.570000px;}
.ydd{bottom:1041.090000px;}
.y1cc{bottom:1043.430000px;}
.y5{bottom:1047.930000px;}
.y15f{bottom:1049.550000px;}
.yf2{bottom:1053.150000px;}
.y6{bottom:1053.870000px;}
.y4e{bottom:1061.610000px;}
.y1ba{bottom:1062.150000px;}
.y7c{bottom:1064.130000px;}
.y192{bottom:1066.290000px;}
.yea{bottom:1066.470000px;}
.y3{bottom:1073.310000px;}
.y27{bottom:1074.390000px;}
.y15e{bottom:1075.110000px;}
.yd3{bottom:1078.530000px;}
.y4{bottom:1079.250000px;}
.y4d{bottom:1086.990000px;}
.y7b{bottom:1089.510000px;}
.y1b9{bottom:1095.450000px;}
.y2{bottom:1103.010000px;}
.yd2{bottom:1103.910000px;}
.y177{bottom:1110.210000px;}
.y4c{bottom:1112.550000px;}
.y7a{bottom:1126.770000px;}
.y1{bottom:1132.380000px;}
.y26{bottom:1137.960000px;}
.hc{height:21.780000px;}
.he{height:21.816000px;}
.h13{height:21.960000px;}
.h23{height:21.996000px;}
.h9{height:31.201172px;}
.h5{height:36.091406px;}
.h11{height:36.540000px;}
.hf{height:36.720000px;}
.h10{height:36.756000px;}
.h1e{height:43.920000px;}
.h1a{height:43.956000px;}
.h19{height:44.100000px;}
.hb{height:46.669922px;}
.ha{height:51.793945px;}
.h12{height:51.881484px;}
.h4{height:62.226562px;}
.h6{height:62.402344px;}
.h8{height:62.507812px;}
.h15{height:65.880000px;}
.hd{height:65.884219px;}
.h28{height:66.060000px;}
.h16{height:66.096000px;}
.h3{height:80.937773px;}
.h2{height:82.761328px;}
.h17{height:87.840000px;}
.h20{height:87.876000px;}
.h1b{height:88.020000px;}
.h1d{height:88.056000px;}
.h7{height:103.918359px;}
.h1c{height:109.800000px;}
.h18{height:109.836000px;}
.h14{height:109.980000px;}
.h27{height:131.940000px;}
.h22{height:131.976000px;}
.h21{height:153.720000px;}
.h26{height:153.750000px;}
.h25{height:175.860000px;}
.h24{height:175.890000px;}
.h1f{height:219.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:105.480000px;}
.wa{width:116.100000px;}
.w7{width:200.910000px;}
.w6{width:214.950000px;}
.w8{width:216.210000px;}
.wc{width:254.010000px;}
.w9{width:264.810000px;}
.w5{width:265.035000px;}
.w4{width:286.410000px;}
.wb{width:293.250000px;}
.we{width:350.175000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:7.740000px;}
.xa{left:108.035987px;}
.xe{left:112.895987px;}
.x1{left:120.095987px;}
.xb{left:135.035987px;}
.xc{left:162.029987px;}
.x3d{left:170.490000px;}
.x2{left:230.249987px;}
.x3{left:234.389987px;}
.x19{left:255.089987px;}
.x31{left:259.409987px;}
.x10{left:261.929987px;}
.x37{left:288.029987px;}
.x2f{left:296.714987px;}
.x28{left:299.414987px;}
.x34{left:301.574987px;}
.x16{left:304.274987px;}
.x3b{left:308.234987px;}
.x43{left:311.294987px;}
.x6{left:317.414987px;}
.x1d{left:320.654987px;}
.x2d{left:322.454987px;}
.xd{left:324.074987px;}
.x35{left:325.514987px;}
.x21{left:329.834987px;}
.x4{left:333.254973px;}
.x25{left:334.694987px;}
.x3c{left:335.774987px;}
.x5{left:338.834987px;}
.x39{left:345.494987px;}
.x1b{left:358.094987px;}
.x14{left:360.794987px;}
.x45{left:363.675000px;}
.x12{left:368.174987px;}
.x1f{left:370.874987px;}
.x23{left:372.134987px;}
.x2a{left:374.114987px;}
.x9{left:446.474987px;}
.x3f{left:457.635000px;}
.x46{left:469.875000px;}
.x44{left:491.145000px;}
.x3a{left:501.584987px;}
.x30{left:509.504987px;}
.x41{left:526.065000px;}
.x7{left:569.984973px;}
.x8{left:575.564987px;}
.x42{left:587.624987px;}
.x2c{left:590.504987px;}
.x38{left:591.584987px;}
.x33{left:592.844987px;}
.x40{left:604.004987px;}
.x36{left:609.944987px;}
.x22{left:620.564987px;}
.x20{left:658.004987px;}
.x24{left:665.744987px;}
.x27{left:684.464987px;}
.x13{left:698.009987px;}
.x1c{left:709.889987px;}
.x11{left:716.909987px;}
.x17{left:720.149987px;}
.x15{left:727.889987px;}
.x32{left:729.329987px;}
.x2b{left:734.549987px;}
.x18{left:738.509987px;}
.x2e{left:748.229987px;}
.x29{left:750.569987px;}
.xf{left:762.269987px;}
.x1e{left:768.389987px;}
.x26{left:778.289987px;}
.x1a{left:829.589987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-7.893333pt;}
.lsb{letter-spacing:-5.056000pt;}
.ls12{letter-spacing:-1.024000pt;}
.lsf{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.218133pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.158933pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.125333pt;}
.ls1f{letter-spacing:0.128533pt;}
.ls9{letter-spacing:0.144640pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.211840pt;}
.ls3{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.263467pt;}
.ls21{letter-spacing:0.282133pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.432000pt;}
.ls0{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.851840pt;}
.ls20{letter-spacing:6.416640pt;}
.lsa{letter-spacing:37.115307pt;}
.ls1{letter-spacing:48.746667pt;}
.ls15{letter-spacing:48.768000pt;}
.lsd{letter-spacing:56.891307pt;}
.ls2{letter-spacing:62.528000pt;}
.lse{letter-spacing:750.346667pt;}
.ls17{letter-spacing:754.794667pt;}
.wsb{word-spacing:-85.120000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-20.627840pt;}
.ws0{word-spacing:-20.409707pt;}
.ws19{word-spacing:-16.710293pt;}
.ws8{word-spacing:-16.428160pt;}
.ws15{word-spacing:-16.269227pt;}
.ws17{word-spacing:-13.432213pt;}
.ws13{word-spacing:-13.376000pt;}
.ws3{word-spacing:-13.248000pt;}
.ws14{word-spacing:-13.184000pt;}
.wse{word-spacing:-13.056000pt;}
.ws4{word-spacing:-12.992000pt;}
.ws7{word-spacing:-12.928000pt;}
.ws16{word-spacing:-12.864000pt;}
.ws10{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.736000pt;}
.wsf{word-spacing:-12.544000pt;}
.wsa{word-spacing:-12.096000pt;}
.wsc{word-spacing:-11.968000pt;}
.ws18{word-spacing:-10.783360pt;}
.wsd{word-spacing:-10.176000pt;}
.ws11{word-spacing:-9.712000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws12{word-spacing:-5.098667pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-15.467093pt;}
._9{margin-left:-11.470933pt;}
._6{margin-left:-9.922133pt;}
._8{margin-left:-8.731733pt;}
._3{margin-left:-7.426773pt;}
._7{margin-left:-5.828267pt;}
._2{margin-left:-4.575147pt;}
._1{margin-left:-3.489920pt;}
._0{margin-left:-1.702400pt;}
._4{width:1.139200pt;}
._a{width:2.055253pt;}
._b{width:4.928000pt;}
._c{width:8.091520pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:3.680000pt;}
.y167{bottom:4.480000pt;}
.y1a5{bottom:4.520000pt;}
.y182{bottom:4.640000pt;}
.y117{bottom:5.440000pt;}
.y11e{bottom:5.480000pt;}
.y12b{bottom:6.720000pt;}
.y13a{bottom:6.906667pt;}
.y136{bottom:19.840000pt;}
.y12d{bottom:20.000000pt;}
.y130{bottom:20.040000pt;}
.y1b8{bottom:23.994667pt;}
.y16c{bottom:24.000000pt;}
.y178{bottom:24.026667pt;}
.y17f{bottom:24.040000pt;}
.y176{bottom:24.154667pt;}
.y170{bottom:24.160000pt;}
.y191{bottom:43.514667pt;}
.y16b{bottom:43.520000pt;}
.y19a{bottom:43.546667pt;}
.y17e{bottom:43.560000pt;}
.y16f{bottom:43.680000pt;}
.y190{bottom:63.034667pt;}
.y16a{bottom:63.040000pt;}
.y193{bottom:63.066667pt;}
.y19e{bottom:63.080000pt;}
.y17a{bottom:63.200000pt;}
.y17d{bottom:63.240000pt;}
.y18f{bottom:82.554667pt;}
.y174{bottom:82.560000pt;}
.y1c7{bottom:82.586667pt;}
.y19d{bottom:82.600000pt;}
.y169{bottom:82.720000pt;}
.y197{bottom:82.760000pt;}
.y25{bottom:99.552000pt;}
.y18e{bottom:99.872000pt;}
.y13d{bottom:100.832000pt;}
.y18b{bottom:102.080000pt;}
.y1c6{bottom:102.106667pt;}
.y1c0{bottom:102.120000pt;}
.y1c4{bottom:102.240000pt;}
.y196{bottom:102.280000pt;}
.y1a0{bottom:102.432000pt;}
.yff{bottom:103.872000pt;}
.ya6{bottom:105.792000pt;}
.y4b{bottom:107.072000pt;}
.y1cb{bottom:110.912000pt;}
.y1b7{bottom:112.032000pt;}
.y24{bottom:115.872000pt;}
.y23{bottom:120.512000pt;}
.y18a{bottom:121.600000pt;}
.y1c5{bottom:121.626667pt;}
.y1c3{bottom:121.760000pt;}
.y175{bottom:121.792000pt;}
.y1bf{bottom:121.800000pt;}
.y12a{bottom:122.592000pt;}
.y95{bottom:124.032000pt;}
.y13c{bottom:125.952000pt;}
.y15d{bottom:127.712000pt;}
.ya5{bottom:128.352000pt;}
.y4a{bottom:129.632000pt;}
.y22{bottom:132.192000pt;}
.y21{bottom:136.826667pt;}
.yfe{bottom:137.146667pt;}
.yb9{bottom:137.946667pt;}
.y189{bottom:141.120000pt;}
.y1c2{bottom:141.280000pt;}
.y1be{bottom:141.320000pt;}
.y94{bottom:146.586667pt;}
.y129{bottom:147.546667pt;}
.y20{bottom:149.146667pt;}
.y15c{bottom:150.266667pt;}
.y1ca{bottom:150.586667pt;}
.ya4{bottom:151.066667pt;}
.y6c{bottom:151.226667pt;}
.y1b6{bottom:151.706667pt;}
.y49{bottom:152.186667pt;}
.y188{bottom:160.640000pt;}
.y173{bottom:161.626667pt;}
.y19f{bottom:161.786667pt;}
.y93{bottom:169.306667pt;}
.yb8{bottom:169.626667pt;}
.yfd{bottom:170.426667pt;}
.y6b{bottom:173.946667pt;}
.y48{bottom:174.906667pt;}
.y187{bottom:180.160000pt;}
.ya3{bottom:182.746667pt;}
.y15b{bottom:183.546667pt;}
.yd1{bottom:187.386667pt;}
.y1c9{bottom:190.266667pt;}
.y1b5{bottom:191.386667pt;}
.y92{bottom:191.866667pt;}
.y47{bottom:194.426667pt;}
.yb7{bottom:194.746667pt;}
.y6a{bottom:196.506667pt;}
.y18d{bottom:198.106667pt;}
.yfc{bottom:203.706667pt;}
.y15a{bottom:206.266667pt;}
.ya2{bottom:207.866667pt;}
.y1f{bottom:211.546667pt;}
.y46{bottom:213.946667pt;}
.y91{bottom:214.426667pt;}
.yd0{bottom:214.906667pt;}
.ye3{bottom:216.506667pt;}
.y159{bottom:228.826667pt;}
.y69{bottom:229.786667pt;}
.y1b4{bottom:231.226667pt;}
.y45{bottom:233.466667pt;}
.ydc{bottom:236.186667pt;}
.yfb{bottom:236.986667pt;}
.y18c{bottom:237.786667pt;}
.ycf{bottom:239.226667pt;}
.y90{bottom:239.706667pt;}
.y19c{bottom:240.506667pt;}
.y1e{bottom:240.826667pt;}
.y10d{bottom:246.586667pt;}
.ye2{bottom:248.186667pt;}
.y158{bottom:251.586667pt;}
.y68{bottom:252.386667pt;}
.y44{bottom:253.026667pt;}
.y172{bottom:259.906667pt;}
.y1d{bottom:263.426667pt;}
.ydb{bottom:269.506667pt;}
.yfa{bottom:270.306667pt;}
.y1b3{bottom:270.946667pt;}
.y43{bottom:272.546667pt;}
.ye1{bottom:273.346667pt;}
.y67{bottom:275.106667pt;}
.y186{bottom:277.666667pt;}
.y8f{bottom:277.986667pt;}
.y10c{bottom:278.306667pt;}
.y157{bottom:284.866667pt;}
.y42{bottom:292.066667pt;}
.y1c{bottom:292.706667pt;}
.y66{bottom:297.666667pt;}
.y8e{bottom:300.546667pt;}
.yf9{bottom:301.986667pt;}
.yda{bottom:302.786667pt;}
.y10b{bottom:303.426667pt;}
.y114{bottom:304.546667pt;}
.y156{bottom:307.426667pt;}
.y1c8{bottom:308.226667pt;}
.y1b2{bottom:310.626667pt;}
.y41{bottom:311.586667pt;}
.y79{bottom:314.466667pt;}
.y1b{bottom:321.986667pt;}
.y8d{bottom:323.266667pt;}
.yf8{bottom:327.106667pt;}
.y155{bottom:329.986667pt;}
.y65{bottom:330.946667pt;}
.y40{bottom:331.106667pt;}
.yd9{bottom:334.466667pt;}
.y113{bottom:336.226667pt;}
.ya1{bottom:338.146667pt;}
.y171{bottom:338.786667pt;}
.y19b{bottom:338.946667pt;}
.y105{bottom:344.706667pt;}
.y8c{bottom:345.826667pt;}
.y1b1{bottom:350.466667pt;}
.y1a{bottom:351.266667pt;}
.y78{bottom:352.706667pt;}
.y64{bottom:353.666667pt;}
.y3f{bottom:356.386667pt;}
.yd8{bottom:359.586667pt;}
.ya0{bottom:360.706667pt;}
.y112{bottom:361.346667pt;}
.ye9{bottom:362.626667pt;}
.y154{bottom:363.266667pt;}
.y8b{bottom:368.546667pt;}
.y77{bottom:375.266667pt;}
.y63{bottom:376.226667pt;}
.y104{bottom:376.386667pt;}
.yce{bottom:377.506667pt;}
.y19{bottom:380.546667pt;}
.yf1{bottom:382.626667pt;}
.y9f{bottom:383.266667pt;}
.y153{bottom:385.986667pt;}
.ye8{bottom:387.746667pt;}
.y1b0{bottom:390.146667pt;}
.y8a{bottom:391.106667pt;}
.y3e{bottom:391.586667pt;}
.y76{bottom:397.986667pt;}
.y103{bottom:401.506667pt;}
.y9e{bottom:405.986667pt;}
.y152{bottom:408.546667pt;}
.y62{bottom:409.506667pt;}
.y18{bottom:409.826667pt;}
.ycd{bottom:410.946667pt;}
.y3d{bottom:411.106667pt;}
.yf0{bottom:414.306667pt;}
.y89{bottom:416.226667pt;}
.y75{bottom:420.546667pt;}
.y10a{bottom:426.146667pt;}
.y9d{bottom:428.546667pt;}
.y3c{bottom:430.626667pt;}
.y61{bottom:432.226667pt;}
.ycc{bottom:433.506667pt;}
.ye0{bottom:435.586667pt;}
.y17{bottom:439.106667pt;}
.yef{bottom:439.266667pt;}
.y151{bottom:441.826667pt;}
.y74{bottom:443.106667pt;}
.y1af{bottom:449.346667pt;}
.y3b{bottom:450.146667pt;}
.y9c{bottom:451.266667pt;}
.y88{bottom:452.866667pt;}
.y60{bottom:454.786667pt;}
.y109{bottom:455.746667pt;}
.ycb{bottom:456.066667pt;}
.y16e{bottom:457.186667pt;}
.yf7{bottom:462.146667pt;}
.ydf{bottom:467.266667pt;}
.y16{bottom:468.546667pt;}
.y3a{bottom:470.786667pt;}
.y185{bottom:473.666667pt;}
.y199{bottom:476.226667pt;}
.y9b{bottom:476.386667pt;}
.y87{bottom:477.986667pt;}
.yca{bottom:478.786667pt;}
.y111{bottom:480.066667pt;}
.y13b{bottom:481.506667pt;}
.y73{bottom:481.826667pt;}
.yd7{bottom:488.226667pt;}
.y108{bottom:489.026667pt;}
.y1ae{bottom:489.186667pt;}
.y39{bottom:490.306667pt;}
.yf6{bottom:491.746667pt;}
.yde{bottom:492.386667pt;}
.y5f{bottom:493.186667pt;}
.y139{bottom:497.186667pt;}
.y150{bottom:498.306667pt;}
.yc9{bottom:501.346667pt;}
.y15{bottom:501.853333pt;}
.y72{bottom:504.413333pt;}
.y110{bottom:508.093333pt;}
.yec{bottom:511.613333pt;}
.y102{bottom:512.733333pt;}
.y9a{bottom:513.053333pt;}
.y184{bottom:513.373333pt;}
.y5e{bottom:515.773333pt;}
.y16d{bottom:516.573333pt;}
.y138{bottom:517.213333pt;}
.yb6{bottom:517.693333pt;}
.yd6{bottom:517.853333pt;}
.y107{bottom:520.733333pt;}
.y14f{bottom:520.893333pt;}
.yf5{bottom:523.453333pt;}
.y38{bottom:524.573333pt;}
.y71{bottom:527.133333pt;}
.y1ad{bottom:528.893333pt;}
.yc8{bottom:534.653333pt;}
.y14{bottom:535.133333pt;}
.y10f{bottom:535.933333pt;}
.y99{bottom:538.013333pt;}
.y128{bottom:540.733333pt;}
.y101{bottom:542.333333pt;}
.yeb{bottom:543.293333pt;}
.y14e{bottom:543.453333pt;}
.ye7{bottom:544.413333pt;}
.y106{bottom:545.853333pt;}
.y37{bottom:547.293333pt;}
.yf4{bottom:548.573333pt;}
.y1ac{bottom:549.053333pt;}
.yd5{bottom:549.533333pt;}
.y70{bottom:549.693333pt;}
.yee{bottom:550.013333pt;}
.y137{bottom:550.493333pt;}
.yb5{bottom:550.973333pt;}
.y183{bottom:553.053333pt;}
.y5d{bottom:554.173333pt;}
.y198{bottom:555.133333pt;}
.yc7{bottom:557.373333pt;}
.y10e{bottom:561.053333pt;}
.y1c1{bottom:563.453333pt;}
.y14d{bottom:566.173333pt;}
.y13{bottom:568.413333pt;}
.y1ab{bottom:569.213333pt;}
.y36{bottom:569.853333pt;}
.y6f{bottom:572.253333pt;}
.ye6{bottom:574.013333pt;}
.y127{bottom:574.173333pt;}
.yd4{bottom:574.653333pt;}
.yed{bottom:575.133333pt;}
.y168{bottom:575.773333pt;}
.y5c{bottom:576.573333pt;}
.y135{bottom:583.773333pt;}
.yb4{bottom:584.253333pt;}
.y14c{bottom:588.733333pt;}
.y1aa{bottom:589.533333pt;}
.y126{bottom:589.853333pt;}
.yc6{bottom:590.653333pt;}
.y86{bottom:590.813333pt;}
.y181{bottom:592.733333pt;}
.y100{bottom:599.133333pt;}
.y12{bottom:601.693333pt;}
.y35{bottom:603.133333pt;}
.ye5{bottom:605.693333pt;}
.yb3{bottom:606.813333pt;}
.y125{bottom:609.853333pt;}
.y6e{bottom:610.973333pt;}
.y14b{bottom:611.453333pt;}
.y85{bottom:613.533333pt;}
.y5b{bottom:615.293333pt;}
.y134{bottom:616.893333pt;}
.yc5{bottom:623.933333pt;}
.y11{bottom:624.253333pt;}
.y34{bottom:625.853333pt;}
.y1a9{bottom:629.213333pt;}
.y124{bottom:629.853333pt;}
.yb2{bottom:630.493333pt;}
.ye4{bottom:630.813333pt;}
.y133{bottom:636.893333pt;}
.y5a{bottom:637.853333pt;}
.y84{bottom:638.653333pt;}
.y14a{bottom:642.013333pt;}
.y6d{bottom:645.213333pt;}
.yc4{bottom:646.493333pt;}
.y10{bottom:647.933333pt;}
.y33{bottom:648.413333pt;}
.y123{bottom:649.853333pt;}
.y98{bottom:650.493333pt;}
.yb1{bottom:654.173333pt;}
.y59{bottom:660.573333pt;}
.y1a8{bottom:668.893333pt;}
.y122{bottom:669.853333pt;}
.yc3{bottom:670.173333pt;}
.yf{bottom:670.493333pt;}
.y32{bottom:670.973333pt;}
.y180{bottom:671.613333pt;}
.y166{bottom:674.173333pt;}
.y83{bottom:675.293333pt;}
.yb0{bottom:677.853333pt;}
.y97{bottom:682.013333pt;}
.y58{bottom:683.133333pt;}
.y121{bottom:689.853333pt;}
.y132{bottom:690.173333pt;}
.y149{bottom:690.493333pt;}
.y195{bottom:692.413333pt;}
.yc2{bottom:692.733333pt;}
.ye{bottom:694.333333pt;}
.y82{bottom:700.413333pt;}
.yaf{bottom:701.533333pt;}
.y31{bottom:704.253333pt;}
.y57{bottom:705.693333pt;}
.y96{bottom:707.133333pt;}
.y1a7{bottom:708.733333pt;}
.y120{bottom:709.853333pt;}
.y148{bottom:710.013333pt;}
.y131{bottom:710.173333pt;}
.y165{bottom:711.293333pt;}
.yc1{bottom:716.573333pt;}
.yd{bottom:716.893333pt;}
.y1bd{bottom:720.413333pt;}
.y30{bottom:726.813333pt;}
.y56{bottom:728.413333pt;}
.y1a6{bottom:728.893333pt;}
.y147{bottom:729.533333pt;}
.y11f{bottom:729.853333pt;}
.y17c{bottom:730.813333pt;}
.yae{bottom:735.933333pt;}
.yc0{bottom:739.133333pt;}
.y164{bottom:742.013333pt;}
.y12f{bottom:743.293333pt;}
.y1a4{bottom:749.053333pt;}
.y11d{bottom:749.853333pt;}
.y146{bottom:750.013333pt;}
.y2f{bottom:750.653333pt;}
.y55{bottom:750.973333pt;}
.yc{bottom:751.293333pt;}
.yad{bottom:758.533333pt;}
.ybf{bottom:762.853333pt;}
.y1a3{bottom:769.253333pt;}
.y145{bottom:769.573333pt;}
.y11c{bottom:769.893333pt;}
.y2e{bottom:773.253333pt;}
.y54{bottom:773.733333pt;}
.yb{bottom:773.893333pt;}
.y163{bottom:775.173333pt;}
.y12c{bottom:776.613333pt;}
.yac{bottom:781.253333pt;}
.ybe{bottom:785.413333pt;}
.y144{bottom:789.253333pt;}
.y11b{bottom:789.893333pt;}
.y53{bottom:796.293333pt;}
.ya{bottom:796.613333pt;}
.y2d{bottom:796.933333pt;}
.y143{bottom:808.773333pt;}
.y1a2{bottom:809.093333pt;}
.y17b{bottom:809.733333pt;}
.y11a{bottom:809.893333pt;}
.y194{bottom:810.373333pt;}
.y162{bottom:812.773333pt;}
.yab{bottom:814.533333pt;}
.y52{bottom:818.853333pt;}
.y9{bottom:819.173333pt;}
.y2c{bottom:819.493333pt;}
.ybd{bottom:819.813333pt;}
.y142{bottom:828.293333pt;}
.y119{bottom:829.893333pt;}
.y81{bottom:832.773333pt;}
.yaa{bottom:837.093333pt;}
.ybc{bottom:842.533333pt;}
.y141{bottom:848.773333pt;}
.y118{bottom:849.893333pt;}
.y8{bottom:852.293333pt;}
.y2b{bottom:853.893333pt;}
.y80{bottom:855.333333pt;}
.ya9{bottom:859.813333pt;}
.y51{bottom:860.133333pt;}
.ybb{bottom:865.093333pt;}
.y140{bottom:868.293333pt;}
.y116{bottom:869.893333pt;}
.y161{bottom:872.133333pt;}
.y2a{bottom:876.613333pt;}
.y1bc{bottom:877.413333pt;}
.y7f{bottom:877.893333pt;}
.ya8{bottom:882.373333pt;}
.yba{bottom:887.653333pt;}
.y1a1{bottom:887.813333pt;}
.y13f{bottom:887.973333pt;}
.y50{bottom:898.373333pt;}
.y29{bottom:899.173333pt;}
.y7e{bottom:900.613333pt;}
.yf3{bottom:902.853333pt;}
.y115{bottom:906.533333pt;}
.y13e{bottom:907.493333pt;}
.ya7{bottom:907.653333pt;}
.y179{bottom:907.973333pt;}
.y7{bottom:908.773333pt;}
.y160{bottom:910.373333pt;}
.y1cd{bottom:911.813333pt;}
.y1bb{bottom:914.693333pt;}
.y4f{bottom:920.933333pt;}
.y28{bottom:921.893333pt;}
.y7d{bottom:923.173333pt;}
.ydd{bottom:925.413333pt;}
.y1cc{bottom:927.493333pt;}
.y5{bottom:931.493333pt;}
.y15f{bottom:932.933333pt;}
.yf2{bottom:936.133333pt;}
.y6{bottom:936.773333pt;}
.y4e{bottom:943.653333pt;}
.y1ba{bottom:944.133333pt;}
.y7c{bottom:945.893333pt;}
.y192{bottom:947.813333pt;}
.yea{bottom:947.973333pt;}
.y3{bottom:954.053333pt;}
.y27{bottom:955.013333pt;}
.y15e{bottom:955.653333pt;}
.yd3{bottom:958.693333pt;}
.y4{bottom:959.333333pt;}
.y4d{bottom:966.213333pt;}
.y7b{bottom:968.453333pt;}
.y1b9{bottom:973.733333pt;}
.y2{bottom:980.453333pt;}
.yd2{bottom:981.253333pt;}
.y177{bottom:986.853333pt;}
.y4c{bottom:988.933333pt;}
.y7a{bottom:1001.573333pt;}
.y1{bottom:1006.560000pt;}
.y26{bottom:1011.520000pt;}
.hc{height:19.360000pt;}
.he{height:19.392000pt;}
.h13{height:19.520000pt;}
.h23{height:19.552000pt;}
.h9{height:27.734375pt;}
.h5{height:32.081250pt;}
.h11{height:32.480000pt;}
.hf{height:32.640000pt;}
.h10{height:32.672000pt;}
.h1e{height:39.040000pt;}
.h1a{height:39.072000pt;}
.h19{height:39.200000pt;}
.hb{height:41.484375pt;}
.ha{height:46.039063pt;}
.h12{height:46.116875pt;}
.h4{height:55.312500pt;}
.h6{height:55.468750pt;}
.h8{height:55.562500pt;}
.h15{height:58.560000pt;}
.hd{height:58.563750pt;}
.h28{height:58.720000pt;}
.h16{height:58.752000pt;}
.h3{height:71.944688pt;}
.h2{height:73.565625pt;}
.h17{height:78.080000pt;}
.h20{height:78.112000pt;}
.h1b{height:78.240000pt;}
.h1d{height:78.272000pt;}
.h7{height:92.371875pt;}
.h1c{height:97.600000pt;}
.h18{height:97.632000pt;}
.h14{height:97.760000pt;}
.h27{height:117.280000pt;}
.h22{height:117.312000pt;}
.h21{height:136.640000pt;}
.h26{height:136.666667pt;}
.h25{height:156.320000pt;}
.h24{height:156.346667pt;}
.h1f{height:195.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:93.760000pt;}
.wa{width:103.200000pt;}
.w7{width:178.586667pt;}
.w6{width:191.066667pt;}
.w8{width:192.186667pt;}
.wc{width:225.786667pt;}
.w9{width:235.386667pt;}
.w5{width:235.586667pt;}
.w4{width:254.586667pt;}
.wb{width:260.666667pt;}
.we{width:311.266667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:6.880000pt;}
.xa{left:96.031988pt;}
.xe{left:100.351988pt;}
.x1{left:106.751988pt;}
.xb{left:120.031988pt;}
.xc{left:144.026655pt;}
.x3d{left:151.546667pt;}
.x2{left:204.666655pt;}
.x3{left:208.346655pt;}
.x19{left:226.746655pt;}
.x31{left:230.586655pt;}
.x10{left:232.826655pt;}
.x37{left:256.026655pt;}
.x2f{left:263.746655pt;}
.x28{left:266.146655pt;}
.x34{left:268.066655pt;}
.x16{left:270.466655pt;}
.x3b{left:273.986655pt;}
.x43{left:276.706655pt;}
.x6{left:282.146655pt;}
.x1d{left:285.026655pt;}
.x2d{left:286.626655pt;}
.xd{left:288.066655pt;}
.x35{left:289.346655pt;}
.x21{left:293.186655pt;}
.x4{left:296.226643pt;}
.x25{left:297.506655pt;}
.x3c{left:298.466655pt;}
.x5{left:301.186655pt;}
.x39{left:307.106655pt;}
.x1b{left:318.306655pt;}
.x14{left:320.706655pt;}
.x45{left:323.266667pt;}
.x12{left:327.266655pt;}
.x1f{left:329.666655pt;}
.x23{left:330.786655pt;}
.x2a{left:332.546655pt;}
.x9{left:396.866655pt;}
.x3f{left:406.786667pt;}
.x46{left:417.666667pt;}
.x44{left:436.573333pt;}
.x3a{left:445.853322pt;}
.x30{left:452.893322pt;}
.x41{left:467.613333pt;}
.x7{left:506.653310pt;}
.x8{left:511.613322pt;}
.x42{left:522.333322pt;}
.x2c{left:524.893322pt;}
.x38{left:525.853322pt;}
.x33{left:526.973322pt;}
.x40{left:536.893322pt;}
.x36{left:542.173322pt;}
.x22{left:551.613322pt;}
.x20{left:584.893322pt;}
.x24{left:591.773322pt;}
.x27{left:608.413322pt;}
.x13{left:620.453322pt;}
.x1c{left:631.013322pt;}
.x11{left:637.253322pt;}
.x17{left:640.133322pt;}
.x15{left:647.013322pt;}
.x32{left:648.293322pt;}
.x2b{left:652.933322pt;}
.x18{left:656.453322pt;}
.x2e{left:665.093322pt;}
.x29{left:667.173322pt;}
.xf{left:677.573322pt;}
.x1e{left:683.013322pt;}
.x26{left:691.813322pt;}
.x1a{left:737.413322pt;}
}




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