
    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_2dab0256fc81534a47f265b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_72ec9f33e920582a80635163.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947754;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_cfc489ed5c556cf6a6b410c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_e470457cb0fb0f9192d6a94f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_0a7b481d7d58a91a09f201bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.763184;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_21856b7c244c206a14ee9c97.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_c015c21666efb4b1d0cd4e64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_c8fa80a19f002dcaf5bdc03f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_8aa01c00e43115f6097a6848.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_bdb8ea9d00b723837f824a33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_cb3d1b2e5f7f6607a88dd52b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.680176;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_edfd2271955f72570e39d437.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.960938;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_0894ad2a719059fb0085d945.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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);}
.v4{vertical-align:-51.028559px;}
.va{vertical-align:-33.475157px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.573871px;}
.v1{vertical-align:15.717339px;}
.v6{vertical-align:17.177480px;}
.v5{vertical-align:18.311932px;}
.vb{vertical-align:24.505879px;}
.v9{vertical-align:28.576260px;}
.v8{vertical-align:30.753640px;}
.v7{vertical-align:33.807115px;}
.v3{vertical-align:37.803155px;}
.ls2c{letter-spacing:-5.001658px;}
.ls28{letter-spacing:-3.475687px;}
.ls33{letter-spacing:-2.917634px;}
.ls6{letter-spacing:-2.740869px;}
.ls17{letter-spacing:-1.010374px;}
.ls32{letter-spacing:-0.477631px;}
.ls2d{letter-spacing:-0.172682px;}
.ls27{letter-spacing:-0.055111px;}
.ls35{letter-spacing:-0.048988px;}
.ls1d{letter-spacing:-0.039190px;}
.ls12{letter-spacing:-0.036741px;}
.ls1e{letter-spacing:-0.027629px;}
.ls13{letter-spacing:-0.024494px;}
.ls18{letter-spacing:-0.022453px;}
.ls36{letter-spacing:-0.019595px;}
.ls15{letter-spacing:-0.018370px;}
.ls39{letter-spacing:-0.017962px;}
.lsf{letter-spacing:-0.014696px;}
.ls3a{letter-spacing:-0.013472px;}
.ls7{letter-spacing:-0.012247px;}
.ls5{letter-spacing:-0.009798px;}
.ls3{letter-spacing:-0.008165px;}
.ls10{letter-spacing:-0.007348px;}
.ls34{letter-spacing:-0.006940px;}
.ls4{letter-spacing:-0.006532px;}
.lse{letter-spacing:-0.006123px;}
.ls24{letter-spacing:-0.004899px;}
.ls19{letter-spacing:-0.004491px;}
.ls11{letter-spacing:-0.003674px;}
.ls23{letter-spacing:-0.002858px;}
.ls1c{letter-spacing:-0.002449px;}
.ls25{letter-spacing:-0.001225px;}
.ls2{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.003266px;}
.lsc{letter-spacing:0.003674px;}
.ls16{letter-spacing:0.004491px;}
.ls8{letter-spacing:0.006123px;}
.lsd{letter-spacing:0.007348px;}
.ls1f{letter-spacing:0.008573px;}
.ls1{letter-spacing:0.009798px;}
.ls30{letter-spacing:0.011430px;}
.ls2f{letter-spacing:0.012247px;}
.lsb{letter-spacing:0.013472px;}
.ls0{letter-spacing:0.014696px;}
.ls31{letter-spacing:0.016329px;}
.ls2a{letter-spacing:0.017962px;}
.ls9{letter-spacing:0.018370px;}
.ls29{letter-spacing:0.019595px;}
.ls1b{letter-spacing:0.020820px;}
.ls21{letter-spacing:0.022045px;}
.ls2b{letter-spacing:0.022453px;}
.lsa{letter-spacing:0.024494px;}
.ls2e{letter-spacing:0.030617px;}
.ls1a{letter-spacing:0.034700px;}
.ls14{letter-spacing:0.154312px;}
.ls37{letter-spacing:0.382105px;}
.ls20{letter-spacing:41.072217px;}
.ls26{letter-spacing:41.072626px;}
.ls22{letter-spacing:144.421679px;}
.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;}
}
.ws34{word-spacing:-30.666385px;}
.ws36{word-spacing:-23.381894px;}
.wsd{word-spacing:-23.154100px;}
.ws37{word-spacing:-23.014485px;}
.wsb{word-spacing:-23.007137px;}
.wse{word-spacing:-22.999789px;}
.wsa{word-spacing:-22.992440px;}
.ws10{word-spacing:-21.756722px;}
.ws11{word-spacing:-21.742842px;}
.wsf{word-spacing:-21.722023px;}
.ws12{word-spacing:-21.619801px;}
.ws9{word-spacing:-19.172614px;}
.ws7{word-spacing:-19.166491px;}
.ws4{word-spacing:-19.160367px;}
.ws16{word-spacing:-19.154244px;}
.ws5{word-spacing:-18.456167px;}
.ws14{word-spacing:-17.939835px;}
.wsc{word-spacing:-17.917301px;}
.ws15{word-spacing:-15.333192px;}
.ws35{word-spacing:-14.333841px;}
.ws2e{word-spacing:-14.055426px;}
.ws26{word-spacing:-13.628416px;}
.ws24{word-spacing:-13.618618px;}
.ws20{word-spacing:-13.608821px;}
.ws3a{word-spacing:-13.179769px;}
.ws3b{word-spacing:-13.170788px;}
.ws3c{word-spacing:-13.161807px;}
.ws39{word-spacing:-13.139354px;}
.ws29{word-spacing:-11.518265px;}
.ws8{word-spacing:-11.499894px;}
.ws18{word-spacing:-11.485198px;}
.ws0{word-spacing:-11.340684px;}
.ws2a{word-spacing:-11.327212px;}
.ws6{word-spacing:-11.062678px;}
.ws2d{word-spacing:-10.768751px;}
.ws3d{word-spacing:-9.572223px;}
.ws1{word-spacing:-9.072547px;}
.ws32{word-spacing:-8.955793px;}
.ws31{word-spacing:-8.944362px;}
.ws30{word-spacing:-7.678843px;}
.ws2c{word-spacing:-7.666596px;}
.ws2f{word-spacing:-7.664147px;}
.ws2b{word-spacing:-7.661697px;}
.ws33{word-spacing:-6.026728px;}
.ws1e{word-spacing:-3.851669px;}
.ws1d{word-spacing:-3.839422px;}
.ws1a{word-spacing:-3.833298px;}
.ws1c{word-spacing:-3.832073px;}
.ws1b{word-spacing:-3.828399px;}
.ws19{word-spacing:-3.827175px;}
.ws1f{word-spacing:-3.778187px;}
.ws38{word-spacing:-0.080830px;}
.ws2{word-spacing:-0.061235px;}
.ws3{word-spacing:0.000000px;}
.ws23{word-spacing:62.581028px;}
.ws22{word-spacing:63.788068px;}
.ws21{word-spacing:85.607892px;}
.ws17{word-spacing:183.457030px;}
.ws25{word-spacing:222.383887px;}
.ws27{word-spacing:229.063068px;}
.ws28{word-spacing:232.190125px;}
.ws13{word-spacing:792.445380px;}
._b{margin-left:-41.064053px;}
._12{margin-left:-26.742459px;}
._6{margin-left:-10.326636px;}
._9{margin-left:-7.553924px;}
._7{margin-left:-6.227579px;}
._13{margin-left:-5.086978px;}
._1{margin-left:-3.791658px;}
._0{margin-left:-2.253440px;}
._2{margin-left:-1.043441px;}
._3{width:1.026295px;}
._4{width:2.792307px;}
._5{width:3.896982px;}
._f{width:5.045747px;}
._c{width:39.031058px;}
._e{width:41.072626px;}
._d{width:43.112969px;}
._11{width:154.691036px;}
._10{width:209.567517px;}
._a{width:495.920702px;}
._8{width:910.511777px;}
.fc10{color:rgb(204,0,0);}
.fcf{color:rgb(0,51,0);}
.fce{color:rgb(153,0,0);}
.fcd{color:rgb(135,210,0);}
.fc0{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,54,100);}
.fc1{color:rgb(117,181,5);}
.fc5{color:rgb(118,185,0);}
.fc7{color:rgb(154,0,0);}
.fc4{color:transparent;}
.fc8{color:rgb(0,0,255);}
.fca{color:rgb(0,128,0);}
.fcb{color:rgb(0,154,0);}
.fc6{color:rgb(0,0,154);}
.fcc{color:rgb(59,100,49);}
.fc9{color:rgb(163,21,21);}
.fs10{font-size:12.246959px;}
.fs12{font-size:19.050826px;}
.fs13{font-size:22.452758px;}
.fs6{font-size:24.493918px;}
.fsf{font-size:28.576237px;}
.fs4{font-size:32.658557px;}
.fs8{font-size:36.740876px;}
.fs2{font-size:40.823196px;}
.fs7{font-size:44.905516px;}
.fsc{font-size:46.048565px;}
.fse{font-size:47.763139px;}
.fs3{font-size:48.987835px;}
.fs11{font-size:57.152474px;}
.fsd{font-size:57.315767px;}
.fsb{font-size:57.560706px;}
.fs1{font-size:61.234794px;}
.fsa{font-size:69.072848px;}
.fs9{font-size:69.399433px;}
.fs5{font-size:73.481753px;}
.fs0{font-size:97.975670px;}
.y0{bottom:0.000000px;}
.y144{bottom:1.020741px;}
.y12d{bottom:4.082242px;}
.y96{bottom:4.082271px;}
.yfc{bottom:4.337371px;}
.y6d{bottom:4.337521px;}
.y67{bottom:4.592511px;}
.y6f{bottom:4.592521px;}
.ya4{bottom:4.592624px;}
.y182{bottom:4.592633px;}
.y69{bottom:4.592661px;}
.yf8{bottom:4.592671px;}
.y154{bottom:6.123495px;}
.y17b{bottom:9.185283px;}
.y8a{bottom:10.205917px;}
.y178{bottom:11.226402px;}
.yec{bottom:11.226429px;}
.y23{bottom:11.736727px;}
.y17e{bottom:11.821733px;}
.y180{bottom:13.352603px;}
.y12c{bottom:15.308621px;}
.y25{bottom:16.150531px;}
.y15{bottom:16.150651px;}
.y183{bottom:16.329342px;}
.y189{bottom:18.200343px;}
.y181{bottom:18.370461px;}
.y185{bottom:18.455493px;}
.y176{bottom:18.455503px;}
.y18e{bottom:18.455508px;}
.y187{bottom:18.455548px;}
.y18b{bottom:18.710493px;}
.y122{bottom:18.880737px;}
.y18d{bottom:18.965863px;}
.y17{bottom:19.438154px;}
.yfe{bottom:19.438244px;}
.y108{bottom:19.541116px;}
.y2{bottom:19.691294px;}
.y10f{bottom:19.733896px;}
.y44{bottom:19.993773px;}
.y95{bottom:20.411550px;}
.y170{bottom:21.432177px;}
.y1a{bottom:21.624927px;}
.y17a{bottom:22.963112px;}
.ye7{bottom:23.473352px;}
.y17f{bottom:23.558402px;}
.y46{bottom:23.561073px;}
.y17d{bottom:25.599562px;}
.ya3{bottom:26.535092px;}
.y9{bottom:26.877986px;}
.y22{bottom:30.107165px;}
.y89{bottom:30.107225px;}
.y107{bottom:30.374670px;}
.y43{bottom:32.240732px;}
.yeb{bottom:33.168897px;}
.y8e{bottom:34.546877px;}
.y48{bottom:35.720145px;}
.y153{bottom:35.720313px;}
.y45{bottom:35.808032px;}
.yb{bottom:35.913045px;}
.y94{bottom:36.740828px;}
.y121{bottom:36.740886px;}
.y9a{bottom:37.083823px;}
.y167{bottom:37.083842px;}
.y112{bottom:38.614621px;}
.y165{bottom:39.635221px;}
.y9b{bottom:39.635273px;}
.y24{bottom:40.847475px;}
.ye6{bottom:41.190285px;}
.y142{bottom:41.282891px;}
.y53{bottom:41.309400px;}
.y8{bottom:41.676395px;}
.y13d{bottom:42.354075px;}
.y2d{bottom:42.696952px;}
.ya0{bottom:42.697071px;}
.y88{bottom:45.415924px;}
.y7a{bottom:46.436443px;}
.y5d{bottom:47.456975px;}
.y109{bottom:49.750261px;}
.y100{bottom:50.011066px;}
.y52{bottom:50.518718px;}
.yd7{bottom:50.962518px;}
.y16f{bottom:51.028994px;}
.y19{bottom:51.221744px;}
.y21{bottom:52.559923px;}
.y93{bottom:53.070106px;}
.y49{bottom:54.185745px;}
.y99{bottom:54.433682px;}
.yd6{bottom:54.534548px;}
.y7b{bottom:54.696030px;}
.y120{bottom:55.621614px;}
.y7{bottom:56.474803px;}
.yd5{bottom:58.106577px;}
.yea{bottom:59.703974px;}
.y188{bottom:59.985975px;}
.ydb{bottom:59.993757px;}
.y13c{bottom:60.724513px;}
.y2c{bottom:61.067390px;}
.yd4{bottom:61.678607px;}
.y37{bottom:63.296523px;}
.y79{bottom:64.806882px;}
.yd3{bottom:65.250636px;}
.y87{bottom:65.317232px;}
.y92{bottom:68.378805px;}
.y5c{bottom:70.420022px;}
.y101{bottom:70.717516px;}
.y1b{bottom:72.045900px;}
.y6{bottom:72.293792px;}
.yd2{bottom:72.394696px;}
.y20{bottom:75.012681px;}
.y36{bottom:75.543482px;}
.y152{bottom:75.890070px;}
.yd1{bottom:75.966725px;}
.y11f{bottom:77.564082px;}
.y51{bottom:77.564085px;}
.y16{bottom:77.884110px;}
.y13b{bottom:79.094951px;}
.y65{bottom:79.605290px;}
.ye1{bottom:80.333929px;}
.yda{bottom:81.425667px;}
.ye9{bottom:81.646442px;}
.yd0{bottom:83.110785px;}
.y2b{bottom:83.520148px;}
.y78{bottom:83.687610px;}
.y9f{bottom:85.561411px;}
.ycf{bottom:86.682814px;}
.y151{bottom:87.007242px;}
.y91{bottom:87.769823px;}
.y86{bottom:88.280280px;}
.ya1{bottom:89.643661px;}
.y102{bottom:90.913696px;}
.y113{bottom:93.215626px;}
.yce{bottom:93.826874px;}
.ye0{bottom:95.132337px;}
.y150{bottom:95.682171px;}
.y11e{bottom:95.934520px;}
.y14{bottom:96.955148px;}
.y9e{bottom:97.298011px;}
.ycd{bottom:97.398903px;}
.y1f{bottom:97.975729px;}
.ycc{bottom:100.970933px;}
.y13a{bottom:101.547709px;}
.yd9{bottom:102.550999px;}
.y90{bottom:103.588812px;}
.y50{bottom:104.099163px;}
.y85{bottom:104.609558px;}
.y10a{bottom:104.918426px;}
.y2a{bottom:105.972906px;}
.y18c{bottom:105.997140px;}
.y186{bottom:106.252305px;}
.y77{bottom:106.650657px;}
.ycb{bottom:108.114992px;}
.y3b{bottom:109.921915px;}
.y103{bottom:111.529366px;}
.yca{bottom:111.687022px;}
.y14f{bottom:113.256342px;}
.y11d{bottom:114.815248px;}
.yc9{bottom:115.259052px;}
.y3e{bottom:117.076544px;}
.yc8{bottom:118.831081px;}
.y13{bottom:118.897616px;}
.y5b{bottom:119.407857px;}
.y139{bottom:119.918147px;}
.y1e{bottom:120.428486px;}
.y3a{bottom:121.148294px;}
.y64{bottom:121.449066px;}
.y164{bottom:121.791970px;}
.y14e{bottom:121.931271px;}
.yc7{bottom:122.403111px;}
.y9d{bottom:123.322821px;}
.y84{bottom:124.000576px;}
.y76{bottom:125.531386px;}
.yc6{bottom:125.975140px;}
.y98{bottom:127.405213px;}
.yd8{bottom:128.065497px;}
.y3d{bottom:128.302923px;}
.y29{bottom:128.935954px;}
.yc5{bottom:129.547170px;}
.y9c{bottom:129.956611px;}
.y4f{bottom:131.144530px;}
.y104{bottom:131.215216px;}
.y39{bottom:132.374673px;}
.y115{bottom:134.038817px;}
.y163{bottom:136.590379px;}
.yc4{bottom:136.691229px;}
.y5a{bottom:137.778296px;}
.y11c{bottom:138.288586px;}
.y83{bottom:139.819565px;}
.yc3{bottom:140.263259px;}
.y15a{bottom:140.329749px;}
.y3c{bottom:140.549882px;}
.y12{bottom:140.840084px;}
.y138{bottom:142.881195px;}
.y1d{bottom:142.881244px;}
.y114{bottom:143.224036px;}
.yc2{bottom:143.835289px;}
.y75{bottom:144.412114px;}
.y38{bottom:144.621632px;}
.yc1{bottom:147.407318px;}
.y63{bottom:147.473853px;}
.ye4{bottom:147.839468px;}
.y174{bottom:149.004678px;}
.y14a{bottom:151.075522px;}
.y147{bottom:151.125702px;}
.ye3{bottom:151.154998px;}
.y28{bottom:151.388711px;}
.y97{bottom:151.388732px;}
.y162{bottom:151.388787px;}
.y105{bottom:151.411366px;}
.y14c{bottom:151.524571px;}
.y148{bottom:151.607521px;}
.y18a{bottom:153.028950px;}
.y184{bottom:153.283950px;}
.y110{bottom:154.450526px;}
.yc0{bottom:154.551378px;}
.y82{bottom:156.659133px;}
.y4e{bottom:157.679607px;}
.ybf{bottom:158.123407px;}
.y146{bottom:158.269761px;}
.ye2{bottom:159.617876px;}
.y59{bottom:160.741343px;}
.ye5{bottom:161.274026px;}
.ybe{bottom:161.695437px;}
.y11b{bottom:164.313373px;}
.y137{bottom:164.823663px;}
.y159{bottom:165.333957px;}
.y145{bottom:165.413821px;}
.y1c{bottom:165.844292px;}
.y161{bottom:166.187196px;}
.y16c{bottom:167.375116px;}
.y11{bottom:167.375161px;}
.ybd{bottom:168.839496px;}
.y14d{bottom:169.531171px;}
.y62{bottom:169.926611px;}
.y149{bottom:170.108971px;}
.y14b{bottom:170.192071px;}
.y106{bottom:172.027066px;}
.ybc{bottom:172.411526px;}
.y173{bottom:172.478016px;}
.y27{bottom:173.841469px;}
.y40{bottom:174.397173px;}
.y81{bottom:175.539861px;}
.ybb{bottom:175.983556px;}
.y42{bottom:176.948523px;}
.y166{bottom:177.923792px;}
.y160{bottom:180.985604px;}
.yba{bottom:183.127615px;}
.y129{bottom:183.809202px;}
.y4d{bottom:184.724975px;}
.y74{bottom:186.255890px;}
.y3f{bottom:186.644132px;}
.yb9{bottom:186.699645px;}
.y58{bottom:186.766131px;}
.y41{bottom:189.195482px;}
.y16b{bottom:189.317584px;}
.y10{bottom:189.317629px;}
.yb8{bottom:190.271674px;}
.y158{bottom:190.338164px;}
.y128{bottom:190.953261px;}
.y136{bottom:191.358740px;}
.yff{bottom:191.713066px;}
.y80{bottom:191.869140px;}
.y61{bottom:192.889659px;}
.yb7{bottom:193.843704px;}
.y172{bottom:194.420484px;}
.y8d{bottom:194.930770px;}
.y12a{bottom:195.273711px;}
.y15f{bottom:195.784013px;}
.y26{bottom:196.804517px;}
.y127{bottom:198.097321px;}
.y179{bottom:200.826000px;}
.yb6{bottom:200.987763px;}
.yb5{bottom:204.559793px;}
.y57{bottom:205.136569px;}
.y73{bottom:205.136618px;}
.y135{bottom:209.729179px;}
.y11a{bottom:210.239469px;}
.y15e{bottom:210.582421px;}
.y4c{bottom:211.260052px;}
.yb4{bottom:211.703852px;}
.y7f{bottom:211.770448px;}
.y10c{bottom:213.133816px;}
.y8c{bottom:213.301208px;}
.yb3{bottom:215.275882px;}
.y117{bottom:215.685167px;}
.y157{bottom:215.852662px;}
.y16a{bottom:216.362952px;}
.yf{bottom:216.362997px;}
.y32{bottom:217.337894px;}
.yb2{bottom:218.847911px;}
.y60{bottom:219.424736px;}
.y141{bottom:219.427991px;}
.y171{bottom:220.955561px;}
.y34{bottom:221.420223px;}
.yde{bottom:222.181420px;}
.yb1{bottom:222.419941px;}
.y126{bottom:223.339691px;}
.y116{bottom:224.870386px;}
.yb0{bottom:225.991971px;}
.y72{bottom:228.099666px;}
.y31{bottom:228.564273px;}
.y56{bottom:228.609907px;}
.yaf{bottom:229.564000px;}
.ydf{bottom:230.943807px;}
.y8b{bottom:232.181936px;}
.y10d{bottom:233.545366px;}
.y33{bottom:233.667182px;}
.y140{bottom:234.961541px;}
.y7e{bottom:235.243785px;}
.y119{bottom:236.264256px;}
.yae{bottom:236.708060px;}
.y111{bottom:237.117476px;}
.y4b{bottom:238.305420px;}
.ye{bottom:238.305465px;}
.ydd{bottom:239.020989px;}
.yad{bottom:240.280089px;}
.y30{bottom:240.811232px;}
.y156{bottom:240.856869px;}
.y5f{bottom:241.877494px;}
.y177{bottom:242.669850px;}
.y169{bottom:242.898029px;}
.y125{bottom:242.968841px;}
.yac{bottom:243.852119px;}
.y71{bottom:246.980394px;}
.yab{bottom:247.424149px;}
.y7d{bottom:250.552484px;}
.y10e{bottom:253.957066px;}
.yaa{bottom:254.568208px;}
.y55{bottom:254.634694px;}
.ydc{bottom:256.370847px;}
.ya9{bottom:258.140238px;}
.ya8{bottom:261.712267px;}
.y124{bottom:263.017541px;}
.y2e{bottom:263.652456px;}
.y13f{bottom:264.782441px;}
.y4a{bottom:264.840497px;}
.yd{bottom:264.840542px;}
.y155{bottom:265.861077px;}
.y70{bottom:265.861122px;}
.ya7{bottom:268.856327px;}
.y168{bottom:269.775917px;}
.y7c{bottom:270.453792px;}
.y123{bottom:272.633591px;}
.y10b{bottom:273.858316px;}
.y175{bottom:274.818150px;}
.ya6{bottom:276.000386px;}
.y54{bottom:277.597742px;}
.y2f{bottom:278.927622px;}
.ya5{bottom:279.572415px;}
.y35{bottom:279.948202px;}
.y15d{bottom:279.981802px;}
.y15b{bottom:283.043642px;}
.y13e{bottom:285.133841px;}
.y15c{bottom:291.718471px;}
.y5{bottom:306.006633px;}
.y4{bottom:321.315332px;}
.y17c{bottom:321.849750px;}
.y18{bottom:338.927550px;}
.y47{bottom:339.024000px;}
.y3{bottom:460.304100px;}
.y118{bottom:460.766100px;}
.yc{bottom:473.642400px;}
.ya2{bottom:473.914500px;}
.y6b{bottom:475.955700px;}
.y5e{bottom:479.765850px;}
.y131{bottom:491.238900px;}
.y6e{bottom:494.071050px;}
.y6a{bottom:494.326200px;}
.y16d{bottom:495.346800px;}
.yf4{bottom:495.759150px;}
.yfd{bottom:497.340750px;}
.y134{bottom:509.354250px;}
.y130{bottom:509.609400px;}
.y6c{bottom:512.441400px;}
.y68{bottom:512.696550px;}
.yfb{bottom:513.874350px;}
.yf3{bottom:514.129500px;}
.y133{bottom:527.724600px;}
.y12f{bottom:527.979900px;}
.y66{bottom:532.087650px;}
.yfa{bottom:532.244850px;}
.yf2{bottom:532.500000px;}
.y132{bottom:546.095100px;}
.y12e{bottom:546.350250px;}
.yf9{bottom:550.615350px;}
.yf1{bottom:550.870350px;}
.y12b{bottom:565.741350px;}
.yf7{bottom:568.985700px;}
.yf0{bottom:569.240850px;}
.yf6{bottom:587.356200px;}
.yef{bottom:587.611350px;}
.yf5{bottom:605.726550px;}
.yee{bottom:605.981700px;}
.yed{bottom:625.372800px;}
.y8f{bottom:638.857350px;}
.y143{bottom:651.230250px;}
.ye8{bottom:656.717400px;}
.ya{bottom:758.384250px;}
.y16e{bottom:758.480550px;}
.y1{bottom:791.524950px;}
.h36{height:8.164639px;}
.h26{height:9.364618px;}
.h33{height:17.168466px;}
.h17{height:17.860155px;}
.h19{height:18.115290px;}
.h1a{height:18.370440px;}
.hd{height:18.729236px;}
.h24{height:21.850775px;}
.h32{height:24.972314px;}
.h34{height:26.535075px;}
.h35{height:27.914455px;}
.h11{height:28.093854px;}
.h10{height:31.215393px;}
.h3c{height:31.637985px;}
.h2f{height:33.109047px;}
.h18{height:34.336932px;}
.h1f{height:35.210963px;}
.h2a{height:35.664484px;}
.h8{height:36.095041px;}
.h23{height:36.522010px;}
.h6{height:36.637231px;}
.h20{height:37.458472px;}
.h3d{height:41.333505px;}
.h29{height:41.608564px;}
.h2d{height:43.374660px;}
.h22{height:43.826412px;}
.h1e{height:44.013704px;}
.h28{height:44.580604px;}
.h12{height:45.148701px;}
.h40{height:45.756015px;}
.h5{height:45.796539px;}
.h3e{height:46.011150px;}
.h41{height:46.266300px;}
.h25{height:46.436400px;}
.h3b{height:46.521435px;}
.h3f{height:46.521450px;}
.hf{height:46.823090px;}
.h42{height:47.031735px;}
.h37{height:48.975875px;}
.h1d{height:52.816445px;}
.h2b{height:52.841964px;}
.h1b{height:53.066168px;}
.h7{height:54.142561px;}
.h27{height:54.178441px;}
.hc{height:56.187707px;}
.h31{height:56.670114px;}
.h2{height:58.288245px;}
.h38{height:61.745100px;}
.h3a{height:61.964350px;}
.h30{height:66.418123px;}
.h3{height:72.190081px;}
.h2c{height:73.431360px;}
.ha{height:74.916943px;}
.h13{height:82.951855px;}
.h14{height:91.341750px;}
.h39{height:91.341900px;}
.h9{height:91.534650px;}
.h2e{height:101.547750px;}
.h21{height:119.407800px;}
.he{height:185.745600px;}
.h15{height:284.741805px;}
.hb{height:284.741850px;}
.h1c{height:289.334520px;}
.h16{height:297.499050px;}
.h4{height:391.761750px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w3f{width:34.444575px;}
.w35{width:34.699710px;}
.w2c{width:34.954860px;}
.w38{width:41.017215px;}
.w36{width:41.227170px;}
.w2f{width:41.272365px;}
.w37{width:41.431830px;}
.w2d{width:41.482320px;}
.w42{width:41.527500px;}
.w2e{width:41.686965px;}
.w39{width:41.708235px;}
.w40{width:41.737470px;}
.w41{width:41.942115px;}
.w30{width:41.963385px;}
.w3b{width:42.170700px;}
.w43{width:42.218520px;}
.w32{width:42.681000px;}
.w3c{width:44.089605px;}
.w33{width:44.344755px;}
.w44{width:44.599905px;}
.w3d{width:45.482235px;}
.w34{width:45.737370px;}
.w3a{width:45.838395px;}
.w31{width:46.348680px;}
.w1b{width:47.305470px;}
.w1c{width:47.454285px;}
.w21{width:47.815770px;}
.w20{width:47.853000px;}
.w22{width:47.964585px;}
.w1a{width:48.108135px;}
.w1e{width:54.284685px;}
.w24{width:54.539835px;}
.w1d{width:59.217570px;}
.w23{width:59.727870px;}
.w1f{width:80.705550px;}
.w3e{width:89.627640px;}
.w2b{width:90.137970px;}
.we{width:91.718325px;}
.w29{width:131.654850px;}
.w16{width:160.594200px;}
.w14{width:161.104650px;}
.wd{width:177.320850px;}
.w10{width:177.576150px;}
.wf{width:177.719550px;}
.wc{width:177.974700px;}
.w2a{width:246.980415px;}
.w26{width:249.021450px;}
.w25{width:249.531750px;}
.w7{width:256.982100px;}
.w17{width:259.884750px;}
.w15{width:260.394900px;}
.w19{width:290.355090px;}
.w6{width:472.835235px;}
.w18{width:472.917900px;}
.w2{width:473.163300px;}
.w5{width:496.001850px;}
.wa{width:496.001865px;}
.w8{width:496.512090px;}
.w4{width:496.512150px;}
.w12{width:496.512165px;}
.w28{width:500.594550px;}
.w11{width:501.615000px;}
.w9{width:501.615090px;}
.wb{width:505.186950px;}
.w27{width:508.248750px;}
.w13{width:508.566405px;}
.w3{width:522.537000px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x82{left:-61.558665px;}
.x85{left:-22.784155px;}
.x80{left:-18.877815px;}
.x7b{left:-16.282320px;}
.x78{left:-11.448906px;}
.x0{left:0.000000px;}
.x9{left:1.530870px;}
.x24{left:3.056585px;}
.x5f{left:4.962714px;}
.x47{left:6.964697px;}
.x5c{left:8.646026px;}
.x16{left:10.712010px;}
.x86{left:12.353431px;}
.x6{left:13.777820px;}
.x5b{left:14.783631px;}
.x60{left:16.837604px;}
.xb{left:18.161138px;}
.x10{left:19.697308px;}
.x7{left:21.432169px;}
.x41{left:23.165082px;}
.x1d{left:26.113786px;}
.x62{left:27.426437px;}
.x48{left:29.184488px;}
.x2c{left:30.710984px;}
.xf{left:33.555865px;}
.x1a{left:34.786175px;}
.x4b{left:36.249466px;}
.x61{left:39.683361px;}
.x1b{left:41.159319px;}
.x4{left:43.789254px;}
.x2a{left:48.693383px;}
.x44{left:51.999056px;}
.x45{left:52.999429px;}
.x1f{left:55.976362px;}
.x3f{left:58.112400px;}
.x46{left:61.317818px;}
.x2{left:63.543036px;}
.x14{left:65.827470px;}
.x3{left:67.971540px;}
.x7d{left:69.434235px;}
.x43{left:72.582826px;}
.x28{left:74.563721px;}
.x15{left:76.419660px;}
.x54{left:78.370110px;}
.x26{left:80.692150px;}
.x21{left:82.055535px;}
.x27{left:85.723813px;}
.x19{left:87.182564px;}
.x73{left:89.055612px;}
.x1{left:93.350505px;}
.x70{left:96.548506px;}
.x25{left:103.219395px;}
.x2b{left:105.685770px;}
.x50{left:108.181470px;}
.x35{left:112.263780px;}
.x2f{left:116.091775px;}
.x40{left:117.967215px;}
.x33{left:121.449030px;}
.x3c{left:128.047344px;}
.x2d{left:132.165030px;}
.x30{left:139.761207px;}
.x74{left:141.996153px;}
.x18{left:143.169680px;}
.x3b{left:153.380328px;}
.x72{left:155.128080px;}
.x34{left:156.148680px;}
.x4a{left:158.291473px;}
.xe{left:162.369888px;}
.x4d{left:164.747933px;}
.x5{left:166.889713px;}
.x3a{left:175.522140px;}
.x22{left:195.958350px;}
.x38{left:209.387580px;}
.x39{left:211.428630px;}
.x36{left:233.712780px;}
.x3d{left:239.989255px;}
.x17{left:248.421870px;}
.x13{left:266.881770px;}
.x37{left:269.433030px;}
.x4c{left:272.200745px;}
.x51{left:276.577170px;}
.x42{left:279.582000px;}
.x12{left:280.740326px;}
.x63{left:281.961127px;}
.x11{left:283.512038px;}
.x65{left:288.438727px;}
.x6a{left:290.493072px;}
.x64{left:295.738927px;}
.x31{left:306.422425px;}
.x1e{left:319.637970px;}
.x55{left:321.706987px;}
.x32{left:324.878076px;}
.x2e{left:329.137080px;}
.x5a{left:330.611400px;}
.x57{left:335.223937px;}
.x6b{left:337.545910px;}
.x67{left:339.295686px;}
.x56{left:341.120587px;}
.x4e{left:355.242589px;}
.x52{left:359.754420px;}
.x23{left:374.443350px;}
.x66{left:375.854527px;}
.x3e{left:379.780971px;}
.x1c{left:400.138020px;}
.x6c{left:406.911875px;}
.x5d{left:427.045650px;}
.x71{left:431.705370px;}
.x20{left:436.243770px;}
.x4f{left:438.585295px;}
.x53{left:443.952270px;}
.x6d{left:459.615537px;}
.x68{left:462.218345px;}
.x6f{left:464.056132px;}
.x69{left:466.456645px;}
.x6e{left:469.382793px;}
.x58{left:474.825981px;}
.x59{left:479.064280px;}
.x29{left:514.320560px;}
.xd{left:517.663310px;}
.x5e{left:534.738000px;}
.xc{left:672.388800px;}
.x75{left:675.378900px;}
.x8{left:680.836950px;}
.xa{left:686.472900px;}
.x49{left:697.082100px;}
.x76{left:766.027050px;}
.x77{left:800.981850px;}
.x79{left:842.974500px;}
.x7a{left:884.661600px;}
.x7c{left:926.444250px;}
.x7e{left:968.407500px;}
.x7f{left:1014.756300px;}
.x81{left:1057.437150px;}
.x83{left:1102.292250px;}
.x84{left:1146.636900px;}
@media print{
.v4{vertical-align:-45.358719pt;}
.va{vertical-align:-29.755695pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.176774pt;}
.v1{vertical-align:13.970968pt;}
.v6{vertical-align:15.268871pt;}
.v5{vertical-align:16.277273pt;}
.vb{vertical-align:21.783003pt;}
.v9{vertical-align:25.401120pt;}
.v8{vertical-align:27.336569pt;}
.v7{vertical-align:30.050769pt;}
.v3{vertical-align:33.602804pt;}
.ls2c{letter-spacing:-4.445918pt;}
.ls28{letter-spacing:-3.089499pt;}
.ls33{letter-spacing:-2.593452pt;}
.ls6{letter-spacing:-2.436328pt;}
.ls17{letter-spacing:-0.898110pt;}
.ls32{letter-spacing:-0.424561pt;}
.ls2d{letter-spacing:-0.153495pt;}
.ls27{letter-spacing:-0.048988pt;}
.ls35{letter-spacing:-0.043545pt;}
.ls1d{letter-spacing:-0.034836pt;}
.ls12{letter-spacing:-0.032659pt;}
.ls1e{letter-spacing:-0.024559pt;}
.ls13{letter-spacing:-0.021772pt;}
.ls18{letter-spacing:-0.019958pt;}
.ls36{letter-spacing:-0.017418pt;}
.ls15{letter-spacing:-0.016329pt;}
.ls39{letter-spacing:-0.015966pt;}
.lsf{letter-spacing:-0.013063pt;}
.ls3a{letter-spacing:-0.011975pt;}
.ls7{letter-spacing:-0.010886pt;}
.ls5{letter-spacing:-0.008709pt;}
.ls3{letter-spacing:-0.007257pt;}
.ls10{letter-spacing:-0.006532pt;}
.ls34{letter-spacing:-0.006169pt;}
.ls4{letter-spacing:-0.005806pt;}
.lse{letter-spacing:-0.005443pt;}
.ls24{letter-spacing:-0.004354pt;}
.ls19{letter-spacing:-0.003992pt;}
.ls11{letter-spacing:-0.003266pt;}
.ls23{letter-spacing:-0.002540pt;}
.ls1c{letter-spacing:-0.002177pt;}
.ls25{letter-spacing:-0.001089pt;}
.ls2{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.002903pt;}
.lsc{letter-spacing:0.003266pt;}
.ls16{letter-spacing:0.003992pt;}
.ls8{letter-spacing:0.005443pt;}
.lsd{letter-spacing:0.006532pt;}
.ls1f{letter-spacing:0.007620pt;}
.ls1{letter-spacing:0.008709pt;}
.ls30{letter-spacing:0.010160pt;}
.ls2f{letter-spacing:0.010886pt;}
.lsb{letter-spacing:0.011975pt;}
.ls0{letter-spacing:0.013063pt;}
.ls31{letter-spacing:0.014515pt;}
.ls2a{letter-spacing:0.015966pt;}
.ls9{letter-spacing:0.016329pt;}
.ls29{letter-spacing:0.017418pt;}
.ls1b{letter-spacing:0.018507pt;}
.ls21{letter-spacing:0.019595pt;}
.ls2b{letter-spacing:0.019958pt;}
.lsa{letter-spacing:0.021772pt;}
.ls2e{letter-spacing:0.027215pt;}
.ls1a{letter-spacing:0.030844pt;}
.ls14{letter-spacing:0.137166pt;}
.ls37{letter-spacing:0.339649pt;}
.ls20{letter-spacing:36.508638pt;}
.ls26{letter-spacing:36.509001pt;}
.ls22{letter-spacing:128.374826pt;}
.ws34{word-spacing:-27.259009pt;}
.ws36{word-spacing:-20.783906pt;}
.wsd{word-spacing:-20.581422pt;}
.ws37{word-spacing:-20.457320pt;}
.wsb{word-spacing:-20.450788pt;}
.wse{word-spacing:-20.444257pt;}
.wsa{word-spacing:-20.437725pt;}
.ws10{word-spacing:-19.339309pt;}
.ws11{word-spacing:-19.326971pt;}
.wsf{word-spacing:-19.308465pt;}
.ws12{word-spacing:-19.217601pt;}
.ws9{word-spacing:-17.042324pt;}
.ws7{word-spacing:-17.036880pt;}
.ws4{word-spacing:-17.031437pt;}
.ws16{word-spacing:-17.025994pt;}
.ws5{word-spacing:-16.405482pt;}
.ws14{word-spacing:-15.946520pt;}
.wsc{word-spacing:-15.926490pt;}
.ws15{word-spacing:-13.629504pt;}
.ws35{word-spacing:-12.741192pt;}
.ws2e{word-spacing:-12.493712pt;}
.ws26{word-spacing:-12.114147pt;}
.ws24{word-spacing:-12.105438pt;}
.ws20{word-spacing:-12.096729pt;}
.ws3a{word-spacing:-11.715350pt;}
.ws3b{word-spacing:-11.707367pt;}
.ws3c{word-spacing:-11.699384pt;}
.ws39{word-spacing:-11.679426pt;}
.ws29{word-spacing:-10.238458pt;}
.ws8{word-spacing:-10.222128pt;}
.ws18{word-spacing:-10.209065pt;}
.ws0{word-spacing:-10.080608pt;}
.ws2a{word-spacing:-10.068633pt;}
.ws6{word-spacing:-9.833491pt;}
.ws2d{word-spacing:-9.572223pt;}
.ws3d{word-spacing:-8.508643pt;}
.ws1{word-spacing:-8.064486pt;}
.ws32{word-spacing:-7.960705pt;}
.ws31{word-spacing:-7.950544pt;}
.ws30{word-spacing:-6.825638pt;}
.ws2c{word-spacing:-6.814752pt;}
.ws2f{word-spacing:-6.812575pt;}
.ws2b{word-spacing:-6.810398pt;}
.ws33{word-spacing:-5.357092pt;}
.ws1e{word-spacing:-3.423705pt;}
.ws1d{word-spacing:-3.412819pt;}
.ws1a{word-spacing:-3.407376pt;}
.ws1c{word-spacing:-3.406287pt;}
.ws1b{word-spacing:-3.403022pt;}
.ws19{word-spacing:-3.401933pt;}
.ws1f{word-spacing:-3.358388pt;}
.ws38{word-spacing:-0.071849pt;}
.ws2{word-spacing:-0.054431pt;}
.ws3{word-spacing:0.000000pt;}
.ws23{word-spacing:55.627581pt;}
.ws22{word-spacing:56.700505pt;}
.ws21{word-spacing:76.095904pt;}
.ws17{word-spacing:163.072915pt;}
.ws25{word-spacing:197.674567pt;}
.ws27{word-spacing:203.611616pt;}
.ws28{word-spacing:206.391222pt;}
.ws13{word-spacing:704.395894pt;}
._b{margin-left:-36.501380pt;}
._12{margin-left:-23.771075pt;}
._6{margin-left:-9.179232pt;}
._9{margin-left:-6.714599pt;}
._7{margin-left:-5.535625pt;}
._13{margin-left:-4.521759pt;}
._1{margin-left:-3.370363pt;}
._0{margin-left:-2.003058pt;}
._2{margin-left:-0.927503pt;}
._3{width:0.912262pt;}
._4{width:2.482050pt;}
._5{width:3.463984pt;}
._f{width:4.485108pt;}
._c{width:34.694274pt;}
._e{width:36.509001pt;}
._d{width:38.322639pt;}
._11{width:137.503143pt;}
._10{width:186.282237pt;}
._a{width:440.818402pt;}
._8{width:809.343802pt;}
.fs10{font-size:10.886186pt;}
.fs12{font-size:16.934068pt;}
.fs13{font-size:19.958007pt;}
.fs6{font-size:21.772371pt;}
.fsf{font-size:25.401100pt;}
.fs4{font-size:29.029828pt;}
.fs8{font-size:32.658557pt;}
.fs2{font-size:36.287285pt;}
.fs7{font-size:39.916014pt;}
.fsc{font-size:40.932058pt;}
.fse{font-size:42.456124pt;}
.fs3{font-size:43.544742pt;}
.fs11{font-size:50.802199pt;}
.fsd{font-size:50.947349pt;}
.fsb{font-size:51.165072pt;}
.fs1{font-size:54.430928pt;}
.fsa{font-size:61.398087pt;}
.fs9{font-size:61.688385pt;}
.fs5{font-size:65.317114pt;}
.fs0{font-size:87.089485pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:0.907325pt;}
.y12d{bottom:3.628660pt;}
.y96{bottom:3.628686pt;}
.yfc{bottom:3.855441pt;}
.y6d{bottom:3.855575pt;}
.y67{bottom:4.082232pt;}
.y6f{bottom:4.082241pt;}
.ya4{bottom:4.082333pt;}
.y182{bottom:4.082340pt;}
.y69{bottom:4.082366pt;}
.yf8{bottom:4.082375pt;}
.y154{bottom:5.443107pt;}
.y17b{bottom:8.164696pt;}
.y8a{bottom:9.071927pt;}
.y178{bottom:9.979024pt;}
.yec{bottom:9.979048pt;}
.y23{bottom:10.432646pt;}
.y17e{bottom:10.508207pt;}
.y180{bottom:11.868981pt;}
.y12c{bottom:13.607663pt;}
.y25{bottom:14.356027pt;}
.y15{bottom:14.356134pt;}
.y183{bottom:14.514971pt;}
.y189{bottom:16.178082pt;}
.y181{bottom:16.329299pt;}
.y185{bottom:16.404882pt;}
.y176{bottom:16.404891pt;}
.y18e{bottom:16.404896pt;}
.y187{bottom:16.404931pt;}
.y18b{bottom:16.631549pt;}
.y122{bottom:16.782878pt;}
.y18d{bottom:16.858545pt;}
.y17{bottom:17.278359pt;}
.yfe{bottom:17.278439pt;}
.y108{bottom:17.369881pt;}
.y2{bottom:17.503372pt;}
.y10f{bottom:17.541241pt;}
.y44{bottom:17.772243pt;}
.y95{bottom:18.143600pt;}
.y170{bottom:19.050824pt;}
.y1a{bottom:19.222157pt;}
.y17a{bottom:20.411655pt;}
.ye7{bottom:20.865202pt;}
.y17f{bottom:20.940802pt;}
.y46{bottom:20.943176pt;}
.y17d{bottom:22.755166pt;}
.ya3{bottom:23.586748pt;}
.y9{bottom:23.891543pt;}
.y22{bottom:26.761925pt;}
.y89{bottom:26.761978pt;}
.y107{bottom:26.999707pt;}
.y43{bottom:28.658428pt;}
.yeb{bottom:29.483464pt;}
.y8e{bottom:30.708335pt;}
.y48{bottom:31.751240pt;}
.y153{bottom:31.751389pt;}
.y45{bottom:31.829361pt;}
.yb{bottom:31.922707pt;}
.y94{bottom:32.658514pt;}
.y121{bottom:32.658565pt;}
.y9a{bottom:32.963399pt;}
.y167{bottom:32.963415pt;}
.y112{bottom:34.324108pt;}
.y165{bottom:35.231308pt;}
.y9b{bottom:35.231354pt;}
.y24{bottom:36.308867pt;}
.ye6{bottom:36.613587pt;}
.y142{bottom:36.695903pt;}
.y53{bottom:36.719467pt;}
.y8{bottom:37.045684pt;}
.y13d{bottom:37.648067pt;}
.y2d{bottom:37.952846pt;}
.ya0{bottom:37.952952pt;}
.y88{bottom:40.369710pt;}
.y7a{bottom:41.276839pt;}
.y5d{bottom:42.183977pt;}
.y109{bottom:44.222455pt;}
.y100{bottom:44.454281pt;}
.y52{bottom:44.905527pt;}
.yd7{bottom:45.300016pt;}
.y16f{bottom:45.359106pt;}
.y19{bottom:45.530439pt;}
.y21{bottom:46.719932pt;}
.y93{bottom:47.173428pt;}
.y49{bottom:48.165107pt;}
.y99{bottom:48.385495pt;}
.yd6{bottom:48.475153pt;}
.y7b{bottom:48.618693pt;}
.y120{bottom:49.441434pt;}
.y7{bottom:50.199825pt;}
.yd5{bottom:51.650291pt;}
.yea{bottom:53.070199pt;}
.y188{bottom:53.320867pt;}
.ydb{bottom:53.327784pt;}
.y13c{bottom:53.977345pt;}
.y2c{bottom:54.282125pt;}
.yd4{bottom:54.825428pt;}
.y37{bottom:56.263576pt;}
.y79{bottom:57.606117pt;}
.yd3{bottom:58.000566pt;}
.y87{bottom:58.059762pt;}
.y92{bottom:60.781160pt;}
.y5c{bottom:62.595575pt;}
.y101{bottom:62.860014pt;}
.y1b{bottom:64.040800pt;}
.y6{bottom:64.261148pt;}
.yd2{bottom:64.350841pt;}
.y20{bottom:66.677939pt;}
.y36{bottom:67.149761pt;}
.y152{bottom:67.457840pt;}
.yd1{bottom:67.525978pt;}
.y11f{bottom:68.945850pt;}
.y51{bottom:68.945854pt;}
.y16{bottom:69.230320pt;}
.y13b{bottom:70.306623pt;}
.y65{bottom:70.760258pt;}
.ye1{bottom:71.407937pt;}
.yda{bottom:72.378371pt;}
.ye9{bottom:72.574615pt;}
.yd0{bottom:73.876253pt;}
.y2b{bottom:74.240132pt;}
.y78{bottom:74.388986pt;}
.y9f{bottom:76.054588pt;}
.ycf{bottom:77.051391pt;}
.y151{bottom:77.339770pt;}
.y91{bottom:78.017621pt;}
.y86{bottom:78.471360pt;}
.ya1{bottom:79.683254pt;}
.y102{bottom:80.812174pt;}
.y113{bottom:82.858334pt;}
.yce{bottom:83.401665pt;}
.ye0{bottom:84.562078pt;}
.y150{bottom:85.050819pt;}
.y11e{bottom:85.275129pt;}
.y14{bottom:86.182354pt;}
.y9e{bottom:86.487121pt;}
.ycd{bottom:86.576803pt;}
.y1f{bottom:87.089537pt;}
.ycc{bottom:89.751940pt;}
.y13a{bottom:90.264630pt;}
.yd9{bottom:91.156444pt;}
.y90{bottom:92.078944pt;}
.y50{bottom:92.532589pt;}
.y85{bottom:92.986274pt;}
.y10a{bottom:93.260823pt;}
.y2a{bottom:94.198139pt;}
.y18c{bottom:94.219680pt;}
.y186{bottom:94.446493pt;}
.y77{bottom:94.800584pt;}
.ycb{bottom:96.102215pt;}
.y3b{bottom:97.708369pt;}
.y103{bottom:99.137214pt;}
.yca{bottom:99.277353pt;}
.y14f{bottom:100.672304pt;}
.y11d{bottom:102.057998pt;}
.yc9{bottom:102.452490pt;}
.y3e{bottom:104.068039pt;}
.yc8{bottom:105.627628pt;}
.y13{bottom:105.686770pt;}
.y5b{bottom:106.140318pt;}
.y139{bottom:106.593909pt;}
.y1e{bottom:107.047543pt;}
.y3a{bottom:107.687372pt;}
.y64{bottom:107.954725pt;}
.y164{bottom:108.259529pt;}
.y14e{bottom:108.383352pt;}
.yc7{bottom:108.802765pt;}
.y9d{bottom:109.620285pt;}
.y84{bottom:110.222734pt;}
.y76{bottom:111.583454pt;}
.yc6{bottom:111.977903pt;}
.y98{bottom:113.249078pt;}
.yd8{bottom:113.835997pt;}
.y3d{bottom:114.047043pt;}
.y29{bottom:114.609737pt;}
.yc5{bottom:115.153040pt;}
.y9c{bottom:115.516988pt;}
.y4f{bottom:116.572916pt;}
.y104{bottom:116.635748pt;}
.y39{bottom:117.666376pt;}
.y115{bottom:119.145615pt;}
.y163{bottom:121.413670pt;}
.yc4{bottom:121.503315pt;}
.y5a{bottom:122.469596pt;}
.y11c{bottom:122.923187pt;}
.y83{bottom:124.284057pt;}
.yc3{bottom:124.678453pt;}
.y15a{bottom:124.737555pt;}
.y3c{bottom:124.933228pt;}
.y12{bottom:125.191186pt;}
.y138{bottom:127.005507pt;}
.y1d{bottom:127.005550pt;}
.y114{bottom:127.310254pt;}
.yc2{bottom:127.853590pt;}
.y75{bottom:128.366323pt;}
.y38{bottom:128.552561pt;}
.yc1{bottom:131.028727pt;}
.y63{bottom:131.087870pt;}
.ye4{bottom:131.412860pt;}
.y174{bottom:132.448603pt;}
.y14a{bottom:134.289353pt;}
.y147{bottom:134.333957pt;}
.ye3{bottom:134.359998pt;}
.y28{bottom:134.567743pt;}
.y97{bottom:134.567761pt;}
.y162{bottom:134.567811pt;}
.y105{bottom:134.587881pt;}
.y14c{bottom:134.688507pt;}
.y148{bottom:134.762241pt;}
.y18a{bottom:136.025733pt;}
.y184{bottom:136.252400pt;}
.y110{bottom:137.289357pt;}
.yc0{bottom:137.379002pt;}
.y82{bottom:139.252563pt;}
.y4e{bottom:140.159651pt;}
.ybf{bottom:140.554140pt;}
.y146{bottom:140.684232pt;}
.ye2{bottom:141.882557pt;}
.y59{bottom:142.881194pt;}
.ye5{bottom:143.354690pt;}
.ybe{bottom:143.729277pt;}
.y11b{bottom:146.056332pt;}
.y137{bottom:146.509923pt;}
.y159{bottom:146.963517pt;}
.y145{bottom:147.034507pt;}
.y1c{bottom:147.417148pt;}
.y161{bottom:147.721952pt;}
.y16c{bottom:148.777881pt;}
.y11{bottom:148.777921pt;}
.ybd{bottom:150.079552pt;}
.y14d{bottom:150.694374pt;}
.y62{bottom:151.045877pt;}
.y149{bottom:151.207974pt;}
.y14b{bottom:151.281841pt;}
.y106{bottom:152.912948pt;}
.ybc{bottom:153.254690pt;}
.y173{bottom:153.313792pt;}
.y27{bottom:154.525750pt;}
.y40{bottom:155.019709pt;}
.y81{bottom:156.035432pt;}
.ybb{bottom:156.429827pt;}
.y42{bottom:157.287576pt;}
.y166{bottom:158.154482pt;}
.y160{bottom:160.876093pt;}
.yba{bottom:162.780102pt;}
.y129{bottom:163.385957pt;}
.y4d{bottom:164.199978pt;}
.y74{bottom:165.560791pt;}
.y3f{bottom:165.905895pt;}
.yb9{bottom:165.955240pt;}
.y58{bottom:166.014339pt;}
.y41{bottom:168.173761pt;}
.y16b{bottom:168.282297pt;}
.y10{bottom:168.282337pt;}
.yb8{bottom:169.130377pt;}
.y158{bottom:169.189479pt;}
.y128{bottom:169.736232pt;}
.y136{bottom:170.096658pt;}
.yff{bottom:170.411614pt;}
.y80{bottom:170.550346pt;}
.y61{bottom:171.457475pt;}
.yb7{bottom:172.305515pt;}
.y172{bottom:172.818208pt;}
.y8d{bottom:173.271796pt;}
.y12a{bottom:173.576632pt;}
.y15f{bottom:174.030234pt;}
.y26{bottom:174.937348pt;}
.y127{bottom:176.086507pt;}
.y179{bottom:178.512000pt;}
.yb6{bottom:178.655789pt;}
.yb5{bottom:181.830927pt;}
.y57{bottom:182.343617pt;}
.y73{bottom:182.343660pt;}
.y135{bottom:186.425937pt;}
.y11a{bottom:186.879528pt;}
.y15e{bottom:187.184375pt;}
.y4c{bottom:187.786713pt;}
.yb4{bottom:188.181202pt;}
.y7f{bottom:188.240398pt;}
.y10c{bottom:189.452281pt;}
.y8c{bottom:189.601074pt;}
.yb3{bottom:191.356339pt;}
.y117{bottom:191.720148pt;}
.y157{bottom:191.869033pt;}
.y16a{bottom:192.322624pt;}
.yf{bottom:192.322664pt;}
.y32{bottom:193.189239pt;}
.yb2{bottom:194.531477pt;}
.y60{bottom:195.044210pt;}
.y141{bottom:195.047103pt;}
.y171{bottom:196.404943pt;}
.y34{bottom:196.817976pt;}
.yde{bottom:197.494596pt;}
.yb1{bottom:197.706614pt;}
.y126{bottom:198.524170pt;}
.y116{bottom:199.884788pt;}
.yb0{bottom:200.881752pt;}
.y72{bottom:202.755258pt;}
.y31{bottom:203.168243pt;}
.y56{bottom:203.208806pt;}
.yaf{bottom:204.056889pt;}
.ydf{bottom:205.283384pt;}
.y8b{bottom:206.383943pt;}
.y10d{bottom:207.595881pt;}
.y33{bottom:207.704161pt;}
.y140{bottom:208.854703pt;}
.y7e{bottom:209.105587pt;}
.y119{bottom:210.012672pt;}
.yae{bottom:210.407164pt;}
.y111{bottom:210.771090pt;}
.y4b{bottom:211.827040pt;}
.ye{bottom:211.827080pt;}
.ydd{bottom:212.463101pt;}
.yad{bottom:213.582302pt;}
.y30{bottom:214.054428pt;}
.y156{bottom:214.094995pt;}
.y5f{bottom:215.002217pt;}
.y177{bottom:215.706533pt;}
.y169{bottom:215.909359pt;}
.y125{bottom:215.972303pt;}
.yac{bottom:216.757439pt;}
.y71{bottom:219.538128pt;}
.yab{bottom:219.932577pt;}
.y7d{bottom:222.713319pt;}
.y10e{bottom:225.739614pt;}
.yaa{bottom:226.282851pt;}
.y55{bottom:226.341950pt;}
.ydc{bottom:227.885197pt;}
.ya9{bottom:229.457989pt;}
.ya8{bottom:232.633126pt;}
.y124{bottom:233.793370pt;}
.y2e{bottom:234.357739pt;}
.y13f{bottom:235.362170pt;}
.y4a{bottom:235.413775pt;}
.yd{bottom:235.413815pt;}
.y155{bottom:236.320957pt;}
.y70{bottom:236.320997pt;}
.ya7{bottom:238.983401pt;}
.y168{bottom:239.800815pt;}
.y7c{bottom:240.403371pt;}
.y123{bottom:242.340970pt;}
.y10b{bottom:243.429614pt;}
.y175{bottom:244.282800pt;}
.ya6{bottom:245.333676pt;}
.y54{bottom:246.753548pt;}
.y2f{bottom:247.935664pt;}
.ya5{bottom:248.508814pt;}
.y35{bottom:248.842846pt;}
.y15d{bottom:248.872713pt;}
.y15b{bottom:251.594348pt;}
.y13e{bottom:253.452303pt;}
.y15c{bottom:259.305308pt;}
.y5{bottom:272.005896pt;}
.y4{bottom:285.613628pt;}
.y17c{bottom:286.088667pt;}
.y18{bottom:301.268933pt;}
.y47{bottom:301.354667pt;}
.y3{bottom:409.159200pt;}
.y118{bottom:409.569867pt;}
.yc{bottom:421.015467pt;}
.ya2{bottom:421.257333pt;}
.y6b{bottom:423.071733pt;}
.y5e{bottom:426.458533pt;}
.y131{bottom:436.656800pt;}
.y6e{bottom:439.174267pt;}
.y6a{bottom:439.401067pt;}
.y16d{bottom:440.308267pt;}
.yf4{bottom:440.674800pt;}
.yfd{bottom:442.080667pt;}
.y134{bottom:452.759333pt;}
.y130{bottom:452.986133pt;}
.y6c{bottom:455.503467pt;}
.y68{bottom:455.730267pt;}
.yfb{bottom:456.777200pt;}
.yf3{bottom:457.004000pt;}
.y133{bottom:469.088533pt;}
.y12f{bottom:469.315467pt;}
.y66{bottom:472.966800pt;}
.yfa{bottom:473.106533pt;}
.yf2{bottom:473.333333pt;}
.y132{bottom:485.417867pt;}
.y12e{bottom:485.644667pt;}
.yf9{bottom:489.435867pt;}
.yf1{bottom:489.662533pt;}
.y12b{bottom:502.881200pt;}
.yf7{bottom:505.765067pt;}
.yf0{bottom:505.991867pt;}
.yf6{bottom:522.094400pt;}
.yef{bottom:522.321200pt;}
.yf5{bottom:538.423600pt;}
.yee{bottom:538.650400pt;}
.yed{bottom:555.886933pt;}
.y8f{bottom:567.873200pt;}
.y143{bottom:578.871333pt;}
.ye8{bottom:583.748800pt;}
.ya{bottom:674.119333pt;}
.y16e{bottom:674.204933pt;}
.y1{bottom:703.577733pt;}
.h36{height:7.257457pt;}
.h26{height:8.324105pt;}
.h33{height:15.260859pt;}
.h17{height:15.875693pt;}
.h19{height:16.102480pt;}
.h1a{height:16.329280pt;}
.hd{height:16.648210pt;}
.h24{height:19.422911pt;}
.h32{height:22.197613pt;}
.h34{height:23.586733pt;}
.h35{height:24.812849pt;}
.h11{height:24.972314pt;}
.h10{height:27.747016pt;}
.h3c{height:28.122653pt;}
.h2f{height:29.430264pt;}
.h18{height:30.521718pt;}
.h1f{height:31.298634pt;}
.h2a{height:31.701763pt;}
.h8{height:32.084481pt;}
.h23{height:32.464009pt;}
.h6{height:32.566428pt;}
.h20{height:33.296419pt;}
.h3d{height:36.740893pt;}
.h29{height:36.985390pt;}
.h2d{height:38.555253pt;}
.h22{height:38.956811pt;}
.h1e{height:39.123293pt;}
.h28{height:39.627204pt;}
.h12{height:40.132178pt;}
.h40{height:40.672013pt;}
.h5{height:40.708035pt;}
.h3e{height:40.898800pt;}
.h41{height:41.125600pt;}
.h25{height:41.276800pt;}
.h3b{height:41.352387pt;}
.h3f{height:41.352400pt;}
.hf{height:41.620524pt;}
.h42{height:41.805987pt;}
.h37{height:43.534111pt;}
.h1d{height:46.947951pt;}
.h2b{height:46.970635pt;}
.h1b{height:47.169927pt;}
.h7{height:48.126721pt;}
.h27{height:48.158614pt;}
.hc{height:49.944629pt;}
.h31{height:50.373434pt;}
.h2{height:51.811773pt;}
.h38{height:54.884533pt;}
.h3a{height:55.079423pt;}
.h30{height:59.038332pt;}
.h3{height:64.168961pt;}
.h2c{height:65.272320pt;}
.ha{height:66.592838pt;}
.h13{height:73.734983pt;}
.h14{height:81.192667pt;}
.h39{height:81.192800pt;}
.h9{height:81.364133pt;}
.h2e{height:90.264667pt;}
.h21{height:106.140267pt;}
.he{height:165.107200pt;}
.h15{height:253.103827pt;}
.hb{height:253.103867pt;}
.h1c{height:257.186240pt;}
.h16{height:264.443600pt;}
.h4{height:348.232667pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w3f{width:30.617400pt;}
.w35{width:30.844187pt;}
.w2c{width:31.070987pt;}
.w38{width:36.459747pt;}
.w36{width:36.646373pt;}
.w2f{width:36.686547pt;}
.w37{width:36.828293pt;}
.w2d{width:36.873173pt;}
.w42{width:36.913333pt;}
.w2e{width:37.055080pt;}
.w39{width:37.073987pt;}
.w40{width:37.099973pt;}
.w41{width:37.281880pt;}
.w30{width:37.300787pt;}
.w3b{width:37.485067pt;}
.w43{width:37.527573pt;}
.w32{width:37.938667pt;}
.w3c{width:39.190760pt;}
.w33{width:39.417560pt;}
.w44{width:39.644360pt;}
.w3d{width:40.428653pt;}
.w34{width:40.655440pt;}
.w3a{width:40.745240pt;}
.w31{width:41.198827pt;}
.w1b{width:42.049307pt;}
.w1c{width:42.181587pt;}
.w21{width:42.502907pt;}
.w20{width:42.536000pt;}
.w22{width:42.635187pt;}
.w1a{width:42.762787pt;}
.w1e{width:48.253053pt;}
.w24{width:48.479853pt;}
.w1d{width:52.637840pt;}
.w23{width:53.091440pt;}
.w1f{width:71.738267pt;}
.w3e{width:79.669013pt;}
.w2b{width:80.122640pt;}
.we{width:81.527400pt;}
.w29{width:117.026533pt;}
.w16{width:142.750400pt;}
.w14{width:143.204133pt;}
.wd{width:157.618533pt;}
.w10{width:157.845467pt;}
.wf{width:157.972933pt;}
.wc{width:158.199733pt;}
.w2a{width:219.538147pt;}
.w26{width:221.352400pt;}
.w25{width:221.806000pt;}
.w7{width:228.428533pt;}
.w17{width:231.008667pt;}
.w15{width:231.462133pt;}
.w19{width:258.093413pt;}
.w6{width:420.297987pt;}
.w18{width:420.371467pt;}
.w2{width:420.589600pt;}
.w5{width:440.890533pt;}
.wa{width:440.890547pt;}
.w8{width:441.344080pt;}
.w4{width:441.344133pt;}
.w12{width:441.344147pt;}
.w28{width:444.972933pt;}
.w11{width:445.880000pt;}
.w9{width:445.880080pt;}
.wb{width:449.055067pt;}
.w27{width:451.776667pt;}
.w13{width:452.059027pt;}
.w3{width:464.477333pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x82{left:-54.718813pt;}
.x85{left:-20.252582pt;}
.x80{left:-16.780280pt;}
.x7b{left:-14.473173pt;}
.x78{left:-10.176805pt;}
.x0{left:0.000000pt;}
.x9{left:1.360773pt;}
.x24{left:2.716965pt;}
.x5f{left:4.411301pt;}
.x47{left:6.190842pt;}
.x5c{left:7.685357pt;}
.x16{left:9.521786pt;}
.x86{left:10.980827pt;}
.x6{left:12.246951pt;}
.x5b{left:13.141005pt;}
.x60{left:14.966759pt;}
.xb{left:16.143233pt;}
.x10{left:17.508718pt;}
.x7{left:19.050817pt;}
.x41{left:20.591184pt;}
.x1d{left:23.212254pt;}
.x62{left:24.379055pt;}
.x48{left:25.941767pt;}
.x2c{left:27.298653pt;}
.xf{left:29.827435pt;}
.x1a{left:30.921045pt;}
.x4b{left:32.221748pt;}
.x61{left:35.274099pt;}
.x1b{left:36.586062pt;}
.x4{left:38.923781pt;}
.x2a{left:43.283007pt;}
.x44{left:46.221383pt;}
.x45{left:47.110603pt;}
.x1f{left:49.756766pt;}
.x3f{left:51.655467pt;}
.x46{left:54.504727pt;}
.x2{left:56.482699pt;}
.x14{left:58.513307pt;}
.x3{left:60.419147pt;}
.x7d{left:61.719320pt;}
.x43{left:64.518068pt;}
.x28{left:66.278863pt;}
.x15{left:67.928587pt;}
.x54{left:69.662320pt;}
.x26{left:71.726355pt;}
.x21{left:72.938253pt;}
.x27{left:76.198945pt;}
.x19{left:77.495612pt;}
.x73{left:79.160544pt;}
.x1{left:82.978227pt;}
.x70{left:85.820894pt;}
.x25{left:91.750573pt;}
.x2b{left:93.942907pt;}
.x50{left:96.161307pt;}
.x35{left:99.790027pt;}
.x2f{left:103.192689pt;}
.x40{left:104.859747pt;}
.x33{left:107.954693pt;}
.x3c{left:113.819862pt;}
.x2d{left:117.480027pt;}
.x30{left:124.232184pt;}
.x74{left:126.218803pt;}
.x18{left:127.261937pt;}
.x3b{left:136.338070pt;}
.x72{left:137.891627pt;}
.x34{left:138.798827pt;}
.x4a{left:140.703532pt;}
.xe{left:144.328789pt;}
.x4d{left:146.442607pt;}
.x5{left:148.346412pt;}
.x3a{left:156.019680pt;}
.x22{left:174.185200pt;}
.x38{left:186.122293pt;}
.x39{left:187.936560pt;}
.x36{left:207.744693pt;}
.x3d{left:213.323782pt;}
.x17{left:220.819440pt;}
.x13{left:237.228240pt;}
.x37{left:239.496027pt;}
.x4c{left:241.956218pt;}
.x51{left:245.846373pt;}
.x42{left:248.517333pt;}
.x12{left:249.546957pt;}
.x63{left:250.632113pt;}
.x11{left:252.010700pt;}
.x65{left:256.389980pt;}
.x6a{left:258.216064pt;}
.x64{left:262.879047pt;}
.x31{left:272.375489pt;}
.x1e{left:284.122640pt;}
.x55{left:285.961767pt;}
.x32{left:288.780512pt;}
.x2e{left:292.566293pt;}
.x5a{left:293.876800pt;}
.x57{left:297.976833pt;}
.x6b{left:300.040809pt;}
.x67{left:301.596166pt;}
.x56{left:303.218300pt;}
.x4e{left:315.771190pt;}
.x52{left:319.781707pt;}
.x23{left:332.838533pt;}
.x66{left:334.092913pt;}
.x3e{left:337.583085pt;}
.x1c{left:355.678240pt;}
.x6c{left:361.699444pt;}
.x5d{left:379.596133pt;}
.x71{left:383.738107pt;}
.x20{left:387.772240pt;}
.x4f{left:389.853596pt;}
.x53{left:394.624240pt;}
.x6d{left:408.547144pt;}
.x68{left:410.860751pt;}
.x6f{left:412.494339pt;}
.x69{left:414.628129pt;}
.x6e{left:417.229150pt;}
.x58{left:422.067538pt;}
.x59{left:425.834916pt;}
.x29{left:457.173831pt;}
.xd{left:460.145164pt;}
.x5e{left:475.322667pt;}
.xc{left:597.678933pt;}
.x75{left:600.336800pt;}
.x8{left:605.188400pt;}
.xa{left:610.198133pt;}
.x49{left:619.628533pt;}
.x76{left:680.912933pt;}
.x77{left:711.983867pt;}
.x79{left:749.310667pt;}
.x7a{left:786.365867pt;}
.x7c{left:823.506000pt;}
.x7e{left:860.806667pt;}
.x7f{left:902.005600pt;}
.x81{left:939.944133pt;}
.x83{left:979.815333pt;}
.x84{left:1019.232800pt;}
}




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