
    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_3265ade96d154b500636c010.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_651ce280a9bbc1eded604e11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fbf0d08759b171559f1672d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_dc3c42d90103c244f200f249.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_70a5fc8734317ede32702adc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_18b122151543b0cb3c2cd589.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.870000;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_71040bcd17ebade11f491716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b459484db721dd0c089dc152.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_88ecbb817bd1ed796ecfaf1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.638000;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_df657b9b24358b3acf45ae8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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_f7b8f9cada8f7cdbbe3406e7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;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);}
.v11{vertical-align:-23.760000px;}
.v2{vertical-align:-19.530000px;}
.v4{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:9.330000px;}
.v5{vertical-align:19.530000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:26.034000px;}
.va{vertical-align:28.692000px;}
.v9{vertical-align:32.874000px;}
.v10{vertical-align:34.824000px;}
.vf{vertical-align:37.062000px;}
.vd{vertical-align:39.840000px;}
.vb{vertical-align:48.222000px;}
.v6{vertical-align:50.040000px;}
.v7{vertical-align:61.566000px;}
.ve{vertical-align:65.754000px;}
.v8{vertical-align:81.090000px;}
.lsb{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.001008px;}
.ls1{letter-spacing:0.001056px;}
.ls7{letter-spacing:0.001071px;}
.ls1c{letter-spacing:0.001603px;}
.ls3c{letter-spacing:0.002692px;}
.ls1a{letter-spacing:0.003041px;}
.ls1f{letter-spacing:0.003232px;}
.ls44{letter-spacing:0.003246px;}
.ls1d{letter-spacing:2.984112px;}
.ls0{letter-spacing:2.987028px;}
.ls13{letter-spacing:2.987700px;}
.ls27{letter-spacing:2.989200px;}
.ls24{letter-spacing:2.990112px;}
.ls2{letter-spacing:2.993028px;}
.ls16{letter-spacing:2.993700px;}
.ls30{letter-spacing:2.993856px;}
.ls25{letter-spacing:3.345917px;}
.ls2a{letter-spacing:3.767702px;}
.ls5{letter-spacing:4.579606px;}
.ls6{letter-spacing:4.585606px;}
.ls8{letter-spacing:5.892526px;}
.ls4{letter-spacing:8.969856px;}
.lsa{letter-spacing:10.907412px;}
.ls22{letter-spacing:11.111412px;}
.lsf{letter-spacing:12.526896px;}
.ls9{letter-spacing:13.898112px;}
.lsc{letter-spacing:14.506896px;}
.lse{letter-spacing:14.542896px;}
.ls29{letter-spacing:15.360288px;}
.ls36{letter-spacing:16.325400px;}
.ls23{letter-spacing:16.517412px;}
.ls18{letter-spacing:17.115232px;}
.ls19{letter-spacing:17.115792px;}
.ls1b{letter-spacing:17.669423px;}
.ls41{letter-spacing:17.914896px;}
.ls11{letter-spacing:18.064896px;}
.ls10{letter-spacing:18.070896px;}
.ls39{letter-spacing:18.442896px;}
.ls17{letter-spacing:18.731412px;}
.lsd{letter-spacing:18.772896px;}
.ls15{letter-spacing:18.857412px;}
.ls14{letter-spacing:18.863419px;}
.ls3d{letter-spacing:18.960139px;}
.ls21{letter-spacing:19.176139px;}
.ls3f{letter-spacing:19.228896px;}
.ls3e{letter-spacing:19.234896px;}
.ls3b{letter-spacing:19.246896px;}
.ls12{letter-spacing:19.396896px;}
.ls3{letter-spacing:19.487028px;}
.ls43{letter-spacing:19.633606px;}
.ls38{letter-spacing:19.785798px;}
.ls3a{letter-spacing:22.190112px;}
.ls37{letter-spacing:23.339400px;}
.ls1e{letter-spacing:23.397798px;}
.ls20{letter-spacing:23.416896px;}
.ls35{letter-spacing:27.094316px;}
.ls40{letter-spacing:28.882316px;}
.ls42{letter-spacing:32.726700px;}
.ls2f{letter-spacing:56.875162px;}
.ls2d{letter-spacing:201.431462px;}
.ls28{letter-spacing:228.960854px;}
.ls2c{letter-spacing:267.696854px;}
.ls32{letter-spacing:277.451856px;}
.ls26{letter-spacing:278.901158px;}
.ls33{letter-spacing:317.883158px;}
.ls2e{letter-spacing:327.481114px;}
.ls34{letter-spacing:330.255158px;}
.ls2b{letter-spacing:331.300800px;}
.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;}
}
.ws56{word-spacing:-71.934605px;}
.ws22{word-spacing:-46.080038px;}
.wsb{word-spacing:-0.083686px;}
.wsa{word-spacing:-0.071731px;}
.ws19{word-spacing:-0.065455px;}
.ws72{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.041843px;}
.ws2b{word-spacing:0.000000px;}
.ws28{word-spacing:9.582001px;}
.ws29{word-spacing:9.584086px;}
.wsd0{word-spacing:10.210918px;}
.wsab{word-spacing:10.266528px;}
.ws50{word-spacing:10.407281px;}
.ws51{word-spacing:10.472736px;}
.ws41{word-spacing:10.538191px;}
.ws7a{word-spacing:10.705882px;}
.ws98{word-spacing:11.061827px;}
.ws96{word-spacing:11.323646px;}
.ws30{word-spacing:11.454555px;}
.ws27{word-spacing:11.590456px;}
.wsbb{word-spacing:11.650919px;}
.wsd6{word-spacing:11.716373px;}
.ws93{word-spacing:11.847283px;}
.ws94{word-spacing:11.912737px;}
.ws4d{word-spacing:12.109101px;}
.wsa5{word-spacing:12.319738px;}
.ws1{word-spacing:12.319834px;}
.wsa6{word-spacing:12.320890px;}
.ws42{word-spacing:12.436374px;}
.wsc5{word-spacing:12.691512px;}
.ws44{word-spacing:12.698192px;}
.wse{word-spacing:12.763647px;}
.wsa3{word-spacing:12.829102px;}
.ws43{word-spacing:12.960011px;}
.wse0{word-spacing:13.025465px;}
.ws95{word-spacing:13.221829px;}
.wsc6{word-spacing:13.287284px;}
.ws91{word-spacing:13.352738px;}
.wsdf{word-spacing:13.418193px;}
.ws2e{word-spacing:13.483648px;}
.wsd4{word-spacing:13.488446px;}
.wsd5{word-spacing:13.489540px;}
.ws25{word-spacing:13.688612px;}
.ws9b{word-spacing:13.810921px;}
.ws74{word-spacing:13.938991px;}
.ws73{word-spacing:13.939425px;}
.ws71{word-spacing:13.941830px;}
.ws7f{word-spacing:14.007284px;}
.ws7e{word-spacing:14.014229px;}
.ws31{word-spacing:14.138194px;}
.ws11{word-spacing:14.203648px;}
.wsb6{word-spacing:14.269103px;}
.wsda{word-spacing:14.373220px;}
.ws38{word-spacing:14.400012px;}
.ws3c{word-spacing:14.465467px;}
.ws9f{word-spacing:14.661830px;}
.wsa0{word-spacing:14.683476px;}
.ws3b{word-spacing:14.792740px;}
.ws99{word-spacing:14.858194px;}
.ws3{word-spacing:14.901427px;}
.ws4{word-spacing:14.902157px;}
.ws5{word-spacing:14.902646px;}
.ws0{word-spacing:14.902781px;}
.ws21{word-spacing:14.923649px;}
.wsf2{word-spacing:14.986073px;}
.wse9{word-spacing:14.986161px;}
.wsf0{word-spacing:14.986219px;}
.wsed{word-spacing:14.986236px;}
.wse7{word-spacing:14.986527px;}
.wsec{word-spacing:14.987151px;}
.wsef{word-spacing:14.987164px;}
.wsea{word-spacing:14.987639px;}
.wse8{word-spacing:14.987868px;}
.wse3{word-spacing:14.988364px;}
.wseb{word-spacing:14.988882px;}
.wse4{word-spacing:14.988906px;}
.ws17{word-spacing:14.989103px;}
.wsf1{word-spacing:14.989543px;}
.wsf5{word-spacing:14.990609px;}
.wsee{word-spacing:14.991089px;}
.wse6{word-spacing:14.991152px;}
.wsf3{word-spacing:14.991704px;}
.ws24{word-spacing:15.000470px;}
.ws8f{word-spacing:15.054558px;}
.wsd9{word-spacing:15.120013px;}
.ws9d{word-spacing:15.185467px;}
.wsc0{word-spacing:15.216446px;}
.wsc2{word-spacing:15.217540px;}
.wsc1{word-spacing:15.218099px;}
.wsc{word-spacing:15.250922px;}
.ws75{word-spacing:15.316376px;}
.wsbc{word-spacing:15.381831px;}
.wsbd{word-spacing:15.447286px;}
.wsc8{word-spacing:15.512740px;}
.ws46{word-spacing:15.578195px;}
.ws59{word-spacing:15.643649px;}
.wscf{word-spacing:15.905468px;}
.ws52{word-spacing:15.970922px;}
.wsde{word-spacing:16.036377px;}
.ws8a{word-spacing:16.101832px;}
.ws49{word-spacing:16.167286px;}
.ws8d{word-spacing:16.232741px;}
.wsb9{word-spacing:16.298099px;}
.ws57{word-spacing:16.298129px;}
.ws23{word-spacing:16.298195px;}
.ws9e{word-spacing:16.363650px;}
.ws8{word-spacing:16.426445px;}
.wsf{word-spacing:16.429105px;}
.ws5e{word-spacing:16.494559px;}
.ws4c{word-spacing:16.560014px;}
.wsb4{word-spacing:16.592129px;}
.wsb3{word-spacing:16.625468px;}
.ws2f{word-spacing:16.690923px;}
.wsca{word-spacing:16.756378px;}
.ws3a{word-spacing:16.821832px;}
.wsdd{word-spacing:16.887287px;}
.ws10{word-spacing:16.952741px;}
.ws47{word-spacing:17.018196px;}
.ws5d{word-spacing:17.083651px;}
.wsd{word-spacing:17.149105px;}
.ws32{word-spacing:17.214560px;}
.wsc3{word-spacing:17.250446px;}
.ws84{word-spacing:17.252129px;}
.ws85{word-spacing:17.280014px;}
.ws20{word-spacing:17.345469px;}
.ws3e{word-spacing:17.410924px;}
.ws37{word-spacing:17.476378px;}
.ws35{word-spacing:17.541833px;}
.wsc7{word-spacing:17.607287px;}
.ws48{word-spacing:17.672742px;}
.wsc9{word-spacing:17.714099px;}
.ws92{word-spacing:17.738197px;}
.ws36{word-spacing:17.803651px;}
.ws77{word-spacing:17.869106px;}
.ws5c{word-spacing:17.934560px;}
.ws80{word-spacing:18.000015px;}
.wsd1{word-spacing:18.008099px;}
.ws55{word-spacing:18.065470px;}
.wsb8{word-spacing:18.130924px;}
.ws3d{word-spacing:18.196379px;}
.ws9a{word-spacing:18.213692px;}
.ws45{word-spacing:18.261833px;}
.ws3f{word-spacing:18.327288px;}
.ws4a{word-spacing:18.392743px;}
.ws70{word-spacing:18.458197px;}
.ws2d{word-spacing:18.523652px;}
.ws76{word-spacing:18.589106px;}
.wsd7{word-spacing:18.589437px;}
.wsd8{word-spacing:18.594446px;}
.ws54{word-spacing:18.654561px;}
.ws39{word-spacing:18.720016px;}
.ws65{word-spacing:18.749566px;}
.ws53{word-spacing:18.785470px;}
.wsb2{word-spacing:18.850925px;}
.wsc4{word-spacing:18.916379px;}
.ws79{word-spacing:18.981834px;}
.wsb5{word-spacing:19.047289px;}
.ws8e{word-spacing:19.112743px;}
.ws68{word-spacing:19.178198px;}
.ws1d{word-spacing:19.223895px;}
.ws1b{word-spacing:19.225540px;}
.ws18{word-spacing:19.226099px;}
.ws1c{word-spacing:19.226679px;}
.ws1e{word-spacing:19.232099px;}
.ws1a{word-spacing:19.243652px;}
.ws90{word-spacing:19.309107px;}
.wsf4{word-spacing:19.343849px;}
.ws87{word-spacing:19.440016px;}
.wsa1{word-spacing:19.505471px;}
.wsbf{word-spacing:19.544492px;}
.wsbe{word-spacing:19.560446px;}
.ws34{word-spacing:19.570925px;}
.ws40{word-spacing:19.636380px;}
.ws2c{word-spacing:19.701835px;}
.wse2{word-spacing:19.824407px;}
.ws33{word-spacing:19.832744px;}
.ws58{word-spacing:19.869542px;}
.wscd{word-spacing:19.886099px;}
.wsce{word-spacing:19.887195px;}
.wscc{word-spacing:19.892594px;}
.ws64{word-spacing:19.898198px;}
.ws8b{word-spacing:19.963653px;}
.wse5{word-spacing:19.993247px;}
.ws8c{word-spacing:20.029108px;}
.wsb7{word-spacing:20.094562px;}
.wsd3{word-spacing:20.225471px;}
.ws66{word-spacing:20.290926px;}
.ws1f{word-spacing:20.356381px;}
.ws83{word-spacing:20.421835px;}
.ws4b{word-spacing:20.487290px;}
.ws5f{word-spacing:20.552744px;}
.wsb1{word-spacing:20.577888px;}
.ws82{word-spacing:20.683654px;}
.ws9c{word-spacing:20.749108px;}
.ws5a{word-spacing:20.814563px;}
.ws16{word-spacing:20.880017px;}
.wsba{word-spacing:20.945472px;}
.wsdb{word-spacing:21.010927px;}
.wsa2{word-spacing:21.207290px;}
.ws78{word-spacing:21.272745px;}
.ws62{word-spacing:21.338200px;}
.wsd2{word-spacing:21.534563px;}
.ws69{word-spacing:21.600018px;}
.ws63{word-spacing:21.665473px;}
.ws67{word-spacing:21.730927px;}
.ws61{word-spacing:21.796382px;}
.ws81{word-spacing:21.861836px;}
.ws97{word-spacing:22.058200px;}
.ws7b{word-spacing:22.112129px;}
.ws7c{word-spacing:22.123655px;}
.ws15{word-spacing:22.320019px;}
.wse1{word-spacing:22.547372px;}
.wsaa{word-spacing:22.676352px;}
.ws6c{word-spacing:22.778201px;}
.ws6b{word-spacing:22.843655px;}
.ws6f{word-spacing:23.040019px;}
.ws4f{word-spacing:23.105474px;}
.ws4e{word-spacing:23.181077px;}
.ws88{word-spacing:23.301838px;}
.ws89{word-spacing:23.367292px;}
.ws14{word-spacing:23.432747px;}
.ws5b{word-spacing:23.855100px;}
.ws6a{word-spacing:24.152747px;}
.ws86{word-spacing:24.218202px;}
.ws12{word-spacing:24.283657px;}
.ws13{word-spacing:24.741839px;}
.ws6d{word-spacing:25.069112px;}
.ws7d{word-spacing:25.121100px;}
.ws6e{word-spacing:25.854567px;}
.wscb{word-spacing:27.098204px;}
.ws60{word-spacing:27.360023px;}
.wsdc{word-spacing:27.490932px;}
.ws26{word-spacing:28.649568px;}
.ws2{word-spacing:29.856624px;}
.ws9{word-spacing:38.663117px;}
.ws7{word-spacing:43.660258px;}
.wsa8{word-spacing:113.902733px;}
.wsad{word-spacing:196.202765px;}
.wsae{word-spacing:212.661658px;}
.wsa9{word-spacing:228.912192px;}
.wsaf{word-spacing:234.399629px;}
.wsa7{word-spacing:267.647040px;}
.wsb0{word-spacing:273.134477px;}
.wsac{word-spacing:299.495693px;}
.wsa4{word-spacing:330.375974px;}
._10{margin-left:-7.950189px;}
._b{margin-left:-6.694896px;}
._3{margin-left:-3.347448px;}
._0{margin-left:-1.613952px;}
._4{width:1.404738px;}
._9{width:3.089078px;}
._7{width:5.584631px;}
._41{width:7.911708px;}
._3c{width:10.311360px;}
._5{width:12.847176px;}
._40{width:15.054558px;}
._3d{width:16.363650px;}
._3f{width:18.067484px;}
._8{width:19.630436px;}
._d{width:21.435208px;}
._6{width:22.909110px;}
._43{width:28.135104px;}
._44{width:30.102476px;}
._2{width:31.556794px;}
._c{width:35.713679px;}
._1{width:38.734272px;}
._e{width:43.038720px;}
._f{width:72.464602px;}
._26{width:113.945011px;}
._25{width:121.799578px;}
._29{width:124.381277px;}
._19{width:144.825293px;}
._35{width:149.451955px;}
._32{width:151.173504px;}
._11{width:161.233805px;}
._16{width:169.840925px;}
._13{width:175.651776px;}
._1c{width:181.569600px;}
._28{width:194.427418px;}
._1a{width:195.449587px;}
._33{width:196.794547px;}
._17{width:201.006173px;}
._22{width:206.747251px;}
._20{width:208.522598px;}
._2d{width:212.288486px;}
._2e{width:213.579648px;}
._31{width:217.883520px;}
._23{width:221.864602px;}
._24{width:225.307699px;}
._1b{width:226.706458px;}
._15{width:228.589402px;}
._2c{width:231.924902px;}
._18{width:234.561024px;}
._2a{width:238.757299px;}
._1f{width:246.450470px;}
._34{width:254.251238px;}
._21{width:256.295578px;}
._14{width:257.479142px;}
._30{width:261.083635px;}
._1e{width:262.858982px;}
._2f{width:274.587034px;}
._1d{width:287.068262px;}
._2b{width:291.049344px;}
._27{width:292.932288px;}
._36{width:312.620515px;}
._3a{width:351.357350px;}
._12{width:430.239187px;}
._38{width:488.919859px;}
._39{width:514.743091px;}
._3b{width:527.654707px;}
._37{width:553.477939px;}
._3e{width:1696.691434px;}
._42{width:1699.780512px;}
._a{width:1726.607434px;}
.fc4{color:rgb(0,139,191);}
.fc3{color:rgb(0,166,252);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(51,51,51);}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fsa{font-size:44.832000px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:83.686200px;}
.fs1{font-size:131.506800px;}
.y0{bottom:0.000000px;}
.y3a{bottom:29.871000px;}
.y39{bottom:41.826000px;}
.y65{bottom:48.877500px;}
.y38{bottom:53.781000px;}
.y1da{bottom:115.434000px;}
.y8e{bottom:115.435500px;}
.yb7{bottom:115.923000px;}
.y17c{bottom:116.979000px;}
.y11{bottom:117.420000px;}
.y64{bottom:119.061000px;}
.y107{bottom:121.602000px;}
.y1ae{bottom:123.394500px;}
.y23b{bottom:129.522000px;}
.y8d{bottom:137.580000px;}
.y1d9{bottom:137.583000px;}
.y200{bottom:137.598000px;}
.y229{bottom:137.652000px;}
.ye2{bottom:138.189000px;}
.yb6{bottom:138.339000px;}
.y17b{bottom:139.395000px;}
.y63{bottom:141.477000px;}
.y106{bottom:144.018000px;}
.y1ad{bottom:145.810500px;}
.y10{bottom:149.548500px;}
.y23a{bottom:151.938000px;}
.y192{bottom:153.849000px;}
.y1d8{bottom:159.730500px;}
.y1ff{bottom:159.762000px;}
.y228{bottom:159.870000px;}
.y8c{bottom:159.874500px;}
.ye1{bottom:160.605000px;}
.yb5{bottom:160.755000px;}
.y17a{bottom:161.811000px;}
.y62{bottom:163.893000px;}
.yf{bottom:165.240000px;}
.y105{bottom:166.434000px;}
.y148{bottom:167.239500px;}
.y1ac{bottom:168.226500px;}
.y239{bottom:174.354000px;}
.y191{bottom:176.265000px;}
.y147{bottom:181.435500px;}
.y1fe{bottom:181.926000px;}
.y1d7{bottom:182.026500px;}
.y227{bottom:182.088000px;}
.ye0{bottom:183.021000px;}
.yb4{bottom:183.171000px;}
.y179{bottom:184.227000px;}
.y61{bottom:186.309000px;}
.y104{bottom:188.850000px;}
.y1ab{bottom:190.642500px;}
.ye{bottom:192.886500px;}
.y8b{bottom:193.030500px;}
.yba{bottom:194.184000px;}
.y146{bottom:195.633000px;}
.y238{bottom:196.770000px;}
.y190{bottom:198.681000px;}
.y37{bottom:200.371500px;}
.y1fd{bottom:204.090000px;}
.y226{bottom:204.306000px;}
.ydf{bottom:205.437000px;}
.yb3{bottom:205.587000px;}
.yd{bottom:208.578000px;}
.y60{bottom:208.725000px;}
.yb9{bottom:210.622500px;}
.y103{bottom:211.266000px;}
.y1aa{bottom:213.058500px;}
.y8a{bottom:215.175000px;}
.y1d6{bottom:215.208000px;}
.y178{bottom:215.359500px;}
.y36{bottom:218.304000px;}
.y237{bottom:219.186000px;}
.y18f{bottom:221.095500px;}
.y145{bottom:221.682000px;}
.y1fc{bottom:226.254000px;}
.y225{bottom:226.522500px;}
.yb8{bottom:227.061000px;}
.yde{bottom:227.853000px;}
.yb2{bottom:228.003000px;}
.y177{bottom:229.555500px;}
.y5f{bottom:231.141000px;}
.y102{bottom:233.682000px;}
.y1a9{bottom:235.474500px;}
.y89{bottom:237.321000px;}
.y1d5{bottom:237.505500px;}
.y144{bottom:238.120500px;}
.y35{bottom:239.076000px;}
.yc{bottom:239.136000px;}
.y143{bottom:239.455500px;}
.y236{bottom:241.602000px;}
.y18e{bottom:243.511500px;}
.y176{bottom:243.753000px;}
.y1fb{bottom:248.418000px;}
.y224{bottom:248.740500px;}
.ydd{bottom:250.269000px;}
.yb1{bottom:250.419000px;}
.y5e{bottom:253.557000px;}
.y101{bottom:256.098000px;}
.y1a8{bottom:257.890500px;}
.y88{bottom:259.465500px;}
.y142{bottom:262.329000px;}
.yb{bottom:263.793000px;}
.y235{bottom:264.018000px;}
.y18d{bottom:265.927500px;}
.y175{bottom:267.252000px;}
.y1fa{bottom:270.582000px;}
.y1d4{bottom:270.687000px;}
.y223{bottom:270.958500px;}
.ydc{bottom:272.685000px;}
.yb0{bottom:272.835000px;}
.y5d{bottom:275.973000px;}
.y100{bottom:278.514000px;}
.y141{bottom:278.767500px;}
.ya{bottom:279.484500px;}
.y140{bottom:280.104000px;}
.y1a7{bottom:280.306500px;}
.y87{bottom:281.610000px;}
.y174{bottom:283.690500px;}
.y234{bottom:286.434000px;}
.y18c{bottom:288.343500px;}
.y1f9{bottom:292.744500px;}
.y1d3{bottom:292.834500px;}
.y222{bottom:293.176500px;}
.y34{bottom:294.400500px;}
.ydb{bottom:295.101000px;}
.y9{bottom:295.174500px;}
.yaf{bottom:295.251000px;}
.y5c{bottom:298.389000px;}
.yff{bottom:300.930000px;}
.y1a6{bottom:302.722500px;}
.y13f{bottom:302.977500px;}
.y86{bottom:303.756000px;}
.y173{bottom:304.014000px;}
.y233{bottom:308.850000px;}
.y18b{bottom:310.909500px;}
.y33{bottom:314.574000px;}
.y1f8{bottom:314.908500px;}
.y1d2{bottom:314.982000px;}
.y221{bottom:315.393000px;}
.yda{bottom:317.517000px;}
.yae{bottom:317.667000px;}
.y13e{bottom:319.414500px;}
.y8{bottom:319.833000px;}
.y172{bottom:320.452500px;}
.y13d{bottom:320.751000px;}
.y5b{bottom:320.805000px;}
.yfe{bottom:323.346000px;}
.y1a5{bottom:325.138500px;}
.y85{bottom:325.900500px;}
.y232{bottom:331.266000px;}
.y32{bottom:334.749000px;}
.y7{bottom:335.524500px;}
.y1f7{bottom:337.072500px;}
.y1d1{bottom:337.279500px;}
.y220{bottom:337.611000px;}
.yd9{bottom:339.933000px;}
.yad{bottom:340.083000px;}
.y171{bottom:340.776000px;}
.y5a{bottom:343.221000px;}
.y13c{bottom:343.624500px;}
.y18a{bottom:345.280500px;}
.yfd{bottom:345.760500px;}
.y1a4{bottom:347.554500px;}
.y84{bottom:348.045000px;}
.y231{bottom:353.682000px;}
.y31{bottom:354.922500px;}
.y170{bottom:357.214500px;}
.y1f6{bottom:359.236500px;}
.y21f{bottom:359.829000px;}
.y13b{bottom:360.063000px;}
.y6{bottom:360.181500px;}
.y13a{bottom:361.398000px;}
.yd8{bottom:362.349000px;}
.yac{bottom:362.499000px;}
.y59{bottom:365.637000px;}
.y189{bottom:367.696500px;}
.yfc{bottom:368.326500px;}
.y1a3{bottom:369.970500px;}
.y83{bottom:370.189500px;}
.y1d0{bottom:370.461000px;}
.y30{bottom:375.097500px;}
.y5{bottom:375.873000px;}
.y230{bottom:376.098000px;}
.y16f{bottom:377.538000px;}
.y1f5{bottom:381.400500px;}
.y21e{bottom:382.047000px;}
.y139{bottom:384.271500px;}
.yd7{bottom:384.765000px;}
.yab{bottom:384.915000px;}
.y58{bottom:388.053000px;}
.y188{bottom:390.112500px;}
.y4{bottom:391.563000px;}
.y82{bottom:392.335500px;}
.y1a2{bottom:392.386500px;}
.y1cf{bottom:392.608500px;}
.y16e{bottom:393.976500px;}
.y2f{bottom:395.271000px;}
.y22f{bottom:398.514000px;}
.y138{bottom:400.710000px;}
.y137{bottom:402.046500px;}
.yfb{bottom:402.697500px;}
.y1f4{bottom:403.564500px;}
.y21d{bottom:404.263500px;}
.yd6{bottom:407.181000px;}
.yaa{bottom:407.331000px;}
.y57{bottom:410.469000px;}
.y187{bottom:412.528500px;}
.y16d{bottom:414.300000px;}
.y81{bottom:414.480000px;}
.y1ce{bottom:414.756000px;}
.y1a1{bottom:414.802500px;}
.y2e{bottom:415.446000px;}
.y3{bottom:416.221500px;}
.y22e{bottom:420.930000px;}
.y136{bottom:424.920000px;}
.yfa{bottom:425.113500px;}
.y1f3{bottom:425.728500px;}
.y21c{bottom:426.481500px;}
.yd5{bottom:429.597000px;}
.ya9{bottom:429.745500px;}
.y1b5{bottom:429.747000px;}
.y16c{bottom:430.738500px;}
.y2{bottom:431.913000px;}
.y56{bottom:432.885000px;}
.y186{bottom:434.944500px;}
.y2d{bottom:435.621000px;}
.y80{bottom:436.624500px;}
.y1cd{bottom:436.903500px;}
.y1a0{bottom:437.218500px;}
.y135{bottom:441.358500px;}
.y134{bottom:442.693500px;}
.y22d{bottom:443.344500px;}
.y23c{bottom:443.346000px;}
.yf9{bottom:447.529500px;}
.y1{bottom:447.603000px;}
.y1f2{bottom:447.891000px;}
.y21b{bottom:448.699500px;}
.y16b{bottom:451.062000px;}
.yd4{bottom:452.013000px;}
.ya8{bottom:452.161500px;}
.y55{bottom:455.301000px;}
.y2c{bottom:455.794500px;}
.y185{bottom:457.360500px;}
.y7f{bottom:458.919000px;}
.y1cc{bottom:459.199500px;}
.y19f{bottom:459.634500px;}
.y133{bottom:465.567000px;}
.y22c{bottom:465.760500px;}
.y16a{bottom:467.500500px;}
.yf8{bottom:469.945500px;}
.y1f1{bottom:470.055000px;}
.y21a{bottom:470.917500px;}
.yd3{bottom:474.429000px;}
.ya7{bottom:474.577500px;}
.y2b{bottom:475.969500px;}
.y54{bottom:477.717000px;}
.y184{bottom:479.776500px;}
.y132{bottom:482.005500px;}
.y19e{bottom:482.050500px;}
.y131{bottom:483.342000px;}
.y169{bottom:487.825500px;}
.y22b{bottom:488.176500px;}
.y7e{bottom:492.075000px;}
.y1f0{bottom:492.219000px;}
.yf7{bottom:492.361500px;}
.y219{bottom:493.134000px;}
.y2a{bottom:496.143000px;}
.yd2{bottom:496.993500px;}
.ya6{bottom:497.143500px;}
.y53{bottom:500.133000px;}
.y1cb{bottom:501.348000px;}
.y183{bottom:502.192500px;}
.y168{bottom:504.262500px;}
.y19d{bottom:504.466500px;}
.y130{bottom:506.215500px;}
.y22a{bottom:510.592500px;}
.y7d{bottom:514.221000px;}
.y1ef{bottom:514.383000px;}
.yf6{bottom:514.777500px;}
.y218{bottom:515.352000px;}
.y29{bottom:516.318000px;}
.y1b4{bottom:519.409500px;}
.y52{bottom:522.547500px;}
.y12f{bottom:522.652500px;}
.y12e{bottom:523.989000px;}
.y167{bottom:524.587500px;}
.y182{bottom:524.608500px;}
.y19c{bottom:526.882500px;}
.yd1{bottom:532.860000px;}
.ya5{bottom:533.008500px;}
.y7c{bottom:536.365500px;}
.y28{bottom:536.491500px;}
.yf5{bottom:537.193500px;}
.y217{bottom:537.570000px;}
.y166{bottom:541.026000px;}
.y1b3{bottom:541.825500px;}
.y51{bottom:544.963500px;}
.y1ee{bottom:545.746500px;}
.y12d{bottom:546.862500px;}
.y1ca{bottom:546.886500px;}
.y181{bottom:547.024500px;}
.y19a{bottom:549.298500px;}
.y19b{bottom:555.238500px;}
.yd0{bottom:555.276000px;}
.ya4{bottom:555.424500px;}
.y27{bottom:556.666500px;}
.y7b{bottom:558.510000px;}
.yf4{bottom:559.609500px;}
.y216{bottom:559.788000px;}
.y165{bottom:561.349500px;}
.y12c{bottom:563.301000px;}
.y1b2{bottom:564.241500px;}
.y12b{bottom:564.636000px;}
.y50{bottom:567.379500px;}
.y1c9{bottom:569.034000px;}
.y199{bottom:571.714500px;}
.y26{bottom:576.841500px;}
.ycf{bottom:577.692000px;}
.y164{bottom:577.788000px;}
.ya3{bottom:577.840500px;}
.y7a{bottom:580.656000px;}
.y215{bottom:582.004500px;}
.yf3{bottom:582.025500px;}
.y1b1{bottom:586.657500px;}
.y12a{bottom:587.509500px;}
.y4f{bottom:589.795500px;}
.y1c8{bottom:591.181500px;}
.y180{bottom:591.922500px;}
.y1ed{bottom:593.475000px;}
.y197{bottom:594.130500px;}
.y25{bottom:597.015000px;}
.y163{bottom:598.111500px;}
.y198{bottom:600.070500px;}
.yce{bottom:600.106500px;}
.ya2{bottom:600.256500px;}
.y79{bottom:602.800500px;}
.y129{bottom:603.948000px;}
.y214{bottom:604.222500px;}
.yf2{bottom:604.441500px;}
.y128{bottom:605.284500px;}
.y17f{bottom:608.361000px;}
.y1b0{bottom:609.073500px;}
.y4e{bottom:612.211500px;}
.y1c7{bottom:613.329000px;}
.y162{bottom:614.550000px;}
.y1ec{bottom:615.639000px;}
.y196{bottom:616.546500px;}
.y24{bottom:617.190000px;}
.ycd{bottom:622.522500px;}
.ya1{bottom:622.672500px;}
.y17e{bottom:624.799500px;}
.y78{bottom:624.945000px;}
.y213{bottom:626.440500px;}
.yf1{bottom:626.857500px;}
.y127{bottom:628.158000px;}
.y1af{bottom:631.639500px;}
.y4d{bottom:634.627500px;}
.y161{bottom:634.873500px;}
.y1c6{bottom:635.476500px;}
.y1eb{bottom:637.951500px;}
.y195{bottom:638.962500px;}
.y17d{bottom:641.236500px;}
.y126{bottom:644.596500px;}
.ycc{bottom:644.938500px;}
.ya0{bottom:645.088500px;}
.y125{bottom:645.931500px;}
.y23{bottom:646.963500px;}
.y77{bottom:647.091000px;}
.y212{bottom:648.658500px;}
.yf0{bottom:649.273500px;}
.y160{bottom:651.312000px;}
.y4c{bottom:657.043500px;}
.y194{bottom:661.527000px;}
.y1c5{bottom:663.601500px;}
.ycb{bottom:667.354500px;}
.y9f{bottom:667.504500px;}
.y124{bottom:668.805000px;}
.y76{bottom:669.235500px;}
.y211{bottom:670.876500px;}
.y1ea{bottom:671.296500px;}
.y15f{bottom:671.635500px;}
.yef{bottom:671.689500px;}
.y4b{bottom:679.459500px;}
.y123{bottom:685.243500px;}
.y122{bottom:686.580000px;}
.y15e{bottom:688.074000px;}
.y193{bottom:688.426500px;}
.yca{bottom:689.770500px;}
.y9e{bottom:689.920500px;}
.y75{bottom:691.380000px;}
.y210{bottom:693.093000px;}
.y1e9{bottom:693.459000px;}
.yee{bottom:694.105500px;}
.y22{bottom:698.587500px;}
.y4a{bottom:701.875500px;}
.y1c4{bottom:705.901500px;}
.y15d{bottom:708.397500px;}
.y121{bottom:709.452000px;}
.yc9{bottom:712.186500px;}
.y9d{bottom:712.336500px;}
.y74{bottom:713.526000px;}
.y20f{bottom:715.311000px;}
.y1e8{bottom:715.623000px;}
.yed{bottom:716.670000px;}
.y21{bottom:718.413000px;}
.y49{bottom:724.291500px;}
.y15c{bottom:724.836000px;}
.y120{bottom:725.890500px;}
.y11f{bottom:727.227000px;}
.y1c3{bottom:728.049000px;}
.yc8{bottom:734.602500px;}
.y9c{bottom:734.752500px;}
.y73{bottom:735.670500px;}
.y20{bottom:736.345500px;}
.y20e{bottom:737.529000px;}
.y1e7{bottom:737.937000px;}
.y48{bottom:746.707500px;}
.y157{bottom:747.709500px;}
.y15b{bottom:747.973500px;}
.y159{bottom:748.159500px;}
.y11e{bottom:749.053500px;}
.y11d{bottom:750.100500px;}
.y1c2{bottom:750.196500px;}
.yec{bottom:751.041000px;}
.y1f{bottom:754.278000px;}
.yc7{bottom:757.018500px;}
.y9b{bottom:757.168500px;}
.y72{bottom:757.815000px;}
.y20d{bottom:759.747000px;}
.y156{bottom:764.148000px;}
.y15a{bottom:764.412000px;}
.y158{bottom:764.598000px;}
.y155{bottom:765.483000px;}
.y11c{bottom:766.539000px;}
.y1e{bottom:767.329500px;}
.y11b{bottom:767.874000px;}
.y47{bottom:769.123500px;}
.y1e6{bottom:771.280500px;}
.y1c1{bottom:772.344000px;}
.yeb{bottom:773.457000px;}
.yc6{bottom:779.434500px;}
.y9a{bottom:779.584500px;}
.y71{bottom:779.961000px;}
.y20c{bottom:781.963500px;}
.y154{bottom:785.808000px;}
.y1d{bottom:787.155000px;}
.y11a{bottom:790.747500px;}
.y46{bottom:791.539500px;}
.y1e5{bottom:793.444500px;}
.y1c0{bottom:794.491500px;}
.yea{bottom:795.873000px;}
.y1c{bottom:800.206500px;}
.yc5{bottom:801.850500px;}
.y99{bottom:802.000500px;}
.y70{bottom:802.105500px;}
.y153{bottom:802.246500px;}
.y20b{bottom:804.181500px;}
.y119{bottom:807.186000px;}
.y118{bottom:808.522500px;}
.y45{bottom:813.955500px;}
.y1e4{bottom:815.608500px;}
.y1bf{bottom:816.639000px;}
.ye9{bottom:818.289000px;}
.y1b{bottom:820.032000px;}
.y152{bottom:822.570000px;}
.yc4{bottom:824.266500px;}
.y6f{bottom:824.400000px;}
.y98{bottom:824.416500px;}
.y20a{bottom:826.399500px;}
.y117{bottom:831.396000px;}
.y44{bottom:836.371500px;}
.y1e3{bottom:837.772500px;}
.y1a{bottom:837.964500px;}
.y1be{bottom:838.786500px;}
.y151{bottom:839.008500px;}
.ye8{bottom:840.705000px;}
.yc3{bottom:846.682500px;}
.y97{bottom:846.832500px;}
.y116{bottom:847.834500px;}
.y209{bottom:848.617500px;}
.y115{bottom:849.169500px;}
.y19{bottom:851.016000px;}
.y6e{bottom:851.299500px;}
.y43{bottom:858.787500px;}
.y150{bottom:859.332000px;}
.y1e2{bottom:859.936500px;}
.y1bd{bottom:860.934000px;}
.ye7{bottom:863.121000px;}
.yc2{bottom:869.098500px;}
.y96{bottom:869.248500px;}
.y208{bottom:870.834000px;}
.y18{bottom:870.841500px;}
.y114{bottom:872.043000px;}
.y14f{bottom:875.770500px;}
.y42{bottom:881.203500px;}
.y1e1{bottom:882.249000px;}
.y1bc{bottom:883.081500px;}
.ye6{bottom:885.537000px;}
.y113{bottom:888.481500px;}
.y112{bottom:889.818000px;}
.yc1{bottom:891.514500px;}
.y95{bottom:891.664500px;}
.y17{bottom:892.858500px;}
.y207{bottom:893.052000px;}
.y6d{bottom:893.560500px;}
.y14e{bottom:896.094000px;}
.y41{bottom:903.619500px;}
.y1bb{bottom:905.230500px;}
.ye5{bottom:907.953000px;}
.y14d{bottom:912.532500px;}
.y111{bottom:912.690000px;}
.y16{bottom:913.780500px;}
.yc0{bottom:913.930500px;}
.y94{bottom:914.080500px;}
.y206{bottom:915.270000px;}
.y1e0{bottom:915.592500px;}
.y6c{bottom:915.706500px;}
.y40{bottom:926.035500px;}
.y1ba{bottom:927.378000px;}
.y110{bottom:929.128500px;}
.y10f{bottom:930.465000px;}
.ye4{bottom:930.519000px;}
.ybf{bottom:936.346500px;}
.y93{bottom:936.496500px;}
.y205{bottom:937.488000px;}
.y1df{bottom:937.756500px;}
.y6b{bottom:937.851000px;}
.y3f{bottom:948.451500px;}
.y1b9{bottom:949.525500px;}
.y10e{bottom:952.291500px;}
.y10d{bottom:953.338500px;}
.y14c{bottom:953.602500px;}
.y14a{bottom:953.788500px;}
.ye3{bottom:957.417000px;}
.y15{bottom:957.717000px;}
.ybe{bottom:958.762500px;}
.y92{bottom:958.912500px;}
.y204{bottom:959.704500px;}
.y1de{bottom:959.920500px;}
.y6a{bottom:959.995500px;}
.y10c{bottom:969.777000px;}
.y14b{bottom:970.041000px;}
.y149{bottom:970.227000px;}
.y3e{bottom:970.867500px;}
.y10b{bottom:971.112000px;}
.y1b8{bottom:971.673000px;}
.ybd{bottom:981.178500px;}
.y91{bottom:981.328500px;}
.y203{bottom:981.922500px;}
.y1dd{bottom:982.084500px;}
.y69{bottom:982.141500px;}
.y10a{bottom:992.781000px;}
.y3d{bottom:993.283500px;}
.y1b7{bottom:993.820500px;}
.y14{bottom:993.880500px;}
.ybc{bottom:1003.594500px;}
.y90{bottom:1003.744500px;}
.y202{bottom:1004.140500px;}
.y1dc{bottom:1004.248500px;}
.y68{bottom:1004.286000px;}
.y109{bottom:1009.219500px;}
.y3c{bottom:1015.699500px;}
.y1b6{bottom:1015.968000px;}
.ybb{bottom:1026.010500px;}
.y8f{bottom:1026.160500px;}
.y201{bottom:1026.358500px;}
.y1db{bottom:1026.412500px;}
.y67{bottom:1026.430500px;}
.y13{bottom:1030.045500px;}
.y108{bottom:1040.520000px;}
.y3b{bottom:1044.093000px;}
.y66{bottom:1048.576500px;}
.y12{bottom:1066.209000px;}
.h7{height:25.464576px;}
.he{height:30.001288px;}
.hd{height:31.172886px;}
.h1d{height:31.830720px;}
.h1e{height:32.144544px;}
.h21{height:32.470187px;}
.h12{height:38.196864px;}
.h2{height:38.573453px;}
.h3{height:40.079808px;}
.h1{height:40.187405px;}
.hc{height:42.859105px;}
.h17{height:43.876742px;}
.h1a{height:43.882742px;}
.h1f{height:44.994576px;}
.h13{height:45.245635px;}
.ha{height:46.472766px;}
.h22{height:46.898766px;}
.h9{height:46.930948px;}
.h11{height:48.723269px;}
.h20{height:51.011635px;}
.hf{height:53.439744px;}
.h10{height:56.230187px;}
.hb{height:58.047370px;}
.h5{height:60.321370px;}
.h6{height:60.327370px;}
.h8{height:62.346219px;}
.h15{height:71.447453px;}
.h1b{height:75.258864px;}
.h18{height:78.413453px;}
.h16{height:78.419453px;}
.h4{height:93.369828px;}
.h1c{height:103.950864px;}
.h19{height:104.327453px;}
.h14{height:105.442742px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:51.024000px;}
.x1{left:52.303500px;}
.x3{left:56.787000px;}
.xa{left:59.758500px;}
.xb{left:63.457500px;}
.x10{left:66.147000px;}
.x11{left:68.598000px;}
.x12{left:73.440000px;}
.x2{left:75.843000px;}
.xe{left:220.255500px;}
.x13{left:233.094000px;}
.x5{left:270.574500px;}
.x4{left:276.463500px;}
.x1e{left:279.736500px;}
.x1c{left:282.441000px;}
.x8{left:285.198000px;}
.x1d{left:292.827000px;}
.x6{left:294.165000px;}
.x1f{left:309.190500px;}
.x19{left:313.756500px;}
.x20{left:359.148000px;}
.x14{left:414.580500px;}
.x15{left:515.329500px;}
.xc{left:576.469500px;}
.x16{left:616.080000px;}
.x1b{left:626.719500px;}
.x9{left:632.625000px;}
.xd{left:656.752500px;}
.x21{left:699.069000px;}
.x17{left:721.777500px;}
.xf{left:753.775500px;}
.x18{left:804.007500px;}
.x1a{left:854.274000px;}
@media print{
.v11{vertical-align:-21.120000pt;}
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:8.293333pt;}
.v5{vertical-align:17.360000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:23.141333pt;}
.va{vertical-align:25.504000pt;}
.v9{vertical-align:29.221333pt;}
.v10{vertical-align:30.954667pt;}
.vf{vertical-align:32.944000pt;}
.vd{vertical-align:35.413333pt;}
.vb{vertical-align:42.864000pt;}
.v6{vertical-align:44.480000pt;}
.v7{vertical-align:54.725333pt;}
.ve{vertical-align:58.448000pt;}
.v8{vertical-align:72.080000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000896pt;}
.ls1{letter-spacing:0.000939pt;}
.ls7{letter-spacing:0.000952pt;}
.ls1c{letter-spacing:0.001425pt;}
.ls3c{letter-spacing:0.002393pt;}
.ls1a{letter-spacing:0.002703pt;}
.ls1f{letter-spacing:0.002873pt;}
.ls44{letter-spacing:0.002885pt;}
.ls1d{letter-spacing:2.652544pt;}
.ls0{letter-spacing:2.655136pt;}
.ls13{letter-spacing:2.655733pt;}
.ls27{letter-spacing:2.657067pt;}
.ls24{letter-spacing:2.657877pt;}
.ls2{letter-spacing:2.660469pt;}
.ls16{letter-spacing:2.661067pt;}
.ls30{letter-spacing:2.661205pt;}
.ls25{letter-spacing:2.974148pt;}
.ls2a{letter-spacing:3.349069pt;}
.ls5{letter-spacing:4.070761pt;}
.ls6{letter-spacing:4.076094pt;}
.ls8{letter-spacing:5.237801pt;}
.ls4{letter-spacing:7.973205pt;}
.lsa{letter-spacing:9.695477pt;}
.ls22{letter-spacing:9.876811pt;}
.lsf{letter-spacing:11.135019pt;}
.ls9{letter-spacing:12.353877pt;}
.lsc{letter-spacing:12.895019pt;}
.lse{letter-spacing:12.927019pt;}
.ls29{letter-spacing:13.653589pt;}
.ls36{letter-spacing:14.511467pt;}
.ls23{letter-spacing:14.682144pt;}
.ls18{letter-spacing:15.213539pt;}
.ls19{letter-spacing:15.214037pt;}
.ls1b{letter-spacing:15.706154pt;}
.ls41{letter-spacing:15.924352pt;}
.ls11{letter-spacing:16.057685pt;}
.ls10{letter-spacing:16.063019pt;}
.ls39{letter-spacing:16.393685pt;}
.ls17{letter-spacing:16.650144pt;}
.lsd{letter-spacing:16.687019pt;}
.ls15{letter-spacing:16.762144pt;}
.ls14{letter-spacing:16.767483pt;}
.ls3d{letter-spacing:16.853457pt;}
.ls21{letter-spacing:17.045457pt;}
.ls3f{letter-spacing:17.092352pt;}
.ls3e{letter-spacing:17.097685pt;}
.ls3b{letter-spacing:17.108352pt;}
.ls12{letter-spacing:17.241685pt;}
.ls3{letter-spacing:17.321803pt;}
.ls43{letter-spacing:17.452094pt;}
.ls38{letter-spacing:17.587376pt;}
.ls3a{letter-spacing:19.724544pt;}
.ls37{letter-spacing:20.746133pt;}
.ls1e{letter-spacing:20.798043pt;}
.ls20{letter-spacing:20.815019pt;}
.ls35{letter-spacing:24.083836pt;}
.ls40{letter-spacing:25.673170pt;}
.ls42{letter-spacing:29.090400pt;}
.ls2f{letter-spacing:50.555699pt;}
.ls2d{letter-spacing:179.050189pt;}
.ls28{letter-spacing:203.520759pt;}
.ls2c{letter-spacing:237.952759pt;}
.ls32{letter-spacing:246.623872pt;}
.ls26{letter-spacing:247.912141pt;}
.ls33{letter-spacing:282.562807pt;}
.ls2e{letter-spacing:291.094323pt;}
.ls34{letter-spacing:293.560141pt;}
.ls2b{letter-spacing:294.489600pt;}
.ws56{word-spacing:-63.941871pt;}
.ws22{word-spacing:-40.960034pt;}
.wsb{word-spacing:-0.074388pt;}
.wsa{word-spacing:-0.063761pt;}
.ws19{word-spacing:-0.058182pt;}
.ws72{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.037194pt;}
.ws2b{word-spacing:0.000000pt;}
.ws28{word-spacing:8.517334pt;}
.ws29{word-spacing:8.519187pt;}
.wsd0{word-spacing:9.076371pt;}
.wsab{word-spacing:9.125803pt;}
.ws50{word-spacing:9.250917pt;}
.ws51{word-spacing:9.309099pt;}
.ws41{word-spacing:9.367281pt;}
.ws7a{word-spacing:9.516339pt;}
.ws98{word-spacing:9.832735pt;}
.ws96{word-spacing:10.065463pt;}
.ws30{word-spacing:10.181827pt;}
.ws27{word-spacing:10.302627pt;}
.wsbb{word-spacing:10.356372pt;}
.wsd6{word-spacing:10.414554pt;}
.ws93{word-spacing:10.530918pt;}
.ws94{word-spacing:10.589100pt;}
.ws4d{word-spacing:10.763645pt;}
.wsa5{word-spacing:10.950878pt;}
.ws1{word-spacing:10.950963pt;}
.wsa6{word-spacing:10.951902pt;}
.ws42{word-spacing:11.054555pt;}
.wsc5{word-spacing:11.281344pt;}
.ws44{word-spacing:11.287282pt;}
.wse{word-spacing:11.345464pt;}
.wsa3{word-spacing:11.403646pt;}
.ws43{word-spacing:11.520010pt;}
.wse0{word-spacing:11.578191pt;}
.ws95{word-spacing:11.752737pt;}
.wsc6{word-spacing:11.810919pt;}
.ws91{word-spacing:11.869101pt;}
.wsdf{word-spacing:11.927283pt;}
.ws2e{word-spacing:11.985465pt;}
.wsd4{word-spacing:11.989730pt;}
.wsd5{word-spacing:11.990702pt;}
.ws25{word-spacing:12.167655pt;}
.ws9b{word-spacing:12.276374pt;}
.ws74{word-spacing:12.390214pt;}
.ws73{word-spacing:12.390600pt;}
.ws71{word-spacing:12.392738pt;}
.ws7f{word-spacing:12.450919pt;}
.ws7e{word-spacing:12.457093pt;}
.ws31{word-spacing:12.567283pt;}
.ws11{word-spacing:12.625465pt;}
.wsb6{word-spacing:12.683647pt;}
.wsda{word-spacing:12.776196pt;}
.ws38{word-spacing:12.800011pt;}
.ws3c{word-spacing:12.858193pt;}
.ws9f{word-spacing:13.032738pt;}
.wsa0{word-spacing:13.051979pt;}
.ws3b{word-spacing:13.149102pt;}
.ws99{word-spacing:13.207284pt;}
.ws3{word-spacing:13.245713pt;}
.ws4{word-spacing:13.246362pt;}
.ws5{word-spacing:13.246797pt;}
.ws0{word-spacing:13.246916pt;}
.ws21{word-spacing:13.265466pt;}
.wsf2{word-spacing:13.320954pt;}
.wse9{word-spacing:13.321032pt;}
.wsf0{word-spacing:13.321084pt;}
.wsed{word-spacing:13.321099pt;}
.wse7{word-spacing:13.321357pt;}
.wsec{word-spacing:13.321912pt;}
.wsef{word-spacing:13.321924pt;}
.wsea{word-spacing:13.322346pt;}
.wse8{word-spacing:13.322549pt;}
.wse3{word-spacing:13.322990pt;}
.wseb{word-spacing:13.323451pt;}
.wse4{word-spacing:13.323472pt;}
.ws17{word-spacing:13.323647pt;}
.wsf1{word-spacing:13.324038pt;}
.wsf5{word-spacing:13.324986pt;}
.wsee{word-spacing:13.325413pt;}
.wse6{word-spacing:13.325469pt;}
.wsf3{word-spacing:13.325959pt;}
.ws24{word-spacing:13.333751pt;}
.ws8f{word-spacing:13.381829pt;}
.wsd9{word-spacing:13.440011pt;}
.ws9d{word-spacing:13.498193pt;}
.wsc0{word-spacing:13.525730pt;}
.wsc2{word-spacing:13.526702pt;}
.wsc1{word-spacing:13.527199pt;}
.wsc{word-spacing:13.556375pt;}
.ws75{word-spacing:13.614557pt;}
.wsbc{word-spacing:13.672739pt;}
.wsbd{word-spacing:13.730921pt;}
.wsc8{word-spacing:13.789102pt;}
.ws46{word-spacing:13.847284pt;}
.ws59{word-spacing:13.905466pt;}
.wscf{word-spacing:14.138194pt;}
.ws52{word-spacing:14.196375pt;}
.wsde{word-spacing:14.254557pt;}
.ws8a{word-spacing:14.312739pt;}
.ws49{word-spacing:14.370921pt;}
.ws8d{word-spacing:14.429103pt;}
.wsb9{word-spacing:14.487199pt;}
.ws57{word-spacing:14.487226pt;}
.ws23{word-spacing:14.487285pt;}
.ws9e{word-spacing:14.545467pt;}
.ws8{word-spacing:14.601284pt;}
.wsf{word-spacing:14.603649pt;}
.ws5e{word-spacing:14.661830pt;}
.ws4c{word-spacing:14.720012pt;}
.wsb4{word-spacing:14.748559pt;}
.wsb3{word-spacing:14.778194pt;}
.ws2f{word-spacing:14.836376pt;}
.wsca{word-spacing:14.894558pt;}
.ws3a{word-spacing:14.952740pt;}
.wsdd{word-spacing:15.010922pt;}
.ws10{word-spacing:15.069103pt;}
.ws47{word-spacing:15.127285pt;}
.ws5d{word-spacing:15.185467pt;}
.wsd{word-spacing:15.243649pt;}
.ws32{word-spacing:15.301831pt;}
.wsc3{word-spacing:15.333730pt;}
.ws84{word-spacing:15.335226pt;}
.ws85{word-spacing:15.360013pt;}
.ws20{word-spacing:15.418195pt;}
.ws3e{word-spacing:15.476377pt;}
.ws37{word-spacing:15.534558pt;}
.ws35{word-spacing:15.592740pt;}
.wsc7{word-spacing:15.650922pt;}
.ws48{word-spacing:15.709104pt;}
.wsc9{word-spacing:15.745866pt;}
.ws92{word-spacing:15.767286pt;}
.ws36{word-spacing:15.825468pt;}
.ws77{word-spacing:15.883650pt;}
.ws5c{word-spacing:15.941831pt;}
.ws80{word-spacing:16.000013pt;}
.wsd1{word-spacing:16.007199pt;}
.ws55{word-spacing:16.058195pt;}
.wsb8{word-spacing:16.116377pt;}
.ws3d{word-spacing:16.174559pt;}
.ws9a{word-spacing:16.189948pt;}
.ws45{word-spacing:16.232741pt;}
.ws3f{word-spacing:16.290923pt;}
.ws4a{word-spacing:16.349105pt;}
.ws70{word-spacing:16.407286pt;}
.ws2d{word-spacing:16.465468pt;}
.ws76{word-spacing:16.523650pt;}
.wsd7{word-spacing:16.523944pt;}
.wsd8{word-spacing:16.528396pt;}
.ws54{word-spacing:16.581832pt;}
.ws39{word-spacing:16.640014pt;}
.ws65{word-spacing:16.666281pt;}
.ws53{word-spacing:16.698196pt;}
.wsb2{word-spacing:16.756378pt;}
.wsc4{word-spacing:16.814559pt;}
.ws79{word-spacing:16.872741pt;}
.wsb5{word-spacing:16.930923pt;}
.ws8e{word-spacing:16.989105pt;}
.ws68{word-spacing:17.047287pt;}
.ws1d{word-spacing:17.087907pt;}
.ws1b{word-spacing:17.089369pt;}
.ws18{word-spacing:17.089866pt;}
.ws1c{word-spacing:17.090381pt;}
.ws1e{word-spacing:17.095199pt;}
.ws1a{word-spacing:17.105469pt;}
.ws90{word-spacing:17.163651pt;}
.wsf4{word-spacing:17.194533pt;}
.ws87{word-spacing:17.280014pt;}
.wsa1{word-spacing:17.338196pt;}
.wsbf{word-spacing:17.372882pt;}
.wsbe{word-spacing:17.387063pt;}
.ws34{word-spacing:17.396378pt;}
.ws40{word-spacing:17.454560pt;}
.ws2c{word-spacing:17.512742pt;}
.wse2{word-spacing:17.621695pt;}
.ws33{word-spacing:17.629106pt;}
.ws58{word-spacing:17.661815pt;}
.wscd{word-spacing:17.676533pt;}
.wsce{word-spacing:17.677507pt;}
.wscc{word-spacing:17.682306pt;}
.ws64{word-spacing:17.687287pt;}
.ws8b{word-spacing:17.745469pt;}
.wse5{word-spacing:17.771775pt;}
.ws8c{word-spacing:17.803651pt;}
.wsb7{word-spacing:17.861833pt;}
.wsd3{word-spacing:17.978197pt;}
.ws66{word-spacing:18.036379pt;}
.ws1f{word-spacing:18.094561pt;}
.ws83{word-spacing:18.152742pt;}
.ws4b{word-spacing:18.210924pt;}
.ws5f{word-spacing:18.269106pt;}
.wsb1{word-spacing:18.291456pt;}
.ws82{word-spacing:18.385470pt;}
.ws9c{word-spacing:18.443652pt;}
.ws5a{word-spacing:18.501834pt;}
.ws16{word-spacing:18.560015pt;}
.wsba{word-spacing:18.618197pt;}
.wsdb{word-spacing:18.676379pt;}
.wsa2{word-spacing:18.850925pt;}
.ws78{word-spacing:18.909107pt;}
.ws62{word-spacing:18.967289pt;}
.wsd2{word-spacing:19.141834pt;}
.ws69{word-spacing:19.200016pt;}
.ws63{word-spacing:19.258198pt;}
.ws67{word-spacing:19.316380pt;}
.ws61{word-spacing:19.374562pt;}
.ws81{word-spacing:19.432743pt;}
.ws97{word-spacing:19.607289pt;}
.ws7b{word-spacing:19.655226pt;}
.ws7c{word-spacing:19.665471pt;}
.ws15{word-spacing:19.840017pt;}
.wse1{word-spacing:20.042109pt;}
.wsaa{word-spacing:20.156757pt;}
.ws6c{word-spacing:20.247290pt;}
.ws6b{word-spacing:20.305471pt;}
.ws6f{word-spacing:20.480017pt;}
.ws4f{word-spacing:20.538199pt;}
.ws4e{word-spacing:20.605402pt;}
.ws88{word-spacing:20.712745pt;}
.ws89{word-spacing:20.770926pt;}
.ws14{word-spacing:20.829108pt;}
.ws5b{word-spacing:21.204533pt;}
.ws6a{word-spacing:21.469109pt;}
.ws86{word-spacing:21.527291pt;}
.ws12{word-spacing:21.585473pt;}
.ws13{word-spacing:21.992746pt;}
.ws6d{word-spacing:22.283655pt;}
.ws7d{word-spacing:22.329867pt;}
.ws6e{word-spacing:22.981837pt;}
.wscb{word-spacing:24.087293pt;}
.ws60{word-spacing:24.320020pt;}
.wsdc{word-spacing:24.436384pt;}
.ws26{word-spacing:25.466283pt;}
.ws2{word-spacing:26.539221pt;}
.ws9{word-spacing:34.367215pt;}
.ws7{word-spacing:38.809118pt;}
.wsa8{word-spacing:101.246874pt;}
.wsad{word-spacing:174.402458pt;}
.wsae{word-spacing:189.032585pt;}
.wsa9{word-spacing:203.477504pt;}
.wsaf{word-spacing:208.355226pt;}
.wsa7{word-spacing:237.908480pt;}
.wsb0{word-spacing:242.786202pt;}
.wsac{word-spacing:266.218394pt;}
.wsa4{word-spacing:293.667533pt;}
._10{margin-left:-7.066835pt;}
._b{margin-left:-5.951019pt;}
._3{margin-left:-2.975509pt;}
._0{margin-left:-1.434624pt;}
._4{width:1.248656pt;}
._9{width:2.745847pt;}
._7{width:4.964116pt;}
._41{width:7.032629pt;}
._3c{width:9.165653pt;}
._5{width:11.419712pt;}
._40{width:13.381829pt;}
._3d{width:14.545467pt;}
._3f{width:16.059986pt;}
._8{width:17.449277pt;}
._d{width:19.053518pt;}
._6{width:20.363653pt;}
._43{width:25.008981pt;}
._44{width:26.757756pt;}
._2{width:28.050483pt;}
._c{width:31.745492pt;}
._1{width:34.430464pt;}
._e{width:38.256640pt;}
._f{width:64.412979pt;}
._26{width:101.284454pt;}
._25{width:108.266291pt;}
._29{width:110.561135pt;}
._19{width:128.733594pt;}
._35{width:132.846182pt;}
._32{width:134.376448pt;}
._11{width:143.318938pt;}
._16{width:150.969711pt;}
._13{width:156.134912pt;}
._1c{width:161.395200pt;}
._28{width:172.824371pt;}
._1a{width:173.732966pt;}
._33{width:174.928486pt;}
._17{width:178.672154pt;}
._22{width:183.775334pt;}
._20{width:185.353421pt;}
._2d{width:188.700877pt;}
._2e{width:189.848576pt;}
._31{width:193.674240pt;}
._23{width:197.212979pt;}
._24{width:200.273510pt;}
._1b{width:201.516851pt;}
._15{width:203.190579pt;}
._2c{width:206.155469pt;}
._18{width:208.498688pt;}
._2a{width:212.228710pt;}
._1f{width:219.067085pt;}
._34{width:226.001101pt;}
._21{width:227.818291pt;}
._14{width:228.870349pt;}
._30{width:232.074342pt;}
._1e{width:233.652429pt;}
._2f{width:244.077363pt;}
._1d{width:255.171789pt;}
._2b{width:258.710528pt;}
._27{width:260.384256pt;}
._36{width:277.884902pt;}
._3a{width:312.317645pt;}
._12{width:382.434833pt;}
._38{width:434.595430pt;}
._39{width:457.549414pt;}
._3b{width:469.026406pt;}
._37{width:491.980390pt;}
._3e{width:1508.170163pt;}
._42{width:1510.916011pt;}
._a{width:1534.762163pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fsa{font-size:39.850667pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:74.387733pt;}
.fs1{font-size:116.894933pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:26.552000pt;}
.y39{bottom:37.178667pt;}
.y65{bottom:43.446667pt;}
.y38{bottom:47.805333pt;}
.y1da{bottom:102.608000pt;}
.y8e{bottom:102.609333pt;}
.yb7{bottom:103.042667pt;}
.y17c{bottom:103.981333pt;}
.y11{bottom:104.373333pt;}
.y64{bottom:105.832000pt;}
.y107{bottom:108.090667pt;}
.y1ae{bottom:109.684000pt;}
.y23b{bottom:115.130667pt;}
.y8d{bottom:122.293333pt;}
.y1d9{bottom:122.296000pt;}
.y200{bottom:122.309333pt;}
.y229{bottom:122.357333pt;}
.ye2{bottom:122.834667pt;}
.yb6{bottom:122.968000pt;}
.y17b{bottom:123.906667pt;}
.y63{bottom:125.757333pt;}
.y106{bottom:128.016000pt;}
.y1ad{bottom:129.609333pt;}
.y10{bottom:132.932000pt;}
.y23a{bottom:135.056000pt;}
.y192{bottom:136.754667pt;}
.y1d8{bottom:141.982667pt;}
.y1ff{bottom:142.010667pt;}
.y228{bottom:142.106667pt;}
.y8c{bottom:142.110667pt;}
.ye1{bottom:142.760000pt;}
.yb5{bottom:142.893333pt;}
.y17a{bottom:143.832000pt;}
.y62{bottom:145.682667pt;}
.yf{bottom:146.880000pt;}
.y105{bottom:147.941333pt;}
.y148{bottom:148.657333pt;}
.y1ac{bottom:149.534667pt;}
.y239{bottom:154.981333pt;}
.y191{bottom:156.680000pt;}
.y147{bottom:161.276000pt;}
.y1fe{bottom:161.712000pt;}
.y1d7{bottom:161.801333pt;}
.y227{bottom:161.856000pt;}
.ye0{bottom:162.685333pt;}
.yb4{bottom:162.818667pt;}
.y179{bottom:163.757333pt;}
.y61{bottom:165.608000pt;}
.y104{bottom:167.866667pt;}
.y1ab{bottom:169.460000pt;}
.ye{bottom:171.454667pt;}
.y8b{bottom:171.582667pt;}
.yba{bottom:172.608000pt;}
.y146{bottom:173.896000pt;}
.y238{bottom:174.906667pt;}
.y190{bottom:176.605333pt;}
.y37{bottom:178.108000pt;}
.y1fd{bottom:181.413333pt;}
.y226{bottom:181.605333pt;}
.ydf{bottom:182.610667pt;}
.yb3{bottom:182.744000pt;}
.yd{bottom:185.402667pt;}
.y60{bottom:185.533333pt;}
.yb9{bottom:187.220000pt;}
.y103{bottom:187.792000pt;}
.y1aa{bottom:189.385333pt;}
.y8a{bottom:191.266667pt;}
.y1d6{bottom:191.296000pt;}
.y178{bottom:191.430667pt;}
.y36{bottom:194.048000pt;}
.y237{bottom:194.832000pt;}
.y18f{bottom:196.529333pt;}
.y145{bottom:197.050667pt;}
.y1fc{bottom:201.114667pt;}
.y225{bottom:201.353333pt;}
.yb8{bottom:201.832000pt;}
.yde{bottom:202.536000pt;}
.yb2{bottom:202.669333pt;}
.y177{bottom:204.049333pt;}
.y5f{bottom:205.458667pt;}
.y102{bottom:207.717333pt;}
.y1a9{bottom:209.310667pt;}
.y89{bottom:210.952000pt;}
.y1d5{bottom:211.116000pt;}
.y144{bottom:211.662667pt;}
.y35{bottom:212.512000pt;}
.yc{bottom:212.565333pt;}
.y143{bottom:212.849333pt;}
.y236{bottom:214.757333pt;}
.y18e{bottom:216.454667pt;}
.y176{bottom:216.669333pt;}
.y1fb{bottom:220.816000pt;}
.y224{bottom:221.102667pt;}
.ydd{bottom:222.461333pt;}
.yb1{bottom:222.594667pt;}
.y5e{bottom:225.384000pt;}
.y101{bottom:227.642667pt;}
.y1a8{bottom:229.236000pt;}
.y88{bottom:230.636000pt;}
.y142{bottom:233.181333pt;}
.yb{bottom:234.482667pt;}
.y235{bottom:234.682667pt;}
.y18d{bottom:236.380000pt;}
.y175{bottom:237.557333pt;}
.y1fa{bottom:240.517333pt;}
.y1d4{bottom:240.610667pt;}
.y223{bottom:240.852000pt;}
.ydc{bottom:242.386667pt;}
.yb0{bottom:242.520000pt;}
.y5d{bottom:245.309333pt;}
.y100{bottom:247.568000pt;}
.y141{bottom:247.793333pt;}
.ya{bottom:248.430667pt;}
.y140{bottom:248.981333pt;}
.y1a7{bottom:249.161333pt;}
.y87{bottom:250.320000pt;}
.y174{bottom:252.169333pt;}
.y234{bottom:254.608000pt;}
.y18c{bottom:256.305333pt;}
.y1f9{bottom:260.217333pt;}
.y1d3{bottom:260.297333pt;}
.y222{bottom:260.601333pt;}
.y34{bottom:261.689333pt;}
.ydb{bottom:262.312000pt;}
.y9{bottom:262.377333pt;}
.yaf{bottom:262.445333pt;}
.y5c{bottom:265.234667pt;}
.yff{bottom:267.493333pt;}
.y1a6{bottom:269.086667pt;}
.y13f{bottom:269.313333pt;}
.y86{bottom:270.005333pt;}
.y173{bottom:270.234667pt;}
.y233{bottom:274.533333pt;}
.y18b{bottom:276.364000pt;}
.y33{bottom:279.621333pt;}
.y1f8{bottom:279.918667pt;}
.y1d2{bottom:279.984000pt;}
.y221{bottom:280.349333pt;}
.yda{bottom:282.237333pt;}
.yae{bottom:282.370667pt;}
.y13e{bottom:283.924000pt;}
.y8{bottom:284.296000pt;}
.y172{bottom:284.846667pt;}
.y13d{bottom:285.112000pt;}
.y5b{bottom:285.160000pt;}
.yfe{bottom:287.418667pt;}
.y1a5{bottom:289.012000pt;}
.y85{bottom:289.689333pt;}
.y232{bottom:294.458667pt;}
.y32{bottom:297.554667pt;}
.y7{bottom:298.244000pt;}
.y1f7{bottom:299.620000pt;}
.y1d1{bottom:299.804000pt;}
.y220{bottom:300.098667pt;}
.yd9{bottom:302.162667pt;}
.yad{bottom:302.296000pt;}
.y171{bottom:302.912000pt;}
.y5a{bottom:305.085333pt;}
.y13c{bottom:305.444000pt;}
.y18a{bottom:306.916000pt;}
.yfd{bottom:307.342667pt;}
.y1a4{bottom:308.937333pt;}
.y84{bottom:309.373333pt;}
.y231{bottom:314.384000pt;}
.y31{bottom:315.486667pt;}
.y170{bottom:317.524000pt;}
.y1f6{bottom:319.321333pt;}
.y21f{bottom:319.848000pt;}
.y13b{bottom:320.056000pt;}
.y6{bottom:320.161333pt;}
.y13a{bottom:321.242667pt;}
.yd8{bottom:322.088000pt;}
.yac{bottom:322.221333pt;}
.y59{bottom:325.010667pt;}
.y189{bottom:326.841333pt;}
.yfc{bottom:327.401333pt;}
.y1a3{bottom:328.862667pt;}
.y83{bottom:329.057333pt;}
.y1d0{bottom:329.298667pt;}
.y30{bottom:333.420000pt;}
.y5{bottom:334.109333pt;}
.y230{bottom:334.309333pt;}
.y16f{bottom:335.589333pt;}
.y1f5{bottom:339.022667pt;}
.y21e{bottom:339.597333pt;}
.y139{bottom:341.574667pt;}
.yd7{bottom:342.013333pt;}
.yab{bottom:342.146667pt;}
.y58{bottom:344.936000pt;}
.y188{bottom:346.766667pt;}
.y4{bottom:348.056000pt;}
.y82{bottom:348.742667pt;}
.y1a2{bottom:348.788000pt;}
.y1cf{bottom:348.985333pt;}
.y16e{bottom:350.201333pt;}
.y2f{bottom:351.352000pt;}
.y22f{bottom:354.234667pt;}
.y138{bottom:356.186667pt;}
.y137{bottom:357.374667pt;}
.yfb{bottom:357.953333pt;}
.y1f4{bottom:358.724000pt;}
.y21d{bottom:359.345333pt;}
.yd6{bottom:361.938667pt;}
.yaa{bottom:362.072000pt;}
.y57{bottom:364.861333pt;}
.y187{bottom:366.692000pt;}
.y16d{bottom:368.266667pt;}
.y81{bottom:368.426667pt;}
.y1ce{bottom:368.672000pt;}
.y1a1{bottom:368.713333pt;}
.y2e{bottom:369.285333pt;}
.y3{bottom:369.974667pt;}
.y22e{bottom:374.160000pt;}
.y136{bottom:377.706667pt;}
.yfa{bottom:377.878667pt;}
.y1f3{bottom:378.425333pt;}
.y21c{bottom:379.094667pt;}
.yd5{bottom:381.864000pt;}
.ya9{bottom:381.996000pt;}
.y1b5{bottom:381.997333pt;}
.y16c{bottom:382.878667pt;}
.y2{bottom:383.922667pt;}
.y56{bottom:384.786667pt;}
.y186{bottom:386.617333pt;}
.y2d{bottom:387.218667pt;}
.y80{bottom:388.110667pt;}
.y1cd{bottom:388.358667pt;}
.y1a0{bottom:388.638667pt;}
.y135{bottom:392.318667pt;}
.y134{bottom:393.505333pt;}
.y22d{bottom:394.084000pt;}
.y23c{bottom:394.085333pt;}
.yf9{bottom:397.804000pt;}
.y1{bottom:397.869333pt;}
.y1f2{bottom:398.125333pt;}
.y21b{bottom:398.844000pt;}
.y16b{bottom:400.944000pt;}
.yd4{bottom:401.789333pt;}
.ya8{bottom:401.921333pt;}
.y55{bottom:404.712000pt;}
.y2c{bottom:405.150667pt;}
.y185{bottom:406.542667pt;}
.y7f{bottom:407.928000pt;}
.y1cc{bottom:408.177333pt;}
.y19f{bottom:408.564000pt;}
.y133{bottom:413.837333pt;}
.y22c{bottom:414.009333pt;}
.y16a{bottom:415.556000pt;}
.yf8{bottom:417.729333pt;}
.y1f1{bottom:417.826667pt;}
.y21a{bottom:418.593333pt;}
.yd3{bottom:421.714667pt;}
.ya7{bottom:421.846667pt;}
.y2b{bottom:423.084000pt;}
.y54{bottom:424.637333pt;}
.y184{bottom:426.468000pt;}
.y132{bottom:428.449333pt;}
.y19e{bottom:428.489333pt;}
.y131{bottom:429.637333pt;}
.y169{bottom:433.622667pt;}
.y22b{bottom:433.934667pt;}
.y7e{bottom:437.400000pt;}
.y1f0{bottom:437.528000pt;}
.yf7{bottom:437.654667pt;}
.y219{bottom:438.341333pt;}
.y2a{bottom:441.016000pt;}
.yd2{bottom:441.772000pt;}
.ya6{bottom:441.905333pt;}
.y53{bottom:444.562667pt;}
.y1cb{bottom:445.642667pt;}
.y183{bottom:446.393333pt;}
.y168{bottom:448.233333pt;}
.y19d{bottom:448.414667pt;}
.y130{bottom:449.969333pt;}
.y22a{bottom:453.860000pt;}
.y7d{bottom:457.085333pt;}
.y1ef{bottom:457.229333pt;}
.yf6{bottom:457.580000pt;}
.y218{bottom:458.090667pt;}
.y29{bottom:458.949333pt;}
.y1b4{bottom:461.697333pt;}
.y52{bottom:464.486667pt;}
.y12f{bottom:464.580000pt;}
.y12e{bottom:465.768000pt;}
.y167{bottom:466.300000pt;}
.y182{bottom:466.318667pt;}
.y19c{bottom:468.340000pt;}
.yd1{bottom:473.653333pt;}
.ya5{bottom:473.785333pt;}
.y7c{bottom:476.769333pt;}
.y28{bottom:476.881333pt;}
.yf5{bottom:477.505333pt;}
.y217{bottom:477.840000pt;}
.y166{bottom:480.912000pt;}
.y1b3{bottom:481.622667pt;}
.y51{bottom:484.412000pt;}
.y1ee{bottom:485.108000pt;}
.y12d{bottom:486.100000pt;}
.y1ca{bottom:486.121333pt;}
.y181{bottom:486.244000pt;}
.y19a{bottom:488.265333pt;}
.y19b{bottom:493.545333pt;}
.yd0{bottom:493.578667pt;}
.ya4{bottom:493.710667pt;}
.y27{bottom:494.814667pt;}
.y7b{bottom:496.453333pt;}
.yf4{bottom:497.430667pt;}
.y216{bottom:497.589333pt;}
.y165{bottom:498.977333pt;}
.y12c{bottom:500.712000pt;}
.y1b2{bottom:501.548000pt;}
.y12b{bottom:501.898667pt;}
.y50{bottom:504.337333pt;}
.y1c9{bottom:505.808000pt;}
.y199{bottom:508.190667pt;}
.y26{bottom:512.748000pt;}
.ycf{bottom:513.504000pt;}
.y164{bottom:513.589333pt;}
.ya3{bottom:513.636000pt;}
.y7a{bottom:516.138667pt;}
.y215{bottom:517.337333pt;}
.yf3{bottom:517.356000pt;}
.y1b1{bottom:521.473333pt;}
.y12a{bottom:522.230667pt;}
.y4f{bottom:524.262667pt;}
.y1c8{bottom:525.494667pt;}
.y180{bottom:526.153333pt;}
.y1ed{bottom:527.533333pt;}
.y197{bottom:528.116000pt;}
.y25{bottom:530.680000pt;}
.y163{bottom:531.654667pt;}
.y198{bottom:533.396000pt;}
.yce{bottom:533.428000pt;}
.ya2{bottom:533.561333pt;}
.y79{bottom:535.822667pt;}
.y129{bottom:536.842667pt;}
.y214{bottom:537.086667pt;}
.yf2{bottom:537.281333pt;}
.y128{bottom:538.030667pt;}
.y17f{bottom:540.765333pt;}
.y1b0{bottom:541.398667pt;}
.y4e{bottom:544.188000pt;}
.y1c7{bottom:545.181333pt;}
.y162{bottom:546.266667pt;}
.y1ec{bottom:547.234667pt;}
.y196{bottom:548.041333pt;}
.y24{bottom:548.613333pt;}
.ycd{bottom:553.353333pt;}
.ya1{bottom:553.486667pt;}
.y17e{bottom:555.377333pt;}
.y78{bottom:555.506667pt;}
.y213{bottom:556.836000pt;}
.yf1{bottom:557.206667pt;}
.y127{bottom:558.362667pt;}
.y1af{bottom:561.457333pt;}
.y4d{bottom:564.113333pt;}
.y161{bottom:564.332000pt;}
.y1c6{bottom:564.868000pt;}
.y1eb{bottom:567.068000pt;}
.y195{bottom:567.966667pt;}
.y17d{bottom:569.988000pt;}
.y126{bottom:572.974667pt;}
.ycc{bottom:573.278667pt;}
.ya0{bottom:573.412000pt;}
.y125{bottom:574.161333pt;}
.y23{bottom:575.078667pt;}
.y77{bottom:575.192000pt;}
.y212{bottom:576.585333pt;}
.yf0{bottom:577.132000pt;}
.y160{bottom:578.944000pt;}
.y4c{bottom:584.038667pt;}
.y194{bottom:588.024000pt;}
.y1c5{bottom:589.868000pt;}
.ycb{bottom:593.204000pt;}
.y9f{bottom:593.337333pt;}
.y124{bottom:594.493333pt;}
.y76{bottom:594.876000pt;}
.y211{bottom:596.334667pt;}
.y1ea{bottom:596.708000pt;}
.y15f{bottom:597.009333pt;}
.yef{bottom:597.057333pt;}
.y4b{bottom:603.964000pt;}
.y123{bottom:609.105333pt;}
.y122{bottom:610.293333pt;}
.y15e{bottom:611.621333pt;}
.y193{bottom:611.934667pt;}
.yca{bottom:613.129333pt;}
.y9e{bottom:613.262667pt;}
.y75{bottom:614.560000pt;}
.y210{bottom:616.082667pt;}
.y1e9{bottom:616.408000pt;}
.yee{bottom:616.982667pt;}
.y22{bottom:620.966667pt;}
.y4a{bottom:623.889333pt;}
.y1c4{bottom:627.468000pt;}
.y15d{bottom:629.686667pt;}
.y121{bottom:630.624000pt;}
.yc9{bottom:633.054667pt;}
.y9d{bottom:633.188000pt;}
.y74{bottom:634.245333pt;}
.y20f{bottom:635.832000pt;}
.y1e8{bottom:636.109333pt;}
.yed{bottom:637.040000pt;}
.y21{bottom:638.589333pt;}
.y49{bottom:643.814667pt;}
.y15c{bottom:644.298667pt;}
.y120{bottom:645.236000pt;}
.y11f{bottom:646.424000pt;}
.y1c3{bottom:647.154667pt;}
.yc8{bottom:652.980000pt;}
.y9c{bottom:653.113333pt;}
.y73{bottom:653.929333pt;}
.y20{bottom:654.529333pt;}
.y20e{bottom:655.581333pt;}
.y1e7{bottom:655.944000pt;}
.y48{bottom:663.740000pt;}
.y157{bottom:664.630667pt;}
.y15b{bottom:664.865333pt;}
.y159{bottom:665.030667pt;}
.y11e{bottom:665.825333pt;}
.y11d{bottom:666.756000pt;}
.y1c2{bottom:666.841333pt;}
.yec{bottom:667.592000pt;}
.y1f{bottom:670.469333pt;}
.yc7{bottom:672.905333pt;}
.y9b{bottom:673.038667pt;}
.y72{bottom:673.613333pt;}
.y20d{bottom:675.330667pt;}
.y156{bottom:679.242667pt;}
.y15a{bottom:679.477333pt;}
.y158{bottom:679.642667pt;}
.y155{bottom:680.429333pt;}
.y11c{bottom:681.368000pt;}
.y1e{bottom:682.070667pt;}
.y11b{bottom:682.554667pt;}
.y47{bottom:683.665333pt;}
.y1e6{bottom:685.582667pt;}
.y1c1{bottom:686.528000pt;}
.yeb{bottom:687.517333pt;}
.yc6{bottom:692.830667pt;}
.y9a{bottom:692.964000pt;}
.y71{bottom:693.298667pt;}
.y20c{bottom:695.078667pt;}
.y154{bottom:698.496000pt;}
.y1d{bottom:699.693333pt;}
.y11a{bottom:702.886667pt;}
.y46{bottom:703.590667pt;}
.y1e5{bottom:705.284000pt;}
.y1c0{bottom:706.214667pt;}
.yea{bottom:707.442667pt;}
.y1c{bottom:711.294667pt;}
.yc5{bottom:712.756000pt;}
.y99{bottom:712.889333pt;}
.y70{bottom:712.982667pt;}
.y153{bottom:713.108000pt;}
.y20b{bottom:714.828000pt;}
.y119{bottom:717.498667pt;}
.y118{bottom:718.686667pt;}
.y45{bottom:723.516000pt;}
.y1e4{bottom:724.985333pt;}
.y1bf{bottom:725.901333pt;}
.ye9{bottom:727.368000pt;}
.y1b{bottom:728.917333pt;}
.y152{bottom:731.173333pt;}
.yc4{bottom:732.681333pt;}
.y6f{bottom:732.800000pt;}
.y98{bottom:732.814667pt;}
.y20a{bottom:734.577333pt;}
.y117{bottom:739.018667pt;}
.y44{bottom:743.441333pt;}
.y1e3{bottom:744.686667pt;}
.y1a{bottom:744.857333pt;}
.y1be{bottom:745.588000pt;}
.y151{bottom:745.785333pt;}
.ye8{bottom:747.293333pt;}
.yc3{bottom:752.606667pt;}
.y97{bottom:752.740000pt;}
.y116{bottom:753.630667pt;}
.y209{bottom:754.326667pt;}
.y115{bottom:754.817333pt;}
.y19{bottom:756.458667pt;}
.y6e{bottom:756.710667pt;}
.y43{bottom:763.366667pt;}
.y150{bottom:763.850667pt;}
.y1e2{bottom:764.388000pt;}
.y1bd{bottom:765.274667pt;}
.ye7{bottom:767.218667pt;}
.yc2{bottom:772.532000pt;}
.y96{bottom:772.665333pt;}
.y208{bottom:774.074667pt;}
.y18{bottom:774.081333pt;}
.y114{bottom:775.149333pt;}
.y14f{bottom:778.462667pt;}
.y42{bottom:783.292000pt;}
.y1e1{bottom:784.221333pt;}
.y1bc{bottom:784.961333pt;}
.ye6{bottom:787.144000pt;}
.y113{bottom:789.761333pt;}
.y112{bottom:790.949333pt;}
.yc1{bottom:792.457333pt;}
.y95{bottom:792.590667pt;}
.y17{bottom:793.652000pt;}
.y207{bottom:793.824000pt;}
.y6d{bottom:794.276000pt;}
.y14e{bottom:796.528000pt;}
.y41{bottom:803.217333pt;}
.y1bb{bottom:804.649333pt;}
.ye5{bottom:807.069333pt;}
.y14d{bottom:811.140000pt;}
.y111{bottom:811.280000pt;}
.y16{bottom:812.249333pt;}
.yc0{bottom:812.382667pt;}
.y94{bottom:812.516000pt;}
.y206{bottom:813.573333pt;}
.y1e0{bottom:813.860000pt;}
.y6c{bottom:813.961333pt;}
.y40{bottom:823.142667pt;}
.y1ba{bottom:824.336000pt;}
.y110{bottom:825.892000pt;}
.y10f{bottom:827.080000pt;}
.ye4{bottom:827.128000pt;}
.ybf{bottom:832.308000pt;}
.y93{bottom:832.441333pt;}
.y205{bottom:833.322667pt;}
.y1df{bottom:833.561333pt;}
.y6b{bottom:833.645333pt;}
.y3f{bottom:843.068000pt;}
.y1b9{bottom:844.022667pt;}
.y10e{bottom:846.481333pt;}
.y10d{bottom:847.412000pt;}
.y14c{bottom:847.646667pt;}
.y14a{bottom:847.812000pt;}
.ye3{bottom:851.037333pt;}
.y15{bottom:851.304000pt;}
.ybe{bottom:852.233333pt;}
.y92{bottom:852.366667pt;}
.y204{bottom:853.070667pt;}
.y1de{bottom:853.262667pt;}
.y6a{bottom:853.329333pt;}
.y10c{bottom:862.024000pt;}
.y14b{bottom:862.258667pt;}
.y149{bottom:862.424000pt;}
.y3e{bottom:862.993333pt;}
.y10b{bottom:863.210667pt;}
.y1b8{bottom:863.709333pt;}
.ybd{bottom:872.158667pt;}
.y91{bottom:872.292000pt;}
.y203{bottom:872.820000pt;}
.y1dd{bottom:872.964000pt;}
.y69{bottom:873.014667pt;}
.y10a{bottom:882.472000pt;}
.y3d{bottom:882.918667pt;}
.y1b7{bottom:883.396000pt;}
.y14{bottom:883.449333pt;}
.ybc{bottom:892.084000pt;}
.y90{bottom:892.217333pt;}
.y202{bottom:892.569333pt;}
.y1dc{bottom:892.665333pt;}
.y68{bottom:892.698667pt;}
.y109{bottom:897.084000pt;}
.y3c{bottom:902.844000pt;}
.y1b6{bottom:903.082667pt;}
.ybb{bottom:912.009333pt;}
.y8f{bottom:912.142667pt;}
.y201{bottom:912.318667pt;}
.y1db{bottom:912.366667pt;}
.y67{bottom:912.382667pt;}
.y13{bottom:915.596000pt;}
.y108{bottom:924.906667pt;}
.y3b{bottom:928.082667pt;}
.y66{bottom:932.068000pt;}
.y12{bottom:947.741333pt;}
.h7{height:22.635179pt;}
.he{height:26.667811pt;}
.hd{height:27.709232pt;}
.h1d{height:28.293973pt;}
.h1e{height:28.572928pt;}
.h21{height:28.862389pt;}
.h12{height:33.952768pt;}
.h2{height:34.287514pt;}
.h3{height:35.626496pt;}
.h1{height:35.722138pt;}
.hc{height:38.096982pt;}
.h17{height:39.001549pt;}
.h1a{height:39.006882pt;}
.h1f{height:39.995179pt;}
.h13{height:40.218342pt;}
.ha{height:41.309125pt;}
.h22{height:41.687792pt;}
.h9{height:41.716398pt;}
.h11{height:43.309573pt;}
.h20{height:45.343676pt;}
.hf{height:47.501995pt;}
.h10{height:49.982389pt;}
.hb{height:51.597662pt;}
.h5{height:53.618996pt;}
.h6{height:53.624329pt;}
.h8{height:55.418861pt;}
.h15{height:63.508847pt;}
.h1b{height:66.896768pt;}
.h18{height:69.700847pt;}
.h16{height:69.706180pt;}
.h4{height:82.995403pt;}
.h1c{height:92.400768pt;}
.h19{height:92.735514pt;}
.h14{height:93.726882pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:45.354667pt;}
.x1{left:46.492000pt;}
.x3{left:50.477333pt;}
.xa{left:53.118667pt;}
.xb{left:56.406667pt;}
.x10{left:58.797333pt;}
.x11{left:60.976000pt;}
.x12{left:65.280000pt;}
.x2{left:67.416000pt;}
.xe{left:195.782667pt;}
.x13{left:207.194667pt;}
.x5{left:240.510667pt;}
.x4{left:245.745333pt;}
.x1e{left:248.654667pt;}
.x1c{left:251.058667pt;}
.x8{left:253.509333pt;}
.x1d{left:260.290667pt;}
.x6{left:261.480000pt;}
.x1f{left:274.836000pt;}
.x19{left:278.894667pt;}
.x20{left:319.242667pt;}
.x14{left:368.516000pt;}
.x15{left:458.070667pt;}
.xc{left:512.417333pt;}
.x16{left:547.626667pt;}
.x1b{left:557.084000pt;}
.x9{left:562.333333pt;}
.xd{left:583.780000pt;}
.x21{left:621.394667pt;}
.x17{left:641.580000pt;}
.xf{left:670.022667pt;}
.x18{left:714.673333pt;}
.x1a{left:759.354667pt;}
}




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