
    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_5591be482c6c2af7847b01d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_f554a2a8dd8887a2e5e6c552.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_03bd85bf7d177ab8920cd002.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_80c96adb6b03c3ece5771463.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_09c4071872169cbc02d8082d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_f4940c828a1ecee1398f0e3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ffe6d35564c90e02e1e86a0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_1f8c8a3e928d8ad6f44b2351.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ba3d2f98186580d1d9234f4e.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_2fe7fe0884cafca77774cf10.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.213379;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_12de53ffc752a39ca60cb8e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_0215022d121bb1b9f9780035.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_6bf0f1cfe597d4aec2c13890.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_edbfeaaa903c0d5a4a069756.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3dfc2c2eeadff1fedf373f94.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;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_1c11e16539f06cf16ccfdde0.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e1152d59ccdc3b84bc19db9c.woff2')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_63d7d1c256c368fdc7a4c815.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m0{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);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m5{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);}
.m1{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);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018600px;}
.ls1{letter-spacing:0.159271px;}
.ls8{letter-spacing:0.166140px;}
.ls2{letter-spacing:0.233352px;}
.ls6{letter-spacing:0.277281px;}
.lsb{letter-spacing:13.645315px;}
.lsa{letter-spacing:46.036302px;}
.ls5{letter-spacing:46.065102px;}
.ls9{letter-spacing:55.431098px;}
.ls7{letter-spacing:64.076494px;}
.ls0{letter-spacing:1699.705472px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(15,17,21),0 0.015em rgb(15,17,21),0.015em 0 rgb(15,17,21),0 -0.015em  rgb(15,17,21);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(15,17,21);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.418587px;}
.wsa{word-spacing:-19.007992px;}
.ws7{word-spacing:-16.433993px;}
.ws1{word-spacing:-15.245346px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-13.505755px;}
.ws8{word-spacing:-13.410715px;}
.ws4{word-spacing:-13.265995px;}
.ws5{word-spacing:-2.013612px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-3.787900px;}
._4{margin-left:-2.740633px;}
._1{margin-left:-1.570625px;}
._0{width:1.003097px;}
._8{width:2.026054px;}
._9{width:3.403509px;}
._2{width:4.899320px;}
._3{width:6.629986px;}
._10{width:7.697349px;}
._13{width:8.832899px;}
._f{width:10.527098px;}
._a{width:12.264190px;}
._d{width:14.338781px;}
._34{width:15.374618px;}
._e{width:16.538861px;}
._31{width:18.589831px;}
._12{width:20.139450px;}
._b{width:21.669306px;}
._30{width:22.723698px;}
._6{width:23.752374px;}
._7{width:24.879244px;}
._32{width:28.954116px;}
._33{width:30.428554px;}
._20{width:32.243880px;}
._11{width:37.689613px;}
._19{width:39.448047px;}
._27{width:41.609290px;}
._1f{width:43.770534px;}
._14{width:54.724215px;}
._2f{width:63.484666px;}
._2b{width:64.662460px;}
._15{width:69.116349px;}
._1d{width:70.202459px;}
._25{width:77.629574px;}
._28{width:84.095426px;}
._2d{width:89.876942px;}
._26{width:99.962928px;}
._2c{width:108.607763px;}
._24{width:122.295591px;}
._2e{width:125.177203px;}
._22{width:135.574359px;}
._18{width:137.268642px;}
._1b{width:171.283681px;}
._16{width:180.045572px;}
._17{width:181.505522px;}
._1e{width:207.494677px;}
._23{width:284.164959px;}
._21{width:321.129560px;}
._1c{width:322.570020px;}
._29{width:326.892783px;}
._2a{width:359.835096px;}
._1a{width:422.521327px;}
._c{width:559.925877px;}
.fcc{color:transparent;}
.fcb{color:rgb(0,101,204);}
.fc8{color:rgb(44,62,80);}
.fca{color:rgb(70,120,134);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(83,129,53);}
.fc5{color:rgb(15,17,21);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc9{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs8{font-size:69.119972px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs7{font-size:89.999964px;}
.fs6{font-size:99.359960px;}
.y6{bottom:-8.639991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.yd2{bottom:2.518948px;}
.yde{bottom:2.519008px;}
.ye0{bottom:2.519018px;}
.y8c{bottom:2.519023px;}
.ye4{bottom:2.519037px;}
.ye8{bottom:2.519057px;}
.yea{bottom:2.519067px;}
.yec{bottom:2.519077px;}
.yf2{bottom:2.519107px;}
.yf4{bottom:2.519117px;}
.yf6{bottom:2.519126px;}
.yfa{bottom:2.519146px;}
.yfc{bottom:2.519156px;}
.yfe{bottom:2.519166px;}
.yb0{bottom:2.519201px;}
.yb2{bottom:2.519211px;}
.yb4{bottom:2.519221px;}
.y10a{bottom:2.519225px;}
.y10c{bottom:2.519235px;}
.y110{bottom:2.519255px;}
.yc0{bottom:2.519280px;}
.yc2{bottom:2.519290px;}
.yc6{bottom:2.519310px;}
.y11c{bottom:2.519315px;}
.yca{bottom:2.519690px;}
.ycc{bottom:2.519700px;}
.y8a{bottom:3.059012px;}
.yd4{bottom:3.238958px;}
.yd6{bottom:3.238968px;}
.yd8{bottom:3.238978px;}
.yda{bottom:3.238988px;}
.ydc{bottom:3.238997px;}
.ye2{bottom:3.239027px;}
.y8e{bottom:3.239032px;}
.y90{bottom:3.239042px;}
.ye6{bottom:3.239047px;}
.y92{bottom:3.239052px;}
.y94{bottom:3.239062px;}
.y96{bottom:3.239072px;}
.y98{bottom:3.239082px;}
.yee{bottom:3.239087px;}
.y9a{bottom:3.239092px;}
.yf0{bottom:3.239096px;}
.y9c{bottom:3.239102px;}
.y9e{bottom:3.239112px;}
.ya0{bottom:3.239122px;}
.ya2{bottom:3.239131px;}
.yf8{bottom:3.239136px;}
.ya4{bottom:3.239141px;}
.ya6{bottom:3.239151px;}
.ya8{bottom:3.239161px;}
.yaa{bottom:3.239171px;}
.y100{bottom:3.239176px;}
.yac{bottom:3.239181px;}
.y102{bottom:3.239186px;}
.yae{bottom:3.239191px;}
.y104{bottom:3.239195px;}
.y106{bottom:3.239205px;}
.y108{bottom:3.239215px;}
.yb6{bottom:3.239230px;}
.yb8{bottom:3.239240px;}
.y10e{bottom:3.239245px;}
.yba{bottom:3.239250px;}
.ybc{bottom:3.239260px;}
.y112{bottom:3.239265px;}
.ybe{bottom:3.239270px;}
.y114{bottom:3.239275px;}
.y116{bottom:3.239285px;}
.y118{bottom:3.239294px;}
.yc4{bottom:3.239300px;}
.y11a{bottom:3.239304px;}
.yc8{bottom:3.239320px;}
.yce{bottom:3.240009px;}
.yd0{bottom:3.240019px;}
.y19{bottom:3.959080px;}
.y153{bottom:4.319081px;}
.y15b{bottom:4.319160px;}
.y171{bottom:4.319307px;}
.y148{bottom:4.499014px;}
.y14b{bottom:4.499025px;}
.y150{bottom:4.499059px;}
.y15f{bottom:4.499172px;}
.y166{bottom:4.499183px;}
.y168{bottom:4.499194px;}
.y173{bottom:4.499251px;}
.y175{bottom:4.499262px;}
.y16f{bottom:4.499296px;}
.y15{bottom:5.579080px;}
.ya{bottom:32.880287px;}
.y8{bottom:55.560278px;}
.y9{bottom:56.100278px;}
.ycf{bottom:98.940240px;}
.y141{bottom:100.560260px;}
.y1c9{bottom:112.260255px;}
.y18b{bottom:118.200253px;}
.y3c{bottom:118.919952px;}
.y67{bottom:123.240251px;}
.ycd{bottom:123.600240px;}
.y177{bottom:124.140250px;}
.y11e{bottom:124.860250px;}
.y85{bottom:125.760250px;}
.y1c8{bottom:132.240247px;}
.y1aa{bottom:133.680247px;}
.y140{bottom:138.540245px;}
.y66{bottom:143.220243px;}
.y84{bottom:145.740242px;}
.ycb{bottom:148.440240px;}
.y1c7{bottom:152.219939px;}
.y1a9{bottom:153.659939px;}
.y18a{bottom:155.999938px;}
.y176{bottom:163.919934px;}
.y3b{bottom:171.119932px;}
.y1c6{bottom:172.199931px;}
.yc9{bottom:173.100240px;}
.y1a8{bottom:173.639931px;}
.y189{bottom:175.979930px;}
.y13f{bottom:176.519929px;}
.y11d{bottom:180.119928px;}
.y83{bottom:185.339926px;}
.y1c5{bottom:192.179923px;}
.y188{bottom:195.959922px;}
.yc7{bottom:197.940600px;}
.y65{bottom:200.999920px;}
.y11b{bottom:211.080600px;}
.y1c4{bottom:211.979915px;}
.y1a7{bottom:214.139914px;}
.y187{bottom:215.939914px;}
.y13e{bottom:216.119914px;}
.yc5{bottom:222.600600px;}
.y170{bottom:228.540600px;}
.y1c3{bottom:231.959907px;}
.y119{bottom:235.740600px;}
.y186{bottom:235.919906px;}
.yc3{bottom:247.440600px;}
.y3a{bottom:249.599900px;}
.y1c2{bottom:251.939899px;}
.y82{bottom:253.379899px;}
.y23{bottom:255.899898px;}
.y16e{bottom:256.440600px;}
.y117{bottom:260.580600px;}
.y16d{bottom:260.939896px;}
.y64{bottom:267.599893px;}
.y1c1{bottom:271.919891px;}
.yc1{bottom:272.100600px;}
.y81{bottom:273.359891px;}
.y185{bottom:275.519890px;}
.y45{bottom:282.539887px;}
.y1a6{bottom:283.619887px;}
.y13d{bottom:284.159886px;}
.y115{bottom:285.240600px;}
.y16c{bottom:289.019884px;}
.y1c0{bottom:291.899883px;}
.ybf{bottom:296.940600px;}
.y1a5{bottom:303.599879px;}
.y13c{bottom:304.139878px;}
.y44{bottom:309.359876px;}
.y113{bottom:310.080600px;}
.y80{bottom:313.139875px;}
.y16b{bottom:317.279873px;}
.ybd{bottom:321.600600px;}
.y1a4{bottom:323.579871px;}
.y13b{bottom:324.119870px;}
.y43{bottom:331.319867px;}
.y1bf{bottom:332.399867px;}
.y111{bottom:334.740600px;}
.y174{bottom:340.860600px;}
.y1a3{bottom:343.379863px;}
.y184{bottom:343.559863px;}
.y13a{bottom:344.099862px;}
.y16a{bottom:345.359862px;}
.ybb{bottom:346.440600px;}
.y42{bottom:350.759860px;}
.y63{bottom:351.299859px;}
.y10f{bottom:359.580600px;}
.y1a2{bottom:363.359855px;}
.y183{bottom:363.539855px;}
.y172{bottom:368.940600px;}
.yb9{bottom:371.100600px;}
.y62{bottom:371.279851px;}
.y139{bottom:372.899851px;}
.y169{bottom:373.439851px;}
.y7f{bottom:380.999848px;}
.y182{bottom:383.519847px;}
.y10d{bottom:384.240600px;}
.y61{bottom:391.079844px;}
.y138{bottom:392.879843px;}
.y22{bottom:395.219842px;}
.yb7{bottom:395.940600px;}
.y1be{bottom:397.919841px;}
.y39{bottom:400.619840px;}
.y7e{bottom:400.979840px;}
.y164{bottom:402.059839px;}
.y1a1{bottom:403.139839px;}
.y181{bottom:403.499839px;}
.y10b{bottom:409.080600px;}
.y60{bottom:411.059836px;}
.y137{bottom:412.859835px;}
.y38{bottom:416.639833px;}
.yb5{bottom:420.600600px;}
.y7d{bottom:420.959832px;}
.y163{bottom:430.139828px;}
.y109{bottom:433.740600px;}
.y37{bottom:441.479823px;}
.y180{bottom:443.099823px;}
.yb3{bottom:445.440600px;}
.y5f{bottom:449.039820px;}
.y136{bottom:450.839820px;}
.y1bd{bottom:454.979818px;}
.y36{bottom:457.499817px;}
.y162{bottom:458.219817px;}
.y107{bottom:458.580600px;}
.y1e1{bottom:458.939816px;}
.y7c{bottom:460.739816px;}
.yb1{bottom:470.100600px;}
.y1a0{bottom:471.179812px;}
.y35{bottom:473.519811px;}
.y1bc{bottom:474.959810px;}
.y1e0{bottom:476.939809px;}
.y105{bottom:483.240600px;}
.y161{bottom:486.299805px;}
.y5e{bottom:488.819804px;}
.y34{bottom:489.539804px;}
.y135{bottom:490.439804px;}
.y19f{bottom:490.979804px;}
.y1bb{bottom:494.939802px;}
.yaf{bottom:494.940600px;}
.y1df{bottom:496.919801px;}
.y103{bottom:508.080600px;}
.y167{bottom:510.060600px;}
.y19e{bottom:510.959796px;}
.y21{bottom:512.219795px;}
.y17f{bottom:513.659795px;}
.y33{bottom:514.379794px;}
.y160{bottom:514.559794px;}
.y1ba{bottom:514.919794px;}
.y1de{bottom:516.899793px;}
.yad{bottom:519.600600px;}
.y7b{bottom:528.779788px;}
.y32{bottom:530.399788px;}
.y19d{bottom:530.939788px;}
.y101{bottom:532.740600px;}
.y1dd{bottom:536.879785px;}
.y165{bottom:538.140600px;}
.y15d{bottom:542.639783px;}
.yab{bottom:544.440600px;}
.y31{bottom:546.419781px;}
.y7a{bottom:548.579781px;}
.y19c{bottom:550.919780px;}
.y1b9{bottom:552.899779px;}
.y5d{bottom:556.679777px;}
.yff{bottom:557.580600px;}
.y134{bottom:558.479777px;}
.y30{bottom:562.259775px;}
.y15e{bottom:566.220600px;}
.y20{bottom:568.019773px;}
.y79{bottom:568.559773px;}
.ya9{bottom:569.100600px;}
.y15c{bottom:570.719772px;}
.y19b{bottom:570.899772px;}
.y1b8{bottom:572.879771px;}
.y5c{bottom:576.659769px;}
.y2f{bottom:578.279769px;}
.y133{bottom:578.459769px;}
.y17e{bottom:579.359768px;}
.yfd{bottom:582.240600px;}
.y1f{bottom:586.379765px;}
.y78{bottom:588.539765px;}
.y19a{bottom:590.879764px;}
.y1b7{bottom:592.679763px;}
.ya7{bottom:593.940600px;}
.y15a{bottom:594.840600px;}
.y5b{bottom:596.639761px;}
.y132{bottom:598.439761px;}
.y2e{bottom:603.119759px;}
.y1e{bottom:603.659759px;}
.yfb{bottom:607.080600px;}
.y199{bottom:610.859756px;}
.y5a{bottom:616.619753px;}
.y131{bottom:618.419753px;}
.ya5{bottom:618.600600px;}
.y2d{bottom:619.139752px;}
.y77{bottom:626.519749px;}
.y159{bottom:627.419749px;}
.y198{bottom:630.659748px;}
.yf9{bottom:631.740600px;}
.y2c{bottom:635.159746px;}
.y17d{bottom:636.419745px;}
.y1dc{bottom:636.599745px;}
.ya3{bottom:643.440600px;}
.y197{bottom:650.639740px;}
.y158{bottom:655.499738px;}
.y59{bottom:656.219738px;}
.y130{bottom:656.399737px;}
.y1db{bottom:656.579737px;}
.yf7{bottom:656.580600px;}
.y1d{bottom:658.199737px;}
.y2b{bottom:659.999736px;}
.y76{bottom:664.499734px;}
.ya1{bottom:668.100600px;}
.y196{bottom:670.619732px;}
.y2a{bottom:676.019730px;}
.y12f{bottom:676.379729px;}
.yf5{bottom:681.240600px;}
.y157{bottom:683.579727px;}
.y75{bottom:684.479726px;}
.y195{bottom:690.599724px;}
.y29{bottom:692.039723px;}
.y9f{bottom:692.940600px;}
.y12e{bottom:696.359721px;}
.y74{bottom:704.459718px;}
.yf3{bottom:706.080600px;}
.y1b6{bottom:708.599717px;}
.y156{bottom:711.659715px;}
.y1c{bottom:712.919715px;}
.y12d{bottom:716.159714px;}
.y1da{bottom:716.339713px;}
.y28{bottom:717.059713px;}
.y9d{bottom:717.600600px;}
.y58{bottom:724.259710px;}
.y194{bottom:728.579709px;}
.yf1{bottom:730.740600px;}
.y1b{bottom:731.459707px;}
.y27{bottom:733.079707px;}
.y1d9{bottom:736.319705px;}
.y155{bottom:739.919704px;}
.y9b{bottom:742.440600px;}
.y57{bottom:744.239702px;}
.y1b5{bottom:748.559701px;}
.y26{bottom:748.919700px;}
.y17c{bottom:754.139698px;}
.yef{bottom:755.580600px;}
.y12c{bottom:755.939698px;}
.y1d8{bottom:756.299697px;}
.y24{bottom:763.679695px;}
.y73{bottom:764.039694px;}
.y56{bottom:764.219694px;}
.y25{bottom:764.939694px;}
.y1a{bottom:765.119694px;}
.y99{bottom:767.100600px;}
.y154{bottom:767.999693px;}
.y193{bottom:768.179693px;}
.y1d7{bottom:776.279689px;}
.yed{bottom:780.240600px;}
.y55{bottom:784.199686px;}
.y1b4{bottom:789.779684px;}
.y97{bottom:791.940600px;}
.y152{bottom:792.120600px;}
.y17b{bottom:793.919682px;}
.y14{bottom:795.000600px;}
.y1d6{bottom:796.079682px;}
.y18{bottom:796.620600px;}
.y16{bottom:800.399680px;}
.y17{bottom:800.579680px;}
.y54{bottom:804.179678px;}
.yeb{bottom:805.080600px;}
.y1d5{bottom:816.059674px;}
.y95{bottom:816.600600px;}
.y13{bottom:819.119672px;}
.y12b{bottom:823.979670px;}
.y151{bottom:824.519670px;}
.ye9{bottom:829.740600px;}
.y72{bottom:832.079667px;}
.y1d4{bottom:836.039666px;}
.y192{bottom:836.219666px;}
.y12{bottom:838.199665px;}
.y93{bottom:841.440600px;}
.y53{bottom:843.779662px;}
.y12a{bottom:843.959662px;}
.y14f{bottom:848.280600px;}
.y71{bottom:852.059659px;}
.y14e{bottom:852.779659px;}
.ye7{bottom:854.580600px;}
.y1d3{bottom:856.019658px;}
.y191{bottom:856.199658px;}
.y11{bottom:856.739657px;}
.y1b3{bottom:859.979656px;}
.y17a{bottom:861.959655px;}
.y129{bottom:863.759654px;}
.y91{bottom:866.100600px;}
.y10{bottom:874.019650px;}
.y1d2{bottom:875.999650px;}
.y190{bottom:876.179650px;}
.ye5{bottom:879.240600px;}
.y1b2{bottom:879.959648px;}
.y14d{bottom:880.859648px;}
.y179{bottom:881.759647px;}
.y70{bottom:889.859644px;}
.y8f{bottom:890.940600px;}
.yf{bottom:891.299643px;}
.y1d1{bottom:895.979642px;}
.y18f{bottom:896.159642px;}
.y1b1{bottom:899.759640px;}
.y128{bottom:901.739639px;}
.ye3{bottom:904.080600px;}
.ye{bottom:908.399637px;}
.y14c{bottom:908.939636px;}
.y6f{bottom:909.839636px;}
.y52{bottom:911.819635px;}
.y8d{bottom:915.600600px;}
.y1d0{bottom:915.959634px;}
.y1b0{bottom:919.739632px;}
.y127{bottom:921.719631px;}
.yd{bottom:926.399629px;}
.ye1{bottom:928.740600px;}
.y51{bottom:931.799627px;}
.y14a{bottom:932.520600px;}
.y18e{bottom:935.759626px;}
.y149{bottom:937.019625px;}
.y8b{bottom:940.440600px;}
.y126{bottom:941.699623px;}
.y6e{bottom:947.819621px;}
.y50{bottom:951.779619px;}
.ydf{bottom:953.580600px;}
.y1cf{bottom:955.739618px;}
.y1af{bottom:957.719617px;}
.y147{bottom:960.780600px;}
.y146{bottom:965.279614px;}
.yc{bottom:965.639614px;}
.y89{bottom:965.820600px;}
.y6d{bottom:967.799613px;}
.y4f{bottom:971.759611px;}
.y1ce{bottom:975.719610px;}
.y1ae{bottom:977.699609px;}
.ydd{bottom:978.240600px;}
.y125{bottom:979.679608px;}
.y4e{bottom:991.559603px;}
.y145{bottom:993.359603px;}
.y1cd{bottom:995.699602px;}
.y1ad{bottom:997.679601px;}
.y124{bottom:999.659600px;}
.ydb{bottom:1003.080600px;}
.y18d{bottom:1003.799598px;}
.yb{bottom:1003.979598px;}
.y6c{bottom:1005.779598px;}
.y4d{bottom:1011.539595px;}
.y88{bottom:1012.439595px;}
.y1cc{bottom:1015.679594px;}
.y178{bottom:1017.659593px;}
.y144{bottom:1023.779590px;}
.y6b{bottom:1025.759590px;}
.yd9{bottom:1027.740600px;}
.y1cb{bottom:1035.659586px;}
.y123{bottom:1037.459585px;}
.y18c{bottom:1043.759582px;}
.y40{bottom:1047.539581px;}
.y4c{bottom:1051.319579px;}
.y143{bottom:1051.859579px;}
.y87{bottom:1052.219579px;}
.yd7{bottom:1052.580600px;}
.y1ca{bottom:1055.459578px;}
.y122{bottom:1057.439577px;}
.y6a{bottom:1063.559575px;}
.y3f{bottom:1069.499572px;}
.y1ac{bottom:1075.439570px;}
.yd5{bottom:1077.240600px;}
.y121{bottom:1077.419569px;}
.y69{bottom:1083.539567px;}
.y1ab{bottom:1095.419562px;}
.y142{bottom:1097.399561px;}
.yd3{bottom:1102.080600px;}
.y3e{bottom:1103.519559px;}
.y120{bottom:1115.399554px;}
.y4b{bottom:1121.699551px;}
.y68{bottom:1123.319551px;}
.y86{bottom:1124.939550px;}
.yd1{bottom:1126.740600px;}
.y3d{bottom:1134.299546px;}
.y11f{bottom:1135.379546px;}
.y41{bottom:1140.239544px;}
.y49{bottom:1155.539538px;}
.y4{bottom:1158.599537px;}
.y4a{bottom:1183.979526px;}
.y7{bottom:1185.059526px;}
.y48{bottom:1186.499525px;}
.y3{bottom:1189.019524px;}
.y47{bottom:1204.859518px;}
.y2{bottom:1206.299517px;}
.y46{bottom:1223.219511px;}
.y1{bottom:1223.579511px;}
.h3{height:5.580000px;}
.h1a{height:13.320000px;}
.hd{height:18.180000px;}
.h1c{height:19.260000px;}
.ha{height:19.800000px;}
.h18{height:19.980000px;}
.h21{height:22.860000px;}
.h20{height:23.040000px;}
.h1d{height:32.929440px;}
.h13{height:33.494752px;}
.h19{height:36.179986px;}
.h12{height:36.274204px;}
.h11{height:36.624009px;}
.h4{height:36.914048px;}
.h5{height:38.759750px;}
.hf{height:39.313461px;}
.hc{height:39.830258px;}
.he{height:40.851546px;}
.h8{height:41.493499px;}
.h1{height:41.522679px;}
.h2{height:42.894123px;}
.h1b{height:43.905920px;}
.h14{height:44.936701px;}
.h9{height:45.992794px;}
.h7{height:48.796855px;}
.h10{height:49.148418px;}
.h1f{height:51.974979px;}
.h22{height:54.140603px;}
.h1e{height:54.390916px;}
.h6{height:57.092321px;}
.h15{height:57.585914px;}
.hb{height:60.465210px;}
.h17{height:67.675754px;}
.h16{height:74.714033px;}
.h0{height:1263.000000px;}
.w9{width:3.420000px;}
.w3f{width:3.960000px;}
.w1f{width:5.940000px;}
.w6{width:6.660000px;}
.w30{width:6.840000px;}
.w43{width:7.920000px;}
.w47{width:8.100000px;}
.w2{width:8.820000px;}
.w45{width:9.540000px;}
.w32{width:9.900000px;}
.w18{width:10.080000px;}
.wb{width:10.260000px;}
.w36{width:13.320000px;}
.wf{width:13.500000px;}
.wd{width:16.920000px;}
.w4{width:17.280000px;}
.w3{width:18.900000px;}
.w3e{width:32.940000px;}
.w3a{width:53.460000px;}
.w33{width:56.700000px;}
.w3c{width:61.380000px;}
.w2e{width:63.360000px;}
.w2c{width:67.320000px;}
.w26{width:71.280000px;}
.w20{width:75.420000px;}
.w44{width:78.300000px;}
.w19{width:92.880000px;}
.w10{width:95.220000px;}
.w5{width:95.400000px;}
.w11{width:113.940000px;}
.w25{width:117.720000px;}
.w1a{width:137.520000px;}
.w46{width:153.720000px;}
.w24{width:168.840000px;}
.w8{width:186.840000px;}
.w16{width:190.080000px;}
.w48{width:191.520000px;}
.w21{width:192.060000px;}
.w40{width:204.300000px;}
.w15{width:212.040000px;}
.w12{width:213.660000px;}
.w1b{width:215.100000px;}
.w13{width:216.360000px;}
.w31{width:221.940000px;}
.w1c{width:225.000000px;}
.wc{width:228.960000px;}
.w14{width:229.680000px;}
.w35{width:231.840000px;}
.wa{width:233.280000px;}
.w41{width:233.640000px;}
.w1d{width:235.080000px;}
.w38{width:235.800000px;}
.w42{width:239.580000px;}
.w3b{width:240.300000px;}
.w2f{width:240.480000px;}
.w2b{width:246.600000px;}
.w1e{width:249.840000px;}
.we{width:250.380000px;}
.w28{width:251.100000px;}
.w29{width:252.360000px;}
.w27{width:252.540000px;}
.w3d{width:253.620000px;}
.w17{width:254.700000px;}
.w2a{width:255.060000px;}
.w37{width:255.780000px;}
.w2d{width:256.500000px;}
.w22{width:258.120000px;}
.w34{width:260.280000px;}
.w23{width:266.940000px;}
.w39{width:271.080000px;}
.w7{width:501.660000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x17{left:44.279982px;}
.x1{left:53.999978px;}
.x15{left:58.319977px;}
.x5b{left:62.100000px;}
.x78{left:64.799974px;}
.x12{left:69.659972px;}
.x18{left:73.439971px;}
.x13{left:75.959970px;}
.x14{left:79.379963px;}
.x4{left:80.819968px;}
.x6{left:97.369761px;}
.xd{left:99.532610px;}
.x24{left:107.999957px;}
.x16{left:115.019954px;}
.x61{left:118.800000px;}
.x62{left:122.220000px;}
.x5c{left:125.460000px;}
.x5d{left:128.880000px;}
.x6f{left:134.999946px;}
.x28{left:141.300000px;}
.x7{left:151.189440px;}
.x23{left:164.699934px;}
.xb{left:171.531756px;}
.xe{left:178.019929px;}
.xf{left:180.899928px;}
.x70{left:193.679923px;}
.x19{left:199.439874px;}
.xa{left:202.312332px;}
.x6e{left:226.079910px;}
.x10{left:231.300000px;}
.x1d{left:232.372407px;}
.x64{left:236.160000px;}
.x4c{left:247.140000px;}
.x4d{left:250.560000px;}
.x25{left:252.899899px;}
.x1a{left:254.339898px;}
.x11{left:256.672397px;}
.x32{left:258.480000px;}
.x20{left:260.279896px;}
.x5a{left:262.080000px;}
.x21{left:263.519895px;}
.x55{left:264.780000px;}
.x40{left:266.400000px;}
.x52{left:267.480000px;}
.x3b{left:268.740000px;}
.x44{left:271.080000px;}
.x2f{left:272.520000px;}
.x2c{left:273.780000px;}
.x33{left:275.400000px;}
.x2d{left:277.200000px;}
.x5f{left:279.540000px;}
.x35{left:280.800000px;}
.x30{left:282.780000px;}
.x3c{left:285.660000px;}
.x45{left:288.000000px;}
.x9{left:291.419883px;}
.x43{left:293.040000px;}
.x36{left:294.300000px;}
.x3e{left:297.000000px;}
.x2a{left:298.620000px;}
.x65{left:302.940000px;}
.x6a{left:309.420000px;}
.x6b{left:313.380000px;}
.xc{left:314.812170px;}
.x49{left:335.520000px;}
.x26{left:344.340000px;}
.x50{left:356.400000px;}
.x58{left:358.380000px;}
.x8{left:361.970855px;}
.x68{left:365.940000px;}
.x5e{left:369.360000px;}
.x42{left:374.760000px;}
.x5{left:379.439848px;}
.x63{left:382.500000px;}
.x1e{left:384.119616px;}
.x37{left:389.520000px;}
.x54{left:392.040000px;}
.x48{left:395.100000px;}
.x1c{left:417.060345px;}
.x4e{left:419.400000px;}
.x72{left:420.659832px;}
.x69{left:422.820000px;}
.x59{left:425.700000px;}
.x51{left:427.680000px;}
.x27{left:439.740000px;}
.x2{left:446.399821px;}
.x2b{left:485.460000px;}
.x3f{left:487.080000px;}
.x74{left:498.960000px;}
.x60{left:501.480000px;}
.x38{left:503.460000px;}
.x39{left:507.420000px;}
.x3a{left:508.680000px;}
.x2e{left:510.480000px;}
.x31{left:511.740000px;}
.x46{left:513.000000px;}
.x6c{left:514.080000px;}
.x3d{left:515.340000px;}
.x6d{left:516.960000px;}
.x47{left:518.040000px;}
.x53{left:520.020000px;}
.x41{left:521.100000px;}
.x56{left:523.440000px;}
.x57{left:524.700000px;}
.x34{left:525.780000px;}
.x4a{left:527.580000px;}
.x4b{left:530.640000px;}
.x66{left:534.780000px;}
.x4f{left:537.120000px;}
.x67{left:548.100000px;}
.x75{left:573.660000px;}
.x77{left:612.180000px;}
.x73{left:617.760000px;}
.x71{left:633.950746px;}
.x29{left:642.960000px;}
.x22{left:696.419721px;}
.x1f{left:711.899105px;}
.x3{left:720.179712px;}
.x76{left:830.880000px;}
.x1b{left:838.979664px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016533pt;}
.ls1{letter-spacing:0.141574pt;}
.ls8{letter-spacing:0.147680pt;}
.ls2{letter-spacing:0.207424pt;}
.ls6{letter-spacing:0.246472pt;}
.lsb{letter-spacing:12.129168pt;}
.lsa{letter-spacing:40.921157pt;}
.ls5{letter-spacing:40.946757pt;}
.ls9{letter-spacing:49.272087pt;}
.ls7{letter-spacing:56.956884pt;}
.ls0{letter-spacing:1510.849309pt;}
.ws9{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.816521pt;}
.wsa{word-spacing:-16.895993pt;}
.ws7{word-spacing:-14.607994pt;}
.ws1{word-spacing:-13.551418pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-12.005115pt;}
.ws8{word-spacing:-11.920635pt;}
.ws4{word-spacing:-11.791995pt;}
.ws5{word-spacing:-1.789877pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-3.367022pt;}
._4{margin-left:-2.436118pt;}
._1{margin-left:-1.396111pt;}
._0{width:0.891642pt;}
._8{width:1.800937pt;}
._9{width:3.025342pt;}
._2{width:4.354951pt;}
._3{width:5.893321pt;}
._10{width:6.842088pt;}
._13{width:7.851466pt;}
._f{width:9.357421pt;}
._a{width:10.901502pt;}
._d{width:12.745583pt;}
._34{width:13.666327pt;}
._e{width:14.701210pt;}
._31{width:16.524294pt;}
._12{width:17.901734pt;}
._b{width:19.261605pt;}
._30{width:20.198843pt;}
._6{width:21.113221pt;}
._7{width:22.114883pt;}
._32{width:25.736992pt;}
._33{width:27.047603pt;}
._20{width:28.661226pt;}
._11{width:33.501878pt;}
._19{width:35.064931pt;}
._27{width:36.986036pt;}
._1f{width:38.907141pt;}
._14{width:48.643747pt;}
._2f{width:56.430815pt;}
._2b{width:57.477742pt;}
._15{width:61.436754pt;}
._1d{width:62.402185pt;}
._25{width:69.004066pt;}
._28{width:74.751490pt;}
._2d{width:79.890615pt;}
._26{width:88.855936pt;}
._2c{width:96.540234pt;}
._24{width:108.707192pt;}
._2e{width:111.268625pt;}
._22{width:120.510542pt;}
._18{width:122.016570pt;}
._1b{width:152.252161pt;}
._16{width:160.040508pt;}
._17{width:161.338241pt;}
._1e{width:184.439713pt;}
._23{width:252.591075pt;}
._21{width:285.448498pt;}
._1c{width:286.728907pt;}
._29{width:290.571363pt;}
._2a{width:319.853419pt;}
._1a{width:375.574513pt;}
._c{width:497.711891pt;}
.fs5{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs8{font-size:61.439975pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs7{font-size:79.999968pt;}
.fs6{font-size:88.319965pt;}
.y6{bottom:-7.679992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.yd2{bottom:2.239065pt;}
.yde{bottom:2.239118pt;}
.ye0{bottom:2.239127pt;}
.y8c{bottom:2.239131pt;}
.ye4{bottom:2.239144pt;}
.ye8{bottom:2.239162pt;}
.yea{bottom:2.239171pt;}
.yec{bottom:2.239180pt;}
.yf2{bottom:2.239206pt;}
.yf4{bottom:2.239215pt;}
.yf6{bottom:2.239224pt;}
.yfa{bottom:2.239241pt;}
.yfc{bottom:2.239250pt;}
.yfe{bottom:2.239259pt;}
.yb0{bottom:2.239290pt;}
.yb2{bottom:2.239299pt;}
.yb4{bottom:2.239307pt;}
.y10a{bottom:2.239312pt;}
.y10c{bottom:2.239320pt;}
.y110{bottom:2.239338pt;}
.yc0{bottom:2.239360pt;}
.yc2{bottom:2.239369pt;}
.yc6{bottom:2.239387pt;}
.y11c{bottom:2.239391pt;}
.yca{bottom:2.239724pt;}
.ycc{bottom:2.239733pt;}
.y8a{bottom:2.719122pt;}
.yd4{bottom:2.879074pt;}
.yd6{bottom:2.879082pt;}
.yd8{bottom:2.879091pt;}
.yda{bottom:2.879100pt;}
.ydc{bottom:2.879109pt;}
.ye2{bottom:2.879135pt;}
.y8e{bottom:2.879140pt;}
.y90{bottom:2.879149pt;}
.ye6{bottom:2.879153pt;}
.y92{bottom:2.879158pt;}
.y94{bottom:2.879166pt;}
.y96{bottom:2.879175pt;}
.y98{bottom:2.879184pt;}
.yee{bottom:2.879188pt;}
.y9a{bottom:2.879193pt;}
.yf0{bottom:2.879197pt;}
.y9c{bottom:2.879202pt;}
.y9e{bottom:2.879210pt;}
.ya0{bottom:2.879219pt;}
.ya2{bottom:2.879228pt;}
.yf8{bottom:2.879232pt;}
.ya4{bottom:2.879237pt;}
.ya6{bottom:2.879246pt;}
.ya8{bottom:2.879254pt;}
.yaa{bottom:2.879263pt;}
.y100{bottom:2.879267pt;}
.yac{bottom:2.879272pt;}
.y102{bottom:2.879276pt;}
.yae{bottom:2.879281pt;}
.y104{bottom:2.879285pt;}
.y106{bottom:2.879294pt;}
.y108{bottom:2.879302pt;}
.yb6{bottom:2.879316pt;}
.yb8{bottom:2.879325pt;}
.y10e{bottom:2.879329pt;}
.yba{bottom:2.879334pt;}
.ybc{bottom:2.879342pt;}
.y112{bottom:2.879346pt;}
.ybe{bottom:2.879351pt;}
.y114{bottom:2.879355pt;}
.y116{bottom:2.879364pt;}
.y118{bottom:2.879373pt;}
.yc4{bottom:2.879378pt;}
.y11a{bottom:2.879382pt;}
.yc8{bottom:2.879395pt;}
.yce{bottom:2.880008pt;}
.yd0{bottom:2.880017pt;}
.y19{bottom:3.519182pt;}
.y153{bottom:3.839183pt;}
.y15b{bottom:3.839254pt;}
.y171{bottom:3.839384pt;}
.y148{bottom:3.999123pt;}
.y14b{bottom:3.999134pt;}
.y150{bottom:3.999163pt;}
.y15f{bottom:3.999264pt;}
.y166{bottom:3.999274pt;}
.y168{bottom:3.999284pt;}
.y173{bottom:3.999334pt;}
.y175{bottom:3.999344pt;}
.y16f{bottom:3.999374pt;}
.y15{bottom:4.959182pt;}
.ya{bottom:29.226922pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:49.866913pt;}
.ycf{bottom:87.946880pt;}
.y141{bottom:89.386898pt;}
.y1c9{bottom:99.786893pt;}
.y18b{bottom:105.066891pt;}
.y3c{bottom:105.706624pt;}
.y67{bottom:109.546890pt;}
.ycd{bottom:109.866880pt;}
.y177{bottom:110.346889pt;}
.y11e{bottom:110.986889pt;}
.y85{bottom:111.786889pt;}
.y1c8{bottom:117.546886pt;}
.y1aa{bottom:118.826886pt;}
.y140{bottom:123.146884pt;}
.y66{bottom:127.306882pt;}
.y84{bottom:129.546882pt;}
.ycb{bottom:131.946880pt;}
.y1c7{bottom:135.306613pt;}
.y1a9{bottom:136.586612pt;}
.y18a{bottom:138.666611pt;}
.y176{bottom:145.706608pt;}
.y3b{bottom:152.106606pt;}
.y1c6{bottom:153.066605pt;}
.yc9{bottom:153.866880pt;}
.y1a8{bottom:154.346605pt;}
.y189{bottom:156.426604pt;}
.y13f{bottom:156.906604pt;}
.y11d{bottom:160.106603pt;}
.y83{bottom:164.746601pt;}
.y1c5{bottom:170.826598pt;}
.y188{bottom:174.186597pt;}
.yc7{bottom:175.947200pt;}
.y65{bottom:178.666595pt;}
.y11b{bottom:187.627200pt;}
.y1c4{bottom:188.426591pt;}
.y1a7{bottom:190.346591pt;}
.y187{bottom:191.946590pt;}
.y13e{bottom:192.106590pt;}
.yc5{bottom:197.867200pt;}
.y170{bottom:203.147200pt;}
.y1c3{bottom:206.186584pt;}
.y119{bottom:209.547200pt;}
.y186{bottom:209.706583pt;}
.yc3{bottom:219.947200pt;}
.y3a{bottom:221.866578pt;}
.y1c2{bottom:223.946577pt;}
.y82{bottom:225.226577pt;}
.y23{bottom:227.466576pt;}
.y16e{bottom:227.947200pt;}
.y117{bottom:231.627200pt;}
.y16d{bottom:231.946574pt;}
.y64{bottom:237.866572pt;}
.y1c1{bottom:241.706570pt;}
.yc1{bottom:241.867200pt;}
.y81{bottom:242.986569pt;}
.y185{bottom:244.906569pt;}
.y45{bottom:251.146566pt;}
.y1a6{bottom:252.106566pt;}
.y13d{bottom:252.586566pt;}
.y115{bottom:253.547200pt;}
.y16c{bottom:256.906564pt;}
.y1c0{bottom:259.466563pt;}
.ybf{bottom:263.947200pt;}
.y1a5{bottom:269.866559pt;}
.y13c{bottom:270.346559pt;}
.y44{bottom:274.986557pt;}
.y113{bottom:275.627200pt;}
.y80{bottom:278.346555pt;}
.y16b{bottom:282.026554pt;}
.ybd{bottom:285.867200pt;}
.y1a4{bottom:287.626552pt;}
.y13b{bottom:288.106551pt;}
.y43{bottom:294.506549pt;}
.y1bf{bottom:295.466548pt;}
.y111{bottom:297.547200pt;}
.y174{bottom:302.987200pt;}
.y1a3{bottom:305.226545pt;}
.y184{bottom:305.386545pt;}
.y13a{bottom:305.866544pt;}
.y16a{bottom:306.986544pt;}
.ybb{bottom:307.947200pt;}
.y42{bottom:311.786542pt;}
.y63{bottom:312.266542pt;}
.y10f{bottom:319.627200pt;}
.y1a2{bottom:322.986537pt;}
.y183{bottom:323.146537pt;}
.y172{bottom:327.947200pt;}
.yb9{bottom:329.867200pt;}
.y62{bottom:330.026535pt;}
.y139{bottom:331.466534pt;}
.y169{bottom:331.946534pt;}
.y7f{bottom:338.666531pt;}
.y182{bottom:340.906530pt;}
.y10d{bottom:341.547200pt;}
.y61{bottom:347.626528pt;}
.y138{bottom:349.226527pt;}
.y22{bottom:351.306526pt;}
.yb7{bottom:351.947200pt;}
.y1be{bottom:353.706525pt;}
.y39{bottom:356.106524pt;}
.y7e{bottom:356.426524pt;}
.y164{bottom:357.386524pt;}
.y1a1{bottom:358.346523pt;}
.y181{bottom:358.666523pt;}
.y10b{bottom:363.627200pt;}
.y60{bottom:365.386521pt;}
.y137{bottom:366.986520pt;}
.y38{bottom:370.346519pt;}
.yb5{bottom:373.867200pt;}
.y7d{bottom:374.186517pt;}
.y163{bottom:382.346514pt;}
.y109{bottom:385.547200pt;}
.y37{bottom:392.426510pt;}
.y180{bottom:393.866509pt;}
.yb3{bottom:395.947200pt;}
.y5f{bottom:399.146507pt;}
.y136{bottom:400.746506pt;}
.y1bd{bottom:404.426505pt;}
.y36{bottom:406.666504pt;}
.y162{bottom:407.306504pt;}
.y107{bottom:407.627200pt;}
.y1e1{bottom:407.946503pt;}
.y7c{bottom:409.546503pt;}
.yb1{bottom:417.867200pt;}
.y1a0{bottom:418.826499pt;}
.y35{bottom:420.906498pt;}
.y1bc{bottom:422.186498pt;}
.y1e0{bottom:423.946497pt;}
.y105{bottom:429.547200pt;}
.y161{bottom:432.266494pt;}
.y5e{bottom:434.506493pt;}
.y34{bottom:435.146493pt;}
.y135{bottom:435.946492pt;}
.y19f{bottom:436.426492pt;}
.y1bb{bottom:439.946491pt;}
.yaf{bottom:439.947200pt;}
.y1df{bottom:441.706490pt;}
.y103{bottom:451.627200pt;}
.y167{bottom:453.387200pt;}
.y19e{bottom:454.186485pt;}
.y21{bottom:455.306485pt;}
.y17f{bottom:456.586484pt;}
.y33{bottom:457.226484pt;}
.y160{bottom:457.386484pt;}
.y1ba{bottom:457.706484pt;}
.y1de{bottom:459.466483pt;}
.yad{bottom:461.867200pt;}
.y7b{bottom:470.026479pt;}
.y32{bottom:471.466478pt;}
.y19d{bottom:471.946478pt;}
.y101{bottom:473.547200pt;}
.y1dd{bottom:477.226476pt;}
.y165{bottom:478.347200pt;}
.y15d{bottom:482.346474pt;}
.yab{bottom:483.947200pt;}
.y31{bottom:485.706472pt;}
.y7a{bottom:487.626472pt;}
.y19c{bottom:489.706471pt;}
.y1b9{bottom:491.466470pt;}
.y5d{bottom:494.826469pt;}
.yff{bottom:495.627200pt;}
.y134{bottom:496.426468pt;}
.y30{bottom:499.786467pt;}
.y15e{bottom:503.307200pt;}
.y20{bottom:504.906465pt;}
.y79{bottom:505.386465pt;}
.ya9{bottom:505.867200pt;}
.y15c{bottom:507.306464pt;}
.y19b{bottom:507.466464pt;}
.y1b8{bottom:509.226463pt;}
.y5c{bottom:512.586462pt;}
.y2f{bottom:514.026461pt;}
.y133{bottom:514.186461pt;}
.y17e{bottom:514.986461pt;}
.yfd{bottom:517.547200pt;}
.y1f{bottom:521.226458pt;}
.y78{bottom:523.146457pt;}
.y19a{bottom:525.226457pt;}
.y1b7{bottom:526.826456pt;}
.ya7{bottom:527.947200pt;}
.y15a{bottom:528.747200pt;}
.y5b{bottom:530.346455pt;}
.y132{bottom:531.946454pt;}
.y2e{bottom:536.106452pt;}
.y1e{bottom:536.586452pt;}
.yfb{bottom:539.627200pt;}
.y199{bottom:542.986449pt;}
.y5a{bottom:548.106447pt;}
.y131{bottom:549.706447pt;}
.ya5{bottom:549.867200pt;}
.y2d{bottom:550.346447pt;}
.y77{bottom:556.906444pt;}
.y159{bottom:557.706444pt;}
.y198{bottom:560.586442pt;}
.yf9{bottom:561.547200pt;}
.y2c{bottom:564.586441pt;}
.y17d{bottom:565.706440pt;}
.y1dc{bottom:565.866440pt;}
.ya3{bottom:571.947200pt;}
.y197{bottom:578.346435pt;}
.y158{bottom:582.666434pt;}
.y59{bottom:583.306433pt;}
.y130{bottom:583.466433pt;}
.y1db{bottom:583.626433pt;}
.yf7{bottom:583.627200pt;}
.y1d{bottom:585.066433pt;}
.y2b{bottom:586.666432pt;}
.y76{bottom:590.666430pt;}
.ya1{bottom:593.867200pt;}
.y196{bottom:596.106428pt;}
.y2a{bottom:600.906426pt;}
.y12f{bottom:601.226426pt;}
.yf5{bottom:605.547200pt;}
.y157{bottom:607.626424pt;}
.y75{bottom:608.426423pt;}
.y195{bottom:613.866421pt;}
.y29{bottom:615.146421pt;}
.y9f{bottom:615.947200pt;}
.y12e{bottom:618.986419pt;}
.y74{bottom:626.186416pt;}
.yf3{bottom:627.627200pt;}
.y1b6{bottom:629.866415pt;}
.y156{bottom:632.586414pt;}
.y1c{bottom:633.706413pt;}
.y12d{bottom:636.586412pt;}
.y1da{bottom:636.746412pt;}
.y28{bottom:637.386412pt;}
.y9d{bottom:637.867200pt;}
.y58{bottom:643.786409pt;}
.y194{bottom:647.626408pt;}
.yf1{bottom:649.547200pt;}
.y1b{bottom:650.186407pt;}
.y27{bottom:651.626406pt;}
.y1d9{bottom:654.506405pt;}
.y155{bottom:657.706404pt;}
.y9b{bottom:659.947200pt;}
.y57{bottom:661.546402pt;}
.y1b5{bottom:665.386401pt;}
.y26{bottom:665.706400pt;}
.y17c{bottom:670.346399pt;}
.yef{bottom:671.627200pt;}
.y12c{bottom:671.946398pt;}
.y1d8{bottom:672.266398pt;}
.y24{bottom:678.826395pt;}
.y73{bottom:679.146395pt;}
.y56{bottom:679.306395pt;}
.y25{bottom:679.946395pt;}
.y1a{bottom:680.106395pt;}
.y99{bottom:681.867200pt;}
.y154{bottom:682.666394pt;}
.y193{bottom:682.826394pt;}
.y1d7{bottom:690.026391pt;}
.yed{bottom:693.547200pt;}
.y55{bottom:697.066388pt;}
.y1b4{bottom:702.026386pt;}
.y97{bottom:703.947200pt;}
.y152{bottom:704.107200pt;}
.y17b{bottom:705.706384pt;}
.y14{bottom:706.667200pt;}
.y1d6{bottom:707.626384pt;}
.y18{bottom:708.107200pt;}
.y16{bottom:711.466382pt;}
.y17{bottom:711.626382pt;}
.y54{bottom:714.826381pt;}
.yeb{bottom:715.627200pt;}
.y1d5{bottom:725.386377pt;}
.y95{bottom:725.867200pt;}
.y13{bottom:728.106375pt;}
.y12b{bottom:732.426374pt;}
.y151{bottom:732.906374pt;}
.ye9{bottom:737.547200pt;}
.y72{bottom:739.626371pt;}
.y1d4{bottom:743.146369pt;}
.y192{bottom:743.306369pt;}
.y12{bottom:745.066369pt;}
.y93{bottom:747.947200pt;}
.y53{bottom:750.026367pt;}
.y12a{bottom:750.186367pt;}
.y14f{bottom:754.027200pt;}
.y71{bottom:757.386364pt;}
.y14e{bottom:758.026363pt;}
.ye7{bottom:759.627200pt;}
.y1d3{bottom:760.906362pt;}
.y191{bottom:761.066362pt;}
.y11{bottom:761.546362pt;}
.y1b3{bottom:764.426361pt;}
.y17a{bottom:766.186360pt;}
.y129{bottom:767.786360pt;}
.y91{bottom:769.867200pt;}
.y10{bottom:776.906356pt;}
.y1d2{bottom:778.666355pt;}
.y190{bottom:778.826355pt;}
.ye5{bottom:781.547200pt;}
.y1b2{bottom:782.186354pt;}
.y14d{bottom:782.986353pt;}
.y179{bottom:783.786353pt;}
.y70{bottom:790.986350pt;}
.y8f{bottom:791.947200pt;}
.yf{bottom:792.266350pt;}
.y1d1{bottom:796.426348pt;}
.y18f{bottom:796.586348pt;}
.y1b1{bottom:799.786347pt;}
.y128{bottom:801.546346pt;}
.ye3{bottom:803.627200pt;}
.ye{bottom:807.466344pt;}
.y14c{bottom:807.946343pt;}
.y6f{bottom:808.746343pt;}
.y52{bottom:810.506342pt;}
.y8d{bottom:813.867200pt;}
.y1d0{bottom:814.186341pt;}
.y1b0{bottom:817.546340pt;}
.y127{bottom:819.306339pt;}
.yd{bottom:823.466337pt;}
.ye1{bottom:825.547200pt;}
.y51{bottom:828.266335pt;}
.y14a{bottom:828.907200pt;}
.y18e{bottom:831.786334pt;}
.y149{bottom:832.906334pt;}
.y8b{bottom:835.947200pt;}
.y126{bottom:837.066332pt;}
.y6e{bottom:842.506330pt;}
.y50{bottom:846.026328pt;}
.ydf{bottom:847.627200pt;}
.y1cf{bottom:849.546327pt;}
.y1af{bottom:851.306326pt;}
.y147{bottom:854.027200pt;}
.y146{bottom:858.026323pt;}
.yc{bottom:858.346323pt;}
.y89{bottom:858.507200pt;}
.y6d{bottom:860.266323pt;}
.y4f{bottom:863.786321pt;}
.y1ce{bottom:867.306320pt;}
.y1ae{bottom:869.066319pt;}
.ydd{bottom:869.547200pt;}
.y125{bottom:870.826318pt;}
.y4e{bottom:881.386314pt;}
.y145{bottom:882.986313pt;}
.y1cd{bottom:885.066313pt;}
.y1ad{bottom:886.826312pt;}
.y124{bottom:888.586311pt;}
.ydb{bottom:891.627200pt;}
.y18d{bottom:892.266310pt;}
.yb{bottom:892.426310pt;}
.y6c{bottom:894.026309pt;}
.y4d{bottom:899.146307pt;}
.y88{bottom:899.946307pt;}
.y1cc{bottom:902.826306pt;}
.y178{bottom:904.586305pt;}
.y144{bottom:910.026303pt;}
.y6b{bottom:911.786302pt;}
.yd9{bottom:913.547200pt;}
.y1cb{bottom:920.586298pt;}
.y123{bottom:922.186298pt;}
.y18c{bottom:927.786296pt;}
.y40{bottom:931.146294pt;}
.y4c{bottom:934.506293pt;}
.y143{bottom:934.986293pt;}
.y87{bottom:935.306293pt;}
.yd7{bottom:935.627200pt;}
.y1ca{bottom:938.186291pt;}
.y122{bottom:939.946291pt;}
.y6a{bottom:945.386289pt;}
.y3f{bottom:950.666286pt;}
.y1ac{bottom:955.946284pt;}
.yd5{bottom:957.547200pt;}
.y121{bottom:957.706284pt;}
.y69{bottom:963.146281pt;}
.y1ab{bottom:973.706277pt;}
.y142{bottom:975.466276pt;}
.yd3{bottom:979.627200pt;}
.y3e{bottom:980.906274pt;}
.y120{bottom:991.466270pt;}
.y4b{bottom:997.066268pt;}
.y68{bottom:998.506267pt;}
.y86{bottom:999.946267pt;}
.yd1{bottom:1001.547200pt;}
.y3d{bottom:1008.266263pt;}
.y11f{bottom:1009.226263pt;}
.y41{bottom:1013.546261pt;}
.y49{bottom:1027.146256pt;}
.y4{bottom:1029.866255pt;}
.y4a{bottom:1052.426246pt;}
.y7{bottom:1053.386245pt;}
.y48{bottom:1054.666245pt;}
.y3{bottom:1056.906244pt;}
.y47{bottom:1070.986238pt;}
.y2{bottom:1072.266238pt;}
.y46{bottom:1087.306232pt;}
.y1{bottom:1087.626232pt;}
.h3{height:4.960000pt;}
.h1a{height:11.840000pt;}
.hd{height:16.160000pt;}
.h1c{height:17.120000pt;}
.ha{height:17.600000pt;}
.h18{height:17.760000pt;}
.h21{height:20.320000pt;}
.h20{height:20.480000pt;}
.h1d{height:29.270613pt;}
.h13{height:29.773113pt;}
.h19{height:32.159987pt;}
.h12{height:32.243737pt;}
.h11{height:32.554674pt;}
.h4{height:32.812487pt;}
.h5{height:34.453111pt;}
.hf{height:34.945299pt;}
.hc{height:35.404673pt;}
.he{height:36.312485pt;}
.h8{height:36.883110pt;}
.h1{height:36.909048pt;}
.h2{height:38.128110pt;}
.h1b{height:39.027484pt;}
.h14{height:39.943734pt;}
.h9{height:40.882484pt;}
.h7{height:43.374983pt;}
.h10{height:43.687483pt;}
.h1f{height:46.199982pt;}
.h22{height:48.124981pt;}
.h1e{height:48.347481pt;}
.h6{height:50.748730pt;}
.h15{height:51.187480pt;}
.hb{height:53.746854pt;}
.h17{height:60.156226pt;}
.h16{height:66.412473pt;}
.h0{height:1122.666667pt;}
.w9{width:3.040000pt;}
.w3f{width:3.520000pt;}
.w1f{width:5.280000pt;}
.w6{width:5.920000pt;}
.w30{width:6.080000pt;}
.w43{width:7.040000pt;}
.w47{width:7.200000pt;}
.w2{width:7.840000pt;}
.w45{width:8.480000pt;}
.w32{width:8.800000pt;}
.w18{width:8.960000pt;}
.wb{width:9.120000pt;}
.w36{width:11.840000pt;}
.wf{width:12.000000pt;}
.wd{width:15.040000pt;}
.w4{width:15.360000pt;}
.w3{width:16.800000pt;}
.w3e{width:29.280000pt;}
.w3a{width:47.520000pt;}
.w33{width:50.400000pt;}
.w3c{width:54.560000pt;}
.w2e{width:56.320000pt;}
.w2c{width:59.840000pt;}
.w26{width:63.360000pt;}
.w20{width:67.040000pt;}
.w44{width:69.600000pt;}
.w19{width:82.560000pt;}
.w10{width:84.640000pt;}
.w5{width:84.800000pt;}
.w11{width:101.280000pt;}
.w25{width:104.640000pt;}
.w1a{width:122.240000pt;}
.w46{width:136.640000pt;}
.w24{width:150.080000pt;}
.w8{width:166.080000pt;}
.w16{width:168.960000pt;}
.w48{width:170.240000pt;}
.w21{width:170.720000pt;}
.w40{width:181.600000pt;}
.w15{width:188.480000pt;}
.w12{width:189.920000pt;}
.w1b{width:191.200000pt;}
.w13{width:192.320000pt;}
.w31{width:197.280000pt;}
.w1c{width:200.000000pt;}
.wc{width:203.520000pt;}
.w14{width:204.160000pt;}
.w35{width:206.080000pt;}
.wa{width:207.360000pt;}
.w41{width:207.680000pt;}
.w1d{width:208.960000pt;}
.w38{width:209.600000pt;}
.w42{width:212.960000pt;}
.w3b{width:213.600000pt;}
.w2f{width:213.760000pt;}
.w2b{width:219.200000pt;}
.w1e{width:222.080000pt;}
.we{width:222.560000pt;}
.w28{width:223.200000pt;}
.w29{width:224.320000pt;}
.w27{width:224.480000pt;}
.w3d{width:225.440000pt;}
.w17{width:226.400000pt;}
.w2a{width:226.720000pt;}
.w37{width:227.360000pt;}
.w2d{width:228.000000pt;}
.w22{width:229.440000pt;}
.w34{width:231.360000pt;}
.w23{width:237.280000pt;}
.w39{width:240.960000pt;}
.w7{width:445.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x17{left:39.359984pt;}
.x1{left:47.999981pt;}
.x15{left:51.839979pt;}
.x5b{left:55.200000pt;}
.x78{left:57.599977pt;}
.x12{left:61.919975pt;}
.x18{left:65.279974pt;}
.x13{left:67.519973pt;}
.x14{left:70.559967pt;}
.x4{left:71.839971pt;}
.x6{left:86.550899pt;}
.xd{left:88.473431pt;}
.x24{left:95.999962pt;}
.x16{left:102.239959pt;}
.x61{left:105.600000pt;}
.x62{left:108.640000pt;}
.x5c{left:111.520000pt;}
.x5d{left:114.560000pt;}
.x6f{left:119.999952pt;}
.x28{left:125.600000pt;}
.x7{left:134.390613pt;}
.x23{left:146.399941pt;}
.xb{left:152.472672pt;}
.xe{left:158.239937pt;}
.xf{left:160.799936pt;}
.x70{left:172.159931pt;}
.x19{left:177.279888pt;}
.xa{left:179.833184pt;}
.x6e{left:200.959920pt;}
.x10{left:205.600000pt;}
.x1d{left:206.553251pt;}
.x64{left:209.920000pt;}
.x4c{left:219.680000pt;}
.x4d{left:222.720000pt;}
.x25{left:224.799910pt;}
.x1a{left:226.079910pt;}
.x11{left:228.153242pt;}
.x32{left:229.760000pt;}
.x20{left:231.359907pt;}
.x5a{left:232.960000pt;}
.x21{left:234.239906pt;}
.x55{left:235.360000pt;}
.x40{left:236.800000pt;}
.x52{left:237.760000pt;}
.x3b{left:238.880000pt;}
.x44{left:240.960000pt;}
.x2f{left:242.240000pt;}
.x2c{left:243.360000pt;}
.x33{left:244.800000pt;}
.x2d{left:246.400000pt;}
.x5f{left:248.480000pt;}
.x35{left:249.600000pt;}
.x30{left:251.360000pt;}
.x3c{left:253.920000pt;}
.x45{left:256.000000pt;}
.x9{left:259.039896pt;}
.x43{left:260.480000pt;}
.x36{left:261.600000pt;}
.x3e{left:264.000000pt;}
.x2a{left:265.440000pt;}
.x65{left:269.280000pt;}
.x6a{left:275.040000pt;}
.x6b{left:278.560000pt;}
.xc{left:279.833040pt;}
.x49{left:298.240000pt;}
.x26{left:306.080000pt;}
.x50{left:316.800000pt;}
.x58{left:318.560000pt;}
.x8{left:321.751871pt;}
.x68{left:325.280000pt;}
.x5e{left:328.320000pt;}
.x42{left:333.120000pt;}
.x5{left:337.279865pt;}
.x63{left:340.000000pt;}
.x1e{left:341.439659pt;}
.x37{left:346.240000pt;}
.x54{left:348.480000pt;}
.x48{left:351.200000pt;}
.x1c{left:370.720306pt;}
.x4e{left:372.800000pt;}
.x72{left:373.919850pt;}
.x69{left:375.840000pt;}
.x59{left:378.400000pt;}
.x51{left:380.160000pt;}
.x27{left:390.880000pt;}
.x2{left:396.799841pt;}
.x2b{left:431.520000pt;}
.x3f{left:432.960000pt;}
.x74{left:443.520000pt;}
.x60{left:445.760000pt;}
.x38{left:447.520000pt;}
.x39{left:451.040000pt;}
.x3a{left:452.160000pt;}
.x2e{left:453.760000pt;}
.x31{left:454.880000pt;}
.x46{left:456.000000pt;}
.x6c{left:456.960000pt;}
.x3d{left:458.080000pt;}
.x6d{left:459.520000pt;}
.x47{left:460.480000pt;}
.x53{left:462.240000pt;}
.x41{left:463.200000pt;}
.x56{left:465.280000pt;}
.x57{left:466.400000pt;}
.x34{left:467.360000pt;}
.x4a{left:468.960000pt;}
.x4b{left:471.680000pt;}
.x66{left:475.360000pt;}
.x4f{left:477.440000pt;}
.x67{left:487.200000pt;}
.x75{left:509.920000pt;}
.x77{left:544.160000pt;}
.x73{left:549.120000pt;}
.x71{left:563.511775pt;}
.x29{left:571.520000pt;}
.x22{left:619.039752pt;}
.x1f{left:632.799204pt;}
.x3{left:640.159744pt;}
.x76{left:738.560000pt;}
.x1b{left:745.759702pt;}
}




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