
    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_55d4e6ebe177ae84c91a2bb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_4e03c74dac130bbee423fbab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_2223b002466737a8f167b183.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_347255ed67eaf449543d9a59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0bf42298ea7e6a4c23d6b8db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_8c1aba082751135d68da1d64.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_1f49aaad6720d5ad5f47ba4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_b4f84efde42ace3d61f8f377.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f66e68ae95184fdae1a04ebb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_8d02873214a4506065661995.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_3037334f78980f1a23fcbf73.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_d0ff1df7720245354adfbafb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8cbc4baa76eaed643688bc44.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1d98dcec8b85573404accfca.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2a0d81ca6591124ed05406f4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d18ddb5857a4abaab5c76345.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_dbf07111f0c726a6276ebd21.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5471b07ccef43ef0f597a1b9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.916016;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:ff13;src:url('chunks/assets/font_2d7b16f72ab42d5d1868c295.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.916016;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:ff14;src:url('chunks/assets/font_010aa5c636a8e1a3863d10b6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.874023;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:ff15;src:url('chunks/assets/font_44288d2529cbde4600fceac6.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_872e8e0d67f1274e723403f6.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_715ec310488119a50e003a6b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.916016;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:ff18;src:url('chunks/assets/font_797fddcd5c3692a0cc8f75a4.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-19.980000px;}
.v2{vertical-align:-2.852110px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.008000px;}
.v3{vertical-align:29.652038px;}
.ls18{letter-spacing:-2.262000px;}
.ls9{letter-spacing:-1.872000px;}
.ls5{letter-spacing:-1.260000px;}
.ls35{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-1.056000px;}
.ls20{letter-spacing:-0.936000px;}
.ls34{letter-spacing:-0.624000px;}
.ls2b{letter-spacing:-0.487698px;}
.ls21{letter-spacing:-0.484321px;}
.ls32{letter-spacing:-0.468000px;}
.ls22{letter-spacing:-0.376694px;}
.ls2c{letter-spacing:-0.359558px;}
.ls2a{letter-spacing:-0.341389px;}
.lsf{letter-spacing:-0.338530px;}
.ls8{letter-spacing:-0.330000px;}
.ls24{letter-spacing:-0.304823px;}
.ls2e{letter-spacing:-0.292619px;}
.ls11{letter-spacing:-0.229716px;}
.ls25{letter-spacing:-0.217731px;}
.ls28{letter-spacing:-0.213667px;}
.ls19{letter-spacing:-0.202521px;}
.ls1d{letter-spacing:-0.198742px;}
.ls2f{letter-spacing:-0.182886px;}
.ls26{letter-spacing:-0.174185px;}
.ls1b{letter-spacing:-0.162017px;}
.ls12{letter-spacing:-0.158685px;}
.ls16{letter-spacing:-0.155724px;}
.ls30{letter-spacing:-0.146309px;}
.ls13{letter-spacing:-0.126948px;}
.ls1c{letter-spacing:-0.121513px;}
.ls27{letter-spacing:-0.087092px;}
.ls36{letter-spacing:-0.078000px;}
.ls3{letter-spacing:-0.066000px;}
.ls15{letter-spacing:-0.063474px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.031737px;}
.ls31{letter-spacing:0.036577px;}
.lsb{letter-spacing:0.078000px;}
.ls17{letter-spacing:0.216022px;}
.ls10{letter-spacing:0.268002px;}
.ls1f{letter-spacing:0.290310px;}
.ls6{letter-spacing:0.312000px;}
.ls2d{letter-spacing:0.314614px;}
.ls1a{letter-spacing:0.324034px;}
.ls23{letter-spacing:0.376694px;}
.lse{letter-spacing:0.390000px;}
.ls29{letter-spacing:0.487698px;}
.ls7{letter-spacing:0.858000px;}
.ls33{letter-spacing:0.936000px;}
.lsa{letter-spacing:1.482000px;}
.ls4{letter-spacing:1.950000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.lsd{letter-spacing:156.823837px;}
.ls1e{letter-spacing:284.242379px;}
.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;}
}
.ws2e{word-spacing:-296.404207px;}
.ws31{word-spacing:-249.640363px;}
.ws4{word-spacing:-45.672000px;}
.ws3{word-spacing:-25.764000px;}
.ws5{word-spacing:-24.480000px;}
.wse{word-spacing:-20.340000px;}
.ws32{word-spacing:-16.431546px;}
.wsf{word-spacing:-16.272000px;}
.ws21{word-spacing:-15.229523px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws4d{word-spacing:-14.586000px;}
.ws12{word-spacing:-13.860000px;}
.ws50{word-spacing:-13.500000px;}
.ws38{word-spacing:-13.265386px;}
.ws7{word-spacing:-12.204000px;}
.ws15{word-spacing:-11.425374px;}
.ws37{word-spacing:-9.797966px;}
.ws35{word-spacing:-9.623710px;}
.ws34{word-spacing:-9.536618px;}
.ws23{word-spacing:-9.477983px;}
.ws24{word-spacing:-8.991932px;}
.ws25{word-spacing:-8.951428px;}
.ws18{word-spacing:-8.920638px;}
.ws10{word-spacing:-8.696028px;}
.ws19{word-spacing:-8.422920px;}
.ws4c{word-spacing:-7.905480px;}
.ws8{word-spacing:-1.950000px;}
.ws11{word-spacing:-1.482000px;}
.ws4f{word-spacing:-0.936000px;}
.wsb{word-spacing:-0.858000px;}
.ws3d{word-spacing:-0.812868px;}
.ws46{word-spacing:-0.634007px;}
.ws43{word-spacing:-0.487698px;}
.ws1b{word-spacing:-0.390000px;}
.wsa{word-spacing:-0.312000px;}
.ws42{word-spacing:-0.267084px;}
.ws2b{word-spacing:-0.248427px;}
.ws20{word-spacing:-0.194655px;}
.ws49{word-spacing:-0.146309px;}
.ws27{word-spacing:-0.108011px;}
.ws13{word-spacing:-0.090000px;}
.ws14{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.ws48{word-spacing:0.044945px;}
.ws6{word-spacing:0.066000px;}
.ws53{word-spacing:0.078000px;}
.ws1f{word-spacing:0.095211px;}
.ws41{word-spacing:0.130639px;}
.ws1e{word-spacing:0.158685px;}
.ws29{word-spacing:0.162017px;}
.ws4b{word-spacing:0.182886px;}
.ws1d{word-spacing:0.190422px;}
.ws44{word-spacing:0.195079px;}
.ws2a{word-spacing:0.202521px;}
.ws3e{word-spacing:0.215254px;}
.ws40{word-spacing:0.217731px;}
.ws4a{word-spacing:0.219463px;}
.ws28{word-spacing:0.243025px;}
.ws3f{word-spacing:0.261277px;}
.wsc{word-spacing:0.330000px;}
.ws3c{word-spacing:0.376694px;}
.ws4e{word-spacing:0.468000px;}
.ws45{word-spacing:0.487698px;}
.ws51{word-spacing:0.624000px;}
.ws1c{word-spacing:0.677059px;}
.ws47{word-spacing:0.719117px;}
.ws3a{word-spacing:0.936000px;}
.ws3b{word-spacing:1.076268px;}
.ws52{word-spacing:1.080000px;}
.ws9{word-spacing:1.260000px;}
.wsd{word-spacing:1.872000px;}
.ws26{word-spacing:2.262000px;}
.ws36{word-spacing:31.773525px;}
.ws22{word-spacing:88.501677px;}
.ws2c{word-spacing:92.311506px;}
.ws33{word-spacing:101.593285px;}
.ws39{word-spacing:107.646700px;}
.ws1a{word-spacing:110.032179px;}
.ws16{word-spacing:133.604938px;}
.ws17{word-spacing:133.634560px;}
.ws2d{word-spacing:258.681014px;}
.ws2f{word-spacing:292.691083px;}
.ws30{word-spacing:305.444858px;}
._f{margin-left:-26.448000px;}
._2e{margin-left:-18.233589px;}
._11{margin-left:-15.490200px;}
._14{margin-left:-12.204000px;}
._12{margin-left:-10.290600px;}
._2f{margin-left:-7.601400px;}
._10{margin-left:-6.527400px;}
._1b{margin-left:-5.521179px;}
._d{margin-left:-4.435200px;}
._15{margin-left:-2.995200px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._13{width:6.072109px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._16{width:9.873600px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._17{width:13.915692px;}
._21{width:15.965400px;}
._18{width:17.153400px;}
._9{width:18.555327px;}
._1a{width:19.998000px;}
._5{width:21.723310px;}
._19{width:22.775070px;}
._30{width:24.178820px;}
._c{width:28.210132px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._27{width:58.523760px;}
._25{width:63.356182px;}
._24{width:67.156015px;}
._26{width:71.935455px;}
._2d{width:84.393980px;}
._28{width:85.469074px;}
._20{width:87.367559px;}
._2a{width:98.710075px;}
._23{width:100.417537px;}
._2c{width:106.523777px;}
._1f{width:107.903189px;}
._1e{width:109.175280px;}
._29{width:112.291757px;}
._22{width:122.495461px;}
._1d{width:125.265939px;}
._1c{width:156.165303px;}
._2b{width:545.833708px;}
._0{width:769.805658px;}
.fca{color:rgb(51,51,153);}
.fc8{color:transparent;}
.fc6{color:rgb(153,51,0);}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc9{color:rgb(255,255,255);}
.fc7{color:rgb(89,89,89);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:31.737000px;}
.fs22{font-size:34.980000px;}
.fsd{font-size:36.000000px;}
.fs20{font-size:36.577200px;}
.fs3{font-size:37.714080px;}
.fs14{font-size:38.286000px;}
.fs12{font-size:38.478000px;}
.fs16{font-size:38.931000px;}
.fs18{font-size:40.504200px;}
.fs6{font-size:41.485488px;}
.fs13{font-size:42.316200px;}
.fs4{font-size:42.428340px;}
.fs1c{font-size:43.546200px;}
.fs1f{font-size:44.944800px;}
.fs2{font-size:47.142600px;}
.fs1e{font-size:48.769800px;}
.fs19{font-size:49.685400px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs1d{font-size:53.416800px;}
.fs1a{font-size:53.813400px;}
.fsf{font-size:54.000000px;}
.fs17{font-size:54.005400px;}
.fs1b{font-size:58.062000px;}
.fs21{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs11{font-size:90.000000px;}
.fsb{font-size:114.000000px;}
.fse{font-size:126.000000px;}
.fs7{font-size:252.000000px;}
.fs9{font-size:288.000000px;}
.fs8{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y16e{bottom:1.195200px;}
.yc5{bottom:1.762500px;}
.yca{bottom:1.764622px;}
.y17d{bottom:2.152852px;}
.y175{bottom:2.153002px;}
.y171{bottom:2.153602px;}
.y179{bottom:2.153752px;}
.y18b{bottom:2.345400px;}
.y10a{bottom:2.430589px;}
.yec{bottom:2.518200px;}
.yee{bottom:2.518500px;}
.y115{bottom:2.699550px;}
.y105{bottom:2.699700px;}
.y112{bottom:2.699850px;}
.y110{bottom:2.700000px;}
.y10e{bottom:2.700150px;}
.y10c{bottom:2.700450px;}
.y117{bottom:2.700750px;}
.y107{bottom:2.701050px;}
.y152{bottom:3.539850px;}
.ycf{bottom:9.319050px;}
.yd5{bottom:9.319200px;}
.ydb{bottom:9.319500px;}
.ycc{bottom:9.319800px;}
.yd2{bottom:9.319950px;}
.yd8{bottom:9.320100px;}
.yde{bottom:9.320250px;}
.ye3{bottom:9.320400px;}
.yc9{bottom:14.861486px;}
.y17c{bottom:16.973400px;}
.y174{bottom:16.973550px;}
.y170{bottom:16.974150px;}
.y178{bottom:16.974300px;}
.y109{bottom:19.037250px;}
.y148{bottom:19.825350px;}
.y14e{bottom:19.825500px;}
.y141{bottom:19.825950px;}
.y14b{bottom:19.826100px;}
.y13e{bottom:19.826550px;}
.yc6{bottom:27.958350px;}
.y16c{bottom:31.317900px;}
.y32{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y121{bottom:55.675800px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y31{bottom:102.047250px;}
.yb8{bottom:102.056400px;}
.y79{bottom:102.537450px;}
.yc3{bottom:103.288500px;}
.y1ae{bottom:103.385850px;}
.y66{bottom:103.430100px;}
.y103{bottom:103.437150px;}
.y9c{bottom:104.540100px;}
.y18e{bottom:104.565150px;}
.y1ea{bottom:105.283950px;}
.y41{bottom:107.972850px;}
.y138{bottom:108.634650px;}
.yb7{bottom:118.553400px;}
.y1e9{bottom:121.483950px;}
.y78{bottom:123.244950px;}
.y1b{bottom:123.419327px;}
.yc2{bottom:123.831000px;}
.y1ad{bottom:123.928350px;}
.y65{bottom:123.972600px;}
.y102{bottom:124.144650px;}
.y40{bottom:124.172850px;}
.y9b{bottom:125.247600px;}
.y18d{bottom:125.272650px;}
.y137{bottom:129.342150px;}
.yb6{bottom:135.050400px;}
.y21{bottom:136.778700px;}
.y1e8{bottom:137.683950px;}
.y28{bottom:142.439400px;}
.y77{bottom:143.952450px;}
.y1ac{bottom:144.470850px;}
.y64{bottom:144.515100px;}
.y3f{bottom:144.625350px;}
.y101{bottom:144.852150px;}
.y9a{bottom:145.955100px;}
.y181{bottom:149.417700px;}
.y136{bottom:150.049650px;}
.yb5{bottom:151.547400px;}
.y1e7{bottom:153.883950px;}
.y3e{bottom:160.825350px;}
.yc1{bottom:162.239250px;}
.y76{bottom:164.659950px;}
.y1ab{bottom:165.013350px;}
.y63{bottom:165.057600px;}
.y100{bottom:165.559650px;}
.y99{bottom:166.662600px;}
.y1e6{bottom:170.083950px;}
.y135{bottom:170.757150px;}
.y18c{bottom:171.484500px;}
.y3d{bottom:177.025350px;}
.y27{bottom:184.431900px;}
.y75{bottom:185.367450px;}
.y1aa{bottom:185.555850px;}
.y62{bottom:185.600100px;}
.yff{bottom:186.267150px;}
.y1e5{bottom:186.283950px;}
.y98{bottom:187.370100px;}
.y134{bottom:191.464650px;}
.y1a{bottom:192.612878px;}
.y3c{bottom:193.225350px;}
.y168{bottom:197.380500px;}
.yb4{bottom:202.303650px;}
.y1e4{bottom:202.483950px;}
.y19{bottom:202.630680px;}
.y26{bottom:205.436400px;}
.y1a9{bottom:206.098350px;}
.y61{bottom:206.142600px;}
.yfe{bottom:206.974650px;}
.y97{bottom:208.077600px;}
.y3b{bottom:209.425350px;}
.y133{bottom:212.172150px;}
.y18{bottom:212.648483px;}
.y1e3{bottom:218.683950px;}
.y17{bottom:222.678071px;}
.yb3{bottom:223.011150px;}
.yc0{bottom:223.299900px;}
.y74{bottom:223.925850px;}
.y3a{bottom:225.625350px;}
.y25{bottom:226.440900px;}
.y1a8{bottom:226.640850px;}
.y60{bottom:226.685100px;}
.yfd{bottom:227.682150px;}
.y96{bottom:228.785100px;}
.y124{bottom:231.697050px;}
.y16{bottom:232.695874px;}
.y132{bottom:232.879650px;}
.y1e2{bottom:234.883950px;}
.y15b{bottom:236.695500px;}
.y39{bottom:241.825350px;}
.y15{bottom:242.725462px;}
.y18a{bottom:243.692935px;}
.yb2{bottom:243.718650px;}
.ybf{bottom:243.842400px;}
.y1a7{bottom:247.183350px;}
.y5f{bottom:247.227600px;}
.yfc{bottom:248.389650px;}
.y95{bottom:249.492600px;}
.y73{bottom:250.925850px;}
.y1e1{bottom:251.083950px;}
.y14{bottom:252.743264px;}
.y131{bottom:253.587150px;}
.y189{bottom:254.858125px;}
.y166{bottom:256.250400px;}
.y38{bottom:258.025350px;}
.y13{bottom:262.761067px;}
.ybe{bottom:264.384900px;}
.yb1{bottom:264.426150px;}
.y1e0{bottom:267.283950px;}
.y1a6{bottom:267.725850px;}
.y5e{bottom:267.770100px;}
.y94{bottom:270.200100px;}
.y182{bottom:272.423700px;}
.y12{bottom:272.790655px;}
.y130{bottom:274.294650px;}
.y11{bottom:282.808457px;}
.y1df{bottom:283.483950px;}
.y30{bottom:284.434200px;}
.ybd{bottom:284.927400px;}
.yb0{bottom:285.133650px;}
.y1a5{bottom:288.268350px;}
.y5d{bottom:288.312600px;}
.y93{bottom:290.907600px;}
.y10{bottom:292.838046px;}
.yfb{bottom:294.601350px;}
.y12f{bottom:295.002150px;}
.y1de{bottom:299.683950px;}
.yf{bottom:302.855848px;}
.y188{bottom:303.304626px;}
.y2f{bottom:305.438700px;}
.ybc{bottom:305.469900px;}
.yaf{bottom:305.841150px;}
.yfa{bottom:306.506400px;}
.y14f{bottom:308.400300px;}
.y1a4{bottom:308.810850px;}
.y5c{bottom:308.855100px;}
.y1ba{bottom:309.232350px;}
.y92{bottom:311.615100px;}
.ye{bottom:312.873651px;}
.y72{bottom:313.852350px;}
.y187{bottom:314.469817px;}
.y12e{bottom:315.709650px;}
.y1dd{bottom:315.883950px;}
.yc7{bottom:320.497500px;}
.ybb{bottom:326.012400px;}
.y2e{bottom:326.443200px;}
.yae{bottom:326.548650px;}
.y1a3{bottom:329.353350px;}
.y5b{bottom:329.397600px;}
.y1b9{bottom:329.939850px;}
.yd{bottom:330.893909px;}
.y1dc{bottom:332.083950px;}
.y91{bottom:332.322600px;}
.y17e{bottom:334.155600px;}
.y71{bottom:334.394850px;}
.yf9{bottom:335.638499px;}
.y12d{bottom:336.417150px;}
.y14c{bottom:344.512350px;}
.yba{bottom:346.554900px;}
.yad{bottom:347.256150px;}
.y2d{bottom:347.447700px;}
.y1db{bottom:348.283950px;}
.y1a2{bottom:349.895850px;}
.y5a{bottom:349.940100px;}
.y1b8{bottom:350.647350px;}
.y90{bottom:353.030100px;}
.y70{bottom:354.937350px;}
.y12c{bottom:357.124650px;}
.yea{bottom:361.477950px;}
.y186{bottom:362.916318px;}
.y17a{bottom:363.561150px;}
.y1da{bottom:364.483950px;}
.yf8{bottom:366.740759px;}
.yac{bottom:367.963650px;}
.y2c{bottom:368.452200px;}
.y1a1{bottom:370.438350px;}
.y59{bottom:370.482600px;}
.y1b7{bottom:371.354850px;}
.y8f{bottom:373.737600px;}
.y185{bottom:374.081508px;}
.y6f{bottom:375.479850px;}
.yb9{bottom:376.034100px;}
.y12b{bottom:377.832150px;}
.y149{bottom:380.623950px;}
.y1d9{bottom:380.683950px;}
.ye8{bottom:382.636200px;}
.y2b{bottom:389.456700px;}
.y1a0{bottom:390.980850px;}
.y58{bottom:391.025100px;}
.y1b6{bottom:392.062350px;}
.y176{bottom:392.966550px;}
.y8e{bottom:394.445100px;}
.y6e{bottom:396.022350px;}
.y1d8{bottom:396.883950px;}
.yab{bottom:397.592700px;}
.yf7{bottom:397.843019px;}
.y12a{bottom:398.539650px;}
.ye6{bottom:403.794450px;}
.y57{bottom:411.567600px;}
.y1b5{bottom:412.769850px;}
.y1d7{bottom:413.083950px;}
.y8d{bottom:415.152600px;}
.y6d{bottom:416.564850px;}
.y146{bottom:416.735850px;}
.y129{bottom:419.247150px;}
.y172{bottom:422.371800px;}
.y184{bottom:422.528010px;}
.ye4{bottom:424.952400px;}
.yf6{bottom:428.945279px;}
.y1d6{bottom:429.283950px;}
.y19f{bottom:429.389250px;}
.y1b4{bottom:433.477350px;}
.y183{bottom:433.693200px;}
.y8c{bottom:435.860100px;}
.y6c{bottom:437.107350px;}
.yaa{bottom:437.920950px;}
.y128{bottom:439.954650px;}
.yc{bottom:440.641882px;}
.y1d5{bottom:445.483950px;}
.ye1{bottom:446.110650px;}
.y56{bottom:449.975850px;}
.y16a{bottom:451.302524px;}
.y144{bottom:452.847450px;}
.y1b3{bottom:454.184850px;}
.y8b{bottom:456.567600px;}
.y6b{bottom:457.649850px;}
.ya9{bottom:458.628450px;}
.y16d{bottom:458.710050px;}
.y203{bottom:459.573450px;}
.yf5{bottom:460.047539px;}
.y127{bottom:460.662150px;}
.y1d4{bottom:461.683950px;}
.y169{bottom:466.360200px;}
.ydf{bottom:467.268600px;}
.y1b2{bottom:474.892350px;}
.y55{bottom:476.975850px;}
.y2a{bottom:477.056700px;}
.y1d3{bottom:477.883950px;}
.y202{bottom:478.054950px;}
.y6a{bottom:478.192350px;}
.ya8{bottom:479.335950px;}
.y126{bottom:481.369650px;}
.yf4{bottom:486.301972px;}
.ydc{bottom:488.427000px;}
.y142{bottom:488.958750px;}
.y19e{bottom:490.404900px;}
.y1d2{bottom:494.083950px;}
.y201{bottom:494.403450px;}
.y8a{bottom:495.125850px;}
.y1b1{bottom:495.599850px;}
.yf3{bottom:495.989692px;}
.y69{bottom:498.734850px;}
.ya7{bottom:500.043450px;}
.y17f{bottom:503.898889px;}
.y19d{bottom:509.454900px;}
.yd9{bottom:509.585250px;}
.y1d1{bottom:510.283950px;}
.y200{bottom:510.751950px;}
.y29{bottom:511.256700px;}
.y1b0{bottom:516.307350px;}
.y68{bottom:519.277350px;}
.ya6{bottom:520.743450px;}
.y180{bottom:521.256000px;}
.y17b{bottom:522.213000px;}
.yf2{bottom:522.244125px;}
.y13f{bottom:525.070650px;}
.y1d0{bottom:526.483950px;}
.y1ff{bottom:527.100450px;}
.y167{bottom:527.184750px;}
.y19c{bottom:528.504900px;}
.yd6{bottom:530.743500px;}
.y125{bottom:531.833400px;}
.y1af{bottom:537.014850px;}
.y54{bottom:539.819850px;}
.ya5{bottom:541.450950px;}
.y1cf{bottom:542.683950px;}
.y1fe{bottom:543.448950px;}
.y19b{bottom:547.554900px;}
.y177{bottom:551.617500px;}
.yd3{bottom:551.901600px;}
.y139{bottom:553.081500px;}
.yf1{bottom:553.346385px;}
.y89{bottom:557.722350px;}
.y120{bottom:557.730000px;}
.y1ce{bottom:558.883950px;}
.y1fd{bottom:559.797450px;}
.y53{bottom:560.362350px;}
.y13c{bottom:561.167392px;}
.y19a{bottom:566.604900px;}
.y15a{bottom:567.060100px;}
.y165{bottom:567.647713px;}
.ya4{bottom:571.080150px;}
.yd0{bottom:573.059700px;}
.y123{bottom:574.319104px;}
.y1cd{bottom:575.083950px;}
.y1fc{bottom:576.145950px;}
.y88{bottom:578.429850px;}
.y52{bottom:580.904850px;}
.y173{bottom:581.023500px;}
.yf0{bottom:584.448645px;}
.y199{bottom:585.654900px;}
.y67{bottom:589.704300px;}
.y1cc{bottom:591.283950px;}
.ycd{bottom:594.217950px;}
.y159{bottom:594.788143px;}
.y164{bottom:595.375756px;}
.y13b{bottom:597.289637px;}
.y87{bottom:599.137350px;}
.y122{bottom:601.041750px;}
.y51{bottom:601.447350px;}
.yb{bottom:602.824212px;}
.y198{bottom:604.704900px;}
.y1fb{bottom:605.251950px;}
.y1cb{bottom:607.483950px;}
.yef{bottom:610.314300px;}
.y16f{bottom:610.428000px;}
.ya3{bottom:611.408400px;}
.y86{bottom:619.844850px;}
.y50{bottom:621.989850px;}
.y158{bottom:622.516186px;}
.y163{bottom:623.103799px;}
.ya{bottom:623.578742px;}
.y1ca{bottom:623.683950px;}
.y1fa{bottom:623.733450px;}
.yc8{bottom:624.443850px;}
.ya2{bottom:632.115900px;}
.y197{bottom:632.669100px;}
.y9{bottom:636.931883px;}
.y13a{bottom:637.299900px;}
.y150{bottom:638.007375px;}
.y16b{bottom:639.834000px;}
.y1c9{bottom:639.883950px;}
.y1f9{bottom:640.081950px;}
.y11f{bottom:640.128266px;}
.y85{bottom:640.552350px;}
.y4f{bottom:642.532350px;}
.y162{bottom:644.191047px;}
.y157{bottom:650.244229px;}
.ya1{bottom:652.823400px;}
.y196{bottom:653.376600px;}
.y1c8{bottom:656.083950px;}
.y1f8{bottom:656.430450px;}
.y24{bottom:657.176850px;}
.y161{bottom:657.483524px;}
.y84{bottom:661.259850px;}
.y8{bottom:662.954598px;}
.y4e{bottom:663.074850px;}
.y11e{bottom:666.850912px;}
.y160{bottom:671.919089px;}
.y1c7{bottom:672.283950px;}
.y1f7{bottom:672.778950px;}
.ya0{bottom:673.530900px;}
.y195{bottom:674.084100px;}
.ye9{bottom:676.182000px;}
.y7{bottom:676.319525px;}
.y156{bottom:677.972271px;}
.y11d{bottom:679.214819px;}
.y83{bottom:681.967350px;}
.y4d{bottom:683.617350px;}
.y15f{bottom:685.211567px;}
.y1c6{bottom:688.483950px;}
.y37{bottom:688.792350px;}
.y1f6{bottom:689.127450px;}
.y6{bottom:689.684452px;}
.y9f{bottom:694.238400px;}
.ye7{bottom:697.341000px;}
.y11c{bottom:699.760575px;}
.y82{bottom:702.674850px;}
.y5{bottom:703.049379px;}
.y194{bottom:703.713300px;}
.y4c{bottom:704.159850px;}
.y1c5{bottom:704.683950px;}
.y1f5{bottom:705.475950px;}
.y155{bottom:705.700314px;}
.y15e{bottom:706.298814px;}
.y11b{bottom:712.124482px;}
.ye5{bottom:718.498500px;}
.y1c4{bottom:720.883950px;}
.y1f4{bottom:721.824450px;}
.y193{bottom:722.763300px;}
.y23{bottom:723.200850px;}
.y81{bottom:723.382350px;}
.y9e{bottom:723.867450px;}
.y4b{bottom:724.702350px;}
.y36{bottom:726.592350px;}
.y11a{bottom:732.670237px;}
.y154{bottom:733.428357px;}
.y15d{bottom:734.026857px;}
.y1c3{bottom:737.083950px;}
.ye2{bottom:739.656000px;}
.y192{bottom:741.813300px;}
.y80{bottom:744.089850px;}
.y119{bottom:745.034144px;}
.y4a{bottom:745.244850px;}
.y1f3{bottom:750.930450px;}
.y1c2{bottom:753.283950px;}
.ye0{bottom:760.815000px;}
.y191{bottom:760.863300px;}
.y153{bottom:761.156400px;}
.y15c{bottom:761.754900px;}
.y9d{bottom:764.225850px;}
.y7f{bottom:764.797350px;}
.y4{bottom:765.336540px;}
.y49{bottom:765.787350px;}
.y118{bottom:768.475950px;}
.y1f2{bottom:769.411950px;}
.y1c1{bottom:769.483950px;}
.y190{bottom:779.913300px;}
.ydd{bottom:781.972500px;}
.y3{bottom:785.148217px;}
.y7e{bottom:785.504850px;}
.y1c0{bottom:785.683950px;}
.y1f1{bottom:785.760450px;}
.y48{bottom:786.329850px;}
.y18f{bottom:798.963300px;}
.y1bf{bottom:801.883950px;}
.y1f0{bottom:802.108950px;}
.y35{bottom:802.192350px;}
.yda{bottom:803.131500px;}
.y7d{bottom:806.212350px;}
.y47{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y22{bottom:811.700850px;}
.y1be{bottom:818.083950px;}
.y1ef{bottom:818.457450px;}
.yd7{bottom:824.289000px;}
.y7c{bottom:826.919850px;}
.y46{bottom:827.414850px;}
.y1bd{bottom:834.283950px;}
.y1ee{bottom:834.805950px;}
.y34{bottom:839.992350px;}
.yd4{bottom:845.448000px;}
.y7b{bottom:847.627350px;}
.y45{bottom:847.957350px;}
.y14d{bottom:849.445500px;}
.y1bc{bottom:850.483950px;}
.y1ed{bottom:851.154450px;}
.y116{bottom:855.693000px;}
.yd1{bottom:866.605500px;}
.y1ec{bottom:867.502950px;}
.y7a{bottom:868.334850px;}
.y44{bottom:868.499850px;}
.y114{bottom:872.031000px;}
.y33{bottom:877.792350px;}
.y1eb{bottom:883.851450px;}
.y1bb{bottom:884.542200px;}
.y14a{bottom:885.556500px;}
.yce{bottom:887.764500px;}
.y113{bottom:888.367500px;}
.y43{bottom:889.042350px;}
.y111{bottom:904.704000px;}
.ycb{bottom:908.922000px;}
.y10f{bottom:921.040500px;}
.y147{bottom:921.669000px;}
.yc4{bottom:930.081000px;}
.y10d{bottom:937.377000px;}
.y42{bottom:952.015800px;}
.y10b{bottom:953.713500px;}
.y145{bottom:957.780000px;}
.yed{bottom:968.115000px;}
.y108{bottom:970.050000px;}
.yeb{bottom:981.465000px;}
.y143{bottom:993.891000px;}
.y106{bottom:1002.723000px;}
.y104{bottom:1019.061000px;}
.y140{bottom:1030.003500px;}
.y13d{bottom:1066.114500px;}
.y151{bottom:1100.811000px;}
.h2f{height:-346.803000px;}
.h31{height:-333.453000px;}
.h4c{height:-300.547500px;}
.h20{height:-295.419000px;}
.h23{height:-274.260000px;}
.h44{height:-265.851000px;}
.h24{height:-253.102500px;}
.h25{height:-231.943500px;}
.h46{height:-229.740000px;}
.h34{height:-218.797500px;}
.h26{height:-210.786000px;}
.h36{height:-202.459500px;}
.h47{height:-193.627500px;}
.h27{height:-189.627000px;}
.h37{height:-169.786500px;}
.h28{height:-168.469500px;}
.h52{height:-160.027500px;}
.h48{height:-157.516500px;}
.h38{height:-153.450000px;}
.h29{height:-147.310500px;}
.h39{height:-137.113500px;}
.h55{height:-130.621500px;}
.h2a{height:-126.153000px;}
.h49{height:-121.405500px;}
.h3a{height:-120.777000px;}
.h2b{height:-104.994000px;}
.h3b{height:-104.440500px;}
.h57{height:-101.217000px;}
.h3c{height:-88.104000px;}
.h4a{height:-85.293000px;}
.h2c{height:-83.836500px;}
.h58{height:-71.811000px;}
.h3d{height:-71.767500px;}
.h2d{height:-62.679000px;}
.h3e{height:-55.429500px;}
.h4b{height:-49.182000px;}
.h59{height:-42.406500px;}
.h2e{height:-41.520000px;}
.h5a{height:-41.449500px;}
.h32{height:23.415335px;}
.h5b{height:26.986401px;}
.h7{height:27.946133px;}
.h30{height:28.247142px;}
.h15{height:28.546875px;}
.h33{height:28.723018px;}
.h3f{height:29.883714px;}
.h4d{height:30.299480px;}
.h21{height:30.807351px;}
.hb{height:31.439400px;}
.h8{height:31.524257px;}
.h4e{height:32.128080px;}
.h56{height:33.159957px;}
.h6{height:34.932667px;}
.h9{height:35.026952px;}
.h51{height:35.505748px;}
.h41{height:36.657539px;}
.h5{height:38.425933px;}
.ha{height:39.124587px;}
.h35{height:39.317408px;}
.h4f{height:39.410539px;}
.h43{height:39.703148px;}
.h45{height:42.270724px;}
.h19{height:42.820312px;}
.h18{height:43.664062px;}
.h5c{height:47.578125px;}
.h11{height:48.694336px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h12{height:52.335938px;}
.h1e{height:52.519852px;}
.h14{height:54.272461px;}
.h1a{height:57.093750px;}
.h1d{height:58.218750px;}
.h1f{height:62.622070px;}
.h1c{height:63.070312px;}
.h54{height:65.157786px;}
.h1b{height:72.773438px;}
.h16{height:87.670898px;}
.h13{height:90.398438px;}
.h53{height:95.736451px;}
.h17{height:99.914062px;}
.he{height:172.265625px;}
.h10{height:212.484375px;}
.h40{height:242.533500px;}
.h42{height:247.182000px;}
.h50{height:282.426000px;}
.h22{height:314.164500px;}
.hf{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.hd{height:999.000000px;}
.hc{height:999.213000px;}
.w8{width:-446.008500px;}
.wc{width:-388.075500px;}
.w7{width:-332.158500px;}
.wb{width:-274.225500px;}
.w6{width:-218.307000px;}
.we{width:-215.364000px;}
.wa{width:-160.374000px;}
.w5{width:-104.455500px;}
.w9{width:-46.522500px;}
.w10{width:-25.465500px;}
.wd{width:46.654500px;}
.wf{width:349.392000px;}
.w4{width:463.464000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x66{left:-88.340400px;}
.x28{left:-46.422900px;}
.x48{left:-37.570650px;}
.x3c{left:-26.749050px;}
.x63{left:-23.074950px;}
.x0{left:0.000000px;}
.x3b{left:1.231200px;}
.x1d{left:5.541600px;}
.x5a{left:11.475600px;}
.x2d{left:18.387600px;}
.x1f{left:19.647150px;}
.x5b{left:25.819500px;}
.x2f{left:31.233300px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x13{left:46.771650px;}
.x19{left:60.271650px;}
.x18{left:76.535400px;}
.x10{left:78.707400px;}
.x8{left:80.205750px;}
.x11{left:86.066400px;}
.x6b{left:87.256050px;}
.x2c{left:90.678000px;}
.x3f{left:93.927614px;}
.x42{left:97.623623px;}
.x31{left:98.737500px;}
.x44{left:107.992805px;}
.x3e{left:112.154504px;}
.x12{left:114.182400px;}
.x2{left:116.925434px;}
.x41{left:119.009840px;}
.x40{left:122.098285px;}
.x9{left:135.959250px;}
.x15{left:161.574750px;}
.x68{left:163.677234px;}
.x53{left:165.616412px;}
.xe{left:167.460900px;}
.x37{left:170.284176px;}
.x36{left:173.449942px;}
.x3a{left:178.337440px;}
.x43{left:180.272550px;}
.x1a{left:182.826750px;}
.x69{left:185.568688px;}
.x7{left:190.392750px;}
.x39{left:192.325522px;}
.x6a{left:201.406616px;}
.x38{left:202.870141px;}
.x51{left:207.184350px;}
.xb{left:209.128800px;}
.xc{left:215.769300px;}
.x67{left:219.892650px;}
.xf{left:227.999400px;}
.x54{left:232.361850px;}
.x57{left:235.246786px;}
.x56{left:238.218814px;}
.x34{left:245.524669px;}
.x55{left:249.464620px;}
.x35{left:276.769745px;}
.xa{left:281.522250px;}
.x52{left:302.699850px;}
.xd{left:307.133400px;}
.x3d{left:309.328950px;}
.x4{left:344.105623px;}
.x64{left:360.150750px;}
.x58{left:362.780400px;}
.x33{left:394.093500px;}
.x50{left:397.457712px;}
.x4f{left:405.502872px;}
.x14{left:407.083800px;}
.x4e{left:421.604079px;}
.x65{left:434.524695px;}
.x4d{left:437.705287px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x4c{left:485.998023px;}
.x5c{left:491.637900px;}
.x5d{left:494.271469px;}
.x4b{left:502.099230px;}
.x1b{left:522.580800px;}
.x4a{left:526.245598px;}
.x2a{left:533.663700px;}
.x29{left:536.434350px;}
.x1e{left:572.957400px;}
.x49{left:577.074900px;}
.x59{left:578.385000px;}
.x5e{left:624.559990px;}
.x16{left:634.962450px;}
.x20{left:636.431850px;}
.x17{left:641.303100px;}
.x2b{left:671.562000px;}
.x60{left:684.326700px;}
.x22{left:686.808600px;}
.x1c{left:729.495000px;}
.x23{left:750.283050px;}
.x61{left:753.656250px;}
.x62{left:756.289819px;}
.x46{left:759.371822px;}
.x47{left:762.533359px;}
.x2e{left:785.413500px;}
.x5f{left:840.403500px;}
.x21{left:843.346500px;}
.x25{left:864.134250px;}
.x30{left:899.265000px;}
.x27{left:914.510850px;}
.x24{left:957.198000px;}
.x32{left:1013.115000px;}
.x26{left:1071.048000px;}
.x45{left:1212.884250px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v2{vertical-align:-2.535209pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.562667pt;}
.v3{vertical-align:26.357367pt;}
.ls18{letter-spacing:-2.010667pt;}
.ls9{letter-spacing:-1.664000pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls35{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.938667pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls34{letter-spacing:-0.554667pt;}
.ls2b{letter-spacing:-0.433509pt;}
.ls21{letter-spacing:-0.430507pt;}
.ls32{letter-spacing:-0.416000pt;}
.ls22{letter-spacing:-0.334839pt;}
.ls2c{letter-spacing:-0.319607pt;}
.ls2a{letter-spacing:-0.303457pt;}
.lsf{letter-spacing:-0.300915pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls24{letter-spacing:-0.270954pt;}
.ls2e{letter-spacing:-0.260106pt;}
.ls11{letter-spacing:-0.204192pt;}
.ls25{letter-spacing:-0.193539pt;}
.ls28{letter-spacing:-0.189926pt;}
.ls19{letter-spacing:-0.180019pt;}
.ls1d{letter-spacing:-0.176659pt;}
.ls2f{letter-spacing:-0.162565pt;}
.ls26{letter-spacing:-0.154831pt;}
.ls1b{letter-spacing:-0.144015pt;}
.ls12{letter-spacing:-0.141053pt;}
.ls16{letter-spacing:-0.138421pt;}
.ls30{letter-spacing:-0.130052pt;}
.ls13{letter-spacing:-0.112843pt;}
.ls1c{letter-spacing:-0.108011pt;}
.ls27{letter-spacing:-0.077415pt;}
.ls36{letter-spacing:-0.069333pt;}
.ls3{letter-spacing:-0.058667pt;}
.ls15{letter-spacing:-0.056421pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.028211pt;}
.ls31{letter-spacing:0.032513pt;}
.lsb{letter-spacing:0.069333pt;}
.ls17{letter-spacing:0.192019pt;}
.ls10{letter-spacing:0.238224pt;}
.ls1f{letter-spacing:0.258053pt;}
.ls6{letter-spacing:0.277333pt;}
.ls2d{letter-spacing:0.279657pt;}
.ls1a{letter-spacing:0.288030pt;}
.ls23{letter-spacing:0.334839pt;}
.lse{letter-spacing:0.346667pt;}
.ls29{letter-spacing:0.433509pt;}
.ls7{letter-spacing:0.762667pt;}
.ls33{letter-spacing:0.832000pt;}
.lsa{letter-spacing:1.317333pt;}
.ls4{letter-spacing:1.733333pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.lsd{letter-spacing:139.398966pt;}
.ls1e{letter-spacing:252.659892pt;}
.ws2e{word-spacing:-263.470406pt;}
.ws31{word-spacing:-221.902545pt;}
.ws4{word-spacing:-40.597333pt;}
.ws3{word-spacing:-22.901333pt;}
.ws5{word-spacing:-21.760000pt;}
.wse{word-spacing:-18.080000pt;}
.ws32{word-spacing:-14.605819pt;}
.wsf{word-spacing:-14.464000pt;}
.ws21{word-spacing:-13.537354pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws4d{word-spacing:-12.965333pt;}
.ws12{word-spacing:-12.320000pt;}
.ws50{word-spacing:-12.000000pt;}
.ws38{word-spacing:-11.791454pt;}
.ws7{word-spacing:-10.848000pt;}
.ws15{word-spacing:-10.155888pt;}
.ws37{word-spacing:-8.709303pt;}
.ws35{word-spacing:-8.554409pt;}
.ws34{word-spacing:-8.476994pt;}
.ws23{word-spacing:-8.424874pt;}
.ws24{word-spacing:-7.992829pt;}
.ws25{word-spacing:-7.956825pt;}
.ws18{word-spacing:-7.929456pt;}
.ws10{word-spacing:-7.729803pt;}
.ws19{word-spacing:-7.487040pt;}
.ws4c{word-spacing:-7.027093pt;}
.ws8{word-spacing:-1.733333pt;}
.ws11{word-spacing:-1.317333pt;}
.ws4f{word-spacing:-0.832000pt;}
.wsb{word-spacing:-0.762667pt;}
.ws3d{word-spacing:-0.722549pt;}
.ws46{word-spacing:-0.563562pt;}
.ws43{word-spacing:-0.433509pt;}
.ws1b{word-spacing:-0.346667pt;}
.wsa{word-spacing:-0.277333pt;}
.ws42{word-spacing:-0.237408pt;}
.ws2b{word-spacing:-0.220824pt;}
.ws20{word-spacing:-0.173027pt;}
.ws49{word-spacing:-0.130053pt;}
.ws27{word-spacing:-0.096010pt;}
.ws13{word-spacing:-0.080000pt;}
.ws14{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.ws48{word-spacing:0.039951pt;}
.ws6{word-spacing:0.058667pt;}
.ws53{word-spacing:0.069333pt;}
.ws1f{word-spacing:0.084632pt;}
.ws41{word-spacing:0.116123pt;}
.ws1e{word-spacing:0.141053pt;}
.ws29{word-spacing:0.144015pt;}
.ws4b{word-spacing:0.162565pt;}
.ws1d{word-spacing:0.169264pt;}
.ws44{word-spacing:0.173404pt;}
.ws2a{word-spacing:0.180019pt;}
.ws3e{word-spacing:0.191337pt;}
.ws40{word-spacing:0.193539pt;}
.ws4a{word-spacing:0.195078pt;}
.ws28{word-spacing:0.216022pt;}
.ws3f{word-spacing:0.232246pt;}
.wsc{word-spacing:0.293333pt;}
.ws3c{word-spacing:0.334839pt;}
.ws4e{word-spacing:0.416000pt;}
.ws45{word-spacing:0.433509pt;}
.ws51{word-spacing:0.554667pt;}
.ws1c{word-spacing:0.601830pt;}
.ws47{word-spacing:0.639215pt;}
.ws3a{word-spacing:0.832000pt;}
.ws3b{word-spacing:0.956683pt;}
.ws52{word-spacing:0.960000pt;}
.ws9{word-spacing:1.120000pt;}
.wsd{word-spacing:1.664000pt;}
.ws26{word-spacing:2.010667pt;}
.ws36{word-spacing:28.243133pt;}
.ws22{word-spacing:78.668157pt;}
.ws2c{word-spacing:82.054672pt;}
.ws33{word-spacing:90.305142pt;}
.ws39{word-spacing:95.685955pt;}
.ws1a{word-spacing:97.806381pt;}
.ws16{word-spacing:118.759945pt;}
.ws17{word-spacing:118.786275pt;}
.ws2d{word-spacing:229.938679pt;}
.ws2f{word-spacing:260.169851pt;}
.ws30{word-spacing:271.506541pt;}
._f{margin-left:-23.509333pt;}
._2e{margin-left:-16.207635pt;}
._11{margin-left:-13.769067pt;}
._14{margin-left:-10.848000pt;}
._12{margin-left:-9.147200pt;}
._2f{margin-left:-6.756800pt;}
._10{margin-left:-5.802133pt;}
._1b{margin-left:-4.907715pt;}
._d{margin-left:-3.942400pt;}
._15{margin-left:-2.662400pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._13{width:5.397431pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._16{width:8.776533pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._17{width:12.369504pt;}
._21{width:14.191467pt;}
._18{width:15.247467pt;}
._9{width:16.493624pt;}
._1a{width:17.776000pt;}
._5{width:19.309609pt;}
._19{width:20.244506pt;}
._30{width:21.492285pt;}
._c{width:25.075673pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._27{width:52.021120pt;}
._25{width:56.316606pt;}
._24{width:59.694235pt;}
._26{width:63.942627pt;}
._2d{width:75.016871pt;}
._28{width:75.972511pt;}
._20{width:77.660053pt;}
._2a{width:87.742289pt;}
._23{width:89.260033pt;}
._2c{width:94.687802pt;}
._1f{width:95.913946pt;}
._1e{width:97.044693pt;}
._29{width:99.814895pt;}
._22{width:108.884854pt;}
._1d{width:111.347501pt;}
._1c{width:138.813603pt;}
._2b{width:485.185518pt;}
._0{width:684.271696pt;}
.fs15{font-size:28.210667pt;}
.fs22{font-size:31.093333pt;}
.fsd{font-size:32.000000pt;}
.fs20{font-size:32.513067pt;}
.fs3{font-size:33.523627pt;}
.fs14{font-size:34.032000pt;}
.fs12{font-size:34.202667pt;}
.fs16{font-size:34.605333pt;}
.fs18{font-size:36.003733pt;}
.fs6{font-size:36.875989pt;}
.fs13{font-size:37.614400pt;}
.fs4{font-size:37.714080pt;}
.fs1c{font-size:38.707733pt;}
.fs1f{font-size:39.950933pt;}
.fs2{font-size:41.904533pt;}
.fs1e{font-size:43.350933pt;}
.fs19{font-size:44.164800pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs1d{font-size:47.481600pt;}
.fs1a{font-size:47.834133pt;}
.fsf{font-size:48.000000pt;}
.fs17{font-size:48.004800pt;}
.fs1b{font-size:51.610667pt;}
.fs21{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs11{font-size:80.000000pt;}
.fsb{font-size:101.333333pt;}
.fse{font-size:112.000000pt;}
.fs7{font-size:224.000000pt;}
.fs9{font-size:256.000000pt;}
.fs8{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y16e{bottom:1.062400pt;}
.yc5{bottom:1.566667pt;}
.yca{bottom:1.568553pt;}
.y17d{bottom:1.913646pt;}
.y175{bottom:1.913780pt;}
.y171{bottom:1.914313pt;}
.y179{bottom:1.914446pt;}
.y18b{bottom:2.084800pt;}
.y10a{bottom:2.160524pt;}
.yec{bottom:2.238400pt;}
.yee{bottom:2.238667pt;}
.y115{bottom:2.399600pt;}
.y105{bottom:2.399733pt;}
.y112{bottom:2.399867pt;}
.y110{bottom:2.400000pt;}
.y10e{bottom:2.400133pt;}
.y10c{bottom:2.400400pt;}
.y117{bottom:2.400667pt;}
.y107{bottom:2.400933pt;}
.y152{bottom:3.146533pt;}
.ycf{bottom:8.283600pt;}
.yd5{bottom:8.283733pt;}
.ydb{bottom:8.284000pt;}
.ycc{bottom:8.284267pt;}
.yd2{bottom:8.284400pt;}
.yd8{bottom:8.284533pt;}
.yde{bottom:8.284667pt;}
.ye3{bottom:8.284800pt;}
.yc9{bottom:13.210210pt;}
.y17c{bottom:15.087467pt;}
.y174{bottom:15.087600pt;}
.y170{bottom:15.088133pt;}
.y178{bottom:15.088267pt;}
.y109{bottom:16.922000pt;}
.y148{bottom:17.622533pt;}
.y14e{bottom:17.622667pt;}
.y141{bottom:17.623067pt;}
.y14b{bottom:17.623200pt;}
.y13e{bottom:17.623600pt;}
.yc6{bottom:24.851867pt;}
.y16c{bottom:27.838133pt;}
.y32{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y121{bottom:49.489600pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y31{bottom:90.708667pt;}
.yb8{bottom:90.716800pt;}
.y79{bottom:91.144400pt;}
.yc3{bottom:91.812000pt;}
.y1ae{bottom:91.898533pt;}
.y66{bottom:91.937867pt;}
.y103{bottom:91.944133pt;}
.y9c{bottom:92.924533pt;}
.y18e{bottom:92.946800pt;}
.y1ea{bottom:93.585733pt;}
.y41{bottom:95.975867pt;}
.y138{bottom:96.564133pt;}
.yb7{bottom:105.380800pt;}
.y1e9{bottom:107.985733pt;}
.y78{bottom:109.551067pt;}
.y1b{bottom:109.706068pt;}
.yc2{bottom:110.072000pt;}
.y1ad{bottom:110.158533pt;}
.y65{bottom:110.197867pt;}
.y102{bottom:110.350800pt;}
.y40{bottom:110.375867pt;}
.y9b{bottom:111.331200pt;}
.y18d{bottom:111.353467pt;}
.y137{bottom:114.970800pt;}
.yb6{bottom:120.044800pt;}
.y21{bottom:121.581067pt;}
.y1e8{bottom:122.385733pt;}
.y28{bottom:126.612800pt;}
.y77{bottom:127.957733pt;}
.y1ac{bottom:128.418533pt;}
.y64{bottom:128.457867pt;}
.y3f{bottom:128.555867pt;}
.y101{bottom:128.757467pt;}
.y9a{bottom:129.737867pt;}
.y181{bottom:132.815733pt;}
.y136{bottom:133.377467pt;}
.yb5{bottom:134.708800pt;}
.y1e7{bottom:136.785733pt;}
.y3e{bottom:142.955867pt;}
.yc1{bottom:144.212667pt;}
.y76{bottom:146.364400pt;}
.y1ab{bottom:146.678533pt;}
.y63{bottom:146.717867pt;}
.y100{bottom:147.164133pt;}
.y99{bottom:148.144533pt;}
.y1e6{bottom:151.185733pt;}
.y135{bottom:151.784133pt;}
.y18c{bottom:152.430667pt;}
.y3d{bottom:157.355867pt;}
.y27{bottom:163.939467pt;}
.y75{bottom:164.771067pt;}
.y1aa{bottom:164.938533pt;}
.y62{bottom:164.977867pt;}
.yff{bottom:165.570800pt;}
.y1e5{bottom:165.585733pt;}
.y98{bottom:166.551200pt;}
.y134{bottom:170.190800pt;}
.y1a{bottom:171.211447pt;}
.y3c{bottom:171.755867pt;}
.y168{bottom:175.449333pt;}
.yb4{bottom:179.825467pt;}
.y1e4{bottom:179.985733pt;}
.y19{bottom:180.116160pt;}
.y26{bottom:182.610133pt;}
.y1a9{bottom:183.198533pt;}
.y61{bottom:183.237867pt;}
.yfe{bottom:183.977467pt;}
.y97{bottom:184.957867pt;}
.y3b{bottom:186.155867pt;}
.y133{bottom:188.597467pt;}
.y18{bottom:189.020874pt;}
.y1e3{bottom:194.385733pt;}
.y17{bottom:197.936063pt;}
.yb3{bottom:198.232133pt;}
.yc0{bottom:198.488800pt;}
.y74{bottom:199.045200pt;}
.y3a{bottom:200.555867pt;}
.y25{bottom:201.280800pt;}
.y1a8{bottom:201.458533pt;}
.y60{bottom:201.497867pt;}
.yfd{bottom:202.384133pt;}
.y96{bottom:203.364533pt;}
.y124{bottom:205.952933pt;}
.y16{bottom:206.840777pt;}
.y132{bottom:207.004133pt;}
.y1e2{bottom:208.785733pt;}
.y15b{bottom:210.396000pt;}
.y39{bottom:214.955867pt;}
.y15{bottom:215.755966pt;}
.y18a{bottom:216.615942pt;}
.yb2{bottom:216.638800pt;}
.ybf{bottom:216.748800pt;}
.y1a7{bottom:219.718533pt;}
.y5f{bottom:219.757867pt;}
.yfc{bottom:220.790800pt;}
.y95{bottom:221.771200pt;}
.y73{bottom:223.045200pt;}
.y1e1{bottom:223.185733pt;}
.y14{bottom:224.660679pt;}
.y131{bottom:225.410800pt;}
.y189{bottom:226.540555pt;}
.y166{bottom:227.778133pt;}
.y38{bottom:229.355867pt;}
.y13{bottom:233.565393pt;}
.ybe{bottom:235.008800pt;}
.yb1{bottom:235.045467pt;}
.y1e0{bottom:237.585733pt;}
.y1a6{bottom:237.978533pt;}
.y5e{bottom:238.017867pt;}
.y94{bottom:240.177867pt;}
.y182{bottom:242.154400pt;}
.y12{bottom:242.480582pt;}
.y130{bottom:243.817467pt;}
.y11{bottom:251.385295pt;}
.y1df{bottom:251.985733pt;}
.y30{bottom:252.830400pt;}
.ybd{bottom:253.268800pt;}
.yb0{bottom:253.452133pt;}
.y1a5{bottom:256.238533pt;}
.y5d{bottom:256.277867pt;}
.y93{bottom:258.584533pt;}
.y10{bottom:260.300485pt;}
.yfb{bottom:261.867867pt;}
.y12f{bottom:262.224133pt;}
.y1de{bottom:266.385733pt;}
.yf{bottom:269.205198pt;}
.y188{bottom:269.604112pt;}
.y2f{bottom:271.501067pt;}
.ybc{bottom:271.528800pt;}
.yaf{bottom:271.858800pt;}
.yfa{bottom:272.450133pt;}
.y14f{bottom:274.133600pt;}
.y1a4{bottom:274.498533pt;}
.y5c{bottom:274.537867pt;}
.y1ba{bottom:274.873200pt;}
.y92{bottom:276.991200pt;}
.ye{bottom:278.109912pt;}
.y72{bottom:278.979867pt;}
.y187{bottom:279.528726pt;}
.y12e{bottom:280.630800pt;}
.y1dd{bottom:280.785733pt;}
.yc7{bottom:284.886667pt;}
.ybb{bottom:289.788800pt;}
.y2e{bottom:290.171733pt;}
.yae{bottom:290.265467pt;}
.y1a3{bottom:292.758533pt;}
.y5b{bottom:292.797867pt;}
.y1b9{bottom:293.279867pt;}
.yd{bottom:294.127919pt;}
.y1dc{bottom:295.185733pt;}
.y91{bottom:295.397867pt;}
.y17e{bottom:297.027200pt;}
.y71{bottom:297.239867pt;}
.yf9{bottom:298.345333pt;}
.y12d{bottom:299.037467pt;}
.y14c{bottom:306.233200pt;}
.yba{bottom:308.048800pt;}
.yad{bottom:308.672133pt;}
.y2d{bottom:308.842400pt;}
.y1db{bottom:309.585733pt;}
.y1a2{bottom:311.018533pt;}
.y5a{bottom:311.057867pt;}
.y1b8{bottom:311.686533pt;}
.y90{bottom:313.804533pt;}
.y70{bottom:315.499867pt;}
.y12c{bottom:317.444133pt;}
.yea{bottom:321.313733pt;}
.y186{bottom:322.592283pt;}
.y17a{bottom:323.165467pt;}
.y1da{bottom:323.985733pt;}
.yf8{bottom:325.991786pt;}
.yac{bottom:327.078800pt;}
.y2c{bottom:327.513067pt;}
.y1a1{bottom:329.278533pt;}
.y59{bottom:329.317867pt;}
.y1b7{bottom:330.093200pt;}
.y8f{bottom:332.211200pt;}
.y185{bottom:332.516896pt;}
.y6f{bottom:333.759867pt;}
.yb9{bottom:334.252533pt;}
.y12b{bottom:335.850800pt;}
.y149{bottom:338.332400pt;}
.y1d9{bottom:338.385733pt;}
.ye8{bottom:340.121067pt;}
.y2b{bottom:346.183733pt;}
.y1a0{bottom:347.538533pt;}
.y58{bottom:347.577867pt;}
.y1b6{bottom:348.499867pt;}
.y176{bottom:349.303600pt;}
.y8e{bottom:350.617867pt;}
.y6e{bottom:352.019867pt;}
.y1d8{bottom:352.785733pt;}
.yab{bottom:353.415733pt;}
.yf7{bottom:353.638239pt;}
.y12a{bottom:354.257467pt;}
.ye6{bottom:358.928400pt;}
.y57{bottom:365.837867pt;}
.y1b5{bottom:366.906533pt;}
.y1d7{bottom:367.185733pt;}
.y8d{bottom:369.024533pt;}
.y6d{bottom:370.279867pt;}
.y146{bottom:370.431867pt;}
.y129{bottom:372.664133pt;}
.y172{bottom:375.441600pt;}
.y184{bottom:375.580453pt;}
.ye4{bottom:377.735467pt;}
.yf6{bottom:381.284693pt;}
.y1d6{bottom:381.585733pt;}
.y19f{bottom:381.679333pt;}
.y1b4{bottom:385.313200pt;}
.y183{bottom:385.505067pt;}
.y8c{bottom:387.431200pt;}
.y6c{bottom:388.539867pt;}
.yaa{bottom:389.263067pt;}
.y128{bottom:391.070800pt;}
.yc{bottom:391.681673pt;}
.y1d5{bottom:395.985733pt;}
.ye1{bottom:396.542800pt;}
.y56{bottom:399.978533pt;}
.y16a{bottom:401.157799pt;}
.y144{bottom:402.531067pt;}
.y1b3{bottom:403.719867pt;}
.y8b{bottom:405.837867pt;}
.y6b{bottom:406.799867pt;}
.ya9{bottom:407.669733pt;}
.y16d{bottom:407.742267pt;}
.y203{bottom:408.509733pt;}
.yf5{bottom:408.931146pt;}
.y127{bottom:409.477467pt;}
.y1d4{bottom:410.385733pt;}
.y169{bottom:414.542400pt;}
.ydf{bottom:415.349867pt;}
.y1b2{bottom:422.126533pt;}
.y55{bottom:423.978533pt;}
.y2a{bottom:424.050400pt;}
.y1d3{bottom:424.785733pt;}
.y202{bottom:424.937733pt;}
.y6a{bottom:425.059867pt;}
.ya8{bottom:426.076400pt;}
.y126{bottom:427.884133pt;}
.yf4{bottom:432.268420pt;}
.ydc{bottom:434.157333pt;}
.y142{bottom:434.630000pt;}
.y19e{bottom:435.915467pt;}
.y1d2{bottom:439.185733pt;}
.y201{bottom:439.469733pt;}
.y8a{bottom:440.111867pt;}
.y1b1{bottom:440.533200pt;}
.yf3{bottom:440.879726pt;}
.y69{bottom:443.319867pt;}
.ya7{bottom:444.483067pt;}
.y17f{bottom:447.910123pt;}
.y19d{bottom:452.848800pt;}
.yd9{bottom:452.964667pt;}
.y1d1{bottom:453.585733pt;}
.y200{bottom:454.001733pt;}
.y29{bottom:454.450400pt;}
.y1b0{bottom:458.939867pt;}
.y68{bottom:461.579867pt;}
.ya6{bottom:462.883067pt;}
.y180{bottom:463.338667pt;}
.y17b{bottom:464.189333pt;}
.yf2{bottom:464.217000pt;}
.y13f{bottom:466.729467pt;}
.y1d0{bottom:467.985733pt;}
.y1ff{bottom:468.533733pt;}
.y167{bottom:468.608667pt;}
.y19c{bottom:469.782133pt;}
.yd6{bottom:471.772000pt;}
.y125{bottom:472.740800pt;}
.y1af{bottom:477.346533pt;}
.y54{bottom:479.839867pt;}
.ya5{bottom:481.289733pt;}
.y1cf{bottom:482.385733pt;}
.y1fe{bottom:483.065733pt;}
.y19b{bottom:486.715467pt;}
.y177{bottom:490.326667pt;}
.yd3{bottom:490.579200pt;}
.y139{bottom:491.628000pt;}
.yf1{bottom:491.863453pt;}
.y89{bottom:495.753200pt;}
.y120{bottom:495.760000pt;}
.y1ce{bottom:496.785733pt;}
.y1fd{bottom:497.597733pt;}
.y53{bottom:498.099867pt;}
.y13c{bottom:498.815460pt;}
.y19a{bottom:503.648800pt;}
.y15a{bottom:504.053422pt;}
.y165{bottom:504.575745pt;}
.ya4{bottom:507.626800pt;}
.yd0{bottom:509.386400pt;}
.y123{bottom:510.505870pt;}
.y1cd{bottom:511.185733pt;}
.y1fc{bottom:512.129733pt;}
.y88{bottom:514.159867pt;}
.y52{bottom:516.359867pt;}
.y173{bottom:516.465333pt;}
.yf0{bottom:519.509907pt;}
.y199{bottom:520.582133pt;}
.y67{bottom:524.181600pt;}
.y1cc{bottom:525.585733pt;}
.ycd{bottom:528.193733pt;}
.y159{bottom:528.700571pt;}
.y164{bottom:529.222895pt;}
.y13b{bottom:530.924122pt;}
.y87{bottom:532.566533pt;}
.y122{bottom:534.259333pt;}
.y51{bottom:534.619867pt;}
.yb{bottom:535.843744pt;}
.y198{bottom:537.515467pt;}
.y1fb{bottom:538.001733pt;}
.y1cb{bottom:539.985733pt;}
.yef{bottom:542.501600pt;}
.y16f{bottom:542.602667pt;}
.ya3{bottom:543.474133pt;}
.y86{bottom:550.973200pt;}
.y50{bottom:552.879867pt;}
.y158{bottom:553.347721pt;}
.y163{bottom:553.870044pt;}
.ya{bottom:554.292215pt;}
.y1ca{bottom:554.385733pt;}
.y1fa{bottom:554.429733pt;}
.yc8{bottom:555.061200pt;}
.ya2{bottom:561.880800pt;}
.y197{bottom:562.372533pt;}
.y9{bottom:566.161674pt;}
.y13a{bottom:566.488800pt;}
.y150{bottom:567.117667pt;}
.y16b{bottom:568.741333pt;}
.y1c9{bottom:568.785733pt;}
.y1f9{bottom:568.961733pt;}
.y11f{bottom:569.002903pt;}
.y85{bottom:569.379867pt;}
.y4f{bottom:571.139867pt;}
.y162{bottom:572.614264pt;}
.y157{bottom:577.994870pt;}
.ya1{bottom:580.287467pt;}
.y196{bottom:580.779200pt;}
.y1c8{bottom:583.185733pt;}
.y1f8{bottom:583.493733pt;}
.y24{bottom:584.157200pt;}
.y161{bottom:584.429799pt;}
.y84{bottom:587.786533pt;}
.y8{bottom:589.292976pt;}
.y4e{bottom:589.399867pt;}
.y11e{bottom:592.756366pt;}
.y160{bottom:597.261413pt;}
.y1c7{bottom:597.585733pt;}
.y1f7{bottom:598.025733pt;}
.ya0{bottom:598.694133pt;}
.y195{bottom:599.185867pt;}
.ye9{bottom:601.050667pt;}
.y7{bottom:601.172911pt;}
.y156{bottom:602.642019pt;}
.y11d{bottom:603.746506pt;}
.y83{bottom:606.193200pt;}
.y4d{bottom:607.659867pt;}
.y15f{bottom:609.076948pt;}
.y1c6{bottom:611.985733pt;}
.y37{bottom:612.259867pt;}
.y1f6{bottom:612.557733pt;}
.y6{bottom:613.052847pt;}
.y9f{bottom:617.100800pt;}
.ye7{bottom:619.858667pt;}
.y11c{bottom:622.009400pt;}
.y82{bottom:624.599867pt;}
.y5{bottom:624.932782pt;}
.y194{bottom:625.522933pt;}
.y4c{bottom:625.919867pt;}
.y1c5{bottom:626.385733pt;}
.y1f5{bottom:627.089733pt;}
.y155{bottom:627.289168pt;}
.y15e{bottom:627.821168pt;}
.y11b{bottom:632.999539pt;}
.ye5{bottom:638.665333pt;}
.y1c4{bottom:640.785733pt;}
.y1f4{bottom:641.621733pt;}
.y193{bottom:642.456267pt;}
.y23{bottom:642.845200pt;}
.y81{bottom:643.006533pt;}
.y9e{bottom:643.437733pt;}
.y4b{bottom:644.179867pt;}
.y36{bottom:645.859867pt;}
.y11a{bottom:651.262433pt;}
.y154{bottom:651.936317pt;}
.y15d{bottom:652.468317pt;}
.y1c3{bottom:655.185733pt;}
.ye2{bottom:657.472000pt;}
.y192{bottom:659.389600pt;}
.y80{bottom:661.413200pt;}
.y119{bottom:662.252573pt;}
.y4a{bottom:662.439867pt;}
.y1f3{bottom:667.493733pt;}
.y1c2{bottom:669.585733pt;}
.ye0{bottom:676.280000pt;}
.y191{bottom:676.322933pt;}
.y153{bottom:676.583467pt;}
.y15c{bottom:677.115467pt;}
.y9d{bottom:679.311867pt;}
.y7f{bottom:679.819867pt;}
.y4{bottom:680.299146pt;}
.y49{bottom:680.699867pt;}
.y118{bottom:683.089733pt;}
.y1f2{bottom:683.921733pt;}
.y1c1{bottom:683.985733pt;}
.y190{bottom:693.256267pt;}
.ydd{bottom:695.086667pt;}
.y3{bottom:697.909527pt;}
.y7e{bottom:698.226533pt;}
.y1c0{bottom:698.385733pt;}
.y1f1{bottom:698.453733pt;}
.y48{bottom:698.959867pt;}
.y18f{bottom:710.189600pt;}
.y1bf{bottom:712.785733pt;}
.y1f0{bottom:712.985733pt;}
.y35{bottom:713.059867pt;}
.yda{bottom:713.894667pt;}
.y7d{bottom:716.633200pt;}
.y47{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y22{bottom:721.511867pt;}
.y1be{bottom:727.185733pt;}
.y1ef{bottom:727.517733pt;}
.yd7{bottom:732.701333pt;}
.y7c{bottom:735.039867pt;}
.y46{bottom:735.479867pt;}
.y1bd{bottom:741.585733pt;}
.y1ee{bottom:742.049733pt;}
.y34{bottom:746.659867pt;}
.yd4{bottom:751.509333pt;}
.y7b{bottom:753.446533pt;}
.y45{bottom:753.739867pt;}
.y14d{bottom:755.062667pt;}
.y1bc{bottom:755.985733pt;}
.y1ed{bottom:756.581733pt;}
.y116{bottom:760.616000pt;}
.yd1{bottom:770.316000pt;}
.y1ec{bottom:771.113733pt;}
.y7a{bottom:771.853200pt;}
.y44{bottom:771.999867pt;}
.y114{bottom:775.138667pt;}
.y33{bottom:780.259867pt;}
.y1eb{bottom:785.645733pt;}
.y1bb{bottom:786.259733pt;}
.y14a{bottom:787.161333pt;}
.yce{bottom:789.124000pt;}
.y113{bottom:789.660000pt;}
.y43{bottom:790.259867pt;}
.y111{bottom:804.181333pt;}
.ycb{bottom:807.930667pt;}
.y10f{bottom:818.702667pt;}
.y147{bottom:819.261333pt;}
.yc4{bottom:826.738667pt;}
.y10d{bottom:833.224000pt;}
.y42{bottom:846.236267pt;}
.y10b{bottom:847.745333pt;}
.y145{bottom:851.360000pt;}
.yed{bottom:860.546667pt;}
.y108{bottom:862.266667pt;}
.yeb{bottom:872.413333pt;}
.y143{bottom:883.458667pt;}
.y106{bottom:891.309333pt;}
.y104{bottom:905.832000pt;}
.y140{bottom:915.558667pt;}
.y13d{bottom:947.657333pt;}
.y151{bottom:978.498667pt;}
.h2f{height:-308.269333pt;}
.h31{height:-296.402667pt;}
.h4c{height:-267.153333pt;}
.h20{height:-262.594667pt;}
.h23{height:-243.786667pt;}
.h44{height:-236.312000pt;}
.h24{height:-224.980000pt;}
.h25{height:-206.172000pt;}
.h46{height:-204.213333pt;}
.h34{height:-194.486667pt;}
.h26{height:-187.365333pt;}
.h36{height:-179.964000pt;}
.h47{height:-172.113333pt;}
.h27{height:-168.557333pt;}
.h37{height:-150.921333pt;}
.h28{height:-149.750667pt;}
.h52{height:-142.246667pt;}
.h48{height:-140.014667pt;}
.h38{height:-136.400000pt;}
.h29{height:-130.942667pt;}
.h39{height:-121.878667pt;}
.h55{height:-116.108000pt;}
.h2a{height:-112.136000pt;}
.h49{height:-107.916000pt;}
.h3a{height:-107.357333pt;}
.h2b{height:-93.328000pt;}
.h3b{height:-92.836000pt;}
.h57{height:-89.970667pt;}
.h3c{height:-78.314667pt;}
.h4a{height:-75.816000pt;}
.h2c{height:-74.521333pt;}
.h58{height:-63.832000pt;}
.h3d{height:-63.793333pt;}
.h2d{height:-55.714667pt;}
.h3e{height:-49.270667pt;}
.h4b{height:-43.717333pt;}
.h59{height:-37.694667pt;}
.h2e{height:-36.906667pt;}
.h5a{height:-36.844000pt;}
.h32{height:20.813632pt;}
.h5b{height:23.987912pt;}
.h7{height:24.841007pt;}
.h30{height:25.108570pt;}
.h15{height:25.375000pt;}
.h33{height:25.531572pt;}
.h3f{height:26.563301pt;}
.h4d{height:26.932871pt;}
.h21{height:27.384312pt;}
.hb{height:27.946133pt;}
.h8{height:28.021561pt;}
.h4e{height:28.558293pt;}
.h56{height:29.475518pt;}
.h6{height:31.051259pt;}
.h9{height:31.135068pt;}
.h51{height:31.560665pt;}
.h41{height:32.584479pt;}
.h5{height:34.156385pt;}
.ha{height:34.777410pt;}
.h35{height:34.948807pt;}
.h4f{height:35.031591pt;}
.h43{height:35.291687pt;}
.h45{height:37.573977pt;}
.h19{height:38.062500pt;}
.h18{height:38.812500pt;}
.h5c{height:42.291667pt;}
.h11{height:43.283854pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h12{height:46.520833pt;}
.h1e{height:46.684312pt;}
.h14{height:48.242188pt;}
.h1a{height:50.750000pt;}
.h1d{height:51.750000pt;}
.h1f{height:55.664062pt;}
.h1c{height:56.062500pt;}
.h54{height:57.918032pt;}
.h1b{height:64.687500pt;}
.h16{height:77.929688pt;}
.h13{height:80.354167pt;}
.h53{height:85.099068pt;}
.h17{height:88.812500pt;}
.he{height:153.125000pt;}
.h10{height:188.875000pt;}
.h40{height:215.585333pt;}
.h42{height:219.717333pt;}
.h50{height:251.045333pt;}
.h22{height:279.257333pt;}
.hf{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.hd{height:888.000000pt;}
.hc{height:888.189333pt;}
.w8{width:-396.452000pt;}
.wc{width:-344.956000pt;}
.w7{width:-295.252000pt;}
.wb{width:-243.756000pt;}
.w6{width:-194.050667pt;}
.we{width:-191.434667pt;}
.wa{width:-142.554667pt;}
.w5{width:-92.849333pt;}
.w9{width:-41.353333pt;}
.w10{width:-22.636000pt;}
.wd{width:41.470667pt;}
.wf{width:310.570667pt;}
.w4{width:411.968000pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x66{left:-78.524800pt;}
.x28{left:-41.264800pt;}
.x48{left:-33.396133pt;}
.x3c{left:-23.776933pt;}
.x63{left:-20.511067pt;}
.x0{left:0.000000pt;}
.x3b{left:1.094400pt;}
.x1d{left:4.925867pt;}
.x5a{left:10.200533pt;}
.x2d{left:16.344533pt;}
.x1f{left:17.464133pt;}
.x5b{left:22.950667pt;}
.x2f{left:27.762933pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x13{left:41.574800pt;}
.x19{left:53.574800pt;}
.x18{left:68.031467pt;}
.x10{left:69.962133pt;}
.x8{left:71.294000pt;}
.x11{left:76.503467pt;}
.x6b{left:77.560933pt;}
.x2c{left:80.602667pt;}
.x3f{left:83.491213pt;}
.x42{left:86.776553pt;}
.x31{left:87.766667pt;}
.x44{left:95.993605pt;}
.x3e{left:99.692893pt;}
.x12{left:101.495467pt;}
.x2{left:103.933719pt;}
.x41{left:105.786525pt;}
.x40{left:108.531809pt;}
.x9{left:120.852667pt;}
.x15{left:143.622000pt;}
.x68{left:145.490875pt;}
.x53{left:147.214589pt;}
.xe{left:148.854133pt;}
.x37{left:151.363712pt;}
.x36{left:154.177726pt;}
.x3a{left:158.522169pt;}
.x43{left:160.242267pt;}
.x1a{left:162.512667pt;}
.x69{left:164.949945pt;}
.x7{left:169.238000pt;}
.x39{left:170.956020pt;}
.x6a{left:179.028103pt;}
.x38{left:180.329014pt;}
.x51{left:184.163867pt;}
.xb{left:185.892267pt;}
.xc{left:191.794933pt;}
.x67{left:195.460133pt;}
.xf{left:202.666133pt;}
.x54{left:206.543867pt;}
.x57{left:209.108254pt;}
.x56{left:211.750057pt;}
.x34{left:218.244150pt;}
.x55{left:221.746329pt;}
.x35{left:246.017551pt;}
.xa{left:250.242000pt;}
.x52{left:269.066533pt;}
.xd{left:273.007467pt;}
.x3d{left:274.959067pt;}
.x4{left:305.871665pt;}
.x64{left:320.134000pt;}
.x58{left:322.471467pt;}
.x33{left:350.305333pt;}
.x50{left:353.295744pt;}
.x4f{left:360.446997pt;}
.x14{left:361.852267pt;}
.x4e{left:374.759182pt;}
.x65{left:386.244173pt;}
.x4d{left:389.071366pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x4c{left:431.998242pt;}
.x5c{left:437.011467pt;}
.x5d{left:439.352417pt;}
.x4b{left:446.310427pt;}
.x1b{left:464.516267pt;}
.x4a{left:467.773865pt;}
.x2a{left:474.367733pt;}
.x29{left:476.830533pt;}
.x1e{left:509.295467pt;}
.x49{left:512.955467pt;}
.x59{left:514.120000pt;}
.x5e{left:555.164435pt;}
.x16{left:564.411067pt;}
.x20{left:565.717200pt;}
.x17{left:570.047200pt;}
.x2b{left:596.944000pt;}
.x60{left:608.290400pt;}
.x22{left:610.496533pt;}
.x1c{left:648.440000pt;}
.x23{left:666.918267pt;}
.x61{left:669.916667pt;}
.x62{left:672.257617pt;}
.x46{left:674.997175pt;}
.x47{left:677.807430pt;}
.x2e{left:698.145333pt;}
.x5f{left:747.025333pt;}
.x21{left:749.641333pt;}
.x25{left:768.119333pt;}
.x30{left:799.346667pt;}
.x27{left:812.898533pt;}
.x24{left:850.842667pt;}
.x32{left:900.546667pt;}
.x26{left:952.042667pt;}
.x45{left:1078.119333pt;}
}




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