
    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_7aaf8b67503139931d0a7ca1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_64b9f12e3e23c0a40c05bf3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_0e44bf2393b38b38d57415c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_05969301d9aee0c233fe6a34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.364258;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_1956d53a6203b31781f10020.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_1d370098c871159fe075a91e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7f9c80202c934393733f8ea6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.776855;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_2f67c9ecb81a831fc0a923f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.884277;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_ba831aa88b45b56ff31e601e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0a56b612e6141974744496a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107422;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_afc8cade06421efd93bcbe72.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_73f0b93d7e3117c689b6c044.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104492;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.872440px;}
.ls1f{letter-spacing:-1.134000px;}
.ls14{letter-spacing:-0.828000px;}
.ls20{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.294588px;}
.ls1c{letter-spacing:-0.152400px;}
.ls11{letter-spacing:-0.109200px;}
.ls17{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.060120px;}
.ls18{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.050700px;}
.lsd{letter-spacing:-0.024048px;}
.ls10{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006012px;}
.ls4{letter-spacing:0.032940px;}
.lsf{letter-spacing:0.042084px;}
.ls5{letter-spacing:0.046116px;}
.ls6{letter-spacing:0.052704px;}
.ls2{letter-spacing:0.059292px;}
.ls1{letter-spacing:0.065880px;}
.ls21{letter-spacing:0.070560px;}
.ls9{letter-spacing:0.072468px;}
.ls3{letter-spacing:0.079056px;}
.lsa{letter-spacing:0.085644px;}
.ls8{letter-spacing:0.092232px;}
.lsb{letter-spacing:0.098820px;}
.ls19{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.305280px;}
.ls1b{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.341280px;}
.ls22{letter-spacing:0.382080px;}
.ls15{letter-spacing:7.200000px;}
.ls12{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws32{word-spacing:-59.760000px;}
.ws3b{word-spacing:-18.720120px;}
.ws39{word-spacing:-18.414720px;}
.ws31{word-spacing:-18.305520px;}
.ws38{word-spacing:-18.262320px;}
.ws3a{word-spacing:-17.586720px;}
.ws37{word-spacing:-16.873080px;}
.ws36{word-spacing:-16.613280px;}
.ws35{word-spacing:-16.560000px;}
.ws34{word-spacing:-16.506480px;}
.ws0{word-spacing:-13.563072px;}
.ws1{word-spacing:-13.292532px;}
.ws2{word-spacing:-11.709360px;}
.ws21{word-spacing:-4.321728px;}
.ws22{word-spacing:-4.308552px;}
.ws15{word-spacing:-3.998916px;}
.ws16{word-spacing:-3.959388px;}
.ws24{word-spacing:-1.106784px;}
.ws1f{word-spacing:-0.751032px;}
.ws6{word-spacing:-0.312624px;}
.ws3{word-spacing:-0.276552px;}
.wsc{word-spacing:-0.032940px;}
.ws1c{word-spacing:-0.026352px;}
.wsa{word-spacing:-0.019764px;}
.ws2f{word-spacing:-0.013176px;}
.ws8{word-spacing:-0.006588px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:0.006588px;}
.wsb{word-spacing:0.026352px;}
.ws5{word-spacing:0.114228px;}
.ws12{word-spacing:1.423008px;}
.ws2b{word-spacing:2.141100px;}
.ws11{word-spacing:3.570696px;}
.wse{word-spacing:3.946212px;}
.ws2e{word-spacing:4.644540px;}
.ws23{word-spacing:5.751324px;}
.ws10{word-spacing:6.093900px;}
.wsf{word-spacing:6.120252px;}
.ws19{word-spacing:7.530084px;}
.ws17{word-spacing:7.543260px;}
.ws30{word-spacing:8.617104px;}
.wsd{word-spacing:8.623692px;}
.ws1a{word-spacing:9.341784px;}
.ws27{word-spacing:11.496060px;}
.ws13{word-spacing:11.851812px;}
.ws18{word-spacing:11.858400px;}
.ws2c{word-spacing:13.294584px;}
.ws14{word-spacing:15.093108px;}
.ws25{word-spacing:15.099696px;}
.ws1e{word-spacing:15.811200px;}
.ws26{word-spacing:16.160364px;}
.ws28{word-spacing:16.180128px;}
.ws1b{word-spacing:19.408248px;}
.ws2a{word-spacing:23.736564px;}
.ws29{word-spacing:23.749740px;}
.ws2d{word-spacing:27.682776px;}
.ws20{word-spacing:28.051704px;}
.ws1d{word-spacing:29.869992px;}
.ws33{word-spacing:53.021040px;}
.ws4{word-spacing:94.105836px;}
._5{margin-left:-4.703040px;}
._9{margin-left:-2.848320px;}
._0{margin-left:-1.316628px;}
._1{width:1.220436px;}
._6{width:2.328408px;}
._2{width:3.335376px;}
._19{width:4.363668px;}
._7{width:5.431680px;}
._8{width:6.445392px;}
._3{width:8.147520px;}
._4{width:9.199188px;}
._e{width:10.200960px;}
._14{width:11.498016px;}
._b{width:12.781848px;}
._a{width:13.976640px;}
._c{width:15.235200px;}
._d{width:16.361688px;}
._2d{width:17.412948px;}
._11{width:19.466388px;}
._12{width:21.080664px;}
._15{width:22.505256px;}
._13{width:24.505920px;}
._f{width:25.836480px;}
._10{width:26.978112px;}
._16{width:28.218240px;}
._2b{width:29.253600px;}
._2a{width:30.263508px;}
._18{width:34.320492px;}
._17{width:35.695188px;}
._1a{width:37.094400px;}
._26{width:38.352960px;}
._27{width:39.404628px;}
._32{width:40.803840px;}
._24{width:42.062400px;}
._20{width:43.114068px;}
._1e{width:44.654364px;}
._1d{width:46.036800px;}
._1f{width:59.152320px;}
._2c{width:65.029428px;}
._2e{width:67.291668px;}
._2f{width:68.901600px;}
._33{width:72.590868px;}
._25{width:74.445588px;}
._1b{width:75.666708px;}
._1c{width:76.922892px;}
._29{width:97.078068px;}
._28{width:98.233920px;}
._23{width:104.595840px;}
._30{width:115.522560px;}
._21{width:116.714880px;}
._22{width:118.163988px;}
._31{width:314.242560px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.120000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs5{font-size:66.240000px;}
.fsa{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.156000px;}
.yb6{bottom:7.560000px;}
.y9d{bottom:7.740000px;}
.y8d{bottom:12.240000px;}
.y88{bottom:17.460000px;}
.y98{bottom:21.030000px;}
.y30{bottom:21.156000px;}
.yb5{bottom:24.840000px;}
.y14a{bottom:24.885000px;}
.y9f{bottom:25.020000px;}
.yc9{bottom:25.050000px;}
.yc1{bottom:25.065000px;}
.y138{bottom:31.140000px;}
.yee{bottom:33.840000px;}
.y8c{bottom:34.050000px;}
.yac{bottom:34.740000px;}
.y31{bottom:37.500091px;}
.y2f{bottom:39.156000px;}
.y96{bottom:40.170000px;}
.ya1{bottom:42.120000px;}
.y149{bottom:42.165000px;}
.ybb{bottom:42.300000px;}
.yc8{bottom:42.330000px;}
.y13d{bottom:44.310000px;}
.ybf{bottom:44.460000px;}
.y37{bottom:45.900000px;}
.yf0{bottom:46.620000px;}
.y137{bottom:48.420000px;}
.yed{bottom:51.120000px;}
.y8b{bottom:51.330000px;}
.yab{bottom:52.020000px;}
.yb3{bottom:54.180000px;}
.y148{bottom:59.445000px;}
.y13c{bottom:61.590000px;}
.ybe{bottom:61.740000px;}
.yef{bottom:63.900000px;}
.y97{bottom:65.265000px;}
.yec{bottom:68.400000px;}
.yba{bottom:69.300000px;}
.yb2{bottom:71.460000px;}
.y36{bottom:73.800000px;}
.y3{bottom:77.507490px;}
.y8f{bottom:77.910000px;}
.y13b{bottom:78.870000px;}
.ybd{bottom:79.065000px;}
.yeb{bottom:85.680000px;}
.y90{bottom:87.765000px;}
.yb1{bottom:88.740000px;}
.y2{bottom:95.783970px;}
.y13a{bottom:96.150000px;}
.yd0{bottom:96.165000px;}
.y91{bottom:97.635000px;}
.yea{bottom:102.960000px;}
.yb0{bottom:106.020000px;}
.y92{bottom:107.490000px;}
.yc4{bottom:113.400000px;}
.ycf{bottom:113.445000px;}
.y1{bottom:114.060450px;}
.yaf{bottom:123.120000px;}
.ye9{bottom:124.740000px;}
.yce{bottom:130.725000px;}
.y1a5{bottom:137.520000px;}
.ye8{bottom:142.020000px;}
.y9b{bottom:144.900000px;}
.ycd{bottom:148.005000px;}
.y135{bottom:151.950000px;}
.y8a{bottom:153.180000px;}
.y1a4{bottom:156.600000px;}
.y164{bottom:156.780000px;}
.yc7{bottom:157.140000px;}
.y1d6{bottom:158.760000px;}
.ye7{bottom:159.120000px;}
.y1f2{bottom:159.840000px;}
.yf4{bottom:166.320000px;}
.y1c4{bottom:168.840000px;}
.y134{bottom:169.230000px;}
.y163{bottom:175.680000px;}
.y93{bottom:176.475000px;}
.y1d5{bottom:177.840000px;}
.ye6{bottom:180.945000px;}
.y1a3{bottom:184.530000px;}
.yf3{bottom:185.430000px;}
.y133{bottom:186.510000px;}
.y114{bottom:186.870000px;}
.y1c3{bottom:187.770000px;}
.y162{bottom:194.610000px;}
.y94{bottom:196.200000px;}
.y1d4{bottom:196.770000px;}
.ye5{bottom:198.225000px;}
.y1a2{bottom:203.610000px;}
.yf2{bottom:204.330000px;}
.ya3{bottom:204.345000px;}
.y113{bottom:205.770000px;}
.y2d{bottom:205.838310px;}
.y1f1{bottom:206.850000px;}
.y132{bottom:208.110000px;}
.y161{bottom:213.690000px;}
.y1c2{bottom:215.850000px;}
.yc3{bottom:218.730000px;}
.ye4{bottom:220.005000px;}
.y1a1{bottom:222.510000px;}
.yf1{bottom:223.410000px;}
.y89{bottom:223.770000px;}
.y112{bottom:224.670000px;}
.y131{bottom:225.390000px;}
.y1f0{bottom:225.750000px;}
.y95{bottom:225.795000px;}
.y160{bottom:232.590000px;}
.y1c1{bottom:234.750000px;}
.y2c{bottom:238.333620px;}
.y111{bottom:243.750000px;}
.ye3{bottom:248.610000px;}
.y1a0{bottom:250.410000px;}
.y17e{bottom:251.490000px;}
.y1ef{bottom:253.650000px;}
.y2b{bottom:258.756420px;}
.y87{bottom:260.490000px;}
.y15f{bottom:260.670000px;}
.y99{bottom:260.790000px;}
.y1c0{bottom:262.650000px;}
.yc6{bottom:263.010000px;}
.y19f{bottom:269.490000px;}
.y17d{bottom:270.570000px;}
.y110{bottom:271.650000px;}
.y1ee{bottom:272.730000px;}
.y139{bottom:274.530000px;}
.y15e{bottom:279.570000px;}
.y1bf{bottom:281.730000px;}
.y6f{bottom:286.590000px;}
.y2a{bottom:291.251730px;}
.y1ed{bottom:291.630000px;}
.y19e{bottom:297.390000px;}
.y15d{bottom:298.470000px;}
.y17c{bottom:298.830000px;}
.y1be{bottom:300.630000px;}
.y6e{bottom:305.670000px;}
.yc5{bottom:307.290000px;}
.y10f{bottom:308.730000px;}
.y86{bottom:309.450000px;}
.y1ec{bottom:310.710000px;}
.y29{bottom:311.674530px;}
.y145{bottom:312.915000px;}
.y19d{bottom:316.470000px;}
.y15c{bottom:317.550000px;}
.y1bd{bottom:319.710000px;}
.y6d{bottom:324.570000px;}
.y85{bottom:326.730000px;}
.y10e{bottom:327.630000px;}
.y1d3{bottom:328.710000px;}
.y144{bottom:330.195000px;}
.y28{bottom:332.196150px;}
.y19c{bottom:335.370000px;}
.y136{bottom:336.090000px;}
.y1eb{bottom:338.610000px;}
.y17b{bottom:342.750000px;}
.y6c{bottom:343.470000px;}
.y15b{bottom:345.450000px;}
.y10d{bottom:346.530000px;}
.y143{bottom:347.475000px;}
.y1bc{bottom:347.610000px;}
.ybc{bottom:351.390000px;}
.y27{bottom:352.618950px;}
.y1ea{bottom:357.510000px;}
.y176{bottom:357.690000px;}
.y84{bottom:362.190000px;}
.y19b{bottom:363.270000px;}
.y15a{bottom:364.530000px;}
.y142{bottom:364.755000px;}
.y10c{bottom:365.610000px;}
.y6b{bottom:371.550000px;}
.y26{bottom:373.140570px;}
.y1bb{bottom:375.510000px;}
.y175{bottom:376.590000px;}
.yc2{bottom:378.390000px;}
.y83{bottom:381.270000px;}
.y19a{bottom:382.350000px;}
.y159{bottom:383.430000px;}
.y141{bottom:386.535000px;}
.y6a{bottom:390.450000px;}
.y10b{bottom:393.510000px;}
.y25{bottom:393.563370px;}
.y1ba{bottom:394.590000px;}
.y82{bottom:400.170000px;}
.y199{bottom:401.250000px;}
.y158{bottom:402.510000px;}
.y130{bottom:403.770000px;}
.y140{bottom:403.815000px;}
.y174{bottom:404.490000px;}
.yc0{bottom:405.390000px;}
.y69{bottom:409.530000px;}
.y10a{bottom:412.590000px;}
.y1b9{bottom:413.490000px;}
.y24{bottom:414.084990px;}
.y81{bottom:419.070000px;}
.y157{bottom:421.455000px;}
.y173{bottom:423.615000px;}
.y68{bottom:428.475000px;}
.y198{bottom:429.375000px;}
.y12f{bottom:430.815000px;}
.y109{bottom:431.535000px;}
.y23{bottom:434.507790px;}
.y58{bottom:438.915000px;}
.y156{bottom:440.355000px;}
.y1b8{bottom:441.615000px;}
.y1e9{bottom:442.515000px;}
.y80{bottom:447.195000px;}
.y67{bottom:447.375000px;}
.y197{bottom:448.275000px;}
.yb9{bottom:449.715000px;}
.y108{bottom:450.435000px;}
.y172{bottom:451.515000px;}
.y22{bottom:455.029410px;}
.y57{bottom:457.815000px;}
.y155{bottom:459.435000px;}
.y1b7{bottom:460.515000px;}
.y7f{bottom:466.095000px;}
.y66{bottom:466.455000px;}
.y107{bottom:469.515000px;}
.y12e{bottom:470.055000px;}
.y1e8{bottom:470.415000px;}
.y171{bottom:470.595000px;}
.y21{bottom:475.452210px;}
.y56{bottom:476.715000px;}
.y1d2{bottom:479.415000px;}
.y154{bottom:487.335000px;}
.ye2{bottom:487.875000px;}
.y1b6{bottom:488.415000px;}
.y170{bottom:489.495000px;}
.y7e{bottom:494.175000px;}
.y65{bottom:494.715000px;}
.y55{bottom:495.795000px;}
.y20{bottom:495.973830px;}
.y196{bottom:496.515000px;}
.y106{bottom:497.415000px;}
.y1d1{bottom:498.495000px;}
.y12d{bottom:505.695000px;}
.y153{bottom:506.415000px;}
.y1b5{bottom:507.495000px;}
.y1e7{bottom:508.395000px;}
.y16f{bottom:508.575000px;}
.y7d{bottom:513.075000px;}
.y54{bottom:514.695000px;}
.y195{bottom:515.775000px;}
.y1f{bottom:516.396630px;}
.y105{bottom:516.495000px;}
.y152{bottom:525.315000px;}
.y12c{bottom:525.675000px;}
.y1b4{bottom:526.395000px;}
.ye1{bottom:527.115000px;}
.y16e{bottom:527.475000px;}
.y53{bottom:533.775000px;}
.y194{bottom:534.675000px;}
.y104{bottom:535.395000px;}
.y1e{bottom:536.918250px;}
.yae{bottom:538.275000px;}
.y7c{bottom:540.975000px;}
.y64{bottom:542.055000px;}
.y151{bottom:544.215000px;}
.ye0{bottom:544.395000px;}
.y12b{bottom:545.475000px;}
.y16d{bottom:546.375000px;}
.y52{bottom:552.675000px;}
.y103{bottom:554.475000px;}
.y1e6{bottom:555.375000px;}
.y1d{bottom:557.439870px;}
.y7b{bottom:560.055000px;}
.y63{bottom:561.135000px;}
.y193{bottom:562.575000px;}
.y1b3{bottom:564.375000px;}
.yb8{bottom:565.275000px;}
.y16c{bottom:565.455000px;}
.y51{bottom:571.575000px;}
.y150{bottom:572.295000px;}
.y1e5{bottom:574.275000px;}
.y1c{bottom:577.862670px;}
.y7a{bottom:578.955000px;}
.ydf{bottom:579.855000px;}
.y192{bottom:581.655000px;}
.y102{bottom:582.375000px;}
.y62{bottom:589.035000px;}
.yb7{bottom:592.275000px;}
.y16b{bottom:593.355000px;}
.y12a{bottom:594.075000px;}
.y79{bottom:598.035000px;}
.y1b{bottom:598.384290px;}
.y50{bottom:599.655000px;}
.y191{bottom:600.555000px;}
.y13f{bottom:606.495000px;}
.y101{bottom:606.855000px;}
.yde{bottom:607.755000px;}
.y61{bottom:607.935000px;}
.y1b2{bottom:611.355000px;}
.y16a{bottom:612.435000px;}
.y129{bottom:613.875000px;}
.y78{bottom:616.935000px;}
.y4f{bottom:618.555000px;}
.y1e4{bottom:621.255000px;}
.ydd{bottom:626.835000px;}
.y190{bottom:628.635000px;}
.y1d0{bottom:630.255000px;}
.y1a{bottom:630.780780px;}
.y128{bottom:633.855000px;}
.y60{bottom:636.015000px;}
.yb4{bottom:636.555000px;}
.y4e{bottom:637.635000px;}
.y1b1{bottom:639.255000px;}
.y1e3{bottom:640.335000px;}
.y77{bottom:644.835000px;}
.ydc{bottom:645.735000px;}
.y169{bottom:645.915000px;}
.y18f{bottom:647.535000px;}
.y19{bottom:651.302400px;}
.y127{bottom:653.655000px;}
.y5f{bottom:654.915000px;}
.y4d{bottom:656.535000px;}
.y1b0{bottom:658.335000px;}
.y1e2{bottom:659.235000px;}
.y76{bottom:663.945000px;}
.ydb{bottom:664.845000px;}
.y18e{bottom:666.645000px;}
.y14f{bottom:668.085000px;}
.y126{bottom:673.485000px;}
.y5e{bottom:674.025000px;}
.y1cf{bottom:677.265000px;}
.yaa{bottom:680.685000px;}
.y75{bottom:682.845000px;}
.yda{bottom:683.745000px;}
.y18{bottom:683.797710px;}
.y4c{bottom:684.645000px;}
.y1af{bottom:686.265000px;}
.y1e1{bottom:687.345000px;}
.y125{bottom:693.285000px;}
.y18d{bottom:694.545000px;}
.y1ce{bottom:696.345000px;}
.y5d{bottom:701.925000px;}
.y4b{bottom:703.545000px;}
.y17{bottom:704.220510px;}
.y1ae{bottom:705.345000px;}
.y1e0{bottom:706.245000px;}
.yad{bottom:707.685000px;}
.y74{bottom:710.925000px;}
.yd9{bottom:712.005000px;}
.y17a{bottom:712.725000px;}
.y124{bottom:713.085000px;}
.y18c{bottom:713.445000px;}
.y5c{bottom:720.825000px;}
.y4a{bottom:722.445000px;}
.y1ad{bottom:724.245000px;}
.y1df{bottom:725.145000px;}
.y14e{bottom:729.465000px;}
.y73{bottom:729.825000px;}
.y179{bottom:731.625000px;}
.y18b{bottom:732.525000px;}
.y16{bottom:736.715820px;}
.y49{bottom:741.525000px;}
.y123{bottom:742.065000px;}
.y1cd{bottom:743.145000px;}
.y1de{bottom:744.225000px;}
.y72{bottom:748.725000px;}
.y5b{bottom:749.085000px;}
.y178{bottom:750.525000px;}
.ya2{bottom:751.965000px;}
.y1ac{bottom:752.145000px;}
.y15{bottom:757.237440px;}
.yd8{bottom:759.345000px;}
.y48{bottom:760.425000px;}
.y18a{bottom:760.785000px;}
.y122{bottom:761.865000px;}
.y1cc{bottom:762.225000px;}
.y1ab{bottom:771.225000px;}
.y1dd{bottom:772.125000px;}
.y14d{bottom:773.745000px;}
.y177{bottom:775.005000px;}
.y71{bottom:776.985000px;}
.y14{bottom:777.660240px;}
.yd7{bottom:778.425000px;}
.ya9{bottom:778.965000px;}
.y47{bottom:779.505000px;}
.y121{bottom:781.665000px;}
.y1cb{bottom:790.125000px;}
.y5a{bottom:793.005000px;}
.yd6{bottom:797.325000px;}
.y13{bottom:798.181860px;}
.y46{bottom:798.405000px;}
.y1aa{bottom:799.125000px;}
.y1dc{bottom:800.205000px;}
.y120{bottom:801.465000px;}
.y189{bottom:808.125000px;}
.y1ca{bottom:809.205000px;}
.yd5{bottom:816.405000px;}
.y14c{bottom:818.025000px;}
.y1a9{bottom:818.205000px;}
.y12{bottom:818.604660px;}
.y1db{bottom:819.105000px;}
.y70{bottom:820.905000px;}
.y11f{bottom:821.265000px;}
.y8e{bottom:822.960000px;}
.ya8{bottom:823.245000px;}
.y45{bottom:826.305000px;}
.y188{bottom:827.205000px;}
.y1c9{bottom:828.105000px;}
.yd4{bottom:835.305000px;}
.y1a8{bottom:837.105000px;}
.y11{bottom:839.126280px;}
.y11e{bottom:841.245000px;}
.y44{bottom:845.385000px;}
.y187{bottom:846.105000px;}
.y1da{bottom:847.005000px;}
.ya7{bottom:850.245000px;}
.yd3{bottom:854.205000px;}
.y1c8{bottom:856.005000px;}
.y100{bottom:858.525000px;}
.y10{bottom:859.549080px;}
.y14b{bottom:862.305000px;}
.y43{bottom:864.285000px;}
.y186{bottom:865.005000px;}
.y1d9{bottom:866.085000px;}
.y11d{bottom:870.045000px;}
.y1c7{bottom:875.085000px;}
.ya6{bottom:877.245000px;}
.ycc{bottom:879.585000px;}
.yf{bottom:880.070700px;}
.y42{bottom:883.365000px;}
.y185{bottom:884.085000px;}
.y147{bottom:889.305000px;}
.y11c{bottom:889.845000px;}
.yff{bottom:893.985000px;}
.ye{bottom:900.493500px;}
.y41{bottom:902.265000px;}
.y1a7{bottom:902.985000px;}
.y11b{bottom:909.690000px;}
.y184{bottom:912.030000px;}
.yfe{bottom:913.110000px;}
.yd{bottom:921.015120px;}
.y40{bottom:921.210000px;}
.ya5{bottom:921.570000px;}
.y1c6{bottom:922.110000px;}
.yd2{bottom:923.730000px;}
.y11a{bottom:929.490000px;}
.y183{bottom:931.110000px;}
.yfd{bottom:932.010000px;}
.y1c5{bottom:941.010000px;}
.yc{bottom:941.437920px;}
.ya4{bottom:948.570000px;}
.y3f{bottom:949.290000px;}
.y119{bottom:949.470000px;}
.y182{bottom:950.010000px;}
.yfc{bottom:959.910000px;}
.yb{bottom:961.959540px;}
.y146{bottom:968.010000px;}
.y3e{bottom:968.190000px;}
.y181{bottom:968.910000px;}
.y118{bottom:969.270000px;}
.y9a{bottom:975.570000px;}
.yfb{bottom:978.990000px;}
.y168{bottom:982.050000px;}
.ya{bottom:982.382340px;}
.yd1{bottom:985.290000px;}
.y3d{bottom:987.270000px;}
.y180{bottom:987.990000px;}
.y1a6{bottom:996.990000px;}
.yfa{bottom:997.890000px;}
.y167{bottom:999.330000px;}
.ya0{bottom:1002.570000px;}
.y9{bottom:1002.903960px;}
.y3c{bottom:1006.170000px;}
.y1d8{bottom:1006.890000px;}
.y17f{bottom:1015.890000px;}
.yf9{bottom:1016.970000px;}
.y3b{bottom:1025.070000px;}
.y1d7{bottom:1025.970000px;}
.y1f4{bottom:1026.870000px;}
.y13e{bottom:1029.570000px;}
.y117{bottom:1034.970000px;}
.yf8{bottom:1035.870000px;}
.y8{bottom:1040.520450px;}
.y3a{bottom:1044.150000px;}
.ycb{bottom:1046.850000px;}
.y116{bottom:1053.870000px;}
.y1f3{bottom:1054.770000px;}
.y39{bottom:1063.050000px;}
.yf7{bottom:1063.770000px;}
.y9e{bottom:1063.950000px;}
.y7{bottom:1067.788830px;}
.y166{bottom:1072.770000px;}
.yca{bottom:1073.850000px;}
.y115{bottom:1081.770000px;}
.y6{bottom:1088.312340px;}
.y38{bottom:1091.310000px;}
.y165{bottom:1091.850000px;}
.yf6{bottom:1100.850000px;}
.y9c{bottom:1108.230000px;}
.yf5{bottom:1119.750000px;}
.y5{bottom:1120.807650px;}
.y59{bottom:1121.190000px;}
.y4{bottom:1141.230450px;}
.y35{bottom:1152.360000px;}
.y34{bottom:1180.080000px;}
.y2e{bottom:1190.716278px;}
.y33{bottom:1206.360000px;}
.h8{height:16.500090px;}
.h23{height:26.100000px;}
.h15{height:26.280000px;}
.h28{height:26.316000px;}
.hd{height:36.000000px;}
.h10{height:36.580430px;}
.h11{height:36.689625px;}
.h5{height:38.180391px;}
.h1{height:43.152539px;}
.h1d{height:43.380000px;}
.h1c{height:43.416000px;}
.h16{height:43.560000px;}
.h19{height:43.596000px;}
.h12{height:50.312813px;}
.h6{height:56.100315px;}
.h13{height:56.320312px;}
.h3{height:59.060391px;}
.h4{height:59.066871px;}
.h2f{height:59.415469px;}
.h2{height:59.478574px;}
.h17{height:60.660000px;}
.h2e{height:60.696000px;}
.h1f{height:60.840000px;}
.h22{height:60.876000px;}
.ha{height:62.327813px;}
.h7{height:62.373047px;}
.h2a{height:66.960000px;}
.hb{height:69.086250px;}
.he{height:69.876000px;}
.h1a{height:70.560000px;}
.h27{height:72.090000px;}
.h26{height:74.004654px;}
.hc{height:75.093750px;}
.h2d{height:77.976000px;}
.h1e{height:87.840000px;}
.h20{height:97.596000px;}
.h2b{height:114.696000px;}
.h21{height:131.940000px;}
.h1b{height:141.696000px;}
.h14{height:158.940000px;}
.h24{height:166.350000px;}
.h18{height:222.870000px;}
.h25{height:238.530000px;}
.h29{height:243.930000px;}
.hf{height:286.020000px;}
.h2c{height:422.355000px;}
.h9{height:1262.880000px;}
.h0{height:1263.000000px;}
.w3{width:25.027500px;}
.w8{width:106.920000px;}
.w14{width:116.280000px;}
.w15{width:147.816000px;}
.wb{width:148.536000px;}
.w12{width:180.390000px;}
.wa{width:201.495000px;}
.wc{width:222.690000px;}
.w13{width:233.355000px;}
.w11{width:264.810000px;}
.we{width:306.930000px;}
.w9{width:371.235000px;}
.wf{width:371.445000px;}
.w2{width:461.133000px;}
.wd{width:565.200000px;}
.w7{width:679.650000px;}
.w10{width:680.010000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w6{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:8.640000px;}
.x36{left:10.080000px;}
.x19{left:11.340000px;}
.x4b{left:12.600000px;}
.x38{left:14.445000px;}
.x1e{left:15.480000px;}
.x48{left:17.100000px;}
.x56{left:18.360000px;}
.x39{left:19.620000px;}
.x50{left:20.880000px;}
.x4a{left:23.040000px;}
.x3f{left:24.660000px;}
.x61{left:25.920000px;}
.x1d{left:27.180000px;}
.x3d{left:28.665000px;}
.x33{left:30.210000px;}
.x22{left:31.320000px;}
.x51{left:32.400000px;}
.x23{left:34.200000px;}
.x3e{left:36.180000px;}
.x20{left:37.440000px;}
.x57{left:38.880000px;}
.x42{left:39.960000px;}
.x3b{left:41.265000px;}
.x32{left:42.480000px;}
.x43{left:44.865000px;}
.x40{left:46.620000px;}
.x46{left:48.420000px;}
.x63{left:50.265000px;}
.x65{left:51.525000px;}
.x1f{left:53.454000px;}
.x45{left:55.485000px;}
.x64{left:57.270000px;}
.x25{left:59.085000px;}
.x1c{left:60.345000px;}
.x27{left:62.280000px;}
.x62{left:63.765000px;}
.x37{left:66.630000px;}
.x47{left:68.430000px;}
.x4c{left:69.690000px;}
.x49{left:71.310000px;}
.x4e{left:73.830000px;}
.x3c{left:75.090000px;}
.x5f{left:76.185000px;}
.x4d{left:79.230000px;}
.x4f{left:80.490000px;}
.x3a{left:81.585000px;}
.x44{left:84.270000px;}
.x1a{left:90.945000px;}
.x58{left:92.190000px;}
.x60{left:97.425000px;}
.x41{left:100.665000px;}
.x5c{left:102.774000px;}
.x10{left:106.415987px;}
.x28{left:109.005000px;}
.x54{left:111.234000px;}
.x52{left:113.255987px;}
.x16{left:121.355987px;}
.x7{left:127.613790px;}
.x59{left:132.330000px;}
.x13{left:133.415987px;}
.x14{left:137.735987px;}
.x4{left:143.539380px;}
.x8{left:145.253160px;}
.xb{left:152.182500px;}
.x29{left:155.730000px;}
.x2{left:159.120000px;}
.x68{left:160.229987px;}
.x26{left:162.900000px;}
.x18{left:185.079000px;}
.x5a{left:193.529987px;}
.x2a{left:202.470000px;}
.x11{left:213.509987px;}
.xa{left:215.848480px;}
.x34{left:223.665000px;}
.x35{left:227.085000px;}
.x2b{left:249.195000px;}
.x1{left:284.130000px;}
.x2c{left:295.920000px;}
.x5{left:313.202790px;}
.x2d{left:342.645000px;}
.x3{left:351.176670px;}
.x66{left:356.834987px;}
.x6{left:359.640000px;}
.x21{left:361.875000px;}
.xd{left:368.174987px;}
.x5d{left:372.675000px;}
.x2e{left:389.370000px;}
.x53{left:398.594987px;}
.x9{left:400.669920px;}
.x17{left:403.994987px;}
.x55{left:414.795000px;}
.xf{left:432.824987px;}
.xc{left:433.901230px;}
.x2f{left:436.110000px;}
.xe{left:446.504987px;}
.x30{left:482.835000px;}
.x31{left:529.590000px;}
.x5e{left:553.785000px;}
.x1b{left:584.565000px;}
.x5b{left:609.089987px;}
.x12{left:643.829987px;}
.x15{left:730.049987px;}
.x67{left:740.129987px;}
.x69{left:754.889987px;}
.x6a{left:779.759987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.553280pt;}
.ls1f{letter-spacing:-1.008000pt;}
.ls14{letter-spacing:-0.736000pt;}
.ls20{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.261856pt;}
.ls1c{letter-spacing:-0.135467pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls17{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.053440pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.045067pt;}
.lsd{letter-spacing:-0.021376pt;}
.ls10{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005344pt;}
.ls4{letter-spacing:0.029280pt;}
.lsf{letter-spacing:0.037408pt;}
.ls5{letter-spacing:0.040992pt;}
.ls6{letter-spacing:0.046848pt;}
.ls2{letter-spacing:0.052704pt;}
.ls1{letter-spacing:0.058560pt;}
.ls21{letter-spacing:0.062720pt;}
.ls9{letter-spacing:0.064416pt;}
.ls3{letter-spacing:0.070272pt;}
.lsa{letter-spacing:0.076128pt;}
.ls8{letter-spacing:0.081984pt;}
.lsb{letter-spacing:0.087840pt;}
.ls19{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.271360pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.303360pt;}
.ls22{letter-spacing:0.339627pt;}
.ls15{letter-spacing:6.400000pt;}
.ls12{letter-spacing:56.912640pt;}
.ws32{word-spacing:-53.120000pt;}
.ws3b{word-spacing:-16.640107pt;}
.ws39{word-spacing:-16.368640pt;}
.ws31{word-spacing:-16.271573pt;}
.ws38{word-spacing:-16.233173pt;}
.ws3a{word-spacing:-15.632640pt;}
.ws37{word-spacing:-14.998293pt;}
.ws36{word-spacing:-14.767360pt;}
.ws35{word-spacing:-14.720000pt;}
.ws34{word-spacing:-14.672427pt;}
.ws0{word-spacing:-12.056064pt;}
.ws1{word-spacing:-11.815584pt;}
.ws2{word-spacing:-10.408320pt;}
.ws21{word-spacing:-3.841536pt;}
.ws22{word-spacing:-3.829824pt;}
.ws15{word-spacing:-3.554592pt;}
.ws16{word-spacing:-3.519456pt;}
.ws24{word-spacing:-0.983808pt;}
.ws1f{word-spacing:-0.667584pt;}
.ws6{word-spacing:-0.277888pt;}
.ws3{word-spacing:-0.245824pt;}
.wsc{word-spacing:-0.029280pt;}
.ws1c{word-spacing:-0.023424pt;}
.wsa{word-spacing:-0.017568pt;}
.ws2f{word-spacing:-0.011712pt;}
.ws8{word-spacing:-0.005856pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:0.005856pt;}
.wsb{word-spacing:0.023424pt;}
.ws5{word-spacing:0.101536pt;}
.ws12{word-spacing:1.264896pt;}
.ws2b{word-spacing:1.903200pt;}
.ws11{word-spacing:3.173952pt;}
.wse{word-spacing:3.507744pt;}
.ws2e{word-spacing:4.128480pt;}
.ws23{word-spacing:5.112288pt;}
.ws10{word-spacing:5.416800pt;}
.wsf{word-spacing:5.440224pt;}
.ws19{word-spacing:6.693408pt;}
.ws17{word-spacing:6.705120pt;}
.ws30{word-spacing:7.659648pt;}
.wsd{word-spacing:7.665504pt;}
.ws1a{word-spacing:8.303808pt;}
.ws27{word-spacing:10.218720pt;}
.ws13{word-spacing:10.534944pt;}
.ws18{word-spacing:10.540800pt;}
.ws2c{word-spacing:11.817408pt;}
.ws14{word-spacing:13.416096pt;}
.ws25{word-spacing:13.421952pt;}
.ws1e{word-spacing:14.054400pt;}
.ws26{word-spacing:14.364768pt;}
.ws28{word-spacing:14.382336pt;}
.ws1b{word-spacing:17.251776pt;}
.ws2a{word-spacing:21.099168pt;}
.ws29{word-spacing:21.110880pt;}
.ws2d{word-spacing:24.606912pt;}
.ws20{word-spacing:24.934848pt;}
.ws1d{word-spacing:26.551104pt;}
.ws33{word-spacing:47.129813pt;}
.ws4{word-spacing:83.649632pt;}
._5{margin-left:-4.180480pt;}
._9{margin-left:-2.531840pt;}
._0{margin-left:-1.170336pt;}
._1{width:1.084832pt;}
._6{width:2.069696pt;}
._2{width:2.964779pt;}
._19{width:3.878816pt;}
._7{width:4.828160pt;}
._8{width:5.729237pt;}
._3{width:7.242240pt;}
._4{width:8.177056pt;}
._e{width:9.067520pt;}
._14{width:10.220459pt;}
._b{width:11.361643pt;}
._a{width:12.423680pt;}
._c{width:13.542400pt;}
._d{width:14.543723pt;}
._2d{width:15.478176pt;}
._11{width:17.303456pt;}
._12{width:18.738368pt;}
._15{width:20.004672pt;}
._13{width:21.783040pt;}
._f{width:22.965760pt;}
._10{width:23.980544pt;}
._16{width:25.082880pt;}
._2b{width:26.003200pt;}
._2a{width:26.900896pt;}
._18{width:30.507104pt;}
._17{width:31.729056pt;}
._1a{width:32.972800pt;}
._26{width:34.091520pt;}
._27{width:35.026336pt;}
._32{width:36.270080pt;}
._24{width:37.388800pt;}
._20{width:38.323616pt;}
._1e{width:39.692768pt;}
._1d{width:40.921600pt;}
._1f{width:52.579840pt;}
._2c{width:57.803936pt;}
._2e{width:59.814816pt;}
._2f{width:61.245867pt;}
._33{width:64.525216pt;}
._25{width:66.173856pt;}
._1b{width:67.259296pt;}
._1c{width:68.375904pt;}
._29{width:86.291616pt;}
._28{width:87.319040pt;}
._23{width:92.974080pt;}
._30{width:102.686720pt;}
._21{width:103.746560pt;}
._22{width:105.034656pt;}
._31{width:279.326720pt;}
.fs2{font-size:37.440000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs5{font-size:58.880000pt;}
.fsa{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.805333pt;}
.yb6{bottom:6.720000pt;}
.y9d{bottom:6.880000pt;}
.y8d{bottom:10.880000pt;}
.y88{bottom:15.520000pt;}
.y98{bottom:18.693333pt;}
.y30{bottom:18.805333pt;}
.yb5{bottom:22.080000pt;}
.y14a{bottom:22.120000pt;}
.y9f{bottom:22.240000pt;}
.yc9{bottom:22.266667pt;}
.yc1{bottom:22.280000pt;}
.y138{bottom:27.680000pt;}
.yee{bottom:30.080000pt;}
.y8c{bottom:30.266667pt;}
.yac{bottom:30.880000pt;}
.y31{bottom:33.333415pt;}
.y2f{bottom:34.805333pt;}
.y96{bottom:35.706667pt;}
.ya1{bottom:37.440000pt;}
.y149{bottom:37.480000pt;}
.ybb{bottom:37.600000pt;}
.yc8{bottom:37.626667pt;}
.y13d{bottom:39.386667pt;}
.ybf{bottom:39.520000pt;}
.y37{bottom:40.800000pt;}
.yf0{bottom:41.440000pt;}
.y137{bottom:43.040000pt;}
.yed{bottom:45.440000pt;}
.y8b{bottom:45.626667pt;}
.yab{bottom:46.240000pt;}
.yb3{bottom:48.160000pt;}
.y148{bottom:52.840000pt;}
.y13c{bottom:54.746667pt;}
.ybe{bottom:54.880000pt;}
.yef{bottom:56.800000pt;}
.y97{bottom:58.013333pt;}
.yec{bottom:60.800000pt;}
.yba{bottom:61.600000pt;}
.yb2{bottom:63.520000pt;}
.y36{bottom:65.600000pt;}
.y3{bottom:68.895547pt;}
.y8f{bottom:69.253333pt;}
.y13b{bottom:70.106667pt;}
.ybd{bottom:70.280000pt;}
.yeb{bottom:76.160000pt;}
.y90{bottom:78.013333pt;}
.yb1{bottom:78.880000pt;}
.y2{bottom:85.141307pt;}
.y13a{bottom:85.466667pt;}
.yd0{bottom:85.480000pt;}
.y91{bottom:86.786667pt;}
.yea{bottom:91.520000pt;}
.yb0{bottom:94.240000pt;}
.y92{bottom:95.546667pt;}
.yc4{bottom:100.800000pt;}
.ycf{bottom:100.840000pt;}
.y1{bottom:101.387067pt;}
.yaf{bottom:109.440000pt;}
.ye9{bottom:110.880000pt;}
.yce{bottom:116.200000pt;}
.y1a5{bottom:122.240000pt;}
.ye8{bottom:126.240000pt;}
.y9b{bottom:128.800000pt;}
.ycd{bottom:131.560000pt;}
.y135{bottom:135.066667pt;}
.y8a{bottom:136.160000pt;}
.y1a4{bottom:139.200000pt;}
.y164{bottom:139.360000pt;}
.yc7{bottom:139.680000pt;}
.y1d6{bottom:141.120000pt;}
.ye7{bottom:141.440000pt;}
.y1f2{bottom:142.080000pt;}
.yf4{bottom:147.840000pt;}
.y1c4{bottom:150.080000pt;}
.y134{bottom:150.426667pt;}
.y163{bottom:156.160000pt;}
.y93{bottom:156.866667pt;}
.y1d5{bottom:158.080000pt;}
.ye6{bottom:160.840000pt;}
.y1a3{bottom:164.026667pt;}
.yf3{bottom:164.826667pt;}
.y133{bottom:165.786667pt;}
.y114{bottom:166.106667pt;}
.y1c3{bottom:166.906667pt;}
.y162{bottom:172.986667pt;}
.y94{bottom:174.400000pt;}
.y1d4{bottom:174.906667pt;}
.ye5{bottom:176.200000pt;}
.y1a2{bottom:180.986667pt;}
.yf2{bottom:181.626667pt;}
.ya3{bottom:181.640000pt;}
.y113{bottom:182.906667pt;}
.y2d{bottom:182.967387pt;}
.y1f1{bottom:183.866667pt;}
.y132{bottom:184.986667pt;}
.y161{bottom:189.946667pt;}
.y1c2{bottom:191.866667pt;}
.yc3{bottom:194.426667pt;}
.ye4{bottom:195.560000pt;}
.y1a1{bottom:197.786667pt;}
.yf1{bottom:198.586667pt;}
.y89{bottom:198.906667pt;}
.y112{bottom:199.706667pt;}
.y131{bottom:200.346667pt;}
.y1f0{bottom:200.666667pt;}
.y95{bottom:200.706667pt;}
.y160{bottom:206.746667pt;}
.y1c1{bottom:208.666667pt;}
.y2c{bottom:211.852107pt;}
.y111{bottom:216.666667pt;}
.ye3{bottom:220.986667pt;}
.y1a0{bottom:222.586667pt;}
.y17e{bottom:223.546667pt;}
.y1ef{bottom:225.466667pt;}
.y2b{bottom:230.005707pt;}
.y87{bottom:231.546667pt;}
.y15f{bottom:231.706667pt;}
.y99{bottom:231.813333pt;}
.y1c0{bottom:233.466667pt;}
.yc6{bottom:233.786667pt;}
.y19f{bottom:239.546667pt;}
.y17d{bottom:240.506667pt;}
.y110{bottom:241.466667pt;}
.y1ee{bottom:242.426667pt;}
.y139{bottom:244.026667pt;}
.y15e{bottom:248.506667pt;}
.y1bf{bottom:250.426667pt;}
.y6f{bottom:254.746667pt;}
.y2a{bottom:258.890427pt;}
.y1ed{bottom:259.226667pt;}
.y19e{bottom:264.346667pt;}
.y15d{bottom:265.306667pt;}
.y17c{bottom:265.626667pt;}
.y1be{bottom:267.226667pt;}
.y6e{bottom:271.706667pt;}
.yc5{bottom:273.146667pt;}
.y10f{bottom:274.426667pt;}
.y86{bottom:275.066667pt;}
.y1ec{bottom:276.186667pt;}
.y29{bottom:277.044027pt;}
.y145{bottom:278.146667pt;}
.y19d{bottom:281.306667pt;}
.y15c{bottom:282.266667pt;}
.y1bd{bottom:284.186667pt;}
.y6d{bottom:288.506667pt;}
.y85{bottom:290.426667pt;}
.y10e{bottom:291.226667pt;}
.y1d3{bottom:292.186667pt;}
.y144{bottom:293.506667pt;}
.y28{bottom:295.285467pt;}
.y19c{bottom:298.106667pt;}
.y136{bottom:298.746667pt;}
.y1eb{bottom:300.986667pt;}
.y17b{bottom:304.666667pt;}
.y6c{bottom:305.306667pt;}
.y15b{bottom:307.066667pt;}
.y10d{bottom:308.026667pt;}
.y143{bottom:308.866667pt;}
.y1bc{bottom:308.986667pt;}
.ybc{bottom:312.346667pt;}
.y27{bottom:313.439067pt;}
.y1ea{bottom:317.786667pt;}
.y176{bottom:317.946667pt;}
.y84{bottom:321.946667pt;}
.y19b{bottom:322.906667pt;}
.y15a{bottom:324.026667pt;}
.y142{bottom:324.226667pt;}
.y10c{bottom:324.986667pt;}
.y6b{bottom:330.266667pt;}
.y26{bottom:331.680507pt;}
.y1bb{bottom:333.786667pt;}
.y175{bottom:334.746667pt;}
.yc2{bottom:336.346667pt;}
.y83{bottom:338.906667pt;}
.y19a{bottom:339.866667pt;}
.y159{bottom:340.826667pt;}
.y141{bottom:343.586667pt;}
.y6a{bottom:347.066667pt;}
.y10b{bottom:349.786667pt;}
.y25{bottom:349.834107pt;}
.y1ba{bottom:350.746667pt;}
.y82{bottom:355.706667pt;}
.y199{bottom:356.666667pt;}
.y158{bottom:357.786667pt;}
.y130{bottom:358.906667pt;}
.y140{bottom:358.946667pt;}
.y174{bottom:359.546667pt;}
.yc0{bottom:360.346667pt;}
.y69{bottom:364.026667pt;}
.y10a{bottom:366.746667pt;}
.y1b9{bottom:367.546667pt;}
.y24{bottom:368.075547pt;}
.y81{bottom:372.506667pt;}
.y157{bottom:374.626667pt;}
.y173{bottom:376.546667pt;}
.y68{bottom:380.866667pt;}
.y198{bottom:381.666667pt;}
.y12f{bottom:382.946667pt;}
.y109{bottom:383.586667pt;}
.y23{bottom:386.229147pt;}
.y58{bottom:390.146667pt;}
.y156{bottom:391.426667pt;}
.y1b8{bottom:392.546667pt;}
.y1e9{bottom:393.346667pt;}
.y80{bottom:397.506667pt;}
.y67{bottom:397.666667pt;}
.y197{bottom:398.466667pt;}
.yb9{bottom:399.746667pt;}
.y108{bottom:400.386667pt;}
.y172{bottom:401.346667pt;}
.y22{bottom:404.470587pt;}
.y57{bottom:406.946667pt;}
.y155{bottom:408.386667pt;}
.y1b7{bottom:409.346667pt;}
.y7f{bottom:414.306667pt;}
.y66{bottom:414.626667pt;}
.y107{bottom:417.346667pt;}
.y12e{bottom:417.826667pt;}
.y1e8{bottom:418.146667pt;}
.y171{bottom:418.306667pt;}
.y21{bottom:422.624187pt;}
.y56{bottom:423.746667pt;}
.y1d2{bottom:426.146667pt;}
.y154{bottom:433.186667pt;}
.ye2{bottom:433.666667pt;}
.y1b6{bottom:434.146667pt;}
.y170{bottom:435.106667pt;}
.y7e{bottom:439.266667pt;}
.y65{bottom:439.746667pt;}
.y55{bottom:440.706667pt;}
.y20{bottom:440.865627pt;}
.y196{bottom:441.346667pt;}
.y106{bottom:442.146667pt;}
.y1d1{bottom:443.106667pt;}
.y12d{bottom:449.506667pt;}
.y153{bottom:450.146667pt;}
.y1b5{bottom:451.106667pt;}
.y1e7{bottom:451.906667pt;}
.y16f{bottom:452.066667pt;}
.y7d{bottom:456.066667pt;}
.y54{bottom:457.506667pt;}
.y195{bottom:458.466667pt;}
.y1f{bottom:459.019227pt;}
.y105{bottom:459.106667pt;}
.y152{bottom:466.946667pt;}
.y12c{bottom:467.266667pt;}
.y1b4{bottom:467.906667pt;}
.ye1{bottom:468.546667pt;}
.y16e{bottom:468.866667pt;}
.y53{bottom:474.466667pt;}
.y194{bottom:475.266667pt;}
.y104{bottom:475.906667pt;}
.y1e{bottom:477.260667pt;}
.yae{bottom:478.466667pt;}
.y7c{bottom:480.866667pt;}
.y64{bottom:481.826667pt;}
.y151{bottom:483.746667pt;}
.ye0{bottom:483.906667pt;}
.y12b{bottom:484.866667pt;}
.y16d{bottom:485.666667pt;}
.y52{bottom:491.266667pt;}
.y103{bottom:492.866667pt;}
.y1e6{bottom:493.666667pt;}
.y1d{bottom:495.502107pt;}
.y7b{bottom:497.826667pt;}
.y63{bottom:498.786667pt;}
.y193{bottom:500.066667pt;}
.y1b3{bottom:501.666667pt;}
.yb8{bottom:502.466667pt;}
.y16c{bottom:502.626667pt;}
.y51{bottom:508.066667pt;}
.y150{bottom:508.706667pt;}
.y1e5{bottom:510.466667pt;}
.y1c{bottom:513.655707pt;}
.y7a{bottom:514.626667pt;}
.ydf{bottom:515.426667pt;}
.y192{bottom:517.026667pt;}
.y102{bottom:517.666667pt;}
.y62{bottom:523.586667pt;}
.yb7{bottom:526.466667pt;}
.y16b{bottom:527.426667pt;}
.y12a{bottom:528.066667pt;}
.y79{bottom:531.586667pt;}
.y1b{bottom:531.897147pt;}
.y50{bottom:533.026667pt;}
.y191{bottom:533.826667pt;}
.y13f{bottom:539.106667pt;}
.y101{bottom:539.426667pt;}
.yde{bottom:540.226667pt;}
.y61{bottom:540.386667pt;}
.y1b2{bottom:543.426667pt;}
.y16a{bottom:544.386667pt;}
.y129{bottom:545.666667pt;}
.y78{bottom:548.386667pt;}
.y4f{bottom:549.826667pt;}
.y1e4{bottom:552.226667pt;}
.ydd{bottom:557.186667pt;}
.y190{bottom:558.786667pt;}
.y1d0{bottom:560.226667pt;}
.y1a{bottom:560.694027pt;}
.y128{bottom:563.426667pt;}
.y60{bottom:565.346667pt;}
.yb4{bottom:565.826667pt;}
.y4e{bottom:566.786667pt;}
.y1b1{bottom:568.226667pt;}
.y1e3{bottom:569.186667pt;}
.y77{bottom:573.186667pt;}
.ydc{bottom:573.986667pt;}
.y169{bottom:574.146667pt;}
.y18f{bottom:575.586667pt;}
.y19{bottom:578.935467pt;}
.y127{bottom:581.026667pt;}
.y5f{bottom:582.146667pt;}
.y4d{bottom:583.586667pt;}
.y1b0{bottom:585.186667pt;}
.y1e2{bottom:585.986667pt;}
.y76{bottom:590.173333pt;}
.ydb{bottom:590.973333pt;}
.y18e{bottom:592.573333pt;}
.y14f{bottom:593.853333pt;}
.y126{bottom:598.653333pt;}
.y5e{bottom:599.133333pt;}
.y1cf{bottom:602.013333pt;}
.yaa{bottom:605.053333pt;}
.y75{bottom:606.973333pt;}
.yda{bottom:607.773333pt;}
.y18{bottom:607.820187pt;}
.y4c{bottom:608.573333pt;}
.y1af{bottom:610.013333pt;}
.y1e1{bottom:610.973333pt;}
.y125{bottom:616.253333pt;}
.y18d{bottom:617.373333pt;}
.y1ce{bottom:618.973333pt;}
.y5d{bottom:623.933333pt;}
.y4b{bottom:625.373333pt;}
.y17{bottom:625.973787pt;}
.y1ae{bottom:626.973333pt;}
.y1e0{bottom:627.773333pt;}
.yad{bottom:629.053333pt;}
.y74{bottom:631.933333pt;}
.yd9{bottom:632.893333pt;}
.y17a{bottom:633.533333pt;}
.y124{bottom:633.853333pt;}
.y18c{bottom:634.173333pt;}
.y5c{bottom:640.733333pt;}
.y4a{bottom:642.173333pt;}
.y1ad{bottom:643.773333pt;}
.y1df{bottom:644.573333pt;}
.y14e{bottom:648.413333pt;}
.y73{bottom:648.733333pt;}
.y179{bottom:650.333333pt;}
.y18b{bottom:651.133333pt;}
.y16{bottom:654.858507pt;}
.y49{bottom:659.133333pt;}
.y123{bottom:659.613333pt;}
.y1cd{bottom:660.573333pt;}
.y1de{bottom:661.533333pt;}
.y72{bottom:665.533333pt;}
.y5b{bottom:665.853333pt;}
.y178{bottom:667.133333pt;}
.ya2{bottom:668.413333pt;}
.y1ac{bottom:668.573333pt;}
.y15{bottom:673.099947pt;}
.yd8{bottom:674.973333pt;}
.y48{bottom:675.933333pt;}
.y18a{bottom:676.253333pt;}
.y122{bottom:677.213333pt;}
.y1cc{bottom:677.533333pt;}
.y1ab{bottom:685.533333pt;}
.y1dd{bottom:686.333333pt;}
.y14d{bottom:687.773333pt;}
.y177{bottom:688.893333pt;}
.y71{bottom:690.653333pt;}
.y14{bottom:691.253547pt;}
.yd7{bottom:691.933333pt;}
.ya9{bottom:692.413333pt;}
.y47{bottom:692.893333pt;}
.y121{bottom:694.813333pt;}
.y1cb{bottom:702.333333pt;}
.y5a{bottom:704.893333pt;}
.yd6{bottom:708.733333pt;}
.y13{bottom:709.494987pt;}
.y46{bottom:709.693333pt;}
.y1aa{bottom:710.333333pt;}
.y1dc{bottom:711.293333pt;}
.y120{bottom:712.413333pt;}
.y189{bottom:718.333333pt;}
.y1ca{bottom:719.293333pt;}
.yd5{bottom:725.693333pt;}
.y14c{bottom:727.133333pt;}
.y1a9{bottom:727.293333pt;}
.y12{bottom:727.648587pt;}
.y1db{bottom:728.093333pt;}
.y70{bottom:729.693333pt;}
.y11f{bottom:730.013333pt;}
.y8e{bottom:731.520000pt;}
.ya8{bottom:731.773333pt;}
.y45{bottom:734.493333pt;}
.y188{bottom:735.293333pt;}
.y1c9{bottom:736.093333pt;}
.yd4{bottom:742.493333pt;}
.y1a8{bottom:744.093333pt;}
.y11{bottom:745.890027pt;}
.y11e{bottom:747.773333pt;}
.y44{bottom:751.453333pt;}
.y187{bottom:752.093333pt;}
.y1da{bottom:752.893333pt;}
.ya7{bottom:755.773333pt;}
.yd3{bottom:759.293333pt;}
.y1c8{bottom:760.893333pt;}
.y100{bottom:763.133333pt;}
.y10{bottom:764.043627pt;}
.y14b{bottom:766.493333pt;}
.y43{bottom:768.253333pt;}
.y186{bottom:768.893333pt;}
.y1d9{bottom:769.853333pt;}
.y11d{bottom:773.373333pt;}
.y1c7{bottom:777.853333pt;}
.ya6{bottom:779.773333pt;}
.ycc{bottom:781.853333pt;}
.yf{bottom:782.285067pt;}
.y42{bottom:785.213333pt;}
.y185{bottom:785.853333pt;}
.y147{bottom:790.493333pt;}
.y11c{bottom:790.973333pt;}
.yff{bottom:794.653333pt;}
.ye{bottom:800.438667pt;}
.y41{bottom:802.013333pt;}
.y1a7{bottom:802.653333pt;}
.y11b{bottom:808.613333pt;}
.y184{bottom:810.693333pt;}
.yfe{bottom:811.653333pt;}
.yd{bottom:818.680107pt;}
.y40{bottom:818.853333pt;}
.ya5{bottom:819.173333pt;}
.y1c6{bottom:819.653333pt;}
.yd2{bottom:821.093333pt;}
.y11a{bottom:826.213333pt;}
.y183{bottom:827.653333pt;}
.yfd{bottom:828.453333pt;}
.y1c5{bottom:836.453333pt;}
.yc{bottom:836.833707pt;}
.ya4{bottom:843.173333pt;}
.y3f{bottom:843.813333pt;}
.y119{bottom:843.973333pt;}
.y182{bottom:844.453333pt;}
.yfc{bottom:853.253333pt;}
.yb{bottom:855.075147pt;}
.y146{bottom:860.453333pt;}
.y3e{bottom:860.613333pt;}
.y181{bottom:861.253333pt;}
.y118{bottom:861.573333pt;}
.y9a{bottom:867.173333pt;}
.yfb{bottom:870.213333pt;}
.y168{bottom:872.933333pt;}
.ya{bottom:873.228747pt;}
.yd1{bottom:875.813333pt;}
.y3d{bottom:877.573333pt;}
.y180{bottom:878.213333pt;}
.y1a6{bottom:886.213333pt;}
.yfa{bottom:887.013333pt;}
.y167{bottom:888.293333pt;}
.ya0{bottom:891.173333pt;}
.y9{bottom:891.470187pt;}
.y3c{bottom:894.373333pt;}
.y1d8{bottom:895.013333pt;}
.y17f{bottom:903.013333pt;}
.yf9{bottom:903.973333pt;}
.y3b{bottom:911.173333pt;}
.y1d7{bottom:911.973333pt;}
.y1f4{bottom:912.773333pt;}
.y13e{bottom:915.173333pt;}
.y117{bottom:919.973333pt;}
.yf8{bottom:920.773333pt;}
.y8{bottom:924.907067pt;}
.y3a{bottom:928.133333pt;}
.ycb{bottom:930.533333pt;}
.y116{bottom:936.773333pt;}
.y1f3{bottom:937.573333pt;}
.y39{bottom:944.933333pt;}
.yf7{bottom:945.573333pt;}
.y9e{bottom:945.733333pt;}
.y7{bottom:949.145627pt;}
.y166{bottom:953.573333pt;}
.yca{bottom:954.533333pt;}
.y115{bottom:961.573333pt;}
.y6{bottom:967.388747pt;}
.y38{bottom:970.053333pt;}
.y165{bottom:970.533333pt;}
.yf6{bottom:978.533333pt;}
.y9c{bottom:985.093333pt;}
.yf5{bottom:995.333333pt;}
.y5{bottom:996.273467pt;}
.y59{bottom:996.613333pt;}
.y4{bottom:1014.427067pt;}
.y35{bottom:1024.320000pt;}
.y34{bottom:1048.960000pt;}
.y2e{bottom:1058.414469pt;}
.y33{bottom:1072.320000pt;}
.h8{height:14.666747pt;}
.h23{height:23.200000pt;}
.h15{height:23.360000pt;}
.h28{height:23.392000pt;}
.hd{height:32.000000pt;}
.h10{height:32.515938pt;}
.h11{height:32.613000pt;}
.h5{height:33.938125pt;}
.h1{height:38.357812pt;}
.h1d{height:38.560000pt;}
.h1c{height:38.592000pt;}
.h16{height:38.720000pt;}
.h19{height:38.752000pt;}
.h12{height:44.722500pt;}
.h6{height:49.866947pt;}
.h13{height:50.062500pt;}
.h3{height:52.498125pt;}
.h4{height:52.503885pt;}
.h2f{height:52.813750pt;}
.h2{height:52.869844pt;}
.h17{height:53.920000pt;}
.h2e{height:53.952000pt;}
.h1f{height:54.080000pt;}
.h22{height:54.112000pt;}
.ha{height:55.402500pt;}
.h7{height:55.442708pt;}
.h2a{height:59.520000pt;}
.hb{height:61.410000pt;}
.he{height:62.112000pt;}
.h1a{height:62.720000pt;}
.h27{height:64.080000pt;}
.h26{height:65.781915pt;}
.hc{height:66.750000pt;}
.h2d{height:69.312000pt;}
.h1e{height:78.080000pt;}
.h20{height:86.752000pt;}
.h2b{height:101.952000pt;}
.h21{height:117.280000pt;}
.h1b{height:125.952000pt;}
.h14{height:141.280000pt;}
.h24{height:147.866667pt;}
.h18{height:198.106667pt;}
.h25{height:212.026667pt;}
.h29{height:216.826667pt;}
.hf{height:254.240000pt;}
.h2c{height:375.426667pt;}
.h9{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w3{width:22.246667pt;}
.w8{width:95.040000pt;}
.w14{width:103.360000pt;}
.w15{width:131.392000pt;}
.wb{width:132.032000pt;}
.w12{width:160.346667pt;}
.wa{width:179.106667pt;}
.wc{width:197.946667pt;}
.w13{width:207.426667pt;}
.w11{width:235.386667pt;}
.we{width:272.826667pt;}
.w9{width:329.986667pt;}
.wf{width:330.173333pt;}
.w2{width:409.896000pt;}
.wd{width:502.400000pt;}
.w7{width:604.133333pt;}
.w10{width:604.453333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w6{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:7.680000pt;}
.x36{left:8.960000pt;}
.x19{left:10.080000pt;}
.x4b{left:11.200000pt;}
.x38{left:12.840000pt;}
.x1e{left:13.760000pt;}
.x48{left:15.200000pt;}
.x56{left:16.320000pt;}
.x39{left:17.440000pt;}
.x50{left:18.560000pt;}
.x4a{left:20.480000pt;}
.x3f{left:21.920000pt;}
.x61{left:23.040000pt;}
.x1d{left:24.160000pt;}
.x3d{left:25.480000pt;}
.x33{left:26.853333pt;}
.x22{left:27.840000pt;}
.x51{left:28.800000pt;}
.x23{left:30.400000pt;}
.x3e{left:32.160000pt;}
.x20{left:33.280000pt;}
.x57{left:34.560000pt;}
.x42{left:35.520000pt;}
.x3b{left:36.680000pt;}
.x32{left:37.760000pt;}
.x43{left:39.880000pt;}
.x40{left:41.440000pt;}
.x46{left:43.040000pt;}
.x63{left:44.680000pt;}
.x65{left:45.800000pt;}
.x1f{left:47.514667pt;}
.x45{left:49.320000pt;}
.x64{left:50.906667pt;}
.x25{left:52.520000pt;}
.x1c{left:53.640000pt;}
.x27{left:55.360000pt;}
.x62{left:56.680000pt;}
.x37{left:59.226667pt;}
.x47{left:60.826667pt;}
.x4c{left:61.946667pt;}
.x49{left:63.386667pt;}
.x4e{left:65.626667pt;}
.x3c{left:66.746667pt;}
.x5f{left:67.720000pt;}
.x4d{left:70.426667pt;}
.x4f{left:71.546667pt;}
.x3a{left:72.520000pt;}
.x44{left:74.906667pt;}
.x1a{left:80.840000pt;}
.x58{left:81.946667pt;}
.x60{left:86.600000pt;}
.x41{left:89.480000pt;}
.x5c{left:91.354667pt;}
.x10{left:94.591988pt;}
.x28{left:96.893333pt;}
.x54{left:98.874667pt;}
.x52{left:100.671988pt;}
.x16{left:107.871988pt;}
.x7{left:113.434480pt;}
.x59{left:117.626667pt;}
.x13{left:118.591988pt;}
.x14{left:122.431988pt;}
.x4{left:127.590560pt;}
.x8{left:129.113920pt;}
.xb{left:135.273333pt;}
.x29{left:138.426667pt;}
.x2{left:141.440000pt;}
.x68{left:142.426655pt;}
.x26{left:144.800000pt;}
.x18{left:164.514667pt;}
.x5a{left:172.026655pt;}
.x2a{left:179.973333pt;}
.x11{left:189.786655pt;}
.xa{left:191.865316pt;}
.x34{left:198.813333pt;}
.x35{left:201.853333pt;}
.x2b{left:221.506667pt;}
.x1{left:252.560000pt;}
.x2c{left:263.040000pt;}
.x5{left:278.402480pt;}
.x2d{left:304.573333pt;}
.x3{left:312.157040pt;}
.x66{left:317.186655pt;}
.x6{left:319.680000pt;}
.x21{left:321.666667pt;}
.xd{left:327.266655pt;}
.x5d{left:331.266667pt;}
.x2e{left:346.106667pt;}
.x53{left:354.306655pt;}
.x9{left:356.151040pt;}
.x17{left:359.106655pt;}
.x55{left:368.706667pt;}
.xf{left:384.733322pt;}
.xc{left:385.689982pt;}
.x2f{left:387.653333pt;}
.xe{left:396.893322pt;}
.x30{left:429.186667pt;}
.x31{left:470.746667pt;}
.x5e{left:492.253333pt;}
.x1b{left:519.613333pt;}
.x5b{left:541.413322pt;}
.x12{left:572.293322pt;}
.x15{left:648.933322pt;}
.x67{left:657.893322pt;}
.x69{left:671.013322pt;}
.x6a{left:693.119988pt;}
}




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