
    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_0545a34640293c6bf9bad39e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995605;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_e45a12070bcea572cf1303b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046875;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_6cfcda68d3289eb00644b48b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000977;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_ce72dd519cee6e1d035ec5e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:2.321000;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_9b491a9d658aad6be2ff0de0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.187988;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;}
.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);}
.v12{vertical-align:-65.622000px;}
.v1a{vertical-align:-21.840000px;}
.v1{vertical-align:-19.470000px;}
.v8{vertical-align:-10.194000px;}
.v19{vertical-align:-2.370000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:4.320000px;}
.v15{vertical-align:7.410000px;}
.v4{vertical-align:9.276000px;}
.v7{vertical-align:22.782000px;}
.vf{vertical-align:24.288000px;}
.v16{vertical-align:27.114000px;}
.vb{vertical-align:28.620000px;}
.vd{vertical-align:32.064000px;}
.v9{vertical-align:34.608000px;}
.v3{vertical-align:40.800000px;}
.v6{vertical-align:43.176000px;}
.v18{vertical-align:46.572000px;}
.v5{vertical-align:50.076000px;}
.v2{vertical-align:53.370000px;}
.va{vertical-align:82.698000px;}
.v10{vertical-align:87.972000px;}
.v11{vertical-align:106.272000px;}
.vc{vertical-align:107.448000px;}
.v14{vertical-align:136.068000px;}
.ve{vertical-align:148.356000px;}
.v13{vertical-align:173.070000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000525px;}
.ls57{letter-spacing:0.001500px;}
.ls5f{letter-spacing:0.002700px;}
.lsa{letter-spacing:0.002775px;}
.ls50{letter-spacing:0.003000px;}
.ls3d{letter-spacing:0.003075px;}
.ls2a{letter-spacing:0.003150px;}
.ls23{letter-spacing:0.004650px;}
.ls4{letter-spacing:0.004800px;}
.ls5d{letter-spacing:0.005475px;}
.ls58{letter-spacing:0.009790px;}
.ls56{letter-spacing:0.013039px;}
.ls1b{letter-spacing:0.013058px;}
.ls51{letter-spacing:0.015235px;}
.ls27{letter-spacing:1.025925px;}
.ls1f{letter-spacing:1.893000px;}
.ls32{letter-spacing:1.964775px;}
.ls9{letter-spacing:1.970775px;}
.ls4b{letter-spacing:2.984173px;}
.ls11{letter-spacing:2.984785px;}
.ls35{letter-spacing:2.985469px;}
.ls18{letter-spacing:2.986076px;}
.ls22{letter-spacing:2.988880px;}
.ls20{letter-spacing:2.990173px;}
.ls14{letter-spacing:2.990785px;}
.ls12{letter-spacing:2.992076px;}
.ls33{letter-spacing:3.200278px;}
.ls46{letter-spacing:4.251150px;}
.ls3c{letter-spacing:4.257150px;}
.ls5a{letter-spacing:7.177500px;}
.lsb{letter-spacing:10.160173px;}
.ls1e{letter-spacing:16.124173px;}
.ls10{letter-spacing:17.499150px;}
.ls24{letter-spacing:17.507426px;}
.ls54{letter-spacing:17.510705px;}
.ls55{letter-spacing:17.518650px;}
.ls25{letter-spacing:17.520150px;}
.ls38{letter-spacing:19.732345px;}
.ls4e{letter-spacing:20.504173px;}
.ls17{letter-spacing:20.504785px;}
.ls5c{letter-spacing:20.508880px;}
.ls37{letter-spacing:20.510173px;}
.ls4f{letter-spacing:21.894150px;}
.ls3a{letter-spacing:21.900150px;}
.ls7{letter-spacing:24.696150px;}
.ls1c{letter-spacing:24.885469px;}
.ls41{letter-spacing:24.886076px;}
.ls39{letter-spacing:24.886453px;}
.ls4d{letter-spacing:24.890173px;}
.ls3f{letter-spacing:24.890785px;}
.ls21{letter-spacing:24.891469px;}
.ls19{letter-spacing:28.084337px;}
.ls28{letter-spacing:29.068275px;}
.ls29{letter-spacing:29.070150px;}
.ls16{letter-spacing:29.463616px;}
.ls44{letter-spacing:32.055469px;}
.ls2e{letter-spacing:32.060173px;}
.ls30{letter-spacing:32.061469px;}
.ls52{letter-spacing:32.715786px;}
.ls0{letter-spacing:39.403669px;}
.ls42{letter-spacing:40.668150px;}
.ls40{letter-spacing:40.776150px;}
.ls2b{letter-spacing:51.920173px;}
.ls48{letter-spacing:53.196150px;}
.ls2f{letter-spacing:61.476150px;}
.ls2{letter-spacing:61.480275px;}
.lsf{letter-spacing:64.455616px;}
.ls49{letter-spacing:65.340150px;}
.ls59{letter-spacing:65.469790px;}
.ls6{letter-spacing:65.751616px;}
.ls31{letter-spacing:67.704150px;}
.ls3{letter-spacing:70.131616px;}
.lse{letter-spacing:81.753616px;}
.ls1d{letter-spacing:83.502150px;}
.ls13{letter-spacing:86.133616px;}
.ls15{letter-spacing:86.355616px;}
.ls4c{letter-spacing:96.630150px;}
.ls5e{letter-spacing:102.682650px;}
.ls5b{letter-spacing:102.790650px;}
.ls26{letter-spacing:118.978650px;}
.ls45{letter-spacing:121.776150px;}
.ls2d{letter-spacing:134.007616px;}
.ls3b{letter-spacing:135.360150px;}
.ls1a{letter-spacing:137.520150px;}
.ls5{letter-spacing:138.381616px;}
.lsc{letter-spacing:138.387616px;}
.ls53{letter-spacing:141.858150px;}
.ls3e{letter-spacing:171.717469px;}
.ls2c{letter-spacing:198.402150px;}
.ls47{letter-spacing:203.007469px;}
.ls43{letter-spacing:211.779469px;}
.ls36{letter-spacing:212.334150px;}
.lsd{letter-spacing:228.816150px;}
.ls4a{letter-spacing:249.600150px;}
.ls34{letter-spacing:326.424150px;}
.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;}
}
.ws3{word-spacing:-82.352292px;}
.ws7{word-spacing:-72.345274px;}
.ws3d{word-spacing:-54.850955px;}
.ws9{word-spacing:-42.866446px;}
.wsa{word-spacing:-42.177828px;}
.wsa4{word-spacing:-40.320034px;}
.ws93{word-spacing:-40.254579px;}
.ws3b{word-spacing:-40.123670px;}
.ws64{word-spacing:-39.570150px;}
.ws7b{word-spacing:-39.534578px;}
.ws3c{word-spacing:-39.469124px;}
.ws6{word-spacing:-39.225321px;}
.wsdc{word-spacing:-39.207305px;}
.wsc5{word-spacing:-39.076396px;}
.wsff{word-spacing:-39.010942px;}
.ws92{word-spacing:-38.880032px;}
.ws3a{word-spacing:-38.749123px;}
.wsec{word-spacing:-38.683669px;}
.ws1e{word-spacing:-38.618214px;}
.wsfe{word-spacing:-38.487305px;}
.ws5b{word-spacing:-38.290941px;}
.wsa0{word-spacing:-38.225486px;}
.wse2{word-spacing:-37.963668px;}
.ws16{word-spacing:-37.898213px;}
.ws15{word-spacing:-37.832759px;}
.wsae{word-spacing:-37.767304px;}
.ws108{word-spacing:-37.505486px;}
.ws39{word-spacing:-37.440031px;}
.wsfd{word-spacing:-37.374577px;}
.wsfa{word-spacing:-37.323386px;}
.ws54{word-spacing:-37.309122px;}
.wsfc{word-spacing:-37.243667px;}
.wseb{word-spacing:-37.178213px;}
.ws85{word-spacing:-37.112758px;}
.ws59{word-spacing:-36.785485px;}
.ws9f{word-spacing:-36.720031px;}
.ws36{word-spacing:-36.523667px;}
.ws1b{word-spacing:-36.327303px;}
.ws61{word-spacing:-36.261848px;}
.ws60{word-spacing:-36.200081px;}
.ws6e{word-spacing:-36.130939px;}
.wsa2{word-spacing:-35.869121px;}
.ws38{word-spacing:-35.803666px;}
.ws105{word-spacing:-35.738212px;}
.ws66{word-spacing:-35.607302px;}
.ws44{word-spacing:-35.410939px;}
.wsc8{word-spacing:-35.345484px;}
.ws5c{word-spacing:-35.280029px;}
.wsb9{word-spacing:-35.214575px;}
.ws27{word-spacing:-35.149120px;}
.ws5d{word-spacing:-35.148288px;}
.wsc9{word-spacing:-35.018211px;}
.ws50{word-spacing:-35.016136px;}
.ws4e{word-spacing:-34.952756px;}
.ws1f{word-spacing:-34.821847px;}
.ws6b{word-spacing:-34.756393px;}
.ws6c{word-spacing:-34.731373px;}
.ws4c{word-spacing:-34.690938px;}
.wsbb{word-spacing:-34.560029px;}
.wsa6{word-spacing:-34.429120px;}
.wsda{word-spacing:-34.363665px;}
.wscc{word-spacing:-34.298210px;}
.ws6a{word-spacing:-34.249310px;}
.ws69{word-spacing:-34.232756px;}
.ws51{word-spacing:-34.167301px;}
.ws53{word-spacing:-34.108151px;}
.wsc{word-spacing:-34.101847px;}
.ws4f{word-spacing:-34.074305px;}
.wsbc{word-spacing:-34.058251px;}
.wsbd{word-spacing:-34.038547px;}
.wsd{word-spacing:-34.037184px;}
.ws5{word-spacing:-34.036392px;}
.wsbe{word-spacing:-33.955595px;}
.ws7e{word-spacing:-33.905483px;}
.ws49{word-spacing:-33.774574px;}
.ws5f{word-spacing:-33.709119px;}
.ws43{word-spacing:-33.643664px;}
.wsba{word-spacing:-33.578210px;}
.ws32{word-spacing:-33.378704px;}
.ws78{word-spacing:-33.316391px;}
.ws104{word-spacing:-33.286070px;}
.ws14{word-spacing:-33.250937px;}
.ws102{word-spacing:-33.185482px;}
.wsf4{word-spacing:-33.120028px;}
.wsfb{word-spacing:-33.054573px;}
.ws6d{word-spacing:-32.923664px;}
.ws40{word-spacing:-32.792755px;}
.wscb{word-spacing:-32.727300px;}
.wsf7{word-spacing:-32.661845px;}
.ws6f{word-spacing:-32.596391px;}
.wsac{word-spacing:-32.530936px;}
.ws7a{word-spacing:-32.465482px;}
.ws7c{word-spacing:-32.400027px;}
.ws52{word-spacing:-32.334572px;}
.ws13{word-spacing:-32.269118px;}
.ws12{word-spacing:-32.203663px;}
.wsa7{word-spacing:-32.138209px;}
.ws2a{word-spacing:-32.072754px;}
.ws1c{word-spacing:-32.007299px;}
.ws7d{word-spacing:-31.941845px;}
.wsd6{word-spacing:-31.876390px;}
.ws91{word-spacing:-31.745481px;}
.ws79{word-spacing:-31.680026px;}
.ws62{word-spacing:-31.483663px;}
.wsdf{word-spacing:-31.418208px;}
.wsc4{word-spacing:-31.352753px;}
.ws76{word-spacing:-31.287299px;}
.wsd2{word-spacing:-31.156390px;}
.wsc1{word-spacing:-31.090935px;}
.ws24{word-spacing:-31.025480px;}
.ws100{word-spacing:-30.632753px;}
.ws31{word-spacing:-30.567298px;}
.ws41{word-spacing:-30.499012px;}
.ws28{word-spacing:-30.240025px;}
.wsa3{word-spacing:-30.237231px;}
.ws5e{word-spacing:-30.174571px;}
.wsf2{word-spacing:-30.109116px;}
.ws72{word-spacing:-29.912752px;}
.wsce{word-spacing:-29.847298px;}
.ws1d{word-spacing:-29.781843px;}
.ws107{word-spacing:-29.716388px;}
.wsa5{word-spacing:-29.650934px;}
.ws29{word-spacing:-29.544704px;}
.wsf8{word-spacing:-29.520025px;}
.wsf3{word-spacing:-29.454570px;}
.ws77{word-spacing:-29.389115px;}
.ws56{word-spacing:-29.323661px;}
.ws5a{word-spacing:-29.313169px;}
.ws8b{word-spacing:-29.258206px;}
.ws17{word-spacing:-29.061842px;}
.wsad{word-spacing:-29.002235px;}
.wsde{word-spacing:-28.930933px;}
.ws18{word-spacing:-28.865479px;}
.ws37{word-spacing:-28.800024px;}
.ws75{word-spacing:-28.538206px;}
.ws86{word-spacing:-28.276387px;}
.ws73{word-spacing:-28.145478px;}
.ws4b{word-spacing:-28.080023px;}
.ws89{word-spacing:-28.014569px;}
.ws3f{word-spacing:-27.949114px;}
.ws65{word-spacing:-27.890989px;}
.wsf5{word-spacing:-27.752750px;}
.wsc0{word-spacing:-27.724770px;}
.ws2f{word-spacing:-27.687296px;}
.ws2d{word-spacing:-27.490932px;}
.ws8d{word-spacing:-27.294568px;}
.wsd9{word-spacing:-27.239230px;}
.ws1a{word-spacing:-27.229114px;}
.wse8{word-spacing:-27.176664px;}
.wsef{word-spacing:-27.168899px;}
.ws9a{word-spacing:-27.163659px;}
.wsf{word-spacing:-27.161203px;}
.ws68{word-spacing:-27.135083px;}
.wse9{word-spacing:-27.122037px;}
.wsb{word-spacing:-27.120278px;}
.wsed{word-spacing:-27.115025px;}
.ws97{word-spacing:-27.112687px;}
.ws8f{word-spacing:-27.111112px;}
.ws30{word-spacing:-27.110629px;}
.ws94{word-spacing:-27.110405px;}
.wscf{word-spacing:-27.098989px;}
.ws21{word-spacing:-27.098204px;}
.wse7{word-spacing:-27.093647px;}
.wse5{word-spacing:-27.087158px;}
.ws95{word-spacing:-27.086036px;}
.wse{word-spacing:-27.082572px;}
.wsf0{word-spacing:-27.081615px;}
.ws96{word-spacing:-27.077371px;}
.wse6{word-spacing:-27.071741px;}
.wsc6{word-spacing:-27.065396px;}
.wsc7{word-spacing:-27.032750px;}
.ws55{word-spacing:-26.901841px;}
.ws8a{word-spacing:-26.836386px;}
.ws22{word-spacing:-26.827469px;}
.wsdd{word-spacing:-26.509113px;}
.wsca{word-spacing:-26.308124px;}
.wsc3{word-spacing:-26.116385px;}
.ws57{word-spacing:-26.095813px;}
.ws74{word-spacing:-26.050931px;}
.wsf6{word-spacing:-25.985476px;}
.ws87{word-spacing:-25.723658px;}
.ws4a{word-spacing:-25.592749px;}
.ws4d{word-spacing:-25.527294px;}
.wsa9{word-spacing:-25.461839px;}
.ws3e{word-spacing:-25.396385px;}
.ws23{word-spacing:-25.200021px;}
.ws101{word-spacing:-24.807293px;}
.ws19{word-spacing:-24.741839px;}
.ws48{word-spacing:-24.610930px;}
.ws0{word-spacing:-24.283657px;}
.ws11{word-spacing:-23.890929px;}
.wse4{word-spacing:-23.760020px;}
.wsb6{word-spacing:-23.367292px;}
.ws67{word-spacing:-23.105474px;}
.wsd5{word-spacing:-22.712746px;}
.wsb7{word-spacing:-22.581837px;}
.ws2b{word-spacing:-22.116643px;}
.ws25{word-spacing:-22.071000px;}
.wse1{word-spacing:-21.992746px;}
.wse3{word-spacing:-20.814563px;}
.wsb5{word-spacing:-20.356381px;}
.wsf1{word-spacing:-19.265977px;}
.wse0{word-spacing:-18.916379px;}
.ws71{word-spacing:-18.767236px;}
.wscd{word-spacing:-18.722989px;}
.ws90{word-spacing:-17.748191px;}
.wsd4{word-spacing:-17.018196px;}
.ws42{word-spacing:-15.449616px;}
.ws4{word-spacing:-15.447286px;}
.ws88{word-spacing:-14.869958px;}
.ws2e{word-spacing:-14.334933px;}
.ws2c{word-spacing:-13.964056px;}
.ws20{word-spacing:-13.188359px;}
.wsee{word-spacing:-13.005094px;}
.wsd8{word-spacing:-11.716373px;}
.ws34{word-spacing:-11.650919px;}
.ws35{word-spacing:-11.585464px;}
.ws33{word-spacing:-11.569575px;}
.wsc2{word-spacing:-11.276627px;}
.ws99{word-spacing:-10.407281px;}
.wsd7{word-spacing:-7.723643px;}
.ws98{word-spacing:-6.152732px;}
.wsd1{word-spacing:-2.421820px;}
.ws8{word-spacing:0.000000px;}
.ws2{word-spacing:2.360528px;}
.wsd0{word-spacing:2.487275px;}
.wsaf{word-spacing:5.058869px;}
.wsdb{word-spacing:5.060509px;}
.ws58{word-spacing:5.501512px;}
.ws80{word-spacing:6.238284px;}
.wsd3{word-spacing:6.891373px;}
.ws63{word-spacing:7.803675px;}
.ws45{word-spacing:7.882500px;}
.wsb0{word-spacing:8.340869px;}
.wsb2{word-spacing:8.350730px;}
.ws46{word-spacing:9.436730px;}
.wsa1{word-spacing:9.440310px;}
.ws8c{word-spacing:9.440881px;}
.ws47{word-spacing:9.463875px;}
.wsaa{word-spacing:9.489487px;}
.ws26{word-spacing:10.317828px;}
.ws10{word-spacing:11.620454px;}
.ws7f{word-spacing:12.636780px;}
.wsb1{word-spacing:16.608869px;}
.wsab{word-spacing:16.610310px;}
.wsa8{word-spacing:16.616310px;}
.wsb3{word-spacing:16.665487px;}
.ws9b{word-spacing:16.887287px;}
.ws8e{word-spacing:21.755700px;}
.wsf9{word-spacing:26.640300px;}
.wsb4{word-spacing:38.074730px;}
.ws103{word-spacing:39.898500px;}
.ws70{word-spacing:56.517525px;}
.ws9d{word-spacing:65.127327px;}
.ws81{word-spacing:111.927366px;}
.wsbf{word-spacing:159.166226px;}
.ws106{word-spacing:239.483221px;}
.ws9c{word-spacing:295.744772px;}
.ws83{word-spacing:360.744967px;}
.ws84{word-spacing:376.781344px;}
.ws82{word-spacing:389.479537px;}
.wsea{word-spacing:469.168724px;}
.wsb8{word-spacing:554.358893px;}
.ws9e{word-spacing:797.733662px;}
.ws1{word-spacing:2046.509485px;}
._3{margin-left:-39.403669px;}
._26{margin-left:-34.625483px;}
._39{margin-left:-15.489375px;}
._6{margin-left:-11.389100px;}
._2d{margin-left:-9.022259px;}
._2{margin-left:-7.396370px;}
._5{margin-left:-6.309119px;}
._c{margin-left:-5.040004px;}
._7a{margin-left:-3.861821px;}
._12{margin-left:-2.683639px;}
._1e{margin-left:-1.112728px;}
._28{width:1.243637px;}
._29{width:2.683639px;}
._4{width:4.647277px;}
._27{width:8.364016px;}
._47{width:10.145463px;}
._3b{width:12.328232px;}
._36{width:13.928555px;}
._35{width:16.287719px;}
._37{width:17.499150px;}
._4d{width:18.843750px;}
._9{width:20.814563px;}
._1a{width:22.444704px;}
._2e{width:23.766646px;}
._34{width:24.773030px;}
._1f{width:26.005628px;}
._2a{width:27.323655px;}
._b{width:28.341842px;}
._19{width:29.470954px;}
._3a{width:31.262091px;}
._14{width:32.677396px;}
._2f{width:33.970937px;}
._32{width:35.308827px;}
._31{width:36.654576px;}
._15{width:38.718893px;}
._99{width:39.776245px;}
._8{width:40.778216px;}
._e{width:42.872763px;}
._16{width:44.312764px;}
._1{width:45.818220px;}
._33{width:47.389130px;}
._79{width:48.923723px;}
._2b{width:49.974715px;}
._23{width:51.004684px;}
._0{width:52.625498px;}
._f{width:54.993647px;}
._10{width:56.793297px;}
._13{width:57.979436px;}
._25{width:59.376170px;}
._1d{width:60.928241px;}
._24{width:62.545766px;}
._11{width:63.662262px;}
._62{width:64.785371px;}
._20{width:66.303474px;}
._1b{width:67.528271px;}
._1c{width:69.078523px;}
._30{width:71.731200px;}
._17{width:72.837630px;}
._22{width:73.927330px;}
._63{width:74.979055px;}
._18{width:77.888518px;}
._5e{width:84.174616px;}
._2c{width:86.077200px;}
._4e{width:87.774619px;}
._91{width:93.338260px;}
._21{width:94.682653px;}
._7{width:96.992808px;}
._98{width:105.506815px;}
._5c{width:110.356456px;}
._58{width:118.669190px;}
._84{width:120.698282px;}
._48{width:127.047379px;}
._83{width:129.338290px;}
._65{width:130.785332px;}
._d{width:135.338798px;}
._a{width:136.974743px;}
._92{width:140.822998px;}
._57{width:142.298300px;}
._43{width:144.392848px;}
._51{width:147.731032px;}
._53{width:150.087398px;}
._8c{width:153.163764px;}
._5a{width:157.876495px;}
._56{width:165.141956px;}
._54{width:167.040139px;}
._4a{width:168.676504px;}
._3d{width:179.214695px;}
._55{width:186.807428px;}
._66{width:192.763797px;}
._90{width:198.466950px;}
._93{width:199.753688px;}
._3c{width:216.155756px;}
._76{width:220.347502px;}
._50{width:224.133181px;}
._6b{width:227.976458px;}
._61{width:229.052562px;}
._45{width:233.735698px;}
._4b{width:236.671227px;}
._70{width:245.196182px;}
._3f{width:248.397528px;}
._86{width:253.946630px;}
._8d{width:255.721273px;}
._8e{width:261.088550px;}
._60{width:263.547136px;}
._52{width:265.325054px;}
._3e{width:269.473994px;}
._38{width:279.070950px;}
._81{width:282.899756px;}
._40{width:285.173086px;}
._87{width:286.666626px;}
._5b{width:289.341761px;}
._82{width:293.342995px;}
._6e{width:298.541681px;}
._8a{width:303.634040px;}
._95{width:306.009123px;}
._97{width:321.858497px;}
._4c{width:323.826704px;}
._49{width:329.231365px;}
._69{width:351.273836px;}
._6a{width:353.322017px;}
._5d{width:356.457794px;}
._8f{width:364.708040px;}
._85{width:370.112435px;}
._89{width:374.326643px;}
._6f{width:381.442406px;}
._88{width:383.050874px;}
._96{width:409.617123px;}
._68{width:412.660658px;}
._46{width:418.475924px;}
._73{width:424.592147px;}
._7d{width:426.393516px;}
._44{width:430.885037px;}
._42{width:441.450489px;}
._74{width:444.347226px;}
._94{width:454.769400px;}
._67{width:457.329376px;}
._6c{width:458.776177px;}
._41{width:463.088616px;}
._80{width:464.294660px;}
._7f{width:488.771750px;}
._59{width:505.603759px;}
._75{width:512.777138px;}
._77{width:523.053511px;}
._8b{width:524.150588px;}
._78{width:542.023134px;}
._71{width:566.613469px;}
._7e{width:567.778383px;}
._5f{width:577.342001px;}
._6d{width:594.300767px;}
._4f{width:673.361989px;}
._72{width:758.023314px;}
._64{width:763.264177px;}
._7b{width:850.082438px;}
._7c{width:911.284124px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:55.177200px;}
.fs5{font-size:62.122800px;}
.fs1{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:78.825000px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y30{bottom:63.168000px;}
.y2f{bottom:109.132500px;}
.y10d{bottom:109.551000px;}
.yd0{bottom:110.884500px;}
.yb8{bottom:122.106000px;}
.y96{bottom:123.816000px;}
.ycf{bottom:124.404000px;}
.y53{bottom:126.637500px;}
.y20e{bottom:127.965000px;}
.y12f{bottom:129.367500px;}
.y2e{bottom:129.456000px;}
.y10c{bottom:129.874500px;}
.y95{bottom:135.016500px;}
.y196{bottom:135.142500px;}
.y94{bottom:137.337000px;}
.y1bc{bottom:138.486000px;}
.y179{bottom:141.556500px;}
.y15f{bottom:141.711000px;}
.yb7{bottom:142.429500px;}
.y52{bottom:146.962500px;}
.y15e{bottom:147.783000px;}
.y20d{bottom:148.288500px;}
.y2d{bottom:149.779500px;}
.y147{bottom:154.402500px;}
.y195{bottom:155.466000px;}
.y1bb{bottom:158.809500px;}
.y12e{bottom:159.853500px;}
.y10b{bottom:160.360500px;}
.y244{bottom:161.772000px;}
.yb6{bottom:162.753000px;}
.y1db{bottom:164.472000px;}
.y51{bottom:167.286000px;}
.y20c{bottom:168.613500px;}
.y2c{bottom:170.103000px;}
.y1ba{bottom:179.133000px;}
.y12d{bottom:180.177000px;}
.y178{bottom:180.502500px;}
.yb5{bottom:183.078000px;}
.yce{bottom:184.467000px;}
.y194{bottom:185.526000px;}
.y283{bottom:187.195500px;}
.y146{bottom:187.467000px;}
.y20b{bottom:188.937000px;}
.y2b{bottom:190.428000px;}
.y1f5{bottom:190.575000px;}
.y177{bottom:194.022000px;}
.y243{bottom:194.836500px;}
.y72{bottom:196.308000px;}
.yec{bottom:196.312500px;}
.y93{bottom:196.335000px;}
.y1da{bottom:197.536500px;}
.y10a{bottom:198.240000px;}
.y22b{bottom:198.918000px;}
.y15d{bottom:200.281500px;}
.y50{bottom:200.349000px;}
.y109{bottom:200.559000px;}
.yb4{bottom:203.401500px;}
.ycd{bottom:204.790500px;}
.y282{bottom:207.519000px;}
.y20a{bottom:209.260500px;}
.y1b9{bottom:209.619000px;}
.y2a{bottom:210.751500px;}
.y1f4{bottom:210.898500px;}
.y71{bottom:216.631500px;}
.y92{bottom:216.658500px;}
.y22a{bottom:219.243000px;}
.y281{bottom:227.844000px;}
.y242{bottom:227.899500px;}
.y193{bottom:228.150000px;}
.y209{bottom:229.584000px;}
.y25f{bottom:229.809000px;}
.y1b8{bottom:229.942500px;}
.y29{bottom:231.075000px;}
.yb3{bottom:233.887500px;}
.yeb{bottom:235.258500px;}
.y15c{bottom:239.010000px;}
.y12c{bottom:239.398500px;}
.ycc{bottom:242.040000px;}
.y145{bottom:246.688500px;}
.y70{bottom:247.117500px;}
.y91{bottom:247.144500px;}
.yea{bottom:248.778000px;}
.y1f3{bottom:249.711000px;}
.y229{bottom:249.727500px;}
.y208{bottom:249.907500px;}
.y1b7{bottom:250.266000px;}
.y28{bottom:251.398500px;}
.y15b{bottom:252.529500px;}
.y108{bottom:253.057500px;}
.yb2{bottom:254.211000px;}
.ycb{bottom:255.559500px;}
.y1f2{bottom:255.658500px;}
.y176{bottom:257.326500px;}
.y280{bottom:258.328500px;}
.y12b{bottom:259.722000px;}
.y144{bottom:267.012000px;}
.y6f{bottom:267.441000px;}
.y228{bottom:270.052500px;}
.y27{bottom:271.722000px;}
.y107{bottom:273.381000px;}
.y192{bottom:276.078000px;}
.y1d9{bottom:276.547500px;}
.y90{bottom:277.630500px;}
.y27f{bottom:278.652000px;}
.y4f{bottom:279.360000px;}
.y207{bottom:279.967500px;}
.y12a{bottom:280.047000px;}
.yb1{bottom:287.274000px;}
.y143{bottom:287.335500px;}
.y6e{bottom:287.764500px;}
.y26{bottom:292.047000px;}
.y191{bottom:296.401500px;}
.y8f{bottom:297.954000px;}
.y27e{bottom:298.977000px;}
.y4e{bottom:299.685000px;}
.y129{bottom:300.370500px;}
.y227{bottom:300.537000px;}
.y174{bottom:303.384000px;}
.ye9{bottom:303.970500px;}
.y106{bottom:306.445500px;}
.y1b6{bottom:306.693000px;}
.y241{bottom:306.910500px;}
.y1d8{bottom:307.032000px;}
.y142{bottom:307.660500px;}
.y25e{bottom:308.820000px;}
.y173{bottom:309.456000px;}
.y175{bottom:310.047000px;}
.y25{bottom:312.370500px;}
.y15a{bottom:312.592500px;}
.y1f1{bottom:312.940500px;}
.yca{bottom:314.361000px;}
.ye8{bottom:315.171000px;}
.ye7{bottom:317.490000px;}
.y6d{bottom:318.250500px;}
.y8e{bottom:318.277500px;}
.y27d{bottom:319.300500px;}
.y128{bottom:320.694000px;}
.y226{bottom:320.862000px;}
.y206{bottom:324.939000px;}
.y190{bottom:326.887500px;}
.y1b5{bottom:327.016500px;}
.y240{bottom:327.234000px;}
.y1d7{bottom:327.355500px;}
.y141{bottom:327.984000px;}
.y25d{bottom:329.143500px;}
.y4d{bottom:330.169500px;}
.y24{bottom:332.694000px;}
.y1f0{bottom:333.265500px;}
.yb0{bottom:335.202000px;}
.y6c{bottom:338.574000px;}
.y8d{bottom:338.601000px;}
.y127{bottom:341.017500px;}
.yc9{bottom:344.847000px;}
.y18f{bottom:347.211000px;}
.y1b4{bottom:347.340000px;}
.y23f{bottom:347.557500px;}
.y1d6{bottom:347.680500px;}
.y140{bottom:348.307500px;}
.y25c{bottom:349.467000px;}
.y4c{bottom:350.494500px;}
.y225{bottom:351.346500px;}
.y159{bottom:352.792500px;}
.y23{bottom:353.017500px;}
.y105{bottom:354.372000px;}
.yaf{bottom:355.525500px;}
.y126{bottom:361.341000px;}
.y1ef{bottom:363.750000px;}
.y18e{bottom:367.534500px;}
.y1b3{bottom:367.665000px;}
.y23e{bottom:367.882500px;}
.y13f{bottom:368.631000px;}
.y6b{bottom:369.060000px;}
.y8c{bottom:369.087000px;}
.y25b{bottom:369.792000px;}
.y4b{bottom:370.818000px;}
.y172{bottom:371.092500px;}
.y224{bottom:371.671500px;}
.y205{bottom:372.867000px;}
.y22{bottom:373.341000px;}
.y104{bottom:374.697000px;}
.yae{bottom:375.849000px;}
.ye6{bottom:376.213500px;}
.y27c{bottom:378.522000px;}
.y1d5{bottom:380.743500px;}
.y125{bottom:381.666000px;}
.y1ee{bottom:384.075000px;}
.yc8{bottom:385.045500px;}
.y1b2{bottom:387.988500px;}
.y13e{bottom:388.954500px;}
.y6a{bottom:389.383500px;}
.y8b{bottom:389.410500px;}
.y25a{bottom:390.115500px;}
.y4a{bottom:391.141500px;}
.y171{bottom:391.416000px;}
.y204{bottom:393.190500px;}
.y21{bottom:393.666000px;}
.yad{bottom:396.174000px;}
.y27b{bottom:398.845500px;}
.y23d{bottom:400.945500px;}
.y103{bottom:400.951500px;}
.y124{bottom:401.989500px;}
.y223{bottom:402.156000px;}
.y158{bottom:403.602000px;}
.y1b1{bottom:408.312000px;}
.ye5{bottom:409.276500px;}
.y69{bottom:409.707000px;}
.y8a{bottom:409.735500px;}
.y49{bottom:411.465000px;}
.y203{bottom:413.514000px;}
.y20{bottom:413.989500px;}
.y102{bottom:414.471000px;}
.y18d{bottom:415.462500px;}
.yac{bottom:416.497500px;}
.y13d{bottom:419.014500px;}
.y27a{bottom:419.170500px;}
.y123{bottom:422.313000px;}
.y222{bottom:422.481000px;}
.y259{bottom:423.178500px;}
.y157{bottom:423.925500px;}
.y1b0{bottom:428.635500px;}
.y1d4{bottom:428.671500px;}
.y48{bottom:431.788500px;}
.y1ed{bottom:432.001500px;}
.y202{bottom:433.837500px;}
.y1f{bottom:434.313000px;}
.yc7{bottom:435.855000px;}
.yab{bottom:436.821000px;}
.y170{bottom:437.952000px;}
.y279{bottom:439.494000px;}
.y89{bottom:440.220000px;}
.y122{bottom:442.636500px;}
.y68{bottom:447.588000px;}
.y23c{bottom:448.873500px;}
.y1af{bottom:448.959000px;}
.y67{bottom:449.907000px;}
.y47{bottom:452.112000px;}
.y221{bottom:452.965500px;}
.y201{bottom:454.161000px;}
.y18c{bottom:454.270500px;}
.y1e{bottom:454.636500px;}
.yaa{bottom:457.144500px;}
.ye4{bottom:457.204500px;}
.y1d3{bottom:459.157500px;}
.y278{bottom:459.817500px;}
.y88{bottom:460.545000px;}
.y121{bottom:462.960000px;}
.y13c{bottom:464.218500px;}
.y16f{bottom:464.814000px;}
.yc6{bottom:468.919500px;}
.y23b{bottom:469.197000px;}
.y1ae{bottom:469.284000px;}
.y258{bottom:471.106500px;}
.y156{bottom:471.853500px;}
.y1ec{bottom:472.201500px;}
.y46{bottom:472.437000px;}
.y220{bottom:473.290500px;}
.y1d{bottom:474.960000px;}
.y1d2{bottom:479.481000px;}
.y277{bottom:480.141000px;}
.y101{bottom:480.366000px;}
.y87{bottom:480.868500px;}
.y18b{bottom:481.132500px;}
.y120{bottom:483.285000px;}
.y200{bottom:487.225500px;}
.ya9{bottom:487.630500px;}
.y23a{bottom:489.520500px;}
.y1ad{bottom:489.607500px;}
.ye2{bottom:491.172000px;}
.y45{bottom:492.760500px;}
.ye1{bottom:493.491000px;}
.y1c{bottom:495.285000px;}
.ye3{bottom:498.322500px;}
.y1d1{bottom:499.804500px;}
.y276{bottom:500.464500px;}
.y100{bottom:500.689500px;}
.y86{bottom:501.192000px;}
.y66{bottom:502.405500px;}
.y11f{bottom:503.608500px;}
.y256{bottom:505.074000px;}
.y155{bottom:505.930500px;}
.y21f{bottom:506.353500px;}
.y255{bottom:507.394500px;}
.ya8{bottom:507.954000px;}
.y239{bottom:509.844000px;}
.y1ac{bottom:509.931000px;}
.y16e{bottom:510.904500px;}
.ye0{bottom:511.842000px;}
.y154{bottom:512.002500px;}
.y257{bottom:512.224500px;}
.y44{bottom:513.084000px;}
.y1b{bottom:515.608500px;}
.yc5{bottom:516.846000px;}
.y275{bottom:520.789500px;}
.y85{bottom:521.515500px;}
.y65{bottom:522.729000px;}
.y1eb{bottom:523.011000px;}
.y13b{bottom:523.440000px;}
.y11e{bottom:523.932000px;}
.y254{bottom:525.744000px;}
.ya7{bottom:528.277500px;}
.y18a{bottom:529.426500px;}
.y238{bottom:530.169000px;}
.y1ab{bottom:530.254500px;}
.y1d0{bottom:530.290500px;}
.y153{bottom:530.352000px;}
.yff{bottom:531.175500px;}
.y43{bottom:533.407500px;}
.y1ff{bottom:535.153500px;}
.y1a{bottom:535.932000px;}
.yc4{bottom:537.171000px;}
.y274{bottom:541.113000px;}
.y84{bottom:541.839000px;}
.y1ea{bottom:543.334500px;}
.y13a{bottom:543.763500px;}
.y11d{bottom:544.255500px;}
.y16d{bottom:549.850500px;}
.y237{bottom:550.492500px;}
.yfe{bottom:551.499000px;}
.y42{bottom:553.731000px;}
.y1fe{bottom:555.477000px;}
.y64{bottom:555.793500px;}
.y19{bottom:556.255500px;}
.y1aa{bottom:560.314500px;}
.y273{bottom:561.436500px;}
.y1cf{bottom:563.355000px;}
.y16c{bottom:563.370000px;}
.y1e9{bottom:563.658000px;}
.y189{bottom:563.662500px;}
.y139{bottom:564.087000px;}
.y11c{bottom:564.579000px;}
.ya6{bottom:564.687000px;}
.ya5{bottom:567.007500px;}
.y253{bottom:570.400500px;}
.y236{bottom:570.816000px;}
.ydf{bottom:570.840000px;}
.yc3{bottom:571.189500px;}
.y83{bottom:572.325000px;}
.y41{bottom:574.056000px;}
.y1fd{bottom:575.800500px;}
.y18{bottom:576.579000px;}
.y188{bottom:577.182000px;}
.y272{bottom:581.760000px;}
.y1e8{bottom:583.981500px;}
.y138{bottom:584.410500px;}
.yfd{bottom:584.563500px;}
.yc2{bottom:584.709000px;}
.y11b{bottom:584.904000px;}
.ya4{bottom:585.357000px;}
.y21e{bottom:585.364500px;}
.y63{bottom:588.856500px;}
.y152{bottom:589.351500px;}
.y235{bottom:591.139500px;}
.y1fc{bottom:596.124000px;}
.y17{bottom:596.904000px;}
.y1a9{bottom:600.144000px;}
.y271{bottom:602.083500px;}
.y137{bottom:604.735500px;}
.yde{bottom:604.860000px;}
.y11a{bottom:605.227500px;}
.y82{bottom:605.389500px;}
.y40{bottom:607.119000px;}
.y1ce{bottom:611.281500px;}
.y234{bottom:611.463000px;}
.y252{bottom:612.148500px;}
.y1e7{bottom:614.467500px;}
.ydd{bottom:616.060500px;}
.y16{bottom:617.227500px;}
.ydc{bottom:618.379500px;}
.y21d{bottom:618.429000px;}
.y16b{bottom:622.369500px;}
.y270{bottom:622.408500px;}
.y251{bottom:623.349000px;}
.y151{bottom:623.370000px;}
.y119{bottom:625.551000px;}
.y250{bottom:625.668000px;}
.y1fb{bottom:629.188500px;}
.y1cd{bottom:631.605000px;}
.y233{bottom:631.788000px;}
.yfc{bottom:632.491500px;}
.y1e6{bottom:634.791000px;}
.y136{bottom:634.795500px;}
.y187{bottom:635.149500px;}
.y150{bottom:636.889500px;}
.y15{bottom:637.551000px;}
.y26f{bottom:642.732000px;}
.yc1{bottom:643.708500px;}
.ya3{bottom:644.355000px;}
.y118{bottom:645.874500px;}
.y1a8{bottom:647.277000px;}
.y186{bottom:648.669000px;}
.y1cc{bottom:651.930000px;}
.yfb{bottom:652.815000px;}
.y81{bottom:653.316000px;}
.y1e5{bottom:655.114500px;}
.y16a{bottom:656.388000px;}
.y14{bottom:657.874500px;}
.y1fa{bottom:662.251500px;}
.y232{bottom:662.272500px;}
.y26e{bottom:663.055500px;}
.ya2{bottom:664.680000px;}
.y117{bottom:666.198000px;}
.y1a7{bottom:667.600500px;}
.y62{bottom:667.867500px;}
.y169{bottom:669.907500px;}
.y1cb{bottom:672.253500px;}
.yfa{bottom:673.138500px;}
.y24f{bottom:673.194000px;}
.y80{bottom:673.641000px;}
.y13{bottom:678.198000px;}
.y135{bottom:679.998000px;}
.ydb{bottom:680.016000px;}
.y26d{bottom:683.379000px;}
.yc0{bottom:683.907000px;}
.ya1{bottom:685.003500px;}
.y3f{bottom:686.130000px;}
.y1a6{bottom:687.924000px;}
.y1e4{bottom:688.179000px;}
.y61{bottom:688.191000px;}
.yf9{bottom:693.462000px;}
.y7f{bottom:693.964500px;}
.y14f{bottom:695.889000px;}
.y116{bottom:696.258000px;}
.y21c{bottom:697.440000px;}
.y12{bottom:698.521500px;}
.y231{bottom:701.002500px;}
.y1ca{bottom:702.739500px;}
.y26c{bottom:703.702500px;}
.ya0{bottom:705.327000px;}
.y3e{bottom:706.453500px;}
.y1a5{bottom:708.247500px;}
.y185{bottom:710.443500px;}
.ybf{bottom:711.625500px;}
.y134{bottom:713.061000px;}
.yf8{bottom:713.785500px;}
.ybe{bottom:713.944500px;}
.yda{bottom:714.034500px;}
.y230{bottom:714.522000px;}
.y24e{bottom:714.940500px;}
.y14e{bottom:716.212500px;}
.y21b{bottom:717.763500px;}
.y60{bottom:718.677000px;}
.y11{bottom:718.846500px;}
.y1c9{bottom:723.063000px;}
.y26b{bottom:724.027500px;}
.yd9{bottom:727.554000px;}
.y24d{bottom:728.461500px;}
.y1a4{bottom:728.571000px;}
.y168{bottom:728.907000px;}
.y7e{bottom:729.933000px;}
.y1e3{bottom:736.107000px;}
.y3d{bottom:736.939500px;}
.y21a{bottom:738.087000px;}
.y9f{bottom:738.391500px;}
.y115{bottom:738.883500px;}
.y5f{bottom:739.000500px;}
.y10{bottom:739.170000px;}
.y1f9{bottom:741.262500px;}
.y1c8{bottom:743.386500px;}
.y7d{bottom:743.452500px;}
.y26a{bottom:744.351000px;}
.y1a3{bottom:748.896000px;}
.y14d{bottom:749.277000px;}
.y184{bottom:750.643500px;}
.y3c{bottom:757.263000px;}
.y219{bottom:758.410500px;}
.y5e{bottom:759.324000px;}
.yf{bottom:759.493500px;}
.y167{bottom:763.143000px;}
.y1c7{bottom:763.710000px;}
.y269{bottom:764.674500px;}
.ybd{bottom:766.443000px;}
.y1e2{bottom:766.591500px;}
.y1a2{bottom:769.219500px;}
.y166{bottom:770.590500px;}
.y1f8{bottom:771.748500px;}
.yf7{bottom:773.008500px;}
.y22f{bottom:774.624000px;}
.y165{bottom:776.662500px;}
.y3b{bottom:777.588000px;}
.y5d{bottom:779.649000px;}
.ye{bottom:779.817000px;}
.y268{bottom:784.998000px;}
.y9e{bottom:786.318000px;}
.y114{bottom:786.810000px;}
.y1e1{bottom:786.916500px;}
.y218{bottom:788.896500px;}
.yd8{bottom:789.190500px;}
.y1a1{bottom:789.543000px;}
.y24c{bottom:790.096500px;}
.y133{bottom:792.072000px;}
.yf6{bottom:793.332000px;}
.y183{bottom:797.646000px;}
.y3a{bottom:797.911500px;}
.y5c{bottom:799.972500px;}
.yd{bottom:800.140500px;}
.y7c{bottom:802.234500px;}
.y1c6{bottom:804.357000px;}
.y267{bottom:805.321500px;}
.y9d{bottom:806.641500px;}
.y22e{bottom:807.688500px;}
.y14c{bottom:808.498500px;}
.y217{bottom:809.220000px;}
.yd7{bottom:809.514000px;}
.y1a0{bottom:809.866500px;}
.y182{bottom:811.165500px;}
.y132{bottom:812.397000px;}
.yf5{bottom:813.655500px;}
.y1e0{bottom:819.979500px;}
.yc{bottom:820.465500px;}
.y7b{bottom:822.558000px;}
.y1c5{bottom:824.682000px;}
.y266{bottom:825.645000px;}
.y9c{bottom:826.966500px;}
.y14b{bottom:828.822000px;}
.y24b{bottom:828.826500px;}
.y216{bottom:829.543500px;}
.y5b{bottom:830.458500px;}
.y131{bottom:832.720500px;}
.yf4{bottom:833.979000px;}
.y113{bottom:837.619500px;}
.y39{bottom:837.769500px;}
.y164{bottom:838.299000px;}
.yd6{bottom:840.000000px;}
.y19f{bottom:840.352500px;}
.yb{bottom:840.789000px;}
.y24a{bottom:842.346000px;}
.y1c4{bottom:845.005500px;}
.y265{bottom:845.970000px;}
.y14a{bottom:849.145500px;}
.y215{bottom:849.868500px;}
.y7a{bottom:853.044000px;}
.yf3{bottom:854.302500px;}
.y22d{bottom:855.615000px;}
.ybc{bottom:857.451000px;}
.y9b{bottom:860.029500px;}
.yd5{bottom:860.323500px;}
.ya{bottom:861.112500px;}
.y5a{bottom:863.521500px;}
.y38{bottom:864.669000px;}
.y1c3{bottom:865.329000px;}
.y264{bottom:866.293500px;}
.y1df{bottom:867.907500px;}
.y214{bottom:870.192000px;}
.y19e{bottom:870.838500px;}
.y163{bottom:872.535000px;}
.y181{bottom:872.940000px;}
.y1f7{bottom:873.367500px;}
.yf2{bottom:874.627500px;}
.y149{bottom:879.205500px;}
.yd4{bottom:880.647000px;}
.y9{bottom:881.436000px;}
.y1c2{bottom:885.652500px;}
.y162{bottom:886.054500px;}
.y263{bottom:886.617000px;}
.y79{bottom:887.062500px;}
.y1de{bottom:888.231000px;}
.ybb{bottom:890.515500px;}
.y19d{bottom:891.162000px;}
.y9a{bottom:893.094000px;}
.y1f6{bottom:893.691000px;}
.yf1{bottom:894.951000px;}
.y22c{bottom:895.815000px;}
.y112{bottom:896.842500px;}
.y78{bottom:898.263000px;}
.y77{bottom:900.582000px;}
.yd3{bottom:900.972000px;}
.y8{bottom:901.759500px;}
.y249{bottom:902.409000px;}
.y180{bottom:903.426000px;}
.y1c1{bottom:905.976000px;}
.y262{bottom:906.940500px;}
.y213{bottom:910.839000px;}
.y59{bottom:911.449500px;}
.y19c{bottom:911.485500px;}
.yf0{bottom:915.274500px;}
.y111{bottom:917.166000px;}
.y1dd{bottom:918.717000px;}
.y37{bottom:921.295500px;}
.y7{bottom:922.084500px;}
.yba{bottom:923.580000px;}
.y17f{bottom:923.749500px;}
.y148{bottom:924.177000px;}
.y1c0{bottom:926.301000px;}
.y261{bottom:927.264000px;}
.y58{bottom:931.773000px;}
.y248{bottom:935.472000px;}
.yef{bottom:935.598000px;}
.y110{bottom:937.489500px;}
.y1dc{bottom:939.040500px;}
.y212{bottom:941.325000px;}
.y36{bottom:941.619000px;}
.y6{bottom:942.408000px;}
.y161{bottom:944.500500px;}
.y1bf{bottom:946.624500px;}
.y260{bottom:947.589000px;}
.yd2{bottom:951.780000px;}
.y130{bottom:951.781500px;}
.y17e{bottom:954.235500px;}
.yee{bottom:955.921500px;}
.y10f{bottom:957.813000px;}
.y76{bottom:959.364000px;}
.y211{bottom:961.648500px;}
.y35{bottom:961.942500px;}
.y57{bottom:962.259000px;}
.y5{bottom:962.731500px;}
.y160{bottom:964.824000px;}
.y1be{bottom:966.948000px;}
.y19b{bottom:967.912500px;}
.y99{bottom:972.105000px;}
.y17d{bottom:974.559000px;}
.y75{bottom:979.687500px;}
.y210{bottom:981.972000px;}
.y34{bottom:982.266000px;}
.y56{bottom:982.582500px;}
.y4{bottom:983.055000px;}
.y247{bottom:983.400000px;}
.yed{bottom:985.981500px;}
.y10e{bottom:987.873000px;}
.y19a{bottom:988.236000px;}
.y98{bottom:992.428500px;}
.y1bd{bottom:997.434000px;}
.yb9{bottom:1002.589500px;}
.y33{bottom:1002.591000px;}
.y3{bottom:1003.378500px;}
.y199{bottom:1008.559500px;}
.y74{bottom:1010.173500px;}
.y97{bottom:1012.752000px;}
.y20f{bottom:1015.036500px;}
.y17b{bottom:1021.095000px;}
.y55{bottom:1021.528500px;}
.y32{bottom:1022.914500px;}
.y2{bottom:1023.703500px;}
.y198{bottom:1028.883000px;}
.y73{bottom:1030.497000px;}
.yd1{bottom:1033.075500px;}
.y54{bottom:1035.048000px;}
.y17c{bottom:1035.207000px;}
.y245{bottom:1035.600000px;}
.y246{bottom:1036.192500px;}
.y31{bottom:1043.238000px;}
.y17a{bottom:1047.957000px;}
.y197{bottom:1058.943000px;}
.y1{bottom:1063.561500px;}
.h2{height:49.730155px;}
.hd{height:50.081718px;}
.h3{height:53.085982px;}
.h16{height:53.091982px;}
.h4{height:54.498900px;}
.h19{height:58.270458px;}
.h1{height:65.398498px;}
.h14{height:75.096169px;}
.h6{height:107.280825px;}
.h1a{height:114.690825px;}
.h7{height:115.896169px;}
.h8{height:116.556825px;}
.hf{height:116.562825px;}
.h9{height:125.172169px;}
.he{height:125.178169px;}
.h1b{height:131.070825px;}
.h15{height:131.568825px;}
.h5{height:160.650825px;}
.hb{height:161.358825px;}
.h10{height:161.364825px;}
.ha{height:169.926825px;}
.hc{height:169.932825px;}
.h17{height:184.938825px;}
.h11{height:214.728825px;}
.h13{height:223.452169px;}
.h12{height:243.330825px;}
.h18{height:280.350825px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:106.363500px;}
.x1{left:108.000000px;}
.x8{left:125.115000px;}
.x59{left:126.700500px;}
.x5e{left:131.076000px;}
.x2{left:132.546000px;}
.x5{left:144.492000px;}
.x9{left:148.909500px;}
.x39{left:162.381000px;}
.x56{left:167.074500px;}
.x3{left:170.182500px;}
.x5a{left:173.451000px;}
.x69{left:177.676500px;}
.x63{left:196.714500px;}
.x4e{left:201.289500px;}
.x37{left:204.922500px;}
.x30{left:235.299000px;}
.x57{left:251.985000px;}
.x3f{left:268.825500px;}
.x4c{left:273.987000px;}
.x3a{left:278.215500px;}
.x2d{left:281.278500px;}
.x51{left:294.105000px;}
.x4f{left:297.969000px;}
.x53{left:300.564000px;}
.x6a{left:307.732500px;}
.x60{left:312.852000px;}
.x5c{left:314.460000px;}
.x1f{left:317.145000px;}
.x26{left:319.261500px;}
.x4d{left:320.647500px;}
.x64{left:322.983000px;}
.x52{left:325.573500px;}
.x5b{left:326.868000px;}
.x58{left:332.947500px;}
.x43{left:339.559500px;}
.x10{left:340.851000px;}
.x2e{left:342.051000px;}
.x49{left:344.487000px;}
.x1e{left:345.750000px;}
.x36{left:346.843500px;}
.x1c{left:349.947000px;}
.x35{left:355.245000px;}
.x12{left:356.376000px;}
.x62{left:359.943000px;}
.x23{left:362.584500px;}
.x19{left:364.269000px;}
.x41{left:365.434500px;}
.x1a{left:366.874500px;}
.x2a{left:369.307500px;}
.x15{left:370.596000px;}
.x20{left:372.772500px;}
.x4b{left:376.093500px;}
.x3b{left:377.515500px;}
.xc{left:379.575000px;}
.x33{left:382.300500px;}
.x13{left:384.141000px;}
.x48{left:386.001000px;}
.xd{left:390.927000px;}
.x66{left:392.871000px;}
.x2b{left:397.072500px;}
.x27{left:400.020000px;}
.x3d{left:401.688000px;}
.x1d{left:402.709500px;}
.x46{left:405.243000px;}
.x55{left:407.253000px;}
.x16{left:409.291500px;}
.x50{left:410.823000px;}
.x6{left:413.617500px;}
.x3e{left:416.232000px;}
.xa{left:421.869000px;}
.x17{left:426.120000px;}
.xb{left:433.219500px;}
.x44{left:436.239000px;}
.x6b{left:437.787000px;}
.x4a{left:441.165000px;}
.x21{left:446.676000px;}
.x14{left:448.606500px;}
.x61{left:450.310500px;}
.x4{left:453.795000px;}
.x24{left:459.781500px;}
.x5d{left:462.877500px;}
.xe{left:464.949000px;}
.x34{left:467.584500px;}
.x5f{left:469.207500px;}
.x7{left:475.036500px;}
.x22{left:480.507000px;}
.x1b{left:482.859000px;}
.x18{left:484.890000px;}
.x47{left:486.784500px;}
.x3c{left:488.737500px;}
.x67{left:490.989000px;}
.x45{left:493.659000px;}
.x42{left:496.636500px;}
.x28{left:498.138000px;}
.xf{left:514.585500px;}
.x25{left:518.758500px;}
.x40{left:522.448500px;}
.x2c{left:524.313000px;}
.x2f{left:531.945000px;}
.x11{left:544.669500px;}
.x68{left:548.409000px;}
.x29{left:555.558000px;}
.x6c{left:559.209000px;}
.x65{left:570.397500px;}
.x54{left:605.029500px;}
.x31{left:671.863500px;}
.x6d{left:706.530000px;}
.x32{left:722.619000px;}
@media print{
.v12{vertical-align:-58.330667pt;}
.v1a{vertical-align:-19.413333pt;}
.v1{vertical-align:-17.306667pt;}
.v8{vertical-align:-9.061333pt;}
.v19{vertical-align:-2.106667pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:3.840000pt;}
.v15{vertical-align:6.586667pt;}
.v4{vertical-align:8.245333pt;}
.v7{vertical-align:20.250667pt;}
.vf{vertical-align:21.589333pt;}
.v16{vertical-align:24.101333pt;}
.vb{vertical-align:25.440000pt;}
.vd{vertical-align:28.501333pt;}
.v9{vertical-align:30.762667pt;}
.v3{vertical-align:36.266667pt;}
.v6{vertical-align:38.378667pt;}
.v18{vertical-align:41.397333pt;}
.v5{vertical-align:44.512000pt;}
.v2{vertical-align:47.440000pt;}
.va{vertical-align:73.509333pt;}
.v10{vertical-align:78.197333pt;}
.v11{vertical-align:94.464000pt;}
.vc{vertical-align:95.509333pt;}
.v14{vertical-align:120.949333pt;}
.ve{vertical-align:131.872000pt;}
.v13{vertical-align:153.840000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000467pt;}
.ls57{letter-spacing:0.001333pt;}
.ls5f{letter-spacing:0.002400pt;}
.lsa{letter-spacing:0.002467pt;}
.ls50{letter-spacing:0.002667pt;}
.ls3d{letter-spacing:0.002733pt;}
.ls2a{letter-spacing:0.002800pt;}
.ls23{letter-spacing:0.004133pt;}
.ls4{letter-spacing:0.004267pt;}
.ls5d{letter-spacing:0.004867pt;}
.ls58{letter-spacing:0.008702pt;}
.ls56{letter-spacing:0.011590pt;}
.ls1b{letter-spacing:0.011607pt;}
.ls51{letter-spacing:0.013542pt;}
.ls27{letter-spacing:0.911933pt;}
.ls1f{letter-spacing:1.682667pt;}
.ls32{letter-spacing:1.746467pt;}
.ls9{letter-spacing:1.751800pt;}
.ls4b{letter-spacing:2.652598pt;}
.ls11{letter-spacing:2.653142pt;}
.ls35{letter-spacing:2.653750pt;}
.ls18{letter-spacing:2.654290pt;}
.ls22{letter-spacing:2.656782pt;}
.ls20{letter-spacing:2.657932pt;}
.ls14{letter-spacing:2.658476pt;}
.ls12{letter-spacing:2.659623pt;}
.ls33{letter-spacing:2.844691pt;}
.ls46{letter-spacing:3.778800pt;}
.ls3c{letter-spacing:3.784133pt;}
.ls5a{letter-spacing:6.380000pt;}
.lsb{letter-spacing:9.031265pt;}
.ls1e{letter-spacing:14.332598pt;}
.ls10{letter-spacing:15.554800pt;}
.ls24{letter-spacing:15.562156pt;}
.ls54{letter-spacing:15.565071pt;}
.ls55{letter-spacing:15.572133pt;}
.ls25{letter-spacing:15.573467pt;}
.ls38{letter-spacing:17.539862pt;}
.ls4e{letter-spacing:18.225932pt;}
.ls17{letter-spacing:18.226476pt;}
.ls5c{letter-spacing:18.230115pt;}
.ls37{letter-spacing:18.231265pt;}
.ls4f{letter-spacing:19.461467pt;}
.ls3a{letter-spacing:19.466800pt;}
.ls7{letter-spacing:21.952133pt;}
.ls1c{letter-spacing:22.120417pt;}
.ls41{letter-spacing:22.120957pt;}
.ls39{letter-spacing:22.121292pt;}
.ls4d{letter-spacing:22.124598pt;}
.ls3f{letter-spacing:22.125142pt;}
.ls21{letter-spacing:22.125750pt;}
.ls19{letter-spacing:24.963855pt;}
.ls28{letter-spacing:25.838467pt;}
.ls29{letter-spacing:25.840133pt;}
.ls16{letter-spacing:26.189881pt;}
.ls44{letter-spacing:28.493750pt;}
.ls2e{letter-spacing:28.497932pt;}
.ls30{letter-spacing:28.499084pt;}
.ls52{letter-spacing:29.080699pt;}
.ls0{letter-spacing:35.025484pt;}
.ls42{letter-spacing:36.149467pt;}
.ls40{letter-spacing:36.245467pt;}
.ls2b{letter-spacing:46.151265pt;}
.ls48{letter-spacing:47.285467pt;}
.ls2f{letter-spacing:54.645467pt;}
.ls2{letter-spacing:54.649133pt;}
.lsf{letter-spacing:57.293881pt;}
.ls49{letter-spacing:58.080133pt;}
.ls59{letter-spacing:58.195369pt;}
.ls6{letter-spacing:58.445881pt;}
.ls31{letter-spacing:60.181467pt;}
.ls3{letter-spacing:62.339214pt;}
.lse{letter-spacing:72.669881pt;}
.ls1d{letter-spacing:74.224133pt;}
.ls13{letter-spacing:76.563214pt;}
.ls15{letter-spacing:76.760547pt;}
.ls4c{letter-spacing:85.893467pt;}
.ls5e{letter-spacing:91.273467pt;}
.ls5b{letter-spacing:91.369467pt;}
.ls26{letter-spacing:105.758800pt;}
.ls45{letter-spacing:108.245467pt;}
.ls2d{letter-spacing:119.117881pt;}
.ls3b{letter-spacing:120.320133pt;}
.ls1a{letter-spacing:122.240133pt;}
.ls5{letter-spacing:123.005881pt;}
.lsc{letter-spacing:123.011214pt;}
.ls53{letter-spacing:126.096133pt;}
.ls3e{letter-spacing:152.637750pt;}
.ls2c{letter-spacing:176.357467pt;}
.ls47{letter-spacing:180.451084pt;}
.ls43{letter-spacing:188.248417pt;}
.ls36{letter-spacing:188.741467pt;}
.lsd{letter-spacing:203.392133pt;}
.ls4a{letter-spacing:221.866800pt;}
.ls34{letter-spacing:290.154800pt;}
.ws3{word-spacing:-73.202037pt;}
.ws7{word-spacing:-64.306910pt;}
.ws3d{word-spacing:-48.756404pt;}
.ws9{word-spacing:-38.103507pt;}
.wsa{word-spacing:-37.491403pt;}
.wsa4{word-spacing:-35.840030pt;}
.ws93{word-spacing:-35.781848pt;}
.ws3b{word-spacing:-35.665484pt;}
.ws64{word-spacing:-35.173467pt;}
.ws7b{word-spacing:-35.141847pt;}
.ws3c{word-spacing:-35.083666pt;}
.ws6{word-spacing:-34.866952pt;}
.wsdc{word-spacing:-34.850938pt;}
.wsc5{word-spacing:-34.734574pt;}
.wsff{word-spacing:-34.676393pt;}
.ws92{word-spacing:-34.560029pt;}
.ws3a{word-spacing:-34.443665pt;}
.wsec{word-spacing:-34.385483pt;}
.ws1e{word-spacing:-34.327301pt;}
.wsfe{word-spacing:-34.210938pt;}
.ws5b{word-spacing:-34.036392pt;}
.wsa0{word-spacing:-33.978210pt;}
.wse2{word-spacing:-33.745483pt;}
.ws16{word-spacing:-33.687301pt;}
.ws15{word-spacing:-33.629119pt;}
.wsae{word-spacing:-33.570937pt;}
.ws108{word-spacing:-33.338210pt;}
.ws39{word-spacing:-33.280028pt;}
.wsfd{word-spacing:-33.221846pt;}
.wsfa{word-spacing:-33.176343pt;}
.ws54{word-spacing:-33.163664pt;}
.wsfc{word-spacing:-33.105482pt;}
.wseb{word-spacing:-33.047300pt;}
.ws85{word-spacing:-32.989118pt;}
.ws59{word-spacing:-32.698209pt;}
.ws9f{word-spacing:-32.640027pt;}
.ws36{word-spacing:-32.465482pt;}
.ws1b{word-spacing:-32.290936pt;}
.ws61{word-spacing:-32.232754pt;}
.ws60{word-spacing:-32.177850pt;}
.ws6e{word-spacing:-32.116390pt;}
.wsa2{word-spacing:-31.883663pt;}
.ws38{word-spacing:-31.825481pt;}
.ws105{word-spacing:-31.767299pt;}
.ws66{word-spacing:-31.650935pt;}
.ws44{word-spacing:-31.476390pt;}
.wsc8{word-spacing:-31.418208pt;}
.ws5c{word-spacing:-31.360026pt;}
.wsb9{word-spacing:-31.301844pt;}
.ws27{word-spacing:-31.243662pt;}
.ws5d{word-spacing:-31.242923pt;}
.wsc9{word-spacing:-31.127299pt;}
.ws50{word-spacing:-31.125454pt;}
.ws4e{word-spacing:-31.069117pt;}
.ws1f{word-spacing:-30.952753pt;}
.ws6b{word-spacing:-30.894571pt;}
.ws6c{word-spacing:-30.872332pt;}
.ws4c{word-spacing:-30.836389pt;}
.wsbb{word-spacing:-30.720026pt;}
.wsa6{word-spacing:-30.603662pt;}
.wsda{word-spacing:-30.545480pt;}
.wscc{word-spacing:-30.487298pt;}
.ws6a{word-spacing:-30.443831pt;}
.ws69{word-spacing:-30.429116pt;}
.ws51{word-spacing:-30.370934pt;}
.ws53{word-spacing:-30.318357pt;}
.wsc{word-spacing:-30.312753pt;}
.ws4f{word-spacing:-30.288271pt;}
.wsbc{word-spacing:-30.274001pt;}
.wsbd{word-spacing:-30.256486pt;}
.wsd{word-spacing:-30.255275pt;}
.ws5{word-spacing:-30.254571pt;}
.wsbe{word-spacing:-30.182751pt;}
.ws7e{word-spacing:-30.138207pt;}
.ws49{word-spacing:-30.021843pt;}
.ws5f{word-spacing:-29.963661pt;}
.ws43{word-spacing:-29.905479pt;}
.wsba{word-spacing:-29.847298pt;}
.ws32{word-spacing:-29.669959pt;}
.ws78{word-spacing:-29.614570pt;}
.ws104{word-spacing:-29.587618pt;}
.ws14{word-spacing:-29.556388pt;}
.ws102{word-spacing:-29.498206pt;}
.wsf4{word-spacing:-29.440025pt;}
.wsfb{word-spacing:-29.381843pt;}
.ws6d{word-spacing:-29.265479pt;}
.ws40{word-spacing:-29.149115pt;}
.wscb{word-spacing:-29.090933pt;}
.wsf7{word-spacing:-29.032751pt;}
.ws6f{word-spacing:-28.974570pt;}
.wsac{word-spacing:-28.916388pt;}
.ws7a{word-spacing:-28.858206pt;}
.ws7c{word-spacing:-28.800024pt;}
.ws52{word-spacing:-28.741842pt;}
.ws13{word-spacing:-28.683660pt;}
.ws12{word-spacing:-28.625478pt;}
.wsa7{word-spacing:-28.567297pt;}
.ws2a{word-spacing:-28.509115pt;}
.ws1c{word-spacing:-28.450933pt;}
.ws7d{word-spacing:-28.392751pt;}
.wsd6{word-spacing:-28.334569pt;}
.ws91{word-spacing:-28.218205pt;}
.ws79{word-spacing:-28.160023pt;}
.ws62{word-spacing:-27.985478pt;}
.wsdf{word-spacing:-27.927296pt;}
.wsc4{word-spacing:-27.869114pt;}
.ws76{word-spacing:-27.810932pt;}
.wsd2{word-spacing:-27.694569pt;}
.wsc1{word-spacing:-27.636387pt;}
.ws24{word-spacing:-27.578205pt;}
.ws100{word-spacing:-27.229114pt;}
.ws31{word-spacing:-27.170932pt;}
.ws41{word-spacing:-27.110233pt;}
.ws28{word-spacing:-26.880022pt;}
.wsa3{word-spacing:-26.877539pt;}
.ws5e{word-spacing:-26.821841pt;}
.wsf2{word-spacing:-26.763659pt;}
.ws72{word-spacing:-26.589113pt;}
.wsce{word-spacing:-26.530931pt;}
.ws1d{word-spacing:-26.472749pt;}
.ws107{word-spacing:-26.414567pt;}
.wsa5{word-spacing:-26.356386pt;}
.ws29{word-spacing:-26.261959pt;}
.wsf8{word-spacing:-26.240022pt;}
.wsf3{word-spacing:-26.181840pt;}
.ws77{word-spacing:-26.123658pt;}
.ws56{word-spacing:-26.065476pt;}
.ws5a{word-spacing:-26.056150pt;}
.ws8b{word-spacing:-26.007294pt;}
.ws17{word-spacing:-25.832749pt;}
.wsad{word-spacing:-25.779764pt;}
.wsde{word-spacing:-25.716385pt;}
.ws18{word-spacing:-25.658203pt;}
.ws37{word-spacing:-25.600021pt;}
.ws75{word-spacing:-25.367294pt;}
.ws86{word-spacing:-25.134566pt;}
.ws73{word-spacing:-25.018203pt;}
.ws4b{word-spacing:-24.960021pt;}
.ws89{word-spacing:-24.901839pt;}
.ws3f{word-spacing:-24.843657pt;}
.ws65{word-spacing:-24.791990pt;}
.wsf5{word-spacing:-24.669111pt;}
.wsc0{word-spacing:-24.644240pt;}
.ws2f{word-spacing:-24.610930pt;}
.ws2d{word-spacing:-24.436384pt;}
.ws8d{word-spacing:-24.261838pt;}
.wsd9{word-spacing:-24.212649pt;}
.ws1a{word-spacing:-24.203657pt;}
.wse8{word-spacing:-24.157035pt;}
.wsef{word-spacing:-24.150132pt;}
.ws9a{word-spacing:-24.145475pt;}
.wsf{word-spacing:-24.143292pt;}
.ws68{word-spacing:-24.120074pt;}
.wse9{word-spacing:-24.108477pt;}
.wsb{word-spacing:-24.106914pt;}
.wsed{word-spacing:-24.102245pt;}
.ws97{word-spacing:-24.100166pt;}
.ws8f{word-spacing:-24.098766pt;}
.ws30{word-spacing:-24.098337pt;}
.ws94{word-spacing:-24.098138pt;}
.wscf{word-spacing:-24.087990pt;}
.ws21{word-spacing:-24.087293pt;}
.wse7{word-spacing:-24.083242pt;}
.wse5{word-spacing:-24.077474pt;}
.ws95{word-spacing:-24.076476pt;}
.wse{word-spacing:-24.073397pt;}
.wsf0{word-spacing:-24.072547pt;}
.ws96{word-spacing:-24.068774pt;}
.wse6{word-spacing:-24.063770pt;}
.wsc6{word-spacing:-24.058130pt;}
.wsc7{word-spacing:-24.029111pt;}
.ws55{word-spacing:-23.912747pt;}
.ws8a{word-spacing:-23.854565pt;}
.ws22{word-spacing:-23.846639pt;}
.wsdd{word-spacing:-23.563656pt;}
.wsca{word-spacing:-23.384999pt;}
.wsc3{word-spacing:-23.214565pt;}
.ws57{word-spacing:-23.196278pt;}
.ws74{word-spacing:-23.156383pt;}
.wsf6{word-spacing:-23.098201pt;}
.ws87{word-spacing:-22.865474pt;}
.ws4a{word-spacing:-22.749110pt;}
.ws4d{word-spacing:-22.690928pt;}
.wsa9{word-spacing:-22.632746pt;}
.ws3e{word-spacing:-22.574564pt;}
.ws23{word-spacing:-22.400019pt;}
.ws101{word-spacing:-22.050927pt;}
.ws19{word-spacing:-21.992746pt;}
.ws48{word-spacing:-21.876382pt;}
.ws0{word-spacing:-21.585473pt;}
.ws11{word-spacing:-21.236381pt;}
.wse4{word-spacing:-21.120018pt;}
.wsb6{word-spacing:-20.770926pt;}
.ws67{word-spacing:-20.538199pt;}
.wsd5{word-spacing:-20.189108pt;}
.wsb7{word-spacing:-20.072744pt;}
.ws2b{word-spacing:-19.659238pt;}
.ws25{word-spacing:-19.618667pt;}
.wse1{word-spacing:-19.549107pt;}
.wse3{word-spacing:-18.501834pt;}
.wsb5{word-spacing:-18.094561pt;}
.wsf1{word-spacing:-17.125313pt;}
.wse0{word-spacing:-16.814559pt;}
.ws71{word-spacing:-16.681987pt;}
.wscd{word-spacing:-16.642657pt;}
.ws90{word-spacing:-15.776170pt;}
.wsd4{word-spacing:-15.127285pt;}
.ws42{word-spacing:-13.732992pt;}
.ws4{word-spacing:-13.730921pt;}
.ws88{word-spacing:-13.217741pt;}
.ws2e{word-spacing:-12.742163pt;}
.ws2c{word-spacing:-12.412494pt;}
.ws20{word-spacing:-11.722986pt;}
.wsee{word-spacing:-11.560084pt;}
.wsd8{word-spacing:-10.414554pt;}
.ws34{word-spacing:-10.356372pt;}
.ws35{word-spacing:-10.298190pt;}
.ws33{word-spacing:-10.284067pt;}
.wsc2{word-spacing:-10.023668pt;}
.ws99{word-spacing:-9.250917pt;}
.wsd7{word-spacing:-6.865460pt;}
.ws98{word-spacing:-5.469095pt;}
.wsd1{word-spacing:-2.152729pt;}
.ws8{word-spacing:0.000000pt;}
.ws2{word-spacing:2.098247pt;}
.wsd0{word-spacing:2.210911pt;}
.wsaf{word-spacing:4.496772pt;}
.wsdb{word-spacing:4.498230pt;}
.ws58{word-spacing:4.890233pt;}
.ws80{word-spacing:5.545141pt;}
.wsd3{word-spacing:6.125665pt;}
.ws63{word-spacing:6.936600pt;}
.ws45{word-spacing:7.006667pt;}
.wsb0{word-spacing:7.414106pt;}
.wsb2{word-spacing:7.422871pt;}
.ws46{word-spacing:8.388205pt;}
.wsa1{word-spacing:8.391387pt;}
.ws8c{word-spacing:8.391894pt;}
.ws47{word-spacing:8.412333pt;}
.wsaa{word-spacing:8.435100pt;}
.ws26{word-spacing:9.171403pt;}
.ws10{word-spacing:10.329293pt;}
.ws7f{word-spacing:11.232693pt;}
.wsb1{word-spacing:14.763439pt;}
.wsab{word-spacing:14.764720pt;}
.wsa8{word-spacing:14.770053pt;}
.wsb3{word-spacing:14.813766pt;}
.ws9b{word-spacing:15.010922pt;}
.ws8e{word-spacing:19.338400pt;}
.wsf9{word-spacing:23.680267pt;}
.wsb4{word-spacing:33.844205pt;}
.ws103{word-spacing:35.465333pt;}
.ws70{word-spacing:50.237800pt;}
.ws9d{word-spacing:57.890957pt;}
.ws81{word-spacing:99.490992pt;}
.wsbf{word-spacing:141.481090pt;}
.ws106{word-spacing:212.873974pt;}
.ws9c{word-spacing:262.884242pt;}
.ws83{word-spacing:320.662193pt;}
.ws84{word-spacing:334.916750pt;}
.ws82{word-spacing:346.204033pt;}
.wsea{word-spacing:417.038866pt;}
.wsb8{word-spacing:492.763461pt;}
.ws9e{word-spacing:709.096588pt;}
.ws1{word-spacing:1819.119542pt;}
._3{margin-left:-35.025484pt;}
._26{margin-left:-30.778207pt;}
._39{margin-left:-13.768333pt;}
._6{margin-left:-10.123645pt;}
._2d{margin-left:-8.019786pt;}
._2{margin-left:-6.574551pt;}
._5{margin-left:-5.608106pt;}
._c{margin-left:-4.480004pt;}
._7a{margin-left:-3.432730pt;}
._12{margin-left:-2.385457pt;}
._1e{margin-left:-0.989092pt;}
._28{width:1.105455pt;}
._29{width:2.385457pt;}
._4{width:4.130913pt;}
._27{width:7.434681pt;}
._47{width:9.018189pt;}
._3b{width:10.958429pt;}
._36{width:12.380938pt;}
._35{width:14.477973pt;}
._37{width:15.554800pt;}
._4d{width:16.750000pt;}
._9{width:18.501834pt;}
._1a{width:19.950848pt;}
._2e{width:21.125908pt;}
._34{width:22.020471pt;}
._1f{width:23.116114pt;}
._2a{width:24.287693pt;}
._b{width:25.192748pt;}
._19{width:26.196404pt;}
._3a{width:27.788525pt;}
._14{width:29.046574pt;}
._2f{width:30.196389pt;}
._32{width:31.385624pt;}
._31{width:32.581845pt;}
._15{width:34.416794pt;}
._99{width:35.356662pt;}
._8{width:36.247303pt;}
._e{width:38.109123pt;}
._16{width:39.389124pt;}
._1{width:40.727307pt;}
._33{width:42.123671pt;}
._79{width:43.487754pt;}
._2b{width:44.421969pt;}
._23{width:45.337497pt;}
._0{width:46.778221pt;}
._f{width:48.883242pt;}
._10{width:50.482931pt;}
._13{width:51.537276pt;}
._25{width:52.778818pt;}
._1d{width:54.158436pt;}
._24{width:55.596236pt;}
._11{width:56.588677pt;}
._62{width:57.586997pt;}
._20{width:58.936421pt;}
._1b{width:60.025130pt;}
._1c{width:61.403132pt;}
._30{width:63.761067pt;}
._17{width:64.744560pt;}
._22{width:65.713182pt;}
._63{width:66.648049pt;}
._18{width:69.234238pt;}
._5e{width:74.821881pt;}
._2c{width:76.513067pt;}
._4e{width:78.021883pt;}
._91{width:82.967342pt;}
._21{width:84.162358pt;}
._7{width:86.215829pt;}
._98{width:93.783836pt;}
._5c{width:98.094627pt;}
._58{width:105.483724pt;}
._84{width:107.287362pt;}
._48{width:112.931003pt;}
._83{width:114.967369pt;}
._65{width:116.253629pt;}
._d{width:120.301154pt;}
._a{width:121.755327pt;}
._92{width:125.175998pt;}
._57{width:126.487378pt;}
._43{width:128.349198pt;}
._51{width:131.316473pt;}
._53{width:133.411020pt;}
._8c{width:136.145568pt;}
._5a{width:140.334662pt;}
._56{width:146.792850pt;}
._54{width:148.480124pt;}
._4a{width:149.934670pt;}
._3d{width:159.301951pt;}
._55{width:166.051047pt;}
._66{width:171.345597pt;}
._90{width:176.415067pt;}
._93{width:177.558834pt;}
._3c{width:192.138450pt;}
._76{width:195.864446pt;}
._50{width:199.229494pt;}
._6b{width:202.645740pt;}
._61{width:203.602277pt;}
._45{width:207.765065pt;}
._4b{width:210.374424pt;}
._70{width:217.952162pt;}
._3f{width:220.797803pt;}
._86{width:225.730338pt;}
._8d{width:227.307798pt;}
._8e{width:232.078711pt;}
._60{width:234.264121pt;}
._52{width:235.844492pt;}
._3e{width:239.532439pt;}
._38{width:248.063067pt;}
._81{width:251.466450pt;}
._40{width:253.487187pt;}
._87{width:254.814779pt;}
._5b{width:257.192676pt;}
._82{width:260.749329pt;}
._6e{width:265.370383pt;}
._8a{width:269.896925pt;}
._95{width:272.008109pt;}
._97{width:286.096442pt;}
._4c{width:287.845959pt;}
._49{width:292.650102pt;}
._69{width:312.243410pt;}
._6a{width:314.064015pt;}
._5d{width:316.851373pt;}
._8f{width:324.184924pt;}
._85{width:328.988831pt;}
._89{width:332.734794pt;}
._6f{width:339.059916pt;}
._88{width:340.489666pt;}
._96{width:364.104109pt;}
._68{width:366.809474pt;}
._46{width:371.978599pt;}
._73{width:377.415242pt;}
._7d{width:379.016459pt;}
._44{width:383.008922pt;}
._42{width:392.400435pt;}
._74{width:394.975312pt;}
._94{width:404.239467pt;}
._67{width:406.515001pt;}
._6c{width:407.801046pt;}
._41{width:411.634325pt;}
._80{width:412.706365pt;}
._7f{width:434.463778pt;}
._59{width:449.425564pt;}
._75{width:455.801901pt;}
._77{width:464.936454pt;}
._8b{width:465.911634pt;}
._78{width:481.798341pt;}
._71{width:503.656417pt;}
._7e{width:504.691896pt;}
._5f{width:513.192890pt;}
._6d{width:528.267348pt;}
._4f{width:598.543990pt;}
._72{width:673.798501pt;}
._64{width:678.457046pt;}
._7b{width:755.628834pt;}
._7c{width:810.030332pt;}
.fs4{font-size:49.046400pt;}
.fs5{font-size:55.220267pt;}
.fs1{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:70.066667pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:56.149333pt;}
.y2f{bottom:97.006667pt;}
.y10d{bottom:97.378667pt;}
.yd0{bottom:98.564000pt;}
.yb8{bottom:108.538667pt;}
.y96{bottom:110.058667pt;}
.ycf{bottom:110.581333pt;}
.y53{bottom:112.566667pt;}
.y20e{bottom:113.746667pt;}
.y12f{bottom:114.993333pt;}
.y2e{bottom:115.072000pt;}
.y10c{bottom:115.444000pt;}
.y95{bottom:120.014667pt;}
.y196{bottom:120.126667pt;}
.y94{bottom:122.077333pt;}
.y1bc{bottom:123.098667pt;}
.y179{bottom:125.828000pt;}
.y15f{bottom:125.965333pt;}
.yb7{bottom:126.604000pt;}
.y52{bottom:130.633333pt;}
.y15e{bottom:131.362667pt;}
.y20d{bottom:131.812000pt;}
.y2d{bottom:133.137333pt;}
.y147{bottom:137.246667pt;}
.y195{bottom:138.192000pt;}
.y1bb{bottom:141.164000pt;}
.y12e{bottom:142.092000pt;}
.y10b{bottom:142.542667pt;}
.y244{bottom:143.797333pt;}
.yb6{bottom:144.669333pt;}
.y1db{bottom:146.197333pt;}
.y51{bottom:148.698667pt;}
.y20c{bottom:149.878667pt;}
.y2c{bottom:151.202667pt;}
.y1ba{bottom:159.229333pt;}
.y12d{bottom:160.157333pt;}
.y178{bottom:160.446667pt;}
.yb5{bottom:162.736000pt;}
.yce{bottom:163.970667pt;}
.y194{bottom:164.912000pt;}
.y283{bottom:166.396000pt;}
.y146{bottom:166.637333pt;}
.y20b{bottom:167.944000pt;}
.y2b{bottom:169.269333pt;}
.y1f5{bottom:169.400000pt;}
.y177{bottom:172.464000pt;}
.y243{bottom:173.188000pt;}
.y72{bottom:174.496000pt;}
.yec{bottom:174.500000pt;}
.y93{bottom:174.520000pt;}
.y1da{bottom:175.588000pt;}
.y10a{bottom:176.213333pt;}
.y22b{bottom:176.816000pt;}
.y15d{bottom:178.028000pt;}
.y50{bottom:178.088000pt;}
.y109{bottom:178.274667pt;}
.yb4{bottom:180.801333pt;}
.ycd{bottom:182.036000pt;}
.y282{bottom:184.461333pt;}
.y20a{bottom:186.009333pt;}
.y1b9{bottom:186.328000pt;}
.y2a{bottom:187.334667pt;}
.y1f4{bottom:187.465333pt;}
.y71{bottom:192.561333pt;}
.y92{bottom:192.585333pt;}
.y22a{bottom:194.882667pt;}
.y281{bottom:202.528000pt;}
.y242{bottom:202.577333pt;}
.y193{bottom:202.800000pt;}
.y209{bottom:204.074667pt;}
.y25f{bottom:204.274667pt;}
.y1b8{bottom:204.393333pt;}
.y29{bottom:205.400000pt;}
.yb3{bottom:207.900000pt;}
.yeb{bottom:209.118667pt;}
.y15c{bottom:212.453333pt;}
.y12c{bottom:212.798667pt;}
.ycc{bottom:215.146667pt;}
.y145{bottom:219.278667pt;}
.y70{bottom:219.660000pt;}
.y91{bottom:219.684000pt;}
.yea{bottom:221.136000pt;}
.y1f3{bottom:221.965333pt;}
.y229{bottom:221.980000pt;}
.y208{bottom:222.140000pt;}
.y1b7{bottom:222.458667pt;}
.y28{bottom:223.465333pt;}
.y15b{bottom:224.470667pt;}
.y108{bottom:224.940000pt;}
.yb2{bottom:225.965333pt;}
.ycb{bottom:227.164000pt;}
.y1f2{bottom:227.252000pt;}
.y176{bottom:228.734667pt;}
.y280{bottom:229.625333pt;}
.y12b{bottom:230.864000pt;}
.y144{bottom:237.344000pt;}
.y6f{bottom:237.725333pt;}
.y228{bottom:240.046667pt;}
.y27{bottom:241.530667pt;}
.y107{bottom:243.005333pt;}
.y192{bottom:245.402667pt;}
.y1d9{bottom:245.820000pt;}
.y90{bottom:246.782667pt;}
.y27f{bottom:247.690667pt;}
.y4f{bottom:248.320000pt;}
.y207{bottom:248.860000pt;}
.y12a{bottom:248.930667pt;}
.yb1{bottom:255.354667pt;}
.y143{bottom:255.409333pt;}
.y6e{bottom:255.790667pt;}
.y26{bottom:259.597333pt;}
.y191{bottom:263.468000pt;}
.y8f{bottom:264.848000pt;}
.y27e{bottom:265.757333pt;}
.y4e{bottom:266.386667pt;}
.y129{bottom:266.996000pt;}
.y227{bottom:267.144000pt;}
.y174{bottom:269.674667pt;}
.ye9{bottom:270.196000pt;}
.y106{bottom:272.396000pt;}
.y1b6{bottom:272.616000pt;}
.y241{bottom:272.809333pt;}
.y1d8{bottom:272.917333pt;}
.y142{bottom:273.476000pt;}
.y25e{bottom:274.506667pt;}
.y173{bottom:275.072000pt;}
.y175{bottom:275.597333pt;}
.y25{bottom:277.662667pt;}
.y15a{bottom:277.860000pt;}
.y1f1{bottom:278.169333pt;}
.yca{bottom:279.432000pt;}
.ye8{bottom:280.152000pt;}
.ye7{bottom:282.213333pt;}
.y6d{bottom:282.889333pt;}
.y8e{bottom:282.913333pt;}
.y27d{bottom:283.822667pt;}
.y128{bottom:285.061333pt;}
.y226{bottom:285.210667pt;}
.y206{bottom:288.834667pt;}
.y190{bottom:290.566667pt;}
.y1b5{bottom:290.681333pt;}
.y240{bottom:290.874667pt;}
.y1d7{bottom:290.982667pt;}
.y141{bottom:291.541333pt;}
.y25d{bottom:292.572000pt;}
.y4d{bottom:293.484000pt;}
.y24{bottom:295.728000pt;}
.y1f0{bottom:296.236000pt;}
.yb0{bottom:297.957333pt;}
.y6c{bottom:300.954667pt;}
.y8d{bottom:300.978667pt;}
.y127{bottom:303.126667pt;}
.yc9{bottom:306.530667pt;}
.y18f{bottom:308.632000pt;}
.y1b4{bottom:308.746667pt;}
.y23f{bottom:308.940000pt;}
.y1d6{bottom:309.049333pt;}
.y140{bottom:309.606667pt;}
.y25c{bottom:310.637333pt;}
.y4c{bottom:311.550667pt;}
.y225{bottom:312.308000pt;}
.y159{bottom:313.593333pt;}
.y23{bottom:313.793333pt;}
.y105{bottom:314.997333pt;}
.yaf{bottom:316.022667pt;}
.y126{bottom:321.192000pt;}
.y1ef{bottom:323.333333pt;}
.y18e{bottom:326.697333pt;}
.y1b3{bottom:326.813333pt;}
.y23e{bottom:327.006667pt;}
.y13f{bottom:327.672000pt;}
.y6b{bottom:328.053333pt;}
.y8c{bottom:328.077333pt;}
.y25b{bottom:328.704000pt;}
.y4b{bottom:329.616000pt;}
.y172{bottom:329.860000pt;}
.y224{bottom:330.374667pt;}
.y205{bottom:331.437333pt;}
.y22{bottom:331.858667pt;}
.y104{bottom:333.064000pt;}
.yae{bottom:334.088000pt;}
.ye6{bottom:334.412000pt;}
.y27c{bottom:336.464000pt;}
.y1d5{bottom:338.438667pt;}
.y125{bottom:339.258667pt;}
.y1ee{bottom:341.400000pt;}
.yc8{bottom:342.262667pt;}
.y1b2{bottom:344.878667pt;}
.y13e{bottom:345.737333pt;}
.y6a{bottom:346.118667pt;}
.y8b{bottom:346.142667pt;}
.y25a{bottom:346.769333pt;}
.y4a{bottom:347.681333pt;}
.y171{bottom:347.925333pt;}
.y204{bottom:349.502667pt;}
.y21{bottom:349.925333pt;}
.yad{bottom:352.154667pt;}
.y27b{bottom:354.529333pt;}
.y23d{bottom:356.396000pt;}
.y103{bottom:356.401333pt;}
.y124{bottom:357.324000pt;}
.y223{bottom:357.472000pt;}
.y158{bottom:358.757333pt;}
.y1b1{bottom:362.944000pt;}
.ye5{bottom:363.801333pt;}
.y69{bottom:364.184000pt;}
.y8a{bottom:364.209333pt;}
.y49{bottom:365.746667pt;}
.y203{bottom:367.568000pt;}
.y20{bottom:367.990667pt;}
.y102{bottom:368.418667pt;}
.y18d{bottom:369.300000pt;}
.yac{bottom:370.220000pt;}
.y13d{bottom:372.457333pt;}
.y27a{bottom:372.596000pt;}
.y123{bottom:375.389333pt;}
.y222{bottom:375.538667pt;}
.y259{bottom:376.158667pt;}
.y157{bottom:376.822667pt;}
.y1b0{bottom:381.009333pt;}
.y1d4{bottom:381.041333pt;}
.y48{bottom:383.812000pt;}
.y1ed{bottom:384.001333pt;}
.y202{bottom:385.633333pt;}
.y1f{bottom:386.056000pt;}
.yc7{bottom:387.426667pt;}
.yab{bottom:388.285333pt;}
.y170{bottom:389.290667pt;}
.y279{bottom:390.661333pt;}
.y89{bottom:391.306667pt;}
.y122{bottom:393.454667pt;}
.y68{bottom:397.856000pt;}
.y23c{bottom:398.998667pt;}
.y1af{bottom:399.074667pt;}
.y67{bottom:399.917333pt;}
.y47{bottom:401.877333pt;}
.y221{bottom:402.636000pt;}
.y201{bottom:403.698667pt;}
.y18c{bottom:403.796000pt;}
.y1e{bottom:404.121333pt;}
.yaa{bottom:406.350667pt;}
.ye4{bottom:406.404000pt;}
.y1d3{bottom:408.140000pt;}
.y278{bottom:408.726667pt;}
.y88{bottom:409.373333pt;}
.y121{bottom:411.520000pt;}
.y13c{bottom:412.638667pt;}
.y16f{bottom:413.168000pt;}
.yc6{bottom:416.817333pt;}
.y23b{bottom:417.064000pt;}
.y1ae{bottom:417.141333pt;}
.y258{bottom:418.761333pt;}
.y156{bottom:419.425333pt;}
.y1ec{bottom:419.734667pt;}
.y46{bottom:419.944000pt;}
.y220{bottom:420.702667pt;}
.y1d{bottom:422.186667pt;}
.y1d2{bottom:426.205333pt;}
.y277{bottom:426.792000pt;}
.y101{bottom:426.992000pt;}
.y87{bottom:427.438667pt;}
.y18b{bottom:427.673333pt;}
.y120{bottom:429.586667pt;}
.y200{bottom:433.089333pt;}
.ya9{bottom:433.449333pt;}
.y23a{bottom:435.129333pt;}
.y1ad{bottom:435.206667pt;}
.ye2{bottom:436.597333pt;}
.y45{bottom:438.009333pt;}
.ye1{bottom:438.658667pt;}
.y1c{bottom:440.253333pt;}
.ye3{bottom:442.953333pt;}
.y1d1{bottom:444.270667pt;}
.y276{bottom:444.857333pt;}
.y100{bottom:445.057333pt;}
.y86{bottom:445.504000pt;}
.y66{bottom:446.582667pt;}
.y11f{bottom:447.652000pt;}
.y256{bottom:448.954667pt;}
.y155{bottom:449.716000pt;}
.y21f{bottom:450.092000pt;}
.y255{bottom:451.017333pt;}
.ya8{bottom:451.514667pt;}
.y239{bottom:453.194667pt;}
.y1ac{bottom:453.272000pt;}
.y16e{bottom:454.137333pt;}
.ye0{bottom:454.970667pt;}
.y154{bottom:455.113333pt;}
.y257{bottom:455.310667pt;}
.y44{bottom:456.074667pt;}
.y1b{bottom:458.318667pt;}
.yc5{bottom:459.418667pt;}
.y275{bottom:462.924000pt;}
.y85{bottom:463.569333pt;}
.y65{bottom:464.648000pt;}
.y1eb{bottom:464.898667pt;}
.y13b{bottom:465.280000pt;}
.y11e{bottom:465.717333pt;}
.y254{bottom:467.328000pt;}
.ya7{bottom:469.580000pt;}
.y18a{bottom:470.601333pt;}
.y238{bottom:471.261333pt;}
.y1ab{bottom:471.337333pt;}
.y1d0{bottom:471.369333pt;}
.y153{bottom:471.424000pt;}
.yff{bottom:472.156000pt;}
.y43{bottom:474.140000pt;}
.y1ff{bottom:475.692000pt;}
.y1a{bottom:476.384000pt;}
.yc4{bottom:477.485333pt;}
.y274{bottom:480.989333pt;}
.y84{bottom:481.634667pt;}
.y1ea{bottom:482.964000pt;}
.y13a{bottom:483.345333pt;}
.y11d{bottom:483.782667pt;}
.y16d{bottom:488.756000pt;}
.y237{bottom:489.326667pt;}
.yfe{bottom:490.221333pt;}
.y42{bottom:492.205333pt;}
.y1fe{bottom:493.757333pt;}
.y64{bottom:494.038667pt;}
.y19{bottom:494.449333pt;}
.y1aa{bottom:498.057333pt;}
.y273{bottom:499.054667pt;}
.y1cf{bottom:500.760000pt;}
.y16c{bottom:500.773333pt;}
.y1e9{bottom:501.029333pt;}
.y189{bottom:501.033333pt;}
.y139{bottom:501.410667pt;}
.y11c{bottom:501.848000pt;}
.ya6{bottom:501.944000pt;}
.ya5{bottom:504.006667pt;}
.y253{bottom:507.022667pt;}
.y236{bottom:507.392000pt;}
.ydf{bottom:507.413333pt;}
.yc3{bottom:507.724000pt;}
.y83{bottom:508.733333pt;}
.y41{bottom:510.272000pt;}
.y1fd{bottom:511.822667pt;}
.y18{bottom:512.514667pt;}
.y188{bottom:513.050667pt;}
.y272{bottom:517.120000pt;}
.y1e8{bottom:519.094667pt;}
.y138{bottom:519.476000pt;}
.yfd{bottom:519.612000pt;}
.yc2{bottom:519.741333pt;}
.y11b{bottom:519.914667pt;}
.ya4{bottom:520.317333pt;}
.y21e{bottom:520.324000pt;}
.y63{bottom:523.428000pt;}
.y152{bottom:523.868000pt;}
.y235{bottom:525.457333pt;}
.y1fc{bottom:529.888000pt;}
.y17{bottom:530.581333pt;}
.y1a9{bottom:533.461333pt;}
.y271{bottom:535.185333pt;}
.y137{bottom:537.542667pt;}
.yde{bottom:537.653333pt;}
.y11a{bottom:537.980000pt;}
.y82{bottom:538.124000pt;}
.y40{bottom:539.661333pt;}
.y1ce{bottom:543.361333pt;}
.y234{bottom:543.522667pt;}
.y252{bottom:544.132000pt;}
.y1e7{bottom:546.193333pt;}
.ydd{bottom:547.609333pt;}
.y16{bottom:548.646667pt;}
.ydc{bottom:549.670667pt;}
.y21d{bottom:549.714667pt;}
.y16b{bottom:553.217333pt;}
.y270{bottom:553.252000pt;}
.y251{bottom:554.088000pt;}
.y151{bottom:554.106667pt;}
.y119{bottom:556.045333pt;}
.y250{bottom:556.149333pt;}
.y1fb{bottom:559.278667pt;}
.y1cd{bottom:561.426667pt;}
.y233{bottom:561.589333pt;}
.yfc{bottom:562.214667pt;}
.y1e6{bottom:564.258667pt;}
.y136{bottom:564.262667pt;}
.y187{bottom:564.577333pt;}
.y150{bottom:566.124000pt;}
.y15{bottom:566.712000pt;}
.y26f{bottom:571.317333pt;}
.yc1{bottom:572.185333pt;}
.ya3{bottom:572.760000pt;}
.y118{bottom:574.110667pt;}
.y1a8{bottom:575.357333pt;}
.y186{bottom:576.594667pt;}
.y1cc{bottom:579.493333pt;}
.yfb{bottom:580.280000pt;}
.y81{bottom:580.725333pt;}
.y1e5{bottom:582.324000pt;}
.y16a{bottom:583.456000pt;}
.y14{bottom:584.777333pt;}
.y1fa{bottom:588.668000pt;}
.y232{bottom:588.686667pt;}
.y26e{bottom:589.382667pt;}
.ya2{bottom:590.826667pt;}
.y117{bottom:592.176000pt;}
.y1a7{bottom:593.422667pt;}
.y62{bottom:593.660000pt;}
.y169{bottom:595.473333pt;}
.y1cb{bottom:597.558667pt;}
.yfa{bottom:598.345333pt;}
.y24f{bottom:598.394667pt;}
.y80{bottom:598.792000pt;}
.y13{bottom:602.842667pt;}
.y135{bottom:604.442667pt;}
.ydb{bottom:604.458667pt;}
.y26d{bottom:607.448000pt;}
.yc0{bottom:607.917333pt;}
.ya1{bottom:608.892000pt;}
.y3f{bottom:609.893333pt;}
.y1a6{bottom:611.488000pt;}
.y1e4{bottom:611.714667pt;}
.y61{bottom:611.725333pt;}
.yf9{bottom:616.410667pt;}
.y7f{bottom:616.857333pt;}
.y14f{bottom:618.568000pt;}
.y116{bottom:618.896000pt;}
.y21c{bottom:619.946667pt;}
.y12{bottom:620.908000pt;}
.y231{bottom:623.113333pt;}
.y1ca{bottom:624.657333pt;}
.y26c{bottom:625.513333pt;}
.ya0{bottom:626.957333pt;}
.y3e{bottom:627.958667pt;}
.y1a5{bottom:629.553333pt;}
.y185{bottom:631.505333pt;}
.ybf{bottom:632.556000pt;}
.y134{bottom:633.832000pt;}
.yf8{bottom:634.476000pt;}
.ybe{bottom:634.617333pt;}
.yda{bottom:634.697333pt;}
.y230{bottom:635.130667pt;}
.y24e{bottom:635.502667pt;}
.y14e{bottom:636.633333pt;}
.y21b{bottom:638.012000pt;}
.y60{bottom:638.824000pt;}
.y11{bottom:638.974667pt;}
.y1c9{bottom:642.722667pt;}
.y26b{bottom:643.580000pt;}
.yd9{bottom:646.714667pt;}
.y24d{bottom:647.521333pt;}
.y1a4{bottom:647.618667pt;}
.y168{bottom:647.917333pt;}
.y7e{bottom:648.829333pt;}
.y1e3{bottom:654.317333pt;}
.y3d{bottom:655.057333pt;}
.y21a{bottom:656.077333pt;}
.y9f{bottom:656.348000pt;}
.y115{bottom:656.785333pt;}
.y5f{bottom:656.889333pt;}
.y10{bottom:657.040000pt;}
.y1f9{bottom:658.900000pt;}
.y1c8{bottom:660.788000pt;}
.y7d{bottom:660.846667pt;}
.y26a{bottom:661.645333pt;}
.y1a3{bottom:665.685333pt;}
.y14d{bottom:666.024000pt;}
.y184{bottom:667.238667pt;}
.y3c{bottom:673.122667pt;}
.y219{bottom:674.142667pt;}
.y5e{bottom:674.954667pt;}
.yf{bottom:675.105333pt;}
.y167{bottom:678.349333pt;}
.y1c7{bottom:678.853333pt;}
.y269{bottom:679.710667pt;}
.ybd{bottom:681.282667pt;}
.y1e2{bottom:681.414667pt;}
.y1a2{bottom:683.750667pt;}
.y166{bottom:684.969333pt;}
.y1f8{bottom:685.998667pt;}
.yf7{bottom:687.118667pt;}
.y22f{bottom:688.554667pt;}
.y165{bottom:690.366667pt;}
.y3b{bottom:691.189333pt;}
.y5d{bottom:693.021333pt;}
.ye{bottom:693.170667pt;}
.y268{bottom:697.776000pt;}
.y9e{bottom:698.949333pt;}
.y114{bottom:699.386667pt;}
.y1e1{bottom:699.481333pt;}
.y218{bottom:701.241333pt;}
.yd8{bottom:701.502667pt;}
.y1a1{bottom:701.816000pt;}
.y24c{bottom:702.308000pt;}
.y133{bottom:704.064000pt;}
.yf6{bottom:705.184000pt;}
.y183{bottom:709.018667pt;}
.y3a{bottom:709.254667pt;}
.y5c{bottom:711.086667pt;}
.yd{bottom:711.236000pt;}
.y7c{bottom:713.097333pt;}
.y1c6{bottom:714.984000pt;}
.y267{bottom:715.841333pt;}
.y9d{bottom:717.014667pt;}
.y22e{bottom:717.945333pt;}
.y14c{bottom:718.665333pt;}
.y217{bottom:719.306667pt;}
.yd7{bottom:719.568000pt;}
.y1a0{bottom:719.881333pt;}
.y182{bottom:721.036000pt;}
.y132{bottom:722.130667pt;}
.yf5{bottom:723.249333pt;}
.y1e0{bottom:728.870667pt;}
.yc{bottom:729.302667pt;}
.y7b{bottom:731.162667pt;}
.y1c5{bottom:733.050667pt;}
.y266{bottom:733.906667pt;}
.y9c{bottom:735.081333pt;}
.y14b{bottom:736.730667pt;}
.y24b{bottom:736.734667pt;}
.y216{bottom:737.372000pt;}
.y5b{bottom:738.185333pt;}
.y131{bottom:740.196000pt;}
.yf4{bottom:741.314667pt;}
.y113{bottom:744.550667pt;}
.y39{bottom:744.684000pt;}
.y164{bottom:745.154667pt;}
.yd6{bottom:746.666667pt;}
.y19f{bottom:746.980000pt;}
.yb{bottom:747.368000pt;}
.y24a{bottom:748.752000pt;}
.y1c4{bottom:751.116000pt;}
.y265{bottom:751.973333pt;}
.y14a{bottom:754.796000pt;}
.y215{bottom:755.438667pt;}
.y7a{bottom:758.261333pt;}
.yf3{bottom:759.380000pt;}
.y22d{bottom:760.546667pt;}
.ybc{bottom:762.178667pt;}
.y9b{bottom:764.470667pt;}
.yd5{bottom:764.732000pt;}
.ya{bottom:765.433333pt;}
.y5a{bottom:767.574667pt;}
.y38{bottom:768.594667pt;}
.y1c3{bottom:769.181333pt;}
.y264{bottom:770.038667pt;}
.y1df{bottom:771.473333pt;}
.y214{bottom:773.504000pt;}
.y19e{bottom:774.078667pt;}
.y163{bottom:775.586667pt;}
.y181{bottom:775.946667pt;}
.y1f7{bottom:776.326667pt;}
.yf2{bottom:777.446667pt;}
.y149{bottom:781.516000pt;}
.yd4{bottom:782.797333pt;}
.y9{bottom:783.498667pt;}
.y1c2{bottom:787.246667pt;}
.y162{bottom:787.604000pt;}
.y263{bottom:788.104000pt;}
.y79{bottom:788.500000pt;}
.y1de{bottom:789.538667pt;}
.ybb{bottom:791.569333pt;}
.y19d{bottom:792.144000pt;}
.y9a{bottom:793.861333pt;}
.y1f6{bottom:794.392000pt;}
.yf1{bottom:795.512000pt;}
.y22c{bottom:796.280000pt;}
.y112{bottom:797.193333pt;}
.y78{bottom:798.456000pt;}
.y77{bottom:800.517333pt;}
.yd3{bottom:800.864000pt;}
.y8{bottom:801.564000pt;}
.y249{bottom:802.141333pt;}
.y180{bottom:803.045333pt;}
.y1c1{bottom:805.312000pt;}
.y262{bottom:806.169333pt;}
.y213{bottom:809.634667pt;}
.y59{bottom:810.177333pt;}
.y19c{bottom:810.209333pt;}
.yf0{bottom:813.577333pt;}
.y111{bottom:815.258667pt;}
.y1dd{bottom:816.637333pt;}
.y37{bottom:818.929333pt;}
.y7{bottom:819.630667pt;}
.yba{bottom:820.960000pt;}
.y17f{bottom:821.110667pt;}
.y148{bottom:821.490667pt;}
.y1c0{bottom:823.378667pt;}
.y261{bottom:824.234667pt;}
.y58{bottom:828.242667pt;}
.y248{bottom:831.530667pt;}
.yef{bottom:831.642667pt;}
.y110{bottom:833.324000pt;}
.y1dc{bottom:834.702667pt;}
.y212{bottom:836.733333pt;}
.y36{bottom:836.994667pt;}
.y6{bottom:837.696000pt;}
.y161{bottom:839.556000pt;}
.y1bf{bottom:841.444000pt;}
.y260{bottom:842.301333pt;}
.yd2{bottom:846.026667pt;}
.y130{bottom:846.028000pt;}
.y17e{bottom:848.209333pt;}
.yee{bottom:849.708000pt;}
.y10f{bottom:851.389333pt;}
.y76{bottom:852.768000pt;}
.y211{bottom:854.798667pt;}
.y35{bottom:855.060000pt;}
.y57{bottom:855.341333pt;}
.y5{bottom:855.761333pt;}
.y160{bottom:857.621333pt;}
.y1be{bottom:859.509333pt;}
.y19b{bottom:860.366667pt;}
.y99{bottom:864.093333pt;}
.y17d{bottom:866.274667pt;}
.y75{bottom:870.833333pt;}
.y210{bottom:872.864000pt;}
.y34{bottom:873.125333pt;}
.y56{bottom:873.406667pt;}
.y4{bottom:873.826667pt;}
.y247{bottom:874.133333pt;}
.yed{bottom:876.428000pt;}
.y10e{bottom:878.109333pt;}
.y19a{bottom:878.432000pt;}
.y98{bottom:882.158667pt;}
.y1bd{bottom:886.608000pt;}
.yb9{bottom:891.190667pt;}
.y33{bottom:891.192000pt;}
.y3{bottom:891.892000pt;}
.y199{bottom:896.497333pt;}
.y74{bottom:897.932000pt;}
.y97{bottom:900.224000pt;}
.y20f{bottom:902.254667pt;}
.y17b{bottom:907.640000pt;}
.y55{bottom:908.025333pt;}
.y32{bottom:909.257333pt;}
.y2{bottom:909.958667pt;}
.y198{bottom:914.562667pt;}
.y73{bottom:915.997333pt;}
.yd1{bottom:918.289333pt;}
.y54{bottom:920.042667pt;}
.y17c{bottom:920.184000pt;}
.y245{bottom:920.533333pt;}
.y246{bottom:921.060000pt;}
.y31{bottom:927.322667pt;}
.y17a{bottom:931.517333pt;}
.y197{bottom:941.282667pt;}
.y1{bottom:945.388000pt;}
.h2{height:44.204582pt;}
.hd{height:44.517083pt;}
.h3{height:47.187539pt;}
.h16{height:47.192873pt;}
.h4{height:48.443467pt;}
.h19{height:51.795963pt;}
.h1{height:58.131998pt;}
.h14{height:66.752150pt;}
.h6{height:95.360733pt;}
.h1a{height:101.947400pt;}
.h7{height:103.018817pt;}
.h8{height:103.606067pt;}
.hf{height:103.611400pt;}
.h9{height:111.264150pt;}
.he{height:111.269484pt;}
.h1b{height:116.507400pt;}
.h15{height:116.950067pt;}
.h5{height:142.800733pt;}
.hb{height:143.430067pt;}
.h10{height:143.435400pt;}
.ha{height:151.046067pt;}
.hc{height:151.051400pt;}
.h17{height:164.390067pt;}
.h11{height:190.870067pt;}
.h13{height:198.624150pt;}
.h12{height:216.294067pt;}
.h18{height:249.200733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:94.545333pt;}
.x1{left:96.000000pt;}
.x8{left:111.213333pt;}
.x59{left:112.622667pt;}
.x5e{left:116.512000pt;}
.x2{left:117.818667pt;}
.x5{left:128.437333pt;}
.x9{left:132.364000pt;}
.x39{left:144.338667pt;}
.x56{left:148.510667pt;}
.x3{left:151.273333pt;}
.x5a{left:154.178667pt;}
.x69{left:157.934667pt;}
.x63{left:174.857333pt;}
.x4e{left:178.924000pt;}
.x37{left:182.153333pt;}
.x30{left:209.154667pt;}
.x57{left:223.986667pt;}
.x3f{left:238.956000pt;}
.x4c{left:243.544000pt;}
.x3a{left:247.302667pt;}
.x2d{left:250.025333pt;}
.x51{left:261.426667pt;}
.x4f{left:264.861333pt;}
.x53{left:267.168000pt;}
.x6a{left:273.540000pt;}
.x60{left:278.090667pt;}
.x5c{left:279.520000pt;}
.x1f{left:281.906667pt;}
.x26{left:283.788000pt;}
.x4d{left:285.020000pt;}
.x64{left:287.096000pt;}
.x52{left:289.398667pt;}
.x5b{left:290.549333pt;}
.x58{left:295.953333pt;}
.x43{left:301.830667pt;}
.x10{left:302.978667pt;}
.x2e{left:304.045333pt;}
.x49{left:306.210667pt;}
.x1e{left:307.333333pt;}
.x36{left:308.305333pt;}
.x1c{left:311.064000pt;}
.x35{left:315.773333pt;}
.x12{left:316.778667pt;}
.x62{left:319.949333pt;}
.x23{left:322.297333pt;}
.x19{left:323.794667pt;}
.x41{left:324.830667pt;}
.x1a{left:326.110667pt;}
.x2a{left:328.273333pt;}
.x15{left:329.418667pt;}
.x20{left:331.353333pt;}
.x4b{left:334.305333pt;}
.x3b{left:335.569333pt;}
.xc{left:337.400000pt;}
.x33{left:339.822667pt;}
.x13{left:341.458667pt;}
.x48{left:343.112000pt;}
.xd{left:347.490667pt;}
.x66{left:349.218667pt;}
.x2b{left:352.953333pt;}
.x27{left:355.573333pt;}
.x3d{left:357.056000pt;}
.x1d{left:357.964000pt;}
.x46{left:360.216000pt;}
.x55{left:362.002667pt;}
.x16{left:363.814667pt;}
.x50{left:365.176000pt;}
.x6{left:367.660000pt;}
.x3e{left:369.984000pt;}
.xa{left:374.994667pt;}
.x17{left:378.773333pt;}
.xb{left:385.084000pt;}
.x44{left:387.768000pt;}
.x6b{left:389.144000pt;}
.x4a{left:392.146667pt;}
.x21{left:397.045333pt;}
.x14{left:398.761333pt;}
.x61{left:400.276000pt;}
.x4{left:403.373333pt;}
.x24{left:408.694667pt;}
.x5d{left:411.446667pt;}
.xe{left:413.288000pt;}
.x34{left:415.630667pt;}
.x5f{left:417.073333pt;}
.x7{left:422.254667pt;}
.x22{left:427.117333pt;}
.x1b{left:429.208000pt;}
.x18{left:431.013333pt;}
.x47{left:432.697333pt;}
.x3c{left:434.433333pt;}
.x67{left:436.434667pt;}
.x45{left:438.808000pt;}
.x42{left:441.454667pt;}
.x28{left:442.789333pt;}
.xf{left:457.409333pt;}
.x25{left:461.118667pt;}
.x40{left:464.398667pt;}
.x2c{left:466.056000pt;}
.x2f{left:472.840000pt;}
.x11{left:484.150667pt;}
.x68{left:487.474667pt;}
.x29{left:493.829333pt;}
.x6c{left:497.074667pt;}
.x65{left:507.020000pt;}
.x54{left:537.804000pt;}
.x31{left:597.212000pt;}
.x6d{left:628.026667pt;}
.x32{left:642.328000pt;}
}




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