
    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_da5c859e5aef2bd80341b8bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_454cb686b7d59fdd3fdcedca.woff')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_cdf7d1b877c5b27810945b3b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3689a86e6a40d1ceca4bf33b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ecef6ca527b5444b9038509b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ef61d9070b87430c467d72c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_b0e2c52d30dda39f7b283037.woff')format("woff");}.ff9{font-family:ff9;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0542344662e2412309a06b9c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.856934;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_2513543219f29b3ae35fb335.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_129076ac8e886e87af5987cb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_43d79b0516291a9a62b7b1bc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.236816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225258,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247337,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.260788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260788,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273220,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288505,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.361650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361650,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);}
.v10{vertical-align:-87.119965px;}
.v2{vertical-align:-36.719985px;}
.vd{vertical-align:-26.639989px;}
.v13{vertical-align:-17.999993px;}
.v5{vertical-align:-15.119994px;}
.v11{vertical-align:-12.239995px;}
.ve{vertical-align:-9.359996px;}
.vb{vertical-align:-7.919997px;}
.va{vertical-align:-5.759998px;}
.v4{vertical-align:-2.879999px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.879999px;}
.v8{vertical-align:9.359996px;}
.vf{vertical-align:12.239995px;}
.v6{vertical-align:15.119994px;}
.v7{vertical-align:17.999993px;}
.v12{vertical-align:23.759990px;}
.vc{vertical-align:26.639989px;}
.v15{vertical-align:32.399987px;}
.v1{vertical-align:37.439985px;}
.v9{vertical-align:38.879984px;}
.v14{vertical-align:41.759983px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012060px;}
.ls3{letter-spacing:0.062743px;}
.ls2e{letter-spacing:0.068862px;}
.ls31{letter-spacing:0.068880px;}
.ls25{letter-spacing:0.068906px;}
.ls1d{letter-spacing:0.079920px;}
.ls17{letter-spacing:0.121620px;}
.ls7{letter-spacing:0.125748px;}
.ls24{letter-spacing:0.207360px;}
.ls19{letter-spacing:0.215640px;}
.ls2{letter-spacing:0.274574px;}
.ls1e{letter-spacing:0.354120px;}
.lsb{letter-spacing:0.365160px;}
.ls18{letter-spacing:0.417900px;}
.ls12{letter-spacing:0.418380px;}
.ls20{letter-spacing:0.509160px;}
.ls2d{letter-spacing:0.790260px;}
.ls2c{letter-spacing:0.903960px;}
.ls34{letter-spacing:1.625339px;}
.ls32{letter-spacing:2.346719px;}
.ls1b{letter-spacing:2.915819px;}
.ls36{letter-spacing:3.032939px;}
.ls2b{letter-spacing:3.789478px;}
.lsc{letter-spacing:4.328266px;}
.ls21{letter-spacing:4.358578px;}
.lsf{letter-spacing:6.392637px;}
.ls1f{letter-spacing:6.522717px;}
.ls9{letter-spacing:7.244097px;}
.ls16{letter-spacing:8.106357px;}
.ls35{letter-spacing:8.839136px;}
.ls10{letter-spacing:10.188536px;}
.ls30{letter-spacing:10.281896px;}
.ls15{letter-spacing:10.820636px;}
.ls4{letter-spacing:11.021516px;}
.ls29{letter-spacing:11.420335px;}
.ls13{letter-spacing:11.644015px;}
.lsd{letter-spacing:12.293755px;}
.ls2f{letter-spacing:12.445975px;}
.ls11{letter-spacing:13.099555px;}
.lse{letter-spacing:14.427534px;}
.ls33{letter-spacing:26.873569px;}
.ls1{letter-spacing:73.612471px;}
.ls8{letter-spacing:86.747965px;}
.ls6{letter-spacing:87.469165px;}
.ls14{letter-spacing:88.190365px;}
.ls26{letter-spacing:102.617959px;}
.ls1a{letter-spacing:138.686945px;}
.ls0{letter-spacing:149.357340px;}
.ls28{letter-spacing:810.857676px;}
.ls2a{letter-spacing:952.247619px;}
.ls23{letter-spacing:989.039604px;}
.ls1c{letter-spacing:1025.105590px;}
.ls27{letter-spacing:1087.151565px;}
.ls22{letter-spacing:1092.923563px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-40.103984px;}
.ws9{word-spacing:-36.895665px;}
.ws2{word-spacing:-32.462730px;}
.wsb{word-spacing:-28.473829px;}
.wsa{word-spacing:-26.869669px;}
.ws7{word-spacing:-18.125741px;}
.wsd{word-spacing:-18.068899px;}
.ws6{word-spacing:-17.999993px;}
.ws4{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.559993px;}
.ws1{word-spacing:-15.011994px;}
.ws3{word-spacing:-14.939994px;}
.wsc{word-spacing:-12.059995px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-30.577160px;}
._20{margin-left:-27.184502px;}
._2b{margin-left:-15.941298px;}
._8{margin-left:-5.460062px;}
._1b{margin-left:-3.967560px;}
._5{margin-left:-2.914414px;}
._3{margin-left:-1.750293px;}
._0{width:1.152887px;}
._19{width:2.205113px;}
._e{width:3.714347px;}
._7{width:5.054133px;}
._6{width:6.253582px;}
._1c{width:7.305651px;}
._9{width:8.366603px;}
._1f{width:9.680706px;}
._14{width:10.795965px;}
._31{width:11.820847px;}
._b{width:12.876430px;}
._15{width:14.430152px;}
._1a{width:15.557727px;}
._c{width:16.818284px;}
._d{width:17.950305px;}
._a{width:19.709082px;}
._1e{width:21.496591px;}
._18{width:23.283916px;}
._2d{width:24.629647px;}
._16{width:25.893807px;}
._17{width:27.611781px;}
._1d{width:28.973813px;}
._30{width:30.148221px;}
._11{width:31.233594px;}
._32{width:32.709026px;}
._34{width:36.691395px;}
._35{width:37.778966px;}
._10{width:46.554250px;}
._f{width:47.616038px;}
._13{width:55.594389px;}
._12{width:63.243599px;}
._24{width:74.057210px;}
._37{width:82.229347px;}
._36{width:83.520046px;}
._1{width:85.154546px;}
._25{width:86.527016px;}
._27{width:198.134040px;}
._23{width:204.718333px;}
._28{width:210.949429px;}
._21{width:216.660635px;}
._4{width:355.133220px;}
._26{width:404.278800px;}
._29{width:466.316855px;}
._2a{width:485.072848px;}
._2e{width:637.643462px;}
._2f{width:845.021800px;}
._33{width:1049.059142px;}
._2c{width:1081.642871px;}
._2{width:2682.842887px;}
.fcc{color:rgb(31,32,33);}
.fcb{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(83,129,53);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc7{color:rgb(44,62,80);}
.fc2{color:rgb(31,73,124);}
.fca{color:rgb(0,176,80);}
.fc8{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.759998px;}
.fs6{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.yfb{bottom:0.179712px;}
.y1cd{bottom:2.519878px;}
.y1a2{bottom:2.519887px;}
.y12{bottom:2.699698px;}
.y3f{bottom:3.059625px;}
.y41{bottom:3.239591px;}
.y3c{bottom:3.239947px;}
.yfe{bottom:3.599706px;}
.y1c8{bottom:3.599843px;}
.y1cb{bottom:3.599885px;}
.y47{bottom:3.959592px;}
.yfc{bottom:3.959711px;}
.y7{bottom:3.959980px;}
.y14f{bottom:4.319782px;}
.y1c9{bottom:4.319842px;}
.y13d{bottom:13.499711px;}
.y140{bottom:14.579710px;}
.y13c{bottom:18.719709px;}
.y141{bottom:19.079709px;}
.y146{bottom:24.299707px;}
.y138{bottom:24.659706px;}
.y137{bottom:26.819706px;}
.y8{bottom:28.259989px;}
.y145{bottom:29.699698px;}
.y13b{bottom:31.499698px;}
.y13f{bottom:31.499700px;}
.y148{bottom:31.499704px;}
.y136{bottom:33.659703px;}
.y139{bottom:38.699701px;}
.y142{bottom:41.039700px;}
.y143{bottom:41.759700px;}
.y6{bottom:46.260000px;}
.y5{bottom:50.219980px;}
.yf9{bottom:100.799960px;}
.yd9{bottom:103.499959px;}
.yf8{bottom:105.479958px;}
.y1f2{bottom:109.079956px;}
.y1a0{bottom:110.339956px;}
.y98{bottom:111.959955px;}
.y3d{bottom:112.139955px;}
.yc4{bottom:113.219955px;}
.y134{bottom:118.439953px;}
.y178{bottom:118.619953px;}
.y20f{bottom:123.659951px;}
.yd8{bottom:124.199950px;}
.y6c{bottom:125.279950px;}
.yf7{bottom:128.159949px;}
.y3b{bottom:129.600000px;}
.y19f{bottom:131.039948px;}
.y1f1{bottom:131.399947px;}
.yc3{bottom:135.719946px;}
.y133{bottom:140.759944px;}
.y177{bottom:140.939944px;}
.y97{bottom:141.839943px;}
.yf5{bottom:142.559943px;}
.yd7{bottom:144.899942px;}
.y20e{bottom:145.979942px;}
.yf6{bottom:148.499941px;}
.y4{bottom:149.219940px;}
.yf4{bottom:150.839940px;}
.y19e{bottom:151.739939px;}
.y69{bottom:152.279939px;}
.y6b{bottom:152.999939px;}
.y6a{bottom:156.779937px;}
.yc2{bottom:158.039937px;}
.y1f0{bottom:158.219937px;}
.y131{bottom:163.079935px;}
.y176{bottom:163.259935px;}
.yd6{bottom:165.599934px;}
.y96{bottom:168.659933px;}
.y132{bottom:169.919932px;}
.y19d{bottom:172.439931px;}
.y4a{bottom:176.219930px;}
.y20d{bottom:178.739929px;}
.yc1{bottom:180.359928px;}
.y68{bottom:180.539928px;}
.yf1{bottom:182.339927px;}
.yf3{bottom:183.779926px;}
.y130{bottom:185.219926px;}
.y175{bottom:185.579926px;}
.yd5{bottom:186.299925px;}
.yf0{bottom:186.839925px;}
.yf2{bottom:188.279925px;}
.y19c{bottom:193.139923px;}
.yef{bottom:193.319923px;}
.y49{bottom:193.499923px;}
.yee{bottom:197.819921px;}
.y95{bottom:198.359921px;}
.y94{bottom:199.079920px;}
.y20c{bottom:199.439920px;}
.yc0{bottom:202.679919px;}
.y12f{bottom:206.099918px;}
.y174{bottom:207.899917px;}
.yd4{bottom:208.619917px;}
.y48{bottom:210.779916px;}
.y1ef{bottom:214.919914px;}
.y19b{bottom:217.439913px;}
.y67{bottom:221.939911px;}
.ybf{bottom:224.999910px;}
.yed{bottom:226.439909px;}
.y1d{bottom:228.779908px;}
.y12e{bottom:229.859908px;}
.y93{bottom:230.039908px;}
.yd3{bottom:230.939908px;}
.y20b{bottom:232.019907px;}
.y19a{bottom:238.139905px;}
.y173{bottom:242.099903px;}
.y1ee{bottom:244.619902px;}
.ybe{bottom:245.699902px;}
.yec{bottom:248.039901px;}
.yeb{bottom:248.759900px;}
.y66{bottom:248.939900px;}
.y12d{bottom:252.359899px;}
.y20a{bottom:252.719899px;}
.yd2{bottom:253.259899px;}
.y92{bottom:256.859897px;}
.y199{bottom:258.839896px;}
.y172{bottom:264.599894px;}
.y3a{bottom:265.679894px;}
.ybd{bottom:266.759893px;}
.y1ed{bottom:266.939893px;}
.yea{bottom:271.619891px;}
.y12c{bottom:274.679890px;}
.yd1{bottom:275.579890px;}
.y65{bottom:275.759890px;}
.y1c6{bottom:279.899888px;}
.y1a1{bottom:280.800000px;}
.y198{bottom:282.599887px;}
.y91{bottom:283.319887px;}
.y90{bottom:284.039886px;}
.y1ca{bottom:284.580000px;}
.y209{bottom:285.479886px;}
.y39{bottom:285.659886px;}
.y171{bottom:286.739885px;}
.ybc{bottom:287.459885px;}
.y1c1{bottom:287.999885px;}
.y1c3{bottom:288.719885px;}
.y1ec{bottom:289.259884px;}
.y1c5{bottom:290.339884px;}
.ye9{bottom:292.319883px;}
.y1c2{bottom:293.219883px;}
.y12b{bottom:296.999881px;}
.y1c4{bottom:297.179881px;}
.yd0{bottom:297.899881px;}
.y38{bottom:302.759879px;}
.y1cc{bottom:303.660000px;}
.y197{bottom:304.919878px;}
.y208{bottom:306.179878px;}
.ybb{bottom:308.159877px;}
.y8f{bottom:311.219876px;}
.y1eb{bottom:311.579875px;}
.ye8{bottom:316.079874px;}
.y12a{bottom:319.319872px;}
.y37{bottom:320.039872px;}
.ycf{bottom:320.399872px;}
.y170{bottom:321.119872px;}
.y1c0{bottom:325.259870px;}
.y196{bottom:327.239869px;}
.yba{bottom:329.039868px;}
.y64{bottom:331.199868px;}
.y1ea{bottom:333.899866px;}
.y36{bottom:337.319865px;}
.y8e{bottom:338.039865px;}
.ye7{bottom:338.399865px;}
.y207{bottom:338.939864px;}
.y129{bottom:340.019864px;}
.yce{bottom:342.539863px;}
.y16f{bottom:343.439863px;}
.y195{bottom:349.559860px;}
.yb9{bottom:349.739860px;}
.y1c{bottom:351.179860px;}
.y35{bottom:354.959858px;}
.y1e9{bottom:356.219858px;}
.y63{bottom:358.199857px;}
.y206{bottom:359.639856px;}
.ye6{bottom:360.719856px;}
.y128{bottom:363.959854px;}
.y16e{bottom:365.939854px;}
.y8c{bottom:366.659853px;}
.y8d{bottom:370.439852px;}
.ycd{bottom:370.799852px;}
.y194{bottom:372.059851px;}
.y34{bottom:372.239851px;}
.y1e8{bottom:378.539849px;}
.y205{bottom:380.339848px;}
.ye5{bottom:383.039847px;}
.y62{bottom:385.019846px;}
.y127{bottom:386.279845px;}
.y16d{bottom:388.259845px;}
.y1bd{bottom:388.799844px;}
.y1ba{bottom:388.979844px;}
.y33{bottom:389.519844px;}
.y1c7{bottom:389.700000px;}
.y1bc{bottom:391.139844px;}
.y1bb{bottom:391.859843px;}
.ycc{bottom:393.119843px;}
.y1be{bottom:393.479843px;}
.y193{bottom:394.379842px;}
.y8a{bottom:395.459842px;}
.yb8{bottom:395.639842px;}
.y1bf{bottom:397.979841px;}
.y8b{bottom:399.239840px;}
.y1e7{bottom:401.039840px;}
.y1b9{bottom:402.299839px;}
.ye4{bottom:403.919838px;}
.y32{bottom:406.799837px;}
.y126{bottom:408.599837px;}
.y61{bottom:412.019835px;}
.y204{bottom:414.539834px;}
.y16c{bottom:415.079834px;}
.ycb{bottom:415.439834px;}
.yb7{bottom:416.339833px;}
.y192{bottom:421.199832px;}
.y88{bottom:422.999831px;}
.y1e6{bottom:423.359831px;}
.y31{bottom:423.899830px;}
.y87{bottom:424.439830px;}
.ye3{bottom:427.859829px;}
.y89{bottom:428.219829px;}
.y125{bottom:430.919828px;}
.yca{bottom:436.319825px;}
.yb6{bottom:437.039825px;}
.y16b{bottom:437.399825px;}
.y60{bottom:438.839824px;}
.y30{bottom:441.179824px;}
.y1b8{bottom:442.439823px;}
.y191{bottom:443.519823px;}
.y1e5{bottom:445.679822px;}
.ye2{bottom:453.059819px;}
.y124{bottom:453.239819px;}
.y85{bottom:454.319818px;}
.y1b{bottom:455.579818px;}
.yb5{bottom:457.739817px;}
.y86{bottom:458.099817px;}
.y2f{bottom:458.459817px;}
.y203{bottom:459.359816px;}
.y5f{bottom:465.659814px;}
.y190{bottom:465.839814px;}
.y1e4{bottom:466.379813px;}
.yc9{bottom:467.999813px;}
.y16a{bottom:471.779811px;}
.ye1{bottom:473.759810px;}
.y2e{bottom:475.739810px;}
.y123{bottom:478.619809px;}
.yb4{bottom:478.799808px;}
.y202{bottom:481.499807px;}
.y84{bottom:485.279806px;}
.y1b7{bottom:487.079805px;}
.y18f{bottom:488.159805px;}
.y1e3{bottom:490.139804px;}
.y1b6{bottom:491.579803px;}
.y2d{bottom:493.019803px;}
.y169{bottom:494.099802px;}
.ye0{bottom:494.459802px;}
.yb3{bottom:499.499800px;}
.y122{bottom:502.559799px;}
.y1a{bottom:508.139797px;}
.y1b5{bottom:509.039796px;}
.y2c{bottom:510.119796px;}
.y18d{bottom:510.479796px;}
.y1e2{bottom:512.459795px;}
.y168{bottom:514.799794px;}
.ydf{bottom:515.159794px;}
.y83{bottom:515.339794px;}
.y201{bottom:516.059794px;}
.y18e{bottom:517.319793px;}
.y5e{bottom:519.839792px;}
.yb2{bottom:520.199792px;}
.y121{bottom:523.259791px;}
.y19{bottom:523.439791px;}
.y2b{bottom:527.399789px;}
.y18c{bottom:532.799787px;}
.y1e1{bottom:534.779786px;}
.y200{bottom:538.379785px;}
.y18{bottom:538.739785px;}
.y167{bottom:539.099784px;}
.y14e{bottom:540.540000px;}
.yb1{bottom:540.899784px;}
.yde{bottom:542.339783px;}
.y1b4{bottom:542.699783px;}
.y120{bottom:544.319782px;}
.y2a{bottom:544.679782px;}
.y14d{bottom:544.859782px;}
.y82{bottom:545.759782px;}
.y81{bottom:546.479781px;}
.y5d{bottom:547.019781px;}
.y17{bottom:552.959779px;}
.y18b{bottom:555.119778px;}
.y1e0{bottom:557.099777px;}
.y1ff{bottom:560.699776px;}
.y166{bottom:561.059776px;}
.yb0{bottom:561.599775px;}
.y29{bottom:561.959775px;}
.ydd{bottom:563.039775px;}
.y11f{bottom:565.379774px;}
.y5c{bottom:574.019770px;}
.y18a{bottom:575.999770px;}
.y1b3{bottom:578.519769px;}
.y14c{bottom:578.879768px;}
.y28{bottom:579.239768px;}
.y80{bottom:579.599768px;}
.yaf{bottom:582.299767px;}
.y165{bottom:583.199767px;}
.ydc{bottom:583.739767px;}
.y11e{bottom:586.619765px;}
.y1fe{bottom:594.899762px;}
.y27{bottom:596.519761px;}
.y189{bottom:599.939760px;}
.y5b{bottom:600.839760px;}
.y1df{bottom:601.919759px;}
.yae{bottom:602.999759px;}
.y164{bottom:603.899758px;}
.y16{bottom:604.439758px;}
.y1b2{bottom:605.519758px;}
.y11d{bottom:607.679757px;}
.y7f{bottom:610.559756px;}
.y26{bottom:613.619755px;}
.y14b{bottom:614.159754px;}
.y1fd{bottom:617.039753px;}
.y188{bottom:620.639752px;}
.yad{bottom:623.699751px;}
.y1de{bottom:624.239750px;}
.y163{bottom:625.139750px;}
.y5a{bottom:627.839749px;}
.y11c{bottom:628.739749px;}
.y25{bottom:630.899748px;}
.y1b1{bottom:636.479745px;}
.y7e{bottom:637.379745px;}
.y162{bottom:643.859742px;}
.y187{bottom:644.399742px;}
.y1dd{bottom:644.939742px;}
.yac{bottom:646.379741px;}
.y24{bottom:648.179741px;}
.y14a{bottom:648.719741px;}
.y11b{bottom:649.799740px;}
.y1fc{bottom:651.599739px;}
.y59{bottom:654.659738px;}
.y15{bottom:655.919738px;}
.y23{bottom:665.459734px;}
.y186{bottom:666.719733px;}
.yab{bottom:667.079733px;}
.y1b0{bottom:667.619733px;}
.y7c{bottom:668.519733px;}
.y1dc{bottom:668.879732px;}
.y11a{bottom:671.039732px;}
.y7d{bottom:672.299731px;}
.y1fb{bottom:673.739731px;}
.y58{bottom:681.659727px;}
.y22{bottom:682.739727px;}
.y149{bottom:683.459727px;}
.y161{bottom:687.239725px;}
.y184{bottom:689.039724px;}
.y1db{bottom:689.759724px;}
.y119{bottom:692.099723px;}
.y185{bottom:695.879722px;}
.y1af{bottom:698.579721px;}
.y7b{bottom:699.659720px;}
.y21{bottom:700.019720px;}
.yaa{bottom:703.079719px;}
.y14{bottom:707.399717px;}
.y1fa{bottom:708.119717px;}
.y57{bottom:708.479717px;}
.y135{bottom:709.380000px;}
.y160{bottom:709.739716px;}
.y147{bottom:709.740000px;}
.y183{bottom:711.359715px;}
.y1da{bottom:713.519715px;}
.y20{bottom:717.119713px;}
.y13e{bottom:717.660000px;}
.yfa{bottom:719.460000px;}
.y118{bottom:722.159711px;}
.y13a{bottom:722.520000px;}
.y13{bottom:723.059711px;}
.ya9{bottom:725.039710px;}
.y144{bottom:725.220000px;}
.y7a{bottom:727.019709px;}
.y113{bottom:729.539708px;}
.y15f{bottom:730.439708px;}
.yfd{bottom:731.700000px;}
.y219{bottom:731.879707px;}
.y182{bottom:733.679707px;}
.y1f{bottom:734.399706px;}
.y116{bottom:734.759706px;}
.y56{bottom:735.479706px;}
.y1d9{bottom:735.839706px;}
.y117{bottom:738.719705px;}
.y115{bottom:741.599703px;}
.y114{bottom:742.319703px;}
.y112{bottom:745.559702px;}
.ya8{bottom:745.739702px;}
.y15d{bottom:750.959700px;}
.y1e{bottom:751.679699px;}
.y11{bottom:751.680000px;}
.y79{bottom:753.839698px;}
.y218{bottom:754.199698px;}
.y181{bottom:756.179698px;}
.y15e{bottom:756.899697px;}
.y1d8{bottom:758.159697px;}
.y1ae{bottom:760.679696px;}
.y55{bottom:762.299695px;}
.y1f9{bottom:764.819694px;}
.y111{bottom:767.159693px;}
.ya7{bottom:768.059693px;}
.yf{bottom:777.779689px;}
.y10{bottom:777.959689px;}
.y180{bottom:778.499689px;}
.y1d7{bottom:780.479688px;}
.y78{bottom:780.839688px;}
.y110{bottom:784.439686px;}
.y1ad{bottom:784.799686px;}
.y217{bottom:786.959685px;}
.y1f8{bottom:787.139685px;}
.ya6{bottom:790.559684px;}
.y54{bottom:793.799682px;}
.y17f{bottom:799.199680px;}
.y15c{bottom:801.359679px;}
.y15a{bottom:802.079679px;}
.y10f{bottom:802.439679px;}
.y15b{bottom:802.799679px;}
.y1ac{bottom:805.499678px;}
.y159{bottom:806.579677px;}
.ye{bottom:807.299677px;}
.y77{bottom:807.659677px;}
.y1f7{bottom:809.459676px;}
.ya5{bottom:811.259675px;}
.y53{bottom:820.619672px;}
.y10e{bottom:823.139671px;}
.y158{bottom:823.859670px;}
.y1d6{bottom:825.119670px;}
.yd{bottom:827.999669px;}
.y1ab{bottom:829.259668px;}
.y76{bottom:835.559666px;}
.y216{bottom:840.419664px;}
.y10d{bottom:843.839662px;}
.y17e{bottom:845.459662px;}
.y156{bottom:847.079661px;}
.y52{bottom:847.439661px;}
.yc{bottom:848.699661px;}
.y1a9{bottom:851.579659px;}
.y157{bottom:853.919658px;}
.ya4{bottom:857.519657px;}
.y1aa{bottom:858.419657px;}
.y215{bottom:861.119656px;}
.y75{bottom:861.839655px;}
.y74{bottom:862.559655px;}
.y73{bottom:863.279655px;}
.y10c{bottom:864.899654px;}
.y17d{bottom:867.779653px;}
.y1d5{bottom:868.139653px;}
.yb{bottom:869.399652px;}
.y1a8{bottom:873.899650px;}
.y51{bottom:874.799650px;}
.y1f6{bottom:878.219649px;}
.ya3{bottom:879.659648px;}
.y10b{bottom:885.419646px;}
.y17c{bottom:888.479645px;}
.y72{bottom:890.819644px;}
.y155{bottom:891.719643px;}
.y1d4{bottom:892.079643px;}
.y214{bottom:893.699643px;}
.y1a7{bottom:896.219642px;}
.y1f5{bottom:900.539640px;}
.y50{bottom:901.619639px;}
.ya2{bottom:901.799639px;}
.y10a{bottom:905.219638px;}
.ya{bottom:905.759638px;}
.y108{bottom:905.939638px;}
.y109{bottom:910.439636px;}
.y17b{bottom:912.419635px;}
.y1d3{bottom:912.959635px;}
.y154{bottom:914.039634px;}
.y1a6{bottom:916.919633px;}
.y71{bottom:918.179633px;}
.ya0{bottom:923.939630px;}
.y107{bottom:926.099630px;}
.y213{bottom:926.459629px;}
.y105{bottom:926.819629px;}
.ya1{bottom:928.439629px;}
.y4f{bottom:928.619629px;}
.yc8{bottom:929.699628px;}
.y106{bottom:931.319627px;}
.y17a{bottom:934.739626px;}
.y3e{bottom:934.740000px;}
.y153{bottom:936.359625px;}
.y1d2{bottom:936.899625px;}
.y1a5{bottom:941.039624px;}
.y45{bottom:943.379623px;}
.y70{bottom:944.999622px;}
.y9f{bottom:946.439621px;}
.y9e{bottom:947.159621px;}
.y104{bottom:948.239621px;}
.y4e{bottom:955.439618px;}
.y152{bottom:958.679617px;}
.yc7{bottom:958.859616px;}
.y1d1{bottom:959.219616px;}
.y44{bottom:960.479616px;}
.y1a4{bottom:961.739615px;}
.y103{bottom:968.939612px;}
.y1f4{bottom:969.119612px;}
.y6f{bottom:971.999611px;}
.y9d{bottom:973.079611px;}
.y9c{bottom:973.799610px;}
.ydb{bottom:974.699610px;}
.y43{bottom:977.759609px;}
.yc6{bottom:979.739608px;}
.y212{bottom:979.919608px;}
.y151{bottom:980.999608px;}
.y179{bottom:981.179608px;}
.y1d0{bottom:981.539607px;}
.y4d{bottom:982.259607px;}
.y1a3{bottom:984.419606px;}
.y1f3{bottom:991.439603px;}
.y9b{bottom:994.859602px;}
.y6e{bottom:998.819600px;}
.y211{bottom:1000.619600px;}
.y150{bottom:1001.879599px;}
.y4c{bottom:1003.319599px;}
.yc5{bottom:1003.499599px;}
.y1cf{bottom:1003.859598px;}
.y42{bottom:1004.039598px;}
.yda{bottom:1005.119598px;}
.y102{bottom:1012.499595px;}
.y46{bottom:1016.100000px;}
.y40{bottom:1018.080000px;}
.y100{bottom:1018.619593px;}
.yff{bottom:1019.339592px;}
.y101{bottom:1020.059592px;}
.y210{bottom:1021.319591px;}
.y99{bottom:1023.479591px;}
.y1ce{bottom:1024.559590px;}
.y6d{bottom:1025.639590px;}
.y4b{bottom:1025.819590px;}
.y9a{bottom:1027.259589px;}
.y9{bottom:1082.339567px;}
.y3{bottom:1085.399566px;}
.y2{bottom:1102.679559px;}
.y1{bottom:1119.959552px;}
.h1f{height:4.002186px;}
.h23{height:5.835935px;}
.h32{height:12.780000px;}
.hc{height:14.040000px;}
.h11{height:16.560000px;}
.h13{height:16.740000px;}
.h12{height:17.820000px;}
.h24{height:18.000000px;}
.h34{height:18.540000px;}
.h3{height:18.720000px;}
.h2f{height:20.520000px;}
.h28{height:33.518307px;}
.hd{height:33.706744px;}
.h5{height:36.597642px;}
.hf{height:36.624009px;}
.ha{height:37.520493px;}
.h2d{height:38.160000px;}
.he{height:39.339828px;}
.h4{height:39.830258px;}
.h2a{height:40.860000px;}
.h14{height:40.909906px;}
.h1{height:41.522679px;}
.h1c{height:42.310530px;}
.h15{height:43.536076px;}
.h9{height:44.149201px;}
.h2c{height:45.720000px;}
.h2{height:46.025138px;}
.h8{height:48.796855px;}
.h19{height:48.875957px;}
.h7{height:49.289043px;}
.h10{height:50.027324px;}
.h21{height:51.793925px;}
.h16{height:52.417948px;}
.h35{height:52.453104px;}
.h2b{height:53.280000px;}
.h2e{height:53.640000px;}
.h29{height:54.000000px;}
.h22{height:60.547827px;}
.h27{height:64.033920px;}
.h6{height:65.554427px;}
.h1b{height:67.113254px;}
.h1d{height:69.993253px;}
.h17{height:72.949190px;}
.h18{height:75.829188px;}
.h26{height:79.153914px;}
.h33{height:82.427311px;}
.hb{height:82.785904px;}
.h30{height:85.189185px;}
.h1a{height:88.069184px;}
.h1e{height:90.949182px;}
.h25{height:96.709180px;}
.h20{height:111.829174px;}
.h31{height:114.709173px;}
.h0{height:1188.000000px;}
.w22{width:0.720000px;}
.wc{width:0.900000px;}
.w17{width:1.260000px;}
.w1d{width:2.160000px;}
.w7{width:3.600000px;}
.w19{width:4.680000px;}
.w1e{width:5.760000px;}
.w1{width:5.940000px;}
.wa{width:6.660000px;}
.w13{width:6.840000px;}
.w3{width:7.020000px;}
.wf{width:7.200000px;}
.w12{width:7.380000px;}
.w4{width:7.560000px;}
.w23{width:7.920000px;}
.w5{width:8.280000px;}
.w1b{width:8.640000px;}
.w20{width:8.820000px;}
.w9{width:9.360000px;}
.wd{width:9.540000px;}
.we{width:9.720000px;}
.w8{width:9.900000px;}
.w14{width:10.440000px;}
.w15{width:11.160000px;}
.w10{width:11.340000px;}
.w21{width:12.060000px;}
.w1f{width:13.500000px;}
.wb{width:13.680000px;}
.w1c{width:15.840000px;}
.w18{width:35.100000px;}
.w1a{width:36.180000px;}
.w16{width:48.600000px;}
.w11{width:52.560000px;}
.w2{width:113.760000px;}
.w6{width:383.040000px;}
.w0{width:918.000000px;}
.x24{left:-4.680257px;}
.x0{left:0.000000px;}
.x13{left:80.999968px;}
.x11{left:82.979967px;}
.x10{left:85.499966px;}
.x1{left:88.559965px;}
.x3{left:94.139962px;}
.xd{left:97.020000px;}
.xf{left:103.499952px;}
.xa{left:106.019958px;}
.x26{left:107.999957px;}
.x2e{left:109.620004px;}
.x52{left:110.699278px;}
.x2a{left:116.638870px;}
.x28{left:123.478229px;}
.x14{left:129.599948px;}
.x12{left:139.679944px;}
.xa1{left:143.459943px;}
.x6{left:145.079942px;}
.xa2{left:152.999939px;}
.x27{left:161.099869px;}
.x9c{left:164.519934px;}
.x2f{left:165.961065px;}
.x37{left:168.839946px;}
.x9d{left:173.879930px;}
.x30{left:178.739929px;}
.x31{left:182.519927px;}
.x32{left:194.579922px;}
.x33{left:198.359921px;}
.xb{left:201.779919px;}
.x1d{left:203.040000px;}
.xc{left:204.839918px;}
.xe{left:210.780000px;}
.x90{left:213.299915px;}
.x34{left:214.379914px;}
.x7d{left:216.000000px;}
.x8d{left:218.339913px;}
.x70{left:220.139912px;}
.x15{left:223.559976px;}
.x16{left:224.639910px;}
.x4a{left:233.279766px;}
.x7e{left:234.900000px;}
.x59{left:240.659539px;}
.x4c{left:243.899902px;}
.x17{left:246.239902px;}
.x4b{left:250.199900px;}
.x4d{left:251.639899px;}
.x8e{left:253.440000px;}
.x1e{left:255.420000px;}
.x19{left:265.139984px;}
.x7f{left:268.740000px;}
.x4e{left:269.819892px;}
.x25{left:271.619891px;}
.x71{left:274.679890px;}
.x4f{left:277.199889px;}
.x1c{left:281.700000px;}
.x2{left:283.139887px;}
.x1a{left:284.579924px;}
.x50{left:293.759882px;}
.x68{left:296.100000px;}
.x20{left:300.059927px;}
.x8f{left:302.399879px;}
.x74{left:304.919878px;}
.x69{left:311.219876px;}
.x1b{left:319.139872px;}
.x35{left:324.719870px;}
.x36{left:328.679869px;}
.x9e{left:334.259866px;}
.x18{left:338.579989px;}
.x46{left:342.719869px;}
.x47{left:358.379871px;}
.xb4{left:364.320000px;}
.x5c{left:365.759854px;}
.xaf{left:370.799852px;}
.x80{left:374.580000px;}
.x91{left:376.919849px;}
.x9{left:378.539857px;}
.x7{left:381.779847px;}
.x1f{left:382.859847px;}
.x21{left:393.479843px;}
.xb5{left:394.740000px;}
.x2b{left:399.419840px;}
.x9b{left:402.481689px;}
.xb6{left:403.560000px;}
.x48{left:405.719838px;}
.x38{left:409.319836px;}
.x76{left:410.939836px;}
.x8{left:415.619834px;}
.x2c{left:417.599833px;}
.x97{left:418.851324px;}
.x77{left:420.299832px;}
.x2d{left:424.259830px;}
.x78{left:426.059830px;}
.x55{left:427.319829px;}
.xa5{left:428.579829px;}
.x6a{left:434.159826px;}
.xa6{left:435.239826px;}
.x5d{left:437.039825px;}
.x6b{left:439.559824px;}
.x92{left:441.179824px;}
.x5e{left:442.979823px;}
.x9f{left:444.600000px;}
.x56{left:446.759821px;}
.x62{left:448.019821px;}
.xb0{left:449.999820px;}
.xa9{left:451.259819px;}
.x81{left:453.240000px;}
.x93{left:455.399818px;}
.x3b{left:462.419496px;}
.xa0{left:464.040000px;}
.xaa{left:467.819820px;}
.x75{left:471.419811px;}
.xab{left:473.579815px;}
.x6c{left:476.459809px;}
.xac{left:477.539809px;}
.x6d{left:482.039807px;}
.x98{left:487.080141px;}
.x3c{left:488.339805px;}
.x79{left:490.859832px;}
.xb1{left:492.299803px;}
.x22{left:495.539802px;}
.x3d{left:498.599801px;}
.x5f{left:501.479799px;}
.x88{left:503.100000px;}
.xb2{left:505.799798px;}
.x60{left:507.599797px;}
.x99{left:509.219796px;}
.x63{left:512.639795px;}
.x9a{left:514.079794px;}
.xb3{left:516.239794px;}
.x94{left:518.039793px;}
.x57{left:520.379792px;}
.x3e{left:523.433791px;}
.xb7{left:525.780000px;}
.x58{left:527.039789px;}
.xa7{left:529.379788px;}
.x61{left:530.819788px;}
.x95{left:533.519787px;}
.xb8{left:534.600000px;}
.x89{left:538.200000px;}
.x96{left:539.819784px;}
.xad{left:541.619783px;}
.x8a{left:542.880000px;}
.x82{left:546.660000px;}
.xae{left:547.739781px;}
.x3f{left:551.879779px;}
.x72{left:556.379777px;}
.x40{left:557.459784px;}
.x73{left:561.959775px;}
.x39{left:566.819773px;}
.x6e{left:568.439773px;}
.x3a{left:573.479771px;}
.x64{left:575.819770px;}
.x83{left:577.980000px;}
.x8b{left:579.060000px;}
.xa8{left:582.839767px;}
.x84{left:585.000000px;}
.x41{left:608.399757px;}
.x42{left:623.699751px;}
.x5a{left:627.479749px;}
.x43{left:630.359748px;}
.x8c{left:631.620000px;}
.x5b{left:633.059747px;}
.x44{left:634.319746px;}
.x45{left:637.919745px;}
.x85{left:640.800000px;}
.x23{left:646.560000px;}
.x86{left:649.980000px;}
.x7a{left:654.479738px;}
.x87{left:657.000000px;}
.x7c{left:665.279740px;}
.x7b{left:668.159733px;}
.x65{left:675.720000px;}
.x66{left:685.620000px;}
.x67{left:694.980000px;}
.xa3{left:697.499721px;}
.x5{left:700.199720px;}
.xa4{left:710.819716px;}
.x51{left:718.379094px;}
.x53{left:780.659688px;}
.x54{left:784.439686px;}
.x6f{left:790.559684px;}
.x49{left:795.599682px;}
.x29{left:810.179195px;}
.x4{left:817.920000px;}
@media print{
.v10{vertical-align:-77.439969pt;}
.v2{vertical-align:-32.639987pt;}
.vd{vertical-align:-23.679991pt;}
.v13{vertical-align:-15.999994pt;}
.v5{vertical-align:-13.439995pt;}
.v11{vertical-align:-10.879996pt;}
.ve{vertical-align:-8.319997pt;}
.vb{vertical-align:-7.039997pt;}
.va{vertical-align:-5.119998pt;}
.v4{vertical-align:-2.559999pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.559999pt;}
.v8{vertical-align:8.319997pt;}
.vf{vertical-align:10.879996pt;}
.v6{vertical-align:13.439995pt;}
.v7{vertical-align:15.999994pt;}
.v12{vertical-align:21.119992pt;}
.vc{vertical-align:23.679991pt;}
.v15{vertical-align:28.799988pt;}
.v1{vertical-align:33.279987pt;}
.v9{vertical-align:34.559986pt;}
.v14{vertical-align:37.119985pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.010720pt;}
.ls3{letter-spacing:0.055772pt;}
.ls2e{letter-spacing:0.061211pt;}
.ls31{letter-spacing:0.061227pt;}
.ls25{letter-spacing:0.061250pt;}
.ls1d{letter-spacing:0.071040pt;}
.ls17{letter-spacing:0.108107pt;}
.ls7{letter-spacing:0.111776pt;}
.ls24{letter-spacing:0.184320pt;}
.ls19{letter-spacing:0.191680pt;}
.ls2{letter-spacing:0.244066pt;}
.ls1e{letter-spacing:0.314773pt;}
.lsb{letter-spacing:0.324587pt;}
.ls18{letter-spacing:0.371467pt;}
.ls12{letter-spacing:0.371893pt;}
.ls20{letter-spacing:0.452586pt;}
.ls2d{letter-spacing:0.702453pt;}
.ls2c{letter-spacing:0.803520pt;}
.ls34{letter-spacing:1.444746pt;}
.ls32{letter-spacing:2.085972pt;}
.ls1b{letter-spacing:2.591839pt;}
.ls36{letter-spacing:2.695946pt;}
.ls2b{letter-spacing:3.368425pt;}
.lsc{letter-spacing:3.847348pt;}
.ls21{letter-spacing:3.874292pt;}
.lsf{letter-spacing:5.682344pt;}
.ls1f{letter-spacing:5.797971pt;}
.ls9{letter-spacing:6.439197pt;}
.ls16{letter-spacing:7.205650pt;}
.ls35{letter-spacing:7.857010pt;}
.ls10{letter-spacing:9.056476pt;}
.ls30{letter-spacing:9.139463pt;}
.ls15{letter-spacing:9.618343pt;}
.ls4{letter-spacing:9.796903pt;}
.ls29{letter-spacing:10.151409pt;}
.ls13{letter-spacing:10.350236pt;}
.lsd{letter-spacing:10.927782pt;}
.ls2f{letter-spacing:11.063089pt;}
.ls11{letter-spacing:11.644049pt;}
.lse{letter-spacing:12.824475pt;}
.ls33{letter-spacing:23.887617pt;}
.ls1{letter-spacing:65.433307pt;}
.ls8{letter-spacing:77.109302pt;}
.ls6{letter-spacing:77.750369pt;}
.ls14{letter-spacing:78.391435pt;}
.ls26{letter-spacing:91.215964pt;}
.ls1a{letter-spacing:123.277284pt;}
.ls0{letter-spacing:132.762080pt;}
.ls28{letter-spacing:720.762378pt;}
.ls2a{letter-spacing:846.442328pt;}
.ls23{letter-spacing:879.146315pt;}
.ls1c{letter-spacing:911.204969pt;}
.ls27{letter-spacing:966.356947pt;}
.ls22{letter-spacing:971.487611pt;}
.ws8{word-spacing:-35.647986pt;}
.ws9{word-spacing:-32.796147pt;}
.ws2{word-spacing:-28.855760pt;}
.wsb{word-spacing:-25.310070pt;}
.wsa{word-spacing:-23.884150pt;}
.ws7{word-spacing:-16.111770pt;}
.wsd{word-spacing:-16.061243pt;}
.ws6{word-spacing:-15.999994pt;}
.ws4{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.719994pt;}
.ws1{word-spacing:-13.343995pt;}
.ws3{word-spacing:-13.279995pt;}
.wsc{word-spacing:-10.719996pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-27.179698pt;}
._20{margin-left:-24.164002pt;}
._2b{margin-left:-14.170042pt;}
._8{margin-left:-4.853388pt;}
._1b{margin-left:-3.526720pt;}
._5{margin-left:-2.590590pt;}
._3{margin-left:-1.555816pt;}
._0{width:1.024788pt;}
._19{width:1.960100pt;}
._e{width:3.301642pt;}
._7{width:4.492563pt;}
._6{width:5.558739pt;}
._1c{width:6.493912pt;}
._9{width:7.436980pt;}
._1f{width:8.605072pt;}
._14{width:9.596413pt;}
._31{width:10.507419pt;}
._b{width:11.445715pt;}
._15{width:12.826802pt;}
._1a{width:13.829091pt;}
._c{width:14.949586pt;}
._d{width:15.955826pt;}
._a{width:17.519184pt;}
._1e{width:19.108081pt;}
._18{width:20.696814pt;}
._2d{width:21.893019pt;}
._16{width:23.016718pt;}
._17{width:24.543805pt;}
._1d{width:25.754500pt;}
._30{width:26.798418pt;}
._11{width:27.763195pt;}
._32{width:29.074690pt;}
._34{width:32.614573pt;}
._35{width:33.581303pt;}
._10{width:41.381556pt;}
._f{width:42.325367pt;}
._13{width:49.417235pt;}
._12{width:56.216532pt;}
._24{width:65.828631pt;}
._37{width:73.092753pt;}
._36{width:74.240041pt;}
._1{width:75.692930pt;}
._25{width:76.912903pt;}
._27{width:176.119147pt;}
._23{width:181.971852pt;}
._28{width:187.510604pt;}
._21{width:192.587231pt;}
._4{width:315.673973pt;}
._26{width:359.358933pt;}
._29{width:414.503871pt;}
._2a{width:431.175864pt;}
._2e{width:566.794189pt;}
._2f{width:751.130489pt;}
._33{width:932.497015pt;}
._2c{width:961.460330pt;}
._2{width:2384.749233pt;}
.fs7{font-size:5.119998pt;}
.fs6{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:0.159744pt;}
.y1cd{bottom:2.239891pt;}
.y1a2{bottom:2.239899pt;}
.y12{bottom:2.399732pt;}
.y3f{bottom:2.719667pt;}
.y41{bottom:2.879637pt;}
.y3c{bottom:2.879953pt;}
.yfe{bottom:3.199739pt;}
.y1c8{bottom:3.199860pt;}
.y1cb{bottom:3.199898pt;}
.y47{bottom:3.519637pt;}
.yfc{bottom:3.519743pt;}
.y7{bottom:3.519982pt;}
.y14f{bottom:3.839806pt;}
.y1c9{bottom:3.839860pt;}
.y13d{bottom:11.999743pt;}
.y140{bottom:12.959743pt;}
.y13c{bottom:16.639741pt;}
.y141{bottom:16.959741pt;}
.y146{bottom:21.599739pt;}
.y138{bottom:21.919739pt;}
.y137{bottom:23.839738pt;}
.y8{bottom:25.119990pt;}
.y145{bottom:26.399732pt;}
.y13b{bottom:27.999732pt;}
.y13f{bottom:27.999734pt;}
.y148{bottom:27.999736pt;}
.y136{bottom:29.919736pt;}
.y139{bottom:34.399734pt;}
.y142{bottom:36.479733pt;}
.y143{bottom:37.119733pt;}
.y6{bottom:41.120000pt;}
.y5{bottom:44.639982pt;}
.yf9{bottom:89.599964pt;}
.yd9{bottom:91.999963pt;}
.yf8{bottom:93.759962pt;}
.y1f2{bottom:96.959961pt;}
.y1a0{bottom:98.079961pt;}
.y98{bottom:99.519960pt;}
.y3d{bottom:99.679960pt;}
.yc4{bottom:100.639960pt;}
.y134{bottom:105.279958pt;}
.y178{bottom:105.439958pt;}
.y20f{bottom:109.919956pt;}
.yd8{bottom:110.399956pt;}
.y6c{bottom:111.359955pt;}
.yf7{bottom:113.919954pt;}
.y3b{bottom:115.200000pt;}
.y19f{bottom:116.479953pt;}
.y1f1{bottom:116.799953pt;}
.yc3{bottom:120.639952pt;}
.y133{bottom:125.119950pt;}
.y177{bottom:125.279950pt;}
.y97{bottom:126.079950pt;}
.yf5{bottom:126.719949pt;}
.yd7{bottom:128.799948pt;}
.y20e{bottom:129.759948pt;}
.yf6{bottom:131.999947pt;}
.y4{bottom:132.639947pt;}
.yf4{bottom:134.079946pt;}
.y19e{bottom:134.879946pt;}
.y69{bottom:135.359946pt;}
.y6b{bottom:135.999946pt;}
.y6a{bottom:139.359944pt;}
.yc2{bottom:140.479944pt;}
.y1f0{bottom:140.639944pt;}
.y131{bottom:144.959942pt;}
.y176{bottom:145.119942pt;}
.yd6{bottom:147.199941pt;}
.y96{bottom:149.919940pt;}
.y132{bottom:151.039940pt;}
.y19d{bottom:153.279939pt;}
.y4a{bottom:156.639937pt;}
.y20d{bottom:158.879936pt;}
.yc1{bottom:160.319936pt;}
.y68{bottom:160.479936pt;}
.yf1{bottom:162.079935pt;}
.yf3{bottom:163.359935pt;}
.y130{bottom:164.639934pt;}
.y175{bottom:164.959934pt;}
.yd5{bottom:165.599934pt;}
.yf0{bottom:166.079934pt;}
.yf2{bottom:167.359933pt;}
.y19c{bottom:171.679931pt;}
.yef{bottom:171.839931pt;}
.y49{bottom:171.999931pt;}
.yee{bottom:175.839930pt;}
.y95{bottom:176.319929pt;}
.y94{bottom:176.959929pt;}
.y20c{bottom:177.279929pt;}
.yc0{bottom:180.159928pt;}
.y12f{bottom:183.199927pt;}
.y174{bottom:184.799926pt;}
.yd4{bottom:185.439926pt;}
.y48{bottom:187.359925pt;}
.y1ef{bottom:191.039924pt;}
.y19b{bottom:193.279923pt;}
.y67{bottom:197.279921pt;}
.ybf{bottom:199.999920pt;}
.yed{bottom:201.279919pt;}
.y1d{bottom:203.359919pt;}
.y12e{bottom:204.319918pt;}
.y93{bottom:204.479918pt;}
.yd3{bottom:205.279918pt;}
.y20b{bottom:206.239918pt;}
.y19a{bottom:211.679915pt;}
.y173{bottom:215.199914pt;}
.y1ee{bottom:217.439913pt;}
.ybe{bottom:218.399913pt;}
.yec{bottom:220.479912pt;}
.yeb{bottom:221.119912pt;}
.y66{bottom:221.279911pt;}
.y12d{bottom:224.319910pt;}
.y20a{bottom:224.639910pt;}
.yd2{bottom:225.119910pt;}
.y92{bottom:228.319909pt;}
.y199{bottom:230.079908pt;}
.y172{bottom:235.199906pt;}
.y3a{bottom:236.159906pt;}
.ybd{bottom:237.119905pt;}
.y1ed{bottom:237.279905pt;}
.yea{bottom:241.439903pt;}
.y12c{bottom:244.159902pt;}
.yd1{bottom:244.959902pt;}
.y65{bottom:245.119902pt;}
.y1c6{bottom:248.799900pt;}
.y1a1{bottom:249.600000pt;}
.y198{bottom:251.199900pt;}
.y91{bottom:251.839899pt;}
.y90{bottom:252.479899pt;}
.y1ca{bottom:252.960000pt;}
.y209{bottom:253.759898pt;}
.y39{bottom:253.919898pt;}
.y171{bottom:254.879898pt;}
.ybc{bottom:255.519898pt;}
.y1c1{bottom:255.999898pt;}
.y1c3{bottom:256.639897pt;}
.y1ec{bottom:257.119897pt;}
.y1c5{bottom:258.079897pt;}
.ye9{bottom:259.839896pt;}
.y1c2{bottom:260.639896pt;}
.y12b{bottom:263.999894pt;}
.y1c4{bottom:264.159894pt;}
.yd0{bottom:264.799894pt;}
.y38{bottom:269.119892pt;}
.y1cc{bottom:269.920000pt;}
.y197{bottom:271.039892pt;}
.y208{bottom:272.159891pt;}
.ybb{bottom:273.919890pt;}
.y8f{bottom:276.639889pt;}
.y1eb{bottom:276.959889pt;}
.ye8{bottom:280.959888pt;}
.y12a{bottom:283.839886pt;}
.y37{bottom:284.479886pt;}
.ycf{bottom:284.799886pt;}
.y170{bottom:285.439886pt;}
.y1c0{bottom:289.119884pt;}
.y196{bottom:290.879884pt;}
.yba{bottom:292.479883pt;}
.y64{bottom:294.399882pt;}
.y1ea{bottom:296.799881pt;}
.y36{bottom:299.839880pt;}
.y8e{bottom:300.479880pt;}
.ye7{bottom:300.799880pt;}
.y207{bottom:301.279879pt;}
.y129{bottom:302.239879pt;}
.yce{bottom:304.479878pt;}
.y16f{bottom:305.279878pt;}
.y195{bottom:310.719876pt;}
.yb9{bottom:310.879876pt;}
.y1c{bottom:312.159875pt;}
.y35{bottom:315.519874pt;}
.y1e9{bottom:316.639873pt;}
.y63{bottom:318.399873pt;}
.y206{bottom:319.679872pt;}
.ye6{bottom:320.639872pt;}
.y128{bottom:323.519871pt;}
.y16e{bottom:325.279870pt;}
.y8c{bottom:325.919870pt;}
.y8d{bottom:329.279868pt;}
.ycd{bottom:329.599868pt;}
.y194{bottom:330.719868pt;}
.y34{bottom:330.879868pt;}
.y1e8{bottom:336.479865pt;}
.y205{bottom:338.079865pt;}
.ye5{bottom:340.479864pt;}
.y62{bottom:342.239863pt;}
.y127{bottom:343.359863pt;}
.y16d{bottom:345.119862pt;}
.y1bd{bottom:345.599862pt;}
.y1ba{bottom:345.759862pt;}
.y33{bottom:346.239862pt;}
.y1c7{bottom:346.400000pt;}
.y1bc{bottom:347.679861pt;}
.y1bb{bottom:348.319861pt;}
.ycc{bottom:349.439860pt;}
.y1be{bottom:349.759860pt;}
.y193{bottom:350.559860pt;}
.y8a{bottom:351.519859pt;}
.yb8{bottom:351.679859pt;}
.y1bf{bottom:353.759858pt;}
.y8b{bottom:354.879858pt;}
.y1e7{bottom:356.479857pt;}
.y1b9{bottom:357.599857pt;}
.ye4{bottom:359.039856pt;}
.y32{bottom:361.599855pt;}
.y126{bottom:363.199855pt;}
.y61{bottom:366.239854pt;}
.y204{bottom:368.479853pt;}
.y16c{bottom:368.959852pt;}
.ycb{bottom:369.279852pt;}
.yb7{bottom:370.079852pt;}
.y192{bottom:374.399850pt;}
.y88{bottom:375.999850pt;}
.y1e6{bottom:376.319849pt;}
.y31{bottom:376.799849pt;}
.y87{bottom:377.279849pt;}
.ye3{bottom:380.319848pt;}
.y89{bottom:380.639848pt;}
.y125{bottom:383.039847pt;}
.yca{bottom:387.839845pt;}
.yb6{bottom:388.479845pt;}
.y16b{bottom:388.799844pt;}
.y60{bottom:390.079844pt;}
.y30{bottom:392.159843pt;}
.y1b8{bottom:393.279843pt;}
.y191{bottom:394.239842pt;}
.y1e5{bottom:396.159842pt;}
.ye2{bottom:402.719839pt;}
.y124{bottom:402.879839pt;}
.y85{bottom:403.839838pt;}
.y1b{bottom:404.959838pt;}
.yb5{bottom:406.879837pt;}
.y86{bottom:407.199837pt;}
.y2f{bottom:407.519837pt;}
.y203{bottom:408.319837pt;}
.y5f{bottom:413.919834pt;}
.y190{bottom:414.079834pt;}
.y1e4{bottom:414.559834pt;}
.yc9{bottom:415.999834pt;}
.y16a{bottom:419.359832pt;}
.ye1{bottom:421.119832pt;}
.y2e{bottom:422.879831pt;}
.y123{bottom:425.439830pt;}
.yb4{bottom:425.599830pt;}
.y202{bottom:427.999829pt;}
.y84{bottom:431.359827pt;}
.y1b7{bottom:432.959827pt;}
.y18f{bottom:433.919826pt;}
.y1e3{bottom:435.679826pt;}
.y1b6{bottom:436.959825pt;}
.y2d{bottom:438.239825pt;}
.y169{bottom:439.199824pt;}
.ye0{bottom:439.519824pt;}
.yb3{bottom:443.999822pt;}
.y122{bottom:446.719821pt;}
.y1a{bottom:451.679819pt;}
.y1b5{bottom:452.479819pt;}
.y2c{bottom:453.439819pt;}
.y18d{bottom:453.759818pt;}
.y1e2{bottom:455.519818pt;}
.y168{bottom:457.599817pt;}
.ydf{bottom:457.919817pt;}
.y83{bottom:458.079817pt;}
.y201{bottom:458.719817pt;}
.y18e{bottom:459.839816pt;}
.y5e{bottom:462.079815pt;}
.yb2{bottom:462.399815pt;}
.y121{bottom:465.119814pt;}
.y19{bottom:465.279814pt;}
.y2b{bottom:468.799812pt;}
.y18c{bottom:473.599811pt;}
.y1e1{bottom:475.359810pt;}
.y200{bottom:478.559809pt;}
.y18{bottom:478.879808pt;}
.y167{bottom:479.199808pt;}
.y14e{bottom:480.480000pt;}
.yb1{bottom:480.799808pt;}
.yde{bottom:482.079807pt;}
.y1b4{bottom:482.399807pt;}
.y120{bottom:483.839806pt;}
.y2a{bottom:484.159806pt;}
.y14d{bottom:484.319806pt;}
.y82{bottom:485.119806pt;}
.y81{bottom:485.759806pt;}
.y5d{bottom:486.239806pt;}
.y17{bottom:491.519803pt;}
.y18b{bottom:493.439803pt;}
.y1e0{bottom:495.199802pt;}
.y1ff{bottom:498.399801pt;}
.y166{bottom:498.719801pt;}
.yb0{bottom:499.199800pt;}
.y29{bottom:499.519800pt;}
.ydd{bottom:500.479800pt;}
.y11f{bottom:502.559799pt;}
.y5c{bottom:510.239796pt;}
.y18a{bottom:511.999795pt;}
.y1b3{bottom:514.239794pt;}
.y14c{bottom:514.559794pt;}
.y28{bottom:514.879794pt;}
.y80{bottom:515.199794pt;}
.yaf{bottom:517.599793pt;}
.y165{bottom:518.399793pt;}
.ydc{bottom:518.879792pt;}
.y11e{bottom:521.439791pt;}
.y1fe{bottom:528.799788pt;}
.y27{bottom:530.239788pt;}
.y189{bottom:533.279787pt;}
.y5b{bottom:534.079786pt;}
.y1df{bottom:535.039786pt;}
.yae{bottom:535.999786pt;}
.y164{bottom:536.799785pt;}
.y16{bottom:537.279785pt;}
.y1b2{bottom:538.239785pt;}
.y11d{bottom:540.159784pt;}
.y7f{bottom:542.719783pt;}
.y26{bottom:545.439782pt;}
.y14b{bottom:545.919782pt;}
.y1fd{bottom:548.479781pt;}
.y188{bottom:551.679779pt;}
.yad{bottom:554.399778pt;}
.y1de{bottom:554.879778pt;}
.y163{bottom:555.679778pt;}
.y5a{bottom:558.079777pt;}
.y11c{bottom:558.879776pt;}
.y25{bottom:560.799776pt;}
.y1b1{bottom:565.759774pt;}
.y7e{bottom:566.559773pt;}
.y162{bottom:572.319771pt;}
.y187{bottom:572.799771pt;}
.y1dd{bottom:573.279771pt;}
.yac{bottom:574.559770pt;}
.y24{bottom:576.159770pt;}
.y14a{bottom:576.639769pt;}
.y11b{bottom:577.599769pt;}
.y1fc{bottom:579.199768pt;}
.y59{bottom:581.919767pt;}
.y15{bottom:583.039767pt;}
.y23{bottom:591.519763pt;}
.y186{bottom:592.639763pt;}
.yab{bottom:592.959763pt;}
.y1b0{bottom:593.439763pt;}
.y7c{bottom:594.239762pt;}
.y1dc{bottom:594.559762pt;}
.y11a{bottom:596.479761pt;}
.y7d{bottom:597.599761pt;}
.y1fb{bottom:598.879760pt;}
.y58{bottom:605.919758pt;}
.y22{bottom:606.879757pt;}
.y149{bottom:607.519757pt;}
.y161{bottom:610.879756pt;}
.y184{bottom:612.479755pt;}
.y1db{bottom:613.119755pt;}
.y119{bottom:615.199754pt;}
.y185{bottom:618.559753pt;}
.y1af{bottom:620.959752pt;}
.y7b{bottom:621.919751pt;}
.y21{bottom:622.239751pt;}
.yaa{bottom:624.959750pt;}
.y14{bottom:628.799748pt;}
.y1fa{bottom:629.439748pt;}
.y57{bottom:629.759748pt;}
.y135{bottom:630.560000pt;}
.y160{bottom:630.879748pt;}
.y147{bottom:630.880000pt;}
.y183{bottom:632.319747pt;}
.y1da{bottom:634.239746pt;}
.y20{bottom:637.439745pt;}
.y13e{bottom:637.920000pt;}
.yfa{bottom:639.520000pt;}
.y118{bottom:641.919743pt;}
.y13a{bottom:642.240000pt;}
.y13{bottom:642.719743pt;}
.ya9{bottom:644.479742pt;}
.y144{bottom:644.640000pt;}
.y7a{bottom:646.239742pt;}
.y113{bottom:648.479741pt;}
.y15f{bottom:649.279740pt;}
.yfd{bottom:650.400000pt;}
.y219{bottom:650.559740pt;}
.y182{bottom:652.159739pt;}
.y1f{bottom:652.799739pt;}
.y116{bottom:653.119739pt;}
.y56{bottom:653.759738pt;}
.y1d9{bottom:654.079738pt;}
.y117{bottom:656.639737pt;}
.y115{bottom:659.199736pt;}
.y114{bottom:659.839736pt;}
.y112{bottom:662.719735pt;}
.ya8{bottom:662.879735pt;}
.y15d{bottom:667.519733pt;}
.y1e{bottom:668.159733pt;}
.y11{bottom:668.160000pt;}
.y79{bottom:670.079732pt;}
.y218{bottom:670.399732pt;}
.y181{bottom:672.159731pt;}
.y15e{bottom:672.799731pt;}
.y1d8{bottom:673.919730pt;}
.y1ae{bottom:676.159730pt;}
.y55{bottom:677.599729pt;}
.y1f9{bottom:679.839728pt;}
.y111{bottom:681.919727pt;}
.ya7{bottom:682.719727pt;}
.yf{bottom:691.359723pt;}
.y10{bottom:691.519723pt;}
.y180{bottom:691.999723pt;}
.y1d7{bottom:693.759722pt;}
.y78{bottom:694.079722pt;}
.y110{bottom:697.279721pt;}
.y1ad{bottom:697.599721pt;}
.y217{bottom:699.519720pt;}
.y1f8{bottom:699.679720pt;}
.ya6{bottom:702.719719pt;}
.y54{bottom:705.599718pt;}
.y17f{bottom:710.399716pt;}
.y15c{bottom:712.319715pt;}
.y15a{bottom:712.959715pt;}
.y10f{bottom:713.279715pt;}
.y15b{bottom:713.599715pt;}
.y1ac{bottom:715.999714pt;}
.y159{bottom:716.959713pt;}
.ye{bottom:717.599713pt;}
.y77{bottom:717.919713pt;}
.y1f7{bottom:719.519712pt;}
.ya5{bottom:721.119712pt;}
.y53{bottom:729.439708pt;}
.y10e{bottom:731.679707pt;}
.y158{bottom:732.319707pt;}
.y1d6{bottom:733.439707pt;}
.yd{bottom:735.999706pt;}
.y1ab{bottom:737.119705pt;}
.y76{bottom:742.719703pt;}
.y216{bottom:747.039701pt;}
.y10d{bottom:750.079700pt;}
.y17e{bottom:751.519699pt;}
.y156{bottom:752.959699pt;}
.y52{bottom:753.279699pt;}
.yc{bottom:754.399698pt;}
.y1a9{bottom:756.959697pt;}
.y157{bottom:759.039696pt;}
.ya4{bottom:762.239695pt;}
.y1aa{bottom:763.039695pt;}
.y215{bottom:765.439694pt;}
.y75{bottom:766.079694pt;}
.y74{bottom:766.719693pt;}
.y73{bottom:767.359693pt;}
.y10c{bottom:768.799692pt;}
.y17d{bottom:771.359691pt;}
.y1d5{bottom:771.679691pt;}
.yb{bottom:772.799691pt;}
.y1a8{bottom:776.799689pt;}
.y51{bottom:777.599689pt;}
.y1f6{bottom:780.639688pt;}
.ya3{bottom:781.919687pt;}
.y10b{bottom:787.039685pt;}
.y17c{bottom:789.759684pt;}
.y72{bottom:791.839683pt;}
.y155{bottom:792.639683pt;}
.y1d4{bottom:792.959683pt;}
.y214{bottom:794.399682pt;}
.y1a7{bottom:796.639681pt;}
.y1f5{bottom:800.479680pt;}
.y50{bottom:801.439679pt;}
.ya2{bottom:801.599679pt;}
.y10a{bottom:804.639678pt;}
.ya{bottom:805.119678pt;}
.y108{bottom:805.279678pt;}
.y109{bottom:809.279676pt;}
.y17b{bottom:811.039676pt;}
.y1d3{bottom:811.519675pt;}
.y154{bottom:812.479675pt;}
.y1a6{bottom:815.039674pt;}
.y71{bottom:816.159674pt;}
.ya0{bottom:821.279671pt;}
.y107{bottom:823.199671pt;}
.y213{bottom:823.519671pt;}
.y105{bottom:823.839670pt;}
.ya1{bottom:825.279670pt;}
.y4f{bottom:825.439670pt;}
.yc8{bottom:826.399669pt;}
.y106{bottom:827.839669pt;}
.y17a{bottom:830.879668pt;}
.y3e{bottom:830.880000pt;}
.y153{bottom:832.319667pt;}
.y1d2{bottom:832.799667pt;}
.y1a5{bottom:836.479665pt;}
.y45{bottom:838.559665pt;}
.y70{bottom:839.999664pt;}
.y9f{bottom:841.279663pt;}
.y9e{bottom:841.919663pt;}
.y104{bottom:842.879663pt;}
.y4e{bottom:849.279660pt;}
.y152{bottom:852.159659pt;}
.yc7{bottom:852.319659pt;}
.y1d1{bottom:852.639659pt;}
.y44{bottom:853.759658pt;}
.y1a4{bottom:854.879658pt;}
.y103{bottom:861.279655pt;}
.y1f4{bottom:861.439655pt;}
.y6f{bottom:863.999654pt;}
.y9d{bottom:864.959654pt;}
.y9c{bottom:865.599654pt;}
.ydb{bottom:866.399653pt;}
.y43{bottom:869.119652pt;}
.yc6{bottom:870.879652pt;}
.y212{bottom:871.039652pt;}
.y151{bottom:871.999651pt;}
.y179{bottom:872.159651pt;}
.y1d0{bottom:872.479651pt;}
.y4d{bottom:873.119651pt;}
.y1a3{bottom:875.039650pt;}
.y1f3{bottom:881.279647pt;}
.y9b{bottom:884.319646pt;}
.y6e{bottom:887.839645pt;}
.y211{bottom:889.439644pt;}
.y150{bottom:890.559644pt;}
.y4c{bottom:891.839643pt;}
.yc5{bottom:891.999643pt;}
.y1cf{bottom:892.319643pt;}
.y42{bottom:892.479643pt;}
.yda{bottom:893.439643pt;}
.y102{bottom:899.999640pt;}
.y46{bottom:903.200000pt;}
.y40{bottom:904.960000pt;}
.y100{bottom:905.439638pt;}
.yff{bottom:906.079638pt;}
.y101{bottom:906.719637pt;}
.y210{bottom:907.839637pt;}
.y99{bottom:909.759636pt;}
.y1ce{bottom:910.719636pt;}
.y6d{bottom:911.679635pt;}
.y4b{bottom:911.839635pt;}
.y9a{bottom:913.119635pt;}
.y9{bottom:962.079615pt;}
.y3{bottom:964.799614pt;}
.y2{bottom:980.159608pt;}
.y1{bottom:995.519602pt;}
.h1f{height:3.557499pt;}
.h23{height:5.187498pt;}
.h32{height:11.360000pt;}
.hc{height:12.480000pt;}
.h11{height:14.720000pt;}
.h13{height:14.880000pt;}
.h12{height:15.840000pt;}
.h24{height:16.000000pt;}
.h34{height:16.480000pt;}
.h3{height:16.640000pt;}
.h2f{height:18.240000pt;}
.h28{height:29.794051pt;}
.hd{height:29.961551pt;}
.h5{height:32.531237pt;}
.hf{height:32.554674pt;}
.ha{height:33.351549pt;}
.h2d{height:33.920000pt;}
.he{height:34.968736pt;}
.h4{height:35.404673pt;}
.h2a{height:36.320000pt;}
.h14{height:36.364360pt;}
.h1{height:36.909048pt;}
.h1c{height:37.609360pt;}
.h15{height:38.698735pt;}
.h9{height:39.243734pt;}
.h2c{height:40.640000pt;}
.h2{height:40.911234pt;}
.h8{height:43.374983pt;}
.h19{height:43.445295pt;}
.h7{height:43.812482pt;}
.h10{height:44.468732pt;}
.h21{height:46.039044pt;}
.h16{height:46.593731pt;}
.h35{height:46.624981pt;}
.h2b{height:47.360000pt;}
.h2e{height:47.680000pt;}
.h29{height:48.000000pt;}
.h22{height:53.820291pt;}
.h27{height:56.919040pt;}
.h6{height:58.270602pt;}
.h1b{height:59.656226pt;}
.h1d{height:62.216225pt;}
.h17{height:64.843724pt;}
.h18{height:67.403723pt;}
.h26{height:70.359034pt;}
.h33{height:73.268721pt;}
.hb{height:73.587471pt;}
.h30{height:75.723720pt;}
.h1a{height:78.283719pt;}
.h1e{height:80.843718pt;}
.h25{height:85.963716pt;}
.h20{height:99.403710pt;}
.h31{height:101.963709pt;}
.h0{height:1056.000000pt;}
.w22{width:0.640000pt;}
.wc{width:0.800000pt;}
.w17{width:1.120000pt;}
.w1d{width:1.920000pt;}
.w7{width:3.200000pt;}
.w19{width:4.160000pt;}
.w1e{width:5.120000pt;}
.w1{width:5.280000pt;}
.wa{width:5.920000pt;}
.w13{width:6.080000pt;}
.w3{width:6.240000pt;}
.wf{width:6.400000pt;}
.w12{width:6.560000pt;}
.w4{width:6.720000pt;}
.w23{width:7.040000pt;}
.w5{width:7.360000pt;}
.w1b{width:7.680000pt;}
.w20{width:7.840000pt;}
.w9{width:8.320000pt;}
.wd{width:8.480000pt;}
.we{width:8.640000pt;}
.w8{width:8.800000pt;}
.w14{width:9.280000pt;}
.w15{width:9.920000pt;}
.w10{width:10.080000pt;}
.w21{width:10.720000pt;}
.w1f{width:12.000000pt;}
.wb{width:12.160000pt;}
.w1c{width:14.080000pt;}
.w18{width:31.200000pt;}
.w1a{width:32.160000pt;}
.w16{width:43.200000pt;}
.w11{width:46.720000pt;}
.w2{width:101.120000pt;}
.w6{width:340.480000pt;}
.w0{width:816.000000pt;}
.x24{left:-4.160228pt;}
.x0{left:0.000000pt;}
.x13{left:71.999971pt;}
.x11{left:73.759970pt;}
.x10{left:75.999970pt;}
.x1{left:78.719969pt;}
.x3{left:83.679967pt;}
.xd{left:86.240000pt;}
.xf{left:91.999958pt;}
.xa{left:94.239962pt;}
.x26{left:95.999962pt;}
.x2e{left:97.440004pt;}
.x52{left:98.399358pt;}
.x2a{left:103.678996pt;}
.x28{left:109.758426pt;}
.x14{left:115.199954pt;}
.x12{left:124.159950pt;}
.xa1{left:127.519949pt;}
.x6{left:128.959948pt;}
.xa2{left:135.999946pt;}
.x27{left:143.199884pt;}
.x9c{left:146.239942pt;}
.x2f{left:147.520946pt;}
.x37{left:150.079952pt;}
.x9d{left:154.559938pt;}
.x30{left:158.879936pt;}
.x31{left:162.239935pt;}
.x32{left:172.959931pt;}
.x33{left:176.319929pt;}
.xb{left:179.359928pt;}
.x1d{left:180.480000pt;}
.xc{left:182.079927pt;}
.xe{left:187.360000pt;}
.x90{left:189.599924pt;}
.x34{left:190.559924pt;}
.x7d{left:192.000000pt;}
.x8d{left:194.079922pt;}
.x70{left:195.679922pt;}
.x15{left:198.719979pt;}
.x16{left:199.679920pt;}
.x4a{left:207.359792pt;}
.x7e{left:208.800000pt;}
.x59{left:213.919590pt;}
.x4c{left:216.799913pt;}
.x17{left:218.879912pt;}
.x4b{left:222.399911pt;}
.x4d{left:223.679911pt;}
.x8e{left:225.280000pt;}
.x1e{left:227.040000pt;}
.x19{left:235.679986pt;}
.x7f{left:238.880000pt;}
.x4e{left:239.839904pt;}
.x25{left:241.439903pt;}
.x71{left:244.159902pt;}
.x4f{left:246.399901pt;}
.x1c{left:250.400000pt;}
.x2{left:251.679899pt;}
.x1a{left:252.959932pt;}
.x50{left:261.119896pt;}
.x68{left:263.200000pt;}
.x20{left:266.719935pt;}
.x8f{left:268.799892pt;}
.x74{left:271.039892pt;}
.x69{left:276.639889pt;}
.x1b{left:283.679887pt;}
.x35{left:288.639885pt;}
.x36{left:292.159883pt;}
.x9e{left:297.119881pt;}
.x18{left:300.959990pt;}
.x46{left:304.639883pt;}
.x47{left:318.559885pt;}
.xb4{left:323.840000pt;}
.x5c{left:325.119870pt;}
.xaf{left:329.599868pt;}
.x80{left:332.960000pt;}
.x91{left:335.039866pt;}
.x9{left:336.479873pt;}
.x7{left:339.359864pt;}
.x1f{left:340.319864pt;}
.x21{left:349.759860pt;}
.xb5{left:350.880000pt;}
.x2b{left:355.039858pt;}
.x9b{left:357.761502pt;}
.xb6{left:358.720000pt;}
.x48{left:360.639856pt;}
.x38{left:363.839854pt;}
.x76{left:365.279854pt;}
.x8{left:369.439852pt;}
.x2c{left:371.199852pt;}
.x97{left:372.312288pt;}
.x77{left:373.599851pt;}
.x2d{left:377.119849pt;}
.x78{left:378.719849pt;}
.x55{left:379.839848pt;}
.xa5{left:380.959848pt;}
.x6a{left:385.919846pt;}
.xa6{left:386.879845pt;}
.x5d{left:388.479845pt;}
.x6b{left:390.719844pt;}
.x92{left:392.159843pt;}
.x5e{left:393.759842pt;}
.x9f{left:395.200000pt;}
.x56{left:397.119841pt;}
.x62{left:398.239841pt;}
.xb0{left:399.999840pt;}
.xa9{left:401.119840pt;}
.x81{left:402.880000pt;}
.x93{left:404.799838pt;}
.x3b{left:411.039552pt;}
.xa0{left:412.480000pt;}
.xaa{left:415.839840pt;}
.x75{left:419.039832pt;}
.xab{left:420.959836pt;}
.x6c{left:423.519831pt;}
.xac{left:424.479830pt;}
.x6d{left:428.479829pt;}
.x98{left:432.960125pt;}
.x3c{left:434.079826pt;}
.x79{left:436.319851pt;}
.xb1{left:437.599825pt;}
.x22{left:440.479824pt;}
.x3d{left:443.199823pt;}
.x5f{left:445.759822pt;}
.x88{left:447.200000pt;}
.xb2{left:449.599820pt;}
.x60{left:451.199820pt;}
.x99{left:452.639819pt;}
.x63{left:455.679818pt;}
.x9a{left:456.959817pt;}
.xb3{left:458.879816pt;}
.x94{left:460.479816pt;}
.x57{left:462.559815pt;}
.x3e{left:465.274481pt;}
.xb7{left:467.360000pt;}
.x58{left:468.479813pt;}
.xa7{left:470.559812pt;}
.x61{left:471.839811pt;}
.x95{left:474.239810pt;}
.xb8{left:475.200000pt;}
.x89{left:478.400000pt;}
.x96{left:479.839808pt;}
.xad{left:481.439807pt;}
.x8a{left:482.560000pt;}
.x82{left:485.920000pt;}
.xae{left:486.879805pt;}
.x3f{left:490.559804pt;}
.x72{left:494.559802pt;}
.x40{left:495.519808pt;}
.x73{left:499.519800pt;}
.x39{left:503.839798pt;}
.x6e{left:505.279798pt;}
.x3a{left:509.759796pt;}
.x64{left:511.839795pt;}
.x83{left:513.760000pt;}
.x8b{left:514.720000pt;}
.xa8{left:518.079793pt;}
.x84{left:520.000000pt;}
.x41{left:540.799784pt;}
.x42{left:554.399778pt;}
.x5a{left:557.759777pt;}
.x43{left:560.319776pt;}
.x8c{left:561.440000pt;}
.x5b{left:562.719775pt;}
.x44{left:563.839774pt;}
.x45{left:567.039773pt;}
.x85{left:569.600000pt;}
.x23{left:574.720000pt;}
.x86{left:577.760000pt;}
.x7a{left:581.759767pt;}
.x87{left:584.000000pt;}
.x7c{left:591.359769pt;}
.x7b{left:593.919762pt;}
.x65{left:600.640000pt;}
.x66{left:609.440000pt;}
.x67{left:617.760000pt;}
.xa3{left:619.999752pt;}
.x5{left:622.399751pt;}
.xa4{left:631.839747pt;}
.x51{left:638.559195pt;}
.x53{left:693.919722pt;}
.x54{left:697.279721pt;}
.x6f{left:702.719719pt;}
.x49{left:707.199717pt;}
.x29{left:720.159285pt;}
.x4{left:727.040000pt;}
}




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