
    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_b738fa7c7d1e2d1f2b732410.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a701eaca35e7a26d948b42ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_c612d737e7e837801cfbad7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e99880d2b0e8acd068bbc648.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_323cd5d7e14881f6ee88c697.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m2{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-56.160000px;}
.v7{vertical-align:-32.400000px;}
.v2{vertical-align:-27.000000px;}
.v6{vertical-align:-17.963990px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.080000px;}
.v1{vertical-align:33.120000px;}
.v4{vertical-align:49.351647px;}
.v3{vertical-align:52.233495px;}
.ls36{letter-spacing:-0.086832px;}
.ls61{letter-spacing:-0.079299px;}
.lsf{letter-spacing:-0.064800px;}
.ls5d{letter-spacing:-0.057672px;}
.ls37{letter-spacing:-0.054108px;}
.ls5c{letter-spacing:-0.048096px;}
.ls4a{letter-spacing:-0.043254px;}
.ls5a{letter-spacing:-0.042084px;}
.ls5e{letter-spacing:-0.036045px;}
.ls5b{letter-spacing:-0.030060px;}
.ls4c{letter-spacing:-0.028836px;}
.ls50{letter-spacing:-0.021627px;}
.ls2d{letter-spacing:-0.021614px;}
.ls5f{letter-spacing:-0.021600px;}
.ls4b{letter-spacing:-0.014418px;}
.ls11{letter-spacing:-0.014400px;}
.ls51{letter-spacing:-0.007209px;}
.lsd{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.007200px;}
.ls3e{letter-spacing:0.007209px;}
.ls59{letter-spacing:0.012024px;}
.ls38{letter-spacing:0.014409px;}
.ls3d{letter-spacing:0.014418px;}
.ls29{letter-spacing:0.018036px;}
.lse{letter-spacing:0.021600px;}
.ls44{letter-spacing:0.021627px;}
.ls46{letter-spacing:0.024048px;}
.ls10{letter-spacing:0.028800px;}
.ls28{letter-spacing:0.028818px;}
.ls45{letter-spacing:0.028836px;}
.ls56{letter-spacing:0.030060px;}
.ls2{letter-spacing:0.036000px;}
.ls23{letter-spacing:0.036023px;}
.ls43{letter-spacing:0.036045px;}
.ls2a{letter-spacing:0.042084px;}
.ls5{letter-spacing:0.043200px;}
.ls27{letter-spacing:0.043228px;}
.ls3c{letter-spacing:0.043254px;}
.ls48{letter-spacing:0.048096px;}
.ls0{letter-spacing:0.050400px;}
.ls3f{letter-spacing:0.050463px;}
.ls54{letter-spacing:0.054108px;}
.ls3{letter-spacing:0.057600px;}
.ls24{letter-spacing:0.057637px;}
.ls4d{letter-spacing:0.057672px;}
.lsb{letter-spacing:0.059940px;}
.ls6{letter-spacing:0.064800px;}
.ls22{letter-spacing:0.064842px;}
.ls49{letter-spacing:0.064881px;}
.ls1d{letter-spacing:0.066132px;}
.lsc{letter-spacing:0.071928px;}
.ls4{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.072046px;}
.ls40{letter-spacing:0.072090px;}
.ls53{letter-spacing:0.072144px;}
.ls9{letter-spacing:0.078156px;}
.ls7{letter-spacing:0.079200px;}
.ls3b{letter-spacing:0.079299px;}
.lsa{letter-spacing:0.084168px;}
.ls14{letter-spacing:0.086400px;}
.ls4f{letter-spacing:0.086508px;}
.ls52{letter-spacing:0.090180px;}
.ls18{letter-spacing:0.093600px;}
.ls26{letter-spacing:0.093660px;}
.ls8{letter-spacing:0.096192px;}
.ls16{letter-spacing:0.100800px;}
.ls58{letter-spacing:0.102204px;}
.ls62{letter-spacing:0.104700px;}
.ls1a{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.108216px;}
.ls1c{letter-spacing:0.114228px;}
.ls47{letter-spacing:0.120240px;}
.ls15{letter-spacing:0.122400px;}
.ls32{letter-spacing:0.144092px;}
.ls13{letter-spacing:0.168336px;}
.ls1{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.180225px;}
.ls57{letter-spacing:0.180360px;}
.ls41{letter-spacing:3.244050px;}
.ls39{letter-spacing:3.344700px;}
.ls1b{letter-spacing:3.420000px;}
.ls20{letter-spacing:38.400625px;}
.ls31{letter-spacing:79.978487px;}
.ls30{letter-spacing:82.564945px;}
.ls2e{letter-spacing:95.180235px;}
.ls2f{letter-spacing:101.493461px;}
.ls33{letter-spacing:102.541356px;}
.ls2c{letter-spacing:106.118232px;}
.ls1f{letter-spacing:113.709984px;}
.ls34{letter-spacing:127.715400px;}
.ls35{letter-spacing:129.488220px;}
.ls2b{letter-spacing:136.725540px;}
.ls4e{letter-spacing:197.980767px;}
.ls21{letter-spacing:197.990162px;}
.ls1e{letter-spacing:198.000000px;}
.ls60{letter-spacing:707.760000px;}
.ls55{letter-spacing:1197.109440px;}
.ls17{letter-spacing:1212.199560px;}
.ls3a{letter-spacing:1482.498250px;}
.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;}
}
.wsb9{word-spacing:-131.785584px;}
.wsc0{word-spacing:-123.566760px;}
.wsbd{word-spacing:-119.531850px;}
.wsbf{word-spacing:-85.030236px;}
.wsd4{word-spacing:-41.802644px;}
.ws100{word-spacing:-41.775873px;}
.wsdb{word-spacing:-39.528000px;}
.wsff{word-spacing:-23.057341px;}
.wsbe{word-spacing:-18.155642px;}
.wsba{word-spacing:-18.075600px;}
.ws1b6{word-spacing:-18.072963px;}
.wsd8{word-spacing:-18.022500px;}
.ws11c{word-spacing:-18.015291px;}
.wsda{word-spacing:-17.979246px;}
.ws1{word-spacing:-15.114168px;}
.wsd3{word-spacing:-13.508400px;}
.wsfe{word-spacing:-10.499700px;}
.ws0{word-spacing:-9.720000px;}
.ws3{word-spacing:-0.167832px;}
.ws2{word-spacing:-0.143856px;}
.ws1c1{word-spacing:-0.079299px;}
.wsc3{word-spacing:-0.079251px;}
.ws4b{word-spacing:-0.079200px;}
.ws1df{word-spacing:-0.072090px;}
.wsc6{word-spacing:-0.072046px;}
.ws107{word-spacing:-0.064881px;}
.ws2b{word-spacing:-0.064800px;}
.ws1a7{word-spacing:-0.057672px;}
.wsdd{word-spacing:-0.057637px;}
.ws6d{word-spacing:-0.057600px;}
.ws1b2{word-spacing:-0.050463px;}
.wsde{word-spacing:-0.050432px;}
.ws7{word-spacing:-0.050400px;}
.ws106{word-spacing:-0.043254px;}
.wscc{word-spacing:-0.043228px;}
.ws97{word-spacing:-0.043200px;}
.ws12a{word-spacing:-0.036045px;}
.ws6{word-spacing:-0.036000px;}
.ws146{word-spacing:-0.028836px;}
.ws8{word-spacing:-0.028800px;}
.ws1b9{word-spacing:-0.021627px;}
.ws5{word-spacing:-0.021600px;}
.ws1b{word-spacing:-0.018036px;}
.ws1ba{word-spacing:-0.014418px;}
.ws1b5{word-spacing:-0.007209px;}
.ws1de{word-spacing:-0.007200px;}
.ws19{word-spacing:-0.006012px;}
.ws4{word-spacing:0.000000px;}
.wsfc{word-spacing:0.006012px;}
.ws192{word-spacing:0.007209px;}
.ws1a{word-spacing:0.012024px;}
.ws18{word-spacing:0.014400px;}
.ws1e1{word-spacing:0.014418px;}
.ws15e{word-spacing:0.018036px;}
.ws193{word-spacing:0.021600px;}
.ws1e0{word-spacing:0.021627px;}
.wsfd{word-spacing:0.042084px;}
.wsd1{word-spacing:0.048096px;}
.ws15f{word-spacing:0.078156px;}
.ws15c{word-spacing:0.120240px;}
.ws154{word-spacing:0.132264px;}
.ws182{word-spacing:0.138276px;}
.wsac{word-spacing:0.144000px;}
.wsd0{word-spacing:0.144288px;}
.wsa3{word-spacing:0.252000px;}
.wsc9{word-spacing:0.252162px;}
.ws10b{word-spacing:0.252315px;}
.ws2a{word-spacing:0.266400px;}
.ws105{word-spacing:0.281151px;}
.ws50{word-spacing:0.295200px;}
.wsca{word-spacing:0.295389px;}
.ws109{word-spacing:0.302778px;}
.wsa{word-spacing:0.309600px;}
.ws18f{word-spacing:0.331614px;}
.ws10a{word-spacing:0.360450px;}
.ws195{word-spacing:0.367659px;}
.ws18e{word-spacing:0.425331px;}
.ws121{word-spacing:0.468585px;}
.wsf{word-spacing:0.648000px;}
.ws29{word-spacing:0.655200px;}
.ws2e{word-spacing:0.669600px;}
.wsc8{word-spacing:0.670030px;}
.ws108{word-spacing:0.670437px;}
.ws194{word-spacing:0.677646px;}
.ws20{word-spacing:0.691200px;}
.wsc7{word-spacing:0.727667px;}
.ws68{word-spacing:0.828000px;}
.ws96{word-spacing:0.835200px;}
.wse{word-spacing:0.864000px;}
.ws2d{word-spacing:0.871200px;}
.wsdc{word-spacing:0.929396px;}
.ws67{word-spacing:1.029600px;}
.ws139{word-spacing:1.030887px;}
.ws87{word-spacing:1.036800px;}
.ws178{word-spacing:1.038096px;}
.ws9d{word-spacing:1.044000px;}
.ws156{word-spacing:1.070136px;}
.ws38{word-spacing:1.087200px;}
.wsf5{word-spacing:1.124604px;}
.ws177{word-spacing:1.153440px;}
.ws138{word-spacing:1.232739px;}
.wsa0{word-spacing:1.317600px;}
.ws37{word-spacing:1.368000px;}
.ws9f{word-spacing:1.375200px;}
.ws6a{word-spacing:1.396800px;}
.ws149{word-spacing:1.398546px;}
.wsf4{word-spacing:1.405755px;}
.ws155{word-spacing:1.412820px;}
.ws69{word-spacing:1.425600px;}
.ws55{word-spacing:1.454400px;}
.ws136{word-spacing:1.454904px;}
.ws9a{word-spacing:1.483200px;}
.ws135{word-spacing:1.509012px;}
.ws162{word-spacing:1.528308px;}
.ws115{word-spacing:1.535517px;}
.ws153{word-spacing:1.569132px;}
.ws9e{word-spacing:1.612800px;}
.ws148{word-spacing:1.614816px;}
.ws13{word-spacing:1.728000px;}
.ws54{word-spacing:1.735200px;}
.ws22{word-spacing:1.749600px;}
.ws114{word-spacing:1.758996px;}
.ws15b{word-spacing:1.815624px;}
.wsa7{word-spacing:1.857600px;}
.ws21{word-spacing:1.980000px;}
.ws8f{word-spacing:2.052000px;}
.ws12{word-spacing:2.095200px;}
.ws8e{word-spacing:2.109600px;}
.wsed{word-spacing:2.112237px;}
.ws113{word-spacing:2.119446px;}
.wse1{word-spacing:2.126655px;}
.wsa6{word-spacing:2.138400px;}
.ws6c{word-spacing:2.160000px;}
.ws112{word-spacing:2.177118px;}
.wse0{word-spacing:2.220372px;}
.wsec{word-spacing:2.299671px;}
.ws10d{word-spacing:2.429433px;}
.ws6b{word-spacing:2.448000px;}
.ws1e8{word-spacing:2.451060px;}
.ws4a{word-spacing:2.455200px;}
.ws1a9{word-spacing:2.458269px;}
.wsa9{word-spacing:2.462400px;}
.ws10e{word-spacing:2.487105px;}
.ws1dd{word-spacing:2.498400px;}
.ws10c{word-spacing:2.501523px;}
.wseb{word-spacing:2.508732px;}
.ws1c9{word-spacing:2.530359px;}
.ws1a8{word-spacing:2.674539px;}
.ws1dc{word-spacing:2.728800px;}
.wsa8{word-spacing:2.736000px;}
.ws16f{word-spacing:2.804301px;}
.wsb2{word-spacing:2.808000px;}
.ws71{word-spacing:2.822400px;}
.wsea{word-spacing:2.825928px;}
.ws59{word-spacing:2.829600px;}
.ws116{word-spacing:2.840346px;}
.ws31{word-spacing:2.844000px;}
.ws14e{word-spacing:2.879748px;}
.ws19a{word-spacing:2.934063px;}
.ws1c5{word-spacing:2.970108px;}
.ws58{word-spacing:2.995200px;}
.ws83{word-spacing:3.024000px;}
.ws147{word-spacing:3.034989px;}
.ws70{word-spacing:3.175200px;}
.ws7b{word-spacing:3.182400px;}
.ws1d1{word-spacing:3.186378px;}
.ws9c{word-spacing:3.189600px;}
.wse4{word-spacing:3.193587px;}
.wse3{word-spacing:3.200796px;}
.ws7e{word-spacing:3.204000px;}
.ws1c3{word-spacing:3.208005px;}
.ws1c4{word-spacing:3.215214px;}
.wse2{word-spacing:3.236841px;}
.wsf0{word-spacing:3.244050px;}
.wsc5{word-spacing:3.249284px;}
.ws14d{word-spacing:3.264516px;}
.ws1cd{word-spacing:3.294513px;}
.ws158{word-spacing:3.300588px;}
.ws53{word-spacing:3.304800px;}
.ws191{word-spacing:3.330558px;}
.ws9b{word-spacing:3.355200px;}
.ws7a{word-spacing:3.420000px;}
.ws8c{word-spacing:3.441600px;}
.wsc4{word-spacing:3.523059px;}
.ws190{word-spacing:3.532410px;}
.ws8b{word-spacing:3.535200px;}
.wse8{word-spacing:3.539619px;}
.ws52{word-spacing:3.542400px;}
.ws18c{word-spacing:3.546828px;}
.wsef{word-spacing:3.554037px;}
.ws95{word-spacing:3.556800px;}
.wse9{word-spacing:3.561246px;}
.ws1c2{word-spacing:3.575664px;}
.ws24{word-spacing:3.578400px;}
.ws13d{word-spacing:3.582873px;}
.ws1cc{word-spacing:3.597291px;}
.ws13c{word-spacing:3.611709px;}
.wsce{word-spacing:3.625236px;}
.wscd{word-spacing:3.673332px;}
.ws14c{word-spacing:3.679344px;}
.ws157{word-spacing:3.721428px;}
.ws1c7{word-spacing:3.849606px;}
.ws164{word-spacing:3.871233px;}
.ws161{word-spacing:3.892860px;}
.ws44{word-spacing:3.895200px;}
.ws94{word-spacing:3.902400px;}
.ws23{word-spacing:3.909600px;}
.ws163{word-spacing:3.936114px;}
.wsf6{word-spacing:3.955896px;}
.ws1c6{word-spacing:3.979368px;}
.ws14b{word-spacing:4.022028px;}
.ws130{word-spacing:4.029831px;}
.ws43{word-spacing:4.140000px;}
.ws16a{word-spacing:4.159593px;}
.ws1b0{word-spacing:4.231683px;}
.ws18d{word-spacing:4.238892px;}
.ws12f{word-spacing:4.260519px;}
.ws99{word-spacing:4.262400px;}
.ws86{word-spacing:4.269600px;}
.ws169{word-spacing:4.274937px;}
.ws160{word-spacing:4.282146px;}
.ws8a{word-spacing:4.291200px;}
.ws98{word-spacing:4.514400px;}
.ws104{word-spacing:4.577715px;}
.ws66{word-spacing:4.593600px;}
.ws1a2{word-spacing:4.606551px;}
.ws187{word-spacing:4.613760px;}
.ws89{word-spacing:4.615200px;}
.ws103{word-spacing:4.620969px;}
.ws88{word-spacing:4.629600px;}
.ws1ea{word-spacing:4.635387px;}
.ws1ce{word-spacing:4.642596px;}
.ws25{word-spacing:4.672800px;}
.ws65{word-spacing:4.680000px;}
.wsf3{word-spacing:4.729104px;}
.ws1e9{word-spacing:4.743522px;}
.ws186{word-spacing:4.909329px;}
.wsf2{word-spacing:4.981419px;}
.wse7{word-spacing:4.988628px;}
.ws1a1{word-spacing:5.003046px;}
.wsb6{word-spacing:5.032044px;}
.ws5c{word-spacing:5.119200px;}
.ws1a6{word-spacing:5.219316px;}
.ws80{word-spacing:5.299200px;}
.ws11{word-spacing:5.320800px;}
.ws5b{word-spacing:5.335200px;}
.wse5{word-spacing:5.341869px;}
.ws5a{word-spacing:5.349600px;}
.wse6{word-spacing:5.356287px;}
.ws17a{word-spacing:5.370705px;}
.wsfb{word-spacing:5.380740px;}
.ws180{word-spacing:5.446872px;}
.ws181{word-spacing:5.476932px;}
.ws10{word-spacing:5.515200px;}
.ws1e5{word-spacing:5.572557px;}
.ws41{word-spacing:5.572800px;}
.ws179{word-spacing:5.623020px;}
.ws7f{word-spacing:5.630400px;}
.ws40{word-spacing:5.702400px;}
.ws10f{word-spacing:5.716737px;}
.ws1e4{word-spacing:5.738364px;}
.ws12e{word-spacing:5.803245px;}
.ws4f{word-spacing:6.019200px;}
.ws45{word-spacing:6.055200px;}
.ws12d{word-spacing:6.077187px;}
.ws151{word-spacing:6.090156px;}
.ws152{word-spacing:6.096168px;}
.ws51{word-spacing:6.213600px;}
.ws4e{word-spacing:6.235200px;}
.wsa5{word-spacing:6.415200px;}
.ws4d{word-spacing:6.422400px;}
.wsab{word-spacing:6.444000px;}
.ws1f{word-spacing:6.523200px;}
.ws15a{word-spacing:6.619212px;}
.wsa4{word-spacing:6.760800px;}
.ws1e{word-spacing:6.775200px;}
.wsaa{word-spacing:6.782400px;}
.ws118{word-spacing:6.790878px;}
.ws159{word-spacing:6.841656px;}
.ws137{word-spacing:6.985944px;}
.wsad{word-spacing:7.048800px;}
.ws117{word-spacing:7.086447px;}
.ws35{word-spacing:7.192800px;}
.ws14f{word-spacing:7.202376px;}
.ws150{word-spacing:7.220412px;}
.wsb8{word-spacing:7.226424px;}
.ws1d6{word-spacing:7.230627px;}
.ws34{word-spacing:7.502400px;}
.ws16c{word-spacing:7.511778px;}
.ws127{word-spacing:7.518987px;}
.wsb7{word-spacing:7.533036px;}
.ws16b{word-spacing:7.533405px;}
.ws183{word-spacing:7.699212px;}
.ws11e{word-spacing:7.756884px;}
.ws126{word-spacing:7.828974px;}
.ws33{word-spacing:7.855200px;}
.ws11d{word-spacing:7.857810px;}
.wsfa{word-spacing:7.887744px;}
.ws15d{word-spacing:7.929828px;}
.wsf7{word-spacing:7.941852px;}
.wsf9{word-spacing:7.965900px;}
.wsf8{word-spacing:7.983936px;}
.ws1d8{word-spacing:8.016408px;}
.ws15{word-spacing:8.078400px;}
.ws1ae{word-spacing:8.110125px;}
.ws14a{word-spacing:8.218260px;}
.ws32{word-spacing:8.222400px;}
.ws14{word-spacing:8.229600px;}
.ws5f{word-spacing:8.244000px;}
.ws1bc{word-spacing:8.247096px;}
.ws85{word-spacing:8.251200px;}
.ws1ad{word-spacing:8.254305px;}
.ws13b{word-spacing:8.297559px;}
.ws12c{word-spacing:8.398485px;}
.ws84{word-spacing:8.474400px;}
.wsb5{word-spacing:8.546400px;}
.ws1d{word-spacing:8.560800px;}
.ws30{word-spacing:8.568000px;}
.ws1ac{word-spacing:8.571501px;}
.ws1a5{word-spacing:8.578710px;}
.ws5e{word-spacing:8.582400px;}
.ws12b{word-spacing:8.585919px;}
.ws13a{word-spacing:8.600337px;}
.ws131{word-spacing:8.639244px;}
.ws82{word-spacing:8.748000px;}
.ws1c{word-spacing:8.784000px;}
.ws1a4{word-spacing:8.809398px;}
.ws2f{word-spacing:8.848800px;}
.ws81{word-spacing:8.949600px;}
.ws1bb{word-spacing:8.996832px;}
.ws64{word-spacing:9.309600px;}
.ws1d0{word-spacing:9.314028px;}
.ws19e{word-spacing:9.328446px;}
.ws9{word-spacing:9.331200px;}
.ws1b1{word-spacing:9.602388px;}
.ws1cf{word-spacing:9.638433px;}
.ws170{word-spacing:9.645642px;}
.ws4c{word-spacing:9.705600px;}
.ws18b{word-spacing:9.732150px;}
.ws19b{word-spacing:9.962838px;}
.ws28{word-spacing:10.022400px;}
.ws18a{word-spacing:10.027719px;}
.ws7d{word-spacing:10.713600px;}
.ws1ab{word-spacing:10.741410px;}
.ws7c{word-spacing:10.864800px;}
.ws1aa{word-spacing:11.029770px;}
.ws197{word-spacing:11.101860px;}
.ws79{word-spacing:11.109600px;}
.ws123{word-spacing:11.130696px;}
.ws78{word-spacing:11.217600px;}
.ws196{word-spacing:11.231622px;}
.ws27{word-spacing:11.455200px;}
.ws122{word-spacing:11.476728px;}
.ws26{word-spacing:11.728800px;}
.ws5d{word-spacing:11.815200px;}
.wscf{word-spacing:11.873700px;}
.ws1e7{word-spacing:11.880432px;}
.ws1e6{word-spacing:12.060657px;}
.ws19d{word-spacing:12.204837px;}
.ws19c{word-spacing:12.320181px;}
.ws42{word-spacing:12.535200px;}
.ws2c{word-spacing:12.564000px;}
.ws143{word-spacing:12.565287px;}
.ws1a3{word-spacing:12.594123px;}
.wsf1{word-spacing:12.608541px;}
.ws17f{word-spacing:12.630168px;}
.ws77{word-spacing:12.823200px;}
.ws17e{word-spacing:12.896901px;}
.wsb4{word-spacing:12.909600px;}
.ws36{word-spacing:12.931200px;}
.ws145{word-spacing:12.940155px;}
.ws102{word-spacing:12.954573px;}
.wsb3{word-spacing:13.104000px;}
.ws101{word-spacing:13.113171px;}
.ws73{word-spacing:13.140000px;}
.ws72{word-spacing:13.262400px;}
.ws144{word-spacing:13.322232px;}
.ws133{word-spacing:13.346640px;}
.ws134{word-spacing:13.382712px;}
.ws3b{word-spacing:13.579200px;}
.ws3c{word-spacing:13.615200px;}
.ws176{word-spacing:13.617801px;}
.ws132{word-spacing:13.695336px;}
.ws3a{word-spacing:13.860000px;}
.ws175{word-spacing:13.920579px;}
.ws172{word-spacing:14.338701px;}
.ws1af{word-spacing:14.490090px;}
.ws16e{word-spacing:14.691942px;}
.ws8d{word-spacing:14.709600px;}
.ws171{word-spacing:14.735196px;}
.ws17{word-spacing:14.976000px;}
.ws16d{word-spacing:14.987511px;}
.ws16{word-spacing:15.055200px;}
.ws63{word-spacing:15.134400px;}
.wsee{word-spacing:15.146109px;}
.ws1c0{word-spacing:15.210990px;}
.ws62{word-spacing:15.393600px;}
.ws1e3{word-spacing:15.420051px;}
.ws1bf{word-spacing:15.499350px;}
.ws199{word-spacing:15.600276px;}
.ws1e2{word-spacing:15.629112px;}
.ws75{word-spacing:15.638400px;}
.ws74{word-spacing:15.768000px;}
.ws198{word-spacing:15.794919px;}
.ws120{word-spacing:16.148160px;}
.ws11f{word-spacing:16.465356px;}
.wsd{word-spacing:16.502400px;}
.ws3e{word-spacing:16.819200px;}
.wsc2{word-spacing:16.876800px;}
.ws185{word-spacing:16.883478px;}
.ws3f{word-spacing:16.891200px;}
.ws184{word-spacing:17.006031px;}
.wsc1{word-spacing:17.078400px;}
.ws3d{word-spacing:17.085600px;}
.ws125{word-spacing:17.229510px;}
.ws1d5{word-spacing:17.251137px;}
.ws57{word-spacing:17.280000px;}
.ws1d7{word-spacing:17.344854px;}
.wsa2{word-spacing:17.460000px;}
.ws1d4{word-spacing:17.496243px;}
.ws56{word-spacing:17.582400px;}
.ws124{word-spacing:17.582751px;}
.wsa1{word-spacing:17.611200px;}
.ws166{word-spacing:17.647632px;}
.ws129{word-spacing:17.791812px;}
.ws111{word-spacing:17.950410px;}
.ws165{word-spacing:17.957619px;}
.ws1b8{word-spacing:17.972037px;}
.ws128{word-spacing:17.993664px;}
.ws1b7{word-spacing:18.109008px;}
.ws110{word-spacing:18.159471px;}
.ws1c8{word-spacing:18.224352px;}
.ws93{word-spacing:18.424800px;}
.ws92{word-spacing:18.655200px;}
.ws140{word-spacing:18.671310px;}
.ws13f{word-spacing:18.678519px;}
.ws13e{word-spacing:18.974088px;}
.wsaf{word-spacing:19.735200px;}
.ws47{word-spacing:19.756800px;}
.ws6f{word-spacing:19.764000px;}
.wsae{word-spacing:19.929600px;}
.ws6e{word-spacing:19.958400px;}
.ws11b{word-spacing:20.069856px;}
.ws46{word-spacing:20.088000px;}
.ws49{word-spacing:20.455200px;}
.ws168{word-spacing:20.812383px;}
.ws48{word-spacing:20.822400px;}
.ws142{word-spacing:20.834010px;}
.wsc{word-spacing:20.836800px;}
.wsb{word-spacing:21.038400px;}
.ws167{word-spacing:21.043071px;}
.ws141{word-spacing:21.064698px;}
.ws189{word-spacing:21.180042px;}
.ws188{word-spacing:21.540492px;}
.ws39{word-spacing:21.859200px;}
.ws17d{word-spacing:21.908151px;}
.ws1b4{word-spacing:22.297437px;}
.wsb1{word-spacing:22.492800px;}
.ws1b3{word-spacing:22.585797px;}
.wsb0{word-spacing:22.615200px;}
.ws1a0{word-spacing:22.657887px;}
.ws19f{word-spacing:22.989501px;}
.ws1db{word-spacing:23.018337px;}
.ws1da{word-spacing:23.349951px;}
.ws17c{word-spacing:23.364369px;}
.ws61{word-spacing:23.486400px;}
.ws60{word-spacing:23.695200px;}
.ws17b{word-spacing:23.739237px;}
.ws11a{word-spacing:24.791751px;}
.ws119{word-spacing:25.152201px;}
.ws76{word-spacing:25.660800px;}
.ws1d3{word-spacing:25.865892px;}
.ws1d2{word-spacing:26.175879px;}
.ws174{word-spacing:26.630046px;}
.ws173{word-spacing:26.680509px;}
.ws1d9{word-spacing:28.569267px;}
.ws91{word-spacing:31.334400px;}
.ws90{word-spacing:31.658400px;}
.wscb{word-spacing:31.700328px;}
.ws1cb{word-spacing:32.815368px;}
.ws1ca{word-spacing:33.089310px;}
.wsbc{word-spacing:34.790845px;}
.ws1be{word-spacing:44.039781px;}
.ws1bd{word-spacing:44.256051px;}
.wsbb{word-spacing:98.119720px;}
.wsdf{word-spacing:197.901468px;}
.wsd5{word-spacing:342.226919px;}
.ws1eb{word-spacing:455.983668px;}
.wsd6{word-spacing:645.999048px;}
.wsd2{word-spacing:756.133673px;}
.wsd7{word-spacing:978.189210px;}
.wsd9{word-spacing:1148.105340px;}
._c{margin-left:-2234.304000px;}
._3b{margin-left:-432.684180px;}
._36{margin-left:-427.967772px;}
._38{margin-left:-424.397874px;}
._20{margin-left:-368.381039px;}
._3e{margin-left:-346.534293px;}
._3a{margin-left:-327.937410px;}
._1c{margin-left:-324.255634px;}
._35{margin-left:-321.523463px;}
._37{margin-left:-315.720142px;}
._2b{margin-left:-250.080210px;}
._2c{margin-left:-224.199900px;}
._2a{margin-left:-219.874500px;}
._39{margin-left:-208.772640px;}
._1a{margin-left:-207.276917px;}
._21{margin-left:-206.268271px;}
._19{margin-left:-204.827347px;}
._f{margin-left:-198.858785px;}
._b{margin-left:-197.856000px;}
._26{margin-left:-194.859270px;}
._1f{margin-left:-191.728701px;}
._25{margin-left:-189.769928px;}
._1b{margin-left:-188.472859px;}
._24{margin-left:-179.971408px;}
._23{margin-left:-178.121245px;}
._31{margin-left:-175.178700px;}
._22{margin-left:-173.487250px;}
._18{margin-left:-172.046326px;}
._1e{margin-left:-170.205840px;}
._1d{margin-left:-168.044496px;}
._33{margin-left:-166.888350px;}
._3c{margin-left:-165.024000px;}
._3d{margin-left:-162.471236px;}
._2d{margin-left:-160.668953px;}
._30{margin-left:-158.958450px;}
._a{margin-left:-155.880000px;}
._2f{margin-left:-154.777230px;}
._32{margin-left:-149.511954px;}
._27{margin-left:-143.675370px;}
._29{margin-left:-139.349970px;}
._3f{margin-left:-126.013320px;}
._2e{margin-left:-124.787790px;}
._28{margin-left:-122.769270px;}
._42{margin-left:-26.745390px;}
._34{margin-left:-23.322392px;}
._5{margin-left:-20.016000px;}
._6{margin-left:-17.640000px;}
._8{margin-left:-16.632000px;}
._3{margin-left:-12.600000px;}
._2{margin-left:-10.785600px;}
._d{margin-left:-9.110102px;}
._16{margin-left:-8.057400px;}
._4{margin-left:-4.176000px;}
._7{margin-left:-2.808000px;}
._1{margin-left:-1.094400px;}
._41{width:1.022040px;}
._15{width:2.025000px;}
._0{width:3.045600px;}
._10{width:9.699867px;}
._40{width:11.519982px;}
._e{width:14.400000px;}
._14{width:26.628480px;}
._13{width:32.417280px;}
._11{width:36.975960px;}
._12{width:39.002040px;}
._43{width:198.031230px;}
._9{width:371.880000px;}
._46{width:420.118893px;}
._48{width:438.141393px;}
._47{width:456.142266px;}
._44{width:458.910522px;}
._45{width:465.852789px;}
._17{width:941.756576px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fsf{font-size:41.998800px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:48.030600px;}
.fs6{font-size:48.202200px;}
.fsa{font-size:48.240000px;}
.fsc{font-size:54.033600px;}
.fs3{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:72.046200px;}
.fse{font-size:72.090000px;}
.fs5{font-size:72.302400px;}
.fs9{font-size:72.360000px;}
.fs10{font-size:76.094487px;}
.fsd{font-size:76.143249px;}
.fsb{font-size:76.474725px;}
.fs0{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.960450px;}
.y84{bottom:3.960600px;}
.y36{bottom:57.450450px;}
.y1c{bottom:111.445410px;}
.yae{bottom:111.475200px;}
.y8f{bottom:118.300350px;}
.yf5{bottom:121.805400px;}
.y107{bottom:123.605550px;}
.y1b{bottom:128.995410px;}
.y35{bottom:131.160450px;}
.y113{bottom:131.176875px;}
.y118{bottom:131.345378px;}
.y5f{bottom:131.520450px;}
.y72{bottom:137.110350px;}
.ycb{bottom:140.080455px;}
.y51{bottom:141.420450px;}
.yad{bottom:146.570250px;}
.y18d{bottom:147.360450px;}
.y1a{bottom:153.300450px;}
.y8e{bottom:153.395400px;}
.yf4{bottom:163.650450px;}
.y19{bottom:164.100450px;}
.y106{bottom:165.450600px;}
.y138{bottom:168.870450px;}
.y11b{bottom:172.110450px;}
.y71{bottom:172.205400px;}
.y34{bottom:173.100450px;}
.y112{bottom:173.115232px;}
.y117{bottom:173.283735px;}
.y5e{bottom:173.460450px;}
.yf3{bottom:174.475200px;}
.y105{bottom:176.250450px;}
.yac{bottom:181.665300px;}
.yca{bottom:182.018813px;}
.y50{bottom:183.360450px;}
.y18c{bottom:189.480450px;}
.y8d{bottom:195.240450px;}
.y8c{bottom:206.035410px;}
.y18{bottom:207.840450px;}
.yf2{bottom:209.570250px;}
.y18b{bottom:210.725378px;}
.y137{bottom:210.990450px;}
.y70{bottom:214.050450px;}
.y207{bottom:214.697100px;}
.y11a{bottom:214.950450px;}
.y33{bottom:215.040450px;}
.y111{bottom:215.053590px;}
.y116{bottom:215.222093px;}
.y5d{bottom:215.400450px;}
.y104{bottom:215.436585px;}
.yab{bottom:216.760350px;}
.y8b{bottom:223.590450px;}
.yc9{bottom:223.957170px;}
.y6f{bottom:224.850450px;}
.y4f{bottom:225.300450px;}
.y206{bottom:235.657267px;}
.yf1{bottom:244.665300px;}
.y17{bottom:249.780450px;}
.yaa{bottom:251.855400px;}
.ydc{bottom:251.875200px;}
.y18a{bottom:252.663735px;}
.y136{bottom:253.110450px;}
.y205{bottom:256.617435px;}
.y32{bottom:256.980450px;}
.y110{bottom:256.991947px;}
.y119{bottom:257.070450px;}
.y115{bottom:257.160450px;}
.y5c{bottom:257.340450px;}
.y103{bottom:257.374943px;}
.y8a{bottom:262.711917px;}
.y6e{bottom:264.000450px;}
.yc8{bottom:265.895528px;}
.y4e{bottom:267.240450px;}
.y204{bottom:277.577602px;}
.yf0{bottom:279.760350px;}
.ydb{bottom:286.970250px;}
.y16{bottom:291.720450px;}
.ya9{bottom:293.700450px;}
.y189{bottom:294.602093px;}
.y135{bottom:295.230450px;}
.y203{bottom:298.537770px;}
.y31{bottom:298.920450px;}
.y10f{bottom:298.930305px;}
.y114{bottom:299.010450px;}
.y5b{bottom:299.280450px;}
.y102{bottom:299.313300px;}
.ya8{bottom:304.500450px;}
.y89{bottom:304.660817px;}
.y6d{bottom:305.940450px;}
.yc7{bottom:307.833885px;}
.y4d{bottom:309.180450px;}
.yef{bottom:314.855400px;}
.y202{bottom:319.497938px;}
.yda{bottom:322.065300px;}
.y15{bottom:333.660450px;}
.y188{bottom:336.540450px;}
.y134{bottom:337.350450px;}
.y201{bottom:340.458105px;}
.y30{bottom:340.860450px;}
.y10e{bottom:340.868663px;}
.y5a{bottom:341.220450px;}
.y101{bottom:341.251658px;}
.y88{bottom:346.609717px;}
.y6c{bottom:347.880450px;}
.yc6{bottom:349.772243px;}
.y4c{bottom:351.120450px;}
.yee{bottom:356.700450px;}
.yd9{bottom:357.160350px;}
.y200{bottom:361.418272px;}
.yed{bottom:367.530150px;}
.y14{bottom:375.600450px;}
.y187{bottom:378.390450px;}
.y133{bottom:379.470450px;}
.y1ff{bottom:382.378440px;}
.y2f{bottom:382.800450px;}
.y10d{bottom:382.807020px;}
.y59{bottom:383.160450px;}
.y100{bottom:383.190015px;}
.y87{bottom:388.558617px;}
.y6b{bottom:389.820450px;}
.yc5{bottom:391.710600px;}
.yd8{bottom:392.255400px;}
.y4b{bottom:393.060450px;}
.ya7{bottom:393.880597px;}
.yec{bottom:402.625200px;}
.y1fe{bottom:403.338607px;}
.y13{bottom:417.540450px;}
.y186{bottom:420.510450px;}
.y132{bottom:421.590450px;}
.y1fd{bottom:424.298775px;}
.y2e{bottom:424.740450px;}
.y10c{bottom:424.745378px;}
.y58{bottom:425.100450px;}
.yff{bottom:425.128373px;}
.y86{bottom:430.507517px;}
.y6a{bottom:431.760450px;}
.yc4{bottom:433.560600px;}
.yd7{bottom:434.100450px;}
.y4a{bottom:435.000450px;}
.ya6{bottom:435.818955px;}
.yeb{bottom:437.720250px;}
.yd6{bottom:444.900450px;}
.y1fc{bottom:445.258942px;}
.y12{bottom:459.480450px;}
.y185{bottom:462.727020px;}
.y131{bottom:463.710450px;}
.y1fb{bottom:466.219110px;}
.y2d{bottom:466.680450px;}
.y10b{bottom:466.683735px;}
.y57{bottom:467.040450px;}
.yfe{bottom:467.066730px;}
.y82{bottom:471.360600px;}
.y83{bottom:471.990000px;}
.yea{bottom:472.815300px;}
.y69{bottom:473.700450px;}
.yc3{bottom:475.680600px;}
.y81{bottom:475.825992px;}
.y85{bottom:475.950600px;}
.y49{bottom:476.940450px;}
.ya5{bottom:477.757312px;}
.y1fa{bottom:487.179278px;}
.y11{bottom:501.420450px;}
.y184{bottom:504.665377px;}
.y130{bottom:505.830450px;}
.ye9{bottom:507.910350px;}
.y1f9{bottom:508.139445px;}
.y2c{bottom:508.620450px;}
.y10a{bottom:508.622093px;}
.y56{bottom:508.980450px;}
.yd5{bottom:508.996875px;}
.yfd{bottom:509.005088px;}
.y68{bottom:515.640450px;}
.y80{bottom:517.774892px;}
.yc2{bottom:517.895265px;}
.y48{bottom:518.880450px;}
.ya4{bottom:519.695670px;}
.y1f8{bottom:529.099612px;}
.y47{bottom:539.850450px;}
.ye8{bottom:543.005400px;}
.y10{bottom:543.360450px;}
.y183{bottom:546.603735px;}
.y12f{bottom:547.950450px;}
.y1f7{bottom:550.059780px;}
.y2b{bottom:550.560450px;}
.y55{bottom:550.920450px;}
.yd4{bottom:550.935232px;}
.yfc{bottom:550.943445px;}
.y67{bottom:557.580450px;}
.y7f{bottom:559.723792px;}
.yc1{bottom:559.833622px;}
.ya3{bottom:561.634027px;}
.y1f6{bottom:571.019947px;}
.y46{bottom:581.700450px;}
.ye7{bottom:584.850450px;}
.yf{bottom:585.300450px;}
.y182{bottom:588.542092px;}
.y12e{bottom:590.070450px;}
.y1f5{bottom:591.980115px;}
.y109{bottom:592.410450px;}
.y2a{bottom:592.500450px;}
.y54{bottom:592.860450px;}
.yd3{bottom:592.873590px;}
.yfb{bottom:592.881803px;}
.ye6{bottom:595.650450px;}
.y66{bottom:599.520450px;}
.y7e{bottom:601.672692px;}
.yc0{bottom:601.771980px;}
.y45{bottom:602.300370px;}
.ya2{bottom:603.572385px;}
.y1f4{bottom:612.940282px;}
.y44{bottom:619.855410px;}
.ye{bottom:627.240450px;}
.y181{bottom:630.482092px;}
.y12d{bottom:632.190450px;}
.y1f3{bottom:633.900450px;}
.y29{bottom:634.440450px;}
.y108{bottom:634.530450px;}
.y53{bottom:634.800450px;}
.yd2{bottom:634.811947px;}
.ye5{bottom:634.815232px;}
.yfa{bottom:634.820160px;}
.y43{bottom:637.410450px;}
.y65{bottom:641.460450px;}
.y7d{bottom:643.621592px;}
.ybf{bottom:643.710337px;}
.ya1{bottom:645.510742px;}
.y1e2{bottom:655.619947px;}
.y1e6{bottom:655.655993px;}
.y1ea{bottom:655.692037px;}
.y1ee{bottom:655.728082px;}
.y1f2{bottom:655.764127px;}
.yd{bottom:669.180450px;}
.y180{bottom:672.420450px;}
.y12c{bottom:674.408662px;}
.y28{bottom:676.380450px;}
.y42{bottom:676.470450px;}
.y1e1{bottom:676.580115px;}
.y1e5{bottom:676.616160px;}
.y1e9{bottom:676.652205px;}
.y1ed{bottom:676.688250px;}
.y1f1{bottom:676.724295px;}
.y52{bottom:676.740450px;}
.yd1{bottom:676.750305px;}
.ye4{bottom:676.753590px;}
.yf9{bottom:676.758518px;}
.y64{bottom:683.400450px;}
.ybe{bottom:685.648695px;}
.y7b{bottom:685.660550px;}
.ya0{bottom:688.530450px;}
.yc{bottom:689.970450px;}
.y7c{bottom:693.480450px;}
.y17f{bottom:694.120282px;}
.y1e0{bottom:697.540282px;}
.y1e4{bottom:697.576327px;}
.y1e8{bottom:697.612372px;}
.y1ec{bottom:697.648417px;}
.y1f0{bottom:697.684462px;}
.y7a{bottom:697.980450px;}
.y17e{bottom:715.080450px;}
.y12b{bottom:716.347020px;}
.y27{bottom:718.320450px;}
.y1df{bottom:718.500450px;}
.y1e3{bottom:718.536495px;}
.y1e7{bottom:718.572540px;}
.y1eb{bottom:718.608585px;}
.y1ef{bottom:718.644630px;}
.y41{bottom:718.680450px;}
.yd0{bottom:718.688662px;}
.ye3{bottom:718.691947px;}
.yf8{bottom:718.696875px;}
.y63{bottom:725.340450px;}
.ybd{bottom:727.587052px;}
.y9f{bottom:731.642745px;}
.yb{bottom:732.090450px;}
.y17d{bottom:736.891703px;}
.y1d4{bottom:740.275807px;}
.y1de{bottom:740.347897px;}
.y79{bottom:753.060450px;}
.y173{bottom:757.779780px;}
.y17c{bottom:757.851870px;}
.y12a{bottom:758.285378px;}
.y26{bottom:760.260450px;}
.y40{bottom:760.620450px;}
.ycf{bottom:760.627020px;}
.ye2{bottom:760.630305px;}
.yf7{bottom:760.635233px;}
.y1cb{bottom:761.199930px;}
.y1d3{bottom:761.235975px;}
.y1dd{bottom:761.308065px;}
.y62{bottom:767.280450px;}
.yb7{bottom:769.710450px;}
.y9e{bottom:773.581103px;}
.ya{bottom:774.210450px;}
.y172{bottom:778.739948px;}
.y177{bottom:778.775993px;}
.y17b{bottom:778.812038px;}
.y1ca{bottom:782.160097px;}
.y1d2{bottom:782.214165px;}
.y1d8{bottom:782.250210px;}
.y1dc{bottom:782.286255px;}
.ybc{bottom:787.980450px;}
.yb6{bottom:787.993388px;}
.y78{bottom:795.000450px;}
.yb8{bottom:797.156666px;}
.yba{bottom:797.700000px;}
.y171{bottom:799.700115px;}
.y176{bottom:799.736160px;}
.y17a{bottom:799.772205px;}
.y129{bottom:800.223735px;}
.yb9{bottom:801.658718px;}
.ybb{bottom:801.660450px;}
.y25{bottom:802.200450px;}
.y3f{bottom:802.560450px;}
.yce{bottom:802.565378px;}
.ye1{bottom:802.568662px;}
.yf6{bottom:802.573590px;}
.y1c9{bottom:803.120265px;}
.y1ce{bottom:803.156310px;}
.y1d1{bottom:803.174332px;}
.y1d7{bottom:803.210377px;}
.y1db{bottom:803.246422px;}
.y61{bottom:805.170450px;}
.y9d{bottom:815.519460px;}
.y9{bottom:816.330450px;}
.y170{bottom:820.660283px;}
.y175{bottom:820.696328px;}
.y179{bottom:820.732373px;}
.y1c8{bottom:824.080432px;}
.y1cd{bottom:824.116477px;}
.y1d0{bottom:824.134500px;}
.y1d6{bottom:824.170545px;}
.y1da{bottom:824.206590px;}
.y77{bottom:836.940450px;}
.y16f{bottom:841.620450px;}
.y174{bottom:841.656495px;}
.y178{bottom:841.692540px;}
.y128{bottom:842.162093px;}
.y24{bottom:844.140450px;}
.y60{bottom:844.230450px;}
.y3e{bottom:844.500450px;}
.ycd{bottom:844.503735px;}
.ye0{bottom:844.507020px;}
.yb5{bottom:844.511948px;}
.y1c7{bottom:845.040600px;}
.y1cc{bottom:845.076645px;}
.y1cf{bottom:845.094667px;}
.y1d5{bottom:845.130712px;}
.y1d9{bottom:845.166757px;}
.y9c{bottom:857.457818px;}
.y8{bottom:858.450450px;}
.y15c{bottom:863.377635px;}
.y162{bottom:863.413680px;}
.y168{bottom:863.449725px;}
.y16e{bottom:863.485770px;}
.y1b6{bottom:866.725545px;}
.y1ba{bottom:866.761590px;}
.y1c0{bottom:866.797635px;}
.y1c6{bottom:866.833680px;}
.y74{bottom:877.710450px;}
.y76{bottom:877.711221px;}
.y73{bottom:882.300450px;}
.y127{bottom:884.100450px;}
.y156{bottom:884.319780px;}
.y15b{bottom:884.337802px;}
.y161{bottom:884.373847px;}
.y167{bottom:884.409892px;}
.y16d{bottom:884.445937px;}
.y23{bottom:886.080450px;}
.y3d{bottom:886.440450px;}
.ycc{bottom:886.442093px;}
.ydf{bottom:886.445377px;}
.yb4{bottom:886.450305px;}
.y1b1{bottom:887.667690px;}
.y1b5{bottom:887.685713px;}
.y1b9{bottom:887.721758px;}
.y1bf{bottom:887.757803px;}
.y1c5{bottom:887.793848px;}
.y75{bottom:890.400450px;}
.y9a{bottom:898.860000px;}
.y7{bottom:900.570450px;}
.y99{bottom:902.802650px;}
.y9b{bottom:902.820450px;}
.y155{bottom:905.279947px;}
.y15a{bottom:905.297970px;}
.y160{bottom:905.334015px;}
.y166{bottom:905.370060px;}
.y16c{bottom:905.406105px;}
.y1b0{bottom:908.645880px;}
.y1b8{bottom:908.681925px;}
.y1be{bottom:908.717970px;}
.y1c4{bottom:908.754015px;}
.y154{bottom:926.240115px;}
.y159{bottom:926.276160px;}
.y15f{bottom:926.312205px;}
.y165{bottom:926.348250px;}
.y16b{bottom:926.384295px;}
.y125{bottom:926.763735px;}
.y22{bottom:928.020450px;}
.y3c{bottom:928.380450px;}
.yde{bottom:928.383735px;}
.yb3{bottom:928.388663px;}
.y1b4{bottom:929.606048px;}
.y1af{bottom:929.624070px;}
.y1b7{bottom:929.642092px;}
.y1bd{bottom:929.678138px;}
.y1c3{bottom:929.714182px;}
.y6{bottom:942.690450px;}
.y98{bottom:944.751550px;}
.y153{bottom:947.200282px;}
.y158{bottom:947.236327px;}
.y15e{bottom:947.272372px;}
.y164{bottom:947.308417px;}
.y16a{bottom:947.344462px;}
.y1b3{bottom:950.566215px;}
.y1ae{bottom:950.602260px;}
.y1bc{bottom:950.638305px;}
.y1c2{bottom:950.674350px;}
.y152{bottom:968.160450px;}
.y157{bottom:968.196495px;}
.y15d{bottom:968.232540px;}
.y163{bottom:968.268585px;}
.y169{bottom:968.304630px;}
.y124{bottom:968.702093px;}
.y21{bottom:969.960450px;}
.y3b{bottom:970.320450px;}
.ydd{bottom:970.322093px;}
.yb2{bottom:970.327020px;}
.y1b2{bottom:971.544405px;}
.y1ad{bottom:971.580450px;}
.y1bb{bottom:971.616495px;}
.y1c1{bottom:971.652540px;}
.y5{bottom:984.810450px;}
.y97{bottom:986.682810px;}
.y13f{bottom:989.881590px;}
.y145{bottom:989.917635px;}
.y14b{bottom:989.953680px;}
.y151{bottom:989.989725px;}
.y19a{bottom:993.337635px;}
.y1a0{bottom:993.373680px;}
.y1a6{bottom:993.409725px;}
.y1ac{bottom:993.445770px;}
.y126{bottom:1010.370450px;}
.y123{bottom:1010.640450px;}
.y13d{bottom:1010.823735px;}
.y13e{bottom:1010.841757px;}
.y144{bottom:1010.877803px;}
.y14a{bottom:1010.913847px;}
.y150{bottom:1010.949893px;}
.y20{bottom:1011.900450px;}
.y3a{bottom:1012.260450px;}
.yb1{bottom:1012.265378px;}
.y194{bottom:1014.279780px;}
.y199{bottom:1014.297803px;}
.y19f{bottom:1014.333848px;}
.y1a5{bottom:1014.369893px;}
.y1ab{bottom:1014.405937px;}
.y4{bottom:1026.930450px;}
.y96{bottom:1028.631710px;}
.y13c{bottom:1031.801925px;}
.y143{bottom:1031.837970px;}
.y149{bottom:1031.874015px;}
.y14f{bottom:1031.910060px;}
.y193{bottom:1035.239948px;}
.y198{bottom:1035.257970px;}
.y19e{bottom:1035.294015px;}
.y1a4{bottom:1035.330060px;}
.y1aa{bottom:1035.366105px;}
.y13b{bottom:1052.780115px;}
.y142{bottom:1052.816160px;}
.y148{bottom:1052.852205px;}
.y14e{bottom:1052.888250px;}
.y121{bottom:1053.302093px;}
.y11e{bottom:1053.483735px;}
.y1f{bottom:1053.840450px;}
.y39{bottom:1054.200450px;}
.yb0{bottom:1054.203735px;}
.y192{bottom:1056.200115px;}
.y197{bottom:1056.218138px;}
.y19d{bottom:1056.254183px;}
.y1a3{bottom:1056.290228px;}
.y1a9{bottom:1056.326272px;}
.y3{bottom:1069.140450px;}
.y95{bottom:1070.580610px;}
.y13a{bottom:1073.740282px;}
.y141{bottom:1073.776327px;}
.y147{bottom:1073.812373px;}
.y14d{bottom:1073.848417px;}
.y191{bottom:1077.160283px;}
.y196{bottom:1077.196328px;}
.y19c{bottom:1077.232373px;}
.y1a2{bottom:1077.268417px;}
.y1a8{bottom:1077.304462px;}
.y2{bottom:1092.544950px;}
.y139{bottom:1094.700450px;}
.y140{bottom:1094.736495px;}
.y146{bottom:1094.772540px;}
.y14c{bottom:1094.808585px;}
.y120{bottom:1095.240450px;}
.y11d{bottom:1095.422093px;}
.y1e{bottom:1095.690450px;}
.y38{bottom:1096.140450px;}
.yaf{bottom:1096.142093px;}
.y190{bottom:1098.120450px;}
.y195{bottom:1098.156495px;}
.y19b{bottom:1098.192540px;}
.y1a1{bottom:1098.228585px;}
.y1a7{bottom:1098.264630px;}
.y18f{bottom:1119.810450px;}
.y92{bottom:1126.461447px;}
.y90{bottom:1126.470450px;}
.y1{bottom:1127.010450px;}
.y93{bottom:1133.850000px;}
.y11f{bottom:1137.090450px;}
.y122{bottom:1137.359033px;}
.y11c{bottom:1137.360450px;}
.y91{bottom:1137.808724px;}
.y1d{bottom:1137.810450px;}
.y37{bottom:1138.080450px;}
.y18e{bottom:1140.872970px;}
.h17{height:20.520000px;}
.h1b{height:21.150000px;}
.h26{height:21.780000px;}
.h6{height:27.014766px;}
.h27{height:29.161276px;}
.h28{height:29.181783px;}
.hd{height:33.492056px;}
.h24{height:41.199018px;}
.h5{height:41.772832px;}
.h7{height:41.792992px;}
.h11{height:47.115955px;}
.hb{height:47.284287px;}
.h16{height:47.321367px;}
.h25{height:49.992188px;}
.h2{height:50.027344px;}
.h20{height:50.054678px;}
.h13{height:50.059445px;}
.h21{height:50.089878px;}
.hc{height:50.202155px;}
.h18{height:50.242148px;}
.h1a{height:50.277480px;}
.h29{height:52.835137px;}
.h1c{height:52.868994px;}
.h19{height:53.099150px;}
.h23{height:58.975137px;}
.h12{height:65.772824px;}
.h2d{height:66.348284px;}
.h9{height:66.388184px;}
.h2c{height:66.433694px;}
.h2b{height:66.473114px;}
.h2f{height:66.486254px;}
.h2a{height:66.492824px;}
.h1e{height:66.563382px;}
.h1d{height:69.943854px;}
.h8{height:70.628906px;}
.h14{height:70.674226px;}
.h22{height:70.717192px;}
.h1f{height:70.788392px;}
.ha{height:70.925548px;}
.h15{height:71.480482px;}
.h2e{height:72.549360px;}
.h3{height:72.562500px;}
.he{height:80.088223px;}
.h4{height:81.374062px;}
.h10{height:120.025873px;}
.h1{height:120.816562px;}
.hf{height:122.907721px;}
.h0{height:1263.000000px;}
.w2{width:9.900000px;}
.w6{width:10.260000px;}
.w4{width:10.350000px;}
.w3{width:10.710000px;}
.w7{width:10.980000px;}
.w5{width:11.610000px;}
.w8{width:12.510000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3{left:134.820000px;}
.x1{left:146.340000px;}
.x22{left:195.033172px;}
.xc{left:253.440000px;}
.x12{left:257.850000px;}
.x10{left:259.020000px;}
.xd{left:264.780000px;}
.xf{left:267.835733px;}
.x2f{left:274.313228px;}
.x31{left:277.290000px;}
.x4d{left:281.162700px;}
.x6{left:285.570000px;}
.x4e{left:287.110125px;}
.x46{left:290.065815px;}
.x34{left:291.597728px;}
.x33{left:294.553418px;}
.x11{left:296.730000px;}
.x32{left:299.059043px;}
.x41{left:302.122867px;}
.x2{left:303.742440px;}
.x47{left:305.817480px;}
.x9{left:315.900000px;}
.x14{left:318.600000px;}
.x40{left:322.380157px;}
.xe{left:326.970000px;}
.x21{left:333.810000px;}
.x29{left:351.990000px;}
.x5{left:355.140000px;}
.x15{left:360.540000px;}
.x20{left:369.000000px;}
.x8{left:376.110000px;}
.xa{left:383.670000px;}
.x13{left:386.190000px;}
.x4{left:388.170000px;}
.x28{left:393.660000px;}
.x16{left:400.590000px;}
.x1f{left:403.020000px;}
.x2d{left:405.810000px;}
.x2c{left:408.330000px;}
.x30{left:411.104003px;}
.x48{left:413.195535px;}
.x4f{left:414.655358px;}
.x36{left:416.872125px;}
.x37{left:419.124938px;}
.x35{left:422.188763px;}
.x17{left:423.720000px;}
.x27{left:425.880000px;}
.x1b{left:429.570000px;}
.x7{left:430.920000px;}
.x19{left:439.373064px;}
.x1e{left:443.520000px;}
.xb{left:445.410000px;}
.x2b{left:451.353046px;}
.x2a{left:452.970000px;}
.x1c{left:457.200000px;}
.x26{left:467.010000px;}
.x25{left:468.540000px;}
.x1a{left:472.230000px;}
.x24{left:480.237750px;}
.x18{left:482.042426px;}
.x1d{left:483.480000px;}
.x23{left:490.410000px;}
.x2e{left:496.530000px;}
.x3b{left:536.217120px;}
.x49{left:540.722745px;}
.x50{left:542.110477px;}
.x3a{left:545.210348px;}
.x39{left:546.652147px;}
.x38{left:549.715973px;}
.x43{left:552.635617px;}
.x52{left:554.113462px;}
.x4a{left:556.474410px;}
.x42{left:572.892907px;}
.x3e{left:663.654217px;}
.x53{left:668.141820px;}
.x3f{left:669.691755px;}
.x4b{left:672.665467px;}
.x3d{left:674.179357px;}
.x51{left:675.567090px;}
.x3c{left:677.153070px;}
.x45{left:680.144805px;}
.x4c{left:683.911507px;}
.x44{left:700.402095px;}
@media print{
.v5{vertical-align:-49.920000pt;}
.v7{vertical-align:-28.800000pt;}
.v2{vertical-align:-24.000000pt;}
.v6{vertical-align:-15.967991pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:0.960000pt;}
.v1{vertical-align:29.440000pt;}
.v4{vertical-align:43.868131pt;}
.v3{vertical-align:46.429773pt;}
.ls36{letter-spacing:-0.077184pt;}
.ls61{letter-spacing:-0.070488pt;}
.lsf{letter-spacing:-0.057600pt;}
.ls5d{letter-spacing:-0.051264pt;}
.ls37{letter-spacing:-0.048096pt;}
.ls5c{letter-spacing:-0.042752pt;}
.ls4a{letter-spacing:-0.038448pt;}
.ls5a{letter-spacing:-0.037408pt;}
.ls5e{letter-spacing:-0.032040pt;}
.ls5b{letter-spacing:-0.026720pt;}
.ls4c{letter-spacing:-0.025632pt;}
.ls50{letter-spacing:-0.019224pt;}
.ls2d{letter-spacing:-0.019212pt;}
.ls5f{letter-spacing:-0.019200pt;}
.ls4b{letter-spacing:-0.012816pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls51{letter-spacing:-0.006408pt;}
.lsd{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.006400pt;}
.ls3e{letter-spacing:0.006408pt;}
.ls59{letter-spacing:0.010688pt;}
.ls38{letter-spacing:0.012808pt;}
.ls3d{letter-spacing:0.012816pt;}
.ls29{letter-spacing:0.016032pt;}
.lse{letter-spacing:0.019200pt;}
.ls44{letter-spacing:0.019224pt;}
.ls46{letter-spacing:0.021376pt;}
.ls10{letter-spacing:0.025600pt;}
.ls28{letter-spacing:0.025616pt;}
.ls45{letter-spacing:0.025632pt;}
.ls56{letter-spacing:0.026720pt;}
.ls2{letter-spacing:0.032000pt;}
.ls23{letter-spacing:0.032021pt;}
.ls43{letter-spacing:0.032040pt;}
.ls2a{letter-spacing:0.037408pt;}
.ls5{letter-spacing:0.038400pt;}
.ls27{letter-spacing:0.038425pt;}
.ls3c{letter-spacing:0.038448pt;}
.ls48{letter-spacing:0.042752pt;}
.ls0{letter-spacing:0.044800pt;}
.ls3f{letter-spacing:0.044856pt;}
.ls54{letter-spacing:0.048096pt;}
.ls3{letter-spacing:0.051200pt;}
.ls24{letter-spacing:0.051233pt;}
.ls4d{letter-spacing:0.051264pt;}
.lsb{letter-spacing:0.053280pt;}
.ls6{letter-spacing:0.057600pt;}
.ls22{letter-spacing:0.057637pt;}
.ls49{letter-spacing:0.057672pt;}
.ls1d{letter-spacing:0.058784pt;}
.lsc{letter-spacing:0.063936pt;}
.ls4{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.064041pt;}
.ls40{letter-spacing:0.064080pt;}
.ls53{letter-spacing:0.064128pt;}
.ls9{letter-spacing:0.069472pt;}
.ls7{letter-spacing:0.070400pt;}
.ls3b{letter-spacing:0.070488pt;}
.lsa{letter-spacing:0.074816pt;}
.ls14{letter-spacing:0.076800pt;}
.ls4f{letter-spacing:0.076896pt;}
.ls52{letter-spacing:0.080160pt;}
.ls18{letter-spacing:0.083200pt;}
.ls26{letter-spacing:0.083253pt;}
.ls8{letter-spacing:0.085504pt;}
.ls16{letter-spacing:0.089600pt;}
.ls58{letter-spacing:0.090848pt;}
.ls62{letter-spacing:0.093067pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.096192pt;}
.ls1c{letter-spacing:0.101536pt;}
.ls47{letter-spacing:0.106880pt;}
.ls15{letter-spacing:0.108800pt;}
.ls32{letter-spacing:0.128082pt;}
.ls13{letter-spacing:0.149632pt;}
.ls1{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.160200pt;}
.ls57{letter-spacing:0.160320pt;}
.ls41{letter-spacing:2.883600pt;}
.ls39{letter-spacing:2.973067pt;}
.ls1b{letter-spacing:3.040000pt;}
.ls20{letter-spacing:34.133889pt;}
.ls31{letter-spacing:71.091988pt;}
.ls30{letter-spacing:73.391062pt;}
.ls2e{letter-spacing:84.604653pt;}
.ls2f{letter-spacing:90.216410pt;}
.ls33{letter-spacing:91.147872pt;}
.ls2c{letter-spacing:94.327318pt;}
.ls1f{letter-spacing:101.075542pt;}
.ls34{letter-spacing:113.524800pt;}
.ls35{letter-spacing:115.100640pt;}
.ls2b{letter-spacing:121.533814pt;}
.ls4e{letter-spacing:175.982904pt;}
.ls21{letter-spacing:175.991255pt;}
.ls1e{letter-spacing:176.000000pt;}
.ls60{letter-spacing:629.120000pt;}
.ls55{letter-spacing:1064.097280pt;}
.ls17{letter-spacing:1077.510720pt;}
.ls3a{letter-spacing:1317.776222pt;}
.wsb9{word-spacing:-117.142742pt;}
.wsc0{word-spacing:-109.837120pt;}
.wsbd{word-spacing:-106.250534pt;}
.wsbf{word-spacing:-75.582432pt;}
.wsd4{word-spacing:-37.157906pt;}
.ws100{word-spacing:-37.134110pt;}
.wsdb{word-spacing:-35.136000pt;}
.wsff{word-spacing:-20.495414pt;}
.wsbe{word-spacing:-16.138349pt;}
.wsba{word-spacing:-16.067200pt;}
.ws1b6{word-spacing:-16.064856pt;}
.wsd8{word-spacing:-16.020000pt;}
.ws11c{word-spacing:-16.013592pt;}
.wsda{word-spacing:-15.981552pt;}
.ws1{word-spacing:-13.434816pt;}
.wsd3{word-spacing:-12.007467pt;}
.wsfe{word-spacing:-9.333067pt;}
.ws0{word-spacing:-8.640000pt;}
.ws3{word-spacing:-0.149184pt;}
.ws2{word-spacing:-0.127872pt;}
.ws1c1{word-spacing:-0.070488pt;}
.wsc3{word-spacing:-0.070445pt;}
.ws4b{word-spacing:-0.070400pt;}
.ws1df{word-spacing:-0.064080pt;}
.wsc6{word-spacing:-0.064041pt;}
.ws107{word-spacing:-0.057672pt;}
.ws2b{word-spacing:-0.057600pt;}
.ws1a7{word-spacing:-0.051264pt;}
.wsdd{word-spacing:-0.051233pt;}
.ws6d{word-spacing:-0.051200pt;}
.ws1b2{word-spacing:-0.044856pt;}
.wsde{word-spacing:-0.044829pt;}
.ws7{word-spacing:-0.044800pt;}
.ws106{word-spacing:-0.038448pt;}
.wscc{word-spacing:-0.038425pt;}
.ws97{word-spacing:-0.038400pt;}
.ws12a{word-spacing:-0.032040pt;}
.ws6{word-spacing:-0.032000pt;}
.ws146{word-spacing:-0.025632pt;}
.ws8{word-spacing:-0.025600pt;}
.ws1b9{word-spacing:-0.019224pt;}
.ws5{word-spacing:-0.019200pt;}
.ws1b{word-spacing:-0.016032pt;}
.ws1ba{word-spacing:-0.012816pt;}
.ws1b5{word-spacing:-0.006408pt;}
.ws1de{word-spacing:-0.006400pt;}
.ws19{word-spacing:-0.005344pt;}
.ws4{word-spacing:0.000000pt;}
.wsfc{word-spacing:0.005344pt;}
.ws192{word-spacing:0.006408pt;}
.ws1a{word-spacing:0.010688pt;}
.ws18{word-spacing:0.012800pt;}
.ws1e1{word-spacing:0.012816pt;}
.ws15e{word-spacing:0.016032pt;}
.ws193{word-spacing:0.019200pt;}
.ws1e0{word-spacing:0.019224pt;}
.wsfd{word-spacing:0.037408pt;}
.wsd1{word-spacing:0.042752pt;}
.ws15f{word-spacing:0.069472pt;}
.ws15c{word-spacing:0.106880pt;}
.ws154{word-spacing:0.117568pt;}
.ws182{word-spacing:0.122912pt;}
.wsac{word-spacing:0.128000pt;}
.wsd0{word-spacing:0.128256pt;}
.wsa3{word-spacing:0.224000pt;}
.wsc9{word-spacing:0.224144pt;}
.ws10b{word-spacing:0.224280pt;}
.ws2a{word-spacing:0.236800pt;}
.ws105{word-spacing:0.249912pt;}
.ws50{word-spacing:0.262400pt;}
.wsca{word-spacing:0.262568pt;}
.ws109{word-spacing:0.269136pt;}
.wsa{word-spacing:0.275200pt;}
.ws18f{word-spacing:0.294768pt;}
.ws10a{word-spacing:0.320400pt;}
.ws195{word-spacing:0.326808pt;}
.ws18e{word-spacing:0.378072pt;}
.ws121{word-spacing:0.416520pt;}
.wsf{word-spacing:0.576000pt;}
.ws29{word-spacing:0.582400pt;}
.ws2e{word-spacing:0.595200pt;}
.wsc8{word-spacing:0.595582pt;}
.ws108{word-spacing:0.595944pt;}
.ws194{word-spacing:0.602352pt;}
.ws20{word-spacing:0.614400pt;}
.wsc7{word-spacing:0.646815pt;}
.ws68{word-spacing:0.736000pt;}
.ws96{word-spacing:0.742400pt;}
.wse{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.774400pt;}
.wsdc{word-spacing:0.826130pt;}
.ws67{word-spacing:0.915200pt;}
.ws139{word-spacing:0.916344pt;}
.ws87{word-spacing:0.921600pt;}
.ws178{word-spacing:0.922752pt;}
.ws9d{word-spacing:0.928000pt;}
.ws156{word-spacing:0.951232pt;}
.ws38{word-spacing:0.966400pt;}
.wsf5{word-spacing:0.999648pt;}
.ws177{word-spacing:1.025280pt;}
.ws138{word-spacing:1.095768pt;}
.wsa0{word-spacing:1.171200pt;}
.ws37{word-spacing:1.216000pt;}
.ws9f{word-spacing:1.222400pt;}
.ws6a{word-spacing:1.241600pt;}
.ws149{word-spacing:1.243152pt;}
.wsf4{word-spacing:1.249560pt;}
.ws155{word-spacing:1.255840pt;}
.ws69{word-spacing:1.267200pt;}
.ws55{word-spacing:1.292800pt;}
.ws136{word-spacing:1.293248pt;}
.ws9a{word-spacing:1.318400pt;}
.ws135{word-spacing:1.341344pt;}
.ws162{word-spacing:1.358496pt;}
.ws115{word-spacing:1.364904pt;}
.ws153{word-spacing:1.394784pt;}
.ws9e{word-spacing:1.433600pt;}
.ws148{word-spacing:1.435392pt;}
.ws13{word-spacing:1.536000pt;}
.ws54{word-spacing:1.542400pt;}
.ws22{word-spacing:1.555200pt;}
.ws114{word-spacing:1.563552pt;}
.ws15b{word-spacing:1.613888pt;}
.wsa7{word-spacing:1.651200pt;}
.ws21{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.824000pt;}
.ws12{word-spacing:1.862400pt;}
.ws8e{word-spacing:1.875200pt;}
.wsed{word-spacing:1.877544pt;}
.ws113{word-spacing:1.883952pt;}
.wse1{word-spacing:1.890360pt;}
.wsa6{word-spacing:1.900800pt;}
.ws6c{word-spacing:1.920000pt;}
.ws112{word-spacing:1.935216pt;}
.wse0{word-spacing:1.973664pt;}
.wsec{word-spacing:2.044152pt;}
.ws10d{word-spacing:2.159496pt;}
.ws6b{word-spacing:2.176000pt;}
.ws1e8{word-spacing:2.178720pt;}
.ws4a{word-spacing:2.182400pt;}
.ws1a9{word-spacing:2.185128pt;}
.wsa9{word-spacing:2.188800pt;}
.ws10e{word-spacing:2.210760pt;}
.ws1dd{word-spacing:2.220800pt;}
.ws10c{word-spacing:2.223576pt;}
.wseb{word-spacing:2.229984pt;}
.ws1c9{word-spacing:2.249208pt;}
.ws1a8{word-spacing:2.377368pt;}
.ws1dc{word-spacing:2.425600pt;}
.wsa8{word-spacing:2.432000pt;}
.ws16f{word-spacing:2.492712pt;}
.wsb2{word-spacing:2.496000pt;}
.ws71{word-spacing:2.508800pt;}
.wsea{word-spacing:2.511936pt;}
.ws59{word-spacing:2.515200pt;}
.ws116{word-spacing:2.524752pt;}
.ws31{word-spacing:2.528000pt;}
.ws14e{word-spacing:2.559776pt;}
.ws19a{word-spacing:2.608056pt;}
.ws1c5{word-spacing:2.640096pt;}
.ws58{word-spacing:2.662400pt;}
.ws83{word-spacing:2.688000pt;}
.ws147{word-spacing:2.697768pt;}
.ws70{word-spacing:2.822400pt;}
.ws7b{word-spacing:2.828800pt;}
.ws1d1{word-spacing:2.832336pt;}
.ws9c{word-spacing:2.835200pt;}
.wse4{word-spacing:2.838744pt;}
.wse3{word-spacing:2.845152pt;}
.ws7e{word-spacing:2.848000pt;}
.ws1c3{word-spacing:2.851560pt;}
.ws1c4{word-spacing:2.857968pt;}
.wse2{word-spacing:2.877192pt;}
.wsf0{word-spacing:2.883600pt;}
.wsc5{word-spacing:2.888252pt;}
.ws14d{word-spacing:2.901792pt;}
.ws1cd{word-spacing:2.928456pt;}
.ws158{word-spacing:2.933856pt;}
.ws53{word-spacing:2.937600pt;}
.ws191{word-spacing:2.960496pt;}
.ws9b{word-spacing:2.982400pt;}
.ws7a{word-spacing:3.040000pt;}
.ws8c{word-spacing:3.059200pt;}
.wsc4{word-spacing:3.131608pt;}
.ws190{word-spacing:3.139920pt;}
.ws8b{word-spacing:3.142400pt;}
.wse8{word-spacing:3.146328pt;}
.ws52{word-spacing:3.148800pt;}
.ws18c{word-spacing:3.152736pt;}
.wsef{word-spacing:3.159144pt;}
.ws95{word-spacing:3.161600pt;}
.wse9{word-spacing:3.165552pt;}
.ws1c2{word-spacing:3.178368pt;}
.ws24{word-spacing:3.180800pt;}
.ws13d{word-spacing:3.184776pt;}
.ws1cc{word-spacing:3.197592pt;}
.ws13c{word-spacing:3.210408pt;}
.wsce{word-spacing:3.222432pt;}
.wscd{word-spacing:3.265184pt;}
.ws14c{word-spacing:3.270528pt;}
.ws157{word-spacing:3.307936pt;}
.ws1c7{word-spacing:3.421872pt;}
.ws164{word-spacing:3.441096pt;}
.ws161{word-spacing:3.460320pt;}
.ws44{word-spacing:3.462400pt;}
.ws94{word-spacing:3.468800pt;}
.ws23{word-spacing:3.475200pt;}
.ws163{word-spacing:3.498768pt;}
.wsf6{word-spacing:3.516352pt;}
.ws1c6{word-spacing:3.537216pt;}
.ws14b{word-spacing:3.575136pt;}
.ws130{word-spacing:3.582072pt;}
.ws43{word-spacing:3.680000pt;}
.ws16a{word-spacing:3.697416pt;}
.ws1b0{word-spacing:3.761496pt;}
.ws18d{word-spacing:3.767904pt;}
.ws12f{word-spacing:3.787128pt;}
.ws99{word-spacing:3.788800pt;}
.ws86{word-spacing:3.795200pt;}
.ws169{word-spacing:3.799944pt;}
.ws160{word-spacing:3.806352pt;}
.ws8a{word-spacing:3.814400pt;}
.ws98{word-spacing:4.012800pt;}
.ws104{word-spacing:4.069080pt;}
.ws66{word-spacing:4.083200pt;}
.ws1a2{word-spacing:4.094712pt;}
.ws187{word-spacing:4.101120pt;}
.ws89{word-spacing:4.102400pt;}
.ws103{word-spacing:4.107528pt;}
.ws88{word-spacing:4.115200pt;}
.ws1ea{word-spacing:4.120344pt;}
.ws1ce{word-spacing:4.126752pt;}
.ws25{word-spacing:4.153600pt;}
.ws65{word-spacing:4.160000pt;}
.wsf3{word-spacing:4.203648pt;}
.ws1e9{word-spacing:4.216464pt;}
.ws186{word-spacing:4.363848pt;}
.wsf2{word-spacing:4.427928pt;}
.wse7{word-spacing:4.434336pt;}
.ws1a1{word-spacing:4.447152pt;}
.wsb6{word-spacing:4.472928pt;}
.ws5c{word-spacing:4.550400pt;}
.ws1a6{word-spacing:4.639392pt;}
.ws80{word-spacing:4.710400pt;}
.ws11{word-spacing:4.729600pt;}
.ws5b{word-spacing:4.742400pt;}
.wse5{word-spacing:4.748328pt;}
.ws5a{word-spacing:4.755200pt;}
.wse6{word-spacing:4.761144pt;}
.ws17a{word-spacing:4.773960pt;}
.wsfb{word-spacing:4.782880pt;}
.ws180{word-spacing:4.841664pt;}
.ws181{word-spacing:4.868384pt;}
.ws10{word-spacing:4.902400pt;}
.ws1e5{word-spacing:4.953384pt;}
.ws41{word-spacing:4.953600pt;}
.ws179{word-spacing:4.998240pt;}
.ws7f{word-spacing:5.004800pt;}
.ws40{word-spacing:5.068800pt;}
.ws10f{word-spacing:5.081544pt;}
.ws1e4{word-spacing:5.100768pt;}
.ws12e{word-spacing:5.158440pt;}
.ws4f{word-spacing:5.350400pt;}
.ws45{word-spacing:5.382400pt;}
.ws12d{word-spacing:5.401944pt;}
.ws151{word-spacing:5.413472pt;}
.ws152{word-spacing:5.418816pt;}
.ws51{word-spacing:5.523200pt;}
.ws4e{word-spacing:5.542400pt;}
.wsa5{word-spacing:5.702400pt;}
.ws4d{word-spacing:5.708800pt;}
.wsab{word-spacing:5.728000pt;}
.ws1f{word-spacing:5.798400pt;}
.ws15a{word-spacing:5.883744pt;}
.wsa4{word-spacing:6.009600pt;}
.ws1e{word-spacing:6.022400pt;}
.wsaa{word-spacing:6.028800pt;}
.ws118{word-spacing:6.036336pt;}
.ws159{word-spacing:6.081472pt;}
.ws137{word-spacing:6.209728pt;}
.wsad{word-spacing:6.265600pt;}
.ws117{word-spacing:6.299064pt;}
.ws35{word-spacing:6.393600pt;}
.ws14f{word-spacing:6.402112pt;}
.ws150{word-spacing:6.418144pt;}
.wsb8{word-spacing:6.423488pt;}
.ws1d6{word-spacing:6.427224pt;}
.ws34{word-spacing:6.668800pt;}
.ws16c{word-spacing:6.677136pt;}
.ws127{word-spacing:6.683544pt;}
.wsb7{word-spacing:6.696032pt;}
.ws16b{word-spacing:6.696360pt;}
.ws183{word-spacing:6.843744pt;}
.ws11e{word-spacing:6.895008pt;}
.ws126{word-spacing:6.959088pt;}
.ws33{word-spacing:6.982400pt;}
.ws11d{word-spacing:6.984720pt;}
.wsfa{word-spacing:7.011328pt;}
.ws15d{word-spacing:7.048736pt;}
.wsf7{word-spacing:7.059424pt;}
.wsf9{word-spacing:7.080800pt;}
.wsf8{word-spacing:7.096832pt;}
.ws1d8{word-spacing:7.125696pt;}
.ws15{word-spacing:7.180800pt;}
.ws1ae{word-spacing:7.209000pt;}
.ws14a{word-spacing:7.305120pt;}
.ws32{word-spacing:7.308800pt;}
.ws14{word-spacing:7.315200pt;}
.ws5f{word-spacing:7.328000pt;}
.ws1bc{word-spacing:7.330752pt;}
.ws85{word-spacing:7.334400pt;}
.ws1ad{word-spacing:7.337160pt;}
.ws13b{word-spacing:7.375608pt;}
.ws12c{word-spacing:7.465320pt;}
.ws84{word-spacing:7.532800pt;}
.wsb5{word-spacing:7.596800pt;}
.ws1d{word-spacing:7.609600pt;}
.ws30{word-spacing:7.616000pt;}
.ws1ac{word-spacing:7.619112pt;}
.ws1a5{word-spacing:7.625520pt;}
.ws5e{word-spacing:7.628800pt;}
.ws12b{word-spacing:7.631928pt;}
.ws13a{word-spacing:7.644744pt;}
.ws131{word-spacing:7.679328pt;}
.ws82{word-spacing:7.776000pt;}
.ws1c{word-spacing:7.808000pt;}
.ws1a4{word-spacing:7.830576pt;}
.ws2f{word-spacing:7.865600pt;}
.ws81{word-spacing:7.955200pt;}
.ws1bb{word-spacing:7.997184pt;}
.ws64{word-spacing:8.275200pt;}
.ws1d0{word-spacing:8.279136pt;}
.ws19e{word-spacing:8.291952pt;}
.ws9{word-spacing:8.294400pt;}
.ws1b1{word-spacing:8.535456pt;}
.ws1cf{word-spacing:8.567496pt;}
.ws170{word-spacing:8.573904pt;}
.ws4c{word-spacing:8.627200pt;}
.ws18b{word-spacing:8.650800pt;}
.ws19b{word-spacing:8.855856pt;}
.ws28{word-spacing:8.908800pt;}
.ws18a{word-spacing:8.913528pt;}
.ws7d{word-spacing:9.523200pt;}
.ws1ab{word-spacing:9.547920pt;}
.ws7c{word-spacing:9.657600pt;}
.ws1aa{word-spacing:9.804240pt;}
.ws197{word-spacing:9.868320pt;}
.ws79{word-spacing:9.875200pt;}
.ws123{word-spacing:9.893952pt;}
.ws78{word-spacing:9.971200pt;}
.ws196{word-spacing:9.983664pt;}
.ws27{word-spacing:10.182400pt;}
.ws122{word-spacing:10.201536pt;}
.ws26{word-spacing:10.425600pt;}
.ws5d{word-spacing:10.502400pt;}
.wscf{word-spacing:10.554400pt;}
.ws1e7{word-spacing:10.560384pt;}
.ws1e6{word-spacing:10.720584pt;}
.ws19d{word-spacing:10.848744pt;}
.ws19c{word-spacing:10.951272pt;}
.ws42{word-spacing:11.142400pt;}
.ws2c{word-spacing:11.168000pt;}
.ws143{word-spacing:11.169144pt;}
.ws1a3{word-spacing:11.194776pt;}
.wsf1{word-spacing:11.207592pt;}
.ws17f{word-spacing:11.226816pt;}
.ws77{word-spacing:11.398400pt;}
.ws17e{word-spacing:11.463912pt;}
.wsb4{word-spacing:11.475200pt;}
.ws36{word-spacing:11.494400pt;}
.ws145{word-spacing:11.502360pt;}
.ws102{word-spacing:11.515176pt;}
.wsb3{word-spacing:11.648000pt;}
.ws101{word-spacing:11.656152pt;}
.ws73{word-spacing:11.680000pt;}
.ws72{word-spacing:11.788800pt;}
.ws144{word-spacing:11.841984pt;}
.ws133{word-spacing:11.863680pt;}
.ws134{word-spacing:11.895744pt;}
.ws3b{word-spacing:12.070400pt;}
.ws3c{word-spacing:12.102400pt;}
.ws176{word-spacing:12.104712pt;}
.ws132{word-spacing:12.173632pt;}
.ws3a{word-spacing:12.320000pt;}
.ws175{word-spacing:12.373848pt;}
.ws172{word-spacing:12.745512pt;}
.ws1af{word-spacing:12.880080pt;}
.ws16e{word-spacing:13.059504pt;}
.ws8d{word-spacing:13.075200pt;}
.ws171{word-spacing:13.097952pt;}
.ws17{word-spacing:13.312000pt;}
.ws16d{word-spacing:13.322232pt;}
.ws16{word-spacing:13.382400pt;}
.ws63{word-spacing:13.452800pt;}
.wsee{word-spacing:13.463208pt;}
.ws1c0{word-spacing:13.520880pt;}
.ws62{word-spacing:13.683200pt;}
.ws1e3{word-spacing:13.706712pt;}
.ws1bf{word-spacing:13.777200pt;}
.ws199{word-spacing:13.866912pt;}
.ws1e2{word-spacing:13.892544pt;}
.ws75{word-spacing:13.900800pt;}
.ws74{word-spacing:14.016000pt;}
.ws198{word-spacing:14.039928pt;}
.ws120{word-spacing:14.353920pt;}
.ws11f{word-spacing:14.635872pt;}
.wsd{word-spacing:14.668800pt;}
.ws3e{word-spacing:14.950400pt;}
.wsc2{word-spacing:15.001600pt;}
.ws185{word-spacing:15.007536pt;}
.ws3f{word-spacing:15.014400pt;}
.ws184{word-spacing:15.116472pt;}
.wsc1{word-spacing:15.180800pt;}
.ws3d{word-spacing:15.187200pt;}
.ws125{word-spacing:15.315120pt;}
.ws1d5{word-spacing:15.334344pt;}
.ws57{word-spacing:15.360000pt;}
.ws1d7{word-spacing:15.417648pt;}
.wsa2{word-spacing:15.520000pt;}
.ws1d4{word-spacing:15.552216pt;}
.ws56{word-spacing:15.628800pt;}
.ws124{word-spacing:15.629112pt;}
.wsa1{word-spacing:15.654400pt;}
.ws166{word-spacing:15.686784pt;}
.ws129{word-spacing:15.814944pt;}
.ws111{word-spacing:15.955920pt;}
.ws165{word-spacing:15.962328pt;}
.ws1b8{word-spacing:15.975144pt;}
.ws128{word-spacing:15.994368pt;}
.ws1b7{word-spacing:16.096896pt;}
.ws110{word-spacing:16.141752pt;}
.ws1c8{word-spacing:16.199424pt;}
.ws93{word-spacing:16.377600pt;}
.ws92{word-spacing:16.582400pt;}
.ws140{word-spacing:16.596720pt;}
.ws13f{word-spacing:16.603128pt;}
.ws13e{word-spacing:16.865856pt;}
.wsaf{word-spacing:17.542400pt;}
.ws47{word-spacing:17.561600pt;}
.ws6f{word-spacing:17.568000pt;}
.wsae{word-spacing:17.715200pt;}
.ws6e{word-spacing:17.740800pt;}
.ws11b{word-spacing:17.839872pt;}
.ws46{word-spacing:17.856000pt;}
.ws49{word-spacing:18.182400pt;}
.ws168{word-spacing:18.499896pt;}
.ws48{word-spacing:18.508800pt;}
.ws142{word-spacing:18.519120pt;}
.wsc{word-spacing:18.521600pt;}
.wsb{word-spacing:18.700800pt;}
.ws167{word-spacing:18.704952pt;}
.ws141{word-spacing:18.724176pt;}
.ws189{word-spacing:18.826704pt;}
.ws188{word-spacing:19.147104pt;}
.ws39{word-spacing:19.430400pt;}
.ws17d{word-spacing:19.473912pt;}
.ws1b4{word-spacing:19.819944pt;}
.wsb1{word-spacing:19.993600pt;}
.ws1b3{word-spacing:20.076264pt;}
.wsb0{word-spacing:20.102400pt;}
.ws1a0{word-spacing:20.140344pt;}
.ws19f{word-spacing:20.435112pt;}
.ws1db{word-spacing:20.460744pt;}
.ws1da{word-spacing:20.755512pt;}
.ws17c{word-spacing:20.768328pt;}
.ws61{word-spacing:20.876800pt;}
.ws60{word-spacing:21.062400pt;}
.ws17b{word-spacing:21.101544pt;}
.ws11a{word-spacing:22.037112pt;}
.ws119{word-spacing:22.357512pt;}
.ws76{word-spacing:22.809600pt;}
.ws1d3{word-spacing:22.991904pt;}
.ws1d2{word-spacing:23.267448pt;}
.ws174{word-spacing:23.671152pt;}
.ws173{word-spacing:23.716008pt;}
.ws1d9{word-spacing:25.394904pt;}
.ws91{word-spacing:27.852800pt;}
.ws90{word-spacing:28.140800pt;}
.wscb{word-spacing:28.178069pt;}
.ws1cb{word-spacing:29.169216pt;}
.ws1ca{word-spacing:29.412720pt;}
.wsbc{word-spacing:30.925196pt;}
.ws1be{word-spacing:39.146472pt;}
.ws1bd{word-spacing:39.338712pt;}
.wsbb{word-spacing:87.217529pt;}
.wsdf{word-spacing:175.912416pt;}
.wsd5{word-spacing:304.201706pt;}
.ws1eb{word-spacing:405.318816pt;}
.wsd6{word-spacing:574.221376pt;}
.wsd2{word-spacing:672.118820pt;}
.wsd7{word-spacing:869.501520pt;}
.wsd9{word-spacing:1020.538080pt;}
._c{margin-left:-1986.048000pt;}
._3b{margin-left:-384.608160pt;}
._36{margin-left:-380.415797pt;}
._38{margin-left:-377.242555pt;}
._20{margin-left:-327.449813pt;}
._3e{margin-left:-308.030483pt;}
._3a{margin-left:-291.499920pt;}
._1c{margin-left:-288.227230pt;}
._35{margin-left:-285.798634pt;}
._37{margin-left:-280.640126pt;}
._2b{margin-left:-222.293520pt;}
._2c{margin-left:-199.288800pt;}
._2a{margin-left:-195.444000pt;}
._39{margin-left:-185.575680pt;}
._1a{margin-left:-184.246149pt;}
._21{margin-left:-183.349574pt;}
._19{margin-left:-182.068753pt;}
._f{margin-left:-176.763364pt;}
._b{margin-left:-175.872000pt;}
._26{margin-left:-173.208240pt;}
._1f{margin-left:-170.425512pt;}
._25{margin-left:-168.684380pt;}
._1b{margin-left:-167.531430pt;}
._24{margin-left:-159.974585pt;}
._23{margin-left:-158.329995pt;}
._31{margin-left:-155.714400pt;}
._22{margin-left:-154.210889pt;}
._18{margin-left:-152.930067pt;}
._1e{margin-left:-151.294080pt;}
._1d{margin-left:-149.372885pt;}
._33{margin-left:-148.345200pt;}
._3c{margin-left:-146.688000pt;}
._3d{margin-left:-144.418877pt;}
._2d{margin-left:-142.816847pt;}
._30{margin-left:-141.296400pt;}
._a{margin-left:-138.560000pt;}
._2f{margin-left:-137.579760pt;}
._32{margin-left:-132.899515pt;}
._27{margin-left:-127.711440pt;}
._29{margin-left:-123.866640pt;}
._3f{margin-left:-112.011840pt;}
._2e{margin-left:-110.922480pt;}
._28{margin-left:-109.128240pt;}
._42{margin-left:-23.773680pt;}
._34{margin-left:-20.731015pt;}
._5{margin-left:-17.792000pt;}
._6{margin-left:-15.680000pt;}
._8{margin-left:-14.784000pt;}
._3{margin-left:-11.200000pt;}
._2{margin-left:-9.587200pt;}
._d{margin-left:-8.097869pt;}
._16{margin-left:-7.162133pt;}
._4{margin-left:-3.712000pt;}
._7{margin-left:-2.496000pt;}
._1{margin-left:-0.972800pt;}
._41{width:0.908480pt;}
._15{width:1.800000pt;}
._0{width:2.707200pt;}
._10{width:8.622104pt;}
._40{width:10.239984pt;}
._e{width:12.800000pt;}
._14{width:23.669760pt;}
._13{width:28.815360pt;}
._11{width:32.867520pt;}
._12{width:34.668480pt;}
._43{width:176.027760pt;}
._9{width:330.560000pt;}
._46{width:373.439016pt;}
._48{width:389.459016pt;}
._47{width:405.459792pt;}
._44{width:407.920464pt;}
._45{width:414.091368pt;}
._17{width:837.116956pt;}
.fs4{font-size:34.560000pt;}
.fsf{font-size:37.332267pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:42.693867pt;}
.fs6{font-size:42.846400pt;}
.fsa{font-size:42.880000pt;}
.fsc{font-size:48.029867pt;}
.fs3{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:64.041067pt;}
.fse{font-size:64.080000pt;}
.fs5{font-size:64.268800pt;}
.fs9{font-size:64.320000pt;}
.fs10{font-size:67.639544pt;}
.fsd{font-size:67.682888pt;}
.fsb{font-size:67.977534pt;}
.fs0{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:3.520400pt;}
.y84{bottom:3.520533pt;}
.y36{bottom:51.067067pt;}
.y1c{bottom:99.062587pt;}
.yae{bottom:99.089067pt;}
.y8f{bottom:105.155867pt;}
.yf5{bottom:108.271467pt;}
.y107{bottom:109.871600pt;}
.y1b{bottom:114.662587pt;}
.y35{bottom:116.587067pt;}
.y113{bottom:116.601667pt;}
.y118{bottom:116.751447pt;}
.y5f{bottom:116.907067pt;}
.y72{bottom:121.875867pt;}
.ycb{bottom:124.515960pt;}
.y51{bottom:125.707067pt;}
.yad{bottom:130.284667pt;}
.y18d{bottom:130.987067pt;}
.y1a{bottom:136.267067pt;}
.y8e{bottom:136.351467pt;}
.yf4{bottom:145.467067pt;}
.y19{bottom:145.867067pt;}
.y106{bottom:147.067200pt;}
.y138{bottom:150.107067pt;}
.y11b{bottom:152.987067pt;}
.y71{bottom:153.071467pt;}
.y34{bottom:153.867067pt;}
.y112{bottom:153.880207pt;}
.y117{bottom:154.029987pt;}
.y5e{bottom:154.187067pt;}
.yf3{bottom:155.089067pt;}
.y105{bottom:156.667067pt;}
.yac{bottom:161.480267pt;}
.yca{bottom:161.794500pt;}
.y50{bottom:162.987067pt;}
.y18c{bottom:168.427067pt;}
.y8d{bottom:173.547067pt;}
.y8c{bottom:183.142587pt;}
.y18{bottom:184.747067pt;}
.yf2{bottom:186.284667pt;}
.y18b{bottom:187.311447pt;}
.y137{bottom:187.547067pt;}
.y70{bottom:190.267067pt;}
.y207{bottom:190.841867pt;}
.y11a{bottom:191.067067pt;}
.y33{bottom:191.147067pt;}
.y111{bottom:191.158747pt;}
.y116{bottom:191.308527pt;}
.y5d{bottom:191.467067pt;}
.y104{bottom:191.499187pt;}
.yab{bottom:192.675867pt;}
.y8b{bottom:198.747067pt;}
.yc9{bottom:199.073040pt;}
.y6f{bottom:199.867067pt;}
.y4f{bottom:200.267067pt;}
.y206{bottom:209.473127pt;}
.yf1{bottom:217.480267pt;}
.y17{bottom:222.027067pt;}
.yaa{bottom:223.871467pt;}
.ydc{bottom:223.889067pt;}
.y18a{bottom:224.589987pt;}
.y136{bottom:224.987067pt;}
.y205{bottom:228.104387pt;}
.y32{bottom:228.427067pt;}
.y110{bottom:228.437287pt;}
.y119{bottom:228.507067pt;}
.y115{bottom:228.587067pt;}
.y5c{bottom:228.747067pt;}
.y103{bottom:228.777727pt;}
.y8a{bottom:233.521704pt;}
.y6e{bottom:234.667067pt;}
.yc8{bottom:236.351580pt;}
.y4e{bottom:237.547067pt;}
.y204{bottom:246.735647pt;}
.yf0{bottom:248.675867pt;}
.ydb{bottom:255.084667pt;}
.y16{bottom:259.307067pt;}
.ya9{bottom:261.067067pt;}
.y189{bottom:261.868527pt;}
.y135{bottom:262.427067pt;}
.y203{bottom:265.366907pt;}
.y31{bottom:265.707067pt;}
.y10f{bottom:265.715827pt;}
.y114{bottom:265.787067pt;}
.y5b{bottom:266.027067pt;}
.y102{bottom:266.056267pt;}
.ya8{bottom:270.667067pt;}
.y89{bottom:270.809615pt;}
.y6d{bottom:271.947067pt;}
.yc7{bottom:273.630120pt;}
.y4d{bottom:274.827067pt;}
.yef{bottom:279.871467pt;}
.y202{bottom:283.998167pt;}
.yda{bottom:286.280267pt;}
.y15{bottom:296.587067pt;}
.y188{bottom:299.147067pt;}
.y134{bottom:299.867067pt;}
.y201{bottom:302.629427pt;}
.y30{bottom:302.987067pt;}
.y10e{bottom:302.994367pt;}
.y5a{bottom:303.307067pt;}
.y101{bottom:303.334807pt;}
.y88{bottom:308.097526pt;}
.y6c{bottom:309.227067pt;}
.yc6{bottom:310.908660pt;}
.y4c{bottom:312.107067pt;}
.yee{bottom:317.067067pt;}
.yd9{bottom:317.475867pt;}
.y200{bottom:321.260687pt;}
.yed{bottom:326.693467pt;}
.y14{bottom:333.867067pt;}
.y187{bottom:336.347067pt;}
.y133{bottom:337.307067pt;}
.y1ff{bottom:339.891947pt;}
.y2f{bottom:340.267067pt;}
.y10d{bottom:340.272907pt;}
.y59{bottom:340.587067pt;}
.y100{bottom:340.613347pt;}
.y87{bottom:345.385437pt;}
.y6b{bottom:346.507067pt;}
.yc5{bottom:348.187200pt;}
.yd8{bottom:348.671467pt;}
.y4b{bottom:349.387067pt;}
.ya7{bottom:350.116087pt;}
.yec{bottom:357.889067pt;}
.y1fe{bottom:358.523207pt;}
.y13{bottom:371.147067pt;}
.y186{bottom:373.787067pt;}
.y132{bottom:374.747067pt;}
.y1fd{bottom:377.154467pt;}
.y2e{bottom:377.547067pt;}
.y10c{bottom:377.551447pt;}
.y58{bottom:377.867067pt;}
.yff{bottom:377.891887pt;}
.y86{bottom:382.673349pt;}
.y6a{bottom:383.787067pt;}
.yc4{bottom:385.387200pt;}
.yd7{bottom:385.867067pt;}
.y4a{bottom:386.667067pt;}
.ya6{bottom:387.394627pt;}
.yeb{bottom:389.084667pt;}
.yd6{bottom:395.467067pt;}
.y1fc{bottom:395.785727pt;}
.y12{bottom:408.427067pt;}
.y185{bottom:411.312907pt;}
.y131{bottom:412.187067pt;}
.y1fb{bottom:414.416987pt;}
.y2d{bottom:414.827067pt;}
.y10b{bottom:414.829987pt;}
.y57{bottom:415.147067pt;}
.yfe{bottom:415.170427pt;}
.y82{bottom:418.987200pt;}
.y83{bottom:419.546667pt;}
.yea{bottom:420.280267pt;}
.y69{bottom:421.067067pt;}
.yc3{bottom:422.827200pt;}
.y81{bottom:422.956438pt;}
.y85{bottom:423.067200pt;}
.y49{bottom:423.947067pt;}
.ya5{bottom:424.673167pt;}
.y1fa{bottom:433.048247pt;}
.y11{bottom:445.707067pt;}
.y184{bottom:448.591447pt;}
.y130{bottom:449.627067pt;}
.ye9{bottom:451.475867pt;}
.y1f9{bottom:451.679507pt;}
.y2c{bottom:452.107067pt;}
.y10a{bottom:452.108527pt;}
.y56{bottom:452.427067pt;}
.yd5{bottom:452.441667pt;}
.yfd{bottom:452.448967pt;}
.y68{bottom:458.347067pt;}
.y80{bottom:460.244349pt;}
.yc2{bottom:460.351347pt;}
.y48{bottom:461.227067pt;}
.ya4{bottom:461.951707pt;}
.y1f8{bottom:470.310767pt;}
.y47{bottom:479.867067pt;}
.ye8{bottom:482.671467pt;}
.y10{bottom:482.987067pt;}
.y183{bottom:485.869987pt;}
.y12f{bottom:487.067067pt;}
.y1f7{bottom:488.942027pt;}
.y2b{bottom:489.387067pt;}
.y55{bottom:489.707067pt;}
.yd4{bottom:489.720207pt;}
.yfc{bottom:489.727507pt;}
.y67{bottom:495.627067pt;}
.y7f{bottom:497.532260pt;}
.yc1{bottom:497.629887pt;}
.ya3{bottom:499.230247pt;}
.y1f6{bottom:507.573287pt;}
.y46{bottom:517.067067pt;}
.ye7{bottom:519.867067pt;}
.yf{bottom:520.267067pt;}
.y182{bottom:523.148527pt;}
.y12e{bottom:524.507067pt;}
.y1f5{bottom:526.204547pt;}
.y109{bottom:526.587067pt;}
.y2a{bottom:526.667067pt;}
.y54{bottom:526.987067pt;}
.yd3{bottom:526.998747pt;}
.yfb{bottom:527.006047pt;}
.ye6{bottom:529.467067pt;}
.y66{bottom:532.907067pt;}
.y7e{bottom:534.820171pt;}
.yc0{bottom:534.908427pt;}
.y45{bottom:535.378107pt;}
.ya2{bottom:536.508787pt;}
.y1f4{bottom:544.835807pt;}
.y44{bottom:550.982587pt;}
.ye{bottom:557.547067pt;}
.y181{bottom:560.428527pt;}
.y12d{bottom:561.947067pt;}
.y1f3{bottom:563.467067pt;}
.y29{bottom:563.947067pt;}
.y108{bottom:564.027067pt;}
.y53{bottom:564.267067pt;}
.yd2{bottom:564.277287pt;}
.ye5{bottom:564.280207pt;}
.yfa{bottom:564.284587pt;}
.y43{bottom:566.587067pt;}
.y65{bottom:570.187067pt;}
.y7d{bottom:572.108082pt;}
.ybf{bottom:572.186967pt;}
.ya1{bottom:573.787327pt;}
.y1e2{bottom:582.773287pt;}
.y1e6{bottom:582.805327pt;}
.y1ea{bottom:582.837367pt;}
.y1ee{bottom:582.869407pt;}
.y1f2{bottom:582.901447pt;}
.yd{bottom:594.827067pt;}
.y180{bottom:597.707067pt;}
.y12c{bottom:599.474367pt;}
.y28{bottom:601.227067pt;}
.y42{bottom:601.307067pt;}
.y1e1{bottom:601.404547pt;}
.y1e5{bottom:601.436587pt;}
.y1e9{bottom:601.468627pt;}
.y1ed{bottom:601.500667pt;}
.y1f1{bottom:601.532707pt;}
.y52{bottom:601.547067pt;}
.yd1{bottom:601.555827pt;}
.ye4{bottom:601.558747pt;}
.yf9{bottom:601.563127pt;}
.y64{bottom:607.467067pt;}
.ybe{bottom:609.465507pt;}
.y7b{bottom:609.476044pt;}
.ya0{bottom:612.027067pt;}
.yc{bottom:613.307067pt;}
.y7c{bottom:616.427067pt;}
.y17f{bottom:616.995807pt;}
.y1e0{bottom:620.035807pt;}
.y1e4{bottom:620.067847pt;}
.y1e8{bottom:620.099887pt;}
.y1ec{bottom:620.131927pt;}
.y1f0{bottom:620.163967pt;}
.y7a{bottom:620.427067pt;}
.y17e{bottom:635.627067pt;}
.y12b{bottom:636.752907pt;}
.y27{bottom:638.507067pt;}
.y1df{bottom:638.667067pt;}
.y1e3{bottom:638.699107pt;}
.y1e7{bottom:638.731147pt;}
.y1eb{bottom:638.763187pt;}
.y1ef{bottom:638.795227pt;}
.y41{bottom:638.827067pt;}
.yd0{bottom:638.834367pt;}
.ye3{bottom:638.837287pt;}
.yf8{bottom:638.841667pt;}
.y63{bottom:644.747067pt;}
.ybd{bottom:646.744047pt;}
.y9f{bottom:650.349107pt;}
.yb{bottom:650.747067pt;}
.y17d{bottom:655.014847pt;}
.y1d4{bottom:658.022940pt;}
.y1de{bottom:658.087020pt;}
.y79{bottom:669.387067pt;}
.y173{bottom:673.582027pt;}
.y17c{bottom:673.646107pt;}
.y12a{bottom:674.031447pt;}
.y26{bottom:675.787067pt;}
.y40{bottom:676.107067pt;}
.ycf{bottom:676.112907pt;}
.ye2{bottom:676.115827pt;}
.yf7{bottom:676.120207pt;}
.y1cb{bottom:676.622160pt;}
.y1d3{bottom:676.654200pt;}
.y1dd{bottom:676.718280pt;}
.y62{bottom:682.027067pt;}
.yb7{bottom:684.187067pt;}
.y9e{bottom:687.627647pt;}
.ya{bottom:688.187067pt;}
.y172{bottom:692.213287pt;}
.y177{bottom:692.245327pt;}
.y17b{bottom:692.277367pt;}
.y1ca{bottom:695.253420pt;}
.y1d2{bottom:695.301480pt;}
.y1d8{bottom:695.333520pt;}
.y1dc{bottom:695.365560pt;}
.ybc{bottom:700.427067pt;}
.yb6{bottom:700.438567pt;}
.y78{bottom:706.667067pt;}
.yb8{bottom:708.583703pt;}
.yba{bottom:709.066667pt;}
.y171{bottom:710.844547pt;}
.y176{bottom:710.876587pt;}
.y17a{bottom:710.908627pt;}
.y129{bottom:711.309987pt;}
.yb9{bottom:712.585527pt;}
.ybb{bottom:712.587067pt;}
.y25{bottom:713.067067pt;}
.y3f{bottom:713.387067pt;}
.yce{bottom:713.391447pt;}
.ye1{bottom:713.394367pt;}
.yf6{bottom:713.398747pt;}
.y1c9{bottom:713.884680pt;}
.y1ce{bottom:713.916720pt;}
.y1d1{bottom:713.932740pt;}
.y1d7{bottom:713.964780pt;}
.y1db{bottom:713.996820pt;}
.y61{bottom:715.707067pt;}
.y9d{bottom:724.906187pt;}
.y9{bottom:725.627067pt;}
.y170{bottom:729.475807pt;}
.y175{bottom:729.507847pt;}
.y179{bottom:729.539887pt;}
.y1c8{bottom:732.515940pt;}
.y1cd{bottom:732.547980pt;}
.y1d0{bottom:732.564000pt;}
.y1d6{bottom:732.596040pt;}
.y1da{bottom:732.628080pt;}
.y77{bottom:743.947067pt;}
.y16f{bottom:748.107067pt;}
.y174{bottom:748.139107pt;}
.y178{bottom:748.171147pt;}
.y128{bottom:748.588527pt;}
.y24{bottom:750.347067pt;}
.y60{bottom:750.427067pt;}
.y3e{bottom:750.667067pt;}
.ycd{bottom:750.669987pt;}
.ye0{bottom:750.672907pt;}
.yb5{bottom:750.677287pt;}
.y1c7{bottom:751.147200pt;}
.y1cc{bottom:751.179240pt;}
.y1cf{bottom:751.195260pt;}
.y1d5{bottom:751.227300pt;}
.y1d9{bottom:751.259340pt;}
.y9c{bottom:762.184727pt;}
.y8{bottom:763.067067pt;}
.y15c{bottom:767.446787pt;}
.y162{bottom:767.478827pt;}
.y168{bottom:767.510867pt;}
.y16e{bottom:767.542907pt;}
.y1b6{bottom:770.422707pt;}
.y1ba{bottom:770.454747pt;}
.y1c0{bottom:770.486787pt;}
.y1c6{bottom:770.518827pt;}
.y74{bottom:780.187067pt;}
.y76{bottom:780.187752pt;}
.y73{bottom:784.267067pt;}
.y127{bottom:785.867067pt;}
.y156{bottom:786.062027pt;}
.y15b{bottom:786.078047pt;}
.y161{bottom:786.110087pt;}
.y167{bottom:786.142127pt;}
.y16d{bottom:786.174167pt;}
.y23{bottom:787.627067pt;}
.y3d{bottom:787.947067pt;}
.ycc{bottom:787.948527pt;}
.ydf{bottom:787.951447pt;}
.yb4{bottom:787.955827pt;}
.y1b1{bottom:789.037947pt;}
.y1b5{bottom:789.053967pt;}
.y1b9{bottom:789.086007pt;}
.y1bf{bottom:789.118047pt;}
.y1c5{bottom:789.150087pt;}
.y75{bottom:791.467067pt;}
.y9a{bottom:798.986667pt;}
.y7{bottom:800.507067pt;}
.y99{bottom:802.491245pt;}
.y9b{bottom:802.507067pt;}
.y155{bottom:804.693287pt;}
.y15a{bottom:804.709307pt;}
.y160{bottom:804.741347pt;}
.y166{bottom:804.773387pt;}
.y16c{bottom:804.805427pt;}
.y1b0{bottom:807.685227pt;}
.y1b8{bottom:807.717267pt;}
.y1be{bottom:807.749307pt;}
.y1c4{bottom:807.781347pt;}
.y154{bottom:823.324547pt;}
.y159{bottom:823.356587pt;}
.y15f{bottom:823.388627pt;}
.y165{bottom:823.420667pt;}
.y16b{bottom:823.452707pt;}
.y125{bottom:823.789987pt;}
.y22{bottom:824.907067pt;}
.y3c{bottom:825.227067pt;}
.yde{bottom:825.229987pt;}
.yb3{bottom:825.234367pt;}
.y1b4{bottom:826.316487pt;}
.y1af{bottom:826.332507pt;}
.y1b7{bottom:826.348527pt;}
.y1bd{bottom:826.380567pt;}
.y1c3{bottom:826.412607pt;}
.y6{bottom:837.947067pt;}
.y98{bottom:839.779156pt;}
.y153{bottom:841.955807pt;}
.y158{bottom:841.987847pt;}
.y15e{bottom:842.019887pt;}
.y164{bottom:842.051927pt;}
.y16a{bottom:842.083967pt;}
.y1b3{bottom:844.947747pt;}
.y1ae{bottom:844.979787pt;}
.y1bc{bottom:845.011827pt;}
.y1c2{bottom:845.043867pt;}
.y152{bottom:860.587067pt;}
.y157{bottom:860.619107pt;}
.y15d{bottom:860.651147pt;}
.y163{bottom:860.683187pt;}
.y169{bottom:860.715227pt;}
.y124{bottom:861.068527pt;}
.y21{bottom:862.187067pt;}
.y3b{bottom:862.507067pt;}
.ydd{bottom:862.508527pt;}
.yb2{bottom:862.512907pt;}
.y1b2{bottom:863.595027pt;}
.y1ad{bottom:863.627067pt;}
.y1bb{bottom:863.659107pt;}
.y1c1{bottom:863.691147pt;}
.y5{bottom:875.387067pt;}
.y97{bottom:877.051387pt;}
.y13f{bottom:879.894747pt;}
.y145{bottom:879.926787pt;}
.y14b{bottom:879.958827pt;}
.y151{bottom:879.990867pt;}
.y19a{bottom:882.966787pt;}
.y1a0{bottom:882.998827pt;}
.y1a6{bottom:883.030867pt;}
.y1ac{bottom:883.062907pt;}
.y126{bottom:898.107067pt;}
.y123{bottom:898.347067pt;}
.y13d{bottom:898.509987pt;}
.y13e{bottom:898.526007pt;}
.y144{bottom:898.558047pt;}
.y14a{bottom:898.590087pt;}
.y150{bottom:898.622127pt;}
.y20{bottom:899.467067pt;}
.y3a{bottom:899.787067pt;}
.yb1{bottom:899.791447pt;}
.y194{bottom:901.582027pt;}
.y199{bottom:901.598047pt;}
.y19f{bottom:901.630087pt;}
.y1a5{bottom:901.662127pt;}
.y1ab{bottom:901.694167pt;}
.y4{bottom:912.827067pt;}
.y96{bottom:914.339298pt;}
.y13c{bottom:917.157267pt;}
.y143{bottom:917.189307pt;}
.y149{bottom:917.221347pt;}
.y14f{bottom:917.253387pt;}
.y193{bottom:920.213287pt;}
.y198{bottom:920.229307pt;}
.y19e{bottom:920.261347pt;}
.y1a4{bottom:920.293387pt;}
.y1aa{bottom:920.325427pt;}
.y13b{bottom:935.804547pt;}
.y142{bottom:935.836587pt;}
.y148{bottom:935.868627pt;}
.y14e{bottom:935.900667pt;}
.y121{bottom:936.268527pt;}
.y11e{bottom:936.429987pt;}
.y1f{bottom:936.747067pt;}
.y39{bottom:937.067067pt;}
.yb0{bottom:937.069987pt;}
.y192{bottom:938.844547pt;}
.y197{bottom:938.860567pt;}
.y19d{bottom:938.892607pt;}
.y1a3{bottom:938.924647pt;}
.y1a9{bottom:938.956687pt;}
.y3{bottom:950.347067pt;}
.y95{bottom:951.627209pt;}
.y13a{bottom:954.435807pt;}
.y141{bottom:954.467847pt;}
.y147{bottom:954.499887pt;}
.y14d{bottom:954.531927pt;}
.y191{bottom:957.475807pt;}
.y196{bottom:957.507847pt;}
.y19c{bottom:957.539887pt;}
.y1a2{bottom:957.571927pt;}
.y1a8{bottom:957.603967pt;}
.y2{bottom:971.151067pt;}
.y139{bottom:973.067067pt;}
.y140{bottom:973.099107pt;}
.y146{bottom:973.131147pt;}
.y14c{bottom:973.163187pt;}
.y120{bottom:973.547067pt;}
.y11d{bottom:973.708527pt;}
.y1e{bottom:973.947067pt;}
.y38{bottom:974.347067pt;}
.yaf{bottom:974.348527pt;}
.y190{bottom:976.107067pt;}
.y195{bottom:976.139107pt;}
.y19b{bottom:976.171147pt;}
.y1a1{bottom:976.203187pt;}
.y1a7{bottom:976.235227pt;}
.y18f{bottom:995.387067pt;}
.y92{bottom:1001.299064pt;}
.y90{bottom:1001.307067pt;}
.y1{bottom:1001.787067pt;}
.y93{bottom:1007.866667pt;}
.y11f{bottom:1010.747067pt;}
.y122{bottom:1010.985807pt;}
.y11c{bottom:1010.987067pt;}
.y91{bottom:1011.385532pt;}
.y1d{bottom:1011.387067pt;}
.y37{bottom:1011.627067pt;}
.y18e{bottom:1014.109307pt;}
.h17{height:18.240000pt;}
.h1b{height:18.800000pt;}
.h26{height:19.360000pt;}
.h6{height:24.013125pt;}
.h27{height:25.921134pt;}
.h28{height:25.939363pt;}
.hd{height:29.770716pt;}
.h24{height:36.621349pt;}
.h5{height:37.131406pt;}
.h7{height:37.149326pt;}
.h11{height:41.880849pt;}
.hb{height:42.030477pt;}
.h16{height:42.063437pt;}
.h25{height:44.437500pt;}
.h2{height:44.468750pt;}
.h20{height:44.493047pt;}
.h13{height:44.497284pt;}
.h21{height:44.524336pt;}
.hc{height:44.624138pt;}
.h18{height:44.659687pt;}
.h1a{height:44.691094pt;}
.h29{height:46.964566pt;}
.h1c{height:46.994662pt;}
.h19{height:47.199245pt;}
.h23{height:52.422344pt;}
.h12{height:58.464733pt;}
.h2d{height:58.976253pt;}
.h9{height:59.011719pt;}
.h2c{height:59.052173pt;}
.h2b{height:59.087213pt;}
.h2f{height:59.098893pt;}
.h2a{height:59.104733pt;}
.h1e{height:59.167451pt;}
.h1d{height:62.172315pt;}
.h8{height:62.781250pt;}
.h14{height:62.821535pt;}
.h22{height:62.859727pt;}
.h1f{height:62.923015pt;}
.ha{height:63.044931pt;}
.h15{height:63.538206pt;}
.h2e{height:64.488320pt;}
.h3{height:64.500000pt;}
.he{height:71.189531pt;}
.h4{height:72.332500pt;}
.h10{height:106.689665pt;}
.h1{height:107.392500pt;}
.hf{height:109.251308pt;}
.h0{height:1122.666667pt;}
.w2{width:8.800000pt;}
.w6{width:9.120000pt;}
.w4{width:9.200000pt;}
.w3{width:9.520000pt;}
.w7{width:9.760000pt;}
.w5{width:10.320000pt;}
.w8{width:11.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3{left:119.840000pt;}
.x1{left:130.080000pt;}
.x22{left:173.362820pt;}
.xc{left:225.280000pt;}
.x12{left:229.200000pt;}
.x10{left:230.240000pt;}
.xd{left:235.360000pt;}
.xf{left:238.076207pt;}
.x2f{left:243.833980pt;}
.x31{left:246.480000pt;}
.x4d{left:249.922400pt;}
.x6{left:253.840000pt;}
.x4e{left:255.209000pt;}
.x46{left:257.836280pt;}
.x34{left:259.197980pt;}
.x33{left:261.825260pt;}
.x11{left:263.760000pt;}
.x32{left:265.830260pt;}
.x41{left:268.553660pt;}
.x2{left:269.993280pt;}
.x47{left:271.837760pt;}
.x9{left:280.800000pt;}
.x14{left:283.200000pt;}
.x40{left:286.560140pt;}
.xe{left:290.640000pt;}
.x21{left:296.720000pt;}
.x29{left:312.880000pt;}
.x5{left:315.680000pt;}
.x15{left:320.480000pt;}
.x20{left:328.000000pt;}
.x8{left:334.320000pt;}
.xa{left:341.040000pt;}
.x13{left:343.280000pt;}
.x4{left:345.040000pt;}
.x28{left:349.920000pt;}
.x16{left:356.080000pt;}
.x1f{left:358.240000pt;}
.x2d{left:360.720000pt;}
.x2c{left:362.960000pt;}
.x30{left:365.425780pt;}
.x48{left:367.284920pt;}
.x4f{left:368.582540pt;}
.x36{left:370.553000pt;}
.x37{left:372.555500pt;}
.x35{left:375.278900pt;}
.x17{left:376.640000pt;}
.x27{left:378.560000pt;}
.x1b{left:381.840000pt;}
.x7{left:383.040000pt;}
.x19{left:390.553834pt;}
.x1e{left:394.240000pt;}
.xb{left:395.920000pt;}
.x2b{left:401.202708pt;}
.x2a{left:402.640000pt;}
.x1c{left:406.400000pt;}
.x26{left:415.120000pt;}
.x25{left:416.480000pt;}
.x1a{left:419.760000pt;}
.x24{left:426.878000pt;}
.x18{left:428.482156pt;}
.x1d{left:429.760000pt;}
.x23{left:435.920000pt;}
.x2e{left:441.360000pt;}
.x3b{left:476.637440pt;}
.x49{left:480.642440pt;}
.x50{left:481.875980pt;}
.x3a{left:484.631420pt;}
.x39{left:485.913020pt;}
.x38{left:488.636420pt;}
.x43{left:491.231660pt;}
.x52{left:492.545300pt;}
.x4a{left:494.643920pt;}
.x42{left:509.238140pt;}
.x3e{left:589.914860pt;}
.x53{left:593.903840pt;}
.x3f{left:595.281560pt;}
.x4b{left:597.924860pt;}
.x3d{left:599.270540pt;}
.x51{left:600.504080pt;}
.x3c{left:601.913840pt;}
.x45{left:604.573160pt;}
.x4c{left:607.921340pt;}
.x44{left:622.579640pt;}
}




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