
    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_c90c0e4dc532ede144697b05.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_0cd10fbb0cd556a87e1f2e6f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_0aa3642ff0e7d7b7e973214c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7a8238e49ae771dda012b879.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_6eba62bb1236d395348a3689.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5de21d7bf160d2a6119213a2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_4a8b19f8d99e84250e23948c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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;}
.ma{transform:matrix(0.219493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219493,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252996,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296307,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.345667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345667,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.362873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362873,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.445470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445470,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.468504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468504,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.lsd{letter-spacing:-0.220200px;}
.ls30{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.153600px;}
.ls1b{letter-spacing:-0.139800px;}
.ls2d{letter-spacing:-0.100300px;}
.ls12{letter-spacing:-0.090000px;}
.ls27{letter-spacing:-0.063017px;}
.ls22{letter-spacing:-0.058187px;}
.ls14{letter-spacing:-0.057638px;}
.ls1c{letter-spacing:-0.056739px;}
.ls2c{letter-spacing:-0.054959px;}
.lse{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.047992px;}
.ls15{letter-spacing:-0.046686px;}
.ls1e{letter-spacing:-0.045970px;}
.ls19{letter-spacing:-0.045637px;}
.ls2e{letter-spacing:-0.044517px;}
.ls28{letter-spacing:-0.044328px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.095219px;}
.ls3{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.110820px;}
.ls1a{letter-spacing:0.116528px;}
.lsf{letter-spacing:0.119980px;}
.ls1d{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.139800px;}
.ls10{letter-spacing:0.144094px;}
.ls18{letter-spacing:0.145659px;}
.ls20{letter-spacing:0.172378px;}
.ls2{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.221640px;}
.ls23{letter-spacing:0.274174px;}
.ls29{letter-spacing:0.281389px;}
.ls25{letter-spacing:0.310296px;}
.ls2a{letter-spacing:0.359979px;}
.ls17{letter-spacing:0.369042px;}
.ls11{letter-spacing:0.377526px;}
.ls2b{letter-spacing:0.451577px;}
.ls1f{letter-spacing:0.470526px;}
.ls2f{letter-spacing:14.130000px;}
.ls31{letter-spacing:16.406640px;}
.ls5{letter-spacing:36.926640px;}
.ls21{letter-spacing:40.819201px;}
.ls4{letter-spacing:41.148000px;}
.lsc{letter-spacing:41.246640px;}
.lsb{letter-spacing:44.846640px;}
.lsa{letter-spacing:46.286640px;}
.ls1{letter-spacing:475.050000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-60.120000px;}
.ws1b{word-spacing:-15.722846px;}
.ws9{word-spacing:-15.210000px;}
.ws4{word-spacing:-15.083280px;}
.ws0{word-spacing:-15.030000px;}
.wsa{word-spacing:-14.976720px;}
.ws15{word-spacing:-14.890200px;}
.ws24{word-spacing:-14.850000px;}
.ws8{word-spacing:-14.809800px;}
.ws14{word-spacing:-14.682465px;}
.ws10{word-spacing:-14.409383px;}
.wsd{word-spacing:-14.380564px;}
.ws16{word-spacing:-14.156486px;}
.ws1a{word-spacing:-13.749184px;}
.ws1f{word-spacing:-13.712196px;}
.ws5{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.475010px;}
.ws19{word-spacing:-13.416823px;}
.ws23{word-spacing:-12.150000px;}
.wsc{word-spacing:-11.998042px;}
.wsb{word-spacing:-11.974046px;}
.ws1{word-spacing:-11.970000px;}
.ws17{word-spacing:-11.469399px;}
.ws1e{word-spacing:-11.059852px;}
.wsf{word-spacing:-10.811648px;}
.wse{word-spacing:-10.764962px;}
.ws13{word-spacing:-10.594167px;}
.ws12{word-spacing:-10.568700px;}
.ws2{word-spacing:-10.530000px;}
.ws11{word-spacing:-10.523063px;}
.ws21{word-spacing:-10.309153px;}
.ws22{word-spacing:-10.264637px;}
.ws20{word-spacing:-10.233695px;}
.ws3{word-spacing:-9.720000px;}
.ws1c{word-spacing:-9.508369px;}
.ws1d{word-spacing:-9.419713px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._7{width:2.509200px;}
._b{width:4.464720px;}
._1b{width:5.619600px;}
._8{width:7.635240px;}
._9{width:9.198360px;}
._14{width:10.701360px;}
._6{width:12.024000px;}
._5{width:13.106160px;}
._a{width:16.052040px;}
._d{width:17.874000px;}
._13{width:19.238400px;}
._10{width:20.362320px;}
._12{width:22.024080px;}
._16{width:23.927760px;}
._18{width:25.551000px;}
._17{width:26.573040px;}
._1d{width:27.579240px;}
._20{width:29.098080px;}
._21{width:30.120120px;}
._19{width:31.682880px;}
._e{width:32.886000px;}
._15{width:33.906960px;}
._11{width:34.929360px;}
._24{width:36.793440px;}
._25{width:38.296440px;}
._26{width:39.378600px;}
._27{width:40.821480px;}
._1a{width:42.084000px;}
._1e{width:43.647120px;}
._2f{width:45.150120px;}
._31{width:46.232280px;}
._1f{width:47.795400px;}
._34{width:48.817440px;}
._28{width:50.140080px;}
._c{width:51.732000px;}
._33{width:52.905600px;}
._32{width:54.108000px;}
._f{width:55.188000px;}
._2a{width:56.394720px;}
._29{width:57.955680px;}
._2c{width:59.879520px;}
._30{width:61.442640px;}
._23{width:63.065880px;}
._37{width:68.176080px;}
._22{width:69.799320px;}
._2b{width:73.286280px;}
._1c{width:85.069800px;}
._35{width:92.093400px;}
._36{width:93.125880px;}
._2{width:130.455480px;}
._2d{width:199.478160px;}
._2e{width:200.500200px;}
._1{width:341.548680px;}
._4{width:882.709080px;}
.fc6{color:transparent;}
.fc5{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs25{font-size:33.246047px;}
.fsa{font-size:35.994126px;}
.fs26{font-size:36.792292px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fsd{font-size:43.228149px;}
.fs24{font-size:44.328063px;}
.fs27{font-size:44.416719px;}
.fs2b{font-size:45.615722px;}
.fs2a{font-size:45.725639px;}
.fs18{font-size:45.969534px;}
.fs19{font-size:46.061473px;}
.fs11{font-size:46.764160px;}
.fs12{font-size:46.876845px;}
.fsf{font-size:47.839152px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:47.992168px;}
.fsb{font-size:48.088153px;}
.fs20{font-size:51.713514px;}
.fs8{font-size:54.000000px;}
.fs28{font-size:54.958701px;}
.fs29{font-size:55.068618px;}
.fs1a{font-size:55.357701px;}
.fs1b{font-size:55.468416px;}
.fs10{font-size:56.342361px;}
.fs13{font-size:56.455046px;}
.fs16{font-size:56.739423px;}
.fs17{font-size:56.852902px;}
.fsc{font-size:57.637532px;}
.fse{font-size:57.752807px;}
.fs14{font-size:58.263751px;}
.fs15{font-size:58.380278px;}
.fs1e{font-size:59.623937px;}
.fs0{font-size:60.120000px;}
.fs22{font-size:63.017417px;}
.fs23{font-size:63.143452px;}
.fs4{font-size:65.880000px;}
.fs1f{font-size:68.951352px;}
.fs21{font-size:69.089255px;}
.fs1c{font-size:71.836069px;}
.fs1d{font-size:71.979741px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y19e{bottom:-38.141610px;}
.y22c{bottom:-33.755147px;}
.y13b{bottom:-20.127078px;}
.y1f8{bottom:-18.325036px;}
.yf5{bottom:-16.088512px;}
.y1d5{bottom:-14.778788px;}
.y117{bottom:-12.890488px;}
.y1a6{bottom:-12.629753px;}
.y191{bottom:-12.167203px;}
.y15e{bottom:-11.057375px;}
.ye1{bottom:-5.556144px;}
.y192{bottom:-3.151775px;}
.yf6{bottom:-3.124828px;}
.y22d{bottom:-3.088192px;}
.y1d6{bottom:-0.600498px;}
.y0{bottom:0.000000px;}
.y15f{bottom:0.844531px;}
.y93{bottom:1.679721px;}
.yb3{bottom:2.017302px;}
.y24f{bottom:2.610000px;}
.y99{bottom:2.639601px;}
.y6{bottom:2.700000px;}
.y40{bottom:2.880000px;}
.y3e{bottom:2.970000px;}
.yb5{bottom:3.025970px;}
.y96{bottom:3.119492px;}
.y95{bottom:3.119498px;}
.yb7{bottom:3.170064px;}
.y16{bottom:3.240000px;}
.y13c{bottom:3.777177px;}
.y25e{bottom:5.490000px;}
.y25a{bottom:5.580000px;}
.y25b{bottom:5.670000px;}
.y37{bottom:6.030000px;}
.y9b{bottom:6.478943px;}
.ye2{bottom:6.557465px;}
.yb9{bottom:7.204692px;}
.y118{bottom:7.252362px;}
.y257{bottom:8.190000px;}
.y4{bottom:8.460000px;}
.y1a1{bottom:9.092960px;}
.y1a0{bottom:9.092962px;}
.y1a3{bottom:9.092972px;}
.yc6{bottom:9.452555px;}
.yca{bottom:9.474169px;}
.y194{bottom:9.488349px;}
.y19b{bottom:9.518284px;}
.y24d{bottom:9.540000px;}
.yc8{bottom:9.594248px;}
.ycc{bottom:9.618263px;}
.y199{bottom:9.626036px;}
.y197{bottom:9.626039px;}
.yf1{bottom:10.787223px;}
.yef{bottom:10.787227px;}
.ye9{bottom:10.874078px;}
.ye7{bottom:10.874079px;}
.yf3{bottom:10.896398px;}
.yed{bottom:10.951549px;}
.yeb{bottom:10.951550px;}
.ye4{bottom:11.092404px;}
.y290{bottom:11.880000px;}
.ya8{bottom:12.286002px;}
.yb1{bottom:12.286008px;}
.yaa{bottom:12.286013px;}
.ya5{bottom:12.337990px;}
.ya1{bottom:12.427975px;}
.yac{bottom:12.477966px;}
.y9d{bottom:12.526057px;}
.y9f{bottom:12.549954px;}
.y1ff{bottom:13.369528px;}
.yc1{bottom:13.917062px;}
.ybf{bottom:13.919464px;}
.yc3{bottom:13.941078px;}
.ybb{bottom:14.034259px;}
.y9{bottom:14.040000px;}
.ybd{bottom:14.063558px;}
.y151{bottom:14.694869px;}
.y14c{bottom:14.694911px;}
.y1a5{bottom:14.953825px;}
.y258{bottom:15.120000px;}
.y1fa{bottom:15.173126px;}
.y1fc{bottom:15.283947px;}
.y24e{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.y2c{bottom:16.740000px;}
.yfc{bottom:16.872211px;}
.yfa{bottom:16.981456px;}
.yf8{bottom:16.983883px;}
.y100{bottom:17.017871px;}
.yfe{bottom:17.127115px;}
.y102{bottom:17.187806px;}
.y3d{bottom:18.450000px;}
.y35{bottom:19.350000px;}
.y163{bottom:19.956452px;}
.y166{bottom:19.974905px;}
.y177{bottom:20.039156px;}
.y171{bottom:20.039157px;}
.y161{bottom:20.067167px;}
.y174{bottom:20.067169px;}
.y16f{bottom:20.067170px;}
.y168{bottom:20.113299px;}
.y16a{bottom:20.147897px;}
.y16d{bottom:20.170963px;}
.y286{bottom:20.520000px;}
.y1fe{bottom:21.157415px;}
.y254{bottom:21.780000px;}
.y256{bottom:22.050000px;}
.y1f0{bottom:23.410975px;}
.y1ee{bottom:23.568528px;}
.y1e3{bottom:23.592148px;}
.y1dc{bottom:23.592150px;}
.y1da{bottom:23.592154px;}
.y1e1{bottom:23.592163px;}
.y1e8{bottom:23.594773px;}
.y1ea{bottom:23.594775px;}
.y1f5{bottom:23.631536px;}
.y1f3{bottom:23.631547px;}
.y1d8{bottom:23.631550px;}
.y1df{bottom:23.631552px;}
.y1ec{bottom:23.726079px;}
.y14f{bottom:23.743273px;}
.y14b{bottom:23.743278px;}
.y1e6{bottom:23.749702px;}
.y140{bottom:23.858190px;}
.y13e{bottom:23.858192px;}
.y142{bottom:23.860108px;}
.y145{bottom:23.875431px;}
.y159{bottom:23.904162px;}
.y155{bottom:23.975029px;}
.y157{bottom:23.975031px;}
.y148{bottom:23.990355px;}
.y1a8{bottom:25.204593px;}
.y1ad{bottom:25.204596px;}
.y1aa{bottom:25.204599px;}
.y1ba{bottom:25.239068px;}
.y1bc{bottom:25.267799px;}
.y1b8{bottom:25.376972px;}
.y1af{bottom:25.417193px;}
.y1b1{bottom:25.417196px;}
.y1b3{bottom:25.440177px;}
.y1b5{bottom:25.440182px;}
.y201{bottom:26.184956px;}
.y11c{bottom:26.922502px;}
.y122{bottom:26.927585px;}
.y11a{bottom:26.951226px;}
.y120{bottom:27.211282px;}
.y11e{bottom:27.294027px;}
.y28f{bottom:29.070000px;}
.y23f{bottom:29.345658px;}
.y23c{bottom:29.505956px;}
.y24a{bottom:29.643351px;}
.y203{bottom:31.525564px;}
.y205{bottom:31.556040px;}
.y207{bottom:31.666860px;}
.y3c{bottom:33.930000px;}
.y2b{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.y34{bottom:35.820000px;}
.y285{bottom:37.800000px;}
.y233{bottom:40.200004px;}
.y231{bottom:40.307629px;}
.y22f{bottom:40.307630px;}
.y236{bottom:40.337400px;}
.y239{bottom:40.360299px;}
.y28e{bottom:46.350000px;}
.y253{bottom:49.410000px;}
.y3b{bottom:49.500000px;}
.y2a{bottom:51.210000px;}
.y33{bottom:51.300000px;}
.y284{bottom:54.990000px;}
.y3{bottom:58.140000px;}
.y28d{bottom:63.630000px;}
.y3a{bottom:64.980000px;}
.y32{bottom:66.900000px;}
.y29{bottom:68.490000px;}
.y283{bottom:72.270000px;}
.y251{bottom:75.870000px;}
.y39{bottom:80.550000px;}
.y28c{bottom:80.820000px;}
.y31{bottom:82.380000px;}
.y28{bottom:85.770000px;}
.y30{bottom:97.950000px;}
.y28b{bottom:98.100000px;}
.y27{bottom:102.960000px;}
.y3f{bottom:106.200000px;}
.y2f{bottom:113.430000px;}
.y1d3{bottom:114.750000px;}
.y91{bottom:115.200000px;}
.y28a{bottom:115.380000px;}
.y137{bottom:118.350000px;}
.y18f{bottom:118.980000px;}
.y26{bottom:120.240000px;}
.ydf{bottom:122.130000px;}
.y49{bottom:122.760000px;}
.y115{bottom:123.750000px;}
.y81{bottom:124.020000px;}
.y139{bottom:124.650000px;}
.y280{bottom:125.010000px;}
.y22a{bottom:126.090000px;}
.y26f{bottom:127.170000px;}
.y2e{bottom:129.000000px;}
.y1d2{bottom:132.030000px;}
.y90{bottom:132.480000px;}
.y289{bottom:132.570000px;}
.y136{bottom:135.630000px;}
.y18e{bottom:136.260000px;}
.y25{bottom:137.520000px;}
.y138{bottom:138.420000px;}
.yde{bottom:139.410000px;}
.y48{bottom:139.950000px;}
.y114{bottom:141.030000px;}
.y80{bottom:141.210000px;}
.y27f{bottom:142.290000px;}
.y229{bottom:143.370000px;}
.y26e{bottom:144.450000px;}
.y1d1{bottom:149.310000px;}
.y8f{bottom:149.760000px;}
.y135{bottom:152.820000px;}
.y18d{bottom:153.450000px;}
.y24{bottom:154.710000px;}
.ydd{bottom:156.630000px;}
.y47{bottom:157.260000px;}
.y27c{bottom:158.250000px;}
.y113{bottom:158.340000px;}
.y7f{bottom:158.520000px;}
.y27e{bottom:159.510000px;}
.y228{bottom:160.680000px;}
.y26d{bottom:161.760000px;}
.y1d0{bottom:166.530000px;}
.y8e{bottom:166.980000px;}
.y134{bottom:170.130000px;}
.y18c{bottom:170.760000px;}
.y23{bottom:171.990000px;}
.ydc{bottom:173.910000px;}
.y46{bottom:174.540000px;}
.y112{bottom:175.530000px;}
.y7e{bottom:175.800000px;}
.y27d{bottom:176.790000px;}
.y227{bottom:177.870000px;}
.y26c{bottom:178.950000px;}
.y8d{bottom:183.630000px;}
.y1cf{bottom:183.810000px;}
.y133{bottom:187.320000px;}
.y18b{bottom:188.040000px;}
.y22{bottom:189.180000px;}
.ydb{bottom:191.190000px;}
.y288{bottom:191.550000px;}
.y45{bottom:191.730000px;}
.y111{bottom:192.810000px;}
.y7d{bottom:192.990000px;}
.y226{bottom:195.150000px;}
.y26b{bottom:196.230000px;}
.y8c{bottom:197.490000px;}
.y1ce{bottom:201.090000px;}
.y132{bottom:204.600000px;}
.y18a{bottom:205.230000px;}
.y21{bottom:206.460000px;}
.yda{bottom:208.380000px;}
.y44{bottom:209.010000px;}
.yb2{bottom:209.596454px;}
.y27b{bottom:210.000000px;}
.y110{bottom:210.090000px;}
.y7c{bottom:210.270000px;}
.yba{bottom:211.556118px;}
.y225{bottom:212.430000px;}
.y26a{bottom:213.510000px;}
.y1cd{bottom:217.740000px;}
.ycd{bottom:220.634030px;}
.y131{bottom:221.880000px;}
.y20{bottom:223.740000px;}
.yd9{bottom:225.030000px;}
.y43{bottom:226.290000px;}
.y10f{bottom:226.740000px;}
.y27a{bottom:227.280000px;}
.y7b{bottom:227.460000px;}
.y224{bottom:229.620000px;}
.y269{bottom:230.700000px;}
.y1cc{bottom:231.510000px;}
.ybc{bottom:233.025619px;}
.y189{bottom:235.740000px;}
.y130{bottom:238.530000px;}
.yd8{bottom:238.890000px;}
.y10e{bottom:240.510000px;}
.y1f{bottom:240.930000px;}
.y1cb{bottom:242.670000px;}
.y1f7{bottom:242.730000px;}
.y42{bottom:243.480000px;}
.y279{bottom:244.470000px;}
.y7a{bottom:244.740000px;}
.y188{bottom:246.900000px;}
.y19d{bottom:246.960000px;}
.y268{bottom:247.980000px;}
.yf4{bottom:250.110000px;}
.y10d{bottom:251.670000px;}
.y12f{bottom:252.300000px;}
.y116{bottom:252.540000px;}
.y200{bottom:253.186805px;}
.y1e{bottom:258.210000px;}
.y11b{bottom:258.714313px;}
.y41{bottom:260.400000px;}
.y1a9{bottom:261.390936px;}
.y1a7{bottom:261.390942px;}
.y278{bottom:261.750000px;}
.y79{bottom:262.020000px;}
.y15d{bottom:263.565000px;}
.y223{bottom:264.180000px;}
.y176{bottom:264.298808px;}
.y170{bottom:264.298817px;}
.y267{bottom:265.170000px;}
.y1b6{bottom:268.803195px;}
.y17{bottom:273.810000px;}
.y1d{bottom:275.490000px;}
.y277{bottom:279.030000px;}
.y78{bottom:279.210000px;}
.ybe{bottom:280.864771px;}
.y222{bottom:281.370000px;}
.y266{bottom:282.450000px;}
.y175{bottom:290.178198px;}
.y173{bottom:290.178202px;}
.y172{bottom:290.178205px;}
.y16e{bottom:290.178208px;}
.y119{bottom:290.204338px;}
.y1c{bottom:292.680000px;}
.yc5{bottom:293.545028px;}
.y276{bottom:296.220000px;}
.y77{bottom:296.490000px;}
.y221{bottom:298.650000px;}
.y265{bottom:299.730000px;}
.y1b{bottom:309.990000px;}
.y275{bottom:313.500000px;}
.y76{bottom:313.770000px;}
.y160{bottom:315.781149px;}
.y220{bottom:315.930000px;}
.y264{bottom:316.920000px;}
.y1ac{bottom:324.309045px;}
.y1ab{bottom:324.309049px;}
.y1a{bottom:327.270000px;}
.y1b7{bottom:328.618497px;}
.y274{bottom:330.780000px;}
.y75{bottom:330.960000px;}
.y202{bottom:333.088138px;}
.y21f{bottom:333.120000px;}
.yc0{bottom:333.465023px;}
.y263{bottom:334.200000px;}
.yf7{bottom:338.255338px;}
.y287{bottom:338.880000px;}
.y162{bottom:343.598394px;}
.y19{bottom:344.460000px;}
.yc7{bottom:346.001186px;}
.y273{bottom:347.970000px;}
.y74{bottom:348.240000px;}
.y21e{bottom:350.400000px;}
.y262{bottom:351.480000px;}
.yfd{bottom:354.423529px;}
.y282{bottom:356.880000px;}
.y18{bottom:361.740000px;}
.y204{bottom:363.893371px;}
.y272{bottom:365.250000px;}
.y73{bottom:365.520000px;}
.y21d{bottom:367.680000px;}
.y261{bottom:368.670000px;}
.y164{bottom:371.415639px;}
.y271{bottom:382.530000px;}
.y72{bottom:382.710000px;}
.y21c{bottom:384.870000px;}
.y260{bottom:385.950000px;}
.yc2{bottom:386.059271px;}
.y17b{bottom:386.090029px;}
.y179{bottom:386.090035px;}
.y1b0{bottom:387.054776px;}
.y1ae{bottom:387.054780px;}
.y1b9{bottom:391.714736px;}
.y38{bottom:393.330000px;}
.yf9{bottom:397.684364px;}
.yc9{bottom:398.739528px;}
.y165{bottom:399.099102px;}
.y270{bottom:399.720000px;}
.y178{bottom:399.929464px;}
.y71{bottom:399.990000px;}
.y21b{bottom:402.150000px;}
.y25f{bottom:402.600000px;}
.y250{bottom:414.480000px;}
.y70{bottom:417.270000px;}
.y21a{bottom:419.430000px;}
.y11d{bottom:422.119951px;}
.yff{bottom:424.631348px;}
.y167{bottom:426.639559px;}
.y6f{bottom:434.460000px;}
.y25d{bottom:435.090000px;}
.y219{bottom:436.620000px;}
.yc4{bottom:438.653519px;}
.y206{bottom:443.018963px;}
.y281{bottom:443.910000px;}
.y1b4{bottom:450.151009px;}
.y1b2{bottom:450.151014px;}
.ycb{bottom:451.189682px;}
.y6e{bottom:451.740000px;}
.y218{bottom:453.900000px;}
.y169{bottom:454.456803px;}
.y1bb{bottom:454.632840px;}
.y25c{bottom:455.430000px;}
.y6d{bottom:469.020000px;}
.y217{bottom:471.090000px;}
.yfb{bottom:479.981911px;}
.y16b{bottom:482.135654px;}
.y103{bottom:482.749440px;}
.y6c{bottom:486.210000px;}
.y36{bottom:487.200000px;}
.y216{bottom:488.370000px;}
.y121{bottom:494.888262px;}
.y252{bottom:494.940000px;}
.y6b{bottom:503.490000px;}
.y1ca{bottom:505.560000px;}
.y215{bottom:505.650000px;}
.y101{bottom:506.491918px;}
.y2d{bottom:507.990000px;}
.y16c{bottom:509.814504px;}
.y259{bottom:515.550000px;}
.y1fb{bottom:515.606165px;}
.y1fd{bottom:516.936007px;}
.y1f9{bottom:518.376669px;}
.y6a{bottom:520.770000px;}
.y1c9{bottom:522.840000px;}
.yb8{bottom:532.314509px;}
.y11f{bottom:532.336281px;}
.yb4{bottom:533.467259px;}
.yb6{bottom:535.196385px;}
.y255{bottom:535.890000px;}
.y69{bottom:537.960000px;}
.y17a{bottom:538.738891px;}
.y1c8{bottom:540.030000px;}
.y214{bottom:540.120000px;}
.y68{bottom:555.240000px;}
.y1c7{bottom:557.310000px;}
.y213{bottom:557.400000px;}
.y8b{bottom:558.390000px;}
.y187{bottom:563.250000px;}
.y1a4{bottom:571.850144px;}
.yd7{bottom:572.340000px;}
.y67{bottom:572.430000px;}
.y19f{bottom:573.229181px;}
.y1c6{bottom:574.620000px;}
.y8a{bottom:575.070000px;}
.y1a2{bottom:575.297705px;}
.y24c{bottom:575.430000px;}
.y186{bottom:582.180000px;}
.y89{bottom:589.470000px;}
.yd6{bottom:589.560000px;}
.y66{bottom:589.740000px;}
.y1c5{bottom:591.810000px;}
.y212{bottom:591.900000px;}
.y10c{bottom:594.690000px;}
.y12e{bottom:594.960000px;}
.y185{bottom:601.170000px;}
.y88{bottom:606.660000px;}
.yd5{bottom:606.840000px;}
.y65{bottom:607.020000px;}
.y1c4{bottom:609.090000px;}
.y211{bottom:609.180000px;}
.y10b{bottom:611.880000px;}
.y12d{bottom:612.150000px;}
.y183{bottom:619.800000px;}
.y184{bottom:622.680000px;}
.y87{bottom:623.940000px;}
.yd4{bottom:624.030000px;}
.y64{bottom:624.210000px;}
.y1c3{bottom:626.280000px;}
.y210{bottom:626.370000px;}
.y10a{bottom:629.160000px;}
.y12c{bottom:629.430000px;}
.y182{bottom:637.080000px;}
.y86{bottom:641.130000px;}
.yd3{bottom:641.310000px;}
.y63{bottom:641.490000px;}
.y1c2{bottom:643.560000px;}
.y20f{bottom:643.650000px;}
.y109{bottom:646.440000px;}
.y12b{bottom:646.710000px;}
.y15{bottom:650.310000px;}
.y181{bottom:654.270000px;}
.y85{bottom:658.410000px;}
.yd2{bottom:658.590000px;}
.y62{bottom:658.770000px;}
.y1c1{bottom:660.840000px;}
.y20e{bottom:660.930000px;}
.y108{bottom:663.630000px;}
.y12a{bottom:663.900000px;}
.y180{bottom:671.550000px;}
.y84{bottom:675.690000px;}
.yd1{bottom:675.780000px;}
.y61{bottom:675.960000px;}
.y1c0{bottom:678.030000px;}
.y20d{bottom:678.120000px;}
.y107{bottom:680.910000px;}
.y129{bottom:681.180000px;}
.y14{bottom:684.870000px;}
.y17f{bottom:688.830000px;}
.yd0{bottom:692.430000px;}
.y83{bottom:692.880000px;}
.y60{bottom:693.240000px;}
.y1bf{bottom:695.310000px;}
.y20c{bottom:695.400000px;}
.y106{bottom:698.190000px;}
.y128{bottom:698.460000px;}
.y13{bottom:704.760000px;}
.y17e{bottom:705.480000px;}
.ycf{bottom:706.290000px;}
.y82{bottom:709.530000px;}
.y5f{bottom:710.520000px;}
.y1be{bottom:712.590000px;}
.y20b{bottom:712.680000px;}
.y105{bottom:715.380000px;}
.y127{bottom:715.650000px;}
.ye0{bottom:718.020000px;}
.y17d{bottom:719.250000px;}
.y92{bottom:721.947755px;}
.y9c{bottom:723.579484px;}
.y5e{bottom:727.710000px;}
.y1bd{bottom:729.240000px;}
.y20a{bottom:729.870000px;}
.y17c{bottom:730.410000px;}
.y190{bottom:730.440000px;}
.y104{bottom:732.030000px;}
.y126{bottom:732.930000px;}
.y12{bottom:740.310000px;}
.y1d4{bottom:740.430000px;}
.y5d{bottom:744.990000px;}
.y209{bottom:747.150000px;}
.yb0{bottom:749.375401px;}
.y125{bottom:749.580000px;}
.y11{bottom:752.190000px;}
.y1f1{bottom:754.891366px;}
.y1ef{bottom:754.891368px;}
.y5c{bottom:762.270000px;}
.y124{bottom:763.350000px;}
.y208{bottom:763.800000px;}
.y10{bottom:769.470000px;}
.ya9{bottom:771.811726px;}
.ya7{bottom:771.811752px;}
.y13a{bottom:774.555000px;}
.y22b{bottom:774.990000px;}
.ye8{bottom:779.230055px;}
.ye6{bottom:779.230057px;}
.y5b{bottom:779.460000px;}
.y1ed{bottom:784.509547px;}
.yf{bottom:787.020000px;}
.y9e{bottom:790.048792px;}
.y150{bottom:792.536678px;}
.y14e{bottom:792.536695px;}
.y14d{bottom:792.536706px;}
.y14a{bottom:792.536719px;}
.y5a{bottom:796.740000px;}
.y198{bottom:802.069461px;}
.y196{bottom:802.069462px;}
.ye{bottom:808.260000px;}
.y59{bottom:814.020000px;}
.y1eb{bottom:814.285271px;}
.ya0{bottom:816.924406px;}
.y13d{bottom:819.428914px;}
.y13f{bottom:819.428917px;}
.yf2{bottom:824.585623px;}
.y58{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.ya2{bottom:843.680040px;}
.y57{bottom:848.490000px;}
.yf0{bottom:854.309753px;}
.y143{bottom:863.559667px;}
.y141{bottom:863.559669px;}
.y1e9{bottom:863.596353px;}
.y1e7{bottom:863.596355px;}
.y156{bottom:863.674563px;}
.y154{bottom:863.674566px;}
.y56{bottom:865.770000px;}
.y22e{bottom:867.804805px;}
.y230{bottom:867.804808px;}
.ya3{bottom:870.315693px;}
.yc{bottom:870.360000px;}
.y55{bottom:882.960000px;}
.yee{bottom:883.889488px;}
.y15c{bottom:892.409325px;}
.y15b{bottom:892.409327px;}
.y1e5{bottom:893.374703px;}
.y234{bottom:896.662703px;}
.y232{bottom:896.662705px;}
.ya4{bottom:897.191307px;}
.y54{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y153{bottom:903.442054px;}
.y152{bottom:903.442056px;}
.y146{bottom:907.579326px;}
.y144{bottom:907.579329px;}
.y53{bottom:917.430000px;}
.ya6{bottom:923.946941px;}
.y1e4{bottom:924.253246px;}
.y1e2{bottom:924.253249px;}
.y1dd{bottom:924.253272px;}
.y1db{bottom:924.253274px;}
.y237{bottom:925.241228px;}
.y235{bottom:925.241230px;}
.ya{bottom:930.210000px;}
.y52{bottom:934.710000px;}
.yec{bottom:934.879385px;}
.yea{bottom:934.879386px;}
.y242{bottom:934.996377px;}
.y241{bottom:934.996379px;}
.y240{bottom:934.996383px;}
.y23e{bottom:934.996385px;}
.y8{bottom:945.600000px;}
.y245{bottom:946.537693px;}
.y246{bottom:946.537694px;}
.y149{bottom:951.595155px;}
.y147{bottom:951.595157px;}
.y51{bottom:951.990000px;}
.y195{bottom:952.383443px;}
.y193{bottom:952.383446px;}
.ye5{bottom:953.331487px;}
.ye3{bottom:953.331489px;}
.y238{bottom:953.957149px;}
.y23a{bottom:953.957151px;}
.y1e0{bottom:954.186511px;}
.y1d9{bottom:954.186544px;}
.y23d{bottom:957.941646px;}
.y23b{bottom:957.941647px;}
.y1f6{bottom:960.645854px;}
.y1f4{bottom:960.645856px;}
.yae{bottom:962.700579px;}
.yaf{bottom:962.700581px;}
.yab{bottom:962.700598px;}
.yad{bottom:962.700600px;}
.y50{bottom:969.180000px;}
.y15a{bottom:971.821709px;}
.y158{bottom:971.821711px;}
.y244{bottom:972.230890px;}
.y243{bottom:972.230892px;}
.y1de{bottom:983.962239px;}
.y1d7{bottom:983.962267px;}
.y4f{bottom:986.460000px;}
.y247{bottom:986.657538px;}
.y248{bottom:986.657539px;}
.y1f2{bottom:990.421577px;}
.y19c{bottom:992.970816px;}
.y19a{bottom:992.970823px;}
.y9a{bottom:997.854869px;}
.y249{bottom:997.924066px;}
.y24b{bottom:997.924067px;}
.y97{bottom:998.694756px;}
.y94{bottom:998.694758px;}
.y98{bottom:1001.094313px;}
.y4e{bottom:1003.770000px;}
.y4d{bottom:1020.960000px;}
.y123{bottom:1036.530000px;}
.y4c{bottom:1038.240000px;}
.yce{bottom:1041.660000px;}
.y4b{bottom:1055.520000px;}
.y4a{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h84{height:-15.996669px;}
.h6b{height:-15.632705px;}
.h86{height:-14.556007px;}
.h6a{height:-13.564181px;}
.h85{height:-13.226165px;}
.h6c{height:-12.185144px;}
.h6d{height:3.743464px;}
.h8e{height:9.827103px;}
.h42{height:10.508890px;}
.h62{height:13.801388px;}
.h5a{height:14.019317px;}
.h75{height:14.303751px;}
.h20{height:14.397652px;}
.h1f{height:14.397658px;}
.h21{height:14.397683px;}
.h50{height:14.648876px;}
.h2c{height:16.570790px;}
.h2d{height:16.714884px;}
.hf{height:17.280000px;}
.h22{height:17.637122px;}
.h9a{height:19.620000px;}
.h36{height:19.797920px;}
.h9b{height:19.800000px;}
.h15{height:20.070000px;}
.h2e{height:20.600491px;}
.h48{height:20.784360px;}
.h32{height:21.037699px;}
.h3b{height:22.114379px;}
.h3a{height:22.114380px;}
.h3d{height:22.114385px;}
.h3c{height:22.114389px;}
.h37{height:22.255234px;}
.h39{height:22.255236px;}
.h3f{height:22.255253px;}
.h26{height:23.636146px;}
.h27{height:23.636150px;}
.h29{height:23.636155px;}
.h28{height:23.636161px;}
.h23{height:23.756124px;}
.h25{height:23.756126px;}
.h87{height:23.866044px;}
.h64{height:23.885495px;}
.h67{height:23.885497px;}
.h66{height:23.885499px;}
.h57{height:25.566759px;}
.h55{height:25.566802px;}
.h31{height:27.377828px;}
.h2f{height:27.521922px;}
.h96{height:27.540000px;}
.h3{height:27.630000px;}
.hd{height:30.458848px;}
.h44{height:30.588469px;}
.h43{height:30.734129px;}
.h83{height:32.055596px;}
.h8a{height:32.119707px;}
.h5b{height:33.076227px;}
.h5d{height:33.076229px;}
.h5c{height:33.076230px;}
.h4f{height:33.242617px;}
.h54{height:33.309102px;}
.h1c{height:33.782520px;}
.h56{height:34.592083px;}
.h53{height:34.592088px;}
.h5{height:34.624160px;}
.h1e{height:34.705274px;}
.h52{height:34.707000px;}
.h51{height:34.707002px;}
.h24{height:34.774685px;}
.h88{height:35.019169px;}
.h1b{height:36.073652px;}
.h19{height:38.100586px;}
.h7b{height:38.283083px;}
.h78{height:38.283085px;}
.h7f{height:38.283095px;}
.h80{height:38.283097px;}
.h76{height:38.283100px;}
.h79{height:38.283101px;}
.h81{height:38.440629px;}
.h77{height:38.440633px;}
.h7c{height:38.440637px;}
.h7a{height:38.440642px;}
.h7e{height:38.440646px;}
.h9d{height:38.700000px;}
.h99{height:38.730000px;}
.h17{height:39.049805px;}
.h6{height:39.082324px;}
.h8d{height:39.743084px;}
.h91{height:39.822570px;}
.h13{height:39.999023px;}
.h59{height:40.031619px;}
.h5e{height:40.111682px;}
.h4c{height:40.284991px;}
.h49{height:40.426839px;}
.h94{height:40.532044px;}
.h4b{height:40.568688px;}
.h92{height:40.669442px;}
.h35{height:40.743670px;}
.h47{height:41.030804px;}
.h4a{height:41.112865px;}
.h6e{height:41.543190px;}
.h70{height:41.543194px;}
.h6f{height:41.543196px;}
.h2b{height:41.680266px;}
.h72{height:41.715569px;}
.h30{height:41.763627px;}
.h89{height:42.000839px;}
.h8b{height:42.111659px;}
.h41{height:42.133113px;}
.h45{height:42.217379px;}
.h10{height:42.418652px;}
.h4{height:43.475449px;}
.h1a{height:43.769004px;}
.h14{height:44.532246px;}
.h2{height:45.295488px;}
.h95{height:45.370715px;}
.h93{height:45.480042px;}
.h74{height:45.570701px;}
.h7d{height:45.661842px;}
.h5f{height:46.482715px;}
.h38{height:46.512985px;}
.h3e{height:46.625065px;}
.h33{height:47.582203px;}
.h8{height:47.640762px;}
.hc{height:48.995859px;}
.h9{height:49.635176px;}
.h69{height:49.861793px;}
.h71{height:49.961517px;}
.h1{height:50.800781px;}
.h61{height:51.947860px;}
.h63{height:52.051756px;}
.h90{height:53.172545px;}
.h8f{height:53.172546px;}
.hb{height:53.838457px;}
.h65{height:59.303691px;}
.h4d{height:65.526152px;}
.ha{height:76.201172px;}
.he{height:78.099609px;}
.h9c{height:79.650000px;}
.h98{height:79.680000px;}
.h9e{height:86.310000px;}
.h16{height:93.150000px;}
.h18{height:118.800000px;}
.h12{height:141.600000px;}
.h9f{height:146.610000px;}
.h7{height:153.930000px;}
.h97{height:160.140000px;}
.h4e{height:255.300000px;}
.h82{height:259.650000px;}
.h1d{height:293.542179px;}
.h8c{height:294.480000px;}
.h73{height:294.570000px;}
.h34{height:300.930000px;}
.h60{height:304.554966px;}
.h68{height:312.705000px;}
.h40{height:319.005000px;}
.h58{height:328.170000px;}
.h46{height:336.675000px;}
.h2a{height:343.315559px;}
.h11{height:375.780000px;}
.h0{height:1188.000000px;}
.w83{width:-33.105741px;}
.w82{width:-32.275026px;}
.w64{width:-29.742795px;}
.w72{width:-23.705018px;}
.w91{width:-16.279623px;}
.w65{width:-15.062469px;}
.w84{width:-11.922504px;}
.w5d{width:-10.075636px;}
.w87{width:-9.397465px;}
.w46{width:-6.262872px;}
.w33{width:-5.580068px;}
.w29{width:-2.754610px;}
.w51{width:-1.992042px;}
.w3c{width:-0.688777px;}
.w68{width:0.503546px;}
.w19{width:4.040788px;}
.w67{width:4.237620px;}
.wa{width:4.645008px;}
.wc{width:4.810901px;}
.w18{width:5.339613px;}
.w86{width:6.022686px;}
.wd{width:6.303939px;}
.w17{width:7.937262px;}
.w25{width:8.803145px;}
.w26{width:8.947459px;}
.w98{width:9.315887px;}
.w97{width:9.454930px;}
.w9{width:9.455908px;}
.w1b{width:10.390597px;}
.w93{width:11.123447px;}
.w2a{width:11.185391px;}
.w6c{width:11.199424px;}
.w69{width:11.350768px;}
.w41{width:11.798284px;}
.w5e{width:11.874857px;}
.w7c{width:11.997215px;}
.w79{width:12.155073px;}
.w23{width:12.266677px;}
.w24{width:12.410991px;}
.we{width:12.441985px;}
.w96{width:13.209092px;}
.w53{width:15.266743px;}
.w48{width:15.358545px;}
.w5a{width:15.467621px;}
.w2e{width:15.525990px;}
.w2d{width:15.692936px;}
.w8e{width:15.783590px;}
.w2b{width:15.859883px;}
.w5f{width:16.732753px;}
.w22{width:17.461975px;}
.w35{width:17.943752px;}
.w92{width:18.492729px;}
.w70{width:18.615259px;}
.w95{width:18.631771px;}
.w6f{width:18.766603px;}
.w99{width:18.770814px;}
.w42{width:19.758573px;}
.w7a{width:19.890118px;}
.w76{width:20.047976px;}
.w12{width:20.570748px;}
.w1c{width:20.636880px;}
.w1d{width:20.781193px;}
.w36{width:21.444972px;}
.w34{width:21.590856px;}
.w2c{width:22.203835px;}
.w94{width:22.246891px;}
.w6e{width:22.398849px;}
.w44{width:23.596569px;}
.w43{width:23.738717px;}
.w75{width:23.836570px;}
.w7f{width:23.994428px;}
.wf{width:24.552183px;}
.w13{width:24.718076px;}
.w52{width:25.511531px;}
.w47{width:25.597574px;}
.w59{width:25.712409px;}
.w4a{width:25.802354px;}
.w8d{width:26.167530px;}
.w62{width:27.528077px;}
.w5b{width:30.533485px;}
.w49{width:30.717088px;}
.w54{width:30.734363px;}
.w8f{width:31.359500px;}
.w61{width:32.206051px;}
.w8a{width:33.436287px;}
.w60{width:35.624570px;}
.w88{width:38.835936px;}
.w89{width:39.043615px;}
.w2{width:39.060000px;}
.w8b{width:39.251294px;}
.w20{width:44.737289px;}
.w3a{width:46.391162px;}
.w38{width:46.537046px;}
.w16{width:47.767860px;}
.w74{width:49.093860px;}
.w30{width:50.250782px;}
.w3e{width:50.888985px;}
.w40{width:51.031133px;}
.w10{width:53.417586px;}
.w8{width:56.735439px;}
.w58{width:66.088924px;}
.w4e{width:66.144129px;}
.w1f{width:68.982013px;}
.w39{width:70.316162px;}
.w37{width:71.483235px;}
.w7b{width:72.930427px;}
.w2f{width:75.125754px;}
.w3f{width:77.186366px;}
.w3d{width:78.607846px;}
.w7e{width:80.823330px;}
.w9a{width:90.930000px;}
.w8c{width:91.794028px;}
.wa0{width:92.430000px;}
.w6b{width:92.470922px;}
.w80{width:92.662685px;}
.w14{width:96.383904px;}
.w27{width:96.545955px;}
.w78{width:99.608440px;}
.w4b{width:100.137705px;}
.w55{width:100.238215px;}
.w4f{width:100.342485px;}
.w56{width:101.644363px;}
.w4d{width:101.775950px;}
.w57{width:101.845241px;}
.w4c{width:101.980730px;}
.w73{width:108.764207px;}
.w31{width:110.434864px;}
.w21{width:117.471460px;}
.w77{width:119.024981px;}
.w9c{width:120.600000px;}
.w7d{width:126.917884px;}
.w6d{width:129.701441px;}
.w11{width:139.682009px;}
.w1e{width:141.716184px;}
.w6a{width:142.111614px;}
.w9b{width:160.290000px;}
.w9e{width:165.810000px;}
.w9d{width:176.970000px;}
.w6{width:220.350000px;}
.wb{width:246.019499px;}
.w66{width:270.753650px;}
.w1a{width:280.690403px;}
.wa1{width:307.650000px;}
.w9f{width:400.800000px;}
.w32{width:426.966436px;}
.w3b{width:438.975000px;}
.w63{width:450.675000px;}
.w71{width:477.494327px;}
.w90{width:478.991707px;}
.w5c{width:498.024294px;}
.w28{width:504.594635px;}
.w15{width:542.632032px;}
.w5{width:588.480000px;}
.w85{width:590.346519px;}
.w50{width:599.236366px;}
.w45{width:605.621500px;}
.w7{width:623.771959px;}
.w81{width:636.397052px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x7a{left:-104.670014px;}
.x80{left:-81.483379px;}
.x99{left:-41.203484px;}
.x9a{left:-35.596157px;}
.x81{left:-32.145375px;}
.x9b{left:-11.879238px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.xb7{left:10.380000px;}
.xb6{left:12.180000px;}
.xc3{left:16.110000px;}
.xba{left:17.370000px;}
.xb9{left:18.900000px;}
.x11{left:20.160000px;}
.x15{left:27.630000px;}
.xbb{left:32.850000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x6{left:45.540000px;}
.xc4{left:52.470000px;}
.x2{left:53.999986px;}
.xc0{left:55.890000px;}
.x55{left:56.969986px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.xbd{left:64.350000px;}
.x16{left:65.429986px;}
.xbf{left:69.390000px;}
.xd{left:71.459986px;}
.xc5{left:75.000000px;}
.xc2{left:76.860000px;}
.xb4{left:80.100000px;}
.xc1{left:82.470000px;}
.x9{left:83.879986px;}
.xbc{left:85.440000px;}
.xbe{left:88.500000px;}
.xc9{left:91.080000px;}
.xc8{left:96.840000px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.xc7{left:121.770000px;}
.x97{left:141.150000px;}
.x1d{left:151.050000px;}
.xa{left:157.349986px;}
.x5d{left:160.095000px;}
.xf{left:162.029986px;}
.x6d{left:183.116328px;}
.x2d{left:188.775000px;}
.xb3{left:191.910000px;}
.x1f{left:193.684522px;}
.x6c{left:194.968142px;}
.x6b{left:206.217320px;}
.x61{left:208.218431px;}
.x44{left:210.675000px;}
.x20{left:212.264552px;}
.x60{left:219.481365px;}
.x8c{left:220.650000px;}
.x2e{left:224.709124px;}
.x2f{left:230.481677px;}
.x30{left:234.233837px;}
.x9f{left:235.351369px;}
.x31{left:240.295018px;}
.x56{left:242.100000px;}
.x32{left:243.181294px;}
.x4d{left:248.355000px;}
.x83{left:251.248712px;}
.x94{left:255.214332px;}
.x6e{left:258.847405px;}
.x84{left:260.783357px;}
.xa0{left:264.634079px;}
.x53{left:268.487004px;}
.xa5{left:272.941227px;}
.x4b{left:277.787322px;}
.x95{left:281.418756px;}
.x62{left:282.963346px;}
.xa4{left:284.778918px;}
.x54{left:287.306055px;}
.x3a{left:288.495852px;}
.x9e{left:289.970892px;}
.xc{left:290.999986px;}
.x25{left:293.718080px;}
.x70{left:296.612501px;}
.x82{left:300.586716px;}
.x24{left:302.842202px;}
.xac{left:304.299117px;}
.x1b{left:307.379986px;}
.x57{left:309.193858px;}
.xab{left:312.641702px;}
.x64{left:314.294770px;}
.x96{left:317.883971px;}
.x71{left:319.512614px;}
.xaa{left:320.984284px;}
.x65{left:337.230195px;}
.x5a{left:338.902791px;}
.x3b{left:343.335105px;}
.x5b{left:347.573819px;}
.xb5{left:353.010000px;}
.x33{left:361.518636px;}
.xad{left:365.339011px;}
.x21{left:367.208726px;}
.x9c{left:373.456026px;}
.xa1{left:376.571218px;}
.xae{left:379.243315px;}
.x26{left:382.802687px;}
.xa7{left:384.670688px;}
.xa6{left:396.300700px;}
.x22{left:400.055564px;}
.xa2{left:401.492674px;}
.x36{left:404.235547px;}
.xe{left:410.519986px;}
.x8e{left:414.183964px;}
.x47{left:415.517867px;}
.x73{left:419.349072px;}
.x66{left:421.599796px;}
.x48{left:423.531280px;}
.x29{left:425.105426px;}
.x52{left:427.354835px;}
.x72{left:430.598251px;}
.x67{left:432.862727px;}
.x8f{left:434.547656px;}
.x90{left:436.441955px;}
.x4e{left:437.774021px;}
.x42{left:439.303796px;}
.x2c{left:441.362960px;}
.x28{left:443.519563px;}
.xaf{left:444.593549px;}
.x41{left:445.797918px;}
.x7c{left:451.440576px;}
.x40{left:454.456751px;}
.x7f{left:455.909898px;}
.x34{left:457.198706px;}
.x8{left:459.029986px;}
.x3f{left:460.806560px;}
.xb{left:464.159986px;}
.xb0{left:468.230864px;}
.x7d{left:470.152471px;}
.x1c{left:473.339986px;}
.x37{left:475.815208px;}
.x18{left:478.229986px;}
.x19{left:479.759986px;}
.xb1{left:482.413255px;}
.x43{left:485.051294px;}
.x7e{left:487.604912px;}
.xa8{left:490.794551px;}
.x49{left:494.483392px;}
.x27{left:499.425551px;}
.xc6{left:502.529986px;}
.x1a{left:506.759986px;}
.x4a{left:511.011057px;}
.x45{left:512.329806px;}
.x7b{left:513.602547px;}
.x89{left:515.649715px;}
.x58{left:517.867128px;}
.x75{left:520.591673px;}
.x3c{left:522.139944px;}
.x59{left:527.533192px;}
.x8a{left:532.448852px;}
.x3d{left:535.416817px;}
.x87{left:536.989159px;}
.x68{left:540.372528px;}
.x74{left:543.491786px;}
.x38{left:551.291342px;}
.x88{left:553.485608px;}
.x91{left:565.254129px;}
.x5c{left:569.893298px;}
.x2b{left:570.925480px;}
.x92{left:572.515602px;}
.xa3{left:578.019649px;}
.x6f{left:582.261284px;}
.xb2{left:585.166064px;}
.x1e{left:587.731678px;}
.x2a{left:589.173723px;}
.x93{left:598.088610px;}
.x63{left:600.168465px;}
.x50{left:602.415821px;}
.x4c{left:604.834767px;}
.x69{left:607.823909px;}
.x51{left:618.463077px;}
.x5e{left:619.631905px;}
.x39{left:626.767475px;}
.x76{left:628.061507px;}
.x85{left:632.789640px;}
.x77{left:639.511563px;}
.x10{left:642.210000px;}
.x86{left:649.437433px;}
.xb8{left:652.020000px;}
.x98{left:653.651700px;}
.x3e{left:656.063177px;}
.x4f{left:680.901504px;}
.x35{left:682.039674px;}
.x79{left:684.779986px;}
.x78{left:708.539986px;}
.xa9{left:715.171329px;}
.x46{left:718.024245px;}
.x8d{left:721.849345px;}
.x23{left:732.505388px;}
.x6a{left:763.453408px;}
.x5f{left:771.979372px;}
.x8b{left:777.659986px;}
.x9d{left:786.944517px;}
.x7{left:812.430000px;}
@media print{
.v4{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.lsd{letter-spacing:-0.195733pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.136533pt;}
.ls1b{letter-spacing:-0.124267pt;}
.ls2d{letter-spacing:-0.089155pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls27{letter-spacing:-0.056015pt;}
.ls22{letter-spacing:-0.051722pt;}
.ls14{letter-spacing:-0.051233pt;}
.ls1c{letter-spacing:-0.050435pt;}
.ls2c{letter-spacing:-0.048852pt;}
.lse{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.042660pt;}
.ls15{letter-spacing:-0.041499pt;}
.ls1e{letter-spacing:-0.040862pt;}
.ls19{letter-spacing:-0.040567pt;}
.ls2e{letter-spacing:-0.039570pt;}
.ls28{letter-spacing:-0.039403pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.084639pt;}
.ls3{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.098507pt;}
.ls1a{letter-spacing:0.103580pt;}
.lsf{letter-spacing:0.106649pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.124267pt;}
.ls10{letter-spacing:0.128083pt;}
.ls18{letter-spacing:0.129475pt;}
.ls20{letter-spacing:0.153225pt;}
.ls2{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.197014pt;}
.ls23{letter-spacing:0.243711pt;}
.ls29{letter-spacing:0.250123pt;}
.ls25{letter-spacing:0.275819pt;}
.ls2a{letter-spacing:0.319982pt;}
.ls17{letter-spacing:0.328038pt;}
.ls11{letter-spacing:0.335579pt;}
.ls2b{letter-spacing:0.401402pt;}
.ls1f{letter-spacing:0.418246pt;}
.ls2f{letter-spacing:12.560000pt;}
.ls31{letter-spacing:14.583680pt;}
.ls5{letter-spacing:32.823680pt;}
.ls21{letter-spacing:36.283734pt;}
.ls4{letter-spacing:36.576000pt;}
.lsc{letter-spacing:36.663680pt;}
.lsb{letter-spacing:39.863680pt;}
.lsa{letter-spacing:41.143680pt;}
.ls1{letter-spacing:422.266667pt;}
.ws6{word-spacing:-53.440000pt;}
.ws1b{word-spacing:-13.975863pt;}
.ws9{word-spacing:-13.520000pt;}
.ws4{word-spacing:-13.407360pt;}
.ws0{word-spacing:-13.360000pt;}
.wsa{word-spacing:-13.312640pt;}
.ws15{word-spacing:-13.235733pt;}
.ws24{word-spacing:-13.200000pt;}
.ws8{word-spacing:-13.164267pt;}
.ws14{word-spacing:-13.051080pt;}
.ws10{word-spacing:-12.808340pt;}
.wsd{word-spacing:-12.782724pt;}
.ws16{word-spacing:-12.583543pt;}
.ws1a{word-spacing:-12.221497pt;}
.ws1f{word-spacing:-12.188619pt;}
.ws5{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.977786pt;}
.ws19{word-spacing:-11.926065pt;}
.ws23{word-spacing:-10.800000pt;}
.wsc{word-spacing:-10.664926pt;}
.wsb{word-spacing:-10.643596pt;}
.ws1{word-spacing:-10.640000pt;}
.ws17{word-spacing:-10.195021pt;}
.ws1e{word-spacing:-9.830979pt;}
.wsf{word-spacing:-9.610354pt;}
.wse{word-spacing:-9.568855pt;}
.ws13{word-spacing:-9.417037pt;}
.ws12{word-spacing:-9.394400pt;}
.ws2{word-spacing:-9.360000pt;}
.ws11{word-spacing:-9.353834pt;}
.ws21{word-spacing:-9.163692pt;}
.ws22{word-spacing:-9.124121pt;}
.ws20{word-spacing:-9.096618pt;}
.ws3{word-spacing:-8.640000pt;}
.ws1c{word-spacing:-8.451884pt;}
.ws1d{word-spacing:-8.373078pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._7{width:2.230400pt;}
._b{width:3.968640pt;}
._1b{width:4.995200pt;}
._8{width:6.786880pt;}
._9{width:8.176320pt;}
._14{width:9.512320pt;}
._6{width:10.688000pt;}
._5{width:11.649920pt;}
._a{width:14.268480pt;}
._d{width:15.888000pt;}
._13{width:17.100800pt;}
._10{width:18.099840pt;}
._12{width:19.576960pt;}
._16{width:21.269120pt;}
._18{width:22.712000pt;}
._17{width:23.620480pt;}
._1d{width:24.514880pt;}
._20{width:25.864960pt;}
._21{width:26.773440pt;}
._19{width:28.162560pt;}
._e{width:29.232000pt;}
._15{width:30.139520pt;}
._11{width:31.048320pt;}
._24{width:32.705280pt;}
._25{width:34.041280pt;}
._26{width:35.003200pt;}
._27{width:36.285760pt;}
._1a{width:37.408000pt;}
._1e{width:38.797440pt;}
._2f{width:40.133440pt;}
._31{width:41.095360pt;}
._1f{width:42.484800pt;}
._34{width:43.393280pt;}
._28{width:44.568960pt;}
._c{width:45.984000pt;}
._33{width:47.027200pt;}
._32{width:48.096000pt;}
._f{width:49.056000pt;}
._2a{width:50.128640pt;}
._29{width:51.516160pt;}
._2c{width:53.226240pt;}
._30{width:54.615680pt;}
._23{width:56.058560pt;}
._37{width:60.600960pt;}
._22{width:62.043840pt;}
._2b{width:65.143360pt;}
._1c{width:75.617600pt;}
._35{width:81.860800pt;}
._36{width:82.778560pt;}
._2{width:115.960427pt;}
._2d{width:177.313920pt;}
._2e{width:178.222400pt;}
._1{width:303.598827pt;}
._4{width:784.630293pt;}
.fs3{font-size:26.560000pt;}
.fs25{font-size:29.552042pt;}
.fsa{font-size:31.994779pt;}
.fs26{font-size:32.704260pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fsd{font-size:38.425021pt;}
.fs24{font-size:39.402722pt;}
.fs27{font-size:39.481528pt;}
.fs2b{font-size:40.547308pt;}
.fs2a{font-size:40.645013pt;}
.fs18{font-size:40.861808pt;}
.fs19{font-size:40.943532pt;}
.fs11{font-size:41.568142pt;}
.fs12{font-size:41.668306pt;}
.fsf{font-size:42.523690pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:42.659705pt;}
.fsb{font-size:42.745024pt;}
.fs20{font-size:45.967568pt;}
.fs8{font-size:48.000000pt;}
.fs28{font-size:48.852179pt;}
.fs29{font-size:48.949883pt;}
.fs1a{font-size:49.206845pt;}
.fs1b{font-size:49.305259pt;}
.fs10{font-size:50.082099pt;}
.fs13{font-size:50.182263pt;}
.fs16{font-size:50.435043pt;}
.fs17{font-size:50.535913pt;}
.fsc{font-size:51.233362pt;}
.fse{font-size:51.335829pt;}
.fs14{font-size:51.790001pt;}
.fs15{font-size:51.893581pt;}
.fs1e{font-size:52.999055pt;}
.fs0{font-size:53.440000pt;}
.fs22{font-size:56.015482pt;}
.fs23{font-size:56.127513pt;}
.fs4{font-size:58.560000pt;}
.fs1f{font-size:61.290091pt;}
.fs21{font-size:61.412671pt;}
.fs1c{font-size:63.854283pt;}
.fs1d{font-size:63.981992pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y19e{bottom:-33.903654pt;}
.y22c{bottom:-30.004575pt;}
.y13b{bottom:-17.890736pt;}
.y1f8{bottom:-16.288921pt;}
.yf5{bottom:-14.300900pt;}
.y1d5{bottom:-13.136700pt;}
.y117{bottom:-11.458211pt;}
.y1a6{bottom:-11.226447pt;}
.y191{bottom:-10.815291pt;}
.y15e{bottom:-9.828778pt;}
.ye1{bottom:-4.938794pt;}
.y192{bottom:-2.801578pt;}
.yf6{bottom:-2.777625pt;}
.y22d{bottom:-2.745059pt;}
.y1d6{bottom:-0.533776pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:0.750694pt;}
.y93{bottom:1.493085pt;}
.yb3{bottom:1.793157pt;}
.y24f{bottom:2.320000pt;}
.y99{bottom:2.346312pt;}
.y6{bottom:2.400000pt;}
.y40{bottom:2.560000pt;}
.y3e{bottom:2.640000pt;}
.yb5{bottom:2.689752pt;}
.y96{bottom:2.772882pt;}
.y95{bottom:2.772887pt;}
.yb7{bottom:2.817835pt;}
.y16{bottom:2.880000pt;}
.y13c{bottom:3.357491pt;}
.y25e{bottom:4.880000pt;}
.y25a{bottom:4.960000pt;}
.y25b{bottom:5.040000pt;}
.y37{bottom:5.360000pt;}
.y9b{bottom:5.759061pt;}
.ye2{bottom:5.828857pt;}
.yb9{bottom:6.404170pt;}
.y118{bottom:6.446544pt;}
.y257{bottom:7.280000pt;}
.y4{bottom:7.520000pt;}
.y1a1{bottom:8.082631pt;}
.y1a0{bottom:8.082633pt;}
.y1a3{bottom:8.082642pt;}
.yc6{bottom:8.402271pt;}
.yca{bottom:8.421484pt;}
.y194{bottom:8.434088pt;}
.y19b{bottom:8.460697pt;}
.y24d{bottom:8.480000pt;}
.yc8{bottom:8.528220pt;}
.ycc{bottom:8.549567pt;}
.y199{bottom:8.556476pt;}
.y197{bottom:8.556479pt;}
.yf1{bottom:9.588642pt;}
.yef{bottom:9.588646pt;}
.ye9{bottom:9.665847pt;}
.ye7{bottom:9.665848pt;}
.yf3{bottom:9.685687pt;}
.yed{bottom:9.734710pt;}
.yeb{bottom:9.734711pt;}
.ye4{bottom:9.859915pt;}
.y290{bottom:10.560000pt;}
.ya8{bottom:10.920891pt;}
.yb1{bottom:10.920896pt;}
.yaa{bottom:10.920901pt;}
.ya5{bottom:10.967102pt;}
.ya1{bottom:11.047089pt;}
.yac{bottom:11.091526pt;}
.y9d{bottom:11.134273pt;}
.y9f{bottom:11.155514pt;}
.y1ff{bottom:11.884025pt;}
.yc1{bottom:12.370722pt;}
.ybf{bottom:12.372857pt;}
.yc3{bottom:12.392069pt;}
.ybb{bottom:12.474897pt;}
.y9{bottom:12.480000pt;}
.ybd{bottom:12.500940pt;}
.y151{bottom:13.062105pt;}
.y14c{bottom:13.062143pt;}
.y1a5{bottom:13.292289pt;}
.y258{bottom:13.440000pt;}
.y1fa{bottom:13.487223pt;}
.y1fc{bottom:13.585730pt;}
.y24e{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.y2c{bottom:14.880000pt;}
.yfc{bottom:14.997521pt;}
.yfa{bottom:15.094627pt;}
.yf8{bottom:15.096785pt;}
.y100{bottom:15.126996pt;}
.yfe{bottom:15.224102pt;}
.y102{bottom:15.278050pt;}
.y3d{bottom:16.400000pt;}
.y35{bottom:17.200000pt;}
.y163{bottom:17.739069pt;}
.y166{bottom:17.755471pt;}
.y177{bottom:17.812583pt;}
.y171{bottom:17.812584pt;}
.y161{bottom:17.837482pt;}
.y174{bottom:17.837483pt;}
.y16f{bottom:17.837484pt;}
.y168{bottom:17.878488pt;}
.y16a{bottom:17.909242pt;}
.y16d{bottom:17.929745pt;}
.y286{bottom:18.240000pt;}
.y1fe{bottom:18.806591pt;}
.y254{bottom:19.360000pt;}
.y256{bottom:19.600000pt;}
.y1f0{bottom:20.809755pt;}
.y1ee{bottom:20.949803pt;}
.y1e3{bottom:20.970798pt;}
.y1dc{bottom:20.970800pt;}
.y1da{bottom:20.970804pt;}
.y1e1{bottom:20.970811pt;}
.y1e8{bottom:20.973132pt;}
.y1ea{bottom:20.973133pt;}
.y1f5{bottom:21.005809pt;}
.y1f3{bottom:21.005820pt;}
.y1d8{bottom:21.005822pt;}
.y1df{bottom:21.005824pt;}
.y1ec{bottom:21.089848pt;}
.y14f{bottom:21.105132pt;}
.y14b{bottom:21.105136pt;}
.y1e6{bottom:21.110846pt;}
.y140{bottom:21.207280pt;}
.y13e{bottom:21.207281pt;}
.y142{bottom:21.208985pt;}
.y145{bottom:21.222605pt;}
.y159{bottom:21.248144pt;}
.y155{bottom:21.311137pt;}
.y157{bottom:21.311139pt;}
.y148{bottom:21.324760pt;}
.y1a8{bottom:22.404082pt;}
.y1ad{bottom:22.404086pt;}
.y1aa{bottom:22.404088pt;}
.y1ba{bottom:22.434727pt;}
.y1bc{bottom:22.460265pt;}
.y1b8{bottom:22.557308pt;}
.y1af{bottom:22.593060pt;}
.y1b1{bottom:22.593063pt;}
.y1b3{bottom:22.613490pt;}
.y1b5{bottom:22.613495pt;}
.y201{bottom:23.275516pt;}
.y11c{bottom:23.931113pt;}
.y122{bottom:23.935631pt;}
.y11a{bottom:23.956645pt;}
.y120{bottom:24.187806pt;}
.y11e{bottom:24.261357pt;}
.y28f{bottom:25.840000pt;}
.y23f{bottom:26.085029pt;}
.y23c{bottom:26.227516pt;}
.y24a{bottom:26.349646pt;}
.y203{bottom:28.022724pt;}
.y205{bottom:28.049813pt;}
.y207{bottom:28.148320pt;}
.y3c{bottom:30.160000pt;}
.y2b{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.y34{bottom:31.840000pt;}
.y285{bottom:33.600000pt;}
.y233{bottom:35.733336pt;}
.y231{bottom:35.829004pt;}
.y22f{bottom:35.829005pt;}
.y236{bottom:35.855467pt;}
.y239{bottom:35.875821pt;}
.y28e{bottom:41.200000pt;}
.y253{bottom:43.920000pt;}
.y3b{bottom:44.000000pt;}
.y2a{bottom:45.520000pt;}
.y33{bottom:45.600000pt;}
.y284{bottom:48.880000pt;}
.y3{bottom:51.680000pt;}
.y28d{bottom:56.560000pt;}
.y3a{bottom:57.760000pt;}
.y32{bottom:59.466667pt;}
.y29{bottom:60.880000pt;}
.y283{bottom:64.240000pt;}
.y251{bottom:67.440000pt;}
.y39{bottom:71.600000pt;}
.y28c{bottom:71.840000pt;}
.y31{bottom:73.226667pt;}
.y28{bottom:76.240000pt;}
.y30{bottom:87.066667pt;}
.y28b{bottom:87.200000pt;}
.y27{bottom:91.520000pt;}
.y3f{bottom:94.400000pt;}
.y2f{bottom:100.826667pt;}
.y1d3{bottom:102.000000pt;}
.y91{bottom:102.400000pt;}
.y28a{bottom:102.560000pt;}
.y137{bottom:105.200000pt;}
.y18f{bottom:105.760000pt;}
.y26{bottom:106.880000pt;}
.ydf{bottom:108.560000pt;}
.y49{bottom:109.120000pt;}
.y115{bottom:110.000000pt;}
.y81{bottom:110.240000pt;}
.y139{bottom:110.800000pt;}
.y280{bottom:111.120000pt;}
.y22a{bottom:112.080000pt;}
.y26f{bottom:113.040000pt;}
.y2e{bottom:114.666667pt;}
.y1d2{bottom:117.360000pt;}
.y90{bottom:117.760000pt;}
.y289{bottom:117.840000pt;}
.y136{bottom:120.560000pt;}
.y18e{bottom:121.120000pt;}
.y25{bottom:122.240000pt;}
.y138{bottom:123.040000pt;}
.yde{bottom:123.920000pt;}
.y48{bottom:124.400000pt;}
.y114{bottom:125.360000pt;}
.y80{bottom:125.520000pt;}
.y27f{bottom:126.480000pt;}
.y229{bottom:127.440000pt;}
.y26e{bottom:128.400000pt;}
.y1d1{bottom:132.720000pt;}
.y8f{bottom:133.120000pt;}
.y135{bottom:135.840000pt;}
.y18d{bottom:136.400000pt;}
.y24{bottom:137.520000pt;}
.ydd{bottom:139.226667pt;}
.y47{bottom:139.786667pt;}
.y27c{bottom:140.666667pt;}
.y113{bottom:140.746667pt;}
.y7f{bottom:140.906667pt;}
.y27e{bottom:141.786667pt;}
.y228{bottom:142.826667pt;}
.y26d{bottom:143.786667pt;}
.y1d0{bottom:148.026667pt;}
.y8e{bottom:148.426667pt;}
.y134{bottom:151.226667pt;}
.y18c{bottom:151.786667pt;}
.y23{bottom:152.880000pt;}
.ydc{bottom:154.586667pt;}
.y46{bottom:155.146667pt;}
.y112{bottom:156.026667pt;}
.y7e{bottom:156.266667pt;}
.y27d{bottom:157.146667pt;}
.y227{bottom:158.106667pt;}
.y26c{bottom:159.066667pt;}
.y8d{bottom:163.226667pt;}
.y1cf{bottom:163.386667pt;}
.y133{bottom:166.506667pt;}
.y18b{bottom:167.146667pt;}
.y22{bottom:168.160000pt;}
.ydb{bottom:169.946667pt;}
.y288{bottom:170.266667pt;}
.y45{bottom:170.426667pt;}
.y111{bottom:171.386667pt;}
.y7d{bottom:171.546667pt;}
.y226{bottom:173.466667pt;}
.y26b{bottom:174.426667pt;}
.y8c{bottom:175.546667pt;}
.y1ce{bottom:178.746667pt;}
.y132{bottom:181.866667pt;}
.y18a{bottom:182.426667pt;}
.y21{bottom:183.520000pt;}
.yda{bottom:185.226667pt;}
.y44{bottom:185.786667pt;}
.yb2{bottom:186.307959pt;}
.y27b{bottom:186.666667pt;}
.y110{bottom:186.746667pt;}
.y7c{bottom:186.906667pt;}
.yba{bottom:188.049883pt;}
.y225{bottom:188.826667pt;}
.y26a{bottom:189.786667pt;}
.y1cd{bottom:193.546667pt;}
.ycd{bottom:196.119138pt;}
.y131{bottom:197.226667pt;}
.y20{bottom:198.880000pt;}
.yd9{bottom:200.026667pt;}
.y43{bottom:201.146667pt;}
.y10f{bottom:201.546667pt;}
.y27a{bottom:202.026667pt;}
.y7b{bottom:202.186667pt;}
.y224{bottom:204.106667pt;}
.y269{bottom:205.066667pt;}
.y1cc{bottom:205.786667pt;}
.ybc{bottom:207.133883pt;}
.y189{bottom:209.546667pt;}
.y130{bottom:212.026667pt;}
.yd8{bottom:212.346667pt;}
.y10e{bottom:213.786667pt;}
.y1f{bottom:214.160000pt;}
.y1cb{bottom:215.706667pt;}
.y1f7{bottom:215.760000pt;}
.y42{bottom:216.426667pt;}
.y279{bottom:217.306667pt;}
.y7a{bottom:217.546667pt;}
.y188{bottom:219.466667pt;}
.y19d{bottom:219.520000pt;}
.y268{bottom:220.426667pt;}
.yf4{bottom:222.320000pt;}
.y10d{bottom:223.706667pt;}
.y12f{bottom:224.266667pt;}
.y116{bottom:224.480000pt;}
.y200{bottom:225.054938pt;}
.y1e{bottom:229.520000pt;}
.y11b{bottom:229.968278pt;}
.y41{bottom:231.466667pt;}
.y1a9{bottom:232.347499pt;}
.y1a7{bottom:232.347504pt;}
.y278{bottom:232.666667pt;}
.y79{bottom:232.906667pt;}
.y15d{bottom:234.280000pt;}
.y223{bottom:234.826667pt;}
.y176{bottom:234.932273pt;}
.y170{bottom:234.932282pt;}
.y267{bottom:235.706667pt;}
.y1b6{bottom:238.936173pt;}
.y17{bottom:243.386667pt;}
.y1d{bottom:244.880000pt;}
.y277{bottom:248.026667pt;}
.y78{bottom:248.186667pt;}
.ybe{bottom:249.657574pt;}
.y222{bottom:250.106667pt;}
.y266{bottom:251.066667pt;}
.y175{bottom:257.936176pt;}
.y173{bottom:257.936179pt;}
.y172{bottom:257.936182pt;}
.y16e{bottom:257.936185pt;}
.y119{bottom:257.959412pt;}
.y1c{bottom:260.160000pt;}
.yc5{bottom:260.928913pt;}
.y276{bottom:263.306667pt;}
.y77{bottom:263.546667pt;}
.y221{bottom:265.466667pt;}
.y265{bottom:266.426667pt;}
.y1b{bottom:275.546667pt;}
.y275{bottom:278.666667pt;}
.y76{bottom:278.906667pt;}
.y160{bottom:280.694355pt;}
.y220{bottom:280.826667pt;}
.y264{bottom:281.706667pt;}
.y1ac{bottom:288.274707pt;}
.y1ab{bottom:288.274711pt;}
.y1a{bottom:290.906667pt;}
.y1b7{bottom:292.105331pt;}
.y274{bottom:294.026667pt;}
.y75{bottom:294.186667pt;}
.y202{bottom:296.078345pt;}
.y21f{bottom:296.106667pt;}
.yc0{bottom:296.413353pt;}
.y263{bottom:297.066667pt;}
.yf7{bottom:300.671411pt;}
.y287{bottom:301.226667pt;}
.y162{bottom:305.420795pt;}
.y19{bottom:306.186667pt;}
.yc7{bottom:307.556610pt;}
.y273{bottom:309.306667pt;}
.y74{bottom:309.546667pt;}
.y21e{bottom:311.466667pt;}
.y262{bottom:312.426667pt;}
.yfd{bottom:315.043137pt;}
.y282{bottom:317.226667pt;}
.y18{bottom:321.546667pt;}
.y204{bottom:323.460774pt;}
.y272{bottom:324.666667pt;}
.y73{bottom:324.906667pt;}
.y21d{bottom:326.826667pt;}
.y261{bottom:327.706667pt;}
.y164{bottom:330.147234pt;}
.y271{bottom:340.026667pt;}
.y72{bottom:340.186667pt;}
.y21c{bottom:342.106667pt;}
.y260{bottom:343.066667pt;}
.yc2{bottom:343.163796pt;}
.y17b{bottom:343.191136pt;}
.y179{bottom:343.191142pt;}
.y1b0{bottom:344.048690pt;}
.y1ae{bottom:344.048693pt;}
.y1b9{bottom:348.190877pt;}
.y38{bottom:349.626667pt;}
.yf9{bottom:353.497212pt;}
.yc9{bottom:354.435136pt;}
.y165{bottom:354.754758pt;}
.y270{bottom:355.306667pt;}
.y178{bottom:355.492857pt;}
.y71{bottom:355.546667pt;}
.y21b{bottom:357.466667pt;}
.y25f{bottom:357.866667pt;}
.y250{bottom:368.426667pt;}
.y70{bottom:370.906667pt;}
.y21a{bottom:372.826667pt;}
.y11d{bottom:375.217735pt;}
.yff{bottom:377.450087pt;}
.y167{bottom:379.235164pt;}
.y6f{bottom:386.186667pt;}
.y25d{bottom:386.746667pt;}
.y219{bottom:388.106667pt;}
.yc4{bottom:389.914239pt;}
.y206{bottom:393.794634pt;}
.y281{bottom:394.586667pt;}
.y1b4{bottom:400.134230pt;}
.y1b2{bottom:400.134235pt;}
.ycb{bottom:401.057495pt;}
.y6e{bottom:401.546667pt;}
.y218{bottom:403.466667pt;}
.y169{bottom:403.961603pt;}
.y1bb{bottom:404.118080pt;}
.y25c{bottom:404.826667pt;}
.y6d{bottom:416.906667pt;}
.y217{bottom:418.746667pt;}
.yfb{bottom:426.650588pt;}
.y16b{bottom:428.565025pt;}
.y103{bottom:429.110613pt;}
.y6c{bottom:432.186667pt;}
.y36{bottom:433.066667pt;}
.y216{bottom:434.106667pt;}
.y121{bottom:439.900677pt;}
.y252{bottom:439.946667pt;}
.y6b{bottom:447.546667pt;}
.y1ca{bottom:449.386667pt;}
.y215{bottom:449.466667pt;}
.y101{bottom:450.215038pt;}
.y2d{bottom:451.546667pt;}
.y16c{bottom:453.168448pt;}
.y259{bottom:458.266667pt;}
.y1fb{bottom:458.316591pt;}
.y1fd{bottom:459.498673pt;}
.y1f9{bottom:460.779262pt;}
.y6a{bottom:462.906667pt;}
.y1c9{bottom:464.746667pt;}
.yb8{bottom:473.168452pt;}
.y11f{bottom:473.187806pt;}
.yb4{bottom:474.193119pt;}
.yb6{bottom:475.730120pt;}
.y255{bottom:476.346667pt;}
.y69{bottom:478.186667pt;}
.y17a{bottom:478.879015pt;}
.y1c8{bottom:480.026667pt;}
.y214{bottom:480.106667pt;}
.y68{bottom:493.546667pt;}
.y1c7{bottom:495.386667pt;}
.y213{bottom:495.466667pt;}
.y8b{bottom:496.346667pt;}
.y187{bottom:500.666667pt;}
.y1a4{bottom:508.311239pt;}
.yd7{bottom:508.746667pt;}
.y67{bottom:508.826667pt;}
.y19f{bottom:509.537050pt;}
.y1c6{bottom:510.773333pt;}
.y8a{bottom:511.173333pt;}
.y1a2{bottom:511.375738pt;}
.y24c{bottom:511.493333pt;}
.y186{bottom:517.493333pt;}
.y89{bottom:523.973333pt;}
.yd6{bottom:524.053333pt;}
.y66{bottom:524.213333pt;}
.y1c5{bottom:526.053333pt;}
.y212{bottom:526.133333pt;}
.y10c{bottom:528.613333pt;}
.y12e{bottom:528.853333pt;}
.y185{bottom:534.373333pt;}
.y88{bottom:539.253333pt;}
.yd5{bottom:539.413333pt;}
.y65{bottom:539.573333pt;}
.y1c4{bottom:541.413333pt;}
.y211{bottom:541.493333pt;}
.y10b{bottom:543.893333pt;}
.y12d{bottom:544.133333pt;}
.y183{bottom:550.933333pt;}
.y184{bottom:553.493333pt;}
.y87{bottom:554.613333pt;}
.yd4{bottom:554.693333pt;}
.y64{bottom:554.853333pt;}
.y1c3{bottom:556.693333pt;}
.y210{bottom:556.773333pt;}
.y10a{bottom:559.253333pt;}
.y12c{bottom:559.493333pt;}
.y182{bottom:566.293333pt;}
.y86{bottom:569.893333pt;}
.yd3{bottom:570.053333pt;}
.y63{bottom:570.213333pt;}
.y1c2{bottom:572.053333pt;}
.y20f{bottom:572.133333pt;}
.y109{bottom:574.613333pt;}
.y12b{bottom:574.853333pt;}
.y15{bottom:578.053333pt;}
.y181{bottom:581.573333pt;}
.y85{bottom:585.253333pt;}
.yd2{bottom:585.413333pt;}
.y62{bottom:585.573333pt;}
.y1c1{bottom:587.413333pt;}
.y20e{bottom:587.493333pt;}
.y108{bottom:589.893333pt;}
.y12a{bottom:590.133333pt;}
.y180{bottom:596.933333pt;}
.y84{bottom:600.613333pt;}
.yd1{bottom:600.693333pt;}
.y61{bottom:600.853333pt;}
.y1c0{bottom:602.693333pt;}
.y20d{bottom:602.773333pt;}
.y107{bottom:605.253333pt;}
.y129{bottom:605.493333pt;}
.y14{bottom:608.773333pt;}
.y17f{bottom:612.293333pt;}
.yd0{bottom:615.493333pt;}
.y83{bottom:615.893333pt;}
.y60{bottom:616.213333pt;}
.y1bf{bottom:618.053333pt;}
.y20c{bottom:618.133333pt;}
.y106{bottom:620.613333pt;}
.y128{bottom:620.853333pt;}
.y13{bottom:626.453333pt;}
.y17e{bottom:627.093333pt;}
.ycf{bottom:627.813333pt;}
.y82{bottom:630.693333pt;}
.y5f{bottom:631.573333pt;}
.y1be{bottom:633.413333pt;}
.y20b{bottom:633.493333pt;}
.y105{bottom:635.893333pt;}
.y127{bottom:636.133333pt;}
.ye0{bottom:638.240000pt;}
.y17d{bottom:639.333333pt;}
.y92{bottom:641.731338pt;}
.y9c{bottom:643.181763pt;}
.y5e{bottom:646.853333pt;}
.y1bd{bottom:648.213333pt;}
.y20a{bottom:648.773333pt;}
.y17c{bottom:649.253333pt;}
.y190{bottom:649.280000pt;}
.y104{bottom:650.693333pt;}
.y126{bottom:651.493333pt;}
.y12{bottom:658.053333pt;}
.y1d4{bottom:658.160000pt;}
.y5d{bottom:662.213333pt;}
.y209{bottom:664.133333pt;}
.yb0{bottom:666.111467pt;}
.y125{bottom:666.293333pt;}
.y11{bottom:668.613333pt;}
.y1f1{bottom:671.014547pt;}
.y1ef{bottom:671.014549pt;}
.y5c{bottom:677.573333pt;}
.y124{bottom:678.533333pt;}
.y208{bottom:678.933333pt;}
.y10{bottom:683.973333pt;}
.ya9{bottom:686.054868pt;}
.ya7{bottom:686.054891pt;}
.y13a{bottom:688.493333pt;}
.y22b{bottom:688.880000pt;}
.ye8{bottom:692.648938pt;}
.ye6{bottom:692.648940pt;}
.y5b{bottom:692.853333pt;}
.y1ed{bottom:697.341819pt;}
.yf{bottom:699.573333pt;}
.y9e{bottom:702.265593pt;}
.y150{bottom:704.477048pt;}
.y14e{bottom:704.477062pt;}
.y14d{bottom:704.477072pt;}
.y14a{bottom:704.477084pt;}
.y5a{bottom:708.213333pt;}
.y198{bottom:712.950632pt;}
.y196{bottom:712.950633pt;}
.ye{bottom:718.453333pt;}
.y59{bottom:723.573333pt;}
.y1eb{bottom:723.809130pt;}
.ya0{bottom:726.155028pt;}
.y13d{bottom:728.381257pt;}
.y13f{bottom:728.381259pt;}
.yf2{bottom:732.964998pt;}
.y58{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.ya2{bottom:749.937813pt;}
.y57{bottom:754.213333pt;}
.yf0{bottom:759.386447pt;}
.y143{bottom:767.608592pt;}
.y141{bottom:767.608595pt;}
.y1e9{bottom:767.641202pt;}
.y1e7{bottom:767.641205pt;}
.y156{bottom:767.710723pt;}
.y154{bottom:767.710725pt;}
.y56{bottom:769.573333pt;}
.y22e{bottom:771.382049pt;}
.y230{bottom:771.382052pt;}
.ya3{bottom:773.613949pt;}
.yc{bottom:773.653333pt;}
.y55{bottom:784.853333pt;}
.yee{bottom:785.679545pt;}
.y15c{bottom:793.252733pt;}
.y15b{bottom:793.252735pt;}
.y1e5{bottom:794.110847pt;}
.y234{bottom:797.033514pt;}
.y232{bottom:797.033516pt;}
.ya4{bottom:797.503384pt;}
.y54{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y153{bottom:803.059603pt;}
.y152{bottom:803.059606pt;}
.y146{bottom:806.737179pt;}
.y144{bottom:806.737181pt;}
.y53{bottom:815.493333pt;}
.ya6{bottom:821.286170pt;}
.y1e4{bottom:821.558441pt;}
.y1e2{bottom:821.558443pt;}
.y1dd{bottom:821.558464pt;}
.y1db{bottom:821.558466pt;}
.y237{bottom:822.436647pt;}
.y235{bottom:822.436649pt;}
.ya{bottom:826.853333pt;}
.y52{bottom:830.853333pt;}
.yec{bottom:831.003898pt;}
.yea{bottom:831.003899pt;}
.y242{bottom:831.107891pt;}
.y241{bottom:831.107892pt;}
.y240{bottom:831.107896pt;}
.y23e{bottom:831.107897pt;}
.y8{bottom:840.533333pt;}
.y245{bottom:841.366838pt;}
.y246{bottom:841.366839pt;}
.y149{bottom:845.862360pt;}
.y147{bottom:845.862362pt;}
.y51{bottom:846.213333pt;}
.y195{bottom:846.563061pt;}
.y193{bottom:846.563063pt;}
.ye5{bottom:847.405766pt;}
.ye3{bottom:847.405768pt;}
.y238{bottom:847.961910pt;}
.y23a{bottom:847.961912pt;}
.y1e0{bottom:848.165788pt;}
.y1d9{bottom:848.165817pt;}
.y23d{bottom:851.503685pt;}
.y23b{bottom:851.503686pt;}
.y1f6{bottom:853.907426pt;}
.y1f4{bottom:853.907428pt;}
.yae{bottom:855.733848pt;}
.yaf{bottom:855.733850pt;}
.yab{bottom:855.733865pt;}
.yad{bottom:855.733866pt;}
.y50{bottom:861.493333pt;}
.y15a{bottom:863.841519pt;}
.y158{bottom:863.841521pt;}
.y244{bottom:864.205236pt;}
.y243{bottom:864.205237pt;}
.y1de{bottom:874.633101pt;}
.y1d7{bottom:874.633126pt;}
.y4f{bottom:876.853333pt;}
.y247{bottom:877.028922pt;}
.y248{bottom:877.028924pt;}
.y1f2{bottom:880.374735pt;}
.y19c{bottom:882.640725pt;}
.y19a{bottom:882.640732pt;}
.y9a{bottom:886.982106pt;}
.y249{bottom:887.043614pt;}
.y24b{bottom:887.043615pt;}
.y97{bottom:887.728672pt;}
.y94{bottom:887.728673pt;}
.y98{bottom:889.861612pt;}
.y4e{bottom:892.240000pt;}
.y4d{bottom:907.520000pt;}
.y123{bottom:921.360000pt;}
.y4c{bottom:922.880000pt;}
.yce{bottom:925.920000pt;}
.y4b{bottom:938.240000pt;}
.y4a{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h84{height:-14.219262pt;}
.h6b{height:-13.895738pt;}
.h86{height:-12.938673pt;}
.h6a{height:-12.057050pt;}
.h85{height:-11.756591pt;}
.h6c{height:-10.831239pt;}
.h6d{height:3.327523pt;}
.h8e{height:8.735203pt;}
.h42{height:9.341236pt;}
.h62{height:12.267900pt;}
.h5a{height:12.461615pt;}
.h75{height:12.714446pt;}
.h20{height:12.797913pt;}
.h1f{height:12.797918pt;}
.h21{height:12.797940pt;}
.h50{height:13.021223pt;}
.h2c{height:14.729592pt;}
.h2d{height:14.857675pt;}
.hf{height:15.360000pt;}
.h22{height:15.677442pt;}
.h9a{height:17.440000pt;}
.h36{height:17.598151pt;}
.h9b{height:17.600000pt;}
.h15{height:17.840000pt;}
.h2e{height:18.311548pt;}
.h48{height:18.474987pt;}
.h32{height:18.700177pt;}
.h3b{height:19.657226pt;}
.h3a{height:19.657227pt;}
.h3d{height:19.657231pt;}
.h3c{height:19.657235pt;}
.h37{height:19.782431pt;}
.h39{height:19.782432pt;}
.h3f{height:19.782447pt;}
.h26{height:21.009908pt;}
.h27{height:21.009911pt;}
.h29{height:21.009916pt;}
.h28{height:21.009921pt;}
.h23{height:21.116555pt;}
.h25{height:21.116557pt;}
.h87{height:21.214262pt;}
.h64{height:21.231551pt;}
.h67{height:21.231553pt;}
.h66{height:21.231554pt;}
.h57{height:22.726008pt;}
.h55{height:22.726046pt;}
.h31{height:24.335847pt;}
.h2f{height:24.463930pt;}
.h96{height:24.480000pt;}
.h3{height:24.560000pt;}
.hd{height:27.074531pt;}
.h44{height:27.189750pt;}
.h43{height:27.319225pt;}
.h83{height:28.493863pt;}
.h8a{height:28.550851pt;}
.h5b{height:29.401091pt;}
.h5d{height:29.401092pt;}
.h5c{height:29.401093pt;}
.h4f{height:29.548993pt;}
.h54{height:29.608091pt;}
.h1c{height:30.028906pt;}
.h56{height:30.748518pt;}
.h53{height:30.748523pt;}
.h5{height:30.777031pt;}
.h1e{height:30.849132pt;}
.h52{height:30.850667pt;}
.h51{height:30.850668pt;}
.h24{height:30.910831pt;}
.h88{height:31.128151pt;}
.h1b{height:32.065469pt;}
.h19{height:33.867188pt;}
.h7b{height:34.029407pt;}
.h78{height:34.029409pt;}
.h7f{height:34.029418pt;}
.h80{height:34.029419pt;}
.h76{height:34.029422pt;}
.h79{height:34.029423pt;}
.h81{height:34.169448pt;}
.h77{height:34.169452pt;}
.h7c{height:34.169455pt;}
.h7a{height:34.169459pt;}
.h7e{height:34.169463pt;}
.h9d{height:34.400000pt;}
.h99{height:34.426667pt;}
.h17{height:34.710938pt;}
.h6{height:34.739844pt;}
.h8d{height:35.327186pt;}
.h91{height:35.397840pt;}
.h13{height:35.554688pt;}
.h59{height:35.583661pt;}
.h5e{height:35.654828pt;}
.h4c{height:35.808880pt;}
.h49{height:35.934968pt;}
.h94{height:36.028483pt;}
.h4b{height:36.061056pt;}
.h92{height:36.150615pt;}
.h35{height:36.216596pt;}
.h47{height:36.471825pt;}
.h4a{height:36.544769pt;}
.h6e{height:36.927280pt;}
.h70{height:36.927283pt;}
.h6f{height:36.927285pt;}
.h2b{height:37.049125pt;}
.h72{height:37.080506pt;}
.h30{height:37.123224pt;}
.h89{height:37.334079pt;}
.h8b{height:37.432586pt;}
.h41{height:37.451656pt;}
.h45{height:37.526559pt;}
.h10{height:37.705469pt;}
.h4{height:38.644844pt;}
.h1a{height:38.905781pt;}
.h14{height:39.584219pt;}
.h2{height:40.262656pt;}
.h95{height:40.329525pt;}
.h93{height:40.426704pt;}
.h74{height:40.507290pt;}
.h7d{height:40.588304pt;}
.h5f{height:41.317969pt;}
.h38{height:41.344876pt;}
.h3e{height:41.444502pt;}
.h33{height:42.295292pt;}
.h8{height:42.347344pt;}
.hc{height:43.551875pt;}
.h9{height:44.120156pt;}
.h69{height:44.321594pt;}
.h71{height:44.410237pt;}
.h1{height:45.156250pt;}
.h61{height:46.175876pt;}
.h63{height:46.268228pt;}
.h90{height:47.264484pt;}
.h8f{height:47.264486pt;}
.hb{height:47.856406pt;}
.h65{height:52.714392pt;}
.h4d{height:58.245469pt;}
.ha{height:67.734375pt;}
.he{height:69.421875pt;}
.h9c{height:70.800000pt;}
.h98{height:70.826667pt;}
.h9e{height:76.720000pt;}
.h16{height:82.800000pt;}
.h18{height:105.600000pt;}
.h12{height:125.866667pt;}
.h9f{height:130.320000pt;}
.h7{height:136.826667pt;}
.h97{height:142.346667pt;}
.h4e{height:226.933333pt;}
.h82{height:230.800000pt;}
.h1d{height:260.926381pt;}
.h8c{height:261.760000pt;}
.h73{height:261.840000pt;}
.h34{height:267.493333pt;}
.h60{height:270.715526pt;}
.h68{height:277.960000pt;}
.h40{height:283.560000pt;}
.h58{height:291.706667pt;}
.h46{height:299.266667pt;}
.h2a{height:305.169386pt;}
.h11{height:334.026667pt;}
.h0{height:1056.000000pt;}
.w83{width:-29.427326pt;}
.w82{width:-28.688912pt;}
.w64{width:-26.438040pt;}
.w72{width:-21.071127pt;}
.w91{width:-14.470776pt;}
.w65{width:-13.388861pt;}
.w84{width:-10.597782pt;}
.w5d{width:-8.956121pt;}
.w87{width:-8.353302pt;}
.w46{width:-5.566997pt;}
.w33{width:-4.960061pt;}
.w29{width:-2.448542pt;}
.w51{width:-1.770704pt;}
.w3c{width:-0.612246pt;}
.w68{width:0.447596pt;}
.w19{width:3.591812pt;}
.w67{width:3.766773pt;}
.wa{width:4.128896pt;}
.wc{width:4.276357pt;}
.w18{width:4.746322pt;}
.w86{width:5.353499pt;}
.wd{width:5.603502pt;}
.w17{width:7.055344pt;}
.w25{width:7.825018pt;}
.w26{width:7.953297pt;}
.w98{width:8.280788pt;}
.w97{width:8.404382pt;}
.w9{width:8.405252pt;}
.w1b{width:9.236087pt;}
.w93{width:9.887509pt;}
.w2a{width:9.942570pt;}
.w6c{width:9.955044pt;}
.w69{width:10.089571pt;}
.w41{width:10.487364pt;}
.w5e{width:10.555428pt;}
.w7c{width:10.664191pt;}
.w79{width:10.804510pt;}
.w23{width:10.903713pt;}
.w24{width:11.031992pt;}
.we{width:11.059542pt;}
.w96{width:11.741415pt;}
.w53{width:13.570438pt;}
.w48{width:13.652040pt;}
.w5a{width:13.748997pt;}
.w2e{width:13.800880pt;}
.w2d{width:13.949277pt;}
.w8e{width:14.029858pt;}
.w2b{width:14.097673pt;}
.w5f{width:14.873558pt;}
.w22{width:15.521755pt;}
.w35{width:15.950002pt;}
.w92{width:16.437981pt;}
.w70{width:16.546897pt;}
.w95{width:16.561574pt;}
.w6f{width:16.681425pt;}
.w99{width:16.685168pt;}
.w42{width:17.563176pt;}
.w7a{width:17.680105pt;}
.w76{width:17.820424pt;}
.w12{width:18.285109pt;}
.w1c{width:18.343893pt;}
.w1d{width:18.472172pt;}
.w36{width:19.062197pt;}
.w34{width:19.191872pt;}
.w2c{width:19.736742pt;}
.w94{width:19.775014pt;}
.w6e{width:19.910088pt;}
.w44{width:20.974728pt;}
.w43{width:21.101082pt;}
.w75{width:21.188062pt;}
.w7f{width:21.328380pt;}
.wf{width:21.824162pt;}
.w13{width:21.971623pt;}
.w52{width:22.676916pt;}
.w47{width:22.753399pt;}
.w59{width:22.855474pt;}
.w4a{width:22.935426pt;}
.w8d{width:23.260026pt;}
.w62{width:24.469402pt;}
.w5b{width:27.140876pt;}
.w49{width:27.304079pt;}
.w54{width:27.319434pt;}
.w8f{width:27.875111pt;}
.w61{width:28.627601pt;}
.w8a{width:29.721144pt;}
.w60{width:31.666285pt;}
.w88{width:34.520832pt;}
.w89{width:34.705435pt;}
.w2{width:34.720000pt;}
.w8b{width:34.890039pt;}
.w20{width:39.766479pt;}
.w3a{width:41.236588pt;}
.w38{width:41.366263pt;}
.w16{width:42.460320pt;}
.w74{width:43.638987pt;}
.w30{width:44.667362pt;}
.w3e{width:45.234654pt;}
.w40{width:45.361008pt;}
.w10{width:47.482298pt;}
.w8{width:50.431501pt;}
.w58{width:58.745710pt;}
.w4e{width:58.794781pt;}
.w1f{width:61.317345pt;}
.w39{width:62.503255pt;}
.w37{width:63.540654pt;}
.w7b{width:64.827046pt;}
.w2f{width:66.778448pt;}
.w3f{width:68.610103pt;}
.w3d{width:69.873641pt;}
.w7e{width:71.842960pt;}
.w9a{width:80.826667pt;}
.w8c{width:81.594692pt;}
.wa0{width:82.160000pt;}
.w6b{width:82.196375pt;}
.w80{width:82.366831pt;}
.w14{width:85.674581pt;}
.w27{width:85.818627pt;}
.w78{width:88.540835pt;}
.w4b{width:89.011293pt;}
.w55{width:89.100636pt;}
.w4f{width:89.193320pt;}
.w56{width:90.350545pt;}
.w4d{width:90.467511pt;}
.w57{width:90.529103pt;}
.w4c{width:90.649538pt;}
.w73{width:96.679295pt;}
.w31{width:98.164324pt;}
.w21{width:104.419076pt;}
.w77{width:105.799983pt;}
.w9c{width:107.200000pt;}
.w7d{width:112.815897pt;}
.w6d{width:115.290170pt;}
.w11{width:124.161785pt;}
.w1e{width:125.969941pt;}
.w6a{width:126.321435pt;}
.w9b{width:142.480000pt;}
.w9e{width:147.386667pt;}
.w9d{width:157.306667pt;}
.w6{width:195.866667pt;}
.wb{width:218.683999pt;}
.w66{width:240.669911pt;}
.w1a{width:249.502581pt;}
.wa1{width:273.466667pt;}
.w9f{width:356.266667pt;}
.w32{width:379.525721pt;}
.w3b{width:390.200000pt;}
.w63{width:400.600000pt;}
.w71{width:424.439402pt;}
.w90{width:425.770406pt;}
.w5c{width:442.688261pt;}
.w28{width:448.528565pt;}
.w15{width:482.339584pt;}
.w5{width:523.093333pt;}
.w85{width:524.752461pt;}
.w50{width:532.654548pt;}
.w45{width:538.330222pt;}
.w7{width:554.463963pt;}
.w81{width:565.686269pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x7a{left:-93.040012pt;}
.x80{left:-72.429670pt;}
.x99{left:-36.625319pt;}
.x9a{left:-31.641028pt;}
.x81{left:-28.573666pt;}
.x9b{left:-10.559323pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.xb7{left:9.226667pt;}
.xb6{left:10.826667pt;}
.xc3{left:14.320000pt;}
.xba{left:15.440000pt;}
.xb9{left:16.800000pt;}
.x11{left:17.920000pt;}
.x15{left:24.560000pt;}
.xbb{left:29.200000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x6{left:40.480000pt;}
.xc4{left:46.640000pt;}
.x2{left:47.999988pt;}
.xc0{left:49.680000pt;}
.x55{left:50.639988pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.xbd{left:57.200000pt;}
.x16{left:58.159988pt;}
.xbf{left:61.680000pt;}
.xd{left:63.519988pt;}
.xc5{left:66.666667pt;}
.xc2{left:68.320000pt;}
.xb4{left:71.200000pt;}
.xc1{left:73.306667pt;}
.x9{left:74.559988pt;}
.xbc{left:75.946667pt;}
.xbe{left:78.666667pt;}
.xc9{left:80.960000pt;}
.xc8{left:86.080000pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.xc7{left:108.240000pt;}
.x97{left:125.466667pt;}
.x1d{left:134.266667pt;}
.xa{left:139.866655pt;}
.x5d{left:142.306667pt;}
.xf{left:144.026655pt;}
.x6d{left:162.770069pt;}
.x2d{left:167.800000pt;}
.xb3{left:170.586667pt;}
.x1f{left:172.164020pt;}
.x6c{left:173.305015pt;}
.x6b{left:183.304284pt;}
.x61{left:185.083050pt;}
.x44{left:187.266667pt;}
.x20{left:188.679601pt;}
.x60{left:195.094547pt;}
.x8c{left:196.133333pt;}
.x2e{left:199.741443pt;}
.x2f{left:204.872602pt;}
.x30{left:208.207855pt;}
.x9f{left:209.201217pt;}
.x31{left:213.595571pt;}
.x56{left:215.200000pt;}
.x32{left:216.161151pt;}
.x4d{left:220.760000pt;}
.x83{left:223.332188pt;}
.x94{left:226.857184pt;}
.x6e{left:230.086582pt;}
.x84{left:231.807428pt;}
.xa0{left:235.230292pt;}
.x53{left:238.655115pt;}
.xa5{left:242.614424pt;}
.x4b{left:246.922064pt;}
.x95{left:250.150006pt;}
.x62{left:251.522974pt;}
.xa4{left:253.136816pt;}
.x54{left:255.383160pt;}
.x3a{left:256.440757pt;}
.x9e{left:257.751904pt;}
.xc{left:258.666655pt;}
.x25{left:261.082738pt;}
.x70{left:263.655556pt;}
.x82{left:267.188192pt;}
.x24{left:269.193069pt;}
.xac{left:270.488104pt;}
.x1b{left:273.226655pt;}
.x57{left:274.838985pt;}
.xab{left:277.903735pt;}
.x64{left:279.373129pt;}
.x96{left:282.563530pt;}
.x71{left:284.011212pt;}
.xaa{left:285.319364pt;}
.x65{left:299.760173pt;}
.x5a{left:301.246925pt;}
.x3b{left:305.186760pt;}
.x5b{left:308.954506pt;}
.xb5{left:313.786667pt;}
.x33{left:321.349899pt;}
.xad{left:324.745787pt;}
.x21{left:326.407757pt;}
.x9c{left:331.960912pt;}
.xa1{left:334.729972pt;}
.xae{left:337.105169pt;}
.x26{left:340.269055pt;}
.xa7{left:341.929500pt;}
.xa6{left:352.267289pt;}
.x22{left:355.604946pt;}
.xa2{left:356.882377pt;}
.x36{left:359.320486pt;}
.xe{left:364.906655pt;}
.x8e{left:368.163524pt;}
.x47{left:369.349215pt;}
.x73{left:372.754731pt;}
.x66{left:374.755374pt;}
.x48{left:376.472249pt;}
.x29{left:377.871490pt;}
.x52{left:379.870965pt;}
.x72{left:382.754001pt;}
.x67{left:384.766869pt;}
.x8f{left:386.264583pt;}
.x90{left:387.948405pt;}
.x4e{left:389.132463pt;}
.x42{left:390.492263pt;}
.x2c{left:392.322631pt;}
.x28{left:394.239611pt;}
.xaf{left:395.194265pt;}
.x41{left:396.264816pt;}
.x7c{left:401.280512pt;}
.x40{left:403.961557pt;}
.x7f{left:405.253243pt;}
.x34{left:406.398850pt;}
.x8{left:408.026655pt;}
.x3f{left:409.605831pt;}
.xb{left:412.586655pt;}
.xb0{left:416.205212pt;}
.x7d{left:417.913308pt;}
.x1c{left:420.746655pt;}
.x37{left:422.946851pt;}
.x18{left:425.093321pt;}
.x19{left:426.453321pt;}
.xb1{left:428.811782pt;}
.x43{left:431.156705pt;}
.x7e{left:433.426589pt;}
.xa8{left:436.261823pt;}
.x49{left:439.540792pt;}
.x27{left:443.933823pt;}
.xc6{left:446.693321pt;}
.x1a{left:450.453321pt;}
.x4a{left:454.232051pt;}
.x45{left:455.404272pt;}
.x7b{left:456.535597pt;}
.x89{left:458.355302pt;}
.x58{left:460.326336pt;}
.x75{left:462.748154pt;}
.x3c{left:464.124395pt;}
.x59{left:468.918393pt;}
.x8a{left:473.287868pt;}
.x3d{left:475.926059pt;}
.x87{left:477.323697pt;}
.x68{left:480.331136pt;}
.x74{left:483.103810pt;}
.x38{left:490.036748pt;}
.x88{left:491.987207pt;}
.x91{left:502.448115pt;}
.x5c{left:506.571820pt;}
.x2b{left:507.489315pt;}
.x92{left:508.902758pt;}
.xa3{left:513.795243pt;}
.x6f{left:517.565586pt;}
.xb2{left:520.147612pt;}
.x1e{left:522.428158pt;}
.x2a{left:523.709976pt;}
.x93{left:531.634320pt;}
.x63{left:533.483080pt;}
.x50{left:535.480730pt;}
.x4c{left:537.630904pt;}
.x69{left:540.287919pt;}
.x51{left:549.744958pt;}
.x5e{left:550.783916pt;}
.x39{left:557.126645pt;}
.x76{left:558.276895pt;}
.x85{left:562.479680pt;}
.x77{left:568.454723pt;}
.x10{left:570.853333pt;}
.x86{left:577.277718pt;}
.xb8{left:579.573333pt;}
.x98{left:581.023733pt;}
.x3e{left:583.167268pt;}
.x4f{left:605.245781pt;}
.x35{left:606.257488pt;}
.x79{left:608.693321pt;}
.x78{left:629.813321pt;}
.xa9{left:635.707848pt;}
.x46{left:638.243773pt;}
.x8d{left:641.643862pt;}
.x23{left:651.115900pt;}
.x6a{left:678.625252pt;}
.x5f{left:686.203886pt;}
.x8b{left:691.253321pt;}
.x9d{left:699.506237pt;}
.x7{left:722.160000pt;}
}




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