
    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_74a3d2bbe1daa69816fb2ba9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945312;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_b18af03b9b38ef126eb3f371.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0de9afdae8fdf5c1367499d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48e2dc2a5a0528d962336609.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_537047baaebf784ba1267c62.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.695312;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_49bf0327f699b0169430e293.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_3d46c0ada8232073876f88f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_99b4f9f147cea64a019f1cda.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_02afdbd72ffd4c35453df23d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_65d4b84a7ce875fd02d67c19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.754395;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_537047baaebf784ba1267c62.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.695312;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_49bf0327f699b0169430e293.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_2de2ef0d9093d244189c922e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3d46c0ada8232073876f88f1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d47189a2c67ce4df37675b36.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_648a60070d8e9585513c3f76.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e7010faade3376eca36c4cdb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2877651488f9ecd240633182.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-76.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls9{letter-spacing:-2.160000px;}
.ls14{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.414600px;}
.ls17{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.085200px;}
.ls8{letter-spacing:-0.000001px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.052560px;}
.lsf{letter-spacing:0.080400px;}
.ls3{letter-spacing:0.094800px;}
.ls12{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.119520px;}
.ls15{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.305280px;}
.lse{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.360000px;}
.ls6{letter-spacing:5.040000px;}
.ls21{letter-spacing:7.505280px;}
.ls11{letter-spacing:7.920000px;}
.lsc{letter-spacing:11.340000px;}
.lsb{letter-spacing:32.400000px;}
.ls1a{letter-spacing:39.905280px;}
.ls20{letter-spacing:40.625280px;}
.ls22{letter-spacing:90.720000px;}
.ls1f{letter-spacing:90.864000px;}
.ls1c{letter-spacing:91.440000px;}
.ls1e{letter-spacing:91.584000px;}
.ls5{letter-spacing:1616.964000px;}
.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;}
}
.ws4{word-spacing:-17.784000px;}
.ws8{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws11{word-spacing:-16.102200px;}
.ws0{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.034800px;}
.ws3{word-spacing:-14.992560px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.277280px;}
.wsd{word-spacing:-13.140000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2.364480px;}
._0{margin-left:-1.167120px;}
._1{width:1.195200px;}
._2{width:2.242560px;}
._9{width:3.274320px;}
._5{width:4.368000px;}
._4{width:5.544000px;}
._7{width:7.532640px;}
._6{width:8.544960px;}
._17{width:9.645840px;}
._11{width:11.128320px;}
._28{width:12.697920px;}
._13{width:14.109120px;}
._12{width:15.235200px;}
._1a{width:17.613840px;}
._f{width:18.659520px;}
._d{width:20.004480px;}
._e{width:21.064320px;}
._10{width:22.513440px;}
._8{width:23.846400px;}
._22{width:24.906240px;}
._1e{width:26.032320px;}
._26{width:27.622080px;}
._2a{width:28.681920px;}
._19{width:30.497760px;}
._c{width:31.839600px;}
._b{width:33.099840px;}
._27{width:34.246080px;}
._18{width:36.167040px;}
._29{width:37.491840px;}
._31{width:39.476160px;}
._2e{width:40.672080px;}
._25{width:41.731200px;}
._2f{width:42.791040px;}
._24{width:43.850880px;}
._1d{width:45.771840px;}
._23{width:47.891520px;}
._3c{width:49.029120px;}
._2c{width:50.383440px;}
._14{width:52.727040px;}
._32{width:54.581760px;}
._33{width:56.347200px;}
._a{width:58.357440px;}
._3f{width:61.007040px;}
._21{width:62.444160px;}
._2b{width:63.584640px;}
._2d{width:64.785600px;}
._1f{width:67.101120px;}
._37{width:68.425920px;}
._3d{width:69.750720px;}
._20{width:72.135360px;}
._34{width:73.526400px;}
._30{width:75.049920px;}
._38{width:76.639680px;}
._3a{width:78.163200px;}
._39{width:79.264080px;}
._47{width:80.547840px;}
._15{width:83.992320px;}
._16{width:85.694400px;}
._43{width:87.480000px;}
._3e{width:88.827840px;}
._35{width:92.736000px;}
._36{width:93.862080px;}
._45{width:95.783040px;}
._40{width:98.631360px;}
._41{width:107.176320px;}
._42{width:108.436800px;}
._1b{width:109.825920px;}
._1c{width:111.125520px;}
._46{width:112.872960px;}
._3b{width:328.025280px;}
._44{width:579.454320px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y36{bottom:-16.560000px;}
.y13{bottom:-9.540000px;}
.yb{bottom:-5.760000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:2.880000px;}
.y11a{bottom:3.060000px;}
.y131{bottom:3.240000px;}
.y133{bottom:3.600000px;}
.y184{bottom:6.300000px;}
.y185{bottom:6.480000px;}
.y12{bottom:7.740000px;}
.y111{bottom:10.080000px;}
.y116{bottom:10.260000px;}
.y14d{bottom:10.620000px;}
.y14e{bottom:10.800000px;}
.ya{bottom:11.520000px;}
.y35{bottom:13.140000px;}
.y187{bottom:15.480000px;}
.y189{bottom:15.660000px;}
.y112{bottom:17.100000px;}
.y12c{bottom:17.280000px;}
.y124{bottom:17.640000px;}
.y117{bottom:17.820000px;}
.y183{bottom:18.000000px;}
.y12e{bottom:18.360000px;}
.y119{bottom:18.540000px;}
.y153{bottom:18.585000px;}
.y128{bottom:18.720000px;}
.y132{bottom:19.260000px;}
.y11f{bottom:19.980000px;}
.y11{bottom:25.050000px;}
.y9{bottom:25.380000px;}
.y110{bottom:25.560000px;}
.y115{bottom:25.920000px;}
.y11d{bottom:27.000000px;}
.y10f{bottom:32.580000px;}
.y114{bottom:33.300000px;}
.y34{bottom:33.840000px;}
.y135{bottom:34.020000px;}
.y123{bottom:34.050000px;}
.y127{bottom:34.200000px;}
.y12a{bottom:34.380000px;}
.y11e{bottom:35.460000px;}
.y8{bottom:39.240000px;}
.y10{bottom:42.150000px;}
.y155{bottom:49.500000px;}
.y150{bottom:49.545000px;}
.y129{bottom:49.860000px;}
.y33{bottom:54.540000px;}
.y7{bottom:55.800000px;}
.y1d{bottom:56.340000px;}
.y3a{bottom:57.060000px;}
.yf{bottom:59.430000px;}
.y39{bottom:73.260000px;}
.y1c{bottom:74.160000px;}
.y6{bottom:76.140000px;}
.ye{bottom:76.710000px;}
.y1b{bottom:90.360000px;}
.y1{bottom:91.620000px;}
.yd{bottom:93.990000px;}
.y5{bottom:96.330000px;}
.y4{bottom:116.490000px;}
.ybe{bottom:131.580000px;}
.y145{bottom:131.940000px;}
.y1b6{bottom:132.300000px;}
.yb2{bottom:132.480000px;}
.y149{bottom:132.840000px;}
.ydc{bottom:134.280000px;}
.y3{bottom:136.650000px;}
.y109{bottom:141.300000px;}
.y172{bottom:145.080000px;}
.y1bd{bottom:147.600000px;}
.y1ae{bottom:148.500000px;}
.y88{bottom:149.580000px;}
.ybd{bottom:150.480000px;}
.yb1{bottom:151.560000px;}
.y1ea{bottom:152.820000px;}
.y2{bottom:156.810000px;}
.yc{bottom:156.960000px;}
.y108{bottom:160.560000px;}
.y171{bottom:164.160000px;}
.y1d2{bottom:165.960000px;}
.y1ad{bottom:167.580000px;}
.y87{bottom:168.480000px;}
.y144{bottom:168.840000px;}
.ybc{bottom:169.560000px;}
.y148{bottom:169.920000px;}
.yb0{bottom:170.460000px;}
.ydb{bottom:171.210000px;}
.y107{bottom:179.490000px;}
.y17f{bottom:183.090000px;}
.y1bc{bottom:185.610000px;}
.y86{bottom:187.590000px;}
.y143{bottom:188.130000px;}
.ybb{bottom:188.490000px;}
.yaf{bottom:189.390000px;}
.y1e9{bottom:189.750000px;}
.y106{bottom:198.390000px;}
.y170{bottom:200.910000px;}
.y17e{bottom:201.990000px;}
.y1d1{bottom:202.890000px;}
.y1ac{bottom:204.330000px;}
.y1bb{bottom:204.510000px;}
.y85{bottom:206.490000px;}
.y147{bottom:206.850000px;}
.y142{bottom:207.030000px;}
.yba{bottom:207.390000px;}
.yda{bottom:208.290000px;}
.yae{bottom:208.470000px;}
.y105{bottom:217.470000px;}
.y16f{bottom:219.990000px;}
.y17d{bottom:221.070000px;}
.y1ab{bottom:223.590000px;}
.y84{bottom:225.390000px;}
.y141{bottom:225.930000px;}
.yb9{bottom:226.470000px;}
.y1e8{bottom:226.830000px;}
.yad{bottom:227.370000px;}
.y104{bottom:236.370000px;}
.y16e{bottom:239.070000px;}
.y17c{bottom:239.970000px;}
.y1aa{bottom:242.490000px;}
.y83{bottom:244.470000px;}
.y140{bottom:245.010000px;}
.yb8{bottom:245.370000px;}
.yd9{bottom:246.450000px;}
.y103{bottom:255.450000px;}
.y16d{bottom:257.970000px;}
.y17b{bottom:259.050000px;}
.y1a9{bottom:261.390000px;}
.y82{bottom:263.370000px;}
.y1e7{bottom:263.730000px;}
.y13f{bottom:263.910000px;}
.yac{bottom:264.270000px;}
.yb7{bottom:264.450000px;}
.yd8{bottom:265.350000px;}
.y102{bottom:274.350000px;}
.y1d0{bottom:276.870000px;}
.y16c{bottom:277.050000px;}
.y1ba{bottom:280.470000px;}
.y81{bottom:282.450000px;}
.y13e{bottom:282.990000px;}
.y1b5{bottom:283.170000px;}
.yab{bottom:283.350000px;}
.yd7{bottom:284.430000px;}
.y17a{bottom:295.770000px;}
.y16b{bottom:295.950000px;}
.y1a8{bottom:299.370000px;}
.y1e6{bottom:300.630000px;}
.y80{bottom:301.350000px;}
.y13d{bottom:301.890000px;}
.yaa{bottom:302.430000px;}
.yd6{bottom:303.330000px;}
.y101{bottom:311.250000px;}
.y1cf{bottom:313.770000px;}
.y16a{bottom:314.850000px;}
.y1a7{bottom:318.450000px;}
.y7f{bottom:320.430000px;}
.y13c{bottom:320.790000px;}
.ya9{bottom:321.330000px;}
.yd5{bottom:322.230000px;}
.y100{bottom:330.330000px;}
.y179{bottom:332.670000px;}
.y169{bottom:333.930000px;}
.y1a6{bottom:337.350000px;}
.y1e5{bottom:337.710000px;}
.y196{bottom:338.250000px;}
.y7e{bottom:339.330000px;}
.y13b{bottom:339.870000px;}
.ya8{bottom:340.230000px;}
.yd4{bottom:341.310000px;}
.yff{bottom:349.230000px;}
.y1ce{bottom:350.850000px;}
.y178{bottom:351.930000px;}
.y168{bottom:352.830000px;}
.y1a5{bottom:356.430000px;}
.y195{bottom:357.330000px;}
.yb6{bottom:358.050000px;}
.y7d{bottom:358.230000px;}
.y13a{bottom:358.770000px;}
.ya7{bottom:359.310000px;}
.yd3{bottom:360.210000px;}
.yfe{bottom:368.310000px;}
.y177{bottom:370.830000px;}
.y167{bottom:371.910000px;}
.y1e4{bottom:374.610000px;}
.y1a4{bottom:375.330000px;}
.y194{bottom:376.230000px;}
.y7c{bottom:377.310000px;}
.y139{bottom:377.850000px;}
.ya6{bottom:378.210000px;}
.yd2{bottom:379.290000px;}
.yfd{bottom:387.210000px;}
.y1cd{bottom:387.750000px;}
.y176{bottom:389.910000px;}
.y166{bottom:390.810000px;}
.y1b9{bottom:394.230000px;}
.y193{bottom:395.310000px;}
.y7b{bottom:396.210000px;}
.y138{bottom:396.750000px;}
.ya5{bottom:397.290000px;}
.yd1{bottom:398.190000px;}
.yfc{bottom:406.290000px;}
.y175{bottom:408.810000px;}
.y165{bottom:409.710000px;}
.y1e3{bottom:411.690000px;}
.y1a3{bottom:413.310000px;}
.y192{bottom:414.210000px;}
.y1b4{bottom:415.110000px;}
.y7a{bottom:415.290000px;}
.y137{bottom:415.695000px;}
.yd0{bottom:417.135000px;}
.y1cc{bottom:424.875000px;}
.yfb{bottom:425.235000px;}
.y174{bottom:427.755000px;}
.y1a2{bottom:432.255000px;}
.y191{bottom:433.335000px;}
.y146{bottom:433.515000px;}
.ya4{bottom:434.055000px;}
.y79{bottom:434.235000px;}
.ycf{bottom:436.215000px;}
.y31{bottom:440.895000px;}
.yfa{bottom:444.135000px;}
.y164{bottom:446.655000px;}
.y173{bottom:446.835000px;}
.y1e2{bottom:448.635000px;}
.y136{bottom:449.895000px;}
.y1a1{bottom:451.335000px;}
.y190{bottom:452.235000px;}
.ya3{bottom:453.135000px;}
.ye1{bottom:454.035000px;}
.yce{bottom:455.115000px;}
.y1cb{bottom:461.775000px;}
.y163{bottom:465.735000px;}
.y134{bottom:466.095000px;}
.y30{bottom:466.815000px;}
.y1a0{bottom:470.235000px;}
.y78{bottom:470.955000px;}
.y18f{bottom:471.135000px;}
.ya2{bottom:472.215000px;}
.ye0{bottom:473.115000px;}
.yf9{bottom:481.035000px;}
.y1e1{bottom:485.535000px;}
.y19f{bottom:489.135000px;}
.y77{bottom:490.215000px;}
.ya1{bottom:491.115000px;}
.y162{bottom:491.835000px;}
.ycd{bottom:492.015000px;}
.ydf{bottom:492.195000px;}
.y2f{bottom:492.555000px;}
.y1ca{bottom:498.675000px;}
.yf8{bottom:500.115000px;}
.y18a{bottom:505.155000px;}
.y19e{bottom:508.215000px;}
.y76{bottom:509.115000px;}
.ya0{bottom:510.195000px;}
.ycc{bottom:511.095000px;}
.y130{bottom:513.435000px;}
.y2e{bottom:518.475000px;}
.yf7{bottom:519.195000px;}
.y1e0{bottom:522.615000px;}
.y1b8{bottom:527.115000px;}
.y75{bottom:528.195000px;}
.y9f{bottom:529.095000px;}
.y12f{bottom:529.635000px;}
.ycb{bottom:529.995000px;}
.y1c9{bottom:535.755000px;}
.y188{bottom:536.115000px;}
.yf6{bottom:538.095000px;}
.y2d{bottom:544.395000px;}
.y12d{bottom:546.015000px;}
.y19d{bottom:546.195000px;}
.y1b3{bottom:546.915000px;}
.y74{bottom:547.095000px;}
.y9e{bottom:547.995000px;}
.yca{bottom:549.075000px;}
.yf5{bottom:556.995000px;}
.y1df{bottom:559.515000px;}
.y19c{bottom:565.095000px;}
.y73{bottom:565.995000px;}
.y9d{bottom:567.075000px;}
.y186{bottom:567.255000px;}
.yc9{bottom:567.975000px;}
.y2c{bottom:570.315000px;}
.y54{bottom:572.475000px;}
.y1c8{bottom:572.655000px;}
.yf4{bottom:576.075000px;}
.y126{bottom:577.695000px;}
.y19b{bottom:583.995000px;}
.y72{bottom:585.075000px;}
.yde{bottom:585.795000px;}
.y9c{bottom:585.975000px;}
.yc8{bottom:587.055000px;}
.y53{bottom:591.555000px;}
.yf3{bottom:594.975000px;}
.y2b{bottom:596.055000px;}
.y1de{bottom:596.595000px;}
.y180{bottom:598.935000px;}
.y19a{bottom:603.075000px;}
.y71{bottom:603.975000px;}
.y9b{bottom:605.055000px;}
.yc7{bottom:605.955000px;}
.y12b{bottom:608.295000px;}
.y1c7{bottom:609.735000px;}
.y52{bottom:610.455000px;}
.yf2{bottom:614.055000px;}
.y199{bottom:621.975000px;}
.y182{bottom:622.335000px;}
.y70{bottom:623.055000px;}
.y9a{bottom:623.955000px;}
.y125{bottom:624.675000px;}
.y58{bottom:632.775000px;}
.yf1{bottom:632.955000px;}
.y2a{bottom:633.495000px;}
.y51{bottom:638.535000px;}
.y122{bottom:640.875000px;}
.y1b7{bottom:641.055000px;}
.y6f{bottom:641.955000px;}
.yc6{bottom:642.675000px;}
.y99{bottom:642.855000px;}
.y181{bottom:645.555000px;}
.y1c6{bottom:646.635000px;}
.y57{bottom:651.855000px;}
.y198{bottom:659.985000px;}
.y6e{bottom:660.885000px;}
.y98{bottom:661.965000px;}
.y50{bottom:668.265000px;}
.y1dd{bottom:670.605000px;}
.yf0{bottom:670.965000px;}
.y121{bottom:672.045000px;}
.y29{bottom:673.485000px;}
.y18e{bottom:678.705000px;}
.y197{bottom:678.885000px;}
.y56{bottom:679.785000px;}
.y6d{bottom:679.965000px;}
.y97{bottom:680.865000px;}
.y1c5{bottom:683.565000px;}
.y161{bottom:687.885000px;}
.y11c{bottom:688.245000px;}
.y4f{bottom:688.965000px;}
.yef{bottom:689.865000px;}
.y18d{bottom:697.965000px;}
.y6c{bottom:698.865000px;}
.y96{bottom:699.945000px;}
.y120{bottom:704.445000px;}
.y28{bottom:704.625000px;}
.y160{bottom:706.965000px;}
.y1dc{bottom:707.505000px;}
.y55{bottom:707.685000px;}
.y4e{bottom:707.865000px;}
.yee{bottom:708.945000px;}
.y18c{bottom:716.865000px;}
.y1b2{bottom:717.945000px;}
.y95{bottom:718.845000px;}
.y1c4{bottom:720.645000px;}
.y11b{bottom:720.825000px;}
.y4d{bottom:726.945000px;}
.yed{bottom:727.845000px;}
.y27{bottom:732.165000px;}
.y159{bottom:732.345000px;}
.y6b{bottom:735.765000px;}
.y18b{bottom:735.945000px;}
.y1b1{bottom:736.845000px;}
.y118{bottom:737.025000px;}
.yb5{bottom:737.745000px;}
.y15f{bottom:740.625000px;}
.y1db{bottom:744.405000px;}
.y4c{bottom:745.845000px;}
.yec{bottom:746.745000px;}
.y158{bottom:751.245000px;}
.y6a{bottom:754.845000px;}
.y94{bottom:755.565000px;}
.yc5{bottom:756.825000px;}
.y1c3{bottom:757.545000px;}
.y4b{bottom:764.745000px;}
.yeb{bottom:765.825000px;}
.y154{bottom:767.265000px;}
.y26{bottom:768.705000px;}
.y113{bottom:768.885000px;}
.y69{bottom:773.745000px;}
.yb4{bottom:774.645000px;}
.y93{bottom:774.825000px;}
.yc4{bottom:775.725000px;}
.y15e{bottom:777.525000px;}
.y1da{bottom:781.485000px;}
.y4a{bottom:783.825000px;}
.yea{bottom:784.725000px;}
.y68{bottom:792.825000px;}
.ydd{bottom:793.545000px;}
.y92{bottom:793.725000px;}
.y1c2{bottom:794.625000px;}
.yc3{bottom:794.805000px;}
.y157{bottom:798.405000px;}
.y49{bottom:802.725000px;}
.ye9{bottom:803.805000px;}
.y25{bottom:805.425000px;}
.y67{bottom:811.725000px;}
.y91{bottom:812.805000px;}
.yc2{bottom:813.705000px;}
.y15d{bottom:814.605000px;}
.y10e{bottom:815.505000px;}
.y1d9{bottom:818.385000px;}
.y48{bottom:821.805000px;}
.ye8{bottom:822.705000px;}
.y156{bottom:829.365000px;}
.y66{bottom:830.805000px;}
.y1c1{bottom:831.525000px;}
.y90{bottom:831.705000px;}
.y1bf{bottom:832.785000px;}
.y24{bottom:832.965000px;}
.y47{bottom:840.705000px;}
.ye7{bottom:841.785000px;}
.y65{bottom:849.705000px;}
.yc1{bottom:850.605000px;}
.y8f{bottom:850.785000px;}
.y15c{bottom:851.505000px;}
.y1d8{bottom:855.465000px;}
.y46{bottom:859.785000px;}
.y23{bottom:860.505000px;}
.ye6{bottom:860.685000px;}
.y14f{bottom:861.225000px;}
.y10d{bottom:861.405000px;}
.y1c0{bottom:868.605000px;}
.y64{bottom:868.785000px;}
.y1be{bottom:869.505000px;}
.y8e{bottom:869.685000px;}
.y10b{bottom:877.785000px;}
.y45{bottom:878.685000px;}
.ye5{bottom:879.585000px;}
.y63{bottom:887.685000px;}
.y15b{bottom:888.405000px;}
.y8d{bottom:888.585000px;}
.y152{bottom:892.185000px;}
.y1d7{bottom:892.365000px;}
.y44{bottom:897.585000px;}
.ye4{bottom:898.665000px;}
.y22{bottom:906.270000px;}
.yb3{bottom:906.450000px;}
.y62{bottom:906.630000px;}
.y8c{bottom:907.710000px;}
.y43{bottom:916.710000px;}
.ye3{bottom:917.610000px;}
.y151{bottom:923.370000px;}
.y15a{bottom:925.530000px;}
.y61{bottom:925.710000px;}
.y8b{bottom:926.610000px;}
.y1d6{bottom:929.310000px;}
.y42{bottom:935.610000px;}
.y10a{bottom:944.430000px;}
.y60{bottom:944.610000px;}
.y8a{bottom:945.690000px;}
.y21{bottom:946.230000px;}
.y41{bottom:954.690000px;}
.y14a{bottom:955.050000px;}
.ye2{bottom:963.510000px;}
.y5f{bottom:963.690000px;}
.yc0{bottom:964.590000px;}
.y1d5{bottom:966.390000px;}
.y40{bottom:973.590000px;}
.y89{bottom:982.410000px;}
.y5e{bottom:982.590000px;}
.y1b0{bottom:983.490000px;}
.y20{bottom:986.370000px;}
.y14c{bottom:986.910000px;}
.y3f{bottom:992.490000px;}
.y32{bottom:993.210000px;}
.ybf{bottom:1001.310000px;}
.y5d{bottom:1001.490000px;}
.y1d4{bottom:1003.290000px;}
.y3e{bottom:1011.570000px;}
.y14b{bottom:1018.770000px;}
.y1af{bottom:1020.390000px;}
.y5c{bottom:1020.570000px;}
.y1f{bottom:1026.330000px;}
.y3d{bottom:1030.470000px;}
.y5b{bottom:1039.470000px;}
.y1d3{bottom:1040.370000px;}
.y3c{bottom:1049.550000px;}
.y1e{bottom:1057.290000px;}
.y5a{bottom:1058.550000px;}
.y3b{bottom:1077.270000px;}
.y59{bottom:1077.450000px;}
.y1a{bottom:1087.170000px;}
.y38{bottom:1105.170000px;}
.y19{bottom:1107.510000px;}
.y37{bottom:1125.870000px;}
.y18{bottom:1128.390000px;}
.y17{bottom:1146.930000px;}
.y16{bottom:1165.140000px;}
.y15{bottom:1182.060000px;}
.y14{bottom:1197.720000px;}
.h1a{height:15.480000px;}
.h20{height:15.660000px;}
.h28{height:16.380000px;}
.h30{height:22.500000px;}
.h2e{height:22.536000px;}
.h24{height:29.880000px;}
.h22{height:30.276000px;}
.h25{height:30.960000px;}
.h1e{height:31.140000px;}
.h2a{height:31.176000px;}
.h26{height:31.860000px;}
.h8{height:35.520469px;}
.h9{height:40.472227px;}
.hd{height:44.002969px;}
.ha{height:44.860781px;}
.h1c{height:45.180000px;}
.h2f{height:45.756000px;}
.h1d{height:45.900000px;}
.h27{height:46.620000px;}
.h21{height:46.656000px;}
.h4{height:47.344922px;}
.h1f{height:48.060000px;}
.hb{height:48.774375px;}
.h3{height:49.640625px;}
.h2c{height:52.971680px;}
.h1b{height:52.998047px;}
.h11{height:58.621992px;}
.h6{height:58.651172px;}
.h19{height:59.383125px;}
.h7{height:60.226875px;}
.h23{height:62.460000px;}
.h18{height:64.978594px;}
.h14{height:65.010937px;}
.h13{height:66.757500px;}
.h17{height:68.084282px;}
.h2d{height:69.156000px;}
.hc{height:70.664062px;}
.hf{height:72.562500px;}
.h16{height:74.004654px;}
.h12{height:80.100000px;}
.h15{height:82.676953px;}
.h29{height:93.096000px;}
.h2b{height:93.240000px;}
.h10{height:96.508125px;}
.h5{height:108.036000px;}
.he{height:110.953125px;}
.h2{height:171.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:25.740000px;}
.w12{width:26.820000px;}
.w16{width:27.180000px;}
.w17{width:30.060000px;}
.w13{width:30.096000px;}
.w15{width:34.020000px;}
.w11{width:34.380000px;}
.w18{width:42.696000px;}
.w28{width:48.060000px;}
.w24{width:48.096000px;}
.w23{width:49.680000px;}
.w27{width:49.716000px;}
.w26{width:49.860000px;}
.w6{width:52.236000px;}
.w25{width:53.460000px;}
.w10{width:55.800000px;}
.wf{width:55.836000px;}
.w29{width:56.520000px;}
.we{width:61.200000px;}
.w1a{width:74.556000px;}
.w7{width:87.480000px;}
.w19{width:90.000000px;}
.w22{width:96.120000px;}
.w1f{width:99.360000px;}
.w21{width:99.576000px;}
.w20{width:101.556000px;}
.wd{width:117.000000px;}
.wc{width:117.036000px;}
.wb{width:132.696000px;}
.w1d{width:144.216000px;}
.w1e{width:152.670000px;}
.w1c{width:195.690000px;}
.w1b{width:200.910000px;}
.w8{width:261.795000px;}
.w2{width:266.295000px;}
.w9{width:372.135000px;}
.w3{width:468.645000px;}
.wa{width:721.410000px;}
.w5{width:765.180000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:5.220000px;}
.x32{left:6.525000px;}
.x1b{left:8.100000px;}
.x2d{left:9.180000px;}
.x2{left:10.800000px;}
.x48{left:12.240000px;}
.x21{left:13.320000px;}
.x22{left:15.660000px;}
.x24{left:17.640000px;}
.x23{left:19.260000px;}
.x43{left:20.565000px;}
.x1f{left:22.680000px;}
.x45{left:24.300000px;}
.x3d{left:27.360000px;}
.x3b{left:30.105000px;}
.x38{left:34.020000px;}
.x33{left:35.676000px;}
.x28{left:39.960000px;}
.x1a{left:55.800000px;}
.x26{left:58.500000px;}
.x3{left:62.145000px;}
.x6{left:63.900000px;}
.x16{left:66.060000px;}
.x36{left:78.660000px;}
.xc{left:81.215987px;}
.x20{left:90.174000px;}
.xe{left:101.015987px;}
.xd{left:105.155987px;}
.x1c{left:108.036000px;}
.x4b{left:117.935987px;}
.x34{left:133.056000px;}
.x5{left:149.805000px;}
.xa{left:164.729987px;}
.x3e{left:182.730000px;}
.x27{left:191.190000px;}
.x1d{left:195.510000px;}
.x9{left:219.989987px;}
.x2c{left:225.570000px;}
.x25{left:228.459000px;}
.x3a{left:232.410000px;}
.x2a{left:252.390000px;}
.x4{left:255.495000px;}
.x3f{left:280.515000px;}
.x2e{left:282.495000px;}
.x19{left:289.694987px;}
.x29{left:308.235000px;}
.x35{left:333.975000px;}
.x2f{left:342.255000px;}
.x2b{left:369.435000px;}
.x40{left:383.835000px;}
.x30{left:399.495000px;}
.x15{left:420.014987px;}
.x3c{left:433.545000px;}
.x1e{left:457.305000px;}
.xf{left:468.104987px;}
.x18{left:473.144987px;}
.x41{left:481.605000px;}
.x49{left:500.144987px;}
.x4a{left:527.144987px;}
.x37{left:529.665000px;}
.x1{left:567.105000px;}
.xb{left:576.644987px;}
.x42{left:577.725000px;}
.x44{left:625.830000px;}
.x13{left:668.489987px;}
.x39{left:673.890000px;}
.x12{left:689.729987px;}
.x10{left:691.349987px;}
.x11{left:699.809987px;}
.x46{left:730.410000px;}
.x14{left:731.849987px;}
.x47{left:778.500000px;}
.x17{left:816.119987px;}
.x7{left:822.779987px;}
.x8{left:829.439987px;}
@media print{
.v2{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls9{letter-spacing:-1.920000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.368533pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.075733pt;}
.ls8{letter-spacing:-0.000001pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.046720pt;}
.lsf{letter-spacing:0.071467pt;}
.ls3{letter-spacing:0.084267pt;}
.ls12{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.106240pt;}
.ls15{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.271360pt;}
.lse{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.320000pt;}
.ls6{letter-spacing:4.480000pt;}
.ls21{letter-spacing:6.671360pt;}
.ls11{letter-spacing:7.040000pt;}
.lsc{letter-spacing:10.080000pt;}
.lsb{letter-spacing:28.800000pt;}
.ls1a{letter-spacing:35.471360pt;}
.ls20{letter-spacing:36.111360pt;}
.ls22{letter-spacing:80.640000pt;}
.ls1f{letter-spacing:80.768000pt;}
.ls1c{letter-spacing:81.280000pt;}
.ls1e{letter-spacing:81.408000pt;}
.ls5{letter-spacing:1437.301333pt;}
.ws4{word-spacing:-15.808000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws11{word-spacing:-14.313067pt;}
.ws0{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.364267pt;}
.ws3{word-spacing:-13.326720pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.802027pt;}
.wsd{word-spacing:-11.680000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-2.101760pt;}
._0{margin-left:-1.037440pt;}
._1{width:1.062400pt;}
._2{width:1.993387pt;}
._9{width:2.910507pt;}
._5{width:3.882667pt;}
._4{width:4.928000pt;}
._7{width:6.695680pt;}
._6{width:7.595520pt;}
._17{width:8.574080pt;}
._11{width:9.891840pt;}
._28{width:11.287040pt;}
._13{width:12.541440pt;}
._12{width:13.542400pt;}
._1a{width:15.656747pt;}
._f{width:16.586240pt;}
._d{width:17.781760pt;}
._e{width:18.723840pt;}
._10{width:20.011947pt;}
._8{width:21.196800pt;}
._22{width:22.138880pt;}
._1e{width:23.139840pt;}
._26{width:24.552960pt;}
._2a{width:25.495040pt;}
._19{width:27.109120pt;}
._c{width:28.301867pt;}
._b{width:29.422080pt;}
._27{width:30.440960pt;}
._18{width:32.148480pt;}
._29{width:33.326080pt;}
._31{width:35.089920pt;}
._2e{width:36.152960pt;}
._25{width:37.094400pt;}
._2f{width:38.036480pt;}
._24{width:38.978560pt;}
._1d{width:40.686080pt;}
._23{width:42.570240pt;}
._3c{width:43.581440pt;}
._2c{width:44.785280pt;}
._14{width:46.868480pt;}
._32{width:48.517120pt;}
._33{width:50.086400pt;}
._a{width:51.873280pt;}
._3f{width:54.228480pt;}
._21{width:55.505920pt;}
._2b{width:56.519680pt;}
._2d{width:57.587200pt;}
._1f{width:59.645440pt;}
._37{width:60.823040pt;}
._3d{width:62.000640pt;}
._20{width:64.120320pt;}
._34{width:65.356800pt;}
._30{width:66.711040pt;}
._38{width:68.124160pt;}
._3a{width:69.478400pt;}
._39{width:70.456960pt;}
._47{width:71.598080pt;}
._15{width:74.659840pt;}
._16{width:76.172800pt;}
._43{width:77.760000pt;}
._3e{width:78.958080pt;}
._35{width:82.432000pt;}
._36{width:83.432960pt;}
._45{width:85.140480pt;}
._40{width:87.672320pt;}
._41{width:95.267840pt;}
._42{width:96.388267pt;}
._1b{width:97.623040pt;}
._1c{width:98.778240pt;}
._46{width:100.331520pt;}
._3b{width:291.578027pt;}
._44{width:515.070507pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y36{bottom:-14.720000pt;}
.y13{bottom:-8.480000pt;}
.yb{bottom:-5.120000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:2.560000pt;}
.y11a{bottom:2.720000pt;}
.y131{bottom:2.880000pt;}
.y133{bottom:3.200000pt;}
.y184{bottom:5.600000pt;}
.y185{bottom:5.760000pt;}
.y12{bottom:6.880000pt;}
.y111{bottom:8.960000pt;}
.y116{bottom:9.120000pt;}
.y14d{bottom:9.440000pt;}
.y14e{bottom:9.600000pt;}
.ya{bottom:10.240000pt;}
.y35{bottom:11.680000pt;}
.y187{bottom:13.760000pt;}
.y189{bottom:13.920000pt;}
.y112{bottom:15.200000pt;}
.y12c{bottom:15.360000pt;}
.y124{bottom:15.680000pt;}
.y117{bottom:15.840000pt;}
.y183{bottom:16.000000pt;}
.y12e{bottom:16.320000pt;}
.y119{bottom:16.480000pt;}
.y153{bottom:16.520000pt;}
.y128{bottom:16.640000pt;}
.y132{bottom:17.120000pt;}
.y11f{bottom:17.760000pt;}
.y11{bottom:22.266667pt;}
.y9{bottom:22.560000pt;}
.y110{bottom:22.720000pt;}
.y115{bottom:23.040000pt;}
.y11d{bottom:24.000000pt;}
.y10f{bottom:28.960000pt;}
.y114{bottom:29.600000pt;}
.y34{bottom:30.080000pt;}
.y135{bottom:30.240000pt;}
.y123{bottom:30.266667pt;}
.y127{bottom:30.400000pt;}
.y12a{bottom:30.560000pt;}
.y11e{bottom:31.520000pt;}
.y8{bottom:34.880000pt;}
.y10{bottom:37.466667pt;}
.y155{bottom:44.000000pt;}
.y150{bottom:44.040000pt;}
.y129{bottom:44.320000pt;}
.y33{bottom:48.480000pt;}
.y7{bottom:49.600000pt;}
.y1d{bottom:50.080000pt;}
.y3a{bottom:50.720000pt;}
.yf{bottom:52.826667pt;}
.y39{bottom:65.120000pt;}
.y1c{bottom:65.920000pt;}
.y6{bottom:67.680000pt;}
.ye{bottom:68.186667pt;}
.y1b{bottom:80.320000pt;}
.y1{bottom:81.440000pt;}
.yd{bottom:83.546667pt;}
.y5{bottom:85.626667pt;}
.y4{bottom:103.546667pt;}
.ybe{bottom:116.960000pt;}
.y145{bottom:117.280000pt;}
.y1b6{bottom:117.600000pt;}
.yb2{bottom:117.760000pt;}
.y149{bottom:118.080000pt;}
.ydc{bottom:119.360000pt;}
.y3{bottom:121.466667pt;}
.y109{bottom:125.600000pt;}
.y172{bottom:128.960000pt;}
.y1bd{bottom:131.200000pt;}
.y1ae{bottom:132.000000pt;}
.y88{bottom:132.960000pt;}
.ybd{bottom:133.760000pt;}
.yb1{bottom:134.720000pt;}
.y1ea{bottom:135.840000pt;}
.y2{bottom:139.386667pt;}
.yc{bottom:139.520000pt;}
.y108{bottom:142.720000pt;}
.y171{bottom:145.920000pt;}
.y1d2{bottom:147.520000pt;}
.y1ad{bottom:148.960000pt;}
.y87{bottom:149.760000pt;}
.y144{bottom:150.080000pt;}
.ybc{bottom:150.720000pt;}
.y148{bottom:151.040000pt;}
.yb0{bottom:151.520000pt;}
.ydb{bottom:152.186667pt;}
.y107{bottom:159.546667pt;}
.y17f{bottom:162.746667pt;}
.y1bc{bottom:164.986667pt;}
.y86{bottom:166.746667pt;}
.y143{bottom:167.226667pt;}
.ybb{bottom:167.546667pt;}
.yaf{bottom:168.346667pt;}
.y1e9{bottom:168.666667pt;}
.y106{bottom:176.346667pt;}
.y170{bottom:178.586667pt;}
.y17e{bottom:179.546667pt;}
.y1d1{bottom:180.346667pt;}
.y1ac{bottom:181.626667pt;}
.y1bb{bottom:181.786667pt;}
.y85{bottom:183.546667pt;}
.y147{bottom:183.866667pt;}
.y142{bottom:184.026667pt;}
.yba{bottom:184.346667pt;}
.yda{bottom:185.146667pt;}
.yae{bottom:185.306667pt;}
.y105{bottom:193.306667pt;}
.y16f{bottom:195.546667pt;}
.y17d{bottom:196.506667pt;}
.y1ab{bottom:198.746667pt;}
.y84{bottom:200.346667pt;}
.y141{bottom:200.826667pt;}
.yb9{bottom:201.306667pt;}
.y1e8{bottom:201.626667pt;}
.yad{bottom:202.106667pt;}
.y104{bottom:210.106667pt;}
.y16e{bottom:212.506667pt;}
.y17c{bottom:213.306667pt;}
.y1aa{bottom:215.546667pt;}
.y83{bottom:217.306667pt;}
.y140{bottom:217.786667pt;}
.yb8{bottom:218.106667pt;}
.yd9{bottom:219.066667pt;}
.y103{bottom:227.066667pt;}
.y16d{bottom:229.306667pt;}
.y17b{bottom:230.266667pt;}
.y1a9{bottom:232.346667pt;}
.y82{bottom:234.106667pt;}
.y1e7{bottom:234.426667pt;}
.y13f{bottom:234.586667pt;}
.yac{bottom:234.906667pt;}
.yb7{bottom:235.066667pt;}
.yd8{bottom:235.866667pt;}
.y102{bottom:243.866667pt;}
.y1d0{bottom:246.106667pt;}
.y16c{bottom:246.266667pt;}
.y1ba{bottom:249.306667pt;}
.y81{bottom:251.066667pt;}
.y13e{bottom:251.546667pt;}
.y1b5{bottom:251.706667pt;}
.yab{bottom:251.866667pt;}
.yd7{bottom:252.826667pt;}
.y17a{bottom:262.906667pt;}
.y16b{bottom:263.066667pt;}
.y1a8{bottom:266.106667pt;}
.y1e6{bottom:267.226667pt;}
.y80{bottom:267.866667pt;}
.y13d{bottom:268.346667pt;}
.yaa{bottom:268.826667pt;}
.yd6{bottom:269.626667pt;}
.y101{bottom:276.666667pt;}
.y1cf{bottom:278.906667pt;}
.y16a{bottom:279.866667pt;}
.y1a7{bottom:283.066667pt;}
.y7f{bottom:284.826667pt;}
.y13c{bottom:285.146667pt;}
.ya9{bottom:285.626667pt;}
.yd5{bottom:286.426667pt;}
.y100{bottom:293.626667pt;}
.y179{bottom:295.706667pt;}
.y169{bottom:296.826667pt;}
.y1a6{bottom:299.866667pt;}
.y1e5{bottom:300.186667pt;}
.y196{bottom:300.666667pt;}
.y7e{bottom:301.626667pt;}
.y13b{bottom:302.106667pt;}
.ya8{bottom:302.426667pt;}
.yd4{bottom:303.386667pt;}
.yff{bottom:310.426667pt;}
.y1ce{bottom:311.866667pt;}
.y178{bottom:312.826667pt;}
.y168{bottom:313.626667pt;}
.y1a5{bottom:316.826667pt;}
.y195{bottom:317.626667pt;}
.yb6{bottom:318.266667pt;}
.y7d{bottom:318.426667pt;}
.y13a{bottom:318.906667pt;}
.ya7{bottom:319.386667pt;}
.yd3{bottom:320.186667pt;}
.yfe{bottom:327.386667pt;}
.y177{bottom:329.626667pt;}
.y167{bottom:330.586667pt;}
.y1e4{bottom:332.986667pt;}
.y1a4{bottom:333.626667pt;}
.y194{bottom:334.426667pt;}
.y7c{bottom:335.386667pt;}
.y139{bottom:335.866667pt;}
.ya6{bottom:336.186667pt;}
.yd2{bottom:337.146667pt;}
.yfd{bottom:344.186667pt;}
.y1cd{bottom:344.666667pt;}
.y176{bottom:346.586667pt;}
.y166{bottom:347.386667pt;}
.y1b9{bottom:350.426667pt;}
.y193{bottom:351.386667pt;}
.y7b{bottom:352.186667pt;}
.y138{bottom:352.666667pt;}
.ya5{bottom:353.146667pt;}
.yd1{bottom:353.946667pt;}
.yfc{bottom:361.146667pt;}
.y175{bottom:363.386667pt;}
.y165{bottom:364.186667pt;}
.y1e3{bottom:365.946667pt;}
.y1a3{bottom:367.386667pt;}
.y192{bottom:368.186667pt;}
.y1b4{bottom:368.986667pt;}
.y7a{bottom:369.146667pt;}
.y137{bottom:369.506667pt;}
.yd0{bottom:370.786667pt;}
.y1cc{bottom:377.666667pt;}
.yfb{bottom:377.986667pt;}
.y174{bottom:380.226667pt;}
.y1a2{bottom:384.226667pt;}
.y191{bottom:385.186667pt;}
.y146{bottom:385.346667pt;}
.ya4{bottom:385.826667pt;}
.y79{bottom:385.986667pt;}
.ycf{bottom:387.746667pt;}
.y31{bottom:391.906667pt;}
.yfa{bottom:394.786667pt;}
.y164{bottom:397.026667pt;}
.y173{bottom:397.186667pt;}
.y1e2{bottom:398.786667pt;}
.y136{bottom:399.906667pt;}
.y1a1{bottom:401.186667pt;}
.y190{bottom:401.986667pt;}
.ya3{bottom:402.786667pt;}
.ye1{bottom:403.586667pt;}
.yce{bottom:404.546667pt;}
.y1cb{bottom:410.466667pt;}
.y163{bottom:413.986667pt;}
.y134{bottom:414.306667pt;}
.y30{bottom:414.946667pt;}
.y1a0{bottom:417.986667pt;}
.y78{bottom:418.626667pt;}
.y18f{bottom:418.786667pt;}
.ya2{bottom:419.746667pt;}
.ye0{bottom:420.546667pt;}
.yf9{bottom:427.586667pt;}
.y1e1{bottom:431.586667pt;}
.y19f{bottom:434.786667pt;}
.y77{bottom:435.746667pt;}
.ya1{bottom:436.546667pt;}
.y162{bottom:437.186667pt;}
.ycd{bottom:437.346667pt;}
.ydf{bottom:437.506667pt;}
.y2f{bottom:437.826667pt;}
.y1ca{bottom:443.266667pt;}
.yf8{bottom:444.546667pt;}
.y18a{bottom:449.026667pt;}
.y19e{bottom:451.746667pt;}
.y76{bottom:452.546667pt;}
.ya0{bottom:453.506667pt;}
.ycc{bottom:454.306667pt;}
.y130{bottom:456.386667pt;}
.y2e{bottom:460.866667pt;}
.yf7{bottom:461.506667pt;}
.y1e0{bottom:464.546667pt;}
.y1b8{bottom:468.546667pt;}
.y75{bottom:469.506667pt;}
.y9f{bottom:470.306667pt;}
.y12f{bottom:470.786667pt;}
.ycb{bottom:471.106667pt;}
.y1c9{bottom:476.226667pt;}
.y188{bottom:476.546667pt;}
.yf6{bottom:478.306667pt;}
.y2d{bottom:483.906667pt;}
.y12d{bottom:485.346667pt;}
.y19d{bottom:485.506667pt;}
.y1b3{bottom:486.146667pt;}
.y74{bottom:486.306667pt;}
.y9e{bottom:487.106667pt;}
.yca{bottom:488.066667pt;}
.yf5{bottom:495.106667pt;}
.y1df{bottom:497.346667pt;}
.y19c{bottom:502.306667pt;}
.y73{bottom:503.106667pt;}
.y9d{bottom:504.066667pt;}
.y186{bottom:504.226667pt;}
.yc9{bottom:504.866667pt;}
.y2c{bottom:506.946667pt;}
.y54{bottom:508.866667pt;}
.y1c8{bottom:509.026667pt;}
.yf4{bottom:512.066667pt;}
.y126{bottom:513.506667pt;}
.y19b{bottom:519.106667pt;}
.y72{bottom:520.066667pt;}
.yde{bottom:520.706667pt;}
.y9c{bottom:520.866667pt;}
.yc8{bottom:521.826667pt;}
.y53{bottom:525.826667pt;}
.yf3{bottom:528.866667pt;}
.y2b{bottom:529.826667pt;}
.y1de{bottom:530.306667pt;}
.y180{bottom:532.386667pt;}
.y19a{bottom:536.066667pt;}
.y71{bottom:536.866667pt;}
.y9b{bottom:537.826667pt;}
.yc7{bottom:538.626667pt;}
.y12b{bottom:540.706667pt;}
.y1c7{bottom:541.986667pt;}
.y52{bottom:542.626667pt;}
.yf2{bottom:545.826667pt;}
.y199{bottom:552.866667pt;}
.y182{bottom:553.186667pt;}
.y70{bottom:553.826667pt;}
.y9a{bottom:554.626667pt;}
.y125{bottom:555.266667pt;}
.y58{bottom:562.466667pt;}
.yf1{bottom:562.626667pt;}
.y2a{bottom:563.106667pt;}
.y51{bottom:567.586667pt;}
.y122{bottom:569.666667pt;}
.y1b7{bottom:569.826667pt;}
.y6f{bottom:570.626667pt;}
.yc6{bottom:571.266667pt;}
.y99{bottom:571.426667pt;}
.y181{bottom:573.826667pt;}
.y1c6{bottom:574.786667pt;}
.y57{bottom:579.426667pt;}
.y198{bottom:586.653333pt;}
.y6e{bottom:587.453333pt;}
.y98{bottom:588.413333pt;}
.y50{bottom:594.013333pt;}
.y1dd{bottom:596.093333pt;}
.yf0{bottom:596.413333pt;}
.y121{bottom:597.373333pt;}
.y29{bottom:598.653333pt;}
.y18e{bottom:603.293333pt;}
.y197{bottom:603.453333pt;}
.y56{bottom:604.253333pt;}
.y6d{bottom:604.413333pt;}
.y97{bottom:605.213333pt;}
.y1c5{bottom:607.613333pt;}
.y161{bottom:611.453333pt;}
.y11c{bottom:611.773333pt;}
.y4f{bottom:612.413333pt;}
.yef{bottom:613.213333pt;}
.y18d{bottom:620.413333pt;}
.y6c{bottom:621.213333pt;}
.y96{bottom:622.173333pt;}
.y120{bottom:626.173333pt;}
.y28{bottom:626.333333pt;}
.y160{bottom:628.413333pt;}
.y1dc{bottom:628.893333pt;}
.y55{bottom:629.053333pt;}
.y4e{bottom:629.213333pt;}
.yee{bottom:630.173333pt;}
.y18c{bottom:637.213333pt;}
.y1b2{bottom:638.173333pt;}
.y95{bottom:638.973333pt;}
.y1c4{bottom:640.573333pt;}
.y11b{bottom:640.733333pt;}
.y4d{bottom:646.173333pt;}
.yed{bottom:646.973333pt;}
.y27{bottom:650.813333pt;}
.y159{bottom:650.973333pt;}
.y6b{bottom:654.013333pt;}
.y18b{bottom:654.173333pt;}
.y1b1{bottom:654.973333pt;}
.y118{bottom:655.133333pt;}
.yb5{bottom:655.773333pt;}
.y15f{bottom:658.333333pt;}
.y1db{bottom:661.693333pt;}
.y4c{bottom:662.973333pt;}
.yec{bottom:663.773333pt;}
.y158{bottom:667.773333pt;}
.y6a{bottom:670.973333pt;}
.y94{bottom:671.613333pt;}
.yc5{bottom:672.733333pt;}
.y1c3{bottom:673.373333pt;}
.y4b{bottom:679.773333pt;}
.yeb{bottom:680.733333pt;}
.y154{bottom:682.013333pt;}
.y26{bottom:683.293333pt;}
.y113{bottom:683.453333pt;}
.y69{bottom:687.773333pt;}
.yb4{bottom:688.573333pt;}
.y93{bottom:688.733333pt;}
.yc4{bottom:689.533333pt;}
.y15e{bottom:691.133333pt;}
.y1da{bottom:694.653333pt;}
.y4a{bottom:696.733333pt;}
.yea{bottom:697.533333pt;}
.y68{bottom:704.733333pt;}
.ydd{bottom:705.373333pt;}
.y92{bottom:705.533333pt;}
.y1c2{bottom:706.333333pt;}
.yc3{bottom:706.493333pt;}
.y157{bottom:709.693333pt;}
.y49{bottom:713.533333pt;}
.ye9{bottom:714.493333pt;}
.y25{bottom:715.933333pt;}
.y67{bottom:721.533333pt;}
.y91{bottom:722.493333pt;}
.yc2{bottom:723.293333pt;}
.y15d{bottom:724.093333pt;}
.y10e{bottom:724.893333pt;}
.y1d9{bottom:727.453333pt;}
.y48{bottom:730.493333pt;}
.ye8{bottom:731.293333pt;}
.y156{bottom:737.213333pt;}
.y66{bottom:738.493333pt;}
.y1c1{bottom:739.133333pt;}
.y90{bottom:739.293333pt;}
.y1bf{bottom:740.253333pt;}
.y24{bottom:740.413333pt;}
.y47{bottom:747.293333pt;}
.ye7{bottom:748.253333pt;}
.y65{bottom:755.293333pt;}
.yc1{bottom:756.093333pt;}
.y8f{bottom:756.253333pt;}
.y15c{bottom:756.893333pt;}
.y1d8{bottom:760.413333pt;}
.y46{bottom:764.253333pt;}
.y23{bottom:764.893333pt;}
.ye6{bottom:765.053333pt;}
.y14f{bottom:765.533333pt;}
.y10d{bottom:765.693333pt;}
.y1c0{bottom:772.093333pt;}
.y64{bottom:772.253333pt;}
.y1be{bottom:772.893333pt;}
.y8e{bottom:773.053333pt;}
.y10b{bottom:780.253333pt;}
.y45{bottom:781.053333pt;}
.ye5{bottom:781.853333pt;}
.y63{bottom:789.053333pt;}
.y15b{bottom:789.693333pt;}
.y8d{bottom:789.853333pt;}
.y152{bottom:793.053333pt;}
.y1d7{bottom:793.213333pt;}
.y44{bottom:797.853333pt;}
.ye4{bottom:798.813333pt;}
.y22{bottom:805.573333pt;}
.yb3{bottom:805.733333pt;}
.y62{bottom:805.893333pt;}
.y8c{bottom:806.853333pt;}
.y43{bottom:814.853333pt;}
.ye3{bottom:815.653333pt;}
.y151{bottom:820.773333pt;}
.y15a{bottom:822.693333pt;}
.y61{bottom:822.853333pt;}
.y8b{bottom:823.653333pt;}
.y1d6{bottom:826.053333pt;}
.y42{bottom:831.653333pt;}
.y10a{bottom:839.493333pt;}
.y60{bottom:839.653333pt;}
.y8a{bottom:840.613333pt;}
.y21{bottom:841.093333pt;}
.y41{bottom:848.613333pt;}
.y14a{bottom:848.933333pt;}
.ye2{bottom:856.453333pt;}
.y5f{bottom:856.613333pt;}
.yc0{bottom:857.413333pt;}
.y1d5{bottom:859.013333pt;}
.y40{bottom:865.413333pt;}
.y89{bottom:873.253333pt;}
.y5e{bottom:873.413333pt;}
.y1b0{bottom:874.213333pt;}
.y20{bottom:876.773333pt;}
.y14c{bottom:877.253333pt;}
.y3f{bottom:882.213333pt;}
.y32{bottom:882.853333pt;}
.ybf{bottom:890.053333pt;}
.y5d{bottom:890.213333pt;}
.y1d4{bottom:891.813333pt;}
.y3e{bottom:899.173333pt;}
.y14b{bottom:905.573333pt;}
.y1af{bottom:907.013333pt;}
.y5c{bottom:907.173333pt;}
.y1f{bottom:912.293333pt;}
.y3d{bottom:915.973333pt;}
.y5b{bottom:923.973333pt;}
.y1d3{bottom:924.773333pt;}
.y3c{bottom:932.933333pt;}
.y1e{bottom:939.813333pt;}
.y5a{bottom:940.933333pt;}
.y3b{bottom:957.573333pt;}
.y59{bottom:957.733333pt;}
.y1a{bottom:966.373333pt;}
.y38{bottom:982.373333pt;}
.y19{bottom:984.453333pt;}
.y37{bottom:1000.773333pt;}
.y18{bottom:1003.013333pt;}
.y17{bottom:1019.493333pt;}
.y16{bottom:1035.680000pt;}
.y15{bottom:1050.720000pt;}
.y14{bottom:1064.640000pt;}
.h1a{height:13.760000pt;}
.h20{height:13.920000pt;}
.h28{height:14.560000pt;}
.h30{height:20.000000pt;}
.h2e{height:20.032000pt;}
.h24{height:26.560000pt;}
.h22{height:26.912000pt;}
.h25{height:27.520000pt;}
.h1e{height:27.680000pt;}
.h2a{height:27.712000pt;}
.h26{height:28.320000pt;}
.h8{height:31.573750pt;}
.h9{height:35.975313pt;}
.hd{height:39.113750pt;}
.ha{height:39.876250pt;}
.h1c{height:40.160000pt;}
.h2f{height:40.672000pt;}
.h1d{height:40.800000pt;}
.h27{height:41.440000pt;}
.h21{height:41.472000pt;}
.h4{height:42.084375pt;}
.h1f{height:42.720000pt;}
.hb{height:43.355000pt;}
.h3{height:44.125000pt;}
.h2c{height:47.085938pt;}
.h1b{height:47.109375pt;}
.h11{height:52.108438pt;}
.h6{height:52.134375pt;}
.h19{height:52.785000pt;}
.h7{height:53.535000pt;}
.h23{height:55.520000pt;}
.h18{height:57.758750pt;}
.h14{height:57.787500pt;}
.h13{height:59.340000pt;}
.h17{height:60.519362pt;}
.h2d{height:61.472000pt;}
.hc{height:62.812500pt;}
.hf{height:64.500000pt;}
.h16{height:65.781915pt;}
.h12{height:71.200000pt;}
.h15{height:73.490625pt;}
.h29{height:82.752000pt;}
.h2b{height:82.880000pt;}
.h10{height:85.785000pt;}
.h5{height:96.032000pt;}
.he{height:98.625000pt;}
.h2{height:152.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:22.880000pt;}
.w12{width:23.840000pt;}
.w16{width:24.160000pt;}
.w17{width:26.720000pt;}
.w13{width:26.752000pt;}
.w15{width:30.240000pt;}
.w11{width:30.560000pt;}
.w18{width:37.952000pt;}
.w28{width:42.720000pt;}
.w24{width:42.752000pt;}
.w23{width:44.160000pt;}
.w27{width:44.192000pt;}
.w26{width:44.320000pt;}
.w6{width:46.432000pt;}
.w25{width:47.520000pt;}
.w10{width:49.600000pt;}
.wf{width:49.632000pt;}
.w29{width:50.240000pt;}
.we{width:54.400000pt;}
.w1a{width:66.272000pt;}
.w7{width:77.760000pt;}
.w19{width:80.000000pt;}
.w22{width:85.440000pt;}
.w1f{width:88.320000pt;}
.w21{width:88.512000pt;}
.w20{width:90.272000pt;}
.wd{width:104.000000pt;}
.wc{width:104.032000pt;}
.wb{width:117.952000pt;}
.w1d{width:128.192000pt;}
.w1e{width:135.706667pt;}
.w1c{width:173.946667pt;}
.w1b{width:178.586667pt;}
.w8{width:232.706667pt;}
.w2{width:236.706667pt;}
.w9{width:330.786667pt;}
.w3{width:416.573333pt;}
.wa{width:641.253333pt;}
.w5{width:680.160000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:4.640000pt;}
.x32{left:5.800000pt;}
.x1b{left:7.200000pt;}
.x2d{left:8.160000pt;}
.x2{left:9.600000pt;}
.x48{left:10.880000pt;}
.x21{left:11.840000pt;}
.x22{left:13.920000pt;}
.x24{left:15.680000pt;}
.x23{left:17.120000pt;}
.x43{left:18.280000pt;}
.x1f{left:20.160000pt;}
.x45{left:21.600000pt;}
.x3d{left:24.320000pt;}
.x3b{left:26.760000pt;}
.x38{left:30.240000pt;}
.x33{left:31.712000pt;}
.x28{left:35.520000pt;}
.x1a{left:49.600000pt;}
.x26{left:52.000000pt;}
.x3{left:55.240000pt;}
.x6{left:56.800000pt;}
.x16{left:58.720000pt;}
.x36{left:69.920000pt;}
.xc{left:72.191988pt;}
.x20{left:80.154667pt;}
.xe{left:89.791988pt;}
.xd{left:93.471988pt;}
.x1c{left:96.032000pt;}
.x4b{left:104.831988pt;}
.x34{left:118.272000pt;}
.x5{left:133.160000pt;}
.xa{left:146.426655pt;}
.x3e{left:162.426667pt;}
.x27{left:169.946667pt;}
.x1d{left:173.786667pt;}
.x9{left:195.546655pt;}
.x2c{left:200.506667pt;}
.x25{left:203.074667pt;}
.x3a{left:206.586667pt;}
.x2a{left:224.346667pt;}
.x4{left:227.106667pt;}
.x3f{left:249.346667pt;}
.x2e{left:251.106667pt;}
.x19{left:257.506655pt;}
.x29{left:273.986667pt;}
.x35{left:296.866667pt;}
.x2f{left:304.226667pt;}
.x2b{left:328.386667pt;}
.x40{left:341.186667pt;}
.x30{left:355.106667pt;}
.x15{left:373.346655pt;}
.x3c{left:385.373333pt;}
.x1e{left:406.493333pt;}
.xf{left:416.093322pt;}
.x18{left:420.573322pt;}
.x41{left:428.093333pt;}
.x49{left:444.573322pt;}
.x4a{left:468.573322pt;}
.x37{left:470.813333pt;}
.x1{left:504.093333pt;}
.xb{left:512.573322pt;}
.x42{left:513.533333pt;}
.x44{left:556.293333pt;}
.x13{left:594.213322pt;}
.x39{left:599.013333pt;}
.x12{left:613.093322pt;}
.x10{left:614.533322pt;}
.x11{left:622.053322pt;}
.x46{left:649.253333pt;}
.x14{left:650.533322pt;}
.x47{left:692.000000pt;}
.x17{left:725.439988pt;}
.x7{left:731.359988pt;}
.x8{left:737.279988pt;}
}




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