
    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_3dde2fc6f217027e915f0be3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f5a0f0775bb70db2bda4f39a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7ba13057f9eb166b6bc38017.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_3f849e301f6012493f72f459.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_3f7bc6ff8335ba2ffbef0168.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_9f47a13ac5590b9595907904.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_fd739287612976694428d958.woff')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_1935adf00d9574b1750a1ca1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_865f173e452d65f77cfcbe6c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_1ba925fb9e3c062fc0c30fa0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_0090f623b5018553f59cb4ac.woff')format("woff");}.fff{font-family:fff;line-height:0.957520;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_6888ee5986653dac8899027a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_c727763a5ac701705cb4714f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_4e1f65e65da314a65575c9ec.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001920px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls9{letter-spacing:0.028320px;}
.lsb{letter-spacing:0.055440px;}
.ls3{letter-spacing:0.073080px;}
.lsc{letter-spacing:0.308220px;}
.ls2{letter-spacing:0.340926px;}
.ls8{letter-spacing:1.749059px;}
.ls6{letter-spacing:4.294318px;}
.ls7{letter-spacing:19.378192px;}
.ls5{letter-spacing:23.700651px;}
.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;}
}
.ws2{word-spacing:-26.919082px;}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-18.021231px;}
.ws5{word-spacing:-17.999993px;}
.ws6{word-spacing:-15.179034px;}
.ws8{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws3{word-spacing:-10.342076px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._39{margin-left:-2.191647px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._15{width:2.967603px;}
._2d{width:4.010920px;}
._17{width:5.132715px;}
._18{width:6.958084px;}
._13{width:8.209172px;}
._11{width:9.434412px;}
._14{width:10.873664px;}
._19{width:11.916879px;}
._12{width:14.362528px;}
._1d{width:15.492455px;}
._16{width:17.125569px;}
._1a{width:18.511335px;}
._e{width:19.965487px;}
._d{width:21.005326px;}
._c{width:22.304042px;}
._1e{width:24.214050px;}
._20{width:25.419934px;}
._21{width:26.512183px;}
._2c{width:27.536792px;}
._23{width:28.654789px;}
._1b{width:30.489104px;}
._1c{width:31.696797px;}
._f{width:32.764706px;}
._10{width:33.776346px;}
._31{width:35.046427px;}
._27{width:36.110123px;}
._33{width:37.624846px;}
._34{width:39.721538px;}
._1f{width:40.722684px;}
._24{width:42.581882px;}
._35{width:43.735502px;}
._3f{width:47.319919px;}
._3b{width:49.725594px;}
._36{width:50.827793px;}
._25{width:51.830436px;}
._26{width:52.845185px;}
._3c{width:54.442040px;}
._2f{width:56.127463px;}
._30{width:57.241967px;}
._37{width:59.585964px;}
._2a{width:60.842045px;}
._2b{width:62.005042px;}
._28{width:67.359307px;}
._22{width:68.448578px;}
._32{width:73.571075px;}
._2e{width:74.715636px;}
._3a{width:75.926282px;}
._41{width:78.854121px;}
._40{width:80.060586px;}
._3d{width:84.688937px;}
._3e{width:86.621524px;}
._29{width:90.165398px;}
._38{width:104.778273px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs8{font-size:33.119987px;}
.fs7{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y4c{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.yd4{bottom:3.058944px;}
.yd6{bottom:3.058950px;}
.yd8{bottom:3.058957px;}
.yda{bottom:3.058964px;}
.ydc{bottom:3.058970px;}
.yde{bottom:3.058977px;}
.ye0{bottom:3.058983px;}
.ye2{bottom:3.058990px;}
.ye4{bottom:3.058996px;}
.ye6{bottom:3.059003px;}
.ye8{bottom:3.059010px;}
.yea{bottom:3.059016px;}
.yec{bottom:3.059023px;}
.yee{bottom:3.059029px;}
.yf0{bottom:3.059036px;}
.yf2{bottom:3.059043px;}
.yf4{bottom:3.059049px;}
.yf6{bottom:3.059056px;}
.yf8{bottom:3.059062px;}
.y81{bottom:3.059069px;}
.yfb{bottom:3.059076px;}
.yfd{bottom:3.059082px;}
.y21{bottom:3.059088px;}
.y100{bottom:3.059095px;}
.y85{bottom:3.059098px;}
.y102{bottom:3.059102px;}
.y87{bottom:3.059105px;}
.y104{bottom:3.059108px;}
.y8a{bottom:3.059111px;}
.y106{bottom:3.059115px;}
.y8c{bottom:3.059118px;}
.y108{bottom:3.059122px;}
.y8e{bottom:3.059125px;}
.y10a{bottom:3.059128px;}
.y90{bottom:3.059131px;}
.y10c{bottom:3.059135px;}
.y92{bottom:3.059138px;}
.y2c{bottom:3.059141px;}
.y94{bottom:3.059144px;}
.y96{bottom:3.059151px;}
.y98{bottom:3.059158px;}
.y9a{bottom:3.059164px;}
.y9c{bottom:3.059171px;}
.y9e{bottom:3.059177px;}
.ya0{bottom:3.059184px;}
.ya2{bottom:3.059191px;}
.ya4{bottom:3.059197px;}
.ya6{bottom:3.059204px;}
.ya8{bottom:3.059210px;}
.yaa{bottom:3.059217px;}
.yac{bottom:3.059223px;}
.yae{bottom:3.059230px;}
.yb0{bottom:3.059237px;}
.yb2{bottom:3.059243px;}
.yb4{bottom:3.059250px;}
.yb6{bottom:3.059256px;}
.yb8{bottom:3.059263px;}
.yba{bottom:3.059269px;}
.ybc{bottom:3.059276px;}
.ybe{bottom:3.059283px;}
.yc0{bottom:3.059289px;}
.yc2{bottom:3.059296px;}
.yc4{bottom:3.059302px;}
.yc6{bottom:3.059309px;}
.yc8{bottom:3.059316px;}
.yca{bottom:3.059322px;}
.ycc{bottom:3.059689px;}
.yce{bottom:3.059695px;}
.yd0{bottom:3.060002px;}
.yd2{bottom:3.060009px;}
.y16{bottom:3.239032px;}
.y29{bottom:3.419130px;}
.y47{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y7{bottom:4.140028px;}
.y23{bottom:4.319088px;}
.y4{bottom:4.320028px;}
.y18{bottom:4.859040px;}
.y1d{bottom:4.859058px;}
.y27{bottom:4.859115px;}
.y7e{bottom:58.440277px;}
.y8{bottom:58.620277px;}
.y7d{bottom:74.640240px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y7c{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y7b{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.y124{bottom:123.059951px;}
.y44{bottom:123.419951px;}
.yd1{bottom:125.580240px;}
.y79{bottom:130.619948px;}
.ycf{bottom:141.960240px;}
.y123{bottom:145.919942px;}
.y43{bottom:146.459941px;}
.y78{bottom:153.479939px;}
.ycd{bottom:158.520240px;}
.y122{bottom:168.959932px;}
.y42{bottom:169.499932px;}
.ycb{bottom:174.900240px;}
.y77{bottom:176.519929px;}
.yc9{bottom:191.460600px;}
.y121{bottom:191.999923px;}
.y41{bottom:192.539923px;}
.y76{bottom:199.559920px;}
.yc7{bottom:207.840600px;}
.y120{bottom:215.039914px;}
.y40{bottom:215.579914px;}
.y167{bottom:215.759914px;}
.y75{bottom:222.599911px;}
.yc5{bottom:224.400600px;}
.y3f{bottom:231.599907px;}
.y3e{bottom:235.379906px;}
.y11f{bottom:238.079905px;}
.y14a{bottom:238.799904px;}
.yc3{bottom:240.780600px;}
.y74{bottom:245.639902px;}
.y3d{bottom:255.899898px;}
.yc1{bottom:257.340600px;}
.y11e{bottom:261.119896px;}
.y149{bottom:262.379895px;}
.y166{bottom:263.459895px;}
.y73{bottom:268.679893px;}
.ybf{bottom:273.720600px;}
.y3c{bottom:278.939888px;}
.y11d{bottom:283.979886px;}
.y148{bottom:286.139886px;}
.y165{bottom:286.499885px;}
.ybd{bottom:290.280600px;}
.y72{bottom:291.539883px;}
.y3b{bottom:301.979879px;}
.ybb{bottom:306.660600px;}
.y11c{bottom:307.019877px;}
.y164{bottom:309.539876px;}
.y147{bottom:309.899876px;}
.y71{bottom:314.579874px;}
.yb9{bottom:323.220600px;}
.y3a{bottom:325.019870px;}
.y11b{bottom:330.059868px;}
.y163{bottom:332.579867px;}
.y146{bottom:333.659867px;}
.y70{bottom:337.619865px;}
.yb7{bottom:339.600600px;}
.y39{bottom:348.059861px;}
.y11a{bottom:353.099859px;}
.y162{bottom:355.619858px;}
.yb5{bottom:355.980600px;}
.y145{bottom:357.599857px;}
.y6f{bottom:360.659856px;}
.y38{bottom:370.919852px;}
.yb3{bottom:372.540600px;}
.y161{bottom:375.959850px;}
.y119{bottom:376.139850px;}
.y144{bottom:381.359847px;}
.y6e{bottom:383.699847px;}
.yb1{bottom:388.920600px;}
.y37{bottom:393.959842px;}
.y160{bottom:396.479841px;}
.y118{bottom:399.179840px;}
.y143{bottom:405.119838px;}
.yaf{bottom:405.480600px;}
.y6d{bottom:406.739837px;}
.y36{bottom:416.999833px;}
.y15f{bottom:419.519832px;}
.yad{bottom:421.860600px;}
.y117{bottom:422.039831px;}
.y142{bottom:428.879828px;}
.y6c{bottom:429.599828px;}
.yab{bottom:438.420600px;}
.y35{bottom:440.039824px;}
.y15e{bottom:442.379823px;}
.y116{bottom:445.079822px;}
.y6b{bottom:452.639819px;}
.ya9{bottom:454.800600px;}
.y34{bottom:463.079815px;}
.y15d{bottom:464.159814px;}
.y115{bottom:468.119813px;}
.ya7{bottom:471.360600px;}
.y6a{bottom:475.679810px;}
.y141{bottom:476.399809px;}
.y15c{bottom:485.939806px;}
.y33{bottom:486.119806px;}
.ya5{bottom:487.740600px;}
.y114{bottom:491.159804px;}
.y69{bottom:498.719801px;}
.y140{bottom:500.159800px;}
.ya3{bottom:504.300600px;}
.y32{bottom:508.979796px;}
.y113{bottom:514.199794px;}
.ya1{bottom:520.680600px;}
.y68{bottom:521.759791px;}
.y13f{bottom:523.919790px;}
.y31{bottom:532.019787px;}
.y112{bottom:537.059785px;}
.y9f{bottom:537.240600px;}
.y67{bottom:544.799782px;}
.y13e{bottom:547.679781px;}
.y9d{bottom:553.620600px;}
.y15b{bottom:554.879778px;}
.y30{bottom:555.059778px;}
.y111{bottom:560.099776px;}
.y66{bottom:567.659773px;}
.y9b{bottom:570.180600px;}
.y13d{bottom:571.439771px;}
.y15a{bottom:577.919769px;}
.y2f{bottom:578.099769px;}
.y110{bottom:583.139767px;}
.y99{bottom:586.560600px;}
.y65{bottom:590.699764px;}
.y13c{bottom:595.199762px;}
.y159{bottom:600.959760px;}
.y2e{bottom:601.139760px;}
.y97{bottom:602.940600px;}
.y10f{bottom:606.179758px;}
.y64{bottom:613.739755px;}
.y13b{bottom:618.959752px;}
.y95{bottom:619.500600px;}
.y158{bottom:622.739751px;}
.y2d{bottom:624.179750px;}
.y10e{bottom:629.219748px;}
.y93{bottom:635.880600px;}
.y63{bottom:636.779745px;}
.y13a{bottom:642.899743px;}
.y10d{bottom:643.440600px;}
.y2b{bottom:643.980600px;}
.y157{bottom:644.339742px;}
.y91{bottom:652.440600px;}
.y62{bottom:659.819736px;}
.y10b{bottom:660.000600px;}
.y139{bottom:666.659733px;}
.y156{bottom:667.379733px;}
.y8f{bottom:668.820600px;}
.y28{bottom:672.060600px;}
.y2a{bottom:675.479730px;}
.y109{bottom:676.380600px;}
.y61{bottom:682.679727px;}
.y8d{bottom:685.380600px;}
.y138{bottom:690.419724px;}
.y107{bottom:692.940600px;}
.y8b{bottom:701.760600px;}
.y60{bottom:705.719718px;}
.y26{bottom:708.420600px;}
.y105{bottom:709.320600px;}
.y25{bottom:713.279715px;}
.y155{bottom:713.459715px;}
.y137{bottom:714.179714px;}
.y89{bottom:718.320600px;}
.y88{bottom:722.459711px;}
.y103{bottom:725.880600px;}
.y5f{bottom:728.759708px;}
.y86{bottom:734.700600px;}
.y154{bottom:736.499705px;}
.y136{bottom:737.939705px;}
.y101{bottom:742.260600px;}
.y5e{bottom:751.799699px;}
.y84{bottom:752.340600px;}
.y24{bottom:757.199697px;}
.yff{bottom:758.820600px;}
.y153{bottom:759.539696px;}
.y135{bottom:761.699695px;}
.y5d{bottom:774.839690px;}
.yfe{bottom:775.200600px;}
.y22{bottom:775.920600px;}
.y20{bottom:777.180600px;}
.y83{bottom:780.779688px;}
.y152{bottom:781.139688px;}
.y134{bottom:785.459686px;}
.yfc{bottom:791.760600px;}
.y1f{bottom:796.259681px;}
.y5c{bottom:797.879681px;}
.y151{bottom:802.919679px;}
.y82{bottom:803.819678px;}
.yfa{bottom:808.140600px;}
.y133{bottom:809.219676px;}
.y5b{bottom:820.739672px;}
.y80{bottom:823.800600px;}
.yf9{bottom:824.700600px;}
.y150{bottom:825.959670px;}
.y1e{bottom:830.279668px;}
.y132{bottom:832.979667px;}
.yf7{bottom:841.080600px;}
.y5a{bottom:843.779662px;}
.y14f{bottom:848.999660px;}
.y1c{bottom:850.080600px;}
.y131{bottom:856.739657px;}
.yf5{bottom:857.640600px;}
.y1b{bottom:860.879656px;}
.y59{bottom:866.819653px;}
.y14e{bottom:871.859651px;}
.y1a{bottom:872.759651px;}
.yf3{bottom:874.020600px;}
.y130{bottom:880.499648px;}
.y58{bottom:889.859644px;}
.yf1{bottom:890.400600px;}
.y14d{bottom:894.899642px;}
.y17{bottom:895.440600px;}
.y12f{bottom:904.439638px;}
.y19{bottom:905.519638px;}
.yef{bottom:906.960600px;}
.y57{bottom:912.899635px;}
.y15{bottom:915.780600px;}
.y14c{bottom:917.939633px;}
.yed{bottom:923.340600px;}
.y12e{bottom:928.199629px;}
.y56{bottom:935.939626px;}
.y14b{bottom:938.459625px;}
.yeb{bottom:939.900600px;}
.y13{bottom:949.259548px;}
.y14{bottom:949.259620px;}
.y12d{bottom:951.959619px;}
.ye9{bottom:956.280600px;}
.y55{bottom:958.799616px;}
.ye7{bottom:972.840600px;}
.y12c{bottom:976.079610px;}
.y54{bottom:981.839607px;}
.ye5{bottom:989.220600px;}
.y12{bottom:990.119604px;}
.y12b{bottom:999.839600px;}
.y53{bottom:1004.879598px;}
.ye3{bottom:1005.780600px;}
.y11{bottom:1013.519595px;}
.ye1{bottom:1022.160600px;}
.y12a{bottom:1023.599591px;}
.y52{bottom:1027.919589px;}
.y10{bottom:1029.899588px;}
.yf{bottom:1030.259588px;}
.ydf{bottom:1038.720600px;}
.y129{bottom:1047.719581px;}
.y51{bottom:1050.959580px;}
.ydd{bottom:1055.100600px;}
.y128{bottom:1071.479571px;}
.ydb{bottom:1071.660600px;}
.y4b{bottom:1073.280600px;}
.y50{bottom:1073.999570px;}
.y4a{bottom:1082.279567px;}
.yd9{bottom:1088.040600px;}
.y127{bottom:1095.239562px;}
.y4f{bottom:1096.859561px;}
.y49{bottom:1103.519559px;}
.yd7{bottom:1104.600600px;}
.y126{bottom:1118.999552px;}
.y4e{bottom:1119.899552px;}
.yd5{bottom:1120.980600px;}
.y48{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.yd3{bottom:1137.360600px;}
.y125{bottom:1142.759543px;}
.y4d{bottom:1142.939543px;}
.y46{bottom:1145.280600px;}
.y45{bottom:1149.059540px;}
.y7a{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y7f{bottom:1195.680600px;}
.y9{bottom:1195.860600px;}
.h29{height:2.880000px;}
.he{height:8.187887px;}
.h11{height:13.500000px;}
.h1b{height:15.120000px;}
.h2b{height:15.300000px;}
.h2c{height:15.300360px;}
.h23{height:15.894134px;}
.h1d{height:16.380000px;}
.h21{height:17.100000px;}
.h4{height:19.800000px;}
.h13{height:20.160000px;}
.h17{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h27{height:21.780000px;}
.h16{height:22.171632px;}
.h19{height:24.439209px;}
.h24{height:25.913662px;}
.h14{height:26.008583px;}
.h2d{height:31.585065px;}
.h12{height:32.269909px;}
.h20{height:33.588971px;}
.h2e{height:36.486196px;}
.h15{height:36.886626px;}
.h1a{height:40.005336px;}
.h1c{height:40.842757px;}
.h28{height:41.290999px;}
.h25{height:43.185920px;}
.h22{height:45.199318px;}
.hb{height:47.988262px;}
.h5{height:48.164043px;}
.h18{height:48.199199px;}
.h1e{height:49.253887px;}
.h2a{height:49.907793px;}
.h1f{height:50.132792px;}
.hd{height:54.457009px;}
.h26{height:55.054665px;}
.h8{height:56.351931px;}
.hf{height:64.058178px;}
.h10{height:67.696970px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w22{width:3.240000px;}
.w21{width:3.420000px;}
.w2{width:4.680000px;}
.wb{width:4.860000px;}
.w16{width:5.040000px;}
.w33{width:5.220000px;}
.w78{width:5.760000px;}
.w1{width:6.480000px;}
.w30{width:6.840000px;}
.w9e{width:7.200000px;}
.w56{width:7.380000px;}
.w43{width:7.560000px;}
.w28{width:7.740000px;}
.w64{width:8.100000px;}
.w8{width:8.280000px;}
.w14{width:8.460000px;}
.w18{width:8.820000px;}
.w11{width:9.540000px;}
.w1f{width:9.900000px;}
.w1e{width:10.620000px;}
.w71{width:10.980000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.w1c{width:11.520000px;}
.wb5{width:12.240000px;}
.wd{width:12.420000px;}
.w34{width:12.600000px;}
.wf{width:12.960000px;}
.w31{width:13.140000px;}
.w45{width:13.320000px;}
.w38{width:13.500000px;}
.w41{width:13.860000px;}
.w6a{width:14.040000px;}
.w5d{width:14.220000px;}
.w37{width:14.400000px;}
.w84{width:14.580000px;}
.w25{width:14.760000px;}
.w3f{width:14.940000px;}
.w2d{width:15.120000px;}
.w4a{width:15.300000px;}
.w80{width:15.480000px;}
.w50{width:15.660000px;}
.w73{width:15.840000px;}
.w4{width:16.020000px;}
.w6b{width:16.740000px;}
.w74{width:16.920000px;}
.w60{width:17.640000px;}
.waf{width:18.000000px;}
.w15{width:18.360000px;}
.w76{width:18.720000px;}
.w39{width:19.440000px;}
.w92{width:19.620000px;}
.w68{width:19.980000px;}
.w5f{width:21.060000px;}
.wb0{width:21.420000px;}
.w4f{width:21.600000px;}
.w57{width:21.960000px;}
.w8e{width:22.140000px;}
.wad{width:22.500000px;}
.w23{width:23.400000px;}
.w7e{width:23.580000px;}
.w82{width:24.300000px;}
.w2e{width:24.480000px;}
.w6f{width:24.660000px;}
.w51{width:24.840000px;}
.w6e{width:25.200000px;}
.w5e{width:25.380000px;}
.w4b{width:25.740000px;}
.w65{width:25.920000px;}
.w20{width:26.100000px;}
.w5c{width:26.280000px;}
.w95{width:26.460000px;}
.w5a{width:26.640000px;}
.w53{width:26.820000px;}
.w35{width:27.000000px;}
.w75{width:27.180000px;}
.w81{width:27.360000px;}
.w54{width:27.540000px;}
.wb7{width:27.720000px;}
.w3c{width:27.900000px;}
.w42{width:28.260000px;}
.w3d{width:28.440000px;}
.w29{width:28.980000px;}
.w88{width:29.880000px;}
.wa1{width:30.420000px;}
.wb1{width:30.600000px;}
.w83{width:32.940000px;}
.w61{width:33.300000px;}
.w5{width:33.480000px;}
.w2f{width:34.200000px;}
.w7f{width:34.920000px;}
.wae{width:35.100000px;}
.w2c{width:35.640000px;}
.w79{width:35.820000px;}
.w8a{width:37.440000px;}
.w3b{width:37.800000px;}
.w2a{width:39.240000px;}
.w85{width:40.500000px;}
.w91{width:41.220000px;}
.wa6{width:41.400000px;}
.wba{width:41.580000px;}
.wb6{width:42.120000px;}
.w7b{width:42.660000px;}
.w4e{width:43.200000px;}
.wa5{width:45.360000px;}
.w8c{width:47.700000px;}
.w62{width:49.140000px;}
.wab{width:51.300000px;}
.wa9{width:51.660000px;}
.w8b{width:51.840000px;}
.w2b{width:53.100000px;}
.w7a{width:53.280000px;}
.w77{width:53.820000px;}
.wb3{width:54.900000px;}
.w7d{width:55.260000px;}
.w55{width:55.440000px;}
.wa4{width:56.880000px;}
.w87{width:59.580000px;}
.wa8{width:59.760000px;}
.w52{width:60.480000px;}
.w4c{width:63.360000px;}
.w90{width:64.080000px;}
.w8f{width:64.800000px;}
.w5b{width:65.520000px;}
.w19{width:65.700000px;}
.w99{width:68.220000px;}
.w8d{width:69.660000px;}
.w9a{width:70.020000px;}
.w27{width:70.380000px;}
.w97{width:72.360000px;}
.w98{width:72.900000px;}
.wa{width:73.440000px;}
.w96{width:74.700000px;}
.wa2{width:76.500000px;}
.w26{width:80.100000px;}
.w10{width:82.980000px;}
.w70{width:83.880000px;}
.wa0{width:86.400000px;}
.w48{width:86.760000px;}
.w6d{width:88.200000px;}
.w89{width:88.560000px;}
.w12{width:89.280000px;}
.w58{width:89.820000px;}
.w9b{width:90.180000px;}
.w24{width:91.620000px;}
.wa7{width:92.160000px;}
.w59{width:92.700000px;}
.w9f{width:93.240000px;}
.w7c{width:99.720000px;}
.waa{width:101.160000px;}
.wa3{width:102.420000px;}
.w9d{width:104.040000px;}
.w94{width:107.460000px;}
.wac{width:107.640000px;}
.wb2{width:110.160000px;}
.wbb{width:110.700000px;}
.w93{width:110.880000px;}
.w6c{width:112.860000px;}
.wb4{width:116.280000px;}
.w3{width:119.700000px;}
.w9c{width:121.320000px;}
.w13{width:124.920000px;}
.w1b{width:127.620000px;}
.w47{width:129.240000px;}
.w4d{width:136.260000px;}
.wb9{width:140.760000px;}
.w9{width:149.400000px;}
.w72{width:151.200000px;}
.wb8{width:152.280000px;}
.w3a{width:156.420000px;}
.w1d{width:160.380000px;}
.wc{width:165.420000px;}
.w86{width:165.600000px;}
.w36{width:188.460000px;}
.w49{width:191.880000px;}
.w46{width:192.240000px;}
.w3e{width:195.300000px;}
.w32{width:202.140000px;}
.w44{width:213.480000px;}
.w40{width:216.720000px;}
.w66{width:218.160000px;}
.w69{width:221.580000px;}
.w67{width:223.380000px;}
.w63{width:233.100000px;}
.w17{width:337.320000px;}
.w1a{width:376.560000px;}
.we{width:624.420000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x2b{left:113.400000px;}
.x8f{left:115.020000px;}
.x3a{left:116.459953px;}
.x7{left:120.240000px;}
.x5d{left:121.680000px;}
.x50{left:123.300000px;}
.x2{left:128.699878px;}
.x40{left:134.280000px;}
.x41{left:137.700000px;}
.x42{left:148.860000px;}
.x43{left:152.100000px;}
.x3{left:155.700000px;}
.x44{left:170.460000px;}
.x4{left:171.899931px;}
.x37{left:174.599930px;}
.xc{left:185.219926px;}
.x2d{left:192.240000px;}
.x45{left:198.900000px;}
.x2e{left:201.780000px;}
.x22{left:219.239912px;}
.x8{left:239.940000px;}
.x4a{left:248.400000px;}
.x80{left:251.640000px;}
.x59{left:254.700000px;}
.x51{left:255.960000px;}
.x23{left:258.659897px;}
.xd{left:259.740316px;}
.x24{left:263.880000px;}
.xa5{left:276.840000px;}
.x5e{left:277.920000px;}
.x52{left:280.440000px;}
.x5a{left:281.700000px;}
.x81{left:284.940000px;}
.x4b{left:287.640000px;}
.x2f{left:290.880000px;}
.x5{left:302.580000px;}
.x46{left:305.100000px;}
.x6{left:307.259877px;}
.x25{left:337.320000px;}
.x26{left:342.180000px;}
.x69{left:351.000000px;}
.x53{left:353.340000px;}
.x4c{left:356.220000px;}
.x82{left:358.200000px;}
.x6c{left:361.080000px;}
.x96{left:362.520000px;}
.x55{left:382.679847px;}
.x47{left:385.200000px;}
.x48{left:388.440000px;}
.x97{left:403.020000px;}
.x6d{left:404.280000px;}
.x83{left:407.340000px;}
.x4d{left:409.140000px;}
.x54{left:412.020000px;}
.x6a{left:414.360000px;}
.x30{left:415.800000px;}
.x31{left:424.260000px;}
.xe{left:427.680106px;}
.xf{left:432.180102px;}
.x3d{left:435.959826px;}
.x32{left:442.620000px;}
.x4e{left:443.700000px;}
.x33{left:447.660000px;}
.x34{left:448.920000px;}
.x65{left:451.260000px;}
.x5b{left:455.220000px;}
.x56{left:456.840000px;}
.x49{left:458.820000px;}
.x5c{left:460.260000px;}
.xb4{left:461.520000px;}
.x3b{left:462.600512px;}
.x84{left:463.680000px;}
.x6e{left:465.300000px;}
.xb5{left:466.560000px;}
.x5f{left:468.180000px;}
.x6f{left:470.340000px;}
.x62{left:472.140000px;}
.x60{left:473.220000px;}
.x63{left:477.180000px;}
.x9b{left:478.260000px;}
.x4f{left:479.340000px;}
.xb6{left:480.600000px;}
.xa3{left:482.580000px;}
.x70{left:483.660000px;}
.x38{left:485.640000px;}
.x71{left:488.700000px;}
.x27{left:491.579803px;}
.x87{left:493.380000px;}
.xad{left:495.180000px;}
.x28{left:496.800000px;}
.xae{left:500.220000px;}
.x72{left:503.100000px;}
.xac{left:504.720000px;}
.x8c{left:507.060000px;}
.x73{left:508.140000px;}
.x7f{left:509.760000px;}
.xa1{left:511.740000px;}
.x35{left:513.179795px;}
.x10{left:516.060050px;}
.x94{left:518.220000px;}
.x78{left:519.840000px;}
.x90{left:521.280000px;}
.x74{left:523.800000px;}
.x79{left:524.880000px;}
.x91{left:526.320000px;}
.x11{left:529.380042px;}
.x92{left:532.080000px;}
.x7d{left:533.520000px;}
.x9c{left:534.960000px;}
.x3f{left:536.939785px;}
.x7e{left:538.560000px;}
.xb3{left:540.720000px;}
.x12{left:542.700033px;}
.xab{left:545.940000px;}
.x95{left:547.380000px;}
.xa0{left:550.980000px;}
.x75{left:553.680000px;}
.x7a{left:556.920000px;}
.x76{left:558.900000px;}
.x8d{left:560.520000px;}
.x7b{left:562.140000px;}
.xb2{left:563.580000px;}
.x13{left:564.659960px;}
.x99{left:567.180000px;}
.x14{left:569.159957px;}
.x8e{left:572.940000px;}
.x7c{left:574.560000px;}
.x88{left:577.260000px;}
.x86{left:578.340000px;}
.x6b{left:579.960000px;}
.x15{left:582.479948px;}
.xbc{left:584.280000px;}
.x67{left:585.540000px;}
.x9d{left:587.700000px;}
.x3e{left:589.679764px;}
.x16{left:595.619941px;}
.xbd{left:599.940000px;}
.xaf{left:601.380000px;}
.xa4{left:603.900000px;}
.x89{left:605.880000px;}
.x17{left:608.939932px;}
.x8a{left:610.920000px;}
.x18{left:613.439928px;}
.xb8{left:617.040000px;}
.xb0{left:619.020000px;}
.xa2{left:621.540000px;}
.x39{left:624.780000px;}
.xa6{left:628.200000px;}
.x61{left:629.640000px;}
.x19{left:631.079858px;}
.xa7{left:633.240000px;}
.x1a{left:635.399856px;}
.x93{left:636.480000px;}
.xa8{left:640.620000px;}
.xb9{left:641.700000px;}
.x9f{left:643.320000px;}
.xa9{left:645.660000px;}
.xba{left:647.460000px;}
.x1b{left:648.719847px;}
.x1c{left:653.039845px;}
.x77{left:656.280000px;}
.x1d{left:657.539841px;}
.x29{left:662.219735px;}
.x57{left:664.020000px;}
.x1e{left:666.359733px;}
.x9a{left:667.980000px;}
.x58{left:669.240000px;}
.xb1{left:670.320000px;}
.x2a{left:672.300000px;}
.x98{left:673.920000px;}
.x66{left:675.000000px;}
.xaa{left:676.080000px;}
.x68{left:677.340000px;}
.x64{left:678.420000px;}
.xbb{left:680.400000px;}
.xb7{left:681.480000px;}
.x9e{left:684.540000px;}
.x85{left:690.300000px;}
.x9{left:697.320000px;}
.x21{left:700.919720px;}
.xa{left:730.800000px;}
.x2c{left:737.640000px;}
.xb{left:741.960000px;}
.x8b{left:762.120000px;}
.x3c{left:779.580000px;}
.x36{left:781.559687px;}
.x1f{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001707pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls9{letter-spacing:0.025173pt;}
.lsb{letter-spacing:0.049280pt;}
.ls3{letter-spacing:0.064960pt;}
.lsc{letter-spacing:0.273973pt;}
.ls2{letter-spacing:0.303046pt;}
.ls8{letter-spacing:1.554719pt;}
.ls6{letter-spacing:3.817172pt;}
.ls7{letter-spacing:17.225060pt;}
.ls5{letter-spacing:21.067245pt;}
.ws2{word-spacing:-23.928073pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws5{word-spacing:-15.999994pt;}
.ws6{word-spacing:-13.492475pt;}
.ws8{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws3{word-spacing:-9.192956pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._39{margin-left:-1.948131pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._15{width:2.637869pt;}
._2d{width:3.565262pt;}
._17{width:4.562413pt;}
._18{width:6.184964pt;}
._13{width:7.297041pt;}
._11{width:8.386144pt;}
._14{width:9.665479pt;}
._19{width:10.592781pt;}
._12{width:12.766691pt;}
._1d{width:13.771071pt;}
._16{width:15.222728pt;}
._1a{width:16.454520pt;}
._e{width:17.747100pt;}
._d{width:18.671401pt;}
._c{width:19.825815pt;}
._1e{width:21.523600pt;}
._20{width:22.595497pt;}
._21{width:23.566385pt;}
._2c{width:24.477148pt;}
._23{width:25.470923pt;}
._1b{width:27.101426pt;}
._1c{width:28.174931pt;}
._f{width:29.124183pt;}
._10{width:30.023419pt;}
._31{width:31.152380pt;}
._27{width:32.097887pt;}
._33{width:33.444307pt;}
._34{width:35.308034pt;}
._1f{width:36.197941pt;}
._24{width:37.850562pt;}
._35{width:38.876002pt;}
._3f{width:42.062150pt;}
._3b{width:44.200528pt;}
._36{width:45.180260pt;}
._25{width:46.071499pt;}
._26{width:46.973497pt;}
._3c{width:48.392924pt;}
._2f{width:49.891078pt;}
._30{width:50.881749pt;}
._37{width:52.965301pt;}
._2a{width:54.081818pt;}
._2b{width:55.115593pt;}
._28{width:59.874940pt;}
._22{width:60.843181pt;}
._32{width:65.396511pt;}
._2e{width:66.413899pt;}
._3a{width:67.490029pt;}
._41{width:70.092552pt;}
._40{width:71.164965pt;}
._3d{width:75.279055pt;}
._3e{width:76.996910pt;}
._29{width:80.147020pt;}
._38{width:93.136243pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:29.439988pt;}
.fs7{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y4c{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.yd4{bottom:2.719061pt;}
.yd6{bottom:2.719067pt;}
.yd8{bottom:2.719073pt;}
.yda{bottom:2.719079pt;}
.ydc{bottom:2.719085pt;}
.yde{bottom:2.719090pt;}
.ye0{bottom:2.719096pt;}
.ye2{bottom:2.719102pt;}
.ye4{bottom:2.719108pt;}
.ye6{bottom:2.719114pt;}
.ye8{bottom:2.719120pt;}
.yea{bottom:2.719126pt;}
.yec{bottom:2.719131pt;}
.yee{bottom:2.719137pt;}
.yf0{bottom:2.719143pt;}
.yf2{bottom:2.719149pt;}
.yf4{bottom:2.719155pt;}
.yf6{bottom:2.719161pt;}
.yf8{bottom:2.719167pt;}
.y81{bottom:2.719173pt;}
.yfb{bottom:2.719178pt;}
.yfd{bottom:2.719184pt;}
.y21{bottom:2.719189pt;}
.y100{bottom:2.719196pt;}
.y85{bottom:2.719198pt;}
.y102{bottom:2.719202pt;}
.y87{bottom:2.719204pt;}
.y104{bottom:2.719207pt;}
.y8a{bottom:2.719210pt;}
.y106{bottom:2.719213pt;}
.y8c{bottom:2.719216pt;}
.y108{bottom:2.719219pt;}
.y8e{bottom:2.719222pt;}
.y10a{bottom:2.719225pt;}
.y90{bottom:2.719228pt;}
.y10c{bottom:2.719231pt;}
.y92{bottom:2.719234pt;}
.y2c{bottom:2.719237pt;}
.y94{bottom:2.719239pt;}
.y96{bottom:2.719245pt;}
.y98{bottom:2.719251pt;}
.y9a{bottom:2.719257pt;}
.y9c{bottom:2.719263pt;}
.y9e{bottom:2.719269pt;}
.ya0{bottom:2.719275pt;}
.ya2{bottom:2.719280pt;}
.ya4{bottom:2.719286pt;}
.ya6{bottom:2.719292pt;}
.ya8{bottom:2.719298pt;}
.yaa{bottom:2.719304pt;}
.yac{bottom:2.719310pt;}
.yae{bottom:2.719316pt;}
.yb0{bottom:2.719321pt;}
.yb2{bottom:2.719327pt;}
.yb4{bottom:2.719333pt;}
.yb6{bottom:2.719339pt;}
.yb8{bottom:2.719345pt;}
.yba{bottom:2.719351pt;}
.ybc{bottom:2.719357pt;}
.ybe{bottom:2.719362pt;}
.yc0{bottom:2.719368pt;}
.yc2{bottom:2.719374pt;}
.yc4{bottom:2.719380pt;}
.yc6{bottom:2.719386pt;}
.yc8{bottom:2.719392pt;}
.yca{bottom:2.719398pt;}
.ycc{bottom:2.719723pt;}
.yce{bottom:2.719729pt;}
.yd0{bottom:2.720002pt;}
.yd2{bottom:2.720008pt;}
.y16{bottom:2.879140pt;}
.y29{bottom:3.039226pt;}
.y47{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y7{bottom:3.680025pt;}
.y23{bottom:3.839189pt;}
.y4{bottom:3.840025pt;}
.y18{bottom:4.319147pt;}
.y1d{bottom:4.319163pt;}
.y27{bottom:4.319213pt;}
.y7e{bottom:51.946913pt;}
.y8{bottom:52.106912pt;}
.y7d{bottom:66.346880pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y7c{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y7b{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.y124{bottom:109.386623pt;}
.y44{bottom:109.706623pt;}
.yd1{bottom:111.626880pt;}
.y79{bottom:116.106620pt;}
.ycf{bottom:126.186880pt;}
.y123{bottom:129.706615pt;}
.y43{bottom:130.186615pt;}
.y78{bottom:136.426612pt;}
.ycd{bottom:140.906880pt;}
.y122{bottom:150.186607pt;}
.y42{bottom:150.666606pt;}
.ycb{bottom:155.466880pt;}
.y77{bottom:156.906604pt;}
.yc9{bottom:170.187200pt;}
.y121{bottom:170.666598pt;}
.y41{bottom:171.146598pt;}
.y76{bottom:177.386596pt;}
.yc7{bottom:184.747200pt;}
.y120{bottom:191.146590pt;}
.y40{bottom:191.626590pt;}
.y167{bottom:191.786590pt;}
.y75{bottom:197.866588pt;}
.yc5{bottom:199.467200pt;}
.y3f{bottom:205.866584pt;}
.y3e{bottom:209.226583pt;}
.y11f{bottom:211.626582pt;}
.y14a{bottom:212.266582pt;}
.yc3{bottom:214.027200pt;}
.y74{bottom:218.346579pt;}
.y3d{bottom:227.466576pt;}
.yc1{bottom:228.747200pt;}
.y11e{bottom:232.106574pt;}
.y149{bottom:233.226573pt;}
.y166{bottom:234.186573pt;}
.y73{bottom:238.826571pt;}
.ybf{bottom:243.307200pt;}
.y3c{bottom:247.946567pt;}
.y11d{bottom:252.426566pt;}
.y148{bottom:254.346565pt;}
.y165{bottom:254.666565pt;}
.ybd{bottom:258.027200pt;}
.y72{bottom:259.146563pt;}
.y3b{bottom:268.426559pt;}
.ybb{bottom:272.587200pt;}
.y11c{bottom:272.906558pt;}
.y164{bottom:275.146557pt;}
.y147{bottom:275.466556pt;}
.y71{bottom:279.626555pt;}
.yb9{bottom:287.307200pt;}
.y3a{bottom:288.906551pt;}
.y11b{bottom:293.386549pt;}
.y163{bottom:295.626548pt;}
.y146{bottom:296.586548pt;}
.y70{bottom:300.106547pt;}
.yb7{bottom:301.867200pt;}
.y39{bottom:309.386543pt;}
.y11a{bottom:313.866541pt;}
.y162{bottom:316.106540pt;}
.yb5{bottom:316.427200pt;}
.y145{bottom:317.866540pt;}
.y6f{bottom:320.586538pt;}
.y38{bottom:329.706535pt;}
.yb3{bottom:331.147200pt;}
.y161{bottom:334.186533pt;}
.y119{bottom:334.346533pt;}
.y144{bottom:338.986531pt;}
.y6e{bottom:341.066530pt;}
.yb1{bottom:345.707200pt;}
.y37{bottom:350.186527pt;}
.y160{bottom:352.426526pt;}
.y118{bottom:354.826525pt;}
.y143{bottom:360.106523pt;}
.yaf{bottom:360.427200pt;}
.y6d{bottom:361.546522pt;}
.y36{bottom:370.666518pt;}
.y15f{bottom:372.906518pt;}
.yad{bottom:374.987200pt;}
.y117{bottom:375.146517pt;}
.y142{bottom:381.226514pt;}
.y6c{bottom:381.866514pt;}
.yab{bottom:389.707200pt;}
.y35{bottom:391.146510pt;}
.y15e{bottom:393.226509pt;}
.y116{bottom:395.626508pt;}
.y6b{bottom:402.346506pt;}
.ya9{bottom:404.267200pt;}
.y34{bottom:411.626502pt;}
.y15d{bottom:412.586502pt;}
.y115{bottom:416.106500pt;}
.ya7{bottom:418.987200pt;}
.y6a{bottom:422.826498pt;}
.y141{bottom:423.466497pt;}
.y15c{bottom:431.946494pt;}
.y33{bottom:432.106494pt;}
.ya5{bottom:433.547200pt;}
.y114{bottom:436.586492pt;}
.y69{bottom:443.306489pt;}
.y140{bottom:444.586489pt;}
.ya3{bottom:448.267200pt;}
.y32{bottom:452.426486pt;}
.y113{bottom:457.066484pt;}
.ya1{bottom:462.827200pt;}
.y68{bottom:463.786481pt;}
.y13f{bottom:465.706480pt;}
.y31{bottom:472.906478pt;}
.y112{bottom:477.386476pt;}
.y9f{bottom:477.547200pt;}
.y67{bottom:484.266473pt;}
.y13e{bottom:486.826472pt;}
.y9d{bottom:492.107200pt;}
.y15b{bottom:493.226469pt;}
.y30{bottom:493.386469pt;}
.y111{bottom:497.866468pt;}
.y66{bottom:504.586465pt;}
.y9b{bottom:506.827200pt;}
.y13d{bottom:507.946463pt;}
.y15a{bottom:513.706461pt;}
.y2f{bottom:513.866461pt;}
.y110{bottom:518.346459pt;}
.y99{bottom:521.387200pt;}
.y65{bottom:525.066457pt;}
.y13c{bottom:529.066455pt;}
.y159{bottom:534.186453pt;}
.y2e{bottom:534.346453pt;}
.y97{bottom:535.947200pt;}
.y10f{bottom:538.826451pt;}
.y64{bottom:545.546448pt;}
.y13b{bottom:550.186447pt;}
.y95{bottom:550.667200pt;}
.y158{bottom:553.546445pt;}
.y2d{bottom:554.826445pt;}
.y10e{bottom:559.306443pt;}
.y93{bottom:565.227200pt;}
.y63{bottom:566.026440pt;}
.y13a{bottom:571.466438pt;}
.y10d{bottom:571.947200pt;}
.y2b{bottom:572.427200pt;}
.y157{bottom:572.746438pt;}
.y91{bottom:579.947200pt;}
.y62{bottom:586.506432pt;}
.y10b{bottom:586.667200pt;}
.y139{bottom:592.586430pt;}
.y156{bottom:593.226429pt;}
.y8f{bottom:594.507200pt;}
.y28{bottom:597.387200pt;}
.y2a{bottom:600.426426pt;}
.y109{bottom:601.227200pt;}
.y61{bottom:606.826424pt;}
.y8d{bottom:609.227200pt;}
.y138{bottom:613.706421pt;}
.y107{bottom:615.947200pt;}
.y8b{bottom:623.787200pt;}
.y60{bottom:627.306416pt;}
.y26{bottom:629.707200pt;}
.y105{bottom:630.507200pt;}
.y25{bottom:634.026413pt;}
.y155{bottom:634.186413pt;}
.y137{bottom:634.826413pt;}
.y89{bottom:638.507200pt;}
.y88{bottom:642.186410pt;}
.y103{bottom:645.227200pt;}
.y5f{bottom:647.786408pt;}
.y86{bottom:653.067200pt;}
.y154{bottom:654.666405pt;}
.y136{bottom:655.946404pt;}
.y101{bottom:659.787200pt;}
.y5e{bottom:668.266399pt;}
.y84{bottom:668.747200pt;}
.y24{bottom:673.066397pt;}
.yff{bottom:674.507200pt;}
.y153{bottom:675.146397pt;}
.y135{bottom:677.066396pt;}
.y5d{bottom:688.746391pt;}
.yfe{bottom:689.067200pt;}
.y22{bottom:689.707200pt;}
.y20{bottom:690.827200pt;}
.y83{bottom:694.026389pt;}
.y152{bottom:694.346389pt;}
.y134{bottom:698.186387pt;}
.yfc{bottom:703.787200pt;}
.y1f{bottom:707.786384pt;}
.y5c{bottom:709.226383pt;}
.y151{bottom:713.706381pt;}
.y82{bottom:714.506381pt;}
.yfa{bottom:718.347200pt;}
.y133{bottom:719.306379pt;}
.y5b{bottom:729.546375pt;}
.y80{bottom:732.267200pt;}
.yf9{bottom:733.067200pt;}
.y150{bottom:734.186373pt;}
.y1e{bottom:738.026371pt;}
.y132{bottom:740.426370pt;}
.yf7{bottom:747.627200pt;}
.y5a{bottom:750.026367pt;}
.y14f{bottom:754.666365pt;}
.y1c{bottom:755.627200pt;}
.y131{bottom:761.546362pt;}
.yf5{bottom:762.347200pt;}
.y1b{bottom:765.226361pt;}
.y59{bottom:770.506358pt;}
.y14e{bottom:774.986357pt;}
.y1a{bottom:775.786356pt;}
.yf3{bottom:776.907200pt;}
.y130{bottom:782.666354pt;}
.y58{bottom:790.986350pt;}
.yf1{bottom:791.467200pt;}
.y14d{bottom:795.466348pt;}
.y17{bottom:795.947200pt;}
.y12f{bottom:803.946345pt;}
.y19{bottom:804.906345pt;}
.yef{bottom:806.187200pt;}
.y57{bottom:811.466342pt;}
.y15{bottom:814.027200pt;}
.y14c{bottom:815.946340pt;}
.yed{bottom:820.747200pt;}
.y12e{bottom:825.066337pt;}
.y56{bottom:831.946334pt;}
.y14b{bottom:834.186333pt;}
.yeb{bottom:835.467200pt;}
.y13{bottom:843.786265pt;}
.y14{bottom:843.786329pt;}
.y12d{bottom:846.186328pt;}
.ye9{bottom:850.027200pt;}
.y55{bottom:852.266326pt;}
.ye7{bottom:864.747200pt;}
.y12c{bottom:867.626320pt;}
.y54{bottom:872.746318pt;}
.ye5{bottom:879.307200pt;}
.y12{bottom:880.106315pt;}
.y12b{bottom:888.746311pt;}
.y53{bottom:893.226309pt;}
.ye3{bottom:894.027200pt;}
.y11{bottom:900.906306pt;}
.ye1{bottom:908.587200pt;}
.y12a{bottom:909.866303pt;}
.y52{bottom:913.706301pt;}
.y10{bottom:915.466300pt;}
.yf{bottom:915.786300pt;}
.ydf{bottom:923.307200pt;}
.y129{bottom:931.306294pt;}
.y51{bottom:934.186293pt;}
.ydd{bottom:937.867200pt;}
.y128{bottom:952.426286pt;}
.ydb{bottom:952.587200pt;}
.y4b{bottom:954.027200pt;}
.y50{bottom:954.666285pt;}
.y4a{bottom:962.026282pt;}
.yd9{bottom:967.147200pt;}
.y127{bottom:973.546277pt;}
.y4f{bottom:974.986277pt;}
.y49{bottom:980.906274pt;}
.yd7{bottom:981.867200pt;}
.y126{bottom:994.666269pt;}
.y4e{bottom:995.466268pt;}
.yd5{bottom:996.427200pt;}
.y48{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.yd3{bottom:1010.987200pt;}
.y125{bottom:1015.786260pt;}
.y4d{bottom:1015.946260pt;}
.y46{bottom:1018.027200pt;}
.y45{bottom:1021.386258pt;}
.y7a{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y7f{bottom:1062.827200pt;}
.y9{bottom:1062.987200pt;}
.h29{height:2.560000pt;}
.he{height:7.278122pt;}
.h11{height:12.000000pt;}
.h1b{height:13.440000pt;}
.h2b{height:13.600000pt;}
.h2c{height:13.600320pt;}
.h23{height:14.128119pt;}
.h1d{height:14.560000pt;}
.h21{height:15.200000pt;}
.h4{height:17.600000pt;}
.h13{height:17.920000pt;}
.h17{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h27{height:19.360000pt;}
.h16{height:19.708117pt;}
.h19{height:21.723741pt;}
.h24{height:23.034366pt;}
.h14{height:23.118741pt;}
.h2d{height:28.075614pt;}
.h12{height:28.684364pt;}
.h20{height:29.856863pt;}
.h2e{height:32.432175pt;}
.h15{height:32.788112pt;}
.h1a{height:35.560298pt;}
.h1c{height:36.304673pt;}
.h28{height:36.703110pt;}
.h25{height:38.387485pt;}
.h22{height:40.177171pt;}
.hb{height:42.656233pt;}
.h5{height:42.812483pt;}
.h18{height:42.843733pt;}
.h1e{height:43.781232pt;}
.h2a{height:44.362482pt;}
.h1f{height:44.562482pt;}
.hd{height:48.406231pt;}
.h26{height:48.937480pt;}
.h8{height:50.090605pt;}
.hf{height:56.940602pt;}
.h10{height:60.175084pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w22{width:2.880000pt;}
.w21{width:3.040000pt;}
.w2{width:4.160000pt;}
.wb{width:4.320000pt;}
.w16{width:4.480000pt;}
.w33{width:4.640000pt;}
.w78{width:5.120000pt;}
.w1{width:5.760000pt;}
.w30{width:6.080000pt;}
.w9e{width:6.400000pt;}
.w56{width:6.560000pt;}
.w43{width:6.720000pt;}
.w28{width:6.880000pt;}
.w64{width:7.200000pt;}
.w8{width:7.360000pt;}
.w14{width:7.520000pt;}
.w18{width:7.840000pt;}
.w11{width:8.480000pt;}
.w1f{width:8.800000pt;}
.w1e{width:9.440000pt;}
.w71{width:9.760000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.w1c{width:10.240000pt;}
.wb5{width:10.880000pt;}
.wd{width:11.040000pt;}
.w34{width:11.200000pt;}
.wf{width:11.520000pt;}
.w31{width:11.680000pt;}
.w45{width:11.840000pt;}
.w38{width:12.000000pt;}
.w41{width:12.320000pt;}
.w6a{width:12.480000pt;}
.w5d{width:12.640000pt;}
.w37{width:12.800000pt;}
.w84{width:12.960000pt;}
.w25{width:13.120000pt;}
.w3f{width:13.280000pt;}
.w2d{width:13.440000pt;}
.w4a{width:13.600000pt;}
.w80{width:13.760000pt;}
.w50{width:13.920000pt;}
.w73{width:14.080000pt;}
.w4{width:14.240000pt;}
.w6b{width:14.880000pt;}
.w74{width:15.040000pt;}
.w60{width:15.680000pt;}
.waf{width:16.000000pt;}
.w15{width:16.320000pt;}
.w76{width:16.640000pt;}
.w39{width:17.280000pt;}
.w92{width:17.440000pt;}
.w68{width:17.760000pt;}
.w5f{width:18.720000pt;}
.wb0{width:19.040000pt;}
.w4f{width:19.200000pt;}
.w57{width:19.520000pt;}
.w8e{width:19.680000pt;}
.wad{width:20.000000pt;}
.w23{width:20.800000pt;}
.w7e{width:20.960000pt;}
.w82{width:21.600000pt;}
.w2e{width:21.760000pt;}
.w6f{width:21.920000pt;}
.w51{width:22.080000pt;}
.w6e{width:22.400000pt;}
.w5e{width:22.560000pt;}
.w4b{width:22.880000pt;}
.w65{width:23.040000pt;}
.w20{width:23.200000pt;}
.w5c{width:23.360000pt;}
.w95{width:23.520000pt;}
.w5a{width:23.680000pt;}
.w53{width:23.840000pt;}
.w35{width:24.000000pt;}
.w75{width:24.160000pt;}
.w81{width:24.320000pt;}
.w54{width:24.480000pt;}
.wb7{width:24.640000pt;}
.w3c{width:24.800000pt;}
.w42{width:25.120000pt;}
.w3d{width:25.280000pt;}
.w29{width:25.760000pt;}
.w88{width:26.560000pt;}
.wa1{width:27.040000pt;}
.wb1{width:27.200000pt;}
.w83{width:29.280000pt;}
.w61{width:29.600000pt;}
.w5{width:29.760000pt;}
.w2f{width:30.400000pt;}
.w7f{width:31.040000pt;}
.wae{width:31.200000pt;}
.w2c{width:31.680000pt;}
.w79{width:31.840000pt;}
.w8a{width:33.280000pt;}
.w3b{width:33.600000pt;}
.w2a{width:34.880000pt;}
.w85{width:36.000000pt;}
.w91{width:36.640000pt;}
.wa6{width:36.800000pt;}
.wba{width:36.960000pt;}
.wb6{width:37.440000pt;}
.w7b{width:37.920000pt;}
.w4e{width:38.400000pt;}
.wa5{width:40.320000pt;}
.w8c{width:42.400000pt;}
.w62{width:43.680000pt;}
.wab{width:45.600000pt;}
.wa9{width:45.920000pt;}
.w8b{width:46.080000pt;}
.w2b{width:47.200000pt;}
.w7a{width:47.360000pt;}
.w77{width:47.840000pt;}
.wb3{width:48.800000pt;}
.w7d{width:49.120000pt;}
.w55{width:49.280000pt;}
.wa4{width:50.560000pt;}
.w87{width:52.960000pt;}
.wa8{width:53.120000pt;}
.w52{width:53.760000pt;}
.w4c{width:56.320000pt;}
.w90{width:56.960000pt;}
.w8f{width:57.600000pt;}
.w5b{width:58.240000pt;}
.w19{width:58.400000pt;}
.w99{width:60.640000pt;}
.w8d{width:61.920000pt;}
.w9a{width:62.240000pt;}
.w27{width:62.560000pt;}
.w97{width:64.320000pt;}
.w98{width:64.800000pt;}
.wa{width:65.280000pt;}
.w96{width:66.400000pt;}
.wa2{width:68.000000pt;}
.w26{width:71.200000pt;}
.w10{width:73.760000pt;}
.w70{width:74.560000pt;}
.wa0{width:76.800000pt;}
.w48{width:77.120000pt;}
.w6d{width:78.400000pt;}
.w89{width:78.720000pt;}
.w12{width:79.360000pt;}
.w58{width:79.840000pt;}
.w9b{width:80.160000pt;}
.w24{width:81.440000pt;}
.wa7{width:81.920000pt;}
.w59{width:82.400000pt;}
.w9f{width:82.880000pt;}
.w7c{width:88.640000pt;}
.waa{width:89.920000pt;}
.wa3{width:91.040000pt;}
.w9d{width:92.480000pt;}
.w94{width:95.520000pt;}
.wac{width:95.680000pt;}
.wb2{width:97.920000pt;}
.wbb{width:98.400000pt;}
.w93{width:98.560000pt;}
.w6c{width:100.320000pt;}
.wb4{width:103.360000pt;}
.w3{width:106.400000pt;}
.w9c{width:107.840000pt;}
.w13{width:111.040000pt;}
.w1b{width:113.440000pt;}
.w47{width:114.880000pt;}
.w4d{width:121.120000pt;}
.wb9{width:125.120000pt;}
.w9{width:132.800000pt;}
.w72{width:134.400000pt;}
.wb8{width:135.360000pt;}
.w3a{width:139.040000pt;}
.w1d{width:142.560000pt;}
.wc{width:147.040000pt;}
.w86{width:147.200000pt;}
.w36{width:167.520000pt;}
.w49{width:170.560000pt;}
.w46{width:170.880000pt;}
.w3e{width:173.600000pt;}
.w32{width:179.680000pt;}
.w44{width:189.760000pt;}
.w40{width:192.640000pt;}
.w66{width:193.920000pt;}
.w69{width:196.960000pt;}
.w67{width:198.560000pt;}
.w63{width:207.200000pt;}
.w17{width:299.840000pt;}
.w1a{width:334.720000pt;}
.we{width:555.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x2b{left:100.800000pt;}
.x8f{left:102.240000pt;}
.x3a{left:103.519959pt;}
.x7{left:106.880000pt;}
.x5d{left:108.160000pt;}
.x50{left:109.600000pt;}
.x2{left:114.399892pt;}
.x40{left:119.360000pt;}
.x41{left:122.400000pt;}
.x42{left:132.320000pt;}
.x43{left:135.200000pt;}
.x3{left:138.400000pt;}
.x44{left:151.520000pt;}
.x4{left:152.799939pt;}
.x37{left:155.199938pt;}
.xc{left:164.639934pt;}
.x2d{left:170.880000pt;}
.x45{left:176.800000pt;}
.x2e{left:179.360000pt;}
.x22{left:194.879922pt;}
.x8{left:213.280000pt;}
.x4a{left:220.800000pt;}
.x80{left:223.680000pt;}
.x59{left:226.400000pt;}
.x51{left:227.520000pt;}
.x23{left:229.919908pt;}
.xd{left:230.880281pt;}
.x24{left:234.560000pt;}
.xa5{left:246.080000pt;}
.x5e{left:247.040000pt;}
.x52{left:249.280000pt;}
.x5a{left:250.400000pt;}
.x81{left:253.280000pt;}
.x4b{left:255.680000pt;}
.x2f{left:258.560000pt;}
.x5{left:268.960000pt;}
.x46{left:271.200000pt;}
.x6{left:273.119891pt;}
.x25{left:299.840000pt;}
.x26{left:304.160000pt;}
.x69{left:312.000000pt;}
.x53{left:314.080000pt;}
.x4c{left:316.640000pt;}
.x82{left:318.400000pt;}
.x6c{left:320.960000pt;}
.x96{left:322.240000pt;}
.x55{left:340.159864pt;}
.x47{left:342.400000pt;}
.x48{left:345.280000pt;}
.x97{left:358.240000pt;}
.x6d{left:359.360000pt;}
.x83{left:362.080000pt;}
.x4d{left:363.680000pt;}
.x54{left:366.240000pt;}
.x6a{left:368.320000pt;}
.x30{left:369.600000pt;}
.x31{left:377.120000pt;}
.xe{left:380.160094pt;}
.xf{left:384.160091pt;}
.x3d{left:387.519845pt;}
.x32{left:393.440000pt;}
.x4e{left:394.400000pt;}
.x33{left:397.920000pt;}
.x34{left:399.040000pt;}
.x65{left:401.120000pt;}
.x5b{left:404.640000pt;}
.x56{left:406.080000pt;}
.x49{left:407.840000pt;}
.x5c{left:409.120000pt;}
.xb4{left:410.240000pt;}
.x3b{left:411.200455pt;}
.x84{left:412.160000pt;}
.x6e{left:413.600000pt;}
.xb5{left:414.720000pt;}
.x5f{left:416.160000pt;}
.x6f{left:418.080000pt;}
.x62{left:419.680000pt;}
.x60{left:420.640000pt;}
.x63{left:424.160000pt;}
.x9b{left:425.120000pt;}
.x4f{left:426.080000pt;}
.xb6{left:427.200000pt;}
.xa3{left:428.960000pt;}
.x70{left:429.920000pt;}
.x38{left:431.680000pt;}
.x71{left:434.400000pt;}
.x27{left:436.959825pt;}
.x87{left:438.560000pt;}
.xad{left:440.160000pt;}
.x28{left:441.600000pt;}
.xae{left:444.640000pt;}
.x72{left:447.200000pt;}
.xac{left:448.640000pt;}
.x8c{left:450.720000pt;}
.x73{left:451.680000pt;}
.x7f{left:453.120000pt;}
.xa1{left:454.880000pt;}
.x35{left:456.159818pt;}
.x10{left:458.720045pt;}
.x94{left:460.640000pt;}
.x78{left:462.080000pt;}
.x90{left:463.360000pt;}
.x74{left:465.600000pt;}
.x79{left:466.560000pt;}
.x91{left:467.840000pt;}
.x11{left:470.560037pt;}
.x92{left:472.960000pt;}
.x7d{left:474.240000pt;}
.x9c{left:475.520000pt;}
.x3f{left:477.279809pt;}
.x7e{left:478.720000pt;}
.xb3{left:480.640000pt;}
.x12{left:482.400029pt;}
.xab{left:485.280000pt;}
.x95{left:486.560000pt;}
.xa0{left:489.760000pt;}
.x75{left:492.160000pt;}
.x7a{left:495.040000pt;}
.x76{left:496.800000pt;}
.x8d{left:498.240000pt;}
.x7b{left:499.680000pt;}
.xb2{left:500.960000pt;}
.x13{left:501.919965pt;}
.x99{left:504.160000pt;}
.x14{left:505.919962pt;}
.x8e{left:509.280000pt;}
.x7c{left:510.720000pt;}
.x88{left:513.120000pt;}
.x86{left:514.080000pt;}
.x6b{left:515.520000pt;}
.x15{left:517.759954pt;}
.xbc{left:519.360000pt;}
.x67{left:520.480000pt;}
.x9d{left:522.400000pt;}
.x3e{left:524.159790pt;}
.x16{left:529.439947pt;}
.xbd{left:533.280000pt;}
.xaf{left:534.560000pt;}
.xa4{left:536.800000pt;}
.x89{left:538.560000pt;}
.x17{left:541.279939pt;}
.x8a{left:543.040000pt;}
.x18{left:545.279936pt;}
.xb8{left:548.480000pt;}
.xb0{left:550.240000pt;}
.xa2{left:552.480000pt;}
.x39{left:555.360000pt;}
.xa6{left:558.400000pt;}
.x61{left:559.680000pt;}
.x19{left:560.959873pt;}
.xa7{left:562.880000pt;}
.x1a{left:564.799872pt;}
.x93{left:565.760000pt;}
.xa8{left:569.440000pt;}
.xb9{left:570.400000pt;}
.x9f{left:571.840000pt;}
.xa9{left:573.920000pt;}
.xba{left:575.520000pt;}
.x1b{left:576.639864pt;}
.x1c{left:580.479862pt;}
.x77{left:583.360000pt;}
.x1d{left:584.479859pt;}
.x29{left:588.639765pt;}
.x57{left:590.240000pt;}
.x1e{left:592.319763pt;}
.x9a{left:593.760000pt;}
.x58{left:594.880000pt;}
.xb1{left:595.840000pt;}
.x2a{left:597.600000pt;}
.x98{left:599.040000pt;}
.x66{left:600.000000pt;}
.xaa{left:600.960000pt;}
.x68{left:602.080000pt;}
.x64{left:603.040000pt;}
.xbb{left:604.800000pt;}
.xb7{left:605.760000pt;}
.x9e{left:608.480000pt;}
.x85{left:613.600000pt;}
.x9{left:619.840000pt;}
.x21{left:623.039751pt;}
.xa{left:649.600000pt;}
.x2c{left:655.680000pt;}
.xb{left:659.520000pt;}
.x8b{left:677.440000pt;}
.x3c{left:692.960000pt;}
.x36{left:694.719722pt;}
.x1f{left:696.479721pt;}
}




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