
    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_e59bde532d14a7575eb8490b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b77297848a497cabceb6c666.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_95af0e9e3d2137e9f590c9e4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_df60d623c1dcd7dc7520b6b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_428d7e3d8fdf072eeb8b40bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_bc64cff35ceb518190924609.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_25fb0d55d16c664ee25d8232.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844727;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_7b475ab2eb403321ce286551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_d1ebdd73cedcd05867ca955e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249856,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249860,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m6{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m2{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);}
.m3{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);}
.m0{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);}
.m8{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.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);}
.m7{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.599999px;}
.v2{vertical-align:17.279993px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.061380px;}
.ls5{letter-spacing:0.182640px;}
.ls1{letter-spacing:0.278834px;}
.ls0{letter-spacing:0.375684px;}
.ls4{letter-spacing:0.903120px;}
.ls6{letter-spacing:129.717269px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.059992px;}
.ws0{word-spacing:-16.271993px;}
.ws2{word-spacing:-14.970234px;}
.ws1{word-spacing:-13.505755px;}
.ws6{word-spacing:-12.557155px;}
.wsa{word-spacing:-12.203995px;}
.ws7{word-spacing:-9.784616px;}
.ws3{word-spacing:-9.437756px;}
.ws8{word-spacing:-8.999996px;}
.ws9{word-spacing:-8.135997px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.440825px;}
._1{width:1.225569px;}
._9{width:2.467207px;}
._6{width:4.146720px;}
._7{width:5.385755px;}
._a{width:6.498134px;}
._c{width:7.822865px;}
._5{width:9.517100px;}
._4{width:11.082791px;}
._3{width:12.366024px;}
._2{width:13.519660px;}
._e{width:15.973238px;}
._d{width:17.034216px;}
._11{width:20.239025px;}
._10{width:21.331738px;}
._b{width:22.893861px;}
._8{width:30.536178px;}
._19{width:38.817382px;}
._1a{width:52.751690px;}
._18{width:91.535406px;}
._20{width:103.727670px;}
._16{width:113.140840px;}
._15{width:115.309019px;}
._1e{width:118.188355px;}
._17{width:126.828678px;}
._12{width:129.127800px;}
._1f{width:131.876193px;}
._14{width:145.559403px;}
._f{width:153.662811px;}
._1c{width:157.138439px;}
._13{width:165.017482px;}
._1d{width:170.055742px;}
._1b{width:193.879477px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(132,150,176);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:2.879999px;}
.fsb{font-size:35.999986px;}
.fs8{font-size:39.138464px;}
.fs6{font-size:41.759983px;}
.fs3{font-size:48.239981px;}
.fs7{font-size:50.228620px;}
.fsa{font-size:53.999978px;}
.fs4{font-size:59.759976px;}
.fs9{font-size:63.928174px;}
.fs5{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.fs0{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y109{bottom:1.799118px;}
.y10b{bottom:2.339118px;}
.yad{bottom:2.699192px;}
.yb9{bottom:2.879123px;}
.ye6{bottom:3.059201px;}
.yed{bottom:3.599121px;}
.yf0{bottom:3.599131px;}
.yf6{bottom:3.599152px;}
.ybc{bottom:3.599207px;}
.yff{bottom:3.599211px;}
.ybe{bottom:3.599214px;}
.y101{bottom:3.599218px;}
.yc3{bottom:3.599221px;}
.y13{bottom:3.959020px;}
.y15{bottom:3.959028px;}
.y18{bottom:3.959036px;}
.yd7{bottom:3.959317px;}
.yda{bottom:3.959324px;}
.ydd{bottom:3.959691px;}
.ydf{bottom:3.959698px;}
.y86{bottom:4.498969px;}
.y8a{bottom:4.498978px;}
.y8d{bottom:4.498987px;}
.y90{bottom:4.498997px;}
.y93{bottom:4.499006px;}
.y97{bottom:4.499028px;}
.y9a{bottom:4.499037px;}
.y9c{bottom:4.499046px;}
.y9f{bottom:4.499056px;}
.y1d{bottom:4.499064px;}
.ya2{bottom:4.499065px;}
.y20{bottom:4.499073px;}
.ya5{bottom:4.499074px;}
.y22{bottom:4.499082px;}
.ya7{bottom:4.499084px;}
.y25{bottom:4.499092px;}
.ya9{bottom:4.499093px;}
.y28{bottom:4.499101px;}
.y2b{bottom:4.499110px;}
.y2e{bottom:4.499119px;}
.y33{bottom:4.499158px;}
.y36{bottom:4.499167px;}
.y39{bottom:4.499177px;}
.y3c{bottom:4.499186px;}
.y40{bottom:4.499195px;}
.y43{bottom:4.499204px;}
.y45{bottom:4.499214px;}
.y47{bottom:4.499223px;}
.y103{bottom:4.499231px;}
.yca{bottom:4.499260px;}
.y4e{bottom:4.499265px;}
.ycc{bottom:4.499269px;}
.y51{bottom:4.499274px;}
.ycf{bottom:4.499278px;}
.y53{bottom:4.499284px;}
.yd2{bottom:4.499288px;}
.y55{bottom:4.499293px;}
.y57{bottom:4.499302px;}
.y5b{bottom:4.499312px;}
.y5e{bottom:4.499321px;}
.y61{bottom:4.499690px;}
.y64{bottom:4.499699px;}
.y66{bottom:4.500009px;}
.y68{bottom:4.500018px;}
.y6a{bottom:4.678924px;}
.y6c{bottom:4.678933px;}
.y7{bottom:4.858944px;}
.y10{bottom:4.858995px;}
.y4{bottom:5.578933px;}
.yb{bottom:5.578970px;}
.y2{bottom:6.478924px;}
.y67{bottom:100.740240px;}
.y78{bottom:102.900259px;}
.y77{bottom:105.240258px;}
.y65{bottom:123.960240px;}
.ye0{bottom:135.480246px;}
.y63{bottom:147.180240px;}
.yde{bottom:149.880240px;}
.y62{bottom:151.679939px;}
.y105{bottom:153.839938px;}
.ydc{bottom:168.060240px;}
.y60{bottom:170.220240px;}
.ydb{bottom:172.019931px;}
.y5f{bottom:174.719930px;}
.yd9{bottom:186.420600px;}
.yd8{bottom:190.379924px;}
.y5d{bottom:193.440600px;}
.y5c{bottom:197.939921px;}
.yd6{bottom:204.780600px;}
.y81{bottom:205.499918px;}
.yd5{bottom:208.739917px;}
.y5a{bottom:216.660600px;}
.y59{bottom:218.819912px;}
.y58{bottom:221.159912px;}
.yd4{bottom:232.679907px;}
.y56{bottom:239.700600px;}
.y76{bottom:244.199902px;}
.y75{bottom:251.759899px;}
.yd3{bottom:257.879897px;}
.y54{bottom:262.920600px;}
.yd1{bottom:276.420600px;}
.yd0{bottom:280.919888px;}
.y52{bottom:286.140600px;}
.y73{bottom:288.299885px;}
.y74{bottom:290.639884px;}
.yce{bottom:299.640600px;}
.ycd{bottom:304.139878px;}
.y50{bottom:309.360600px;}
.y4f{bottom:313.859874px;}
.ycb{bottom:322.860600px;}
.y104{bottom:327.359869px;}
.y4d{bottom:332.400600px;}
.y4c{bottom:336.899865px;}
.yc9{bottom:345.900600px;}
.yc8{bottom:350.399860px;}
.y4b{bottom:371.099852px;}
.yc7{bottom:373.619851px;}
.y4a{bottom:396.299841px;}
.yc6{bottom:396.839841px;}
.y102{bottom:418.800600px;}
.y48{bottom:419.519832px;}
.y49{bottom:427.079829px;}
.yc5{bottom:429.419828px;}
.yc4{bottom:431.759827px;}
.y46{bottom:438.060600px;}
.y72{bottom:440.219824px;}
.y71{bottom:442.559823px;}
.yc2{bottom:444.540600px;}
.yc1{bottom:445.799822px;}
.ybf{bottom:448.139821px;}
.y80{bottom:450.119820px;}
.y100{bottom:450.300600px;}
.y10c{bottom:453.899818px;}
.yc0{bottom:454.079818px;}
.y44{bottom:461.280600px;}
.ybd{bottom:461.820600px;}
.y70{bottom:465.779814px;}
.yfe{bottom:469.200600px;}
.yfd{bottom:472.799811px;}
.y7f{bottom:473.339811px;}
.ybb{bottom:478.200600px;}
.yba{bottom:481.799807px;}
.y42{bottom:484.500600px;}
.y41{bottom:488.999804px;}
.ye5{bottom:495.480600px;}
.yb5{bottom:501.599799px;}
.y3f{bottom:507.540600px;}
.yfc{bottom:508.079797px;}
.y3e{bottom:509.699796px;}
.y3d{bottom:512.039795px;}
.yac{bottom:518.520600px;}
.yab{bottom:521.219792px;}
.y3b{bottom:530.760600px;}
.yae{bottom:531.659787px;}
.y3a{bottom:535.259786px;}
.yfa{bottom:543.899782px;}
.yf9{bottom:546.239782px;}
.yb6{bottom:546.779781px;}
.y38{bottom:553.980600px;}
.y37{bottom:558.479777px;}
.yaf{bottom:562.439775px;}
.yfb{bottom:570.899772px;}
.y35{bottom:577.020600px;}
.y34{bottom:581.519767px;}
.yf8{bottom:593.219763px;}
.yb0{bottom:593.399763px;}
.yf7{bottom:595.559762px;}
.y32{bottom:600.240600px;}
.ye4{bottom:601.499759px;}
.y6f{bottom:604.739758px;}
.yf5{bottom:616.620600px;}
.yf4{bottom:617.879753px;}
.yf3{bottom:620.219752px;}
.yb1{bottom:624.179750px;}
.y31{bottom:629.939748px;}
.yf2{bottom:642.719743px;}
.yf1{bottom:645.059742px;}
.yb2{bottom:654.959738px;}
.y30{bottom:655.139738px;}
.yef{bottom:668.460600px;}
.yee{bottom:672.059731px;}
.ye9{bottom:672.419731px;}
.yeb{bottom:678.179729px;}
.y2f{bottom:678.359729px;}
.yea{bottom:679.259728px;}
.ye7{bottom:685.199726px;}
.yb3{bottom:685.919726px;}
.ye8{bottom:687.179725px;}
.yb8{bottom:690.240600px;}
.yb7{bottom:693.119723px;}
.yec{bottom:694.740600px;}
.y106{bottom:695.999722px;}
.y2d{bottom:696.900600px;}
.y107{bottom:698.339721px;}
.yb4{bottom:699.059720px;}
.y2c{bottom:701.399719px;}
.y108{bottom:702.300600px;}
.y10a{bottom:702.840600px;}
.y2a{bottom:720.120600px;}
.ye3{bottom:721.739711px;}
.y29{bottom:724.619710px;}
.y27{bottom:743.340600px;}
.yaa{bottom:744.959702px;}
.y26{bottom:747.839701px;}
.ya8{bottom:763.500600px;}
.y24{bottom:766.380600px;}
.y23{bottom:770.879692px;}
.y6e{bottom:778.439689px;}
.ya6{bottom:786.720600px;}
.y21{bottom:789.600600px;}
.ye2{bottom:791.219684px;}
.y7e{bottom:794.099682px;}
.ya4{bottom:809.940600px;}
.y1f{bottom:812.820600px;}
.ya3{bottom:814.439674px;}
.y1e{bottom:817.319673px;}
.ya1{bottom:832.980600px;}
.y1c{bottom:835.860600px;}
.ya0{bottom:837.479665px;}
.y1b{bottom:840.359664px;}
.y9e{bottom:856.200600px;}
.y9d{bottom:860.699656px;}
.y1a{bottom:865.559654px;}
.y9b{bottom:879.420600px;}
.ye1{bottom:883.919646px;}
.y19{bottom:887.879645px;}
.y99{bottom:902.460600px;}
.y17{bottom:904.980600px;}
.y98{bottom:906.959637px;}
.y16{bottom:908.939636px;}
.y96{bottom:925.680600px;}
.y14{bottom:926.040600px;}
.y6d{bottom:929.999628px;}
.y95{bottom:930.179628px;}
.y12{bottom:947.100600px;}
.y7d{bottom:951.059620px;}
.y94{bottom:953.399619px;}
.y92{bottom:980.940600px;}
.y91{bottom:985.439606px;}
.y11{bottom:988.499605px;}
.y8f{bottom:1004.160600px;}
.y8e{bottom:1008.659597px;}
.yf{bottom:1008.840600px;}
.yd{bottom:1013.699595px;}
.ye{bottom:1021.979591px;}
.y8c{bottom:1027.380600px;}
.y8b{bottom:1031.879587px;}
.yc{bottom:1042.859583px;}
.y89{bottom:1050.420600px;}
.y88{bottom:1052.579579px;}
.y87{bottom:1054.919578px;}
.ya{bottom:1069.320600px;}
.y85{bottom:1073.640600px;}
.y7c{bottom:1074.899570px;}
.y84{bottom:1078.139569px;}
.y83{bottom:1098.119561px;}
.y9{bottom:1099.379560px;}
.y82{bottom:1119.179552px;}
.y8{bottom:1120.079552px;}
.y6{bottom:1136.280600px;}
.y5{bottom:1141.139544px;}
.y3{bottom:1161.300600px;}
.y6b{bottom:1162.200600px;}
.y7a{bottom:1166.699533px;}
.y7b{bottom:1166.879533px;}
.y1{bottom:1184.340600px;}
.y69{bottom:1186.140600px;}
.y79{bottom:1190.819524px;}
.h27{height:2.067187px;}
.h29{height:9.000000px;}
.h28{height:9.540000px;}
.h19{height:13.860000px;}
.h1e{height:16.380000px;}
.he{height:18.180000px;}
.h24{height:18.900000px;}
.h11{height:20.340000px;}
.h6{height:21.960000px;}
.h13{height:23.940000px;}
.h8{height:25.560000px;}
.h21{height:25.839833px;}
.h3{height:25.920000px;}
.h26{height:26.138661px;}
.h12{height:29.974207px;}
.h1{height:30.600000px;}
.h20{height:33.345690px;}
.hb{height:35.025806px;}
.h1a{height:38.412262px;}
.h1f{height:38.759750px;}
.h1d{height:39.207992px;}
.hd{height:41.405960px;}
.h22{height:42.894123px;}
.h23{height:43.390178px;}
.h10{height:47.545293px;}
.hf{height:48.095137px;}
.h1b{height:49.296644px;}
.hc{height:49.359355px;}
.h18{height:50.621031px;}
.h5{height:51.679667px;}
.ha{height:52.277323px;}
.h4{height:56.146267px;}
.h25{height:56.487985px;}
.h14{height:60.794273px;}
.h9{height:61.164468px;}
.h15{height:61.514272px;}
.h1c{height:64.427613px;}
.h7{height:70.664034px;}
.h16{height:71.982393px;}
.h17{height:78.028914px;}
.h2{height:105.996051px;}
.h0{height:1263.000000px;}
.w49{width:0.360000px;}
.w2e{width:0.540000px;}
.w78{width:0.720000px;}
.w76{width:0.900000px;}
.wd{width:1.080000px;}
.w86{width:1.260000px;}
.w51{width:1.440000px;}
.w48{width:1.620000px;}
.w64{width:2.160000px;}
.w3c{width:2.340000px;}
.w4d{width:2.520000px;}
.w7c{width:3.600000px;}
.w1d{width:3.960000px;}
.w1f{width:4.320000px;}
.w90{width:4.500000px;}
.w5f{width:4.860000px;}
.w1c{width:5.040000px;}
.w91{width:5.760000px;}
.w1a{width:5.940000px;}
.w79{width:6.300000px;}
.w7f{width:6.660000px;}
.w75{width:7.380000px;}
.w21{width:7.560000px;}
.w77{width:8.280000px;}
.w69{width:9.180000px;}
.wf{width:10.980000px;}
.w2b{width:12.780000px;}
.w3e{width:13.860000px;}
.w24{width:15.660000px;}
.w54{width:16.020000px;}
.w6e{width:16.380000px;}
.w5b{width:16.740000px;}
.w72{width:17.280000px;}
.w8c{width:18.000000px;}
.w3a{width:22.500000px;}
.w30{width:27.540000px;}
.wb{width:29.880000px;}
.w58{width:31.500000px;}
.w4c{width:32.220000px;}
.w12{width:32.400000px;}
.w5a{width:33.660000px;}
.w1{width:35.640000px;}
.w28{width:36.540000px;}
.w10{width:37.620000px;}
.w11{width:37.980000px;}
.w5c{width:39.060000px;}
.w60{width:39.240000px;}
.w27{width:39.420000px;}
.w31{width:39.960000px;}
.w3{width:40.680000px;}
.w53{width:40.860000px;}
.w67{width:42.120000px;}
.w93{width:44.100000px;}
.w35{width:44.280000px;}
.w15{width:46.260000px;}
.w84{width:46.440000px;}
.w70{width:48.960000px;}
.w96{width:51.120000px;}
.w13{width:51.840000px;}
.w22{width:54.180000px;}
.w88{width:56.340000px;}
.w7e{width:57.600000px;}
.w4f{width:57.960000px;}
.w83{width:61.380000px;}
.w32{width:62.100000px;}
.w66{width:62.280000px;}
.w8a{width:63.900000px;}
.w80{width:64.980000px;}
.wa{width:73.980000px;}
.w40{width:76.860000px;}
.w52{width:77.220000px;}
.we{width:78.840000px;}
.w62{width:79.020000px;}
.w5{width:79.200000px;}
.w36{width:80.280000px;}
.w4e{width:81.540000px;}
.w44{width:81.720000px;}
.w2f{width:84.780000px;}
.w43{width:86.040000px;}
.w8d{width:88.920000px;}
.w6{width:90.000000px;}
.w33{width:90.360000px;}
.w8e{width:93.060000px;}
.w94{width:93.780000px;}
.w50{width:94.140000px;}
.w8f{width:94.860000px;}
.w26{width:95.220000px;}
.w17{width:95.580000px;}
.w74{width:95.760000px;}
.w73{width:101.160000px;}
.w7d{width:101.340000px;}
.w6c{width:101.880000px;}
.w56{width:104.220000px;}
.w59{width:104.940000px;}
.w97{width:108.900000px;}
.w8{width:109.980000px;}
.w25{width:110.160000px;}
.w61{width:113.580000px;}
.w46{width:118.800000px;}
.w95{width:120.420000px;}
.w7b{width:121.140000px;}
.w19{width:122.040000px;}
.w68{width:125.640000px;}
.w38{width:127.980000px;}
.w7a{width:129.960000px;}
.w7{width:130.320000px;}
.w65{width:130.500000px;}
.w47{width:131.400000px;}
.w41{width:133.380000px;}
.w92{width:145.080000px;}
.w37{width:147.420000px;}
.w9{width:148.680000px;}
.w29{width:152.280000px;}
.w2d{width:155.700000px;}
.w45{width:162.360000px;}
.w16{width:163.440000px;}
.w34{width:163.620000px;}
.w4a{width:165.960000px;}
.w4b{width:166.140000px;}
.w2c{width:167.040000px;}
.w8b{width:167.580000px;}
.w6d{width:167.940000px;}
.w55{width:171.180000px;}
.w20{width:174.060000px;}
.w5d{width:175.680000px;}
.w42{width:184.140000px;}
.w63{width:184.680000px;}
.w14{width:194.580000px;}
.w2{width:195.300000px;}
.w18{width:200.700000px;}
.wc{width:207.180000px;}
.w57{width:211.140000px;}
.w6b{width:220.860000px;}
.w39{width:223.200000px;}
.w5e{width:225.360000px;}
.w81{width:228.600000px;}
.w4{width:237.780000px;}
.w82{width:238.500000px;}
.w3f{width:245.880000px;}
.w6a{width:251.820000px;}
.w89{width:254.340000px;}
.w2a{width:257.040000px;}
.w23{width:257.220000px;}
.w87{width:261.900000px;}
.w6f{width:273.780000px;}
.w85{width:276.300000px;}
.w3b{width:279.540000px;}
.w71{width:300.600000px;}
.w3d{width:304.920000px;}
.w1e{width:318.420000px;}
.w1b{width:322.740000px;}
.w0{width:892.500000px;}
.x6a{left:-560.520034px;}
.xdf{left:-507.420055px;}
.x6e{left:-453.060077px;}
.xcf{left:-426.960087px;}
.x71{left:-396.720100px;}
.x85{left:-369.000111px;}
.xdc{left:-361.980113px;}
.x80{left:-355.140116px;}
.x72{left:-352.620117px;}
.xcc{left:-338.760123px;}
.xde{left:-276.300148px;}
.x6f{left:-257.220155px;}
.x24{left:-237.780034px;}
.xdd{left:-228.600167px;}
.xbf{left:-225.360039px;}
.xaa{left:-211.140045px;}
.x35{left:-207.180046px;}
.x56{left:-194.580051px;}
.x8a{left:-184.140185px;}
.xbe{left:-175.680059px;}
.xa6{left:-171.180061px;}
.x5a{left:-163.440064px;}
.x77{left:-155.700196px;}
.x74{left:-152.280197px;}
.x2f{left:-148.680070px;}
.x2b{left:-130.320077px;}
.x81{left:-127.980207px;}
.x64{left:-122.040209px;}
.xc3{left:-113.580084px;}
.x2c{left:-109.980085px;}
.xa9{left:-104.220087px;}
.xd0{left:-101.880217px;}
.x5c{left:-95.580091px;}
.x29{left:-90.000093px;}
.x8b{left:-81.720226px;}
.x7d{left:-80.280226px;}
.x25{left:-79.200097px;}
.x89{left:-76.860227px;}
.x33{left:-73.980100px;}
.xe3{left:-63.900233px;}
.x79{left:-62.100233px;}
.xda{left:-57.600235px;}
.xe1{left:-56.340236px;}
.x4d{left:-51.840108px;}
.xd2{left:-48.960239px;}
.x59{left:-46.260111px;}
.xcb{left:-42.120241px;}
.x23{left:-40.680113px;}
.x73{left:-39.420242px;}
.x3f{left:-37.620114px;}
.x20{left:-35.640115px;}
.xae{left:-33.660116px;}
.x4c{left:-32.400116px;}
.x34{left:-29.880117px;}
.x78{left:-27.540247px;}
.x82{left:-22.500249px;}
.xd3{left:-17.280251px;}
.xa5{left:-16.020123px;}
.x84{left:-13.860253px;}
.x75{left:-12.780253px;}
.x3e{left:-10.980125px;}
.xcd{left:-9.180255px;}
.x66{left:-5.940256px;}
.x6c{left:-3.960257px;}
.x83{left:-2.340257px;}
.x3a{left:-1.080129px;}
.x0{left:0.000000px;}
.x3{left:84.959966px;}
.x97{left:88.559965px;}
.x99{left:97.380000px;}
.x9a{left:103.499959px;}
.x8f{left:111.600000px;}
.xe{left:115.560000px;}
.x1a{left:118.799952px;}
.x1b{left:124.019950px;}
.x2{left:127.440000px;}
.x96{left:134.819946px;}
.xa1{left:138.060000px;}
.x94{left:143.639929px;}
.x98{left:147.060000px;}
.x93{left:148.679933px;}
.x8e{left:151.560000px;}
.x7{left:153.719939px;}
.x1d{left:159.300000px;}
.x9b{left:171.539931px;}
.xb{left:174.060000px;}
.x9c{left:180.899928px;}
.x9{left:192.420000px;}
.x91{left:197.099921px;}
.xa0{left:209.160000px;}
.xa{left:212.760000px;}
.x11{left:217.799913px;}
.x12{left:223.019911px;}
.x1e{left:227.160000px;}
.x8{left:232.740000px;}
.x5{left:239.399904px;}
.x9e{left:240.479904px;}
.x6{left:243.540000px;}
.x9f{left:244.979902px;}
.xc{left:248.760000px;}
.x95{left:257.039897px;}
.x19{left:270.900000px;}
.x13{left:274.139890px;}
.x1c{left:276.480000px;}
.x14{left:279.359888px;}
.x4{left:282.060000px;}
.x92{left:283.680000px;}
.x15{left:285.120000px;}
.x1{left:287.100000px;}
.x16{left:288.179885px;}
.x18{left:290.340000px;}
.xd{left:292.860000px;}
.x17{left:296.639881px;}
.x8c{left:301.679879px;}
.x9d{left:304.379878px;}
.x8d{left:306.720000px;}
.x10{left:311.760000px;}
.x90{left:318.420000px;}
.xa2{left:320.580000px;}
.xf{left:321.660000px;}
.x1f{left:322.740000px;}
.xc6{left:323.999870px;}
.xc0{left:326.339869px;}
.x26{left:327.779869px;}
.x2a{left:330.299868px;}
.x30{left:338.399865px;}
.xa3{left:346.859861px;}
.x38{left:359.279856px;}
.x43{left:362.699855px;}
.x46{left:367.019853px;}
.xc5{left:369.180000px;}
.xb2{left:372.599851px;}
.x2d{left:376.919849px;}
.x2e{left:388.260000px;}
.x40{left:407.519837px;}
.x5f{left:408.779836px;}
.x41{left:412.739835px;}
.xc2{left:416.880000px;}
.x36{left:417.959833px;}
.x60{left:424.079830px;}
.x61{left:429.299828px;}
.xb3{left:434.340000px;}
.xb1{left:446.399821px;}
.xa7{left:448.379821px;}
.x5d{left:455.939818px;}
.x5e{left:461.340000px;}
.x4e{left:469.979812px;}
.xbc{left:480.779808px;}
.x45{left:481.860000px;}
.xb9{left:486.719805px;}
.x3d{left:489.780000px;}
.x39{left:493.200000px;}
.x28{left:496.799801px;}
.x47{left:498.779800px;}
.x48{left:503.999798px;}
.x4f{left:517.500000px;}
.x21{left:523.440000px;}
.xba{left:526.679789px;}
.x31{left:530.099788px;}
.xbb{left:531.359787px;}
.x32{left:535.320000px;}
.xbd{left:540.899784px;}
.xac{left:543.600000px;}
.x50{left:545.939782px;}
.xb0{left:549.720000px;}
.x51{left:551.159780px;}
.x49{left:553.679779px;}
.xb5{left:557.099777px;}
.x4a{left:558.899776px;}
.xc4{left:561.239776px;}
.x62{left:563.760000px;}
.x4b{left:565.200000px;}
.x5b{left:568.620000px;}
.xb4{left:573.119771px;}
.xab{left:574.559770px;}
.xb6{left:576.719769px;}
.x3b{left:579.779768px;}
.xc9{left:581.580000px;}
.x44{left:583.380000px;}
.xc7{left:584.639766px;}
.xc1{left:587.880000px;}
.xc8{left:589.140000px;}
.xb7{left:592.739763px;}
.xaf{left:596.520000px;}
.x53{left:602.279759px;}
.xa4{left:603.360000px;}
.x37{left:606.060000px;}
.x54{left:607.499757px;}
.xb8{left:613.259755px;}
.x42{left:617.940000px;}
.x52{left:622.980000px;}
.x57{left:627.659749px;}
.xad{left:629.100000px;}
.x58{left:631.620000px;}
.x3c{left:632.700000px;}
.xa8{left:636.300000px;}
.x22{left:639.540000px;}
.x27{left:641.520000px;}
.x55{left:643.140000px;}
.x63{left:645.480000px;}
.x6d{left:647.099741px;}
.xd8{left:660.779736px;}
.xce{left:663.479735px;}
.x70{left:677.699729px;}
.xd9{left:681.839727px;}
.xdb{left:689.579724px;}
.x68{left:691.919723px;}
.xe2{left:696.599721px;}
.x7a{left:703.439719px;}
.x86{left:722.699711px;}
.x76{left:727.019709px;}
.xd1{left:734.399706px;}
.x7b{left:735.839706px;}
.x87{left:736.919705px;}
.xd4{left:738.539705px;}
.x7e{left:739.619704px;}
.x7c{left:741.059704px;}
.xd5{left:744.839702px;}
.x88{left:746.099702px;}
.x7f{left:748.079701px;}
.xd6{left:754.380000px;}
.xd7{left:759.420000px;}
.x67{left:764.459694px;}
.xe0{left:765.899694px;}
.x69{left:770.399692px;}
.x6b{left:776.879689px;}
.x65{left:807.839677px;}
.xca{left:813.059675px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.199999pt;}
.v2{vertical-align:15.359994pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.054560pt;}
.ls5{letter-spacing:0.162347pt;}
.ls1{letter-spacing:0.247853pt;}
.ls0{letter-spacing:0.333942pt;}
.ls4{letter-spacing:0.802773pt;}
.ls6{letter-spacing:115.304239pt;}
.ws4{word-spacing:-18.719993pt;}
.ws0{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.005115pt;}
.ws6{word-spacing:-11.161916pt;}
.wsa{word-spacing:-10.847996pt;}
.ws7{word-spacing:-8.697437pt;}
.ws3{word-spacing:-8.389117pt;}
.ws8{word-spacing:-7.999997pt;}
.ws9{word-spacing:-7.231997pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.280734pt;}
._1{width:1.089394pt;}
._9{width:2.193073pt;}
._6{width:3.685973pt;}
._7{width:4.787338pt;}
._a{width:5.776119pt;}
._c{width:6.953658pt;}
._5{width:8.459644pt;}
._4{width:9.851370pt;}
._3{width:10.992021pt;}
._2{width:12.017476pt;}
._e{width:14.198434pt;}
._d{width:15.141526pt;}
._11{width:17.990245pt;}
._10{width:18.961545pt;}
._b{width:20.350099pt;}
._8{width:27.143269pt;}
._19{width:34.504339pt;}
._1a{width:46.890391pt;}
._18{width:81.364805pt;}
._20{width:92.202373pt;}
._16{width:100.569636pt;}
._15{width:102.496906pt;}
._1e{width:105.056316pt;}
._17{width:112.736602pt;}
._12{width:114.780266pt;}
._1f{width:117.223283pt;}
._14{width:129.386136pt;}
._f{width:136.589165pt;}
._1c{width:139.678612pt;}
._13{width:146.682206pt;}
._1d{width:151.160660pt;}
._1b{width:172.337313pt;}
.fsc{font-size:2.559999pt;}
.fsb{font-size:31.999987pt;}
.fs8{font-size:34.789746pt;}
.fs6{font-size:37.119985pt;}
.fs3{font-size:42.879983pt;}
.fs7{font-size:44.647662pt;}
.fsa{font-size:47.999981pt;}
.fs4{font-size:53.119979pt;}
.fs9{font-size:56.825044pt;}
.fs5{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.fs0{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:1.599216pt;}
.y10b{bottom:2.079216pt;}
.yad{bottom:2.399281pt;}
.yb9{bottom:2.559220pt;}
.ye6{bottom:2.719289pt;}
.yed{bottom:3.199218pt;}
.yf0{bottom:3.199228pt;}
.yf6{bottom:3.199246pt;}
.ybc{bottom:3.199295pt;}
.yff{bottom:3.199299pt;}
.ybe{bottom:3.199301pt;}
.y101{bottom:3.199305pt;}
.yc3{bottom:3.199307pt;}
.y13{bottom:3.519129pt;}
.y15{bottom:3.519136pt;}
.y18{bottom:3.519143pt;}
.yd7{bottom:3.519392pt;}
.yda{bottom:3.519399pt;}
.ydd{bottom:3.519726pt;}
.ydf{bottom:3.519732pt;}
.y86{bottom:3.999083pt;}
.y8a{bottom:3.999092pt;}
.y8d{bottom:3.999100pt;}
.y90{bottom:3.999108pt;}
.y93{bottom:3.999116pt;}
.y97{bottom:3.999136pt;}
.y9a{bottom:3.999144pt;}
.y9c{bottom:3.999152pt;}
.y9f{bottom:3.999161pt;}
.y1d{bottom:3.999168pt;}
.ya2{bottom:3.999169pt;}
.y20{bottom:3.999176pt;}
.ya5{bottom:3.999177pt;}
.y22{bottom:3.999184pt;}
.ya7{bottom:3.999185pt;}
.y25{bottom:3.999193pt;}
.ya9{bottom:3.999194pt;}
.y28{bottom:3.999201pt;}
.y2b{bottom:3.999209pt;}
.y2e{bottom:3.999217pt;}
.y33{bottom:3.999252pt;}
.y36{bottom:3.999260pt;}
.y39{bottom:3.999268pt;}
.y3c{bottom:3.999276pt;}
.y40{bottom:3.999285pt;}
.y43{bottom:3.999293pt;}
.y45{bottom:3.999301pt;}
.y47{bottom:3.999309pt;}
.y103{bottom:3.999316pt;}
.yca{bottom:3.999342pt;}
.y4e{bottom:3.999347pt;}
.ycc{bottom:3.999350pt;}
.y51{bottom:3.999355pt;}
.ycf{bottom:3.999359pt;}
.y53{bottom:3.999363pt;}
.yd2{bottom:3.999367pt;}
.y55{bottom:3.999372pt;}
.y57{bottom:3.999380pt;}
.y5b{bottom:3.999388pt;}
.y5e{bottom:3.999396pt;}
.y61{bottom:3.999725pt;}
.y64{bottom:3.999733pt;}
.y66{bottom:4.000008pt;}
.y68{bottom:4.000016pt;}
.y6a{bottom:4.159043pt;}
.y6c{bottom:4.159052pt;}
.y7{bottom:4.319061pt;}
.y10{bottom:4.319106pt;}
.y4{bottom:4.959052pt;}
.yb{bottom:4.959084pt;}
.y2{bottom:5.759043pt;}
.y67{bottom:89.546880pt;}
.y78{bottom:91.466897pt;}
.y77{bottom:93.546896pt;}
.y65{bottom:110.186880pt;}
.ye0{bottom:120.426885pt;}
.y63{bottom:130.826880pt;}
.yde{bottom:133.226880pt;}
.y62{bottom:134.826613pt;}
.y105{bottom:136.746612pt;}
.ydc{bottom:149.386880pt;}
.y60{bottom:151.306880pt;}
.ydb{bottom:152.906606pt;}
.y5f{bottom:155.306605pt;}
.yd9{bottom:165.707200pt;}
.yd8{bottom:169.226599pt;}
.y5d{bottom:171.947200pt;}
.y5c{bottom:175.946596pt;}
.yd6{bottom:182.027200pt;}
.y81{bottom:182.666594pt;}
.yd5{bottom:185.546592pt;}
.y5a{bottom:192.587200pt;}
.y59{bottom:194.506589pt;}
.y58{bottom:196.586588pt;}
.yd4{bottom:206.826584pt;}
.y56{bottom:213.067200pt;}
.y76{bottom:217.066580pt;}
.y75{bottom:223.786577pt;}
.yd3{bottom:229.226575pt;}
.y54{bottom:233.707200pt;}
.yd1{bottom:245.707200pt;}
.yd0{bottom:249.706567pt;}
.y52{bottom:254.347200pt;}
.y73{bottom:256.266564pt;}
.y74{bottom:258.346563pt;}
.yce{bottom:266.347200pt;}
.ycd{bottom:270.346559pt;}
.y50{bottom:274.987200pt;}
.y4f{bottom:278.986555pt;}
.ycb{bottom:286.987200pt;}
.y104{bottom:290.986550pt;}
.y4d{bottom:295.467200pt;}
.y4c{bottom:299.466547pt;}
.yc9{bottom:307.467200pt;}
.yc8{bottom:311.466542pt;}
.y4b{bottom:329.866535pt;}
.yc7{bottom:332.106534pt;}
.y4a{bottom:352.266526pt;}
.yc6{bottom:352.746526pt;}
.y102{bottom:372.267200pt;}
.y48{bottom:372.906518pt;}
.y49{bottom:379.626515pt;}
.yc5{bottom:381.706514pt;}
.yc4{bottom:383.786513pt;}
.y46{bottom:389.387200pt;}
.y72{bottom:391.306510pt;}
.y71{bottom:393.386509pt;}
.yc2{bottom:395.147200pt;}
.yc1{bottom:396.266508pt;}
.ybf{bottom:398.346507pt;}
.y80{bottom:400.106507pt;}
.y100{bottom:400.267200pt;}
.y10c{bottom:403.466505pt;}
.yc0{bottom:403.626505pt;}
.y44{bottom:410.027200pt;}
.ybd{bottom:410.507200pt;}
.y70{bottom:414.026501pt;}
.yfe{bottom:417.067200pt;}
.yfd{bottom:420.266499pt;}
.y7f{bottom:420.746498pt;}
.ybb{bottom:425.067200pt;}
.yba{bottom:428.266495pt;}
.y42{bottom:430.667200pt;}
.y41{bottom:434.666493pt;}
.ye5{bottom:440.427200pt;}
.yb5{bottom:445.866488pt;}
.y3f{bottom:451.147200pt;}
.yfc{bottom:451.626486pt;}
.y3e{bottom:453.066485pt;}
.y3d{bottom:455.146485pt;}
.yac{bottom:460.907200pt;}
.yab{bottom:463.306481pt;}
.y3b{bottom:471.787200pt;}
.yae{bottom:472.586478pt;}
.y3a{bottom:475.786476pt;}
.yfa{bottom:483.466473pt;}
.yf9{bottom:485.546472pt;}
.yb6{bottom:486.026472pt;}
.y38{bottom:492.427200pt;}
.y37{bottom:496.426468pt;}
.yaf{bottom:499.946467pt;}
.yfb{bottom:507.466464pt;}
.y35{bottom:512.907200pt;}
.y34{bottom:516.906460pt;}
.yf8{bottom:527.306456pt;}
.yb0{bottom:527.466456pt;}
.yf7{bottom:529.386455pt;}
.y32{bottom:533.547200pt;}
.ye4{bottom:534.666453pt;}
.y6f{bottom:537.546452pt;}
.yf5{bottom:548.107200pt;}
.yf4{bottom:549.226447pt;}
.yf3{bottom:551.306446pt;}
.yb1{bottom:554.826445pt;}
.y31{bottom:559.946443pt;}
.yf2{bottom:571.306438pt;}
.yf1{bottom:573.386437pt;}
.yb2{bottom:582.186434pt;}
.y30{bottom:582.346434pt;}
.yef{bottom:594.187200pt;}
.yee{bottom:597.386428pt;}
.ye9{bottom:597.706428pt;}
.yeb{bottom:602.826426pt;}
.y2f{bottom:602.986425pt;}
.yea{bottom:603.786425pt;}
.ye7{bottom:609.066423pt;}
.yb3{bottom:609.706423pt;}
.ye8{bottom:610.826422pt;}
.yb8{bottom:613.547200pt;}
.yb7{bottom:616.106420pt;}
.yec{bottom:617.547200pt;}
.y106{bottom:618.666419pt;}
.y2d{bottom:619.467200pt;}
.y107{bottom:620.746418pt;}
.yb4{bottom:621.386418pt;}
.y2c{bottom:623.466417pt;}
.y108{bottom:624.267200pt;}
.y10a{bottom:624.747200pt;}
.y2a{bottom:640.107200pt;}
.ye3{bottom:641.546410pt;}
.y29{bottom:644.106409pt;}
.y27{bottom:660.747200pt;}
.yaa{bottom:662.186402pt;}
.y26{bottom:664.746401pt;}
.ya8{bottom:678.667200pt;}
.y24{bottom:681.227200pt;}
.y23{bottom:685.226393pt;}
.y6e{bottom:691.946390pt;}
.ya6{bottom:699.307200pt;}
.y21{bottom:701.867200pt;}
.ye2{bottom:703.306385pt;}
.y7e{bottom:705.866384pt;}
.ya4{bottom:719.947200pt;}
.y1f{bottom:722.507200pt;}
.ya3{bottom:723.946377pt;}
.y1e{bottom:726.506376pt;}
.ya1{bottom:740.427200pt;}
.y1c{bottom:742.987200pt;}
.ya0{bottom:744.426369pt;}
.y1b{bottom:746.986368pt;}
.y9e{bottom:761.067200pt;}
.y9d{bottom:765.066361pt;}
.y1a{bottom:769.386359pt;}
.y9b{bottom:781.707200pt;}
.ye1{bottom:785.706352pt;}
.y19{bottom:789.226351pt;}
.y99{bottom:802.187200pt;}
.y17{bottom:804.427200pt;}
.y98{bottom:806.186344pt;}
.y16{bottom:807.946343pt;}
.y96{bottom:822.827200pt;}
.y14{bottom:823.147200pt;}
.y6d{bottom:826.666336pt;}
.y95{bottom:826.826336pt;}
.y12{bottom:841.867200pt;}
.y7d{bottom:845.386329pt;}
.y94{bottom:847.466328pt;}
.y92{bottom:871.947200pt;}
.y91{bottom:875.946316pt;}
.y11{bottom:878.666315pt;}
.y8f{bottom:892.587200pt;}
.y8e{bottom:896.586308pt;}
.yf{bottom:896.747200pt;}
.yd{bottom:901.066306pt;}
.ye{bottom:908.426303pt;}
.y8c{bottom:913.227200pt;}
.y8b{bottom:917.226300pt;}
.yc{bottom:926.986296pt;}
.y89{bottom:933.707200pt;}
.y88{bottom:935.626292pt;}
.y87{bottom:937.706292pt;}
.ya{bottom:950.507200pt;}
.y85{bottom:954.347200pt;}
.y7c{bottom:955.466284pt;}
.y84{bottom:958.346283pt;}
.y83{bottom:976.106276pt;}
.y9{bottom:977.226276pt;}
.y82{bottom:994.826269pt;}
.y8{bottom:995.626268pt;}
.y6{bottom:1010.027200pt;}
.y5{bottom:1014.346261pt;}
.y3{bottom:1032.267200pt;}
.y6b{bottom:1033.067200pt;}
.y7a{bottom:1037.066252pt;}
.y7b{bottom:1037.226252pt;}
.y1{bottom:1052.747200pt;}
.y69{bottom:1054.347200pt;}
.y79{bottom:1058.506243pt;}
.h27{height:1.837499pt;}
.h29{height:8.000000pt;}
.h28{height:8.480000pt;}
.h19{height:12.320000pt;}
.h1e{height:14.560000pt;}
.he{height:16.160000pt;}
.h24{height:16.800000pt;}
.h11{height:18.080000pt;}
.h6{height:19.520000pt;}
.h13{height:21.280000pt;}
.h8{height:22.720000pt;}
.h21{height:22.968741pt;}
.h3{height:23.040000pt;}
.h26{height:23.234366pt;}
.h12{height:26.643739pt;}
.h1{height:27.200000pt;}
.h20{height:29.640613pt;}
.hb{height:31.134050pt;}
.h1a{height:34.144233pt;}
.h1f{height:34.453111pt;}
.h1d{height:34.851549pt;}
.hd{height:36.805298pt;}
.h22{height:38.128110pt;}
.h23{height:38.569047pt;}
.h10{height:42.262483pt;}
.hf{height:42.751233pt;}
.h1b{height:43.819239pt;}
.hc{height:43.874982pt;}
.h18{height:44.996472pt;}
.h5{height:45.937482pt;}
.ha{height:46.468731pt;}
.h4{height:49.907793pt;}
.h25{height:50.211542pt;}
.h14{height:54.039353pt;}
.h9{height:54.368416pt;}
.h15{height:54.679353pt;}
.h1c{height:57.268990pt;}
.h7{height:62.812475pt;}
.h16{height:63.984349pt;}
.h17{height:69.359035pt;}
.h2{height:94.218712pt;}
.h0{height:1122.666667pt;}
.w49{width:0.320000pt;}
.w2e{width:0.480000pt;}
.w78{width:0.640000pt;}
.w76{width:0.800000pt;}
.wd{width:0.960000pt;}
.w86{width:1.120000pt;}
.w51{width:1.280000pt;}
.w48{width:1.440000pt;}
.w64{width:1.920000pt;}
.w3c{width:2.080000pt;}
.w4d{width:2.240000pt;}
.w7c{width:3.200000pt;}
.w1d{width:3.520000pt;}
.w1f{width:3.840000pt;}
.w90{width:4.000000pt;}
.w5f{width:4.320000pt;}
.w1c{width:4.480000pt;}
.w91{width:5.120000pt;}
.w1a{width:5.280000pt;}
.w79{width:5.600000pt;}
.w7f{width:5.920000pt;}
.w75{width:6.560000pt;}
.w21{width:6.720000pt;}
.w77{width:7.360000pt;}
.w69{width:8.160000pt;}
.wf{width:9.760000pt;}
.w2b{width:11.360000pt;}
.w3e{width:12.320000pt;}
.w24{width:13.920000pt;}
.w54{width:14.240000pt;}
.w6e{width:14.560000pt;}
.w5b{width:14.880000pt;}
.w72{width:15.360000pt;}
.w8c{width:16.000000pt;}
.w3a{width:20.000000pt;}
.w30{width:24.480000pt;}
.wb{width:26.560000pt;}
.w58{width:28.000000pt;}
.w4c{width:28.640000pt;}
.w12{width:28.800000pt;}
.w5a{width:29.920000pt;}
.w1{width:31.680000pt;}
.w28{width:32.480000pt;}
.w10{width:33.440000pt;}
.w11{width:33.760000pt;}
.w5c{width:34.720000pt;}
.w60{width:34.880000pt;}
.w27{width:35.040000pt;}
.w31{width:35.520000pt;}
.w3{width:36.160000pt;}
.w53{width:36.320000pt;}
.w67{width:37.440000pt;}
.w93{width:39.200000pt;}
.w35{width:39.360000pt;}
.w15{width:41.120000pt;}
.w84{width:41.280000pt;}
.w70{width:43.520000pt;}
.w96{width:45.440000pt;}
.w13{width:46.080000pt;}
.w22{width:48.160000pt;}
.w88{width:50.080000pt;}
.w7e{width:51.200000pt;}
.w4f{width:51.520000pt;}
.w83{width:54.560000pt;}
.w32{width:55.200000pt;}
.w66{width:55.360000pt;}
.w8a{width:56.800000pt;}
.w80{width:57.760000pt;}
.wa{width:65.760000pt;}
.w40{width:68.320000pt;}
.w52{width:68.640000pt;}
.we{width:70.080000pt;}
.w62{width:70.240000pt;}
.w5{width:70.400000pt;}
.w36{width:71.360000pt;}
.w4e{width:72.480000pt;}
.w44{width:72.640000pt;}
.w2f{width:75.360000pt;}
.w43{width:76.480000pt;}
.w8d{width:79.040000pt;}
.w6{width:80.000000pt;}
.w33{width:80.320000pt;}
.w8e{width:82.720000pt;}
.w94{width:83.360000pt;}
.w50{width:83.680000pt;}
.w8f{width:84.320000pt;}
.w26{width:84.640000pt;}
.w17{width:84.960000pt;}
.w74{width:85.120000pt;}
.w73{width:89.920000pt;}
.w7d{width:90.080000pt;}
.w6c{width:90.560000pt;}
.w56{width:92.640000pt;}
.w59{width:93.280000pt;}
.w97{width:96.800000pt;}
.w8{width:97.760000pt;}
.w25{width:97.920000pt;}
.w61{width:100.960000pt;}
.w46{width:105.600000pt;}
.w95{width:107.040000pt;}
.w7b{width:107.680000pt;}
.w19{width:108.480000pt;}
.w68{width:111.680000pt;}
.w38{width:113.760000pt;}
.w7a{width:115.520000pt;}
.w7{width:115.840000pt;}
.w65{width:116.000000pt;}
.w47{width:116.800000pt;}
.w41{width:118.560000pt;}
.w92{width:128.960000pt;}
.w37{width:131.040000pt;}
.w9{width:132.160000pt;}
.w29{width:135.360000pt;}
.w2d{width:138.400000pt;}
.w45{width:144.320000pt;}
.w16{width:145.280000pt;}
.w34{width:145.440000pt;}
.w4a{width:147.520000pt;}
.w4b{width:147.680000pt;}
.w2c{width:148.480000pt;}
.w8b{width:148.960000pt;}
.w6d{width:149.280000pt;}
.w55{width:152.160000pt;}
.w20{width:154.720000pt;}
.w5d{width:156.160000pt;}
.w42{width:163.680000pt;}
.w63{width:164.160000pt;}
.w14{width:172.960000pt;}
.w2{width:173.600000pt;}
.w18{width:178.400000pt;}
.wc{width:184.160000pt;}
.w57{width:187.680000pt;}
.w6b{width:196.320000pt;}
.w39{width:198.400000pt;}
.w5e{width:200.320000pt;}
.w81{width:203.200000pt;}
.w4{width:211.360000pt;}
.w82{width:212.000000pt;}
.w3f{width:218.560000pt;}
.w6a{width:223.840000pt;}
.w89{width:226.080000pt;}
.w2a{width:228.480000pt;}
.w23{width:228.640000pt;}
.w87{width:232.800000pt;}
.w6f{width:243.360000pt;}
.w85{width:245.600000pt;}
.w3b{width:248.480000pt;}
.w71{width:267.200000pt;}
.w3d{width:271.040000pt;}
.w1e{width:283.040000pt;}
.w1b{width:286.880000pt;}
.w0{width:793.333333pt;}
.x6a{left:-498.240030pt;}
.xdf{left:-451.040049pt;}
.x6e{left:-402.720068pt;}
.xcf{left:-379.520078pt;}
.x71{left:-352.640088pt;}
.x85{left:-328.000098pt;}
.xdc{left:-321.760101pt;}
.x80{left:-315.680103pt;}
.x72{left:-313.440104pt;}
.xcc{left:-301.120109pt;}
.xde{left:-245.600131pt;}
.x6f{left:-228.640138pt;}
.x24{left:-211.360030pt;}
.xdd{left:-203.200148pt;}
.xbf{left:-200.320035pt;}
.xaa{left:-187.680040pt;}
.x35{left:-184.160041pt;}
.x56{left:-172.960046pt;}
.x8a{left:-163.680164pt;}
.xbe{left:-156.160052pt;}
.xa6{left:-152.160054pt;}
.x5a{left:-145.280057pt;}
.x77{left:-138.400174pt;}
.x74{left:-135.360175pt;}
.x2f{left:-132.160062pt;}
.x2b{left:-115.840068pt;}
.x81{left:-113.760184pt;}
.x64{left:-108.480186pt;}
.xc3{left:-100.960074pt;}
.x2c{left:-97.760076pt;}
.xa9{left:-92.640078pt;}
.xd0{left:-90.560193pt;}
.x5c{left:-84.960081pt;}
.x29{left:-80.000083pt;}
.x8b{left:-72.640200pt;}
.x7d{left:-71.360201pt;}
.x25{left:-70.400087pt;}
.x89{left:-68.320202pt;}
.x33{left:-65.760088pt;}
.xe3{left:-56.800207pt;}
.x79{left:-55.200207pt;}
.xda{left:-51.200209pt;}
.xe1{left:-50.080209pt;}
.x4d{left:-46.080096pt;}
.xd2{left:-43.520212pt;}
.x59{left:-41.120098pt;}
.xcb{left:-37.440215pt;}
.x23{left:-36.160100pt;}
.x73{left:-35.040215pt;}
.x3f{left:-33.440101pt;}
.x20{left:-31.680102pt;}
.xae{left:-29.920103pt;}
.x4c{left:-28.800103pt;}
.x34{left:-26.560104pt;}
.x78{left:-24.480220pt;}
.x82{left:-20.000222pt;}
.xd3{left:-15.360223pt;}
.xa5{left:-14.240109pt;}
.x84{left:-12.320225pt;}
.x75{left:-11.360225pt;}
.x3e{left:-9.760111pt;}
.xcd{left:-8.160226pt;}
.x66{left:-5.280227pt;}
.x6c{left:-3.520228pt;}
.x83{left:-2.080229pt;}
.x3a{left:-0.960114pt;}
.x0{left:0.000000pt;}
.x3{left:75.519970pt;}
.x97{left:78.719969pt;}
.x99{left:86.560000pt;}
.x9a{left:91.999963pt;}
.x8f{left:99.200000pt;}
.xe{left:102.720000pt;}
.x1a{left:105.599958pt;}
.x1b{left:110.239956pt;}
.x2{left:113.280000pt;}
.x96{left:119.839952pt;}
.xa1{left:122.720000pt;}
.x94{left:127.679937pt;}
.x98{left:130.720000pt;}
.x93{left:132.159940pt;}
.x8e{left:134.720000pt;}
.x7{left:136.639945pt;}
.x1d{left:141.600000pt;}
.x9b{left:152.479939pt;}
.xb{left:154.720000pt;}
.x9c{left:160.799936pt;}
.x9{left:171.040000pt;}
.x91{left:175.199930pt;}
.xa0{left:185.920000pt;}
.xa{left:189.120000pt;}
.x11{left:193.599923pt;}
.x12{left:198.239921pt;}
.x1e{left:201.920000pt;}
.x8{left:206.880000pt;}
.x5{left:212.799915pt;}
.x9e{left:213.759914pt;}
.x6{left:216.480000pt;}
.x9f{left:217.759913pt;}
.xc{left:221.120000pt;}
.x95{left:228.479909pt;}
.x19{left:240.800000pt;}
.x13{left:243.679903pt;}
.x1c{left:245.760000pt;}
.x14{left:248.319901pt;}
.x4{left:250.720000pt;}
.x92{left:252.160000pt;}
.x15{left:253.440000pt;}
.x1{left:255.200000pt;}
.x16{left:256.159898pt;}
.x18{left:258.080000pt;}
.xd{left:260.320000pt;}
.x17{left:263.679895pt;}
.x8c{left:268.159893pt;}
.x9d{left:270.559892pt;}
.x8d{left:272.640000pt;}
.x10{left:277.120000pt;}
.x90{left:283.040000pt;}
.xa2{left:284.960000pt;}
.xf{left:285.920000pt;}
.x1f{left:286.880000pt;}
.xc6{left:287.999885pt;}
.xc0{left:290.079884pt;}
.x26{left:291.359883pt;}
.x2a{left:293.599883pt;}
.x30{left:300.799880pt;}
.xa3{left:308.319877pt;}
.x38{left:319.359872pt;}
.x43{left:322.399871pt;}
.x46{left:326.239870pt;}
.xc5{left:328.160000pt;}
.xb2{left:331.199868pt;}
.x2d{left:335.039866pt;}
.x2e{left:345.120000pt;}
.x40{left:362.239855pt;}
.x5f{left:363.359855pt;}
.x41{left:366.879853pt;}
.xc2{left:370.560000pt;}
.x36{left:371.519851pt;}
.x60{left:376.959849pt;}
.x61{left:381.599847pt;}
.xb3{left:386.080000pt;}
.xb1{left:396.799841pt;}
.xa7{left:398.559841pt;}
.x5d{left:405.279838pt;}
.x5e{left:410.080000pt;}
.x4e{left:417.759833pt;}
.xbc{left:427.359829pt;}
.x45{left:428.320000pt;}
.xb9{left:432.639827pt;}
.x3d{left:435.360000pt;}
.x39{left:438.400000pt;}
.x28{left:441.599823pt;}
.x47{left:443.359823pt;}
.x48{left:447.999821pt;}
.x4f{left:460.000000pt;}
.x21{left:465.280000pt;}
.xba{left:468.159813pt;}
.x31{left:471.199812pt;}
.xbb{left:472.319811pt;}
.x32{left:475.840000pt;}
.xbd{left:480.799808pt;}
.xac{left:483.200000pt;}
.x50{left:485.279806pt;}
.xb0{left:488.640000pt;}
.x51{left:489.919804pt;}
.x49{left:492.159803pt;}
.xb5{left:495.199802pt;}
.x4a{left:496.799801pt;}
.xc4{left:498.879800pt;}
.x62{left:501.120000pt;}
.x4b{left:502.400000pt;}
.x5b{left:505.440000pt;}
.xb4{left:509.439796pt;}
.xab{left:510.719796pt;}
.xb6{left:512.639795pt;}
.x3b{left:515.359794pt;}
.xc9{left:516.960000pt;}
.x44{left:518.560000pt;}
.xc7{left:519.679792pt;}
.xc1{left:522.560000pt;}
.xc8{left:523.680000pt;}
.xb7{left:526.879789pt;}
.xaf{left:530.240000pt;}
.x53{left:535.359786pt;}
.xa4{left:536.320000pt;}
.x37{left:538.720000pt;}
.x54{left:539.999784pt;}
.xb8{left:545.119782pt;}
.x42{left:549.280000pt;}
.x52{left:553.760000pt;}
.x57{left:557.919777pt;}
.xad{left:559.200000pt;}
.x58{left:561.440000pt;}
.x3c{left:562.400000pt;}
.xa8{left:565.600000pt;}
.x22{left:568.480000pt;}
.x27{left:570.240000pt;}
.x55{left:571.680000pt;}
.x63{left:573.760000pt;}
.x6d{left:575.199770pt;}
.xd8{left:587.359765pt;}
.xce{left:589.759764pt;}
.x70{left:602.399759pt;}
.xd9{left:606.079758pt;}
.xdb{left:612.959755pt;}
.x68{left:615.039754pt;}
.xe2{left:619.199752pt;}
.x7a{left:625.279750pt;}
.x86{left:642.399743pt;}
.x76{left:646.239742pt;}
.xd1{left:652.799739pt;}
.x7b{left:654.079738pt;}
.x87{left:655.039738pt;}
.xd4{left:656.479737pt;}
.x7e{left:657.439737pt;}
.x7c{left:658.719737pt;}
.xd5{left:662.079735pt;}
.x88{left:663.199735pt;}
.x7f{left:664.959734pt;}
.xd6{left:670.560000pt;}
.xd7{left:675.040000pt;}
.x67{left:679.519728pt;}
.xe0{left:680.799728pt;}
.x69{left:684.799726pt;}
.x6b{left:690.559724pt;}
.x65{left:718.079713pt;}
.xca{left:722.719711pt;}
}




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