
    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_f51a8519f76620d03cdd4a0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.789062;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_0de73c26017d94cc076d8aa5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.670898;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_755a71160613cf7529f54d77.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.924316;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_802d38f81e19a3a3818c9ae5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_5398d16eec6055c41bc19c6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-12.957600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.775264px;}
.ls26{letter-spacing:-1.123488px;}
.ls4c{letter-spacing:-0.412344px;}
.ls70{letter-spacing:-0.406368px;}
.ls34{letter-spacing:-0.394416px;}
.ls2b{letter-spacing:-0.388440px;}
.ls1e{letter-spacing:-0.382464px;}
.ls21{letter-spacing:-0.376488px;}
.ls1d{letter-spacing:-0.370512px;}
.ls46{letter-spacing:-0.364536px;}
.ls1c{letter-spacing:-0.358560px;}
.ls23{letter-spacing:-0.352584px;}
.ls3a{letter-spacing:-0.346608px;}
.ls25{letter-spacing:-0.340632px;}
.ls20{letter-spacing:-0.334656px;}
.ls42{letter-spacing:-0.328680px;}
.ls22{letter-spacing:-0.322704px;}
.ls2e{letter-spacing:-0.316728px;}
.ls35{letter-spacing:-0.310752px;}
.ls6c{letter-spacing:-0.304776px;}
.ls2d{letter-spacing:-0.298800px;}
.ls1a{letter-spacing:-0.292824px;}
.ls4d{letter-spacing:-0.280872px;}
.ls27{letter-spacing:-0.262944px;}
.ls6d{letter-spacing:-0.250992px;}
.ls4e{letter-spacing:-0.245016px;}
.ls67{letter-spacing:-0.239040px;}
.ls5d{letter-spacing:-0.233064px;}
.ls49{letter-spacing:-0.227088px;}
.ls3b{letter-spacing:-0.221112px;}
.ls64{letter-spacing:-0.215136px;}
.ls43{letter-spacing:-0.209160px;}
.ls4f{letter-spacing:-0.203184px;}
.ls44{letter-spacing:-0.197208px;}
.ls5c{letter-spacing:-0.191232px;}
.ls66{letter-spacing:-0.185256px;}
.ls48{letter-spacing:-0.179280px;}
.ls73{letter-spacing:-0.173304px;}
.ls37{letter-spacing:-0.167328px;}
.ls45{letter-spacing:-0.161352px;}
.ls39{letter-spacing:-0.155376px;}
.ls38{letter-spacing:-0.149400px;}
.ls5e{letter-spacing:-0.143424px;}
.ls4b{letter-spacing:-0.131472px;}
.ls14{letter-spacing:-0.129600px;}
.ls15{letter-spacing:-0.125496px;}
.ls3c{letter-spacing:-0.113544px;}
.ls55{letter-spacing:-0.053784px;}
.ls74{letter-spacing:-0.047808px;}
.ls24{letter-spacing:-0.041832px;}
.ls65{letter-spacing:-0.035856px;}
.ls50{letter-spacing:-0.029880px;}
.ls51{letter-spacing:-0.023904px;}
.ls6e{letter-spacing:-0.017928px;}
.ls41{letter-spacing:-0.011952px;}
.ls16{letter-spacing:-0.005976px;}
.ls19{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.005976px;}
.ls1b{letter-spacing:0.011952px;}
.ls6{letter-spacing:0.017928px;}
.ls11{letter-spacing:0.023904px;}
.ls2{letter-spacing:0.029880px;}
.lsa{letter-spacing:0.035856px;}
.ls12{letter-spacing:0.041832px;}
.ls9{letter-spacing:0.047808px;}
.ls0{letter-spacing:0.053784px;}
.lsb{letter-spacing:0.059760px;}
.ls3{letter-spacing:0.065736px;}
.ls4{letter-spacing:0.071712px;}
.ls1{letter-spacing:0.077688px;}
.ls60{letter-spacing:0.083664px;}
.lsc{letter-spacing:0.089640px;}
.ls47{letter-spacing:0.095616px;}
.ls5a{letter-spacing:0.101592px;}
.ls61{letter-spacing:0.107568px;}
.ls6f{letter-spacing:0.113544px;}
.ls5f{letter-spacing:0.119520px;}
.ls6a{letter-spacing:0.125496px;}
.ls63{letter-spacing:0.131472px;}
.ls10{letter-spacing:0.137448px;}
.ls57{letter-spacing:0.143424px;}
.ls2c{letter-spacing:0.149400px;}
.ls7{letter-spacing:0.155376px;}
.ls56{letter-spacing:0.161352px;}
.ls8{letter-spacing:0.167328px;}
.ls3d{letter-spacing:0.173304px;}
.ls58{letter-spacing:0.179280px;}
.lsf{letter-spacing:0.185256px;}
.ls6b{letter-spacing:0.191232px;}
.ls3f{letter-spacing:0.197208px;}
.ls5{letter-spacing:0.203184px;}
.lsd{letter-spacing:0.209160px;}
.ls59{letter-spacing:0.215136px;}
.ls72{letter-spacing:0.221112px;}
.ls3e{letter-spacing:0.227088px;}
.ls4a{letter-spacing:0.233064px;}
.ls5b{letter-spacing:0.239040px;}
.ls32{letter-spacing:0.245016px;}
.ls17{letter-spacing:0.250992px;}
.ls29{letter-spacing:0.256968px;}
.ls2a{letter-spacing:0.262944px;}
.lse{letter-spacing:0.268920px;}
.ls69{letter-spacing:0.274896px;}
.ls52{letter-spacing:0.280872px;}
.ls28{letter-spacing:0.286848px;}
.ls1f{letter-spacing:0.292824px;}
.ls2f{letter-spacing:0.298800px;}
.ls31{letter-spacing:0.304776px;}
.ls18{letter-spacing:0.310752px;}
.ls53{letter-spacing:0.316728px;}
.ls71{letter-spacing:0.322704px;}
.ls68{letter-spacing:0.328680px;}
.ls62{letter-spacing:0.334656px;}
.ls40{letter-spacing:0.340632px;}
.ls36{letter-spacing:0.346608px;}
.ls30{letter-spacing:0.352584px;}
.ls13{letter-spacing:0.358560px;}
.ls78{letter-spacing:0.364536px;}
.ls76{letter-spacing:0.382464px;}
.ls77{letter-spacing:0.388440px;}
.ls75{letter-spacing:0.394416px;}
.ls79{letter-spacing:0.484056px;}
.ls54{letter-spacing:0.675288px;}
.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;}
}
.wsb7{word-spacing:-15.298560px;}
.wsb0{word-spacing:-15.017688px;}
.ws79{word-spacing:-14.987808px;}
.wsda{word-spacing:-14.981832px;}
.wsaf{word-spacing:-14.975856px;}
.wsae{word-spacing:-14.969880px;}
.ws4f{word-spacing:-14.957928px;}
.ws9d{word-spacing:-14.951952px;}
.wsa9{word-spacing:-14.945976px;}
.ws5f{word-spacing:-14.940000px;}
.ws4d{word-spacing:-14.934024px;}
.ws58{word-spacing:-14.928048px;}
.wse2{word-spacing:-14.910120px;}
.wsc8{word-spacing:-14.898168px;}
.ws0{word-spacing:-14.814504px;}
.ws95{word-spacing:-14.623272px;}
.wsd6{word-spacing:-14.605344px;}
.ws52{word-spacing:-14.581440px;}
.wsdb{word-spacing:-14.569488px;}
.ws5{word-spacing:-13.816512px;}
.ws5e{word-spacing:-9.000000px;}
.ws77{word-spacing:-0.496008px;}
.wse3{word-spacing:-0.304776px;}
.ws4b{word-spacing:-0.179280px;}
.wsa0{word-spacing:-0.167328px;}
.ws78{word-spacing:-0.161352px;}
.wsa6{word-spacing:-0.155376px;}
.wsca{word-spacing:-0.149400px;}
.wsc0{word-spacing:-0.143424px;}
.ws8b{word-spacing:-0.137448px;}
.ws75{word-spacing:-0.131472px;}
.ws3b{word-spacing:-0.125496px;}
.ws39{word-spacing:-0.119520px;}
.ws24{word-spacing:-0.113544px;}
.ws8f{word-spacing:-0.107568px;}
.ws76{word-spacing:-0.101592px;}
.wsa8{word-spacing:-0.095616px;}
.ws44{word-spacing:-0.089640px;}
.ws30{word-spacing:-0.083664px;}
.ws2e{word-spacing:-0.077688px;}
.ws37{word-spacing:-0.071712px;}
.ws3c{word-spacing:-0.065736px;}
.ws8c{word-spacing:-0.059760px;}
.ws6c{word-spacing:-0.053784px;}
.ws6e{word-spacing:-0.047808px;}
.wsc2{word-spacing:-0.041832px;}
.wsc7{word-spacing:-0.035856px;}
.ws42{word-spacing:-0.029880px;}
.ws2f{word-spacing:-0.023904px;}
.ws74{word-spacing:-0.017928px;}
.wsb6{word-spacing:-0.011952px;}
.wsbe{word-spacing:-0.005976px;}
.ws1d{word-spacing:0.000000px;}
.ws61{word-spacing:0.005976px;}
.ws3d{word-spacing:0.011952px;}
.ws89{word-spacing:0.017928px;}
.ws35{word-spacing:0.023904px;}
.ws33{word-spacing:0.029880px;}
.ws8a{word-spacing:0.035856px;}
.ws45{word-spacing:0.041832px;}
.wsa7{word-spacing:0.047808px;}
.wsb3{word-spacing:0.053784px;}
.ws9f{word-spacing:0.059760px;}
.wsc3{word-spacing:0.065736px;}
.wsa5{word-spacing:0.071712px;}
.ws90{word-spacing:0.077688px;}
.ws69{word-spacing:0.083664px;}
.ws40{word-spacing:0.089640px;}
.wsa1{word-spacing:0.095616px;}
.ws1c{word-spacing:0.101592px;}
.ws2c{word-spacing:0.107568px;}
.ws2a{word-spacing:0.113544px;}
.ws3a{word-spacing:0.119520px;}
.ws1b{word-spacing:0.125496px;}
.ws36{word-spacing:0.131472px;}
.ws26{word-spacing:0.137448px;}
.ws2b{word-spacing:0.143424px;}
.ws1e{word-spacing:0.149400px;}
.ws46{word-spacing:0.155376px;}
.ws32{word-spacing:0.161352px;}
.ws20{word-spacing:0.167328px;}
.ws3e{word-spacing:0.173304px;}
.ws1a{word-spacing:0.179280px;}
.ws2d{word-spacing:0.185256px;}
.ws62{word-spacing:0.191232px;}
.wsb5{word-spacing:0.197208px;}
.wsbd{word-spacing:0.203184px;}
.wsbf{word-spacing:0.209160px;}
.ws9e{word-spacing:0.215136px;}
.ws27{word-spacing:0.221112px;}
.wsc9{word-spacing:0.227088px;}
.ws19{word-spacing:0.233064px;}
.ws4a{word-spacing:0.292824px;}
.ws18{word-spacing:0.304776px;}
.ws6d{word-spacing:0.310752px;}
.ws92{word-spacing:0.322704px;}
.ws47{word-spacing:0.328680px;}
.ws48{word-spacing:0.334656px;}
.ws66{word-spacing:0.340632px;}
.ws43{word-spacing:0.346608px;}
.wsc6{word-spacing:0.352584px;}
.ws6a{word-spacing:0.358560px;}
.wsa3{word-spacing:0.364536px;}
.ws8d{word-spacing:0.370512px;}
.ws65{word-spacing:0.376488px;}
.ws72{word-spacing:0.382464px;}
.ws64{word-spacing:0.388440px;}
.ws17{word-spacing:0.388800px;}
.wsa2{word-spacing:0.394416px;}
.ws73{word-spacing:0.400392px;}
.ws6b{word-spacing:0.406368px;}
.ws91{word-spacing:0.412344px;}
.wsa4{word-spacing:0.418320px;}
.ws71{word-spacing:0.424296px;}
.wsb4{word-spacing:0.430272px;}
.ws29{word-spacing:0.442224px;}
.ws70{word-spacing:0.460152px;}
.ws1f{word-spacing:0.472104px;}
.ws34{word-spacing:0.478080px;}
.wsc4{word-spacing:0.484056px;}
.ws8e{word-spacing:0.490032px;}
.ws38{word-spacing:0.496008px;}
.ws68{word-spacing:0.501984px;}
.ws63{word-spacing:0.507960px;}
.ws25{word-spacing:0.513936px;}
.ws28{word-spacing:0.519912px;}
.ws49{word-spacing:0.525888px;}
.ws3f{word-spacing:0.531864px;}
.ws21{word-spacing:0.537840px;}
.ws67{word-spacing:0.543816px;}
.ws22{word-spacing:0.549792px;}
.wsc1{word-spacing:0.555768px;}
.ws23{word-spacing:0.561744px;}
.ws31{word-spacing:0.567720px;}
.ws41{word-spacing:0.573696px;}
.ws6f{word-spacing:0.591624px;}
.wscc{word-spacing:33.591096px;}
.wsd1{word-spacing:33.603048px;}
.wscb{word-spacing:33.615000px;}
.wsd2{word-spacing:33.650856px;}
.wscd{word-spacing:33.662808px;}
.wse1{word-spacing:33.710616px;}
.wsde{word-spacing:33.734520px;}
.wsce{word-spacing:33.758424px;}
.wsd5{word-spacing:33.782328px;}
.wsdc{word-spacing:33.818184px;}
.wsd9{word-spacing:33.830136px;}
.wsd0{word-spacing:33.854040px;}
.wsdd{word-spacing:33.865992px;}
.wsd8{word-spacing:33.877944px;}
.wsd7{word-spacing:33.889896px;}
.wscf{word-spacing:33.949656px;}
.wse0{word-spacing:34.105032px;}
.wsd4{word-spacing:34.116984px;}
.wsdf{word-spacing:34.140888px;}
.wsd3{word-spacing:34.188696px;}
.ws86{word-spacing:63.901368px;}
.ws99{word-spacing:63.937224px;}
.ws98{word-spacing:63.961128px;}
.ws5c{word-spacing:63.985032px;}
.ws7e{word-spacing:64.044792px;}
.wsb2{word-spacing:64.056744px;}
.wsac{word-spacing:64.080648px;}
.wsb8{word-spacing:64.092600px;}
.ws88{word-spacing:64.104552px;}
.ws81{word-spacing:64.116504px;}
.wsbb{word-spacing:64.128456px;}
.ws83{word-spacing:64.188216px;}
.ws82{word-spacing:64.224072px;}
.wsb1{word-spacing:64.283832px;}
.ws7a{word-spacing:64.307736px;}
.ws94{word-spacing:64.343592px;}
.wsbc{word-spacing:64.451160px;}
.ws9a{word-spacing:64.463112px;}
.ws7c{word-spacing:64.475064px;}
.ws57{word-spacing:64.487016px;}
.ws96{word-spacing:64.510920px;}
.ws56{word-spacing:64.534824px;}
.ws9b{word-spacing:64.546776px;}
.ws7d{word-spacing:64.582632px;}
.ws55{word-spacing:64.594584px;}
.ws97{word-spacing:64.606536px;}
.ws4c{word-spacing:64.618488px;}
.ws59{word-spacing:64.642392px;}
.ws5b{word-spacing:64.666296px;}
.ws51{word-spacing:64.678248px;}
.wsb9{word-spacing:64.690200px;}
.ws60{word-spacing:64.726056px;}
.ws80{word-spacing:64.977048px;}
.ws9c{word-spacing:65.024856px;}
.ws54{word-spacing:65.036808px;}
.ws93{word-spacing:65.048760px;}
.wsaa{word-spacing:65.228040px;}
.ws87{word-spacing:65.239992px;}
.wsab{word-spacing:65.251944px;}
.ws5d{word-spacing:65.263896px;}
.ws53{word-spacing:65.287800px;}
.ws7b{word-spacing:65.299752px;}
.ws4e{word-spacing:65.323656px;}
.ws84{word-spacing:65.335608px;}
.ws7f{word-spacing:65.347560px;}
.ws50{word-spacing:65.359512px;}
.ws85{word-spacing:65.371464px;}
.ws5a{word-spacing:65.383416px;}
.wsad{word-spacing:65.407320px;}
.wsba{word-spacing:65.431224px;}
.wsc5{word-spacing:66.865464px;}
.ws8{word-spacing:94.122000px;}
.wsd{word-spacing:94.127976px;}
.ws14{word-spacing:94.193712px;}
.ws7{word-spacing:94.253472px;}
.ws11{word-spacing:94.313232px;}
.wse{word-spacing:94.331160px;}
.ws10{word-spacing:94.343112px;}
.ws13{word-spacing:94.355064px;}
.ws15{word-spacing:94.474584px;}
.wsb{word-spacing:94.492512px;}
.wsa{word-spacing:94.803264px;}
.wsf{word-spacing:94.833144px;}
.ws2{word-spacing:94.839120px;}
.ws6{word-spacing:94.845096px;}
.ws16{word-spacing:95.299272px;}
.wsc{word-spacing:95.436720px;}
.ws12{word-spacing:95.508432px;}
.ws3{word-spacing:95.520384px;}
.ws4{word-spacing:95.550264px;}
.ws9{word-spacing:95.556240px;}
.ws1{word-spacing:95.633928px;}
._7{margin-left:-2.151360px;}
._4{margin-left:-1.015920px;}
._3{width:1.075680px;}
._5{width:2.151360px;}
._c{width:33.842088px;}
._b{width:49.056984px;}
._a{width:79.385184px;}
._9{width:80.616240px;}
._6{width:109.480320px;}
._8{width:110.854800px;}
._2{width:124.898400px;}
._1{width:154.419840px;}
._0{width:212.028480px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:54.828942px;}
.y3e{bottom:54.839400px;}
.y11f{bottom:57.152670px;}
.y1c5{bottom:57.164658px;}
.y14f{bottom:57.166116px;}
.y160{bottom:57.176160px;}
.y182{bottom:57.178104px;}
.y20e{bottom:57.333444px;}
.y25c{bottom:57.334938px;}
.yb8{bottom:57.346890px;}
.yf9{bottom:57.358104px;}
.y21b{bottom:57.527664px;}
.y75{bottom:71.209158px;}
.y3d{bottom:71.217240px;}
.y11e{bottom:73.532886px;}
.y1c4{bottom:73.544874px;}
.y14e{bottom:73.546332px;}
.y15f{bottom:73.556376px;}
.y181{bottom:73.558320px;}
.y20d{bottom:73.713660px;}
.y25b{bottom:73.715154px;}
.yb7{bottom:73.727106px;}
.yf8{bottom:73.738320px;}
.y21a{bottom:73.907880px;}
.y74{bottom:87.589374px;}
.y3c{bottom:87.597456px;}
.y11d{bottom:89.913102px;}
.y1c3{bottom:89.925090px;}
.y14d{bottom:89.926548px;}
.y15e{bottom:89.936592px;}
.y180{bottom:89.938536px;}
.y20c{bottom:90.093876px;}
.y25a{bottom:90.095370px;}
.yb6{bottom:90.107322px;}
.yf7{bottom:90.118536px;}
.y219{bottom:90.288096px;}
.y73{bottom:103.969590px;}
.y3b{bottom:103.977672px;}
.y11c{bottom:106.293318px;}
.y1c2{bottom:106.305306px;}
.y14c{bottom:106.306764px;}
.y15d{bottom:106.316808px;}
.y17f{bottom:106.318752px;}
.y20b{bottom:106.474092px;}
.y259{bottom:106.475586px;}
.yb5{bottom:106.487538px;}
.yf6{bottom:106.498752px;}
.y218{bottom:106.668312px;}
.y72{bottom:120.349806px;}
.y3a{bottom:120.357888px;}
.y130{bottom:122.507700px;}
.y11b{bottom:122.673534px;}
.y1c1{bottom:122.685522px;}
.y14b{bottom:122.686980px;}
.y15c{bottom:122.697024px;}
.y17e{bottom:122.698968px;}
.y20a{bottom:122.854308px;}
.y258{bottom:122.855802px;}
.yb4{bottom:122.867754px;}
.yf5{bottom:122.878968px;}
.y217{bottom:123.048528px;}
.y71{bottom:136.730022px;}
.y39{bottom:136.738104px;}
.y11a{bottom:139.053750px;}
.y1c0{bottom:139.065738px;}
.y14a{bottom:139.067196px;}
.y15b{bottom:139.077240px;}
.y17d{bottom:139.079184px;}
.y209{bottom:139.234524px;}
.y257{bottom:139.236018px;}
.yb3{bottom:139.247970px;}
.yf4{bottom:139.259184px;}
.y216{bottom:139.428744px;}
.y70{bottom:153.110238px;}
.y38{bottom:153.118320px;}
.y119{bottom:155.433966px;}
.y1bf{bottom:155.445954px;}
.y12f{bottom:155.447412px;}
.y15a{bottom:155.457456px;}
.yf3{bottom:155.614740px;}
.y256{bottom:155.616234px;}
.yb2{bottom:155.628186px;}
.y6f{bottom:169.490454px;}
.y37{bottom:169.498536px;}
.y105{bottom:171.648348px;}
.y118{bottom:171.814182px;}
.y1be{bottom:171.826170px;}
.y12e{bottom:171.827628px;}
.y215{bottom:171.829122px;}
.y159{bottom:171.837672px;}
.yf2{bottom:171.994956px;}
.y255{bottom:171.996450px;}
.yb1{bottom:172.008402px;}
.y36{bottom:185.878752px;}
.y1c7{bottom:188.028564px;}
.y117{bottom:188.194398px;}
.y1bd{bottom:188.206386px;}
.y12d{bottom:188.207844px;}
.y158{bottom:188.217888px;}
.yf1{bottom:188.375172px;}
.y254{bottom:188.376666px;}
.yb0{bottom:188.388618px;}
.y6e{bottom:201.890832px;}
.y35{bottom:202.258968px;}
.y1d1{bottom:204.214560px;}
.y116{bottom:204.574614px;}
.y1bc{bottom:204.586602px;}
.y104{bottom:204.588060px;}
.y157{bottom:204.598104px;}
.yf0{bottom:204.755388px;}
.y253{bottom:204.756882px;}
.yaf{bottom:204.768834px;}
.y6d{bottom:218.450328px;}
.y34{bottom:218.639184px;}
.y1d0{bottom:220.774056px;}
.y115{bottom:220.954830px;}
.y1bb{bottom:220.966818px;}
.y103{bottom:220.968276px;}
.y156{bottom:220.978320px;}
.yef{bottom:221.135604px;}
.yae{bottom:221.149050px;}
.y6c{bottom:234.830544px;}
.y33{bottom:235.019400px;}
.y1cf{bottom:237.154272px;}
.y25f{bottom:237.155766px;}
.y252{bottom:237.157260px;}
.y114{bottom:237.335046px;}
.y1ba{bottom:237.347034px;}
.y102{bottom:237.348492px;}
.y155{bottom:237.358536px;}
.yee{bottom:237.515820px;}
.yad{bottom:237.529266px;}
.y6b{bottom:251.210760px;}
.y32{bottom:251.397606px;}
.y1ce{bottom:253.534488px;}
.y113{bottom:253.715262px;}
.y1b9{bottom:253.727250px;}
.y101{bottom:253.728708px;}
.y154{bottom:253.738752px;}
.yed{bottom:253.896036px;}
.yac{bottom:253.909482px;}
.y6a{bottom:267.590976px;}
.y31{bottom:267.777822px;}
.y1cd{bottom:269.914704px;}
.y261{bottom:269.929644px;}
.y112{bottom:270.095478px;}
.y251{bottom:270.096972px;}
.y1b8{bottom:270.107466px;}
.y100{bottom:270.108924px;}
.y153{bottom:270.118968px;}
.y208{bottom:270.276252px;}
.yab{bottom:270.289698px;}
.y69{bottom:283.971192px;}
.y30{bottom:284.158038px;}
.y1cc{bottom:286.294920px;}
.yec{bottom:286.296414px;}
.y111{bottom:286.475694px;}
.y250{bottom:286.477188px;}
.y1b7{bottom:286.487682px;}
.yff{bottom:286.489140px;}
.y152{bottom:286.499184px;}
.y207{bottom:286.656468px;}
.yaa{bottom:286.669914px;}
.y68{bottom:300.351408px;}
.y2f{bottom:300.538254px;}
.y1cb{bottom:302.675136px;}
.y110{bottom:302.855910px;}
.y24f{bottom:302.857404px;}
.y1b6{bottom:302.867898px;}
.yfe{bottom:302.869356px;}
.y151{bottom:302.879400px;}
.y206{bottom:303.036684px;}
.y1e9{bottom:303.050130px;}
.y67{bottom:316.731624px;}
.y2e{bottom:316.918470px;}
.y1ca{bottom:319.055352px;}
.ya9{bottom:319.070292px;}
.yeb{bottom:319.236126px;}
.y24e{bottom:319.237620px;}
.y1b5{bottom:319.248114px;}
.yfd{bottom:319.249572px;}
.y205{bottom:319.416900px;}
.y1e8{bottom:319.430346px;}
.y279{bottom:319.778448px;}
.y66{bottom:333.111840px;}
.y2d{bottom:333.298686px;}
.y16d{bottom:335.256288px;}
.y1c9{bottom:335.435568px;}
.yea{bottom:335.616342px;}
.y24d{bottom:335.617836px;}
.y1b4{bottom:335.628330px;}
.yfc{bottom:335.629788px;}
.y204{bottom:335.797116px;}
.y1e7{bottom:335.810562px;}
.y278{bottom:336.158664px;}
.y65{bottom:349.492056px;}
.y2c{bottom:349.678902px;}
.y1c8{bottom:351.815784px;}
.ye9{bottom:351.996558px;}
.y24c{bottom:351.998052px;}
.y1b3{bottom:352.008546px;}
.ya8{bottom:352.010004px;}
.y203{bottom:352.177332px;}
.y1e6{bottom:352.190778px;}
.y277{bottom:352.538880px;}
.y64{bottom:365.872272px;}
.y2b{bottom:366.059118px;}
.y17a{bottom:368.030166px;}
.y16c{bottom:368.196000px;}
.ye8{bottom:368.376774px;}
.y24b{bottom:368.378268px;}
.y1b2{bottom:368.388762px;}
.ya7{bottom:368.390220px;}
.y202{bottom:368.557548px;}
.y1e5{bottom:368.570994px;}
.y276{bottom:368.919096px;}
.y63{bottom:382.252488px;}
.y2a{bottom:382.439334px;}
.y16b{bottom:384.576216px;}
.ye7{bottom:384.756990px;}
.y24a{bottom:384.758484px;}
.y1b1{bottom:384.768978px;}
.ya6{bottom:384.770436px;}
.y201{bottom:384.937764px;}
.y1e4{bottom:384.951210px;}
.y275{bottom:385.299312px;}
.y62{bottom:398.632704px;}
.y29{bottom:398.819550px;}
.y16a{bottom:400.956432px;}
.ye6{bottom:401.137206px;}
.y249{bottom:401.138700px;}
.y1b0{bottom:401.149194px;}
.ya5{bottom:401.150652px;}
.y200{bottom:401.317980px;}
.y1e3{bottom:401.331426px;}
.y61{bottom:415.012920px;}
.y28{bottom:415.198596px;}
.y17b{bottom:417.157368px;}
.y169{bottom:417.336648px;}
.y179{bottom:417.350094px;}
.ye5{bottom:417.517422px;}
.y248{bottom:417.518916px;}
.y1af{bottom:417.529410px;}
.ya4{bottom:417.530868px;}
.y1ff{bottom:417.698196px;}
.y274{bottom:417.699690px;}
.y1e2{bottom:417.711642px;}
.y60{bottom:431.393136px;}
.y27{bottom:431.578812px;}
.y168{bottom:433.716864px;}
.y178{bottom:433.730310px;}
.ye4{bottom:433.897638px;}
.y247{bottom:433.899132px;}
.y1ae{bottom:433.909626px;}
.ya3{bottom:433.911084px;}
.y1e1{bottom:434.091858px;}
.y5f{bottom:447.773352px;}
.y167{bottom:450.097080px;}
.y1fe{bottom:450.098574px;}
.y177{bottom:450.110526px;}
.ye3{bottom:450.277854px;}
.y246{bottom:450.279348px;}
.y1ad{bottom:450.289842px;}
.ya2{bottom:450.291300px;}
.y1e0{bottom:450.472074px;}
.y273{bottom:450.639402px;}
.y26{bottom:463.979190px;}
.y5e{bottom:464.153568px;}
.y166{bottom:466.477296px;}
.y176{bottom:466.490742px;}
.ye2{bottom:466.658070px;}
.y245{bottom:466.659564px;}
.y1ac{bottom:466.670058px;}
.ya1{bottom:466.671516px;}
.y1df{bottom:466.852290px;}
.y272{bottom:467.019618px;}
.y5d{bottom:480.533784px;}
.y17c{bottom:482.691678px;}
.y165{bottom:482.857512px;}
.y175{bottom:482.870958px;}
.ye1{bottom:483.038286px;}
.y244{bottom:483.039780px;}
.y1ab{bottom:483.050274px;}
.ya0{bottom:483.051732px;}
.y1de{bottom:483.232506px;}
.y271{bottom:483.399834px;}
.y5c{bottom:496.914000px;}
.y25{bottom:496.918902px;}
.y164{bottom:499.237728px;}
.y174{bottom:499.251174px;}
.ye0{bottom:499.418502px;}
.y243{bottom:499.419996px;}
.y1aa{bottom:499.430490px;}
.y9f{bottom:499.431948px;}
.y1dd{bottom:499.612722px;}
.y270{bottom:499.780050px;}
.y5b{bottom:513.294216px;}
.y24{bottom:513.299118px;}
.y139{bottom:515.438664px;}
.y1d2{bottom:515.452110px;}
.y163{bottom:515.617944px;}
.y173{bottom:515.631390px;}
.ydf{bottom:515.798718px;}
.y242{bottom:515.800212px;}
.y1a9{bottom:515.810706px;}
.y9e{bottom:515.812164px;}
.y1dc{bottom:515.992938px;}
.y26f{bottom:516.160266px;}
.y5a{bottom:529.674432px;}
.y23{bottom:529.679334px;}
.y162{bottom:531.998160px;}
.y172{bottom:532.011606px;}
.yde{bottom:532.178934px;}
.y241{bottom:532.180428px;}
.y1a8{bottom:532.190922px;}
.y9d{bottom:532.192380px;}
.y1db{bottom:532.373154px;}
.y26e{bottom:532.540482px;}
.y59{bottom:546.054648px;}
.y22{bottom:546.059550px;}
.y138{bottom:548.378376px;}
.y171{bottom:548.391822px;}
.ydd{bottom:548.559150px;}
.y240{bottom:548.560644px;}
.y1a7{bottom:548.571138px;}
.y9c{bottom:548.572596px;}
.y1da{bottom:548.753370px;}
.y26d{bottom:548.920698px;}
.y58{bottom:562.434864px;}
.y21{bottom:562.436184px;}
.y149{bottom:564.592758px;}
.y137{bottom:564.758592px;}
.y170{bottom:564.772038px;}
.ydc{bottom:564.939366px;}
.y23f{bottom:564.940860px;}
.y1a6{bottom:564.951354px;}
.y9b{bottom:564.952812px;}
.y1d9{bottom:565.133586px;}
.y26c{bottom:565.300914px;}
.y57{bottom:578.815080px;}
.y20{bottom:578.816400px;}
.y136{bottom:581.138808px;}
.y16f{bottom:581.152254px;}
.ydb{bottom:581.319582px;}
.y23e{bottom:581.321076px;}
.y1a5{bottom:581.331570px;}
.y9a{bottom:581.333028px;}
.y214{bottom:581.513802px;}
.y56{bottom:595.195296px;}
.y1f{bottom:595.196616px;}
.y135{bottom:597.519024px;}
.y16e{bottom:597.532470px;}
.y1d8{bottom:597.533964px;}
.yda{bottom:597.699798px;}
.y23d{bottom:597.701292px;}
.y1a4{bottom:597.711786px;}
.y99{bottom:597.713244px;}
.y213{bottom:597.894018px;}
.y55{bottom:611.575512px;}
.y1e{bottom:611.576832px;}
.y134{bottom:613.899240px;}
.y148{bottom:613.912686px;}
.yd9{bottom:614.080014px;}
.y23c{bottom:614.081508px;}
.y1a3{bottom:614.092002px;}
.y98{bottom:614.093460px;}
.y212{bottom:614.274234px;}
.y54{bottom:627.955728px;}
.y1d{bottom:627.957048px;}
.y133{bottom:630.279456px;}
.y147{bottom:630.292902px;}
.yd8{bottom:630.460230px;}
.y23b{bottom:630.461724px;}
.y97{bottom:630.473676px;}
.y26b{bottom:630.641004px;}
.y211{bottom:630.654450px;}
.y53{bottom:644.335944px;}
.y1c{bottom:644.337264px;}
.y10f{bottom:646.480392px;}
.y1a2{bottom:646.492380px;}
.y132{bottom:646.659672px;}
.y146{bottom:646.673118px;}
.yd7{bottom:646.840446px;}
.y23a{bottom:646.841940px;}
.y96{bottom:646.853892px;}
.y26a{bottom:647.021220px;}
.y52{bottom:660.716160px;}
.y1b{bottom:660.717480px;}
.y131{bottom:663.039888px;}
.y145{bottom:663.053334px;}
.y210{bottom:663.054828px;}
.yd6{bottom:663.220662px;}
.y239{bottom:663.222156px;}
.y95{bottom:663.234108px;}
.y269{bottom:663.401436px;}
.y51{bottom:677.096376px;}
.y1a{bottom:677.097696px;}
.y10e{bottom:679.420104px;}
.y1a1{bottom:679.432092px;}
.y144{bottom:679.433550px;}
.yd5{bottom:679.600878px;}
.y238{bottom:679.602372px;}
.y94{bottom:679.614324px;}
.y268{bottom:679.781652px;}
.y50{bottom:693.476592px;}
.y19{bottom:693.477912px;}
.y25e{bottom:695.621040px;}
.y260{bottom:695.634486px;}
.y10d{bottom:695.800320px;}
.y1a0{bottom:695.812308px;}
.y143{bottom:695.813766px;}
.yd4{bottom:695.981094px;}
.y93{bottom:695.994540px;}
.y267{bottom:696.161868px;}
.y18{bottom:709.858128px;}
.y237{bottom:712.002750px;}
.y10c{bottom:712.180536px;}
.y19f{bottom:712.192524px;}
.y142{bottom:712.193982px;}
.yd3{bottom:712.361310px;}
.y92{bottom:712.374756px;}
.y266{bottom:712.542084px;}
.y4f{bottom:725.876970px;}
.y17{bottom:726.238344px;}
.y10b{bottom:728.560752px;}
.y19e{bottom:728.572740px;}
.y141{bottom:728.574198px;}
.yd2{bottom:728.741526px;}
.y91{bottom:728.754972px;}
.y265{bottom:728.922300px;}
.y16{bottom:742.618560px;}
.y1d3{bottom:744.761688px;}
.y10a{bottom:744.940968px;}
.y236{bottom:744.942462px;}
.y19d{bottom:744.952956px;}
.y140{bottom:744.954414px;}
.yd1{bottom:745.121742px;}
.y90{bottom:745.135188px;}
.y264{bottom:745.302516px;}
.y4e{bottom:758.816682px;}
.y15{bottom:758.998776px;}
.y150{bottom:761.141904px;}
.y109{bottom:761.321184px;}
.y235{bottom:761.322678px;}
.y19c{bottom:761.333172px;}
.y13f{bottom:761.334630px;}
.yd0{bottom:761.501958px;}
.y8f{bottom:761.515404px;}
.y263{bottom:761.682732px;}
.y4d{bottom:775.196898px;}
.y14{bottom:775.378992px;}
.y161{bottom:777.535566px;}
.y108{bottom:777.701400px;}
.y234{bottom:777.702894px;}
.y19b{bottom:777.713388px;}
.y13e{bottom:777.714846px;}
.y1fd{bottom:777.882174px;}
.y8e{bottom:777.895620px;}
.y4c{bottom:791.577114px;}
.y13{bottom:791.759208px;}
.ycf{bottom:793.902336px;}
.y107{bottom:794.081616px;}
.y233{bottom:794.083110px;}
.y19a{bottom:794.093604px;}
.y13d{bottom:794.095062px;}
.y1fc{bottom:794.262390px;}
.y8d{bottom:794.275836px;}
.y4b{bottom:807.957330px;}
.y12{bottom:808.139424px;}
.y106{bottom:810.461832px;}
.y232{bottom:810.463326px;}
.y199{bottom:810.473820px;}
.y13c{bottom:810.475278px;}
.y1fb{bottom:810.642606px;}
.y8c{bottom:810.656052px;}
.y4a{bottom:824.337546px;}
.y11{bottom:824.519640px;}
.yfb{bottom:826.676214px;}
.yce{bottom:826.842048px;}
.y231{bottom:826.843542px;}
.y198{bottom:826.854036px;}
.y13b{bottom:826.855494px;}
.y1fa{bottom:827.022822px;}
.y12c{bottom:827.036268px;}
.y49{bottom:840.717762px;}
.y10{bottom:840.899856px;}
.y8b{bottom:843.056430px;}
.ycd{bottom:843.222264px;}
.y230{bottom:843.223758px;}
.y197{bottom:843.234252px;}
.y13a{bottom:843.235710px;}
.y1f9{bottom:843.403038px;}
.y12b{bottom:843.416484px;}
.y48{bottom:857.097978px;}
.yf{bottom:857.280072px;}
.y25d{bottom:859.436646px;}
.ycc{bottom:859.602480px;}
.y22f{bottom:859.603974px;}
.y196{bottom:859.614468px;}
.yfa{bottom:859.615926px;}
.y1f8{bottom:859.783254px;}
.y12a{bottom:859.796700px;}
.y47{bottom:873.478194px;}
.ye{bottom:873.660288px;}
.ycb{bottom:875.982696px;}
.y22e{bottom:875.984190px;}
.y195{bottom:875.994684px;}
.y8a{bottom:875.996142px;}
.y1f7{bottom:876.163470px;}
.y129{bottom:876.176916px;}
.y46{bottom:889.858410px;}
.yd{bottom:890.040504px;}
.yca{bottom:892.362912px;}
.y22d{bottom:892.364406px;}
.y194{bottom:892.374900px;}
.y89{bottom:892.376358px;}
.y1f6{bottom:892.543686px;}
.y128{bottom:892.557132px;}
.y45{bottom:906.238626px;}
.yc{bottom:906.420720px;}
.yc9{bottom:908.743128px;}
.y22c{bottom:908.744622px;}
.y193{bottom:908.755116px;}
.y88{bottom:908.756574px;}
.y1f5{bottom:908.923902px;}
.y127{bottom:908.937348px;}
.y44{bottom:922.618842px;}
.yb{bottom:922.800936px;}
.y1c6{bottom:924.957510px;}
.yc8{bottom:925.123344px;}
.y22b{bottom:925.124838px;}
.y192{bottom:925.135332px;}
.y87{bottom:925.136790px;}
.y1f4{bottom:925.304118px;}
.y126{bottom:925.317564px;}
.y43{bottom:938.999058px;}
.ya{bottom:939.181152px;}
.yc7{bottom:941.503560px;}
.y22a{bottom:941.505054px;}
.y191{bottom:941.515548px;}
.y86{bottom:941.517006px;}
.y1f3{bottom:941.684334px;}
.y125{bottom:941.697780px;}
.y42{bottom:955.379274px;}
.y9{bottom:955.561368px;}
.yc6{bottom:957.883776px;}
.y229{bottom:957.885270px;}
.y190{bottom:957.895764px;}
.y85{bottom:957.897222px;}
.y1f2{bottom:958.064550px;}
.y124{bottom:958.077996px;}
.y41{bottom:971.759490px;}
.y8{bottom:971.941584px;}
.yc5{bottom:974.263992px;}
.y228{bottom:974.265486px;}
.y18f{bottom:974.275980px;}
.y84{bottom:974.277438px;}
.y1f1{bottom:974.444766px;}
.y123{bottom:974.458212px;}
.y40{bottom:988.139706px;}
.yc4{bottom:990.644208px;}
.y227{bottom:990.645702px;}
.y18e{bottom:990.656196px;}
.y83{bottom:990.657654px;}
.y1f0{bottom:990.824982px;}
.y122{bottom:990.838428px;}
.y7{bottom:1004.341962px;}
.y3f{bottom:1004.519922px;}
.y20f{bottom:1006.858590px;}
.yc3{bottom:1007.024424px;}
.y226{bottom:1007.025918px;}
.y18d{bottom:1007.036412px;}
.y82{bottom:1007.037870px;}
.y1ef{bottom:1007.205198px;}
.y121{bottom:1007.218644px;}
.y262{bottom:1023.225360px;}
.yc2{bottom:1023.404640px;}
.y225{bottom:1023.406134px;}
.y18c{bottom:1023.416628px;}
.y81{bottom:1023.418086px;}
.y1ee{bottom:1023.585414px;}
.y1d7{bottom:1023.598860px;}
.y120{bottom:1039.619022px;}
.yc1{bottom:1039.784856px;}
.y224{bottom:1039.786350px;}
.y18b{bottom:1039.796844px;}
.y80{bottom:1039.798302px;}
.y1ed{bottom:1039.965630px;}
.y1d6{bottom:1039.979076px;}
.yc0{bottom:1056.165072px;}
.y223{bottom:1056.166566px;}
.y18a{bottom:1056.177060px;}
.y7f{bottom:1056.178518px;}
.y1ec{bottom:1056.345846px;}
.y1d5{bottom:1056.359292px;}
.y6{bottom:1065.001350px;}
.ybf{bottom:1072.545288px;}
.y222{bottom:1072.546782px;}
.y189{bottom:1072.557276px;}
.y7e{bottom:1072.558734px;}
.y1eb{bottom:1072.726062px;}
.y5{bottom:1081.920900px;}
.y1d4{bottom:1088.759670px;}
.ybe{bottom:1088.925504px;}
.y221{bottom:1088.926998px;}
.y188{bottom:1088.937492px;}
.y7d{bottom:1088.938950px;}
.y4{bottom:1098.840450px;}
.y1ea{bottom:1105.126440px;}
.ybd{bottom:1105.305720px;}
.y220{bottom:1105.307214px;}
.y187{bottom:1105.317708px;}
.y7c{bottom:1105.319166px;}
.y3{bottom:1115.760000px;}
.ybc{bottom:1121.685936px;}
.y21f{bottom:1121.687430px;}
.y186{bottom:1121.697924px;}
.y7b{bottom:1121.699382px;}
.y2{bottom:1132.679550px;}
.ybb{bottom:1138.066152px;}
.y21e{bottom:1138.067646px;}
.y185{bottom:1138.078140px;}
.y7a{bottom:1138.079598px;}
.yba{bottom:1154.446368px;}
.y21d{bottom:1154.447862px;}
.y184{bottom:1154.458356px;}
.y79{bottom:1154.459814px;}
.yb9{bottom:1170.826584px;}
.y21c{bottom:1170.828078px;}
.y183{bottom:1170.838572px;}
.y78{bottom:1170.840030px;}
.y1{bottom:1184.880000px;}
.y77{bottom:1206.479400px;}
.h3{height:39.830273px;}
.h4{height:40.384688px;}
.h5{height:49.838906px;}
.h7{height:53.789054px;}
.h8{height:53.793013px;}
.h9{height:53.794478px;}
.h6{height:53.798701px;}
.h12{height:53.833790px;}
.h11{height:53.878934px;}
.hc{height:53.884478px;}
.h2{height:55.511719px;}
.h15{height:1250.997615px;}
.h16{height:1251.000000px;}
.he{height:1254.000000px;}
.hd{height:1254.186585px;}
.hf{height:1257.375555px;}
.h10{height:1257.750000px;}
.h0{height:1260.564510px;}
.h1{height:1260.750000px;}
.h14{height:1263.750000px;}
.h13{height:1263.796050px;}
.ha{height:1270.173975px;}
.hb{height:1270.500000px;}
.wf{width:880.500000px;}
.we{width:880.874445px;}
.w8{width:884.066025px;}
.w9{width:884.250000px;}
.wd{width:890.250000px;}
.wc{width:890.449170px;}
.w4{width:893.640750px;}
.w5{width:894.000000px;}
.w6{width:896.832315px;}
.w7{width:897.000000px;}
.wb{width:900.000000px;}
.wa{width:900.023895px;}
.w3{width:903.000000px;}
.w2{width:903.215475px;}
.w0{width:909.598620px;}
.w1{width:909.750000px;}
.x0{left:0.000000px;}
.x9{left:39.347952px;}
.x3{left:42.540432px;}
.x2{left:54.600000px;}
.xa{left:81.828348px;}
.x4{left:85.020828px;}
.x1{left:340.080000px;}
.xc{left:459.467934px;}
.x5{left:462.660270px;}
.xb{left:501.948330px;}
.x6{left:505.140666px;}
.xe{left:831.708420px;}
.xd{left:834.900000px;}
.x8{left:839.268420px;}
.x7{left:842.460000px;}
@media print{
.v2{vertical-align:-11.517867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.133568pt;}
.ls26{letter-spacing:-0.998656pt;}
.ls4c{letter-spacing:-0.366528pt;}
.ls70{letter-spacing:-0.361216pt;}
.ls34{letter-spacing:-0.350592pt;}
.ls2b{letter-spacing:-0.345280pt;}
.ls1e{letter-spacing:-0.339968pt;}
.ls21{letter-spacing:-0.334656pt;}
.ls1d{letter-spacing:-0.329344pt;}
.ls46{letter-spacing:-0.324032pt;}
.ls1c{letter-spacing:-0.318720pt;}
.ls23{letter-spacing:-0.313408pt;}
.ls3a{letter-spacing:-0.308096pt;}
.ls25{letter-spacing:-0.302784pt;}
.ls20{letter-spacing:-0.297472pt;}
.ls42{letter-spacing:-0.292160pt;}
.ls22{letter-spacing:-0.286848pt;}
.ls2e{letter-spacing:-0.281536pt;}
.ls35{letter-spacing:-0.276224pt;}
.ls6c{letter-spacing:-0.270912pt;}
.ls2d{letter-spacing:-0.265600pt;}
.ls1a{letter-spacing:-0.260288pt;}
.ls4d{letter-spacing:-0.249664pt;}
.ls27{letter-spacing:-0.233728pt;}
.ls6d{letter-spacing:-0.223104pt;}
.ls4e{letter-spacing:-0.217792pt;}
.ls67{letter-spacing:-0.212480pt;}
.ls5d{letter-spacing:-0.207168pt;}
.ls49{letter-spacing:-0.201856pt;}
.ls3b{letter-spacing:-0.196544pt;}
.ls64{letter-spacing:-0.191232pt;}
.ls43{letter-spacing:-0.185920pt;}
.ls4f{letter-spacing:-0.180608pt;}
.ls44{letter-spacing:-0.175296pt;}
.ls5c{letter-spacing:-0.169984pt;}
.ls66{letter-spacing:-0.164672pt;}
.ls48{letter-spacing:-0.159360pt;}
.ls73{letter-spacing:-0.154048pt;}
.ls37{letter-spacing:-0.148736pt;}
.ls45{letter-spacing:-0.143424pt;}
.ls39{letter-spacing:-0.138112pt;}
.ls38{letter-spacing:-0.132800pt;}
.ls5e{letter-spacing:-0.127488pt;}
.ls4b{letter-spacing:-0.116864pt;}
.ls14{letter-spacing:-0.115200pt;}
.ls15{letter-spacing:-0.111552pt;}
.ls3c{letter-spacing:-0.100928pt;}
.ls55{letter-spacing:-0.047808pt;}
.ls74{letter-spacing:-0.042496pt;}
.ls24{letter-spacing:-0.037184pt;}
.ls65{letter-spacing:-0.031872pt;}
.ls50{letter-spacing:-0.026560pt;}
.ls51{letter-spacing:-0.021248pt;}
.ls6e{letter-spacing:-0.015936pt;}
.ls41{letter-spacing:-0.010624pt;}
.ls16{letter-spacing:-0.005312pt;}
.ls19{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.005312pt;}
.ls1b{letter-spacing:0.010624pt;}
.ls6{letter-spacing:0.015936pt;}
.ls11{letter-spacing:0.021248pt;}
.ls2{letter-spacing:0.026560pt;}
.lsa{letter-spacing:0.031872pt;}
.ls12{letter-spacing:0.037184pt;}
.ls9{letter-spacing:0.042496pt;}
.ls0{letter-spacing:0.047808pt;}
.lsb{letter-spacing:0.053120pt;}
.ls3{letter-spacing:0.058432pt;}
.ls4{letter-spacing:0.063744pt;}
.ls1{letter-spacing:0.069056pt;}
.ls60{letter-spacing:0.074368pt;}
.lsc{letter-spacing:0.079680pt;}
.ls47{letter-spacing:0.084992pt;}
.ls5a{letter-spacing:0.090304pt;}
.ls61{letter-spacing:0.095616pt;}
.ls6f{letter-spacing:0.100928pt;}
.ls5f{letter-spacing:0.106240pt;}
.ls6a{letter-spacing:0.111552pt;}
.ls63{letter-spacing:0.116864pt;}
.ls10{letter-spacing:0.122176pt;}
.ls57{letter-spacing:0.127488pt;}
.ls2c{letter-spacing:0.132800pt;}
.ls7{letter-spacing:0.138112pt;}
.ls56{letter-spacing:0.143424pt;}
.ls8{letter-spacing:0.148736pt;}
.ls3d{letter-spacing:0.154048pt;}
.ls58{letter-spacing:0.159360pt;}
.lsf{letter-spacing:0.164672pt;}
.ls6b{letter-spacing:0.169984pt;}
.ls3f{letter-spacing:0.175296pt;}
.ls5{letter-spacing:0.180608pt;}
.lsd{letter-spacing:0.185920pt;}
.ls59{letter-spacing:0.191232pt;}
.ls72{letter-spacing:0.196544pt;}
.ls3e{letter-spacing:0.201856pt;}
.ls4a{letter-spacing:0.207168pt;}
.ls5b{letter-spacing:0.212480pt;}
.ls32{letter-spacing:0.217792pt;}
.ls17{letter-spacing:0.223104pt;}
.ls29{letter-spacing:0.228416pt;}
.ls2a{letter-spacing:0.233728pt;}
.lse{letter-spacing:0.239040pt;}
.ls69{letter-spacing:0.244352pt;}
.ls52{letter-spacing:0.249664pt;}
.ls28{letter-spacing:0.254976pt;}
.ls1f{letter-spacing:0.260288pt;}
.ls2f{letter-spacing:0.265600pt;}
.ls31{letter-spacing:0.270912pt;}
.ls18{letter-spacing:0.276224pt;}
.ls53{letter-spacing:0.281536pt;}
.ls71{letter-spacing:0.286848pt;}
.ls68{letter-spacing:0.292160pt;}
.ls62{letter-spacing:0.297472pt;}
.ls40{letter-spacing:0.302784pt;}
.ls36{letter-spacing:0.308096pt;}
.ls30{letter-spacing:0.313408pt;}
.ls13{letter-spacing:0.318720pt;}
.ls78{letter-spacing:0.324032pt;}
.ls76{letter-spacing:0.339968pt;}
.ls77{letter-spacing:0.345280pt;}
.ls75{letter-spacing:0.350592pt;}
.ls79{letter-spacing:0.430272pt;}
.ls54{letter-spacing:0.600256pt;}
.wsb7{word-spacing:-13.598720pt;}
.wsb0{word-spacing:-13.349056pt;}
.ws79{word-spacing:-13.322496pt;}
.wsda{word-spacing:-13.317184pt;}
.wsaf{word-spacing:-13.311872pt;}
.wsae{word-spacing:-13.306560pt;}
.ws4f{word-spacing:-13.295936pt;}
.ws9d{word-spacing:-13.290624pt;}
.wsa9{word-spacing:-13.285312pt;}
.ws5f{word-spacing:-13.280000pt;}
.ws4d{word-spacing:-13.274688pt;}
.ws58{word-spacing:-13.269376pt;}
.wse2{word-spacing:-13.253440pt;}
.wsc8{word-spacing:-13.242816pt;}
.ws0{word-spacing:-13.168448pt;}
.ws95{word-spacing:-12.998464pt;}
.wsd6{word-spacing:-12.982528pt;}
.ws52{word-spacing:-12.961280pt;}
.wsdb{word-spacing:-12.950656pt;}
.ws5{word-spacing:-12.281344pt;}
.ws5e{word-spacing:-8.000000pt;}
.ws77{word-spacing:-0.440896pt;}
.wse3{word-spacing:-0.270912pt;}
.ws4b{word-spacing:-0.159360pt;}
.wsa0{word-spacing:-0.148736pt;}
.ws78{word-spacing:-0.143424pt;}
.wsa6{word-spacing:-0.138112pt;}
.wsca{word-spacing:-0.132800pt;}
.wsc0{word-spacing:-0.127488pt;}
.ws8b{word-spacing:-0.122176pt;}
.ws75{word-spacing:-0.116864pt;}
.ws3b{word-spacing:-0.111552pt;}
.ws39{word-spacing:-0.106240pt;}
.ws24{word-spacing:-0.100928pt;}
.ws8f{word-spacing:-0.095616pt;}
.ws76{word-spacing:-0.090304pt;}
.wsa8{word-spacing:-0.084992pt;}
.ws44{word-spacing:-0.079680pt;}
.ws30{word-spacing:-0.074368pt;}
.ws2e{word-spacing:-0.069056pt;}
.ws37{word-spacing:-0.063744pt;}
.ws3c{word-spacing:-0.058432pt;}
.ws8c{word-spacing:-0.053120pt;}
.ws6c{word-spacing:-0.047808pt;}
.ws6e{word-spacing:-0.042496pt;}
.wsc2{word-spacing:-0.037184pt;}
.wsc7{word-spacing:-0.031872pt;}
.ws42{word-spacing:-0.026560pt;}
.ws2f{word-spacing:-0.021248pt;}
.ws74{word-spacing:-0.015936pt;}
.wsb6{word-spacing:-0.010624pt;}
.wsbe{word-spacing:-0.005312pt;}
.ws1d{word-spacing:0.000000pt;}
.ws61{word-spacing:0.005312pt;}
.ws3d{word-spacing:0.010624pt;}
.ws89{word-spacing:0.015936pt;}
.ws35{word-spacing:0.021248pt;}
.ws33{word-spacing:0.026560pt;}
.ws8a{word-spacing:0.031872pt;}
.ws45{word-spacing:0.037184pt;}
.wsa7{word-spacing:0.042496pt;}
.wsb3{word-spacing:0.047808pt;}
.ws9f{word-spacing:0.053120pt;}
.wsc3{word-spacing:0.058432pt;}
.wsa5{word-spacing:0.063744pt;}
.ws90{word-spacing:0.069056pt;}
.ws69{word-spacing:0.074368pt;}
.ws40{word-spacing:0.079680pt;}
.wsa1{word-spacing:0.084992pt;}
.ws1c{word-spacing:0.090304pt;}
.ws2c{word-spacing:0.095616pt;}
.ws2a{word-spacing:0.100928pt;}
.ws3a{word-spacing:0.106240pt;}
.ws1b{word-spacing:0.111552pt;}
.ws36{word-spacing:0.116864pt;}
.ws26{word-spacing:0.122176pt;}
.ws2b{word-spacing:0.127488pt;}
.ws1e{word-spacing:0.132800pt;}
.ws46{word-spacing:0.138112pt;}
.ws32{word-spacing:0.143424pt;}
.ws20{word-spacing:0.148736pt;}
.ws3e{word-spacing:0.154048pt;}
.ws1a{word-spacing:0.159360pt;}
.ws2d{word-spacing:0.164672pt;}
.ws62{word-spacing:0.169984pt;}
.wsb5{word-spacing:0.175296pt;}
.wsbd{word-spacing:0.180608pt;}
.wsbf{word-spacing:0.185920pt;}
.ws9e{word-spacing:0.191232pt;}
.ws27{word-spacing:0.196544pt;}
.wsc9{word-spacing:0.201856pt;}
.ws19{word-spacing:0.207168pt;}
.ws4a{word-spacing:0.260288pt;}
.ws18{word-spacing:0.270912pt;}
.ws6d{word-spacing:0.276224pt;}
.ws92{word-spacing:0.286848pt;}
.ws47{word-spacing:0.292160pt;}
.ws48{word-spacing:0.297472pt;}
.ws66{word-spacing:0.302784pt;}
.ws43{word-spacing:0.308096pt;}
.wsc6{word-spacing:0.313408pt;}
.ws6a{word-spacing:0.318720pt;}
.wsa3{word-spacing:0.324032pt;}
.ws8d{word-spacing:0.329344pt;}
.ws65{word-spacing:0.334656pt;}
.ws72{word-spacing:0.339968pt;}
.ws64{word-spacing:0.345280pt;}
.ws17{word-spacing:0.345600pt;}
.wsa2{word-spacing:0.350592pt;}
.ws73{word-spacing:0.355904pt;}
.ws6b{word-spacing:0.361216pt;}
.ws91{word-spacing:0.366528pt;}
.wsa4{word-spacing:0.371840pt;}
.ws71{word-spacing:0.377152pt;}
.wsb4{word-spacing:0.382464pt;}
.ws29{word-spacing:0.393088pt;}
.ws70{word-spacing:0.409024pt;}
.ws1f{word-spacing:0.419648pt;}
.ws34{word-spacing:0.424960pt;}
.wsc4{word-spacing:0.430272pt;}
.ws8e{word-spacing:0.435584pt;}
.ws38{word-spacing:0.440896pt;}
.ws68{word-spacing:0.446208pt;}
.ws63{word-spacing:0.451520pt;}
.ws25{word-spacing:0.456832pt;}
.ws28{word-spacing:0.462144pt;}
.ws49{word-spacing:0.467456pt;}
.ws3f{word-spacing:0.472768pt;}
.ws21{word-spacing:0.478080pt;}
.ws67{word-spacing:0.483392pt;}
.ws22{word-spacing:0.488704pt;}
.wsc1{word-spacing:0.494016pt;}
.ws23{word-spacing:0.499328pt;}
.ws31{word-spacing:0.504640pt;}
.ws41{word-spacing:0.509952pt;}
.ws6f{word-spacing:0.525888pt;}
.wscc{word-spacing:29.858752pt;}
.wsd1{word-spacing:29.869376pt;}
.wscb{word-spacing:29.880000pt;}
.wsd2{word-spacing:29.911872pt;}
.wscd{word-spacing:29.922496pt;}
.wse1{word-spacing:29.964992pt;}
.wsde{word-spacing:29.986240pt;}
.wsce{word-spacing:30.007488pt;}
.wsd5{word-spacing:30.028736pt;}
.wsdc{word-spacing:30.060608pt;}
.wsd9{word-spacing:30.071232pt;}
.wsd0{word-spacing:30.092480pt;}
.wsdd{word-spacing:30.103104pt;}
.wsd8{word-spacing:30.113728pt;}
.wsd7{word-spacing:30.124352pt;}
.wscf{word-spacing:30.177472pt;}
.wse0{word-spacing:30.315584pt;}
.wsd4{word-spacing:30.326208pt;}
.wsdf{word-spacing:30.347456pt;}
.wsd3{word-spacing:30.389952pt;}
.ws86{word-spacing:56.801216pt;}
.ws99{word-spacing:56.833088pt;}
.ws98{word-spacing:56.854336pt;}
.ws5c{word-spacing:56.875584pt;}
.ws7e{word-spacing:56.928704pt;}
.wsb2{word-spacing:56.939328pt;}
.wsac{word-spacing:56.960576pt;}
.wsb8{word-spacing:56.971200pt;}
.ws88{word-spacing:56.981824pt;}
.ws81{word-spacing:56.992448pt;}
.wsbb{word-spacing:57.003072pt;}
.ws83{word-spacing:57.056192pt;}
.ws82{word-spacing:57.088064pt;}
.wsb1{word-spacing:57.141184pt;}
.ws7a{word-spacing:57.162432pt;}
.ws94{word-spacing:57.194304pt;}
.wsbc{word-spacing:57.289920pt;}
.ws9a{word-spacing:57.300544pt;}
.ws7c{word-spacing:57.311168pt;}
.ws57{word-spacing:57.321792pt;}
.ws96{word-spacing:57.343040pt;}
.ws56{word-spacing:57.364288pt;}
.ws9b{word-spacing:57.374912pt;}
.ws7d{word-spacing:57.406784pt;}
.ws55{word-spacing:57.417408pt;}
.ws97{word-spacing:57.428032pt;}
.ws4c{word-spacing:57.438656pt;}
.ws59{word-spacing:57.459904pt;}
.ws5b{word-spacing:57.481152pt;}
.ws51{word-spacing:57.491776pt;}
.wsb9{word-spacing:57.502400pt;}
.ws60{word-spacing:57.534272pt;}
.ws80{word-spacing:57.757376pt;}
.ws9c{word-spacing:57.799872pt;}
.ws54{word-spacing:57.810496pt;}
.ws93{word-spacing:57.821120pt;}
.wsaa{word-spacing:57.980480pt;}
.ws87{word-spacing:57.991104pt;}
.wsab{word-spacing:58.001728pt;}
.ws5d{word-spacing:58.012352pt;}
.ws53{word-spacing:58.033600pt;}
.ws7b{word-spacing:58.044224pt;}
.ws4e{word-spacing:58.065472pt;}
.ws84{word-spacing:58.076096pt;}
.ws7f{word-spacing:58.086720pt;}
.ws50{word-spacing:58.097344pt;}
.ws85{word-spacing:58.107968pt;}
.ws5a{word-spacing:58.118592pt;}
.wsad{word-spacing:58.139840pt;}
.wsba{word-spacing:58.161088pt;}
.wsc5{word-spacing:59.435968pt;}
.ws8{word-spacing:83.664000pt;}
.wsd{word-spacing:83.669312pt;}
.ws14{word-spacing:83.727744pt;}
.ws7{word-spacing:83.780864pt;}
.ws11{word-spacing:83.833984pt;}
.wse{word-spacing:83.849920pt;}
.ws10{word-spacing:83.860544pt;}
.ws13{word-spacing:83.871168pt;}
.ws15{word-spacing:83.977408pt;}
.wsb{word-spacing:83.993344pt;}
.wsa{word-spacing:84.269568pt;}
.wsf{word-spacing:84.296128pt;}
.ws2{word-spacing:84.301440pt;}
.ws6{word-spacing:84.306752pt;}
.ws16{word-spacing:84.710464pt;}
.wsc{word-spacing:84.832640pt;}
.ws12{word-spacing:84.896384pt;}
.ws3{word-spacing:84.907008pt;}
.ws4{word-spacing:84.933568pt;}
.ws9{word-spacing:84.938880pt;}
.ws1{word-spacing:85.007936pt;}
._7{margin-left:-1.912320pt;}
._4{margin-left:-0.903040pt;}
._3{width:0.956160pt;}
._5{width:1.912320pt;}
._c{width:30.081856pt;}
._b{width:43.606208pt;}
._a{width:70.564608pt;}
._9{width:71.658880pt;}
._6{width:97.315840pt;}
._8{width:98.537600pt;}
._2{width:111.020800pt;}
._1{width:137.262080pt;}
._0{width:188.469760pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:48.736837pt;}
.y3e{bottom:48.746133pt;}
.y11f{bottom:50.802373pt;}
.y1c5{bottom:50.813029pt;}
.y14f{bottom:50.814325pt;}
.y160{bottom:50.823253pt;}
.y182{bottom:50.824981pt;}
.y20e{bottom:50.963061pt;}
.y25c{bottom:50.964389pt;}
.yb8{bottom:50.975013pt;}
.yf9{bottom:50.984981pt;}
.y21b{bottom:51.135701pt;}
.y75{bottom:63.297029pt;}
.y3d{bottom:63.304213pt;}
.y11e{bottom:65.362565pt;}
.y1c4{bottom:65.373221pt;}
.y14e{bottom:65.374517pt;}
.y15f{bottom:65.383445pt;}
.y181{bottom:65.385173pt;}
.y20d{bottom:65.523253pt;}
.y25b{bottom:65.524581pt;}
.yb7{bottom:65.535205pt;}
.yf8{bottom:65.545173pt;}
.y21a{bottom:65.695893pt;}
.y74{bottom:77.857221pt;}
.y3c{bottom:77.864405pt;}
.y11d{bottom:79.922757pt;}
.y1c3{bottom:79.933413pt;}
.y14d{bottom:79.934709pt;}
.y15e{bottom:79.943637pt;}
.y180{bottom:79.945365pt;}
.y20c{bottom:80.083445pt;}
.y25a{bottom:80.084773pt;}
.yb6{bottom:80.095397pt;}
.yf7{bottom:80.105365pt;}
.y219{bottom:80.256085pt;}
.y73{bottom:92.417413pt;}
.y3b{bottom:92.424597pt;}
.y11c{bottom:94.482949pt;}
.y1c2{bottom:94.493605pt;}
.y14c{bottom:94.494901pt;}
.y15d{bottom:94.503829pt;}
.y17f{bottom:94.505557pt;}
.y20b{bottom:94.643637pt;}
.y259{bottom:94.644965pt;}
.yb5{bottom:94.655589pt;}
.yf6{bottom:94.665557pt;}
.y218{bottom:94.816277pt;}
.y72{bottom:106.977605pt;}
.y3a{bottom:106.984789pt;}
.y130{bottom:108.895733pt;}
.y11b{bottom:109.043141pt;}
.y1c1{bottom:109.053797pt;}
.y14b{bottom:109.055093pt;}
.y15c{bottom:109.064021pt;}
.y17e{bottom:109.065749pt;}
.y20a{bottom:109.203829pt;}
.y258{bottom:109.205157pt;}
.yb4{bottom:109.215781pt;}
.yf5{bottom:109.225749pt;}
.y217{bottom:109.376469pt;}
.y71{bottom:121.537797pt;}
.y39{bottom:121.544981pt;}
.y11a{bottom:123.603333pt;}
.y1c0{bottom:123.613989pt;}
.y14a{bottom:123.615285pt;}
.y15b{bottom:123.624213pt;}
.y17d{bottom:123.625941pt;}
.y209{bottom:123.764021pt;}
.y257{bottom:123.765349pt;}
.yb3{bottom:123.775973pt;}
.yf4{bottom:123.785941pt;}
.y216{bottom:123.936661pt;}
.y70{bottom:136.097989pt;}
.y38{bottom:136.105173pt;}
.y119{bottom:138.163525pt;}
.y1bf{bottom:138.174181pt;}
.y12f{bottom:138.175477pt;}
.y15a{bottom:138.184405pt;}
.yf3{bottom:138.324213pt;}
.y256{bottom:138.325541pt;}
.yb2{bottom:138.336165pt;}
.y6f{bottom:150.658181pt;}
.y37{bottom:150.665365pt;}
.y105{bottom:152.576309pt;}
.y118{bottom:152.723717pt;}
.y1be{bottom:152.734373pt;}
.y12e{bottom:152.735669pt;}
.y215{bottom:152.736997pt;}
.y159{bottom:152.744597pt;}
.yf2{bottom:152.884405pt;}
.y255{bottom:152.885733pt;}
.yb1{bottom:152.896357pt;}
.y36{bottom:165.225557pt;}
.y1c7{bottom:167.136501pt;}
.y117{bottom:167.283909pt;}
.y1bd{bottom:167.294565pt;}
.y12d{bottom:167.295861pt;}
.y158{bottom:167.304789pt;}
.yf1{bottom:167.444597pt;}
.y254{bottom:167.445925pt;}
.yb0{bottom:167.456549pt;}
.y6e{bottom:179.458517pt;}
.y35{bottom:179.785749pt;}
.y1d1{bottom:181.524053pt;}
.y116{bottom:181.844101pt;}
.y1bc{bottom:181.854757pt;}
.y104{bottom:181.856053pt;}
.y157{bottom:181.864981pt;}
.yf0{bottom:182.004789pt;}
.y253{bottom:182.006117pt;}
.yaf{bottom:182.016741pt;}
.y6d{bottom:194.178069pt;}
.y34{bottom:194.345941pt;}
.y1d0{bottom:196.243605pt;}
.y115{bottom:196.404293pt;}
.y1bb{bottom:196.414949pt;}
.y103{bottom:196.416245pt;}
.y156{bottom:196.425173pt;}
.yef{bottom:196.564981pt;}
.yae{bottom:196.576933pt;}
.y6c{bottom:208.738261pt;}
.y33{bottom:208.906133pt;}
.y1cf{bottom:210.803797pt;}
.y25f{bottom:210.805125pt;}
.y252{bottom:210.806453pt;}
.y114{bottom:210.964485pt;}
.y1ba{bottom:210.975141pt;}
.y102{bottom:210.976437pt;}
.y155{bottom:210.985365pt;}
.yee{bottom:211.125173pt;}
.yad{bottom:211.137125pt;}
.y6b{bottom:223.298453pt;}
.y32{bottom:223.464539pt;}
.y1ce{bottom:225.363989pt;}
.y113{bottom:225.524677pt;}
.y1b9{bottom:225.535333pt;}
.y101{bottom:225.536629pt;}
.y154{bottom:225.545557pt;}
.yed{bottom:225.685365pt;}
.yac{bottom:225.697317pt;}
.y6a{bottom:237.858645pt;}
.y31{bottom:238.024731pt;}
.y1cd{bottom:239.924181pt;}
.y261{bottom:239.937461pt;}
.y112{bottom:240.084869pt;}
.y251{bottom:240.086197pt;}
.y1b8{bottom:240.095525pt;}
.y100{bottom:240.096821pt;}
.y153{bottom:240.105749pt;}
.y208{bottom:240.245557pt;}
.yab{bottom:240.257509pt;}
.y69{bottom:252.418837pt;}
.y30{bottom:252.584923pt;}
.y1cc{bottom:254.484373pt;}
.yec{bottom:254.485701pt;}
.y111{bottom:254.645061pt;}
.y250{bottom:254.646389pt;}
.y1b7{bottom:254.655717pt;}
.yff{bottom:254.657013pt;}
.y152{bottom:254.665941pt;}
.y207{bottom:254.805749pt;}
.yaa{bottom:254.817701pt;}
.y68{bottom:266.979029pt;}
.y2f{bottom:267.145115pt;}
.y1cb{bottom:269.044565pt;}
.y110{bottom:269.205253pt;}
.y24f{bottom:269.206581pt;}
.y1b6{bottom:269.215909pt;}
.yfe{bottom:269.217205pt;}
.y151{bottom:269.226133pt;}
.y206{bottom:269.365941pt;}
.y1e9{bottom:269.377893pt;}
.y67{bottom:281.539221pt;}
.y2e{bottom:281.705307pt;}
.y1ca{bottom:283.604757pt;}
.ya9{bottom:283.618037pt;}
.yeb{bottom:283.765445pt;}
.y24e{bottom:283.766773pt;}
.y1b5{bottom:283.776101pt;}
.yfd{bottom:283.777397pt;}
.y205{bottom:283.926133pt;}
.y1e8{bottom:283.938085pt;}
.y279{bottom:284.247509pt;}
.y66{bottom:296.099413pt;}
.y2d{bottom:296.265499pt;}
.y16d{bottom:298.005589pt;}
.y1c9{bottom:298.164949pt;}
.yea{bottom:298.325637pt;}
.y24d{bottom:298.326965pt;}
.y1b4{bottom:298.336293pt;}
.yfc{bottom:298.337589pt;}
.y204{bottom:298.486325pt;}
.y1e7{bottom:298.498277pt;}
.y278{bottom:298.807701pt;}
.y65{bottom:310.659605pt;}
.y2c{bottom:310.825691pt;}
.y1c8{bottom:312.725141pt;}
.ye9{bottom:312.885829pt;}
.y24c{bottom:312.887157pt;}
.y1b3{bottom:312.896485pt;}
.ya8{bottom:312.897781pt;}
.y203{bottom:313.046517pt;}
.y1e6{bottom:313.058469pt;}
.y277{bottom:313.367893pt;}
.y64{bottom:325.219797pt;}
.y2b{bottom:325.385883pt;}
.y17a{bottom:327.137925pt;}
.y16c{bottom:327.285333pt;}
.ye8{bottom:327.446021pt;}
.y24b{bottom:327.447349pt;}
.y1b2{bottom:327.456677pt;}
.ya7{bottom:327.457973pt;}
.y202{bottom:327.606709pt;}
.y1e5{bottom:327.618661pt;}
.y276{bottom:327.928085pt;}
.y63{bottom:339.779989pt;}
.y2a{bottom:339.946075pt;}
.y16b{bottom:341.845525pt;}
.ye7{bottom:342.006213pt;}
.y24a{bottom:342.007541pt;}
.y1b1{bottom:342.016869pt;}
.ya6{bottom:342.018165pt;}
.y201{bottom:342.166901pt;}
.y1e4{bottom:342.178853pt;}
.y275{bottom:342.488277pt;}
.y62{bottom:354.340181pt;}
.y29{bottom:354.506267pt;}
.y16a{bottom:356.405717pt;}
.ye6{bottom:356.566405pt;}
.y249{bottom:356.567733pt;}
.y1b0{bottom:356.577061pt;}
.ya5{bottom:356.578357pt;}
.y200{bottom:356.727093pt;}
.y1e3{bottom:356.739045pt;}
.y61{bottom:368.900373pt;}
.y28{bottom:369.065419pt;}
.y17b{bottom:370.806549pt;}
.y169{bottom:370.965909pt;}
.y179{bottom:370.977861pt;}
.ye5{bottom:371.126597pt;}
.y248{bottom:371.127925pt;}
.y1af{bottom:371.137253pt;}
.ya4{bottom:371.138549pt;}
.y1ff{bottom:371.287285pt;}
.y274{bottom:371.288613pt;}
.y1e2{bottom:371.299237pt;}
.y60{bottom:383.460565pt;}
.y27{bottom:383.625611pt;}
.y168{bottom:385.526101pt;}
.y178{bottom:385.538053pt;}
.ye4{bottom:385.686789pt;}
.y247{bottom:385.688117pt;}
.y1ae{bottom:385.697445pt;}
.ya3{bottom:385.698741pt;}
.y1e1{bottom:385.859429pt;}
.y5f{bottom:398.020757pt;}
.y167{bottom:400.086293pt;}
.y1fe{bottom:400.087621pt;}
.y177{bottom:400.098245pt;}
.ye3{bottom:400.246981pt;}
.y246{bottom:400.248309pt;}
.y1ad{bottom:400.257637pt;}
.ya2{bottom:400.258933pt;}
.y1e0{bottom:400.419621pt;}
.y273{bottom:400.568357pt;}
.y26{bottom:412.425947pt;}
.y5e{bottom:412.580949pt;}
.y166{bottom:414.646485pt;}
.y176{bottom:414.658437pt;}
.ye2{bottom:414.807173pt;}
.y245{bottom:414.808501pt;}
.y1ac{bottom:414.817829pt;}
.ya1{bottom:414.819125pt;}
.y1df{bottom:414.979813pt;}
.y272{bottom:415.128549pt;}
.y5d{bottom:427.141141pt;}
.y17c{bottom:429.059269pt;}
.y165{bottom:429.206677pt;}
.y175{bottom:429.218629pt;}
.ye1{bottom:429.367365pt;}
.y244{bottom:429.368693pt;}
.y1ab{bottom:429.378021pt;}
.ya0{bottom:429.379317pt;}
.y1de{bottom:429.540005pt;}
.y271{bottom:429.688741pt;}
.y5c{bottom:441.701333pt;}
.y25{bottom:441.705691pt;}
.y164{bottom:443.766869pt;}
.y174{bottom:443.778821pt;}
.ye0{bottom:443.927557pt;}
.y243{bottom:443.928885pt;}
.y1aa{bottom:443.938213pt;}
.y9f{bottom:443.939509pt;}
.y1dd{bottom:444.100197pt;}
.y270{bottom:444.248933pt;}
.y5b{bottom:456.261525pt;}
.y24{bottom:456.265883pt;}
.y139{bottom:458.167701pt;}
.y1d2{bottom:458.179653pt;}
.y163{bottom:458.327061pt;}
.y173{bottom:458.339013pt;}
.ydf{bottom:458.487749pt;}
.y242{bottom:458.489077pt;}
.y1a9{bottom:458.498405pt;}
.y9e{bottom:458.499701pt;}
.y1dc{bottom:458.660389pt;}
.y26f{bottom:458.809125pt;}
.y5a{bottom:470.821717pt;}
.y23{bottom:470.826075pt;}
.y162{bottom:472.887253pt;}
.y172{bottom:472.899205pt;}
.yde{bottom:473.047941pt;}
.y241{bottom:473.049269pt;}
.y1a8{bottom:473.058597pt;}
.y9d{bottom:473.059893pt;}
.y1db{bottom:473.220581pt;}
.y26e{bottom:473.369317pt;}
.y59{bottom:485.381909pt;}
.y22{bottom:485.386267pt;}
.y138{bottom:487.447445pt;}
.y171{bottom:487.459397pt;}
.ydd{bottom:487.608133pt;}
.y240{bottom:487.609461pt;}
.y1a7{bottom:487.618789pt;}
.y9c{bottom:487.620085pt;}
.y1da{bottom:487.780773pt;}
.y26d{bottom:487.929509pt;}
.y58{bottom:499.942101pt;}
.y21{bottom:499.943275pt;}
.y149{bottom:501.860229pt;}
.y137{bottom:502.007637pt;}
.y170{bottom:502.019589pt;}
.ydc{bottom:502.168325pt;}
.y23f{bottom:502.169653pt;}
.y1a6{bottom:502.178981pt;}
.y9b{bottom:502.180277pt;}
.y1d9{bottom:502.340965pt;}
.y26c{bottom:502.489701pt;}
.y57{bottom:514.502293pt;}
.y20{bottom:514.503467pt;}
.y136{bottom:516.567829pt;}
.y16f{bottom:516.579781pt;}
.ydb{bottom:516.728517pt;}
.y23e{bottom:516.729845pt;}
.y1a5{bottom:516.739173pt;}
.y9a{bottom:516.740469pt;}
.y214{bottom:516.901157pt;}
.y56{bottom:529.062485pt;}
.y1f{bottom:529.063659pt;}
.y135{bottom:531.128021pt;}
.y16e{bottom:531.139973pt;}
.y1d8{bottom:531.141301pt;}
.yda{bottom:531.288709pt;}
.y23d{bottom:531.290037pt;}
.y1a4{bottom:531.299365pt;}
.y99{bottom:531.300661pt;}
.y213{bottom:531.461349pt;}
.y55{bottom:543.622677pt;}
.y1e{bottom:543.623851pt;}
.y134{bottom:545.688213pt;}
.y148{bottom:545.700165pt;}
.yd9{bottom:545.848901pt;}
.y23c{bottom:545.850229pt;}
.y1a3{bottom:545.859557pt;}
.y98{bottom:545.860853pt;}
.y212{bottom:546.021541pt;}
.y54{bottom:558.182869pt;}
.y1d{bottom:558.184043pt;}
.y133{bottom:560.248405pt;}
.y147{bottom:560.260357pt;}
.yd8{bottom:560.409093pt;}
.y23b{bottom:560.410421pt;}
.y97{bottom:560.421045pt;}
.y26b{bottom:560.569781pt;}
.y211{bottom:560.581733pt;}
.y53{bottom:572.743061pt;}
.y1c{bottom:572.744235pt;}
.y10f{bottom:574.649237pt;}
.y1a2{bottom:574.659893pt;}
.y132{bottom:574.808597pt;}
.y146{bottom:574.820549pt;}
.yd7{bottom:574.969285pt;}
.y23a{bottom:574.970613pt;}
.y96{bottom:574.981237pt;}
.y26a{bottom:575.129973pt;}
.y52{bottom:587.303253pt;}
.y1b{bottom:587.304427pt;}
.y131{bottom:589.368789pt;}
.y145{bottom:589.380741pt;}
.y210{bottom:589.382069pt;}
.yd6{bottom:589.529477pt;}
.y239{bottom:589.530805pt;}
.y95{bottom:589.541429pt;}
.y269{bottom:589.690165pt;}
.y51{bottom:601.863445pt;}
.y1a{bottom:601.864619pt;}
.y10e{bottom:603.928981pt;}
.y1a1{bottom:603.939637pt;}
.y144{bottom:603.940933pt;}
.yd5{bottom:604.089669pt;}
.y238{bottom:604.090997pt;}
.y94{bottom:604.101621pt;}
.y268{bottom:604.250357pt;}
.y50{bottom:616.423637pt;}
.y19{bottom:616.424811pt;}
.y25e{bottom:618.329813pt;}
.y260{bottom:618.341765pt;}
.y10d{bottom:618.489173pt;}
.y1a0{bottom:618.499829pt;}
.y143{bottom:618.501125pt;}
.yd4{bottom:618.649861pt;}
.y93{bottom:618.661813pt;}
.y267{bottom:618.810549pt;}
.y18{bottom:630.985003pt;}
.y237{bottom:632.891333pt;}
.y10c{bottom:633.049365pt;}
.y19f{bottom:633.060021pt;}
.y142{bottom:633.061317pt;}
.yd3{bottom:633.210053pt;}
.y92{bottom:633.222005pt;}
.y266{bottom:633.370741pt;}
.y4f{bottom:645.223973pt;}
.y17{bottom:645.545195pt;}
.y10b{bottom:647.609557pt;}
.y19e{bottom:647.620213pt;}
.y141{bottom:647.621509pt;}
.yd2{bottom:647.770245pt;}
.y91{bottom:647.782197pt;}
.y265{bottom:647.930933pt;}
.y16{bottom:660.105387pt;}
.y1d3{bottom:662.010389pt;}
.y10a{bottom:662.169749pt;}
.y236{bottom:662.171077pt;}
.y19d{bottom:662.180405pt;}
.y140{bottom:662.181701pt;}
.yd1{bottom:662.330437pt;}
.y90{bottom:662.342389pt;}
.y264{bottom:662.491125pt;}
.y4e{bottom:674.503717pt;}
.y15{bottom:674.665579pt;}
.y150{bottom:676.570581pt;}
.y109{bottom:676.729941pt;}
.y235{bottom:676.731269pt;}
.y19c{bottom:676.740597pt;}
.y13f{bottom:676.741893pt;}
.yd0{bottom:676.890629pt;}
.y8f{bottom:676.902581pt;}
.y263{bottom:677.051317pt;}
.y4d{bottom:689.063909pt;}
.y14{bottom:689.225771pt;}
.y161{bottom:691.142725pt;}
.y108{bottom:691.290133pt;}
.y234{bottom:691.291461pt;}
.y19b{bottom:691.300789pt;}
.y13e{bottom:691.302085pt;}
.y1fd{bottom:691.450821pt;}
.y8e{bottom:691.462773pt;}
.y4c{bottom:703.624101pt;}
.y13{bottom:703.785963pt;}
.ycf{bottom:705.690965pt;}
.y107{bottom:705.850325pt;}
.y233{bottom:705.851653pt;}
.y19a{bottom:705.860981pt;}
.y13d{bottom:705.862277pt;}
.y1fc{bottom:706.011013pt;}
.y8d{bottom:706.022965pt;}
.y4b{bottom:718.184293pt;}
.y12{bottom:718.346155pt;}
.y106{bottom:720.410517pt;}
.y232{bottom:720.411845pt;}
.y199{bottom:720.421173pt;}
.y13c{bottom:720.422469pt;}
.y1fb{bottom:720.571205pt;}
.y8c{bottom:720.583157pt;}
.y4a{bottom:732.744485pt;}
.y11{bottom:732.906347pt;}
.yfb{bottom:734.823301pt;}
.yce{bottom:734.970709pt;}
.y231{bottom:734.972037pt;}
.y198{bottom:734.981365pt;}
.y13b{bottom:734.982661pt;}
.y1fa{bottom:735.131397pt;}
.y12c{bottom:735.143349pt;}
.y49{bottom:747.304677pt;}
.y10{bottom:747.466539pt;}
.y8b{bottom:749.383493pt;}
.ycd{bottom:749.530901pt;}
.y230{bottom:749.532229pt;}
.y197{bottom:749.541557pt;}
.y13a{bottom:749.542853pt;}
.y1f9{bottom:749.691589pt;}
.y12b{bottom:749.703541pt;}
.y48{bottom:761.864869pt;}
.yf{bottom:762.026731pt;}
.y25d{bottom:763.943685pt;}
.ycc{bottom:764.091093pt;}
.y22f{bottom:764.092421pt;}
.y196{bottom:764.101749pt;}
.yfa{bottom:764.103045pt;}
.y1f8{bottom:764.251781pt;}
.y12a{bottom:764.263733pt;}
.y47{bottom:776.425061pt;}
.ye{bottom:776.586923pt;}
.ycb{bottom:778.651285pt;}
.y22e{bottom:778.652613pt;}
.y195{bottom:778.661941pt;}
.y8a{bottom:778.663237pt;}
.y1f7{bottom:778.811973pt;}
.y129{bottom:778.823925pt;}
.y46{bottom:790.985253pt;}
.yd{bottom:791.147115pt;}
.yca{bottom:793.211477pt;}
.y22d{bottom:793.212805pt;}
.y194{bottom:793.222133pt;}
.y89{bottom:793.223429pt;}
.y1f6{bottom:793.372165pt;}
.y128{bottom:793.384117pt;}
.y45{bottom:805.545445pt;}
.yc{bottom:805.707307pt;}
.yc9{bottom:807.771669pt;}
.y22c{bottom:807.772997pt;}
.y193{bottom:807.782325pt;}
.y88{bottom:807.783621pt;}
.y1f5{bottom:807.932357pt;}
.y127{bottom:807.944309pt;}
.y44{bottom:820.105637pt;}
.yb{bottom:820.267499pt;}
.y1c6{bottom:822.184453pt;}
.yc8{bottom:822.331861pt;}
.y22b{bottom:822.333189pt;}
.y192{bottom:822.342517pt;}
.y87{bottom:822.343813pt;}
.y1f4{bottom:822.492549pt;}
.y126{bottom:822.504501pt;}
.y43{bottom:834.665829pt;}
.ya{bottom:834.827691pt;}
.yc7{bottom:836.892053pt;}
.y22a{bottom:836.893381pt;}
.y191{bottom:836.902709pt;}
.y86{bottom:836.904005pt;}
.y1f3{bottom:837.052741pt;}
.y125{bottom:837.064693pt;}
.y42{bottom:849.226021pt;}
.y9{bottom:849.387883pt;}
.yc6{bottom:851.452245pt;}
.y229{bottom:851.453573pt;}
.y190{bottom:851.462901pt;}
.y85{bottom:851.464197pt;}
.y1f2{bottom:851.612933pt;}
.y124{bottom:851.624885pt;}
.y41{bottom:863.786213pt;}
.y8{bottom:863.948075pt;}
.yc5{bottom:866.012437pt;}
.y228{bottom:866.013765pt;}
.y18f{bottom:866.023093pt;}
.y84{bottom:866.024389pt;}
.y1f1{bottom:866.173125pt;}
.y123{bottom:866.185077pt;}
.y40{bottom:878.346405pt;}
.yc4{bottom:880.572629pt;}
.y227{bottom:880.573957pt;}
.y18e{bottom:880.583285pt;}
.y83{bottom:880.584581pt;}
.y1f0{bottom:880.733317pt;}
.y122{bottom:880.745269pt;}
.y7{bottom:892.748411pt;}
.y3f{bottom:892.906597pt;}
.y20f{bottom:894.985413pt;}
.yc3{bottom:895.132821pt;}
.y226{bottom:895.134149pt;}
.y18d{bottom:895.143477pt;}
.y82{bottom:895.144773pt;}
.y1ef{bottom:895.293509pt;}
.y121{bottom:895.305461pt;}
.y262{bottom:909.533653pt;}
.yc2{bottom:909.693013pt;}
.y225{bottom:909.694341pt;}
.y18c{bottom:909.703669pt;}
.y81{bottom:909.704965pt;}
.y1ee{bottom:909.853701pt;}
.y1d7{bottom:909.865653pt;}
.y120{bottom:924.105797pt;}
.yc1{bottom:924.253205pt;}
.y224{bottom:924.254533pt;}
.y18b{bottom:924.263861pt;}
.y80{bottom:924.265157pt;}
.y1ed{bottom:924.413893pt;}
.y1d6{bottom:924.425845pt;}
.yc0{bottom:938.813397pt;}
.y223{bottom:938.814725pt;}
.y18a{bottom:938.824053pt;}
.y7f{bottom:938.825349pt;}
.y1ec{bottom:938.974085pt;}
.y1d5{bottom:938.986037pt;}
.y6{bottom:946.667867pt;}
.ybf{bottom:953.373589pt;}
.y222{bottom:953.374917pt;}
.y189{bottom:953.384245pt;}
.y7e{bottom:953.385541pt;}
.y1eb{bottom:953.534277pt;}
.y5{bottom:961.707467pt;}
.y1d4{bottom:967.786373pt;}
.ybe{bottom:967.933781pt;}
.y221{bottom:967.935109pt;}
.y188{bottom:967.944437pt;}
.y7d{bottom:967.945733pt;}
.y4{bottom:976.747067pt;}
.y1ea{bottom:982.334613pt;}
.ybd{bottom:982.493973pt;}
.y220{bottom:982.495301pt;}
.y187{bottom:982.504629pt;}
.y7c{bottom:982.505925pt;}
.y3{bottom:991.786667pt;}
.ybc{bottom:997.054165pt;}
.y21f{bottom:997.055493pt;}
.y186{bottom:997.064821pt;}
.y7b{bottom:997.066117pt;}
.y2{bottom:1006.826267pt;}
.ybb{bottom:1011.614357pt;}
.y21e{bottom:1011.615685pt;}
.y185{bottom:1011.625013pt;}
.y7a{bottom:1011.626309pt;}
.yba{bottom:1026.174549pt;}
.y21d{bottom:1026.175877pt;}
.y184{bottom:1026.185205pt;}
.y79{bottom:1026.186501pt;}
.yb9{bottom:1040.734741pt;}
.y21c{bottom:1040.736069pt;}
.y183{bottom:1040.745397pt;}
.y78{bottom:1040.746693pt;}
.y1{bottom:1053.226667pt;}
.y77{bottom:1072.426133pt;}
.h3{height:35.404688pt;}
.h4{height:35.897500pt;}
.h5{height:44.301250pt;}
.h7{height:47.812492pt;}
.h8{height:47.816012pt;}
.h9{height:47.817313pt;}
.h6{height:47.821068pt;}
.h12{height:47.852257pt;}
.h11{height:47.892385pt;}
.hc{height:47.897313pt;}
.h2{height:49.343750pt;}
.h15{height:1111.997880pt;}
.h16{height:1112.000000pt;}
.he{height:1114.666667pt;}
.hd{height:1114.832520pt;}
.hf{height:1117.667160pt;}
.h10{height:1118.000000pt;}
.h0{height:1120.501787pt;}
.h1{height:1120.666667pt;}
.h14{height:1123.333333pt;}
.h13{height:1123.374267pt;}
.ha{height:1129.043533pt;}
.hb{height:1129.333333pt;}
.wf{width:782.666667pt;}
.we{width:782.999507pt;}
.w8{width:785.836467pt;}
.w9{width:786.000000pt;}
.wd{width:791.333333pt;}
.wc{width:791.510373pt;}
.w4{width:794.347333pt;}
.w5{width:794.666667pt;}
.w6{width:797.184280pt;}
.w7{width:797.333333pt;}
.wb{width:800.000000pt;}
.wa{width:800.021240pt;}
.w3{width:802.666667pt;}
.w2{width:802.858200pt;}
.w0{width:808.532107pt;}
.w1{width:808.666667pt;}
.x0{left:0.000000pt;}
.x9{left:34.975957pt;}
.x3{left:37.813717pt;}
.x2{left:48.533333pt;}
.xa{left:72.736309pt;}
.x4{left:75.574069pt;}
.x1{left:302.293333pt;}
.xc{left:408.415941pt;}
.x5{left:411.253573pt;}
.xb{left:446.176293pt;}
.x6{left:449.013925pt;}
.xe{left:739.296373pt;}
.xd{left:742.133333pt;}
.x8{left:746.016373pt;}
.x7{left:748.853333pt;}
}




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