
    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_034081f1d7146d79447369b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_a7ef60db6a4be57a971bc304.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_15e032fe461bdac0cffe6af1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27a121e6d168ab7208c5ef92.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4622a67e11ce9594d257a17a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_7dc668305c6e6c0d732939d6.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_36a8a94b1509dc9ab4c3fbff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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_16c997c9d398e9912755b6de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_38441ccfa43fcfbf8db3a84a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_075efa72e5f3340047e712b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968750;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_471b03df73f5f4d4eb5a89f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976250;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_bc7fa4b1b71b7447c6c4703e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.976000px;}
.v3{vertical-align:-19.978200px;}
.v4{vertical-align:-1.350000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.000000px;}
.v7{vertical-align:9.000000px;}
.v8{vertical-align:23.976000px;}
.v1{vertical-align:25.974000px;}
.v5{vertical-align:27.972000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.003000px;}
.ls6{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.008917px;}
.ls7{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.626400px;}
.lsa{letter-spacing:21.511800px;}
.ls3{letter-spacing:29.502000px;}
.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;}
}
.ws32{word-spacing:-78.000000px;}
.ws36{word-spacing:-72.288000px;}
.ws20{word-spacing:-72.000000px;}
.ws2d{word-spacing:-66.000000px;}
.ws0{word-spacing:-60.000000px;}
.ws37{word-spacing:-54.683400px;}
.ws30{word-spacing:-54.626400px;}
.ws2f{word-spacing:-54.000000px;}
.ws3a{word-spacing:-51.486000px;}
.ws39{word-spacing:-50.490000px;}
.ws35{word-spacing:-45.330600px;}
.ws31{word-spacing:-42.000000px;}
.ws38{word-spacing:-38.034000px;}
.ws34{word-spacing:-36.000000px;}
.ws2e{word-spacing:-26.844000px;}
.ws2{word-spacing:-22.500000px;}
.ws33{word-spacing:-20.988000px;}
.ws5{word-spacing:-19.500000px;}
.ws28{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.000000px;}
.ws1a{word-spacing:-12.243000px;}
.ws3{word-spacing:-11.368500px;}
.ws7{word-spacing:-8.745000px;}
.ws2c{word-spacing:-0.004800px;}
.ws8{word-spacing:0.000000px;}
.ws21{word-spacing:0.810600px;}
.ws29{word-spacing:2.035800px;}
.wsa{word-spacing:5.343195px;}
.ws27{word-spacing:5.383200px;}
.wsb{word-spacing:5.786823px;}
.ws23{word-spacing:5.875800px;}
.ws1f{word-spacing:8.139000px;}
.ws24{word-spacing:8.274600px;}
.ws25{word-spacing:11.040600px;}
.ws9{word-spacing:12.006600px;}
.ws22{word-spacing:18.948600px;}
.ws26{word-spacing:19.279800px;}
.ws2a{word-spacing:19.497600px;}
.ws2b{word-spacing:19.513200px;}
.ws1c{word-spacing:57.111000px;}
.ws1b{word-spacing:57.117000px;}
.ws1d{word-spacing:69.357000px;}
.ws1e{word-spacing:75.480000px;}
.wse{word-spacing:82.014000px;}
.ws12{word-spacing:152.694000px;}
.ws16{word-spacing:158.712000px;}
.ws18{word-spacing:174.030000px;}
.ws14{word-spacing:179.040000px;}
.wsf{word-spacing:205.920000px;}
.wsd{word-spacing:209.280000px;}
.ws19{word-spacing:228.519000px;}
.ws15{word-spacing:229.380000px;}
.ws13{word-spacing:235.920000px;}
.ws17{word-spacing:235.992000px;}
.ws11{word-spacing:532.752000px;}
.wsc{word-spacing:652.992000px;}
.ws10{word-spacing:660.024000px;}
._2e{margin-left:-3261.014400px;}
._43{margin-left:-2540.649000px;}
._9e{margin-left:-2525.055600px;}
._1a{margin-left:-2133.888000px;}
._44{margin-left:-1837.728000px;}
._aa{margin-left:-1737.959400px;}
._19{margin-left:-1599.922790px;}
._83{margin-left:-841.095000px;}
._76{margin-left:-828.187200px;}
._70{margin-left:-816.115800px;}
._8a{margin-left:-812.061600px;}
._9c{margin-left:-810.750600px;}
._67{margin-left:-807.378000px;}
._69{margin-left:-805.922400px;}
._6e{margin-left:-802.403400px;}
._60{margin-left:-798.987000px;}
._86{margin-left:-797.892000px;}
._79{margin-left:-793.109400px;}
._97{margin-left:-787.093800px;}
._3d{margin-left:-767.141400px;}
._ad{margin-left:-756.078000px;}
._74{margin-left:-751.476000px;}
._7b{margin-left:-738.176400px;}
._9a{margin-left:-723.636600px;}
._a9{margin-left:-693.936000px;}
._78{margin-left:-663.912000px;}
._80{margin-left:-657.495600px;}
._ae{margin-left:-655.927800px;}
._49{margin-left:-654.793200px;}
._84{margin-left:-641.880000px;}
._93{margin-left:-637.794000px;}
._4b{margin-left:-627.813600px;}
._4d{margin-left:-596.748000px;}
._99{margin-left:-577.944000px;}
._56{margin-left:-575.281200px;}
._54{margin-left:-572.097600px;}
._a4{margin-left:-564.292200px;}
._ac{margin-left:-553.883400px;}
._90{margin-left:-546.590400px;}
._65{margin-left:-545.256000px;}
._6c{margin-left:-541.326000px;}
._62{margin-left:-533.808000px;}
._5a{margin-left:-532.165800px;}
._a6{margin-left:-498.750000px;}
._52{margin-left:-484.308000px;}
._8c{margin-left:-480.076200px;}
._8f{margin-left:-463.208400px;}
._5e{margin-left:-458.760000px;}
._a2{margin-left:-457.367400px;}
._3f{margin-left:-411.900000px;}
._a3{margin-left:-409.549200px;}
._95{margin-left:-407.113800px;}
._ab{margin-left:-406.008000px;}
._87{margin-left:-392.173800px;}
._9b{margin-left:-390.311400px;}
._8b{margin-left:-389.056800px;}
._9f{margin-left:-388.008000px;}
._88{margin-left:-384.850800px;}
._64{margin-left:-383.556600px;}
._5d{margin-left:-379.832400px;}
._50{margin-left:-378.453000px;}
._59{margin-left:-375.984000px;}
._7f{margin-left:-371.113800px;}
._47{margin-left:-370.008000px;}
._42{margin-left:-368.163600px;}
._a8{margin-left:-366.602400px;}
._72{margin-left:-364.010400px;}
._63{margin-left:-354.311400px;}
._5c{margin-left:-353.019000px;}
._6a{margin-left:-352.008000px;}
._91{margin-left:-346.011600px;}
._92{margin-left:-335.747400px;}
._51{margin-left:-315.212400px;}
._68{margin-left:-313.286400px;}
._a5{margin-left:-311.563200px;}
._2c{margin-left:-310.080000px;}
._41{margin-left:-299.952000px;}
._48{margin-left:-296.949000px;}
._73{margin-left:-287.107800px;}
._6f{margin-left:-283.896000px;}
._8d{margin-left:-281.654400px;}
._9d{margin-left:-274.893600px;}
._61{margin-left:-272.404800px;}
._96{margin-left:-263.575200px;}
._6b{margin-left:-261.731400px;}
._82{margin-left:-248.977800px;}
._94{margin-left:-247.956000px;}
._75{margin-left:-242.800200px;}
._89{margin-left:-234.387600px;}
._66{margin-left:-232.410000px;}
._6d{margin-left:-229.434000px;}
._58{margin-left:-175.105200px;}
._98{margin-left:-173.471400px;}
._77{margin-left:-164.306400px;}
._a1{margin-left:-161.046600px;}
._7d{margin-left:-159.801000px;}
._a0{margin-left:-157.416600px;}
._7c{margin-left:-154.896000px;}
._5f{margin-left:-153.828000px;}
._7e{margin-left:-147.960000px;}
._8e{margin-left:-135.916800px;}
._85{margin-left:-106.015800px;}
._3e{margin-left:-99.087600px;}
._4e{margin-left:-88.788000px;}
._57{margin-left:-87.418200px;}
._4c{margin-left:-84.057600px;}
._4a{margin-left:-69.801600px;}
._55{margin-left:-65.470200px;}
._a7{margin-left:-51.015600px;}
._40{margin-left:-36.018000px;}
._4f{margin-left:-18.011400px;}
._2d{margin-left:-9.903600px;}
._3{margin-left:-8.262000px;}
._4{margin-left:-7.236600px;}
._5{margin-left:-6.000000px;}
._0{margin-left:-4.200000px;}
._2{margin-left:-2.360400px;}
._1{margin-left:-1.128000px;}
._b{width:1.011000px;}
._7{width:2.303400px;}
._8{width:4.165800px;}
._11{width:5.248800px;}
._17{width:6.292800px;}
._e{width:7.293600px;}
._6{width:8.389200px;}
._d{width:9.477000px;}
._15{width:10.807200px;}
._10{width:12.002400px;}
._13{width:13.881600px;}
._f{width:15.128400px;}
._c{width:16.155600px;}
._a{width:17.714400px;}
._45{width:19.105800px;}
._16{width:20.152800px;}
._9{width:21.541200px;}
._18{width:23.077200px;}
._71{width:24.092400px;}
._53{width:25.273200px;}
._46{width:26.445000px;}
._5b{width:27.577800px;}
._14{width:30.088800px;}
._7a{width:31.175400px;}
._12{width:32.393400px;}
._23{width:33.768000px;}
._81{width:38.002200px;}
._31{width:49.499028px;}
._34{width:69.360000px;}
._3b{width:87.732000px;}
._af{width:89.878800px;}
._37{width:93.840000px;}
._39{width:99.969000px;}
._25{width:117.048000px;}
._26{width:129.096000px;}
._1e{width:147.018000px;}
._3c{width:155.061000px;}
._29{width:165.308400px;}
._36{width:182.751840px;}
._20{width:194.106000px;}
._22{width:197.028000px;}
._3a{width:221.332032px;}
._38{width:234.305112px;}
._1b{width:273.654000px;}
._2f{width:281.309508px;}
._35{width:286.562736px;}
._21{width:322.908000px;}
._1d{width:340.698000px;}
._1c{width:347.388000px;}
._30{width:387.138108px;}
._32{width:409.041708px;}
._33{width:460.707168px;}
._1f{width:472.968000px;}
._27{width:536.268000px;}
._24{width:547.842000px;}
._2b{width:552.780000px;}
._28{width:841.806000px;}
._2a{width:897.300000px;}
.fc2{color:transparent;}
.fc3{color:rgb(17,17,17);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs6{font-size:41.976000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:42.880560px;}
.fsa{font-size:44.584080px;}
.fs5{font-size:45.474000px;}
.fsc{font-size:48.972000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fse{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fsd{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:106.299000px;}
.y58{bottom:106.299150px;}
.y2d{bottom:110.983950px;}
.ye1{bottom:112.017600px;}
.y71{bottom:112.113600px;}
.ya2{bottom:116.565450px;}
.yd9{bottom:117.266700px;}
.y7f{bottom:119.150100px;}
.yae{bottom:120.542700px;}
.y103{bottom:120.753300px;}
.yca{bottom:124.407600px;}
.y126{bottom:124.886100px;}
.y101{bottom:125.990700px;}
.y2c{bottom:128.983950px;}
.ye0{bottom:134.517600px;}
.y70{bottom:134.613600px;}
.yce{bottom:138.204450px;}
.ya1{bottom:139.065450px;}
.yd8{bottom:139.766700px;}
.y7e{bottom:141.650100px;}
.yad{bottom:143.042700px;}
.y56{bottom:145.214400px;}
.yc9{bottom:146.907600px;}
.y125{bottom:147.386100px;}
.y100{bottom:148.490700px;}
.y2b{bottom:151.978500px;}
.ycd{bottom:160.704000px;}
.ya0{bottom:161.565000px;}
.yac{bottom:165.543000px;}
.y55{bottom:167.715000px;}
.yc8{bottom:169.407000px;}
.y124{bottom:169.885500px;}
.y9f{bottom:184.065000px;}
.yab{bottom:188.043000px;}
.y151{bottom:189.084000px;}
.y54{bottom:190.215000px;}
.yc7{bottom:191.907000px;}
.y123{bottom:192.385500px;}
.yf4{bottom:195.507000px;}
.y2a{bottom:196.714500px;}
.y9e{bottom:206.565000px;}
.yaa{bottom:210.543000px;}
.y150{bottom:211.584000px;}
.y53{bottom:212.715000px;}
.yc6{bottom:214.407000px;}
.y122{bottom:214.885500px;}
.yf3{bottom:218.007000px;}
.y29{bottom:219.214500px;}
.y9d{bottom:229.065000px;}
.ya9{bottom:233.043000px;}
.y14f{bottom:234.084000px;}
.y52{bottom:235.215000px;}
.yc5{bottom:236.907000px;}
.y121{bottom:237.385500px;}
.yf2{bottom:240.507000px;}
.y28{bottom:241.714500px;}
.y9c{bottom:251.565000px;}
.ya8{bottom:255.543000px;}
.y14e{bottom:256.584000px;}
.y51{bottom:257.715000px;}
.yc4{bottom:259.407000px;}
.y120{bottom:259.885500px;}
.yf1{bottom:263.007000px;}
.y27{bottom:264.214500px;}
.y9b{bottom:274.065000px;}
.ya7{bottom:278.043000px;}
.y14d{bottom:279.084000px;}
.y50{bottom:280.215000px;}
.yc3{bottom:281.907000px;}
.y11f{bottom:282.385500px;}
.yf0{bottom:285.507000px;}
.y26{bottom:286.714500px;}
.y9a{bottom:296.565000px;}
.ya6{bottom:300.543000px;}
.y14c{bottom:301.584000px;}
.y4f{bottom:302.715000px;}
.yc2{bottom:304.407000px;}
.y11e{bottom:304.885500px;}
.yef{bottom:308.007000px;}
.y25{bottom:309.214500px;}
.y99{bottom:319.065000px;}
.ya5{bottom:323.043000px;}
.y14b{bottom:324.084000px;}
.y4e{bottom:325.215000px;}
.yc1{bottom:326.907000px;}
.y11d{bottom:327.385500px;}
.yee{bottom:330.507000px;}
.y24{bottom:331.714500px;}
.y98{bottom:341.565000px;}
.ya4{bottom:345.543000px;}
.y14a{bottom:346.584000px;}
.y4d{bottom:347.715000px;}
.yc0{bottom:349.407000px;}
.y11c{bottom:349.885500px;}
.yed{bottom:353.007000px;}
.y23{bottom:354.214500px;}
.y97{bottom:364.065000px;}
.ya3{bottom:368.043000px;}
.y149{bottom:369.084000px;}
.y4c{bottom:370.215000px;}
.ybf{bottom:371.907000px;}
.y11b{bottom:372.385500px;}
.yec{bottom:375.507000px;}
.y22{bottom:376.714500px;}
.y96{bottom:386.565000px;}
.ye7{bottom:390.543000px;}
.y148{bottom:391.584000px;}
.y4b{bottom:392.715000px;}
.ydd{bottom:394.407000px;}
.y11a{bottom:394.885500px;}
.yeb{bottom:398.007000px;}
.y21{bottom:399.214500px;}
.y95{bottom:409.065000px;}
.ybe{bottom:409.407000px;}
.ye6{bottom:413.043000px;}
.y16e{bottom:413.301000px;}
.y147{bottom:414.084000px;}
.y4a{bottom:415.215000px;}
.yb0{bottom:416.643000px;}
.y119{bottom:417.385500px;}
.y20{bottom:421.714500px;}
.y94{bottom:431.565000px;}
.ydc{bottom:431.907000px;}
.yea{bottom:435.507000px;}
.ye5{bottom:435.543000px;}
.ybd{bottom:436.425000px;}
.y146{bottom:436.584000px;}
.y49{bottom:437.715000px;}
.yaf{bottom:439.143000px;}
.y118{bottom:439.885500px;}
.y1f{bottom:444.214500px;}
.y16d{bottom:453.801000px;}
.y93{bottom:454.065000px;}
.ye4{bottom:458.043000px;}
.ydb{bottom:458.925000px;}
.y145{bottom:459.084000px;}
.y48{bottom:460.215000px;}
.y117{bottom:462.385500px;}
.ybc{bottom:465.525000px;}
.y92{bottom:476.565000px;}
.y16c{bottom:477.801000px;}
.ye3{bottom:480.543000px;}
.y144{bottom:481.584000px;}
.y47{bottom:482.715000px;}
.y116{bottom:484.885500px;}
.yda{bottom:488.025000px;}
.y1e{bottom:489.214500px;}
.y91{bottom:499.065000px;}
.y16b{bottom:501.801000px;}
.ye2{bottom:503.043000px;}
.y143{bottom:504.084000px;}
.y46{bottom:505.215000px;}
.y115{bottom:507.385500px;}
.ybb{bottom:525.543000px;}
.y16a{bottom:525.801000px;}
.y64{bottom:525.850500px;}
.y142{bottom:526.584000px;}
.y45{bottom:527.715000px;}
.y114{bottom:529.885500px;}
.y1d{bottom:539.542500px;}
.y90{bottom:544.065000px;}
.yba{bottom:548.043000px;}
.y63{bottom:548.350500px;}
.y141{bottom:549.084000px;}
.y169{bottom:549.801000px;}
.y44{bottom:550.215000px;}
.yfe{bottom:551.634000px;}
.y113{bottom:552.385500px;}
.y1c{bottom:557.542500px;}
.yb9{bottom:570.543000px;}
.y62{bottom:570.850500px;}
.y140{bottom:571.584000px;}
.y43{bottom:572.715000px;}
.y168{bottom:573.801000px;}
.yfd{bottom:574.134000px;}
.y112{bottom:574.885500px;}
.y8f{bottom:581.565000px;}
.y1b{bottom:583.042500px;}
.ye9{bottom:592.299000px;}
.yb8{bottom:593.043000px;}
.y13f{bottom:594.084000px;}
.y42{bottom:595.215000px;}
.y111{bottom:597.385500px;}
.y167{bottom:597.801000px;}
.y1a{bottom:601.042500px;}
.y61{bottom:608.350500px;}
.y8e{bottom:608.583000px;}
.ye8{bottom:614.799000px;}
.yb7{bottom:615.543000px;}
.y13e{bottom:616.584000px;}
.y41{bottom:617.715000px;}
.y19{bottom:619.042500px;}
.yd0{bottom:619.674000px;}
.y110{bottom:619.885500px;}
.yf6{bottom:620.422500px;}
.y166{bottom:621.801000px;}
.y18{bottom:637.042500px;}
.y8d{bottom:637.683000px;}
.yb6{bottom:638.043000px;}
.y13d{bottom:639.084000px;}
.ycf{bottom:642.174000px;}
.y10f{bottom:642.385500px;}
.yf5{bottom:642.922500px;}
.y102{bottom:643.477500px;}
.y165{bottom:645.801000px;}
.y60{bottom:645.850500px;}
.y17{bottom:655.042500px;}
.y40{bottom:655.215000px;}
.yb5{bottom:660.543000px;}
.y13c{bottom:661.584000px;}
.y10e{bottom:664.885500px;}
.y5f{bottom:668.350500px;}
.y164{bottom:669.801000px;}
.yff{bottom:670.780500px;}
.y16{bottom:673.042500px;}
.yb4{bottom:683.043000px;}
.y13b{bottom:684.084000px;}
.y7d{bottom:685.215000px;}
.y10d{bottom:687.385500px;}
.y5e{bottom:690.850500px;}
.y15{bottom:691.042500px;}
.y3f{bottom:692.715000px;}
.y163{bottom:693.801000px;}
.y8c{bottom:697.701000px;}
.yb3{bottom:705.543000px;}
.y13a{bottom:706.584000px;}
.y7c{bottom:707.715000px;}
.y14{bottom:709.042500px;}
.y10c{bottom:709.885500px;}
.y5d{bottom:713.350500px;}
.y3e{bottom:715.215000px;}
.y8b{bottom:720.201000px;}
.ydf{bottom:725.571000px;}
.y13{bottom:727.042500px;}
.yb2{bottom:728.043000px;}
.y139{bottom:729.084000px;}
.y7b{bottom:730.215000px;}
.y10b{bottom:732.385500px;}
.y5c{bottom:735.850500px;}
.y3d{bottom:737.715000px;}
.y162{bottom:740.301000px;}
.y8a{bottom:742.701000px;}
.yde{bottom:748.071000px;}
.yb1{bottom:750.543000px;}
.y138{bottom:751.584000px;}
.y7a{bottom:752.715000px;}
.y10a{bottom:754.885500px;}
.y5b{bottom:758.350500px;}
.y3c{bottom:760.215000px;}
.y89{bottom:765.201000px;}
.yd7{bottom:773.043000px;}
.y137{bottom:774.084000px;}
.y12{bottom:775.042500px;}
.y79{bottom:775.215000px;}
.y109{bottom:777.385500px;}
.y3b{bottom:782.715000px;}
.y161{bottom:790.386000px;}
.ycc{bottom:794.085000px;}
.yd6{bottom:795.543000px;}
.y5a{bottom:795.850500px;}
.y136{bottom:796.584000px;}
.y78{bottom:797.715000px;}
.y11{bottom:799.801500px;}
.y108{bottom:799.885500px;}
.y3a{bottom:805.215000px;}
.y88{bottom:810.201000px;}
.y10{bottom:812.572500px;}
.ycb{bottom:816.585000px;}
.yd5{bottom:818.043000px;}
.y135{bottom:819.084000px;}
.y77{bottom:820.215000px;}
.y107{bottom:822.385500px;}
.y160{bottom:823.380000px;}
.yf{bottom:837.331500px;}
.yd4{bottom:840.543000px;}
.y134{bottom:841.584000px;}
.y39{bottom:842.715000px;}
.y15f{bottom:844.380000px;}
.y87{bottom:847.701000px;}
.y6e{bottom:848.034000px;}
.ye{bottom:850.101000px;}
.yd3{bottom:863.043000px;}
.y133{bottom:864.084000px;}
.y76{bottom:865.215000px;}
.y15e{bottom:865.380000px;}
.y106{bottom:867.385500px;}
.y86{bottom:874.717500px;}
.yd{bottom:874.860000px;}
.y6d{bottom:876.075000px;}
.yd2{bottom:885.543000px;}
.y15d{bottom:886.380000px;}
.y132{bottom:886.584000px;}
.yc{bottom:887.631000px;}
.y38{bottom:887.715000px;}
.y85{bottom:903.817500px;}
.y6c{bottom:904.117500px;}
.y15c{bottom:907.380000px;}
.yd1{bottom:908.043000px;}
.y131{bottom:909.084000px;}
.y75{bottom:910.215000px;}
.yb{bottom:912.390000px;}
.ya{bottom:925.159500px;}
.y158{bottom:930.129000px;}
.y37{bottom:930.543000px;}
.y130{bottom:931.584000px;}
.y6b{bottom:932.160000px;}
.y74{bottom:932.715000px;}
.y9{bottom:949.918500px;}
.y15b{bottom:952.386000px;}
.y157{bottom:952.629000px;}
.y36{bottom:953.043000px;}
.y12f{bottom:954.084000px;}
.y73{bottom:955.215000px;}
.y6a{bottom:960.201000px;}
.y84{bottom:963.835500px;}
.y156{bottom:975.129000px;}
.y35{bottom:975.543000px;}
.y12e{bottom:976.584000px;}
.y105{bottom:977.715000px;}
.y69{bottom:988.243500px;}
.y8{bottom:992.689500px;}
.y155{bottom:997.629000px;}
.y34{bottom:998.043000px;}
.yfc{bottom:998.332500px;}
.y12d{bottom:999.084000px;}
.y72{bottom:1000.215000px;}
.y83{bottom:1008.835500px;}
.y15a{bottom:1012.386000px;}
.y68{bottom:1016.284500px;}
.y154{bottom:1020.129000px;}
.y33{bottom:1020.543000px;}
.yfb{bottom:1020.832500px;}
.y12c{bottom:1021.584000px;}
.y104{bottom:1022.715000px;}
.y153{bottom:1042.629000px;}
.y7{bottom:1043.017500px;}
.y32{bottom:1043.043000px;}
.yfa{bottom:1043.332500px;}
.y12b{bottom:1044.084000px;}
.y67{bottom:1044.327000px;}
.y159{bottom:1049.886000px;}
.y82{bottom:1050.100500px;}
.y31{bottom:1065.543000px;}
.yf9{bottom:1065.832500px;}
.y6{bottom:1066.473000px;}
.y12a{bottom:1066.584000px;}
.y66{bottom:1072.368000px;}
.y152{bottom:1087.629000px;}
.y30{bottom:1088.043000px;}
.y129{bottom:1089.084000px;}
.y81{bottom:1091.365500px;}
.y65{bottom:1100.064000px;}
.yf8{bottom:1103.332500px;}
.y2f{bottom:1110.543000px;}
.y128{bottom:1111.584000px;}
.y6f{bottom:1126.588500px;}
.y80{bottom:1132.629000px;}
.y2e{bottom:1133.043000px;}
.yf7{bottom:1133.350500px;}
.y127{bottom:1134.084000px;}
.y5{bottom:1144.597500px;}
.y2{bottom:1144.941000px;}
.y4{bottom:1155.543000px;}
.y1{bottom:1163.691000px;}
.y57{bottom:1166.338500px;}
.y3{bottom:1167.070500px;}
.hd{height:24.304951px;}
.h8{height:29.145445px;}
.h5{height:29.182617px;}
.h11{height:33.190008px;}
.h18{height:36.210811px;}
.h4{height:37.520508px;}
.h10{height:40.664062px;}
.h3{height:41.689453px;}
.ha{height:45.858398px;}
.h2{height:46.920000px;}
.he{height:48.761719px;}
.h12{height:48.796875px;}
.h9{height:49.992188px;}
.hc{height:50.027344px;}
.h15{height:52.417969px;}
.h14{height:52.536000px;}
.hb{height:52.863281px;}
.hf{height:54.196289px;}
.h13{height:57.312000px;}
.h7{height:57.570437px;}
.h6{height:60.996094px;}
.h19{height:61.998932px;}
.h1a{height:64.194000px;}
.h17{height:71.203125px;}
.h16{height:83.946000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x35{left:86.553450px;}
.x28{left:88.672650px;}
.x12{left:92.055150px;}
.xb{left:95.269950px;}
.x5{left:100.865250px;}
.x6{left:108.088800px;}
.x10{left:119.055150px;}
.x7{left:124.052400px;}
.xd{left:132.487200px;}
.x15{left:134.278500px;}
.xe{left:136.063050px;}
.x8{left:142.045350px;}
.xa{left:146.308050px;}
.x36{left:149.883000px;}
.x16{left:160.594950px;}
.x33{left:163.396500px;}
.xc{left:178.305000px;}
.x17{left:186.669750px;}
.x18{left:212.744700px;}
.x3a{left:216.957000px;}
.x19{left:238.819500px;}
.x3c{left:245.629500px;}
.x3d{left:259.333500px;}
.x1a{left:264.894300px;}
.x2c{left:272.284500px;}
.x3e{left:277.333500px;}
.x3b{left:280.707000px;}
.x1b{left:290.969700px;}
.x2e{left:303.933000px;}
.x9{left:308.049000px;}
.x1c{left:317.044200px;}
.x2d{left:319.129500px;}
.x2b{left:321.037500px;}
.x3f{left:328.021500px;}
.x1d{left:343.118700px;}
.x31{left:348.450000px;}
.x11{left:350.584500px;}
.x32{left:359.700000px;}
.x39{left:365.752500px;}
.x1e{left:369.193200px;}
.x37{left:371.205000px;}
.x34{left:376.201500px;}
.x38{left:383.202000px;}
.xf{left:393.541500px;}
.x1f{left:395.267700px;}
.x2a{left:397.716000px;}
.x2f{left:401.457000px;}
.x13{left:407.898000px;}
.x29{left:416.121000px;}
.x40{left:417.207000px;}
.x30{left:419.457000px;}
.x20{left:421.343700px;}
.x21{left:447.418200px;}
.x22{left:473.492700px;}
.x23{left:499.567200px;}
.x4{left:514.606500px;}
.x24{left:525.643200px;}
.x25{left:551.717700px;}
.x2{left:567.049500px;}
.x26{left:577.792200px;}
.x3{left:587.533500px;}
.x27{left:603.866700px;}
.x14{left:791.374500px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v3{vertical-align:-17.758400pt;}
.v4{vertical-align:-1.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.333333pt;}
.v7{vertical-align:8.000000pt;}
.v8{vertical-align:21.312000pt;}
.v1{vertical-align:23.088000pt;}
.v5{vertical-align:24.864000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.002667pt;}
.ls6{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.007926pt;}
.ls7{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.556800pt;}
.lsa{letter-spacing:19.121600pt;}
.ls3{letter-spacing:26.224000pt;}
.ws32{word-spacing:-69.333333pt;}
.ws36{word-spacing:-64.256000pt;}
.ws20{word-spacing:-64.000000pt;}
.ws2d{word-spacing:-58.666667pt;}
.ws0{word-spacing:-53.333333pt;}
.ws37{word-spacing:-48.607467pt;}
.ws30{word-spacing:-48.556800pt;}
.ws2f{word-spacing:-48.000000pt;}
.ws3a{word-spacing:-45.765333pt;}
.ws39{word-spacing:-44.880000pt;}
.ws35{word-spacing:-40.293867pt;}
.ws31{word-spacing:-37.333333pt;}
.ws38{word-spacing:-33.808000pt;}
.ws34{word-spacing:-32.000000pt;}
.ws2e{word-spacing:-23.861333pt;}
.ws2{word-spacing:-20.000000pt;}
.ws33{word-spacing:-18.656000pt;}
.ws5{word-spacing:-17.333333pt;}
.ws28{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-10.882667pt;}
.ws3{word-spacing:-10.105333pt;}
.ws7{word-spacing:-7.773333pt;}
.ws2c{word-spacing:-0.004267pt;}
.ws8{word-spacing:0.000000pt;}
.ws21{word-spacing:0.720533pt;}
.ws29{word-spacing:1.809600pt;}
.wsa{word-spacing:4.749507pt;}
.ws27{word-spacing:4.785067pt;}
.wsb{word-spacing:5.143842pt;}
.ws23{word-spacing:5.222933pt;}
.ws1f{word-spacing:7.234667pt;}
.ws24{word-spacing:7.355200pt;}
.ws25{word-spacing:9.813867pt;}
.ws9{word-spacing:10.672533pt;}
.ws22{word-spacing:16.843200pt;}
.ws26{word-spacing:17.137600pt;}
.ws2a{word-spacing:17.331200pt;}
.ws2b{word-spacing:17.345067pt;}
.ws1c{word-spacing:50.765333pt;}
.ws1b{word-spacing:50.770667pt;}
.ws1d{word-spacing:61.650667pt;}
.ws1e{word-spacing:67.093333pt;}
.wse{word-spacing:72.901333pt;}
.ws12{word-spacing:135.728000pt;}
.ws16{word-spacing:141.077333pt;}
.ws18{word-spacing:154.693333pt;}
.ws14{word-spacing:159.146667pt;}
.wsf{word-spacing:183.040000pt;}
.wsd{word-spacing:186.026667pt;}
.ws19{word-spacing:203.128000pt;}
.ws15{word-spacing:203.893333pt;}
.ws13{word-spacing:209.706667pt;}
.ws17{word-spacing:209.770667pt;}
.ws11{word-spacing:473.557333pt;}
.wsc{word-spacing:580.437333pt;}
.ws10{word-spacing:586.688000pt;}
._2e{margin-left:-2898.679467pt;}
._43{margin-left:-2258.354667pt;}
._9e{margin-left:-2244.493867pt;}
._1a{margin-left:-1896.789333pt;}
._44{margin-left:-1633.536000pt;}
._aa{margin-left:-1544.852800pt;}
._19{margin-left:-1422.153591pt;}
._83{margin-left:-747.640000pt;}
._76{margin-left:-736.166400pt;}
._70{margin-left:-725.436267pt;}
._8a{margin-left:-721.832533pt;}
._9c{margin-left:-720.667200pt;}
._67{margin-left:-717.669333pt;}
._69{margin-left:-716.375467pt;}
._6e{margin-left:-713.247467pt;}
._60{margin-left:-710.210667pt;}
._86{margin-left:-709.237333pt;}
._79{margin-left:-704.986133pt;}
._97{margin-left:-699.638933pt;}
._3d{margin-left:-681.903467pt;}
._ad{margin-left:-672.069333pt;}
._74{margin-left:-667.978667pt;}
._7b{margin-left:-656.156800pt;}
._9a{margin-left:-643.232533pt;}
._a9{margin-left:-616.832000pt;}
._78{margin-left:-590.144000pt;}
._80{margin-left:-584.440533pt;}
._ae{margin-left:-583.046933pt;}
._49{margin-left:-582.038400pt;}
._84{margin-left:-570.560000pt;}
._93{margin-left:-566.928000pt;}
._4b{margin-left:-558.056533pt;}
._4d{margin-left:-530.442667pt;}
._99{margin-left:-513.728000pt;}
._56{margin-left:-511.361067pt;}
._54{margin-left:-508.531200pt;}
._a4{margin-left:-501.593067pt;}
._ac{margin-left:-492.340800pt;}
._90{margin-left:-485.858133pt;}
._65{margin-left:-484.672000pt;}
._6c{margin-left:-481.178667pt;}
._62{margin-left:-474.496000pt;}
._5a{margin-left:-473.036267pt;}
._a6{margin-left:-443.333333pt;}
._52{margin-left:-430.496000pt;}
._8c{margin-left:-426.734400pt;}
._8f{margin-left:-411.740800pt;}
._5e{margin-left:-407.786667pt;}
._a2{margin-left:-406.548800pt;}
._3f{margin-left:-366.133333pt;}
._a3{margin-left:-364.043733pt;}
._95{margin-left:-361.878933pt;}
._ab{margin-left:-360.896000pt;}
._87{margin-left:-348.598933pt;}
._9b{margin-left:-346.943467pt;}
._8b{margin-left:-345.828267pt;}
._9f{margin-left:-344.896000pt;}
._88{margin-left:-342.089600pt;}
._64{margin-left:-340.939200pt;}
._5d{margin-left:-337.628800pt;}
._50{margin-left:-336.402667pt;}
._59{margin-left:-334.208000pt;}
._7f{margin-left:-329.878933pt;}
._47{margin-left:-328.896000pt;}
._42{margin-left:-327.256533pt;}
._a8{margin-left:-325.868800pt;}
._72{margin-left:-323.564800pt;}
._63{margin-left:-314.943467pt;}
._5c{margin-left:-313.794667pt;}
._6a{margin-left:-312.896000pt;}
._91{margin-left:-307.565867pt;}
._92{margin-left:-298.442133pt;}
._51{margin-left:-280.188800pt;}
._68{margin-left:-278.476800pt;}
._a5{margin-left:-276.945067pt;}
._2c{margin-left:-275.626667pt;}
._41{margin-left:-266.624000pt;}
._48{margin-left:-263.954667pt;}
._73{margin-left:-255.206933pt;}
._6f{margin-left:-252.352000pt;}
._8d{margin-left:-250.359467pt;}
._9d{margin-left:-244.349867pt;}
._61{margin-left:-242.137600pt;}
._96{margin-left:-234.289067pt;}
._6b{margin-left:-232.650133pt;}
._82{margin-left:-221.313600pt;}
._94{margin-left:-220.405333pt;}
._75{margin-left:-215.822400pt;}
._89{margin-left:-208.344533pt;}
._66{margin-left:-206.586667pt;}
._6d{margin-left:-203.941333pt;}
._58{margin-left:-155.649067pt;}
._98{margin-left:-154.196800pt;}
._77{margin-left:-146.050133pt;}
._a1{margin-left:-143.152533pt;}
._7d{margin-left:-142.045333pt;}
._a0{margin-left:-139.925867pt;}
._7c{margin-left:-137.685333pt;}
._5f{margin-left:-136.736000pt;}
._7e{margin-left:-131.520000pt;}
._8e{margin-left:-120.814933pt;}
._85{margin-left:-94.236267pt;}
._3e{margin-left:-88.077867pt;}
._4e{margin-left:-78.922667pt;}
._57{margin-left:-77.705067pt;}
._4c{margin-left:-74.717867pt;}
._4a{margin-left:-62.045867pt;}
._55{margin-left:-58.195733pt;}
._a7{margin-left:-45.347200pt;}
._40{margin-left:-32.016000pt;}
._4f{margin-left:-16.010133pt;}
._2d{margin-left:-8.803200pt;}
._3{margin-left:-7.344000pt;}
._4{margin-left:-6.432533pt;}
._5{margin-left:-5.333333pt;}
._0{margin-left:-3.733333pt;}
._2{margin-left:-2.098133pt;}
._1{margin-left:-1.002667pt;}
._b{width:0.898667pt;}
._7{width:2.047467pt;}
._8{width:3.702933pt;}
._11{width:4.665600pt;}
._17{width:5.593600pt;}
._e{width:6.483200pt;}
._6{width:7.457067pt;}
._d{width:8.424000pt;}
._15{width:9.606400pt;}
._10{width:10.668800pt;}
._13{width:12.339200pt;}
._f{width:13.447467pt;}
._c{width:14.360533pt;}
._a{width:15.746133pt;}
._45{width:16.982933pt;}
._16{width:17.913600pt;}
._9{width:19.147733pt;}
._18{width:20.513067pt;}
._71{width:21.415467pt;}
._53{width:22.465067pt;}
._46{width:23.506667pt;}
._5b{width:24.513600pt;}
._14{width:26.745600pt;}
._7a{width:27.711467pt;}
._12{width:28.794133pt;}
._23{width:30.016000pt;}
._81{width:33.779733pt;}
._31{width:43.999136pt;}
._34{width:61.653333pt;}
._3b{width:77.984000pt;}
._af{width:79.892267pt;}
._37{width:83.413333pt;}
._39{width:88.861333pt;}
._25{width:104.042667pt;}
._26{width:114.752000pt;}
._1e{width:130.682667pt;}
._3c{width:137.832000pt;}
._29{width:146.940800pt;}
._36{width:162.446080pt;}
._20{width:172.538667pt;}
._22{width:175.136000pt;}
._3a{width:196.739584pt;}
._38{width:208.271211pt;}
._1b{width:243.248000pt;}
._2f{width:250.052896pt;}
._35{width:254.722432pt;}
._21{width:287.029333pt;}
._1d{width:302.842667pt;}
._1c{width:308.789333pt;}
._30{width:344.122763pt;}
._32{width:363.592629pt;}
._33{width:409.517483pt;}
._1f{width:420.416000pt;}
._27{width:476.682667pt;}
._24{width:486.970667pt;}
._2b{width:491.360000pt;}
._28{width:748.272000pt;}
._2a{width:797.600000pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:37.312000pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:38.116053pt;}
.fsa{font-size:39.630293pt;}
.fs5{font-size:40.421333pt;}
.fsc{font-size:43.530667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fse{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fsd{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:94.488000pt;}
.y58{bottom:94.488133pt;}
.y2d{bottom:98.652400pt;}
.ye1{bottom:99.571200pt;}
.y71{bottom:99.656533pt;}
.ya2{bottom:103.613733pt;}
.yd9{bottom:104.237067pt;}
.y7f{bottom:105.911200pt;}
.yae{bottom:107.149067pt;}
.y103{bottom:107.336267pt;}
.yca{bottom:110.584533pt;}
.y126{bottom:111.009867pt;}
.y101{bottom:111.991733pt;}
.y2c{bottom:114.652400pt;}
.ye0{bottom:119.571200pt;}
.y70{bottom:119.656533pt;}
.yce{bottom:122.848400pt;}
.ya1{bottom:123.613733pt;}
.yd8{bottom:124.237067pt;}
.y7e{bottom:125.911200pt;}
.yad{bottom:127.149067pt;}
.y56{bottom:129.079467pt;}
.yc9{bottom:130.584533pt;}
.y125{bottom:131.009867pt;}
.y100{bottom:131.991733pt;}
.y2b{bottom:135.092000pt;}
.ycd{bottom:142.848000pt;}
.ya0{bottom:143.613333pt;}
.yac{bottom:147.149333pt;}
.y55{bottom:149.080000pt;}
.yc8{bottom:150.584000pt;}
.y124{bottom:151.009333pt;}
.y9f{bottom:163.613333pt;}
.yab{bottom:167.149333pt;}
.y151{bottom:168.074667pt;}
.y54{bottom:169.080000pt;}
.yc7{bottom:170.584000pt;}
.y123{bottom:171.009333pt;}
.yf4{bottom:173.784000pt;}
.y2a{bottom:174.857333pt;}
.y9e{bottom:183.613333pt;}
.yaa{bottom:187.149333pt;}
.y150{bottom:188.074667pt;}
.y53{bottom:189.080000pt;}
.yc6{bottom:190.584000pt;}
.y122{bottom:191.009333pt;}
.yf3{bottom:193.784000pt;}
.y29{bottom:194.857333pt;}
.y9d{bottom:203.613333pt;}
.ya9{bottom:207.149333pt;}
.y14f{bottom:208.074667pt;}
.y52{bottom:209.080000pt;}
.yc5{bottom:210.584000pt;}
.y121{bottom:211.009333pt;}
.yf2{bottom:213.784000pt;}
.y28{bottom:214.857333pt;}
.y9c{bottom:223.613333pt;}
.ya8{bottom:227.149333pt;}
.y14e{bottom:228.074667pt;}
.y51{bottom:229.080000pt;}
.yc4{bottom:230.584000pt;}
.y120{bottom:231.009333pt;}
.yf1{bottom:233.784000pt;}
.y27{bottom:234.857333pt;}
.y9b{bottom:243.613333pt;}
.ya7{bottom:247.149333pt;}
.y14d{bottom:248.074667pt;}
.y50{bottom:249.080000pt;}
.yc3{bottom:250.584000pt;}
.y11f{bottom:251.009333pt;}
.yf0{bottom:253.784000pt;}
.y26{bottom:254.857333pt;}
.y9a{bottom:263.613333pt;}
.ya6{bottom:267.149333pt;}
.y14c{bottom:268.074667pt;}
.y4f{bottom:269.080000pt;}
.yc2{bottom:270.584000pt;}
.y11e{bottom:271.009333pt;}
.yef{bottom:273.784000pt;}
.y25{bottom:274.857333pt;}
.y99{bottom:283.613333pt;}
.ya5{bottom:287.149333pt;}
.y14b{bottom:288.074667pt;}
.y4e{bottom:289.080000pt;}
.yc1{bottom:290.584000pt;}
.y11d{bottom:291.009333pt;}
.yee{bottom:293.784000pt;}
.y24{bottom:294.857333pt;}
.y98{bottom:303.613333pt;}
.ya4{bottom:307.149333pt;}
.y14a{bottom:308.074667pt;}
.y4d{bottom:309.080000pt;}
.yc0{bottom:310.584000pt;}
.y11c{bottom:311.009333pt;}
.yed{bottom:313.784000pt;}
.y23{bottom:314.857333pt;}
.y97{bottom:323.613333pt;}
.ya3{bottom:327.149333pt;}
.y149{bottom:328.074667pt;}
.y4c{bottom:329.080000pt;}
.ybf{bottom:330.584000pt;}
.y11b{bottom:331.009333pt;}
.yec{bottom:333.784000pt;}
.y22{bottom:334.857333pt;}
.y96{bottom:343.613333pt;}
.ye7{bottom:347.149333pt;}
.y148{bottom:348.074667pt;}
.y4b{bottom:349.080000pt;}
.ydd{bottom:350.584000pt;}
.y11a{bottom:351.009333pt;}
.yeb{bottom:353.784000pt;}
.y21{bottom:354.857333pt;}
.y95{bottom:363.613333pt;}
.ybe{bottom:363.917333pt;}
.ye6{bottom:367.149333pt;}
.y16e{bottom:367.378667pt;}
.y147{bottom:368.074667pt;}
.y4a{bottom:369.080000pt;}
.yb0{bottom:370.349333pt;}
.y119{bottom:371.009333pt;}
.y20{bottom:374.857333pt;}
.y94{bottom:383.613333pt;}
.ydc{bottom:383.917333pt;}
.yea{bottom:387.117333pt;}
.ye5{bottom:387.149333pt;}
.ybd{bottom:387.933333pt;}
.y146{bottom:388.074667pt;}
.y49{bottom:389.080000pt;}
.yaf{bottom:390.349333pt;}
.y118{bottom:391.009333pt;}
.y1f{bottom:394.857333pt;}
.y16d{bottom:403.378667pt;}
.y93{bottom:403.613333pt;}
.ye4{bottom:407.149333pt;}
.ydb{bottom:407.933333pt;}
.y145{bottom:408.074667pt;}
.y48{bottom:409.080000pt;}
.y117{bottom:411.009333pt;}
.ybc{bottom:413.800000pt;}
.y92{bottom:423.613333pt;}
.y16c{bottom:424.712000pt;}
.ye3{bottom:427.149333pt;}
.y144{bottom:428.074667pt;}
.y47{bottom:429.080000pt;}
.y116{bottom:431.009333pt;}
.yda{bottom:433.800000pt;}
.y1e{bottom:434.857333pt;}
.y91{bottom:443.613333pt;}
.y16b{bottom:446.045333pt;}
.ye2{bottom:447.149333pt;}
.y143{bottom:448.074667pt;}
.y46{bottom:449.080000pt;}
.y115{bottom:451.009333pt;}
.ybb{bottom:467.149333pt;}
.y16a{bottom:467.378667pt;}
.y64{bottom:467.422667pt;}
.y142{bottom:468.074667pt;}
.y45{bottom:469.080000pt;}
.y114{bottom:471.009333pt;}
.y1d{bottom:479.593333pt;}
.y90{bottom:483.613333pt;}
.yba{bottom:487.149333pt;}
.y63{bottom:487.422667pt;}
.y141{bottom:488.074667pt;}
.y169{bottom:488.712000pt;}
.y44{bottom:489.080000pt;}
.yfe{bottom:490.341333pt;}
.y113{bottom:491.009333pt;}
.y1c{bottom:495.593333pt;}
.yb9{bottom:507.149333pt;}
.y62{bottom:507.422667pt;}
.y140{bottom:508.074667pt;}
.y43{bottom:509.080000pt;}
.y168{bottom:510.045333pt;}
.yfd{bottom:510.341333pt;}
.y112{bottom:511.009333pt;}
.y8f{bottom:516.946667pt;}
.y1b{bottom:518.260000pt;}
.ye9{bottom:526.488000pt;}
.yb8{bottom:527.149333pt;}
.y13f{bottom:528.074667pt;}
.y42{bottom:529.080000pt;}
.y111{bottom:531.009333pt;}
.y167{bottom:531.378667pt;}
.y1a{bottom:534.260000pt;}
.y61{bottom:540.756000pt;}
.y8e{bottom:540.962667pt;}
.ye8{bottom:546.488000pt;}
.yb7{bottom:547.149333pt;}
.y13e{bottom:548.074667pt;}
.y41{bottom:549.080000pt;}
.y19{bottom:550.260000pt;}
.yd0{bottom:550.821333pt;}
.y110{bottom:551.009333pt;}
.yf6{bottom:551.486667pt;}
.y166{bottom:552.712000pt;}
.y18{bottom:566.260000pt;}
.y8d{bottom:566.829333pt;}
.yb6{bottom:567.149333pt;}
.y13d{bottom:568.074667pt;}
.ycf{bottom:570.821333pt;}
.y10f{bottom:571.009333pt;}
.yf5{bottom:571.486667pt;}
.y102{bottom:571.980000pt;}
.y165{bottom:574.045333pt;}
.y60{bottom:574.089333pt;}
.y17{bottom:582.260000pt;}
.y40{bottom:582.413333pt;}
.yb5{bottom:587.149333pt;}
.y13c{bottom:588.074667pt;}
.y10e{bottom:591.009333pt;}
.y5f{bottom:594.089333pt;}
.y164{bottom:595.378667pt;}
.yff{bottom:596.249333pt;}
.y16{bottom:598.260000pt;}
.yb4{bottom:607.149333pt;}
.y13b{bottom:608.074667pt;}
.y7d{bottom:609.080000pt;}
.y10d{bottom:611.009333pt;}
.y5e{bottom:614.089333pt;}
.y15{bottom:614.260000pt;}
.y3f{bottom:615.746667pt;}
.y163{bottom:616.712000pt;}
.y8c{bottom:620.178667pt;}
.yb3{bottom:627.149333pt;}
.y13a{bottom:628.074667pt;}
.y7c{bottom:629.080000pt;}
.y14{bottom:630.260000pt;}
.y10c{bottom:631.009333pt;}
.y5d{bottom:634.089333pt;}
.y3e{bottom:635.746667pt;}
.y8b{bottom:640.178667pt;}
.ydf{bottom:644.952000pt;}
.y13{bottom:646.260000pt;}
.yb2{bottom:647.149333pt;}
.y139{bottom:648.074667pt;}
.y7b{bottom:649.080000pt;}
.y10b{bottom:651.009333pt;}
.y5c{bottom:654.089333pt;}
.y3d{bottom:655.746667pt;}
.y162{bottom:658.045333pt;}
.y8a{bottom:660.178667pt;}
.yde{bottom:664.952000pt;}
.yb1{bottom:667.149333pt;}
.y138{bottom:668.074667pt;}
.y7a{bottom:669.080000pt;}
.y10a{bottom:671.009333pt;}
.y5b{bottom:674.089333pt;}
.y3c{bottom:675.746667pt;}
.y89{bottom:680.178667pt;}
.yd7{bottom:687.149333pt;}
.y137{bottom:688.074667pt;}
.y12{bottom:688.926667pt;}
.y79{bottom:689.080000pt;}
.y109{bottom:691.009333pt;}
.y3b{bottom:695.746667pt;}
.y161{bottom:702.565333pt;}
.ycc{bottom:705.853333pt;}
.yd6{bottom:707.149333pt;}
.y5a{bottom:707.422667pt;}
.y136{bottom:708.074667pt;}
.y78{bottom:709.080000pt;}
.y11{bottom:710.934667pt;}
.y108{bottom:711.009333pt;}
.y3a{bottom:715.746667pt;}
.y88{bottom:720.178667pt;}
.y10{bottom:722.286667pt;}
.ycb{bottom:725.853333pt;}
.yd5{bottom:727.149333pt;}
.y135{bottom:728.074667pt;}
.y77{bottom:729.080000pt;}
.y107{bottom:731.009333pt;}
.y160{bottom:731.893333pt;}
.yf{bottom:744.294667pt;}
.yd4{bottom:747.149333pt;}
.y134{bottom:748.074667pt;}
.y39{bottom:749.080000pt;}
.y15f{bottom:750.560000pt;}
.y87{bottom:753.512000pt;}
.y6e{bottom:753.808000pt;}
.ye{bottom:755.645333pt;}
.yd3{bottom:767.149333pt;}
.y133{bottom:768.074667pt;}
.y76{bottom:769.080000pt;}
.y15e{bottom:769.226667pt;}
.y106{bottom:771.009333pt;}
.y86{bottom:777.526667pt;}
.yd{bottom:777.653333pt;}
.y6d{bottom:778.733333pt;}
.yd2{bottom:787.149333pt;}
.y15d{bottom:787.893333pt;}
.y132{bottom:788.074667pt;}
.yc{bottom:789.005333pt;}
.y38{bottom:789.080000pt;}
.y85{bottom:803.393333pt;}
.y6c{bottom:803.660000pt;}
.y15c{bottom:806.560000pt;}
.yd1{bottom:807.149333pt;}
.y131{bottom:808.074667pt;}
.y75{bottom:809.080000pt;}
.yb{bottom:811.013333pt;}
.ya{bottom:822.364000pt;}
.y158{bottom:826.781333pt;}
.y37{bottom:827.149333pt;}
.y130{bottom:828.074667pt;}
.y6b{bottom:828.586667pt;}
.y74{bottom:829.080000pt;}
.y9{bottom:844.372000pt;}
.y15b{bottom:846.565333pt;}
.y157{bottom:846.781333pt;}
.y36{bottom:847.149333pt;}
.y12f{bottom:848.074667pt;}
.y73{bottom:849.080000pt;}
.y6a{bottom:853.512000pt;}
.y84{bottom:856.742667pt;}
.y156{bottom:866.781333pt;}
.y35{bottom:867.149333pt;}
.y12e{bottom:868.074667pt;}
.y105{bottom:869.080000pt;}
.y69{bottom:878.438667pt;}
.y8{bottom:882.390667pt;}
.y155{bottom:886.781333pt;}
.y34{bottom:887.149333pt;}
.yfc{bottom:887.406667pt;}
.y12d{bottom:888.074667pt;}
.y72{bottom:889.080000pt;}
.y83{bottom:896.742667pt;}
.y15a{bottom:899.898667pt;}
.y68{bottom:903.364000pt;}
.y154{bottom:906.781333pt;}
.y33{bottom:907.149333pt;}
.yfb{bottom:907.406667pt;}
.y12c{bottom:908.074667pt;}
.y104{bottom:909.080000pt;}
.y153{bottom:926.781333pt;}
.y7{bottom:927.126667pt;}
.y32{bottom:927.149333pt;}
.yfa{bottom:927.406667pt;}
.y12b{bottom:928.074667pt;}
.y67{bottom:928.290667pt;}
.y159{bottom:933.232000pt;}
.y82{bottom:933.422667pt;}
.y31{bottom:947.149333pt;}
.yf9{bottom:947.406667pt;}
.y6{bottom:947.976000pt;}
.y12a{bottom:948.074667pt;}
.y66{bottom:953.216000pt;}
.y152{bottom:966.781333pt;}
.y30{bottom:967.149333pt;}
.y129{bottom:968.074667pt;}
.y81{bottom:970.102667pt;}
.y65{bottom:977.834667pt;}
.yf8{bottom:980.740000pt;}
.y2f{bottom:987.149333pt;}
.y128{bottom:988.074667pt;}
.y6f{bottom:1001.412000pt;}
.y80{bottom:1006.781333pt;}
.y2e{bottom:1007.149333pt;}
.yf7{bottom:1007.422667pt;}
.y127{bottom:1008.074667pt;}
.y5{bottom:1017.420000pt;}
.y2{bottom:1017.725333pt;}
.y4{bottom:1027.149333pt;}
.y1{bottom:1034.392000pt;}
.y57{bottom:1036.745333pt;}
.y3{bottom:1037.396000pt;}
.hd{height:21.604401pt;}
.h8{height:25.907062pt;}
.h5{height:25.940104pt;}
.h11{height:29.502229pt;}
.h18{height:32.187387pt;}
.h4{height:33.351562pt;}
.h10{height:36.145833pt;}
.h3{height:37.057292pt;}
.ha{height:40.763021pt;}
.h2{height:41.706667pt;}
.he{height:43.343750pt;}
.h12{height:43.375000pt;}
.h9{height:44.437500pt;}
.hc{height:44.468750pt;}
.h15{height:46.593750pt;}
.h14{height:46.698667pt;}
.hb{height:46.989583pt;}
.hf{height:48.174479pt;}
.h13{height:50.944000pt;}
.h7{height:51.173721pt;}
.h6{height:54.218750pt;}
.h19{height:55.110161pt;}
.h1a{height:57.061333pt;}
.h17{height:63.291667pt;}
.h16{height:74.618667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x35{left:76.936400pt;}
.x28{left:78.820133pt;}
.x12{left:81.826800pt;}
.xb{left:84.684400pt;}
.x5{left:89.658000pt;}
.x6{left:96.078933pt;}
.x10{left:105.826800pt;}
.x7{left:110.268800pt;}
.xd{left:117.766400pt;}
.x15{left:119.358667pt;}
.xe{left:120.944933pt;}
.x8{left:126.262533pt;}
.xa{left:130.051600pt;}
.x36{left:133.229333pt;}
.x16{left:142.751067pt;}
.x33{left:145.241333pt;}
.xc{left:158.493333pt;}
.x17{left:165.928667pt;}
.x18{left:189.106400pt;}
.x3a{left:192.850667pt;}
.x19{left:212.284000pt;}
.x3c{left:218.337333pt;}
.x3d{left:230.518667pt;}
.x1a{left:235.461600pt;}
.x2c{left:242.030667pt;}
.x3e{left:246.518667pt;}
.x3b{left:249.517333pt;}
.x1b{left:258.639733pt;}
.x2e{left:270.162667pt;}
.x9{left:273.821333pt;}
.x1c{left:281.817067pt;}
.x2d{left:283.670667pt;}
.x2b{left:285.366667pt;}
.x3f{left:291.574667pt;}
.x1d{left:304.994400pt;}
.x31{left:309.733333pt;}
.x11{left:311.630667pt;}
.x32{left:319.733333pt;}
.x39{left:325.113333pt;}
.x1e{left:328.171733pt;}
.x37{left:329.960000pt;}
.x34{left:334.401333pt;}
.x38{left:340.624000pt;}
.xf{left:349.814667pt;}
.x1f{left:351.349067pt;}
.x2a{left:353.525333pt;}
.x2f{left:356.850667pt;}
.x13{left:362.576000pt;}
.x29{left:369.885333pt;}
.x40{left:370.850667pt;}
.x30{left:372.850667pt;}
.x20{left:374.527733pt;}
.x21{left:397.705067pt;}
.x22{left:420.882400pt;}
.x23{left:444.059733pt;}
.x4{left:457.428000pt;}
.x24{left:467.238400pt;}
.x25{left:490.415733pt;}
.x2{left:504.044000pt;}
.x26{left:513.593067pt;}
.x3{left:522.252000pt;}
.x27{left:536.770400pt;}
.x14{left:703.444000pt;}
}




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