
    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_32c5a390e198cc6f2b3ae8c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_49c0a381f5649611c4f6986a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_e2fa71f68a6b66c746028c90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115723;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_23bd39d8de170c0ded7934d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_bb689de8428250e5bf542505.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115723;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_5a27f80663250c46727cf9ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_827646a55849a8047393768e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8a66fb8fdc1a8adeb4418b61.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_895267c900c771a70bb50255.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.119629;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_3eed1d262468f624b48cae57.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.019531;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_0b92b01774317a1d7d73b84e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.027832;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_3754ff4d1b6b9c43872ecbee.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.027832;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);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v8{vertical-align:-27.936000px;}
.v4{vertical-align:-13.920000px;}
.v7{vertical-align:-4.176000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:3.600000px;}
.va{vertical-align:5.340000px;}
.v5{vertical-align:16.560000px;}
.v1{vertical-align:43.200000px;}
.v2{vertical-align:51.696000px;}
.v9{vertical-align:98.820000px;}
.v3{vertical-align:100.800000px;}
.ls46{letter-spacing:-0.612000px;}
.ls47{letter-spacing:-0.594000px;}
.ls42{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.468000px;}
.ls43{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.319800px;}
.ls17{letter-spacing:-0.288000px;}
.ls4c{letter-spacing:-0.267000px;}
.lsb{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.208200px;}
.lse{letter-spacing:-0.178800px;}
.lsf{letter-spacing:-0.172200px;}
.lsd{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.130800px;}
.ls15{letter-spacing:-0.117600px;}
.ls45{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.037440px;}
.ls10{letter-spacing:-0.036000px;}
.ls31{letter-spacing:-0.028080px;}
.ls2f{letter-spacing:-0.019860px;}
.ls48{letter-spacing:-0.018720px;}
.ls41{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.017280px;}
.ls2e{letter-spacing:0.018720px;}
.ls16{letter-spacing:0.026460px;}
.ls50{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.037440px;}
.ls4d{letter-spacing:0.061800px;}
.ls13{letter-spacing:0.076200px;}
.lsc{letter-spacing:0.103800px;}
.ls4{letter-spacing:0.106800px;}
.ls37{letter-spacing:0.108000px;}
.ls39{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.172200px;}
.ls1{letter-spacing:0.178800px;}
.ls1c{letter-spacing:0.180288px;}
.ls9{letter-spacing:0.207936px;}
.ls11{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.288000px;}
.ls4f{letter-spacing:0.298200px;}
.ls32{letter-spacing:0.341400px;}
.ls18{letter-spacing:0.360000px;}
.ls40{letter-spacing:14.616000px;}
.ls3f{letter-spacing:15.948000px;}
.ls3e{letter-spacing:16.776000px;}
.ls38{letter-spacing:20.376000px;}
.ls3a{letter-spacing:20.988000px;}
.ls1d{letter-spacing:22.449600px;}
.ls1b{letter-spacing:22.500000px;}
.ls28{letter-spacing:22.539168px;}
.ls29{letter-spacing:22.587120px;}
.ls3c{letter-spacing:23.256000px;}
.ls3d{letter-spacing:24.696000px;}
.ls34{letter-spacing:25.265232px;}
.ls12{letter-spacing:25.372800px;}
.ls20{letter-spacing:25.385232px;}
.ls1f{letter-spacing:25.492800px;}
.ls1a{letter-spacing:29.952000px;}
.ls25{letter-spacing:32.451120px;}
.ls26{letter-spacing:37.491120px;}
.ls2a{letter-spacing:49.493664px;}
.ls2b{letter-spacing:49.608000px;}
.ls4b{letter-spacing:54.267120px;}
.ls23{letter-spacing:66.415104px;}
.ls24{letter-spacing:66.529440px;}
.ls55{letter-spacing:66.544128px;}
.ls54{letter-spacing:66.610080px;}
.ls35{letter-spacing:72.993600px;}
.ls36{letter-spacing:73.044000px;}
.ls22{letter-spacing:93.276000px;}
.ls21{letter-spacing:93.432000px;}
.ls51{letter-spacing:96.840000px;}
.ls53{letter-spacing:97.509600px;}
.ls52{letter-spacing:97.560000px;}
.ls2d{letter-spacing:105.876000px;}
.ls4a{letter-spacing:106.113600px;}
.ls49{letter-spacing:106.164000px;}
.ls4e{letter-spacing:106.884000px;}
.ls2{letter-spacing:111.549600px;}
.ls3{letter-spacing:111.600000px;}
.ls19{letter-spacing:121.320000px;}
.ls8{letter-spacing:156.061440px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(29,39,105),0 0.015em rgb(29,39,105),0.015em 0 rgb(29,39,105),0 -0.015em  rgb(29,39,105);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(29,39,105);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-115.852032px;}
.ws3{word-spacing:-99.979920px;}
.ws1c{word-spacing:-67.976232px;}
.ws9{word-spacing:-67.900032px;}
.ws6{word-spacing:-67.852080px;}
.ws2b{word-spacing:-61.858080px;}
.ws30{word-spacing:-58.021920px;}
.wsd8{word-spacing:-49.870080px;}
.wsc{word-spacing:-47.952000px;}
.ws4{word-spacing:-40.087872px;}
.ws15{word-spacing:-37.959551px;}
.ws2a{word-spacing:-36.011952px;}
.ws12{word-spacing:-35.964000px;}
.ws23{word-spacing:-35.928000px;}
.ws33{word-spacing:-33.533520px;}
.ws8{word-spacing:-33.426720px;}
.ws22{word-spacing:-30.064032px;}
.ws18{word-spacing:-30.024000px;}
.ws21{word-spacing:-29.880000px;}
.ws43{word-spacing:-29.744232px;}
.ws24{word-spacing:-29.736000px;}
.wsd4{word-spacing:-27.154680px;}
.ws40{word-spacing:-27.092880px;}
.wsa{word-spacing:-26.661312px;}
.ws5{word-spacing:-26.621280px;}
.ws2d{word-spacing:-25.240320px;}
.ws2f{word-spacing:-25.060032px;}
.ws2c{word-spacing:-25.020000px;}
.ws14{word-spacing:-23.458752px;}
.ws13{word-spacing:-23.418720px;}
.ws3e{word-spacing:-23.381280px;}
.ws1d{word-spacing:-23.341152px;}
.wsd3{word-spacing:-22.658112px;}
.ws3f{word-spacing:-22.618080px;}
.ws17{word-spacing:-21.060000px;}
.ws10{word-spacing:-20.304000px;}
.ws1b{word-spacing:-20.232000px;}
.wsd{word-spacing:-20.056032px;}
.wsb{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.872000px;}
.ws19{word-spacing:-18.414720px;}
.ws64{word-spacing:-15.264000px;}
.ws78{word-spacing:-15.228000px;}
.wsc1{word-spacing:-15.120000px;}
.ws44{word-spacing:-15.012000px;}
.ws57{word-spacing:-14.994000px;}
.wsd9{word-spacing:-14.192640px;}
.ws27{word-spacing:-13.410720px;}
.ws7{word-spacing:-11.649312px;}
.ws48{word-spacing:-4.263840px;}
.ws1a{word-spacing:-2.556000px;}
.ws3d{word-spacing:-2.431008px;}
.ws32{word-spacing:-2.160000px;}
.wsc0{word-spacing:-2.142000px;}
.wsa0{word-spacing:-2.106000px;}
.ws3c{word-spacing:-1.888416px;}
.ws34{word-spacing:-1.779840px;}
.ws47{word-spacing:-1.740672px;}
.wscf{word-spacing:-1.656000px;}
.wsa5{word-spacing:-1.566000px;}
.wsbd{word-spacing:-1.458000px;}
.wsbe{word-spacing:-1.446000px;}
.ws53{word-spacing:-1.440000px;}
.wsd5{word-spacing:-1.374000px;}
.ws2e{word-spacing:-1.320000px;}
.wsbf{word-spacing:-1.170000px;}
.wscd{word-spacing:-1.152000px;}
.wsca{word-spacing:-1.116000px;}
.ws49{word-spacing:-1.090800px;}
.ws54{word-spacing:-1.026000px;}
.ws51{word-spacing:-0.972000px;}
.ws55{word-spacing:-0.936000px;}
.ws31{word-spacing:-0.924000px;}
.ws56{word-spacing:-0.900000px;}
.ws35{word-spacing:-0.866160px;}
.ws4b{word-spacing:-0.828000px;}
.ws4c{word-spacing:-0.756000px;}
.wscc{word-spacing:-0.738000px;}
.ws4d{word-spacing:-0.720000px;}
.ws9f{word-spacing:-0.684000px;}
.wscb{word-spacing:-0.672000px;}
.ws4f{word-spacing:-0.600000px;}
.wsd6{word-spacing:-0.552960px;}
.wsd0{word-spacing:-0.504000px;}
.ws28{word-spacing:-0.492000px;}
.wsce{word-spacing:-0.306000px;}
.ws25{word-spacing:-0.252000px;}
.ws4e{word-spacing:-0.234000px;}
.ws52{word-spacing:-0.180000px;}
.ws2{word-spacing:0.000000px;}
.ws50{word-spacing:0.090000px;}
.ws11{word-spacing:0.235080px;}
.ws29{word-spacing:0.300000px;}
.ws39{word-spacing:0.336000px;}
.ws26{word-spacing:0.444000px;}
.wsc7{word-spacing:0.540000px;}
.wsc3{word-spacing:0.612000px;}
.ws4a{word-spacing:0.756000px;}
.ws38{word-spacing:0.824160px;}
.wsc4{word-spacing:1.044000px;}
.wsc2{word-spacing:1.116000px;}
.ws42{word-spacing:1.272000px;}
.wsc8{word-spacing:1.278000px;}
.ws1{word-spacing:1.290720px;}
.wsc6{word-spacing:1.332000px;}
.ws41{word-spacing:1.702704px;}
.wsb4{word-spacing:1.854000px;}
.ws95{word-spacing:1.890000px;}
.wsc9{word-spacing:1.908000px;}
.wsb8{word-spacing:1.944000px;}
.wsbb{word-spacing:1.980000px;}
.ws93{word-spacing:2.052000px;}
.wsb7{word-spacing:2.070000px;}
.wsb9{word-spacing:2.160000px;}
.wsb2{word-spacing:2.196000px;}
.wsba{word-spacing:2.208000px;}
.wsb6{word-spacing:2.316000px;}
.ws9b{word-spacing:2.574000px;}
.ws9e{word-spacing:2.664000px;}
.wsc5{word-spacing:2.700000px;}
.wsbc{word-spacing:2.736000px;}
.wsb3{word-spacing:2.808000px;}
.ws9c{word-spacing:2.952000px;}
.ws99{word-spacing:2.988000px;}
.ws98{word-spacing:3.258000px;}
.ws96{word-spacing:3.348000px;}
.ws94{word-spacing:3.366000px;}
.ws9d{word-spacing:3.438000px;}
.wsb5{word-spacing:3.492000px;}
.ws9a{word-spacing:3.594000px;}
.ws92{word-spacing:3.618000px;}
.ws77{word-spacing:3.654000px;}
.ws76{word-spacing:3.672000px;}
.ws79{word-spacing:3.816000px;}
.wsb1{word-spacing:3.888000px;}
.ws71{word-spacing:3.906000px;}
.ws7a{word-spacing:3.960000px;}
.ws61{word-spacing:4.014000px;}
.ws5f{word-spacing:4.050000px;}
.ws73{word-spacing:4.086000px;}
.ws75{word-spacing:4.194000px;}
.ws63{word-spacing:4.212000px;}
.wsad{word-spacing:4.356000px;}
.ws86{word-spacing:4.392000px;}
.ws97{word-spacing:4.428000px;}
.ws58{word-spacing:4.536000px;}
.ws88{word-spacing:4.572000px;}
.ws74{word-spacing:4.590000px;}
.ws59{word-spacing:4.608000px;}
.ws87{word-spacing:4.734000px;}
.wsae{word-spacing:4.752000px;}
.ws85{word-spacing:4.770000px;}
.ws89{word-spacing:4.806000px;}
.ws5c{word-spacing:4.878000px;}
.ws60{word-spacing:4.914000px;}
.wsaf{word-spacing:4.932000px;}
.ws5d{word-spacing:4.962000px;}
.ws83{word-spacing:5.040000px;}
.ws5b{word-spacing:5.112000px;}
.ws65{word-spacing:5.256000px;}
.ws5a{word-spacing:5.328000px;}
.ws5e{word-spacing:5.508000px;}
.wsb0{word-spacing:5.526000px;}
.ws62{word-spacing:5.544000px;}
.ws72{word-spacing:5.652000px;}
.ws7c{word-spacing:5.742000px;}
.ws7f{word-spacing:6.138000px;}
.ws80{word-spacing:6.174000px;}
.ws7e{word-spacing:6.192000px;}
.ws82{word-spacing:6.282000px;}
.ws84{word-spacing:6.420000px;}
.ws7b{word-spacing:6.426000px;}
.ws69{word-spacing:6.498000px;}
.ws7d{word-spacing:6.786000px;}
.ws81{word-spacing:6.894000px;}
.ws8b{word-spacing:6.984000px;}
.ws8d{word-spacing:7.020000px;}
.ws6e{word-spacing:7.092000px;}
.ws6a{word-spacing:7.236000px;}
.wsa1{word-spacing:7.524000px;}
.wsa4{word-spacing:7.614000px;}
.ws68{word-spacing:7.632000px;}
.ws8a{word-spacing:7.698000px;}
.ws6d{word-spacing:7.704000px;}
.ws8f{word-spacing:7.740000px;}
.ws70{word-spacing:7.812000px;}
.wsa3{word-spacing:7.830000px;}
.ws6b{word-spacing:7.866000px;}
.ws6c{word-spacing:7.932000px;}
.ws90{word-spacing:8.136000px;}
.ws91{word-spacing:8.154000px;}
.ws8c{word-spacing:8.244000px;}
.ws8e{word-spacing:8.334000px;}
.ws6f{word-spacing:8.406000px;}
.wsa2{word-spacing:8.532000px;}
.ws66{word-spacing:8.676000px;}
.wsac{word-spacing:8.856000px;}
.wsa6{word-spacing:9.000000px;}
.wsa9{word-spacing:9.054000px;}
.wsa8{word-spacing:9.144000px;}
.ws67{word-spacing:9.252000px;}
.wsa7{word-spacing:9.432000px;}
.wsaa{word-spacing:9.972000px;}
.wsab{word-spacing:10.692000px;}
.wse{word-spacing:18.144000px;}
.ws3b{word-spacing:26.143680px;}
.ws3a{word-spacing:26.981280px;}
.wsda{word-spacing:30.579840px;}
.wsdb{word-spacing:31.612080px;}
.ws20{word-spacing:42.768000px;}
.ws16{word-spacing:121.770000px;}
.wsd7{word-spacing:571.762800px;}
.ws37{word-spacing:599.628000px;}
.ws36{word-spacing:647.448000px;}
.ws45{word-spacing:647.944320px;}
.ws46{word-spacing:675.153120px;}
.ws1f{word-spacing:683.148000px;}
.wsd2{word-spacing:686.028720px;}
.wsd1{word-spacing:708.152880px;}
.ws1e{word-spacing:948.361632px;}
._2b{margin-left:-2390.453760px;}
._d{margin-left:-15.501840px;}
._24{margin-left:-13.121856px;}
._9{margin-left:-11.243232px;}
._5{margin-left:-9.327600px;}
._16{margin-left:-8.113680px;}
._3{margin-left:-6.610176px;}
._7{margin-left:-5.333328px;}
._6{margin-left:-3.967920px;}
._4{margin-left:-2.164320px;}
._1{margin-left:-1.013040px;}
._0{width:1.206000px;}
._a{width:2.716320px;}
._2{width:4.522752px;}
._1c{width:6.316560px;}
._1b{width:7.480992px;}
._2f{width:8.817600px;}
._19{width:9.907200px;}
._1a{width:12.118320px;}
._1e{width:14.785200px;}
._13{width:16.344000px;}
._c{width:18.582288px;}
._21{width:20.958960px;}
._b{width:22.044000px;}
._20{width:23.994000px;}
._2d{width:25.014000px;}
._1f{width:26.278320px;}
._17{width:28.173600px;}
._18{width:30.968400px;}
._23{width:32.094480px;}
._25{width:34.358208px;}
._15{width:57.384000px;}
._22{width:93.276000px;}
._2e{width:97.560000px;}
._26{width:103.471920px;}
._2c{width:105.825600px;}
._8{width:111.549600px;}
._14{width:277.337040px;}
._f{width:342.224064px;}
._10{width:346.196160px;}
._12{width:463.367760px;}
._11{width:488.963520px;}
._29{width:521.358000px;}
._2a{width:698.210640px;}
._28{width:1031.050560px;}
._27{width:1235.441760px;}
._1d{width:1402.043280px;}
._e{width:1629.603840px;}
.fc7{color:rgb(0,176,240);}
.fc8{color:rgb(82,181,229);}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(29,39,105);}
.fc2{color:rgb(230,51,42);}
.fc1{color:transparent;}
.fcb{color:rgb(166,166,166);}
.fca{color:rgb(89,89,89);}
.fc9{color:rgb(64,64,64);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs34{font-size:40.320000px;}
.fs6{font-size:41.760000px;}
.fsf{font-size:41.904000px;}
.fs0{font-size:48.240000px;}
.fs2c{font-size:54.000000px;}
.fs1f{font-size:57.600000px;}
.fs28{font-size:57.744000px;}
.fs1a{font-size:59.760000px;}
.fs1e{font-size:66.240000px;}
.fs2f{font-size:66.384000px;}
.fs14{font-size:72.000000px;}
.fs15{font-size:72.144000px;}
.fs29{font-size:77.040000px;}
.fs2d{font-size:77.760000px;}
.fs2e{font-size:77.904000px;}
.fs24{font-size:81.360000px;}
.fs25{font-size:81.504000px;}
.fs16{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs22{font-size:90.000000px;}
.fs23{font-size:90.144000px;}
.fsd{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs5{font-size:113.760000px;}
.fs19{font-size:113.840857px;}
.fs4{font-size:113.904000px;}
.fs18{font-size:113.992645px;}
.fs8{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fs2a{font-size:126.000000px;}
.fs2b{font-size:126.144000px;}
.fs3{font-size:138.240000px;}
.fs11{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs33{font-size:149.760000px;}
.fs32{font-size:149.904000px;}
.fs1d{font-size:167.760000px;}
.fs1c{font-size:167.904000px;}
.fs26{font-size:174.240000px;}
.fs27{font-size:174.384000px;}
.fs35{font-size:176.832798px;}
.fs20{font-size:185.760000px;}
.fs21{font-size:185.904000px;}
.fse{font-size:203.760000px;}
.fs12{font-size:203.904000px;}
.fs30{font-size:216.000000px;}
.fs31{font-size:216.144000px;}
.fs7{font-size:300.240000px;}
.fs2{font-size:347.760000px;}
.fs1{font-size:347.904000px;}
.fs36{font-size:360.000000px;}
.fs1b{font-size:396.000000px;}
.fsc{font-size:960.060000px;}
.y0{bottom:0.000000px;}
.y1ad{bottom:9.648000px;}
.y1a3{bottom:12.420000px;}
.y24f{bottom:16.992000px;}
.yc{bottom:19.764000px;}
.y1e{bottom:20.088000px;}
.y239{bottom:21.996000px;}
.yc6{bottom:27.396000px;}
.y19d{bottom:28.515000px;}
.y14b{bottom:29.196000px;}
.y129{bottom:31.068000px;}
.yae{bottom:32.436000px;}
.y1d{bottom:32.688000px;}
.y6b{bottom:33.516000px;}
.ye0{bottom:34.596000px;}
.y1c3{bottom:34.920000px;}
.yc5{bottom:41.796000px;}
.y1e7{bottom:43.776000px;}
.ya7{bottom:47.160000px;}
.y238{bottom:47.196000px;}
.y131{bottom:49.968000px;}
.y128{bottom:52.668000px;}
.y113{bottom:56.772000px;}
.y7a{bottom:60.480000px;}
.y4{bottom:62.424000px;}
.y3b{bottom:63.108000px;}
.y14a{bottom:65.196000px;}
.ya6{bottom:68.760000px;}
.y1c2{bottom:71.640000px;}
.yd4{bottom:73.836000px;}
.y1d0{bottom:74.232000px;}
.y127{bottom:74.268000px;}
.y3{bottom:76.824000px;}
.y112{bottom:78.372000px;}
.y243{bottom:79.452000px;}
.y237{bottom:80.496000px;}
.y30{bottom:81.180000px;}
.y19e{bottom:81.825000px;}
.y79{bottom:82.080000px;}
.y3a{bottom:84.708000px;}
.y21a{bottom:88.812000px;}
.ya5{bottom:90.396000px;}
.y2{bottom:91.224000px;}
.y178{bottom:91.476000px;}
.y242{bottom:91.692000px;}
.y130{bottom:93.168000px;}
.yb{bottom:93.780000px;}
.y6a{bottom:96.444000px;}
.yfd{bottom:98.604000px;}
.y149{bottom:101.196000px;}
.y241{bottom:103.572000px;}
.y1{bottom:105.624000px;}
.y39{bottom:106.344000px;}
.y198{bottom:107.748000px;}
.y55{bottom:109.656000px;}
.y49{bottom:109.728000px;}
.ya4{bottom:111.996000px;}
.y9e{bottom:112.140000px;}
.yd2{bottom:112.428000px;}
.y219{bottom:113.112000px;}
.y12f{bottom:114.768000px;}
.y208{bottom:114.804000px;}
.y161{bottom:115.452000px;}
.y126{bottom:117.468000px;}
.y1be{bottom:118.728000px;}
.y10f{bottom:119.988000px;}
.yfc{bottom:120.240000px;}
.ya{bottom:121.176000px;}
.y69{bottom:121.680000px;}
.yc2{bottom:124.020000px;}
.y18b{bottom:125.892000px;}
.y1cf{bottom:130.392000px;}
.y197{bottom:132.408000px;}
.y5d{bottom:133.128000px;}
.y9d{bottom:133.740000px;}
.y54{bottom:134.892000px;}
.y48{bottom:134.928000px;}
.y19f{bottom:135.180000px;}
.yf1{bottom:136.512000px;}
.y148{bottom:137.196000px;}
.y174{bottom:137.592000px;}
.yd1{bottom:138.528000px;}
.y236{bottom:138.852000px;}
.yef{bottom:140.436000px;}
.y111{bottom:140.976000px;}
.yfb{bottom:141.840000px;}
.y96{bottom:141.984000px;}
.y227{bottom:143.352000px;}
.ydc{bottom:143.820000px;}
.y1bd{bottom:143.928000px;}
.yc1{bottom:145.620000px;}
.y17d{bottom:145.800000px;}
.y68{bottom:146.880000px;}
.y207{bottom:147.240000px;}
.ya9{bottom:147.636000px;}
.y1f2{bottom:147.708000px;}
.y7b{bottom:148.212000px;}
.y160{bottom:148.752000px;}
.y1ce{bottom:149.112000px;}
.y19a{bottom:149.145000px;}
.y38{bottom:149.544000px;}
.y14f{bottom:152.310000px;}
.y10e{bottom:152.385000px;}
.y12e{bottom:157.965000px;}
.y18a{bottom:158.295000px;}
.y5c{bottom:158.325000px;}
.y16a{bottom:158.865000px;}
.y53{bottom:160.095000px;}
.y47{bottom:160.125000px;}
.y24e{bottom:160.560000px;}
.y218{bottom:162.465000px;}
.y13a{bottom:162.645000px;}
.y9{bottom:162.930000px;}
.y206{bottom:163.440000px;}
.y95{bottom:163.620000px;}
.y110{bottom:165.270000px;}
.y1b2{bottom:165.315000px;}
.yee{bottom:167.610000px;}
.y235{bottom:168.015000px;}
.y9c{bottom:168.840000px;}
.y1bc{bottom:169.125000px;}
.y97{bottom:169.635000px;}
.y67{bottom:172.080000px;}
.y26{bottom:172.335000px;}
.y147{bottom:173.235000px;}
.y98{bottom:177.765000px;}
.y195{bottom:178.020000px;}
.ybd{bottom:181.800000px;}
.y17c{bottom:183.630000px;}
.y169{bottom:184.065000px;}
.y124{bottom:184.245000px;}
.ya3{bottom:184.500000px;}
.y10d{bottom:184.785000px;}
.yfa{bottom:185.040000px;}
.y94{bottom:185.220000px;}
.yd0{bottom:186.225000px;}
.y1cd{bottom:186.735000px;}
.y1a0{bottom:188.490000px;}
.y9b{bottom:190.440000px;}
.y189{bottom:190.695000px;}
.y22{bottom:191.415000px;}
.y5b{bottom:192.525000px;}
.y226{bottom:192.705000px;}
.y125{bottom:193.650000px;}
.y52{bottom:194.295000px;}
.y46{bottom:194.325000px;}
.yed{bottom:194.790000px;}
.y205{bottom:195.840000px;}
.y234{bottom:197.175000px;}
.y18{bottom:201.495000px;}
.ybc{bottom:203.400000px;}
.y24d{bottom:203.760000px;}
.yc0{bottom:204.765000px;}
.y139{bottom:205.845000px;}
.y66{bottom:206.280000px;}
.y123{bottom:206.565000px;}
.y13{bottom:207.825000px;}
.y146{bottom:209.235000px;}
.y199{bottom:210.060000px;}
.y76{bottom:210.450000px;}
.y93{bottom:212.040000px;}
.ycf{bottom:212.325000px;}
.y19b{bottom:213.150000px;}
.y29{bottom:216.180000px;}
.y168{bottom:218.265000px;}
.y1de{bottom:221.070000px;}
.y17b{bottom:221.430000px;}
.yec{bottom:221.970000px;}
.y188{bottom:223.095000px;}
.y1f5{bottom:224.640000px;}
.y15f{bottom:226.155000px;}
.y138{bottom:227.445000px;}
.y220{bottom:227.910000px;}
.y204{bottom:228.240000px;}
.y5a{bottom:231.270000px;}
.y51{bottom:232.995000px;}
.y45{bottom:233.070000px;}
.y9a{bottom:233.640000px;}
.y1d5{bottom:236.415000px;}
.y194{bottom:236.775000px;}
.ybf{bottom:237.165000px;}
.yce{bottom:239.190000px;}
.y1a1{bottom:241.815000px;}
.y156{bottom:242.175000px;}
.y75{bottom:243.570000px;}
.y203{bottom:244.440000px;}
.y65{bottom:244.980000px;}
.y145{bottom:245.235000px;}
.y24c{bottom:246.960000px;}
.ya8{bottom:247.500000px;}
.y2f{bottom:248.010000px;}
.y14d{bottom:248.430000px;}
.y137{bottom:249.090000px;}
.y10c{bottom:249.630000px;}
.y1ee{bottom:250.170000px;}
.y1dd{bottom:250.770000px;}
.y21f{bottom:252.210000px;}
.y217{bottom:252.930000px;}
.y37{bottom:253.470000px;}
.y15e{bottom:254.955000px;}
.y99{bottom:255.240000px;}
.y187{bottom:255.495000px;}
.y233{bottom:256.395000px;}
.y59{bottom:256.470000px;}
.y50{bottom:258.195000px;}
.y44{bottom:258.270000px;}
.y8{bottom:258.945000px;}
.y193{bottom:259.455000px;}
.y1d4{bottom:261.615000px;}
.y1c1{bottom:262.545000px;}
.y1bb{bottom:263.625000px;}
.y17{bottom:263.850000px;}
.ycd{bottom:264.390000px;}
.ybb{bottom:269.565000px;}
.y64{bottom:270.210000px;}
.yf0{bottom:270.540000px;}
.y136{bottom:270.690000px;}
.y12{bottom:270.870000px;}
.y1aa{bottom:272.310000px;}
.y25{bottom:272.880000px;}
.y122{bottom:274.290000px;}
.y155{bottom:274.755000px;}
.y1ed{bottom:276.270000px;}
.y21e{bottom:276.510000px;}
.y202{bottom:276.870000px;}
.y17a{bottom:277.275000px;}
.y21{bottom:277.845000px;}
.yf4{bottom:280.410000px;}
.y1dc{bottom:280.470000px;}
.y144{bottom:281.235000px;}
.y10b{bottom:282.030000px;}
.y192{bottom:282.165000px;}
.y1cc{bottom:282.525000px;}
.y11a{bottom:282.855000px;}
.y15d{bottom:283.755000px;}
.y92{bottom:284.685000px;}
.y232{bottom:285.585000px;}
.y1d3{bottom:286.815000px;}
.y1c0{bottom:287.745000px;}
.y19c{bottom:287.820000px;}
.ydb{bottom:287.925000px;}
.y33{bottom:288.360000px;}
.y1ba{bottom:288.825000px;}
.ycc{bottom:289.590000px;}
.y3d{bottom:289.695000px;}
.y24b{bottom:290.190000px;}
.y58{bottom:290.670000px;}
.y2e{bottom:291.210000px;}
.y135{bottom:292.290000px;}
.y4f{bottom:292.425000px;}
.y43{bottom:292.470000px;}
.y1af{bottom:292.890000px;}
.y201{bottom:293.070000px;}
.y1a2{bottom:295.170000px;}
.y63{bottom:295.410000px;}
.y167{bottom:295.710000px;}
.y121{bottom:295.890000px;}
.y36{bottom:296.670000px;}
.y1a9{bottom:297.510000px;}
.y1f4{bottom:297.540000px;}
.y151{bottom:297.795000px;}
.y1ec{bottom:297.870000px;}
.y12c{bottom:299.775000px;}
.y216{bottom:300.810000px;}
.y225{bottom:301.350000px;}
.y21d{bottom:301.530000px;}
.yba{bottom:302.010000px;}
.y8f{bottom:303.690000px;}
.y91{bottom:306.285000px;}
.y1cb{bottom:308.265000px;}
.y179{bottom:309.705000px;}
.y3e{bottom:309.750000px;}
.y1db{bottom:310.170000px;}
.y1d2{bottom:312.045000px;}
.y15c{bottom:312.555000px;}
.y1bf{bottom:312.945000px;}
.y1b9{bottom:314.025000px;}
.y8e{bottom:314.310000px;}
.y10a{bottom:314.430000px;}
.yf3{bottom:314.610000px;}
.y231{bottom:314.745000px;}
.y119{bottom:315.255000px;}
.y173{bottom:316.590000px;}
.y143{bottom:317.235000px;}
.y120{bottom:317.490000px;}
.y150{bottom:319.395000px;}
.y1eb{bottom:319.470000px;}
.y186{bottom:320.325000px;}
.y166{bottom:320.910000px;}
.y1c6{bottom:321.225000px;}
.y1a5{bottom:322.590000px;}
.y1a8{bottom:322.710000px;}
.y8d{bottom:323.025000px;}
.y28{bottom:323.355000px;}
.y215{bottom:325.155000px;}
.y200{bottom:325.470000px;}
.y224{bottom:325.650000px;}
.y240{bottom:326.730000px;}
.y191{bottom:327.525000px;}
.y90{bottom:327.885000px;}
.ya2{bottom:328.575000px;}
.y57{bottom:329.370000px;}
.y62{bottom:329.610000px;}
.yb3{bottom:329.835000px;}
.yea{bottom:330.990000px;}
.y4e{bottom:331.125000px;}
.y16{bottom:331.920000px;}
.y11{bottom:333.870000px;}
.yb9{bottom:334.410000px;}
.y84{bottom:335.700000px;}
.y1d1{bottom:337.245000px;}
.y11f{bottom:339.090000px;}
.y12d{bottom:339.810000px;}
.ycb{bottom:340.170000px;}
.y24a{bottom:340.770000px;}
.y172{bottom:340.920000px;}
.y1ea{bottom:341.070000px;}
.y15b{bottom:341.385000px;}
.y1a{bottom:341.430000px;}
.y1ff{bottom:341.670000px;}
.y14e{bottom:342.720000px;}
.y8c{bottom:344.625000px;}
.y165{bottom:346.110000px;}
.y1f6{bottom:346.140000px;}
.y109{bottom:346.830000px;}
.y1a4{bottom:346.890000px;}
.y118{bottom:347.655000px;}
.y1a7{bottom:347.910000px;}
.y214{bottom:349.455000px;}
.y190{bottom:350.205000px;}
.ya1{bottom:350.895000px;}
.y185{bottom:352.725000px;}
.y7{bottom:352.905000px;}
.y142{bottom:353.265000px;}
.y56{bottom:354.570000px;}
.y4d{bottom:356.325000px;}
.y42{bottom:356.370000px;}
.y1da{bottom:357.150000px;}
.y1fe{bottom:357.870000px;}
.ye9{bottom:358.200000px;}
.y12b{bottom:360.690000px;}
.y11e{bottom:361.410000px;}
.y20{bottom:364.245000px;}
.y171{bottom:365.220000px;}
.y8b{bottom:366.225000px;}
.yca{bottom:366.270000px;}
.yb8{bottom:366.810000px;}
.y1e9{bottom:367.170000px;}
.y182{bottom:367.770000px;}
.y61{bottom:368.310000px;}
.y134{bottom:369.690000px;}
.y23f{bottom:369.930000px;}
.y15a{bottom:370.185000px;}
.y1f3{bottom:370.470000px;}
.y164{bottom:371.310000px;}
.y230{bottom:372.165000px;}
.y18f{bottom:372.885000px;}
.y1a6{bottom:373.140000px;}
.y74{bottom:373.215000px;}
.y24{bottom:373.425000px;}
.y21c{bottom:373.755000px;}
.y1fd{bottom:374.070000px;}
.y213{bottom:374.475000px;}
.y223{bottom:374.970000px;}
.y32{bottom:376.920000px;}
.y2d{bottom:377.640000px;}
.y108{bottom:379.260000px;}
.y117{bottom:380.055000px;}
.y1d9{bottom:380.550000px;}
.yfe{bottom:381.525000px;}
.yf9{bottom:381.855000px;}
.y12a{bottom:383.040000px;}
.y35{bottom:383.115000px;}
.y249{bottom:383.970000px;}
.y103{bottom:385.125000px;}
.yda{bottom:386.025000px;}
.y1fc{bottom:390.270000px;}
.y141{bottom:390.345000px;}
.y19{bottom:390.750000px;}
.y133{bottom:391.320000px;}
.y8a{bottom:393.045000px;}
.yc9{bottom:393.120000px;}
.y60{bottom:393.510000px;}
.y6e{bottom:395.205000px;}
.y18e{bottom:395.565000px;}
.y163{bottom:396.540000px;}
.y10{bottom:396.900000px;}
.y21b{bottom:398.055000px;}
.y159{bottom:398.985000px;}
.yb7{bottom:399.210000px;}
.y22f{bottom:401.325000px;}
.y20a{bottom:401.685000px;}
.yf8{bottom:403.455000px;}
.y1b8{bottom:403.530000px;}
.y73{bottom:404.895000px;}
.y181{bottom:405.615000px;}
.y1fb{bottom:406.470000px;}
.yeb{bottom:406.725000px;}
.yaf{bottom:408.495000px;}
.y6d{bottom:410.070000px;}
.y1d8{bottom:410.250000px;}
.y23e{bottom:413.130000px;}
.y3c{bottom:413.535000px;}
.y132{bottom:413.640000px;}
.y1f1{bottom:415.080000px;}
.y102{bottom:416.520000px;}
.y184{bottom:417.570000px;}
.yd9{bottom:418.470000px;}
.y1e8{bottom:419.220000px;}
.y31{bottom:420.120000px;}
.y2c{bottom:420.840000px;}
.y14{bottom:421.230000px;}
.ya0{bottom:422.670000px;}
.y1fa{bottom:422.715000px;}
.y222{bottom:422.895000px;}
.y212{bottom:423.075000px;}
.y154{bottom:424.050000px;}
.yf7{bottom:425.055000px;}
.y140{bottom:425.265000px;}
.y34{bottom:426.315000px;}
.y1b0{bottom:426.570000px;}
.y170{bottom:426.750000px;}
.y4c{bottom:426.930000px;}
.y41{bottom:426.960000px;}
.y20b{bottom:427.110000px;}
.y248{bottom:427.215000px;}
.y158{bottom:427.785000px;}
.y1b7{bottom:428.760000px;}
.y27{bottom:430.530000px;}
.y22e{bottom:431.430000px;}
.yb6{bottom:431.610000px;}
.yf{bottom:432.900000px;}
.y162{bottom:435.240000px;}
.y6c{bottom:435.270000px;}
.y1ca{bottom:437.070000px;}
.y72{bottom:438.015000px;}
.y101{bottom:438.120000px;}
.y1f9{bottom:438.915000px;}
.y22a{bottom:439.740000px;}
.y1d7{bottom:439.995000px;}
.y180{bottom:443.415000px;}
.yc8{bottom:444.420000px;}
.y209{bottom:444.930000px;}
.y107{bottom:444.960000px;}
.y116{bottom:445.785000px;}
.yf6{bottom:446.655000px;}
.y6{bottom:446.910000px;}
.y221{bottom:447.195000px;}
.y211{bottom:447.375000px;}
.y1f{bottom:450.690000px;}
.yd8{bottom:450.870000px;}
.y153{bottom:452.850000px;}
.y1b6{bottom:453.960000px;}
.yb2{bottom:454.140000px;}
.y23d{bottom:456.375000px;}
.y4b{bottom:459.330000px;}
.y40{bottom:459.360000px;}
.y100{bottom:459.720000px;}
.y13f{bottom:461.265000px;}
.y1c9{bottom:462.270000px;}
.y22b{bottom:463.215000px;}
.y1f0{bottom:463.710000px;}
.ybe{bottom:464.040000px;}
.y5f{bottom:464.115000px;}
.ye7{bottom:469.080000px;}
.yf2{bottom:469.440000px;}
.yc7{bottom:469.620000px;}
.y1d6{bottom:469.695000px;}
.y1f8{bottom:469.875000px;}
.y177{bottom:473.400000px;}
.y23{bottom:473.970000px;}
.y16f{bottom:474.015000px;}
.y16e{bottom:474.330000px;}
.y106{bottom:477.360000px;}
.y247{bottom:477.975000px;}
.y115{bottom:478.185000px;}
.y17f{bottom:481.215000px;}
.yff{bottom:481.320000px;}
.y152{bottom:483.090000px;}
.yd7{bottom:483.270000px;}
.y1e4{bottom:483.765000px;}
.y1c8{bottom:487.515000px;}
.y1ef{bottom:488.010000px;}
.y229{bottom:488.340000px;}
.y228{bottom:488.850000px;}
.y22d{bottom:489.750000px;}
.yb1{bottom:490.140000px;}
.y157{bottom:490.650000px;}
.y4a{bottom:491.730000px;}
.y3f{bottom:491.760000px;}
.y15{bottom:493.560000px;}
.y78{bottom:493.815000px;}
.ye{bottom:495.900000px;}
.ye6{bottom:496.290000px;}
.y5e{bottom:496.515000px;}
.y20e{bottom:497.085000px;}
.y13e{bottom:497.310000px;}
.yb5{bottom:497.340000px;}
.y16d{bottom:499.350000px;}
.y23c{bottom:499.575000px;}
.yf5{bottom:501.405000px;}
.yad{bottom:502.530000px;}
.y1f7{bottom:502.815000px;}
.y7f{bottom:503.640000px;}
.y105{bottom:509.790000px;}
.y114{bottom:510.585000px;}
.y1c7{bottom:513.255000px;}
.y77{bottom:515.445000px;}
.yd6{bottom:515.670000px;}
.y22c{bottom:518.910000px;}
.ye5{bottom:519.510000px;}
.y246{bottom:521.175000px;}
.yb0{bottom:526.170000px;}
.y1e6{bottom:527.865000px;}
.ydf{bottom:528.810000px;}
.yc4{bottom:530.070000px;}
.y13d{bottom:534.390000px;}
.y1b3{bottom:536.970000px;}
.y1b1{bottom:538.050000px;}
.y250{bottom:540.255000px;}
.y176{bottom:540.285000px;}
.y16b{bottom:540.795000px;}
.y5{bottom:540.900000px;}
.y2b{bottom:546.015000px;}
.y82{bottom:550.440000px;}
.y20d{bottom:554.250000px;}
.yac{bottom:554.370000px;}
.y71{bottom:555.045000px;}
.y83{bottom:556.410000px;}
.yd5{bottom:560.370000px;}
.ye8{bottom:568.050000px;}
.y6f{bottom:570.270000px;}
.y9f{bottom:571.530000px;}
.y81{bottom:572.040000px;}
.y210{bottom:572.250000px;}
.yab{bottom:577.080000px;}
.y1e5{bottom:578.085000px;}
.yde{bottom:579.060000px;}
.y1c{bottom:581.115000px;}
.yc3{bottom:585.180000px;}
.y89{bottom:587.010000px;}
.y7e{bottom:588.705000px;}
.y1b5{bottom:589.605000px;}
.y175{bottom:590.505000px;}
.y104{bottom:592.560000px;}
.y245{bottom:594.795000px;}
.yd{bottom:594.825000px;}
.y1c5{bottom:595.515000px;}
.y1e3{bottom:599.070000px;}
.yaa{bottom:599.760000px;}
.y2a{bottom:601.095000px;}
.y13c{bottom:605.310000px;}
.y16c{bottom:605.550000px;}
.y88{bottom:608.610000px;}
.y23b{bottom:610.455000px;}
.y20c{bottom:612.570000px;}
.y70{bottom:614.055000px;}
.y18d{bottom:620.490000px;}
.y1ae{bottom:622.260000px;}
.yb4{bottom:626.610000px;}
.ye3{bottom:629.250000px;}
.ydd{bottom:629.280000px;}
.y20f{bottom:630.570000px;}
.y1e2{bottom:630.930000px;}
.y196{bottom:631.080000px;}
.y80{bottom:633.570000px;}
.yd3{bottom:635.940000px;}
.y1b{bottom:636.195000px;}
.y244{bottom:640.335000px;}
.y1b4{bottom:644.730000px;}
.y1c4{bottom:645.735000px;}
.y13b{bottom:646.020000px;}
.y23a{bottom:650.985000px;}
.ye2{bottom:656.430000px;}
.y11c{bottom:661.785000px;}
.y1e1{bottom:663.870000px;}
.y7d{bottom:665.610000px;}
.ye1{bottom:683.610000px;}
.y7c{bottom:690.810000px;}
.y1e0{bottom:696.270000px;}
.y11b{bottom:698.325000px;}
.y1ac{bottom:699.120000px;}
.y87{bottom:710.025000px;}
.y183{bottom:714.270000px;}
.y17e{bottom:719.205000px;}
.y1df{bottom:729.255000px;}
.y86{bottom:731.625000px;}
.ye4{bottom:732.165000px;}
.y14c{bottom:736.890000px;}
.y18c{bottom:746.385000px;}
.y85{bottom:753.225000px;}
.y11d{bottom:754.170000px;}
.y1ab{bottom:754.230000px;}
.h52{height:32.996250px;}
.h37{height:37.566281px;}
.h7{height:43.554375px;}
.h10{height:43.704562px;}
.h49{height:48.884766px;}
.h1{height:50.312812px;}
.h40{height:56.320312px;}
.h21{height:62.327813px;}
.h2a{height:64.546875px;}
.h28{height:69.086250px;}
.h45{height:69.236437px;}
.h42{height:69.839719px;}
.h41{height:70.394063px;}
.h3a{height:72.937969px;}
.h4f{height:73.067062px;}
.h31{height:73.613320px;}
.h3b{height:73.653047px;}
.h48{height:73.783406px;}
.h17{height:75.093750px;}
.h1b{height:75.243937px;}
.h1f{height:75.519844px;}
.h43{height:75.648938px;}
.h4e{height:76.260234px;}
.h44{height:81.101250px;}
.h4a{height:81.474609px;}
.h38{height:84.855937px;}
.h22{height:84.898125px;}
.h32{height:85.006125px;}
.h36{height:85.847344px;}
.h1c{height:87.859687px;}
.h4b{height:87.886125px;}
.h1d{height:88.009875px;}
.h47{height:88.382812px;}
.h2f{height:93.867188px;}
.h30{height:94.017375px;}
.h1a{height:95.250375px;}
.h3e{height:96.820312px;}
.hb{height:97.769531px;}
.hc{height:97.899891px;}
.h46{height:98.399531px;}
.he{height:99.874688px;}
.h35{height:100.024875px;}
.h2c{height:102.983906px;}
.h20{height:103.057104px;}
.h1e{height:103.194514px;}
.h15{height:107.793281px;}
.h55{height:107.922375px;}
.h9{height:108.850078px;}
.ha{height:108.980437px;}
.h26{height:112.640625px;}
.h27{height:112.790813px;}
.h6{height:118.648125px;}
.h5{height:118.798312px;}
.h14{height:125.406562px;}
.h2b{height:125.556750px;}
.h13{height:129.222844px;}
.h18{height:130.359375px;}
.h19{height:130.489734px;}
.h3c{height:131.414062px;}
.h3d{height:131.564250px;}
.h51{height:135.573750px;}
.h50{height:135.704109px;}
.h4{height:144.180000px;}
.h12{height:150.187500px;}
.h11{height:150.337688px;}
.h53{height:151.868672px;}
.h25{height:154.508672px;}
.h33{height:157.734844px;}
.h34{height:157.865203px;}
.h54{height:160.082035px;}
.h2d{height:168.163594px;}
.h2e{height:168.293953px;}
.h29{height:175.118625px;}
.h39{height:183.675938px;}
.hf{height:184.458516px;}
.h16{height:184.588875px;}
.h23{height:185.698125px;}
.h4c{height:195.539062px;}
.h4d{height:195.669422px;}
.h8{height:271.799297px;}
.h3{height:314.817891px;}
.h2{height:314.948250px;}
.h56{height:375.468750px;}
.h3f{height:378.000000px;}
.h24{height:399.093750px;}
.h0{height:810.000000px;}
.hd{height:869.116816px;}
.w2{width:669.780000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x94{left:7.235984px;}
.x8d{left:9.900000px;}
.x43{left:17.279984px;}
.x41{left:23.759984px;}
.x1f{left:25.523984px;}
.x32{left:28.151984px;}
.x3b{left:37.547984px;}
.x42{left:38.879984px;}
.xbf{left:40.679984px;}
.x40{left:42.659984px;}
.x44{left:44.999984px;}
.x3a{left:47.987984px;}
.x3f{left:51.659984px;}
.x56{left:59.471984px;}
.x11{left:60.551984px;}
.x16{left:63.647984px;}
.x31{left:66.491984px;}
.x33{left:67.931984px;}
.x70{left:69.947984px;}
.xc2{left:71.243984px;}
.x8f{left:72.360000px;}
.x62{left:76.499984px;}
.x76{left:78.515984px;}
.x6f{left:82.007984px;}
.x13{left:83.411984px;}
.x7b{left:85.067984px;}
.x3c{left:88.487984px;}
.x3{left:95.615984px;}
.x68{left:97.091984px;}
.xc1{left:100.871984px;}
.xba{left:102.095984px;}
.x14{left:106.487984px;}
.x8e{left:109.230000px;}
.xc3{left:110.951984px;}
.x88{left:119.015984px;}
.x12{left:130.427984px;}
.x75{left:134.099984px;}
.x48{left:135.431984px;}
.x73{left:137.051984px;}
.x5e{left:138.131984px;}
.x4{left:140.219984px;}
.x89{left:141.695984px;}
.x17{left:143.099984px;}
.x2{left:144.539984px;}
.x27{left:147.347984px;}
.x7a{left:148.823984px;}
.xbb{left:151.349984px;}
.x26{left:153.029984px;}
.x55{left:155.699984px;}
.x6{left:156.989984px;}
.x97{left:158.219984px;}
.x58{left:161.639984px;}
.x24{left:163.799984px;}
.x5d{left:170.714984px;}
.x86{left:174.059984px;}
.x8a{left:177.689984px;}
.x25{left:180.719984px;}
.x71{left:182.699984px;}
.x77{left:185.009984px;}
.x54{left:187.889984px;}
.x9{left:190.259984px;}
.x78{left:191.849984px;}
.x69{left:194.474984px;}
.x72{left:199.799984px;}
.xc0{left:201.779984px;}
.xa{left:213.659984px;}
.x90{left:228.270000px;}
.x5{left:229.604984px;}
.x47{left:232.169984px;}
.x21{left:235.514984px;}
.x38{left:242.609984px;}
.x6a{left:248.474984px;}
.xb{left:249.479984px;}
.x6d{left:251.309984px;}
.x20{left:252.794984px;}
.xc{left:259.379984px;}
.x39{left:264.209984px;}
.x2d{left:266.909984px;}
.x30{left:268.349984px;}
.xbc{left:271.799984px;}
.x6e{left:272.909984px;}
.x59{left:279.104984px;}
.x15{left:280.649984px;}
.x28{left:284.249984px;}
.x10{left:289.154984px;}
.x93{left:297.644984px;}
.x98{left:306.794984px;}
.x9a{left:308.954984px;}
.x9f{left:311.834984px;}
.x9c{left:317.054984px;}
.x99{left:319.214984px;}
.x7d{left:321.224984px;}
.x9d{left:325.874984px;}
.x8b{left:337.425000px;}
.xbe{left:339.509984px;}
.x9e{left:342.254984px;}
.x9b{left:345.854984px;}
.x65{left:357.194984px;}
.xb8{left:363.749984px;}
.x61{left:367.304984px;}
.x7e{left:368.819984px;}
.x7f{left:374.219984px;}
.x95{left:390.674984px;}
.x4a{left:393.119984px;}
.x1e{left:396.569984px;}
.x45{left:411.044984px;}
.x50{left:416.549984px;}
.x7{left:429.329984px;}
.x8{left:438.014984px;}
.x18{left:444.209984px;}
.x19{left:454.649984px;}
.x2a{left:462.854984px;}
.x2c{left:464.369984px;}
.x2b{left:471.389984px;}
.x29{left:472.754984px;}
.x36{left:476.279984px;}
.x6c{left:478.409984px;}
.x3d{left:480.239984px;}
.x49{left:506.954984px;}
.x57{left:510.329984px;}
.xb9{left:512.924984px;}
.x37{left:518.789984px;}
.x3e{left:522.719984px;}
.x51{left:526.214984px;}
.x52{left:528.014984px;}
.x74{left:530.309984px;}
.x23{left:531.794984px;}
.x8c{left:540.570000px;}
.x53{left:547.994984px;}
.x7c{left:554.759984px;}
.x1a{left:559.049984px;}
.xa5{left:561.344984px;}
.xa1{left:565.919984px;}
.xa0{left:568.079984px;}
.x5b{left:571.859984px;}
.x4e{left:573.194984px;}
.x4f{left:575.714984px;}
.xa4{left:581.219984px;}
.xbd{left:582.734984px;}
.xa3{left:583.919984px;}
.x5c{left:585.359984px;}
.xa2{left:588.419984px;}
.x64{left:593.174984px;}
.xd{left:596.054984px;}
.xa6{left:597.239984px;}
.xb4{left:606.989984px;}
.xaf{left:611.129984px;}
.xb1{left:613.289984px;}
.xf{left:618.374984px;}
.xb2{left:621.209984px;}
.xb5{left:622.829984px;}
.xa7{left:630.899984px;}
.xae{left:633.989984px;}
.x2f{left:642.164984px;}
.x79{left:644.789984px;}
.x96{left:645.869984px;}
.xb3{left:660.674984px;}
.xb0{left:662.429984px;}
.x34{left:673.844984px;}
.x46{left:687.269984px;}
.xe{left:690.404984px;}
.x63{left:694.154984px;}
.x35{left:696.164984px;}
.x2e{left:713.414984px;}
.x4b{left:716.114984px;}
.x5f{left:725.579984px;}
.x4c{left:729.794984px;}
.x80{left:732.599984px;}
.x1b{left:735.659984px;}
.x4d{left:738.434984px;}
.x1c{left:746.099984px;}
.x81{left:758.699984px;}
.x60{left:770.219984px;}
.x67{left:771.449984px;}
.x22{left:781.124984px;}
.x85{left:785.009984px;}
.x82{left:799.844984px;}
.x91{left:818.924984px;}
.xa9{left:821.309984px;}
.xa8{left:823.469984px;}
.x83{left:830.624984px;}
.xb6{left:836.249984px;}
.x1{left:838.694984px;}
.x5a{left:840.449984px;}
.xaa{left:843.809984px;}
.xab{left:847.229984px;}
.x92{left:852.764984px;}
.xad{left:854.249984px;}
.x84{left:866.264984px;}
.x1d{left:882.749984px;}
.xb7{left:886.289984px;}
.xac{left:892.769984px;}
.x6b{left:894.059984px;}
.x87{left:920.774984px;}
.x66{left:937.769984px;}
@media print{
.v8{vertical-align:-24.832000pt;}
.v4{vertical-align:-12.373333pt;}
.v7{vertical-align:-3.712000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.200000pt;}
.va{vertical-align:4.746667pt;}
.v5{vertical-align:14.720000pt;}
.v1{vertical-align:38.400000pt;}
.v2{vertical-align:45.952000pt;}
.v9{vertical-align:87.840000pt;}
.v3{vertical-align:89.600000pt;}
.ls46{letter-spacing:-0.544000pt;}
.ls47{letter-spacing:-0.528000pt;}
.ls42{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.416000pt;}
.ls43{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.284267pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls4c{letter-spacing:-0.237333pt;}
.lsb{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.185067pt;}
.lse{letter-spacing:-0.158933pt;}
.lsf{letter-spacing:-0.153067pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.116267pt;}
.ls15{letter-spacing:-0.104533pt;}
.ls45{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.033280pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls31{letter-spacing:-0.024960pt;}
.ls2f{letter-spacing:-0.017653pt;}
.ls48{letter-spacing:-0.016640pt;}
.ls41{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.015360pt;}
.ls2e{letter-spacing:0.016640pt;}
.ls16{letter-spacing:0.023520pt;}
.ls50{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.033280pt;}
.ls4d{letter-spacing:0.054933pt;}
.ls13{letter-spacing:0.067733pt;}
.lsc{letter-spacing:0.092267pt;}
.ls4{letter-spacing:0.094933pt;}
.ls37{letter-spacing:0.096000pt;}
.ls39{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.153067pt;}
.ls1{letter-spacing:0.158933pt;}
.ls1c{letter-spacing:0.160256pt;}
.ls9{letter-spacing:0.184832pt;}
.ls11{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls4f{letter-spacing:0.265067pt;}
.ls32{letter-spacing:0.303467pt;}
.ls18{letter-spacing:0.320000pt;}
.ls40{letter-spacing:12.992000pt;}
.ls3f{letter-spacing:14.176000pt;}
.ls3e{letter-spacing:14.912000pt;}
.ls38{letter-spacing:18.112000pt;}
.ls3a{letter-spacing:18.656000pt;}
.ls1d{letter-spacing:19.955200pt;}
.ls1b{letter-spacing:20.000000pt;}
.ls28{letter-spacing:20.034816pt;}
.ls29{letter-spacing:20.077440pt;}
.ls3c{letter-spacing:20.672000pt;}
.ls3d{letter-spacing:21.952000pt;}
.ls34{letter-spacing:22.457984pt;}
.ls12{letter-spacing:22.553600pt;}
.ls20{letter-spacing:22.564651pt;}
.ls1f{letter-spacing:22.660267pt;}
.ls1a{letter-spacing:26.624000pt;}
.ls25{letter-spacing:28.845440pt;}
.ls26{letter-spacing:33.325440pt;}
.ls2a{letter-spacing:43.994368pt;}
.ls2b{letter-spacing:44.096000pt;}
.ls4b{letter-spacing:48.237440pt;}
.ls23{letter-spacing:59.035648pt;}
.ls24{letter-spacing:59.137280pt;}
.ls55{letter-spacing:59.150336pt;}
.ls54{letter-spacing:59.208960pt;}
.ls35{letter-spacing:64.883200pt;}
.ls36{letter-spacing:64.928000pt;}
.ls22{letter-spacing:82.912000pt;}
.ls21{letter-spacing:83.050667pt;}
.ls51{letter-spacing:86.080000pt;}
.ls53{letter-spacing:86.675200pt;}
.ls52{letter-spacing:86.720000pt;}
.ls2d{letter-spacing:94.112000pt;}
.ls4a{letter-spacing:94.323200pt;}
.ls49{letter-spacing:94.368000pt;}
.ls4e{letter-spacing:95.008000pt;}
.ls2{letter-spacing:99.155200pt;}
.ls3{letter-spacing:99.200000pt;}
.ls19{letter-spacing:107.840000pt;}
.ls8{letter-spacing:138.721280pt;}
.ws0{word-spacing:-102.979584pt;}
.ws3{word-spacing:-88.871040pt;}
.ws1c{word-spacing:-60.423317pt;}
.ws9{word-spacing:-60.355584pt;}
.ws6{word-spacing:-60.312960pt;}
.ws2b{word-spacing:-54.984960pt;}
.ws30{word-spacing:-51.575040pt;}
.wsd8{word-spacing:-44.328960pt;}
.wsc{word-spacing:-42.624000pt;}
.ws4{word-spacing:-35.633664pt;}
.ws15{word-spacing:-33.741823pt;}
.ws2a{word-spacing:-32.010624pt;}
.ws12{word-spacing:-31.968000pt;}
.ws23{word-spacing:-31.936000pt;}
.ws33{word-spacing:-29.807573pt;}
.ws8{word-spacing:-29.712640pt;}
.ws22{word-spacing:-26.723584pt;}
.ws18{word-spacing:-26.688000pt;}
.ws21{word-spacing:-26.560000pt;}
.ws43{word-spacing:-26.439317pt;}
.ws24{word-spacing:-26.432000pt;}
.wsd4{word-spacing:-24.137493pt;}
.ws40{word-spacing:-24.082560pt;}
.wsa{word-spacing:-23.698944pt;}
.ws5{word-spacing:-23.663360pt;}
.ws2d{word-spacing:-22.435840pt;}
.ws2f{word-spacing:-22.275584pt;}
.ws2c{word-spacing:-22.240000pt;}
.ws14{word-spacing:-20.852224pt;}
.ws13{word-spacing:-20.816640pt;}
.ws3e{word-spacing:-20.783360pt;}
.ws1d{word-spacing:-20.747691pt;}
.wsd3{word-spacing:-20.140544pt;}
.ws3f{word-spacing:-20.104960pt;}
.ws17{word-spacing:-18.720000pt;}
.ws10{word-spacing:-18.048000pt;}
.ws1b{word-spacing:-17.984000pt;}
.wsd{word-spacing:-17.827584pt;}
.wsb{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.664000pt;}
.ws19{word-spacing:-16.368640pt;}
.ws64{word-spacing:-13.568000pt;}
.ws78{word-spacing:-13.536000pt;}
.wsc1{word-spacing:-13.440000pt;}
.ws44{word-spacing:-13.344000pt;}
.ws57{word-spacing:-13.328000pt;}
.wsd9{word-spacing:-12.615680pt;}
.ws27{word-spacing:-11.920640pt;}
.ws7{word-spacing:-10.354944pt;}
.ws48{word-spacing:-3.790080pt;}
.ws1a{word-spacing:-2.272000pt;}
.ws3d{word-spacing:-2.160896pt;}
.ws32{word-spacing:-1.920000pt;}
.wsc0{word-spacing:-1.904000pt;}
.wsa0{word-spacing:-1.872000pt;}
.ws3c{word-spacing:-1.678592pt;}
.ws34{word-spacing:-1.582080pt;}
.ws47{word-spacing:-1.547264pt;}
.wscf{word-spacing:-1.472000pt;}
.wsa5{word-spacing:-1.392000pt;}
.wsbd{word-spacing:-1.296000pt;}
.wsbe{word-spacing:-1.285333pt;}
.ws53{word-spacing:-1.280000pt;}
.wsd5{word-spacing:-1.221333pt;}
.ws2e{word-spacing:-1.173333pt;}
.wsbf{word-spacing:-1.040000pt;}
.wscd{word-spacing:-1.024000pt;}
.wsca{word-spacing:-0.992000pt;}
.ws49{word-spacing:-0.969600pt;}
.ws54{word-spacing:-0.912000pt;}
.ws51{word-spacing:-0.864000pt;}
.ws55{word-spacing:-0.832000pt;}
.ws31{word-spacing:-0.821333pt;}
.ws56{word-spacing:-0.800000pt;}
.ws35{word-spacing:-0.769920pt;}
.ws4b{word-spacing:-0.736000pt;}
.ws4c{word-spacing:-0.672000pt;}
.wscc{word-spacing:-0.656000pt;}
.ws4d{word-spacing:-0.640000pt;}
.ws9f{word-spacing:-0.608000pt;}
.wscb{word-spacing:-0.597333pt;}
.ws4f{word-spacing:-0.533333pt;}
.wsd6{word-spacing:-0.491520pt;}
.wsd0{word-spacing:-0.448000pt;}
.ws28{word-spacing:-0.437333pt;}
.wsce{word-spacing:-0.272000pt;}
.ws25{word-spacing:-0.224000pt;}
.ws4e{word-spacing:-0.208000pt;}
.ws52{word-spacing:-0.160000pt;}
.ws2{word-spacing:0.000000pt;}
.ws50{word-spacing:0.080000pt;}
.ws11{word-spacing:0.208960pt;}
.ws29{word-spacing:0.266667pt;}
.ws39{word-spacing:0.298667pt;}
.ws26{word-spacing:0.394667pt;}
.wsc7{word-spacing:0.480000pt;}
.wsc3{word-spacing:0.544000pt;}
.ws4a{word-spacing:0.672000pt;}
.ws38{word-spacing:0.732587pt;}
.wsc4{word-spacing:0.928000pt;}
.wsc2{word-spacing:0.992000pt;}
.ws42{word-spacing:1.130667pt;}
.wsc8{word-spacing:1.136000pt;}
.ws1{word-spacing:1.147307pt;}
.wsc6{word-spacing:1.184000pt;}
.ws41{word-spacing:1.513515pt;}
.wsb4{word-spacing:1.648000pt;}
.ws95{word-spacing:1.680000pt;}
.wsc9{word-spacing:1.696000pt;}
.wsb8{word-spacing:1.728000pt;}
.wsbb{word-spacing:1.760000pt;}
.ws93{word-spacing:1.824000pt;}
.wsb7{word-spacing:1.840000pt;}
.wsb9{word-spacing:1.920000pt;}
.wsb2{word-spacing:1.952000pt;}
.wsba{word-spacing:1.962667pt;}
.wsb6{word-spacing:2.058667pt;}
.ws9b{word-spacing:2.288000pt;}
.ws9e{word-spacing:2.368000pt;}
.wsc5{word-spacing:2.400000pt;}
.wsbc{word-spacing:2.432000pt;}
.wsb3{word-spacing:2.496000pt;}
.ws9c{word-spacing:2.624000pt;}
.ws99{word-spacing:2.656000pt;}
.ws98{word-spacing:2.896000pt;}
.ws96{word-spacing:2.976000pt;}
.ws94{word-spacing:2.992000pt;}
.ws9d{word-spacing:3.056000pt;}
.wsb5{word-spacing:3.104000pt;}
.ws9a{word-spacing:3.194667pt;}
.ws92{word-spacing:3.216000pt;}
.ws77{word-spacing:3.248000pt;}
.ws76{word-spacing:3.264000pt;}
.ws79{word-spacing:3.392000pt;}
.wsb1{word-spacing:3.456000pt;}
.ws71{word-spacing:3.472000pt;}
.ws7a{word-spacing:3.520000pt;}
.ws61{word-spacing:3.568000pt;}
.ws5f{word-spacing:3.600000pt;}
.ws73{word-spacing:3.632000pt;}
.ws75{word-spacing:3.728000pt;}
.ws63{word-spacing:3.744000pt;}
.wsad{word-spacing:3.872000pt;}
.ws86{word-spacing:3.904000pt;}
.ws97{word-spacing:3.936000pt;}
.ws58{word-spacing:4.032000pt;}
.ws88{word-spacing:4.064000pt;}
.ws74{word-spacing:4.080000pt;}
.ws59{word-spacing:4.096000pt;}
.ws87{word-spacing:4.208000pt;}
.wsae{word-spacing:4.224000pt;}
.ws85{word-spacing:4.240000pt;}
.ws89{word-spacing:4.272000pt;}
.ws5c{word-spacing:4.336000pt;}
.ws60{word-spacing:4.368000pt;}
.wsaf{word-spacing:4.384000pt;}
.ws5d{word-spacing:4.410667pt;}
.ws83{word-spacing:4.480000pt;}
.ws5b{word-spacing:4.544000pt;}
.ws65{word-spacing:4.672000pt;}
.ws5a{word-spacing:4.736000pt;}
.ws5e{word-spacing:4.896000pt;}
.wsb0{word-spacing:4.912000pt;}
.ws62{word-spacing:4.928000pt;}
.ws72{word-spacing:5.024000pt;}
.ws7c{word-spacing:5.104000pt;}
.ws7f{word-spacing:5.456000pt;}
.ws80{word-spacing:5.488000pt;}
.ws7e{word-spacing:5.504000pt;}
.ws82{word-spacing:5.584000pt;}
.ws84{word-spacing:5.706667pt;}
.ws7b{word-spacing:5.712000pt;}
.ws69{word-spacing:5.776000pt;}
.ws7d{word-spacing:6.032000pt;}
.ws81{word-spacing:6.128000pt;}
.ws8b{word-spacing:6.208000pt;}
.ws8d{word-spacing:6.240000pt;}
.ws6e{word-spacing:6.304000pt;}
.ws6a{word-spacing:6.432000pt;}
.wsa1{word-spacing:6.688000pt;}
.wsa4{word-spacing:6.768000pt;}
.ws68{word-spacing:6.784000pt;}
.ws8a{word-spacing:6.842667pt;}
.ws6d{word-spacing:6.848000pt;}
.ws8f{word-spacing:6.880000pt;}
.ws70{word-spacing:6.944000pt;}
.wsa3{word-spacing:6.960000pt;}
.ws6b{word-spacing:6.992000pt;}
.ws6c{word-spacing:7.050667pt;}
.ws90{word-spacing:7.232000pt;}
.ws91{word-spacing:7.248000pt;}
.ws8c{word-spacing:7.328000pt;}
.ws8e{word-spacing:7.408000pt;}
.ws6f{word-spacing:7.472000pt;}
.wsa2{word-spacing:7.584000pt;}
.ws66{word-spacing:7.712000pt;}
.wsac{word-spacing:7.872000pt;}
.wsa6{word-spacing:8.000000pt;}
.wsa9{word-spacing:8.048000pt;}
.wsa8{word-spacing:8.128000pt;}
.ws67{word-spacing:8.224000pt;}
.wsa7{word-spacing:8.384000pt;}
.wsaa{word-spacing:8.864000pt;}
.wsab{word-spacing:9.504000pt;}
.wse{word-spacing:16.128000pt;}
.ws3b{word-spacing:23.238827pt;}
.ws3a{word-spacing:23.983360pt;}
.wsda{word-spacing:27.182080pt;}
.wsdb{word-spacing:28.099627pt;}
.ws20{word-spacing:38.016000pt;}
.ws16{word-spacing:108.240000pt;}
.wsd7{word-spacing:508.233600pt;}
.ws37{word-spacing:533.002667pt;}
.ws36{word-spacing:575.509333pt;}
.ws45{word-spacing:575.950507pt;}
.ws46{word-spacing:600.136107pt;}
.ws1f{word-spacing:607.242667pt;}
.wsd2{word-spacing:609.803307pt;}
.wsd1{word-spacing:629.469227pt;}
.ws1e{word-spacing:842.988117pt;}
._2b{margin-left:-2124.847787pt;}
._d{margin-left:-13.779413pt;}
._24{margin-left:-11.663872pt;}
._9{margin-left:-9.993984pt;}
._5{margin-left:-8.291200pt;}
._16{margin-left:-7.212160pt;}
._3{margin-left:-5.875712pt;}
._7{margin-left:-4.740736pt;}
._6{margin-left:-3.527040pt;}
._4{margin-left:-1.923840pt;}
._1{margin-left:-0.900480pt;}
._0{width:1.072000pt;}
._a{width:2.414507pt;}
._2{width:4.020224pt;}
._1c{width:5.614720pt;}
._1b{width:6.649771pt;}
._2f{width:7.837867pt;}
._19{width:8.806400pt;}
._1a{width:10.771840pt;}
._1e{width:13.142400pt;}
._13{width:14.528000pt;}
._c{width:16.517589pt;}
._21{width:18.630187pt;}
._b{width:19.594667pt;}
._20{width:21.328000pt;}
._2d{width:22.234667pt;}
._1f{width:23.358507pt;}
._17{width:25.043200pt;}
._18{width:27.527467pt;}
._23{width:28.528427pt;}
._25{width:30.540629pt;}
._15{width:51.008000pt;}
._22{width:82.912000pt;}
._2e{width:86.720000pt;}
._26{width:91.975040pt;}
._2c{width:94.067200pt;}
._8{width:99.155200pt;}
._14{width:246.521813pt;}
._f{width:304.199168pt;}
._10{width:307.729920pt;}
._12{width:411.882453pt;}
._11{width:434.634240pt;}
._29{width:463.429333pt;}
._2a{width:620.631680pt;}
._28{width:916.489387pt;}
._27{width:1098.170453pt;}
._1d{width:1246.260693pt;}
._e{width:1448.536747pt;}
.fs34{font-size:35.840000pt;}
.fs6{font-size:37.120000pt;}
.fsf{font-size:37.248000pt;}
.fs0{font-size:42.880000pt;}
.fs2c{font-size:48.000000pt;}
.fs1f{font-size:51.200000pt;}
.fs28{font-size:51.328000pt;}
.fs1a{font-size:53.120000pt;}
.fs1e{font-size:58.880000pt;}
.fs2f{font-size:59.008000pt;}
.fs14{font-size:64.000000pt;}
.fs15{font-size:64.128000pt;}
.fs29{font-size:68.480000pt;}
.fs2d{font-size:69.120000pt;}
.fs2e{font-size:69.248000pt;}
.fs24{font-size:72.320000pt;}
.fs25{font-size:72.448000pt;}
.fs16{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs22{font-size:80.000000pt;}
.fs23{font-size:80.128000pt;}
.fsd{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs5{font-size:101.120000pt;}
.fs19{font-size:101.191873pt;}
.fs4{font-size:101.248000pt;}
.fs18{font-size:101.326796pt;}
.fs8{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fs2a{font-size:112.000000pt;}
.fs2b{font-size:112.128000pt;}
.fs3{font-size:122.880000pt;}
.fs11{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs33{font-size:133.120000pt;}
.fs32{font-size:133.248000pt;}
.fs1d{font-size:149.120000pt;}
.fs1c{font-size:149.248000pt;}
.fs26{font-size:154.880000pt;}
.fs27{font-size:155.008000pt;}
.fs35{font-size:157.184710pt;}
.fs20{font-size:165.120000pt;}
.fs21{font-size:165.248000pt;}
.fse{font-size:181.120000pt;}
.fs12{font-size:181.248000pt;}
.fs30{font-size:192.000000pt;}
.fs31{font-size:192.128000pt;}
.fs7{font-size:266.880000pt;}
.fs2{font-size:309.120000pt;}
.fs1{font-size:309.248000pt;}
.fs36{font-size:320.000000pt;}
.fs1b{font-size:352.000000pt;}
.fsc{font-size:853.386667pt;}
.y0{bottom:0.000000pt;}
.y1ad{bottom:8.576000pt;}
.y1a3{bottom:11.040000pt;}
.y24f{bottom:15.104000pt;}
.yc{bottom:17.568000pt;}
.y1e{bottom:17.856000pt;}
.y239{bottom:19.552000pt;}
.yc6{bottom:24.352000pt;}
.y19d{bottom:25.346667pt;}
.y14b{bottom:25.952000pt;}
.y129{bottom:27.616000pt;}
.yae{bottom:28.832000pt;}
.y1d{bottom:29.056000pt;}
.y6b{bottom:29.792000pt;}
.ye0{bottom:30.752000pt;}
.y1c3{bottom:31.040000pt;}
.yc5{bottom:37.152000pt;}
.y1e7{bottom:38.912000pt;}
.ya7{bottom:41.920000pt;}
.y238{bottom:41.952000pt;}
.y131{bottom:44.416000pt;}
.y128{bottom:46.816000pt;}
.y113{bottom:50.464000pt;}
.y7a{bottom:53.760000pt;}
.y4{bottom:55.488000pt;}
.y3b{bottom:56.096000pt;}
.y14a{bottom:57.952000pt;}
.ya6{bottom:61.120000pt;}
.y1c2{bottom:63.680000pt;}
.yd4{bottom:65.632000pt;}
.y1d0{bottom:65.984000pt;}
.y127{bottom:66.016000pt;}
.y3{bottom:68.288000pt;}
.y112{bottom:69.664000pt;}
.y243{bottom:70.624000pt;}
.y237{bottom:71.552000pt;}
.y30{bottom:72.160000pt;}
.y19e{bottom:72.733333pt;}
.y79{bottom:72.960000pt;}
.y3a{bottom:75.296000pt;}
.y21a{bottom:78.944000pt;}
.ya5{bottom:80.352000pt;}
.y2{bottom:81.088000pt;}
.y178{bottom:81.312000pt;}
.y242{bottom:81.504000pt;}
.y130{bottom:82.816000pt;}
.yb{bottom:83.360000pt;}
.y6a{bottom:85.728000pt;}
.yfd{bottom:87.648000pt;}
.y149{bottom:89.952000pt;}
.y241{bottom:92.064000pt;}
.y1{bottom:93.888000pt;}
.y39{bottom:94.528000pt;}
.y198{bottom:95.776000pt;}
.y55{bottom:97.472000pt;}
.y49{bottom:97.536000pt;}
.ya4{bottom:99.552000pt;}
.y9e{bottom:99.680000pt;}
.yd2{bottom:99.936000pt;}
.y219{bottom:100.544000pt;}
.y12f{bottom:102.016000pt;}
.y208{bottom:102.048000pt;}
.y161{bottom:102.624000pt;}
.y126{bottom:104.416000pt;}
.y1be{bottom:105.536000pt;}
.y10f{bottom:106.656000pt;}
.yfc{bottom:106.880000pt;}
.ya{bottom:107.712000pt;}
.y69{bottom:108.160000pt;}
.yc2{bottom:110.240000pt;}
.y18b{bottom:111.904000pt;}
.y1cf{bottom:115.904000pt;}
.y197{bottom:117.696000pt;}
.y5d{bottom:118.336000pt;}
.y9d{bottom:118.880000pt;}
.y54{bottom:119.904000pt;}
.y48{bottom:119.936000pt;}
.y19f{bottom:120.160000pt;}
.yf1{bottom:121.344000pt;}
.y148{bottom:121.952000pt;}
.y174{bottom:122.304000pt;}
.yd1{bottom:123.136000pt;}
.y236{bottom:123.424000pt;}
.yef{bottom:124.832000pt;}
.y111{bottom:125.312000pt;}
.yfb{bottom:126.080000pt;}
.y96{bottom:126.208000pt;}
.y227{bottom:127.424000pt;}
.ydc{bottom:127.840000pt;}
.y1bd{bottom:127.936000pt;}
.yc1{bottom:129.440000pt;}
.y17d{bottom:129.600000pt;}
.y68{bottom:130.560000pt;}
.y207{bottom:130.880000pt;}
.ya9{bottom:131.232000pt;}
.y1f2{bottom:131.296000pt;}
.y7b{bottom:131.744000pt;}
.y160{bottom:132.224000pt;}
.y1ce{bottom:132.544000pt;}
.y19a{bottom:132.573333pt;}
.y38{bottom:132.928000pt;}
.y14f{bottom:135.386667pt;}
.y10e{bottom:135.453333pt;}
.y12e{bottom:140.413333pt;}
.y18a{bottom:140.706667pt;}
.y5c{bottom:140.733333pt;}
.y16a{bottom:141.213333pt;}
.y53{bottom:142.306667pt;}
.y47{bottom:142.333333pt;}
.y24e{bottom:142.720000pt;}
.y218{bottom:144.413333pt;}
.y13a{bottom:144.573333pt;}
.y9{bottom:144.826667pt;}
.y206{bottom:145.280000pt;}
.y95{bottom:145.440000pt;}
.y110{bottom:146.906667pt;}
.y1b2{bottom:146.946667pt;}
.yee{bottom:148.986667pt;}
.y235{bottom:149.346667pt;}
.y9c{bottom:150.080000pt;}
.y1bc{bottom:150.333333pt;}
.y97{bottom:150.786667pt;}
.y67{bottom:152.960000pt;}
.y26{bottom:153.186667pt;}
.y147{bottom:153.986667pt;}
.y98{bottom:158.013333pt;}
.y195{bottom:158.240000pt;}
.ybd{bottom:161.600000pt;}
.y17c{bottom:163.226667pt;}
.y169{bottom:163.613333pt;}
.y124{bottom:163.773333pt;}
.ya3{bottom:164.000000pt;}
.y10d{bottom:164.253333pt;}
.yfa{bottom:164.480000pt;}
.y94{bottom:164.640000pt;}
.yd0{bottom:165.533333pt;}
.y1cd{bottom:165.986667pt;}
.y1a0{bottom:167.546667pt;}
.y9b{bottom:169.280000pt;}
.y189{bottom:169.506667pt;}
.y22{bottom:170.146667pt;}
.y5b{bottom:171.133333pt;}
.y226{bottom:171.293333pt;}
.y125{bottom:172.133333pt;}
.y52{bottom:172.706667pt;}
.y46{bottom:172.733333pt;}
.yed{bottom:173.146667pt;}
.y205{bottom:174.080000pt;}
.y234{bottom:175.266667pt;}
.y18{bottom:179.106667pt;}
.ybc{bottom:180.800000pt;}
.y24d{bottom:181.120000pt;}
.yc0{bottom:182.013333pt;}
.y139{bottom:182.973333pt;}
.y66{bottom:183.360000pt;}
.y123{bottom:183.613333pt;}
.y13{bottom:184.733333pt;}
.y146{bottom:185.986667pt;}
.y199{bottom:186.720000pt;}
.y76{bottom:187.066667pt;}
.y93{bottom:188.480000pt;}
.ycf{bottom:188.733333pt;}
.y19b{bottom:189.466667pt;}
.y29{bottom:192.160000pt;}
.y168{bottom:194.013333pt;}
.y1de{bottom:196.506667pt;}
.y17b{bottom:196.826667pt;}
.yec{bottom:197.306667pt;}
.y188{bottom:198.306667pt;}
.y1f5{bottom:199.680000pt;}
.y15f{bottom:201.026667pt;}
.y138{bottom:202.173333pt;}
.y220{bottom:202.586667pt;}
.y204{bottom:202.880000pt;}
.y5a{bottom:205.573333pt;}
.y51{bottom:207.106667pt;}
.y45{bottom:207.173333pt;}
.y9a{bottom:207.680000pt;}
.y1d5{bottom:210.146667pt;}
.y194{bottom:210.466667pt;}
.ybf{bottom:210.813333pt;}
.yce{bottom:212.613333pt;}
.y1a1{bottom:214.946667pt;}
.y156{bottom:215.266667pt;}
.y75{bottom:216.506667pt;}
.y203{bottom:217.280000pt;}
.y65{bottom:217.760000pt;}
.y145{bottom:217.986667pt;}
.y24c{bottom:219.520000pt;}
.ya8{bottom:220.000000pt;}
.y2f{bottom:220.453333pt;}
.y14d{bottom:220.826667pt;}
.y137{bottom:221.413333pt;}
.y10c{bottom:221.893333pt;}
.y1ee{bottom:222.373333pt;}
.y1dd{bottom:222.906667pt;}
.y21f{bottom:224.186667pt;}
.y217{bottom:224.826667pt;}
.y37{bottom:225.306667pt;}
.y15e{bottom:226.626667pt;}
.y99{bottom:226.880000pt;}
.y187{bottom:227.106667pt;}
.y233{bottom:227.906667pt;}
.y59{bottom:227.973333pt;}
.y50{bottom:229.506667pt;}
.y44{bottom:229.573333pt;}
.y8{bottom:230.173333pt;}
.y193{bottom:230.626667pt;}
.y1d4{bottom:232.546667pt;}
.y1c1{bottom:233.373333pt;}
.y1bb{bottom:234.333333pt;}
.y17{bottom:234.533333pt;}
.ycd{bottom:235.013333pt;}
.ybb{bottom:239.613333pt;}
.y64{bottom:240.186667pt;}
.yf0{bottom:240.480000pt;}
.y136{bottom:240.613333pt;}
.y12{bottom:240.773333pt;}
.y1aa{bottom:242.053333pt;}
.y25{bottom:242.560000pt;}
.y122{bottom:243.813333pt;}
.y155{bottom:244.226667pt;}
.y1ed{bottom:245.573333pt;}
.y21e{bottom:245.786667pt;}
.y202{bottom:246.106667pt;}
.y17a{bottom:246.466667pt;}
.y21{bottom:246.973333pt;}
.yf4{bottom:249.253333pt;}
.y1dc{bottom:249.306667pt;}
.y144{bottom:249.986667pt;}
.y10b{bottom:250.693333pt;}
.y192{bottom:250.813333pt;}
.y1cc{bottom:251.133333pt;}
.y11a{bottom:251.426667pt;}
.y15d{bottom:252.226667pt;}
.y92{bottom:253.053333pt;}
.y232{bottom:253.853333pt;}
.y1d3{bottom:254.946667pt;}
.y1c0{bottom:255.773333pt;}
.y19c{bottom:255.840000pt;}
.ydb{bottom:255.933333pt;}
.y33{bottom:256.320000pt;}
.y1ba{bottom:256.733333pt;}
.ycc{bottom:257.413333pt;}
.y3d{bottom:257.506667pt;}
.y24b{bottom:257.946667pt;}
.y58{bottom:258.373333pt;}
.y2e{bottom:258.853333pt;}
.y135{bottom:259.813333pt;}
.y4f{bottom:259.933333pt;}
.y43{bottom:259.973333pt;}
.y1af{bottom:260.346667pt;}
.y201{bottom:260.506667pt;}
.y1a2{bottom:262.373333pt;}
.y63{bottom:262.586667pt;}
.y167{bottom:262.853333pt;}
.y121{bottom:263.013333pt;}
.y36{bottom:263.706667pt;}
.y1a9{bottom:264.453333pt;}
.y1f4{bottom:264.480000pt;}
.y151{bottom:264.706667pt;}
.y1ec{bottom:264.773333pt;}
.y12c{bottom:266.466667pt;}
.y216{bottom:267.386667pt;}
.y225{bottom:267.866667pt;}
.y21d{bottom:268.026667pt;}
.yba{bottom:268.453333pt;}
.y8f{bottom:269.946667pt;}
.y91{bottom:272.253333pt;}
.y1cb{bottom:274.013333pt;}
.y179{bottom:275.293333pt;}
.y3e{bottom:275.333333pt;}
.y1db{bottom:275.706667pt;}
.y1d2{bottom:277.373333pt;}
.y15c{bottom:277.826667pt;}
.y1bf{bottom:278.173333pt;}
.y1b9{bottom:279.133333pt;}
.y8e{bottom:279.386667pt;}
.y10a{bottom:279.493333pt;}
.yf3{bottom:279.653333pt;}
.y231{bottom:279.773333pt;}
.y119{bottom:280.226667pt;}
.y173{bottom:281.413333pt;}
.y143{bottom:281.986667pt;}
.y120{bottom:282.213333pt;}
.y150{bottom:283.906667pt;}
.y1eb{bottom:283.973333pt;}
.y186{bottom:284.733333pt;}
.y166{bottom:285.253333pt;}
.y1c6{bottom:285.533333pt;}
.y1a5{bottom:286.746667pt;}
.y1a8{bottom:286.853333pt;}
.y8d{bottom:287.133333pt;}
.y28{bottom:287.426667pt;}
.y215{bottom:289.026667pt;}
.y200{bottom:289.306667pt;}
.y224{bottom:289.466667pt;}
.y240{bottom:290.426667pt;}
.y191{bottom:291.133333pt;}
.y90{bottom:291.453333pt;}
.ya2{bottom:292.066667pt;}
.y57{bottom:292.773333pt;}
.y62{bottom:292.986667pt;}
.yb3{bottom:293.186667pt;}
.yea{bottom:294.213333pt;}
.y4e{bottom:294.333333pt;}
.y16{bottom:295.040000pt;}
.y11{bottom:296.773333pt;}
.yb9{bottom:297.253333pt;}
.y84{bottom:298.400000pt;}
.y1d1{bottom:299.773333pt;}
.y11f{bottom:301.413333pt;}
.y12d{bottom:302.053333pt;}
.ycb{bottom:302.373333pt;}
.y24a{bottom:302.906667pt;}
.y172{bottom:303.040000pt;}
.y1ea{bottom:303.173333pt;}
.y15b{bottom:303.453333pt;}
.y1a{bottom:303.493333pt;}
.y1ff{bottom:303.706667pt;}
.y14e{bottom:304.640000pt;}
.y8c{bottom:306.333333pt;}
.y165{bottom:307.653333pt;}
.y1f6{bottom:307.680000pt;}
.y109{bottom:308.293333pt;}
.y1a4{bottom:308.346667pt;}
.y118{bottom:309.026667pt;}
.y1a7{bottom:309.253333pt;}
.y214{bottom:310.626667pt;}
.y190{bottom:311.293333pt;}
.ya1{bottom:311.906667pt;}
.y185{bottom:313.533333pt;}
.y7{bottom:313.693333pt;}
.y142{bottom:314.013333pt;}
.y56{bottom:315.173333pt;}
.y4d{bottom:316.733333pt;}
.y42{bottom:316.773333pt;}
.y1da{bottom:317.466667pt;}
.y1fe{bottom:318.106667pt;}
.ye9{bottom:318.400000pt;}
.y12b{bottom:320.613333pt;}
.y11e{bottom:321.253333pt;}
.y20{bottom:323.773333pt;}
.y171{bottom:324.640000pt;}
.y8b{bottom:325.533333pt;}
.yca{bottom:325.573333pt;}
.yb8{bottom:326.053333pt;}
.y1e9{bottom:326.373333pt;}
.y182{bottom:326.906667pt;}
.y61{bottom:327.386667pt;}
.y134{bottom:328.613333pt;}
.y23f{bottom:328.826667pt;}
.y15a{bottom:329.053333pt;}
.y1f3{bottom:329.306667pt;}
.y164{bottom:330.053333pt;}
.y230{bottom:330.813333pt;}
.y18f{bottom:331.453333pt;}
.y1a6{bottom:331.680000pt;}
.y74{bottom:331.746667pt;}
.y24{bottom:331.933333pt;}
.y21c{bottom:332.226667pt;}
.y1fd{bottom:332.506667pt;}
.y213{bottom:332.866667pt;}
.y223{bottom:333.306667pt;}
.y32{bottom:335.040000pt;}
.y2d{bottom:335.680000pt;}
.y108{bottom:337.120000pt;}
.y117{bottom:337.826667pt;}
.y1d9{bottom:338.266667pt;}
.yfe{bottom:339.133333pt;}
.yf9{bottom:339.426667pt;}
.y12a{bottom:340.480000pt;}
.y35{bottom:340.546667pt;}
.y249{bottom:341.306667pt;}
.y103{bottom:342.333333pt;}
.yda{bottom:343.133333pt;}
.y1fc{bottom:346.906667pt;}
.y141{bottom:346.973333pt;}
.y19{bottom:347.333333pt;}
.y133{bottom:347.840000pt;}
.y8a{bottom:349.373333pt;}
.yc9{bottom:349.440000pt;}
.y60{bottom:349.786667pt;}
.y6e{bottom:351.293333pt;}
.y18e{bottom:351.613333pt;}
.y163{bottom:352.480000pt;}
.y10{bottom:352.800000pt;}
.y21b{bottom:353.826667pt;}
.y159{bottom:354.653333pt;}
.yb7{bottom:354.853333pt;}
.y22f{bottom:356.733333pt;}
.y20a{bottom:357.053333pt;}
.yf8{bottom:358.626667pt;}
.y1b8{bottom:358.693333pt;}
.y73{bottom:359.906667pt;}
.y181{bottom:360.546667pt;}
.y1fb{bottom:361.306667pt;}
.yeb{bottom:361.533333pt;}
.yaf{bottom:363.106667pt;}
.y6d{bottom:364.506667pt;}
.y1d8{bottom:364.666667pt;}
.y23e{bottom:367.226667pt;}
.y3c{bottom:367.586667pt;}
.y132{bottom:367.680000pt;}
.y1f1{bottom:368.960000pt;}
.y102{bottom:370.240000pt;}
.y184{bottom:371.173333pt;}
.yd9{bottom:371.973333pt;}
.y1e8{bottom:372.640000pt;}
.y31{bottom:373.440000pt;}
.y2c{bottom:374.080000pt;}
.y14{bottom:374.426667pt;}
.ya0{bottom:375.706667pt;}
.y1fa{bottom:375.746667pt;}
.y222{bottom:375.906667pt;}
.y212{bottom:376.066667pt;}
.y154{bottom:376.933333pt;}
.yf7{bottom:377.826667pt;}
.y140{bottom:378.013333pt;}
.y34{bottom:378.946667pt;}
.y1b0{bottom:379.173333pt;}
.y170{bottom:379.333333pt;}
.y4c{bottom:379.493333pt;}
.y41{bottom:379.520000pt;}
.y20b{bottom:379.653333pt;}
.y248{bottom:379.746667pt;}
.y158{bottom:380.253333pt;}
.y1b7{bottom:381.120000pt;}
.y27{bottom:382.693333pt;}
.y22e{bottom:383.493333pt;}
.yb6{bottom:383.653333pt;}
.yf{bottom:384.800000pt;}
.y162{bottom:386.880000pt;}
.y6c{bottom:386.906667pt;}
.y1ca{bottom:388.506667pt;}
.y72{bottom:389.346667pt;}
.y101{bottom:389.440000pt;}
.y1f9{bottom:390.146667pt;}
.y22a{bottom:390.880000pt;}
.y1d7{bottom:391.106667pt;}
.y180{bottom:394.146667pt;}
.yc8{bottom:395.040000pt;}
.y209{bottom:395.493333pt;}
.y107{bottom:395.520000pt;}
.y116{bottom:396.253333pt;}
.yf6{bottom:397.026667pt;}
.y6{bottom:397.253333pt;}
.y221{bottom:397.506667pt;}
.y211{bottom:397.666667pt;}
.y1f{bottom:400.613333pt;}
.yd8{bottom:400.773333pt;}
.y153{bottom:402.533333pt;}
.y1b6{bottom:403.520000pt;}
.yb2{bottom:403.680000pt;}
.y23d{bottom:405.666667pt;}
.y4b{bottom:408.293333pt;}
.y40{bottom:408.320000pt;}
.y100{bottom:408.640000pt;}
.y13f{bottom:410.013333pt;}
.y1c9{bottom:410.906667pt;}
.y22b{bottom:411.746667pt;}
.y1f0{bottom:412.186667pt;}
.ybe{bottom:412.480000pt;}
.y5f{bottom:412.546667pt;}
.ye7{bottom:416.960000pt;}
.yf2{bottom:417.280000pt;}
.yc7{bottom:417.440000pt;}
.y1d6{bottom:417.506667pt;}
.y1f8{bottom:417.666667pt;}
.y177{bottom:420.800000pt;}
.y23{bottom:421.306667pt;}
.y16f{bottom:421.346667pt;}
.y16e{bottom:421.626667pt;}
.y106{bottom:424.320000pt;}
.y247{bottom:424.866667pt;}
.y115{bottom:425.053333pt;}
.y17f{bottom:427.746667pt;}
.yff{bottom:427.840000pt;}
.y152{bottom:429.413333pt;}
.yd7{bottom:429.573333pt;}
.y1e4{bottom:430.013333pt;}
.y1c8{bottom:433.346667pt;}
.y1ef{bottom:433.786667pt;}
.y229{bottom:434.080000pt;}
.y228{bottom:434.533333pt;}
.y22d{bottom:435.333333pt;}
.yb1{bottom:435.680000pt;}
.y157{bottom:436.133333pt;}
.y4a{bottom:437.093333pt;}
.y3f{bottom:437.120000pt;}
.y15{bottom:438.720000pt;}
.y78{bottom:438.946667pt;}
.ye{bottom:440.800000pt;}
.ye6{bottom:441.146667pt;}
.y5e{bottom:441.346667pt;}
.y20e{bottom:441.853333pt;}
.y13e{bottom:442.053333pt;}
.yb5{bottom:442.080000pt;}
.y16d{bottom:443.866667pt;}
.y23c{bottom:444.066667pt;}
.yf5{bottom:445.693333pt;}
.yad{bottom:446.693333pt;}
.y1f7{bottom:446.946667pt;}
.y7f{bottom:447.680000pt;}
.y105{bottom:453.146667pt;}
.y114{bottom:453.853333pt;}
.y1c7{bottom:456.226667pt;}
.y77{bottom:458.173333pt;}
.yd6{bottom:458.373333pt;}
.y22c{bottom:461.253333pt;}
.ye5{bottom:461.786667pt;}
.y246{bottom:463.266667pt;}
.yb0{bottom:467.706667pt;}
.y1e6{bottom:469.213333pt;}
.ydf{bottom:470.053333pt;}
.yc4{bottom:471.173333pt;}
.y13d{bottom:475.013333pt;}
.y1b3{bottom:477.306667pt;}
.y1b1{bottom:478.266667pt;}
.y250{bottom:480.226667pt;}
.y176{bottom:480.253333pt;}
.y16b{bottom:480.706667pt;}
.y5{bottom:480.800000pt;}
.y2b{bottom:485.346667pt;}
.y82{bottom:489.280000pt;}
.y20d{bottom:492.666667pt;}
.yac{bottom:492.773333pt;}
.y71{bottom:493.373333pt;}
.y83{bottom:494.586667pt;}
.yd5{bottom:498.106667pt;}
.ye8{bottom:504.933333pt;}
.y6f{bottom:506.906667pt;}
.y9f{bottom:508.026667pt;}
.y81{bottom:508.480000pt;}
.y210{bottom:508.666667pt;}
.yab{bottom:512.960000pt;}
.y1e5{bottom:513.853333pt;}
.yde{bottom:514.720000pt;}
.y1c{bottom:516.546667pt;}
.yc3{bottom:520.160000pt;}
.y89{bottom:521.786667pt;}
.y7e{bottom:523.293333pt;}
.y1b5{bottom:524.093333pt;}
.y175{bottom:524.893333pt;}
.y104{bottom:526.720000pt;}
.y245{bottom:528.706667pt;}
.yd{bottom:528.733333pt;}
.y1c5{bottom:529.346667pt;}
.y1e3{bottom:532.506667pt;}
.yaa{bottom:533.120000pt;}
.y2a{bottom:534.306667pt;}
.y13c{bottom:538.053333pt;}
.y16c{bottom:538.266667pt;}
.y88{bottom:540.986667pt;}
.y23b{bottom:542.626667pt;}
.y20c{bottom:544.506667pt;}
.y70{bottom:545.826667pt;}
.y18d{bottom:551.546667pt;}
.y1ae{bottom:553.120000pt;}
.yb4{bottom:556.986667pt;}
.ye3{bottom:559.333333pt;}
.ydd{bottom:559.360000pt;}
.y20f{bottom:560.506667pt;}
.y1e2{bottom:560.826667pt;}
.y196{bottom:560.960000pt;}
.y80{bottom:563.173333pt;}
.yd3{bottom:565.280000pt;}
.y1b{bottom:565.506667pt;}
.y244{bottom:569.186667pt;}
.y1b4{bottom:573.093333pt;}
.y1c4{bottom:573.986667pt;}
.y13b{bottom:574.240000pt;}
.y23a{bottom:578.653333pt;}
.ye2{bottom:583.493333pt;}
.y11c{bottom:588.253333pt;}
.y1e1{bottom:590.106667pt;}
.y7d{bottom:591.653333pt;}
.ye1{bottom:607.653333pt;}
.y7c{bottom:614.053333pt;}
.y1e0{bottom:618.906667pt;}
.y11b{bottom:620.733333pt;}
.y1ac{bottom:621.440000pt;}
.y87{bottom:631.133333pt;}
.y183{bottom:634.906667pt;}
.y17e{bottom:639.293333pt;}
.y1df{bottom:648.226667pt;}
.y86{bottom:650.333333pt;}
.ye4{bottom:650.813333pt;}
.y14c{bottom:655.013333pt;}
.y18c{bottom:663.453333pt;}
.y85{bottom:669.533333pt;}
.y11d{bottom:670.373333pt;}
.y1ab{bottom:670.426667pt;}
.h52{height:29.330000pt;}
.h37{height:33.392250pt;}
.h7{height:38.715000pt;}
.h10{height:38.848500pt;}
.h49{height:43.453125pt;}
.h1{height:44.722500pt;}
.h40{height:50.062500pt;}
.h21{height:55.402500pt;}
.h2a{height:57.375000pt;}
.h28{height:61.410000pt;}
.h45{height:61.543500pt;}
.h42{height:62.079750pt;}
.h41{height:62.572500pt;}
.h3a{height:64.833750pt;}
.h4f{height:64.948500pt;}
.h31{height:65.434062pt;}
.h3b{height:65.469375pt;}
.h48{height:65.585250pt;}
.h17{height:66.750000pt;}
.h1b{height:66.883500pt;}
.h1f{height:67.128750pt;}
.h43{height:67.243500pt;}
.h4e{height:67.786875pt;}
.h44{height:72.090000pt;}
.h4a{height:72.421875pt;}
.h38{height:75.427500pt;}
.h22{height:75.465000pt;}
.h32{height:75.561000pt;}
.h36{height:76.308750pt;}
.h1c{height:78.097500pt;}
.h4b{height:78.121000pt;}
.h1d{height:78.231000pt;}
.h47{height:78.562500pt;}
.h2f{height:83.437500pt;}
.h30{height:83.571000pt;}
.h1a{height:84.667000pt;}
.h3e{height:86.062500pt;}
.hb{height:86.906250pt;}
.hc{height:87.022125pt;}
.h46{height:87.466250pt;}
.he{height:88.777500pt;}
.h35{height:88.911000pt;}
.h2c{height:91.541250pt;}
.h20{height:91.606315pt;}
.h1e{height:91.728457pt;}
.h15{height:95.816250pt;}
.h55{height:95.931000pt;}
.h9{height:96.755625pt;}
.ha{height:96.871500pt;}
.h26{height:100.125000pt;}
.h27{height:100.258500pt;}
.h6{height:105.465000pt;}
.h5{height:105.598500pt;}
.h14{height:111.472500pt;}
.h2b{height:111.606000pt;}
.h13{height:114.864750pt;}
.h18{height:115.875000pt;}
.h19{height:115.990875pt;}
.h3c{height:116.812500pt;}
.h3d{height:116.946000pt;}
.h51{height:120.510000pt;}
.h50{height:120.625875pt;}
.h4{height:128.160000pt;}
.h12{height:133.500000pt;}
.h11{height:133.633500pt;}
.h53{height:134.994375pt;}
.h25{height:137.341042pt;}
.h33{height:140.208750pt;}
.h34{height:140.324625pt;}
.h54{height:142.295143pt;}
.h2d{height:149.478750pt;}
.h2e{height:149.594625pt;}
.h29{height:155.661000pt;}
.h39{height:163.267500pt;}
.hf{height:163.963125pt;}
.h16{height:164.079000pt;}
.h23{height:165.065000pt;}
.h4c{height:173.812500pt;}
.h4d{height:173.928375pt;}
.h8{height:241.599375pt;}
.h3{height:279.838125pt;}
.h2{height:279.954000pt;}
.h56{height:333.750000pt;}
.h3f{height:336.000000pt;}
.h24{height:354.750000pt;}
.h0{height:720.000000pt;}
.hd{height:772.548281pt;}
.w2{width:595.360000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x94{left:6.431986pt;}
.x8d{left:8.800000pt;}
.x43{left:15.359986pt;}
.x41{left:21.119986pt;}
.x1f{left:22.687986pt;}
.x32{left:25.023986pt;}
.x3b{left:33.375986pt;}
.x42{left:34.559986pt;}
.xbf{left:36.159986pt;}
.x40{left:37.919986pt;}
.x44{left:39.999986pt;}
.x3a{left:42.655986pt;}
.x3f{left:45.919986pt;}
.x56{left:52.863986pt;}
.x11{left:53.823986pt;}
.x16{left:56.575986pt;}
.x31{left:59.103986pt;}
.x33{left:60.383986pt;}
.x70{left:62.175986pt;}
.xc2{left:63.327986pt;}
.x8f{left:64.320000pt;}
.x62{left:67.999986pt;}
.x76{left:69.791986pt;}
.x6f{left:72.895986pt;}
.x13{left:74.143986pt;}
.x7b{left:75.615986pt;}
.x3c{left:78.655986pt;}
.x3{left:84.991986pt;}
.x68{left:86.303986pt;}
.xc1{left:89.663986pt;}
.xba{left:90.751986pt;}
.x14{left:94.655986pt;}
.x8e{left:97.093333pt;}
.xc3{left:98.623986pt;}
.x88{left:105.791986pt;}
.x12{left:115.935986pt;}
.x75{left:119.199986pt;}
.x48{left:120.383986pt;}
.x73{left:121.823986pt;}
.x5e{left:122.783986pt;}
.x4{left:124.639986pt;}
.x89{left:125.951986pt;}
.x17{left:127.199986pt;}
.x2{left:128.479986pt;}
.x27{left:130.975986pt;}
.x7a{left:132.287986pt;}
.xbb{left:134.533319pt;}
.x26{left:136.026652pt;}
.x55{left:138.399986pt;}
.x6{left:139.546652pt;}
.x97{left:140.639986pt;}
.x58{left:143.679986pt;}
.x24{left:145.599986pt;}
.x5d{left:151.746652pt;}
.x86{left:154.719986pt;}
.x8a{left:157.946652pt;}
.x25{left:160.639986pt;}
.x71{left:162.399986pt;}
.x77{left:164.453319pt;}
.x54{left:167.013319pt;}
.x9{left:169.119986pt;}
.x78{left:170.533319pt;}
.x69{left:172.866652pt;}
.x72{left:177.599986pt;}
.xc0{left:179.359986pt;}
.xa{left:189.919986pt;}
.x90{left:202.906667pt;}
.x5{left:204.093319pt;}
.x47{left:206.373319pt;}
.x21{left:209.346652pt;}
.x38{left:215.653319pt;}
.x6a{left:220.866652pt;}
.xb{left:221.759986pt;}
.x6d{left:223.386652pt;}
.x20{left:224.706652pt;}
.xc{left:230.559986pt;}
.x39{left:234.853319pt;}
.x2d{left:237.253319pt;}
.x30{left:238.533319pt;}
.xbc{left:241.599986pt;}
.x6e{left:242.586652pt;}
.x59{left:248.093319pt;}
.x15{left:249.466652pt;}
.x28{left:252.666652pt;}
.x10{left:257.026652pt;}
.x93{left:264.573319pt;}
.x98{left:272.706652pt;}
.x9a{left:274.626652pt;}
.x9f{left:277.186652pt;}
.x9c{left:281.826652pt;}
.x99{left:283.746652pt;}
.x7d{left:285.533319pt;}
.x9d{left:289.666652pt;}
.x8b{left:299.933333pt;}
.xbe{left:301.786652pt;}
.x9e{left:304.226652pt;}
.x9b{left:307.426652pt;}
.x65{left:317.506652pt;}
.xb8{left:323.333319pt;}
.x61{left:326.493319pt;}
.x7e{left:327.839986pt;}
.x7f{left:332.639986pt;}
.x95{left:347.266652pt;}
.x4a{left:349.439986pt;}
.x1e{left:352.506652pt;}
.x45{left:365.373319pt;}
.x50{left:370.266652pt;}
.x7{left:381.626652pt;}
.x8{left:389.346652pt;}
.x18{left:394.853319pt;}
.x19{left:404.133319pt;}
.x2a{left:411.426652pt;}
.x2c{left:412.773319pt;}
.x2b{left:419.013319pt;}
.x29{left:420.226652pt;}
.x36{left:423.359986pt;}
.x6c{left:425.253319pt;}
.x3d{left:426.879986pt;}
.x49{left:450.626652pt;}
.x57{left:453.626652pt;}
.xb9{left:455.933319pt;}
.x37{left:461.146652pt;}
.x3e{left:464.639986pt;}
.x51{left:467.746652pt;}
.x52{left:469.346652pt;}
.x74{left:471.386652pt;}
.x23{left:472.706652pt;}
.x8c{left:480.506667pt;}
.x53{left:487.106652pt;}
.x7c{left:493.119986pt;}
.x1a{left:496.933319pt;}
.xa5{left:498.973319pt;}
.xa1{left:503.039986pt;}
.xa0{left:504.959986pt;}
.x5b{left:508.319986pt;}
.x4e{left:509.506652pt;}
.x4f{left:511.746652pt;}
.xa4{left:516.639986pt;}
.xbd{left:517.986652pt;}
.xa3{left:519.039986pt;}
.x5c{left:520.319986pt;}
.xa2{left:523.039986pt;}
.x64{left:527.266652pt;}
.xd{left:529.826652pt;}
.xa6{left:530.879986pt;}
.xb4{left:539.546652pt;}
.xaf{left:543.226652pt;}
.xb1{left:545.146652pt;}
.xf{left:549.666652pt;}
.xb2{left:552.186652pt;}
.xb5{left:553.626652pt;}
.xa7{left:560.799986pt;}
.xae{left:563.546652pt;}
.x2f{left:570.813319pt;}
.x79{left:573.146652pt;}
.x96{left:574.106652pt;}
.xb3{left:587.266652pt;}
.xb0{left:588.826652pt;}
.x34{left:598.973319pt;}
.x46{left:610.906652pt;}
.xe{left:613.693319pt;}
.x63{left:617.026652pt;}
.x35{left:618.813319pt;}
.x2e{left:634.146652pt;}
.x4b{left:636.546652pt;}
.x5f{left:644.959986pt;}
.x4c{left:648.706652pt;}
.x80{left:651.199986pt;}
.x1b{left:653.919986pt;}
.x4d{left:656.386652pt;}
.x1c{left:663.199986pt;}
.x81{left:674.399986pt;}
.x60{left:684.639986pt;}
.x67{left:685.733319pt;}
.x22{left:694.333319pt;}
.x85{left:697.786652pt;}
.x82{left:710.973319pt;}
.x91{left:727.933319pt;}
.xa9{left:730.053319pt;}
.xa8{left:731.973319pt;}
.x83{left:738.333319pt;}
.xb6{left:743.333319pt;}
.x1{left:745.506652pt;}
.x5a{left:747.066652pt;}
.xaa{left:750.053319pt;}
.xab{left:753.093319pt;}
.x92{left:758.013319pt;}
.xad{left:759.333319pt;}
.x84{left:770.013319pt;}
.x1d{left:784.666652pt;}
.xb7{left:787.813319pt;}
.xac{left:793.573319pt;}
.x6b{left:794.719986pt;}
.x87{left:818.466652pt;}
.x66{left:833.573319pt;}
}




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