
    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_747297aab54002906f2b1b58.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a67965d9be030c789dc00d37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1ea4556c12340f0b2633d377.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a81913850623bf497bdae132.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.072036px;}
.ls9{letter-spacing:-0.070308px;}
.ls8{letter-spacing:-0.066060px;}
.ls5{letter-spacing:-0.048024px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024012px;}
.lsa{letter-spacing:0.032940px;}
.ls0{letter-spacing:0.041940px;}
.ls2{letter-spacing:0.058716px;}
.ls1{letter-spacing:0.164700px;}
.ls17{letter-spacing:3.156173px;}
.ls13{letter-spacing:4.519066px;}
.lsf{letter-spacing:4.877722px;}
.lsc{letter-spacing:5.164646px;}
.ls11{letter-spacing:6.957926px;}
.ls10{letter-spacing:7.101389px;}
.lsd{letter-spacing:7.173120px;}
.ls14{letter-spacing:7.460045px;}
.ls1e{letter-spacing:8.536013px;}
.ls19{letter-spacing:8.679475px;}
.ls18{letter-spacing:8.894669px;}
.ls1c{letter-spacing:9.109862px;}
.ls1a{letter-spacing:9.181594px;}
.ls1b{letter-spacing:9.325056px;}
.ls16{letter-spacing:9.611981px;}
.ls12{letter-spacing:10.472755px;}
.lse{letter-spacing:10.616218px;}
.ls15{letter-spacing:11.692186px;}
.ls1d{letter-spacing:18.865306px;}
.lsb{letter-spacing:35.865600px;}
.ls3{letter-spacing:847.533024px;}
.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;}
}
.wsf{word-spacing:-21.160704px;}
.ws9{word-spacing:-19.439155px;}
.ws137{word-spacing:-18.865306px;}
.ws12{word-spacing:-15.852595px;}
.wsd{word-spacing:-14.131046px;}
.wse{word-spacing:-12.481229px;}
.ws10e{word-spacing:-11.692186px;}
.wsc{word-spacing:-10.831411px;}
.ws100{word-spacing:-10.472755px;}
.ws12d{word-spacing:-9.611981px;}
.ws12b{word-spacing:-9.325056px;}
.ws12a{word-spacing:-9.181594px;}
.ws134{word-spacing:-9.109862px;}
.ws126{word-spacing:-8.894669px;}
.ws128{word-spacing:-8.679475px;}
.ws14{word-spacing:-7.603507px;}
.ws13{word-spacing:-7.531776px;}
.wsf3{word-spacing:-7.173120px;}
.wsfe{word-spacing:-7.101389px;}
.wsff{word-spacing:-6.957926px;}
.wsf1{word-spacing:-5.164646px;}
.wsfd{word-spacing:-4.877722px;}
.ws103{word-spacing:-4.519066px;}
.ws124{word-spacing:-3.156173px;}
.ws2{word-spacing:-0.288144px;}
.ws5{word-spacing:-0.150984px;}
.ws4{word-spacing:-0.134208px;}
.ws1{word-spacing:-0.024012px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.033552px;}
.ws3{word-spacing:0.039636px;}
.ws7{word-spacing:0.059292px;}
.ws107{word-spacing:6.527539px;}
.ws12c{word-spacing:14.059315px;}
.ws108{word-spacing:14.274509px;}
.ws109{word-spacing:14.417971px;}
.ws11c{word-spacing:14.561434px;}
.ws102{word-spacing:14.633165px;}
.wsf4{word-spacing:14.704896px;}
.ws10b{word-spacing:14.776627px;}
.wsf6{word-spacing:14.848358px;}
.ws127{word-spacing:15.063552px;}
.ws131{word-spacing:15.135283px;}
.wsf2{word-spacing:15.350477px;}
.ws139{word-spacing:15.422208px;}
.ws10c{word-spacing:15.493939px;}
.wsc0{word-spacing:15.565670px;}
.ws96{word-spacing:15.637402px;}
.ws91{word-spacing:15.709133px;}
.wsdd{word-spacing:15.852595px;}
.ws13a{word-spacing:15.924326px;}
.wsee{word-spacing:15.996058px;}
.ws8e{word-spacing:16.067789px;}
.wsef{word-spacing:16.139520px;}
.ws8c{word-spacing:16.354714px;}
.ws11a{word-spacing:16.498176px;}
.wsda{word-spacing:16.569907px;}
.ws106{word-spacing:16.641638px;}
.ws81{word-spacing:16.713370px;}
.ws9c{word-spacing:16.785101px;}
.ws113{word-spacing:16.856832px;}
.wse6{word-spacing:16.928563px;}
.wsd6{word-spacing:17.000294px;}
.wsd3{word-spacing:17.072026px;}
.wse2{word-spacing:17.143757px;}
.ws61{word-spacing:17.215488px;}
.wsfb{word-spacing:17.287219px;}
.ws95{word-spacing:17.358950px;}
.wsd9{word-spacing:17.502413px;}
.ws20{word-spacing:17.574144px;}
.ws87{word-spacing:17.645875px;}
.wsa6{word-spacing:17.717606px;}
.wsb9{word-spacing:17.789338px;}
.wsa3{word-spacing:17.932800px;}
.wsa2{word-spacing:18.004531px;}
.wsf0{word-spacing:18.076262px;}
.ws42{word-spacing:18.147994px;}
.ws114{word-spacing:18.219725px;}
.ws5c{word-spacing:18.363187px;}
.ws38{word-spacing:18.434918px;}
.wsb0{word-spacing:18.506650px;}
.wsed{word-spacing:18.578381px;}
.ws10f{word-spacing:18.650112px;}
.wsf7{word-spacing:18.721843px;}
.ws7a{word-spacing:18.793574px;}
.ws36{word-spacing:18.865306px;}
.ws119{word-spacing:18.937037px;}
.ws2a{word-spacing:19.008768px;}
.ws143{word-spacing:19.080499px;}
.wsb8{word-spacing:19.152230px;}
.ws1d{word-spacing:19.223962px;}
.ws2b{word-spacing:19.295693px;}
.ws99{word-spacing:19.439155px;}
.ws4e{word-spacing:19.510886px;}
.wsdb{word-spacing:19.582618px;}
.ws133{word-spacing:19.654349px;}
.ws47{word-spacing:19.726080px;}
.ws28{word-spacing:19.797811px;}
.ws8d{word-spacing:19.869542px;}
.ws1b{word-spacing:19.941274px;}
.ws34{word-spacing:20.013005px;}
.ws105{word-spacing:20.084736px;}
.wscc{word-spacing:20.156467px;}
.ws123{word-spacing:20.228198px;}
.ws31{word-spacing:20.299930px;}
.ws9f{word-spacing:20.371661px;}
.ws84{word-spacing:20.443392px;}
.ws85{word-spacing:20.515123px;}
.ws75{word-spacing:20.586854px;}
.wsa4{word-spacing:20.658586px;}
.ws37{word-spacing:20.730317px;}
.ws2e{word-spacing:20.802048px;}
.wsca{word-spacing:20.873779px;}
.wsd5{word-spacing:20.945510px;}
.wse5{word-spacing:21.017242px;}
.wsb1{word-spacing:21.088973px;}
.ws40{word-spacing:21.160704px;}
.ws43{word-spacing:21.232435px;}
.ws57{word-spacing:21.304166px;}
.ws8a{word-spacing:21.375898px;}
.ws7c{word-spacing:21.447629px;}
.ws30{word-spacing:21.591091px;}
.ws44{word-spacing:21.662822px;}
.wsbb{word-spacing:21.734554px;}
.ws3b{word-spacing:21.806285px;}
.ws88{word-spacing:21.878016px;}
.ws92{word-spacing:21.949747px;}
.wsbe{word-spacing:22.021478px;}
.ws32{word-spacing:22.093210px;}
.ws27{word-spacing:22.164941px;}
.ws59{word-spacing:22.236672px;}
.wscf{word-spacing:22.308403px;}
.wsa7{word-spacing:22.380134px;}
.ws2c{word-spacing:22.451866px;}
.ws21{word-spacing:22.523597px;}
.wscb{word-spacing:22.595328px;}
.ws29{word-spacing:22.667059px;}
.ws72{word-spacing:22.738790px;}
.ws3c{word-spacing:22.810522px;}
.ws62{word-spacing:22.882253px;}
.ws98{word-spacing:22.953984px;}
.wsdc{word-spacing:23.025715px;}
.ws83{word-spacing:23.097446px;}
.ws71{word-spacing:23.169178px;}
.wsbc{word-spacing:23.240909px;}
.ws8b{word-spacing:23.312640px;}
.ws19{word-spacing:23.384371px;}
.ws2d{word-spacing:23.456102px;}
.wsc3{word-spacing:23.527834px;}
.wsae{word-spacing:23.599565px;}
.ws1f{word-spacing:23.671296px;}
.wsc8{word-spacing:23.743027px;}
.ws9e{word-spacing:23.814758px;}
.ws73{word-spacing:23.886490px;}
.ws6c{word-spacing:23.958221px;}
.ws97{word-spacing:24.029952px;}
.wsf8{word-spacing:24.101683px;}
.ws64{word-spacing:24.173414px;}
.ws5b{word-spacing:24.245146px;}
.ws13d{word-spacing:24.316877px;}
.ws3a{word-spacing:24.388608px;}
.wsa0{word-spacing:24.460339px;}
.ws69{word-spacing:24.532070px;}
.ws76{word-spacing:24.603802px;}
.wse8{word-spacing:24.675533px;}
.ws22{word-spacing:24.747264px;}
.wsdf{word-spacing:24.818995px;}
.ws54{word-spacing:24.890726px;}
.ws26{word-spacing:24.962458px;}
.ws4d{word-spacing:25.034189px;}
.ws35{word-spacing:25.105920px;}
.ws33{word-spacing:25.177651px;}
.ws104{word-spacing:25.249382px;}
.wsea{word-spacing:25.321114px;}
.ws94{word-spacing:25.392845px;}
.ws89{word-spacing:25.464576px;}
.ws79{word-spacing:25.536307px;}
.ws3f{word-spacing:25.608038px;}
.ws41{word-spacing:25.679770px;}
.wsd0{word-spacing:25.751501px;}
.ws17{word-spacing:25.823232px;}
.ws13c{word-spacing:25.894963px;}
.ws24{word-spacing:25.966694px;}
.wsd8{word-spacing:26.038426px;}
.ws56{word-spacing:26.110157px;}
.ws53{word-spacing:26.181888px;}
.ws49{word-spacing:26.253619px;}
.ws7d{word-spacing:26.325350px;}
.ws55{word-spacing:26.397082px;}
.wsa5{word-spacing:26.468813px;}
.ws25{word-spacing:26.540544px;}
.ws63{word-spacing:26.612275px;}
.ws6d{word-spacing:26.684006px;}
.wsc5{word-spacing:26.755738px;}
.wsb{word-spacing:26.827469px;}
.ws10{word-spacing:26.899200px;}
.ws58{word-spacing:26.970931px;}
.wsbd{word-spacing:27.042662px;}
.ws45{word-spacing:27.114394px;}
.ws5a{word-spacing:27.186125px;}
.wsd1{word-spacing:27.257856px;}
.wsaf{word-spacing:27.329587px;}
.wsb2{word-spacing:27.401318px;}
.ws4c{word-spacing:27.473050px;}
.ws5f{word-spacing:27.544781px;}
.ws52{word-spacing:27.616512px;}
.ws1a{word-spacing:27.688243px;}
.ws18{word-spacing:27.759974px;}
.wse0{word-spacing:27.831706px;}
.wsa9{word-spacing:27.903437px;}
.wsc2{word-spacing:27.975168px;}
.wse1{word-spacing:28.046899px;}
.ws3e{word-spacing:28.118630px;}
.ws51{word-spacing:28.190362px;}
.wsc7{word-spacing:28.262093px;}
.ws9b{word-spacing:28.333824px;}
.ws112{word-spacing:28.405555px;}
.wsb7{word-spacing:28.477286px;}
.ws60{word-spacing:28.549018px;}
.ws13f{word-spacing:28.620749px;}
.ws116{word-spacing:28.692480px;}
.ws1e{word-spacing:28.764211px;}
.ws115{word-spacing:28.835942px;}
.ws7f{word-spacing:28.907674px;}
.ws4a{word-spacing:28.979405px;}
.wse3{word-spacing:29.051136px;}
.wsa1{word-spacing:29.122867px;}
.ws48{word-spacing:29.194598px;}
.ws4b{word-spacing:29.266330px;}
.ws7e{word-spacing:29.338061px;}
.ws2f{word-spacing:29.409792px;}
.wsaa{word-spacing:29.553254px;}
.ws65{word-spacing:29.624986px;}
.wsb3{word-spacing:29.696717px;}
.ws67{word-spacing:29.768448px;}
.wsb4{word-spacing:29.840179px;}
.wsd7{word-spacing:29.911910px;}
.wsc4{word-spacing:29.983642px;}
.ws122{word-spacing:30.127104px;}
.wsab{word-spacing:30.198835px;}
.ws144{word-spacing:30.270566px;}
.ws82{word-spacing:30.342298px;}
.ws11b{word-spacing:30.414029px;}
.wscd{word-spacing:30.557491px;}
.ws6e{word-spacing:30.629222px;}
.ws66{word-spacing:30.700954px;}
.ws13e{word-spacing:30.772685px;}
.wsd4{word-spacing:30.844416px;}
.wsd2{word-spacing:30.987878px;}
.ws3d{word-spacing:31.059610px;}
.ws111{word-spacing:31.203072px;}
.ws80{word-spacing:31.274803px;}
.ws140{word-spacing:31.346534px;}
.wsce{word-spacing:31.504255px;}
.ws39{word-spacing:31.590332px;}
.ws120{word-spacing:31.633459px;}
.ws6a{word-spacing:31.705190px;}
.ws46{word-spacing:31.776922px;}
.ws6b{word-spacing:31.848653px;}
.wsde{word-spacing:31.920384px;}
.ws74{word-spacing:31.992115px;}
.ws68{word-spacing:32.063846px;}
.ws8f{word-spacing:32.207309px;}
.wsc9{word-spacing:32.279040px;}
.wse9{word-spacing:32.350771px;}
.wsac{word-spacing:32.422502px;}
.ws121{word-spacing:32.565965px;}
.wsa8{word-spacing:32.637696px;}
.wseb{word-spacing:32.709427px;}
.ws5e{word-spacing:32.852890px;}
.ws117{word-spacing:32.924621px;}
.ws93{word-spacing:32.996352px;}
.wsc6{word-spacing:33.068083px;}
.ws70{word-spacing:33.139814px;}
.wse4{word-spacing:33.211546px;}
.ws90{word-spacing:33.426739px;}
.ws23{word-spacing:33.498470px;}
.wsba{word-spacing:33.570202px;}
.ws142{word-spacing:33.641933px;}
.ws9a{word-spacing:33.713664px;}
.ws138{word-spacing:33.857126px;}
.ws4f{word-spacing:34.000589px;}
.wsc1{word-spacing:34.072320px;}
.wse7{word-spacing:34.144051px;}
.ws1c{word-spacing:34.215782px;}
.ws141{word-spacing:34.287514px;}
.ws5d{word-spacing:34.359245px;}
.ws9d{word-spacing:34.502707px;}
.ws78{word-spacing:34.646170px;}
.ws77{word-spacing:34.717901px;}
.ws7b{word-spacing:34.789632px;}
.wsb5{word-spacing:35.076557px;}
.wsbf{word-spacing:35.363482px;}
.wsec{word-spacing:35.506944px;}
.ws11f{word-spacing:35.722138px;}
.wsa{word-spacing:35.865600px;}
.wsb6{word-spacing:36.295987px;}
.ws101{word-spacing:36.726374px;}
.ws145{word-spacing:36.869837px;}
.ws11{word-spacing:37.081972px;}
.ws50{word-spacing:37.156762px;}
.wsad{word-spacing:37.300224px;}
.ws6f{word-spacing:38.017536px;}
.ws110{word-spacing:38.663117px;}
.ws11d{word-spacing:41.245440px;}
.ws129{word-spacing:42.249677px;}
.ws8{word-spacing:42.608333px;}
.ws10d{word-spacing:43.325645px;}
.ws125{word-spacing:45.118925px;}
.wsfc{word-spacing:45.764506px;}
.wsfa{word-spacing:46.840474px;}
.ws12e{word-spacing:49.781453px;}
.ws135{word-spacing:50.068378px;}
.ws132{word-spacing:51.718195px;}
.ws13b{word-spacing:52.937626px;}
.ws118{word-spacing:53.009357px;}
.wsf5{word-spacing:53.654938px;}
.ws136{word-spacing:53.798400px;}
.ws130{word-spacing:55.950336px;}
.ws11e{word-spacing:56.954573px;}
.ws12f{word-spacing:57.456691px;}
.ws10a{word-spacing:57.600154px;}
.wsf9{word-spacing:57.887078px;}
.ws86{word-spacing:80.697600px;}
.ws16{word-spacing:94.684920px;}
.ws15{word-spacing:111.452500px;}
.ws146{word-spacing:166.057728px;}
.ws147{word-spacing:182.771098px;}
._16{margin-left:-41.747558px;}
._9{margin-left:-39.739085px;}
._6{margin-left:-37.802342px;}
._4{margin-left:-35.865600px;}
._1c{margin-left:-33.928858px;}
._5{margin-left:-31.992115px;}
._4e{margin-left:-18.865306px;}
._49{margin-left:-17.861069px;}
._1a{margin-left:-16.067789px;}
._a{margin-left:-15.063552px;}
._4b{margin-left:-13.987584px;}
._1d{margin-left:-12.624691px;}
._41{margin-left:-11.132668px;}
._4c{margin-left:-9.562758px;}
._34{margin-left:-8.490042px;}
._10{margin-left:-6.527539px;}
._2f{margin-left:-5.092915px;}
._1f{margin-left:-3.801754px;}
._1{margin-left:-2.295398px;}
._0{margin-left:-1.152900px;}
._14{width:1.004237px;}
._2{width:2.295398px;}
._2d{width:3.801754px;}
._2e{width:5.250709px;}
._1e{width:6.599270px;}
._3c{width:7.603580px;}
._38{width:8.607744px;}
._2a{width:9.970637px;}
._3a{width:11.625655px;}
._18{width:13.557197px;}
._4d{width:14.943772px;}
._20{width:16.426445px;}
._32{width:18.219725px;}
._47{width:19.295180px;}
._27{width:20.305130px;}
._26{width:22.313604px;}
._c{width:23.384371px;}
._12{width:25.034189px;}
._19{width:26.253619px;}
._13{width:28.405555px;}
._7{width:29.409792px;}
._15{width:30.629222px;}
._31{width:32.135578px;}
._17{width:33.570202px;}
._35{width:35.148288px;}
._36{width:36.511181px;}
._29{width:37.807543px;}
._4f{width:39.236161px;}
._4a{width:40.626739px;}
._f{width:42.608333px;}
._46{width:44.517976px;}
._40{width:45.811504px;}
._44{width:47.199130px;}
._48{width:48.977712px;}
._39{width:50.039714px;}
._21{width:51.072614px;}
._b{width:52.292045px;}
._43{width:53.368013px;}
._3b{width:54.725705px;}
._3f{width:55.801087px;}
._3d{width:57.193302px;}
._3e{width:58.368394px;}
._37{width:59.741688px;}
._45{width:61.109342px;}
._42{width:62.267516px;}
._8{width:63.482112px;}
._2c{width:64.916736px;}
._2b{width:67.785984px;}
._e{width:69.220608px;}
._28{width:71.013888px;}
._30{width:94.684920px;}
._d{width:99.275981px;}
._25{width:106.879488px;}
._33{width:111.452500px;}
._11{width:1208.957645px;}
._22{width:1462.814362px;}
._1b{width:1583.322778px;}
._24{width:1690.632653px;}
._3{width:1737.114470px;}
._23{width:1762.865971px;}
.fc2{color:transparent;}
.fc1{color:rgb(79,130,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:65.880000px;}
.fs6{font-size:71.731200px;}
.fs4{font-size:78.120000px;}
.fs3{font-size:83.880000px;}
.fs7{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs2{font-size:132.120000px;}
.fs1{font-size:240.120000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:134.794500px;}
.y54{bottom:179.626500px;}
.y1c2{bottom:180.606000px;}
.y27b{bottom:180.982500px;}
.y23f{bottom:182.703000px;}
.y250{bottom:182.712000px;}
.y86{bottom:183.603000px;}
.y1e4{bottom:184.393500px;}
.y2e6{bottom:185.260500px;}
.y20c{bottom:185.613000px;}
.y180{bottom:188.395500px;}
.yd6{bottom:191.574000px;}
.yc4{bottom:192.730500px;}
.y2d1{bottom:192.771000px;}
.y12e{bottom:196.374000px;}
.y222{bottom:198.513000px;}
.y97{bottom:198.529500px;}
.y2a4{bottom:200.644500px;}
.y118{bottom:202.864500px;}
.y1a1{bottom:203.185500px;}
.y53{bottom:206.517000px;}
.y1c1{bottom:207.496500px;}
.y27a{bottom:207.873000px;}
.y193{bottom:209.154000px;}
.y2b8{bottom:209.593500px;}
.y23e{bottom:209.595000px;}
.y24f{bottom:209.602500px;}
.y85{bottom:210.493500px;}
.y1e3{bottom:211.285500px;}
.y2e5{bottom:212.151000px;}
.y1d5{bottom:213.255000px;}
.y17f{bottom:215.286000px;}
.y29f{bottom:215.328000px;}
.y32f{bottom:218.103000px;}
.yc3{bottom:219.621000px;}
.y12d{bottom:223.264500px;}
.y221{bottom:225.403500px;}
.y96{bottom:225.420000px;}
.y20b{bottom:227.448000px;}
.y2a3{bottom:227.535000px;}
.y2d0{bottom:228.627000px;}
.y1a0{bottom:230.076000px;}
.y6d{bottom:233.407500px;}
.y1c0{bottom:234.387000px;}
.y279{bottom:234.763500px;}
.y192{bottom:236.046000px;}
.y23d{bottom:236.485500px;}
.y24e{bottom:236.493000px;}
.y2f6{bottom:237.376500px;}
.y84{bottom:237.384000px;}
.y2c2{bottom:237.606000px;}
.y117{bottom:238.722000px;}
.y2e4{bottom:239.041500px;}
.y292{bottom:239.508000px;}
.y1d4{bottom:240.145500px;}
.y17e{bottom:242.176500px;}
.y32e{bottom:244.993500px;}
.yc2{bottom:246.513000px;}
.y102{bottom:247.210500px;}
.y12c{bottom:250.156500px;}
.y52{bottom:251.460000px;}
.yee{bottom:252.150000px;}
.y220{bottom:252.295500px;}
.y95{bottom:252.312000px;}
.y2a2{bottom:254.425500px;}
.y165{bottom:254.449500px;}
.y2cf{bottom:255.519000px;}
.y19f{bottom:256.966500px;}
.y29{bottom:260.131500px;}
.y6c{bottom:260.299500px;}
.y1bf{bottom:261.277500px;}
.y278{bottom:261.654000px;}
.y1e2{bottom:262.086000px;}
.y191{bottom:262.936500px;}
.y23c{bottom:263.376000px;}
.y24d{bottom:263.383500px;}
.y2f5{bottom:264.267000px;}
.y83{bottom:264.274500px;}
.y29e{bottom:265.506000px;}
.y116{bottom:265.612500px;}
.y1d3{bottom:267.036000px;}
.y17d{bottom:269.067000px;}
.y1f8{bottom:269.152500px;}
.y20a{bottom:269.281500px;}
.yc1{bottom:273.403500px;}
.y101{bottom:274.102500px;}
.y2e3{bottom:274.899000px;}
.yd5{bottom:275.242500px;}
.yf{bottom:277.770450px;}
.y291{bottom:278.599500px;}
.y21f{bottom:279.186000px;}
.y94{bottom:279.202500px;}
.y2a1{bottom:281.317500px;}
.y1f7{bottom:282.174000px;}
.y2ce{bottom:282.409500px;}
.y19e{bottom:283.858500px;}
.y12b{bottom:286.012500px;}
.y32d{bottom:286.828500px;}
.y6b{bottom:287.190000px;}
.y1be{bottom:288.168000px;}
.y277{bottom:288.544500px;}
.y1e1{bottom:288.976500px;}
.y190{bottom:289.827000px;}
.y23b{bottom:290.266500px;}
.y24c{bottom:290.275500px;}
.y2f4{bottom:291.157500px;}
.y82{bottom:291.166500px;}
.y29d{bottom:292.396500px;}
.y143{bottom:293.890500px;}
.y28{bottom:295.989000px;}
.y164{bottom:296.284500px;}
.yc0{bottom:300.294000px;}
.y1d2{bottom:300.664500px;}
.y100{bottom:300.993000px;}
.y1b5{bottom:301.300500px;}
.y115{bottom:301.470000px;}
.y2e2{bottom:301.789500px;}
.y290{bottom:305.490000px;}
.y21e{bottom:306.076500px;}
.y93{bottom:306.093000px;}
.y2a0{bottom:308.208000px;}
.y1f6{bottom:309.066000px;}
.y2cd{bottom:309.300000px;}
.y304{bottom:309.426000px;}
.yed{bottom:310.362000px;}
.ya9{bottom:310.723500px;}
.y19d{bottom:310.749000px;}
.y17c{bottom:310.902000px;}
.y209{bottom:311.116500px;}
.y12a{bottom:312.904500px;}
.y32c{bottom:313.719000px;}
.y6a{bottom:314.080500px;}
.y1bd{bottom:315.060000px;}
.y51{bottom:315.112500px;}
.y276{bottom:315.436500px;}
.y1e0{bottom:315.868500px;}
.y18f{bottom:316.717500px;}
.yd4{bottom:317.077500px;}
.y23a{bottom:317.157000px;}
.y265{bottom:317.166000px;}
.y2f3{bottom:318.048000px;}
.y81{bottom:318.057000px;}
.y29c{bottom:319.287000px;}
.y142{bottom:320.781000px;}
.ybf{bottom:327.184500px;}
.y1d1{bottom:327.555000px;}
.yff{bottom:327.883500px;}
.y1b4{bottom:328.191000px;}
.y114{bottom:328.360500px;}
.y2e1{bottom:328.680000px;}
.y27{bottom:331.846500px;}
.y28f{bottom:332.380500px;}
.y21d{bottom:332.967000px;}
.y24b{bottom:335.098500px;}
.y1f5{bottom:335.956500px;}
.y2cc{bottom:336.190500px;}
.y303{bottom:336.316500px;}
.yec{bottom:337.252500px;}
.ya8{bottom:337.614000px;}
.y19c{bottom:337.639500px;}
.y17b{bottom:337.794000px;}
.y163{bottom:338.119500px;}
.y129{bottom:339.795000px;}
.y69{bottom:340.971000px;}
.y1bc{bottom:341.950500px;}
.y50{bottom:342.003000px;}
.y1df{bottom:342.759000px;}
.y18e{bottom:343.609500px;}
.y239{bottom:344.049000px;}
.y264{bottom:344.056500px;}
.y2f2{bottom:344.938500px;}
.y80{bottom:344.947500px;}
.y141{bottom:347.671500px;}
.y92{bottom:347.928000px;}
.y275{bottom:351.292500px;}
.ybe{bottom:354.076500px;}
.y1d0{bottom:354.445500px;}
.yfe{bottom:354.774000px;}
.y1b3{bottom:355.083000px;}
.y113{bottom:355.252500px;}
.y32b{bottom:355.554000px;}
.yd3{bottom:358.912500px;}
.y28e{bottom:359.271000px;}
.y21c{bottom:359.859000px;}
.y29b{bottom:360.966000px;}
.y208{bottom:361.918500px;}
.y24a{bottom:361.989000px;}
.y1f4{bottom:362.847000px;}
.y2cb{bottom:363.082500px;}
.y302{bottom:363.207000px;}
.yeb{bottom:364.143000px;}
.y2e0{bottom:364.537500px;}
.y17a{bottom:364.684500px;}
.y128{bottom:366.685500px;}
.ye{bottom:367.140837px;}
.y26{bottom:367.704000px;}
.y68{bottom:367.863000px;}
.y4f{bottom:368.895000px;}
.y238{bottom:370.939500px;}
.y263{bottom:370.947000px;}
.y2f1{bottom:371.830500px;}
.y7f{bottom:371.838000px;}
.y19b{bottom:373.497000px;}
.y91{bottom:374.818500px;}
.y1bb{bottom:377.808000px;}
.y274{bottom:378.184500px;}
.ya7{bottom:379.449000px;}
.y162{bottom:379.954500px;}
.ybd{bottom:380.967000px;}
.y1cf{bottom:381.336000px;}
.yfd{bottom:381.666000px;}
.y1b2{bottom:381.973500px;}
.y32a{bottom:382.444500px;}
.y28d{bottom:386.161500px;}
.y21b{bottom:386.749500px;}
.y29a{bottom:387.856500px;}
.y207{bottom:388.809000px;}
.y249{bottom:388.881000px;}
.y318{bottom:389.932500px;}
.y2ca{bottom:389.973000px;}
.y301{bottom:390.097500px;}
.y18d{bottom:391.045500px;}
.y2df{bottom:391.428000px;}
.y179{bottom:391.575000px;}
.y140{bottom:392.841000px;}
.y1de{bottom:393.559500px;}
.y4e{bottom:395.785500px;}
.y2b7{bottom:397.830000px;}
.y262{bottom:397.839000px;}
.yea{bottom:398.197500px;}
.y1f3{bottom:398.704500px;}
.y7e{bottom:398.728500px;}
.y19a{bottom:400.387500px;}
.yd2{bottom:400.747500px;}
.y90{bottom:401.710500px;}
.y127{bottom:402.543000px;}
.y155{bottom:402.667500px;}
.y112{bottom:402.688500px;}
.y25{bottom:403.561500px;}
.y1ba{bottom:404.698500px;}
.y273{bottom:405.075000px;}
.ya6{bottom:406.341000px;}
.y237{bottom:406.797000px;}
.y2f0{bottom:407.688000px;}
.ybc{bottom:407.857500px;}
.y1ce{bottom:408.226500px;}
.yfc{bottom:408.556500px;}
.y1b1{bottom:408.864000px;}
.yd{bottom:409.980450px;}
.y28c{bottom:413.053500px;}
.y67{bottom:413.068500px;}
.y21a{bottom:413.640000px;}
.y206{bottom:415.699500px;}
.y248{bottom:415.771500px;}
.y317{bottom:416.824500px;}
.y300{bottom:416.988000px;}
.y2de{bottom:418.320000px;}
.y1dd{bottom:420.451500px;}
.y161{bottom:421.789500px;}
.y329{bottom:424.279500px;}
.y2b6{bottom:424.720500px;}
.y261{bottom:424.729500px;}
.ye9{bottom:425.088000px;}
.y1f2{bottom:425.595000px;}
.y25d{bottom:425.620500px;}
.y2c9{bottom:425.830500px;}
.y199{bottom:427.278000px;}
.y8f{bottom:428.601000px;}
.y4d{bottom:429.148500px;}
.y126{bottom:429.433500px;}
.y299{bottom:429.535500px;}
.y154{bottom:429.558000px;}
.y1b9{bottom:431.589000px;}
.y272{bottom:431.965500px;}
.ya5{bottom:433.231500px;}
.y178{bottom:433.410000px;}
.y2d2{bottom:433.687500px;}
.y2ef{bottom:434.578500px;}
.y7d{bottom:434.586000px;}
.ybb{bottom:434.748000px;}
.y1cd{bottom:435.118500px;}
.y1b0{bottom:435.754500px;}
.y24{bottom:439.417500px;}
.y28b{bottom:439.944000px;}
.y219{bottom:440.530500px;}
.y205{bottom:442.590000px;}
.y236{bottom:442.654500px;}
.y247{bottom:442.662000px;}
.y316{bottom:443.715000px;}
.y13f{bottom:450.349500px;}
.y328{bottom:451.170000px;}
.yc{bottom:451.200600px;}
.yd1{bottom:451.548000px;}
.y260{bottom:451.620000px;}
.ye8{bottom:451.980000px;}
.y1f1{bottom:452.485500px;}
.y25c{bottom:452.511000px;}
.y2c8{bottom:452.721000px;}
.y198{bottom:454.170000px;}
.y2dd{bottom:454.176000px;}
.yfb{bottom:454.792500px;}
.y8e{bottom:455.491500px;}
.y4c{bottom:456.039000px;}
.y125{bottom:456.324000px;}
.y153{bottom:456.448500px;}
.y18c{bottom:458.479500px;}
.y271{bottom:458.856000px;}
.ya4{bottom:460.122000px;}
.y177{bottom:460.300500px;}
.y2b5{bottom:460.578000px;}
.y2ee{bottom:461.469000px;}
.y7c{bottom:461.478000px;}
.y1cc{bottom:462.009000px;}
.y1dc{bottom:462.285000px;}
.y1af{bottom:462.646500px;}
.y111{bottom:463.632000px;}
.y28a{bottom:466.834500px;}
.y218{bottom:467.422500px;}
.y310{bottom:467.601000px;}
.y204{bottom:469.482000px;}
.y235{bottom:469.545000px;}
.y246{bottom:469.552500px;}
.yba{bottom:470.605500px;}
.y160{bottom:472.590000px;}
.y305{bottom:473.316000px;}
.yb{bottom:473.970450px;}
.y23{bottom:475.275000px;}
.y66{bottom:477.123000px;}
.y13e{bottom:477.240000px;}
.y2ff{bottom:477.253500px;}
.y327{bottom:478.062000px;}
.yd0{bottom:478.440000px;}
.y25f{bottom:478.510500px;}
.y1f0{bottom:479.377500px;}
.y25b{bottom:479.401500px;}
.y2c7{bottom:479.611500px;}
.y298{bottom:479.713500px;}
.y197{bottom:481.060500px;}
.y2dc{bottom:481.068000px;}
.yfa{bottom:481.684500px;}
.y8d{bottom:482.382000px;}
.y4b{bottom:482.929500px;}
.y124{bottom:483.216000px;}
.y18b{bottom:485.371500px;}
.y270{bottom:485.748000px;}
.ye7{bottom:486.034500px;}
.y176{bottom:487.191000px;}
.y2ed{bottom:488.359500px;}
.y7b{bottom:488.368500px;}
.y1cb{bottom:488.899500px;}
.y1db{bottom:489.177000px;}
.y1ae{bottom:489.537000px;}
.y110{bottom:490.524000px;}
.y289{bottom:493.725000px;}
.y217{bottom:494.313000px;}
.y30f{bottom:494.491500px;}
.y203{bottom:496.372500px;}
.y234{bottom:496.435500px;}
.y245{bottom:496.444500px;}
.yb9{bottom:497.496000px;}
.y37{bottom:498.418500px;}
.ya3{bottom:501.957000px;}
.y152{bottom:502.831500px;}
.y65{bottom:504.015000px;}
.y25e{bottom:505.402500px;}
.y1ef{bottom:506.268000px;}
.y25a{bottom:506.292000px;}
.y315{bottom:506.463000px;}
.y2c6{bottom:506.502000px;}
.y297{bottom:506.604000px;}
.y196{bottom:507.951000px;}
.y2db{bottom:507.958500px;}
.y8c{bottom:509.272500px;}
.y4a{bottom:509.821500px;}
.y13d{bottom:510.832500px;}
.y22{bottom:511.132500px;}
.y26f{bottom:512.638500px;}
.ye6{bottom:512.925000px;}
.ya{bottom:513.751467px;}
.y175{bottom:514.083000px;}
.ycf{bottom:514.297500px;}
.y2ec{bottom:515.250000px;}
.y7a{bottom:515.259000px;}
.y2fe{bottom:515.430000px;}
.y1da{bottom:516.067500px;}
.yf9{bottom:516.400500px;}
.y1ad{bottom:516.427500px;}
.y326{bottom:519.895500px;}
.y288{bottom:520.617000px;}
.y30e{bottom:521.382000px;}
.y1ca{bottom:522.528000px;}
.y202{bottom:523.263000px;}
.y2b4{bottom:523.326000px;}
.y244{bottom:523.335000px;}
.y15f{bottom:523.392000px;}
.yb8{bottom:524.388000px;}
.y10f{bottom:526.380000px;}
.ya2{bottom:528.847500px;}
.y123{bottom:530.652000px;}
.y233{bottom:532.293000px;}
.y1ee{bottom:533.158500px;}
.y259{bottom:533.184000px;}
.y314{bottom:533.353500px;}
.y195{bottom:534.841500px;}
.y8b{bottom:536.164500px;}
.y18a{bottom:536.172000px;}
.y9{bottom:536.700765px;}
.y2d8{bottom:536.910000px;}
.y64{bottom:537.642000px;}
.y13c{bottom:537.723000px;}
.y2d5{bottom:538.035000px;}
.y26e{bottom:539.529000px;}
.ye5{bottom:539.815500px;}
.yce{bottom:541.188000px;}
.y2eb{bottom:542.142000px;}
.y79{bottom:542.149500px;}
.y296{bottom:542.305500px;}
.y2fd{bottom:542.320500px;}
.y2c5{bottom:542.359500px;}
.y49{bottom:543.184500px;}
.yf8{bottom:543.291000px;}
.y1ac{bottom:543.318000px;}
.y216{bottom:545.113500px;}
.y325{bottom:546.787500px;}
.y21{bottom:546.990000px;}
.y30d{bottom:548.272500px;}
.y1c9{bottom:549.418500px;}
.y201{bottom:550.153500px;}
.y2b3{bottom:550.216500px;}
.y243{bottom:550.225500px;}
.y15e{bottom:550.282500px;}
.yb7{bottom:551.278500px;}
.y36{bottom:551.830500px;}
.y10e{bottom:553.272000px;}
.y287{bottom:553.608000px;}
.y2da{bottom:555.394500px;}
.y174{bottom:555.918000px;}
.y1d9{bottom:557.902500px;}
.y232{bottom:559.183500px;}
.y1ed{bottom:560.049000px;}
.y258{bottom:560.074500px;}
.y313{bottom:560.244000px;}
.y8{bottom:561.990450px;}
.y151{bottom:562.180500px;}
.y189{bottom:563.062500px;}
.y2d7{bottom:563.800500px;}
.y63{bottom:564.532500px;}
.y13b{bottom:564.613500px;}
.y2d4{bottom:564.925500px;}
.y26d{bottom:566.419500px;}
.ye4{bottom:566.706000px;}
.ycd{bottom:568.078500px;}
.y2ea{bottom:569.032500px;}
.y78{bottom:569.040000px;}
.y295{bottom:569.196000px;}
.y2fc{bottom:569.211000px;}
.y2c4{bottom:569.250000px;}
.y48{bottom:570.075000px;}
.yf7{bottom:570.181500px;}
.ya1{bottom:570.682500px;}
.y215{bottom:572.004000px;}
.y30c{bottom:575.164500px;}
.y2b2{bottom:577.108500px;}
.y242{bottom:577.116000px;}
.y286{bottom:580.498500px;}
.y194{bottom:582.277500px;}
.y173{bottom:582.808500px;}
.y20{bottom:582.847500px;}
.y1ab{bottom:584.320500px;}
.y1d8{bottom:584.793000px;}
.y231{bottom:586.074000px;}
.y1ec{bottom:586.941000px;}
.y8a{bottom:586.965000px;}
.yb6{bottom:587.136000px;}
.y324{bottom:588.622500px;}
.y150{bottom:589.071000px;}
.y10d{bottom:589.128000px;}
.y188{bottom:589.954500px;}
.y7{bottom:590.790450px;}
.y62{bottom:591.424500px;}
.y13a{bottom:591.504000px;}
.y15d{bottom:592.117500px;}
.y26c{bottom:593.311500px;}
.ye3{bottom:593.598000px;}
.y1c8{bottom:594.625500px;}
.ycc{bottom:594.969000px;}
.y2e9{bottom:595.923000px;}
.y77{bottom:595.932000px;}
.y2fb{bottom:596.101500px;}
.y47{bottom:596.965500px;}
.yf6{bottom:597.072000px;}
.ya0{bottom:597.573000px;}
.y200{bottom:597.589500px;}
.y122{bottom:598.086000px;}
.y2b1{bottom:603.999000px;}
.y241{bottom:604.006500px;}
.y294{bottom:604.897500px;}
.y35{bottom:605.242500px;}
.y2c1{bottom:609.097500px;}
.y1aa{bottom:611.211000px;}
.y1d7{bottom:611.683500px;}
.y230{bottom:612.966000px;}
.y214{bottom:613.839000px;}
.y89{bottom:613.855500px;}
.yb5{bottom:614.026500px;}
.y323{bottom:615.513000px;}
.y14f{bottom:615.961500px;}
.y10c{bottom:616.020000px;}
.y187{bottom:616.845000px;}
.y30b{bottom:616.998000px;}
.y139{bottom:618.394500px;}
.y1f{bottom:618.705000px;}
.y15c{bottom:619.008000px;}
.y285{bottom:619.588500px;}
.y26b{bottom:620.202000px;}
.ycb{bottom:621.859500px;}
.y2e8{bottom:622.813500px;}
.y76{bottom:622.822500px;}
.y2fa{bottom:622.993500px;}
.y46{bottom:623.857500px;}
.yf5{bottom:623.964000px;}
.y2d6{bottom:624.066000px;}
.y9f{bottom:624.465000px;}
.y121{bottom:624.978000px;}
.y61{bottom:625.051500px;}
.y6{bottom:625.170450px;}
.y2d3{bottom:625.191000px;}
.y2d9{bottom:626.316000px;}
.ye2{bottom:627.652500px;}
.y2c3{bottom:629.515500px;}
.y2b0{bottom:630.889500px;}
.y240{bottom:630.898500px;}
.y293{bottom:631.789500px;}
.y172{bottom:633.609000px;}
.y2c0{bottom:635.988000px;}
.y3b{bottom:636.259500px;}
.y1eb{bottom:637.741500px;}
.y1a9{bottom:638.101500px;}
.y213{bottom:640.731000px;}
.y88{bottom:640.747500px;}
.yb4{bottom:640.917000px;}
.y14e{bottom:642.852000px;}
.y10b{bottom:642.910500px;}
.y186{bottom:643.735500px;}
.y284{bottom:646.479000px;}
.y26a{bottom:647.092500px;}
.y2e7{bottom:649.705500px;}
.y75{bottom:649.713000px;}
.y2f9{bottom:649.884000px;}
.y45{bottom:650.748000px;}
.yf4{bottom:650.854500px;}
.y120{bottom:651.868500px;}
.y60{bottom:651.942000px;}
.ye1{bottom:654.543000px;}
.y1e{bottom:654.561000px;}
.y322{bottom:657.348000px;}
.y2af{bottom:657.780000px;}
.y22f{bottom:657.789000px;}
.y34{bottom:658.654500px;}
.y1c7{bottom:658.680000px;}
.y30a{bottom:658.833000px;}
.y15b{bottom:660.843000px;}
.y2bf{bottom:662.878500px;}
.y1d6{bottom:662.991000px;}
.y138{bottom:663.565500px;}
.y1ea{bottom:664.632000px;}
.y1a8{bottom:664.992000px;}
.y1ff{bottom:665.025000px;}
.y9e{bottom:666.298500px;}
.y212{bottom:667.621500px;}
.y257{bottom:667.638000px;}
.yb3{bottom:667.807500px;}
.yca{bottom:669.295500px;}
.y171{bottom:669.466500px;}
.y14d{bottom:669.742500px;}
.y10a{bottom:669.801000px;}
.y185{bottom:670.626000px;}
.y3a{bottom:672.117000px;}
.y283{bottom:673.371000px;}
.y74{bottom:676.603500px;}
.y2f8{bottom:676.774500px;}
.y44{bottom:677.638500px;}
.y5{bottom:677.735004px;}
.yf3{bottom:677.745000px;}
.y11f{bottom:678.759000px;}
.y5f{bottom:678.834000px;}
.ye0{bottom:681.433500px;}
.y269{bottom:682.950000px;}
.y321{bottom:684.238500px;}
.y22e{bottom:684.679500px;}
.y1c6{bottom:685.570500px;}
.y15a{bottom:687.733500px;}
.y1d{bottom:690.418500px;}
.y1e9{bottom:691.524000px;}
.y1a7{bottom:691.884000px;}
.y1fe{bottom:691.915500px;}
.y9d{bottom:693.190500px;}
.y2ae{bottom:693.637500px;}
.y33{bottom:694.512000px;}
.y256{bottom:694.528500px;}
.yb2{bottom:694.699500px;}
.y170{bottom:696.357000px;}
.y14c{bottom:696.634500px;}
.y184{bottom:697.518000px;}
.y2be{bottom:697.974000px;}
.y282{bottom:700.261500px;}
.y309{bottom:700.668000px;}
.y73{bottom:703.495500px;}
.y2f7{bottom:703.665000px;}
.y43{bottom:704.529000px;}
.yf2{bottom:704.635500px;}
.y11e{bottom:705.649500px;}
.y109{bottom:705.658500px;}
.y5e{bottom:705.724500px;}
.y39{bottom:707.973000px;}
.ydf{bottom:708.324000px;}
.y268{bottom:709.840500px;}
.y22d{bottom:711.570000px;}
.y1c5{bottom:712.461000px;}
.yc9{bottom:716.731500px;}
.y1a6{bottom:718.774500px;}
.y1fd{bottom:718.807500px;}
.y2ad{bottom:720.528000px;}
.y137{bottom:721.072500px;}
.y255{bottom:721.419000px;}
.y16f{bottom:723.249000px;}
.y14b{bottom:723.525000px;}
.y183{bottom:724.408500px;}
.y2bd{bottom:724.866000px;}
.y320{bottom:726.073500px;}
.y1c{bottom:726.276000px;}
.y281{bottom:727.152000px;}
.y308{bottom:727.558500px;}
.y32{bottom:730.369500px;}
.y72{bottom:730.386000px;}
.yb1{bottom:730.555500px;}
.yf1{bottom:731.527500px;}
.y108{bottom:732.549000px;}
.y5d{bottom:732.615000px;}
.y1e8{bottom:733.357500px;}
.y211{bottom:736.347000px;}
.y267{bottom:736.731000px;}
.y42{bottom:737.893500px;}
.y22c{bottom:738.462000px;}
.y159{bottom:738.535500px;}
.y1c4{bottom:739.351500px;}
.yde{bottom:742.380000px;}
.y38{bottom:743.830500px;}
.y9c{bottom:743.991000px;}
.y1a5{bottom:745.665000px;}
.y1fc{bottom:745.698000px;}
.y4{bottom:746.763501px;}
.y2ac{bottom:747.420000px;}
.y136{bottom:747.964500px;}
.y254{bottom:748.311000px;}
.y14a{bottom:750.415500px;}
.y182{bottom:751.299000px;}
.y2bc{bottom:751.756500px;}
.y31f{bottom:752.964000px;}
.y11d{bottom:753.085500px;}
.y280{bottom:754.042500px;}
.y307{bottom:754.450500px;}
.y71{bottom:757.276500px;}
.yb0{bottom:757.447500px;}
.yf0{bottom:758.418000px;}
.y16e{bottom:759.105000px;}
.y107{bottom:759.439500px;}
.y5c{bottom:759.505500px;}
.y1e7{bottom:760.249500px;}
.y210{bottom:763.237500px;}
.y266{bottom:763.623000px;}
.y41{bottom:764.784000px;}
.y22b{bottom:765.352500px;}
.y158{bottom:765.426000px;}
.y31{bottom:766.227000px;}
.y1c3{bottom:766.243500px;}
.ydd{bottom:769.270500px;}
.y9b{bottom:770.881500px;}
.y1a4{bottom:772.555500px;}
.y1fb{bottom:772.588500px;}
.y2ab{bottom:774.310500px;}
.y135{bottom:774.855000px;}
.y253{bottom:775.201500px;}
.y149{bottom:777.306000px;}
.y181{bottom:778.189500px;}
.y2bb{bottom:778.647000px;}
.y1b{bottom:779.688000px;}
.y31e{bottom:779.854500px;}
.y27f{bottom:780.934500px;}
.y70{bottom:784.167000px;}
.yaf{bottom:784.338000px;}
.y16d{bottom:785.997000px;}
.y5b{bottom:786.397500px;}
.y16b{bottom:790.513500px;}
.y40{bottom:791.674500px;}
.y22a{bottom:792.243000px;}
.y157{bottom:792.316500px;}
.yef{bottom:793.134000px;}
.y312{bottom:793.305000px;}
.ydc{bottom:796.161000px;}
.y306{bottom:796.285500px;}
.y1a3{bottom:799.447500px;}
.y1fa{bottom:799.479000px;}
.y2aa{bottom:801.201000px;}
.y134{bottom:801.745500px;}
.y30{bottom:802.083000px;}
.y252{bottom:802.092000px;}
.y148{bottom:804.198000px;}
.y1b8{bottom:805.081500px;}
.y2ba{bottom:805.537500px;}
.y31d{bottom:806.745000px;}
.y106{bottom:806.875500px;}
.y27e{bottom:807.825000px;}
.y6f{bottom:811.059000px;}
.yae{bottom:811.228500px;}
.y5a{bottom:813.288000px;}
.y11c{bottom:814.030500px;}
.y20f{bottom:814.039500px;}
.y1a{bottom:815.545500px;}
.y3{bottom:815.791998px;}
.y16a{bottom:817.404000px;}
.y9a{bottom:818.317500px;}
.y229{bottom:819.133500px;}
.y87{bottom:820.024500px;}
.y311{bottom:820.195500px;}
.ydb{bottom:823.051500px;}
.y3f{bottom:825.037500px;}
.y1a2{bottom:826.338000px;}
.y1f9{bottom:826.371000px;}
.y2a9{bottom:828.091500px;}
.y133{bottom:828.636000px;}
.y251{bottom:828.982500px;}
.y1b7{bottom:831.972000px;}
.y16c{bottom:833.433000px;}
.y31c{bottom:833.637000px;}
.y27d{bottom:834.715500px;}
.y2f{bottom:837.940500px;}
.yc8{bottom:837.949500px;}
.y147{bottom:839.002500px;}
.y156{bottom:839.752500px;}
.y59{bottom:840.178500px;}
.y1e6{bottom:843.918000px;}
.y228{bottom:846.025500px;}
.y6e{bottom:846.915000px;}
.yad{bottom:847.086000px;}
.y20e{bottom:849.895500px;}
.yda{bottom:849.942000px;}
.y19{bottom:851.403000px;}
.y3e{bottom:851.928000px;}
.y2b9{bottom:852.211500px;}
.y169{bottom:853.261500px;}
.y2a8{bottom:854.983500px;}
.y132{bottom:855.528000px;}
.y11b{bottom:855.865500px;}
.y1b6{bottom:858.862500px;}
.yc7{bottom:864.840000px;}
.y146{bottom:865.893000px;}
.y27c{bottom:867.706500px;}
.y105{bottom:867.820500px;}
.y1e5{bottom:870.810000px;}
.y227{bottom:872.916000px;}
.y2e{bottom:873.798000px;}
.y58{bottom:873.807000px;}
.yac{bottom:873.976500px;}
.y31b{bottom:875.472000px;}
.y20d{bottom:876.787500px;}
.y3d{bottom:878.820000px;}
.y168{bottom:880.152000px;}
.y2a7{bottom:881.874000px;}
.y131{bottom:882.418500px;}
.yd9{bottom:883.998000px;}
.y2{bottom:884.730450px;}
.y99{bottom:885.753000px;}
.y18{bottom:887.260500px;}
.yc6{bottom:891.730500px;}
.y145{bottom:892.783500px;}
.y11a{bottom:897.700500px;}
.y226{bottom:899.806500px;}
.y57{bottom:900.697500px;}
.yab{bottom:900.867000px;}
.y31a{bottom:902.362500px;}
.y104{bottom:903.678000px;}
.y167{bottom:907.042500px;}
.y2a6{bottom:908.764500px;}
.y130{bottom:909.309000px;}
.y2d{bottom:909.655500px;}
.yd8{bottom:910.888500px;}
.y98{bottom:912.643500px;}
.yc5{bottom:918.622500px;}
.y144{bottom:919.674000px;}
.y17{bottom:923.116500px;}
.y3c{bottom:923.761500px;}
.y225{bottom:926.697000px;}
.y56{bottom:927.588000px;}
.yaa{bottom:927.759000px;}
.y319{bottom:929.253000px;}
.y103{bottom:930.568500px;}
.y166{bottom:933.934500px;}
.y2a5{bottom:935.655000px;}
.y12f{bottom:936.199500px;}
.yd7{bottom:937.779000px;}
.y119{bottom:939.535500px;}
.y2c{bottom:945.513000px;}
.y15{bottom:950.703366px;}
.y224{bottom:953.589000px;}
.y55{bottom:954.478500px;}
.y16{bottom:976.728000px;}
.y223{bottom:980.479500px;}
.y2b{bottom:981.370500px;}
.y14{bottom:988.413078px;}
.y13{bottom:1026.572421px;}
.y12{bottom:1064.731764px;}
.y11{bottom:1102.891107px;}
.y10{bottom:1141.050450px;}
.y1{bottom:1141.500450px;}
.hc{height:33.355008px;}
.h7{height:43.909277px;}
.h1{height:64.657617px;}
.h5{height:66.394687px;}
.ha{height:68.144640px;}
.h6{height:78.730313px;}
.hb{height:81.773340px;}
.h4{height:84.535312px;}
.h9{height:98.127780px;}
.h3{height:129.668555px;}
.h2{height:235.664648px;}
.h8{height:1188.000000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:127.620882px;}
.x4{left:144.093474px;}
.x3{left:154.892871px;}
.x65{left:162.037500px;}
.x3d{left:164.200500px;}
.xc{left:166.281000px;}
.x43{left:167.328000px;}
.x59{left:168.789000px;}
.x75{left:177.336000px;}
.x5{left:179.913375px;}
.x29{left:187.746000px;}
.x7c{left:189.678000px;}
.xd{left:192.613500px;}
.x79{left:195.325500px;}
.x3e{left:197.863500px;}
.x5a{left:199.323000px;}
.xf{left:210.178500px;}
.x1d{left:212.206500px;}
.x48{left:220.683000px;}
.x20{left:225.799500px;}
.x66{left:230.358000px;}
.x2{left:233.190000px;}
.x18{left:234.193500px;}
.x14{left:235.606500px;}
.x12{left:238.206000px;}
.x64{left:241.134000px;}
.x22{left:244.782000px;}
.x3f{left:248.464500px;}
.x42{left:249.862500px;}
.x76{left:251.068500px;}
.x4a{left:252.394500px;}
.x4f{left:253.645500px;}
.x10{left:259.341000px;}
.x49{left:263.907000px;}
.x6{left:272.880000px;}
.x3c{left:280.393500px;}
.x4b{left:281.943000px;}
.x5b{left:283.261500px;}
.x85{left:290.122500px;}
.x7d{left:293.202000px;}
.x3b{left:294.486000px;}
.x86{left:303.733500px;}
.x6c{left:305.193000px;}
.x83{left:312.900000px;}
.x15{left:319.879500px;}
.x81{left:321.721500px;}
.x7a{left:323.785500px;}
.x82{left:324.888000px;}
.x67{left:326.259000px;}
.x13{left:328.065000px;}
.x40{left:332.728500px;}
.x2b{left:333.937500px;}
.x7b{left:334.951500px;}
.x50{left:336.588000px;}
.x5d{left:337.617000px;}
.x8b{left:339.523500px;}
.x7{left:342.090000px;}
.x8e{left:343.903500px;}
.x2c{left:345.142500px;}
.x11{left:346.245000px;}
.x23{left:350.374500px;}
.x77{left:355.032000px;}
.x84{left:357.865500px;}
.x54{left:364.063500px;}
.x5c{left:365.917500px;}
.x63{left:367.341000px;}
.x21{left:377.037000px;}
.x51{left:378.795000px;}
.x6d{left:385.006500px;}
.x52{left:389.211000px;}
.x8d{left:390.837000px;}
.x78{left:399.151500px;}
.x8{left:408.870837px;}
.x2d{left:414.354000px;}
.x19{left:417.864000px;}
.x87{left:419.892000px;}
.x55{left:421.717500px;}
.x2e{left:428.133000px;}
.x53{left:432.190500px;}
.x88{left:434.250000px;}
.x1{left:446.490000px;}
.x2a{left:448.911000px;}
.x57{left:450.181500px;}
.x41{left:451.260000px;}
.xe{left:453.300000px;}
.x28{left:467.542500px;}
.x26{left:479.466000px;}
.x44{left:481.428000px;}
.x7e{left:483.090000px;}
.x2f{left:489.804000px;}
.x37{left:491.281500px;}
.x1a{left:494.970000px;}
.x71{left:497.934000px;}
.x30{left:499.609500px;}
.x4c{left:502.494000px;}
.x5e{left:506.263500px;}
.x46{left:513.027000px;}
.x45{left:525.160500px;}
.x31{left:527.634000px;}
.x72{left:531.657000px;}
.x62{left:534.054000px;}
.x5f{left:535.696500px;}
.x8c{left:537.064500px;}
.x38{left:538.134000px;}
.x32{left:542.677500px;}
.x58{left:544.887000px;}
.x4d{left:546.690000px;}
.xb{left:553.320090px;}
.x73{left:555.159000px;}
.x47{left:557.223000px;}
.xa{left:558.990000px;}
.x68{left:562.843500px;}
.x1b{left:566.541000px;}
.x6e{left:573.376500px;}
.x33{left:576.058500px;}
.x69{left:577.347000px;}
.x4e{left:588.213000px;}
.x34{left:591.205500px;}
.x27{left:592.461000px;}
.x6a{left:596.566500px;}
.x74{left:599.355000px;}
.x39{left:604.822500px;}
.x6f{left:607.099500px;}
.x80{left:609.279000px;}
.x6b{left:611.068500px;}
.x89{left:619.812000px;}
.x70{left:621.601500px;}
.x8f{left:630.547500px;}
.x35{left:633.616500px;}
.x60{left:637.990500px;}
.x1e{left:639.694500px;}
.x36{left:645.735000px;}
.x91{left:648.121500px;}
.x7f{left:649.956000px;}
.x61{left:660.877500px;}
.x3a{left:666.315000px;}
.x8a{left:672.007500px;}
.x16{left:682.447500px;}
.x1f{left:688.629000px;}
.x24{left:692.125500px;}
.x56{left:702.621000px;}
.x1c{left:707.550000px;}
.x25{left:731.541000px;}
.x90{left:737.295000px;}
.x17{left:744.219000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.064032pt;}
.ls9{letter-spacing:-0.062496pt;}
.ls8{letter-spacing:-0.058720pt;}
.ls5{letter-spacing:-0.042688pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021344pt;}
.lsa{letter-spacing:0.029280pt;}
.ls0{letter-spacing:0.037280pt;}
.ls2{letter-spacing:0.052192pt;}
.ls1{letter-spacing:0.146400pt;}
.ls17{letter-spacing:2.805487pt;}
.ls13{letter-spacing:4.016947pt;}
.lsf{letter-spacing:4.335753pt;}
.lsc{letter-spacing:4.590797pt;}
.ls11{letter-spacing:6.184823pt;}
.ls10{letter-spacing:6.312346pt;}
.lsd{letter-spacing:6.376107pt;}
.ls14{letter-spacing:6.631151pt;}
.ls1e{letter-spacing:7.587567pt;}
.ls19{letter-spacing:7.715089pt;}
.ls18{letter-spacing:7.906372pt;}
.ls1c{letter-spacing:8.097655pt;}
.ls1a{letter-spacing:8.161417pt;}
.ls1b{letter-spacing:8.288939pt;}
.ls16{letter-spacing:8.543983pt;}
.ls12{letter-spacing:9.309116pt;}
.lse{letter-spacing:9.436638pt;}
.ls15{letter-spacing:10.393054pt;}
.ls1d{letter-spacing:16.769161pt;}
.lsb{letter-spacing:31.880533pt;}
.ls3{letter-spacing:753.362688pt;}
.wsf{word-spacing:-18.809515pt;}
.ws9{word-spacing:-17.279249pt;}
.ws137{word-spacing:-16.769161pt;}
.ws12{word-spacing:-14.091196pt;}
.wsd{word-spacing:-12.560930pt;}
.wse{word-spacing:-11.094426pt;}
.ws10e{word-spacing:-10.393054pt;}
.wsc{word-spacing:-9.627921pt;}
.ws100{word-spacing:-9.309116pt;}
.ws12d{word-spacing:-8.543983pt;}
.ws12b{word-spacing:-8.288939pt;}
.ws12a{word-spacing:-8.161417pt;}
.ws134{word-spacing:-8.097655pt;}
.ws126{word-spacing:-7.906372pt;}
.ws128{word-spacing:-7.715089pt;}
.ws14{word-spacing:-6.758673pt;}
.ws13{word-spacing:-6.694912pt;}
.wsf3{word-spacing:-6.376107pt;}
.wsfe{word-spacing:-6.312346pt;}
.wsff{word-spacing:-6.184823pt;}
.wsf1{word-spacing:-4.590797pt;}
.wsfd{word-spacing:-4.335753pt;}
.ws103{word-spacing:-4.016947pt;}
.ws124{word-spacing:-2.805487pt;}
.ws2{word-spacing:-0.256128pt;}
.ws5{word-spacing:-0.134208pt;}
.ws4{word-spacing:-0.119296pt;}
.ws1{word-spacing:-0.021344pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.029824pt;}
.ws3{word-spacing:0.035232pt;}
.ws7{word-spacing:0.052704pt;}
.ws107{word-spacing:5.802257pt;}
.ws12c{word-spacing:12.497169pt;}
.ws108{word-spacing:12.688452pt;}
.ws109{word-spacing:12.815974pt;}
.ws11c{word-spacing:12.943497pt;}
.ws102{word-spacing:13.007258pt;}
.wsf4{word-spacing:13.071019pt;}
.ws10b{word-spacing:13.134780pt;}
.wsf6{word-spacing:13.198541pt;}
.ws127{word-spacing:13.389824pt;}
.ws131{word-spacing:13.453585pt;}
.wsf2{word-spacing:13.644868pt;}
.ws139{word-spacing:13.708629pt;}
.ws10c{word-spacing:13.772390pt;}
.wsc0{word-spacing:13.836151pt;}
.ws96{word-spacing:13.899913pt;}
.ws91{word-spacing:13.963674pt;}
.wsdd{word-spacing:14.091196pt;}
.ws13a{word-spacing:14.154957pt;}
.wsee{word-spacing:14.218718pt;}
.ws8e{word-spacing:14.282479pt;}
.wsef{word-spacing:14.346240pt;}
.ws8c{word-spacing:14.537523pt;}
.ws11a{word-spacing:14.665045pt;}
.wsda{word-spacing:14.728806pt;}
.ws106{word-spacing:14.792567pt;}
.ws81{word-spacing:14.856329pt;}
.ws9c{word-spacing:14.920090pt;}
.ws113{word-spacing:14.983851pt;}
.wse6{word-spacing:15.047612pt;}
.wsd6{word-spacing:15.111373pt;}
.wsd3{word-spacing:15.175134pt;}
.wse2{word-spacing:15.238895pt;}
.ws61{word-spacing:15.302656pt;}
.wsfb{word-spacing:15.366417pt;}
.ws95{word-spacing:15.430178pt;}
.wsd9{word-spacing:15.557700pt;}
.ws20{word-spacing:15.621461pt;}
.ws87{word-spacing:15.685222pt;}
.wsa6{word-spacing:15.748983pt;}
.wsb9{word-spacing:15.812745pt;}
.wsa3{word-spacing:15.940267pt;}
.wsa2{word-spacing:16.004028pt;}
.wsf0{word-spacing:16.067789pt;}
.ws42{word-spacing:16.131550pt;}
.ws114{word-spacing:16.195311pt;}
.ws5c{word-spacing:16.322833pt;}
.ws38{word-spacing:16.386594pt;}
.wsb0{word-spacing:16.450355pt;}
.wsed{word-spacing:16.514116pt;}
.ws10f{word-spacing:16.577877pt;}
.wsf7{word-spacing:16.641638pt;}
.ws7a{word-spacing:16.705399pt;}
.ws36{word-spacing:16.769161pt;}
.ws119{word-spacing:16.832922pt;}
.ws2a{word-spacing:16.896683pt;}
.ws143{word-spacing:16.960444pt;}
.wsb8{word-spacing:17.024205pt;}
.ws1d{word-spacing:17.087966pt;}
.ws2b{word-spacing:17.151727pt;}
.ws99{word-spacing:17.279249pt;}
.ws4e{word-spacing:17.343010pt;}
.wsdb{word-spacing:17.406771pt;}
.ws133{word-spacing:17.470532pt;}
.ws47{word-spacing:17.534293pt;}
.ws28{word-spacing:17.598054pt;}
.ws8d{word-spacing:17.661815pt;}
.ws1b{word-spacing:17.725577pt;}
.ws34{word-spacing:17.789338pt;}
.ws105{word-spacing:17.853099pt;}
.wscc{word-spacing:17.916860pt;}
.ws123{word-spacing:17.980621pt;}
.ws31{word-spacing:18.044382pt;}
.ws9f{word-spacing:18.108143pt;}
.ws84{word-spacing:18.171904pt;}
.ws85{word-spacing:18.235665pt;}
.ws75{word-spacing:18.299426pt;}
.wsa4{word-spacing:18.363187pt;}
.ws37{word-spacing:18.426948pt;}
.ws2e{word-spacing:18.490709pt;}
.wsca{word-spacing:18.554470pt;}
.wsd5{word-spacing:18.618231pt;}
.wse5{word-spacing:18.681993pt;}
.wsb1{word-spacing:18.745754pt;}
.ws40{word-spacing:18.809515pt;}
.ws43{word-spacing:18.873276pt;}
.ws57{word-spacing:18.937037pt;}
.ws8a{word-spacing:19.000798pt;}
.ws7c{word-spacing:19.064559pt;}
.ws30{word-spacing:19.192081pt;}
.ws44{word-spacing:19.255842pt;}
.wsbb{word-spacing:19.319603pt;}
.ws3b{word-spacing:19.383364pt;}
.ws88{word-spacing:19.447125pt;}
.ws92{word-spacing:19.510886pt;}
.wsbe{word-spacing:19.574647pt;}
.ws32{word-spacing:19.638409pt;}
.ws27{word-spacing:19.702170pt;}
.ws59{word-spacing:19.765931pt;}
.wscf{word-spacing:19.829692pt;}
.wsa7{word-spacing:19.893453pt;}
.ws2c{word-spacing:19.957214pt;}
.ws21{word-spacing:20.020975pt;}
.wscb{word-spacing:20.084736pt;}
.ws29{word-spacing:20.148497pt;}
.ws72{word-spacing:20.212258pt;}
.ws3c{word-spacing:20.276019pt;}
.ws62{word-spacing:20.339780pt;}
.ws98{word-spacing:20.403541pt;}
.wsdc{word-spacing:20.467302pt;}
.ws83{word-spacing:20.531063pt;}
.ws71{word-spacing:20.594825pt;}
.wsbc{word-spacing:20.658586pt;}
.ws8b{word-spacing:20.722347pt;}
.ws19{word-spacing:20.786108pt;}
.ws2d{word-spacing:20.849869pt;}
.wsc3{word-spacing:20.913630pt;}
.wsae{word-spacing:20.977391pt;}
.ws1f{word-spacing:21.041152pt;}
.wsc8{word-spacing:21.104913pt;}
.ws9e{word-spacing:21.168674pt;}
.ws73{word-spacing:21.232435pt;}
.ws6c{word-spacing:21.296196pt;}
.ws97{word-spacing:21.359957pt;}
.wsf8{word-spacing:21.423718pt;}
.ws64{word-spacing:21.487479pt;}
.ws5b{word-spacing:21.551241pt;}
.ws13d{word-spacing:21.615002pt;}
.ws3a{word-spacing:21.678763pt;}
.wsa0{word-spacing:21.742524pt;}
.ws69{word-spacing:21.806285pt;}
.ws76{word-spacing:21.870046pt;}
.wse8{word-spacing:21.933807pt;}
.ws22{word-spacing:21.997568pt;}
.wsdf{word-spacing:22.061329pt;}
.ws54{word-spacing:22.125090pt;}
.ws26{word-spacing:22.188851pt;}
.ws4d{word-spacing:22.252612pt;}
.ws35{word-spacing:22.316373pt;}
.ws33{word-spacing:22.380134pt;}
.ws104{word-spacing:22.443895pt;}
.wsea{word-spacing:22.507657pt;}
.ws94{word-spacing:22.571418pt;}
.ws89{word-spacing:22.635179pt;}
.ws79{word-spacing:22.698940pt;}
.ws3f{word-spacing:22.762701pt;}
.ws41{word-spacing:22.826462pt;}
.wsd0{word-spacing:22.890223pt;}
.ws17{word-spacing:22.953984pt;}
.ws13c{word-spacing:23.017745pt;}
.ws24{word-spacing:23.081506pt;}
.wsd8{word-spacing:23.145267pt;}
.ws56{word-spacing:23.209028pt;}
.ws53{word-spacing:23.272789pt;}
.ws49{word-spacing:23.336550pt;}
.ws7d{word-spacing:23.400311pt;}
.ws55{word-spacing:23.464073pt;}
.wsa5{word-spacing:23.527834pt;}
.ws25{word-spacing:23.591595pt;}
.ws63{word-spacing:23.655356pt;}
.ws6d{word-spacing:23.719117pt;}
.wsc5{word-spacing:23.782878pt;}
.wsb{word-spacing:23.846639pt;}
.ws10{word-spacing:23.910400pt;}
.ws58{word-spacing:23.974161pt;}
.wsbd{word-spacing:24.037922pt;}
.ws45{word-spacing:24.101683pt;}
.ws5a{word-spacing:24.165444pt;}
.wsd1{word-spacing:24.229205pt;}
.wsaf{word-spacing:24.292966pt;}
.wsb2{word-spacing:24.356727pt;}
.ws4c{word-spacing:24.420489pt;}
.ws5f{word-spacing:24.484250pt;}
.ws52{word-spacing:24.548011pt;}
.ws1a{word-spacing:24.611772pt;}
.ws18{word-spacing:24.675533pt;}
.wse0{word-spacing:24.739294pt;}
.wsa9{word-spacing:24.803055pt;}
.wsc2{word-spacing:24.866816pt;}
.wse1{word-spacing:24.930577pt;}
.ws3e{word-spacing:24.994338pt;}
.ws51{word-spacing:25.058099pt;}
.wsc7{word-spacing:25.121860pt;}
.ws9b{word-spacing:25.185621pt;}
.ws112{word-spacing:25.249382pt;}
.wsb7{word-spacing:25.313143pt;}
.ws60{word-spacing:25.376905pt;}
.ws13f{word-spacing:25.440666pt;}
.ws116{word-spacing:25.504427pt;}
.ws1e{word-spacing:25.568188pt;}
.ws115{word-spacing:25.631949pt;}
.ws7f{word-spacing:25.695710pt;}
.ws4a{word-spacing:25.759471pt;}
.wse3{word-spacing:25.823232pt;}
.wsa1{word-spacing:25.886993pt;}
.ws48{word-spacing:25.950754pt;}
.ws4b{word-spacing:26.014515pt;}
.ws7e{word-spacing:26.078276pt;}
.ws2f{word-spacing:26.142037pt;}
.wsaa{word-spacing:26.269559pt;}
.ws65{word-spacing:26.333321pt;}
.wsb3{word-spacing:26.397082pt;}
.ws67{word-spacing:26.460843pt;}
.wsb4{word-spacing:26.524604pt;}
.wsd7{word-spacing:26.588365pt;}
.wsc4{word-spacing:26.652126pt;}
.ws122{word-spacing:26.779648pt;}
.wsab{word-spacing:26.843409pt;}
.ws144{word-spacing:26.907170pt;}
.ws82{word-spacing:26.970931pt;}
.ws11b{word-spacing:27.034692pt;}
.wscd{word-spacing:27.162214pt;}
.ws6e{word-spacing:27.225975pt;}
.ws66{word-spacing:27.289737pt;}
.ws13e{word-spacing:27.353498pt;}
.wsd4{word-spacing:27.417259pt;}
.wsd2{word-spacing:27.544781pt;}
.ws3d{word-spacing:27.608542pt;}
.ws111{word-spacing:27.736064pt;}
.ws80{word-spacing:27.799825pt;}
.ws140{word-spacing:27.863586pt;}
.wsce{word-spacing:28.003782pt;}
.ws39{word-spacing:28.080295pt;}
.ws120{word-spacing:28.118630pt;}
.ws6a{word-spacing:28.182391pt;}
.ws46{word-spacing:28.246153pt;}
.ws6b{word-spacing:28.309914pt;}
.wsde{word-spacing:28.373675pt;}
.ws74{word-spacing:28.437436pt;}
.ws68{word-spacing:28.501197pt;}
.ws8f{word-spacing:28.628719pt;}
.wsc9{word-spacing:28.692480pt;}
.wse9{word-spacing:28.756241pt;}
.wsac{word-spacing:28.820002pt;}
.ws121{word-spacing:28.947524pt;}
.wsa8{word-spacing:29.011285pt;}
.wseb{word-spacing:29.075046pt;}
.ws5e{word-spacing:29.202569pt;}
.ws117{word-spacing:29.266330pt;}
.ws93{word-spacing:29.330091pt;}
.wsc6{word-spacing:29.393852pt;}
.ws70{word-spacing:29.457613pt;}
.wse4{word-spacing:29.521374pt;}
.ws90{word-spacing:29.712657pt;}
.ws23{word-spacing:29.776418pt;}
.wsba{word-spacing:29.840179pt;}
.ws142{word-spacing:29.903940pt;}
.ws9a{word-spacing:29.967701pt;}
.ws138{word-spacing:30.095223pt;}
.ws4f{word-spacing:30.222746pt;}
.wsc1{word-spacing:30.286507pt;}
.wse7{word-spacing:30.350268pt;}
.ws1c{word-spacing:30.414029pt;}
.ws141{word-spacing:30.477790pt;}
.ws5d{word-spacing:30.541551pt;}
.ws9d{word-spacing:30.669073pt;}
.ws78{word-spacing:30.796595pt;}
.ws77{word-spacing:30.860356pt;}
.ws7b{word-spacing:30.924117pt;}
.wsb5{word-spacing:31.179162pt;}
.wsbf{word-spacing:31.434206pt;}
.wsec{word-spacing:31.561728pt;}
.ws11f{word-spacing:31.753011pt;}
.wsa{word-spacing:31.880533pt;}
.wsb6{word-spacing:32.263100pt;}
.ws101{word-spacing:32.645666pt;}
.ws145{word-spacing:32.773188pt;}
.ws11{word-spacing:32.961753pt;}
.ws50{word-spacing:33.028233pt;}
.wsad{word-spacing:33.155755pt;}
.ws6f{word-spacing:33.793365pt;}
.ws110{word-spacing:34.367215pt;}
.ws11d{word-spacing:36.662613pt;}
.ws129{word-spacing:37.555268pt;}
.ws8{word-spacing:37.874074pt;}
.ws10d{word-spacing:38.511684pt;}
.ws125{word-spacing:40.105711pt;}
.wsfc{word-spacing:40.679561pt;}
.wsfa{word-spacing:41.635977pt;}
.ws12e{word-spacing:44.250180pt;}
.ws135{word-spacing:44.505225pt;}
.ws132{word-spacing:45.971729pt;}
.ws13b{word-spacing:47.055667pt;}
.ws118{word-spacing:47.119428pt;}
.wsf5{word-spacing:47.693278pt;}
.ws136{word-spacing:47.820800pt;}
.ws130{word-spacing:49.733632pt;}
.ws11e{word-spacing:50.626287pt;}
.ws12f{word-spacing:51.072614pt;}
.ws10a{word-spacing:51.200137pt;}
.wsf9{word-spacing:51.455181pt;}
.ws86{word-spacing:71.731200pt;}
.ws16{word-spacing:84.164373pt;}
.ws15{word-spacing:99.068889pt;}
.ws146{word-spacing:147.606869pt;}
.ws147{word-spacing:162.463198pt;}
._16{margin-left:-37.108941pt;}
._9{margin-left:-35.323631pt;}
._6{margin-left:-33.602082pt;}
._4{margin-left:-31.880533pt;}
._1c{margin-left:-30.158985pt;}
._5{margin-left:-28.437436pt;}
._4e{margin-left:-16.769161pt;}
._49{margin-left:-15.876506pt;}
._1a{margin-left:-14.282479pt;}
._a{margin-left:-13.389824pt;}
._4b{margin-left:-12.433408pt;}
._1d{margin-left:-11.221948pt;}
._41{margin-left:-9.895705pt;}
._4c{margin-left:-8.500229pt;}
._34{margin-left:-7.546704pt;}
._10{margin-left:-5.802257pt;}
._2f{margin-left:-4.527036pt;}
._1f{margin-left:-3.379337pt;}
._1{margin-left:-2.040354pt;}
._0{margin-left:-1.024800pt;}
._14{width:0.892655pt;}
._2{width:2.040354pt;}
._2d{width:3.379337pt;}
._2e{width:4.667297pt;}
._1e{width:5.866018pt;}
._3c{width:6.758738pt;}
._38{width:7.651328pt;}
._2a{width:8.862788pt;}
._3a{width:10.333916pt;}
._18{width:12.050842pt;}
._4d{width:13.283353pt;}
._20{width:14.601284pt;}
._32{width:16.195311pt;}
._47{width:17.151271pt;}
._27{width:18.049005pt;}
._26{width:19.834315pt;}
._c{width:20.786108pt;}
._12{width:22.252612pt;}
._19{width:23.336550pt;}
._13{width:25.249382pt;}
._7{width:26.142037pt;}
._15{width:27.225975pt;}
._31{width:28.564958pt;}
._17{width:29.840179pt;}
._35{width:31.242923pt;}
._36{width:32.454383pt;}
._29{width:33.606705pt;}
._4f{width:34.876588pt;}
._4a{width:36.112657pt;}
._f{width:37.874074pt;}
._46{width:39.571534pt;}
._40{width:40.721337pt;}
._44{width:41.954782pt;}
._48{width:43.535744pt;}
._39{width:44.479746pt;}
._21{width:45.397879pt;}
._b{width:46.481818pt;}
._43{width:47.438234pt;}
._3b{width:48.645071pt;}
._3f{width:49.600966pt;}
._3d{width:50.838491pt;}
._3e{width:51.883017pt;}
._37{width:53.103723pt;}
._45{width:54.319415pt;}
._42{width:55.348903pt;}
._8{width:56.428544pt;}
._2c{width:57.703765pt;}
._2b{width:60.254208pt;}
._e{width:61.529429pt;}
._28{width:63.123456pt;}
._30{width:84.164373pt;}
._d{width:88.245316pt;}
._25{width:95.003989pt;}
._33{width:99.068889pt;}
._11{width:1074.629018pt;}
._22{width:1300.279433pt;}
._1b{width:1407.398025pt;}
._24{width:1502.784580pt;}
._3{width:1544.101751pt;}
._23{width:1566.991974pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:63.761067pt;}
.fs4{font-size:69.440000pt;}
.fs3{font-size:74.560000pt;}
.fs7{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs2{font-size:117.440000pt;}
.fs1{font-size:213.440000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:119.817333pt;}
.y54{bottom:159.668000pt;}
.y1c2{bottom:160.538667pt;}
.y27b{bottom:160.873333pt;}
.y23f{bottom:162.402667pt;}
.y250{bottom:162.410667pt;}
.y86{bottom:163.202667pt;}
.y1e4{bottom:163.905333pt;}
.y2e6{bottom:164.676000pt;}
.y20c{bottom:164.989333pt;}
.y180{bottom:167.462667pt;}
.yd6{bottom:170.288000pt;}
.yc4{bottom:171.316000pt;}
.y2d1{bottom:171.352000pt;}
.y12e{bottom:174.554667pt;}
.y222{bottom:176.456000pt;}
.y97{bottom:176.470667pt;}
.y2a4{bottom:178.350667pt;}
.y118{bottom:180.324000pt;}
.y1a1{bottom:180.609333pt;}
.y53{bottom:183.570667pt;}
.y1c1{bottom:184.441333pt;}
.y27a{bottom:184.776000pt;}
.y193{bottom:185.914667pt;}
.y2b8{bottom:186.305333pt;}
.y23e{bottom:186.306667pt;}
.y24f{bottom:186.313333pt;}
.y85{bottom:187.105333pt;}
.y1e3{bottom:187.809333pt;}
.y2e5{bottom:188.578667pt;}
.y1d5{bottom:189.560000pt;}
.y17f{bottom:191.365333pt;}
.y29f{bottom:191.402667pt;}
.y32f{bottom:193.869333pt;}
.yc3{bottom:195.218667pt;}
.y12d{bottom:198.457333pt;}
.y221{bottom:200.358667pt;}
.y96{bottom:200.373333pt;}
.y20b{bottom:202.176000pt;}
.y2a3{bottom:202.253333pt;}
.y2d0{bottom:203.224000pt;}
.y1a0{bottom:204.512000pt;}
.y6d{bottom:207.473333pt;}
.y1c0{bottom:208.344000pt;}
.y279{bottom:208.678667pt;}
.y192{bottom:209.818667pt;}
.y23d{bottom:210.209333pt;}
.y24e{bottom:210.216000pt;}
.y2f6{bottom:211.001333pt;}
.y84{bottom:211.008000pt;}
.y2c2{bottom:211.205333pt;}
.y117{bottom:212.197333pt;}
.y2e4{bottom:212.481333pt;}
.y292{bottom:212.896000pt;}
.y1d4{bottom:213.462667pt;}
.y17e{bottom:215.268000pt;}
.y32e{bottom:217.772000pt;}
.yc2{bottom:219.122667pt;}
.y102{bottom:219.742667pt;}
.y12c{bottom:222.361333pt;}
.y52{bottom:223.520000pt;}
.yee{bottom:224.133333pt;}
.y220{bottom:224.262667pt;}
.y95{bottom:224.277333pt;}
.y2a2{bottom:226.156000pt;}
.y165{bottom:226.177333pt;}
.y2cf{bottom:227.128000pt;}
.y19f{bottom:228.414667pt;}
.y29{bottom:231.228000pt;}
.y6c{bottom:231.377333pt;}
.y1bf{bottom:232.246667pt;}
.y278{bottom:232.581333pt;}
.y1e2{bottom:232.965333pt;}
.y191{bottom:233.721333pt;}
.y23c{bottom:234.112000pt;}
.y24d{bottom:234.118667pt;}
.y2f5{bottom:234.904000pt;}
.y83{bottom:234.910667pt;}
.y29e{bottom:236.005333pt;}
.y116{bottom:236.100000pt;}
.y1d3{bottom:237.365333pt;}
.y17d{bottom:239.170667pt;}
.y1f8{bottom:239.246667pt;}
.y20a{bottom:239.361333pt;}
.yc1{bottom:243.025333pt;}
.y101{bottom:243.646667pt;}
.y2e3{bottom:244.354667pt;}
.yd5{bottom:244.660000pt;}
.yf{bottom:246.907067pt;}
.y291{bottom:247.644000pt;}
.y21f{bottom:248.165333pt;}
.y94{bottom:248.180000pt;}
.y2a1{bottom:250.060000pt;}
.y1f7{bottom:250.821333pt;}
.y2ce{bottom:251.030667pt;}
.y19e{bottom:252.318667pt;}
.y12b{bottom:254.233333pt;}
.y32d{bottom:254.958667pt;}
.y6b{bottom:255.280000pt;}
.y1be{bottom:256.149333pt;}
.y277{bottom:256.484000pt;}
.y1e1{bottom:256.868000pt;}
.y190{bottom:257.624000pt;}
.y23b{bottom:258.014667pt;}
.y24c{bottom:258.022667pt;}
.y2f4{bottom:258.806667pt;}
.y82{bottom:258.814667pt;}
.y29d{bottom:259.908000pt;}
.y143{bottom:261.236000pt;}
.y28{bottom:263.101333pt;}
.y164{bottom:263.364000pt;}
.yc0{bottom:266.928000pt;}
.y1d2{bottom:267.257333pt;}
.y100{bottom:267.549333pt;}
.y1b5{bottom:267.822667pt;}
.y115{bottom:267.973333pt;}
.y2e2{bottom:268.257333pt;}
.y290{bottom:271.546667pt;}
.y21e{bottom:272.068000pt;}
.y93{bottom:272.082667pt;}
.y2a0{bottom:273.962667pt;}
.y1f6{bottom:274.725333pt;}
.y2cd{bottom:274.933333pt;}
.y304{bottom:275.045333pt;}
.yed{bottom:275.877333pt;}
.ya9{bottom:276.198667pt;}
.y19d{bottom:276.221333pt;}
.y17c{bottom:276.357333pt;}
.y209{bottom:276.548000pt;}
.y12a{bottom:278.137333pt;}
.y32c{bottom:278.861333pt;}
.y6a{bottom:279.182667pt;}
.y1bd{bottom:280.053333pt;}
.y51{bottom:280.100000pt;}
.y276{bottom:280.388000pt;}
.y1e0{bottom:280.772000pt;}
.y18f{bottom:281.526667pt;}
.yd4{bottom:281.846667pt;}
.y23a{bottom:281.917333pt;}
.y265{bottom:281.925333pt;}
.y2f3{bottom:282.709333pt;}
.y81{bottom:282.717333pt;}
.y29c{bottom:283.810667pt;}
.y142{bottom:285.138667pt;}
.ybf{bottom:290.830667pt;}
.y1d1{bottom:291.160000pt;}
.yff{bottom:291.452000pt;}
.y1b4{bottom:291.725333pt;}
.y114{bottom:291.876000pt;}
.y2e1{bottom:292.160000pt;}
.y27{bottom:294.974667pt;}
.y28f{bottom:295.449333pt;}
.y21d{bottom:295.970667pt;}
.y24b{bottom:297.865333pt;}
.y1f5{bottom:298.628000pt;}
.y2cc{bottom:298.836000pt;}
.y303{bottom:298.948000pt;}
.yec{bottom:299.780000pt;}
.ya8{bottom:300.101333pt;}
.y19c{bottom:300.124000pt;}
.y17b{bottom:300.261333pt;}
.y163{bottom:300.550667pt;}
.y129{bottom:302.040000pt;}
.y69{bottom:303.085333pt;}
.y1bc{bottom:303.956000pt;}
.y50{bottom:304.002667pt;}
.y1df{bottom:304.674667pt;}
.y18e{bottom:305.430667pt;}
.y239{bottom:305.821333pt;}
.y264{bottom:305.828000pt;}
.y2f2{bottom:306.612000pt;}
.y80{bottom:306.620000pt;}
.y141{bottom:309.041333pt;}
.y92{bottom:309.269333pt;}
.y275{bottom:312.260000pt;}
.ybe{bottom:314.734667pt;}
.y1d0{bottom:315.062667pt;}
.yfe{bottom:315.354667pt;}
.y1b3{bottom:315.629333pt;}
.y113{bottom:315.780000pt;}
.y32b{bottom:316.048000pt;}
.yd3{bottom:319.033333pt;}
.y28e{bottom:319.352000pt;}
.y21c{bottom:319.874667pt;}
.y29b{bottom:320.858667pt;}
.y208{bottom:321.705333pt;}
.y24a{bottom:321.768000pt;}
.y1f4{bottom:322.530667pt;}
.y2cb{bottom:322.740000pt;}
.y302{bottom:322.850667pt;}
.yeb{bottom:323.682667pt;}
.y2e0{bottom:324.033333pt;}
.y17a{bottom:324.164000pt;}
.y128{bottom:325.942667pt;}
.ye{bottom:326.347411pt;}
.y26{bottom:326.848000pt;}
.y68{bottom:326.989333pt;}
.y4f{bottom:327.906667pt;}
.y238{bottom:329.724000pt;}
.y263{bottom:329.730667pt;}
.y2f1{bottom:330.516000pt;}
.y7f{bottom:330.522667pt;}
.y19b{bottom:331.997333pt;}
.y91{bottom:333.172000pt;}
.y1bb{bottom:335.829333pt;}
.y274{bottom:336.164000pt;}
.ya7{bottom:337.288000pt;}
.y162{bottom:337.737333pt;}
.ybd{bottom:338.637333pt;}
.y1cf{bottom:338.965333pt;}
.yfd{bottom:339.258667pt;}
.y1b2{bottom:339.532000pt;}
.y32a{bottom:339.950667pt;}
.y28d{bottom:343.254667pt;}
.y21b{bottom:343.777333pt;}
.y29a{bottom:344.761333pt;}
.y207{bottom:345.608000pt;}
.y249{bottom:345.672000pt;}
.y318{bottom:346.606667pt;}
.y2ca{bottom:346.642667pt;}
.y301{bottom:346.753333pt;}
.y18d{bottom:347.596000pt;}
.y2df{bottom:347.936000pt;}
.y179{bottom:348.066667pt;}
.y140{bottom:349.192000pt;}
.y1de{bottom:349.830667pt;}
.y4e{bottom:351.809333pt;}
.y2b7{bottom:353.626667pt;}
.y262{bottom:353.634667pt;}
.yea{bottom:353.953333pt;}
.y1f3{bottom:354.404000pt;}
.y7e{bottom:354.425333pt;}
.y19a{bottom:355.900000pt;}
.yd2{bottom:356.220000pt;}
.y90{bottom:357.076000pt;}
.y127{bottom:357.816000pt;}
.y155{bottom:357.926667pt;}
.y112{bottom:357.945333pt;}
.y25{bottom:358.721333pt;}
.y1ba{bottom:359.732000pt;}
.y273{bottom:360.066667pt;}
.ya6{bottom:361.192000pt;}
.y237{bottom:361.597333pt;}
.y2f0{bottom:362.389333pt;}
.ybc{bottom:362.540000pt;}
.y1ce{bottom:362.868000pt;}
.yfc{bottom:363.161333pt;}
.y1b1{bottom:363.434667pt;}
.yd{bottom:364.427067pt;}
.y28c{bottom:367.158667pt;}
.y67{bottom:367.172000pt;}
.y21a{bottom:367.680000pt;}
.y206{bottom:369.510667pt;}
.y248{bottom:369.574667pt;}
.y317{bottom:370.510667pt;}
.y300{bottom:370.656000pt;}
.y2de{bottom:371.840000pt;}
.y1dd{bottom:373.734667pt;}
.y161{bottom:374.924000pt;}
.y329{bottom:377.137333pt;}
.y2b6{bottom:377.529333pt;}
.y261{bottom:377.537333pt;}
.ye9{bottom:377.856000pt;}
.y1f2{bottom:378.306667pt;}
.y25d{bottom:378.329333pt;}
.y2c9{bottom:378.516000pt;}
.y199{bottom:379.802667pt;}
.y8f{bottom:380.978667pt;}
.y4d{bottom:381.465333pt;}
.y126{bottom:381.718667pt;}
.y299{bottom:381.809333pt;}
.y154{bottom:381.829333pt;}
.y1b9{bottom:383.634667pt;}
.y272{bottom:383.969333pt;}
.ya5{bottom:385.094667pt;}
.y178{bottom:385.253333pt;}
.y2d2{bottom:385.500000pt;}
.y2ef{bottom:386.292000pt;}
.y7d{bottom:386.298667pt;}
.ybb{bottom:386.442667pt;}
.y1cd{bottom:386.772000pt;}
.y1b0{bottom:387.337333pt;}
.y24{bottom:390.593333pt;}
.y28b{bottom:391.061333pt;}
.y219{bottom:391.582667pt;}
.y205{bottom:393.413333pt;}
.y236{bottom:393.470667pt;}
.y247{bottom:393.477333pt;}
.y316{bottom:394.413333pt;}
.y13f{bottom:400.310667pt;}
.y328{bottom:401.040000pt;}
.yc{bottom:401.067200pt;}
.yd1{bottom:401.376000pt;}
.y260{bottom:401.440000pt;}
.ye8{bottom:401.760000pt;}
.y1f1{bottom:402.209333pt;}
.y25c{bottom:402.232000pt;}
.y2c8{bottom:402.418667pt;}
.y198{bottom:403.706667pt;}
.y2dd{bottom:403.712000pt;}
.yfb{bottom:404.260000pt;}
.y8e{bottom:404.881333pt;}
.y4c{bottom:405.368000pt;}
.y125{bottom:405.621333pt;}
.y153{bottom:405.732000pt;}
.y18c{bottom:407.537333pt;}
.y271{bottom:407.872000pt;}
.ya4{bottom:408.997333pt;}
.y177{bottom:409.156000pt;}
.y2b5{bottom:409.402667pt;}
.y2ee{bottom:410.194667pt;}
.y7c{bottom:410.202667pt;}
.y1cc{bottom:410.674667pt;}
.y1dc{bottom:410.920000pt;}
.y1af{bottom:411.241333pt;}
.y111{bottom:412.117333pt;}
.y28a{bottom:414.964000pt;}
.y218{bottom:415.486667pt;}
.y310{bottom:415.645333pt;}
.y204{bottom:417.317333pt;}
.y235{bottom:417.373333pt;}
.y246{bottom:417.380000pt;}
.yba{bottom:418.316000pt;}
.y160{bottom:420.080000pt;}
.y305{bottom:420.725333pt;}
.yb{bottom:421.307067pt;}
.y23{bottom:422.466667pt;}
.y66{bottom:424.109333pt;}
.y13e{bottom:424.213333pt;}
.y2ff{bottom:424.225333pt;}
.y327{bottom:424.944000pt;}
.yd0{bottom:425.280000pt;}
.y25f{bottom:425.342667pt;}
.y1f0{bottom:426.113333pt;}
.y25b{bottom:426.134667pt;}
.y2c7{bottom:426.321333pt;}
.y298{bottom:426.412000pt;}
.y197{bottom:427.609333pt;}
.y2dc{bottom:427.616000pt;}
.yfa{bottom:428.164000pt;}
.y8d{bottom:428.784000pt;}
.y4b{bottom:429.270667pt;}
.y124{bottom:429.525333pt;}
.y18b{bottom:431.441333pt;}
.y270{bottom:431.776000pt;}
.ye7{bottom:432.030667pt;}
.y176{bottom:433.058667pt;}
.y2ed{bottom:434.097333pt;}
.y7b{bottom:434.105333pt;}
.y1cb{bottom:434.577333pt;}
.y1db{bottom:434.824000pt;}
.y1ae{bottom:435.144000pt;}
.y110{bottom:436.021333pt;}
.y289{bottom:438.866667pt;}
.y217{bottom:439.389333pt;}
.y30f{bottom:439.548000pt;}
.y203{bottom:441.220000pt;}
.y234{bottom:441.276000pt;}
.y245{bottom:441.284000pt;}
.yb9{bottom:442.218667pt;}
.y37{bottom:443.038667pt;}
.ya3{bottom:446.184000pt;}
.y152{bottom:446.961333pt;}
.y65{bottom:448.013333pt;}
.y25e{bottom:449.246667pt;}
.y1ef{bottom:450.016000pt;}
.y25a{bottom:450.037333pt;}
.y315{bottom:450.189333pt;}
.y2c6{bottom:450.224000pt;}
.y297{bottom:450.314667pt;}
.y196{bottom:451.512000pt;}
.y2db{bottom:451.518667pt;}
.y8c{bottom:452.686667pt;}
.y4a{bottom:453.174667pt;}
.y13d{bottom:454.073333pt;}
.y22{bottom:454.340000pt;}
.y26f{bottom:455.678667pt;}
.ye6{bottom:455.933333pt;}
.ya{bottom:456.667971pt;}
.y175{bottom:456.962667pt;}
.ycf{bottom:457.153333pt;}
.y2ec{bottom:458.000000pt;}
.y7a{bottom:458.008000pt;}
.y2fe{bottom:458.160000pt;}
.y1da{bottom:458.726667pt;}
.yf9{bottom:459.022667pt;}
.y1ad{bottom:459.046667pt;}
.y326{bottom:462.129333pt;}
.y288{bottom:462.770667pt;}
.y30e{bottom:463.450667pt;}
.y1ca{bottom:464.469333pt;}
.y202{bottom:465.122667pt;}
.y2b4{bottom:465.178667pt;}
.y244{bottom:465.186667pt;}
.y15f{bottom:465.237333pt;}
.yb8{bottom:466.122667pt;}
.y10f{bottom:467.893333pt;}
.ya2{bottom:470.086667pt;}
.y123{bottom:471.690667pt;}
.y233{bottom:473.149333pt;}
.y1ee{bottom:473.918667pt;}
.y259{bottom:473.941333pt;}
.y314{bottom:474.092000pt;}
.y195{bottom:475.414667pt;}
.y8b{bottom:476.590667pt;}
.y18a{bottom:476.597333pt;}
.y9{bottom:477.067347pt;}
.y2d8{bottom:477.253333pt;}
.y64{bottom:477.904000pt;}
.y13c{bottom:477.976000pt;}
.y2d5{bottom:478.253333pt;}
.y26e{bottom:479.581333pt;}
.ye5{bottom:479.836000pt;}
.yce{bottom:481.056000pt;}
.y2eb{bottom:481.904000pt;}
.y79{bottom:481.910667pt;}
.y296{bottom:482.049333pt;}
.y2fd{bottom:482.062667pt;}
.y2c5{bottom:482.097333pt;}
.y49{bottom:482.830667pt;}
.yf8{bottom:482.925333pt;}
.y1ac{bottom:482.949333pt;}
.y216{bottom:484.545333pt;}
.y325{bottom:486.033333pt;}
.y21{bottom:486.213333pt;}
.y30d{bottom:487.353333pt;}
.y1c9{bottom:488.372000pt;}
.y201{bottom:489.025333pt;}
.y2b3{bottom:489.081333pt;}
.y243{bottom:489.089333pt;}
.y15e{bottom:489.140000pt;}
.yb7{bottom:490.025333pt;}
.y36{bottom:490.516000pt;}
.y10e{bottom:491.797333pt;}
.y287{bottom:492.096000pt;}
.y2da{bottom:493.684000pt;}
.y174{bottom:494.149333pt;}
.y1d9{bottom:495.913333pt;}
.y232{bottom:497.052000pt;}
.y1ed{bottom:497.821333pt;}
.y258{bottom:497.844000pt;}
.y313{bottom:497.994667pt;}
.y8{bottom:499.547067pt;}
.y151{bottom:499.716000pt;}
.y189{bottom:500.500000pt;}
.y2d7{bottom:501.156000pt;}
.y63{bottom:501.806667pt;}
.y13b{bottom:501.878667pt;}
.y2d4{bottom:502.156000pt;}
.y26d{bottom:503.484000pt;}
.ye4{bottom:503.738667pt;}
.ycd{bottom:504.958667pt;}
.y2ea{bottom:505.806667pt;}
.y78{bottom:505.813333pt;}
.y295{bottom:505.952000pt;}
.y2fc{bottom:505.965333pt;}
.y2c4{bottom:506.000000pt;}
.y48{bottom:506.733333pt;}
.yf7{bottom:506.828000pt;}
.ya1{bottom:507.273333pt;}
.y215{bottom:508.448000pt;}
.y30c{bottom:511.257333pt;}
.y2b2{bottom:512.985333pt;}
.y242{bottom:512.992000pt;}
.y286{bottom:515.998667pt;}
.y194{bottom:517.580000pt;}
.y173{bottom:518.052000pt;}
.y20{bottom:518.086667pt;}
.y1ab{bottom:519.396000pt;}
.y1d8{bottom:519.816000pt;}
.y231{bottom:520.954667pt;}
.y1ec{bottom:521.725333pt;}
.y8a{bottom:521.746667pt;}
.yb6{bottom:521.898667pt;}
.y324{bottom:523.220000pt;}
.y150{bottom:523.618667pt;}
.y10d{bottom:523.669333pt;}
.y188{bottom:524.404000pt;}
.y7{bottom:525.147067pt;}
.y62{bottom:525.710667pt;}
.y13a{bottom:525.781333pt;}
.y15d{bottom:526.326667pt;}
.y26c{bottom:527.388000pt;}
.ye3{bottom:527.642667pt;}
.y1c8{bottom:528.556000pt;}
.ycc{bottom:528.861333pt;}
.y2e9{bottom:529.709333pt;}
.y77{bottom:529.717333pt;}
.y2fb{bottom:529.868000pt;}
.y47{bottom:530.636000pt;}
.yf6{bottom:530.730667pt;}
.ya0{bottom:531.176000pt;}
.y200{bottom:531.190667pt;}
.y122{bottom:531.632000pt;}
.y2b1{bottom:536.888000pt;}
.y241{bottom:536.894667pt;}
.y294{bottom:537.686667pt;}
.y35{bottom:537.993333pt;}
.y2c1{bottom:541.420000pt;}
.y1aa{bottom:543.298667pt;}
.y1d7{bottom:543.718667pt;}
.y230{bottom:544.858667pt;}
.y214{bottom:545.634667pt;}
.y89{bottom:545.649333pt;}
.yb5{bottom:545.801333pt;}
.y323{bottom:547.122667pt;}
.y14f{bottom:547.521333pt;}
.y10c{bottom:547.573333pt;}
.y187{bottom:548.306667pt;}
.y30b{bottom:548.442667pt;}
.y139{bottom:549.684000pt;}
.y1f{bottom:549.960000pt;}
.y15c{bottom:550.229333pt;}
.y285{bottom:550.745333pt;}
.y26b{bottom:551.290667pt;}
.ycb{bottom:552.764000pt;}
.y2e8{bottom:553.612000pt;}
.y76{bottom:553.620000pt;}
.y2fa{bottom:553.772000pt;}
.y46{bottom:554.540000pt;}
.yf5{bottom:554.634667pt;}
.y2d6{bottom:554.725333pt;}
.y9f{bottom:555.080000pt;}
.y121{bottom:555.536000pt;}
.y61{bottom:555.601333pt;}
.y6{bottom:555.707067pt;}
.y2d3{bottom:555.725333pt;}
.y2d9{bottom:556.725333pt;}
.ye2{bottom:557.913333pt;}
.y2c3{bottom:559.569333pt;}
.y2b0{bottom:560.790667pt;}
.y240{bottom:560.798667pt;}
.y293{bottom:561.590667pt;}
.y172{bottom:563.208000pt;}
.y2c0{bottom:565.322667pt;}
.y3b{bottom:565.564000pt;}
.y1eb{bottom:566.881333pt;}
.y1a9{bottom:567.201333pt;}
.y213{bottom:569.538667pt;}
.y88{bottom:569.553333pt;}
.yb4{bottom:569.704000pt;}
.y14e{bottom:571.424000pt;}
.y10b{bottom:571.476000pt;}
.y186{bottom:572.209333pt;}
.y284{bottom:574.648000pt;}
.y26a{bottom:575.193333pt;}
.y2e7{bottom:577.516000pt;}
.y75{bottom:577.522667pt;}
.y2f9{bottom:577.674667pt;}
.y45{bottom:578.442667pt;}
.yf4{bottom:578.537333pt;}
.y120{bottom:579.438667pt;}
.y60{bottom:579.504000pt;}
.ye1{bottom:581.816000pt;}
.y1e{bottom:581.832000pt;}
.y322{bottom:584.309333pt;}
.y2af{bottom:584.693333pt;}
.y22f{bottom:584.701333pt;}
.y34{bottom:585.470667pt;}
.y1c7{bottom:585.493333pt;}
.y30a{bottom:585.629333pt;}
.y15b{bottom:587.416000pt;}
.y2bf{bottom:589.225333pt;}
.y1d6{bottom:589.325333pt;}
.y138{bottom:589.836000pt;}
.y1ea{bottom:590.784000pt;}
.y1a8{bottom:591.104000pt;}
.y1ff{bottom:591.133333pt;}
.y9e{bottom:592.265333pt;}
.y212{bottom:593.441333pt;}
.y257{bottom:593.456000pt;}
.yb3{bottom:593.606667pt;}
.yca{bottom:594.929333pt;}
.y171{bottom:595.081333pt;}
.y14d{bottom:595.326667pt;}
.y10a{bottom:595.378667pt;}
.y185{bottom:596.112000pt;}
.y3a{bottom:597.437333pt;}
.y283{bottom:598.552000pt;}
.y74{bottom:601.425333pt;}
.y2f8{bottom:601.577333pt;}
.y44{bottom:602.345333pt;}
.y5{bottom:602.431115pt;}
.yf3{bottom:602.440000pt;}
.y11f{bottom:603.341333pt;}
.y5f{bottom:603.408000pt;}
.ye0{bottom:605.718667pt;}
.y269{bottom:607.066667pt;}
.y321{bottom:608.212000pt;}
.y22e{bottom:608.604000pt;}
.y1c6{bottom:609.396000pt;}
.y15a{bottom:611.318667pt;}
.y1d{bottom:613.705333pt;}
.y1e9{bottom:614.688000pt;}
.y1a7{bottom:615.008000pt;}
.y1fe{bottom:615.036000pt;}
.y9d{bottom:616.169333pt;}
.y2ae{bottom:616.566667pt;}
.y33{bottom:617.344000pt;}
.y256{bottom:617.358667pt;}
.yb2{bottom:617.510667pt;}
.y170{bottom:618.984000pt;}
.y14c{bottom:619.230667pt;}
.y184{bottom:620.016000pt;}
.y2be{bottom:620.421333pt;}
.y282{bottom:622.454667pt;}
.y309{bottom:622.816000pt;}
.y73{bottom:625.329333pt;}
.y2f7{bottom:625.480000pt;}
.y43{bottom:626.248000pt;}
.yf2{bottom:626.342667pt;}
.y11e{bottom:627.244000pt;}
.y109{bottom:627.252000pt;}
.y5e{bottom:627.310667pt;}
.y39{bottom:629.309333pt;}
.ydf{bottom:629.621333pt;}
.y268{bottom:630.969333pt;}
.y22d{bottom:632.506667pt;}
.y1c5{bottom:633.298667pt;}
.yc9{bottom:637.094667pt;}
.y1a6{bottom:638.910667pt;}
.y1fd{bottom:638.940000pt;}
.y2ad{bottom:640.469333pt;}
.y137{bottom:640.953333pt;}
.y255{bottom:641.261333pt;}
.y16f{bottom:642.888000pt;}
.y14b{bottom:643.133333pt;}
.y183{bottom:643.918667pt;}
.y2bd{bottom:644.325333pt;}
.y320{bottom:645.398667pt;}
.y1c{bottom:645.578667pt;}
.y281{bottom:646.357333pt;}
.y308{bottom:646.718667pt;}
.y32{bottom:649.217333pt;}
.y72{bottom:649.232000pt;}
.yb1{bottom:649.382667pt;}
.yf1{bottom:650.246667pt;}
.y108{bottom:651.154667pt;}
.y5d{bottom:651.213333pt;}
.y1e8{bottom:651.873333pt;}
.y211{bottom:654.530667pt;}
.y267{bottom:654.872000pt;}
.y42{bottom:655.905333pt;}
.y22c{bottom:656.410667pt;}
.y159{bottom:656.476000pt;}
.y1c4{bottom:657.201333pt;}
.yde{bottom:659.893333pt;}
.y38{bottom:661.182667pt;}
.y9c{bottom:661.325333pt;}
.y1a5{bottom:662.813333pt;}
.y1fc{bottom:662.842667pt;}
.y4{bottom:663.789779pt;}
.y2ac{bottom:664.373333pt;}
.y136{bottom:664.857333pt;}
.y254{bottom:665.165333pt;}
.y14a{bottom:667.036000pt;}
.y182{bottom:667.821333pt;}
.y2bc{bottom:668.228000pt;}
.y31f{bottom:669.301333pt;}
.y11d{bottom:669.409333pt;}
.y280{bottom:670.260000pt;}
.y307{bottom:670.622667pt;}
.y71{bottom:673.134667pt;}
.yb0{bottom:673.286667pt;}
.yf0{bottom:674.149333pt;}
.y16e{bottom:674.760000pt;}
.y107{bottom:675.057333pt;}
.y5c{bottom:675.116000pt;}
.y1e7{bottom:675.777333pt;}
.y210{bottom:678.433333pt;}
.y266{bottom:678.776000pt;}
.y41{bottom:679.808000pt;}
.y22b{bottom:680.313333pt;}
.y158{bottom:680.378667pt;}
.y31{bottom:681.090667pt;}
.y1c3{bottom:681.105333pt;}
.ydd{bottom:683.796000pt;}
.y9b{bottom:685.228000pt;}
.y1a4{bottom:686.716000pt;}
.y1fb{bottom:686.745333pt;}
.y2ab{bottom:688.276000pt;}
.y135{bottom:688.760000pt;}
.y253{bottom:689.068000pt;}
.y149{bottom:690.938667pt;}
.y181{bottom:691.724000pt;}
.y2bb{bottom:692.130667pt;}
.y1b{bottom:693.056000pt;}
.y31e{bottom:693.204000pt;}
.y27f{bottom:694.164000pt;}
.y70{bottom:697.037333pt;}
.yaf{bottom:697.189333pt;}
.y16d{bottom:698.664000pt;}
.y5b{bottom:699.020000pt;}
.y16b{bottom:702.678667pt;}
.y40{bottom:703.710667pt;}
.y22a{bottom:704.216000pt;}
.y157{bottom:704.281333pt;}
.yef{bottom:705.008000pt;}
.y312{bottom:705.160000pt;}
.ydc{bottom:707.698667pt;}
.y306{bottom:707.809333pt;}
.y1a3{bottom:710.620000pt;}
.y1fa{bottom:710.648000pt;}
.y2aa{bottom:712.178667pt;}
.y134{bottom:712.662667pt;}
.y30{bottom:712.962667pt;}
.y252{bottom:712.970667pt;}
.y148{bottom:714.842667pt;}
.y1b8{bottom:715.628000pt;}
.y2ba{bottom:716.033333pt;}
.y31d{bottom:717.106667pt;}
.y106{bottom:717.222667pt;}
.y27e{bottom:718.066667pt;}
.y6f{bottom:720.941333pt;}
.yae{bottom:721.092000pt;}
.y5a{bottom:722.922667pt;}
.y11c{bottom:723.582667pt;}
.y20f{bottom:723.590667pt;}
.y1a{bottom:724.929333pt;}
.y3{bottom:725.148443pt;}
.y16a{bottom:726.581333pt;}
.y9a{bottom:727.393333pt;}
.y229{bottom:728.118667pt;}
.y87{bottom:728.910667pt;}
.y311{bottom:729.062667pt;}
.ydb{bottom:731.601333pt;}
.y3f{bottom:733.366667pt;}
.y1a2{bottom:734.522667pt;}
.y1f9{bottom:734.552000pt;}
.y2a9{bottom:736.081333pt;}
.y133{bottom:736.565333pt;}
.y251{bottom:736.873333pt;}
.y1b7{bottom:739.530667pt;}
.y16c{bottom:740.829333pt;}
.y31c{bottom:741.010667pt;}
.y27d{bottom:741.969333pt;}
.y2f{bottom:744.836000pt;}
.yc8{bottom:744.844000pt;}
.y147{bottom:745.780000pt;}
.y156{bottom:746.446667pt;}
.y59{bottom:746.825333pt;}
.y1e6{bottom:750.149333pt;}
.y228{bottom:752.022667pt;}
.y6e{bottom:752.813333pt;}
.yad{bottom:752.965333pt;}
.y20e{bottom:755.462667pt;}
.yda{bottom:755.504000pt;}
.y19{bottom:756.802667pt;}
.y3e{bottom:757.269333pt;}
.y2b9{bottom:757.521333pt;}
.y169{bottom:758.454667pt;}
.y2a8{bottom:759.985333pt;}
.y132{bottom:760.469333pt;}
.y11b{bottom:760.769333pt;}
.y1b6{bottom:763.433333pt;}
.yc7{bottom:768.746667pt;}
.y146{bottom:769.682667pt;}
.y27c{bottom:771.294667pt;}
.y105{bottom:771.396000pt;}
.y1e5{bottom:774.053333pt;}
.y227{bottom:775.925333pt;}
.y2e{bottom:776.709333pt;}
.y58{bottom:776.717333pt;}
.yac{bottom:776.868000pt;}
.y31b{bottom:778.197333pt;}
.y20d{bottom:779.366667pt;}
.y3d{bottom:781.173333pt;}
.y168{bottom:782.357333pt;}
.y2a7{bottom:783.888000pt;}
.y131{bottom:784.372000pt;}
.yd9{bottom:785.776000pt;}
.y2{bottom:786.427067pt;}
.y99{bottom:787.336000pt;}
.y18{bottom:788.676000pt;}
.yc6{bottom:792.649333pt;}
.y145{bottom:793.585333pt;}
.y11a{bottom:797.956000pt;}
.y226{bottom:799.828000pt;}
.y57{bottom:800.620000pt;}
.yab{bottom:800.770667pt;}
.y31a{bottom:802.100000pt;}
.y104{bottom:803.269333pt;}
.y167{bottom:806.260000pt;}
.y2a6{bottom:807.790667pt;}
.y130{bottom:808.274667pt;}
.y2d{bottom:808.582667pt;}
.yd8{bottom:809.678667pt;}
.y98{bottom:811.238667pt;}
.yc5{bottom:816.553333pt;}
.y144{bottom:817.488000pt;}
.y17{bottom:820.548000pt;}
.y3c{bottom:821.121333pt;}
.y225{bottom:823.730667pt;}
.y56{bottom:824.522667pt;}
.yaa{bottom:824.674667pt;}
.y319{bottom:826.002667pt;}
.y103{bottom:827.172000pt;}
.y166{bottom:830.164000pt;}
.y2a5{bottom:831.693333pt;}
.y12f{bottom:832.177333pt;}
.yd7{bottom:833.581333pt;}
.y119{bottom:835.142667pt;}
.y2c{bottom:840.456000pt;}
.y15{bottom:845.069659pt;}
.y224{bottom:847.634667pt;}
.y55{bottom:848.425333pt;}
.y16{bottom:868.202667pt;}
.y223{bottom:871.537333pt;}
.y2b{bottom:872.329333pt;}
.y14{bottom:878.589403pt;}
.y13{bottom:912.508819pt;}
.y12{bottom:946.428235pt;}
.y11{bottom:980.347651pt;}
.y10{bottom:1014.267067pt;}
.y1{bottom:1014.667067pt;}
.hc{height:29.648896pt;}
.h7{height:39.030469pt;}
.h1{height:57.473437pt;}
.h5{height:59.017500pt;}
.ha{height:60.573013pt;}
.h6{height:69.982500pt;}
.hb{height:72.687413pt;}
.h4{height:75.142500pt;}
.h9{height:87.224693pt;}
.h3{height:115.260937pt;}
.h2{height:209.479687pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:113.440784pt;}
.x4{left:128.083088pt;}
.x3{left:137.682552pt;}
.x65{left:144.033333pt;}
.x3d{left:145.956000pt;}
.xc{left:147.805333pt;}
.x43{left:148.736000pt;}
.x59{left:150.034667pt;}
.x75{left:157.632000pt;}
.x5{left:159.923000pt;}
.x29{left:166.885333pt;}
.x7c{left:168.602667pt;}
.xd{left:171.212000pt;}
.x79{left:173.622667pt;}
.x3e{left:175.878667pt;}
.x5a{left:177.176000pt;}
.xf{left:186.825333pt;}
.x1d{left:188.628000pt;}
.x48{left:196.162667pt;}
.x20{left:200.710667pt;}
.x66{left:204.762667pt;}
.x2{left:207.280000pt;}
.x18{left:208.172000pt;}
.x14{left:209.428000pt;}
.x12{left:211.738667pt;}
.x64{left:214.341333pt;}
.x22{left:217.584000pt;}
.x3f{left:220.857333pt;}
.x42{left:222.100000pt;}
.x76{left:223.172000pt;}
.x4a{left:224.350667pt;}
.x4f{left:225.462667pt;}
.x10{left:230.525333pt;}
.x49{left:234.584000pt;}
.x6{left:242.560000pt;}
.x3c{left:249.238667pt;}
.x4b{left:250.616000pt;}
.x5b{left:251.788000pt;}
.x85{left:257.886667pt;}
.x7d{left:260.624000pt;}
.x3b{left:261.765333pt;}
.x86{left:269.985333pt;}
.x6c{left:271.282667pt;}
.x83{left:278.133333pt;}
.x15{left:284.337333pt;}
.x81{left:285.974667pt;}
.x7a{left:287.809333pt;}
.x82{left:288.789333pt;}
.x67{left:290.008000pt;}
.x13{left:291.613333pt;}
.x40{left:295.758667pt;}
.x2b{left:296.833333pt;}
.x7b{left:297.734667pt;}
.x50{left:299.189333pt;}
.x5d{left:300.104000pt;}
.x8b{left:301.798667pt;}
.x7{left:304.080000pt;}
.x8e{left:305.692000pt;}
.x2c{left:306.793333pt;}
.x11{left:307.773333pt;}
.x23{left:311.444000pt;}
.x77{left:315.584000pt;}
.x84{left:318.102667pt;}
.x54{left:323.612000pt;}
.x5c{left:325.260000pt;}
.x63{left:326.525333pt;}
.x21{left:335.144000pt;}
.x51{left:336.706667pt;}
.x6d{left:342.228000pt;}
.x52{left:345.965333pt;}
.x8d{left:347.410667pt;}
.x78{left:354.801333pt;}
.x8{left:363.440744pt;}
.x2d{left:368.314667pt;}
.x19{left:371.434667pt;}
.x87{left:373.237333pt;}
.x55{left:374.860000pt;}
.x2e{left:380.562667pt;}
.x53{left:384.169333pt;}
.x88{left:386.000000pt;}
.x1{left:396.880000pt;}
.x2a{left:399.032000pt;}
.x57{left:400.161333pt;}
.x41{left:401.120000pt;}
.xe{left:402.933333pt;}
.x28{left:415.593333pt;}
.x26{left:426.192000pt;}
.x44{left:427.936000pt;}
.x7e{left:429.413333pt;}
.x2f{left:435.381333pt;}
.x37{left:436.694667pt;}
.x1a{left:439.973333pt;}
.x71{left:442.608000pt;}
.x30{left:444.097333pt;}
.x4c{left:446.661333pt;}
.x5e{left:450.012000pt;}
.x46{left:456.024000pt;}
.x45{left:466.809333pt;}
.x31{left:469.008000pt;}
.x72{left:472.584000pt;}
.x62{left:474.714667pt;}
.x5f{left:476.174667pt;}
.x8c{left:477.390667pt;}
.x38{left:478.341333pt;}
.x32{left:482.380000pt;}
.x58{left:484.344000pt;}
.x4d{left:485.946667pt;}
.xb{left:491.840080pt;}
.x73{left:493.474667pt;}
.x47{left:495.309333pt;}
.xa{left:496.880000pt;}
.x68{left:500.305333pt;}
.x1b{left:503.592000pt;}
.x6e{left:509.668000pt;}
.x33{left:512.052000pt;}
.x69{left:513.197333pt;}
.x4e{left:522.856000pt;}
.x34{left:525.516000pt;}
.x27{left:526.632000pt;}
.x6a{left:530.281333pt;}
.x74{left:532.760000pt;}
.x39{left:537.620000pt;}
.x6f{left:539.644000pt;}
.x80{left:541.581333pt;}
.x6b{left:543.172000pt;}
.x89{left:550.944000pt;}
.x70{left:552.534667pt;}
.x8f{left:560.486667pt;}
.x35{left:563.214667pt;}
.x60{left:567.102667pt;}
.x1e{left:568.617333pt;}
.x36{left:573.986667pt;}
.x91{left:576.108000pt;}
.x7f{left:577.738667pt;}
.x61{left:587.446667pt;}
.x3a{left:592.280000pt;}
.x8a{left:597.340000pt;}
.x16{left:606.620000pt;}
.x1f{left:612.114667pt;}
.x24{left:615.222667pt;}
.x56{left:624.552000pt;}
.x1c{left:628.933333pt;}
.x25{left:650.258667pt;}
.x90{left:655.373333pt;}
.x17{left:661.528000pt;}
}




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