
    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_e2f994a0ba87c2228d05284e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.204102;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_a314b02438fb6e863d21e3ce.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_4939c37b5d8b89390b913c44.woff')format("woff");}.ff3{font-family:ff3;line-height:1.169922;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_a945923f5264997627d3316c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.160156;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_c25250358af58e97c67b0204.woff')format("woff");}.ff5{font-family:ff5;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8639fdc1993976de6c93d32d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.907000px;}
.ls24{letter-spacing:-0.894240px;}
.ls34{letter-spacing:-0.853200px;}
.ls5e{letter-spacing:-0.756000px;}
.ls32{letter-spacing:-0.682560px;}
.ls31{letter-spacing:-0.511920px;}
.ls27{letter-spacing:-0.511200px;}
.ls33{letter-spacing:-0.455040px;}
.ls25{letter-spacing:-0.441000px;}
.ls1f{letter-spacing:-0.408960px;}
.ls50{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.357840px;}
.ls4b{letter-spacing:-0.315000px;}
.ls3f{letter-spacing:-0.306720px;}
.ls40{letter-spacing:-0.255600px;}
.ls18{letter-spacing:-0.240480px;}
.ls2e{letter-spacing:-0.204480px;}
.ls49{letter-spacing:-0.189000px;}
.ls36{letter-spacing:-0.170640px;}
.ls12{letter-spacing:-0.162000px;}
.ls3d{letter-spacing:-0.153360px;}
.ls19{letter-spacing:-0.135000px;}
.ls1d{letter-spacing:-0.126000px;}
.ls37{letter-spacing:-0.113760px;}
.ls9{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.077760px;}
.lse{letter-spacing:-0.065880px;}
.ls1c{letter-spacing:-0.063000px;}
.ls44{letter-spacing:-0.056880px;}
.ls11{letter-spacing:-0.054000px;}
.ls1e{letter-spacing:-0.051120px;}
.lsc{letter-spacing:-0.038880px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.015336px;}
.ls55{letter-spacing:0.037800px;}
.ls4{letter-spacing:0.047880px;}
.ls10{letter-spacing:0.051120px;}
.ls14{letter-spacing:0.054000px;}
.ls35{letter-spacing:0.056880px;}
.ls15{letter-spacing:0.063000px;}
.ls3{letter-spacing:0.065880px;}
.ls3a{letter-spacing:0.073944px;}
.lsb{letter-spacing:0.077760px;}
.ls8{letter-spacing:0.097200px;}
.ls41{letter-spacing:0.102240px;}
.ls58{letter-spacing:0.108000px;}
.ls39{letter-spacing:0.113760px;}
.ls21{letter-spacing:0.120240px;}
.ls52{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.143640px;}
.ls51{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.155520px;}
.ls1b{letter-spacing:0.162000px;}
.ls45{letter-spacing:0.170640px;}
.ls0{letter-spacing:0.189000px;}
.ls3e{letter-spacing:0.198720px;}
.ls20{letter-spacing:0.204480px;}
.ls5d{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.227520px;}
.ls2{letter-spacing:0.233280px;}
.ls5c{letter-spacing:0.243000px;}
.ls13{letter-spacing:0.270000px;}
.ls1a{letter-spacing:0.272160px;}
.ls5b{letter-spacing:0.324000px;}
.ls3c{letter-spacing:0.341280px;}
.ls57{letter-spacing:0.345600px;}
.ls4f{letter-spacing:0.378000px;}
.ls29{letter-spacing:0.453600px;}
.ls4a{letter-spacing:0.654336px;}
.ls2b{letter-spacing:0.705600px;}
.ls2a{letter-spacing:0.756000px;}
.ls2d{letter-spacing:0.766800px;}
.ls22{letter-spacing:1.449000px;}
.ls4e{letter-spacing:1.474200px;}
.ls4d{letter-spacing:1.575000px;}
.ls3b{letter-spacing:2.198160px;}
.ls30{letter-spacing:2.388960px;}
.ls2f{letter-spacing:2.411712px;}
.ls46{letter-spacing:2.556000px;}
.ls48{letter-spacing:2.652300px;}
.ls42{letter-spacing:2.787120px;}
.ls4c{letter-spacing:2.809800px;}
.ls56{letter-spacing:2.862000px;}
.ls2c{letter-spacing:3.024000px;}
.ls28{letter-spacing:3.276000px;}
.ls47{letter-spacing:3.317688px;}
.ls7{letter-spacing:3.672000px;}
.ls6{letter-spacing:4.266000px;}
.ls17{letter-spacing:4.345200px;}
.ls23{letter-spacing:4.386096px;}
.ls16{letter-spacing:4.725000px;}
.ls59{letter-spacing:5.022000px;}
.ls54{letter-spacing:6.489000px;}
.ls53{letter-spacing:7.560000px;}
.ls43{letter-spacing:11.907000px;}
.ls5a{letter-spacing:70.524000px;}
.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;}
}
.ws6f{word-spacing:-17.451000px;}
.wsea{word-spacing:-17.325000px;}
.ws52{word-spacing:-17.262000px;}
.ws2c{word-spacing:-17.199000px;}
.ws2d{word-spacing:-17.136000px;}
.wsd4{word-spacing:-17.073000px;}
.wse5{word-spacing:-16.884000px;}
.ws51{word-spacing:-16.593120px;}
.ws29{word-spacing:-16.232400px;}
.wsc9{word-spacing:-15.698880px;}
.wsb0{word-spacing:-15.585120px;}
.wsed{word-spacing:-15.528240px;}
.wsc3{word-spacing:-15.414480px;}
.ws3{word-spacing:-15.225840px;}
.ws8{word-spacing:-15.066000px;}
.ws2b{word-spacing:-14.958000px;}
.ws9{word-spacing:-14.850000px;}
.ws7{word-spacing:-14.796000px;}
.wsfb{word-spacing:-14.742000px;}
.ws85{word-spacing:-14.731920px;}
.ws0{word-spacing:-14.688000px;}
.wsf7{word-spacing:-14.634000px;}
.ws2f{word-spacing:-14.211360px;}
.wsa6{word-spacing:-14.109120px;}
.ws6{word-spacing:-14.058000px;}
.ws5{word-spacing:-14.022216px;}
.ws4{word-spacing:-14.006880px;}
.ws53{word-spacing:-13.955760px;}
.ws99{word-spacing:-13.853520px;}
.wsa5{word-spacing:-13.751280px;}
.ws2e{word-spacing:-13.597920px;}
.ws2a{word-spacing:-10.925280px;}
.ws1{word-spacing:-10.653120px;}
.ws2{word-spacing:-10.575360px;}
.wsa4{word-spacing:-9.273600px;}
.wseb{word-spacing:-4.284000px;}
.wsa7{word-spacing:-3.906000px;}
.ws96{word-spacing:-3.780000px;}
.wsf0{word-spacing:-3.654000px;}
.ws61{word-spacing:-3.591000px;}
.wsdd{word-spacing:-3.526560px;}
.wsce{word-spacing:-3.465000px;}
.wsc8{word-spacing:-3.220560px;}
.ws3c{word-spacing:-3.213000px;}
.wsb1{word-spacing:-3.087000px;}
.ws97{word-spacing:-2.898000px;}
.ws77{word-spacing:-2.835000px;}
.wsca{word-spacing:-2.709000px;}
.wsf3{word-spacing:-2.673360px;}
.wsd6{word-spacing:-2.583000px;}
.ws1a{word-spacing:-2.538000px;}
.ws42{word-spacing:-2.520000px;}
.wsa8{word-spacing:-2.445840px;}
.ws72{word-spacing:-2.394000px;}
.wse2{word-spacing:-2.332080px;}
.wse6{word-spacing:-2.331000px;}
.ws101{word-spacing:-2.214000px;}
.ws62{word-spacing:-2.142000px;}
.ws102{word-spacing:-2.106000px;}
.wse1{word-spacing:-2.104560px;}
.ws6b{word-spacing:-2.095920px;}
.ws100{word-spacing:-2.052000px;}
.wscc{word-spacing:-2.016000px;}
.wsdf{word-spacing:-1.933920px;}
.ws108{word-spacing:-1.890000px;}
.ws25{word-spacing:-1.836000px;}
.ws10a{word-spacing:-1.782000px;}
.ws59{word-spacing:-1.764000px;}
.ws6a{word-spacing:-1.738080px;}
.ws103{word-spacing:-1.728000px;}
.wscd{word-spacing:-1.686960px;}
.ws1d{word-spacing:-1.674000px;}
.ws5a{word-spacing:-1.638000px;}
.ws1f{word-spacing:-1.458000px;}
.ws18{word-spacing:-1.404000px;}
.ws37{word-spacing:-1.386000px;}
.ws50{word-spacing:-1.380240px;}
.wsde{word-spacing:-1.365120px;}
.ws19{word-spacing:-1.296000px;}
.ws76{word-spacing:-1.260000px;}
.ws24{word-spacing:-1.134000px;}
.ws78{word-spacing:-1.071000px;}
.ws48{word-spacing:-1.022400px;}
.ws27{word-spacing:-0.972000px;}
.wsb2{word-spacing:-0.945000px;}
.ws17{word-spacing:-0.756000px;}
.ws70{word-spacing:-0.693000px;}
.wsb9{word-spacing:-0.682560px;}
.ws69{word-spacing:-0.664560px;}
.ws9d{word-spacing:-0.625680px;}
.wsa2{word-spacing:-0.567000px;}
.wsb8{word-spacing:-0.511920px;}
.wse7{word-spacing:-0.378000px;}
.wsa3{word-spacing:-0.357840px;}
.ws9c{word-spacing:-0.341280px;}
.ws5b{word-spacing:-0.315000px;}
.ws14{word-spacing:-0.306720px;}
.ws91{word-spacing:-0.284400px;}
.ws109{word-spacing:-0.270000px;}
.ws55{word-spacing:-0.233280px;}
.ws9e{word-spacing:-0.227520px;}
.ws104{word-spacing:-0.216000px;}
.ws75{word-spacing:-0.189000px;}
.wsac{word-spacing:-0.170640px;}
.ws105{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.143640px;}
.ws11{word-spacing:-0.131760px;}
.wsb{word-spacing:-0.116640px;}
.ws9f{word-spacing:-0.113760px;}
.wse9{word-spacing:-0.102240px;}
.ws54{word-spacing:-0.090000px;}
.ws30{word-spacing:-0.072000px;}
.ws34{word-spacing:-0.063000px;}
.wsc6{word-spacing:-0.056880px;}
.ws22{word-spacing:-0.054000px;}
.wsae{word-spacing:-0.051120px;}
.ws12{word-spacing:-0.047880px;}
.wsa{word-spacing:0.000000px;}
.wsc{word-spacing:0.038880px;}
.ws32{word-spacing:0.045000px;}
.ws15{word-spacing:0.051120px;}
.ws23{word-spacing:0.054000px;}
.ws94{word-spacing:0.056880px;}
.wsf9{word-spacing:0.108000px;}
.ws95{word-spacing:0.113760px;}
.ws3a{word-spacing:0.126000px;}
.ws10{word-spacing:0.131760px;}
.wse{word-spacing:0.155520px;}
.ws1c{word-spacing:0.162000px;}
.wsf{word-spacing:0.197640px;}
.wsc0{word-spacing:0.227520px;}
.wsd{word-spacing:0.233280px;}
.ws31{word-spacing:0.288000px;}
.wsdb{word-spacing:0.315000px;}
.ws21{word-spacing:0.324000px;}
.ws41{word-spacing:0.378000px;}
.ws4f{word-spacing:0.408960px;}
.wsfa{word-spacing:0.432000px;}
.wsaa{word-spacing:0.455040px;}
.ws40{word-spacing:0.504000px;}
.ws6e{word-spacing:0.511200px;}
.wsf5{word-spacing:0.568800px;}
.ws80{word-spacing:0.613440px;}
.ws26{word-spacing:0.702000px;}
.wsf4{word-spacing:0.739440px;}
.ws3f{word-spacing:0.756000px;}
.ws4e{word-spacing:0.766800px;}
.ws8b{word-spacing:0.796320px;}
.ws81{word-spacing:0.817920px;}
.ws8f{word-spacing:0.882000px;}
.ws90{word-spacing:0.910080px;}
.wsf6{word-spacing:0.920160px;}
.ws9b{word-spacing:0.966960px;}
.wsff{word-spacing:1.026000px;}
.ws68{word-spacing:1.124640px;}
.ws5e{word-spacing:1.134000px;}
.wse0{word-spacing:1.137600px;}
.ws107{word-spacing:1.188000px;}
.wsb3{word-spacing:1.260000px;}
.wsbb{word-spacing:1.308240px;}
.ws5c{word-spacing:1.449000px;}
.wsc1{word-spacing:1.482480px;}
.ws5d{word-spacing:1.575000px;}
.wse3{word-spacing:1.649520px;}
.wsfe{word-spacing:1.782000px;}
.wsbc{word-spacing:1.820160px;}
.ws8c{word-spacing:1.827000px;}
.ws6c{word-spacing:1.840320px;}
.wsfd{word-spacing:1.890000px;}
.ws58{word-spacing:1.953000px;}
.ws7b{word-spacing:2.142000px;}
.ws82{word-spacing:2.147040px;}
.ws84{word-spacing:2.198160px;}
.ws39{word-spacing:2.205000px;}
.ws3e{word-spacing:2.331000px;}
.ws93{word-spacing:2.388960px;}
.wse8{word-spacing:2.457000px;}
.ws33{word-spacing:2.484000px;}
.ws74{word-spacing:2.520000px;}
.ws83{word-spacing:2.556000px;}
.ws92{word-spacing:2.616480px;}
.wsef{word-spacing:2.646000px;}
.wsbe{word-spacing:2.730240px;}
.wsfc{word-spacing:2.862000px;}
.ws44{word-spacing:2.898000px;}
.wsa9{word-spacing:2.900880px;}
.ws6d{word-spacing:2.913840px;}
.wsb6{word-spacing:3.024000px;}
.ws1e{word-spacing:3.186000px;}
.ws88{word-spacing:3.242160px;}
.wsaf{word-spacing:3.271680px;}
.ws3d{word-spacing:3.276000px;}
.ws86{word-spacing:3.299040px;}
.wsd3{word-spacing:3.322800px;}
.ws56{word-spacing:3.402000px;}
.ws87{word-spacing:3.469680px;}
.wsf2{word-spacing:3.591000px;}
.ws47{word-spacing:3.629520px;}
.ws79{word-spacing:3.654000px;}
.ws67{word-spacing:3.680640px;}
.ws57{word-spacing:3.717000px;}
.ws1b{word-spacing:3.726000px;}
.ws7a{word-spacing:3.780000px;}
.wsda{word-spacing:3.906000px;}
.ws36{word-spacing:3.969000px;}
.ws89{word-spacing:3.981600px;}
.ws4d{word-spacing:3.987360px;}
.ws4c{word-spacing:4.038480px;}
.ws35{word-spacing:4.095000px;}
.ws4b{word-spacing:4.345200px;}
.ws7d{word-spacing:4.347000px;}
.ws7c{word-spacing:4.473000px;}
.wsba{word-spacing:4.550400px;}
.ws20{word-spacing:4.644000px;}
.wsd5{word-spacing:4.662000px;}
.ws66{word-spacing:4.703040px;}
.ws46{word-spacing:4.725000px;}
.ws45{word-spacing:4.851000px;}
.ws16{word-spacing:5.022000px;}
.ws71{word-spacing:5.040000px;}
.ws65{word-spacing:5.060880px;}
.ws106{word-spacing:5.130000px;}
.wsb5{word-spacing:5.166000px;}
.wse4{word-spacing:5.214240px;}
.ws38{word-spacing:5.418000px;}
.ws4a{word-spacing:5.418720px;}
.ws9a{word-spacing:5.544000px;}
.ws49{word-spacing:5.776560px;}
.ws3b{word-spacing:5.796000px;}
.wscb{word-spacing:5.922000px;}
.wsa0{word-spacing:6.174000px;}
.wscf{word-spacing:6.300000px;}
.ws43{word-spacing:6.489000px;}
.ws8a{word-spacing:6.541200px;}
.wsc7{word-spacing:6.543360px;}
.ws8d{word-spacing:6.615000px;}
.ws28{word-spacing:6.804000px;}
.ws7e{word-spacing:6.867000px;}
.wsd0{word-spacing:6.993000px;}
.wsdc{word-spacing:7.053120px;}
.ws5f{word-spacing:7.245000px;}
.wsb7{word-spacing:7.280640px;}
.ws8e{word-spacing:7.371000px;}
.wsb4{word-spacing:7.560000px;}
.ws10b{word-spacing:7.614000px;}
.wsd2{word-spacing:7.616880px;}
.ws10c{word-spacing:7.668000px;}
.ws73{word-spacing:7.686000px;}
.ws7f{word-spacing:7.938000px;}
.wsd1{word-spacing:7.974720px;}
.wsf8{word-spacing:8.064000px;}
.wsad{word-spacing:8.316000px;}
.wsa1{word-spacing:8.442000px;}
.wsbd{word-spacing:8.702640px;}
.wsf1{word-spacing:8.820000px;}
.wsd8{word-spacing:9.009000px;}
.wsbf{word-spacing:9.043920px;}
.wsd9{word-spacing:9.135000px;}
.wsee{word-spacing:10.080000px;}
.ws60{word-spacing:10.458000px;}
.wsc5{word-spacing:11.907000px;}
.wsc4{word-spacing:12.033000px;}
.wsc2{word-spacing:12.268800px;}
.wsd7{word-spacing:12.600000px;}
.wsec{word-spacing:13.356000px;}
.ws98{word-spacing:13.734000px;}
.wsab{word-spacing:18.770400px;}
.ws64{word-spacing:21.609000px;}
.ws63{word-spacing:21.735000px;}
._5{margin-left:-2.724120px;}
._1{margin-left:-1.329120px;}
._0{width:1.474200px;}
._6{width:3.003120px;}
._2{width:4.032000px;}
._3{width:5.304600px;}
._7{width:6.552000px;}
._8{width:8.316000px;}
._4{width:28.882800px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.120000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:2.970000px;}
.y2e{bottom:44.817120px;}
.y1{bottom:45.630000px;}
.y2d{bottom:56.520000px;}
.ya{bottom:95.670000px;}
.y1e4{bottom:96.480000px;}
.y1cc{bottom:96.490440px;}
.y11d{bottom:96.493320px;}
.yed{bottom:96.496050px;}
.y18c{bottom:96.501420px;}
.y138{bottom:96.503760px;}
.y19c{bottom:96.506640px;}
.y5b{bottom:96.514740px;}
.y157{bottom:96.519960px;}
.y8a{bottom:96.541380px;}
.y2b{bottom:98.478000px;}
.ycb{bottom:98.556750px;}
.y12{bottom:98.730000px;}
.y1b1{bottom:106.683750px;}
.y1cb{bottom:111.877560px;}
.y11c{bottom:111.880440px;}
.yec{bottom:111.883170px;}
.y18b{bottom:111.888540px;}
.y137{bottom:111.890880px;}
.y19b{bottom:111.893760px;}
.y5a{bottom:111.901860px;}
.y156{bottom:111.907080px;}
.y89{bottom:111.928500px;}
.y1e3{bottom:113.760000px;}
.y2a{bottom:114.232500px;}
.yca{bottom:117.456750px;}
.y209{bottom:122.494500px;}
.y1b0{bottom:125.583750px;}
.y1ca{bottom:127.175220px;}
.y11b{bottom:127.178100px;}
.yeb{bottom:127.180830px;}
.y18a{bottom:127.186200px;}
.y136{bottom:127.188540px;}
.y19a{bottom:127.191420px;}
.y59{bottom:127.199520px;}
.y155{bottom:127.204740px;}
.y88{bottom:127.226160px;}
.y29{bottom:129.987000px;}
.y170{bottom:134.577000px;}
.yc9{bottom:136.356750px;}
.y1c9{bottom:142.562340px;}
.y11a{bottom:142.565220px;}
.yea{bottom:142.567950px;}
.y189{bottom:142.573320px;}
.y135{bottom:142.575660px;}
.y199{bottom:142.578540px;}
.y58{bottom:142.586640px;}
.y154{bottom:142.591860px;}
.y87{bottom:142.613280px;}
.y208{bottom:144.270000px;}
.y1af{bottom:144.483750px;}
.y28{bottom:145.741500px;}
.y16f{bottom:153.477000px;}
.y1c8{bottom:157.860000px;}
.y119{bottom:157.862880px;}
.ye9{bottom:157.865610px;}
.y188{bottom:157.870980px;}
.y134{bottom:157.873320px;}
.y198{bottom:157.876200px;}
.y57{bottom:157.884300px;}
.y153{bottom:157.889520px;}
.y86{bottom:157.910940px;}
.y27{bottom:161.496000px;}
.y1ae{bottom:163.383750px;}
.yc8{bottom:164.250000px;}
.y207{bottom:165.964500px;}
.y1e2{bottom:172.356750px;}
.y16e{bottom:172.377000px;}
.y118{bottom:173.250000px;}
.ye8{bottom:173.252730px;}
.y187{bottom:173.258100px;}
.y133{bottom:173.260440px;}
.y197{bottom:173.263320px;}
.y56{bottom:173.271420px;}
.y152{bottom:173.276640px;}
.y85{bottom:173.298060px;}
.y1c7{bottom:175.139850px;}
.y26{bottom:177.250500px;}
.y1ad{bottom:182.283750px;}
.yc7{bottom:183.150000px;}
.y206{bottom:187.740000px;}
.ye7{bottom:188.639850px;}
.y186{bottom:188.645220px;}
.y132{bottom:188.647560px;}
.y196{bottom:188.650440px;}
.y55{bottom:188.658540px;}
.y151{bottom:188.663760px;}
.y84{bottom:188.685180px;}
.y117{bottom:190.530000px;}
.y1e1{bottom:191.256750px;}
.y16d{bottom:191.277000px;}
.y25{bottom:193.005000px;}
.y1c6{bottom:196.650000px;}
.y1ac{bottom:201.183750px;}
.yc6{bottom:202.050000px;}
.y185{bottom:203.942880px;}
.y131{bottom:203.945220px;}
.y195{bottom:203.948100px;}
.y54{bottom:203.956200px;}
.y150{bottom:203.961420px;}
.y83{bottom:203.982840px;}
.ye6{bottom:205.830000px;}
.y205{bottom:209.515500px;}
.y1e0{bottom:210.156750px;}
.y16c{bottom:210.177000px;}
.y24{bottom:210.190500px;}
.y1c5{bottom:215.550000px;}
.y184{bottom:219.330000px;}
.y130{bottom:219.332340px;}
.y194{bottom:219.335220px;}
.y53{bottom:219.343320px;}
.y14f{bottom:219.348540px;}
.y82{bottom:219.369960px;}
.y1ab{bottom:220.083750px;}
.yc5{bottom:220.950000px;}
.y23{bottom:227.470500px;}
.y1df{bottom:229.056750px;}
.y16b{bottom:229.077000px;}
.y204{bottom:231.210000px;}
.y1c4{bottom:234.450000px;}
.y12f{bottom:234.630000px;}
.y193{bottom:234.632880px;}
.y52{bottom:234.640980px;}
.y14e{bottom:234.646200px;}
.y81{bottom:234.667620px;}
.y183{bottom:236.610000px;}
.ye5{bottom:238.950000px;}
.y1aa{bottom:238.983750px;}
.yc4{bottom:239.850000px;}
.y22{bottom:243.225000px;}
.y1de{bottom:247.956750px;}
.y16a{bottom:247.977000px;}
.y116{bottom:248.862960px;}
.y22b{bottom:249.659850px;}
.y192{bottom:250.020000px;}
.y51{bottom:250.028100px;}
.y14d{bottom:250.033320px;}
.y80{bottom:250.054740px;}
.y12e{bottom:251.910000px;}
.y1c3{bottom:253.350000px;}
.ye4{bottom:257.850000px;}
.yc3{bottom:258.750000px;}
.y21{bottom:258.979500px;}
.y1fd{bottom:259.668000px;}
.y50{bottom:265.415220px;}
.y14c{bottom:265.420440px;}
.y7f{bottom:265.441860px;}
.y1dd{bottom:266.856750px;}
.y169{bottom:266.877000px;}
.y22a{bottom:266.939850px;}
.y191{bottom:267.300000px;}
.y115{bottom:267.761340px;}
.y1c2{bottom:272.250000px;}
.y20{bottom:274.734000px;}
.ye3{bottom:276.750000px;}
.yc2{bottom:277.650000px;}
.y1fc{bottom:278.568000px;}
.y4f{bottom:280.712880px;}
.y14b{bottom:280.718100px;}
.y7e{bottom:280.739520px;}
.y182{bottom:285.750000px;}
.y1dc{bottom:285.756750px;}
.y1a9{bottom:285.777000px;}
.y114{bottom:286.659720px;}
.y229{bottom:288.715350px;}
.y1f{bottom:290.488500px;}
.y12d{bottom:291.119400px;}
.y1c1{bottom:291.150000px;}
.y168{bottom:294.770250px;}
.ye2{bottom:295.650000px;}
.y4e{bottom:296.100000px;}
.y14a{bottom:296.105220px;}
.y7d{bottom:296.126640px;}
.yc1{bottom:296.550000px;}
.y1fb{bottom:297.468000px;}
.y181{bottom:304.650000px;}
.y1db{bottom:304.656750px;}
.y1a8{bottom:304.677000px;}
.y113{bottom:305.558100px;}
.y1e{bottom:306.243000px;}
.y1c0{bottom:310.050000px;}
.y228{bottom:310.409850px;}
.y149{bottom:311.402880px;}
.y7c{bottom:311.424300px;}
.y190{bottom:312.756750px;}
.y4d{bottom:313.290000px;}
.y12c{bottom:314.525520px;}
.ye1{bottom:314.550000px;}
.yc0{bottom:315.450000px;}
.y1fa{bottom:316.368000px;}
.y1d{bottom:321.997500px;}
.y167{bottom:322.663500px;}
.y180{bottom:323.550000px;}
.y1da{bottom:323.556750px;}
.y1a7{bottom:323.577000px;}
.y112{bottom:324.456480px;}
.y148{bottom:326.790000px;}
.y7b{bottom:326.811420px;}
.y227{bottom:327.689850px;}
.y1bf{bottom:328.950000px;}
.y18f{bottom:331.656750px;}
.ye0{bottom:333.450000px;}
.ybf{bottom:334.350000px;}
.y1f9{bottom:335.268000px;}
.y1c{bottom:337.752000px;}
.y12b{bottom:337.931640px;}
.y203{bottom:341.563500px;}
.y7a{bottom:342.109080px;}
.y17f{bottom:342.450000px;}
.y1d9{bottom:342.456750px;}
.y1a6{bottom:342.477000px;}
.y111{bottom:343.354860px;}
.y147{bottom:344.070000px;}
.y101{bottom:344.261250px;}
.y4c{bottom:346.050000px;}
.y1be{bottom:347.850000px;}
.y226{bottom:349.465350px;}
.y166{bottom:350.556750px;}
.ydf{bottom:352.350000px;}
.ya4{bottom:352.356750px;}
.ybe{bottom:353.250000px;}
.y1b{bottom:353.506500px;}
.y1f8{bottom:354.168000px;}
.y79{bottom:357.496200px;}
.y202{bottom:360.463500px;}
.y12a{bottom:361.337760px;}
.y17e{bottom:361.350000px;}
.y1a5{bottom:361.377000px;}
.y110{bottom:362.253240px;}
.y100{bottom:363.161250px;}
.y4b{bottom:364.950000px;}
.y146{bottom:366.750000px;}
.y1bd{bottom:366.756750px;}
.y1a{bottom:369.261000px;}
.y165{bottom:369.456750px;}
.y1d8{bottom:370.350000px;}
.y225{bottom:371.159850px;}
.yde{bottom:371.250000px;}
.ya3{bottom:371.256750px;}
.ybd{bottom:372.150000px;}
.y78{bottom:372.883320px;}
.y15e{bottom:379.356750px;}
.y201{bottom:379.363500px;}
.y17d{bottom:380.250000px;}
.y1a4{bottom:380.277000px;}
.y10f{bottom:381.151620px;}
.yff{bottom:382.061250px;}
.y4a{bottom:383.850000px;}
.y129{bottom:384.743880px;}
.y19{bottom:385.015500px;}
.y145{bottom:385.650000px;}
.y1bc{bottom:385.656750px;}
.y77{bottom:388.180980px;}
.y164{bottom:388.356750px;}
.y1d7{bottom:389.250000px;}
.ydd{bottom:390.150000px;}
.ya2{bottom:390.156750px;}
.y224{bottom:392.935350px;}
.y15d{bottom:398.256750px;}
.y200{bottom:398.263500px;}
.y17c{bottom:399.150000px;}
.y1a3{bottom:399.177000px;}
.y10e{bottom:400.050000px;}
.y18{bottom:400.770000px;}
.y1f7{bottom:400.961250px;}
.y49{bottom:402.750000px;}
.y76{bottom:403.568100px;}
.y144{bottom:404.550000px;}
.y163{bottom:407.256750px;}
.y128{bottom:408.150000px;}
.ydc{bottom:409.050000px;}
.ya1{bottom:409.056750px;}
.ybc{bottom:409.058100px;}
.y1bb{bottom:413.550000px;}
.y223{bottom:414.710850px;}
.y15c{bottom:417.156750px;}
.y1ff{bottom:417.163500px;}
.y17b{bottom:418.050000px;}
.y1a2{bottom:418.077000px;}
.y75{bottom:418.865760px;}
.yfe{bottom:418.963500px;}
.y1f6{bottom:419.861250px;}
.y48{bottom:421.650000px;}
.y143{bottom:423.450000px;}
.y17{bottom:426.156750px;}
.y1d6{bottom:427.050000px;}
.ydb{bottom:427.950000px;}
.ybb{bottom:427.956480px;}
.ya0{bottom:427.956750px;}
.y1ba{bottom:432.450000px;}
.y74{bottom:434.252880px;}
.y15b{bottom:436.056750px;}
.y127{bottom:436.063500px;}
.y222{bottom:436.405350px;}
.y17a{bottom:436.950000px;}
.y10d{bottom:436.977000px;}
.y1f5{bottom:438.761250px;}
.y47{bottom:440.550000px;}
.y142{bottom:442.350000px;}
.y162{bottom:445.056750px;}
.y1d5{bottom:445.950000px;}
.yda{bottom:446.850000px;}
.yba{bottom:446.854860px;}
.y9f{bottom:446.856750px;}
.y73{bottom:449.640000px;}
.y1b9{bottom:451.350000px;}
.y16{bottom:454.050000px;}
.y15a{bottom:454.956750px;}
.y126{bottom:454.963500px;}
.y179{bottom:455.850000px;}
.y10c{bottom:455.877000px;}
.y1f4{bottom:457.661250px;}
.y221{bottom:458.180850px;}
.y46{bottom:459.450000px;}
.y141{bottom:461.250000px;}
.y161{bottom:463.956750px;}
.y1d4{bottom:464.870250px;}
.yd9{bottom:465.750000px;}
.yb9{bottom:465.753240px;}
.y72{bottom:466.830000px;}
.y1b8{bottom:470.250000px;}
.y159{bottom:473.856750px;}
.y125{bottom:473.863500px;}
.y9e{bottom:474.750000px;}
.y10b{bottom:474.777000px;}
.y1f3{bottom:476.561250px;}
.y9{bottom:478.170000px;}
.y45{bottom:478.356750px;}
.y220{bottom:479.956350px;}
.y140{bottom:480.150000px;}
.y160{bottom:482.856750px;}
.y1d3{bottom:483.770250px;}
.yd8{bottom:484.650000px;}
.yb8{bottom:484.651620px;}
.y1b7{bottom:489.150000px;}
.y71{bottom:492.756750px;}
.y124{bottom:492.763500px;}
.y9d{bottom:493.650000px;}
.y10a{bottom:493.677000px;}
.y1f2{bottom:495.461250px;}
.y10{bottom:496.450980px;}
.y21f{bottom:497.236350px;}
.y13f{bottom:499.050000px;}
.y15f{bottom:501.756750px;}
.y1d2{bottom:502.670250px;}
.yb7{bottom:503.550000px;}
.y44{bottom:506.250000px;}
.y1b6{bottom:508.050000px;}
.y70{bottom:511.656750px;}
.y1fe{bottom:511.663500px;}
.yf{bottom:511.838100px;}
.y9c{bottom:512.550000px;}
.y109{bottom:512.577000px;}
.y1f1{bottom:514.361250px;}
.y21e{bottom:518.930850px;}
.y123{bottom:520.656750px;}
.y1d1{bottom:521.570250px;}
.yd7{bottom:522.450000px;}
.y43{bottom:525.150000px;}
.y13e{bottom:526.919400px;}
.ye{bottom:527.225220px;}
.y158{bottom:530.556750px;}
.yfd{bottom:531.450000px;}
.y9b{bottom:531.461250px;}
.y108{bottom:531.477000px;}
.y15{bottom:533.514420px;}
.y1b5{bottom:535.931640px;}
.y21d{bottom:536.210850px;}
.y6f{bottom:539.550000px;}
.y122{bottom:539.556750px;}
.yb6{bottom:540.456750px;}
.y1d0{bottom:540.470250px;}
.yd{bottom:542.522880px;}
.y42{bottom:544.050000px;}
.y14{bottom:548.010090px;}
.y13d{bottom:550.325520px;}
.yfc{bottom:550.350000px;}
.y9a{bottom:550.361250px;}
.y107{bottom:550.377000px;}
.y1f0{bottom:551.263500px;}
.y21c{bottom:557.905350px;}
.yc{bottom:557.910000px;}
.y6e{bottom:558.450000px;}
.y121{bottom:558.456750px;}
.y1b4{bottom:559.337760px;}
.yd6{bottom:559.356480px;}
.yb5{bottom:559.356750px;}
.y1cf{bottom:559.370250px;}
.y13{bottom:562.410000px;}
.y41{bottom:562.950000px;}
.y178{bottom:568.362960px;}
.yfb{bottom:569.250000px;}
.y99{bottom:569.261250px;}
.y1a1{bottom:569.277000px;}
.y13c{bottom:573.731640px;}
.yb{bottom:573.840000px;}
.y21b{bottom:575.185350px;}
.y6d{bottom:577.350000px;}
.y120{bottom:577.356750px;}
.yd5{bottom:578.254860px;}
.yb4{bottom:578.256750px;}
.y106{bottom:578.270250px;}
.y1ef{bottom:579.156750px;}
.y40{bottom:581.850000px;}
.y1b3{bottom:582.743880px;}
.y177{bottom:587.261340px;}
.yfa{bottom:588.150000px;}
.y98{bottom:588.161250px;}
.y1a0{bottom:588.177000px;}
.y6c{bottom:596.250000px;}
.y11f{bottom:596.256750px;}
.y21a{bottom:596.960850px;}
.y13b{bottom:597.137760px;}
.yd4{bottom:597.153240px;}
.yb3{bottom:597.156750px;}
.y1ce{bottom:597.170250px;}
.y3f{bottom:600.750000px;}
.y1b2{bottom:606.150000px;}
.y176{bottom:606.159720px;}
.y105{bottom:606.163500px;}
.yf9{bottom:607.050000px;}
.y19f{bottom:607.077000px;}
.y6b{bottom:615.150000px;}
.y11e{bottom:615.156750px;}
.yd3{bottom:616.051620px;}
.yb2{bottom:616.056750px;}
.y1cd{bottom:616.070250px;}
.y219{bottom:618.655350px;}
.y3e{bottom:619.643250px;}
.y13a{bottom:620.543880px;}
.y175{bottom:625.058100px;}
.y97{bottom:625.063500px;}
.yf8{bottom:625.950000px;}
.y6a{bottom:634.050000px;}
.y104{bottom:634.056750px;}
.yd2{bottom:634.950000px;}
.yb1{bottom:634.956750px;}
.y19e{bottom:634.970250px;}
.y218{bottom:635.935350px;}
.y3d{bottom:638.543250px;}
.y18e{bottom:643.050000px;}
.y139{bottom:643.950000px;}
.y174{bottom:643.956480px;}
.yf7{bottom:644.850000px;}
.y69{bottom:652.950000px;}
.y96{bottom:652.956750px;}
.yb0{bottom:653.856750px;}
.y3c{bottom:657.443250px;}
.y217{bottom:657.710850px;}
.y8{bottom:658.351350px;}
.y18d{bottom:661.950000px;}
.y173{bottom:662.854860px;}
.y19d{bottom:662.863500px;}
.y1ee{bottom:663.750000px;}
.y68{bottom:671.850000px;}
.y103{bottom:671.856750px;}
.y216{bottom:674.990850px;}
.y3b{bottom:676.343250px;}
.y95{bottom:680.850000px;}
.y7{bottom:681.211710px;}
.yaf{bottom:681.750000px;}
.y172{bottom:681.753240px;}
.yf6{bottom:681.758100px;}
.y1ed{bottom:682.650000px;}
.y67{bottom:690.750000px;}
.y102{bottom:690.756750px;}
.y3a{bottom:695.243250px;}
.y215{bottom:696.685350px;}
.y94{bottom:699.750000px;}
.yae{bottom:700.650000px;}
.y171{bottom:700.651620px;}
.yf5{bottom:700.656480px;}
.y1ec{bottom:701.550000px;}
.y66{bottom:709.650000px;}
.yd1{bottom:709.656750px;}
.y214{bottom:718.460850px;}
.y93{bottom:718.650000px;}
.yad{bottom:719.550000px;}
.yf4{bottom:719.554860px;}
.y1eb{bottom:720.450000px;}
.y6{bottom:722.156130px;}
.y65{bottom:728.550000px;}
.yd0{bottom:728.556750px;}
.y39{bottom:732.240000px;}
.y213{bottom:735.740850px;}
.y92{bottom:737.550000px;}
.yac{bottom:738.450000px;}
.yf3{bottom:738.453240px;}
.y5{bottom:745.560000px;}
.y64{bottom:747.450000px;}
.ycf{bottom:747.456750px;}
.y91{bottom:756.450000px;}
.yab{bottom:757.350000px;}
.yf2{bottom:757.351620px;}
.y1ea{bottom:757.358100px;}
.y212{bottom:757.435350px;}
.y38{bottom:759.415500px;}
.y63{bottom:766.350000px;}
.yce{bottom:766.356750px;}
.y211{bottom:774.715350px;}
.y90{bottom:775.350000px;}
.yaa{bottom:776.250000px;}
.y1e9{bottom:776.256480px;}
.y37{bottom:776.695500px;}
.y62{bottom:785.250000px;}
.ycd{bottom:785.256750px;}
.y36{bottom:793.975500px;}
.y8f{bottom:794.250000px;}
.ya9{bottom:795.150000px;}
.y1e8{bottom:795.154860px;}
.y210{bottom:796.409850px;}
.y61{bottom:804.150000px;}
.ycc{bottom:804.156750px;}
.y35{bottom:811.161000px;}
.yf1{bottom:813.149850px;}
.y8e{bottom:813.150000px;}
.y20f{bottom:813.689850px;}
.y1e7{bottom:814.053240px;}
.y60{bottom:823.056750px;}
.y34{bottom:828.441000px;}
.yf0{bottom:832.049850px;}
.y8d{bottom:832.050000px;}
.ya8{bottom:832.056480px;}
.y1e6{bottom:832.951620px;}
.y20e{bottom:835.465350px;}
.y5f{bottom:841.956750px;}
.y33{bottom:845.721000px;}
.yef{bottom:850.949850px;}
.y8c{bottom:850.950000px;}
.ya7{bottom:850.954860px;}
.y1e5{bottom:851.850000px;}
.y20d{bottom:852.745350px;}
.y5e{bottom:860.856750px;}
.y32{bottom:862.906500px;}
.yee{bottom:869.849850px;}
.y8b{bottom:869.850000px;}
.ya6{bottom:869.853240px;}
.y20c{bottom:874.439850px;}
.y31{bottom:878.661000px;}
.y4{bottom:885.957840px;}
.y5d{bottom:888.750000px;}
.ya5{bottom:888.751620px;}
.y20b{bottom:891.719850px;}
.y30{bottom:894.415500px;}
.y3{bottom:899.458920px;}
.y5c{bottom:907.650000px;}
.y20a{bottom:908.999850px;}
.y2f{bottom:910.170000px;}
.y2{bottom:912.960000px;}
.y2c{bottom:950.760000px;}
.h3{height:36.696797px;}
.h4{height:37.646016px;}
.he{height:38.234531px;}
.hb{height:46.360371px;}
.h9{height:47.085117px;}
.h10{height:47.988281px;}
.ha{height:49.497539px;}
.h2{height:52.286133px;}
.h16{height:53.103516px;}
.h12{height:55.074727px;}
.h15{height:55.148167px;}
.h14{height:55.197127px;}
.h13{height:55.883863px;}
.hd{height:58.211895px;}
.h8{height:59.121914px;}
.hc{height:61.000488px;}
.hf{height:61.027488px;}
.h6{height:63.724746px;}
.h5{height:65.429648px;}
.h11{height:69.714844px;}
.h7{height:110.430000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:133.290000px;}
.w2{width:393.300000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x8{left:56.700000px;}
.x1{left:97.830000px;}
.xd{left:105.930000px;}
.x7{left:119.610000px;}
.xa{left:139.320000px;}
.x14{left:140.400000px;}
.x9{left:165.690000px;}
.x2{left:187.740000px;}
.xc{left:189.720000px;}
.x4{left:193.949190px;}
.x3{left:211.588560px;}
.x5{left:244.610910px;}
.xb{left:246.420000px;}
.x13{left:313.830000px;}
.x11{left:365.494320px;}
.x10{left:401.400000px;}
.xe{left:491.130000px;}
.xf{left:499.230000px;}
.x12{left:625.153500px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.584000pt;}
.ls24{letter-spacing:-0.794880pt;}
.ls34{letter-spacing:-0.758400pt;}
.ls5e{letter-spacing:-0.672000pt;}
.ls32{letter-spacing:-0.606720pt;}
.ls31{letter-spacing:-0.455040pt;}
.ls27{letter-spacing:-0.454400pt;}
.ls33{letter-spacing:-0.404480pt;}
.ls25{letter-spacing:-0.392000pt;}
.ls1f{letter-spacing:-0.363520pt;}
.ls50{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.318080pt;}
.ls4b{letter-spacing:-0.280000pt;}
.ls3f{letter-spacing:-0.272640pt;}
.ls40{letter-spacing:-0.227200pt;}
.ls18{letter-spacing:-0.213760pt;}
.ls2e{letter-spacing:-0.181760pt;}
.ls49{letter-spacing:-0.168000pt;}
.ls36{letter-spacing:-0.151680pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls3d{letter-spacing:-0.136320pt;}
.ls19{letter-spacing:-0.120000pt;}
.ls1d{letter-spacing:-0.112000pt;}
.ls37{letter-spacing:-0.101120pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.069120pt;}
.lse{letter-spacing:-0.058560pt;}
.ls1c{letter-spacing:-0.056000pt;}
.ls44{letter-spacing:-0.050560pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls1e{letter-spacing:-0.045440pt;}
.lsc{letter-spacing:-0.034560pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.013632pt;}
.ls55{letter-spacing:0.033600pt;}
.ls4{letter-spacing:0.042560pt;}
.ls10{letter-spacing:0.045440pt;}
.ls14{letter-spacing:0.048000pt;}
.ls35{letter-spacing:0.050560pt;}
.ls15{letter-spacing:0.056000pt;}
.ls3{letter-spacing:0.058560pt;}
.ls3a{letter-spacing:0.065728pt;}
.lsb{letter-spacing:0.069120pt;}
.ls8{letter-spacing:0.086400pt;}
.ls41{letter-spacing:0.090880pt;}
.ls58{letter-spacing:0.096000pt;}
.ls39{letter-spacing:0.101120pt;}
.ls21{letter-spacing:0.106880pt;}
.ls52{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.127680pt;}
.ls51{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.138240pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls45{letter-spacing:0.151680pt;}
.ls0{letter-spacing:0.168000pt;}
.ls3e{letter-spacing:0.176640pt;}
.ls20{letter-spacing:0.181760pt;}
.ls5d{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.202240pt;}
.ls2{letter-spacing:0.207360pt;}
.ls5c{letter-spacing:0.216000pt;}
.ls13{letter-spacing:0.240000pt;}
.ls1a{letter-spacing:0.241920pt;}
.ls5b{letter-spacing:0.288000pt;}
.ls3c{letter-spacing:0.303360pt;}
.ls57{letter-spacing:0.307200pt;}
.ls4f{letter-spacing:0.336000pt;}
.ls29{letter-spacing:0.403200pt;}
.ls4a{letter-spacing:0.581632pt;}
.ls2b{letter-spacing:0.627200pt;}
.ls2a{letter-spacing:0.672000pt;}
.ls2d{letter-spacing:0.681600pt;}
.ls22{letter-spacing:1.288000pt;}
.ls4e{letter-spacing:1.310400pt;}
.ls4d{letter-spacing:1.400000pt;}
.ls3b{letter-spacing:1.953920pt;}
.ls30{letter-spacing:2.123520pt;}
.ls2f{letter-spacing:2.143744pt;}
.ls46{letter-spacing:2.272000pt;}
.ls48{letter-spacing:2.357600pt;}
.ls42{letter-spacing:2.477440pt;}
.ls4c{letter-spacing:2.497600pt;}
.ls56{letter-spacing:2.544000pt;}
.ls2c{letter-spacing:2.688000pt;}
.ls28{letter-spacing:2.912000pt;}
.ls47{letter-spacing:2.949056pt;}
.ls7{letter-spacing:3.264000pt;}
.ls6{letter-spacing:3.792000pt;}
.ls17{letter-spacing:3.862400pt;}
.ls23{letter-spacing:3.898752pt;}
.ls16{letter-spacing:4.200000pt;}
.ls59{letter-spacing:4.464000pt;}
.ls54{letter-spacing:5.768000pt;}
.ls53{letter-spacing:6.720000pt;}
.ls43{letter-spacing:10.584000pt;}
.ls5a{letter-spacing:62.688000pt;}
.ws6f{word-spacing:-15.512000pt;}
.wsea{word-spacing:-15.400000pt;}
.ws52{word-spacing:-15.344000pt;}
.ws2c{word-spacing:-15.288000pt;}
.ws2d{word-spacing:-15.232000pt;}
.wsd4{word-spacing:-15.176000pt;}
.wse5{word-spacing:-15.008000pt;}
.ws51{word-spacing:-14.749440pt;}
.ws29{word-spacing:-14.428800pt;}
.wsc9{word-spacing:-13.954560pt;}
.wsb0{word-spacing:-13.853440pt;}
.wsed{word-spacing:-13.802880pt;}
.wsc3{word-spacing:-13.701760pt;}
.ws3{word-spacing:-13.534080pt;}
.ws8{word-spacing:-13.392000pt;}
.ws2b{word-spacing:-13.296000pt;}
.ws9{word-spacing:-13.200000pt;}
.ws7{word-spacing:-13.152000pt;}
.wsfb{word-spacing:-13.104000pt;}
.ws85{word-spacing:-13.095040pt;}
.ws0{word-spacing:-13.056000pt;}
.wsf7{word-spacing:-13.008000pt;}
.ws2f{word-spacing:-12.632320pt;}
.wsa6{word-spacing:-12.541440pt;}
.ws6{word-spacing:-12.496000pt;}
.ws5{word-spacing:-12.464192pt;}
.ws4{word-spacing:-12.450560pt;}
.ws53{word-spacing:-12.405120pt;}
.ws99{word-spacing:-12.314240pt;}
.wsa5{word-spacing:-12.223360pt;}
.ws2e{word-spacing:-12.087040pt;}
.ws2a{word-spacing:-9.711360pt;}
.ws1{word-spacing:-9.469440pt;}
.ws2{word-spacing:-9.400320pt;}
.wsa4{word-spacing:-8.243200pt;}
.wseb{word-spacing:-3.808000pt;}
.wsa7{word-spacing:-3.472000pt;}
.ws96{word-spacing:-3.360000pt;}
.wsf0{word-spacing:-3.248000pt;}
.ws61{word-spacing:-3.192000pt;}
.wsdd{word-spacing:-3.134720pt;}
.wsce{word-spacing:-3.080000pt;}
.wsc8{word-spacing:-2.862720pt;}
.ws3c{word-spacing:-2.856000pt;}
.wsb1{word-spacing:-2.744000pt;}
.ws97{word-spacing:-2.576000pt;}
.ws77{word-spacing:-2.520000pt;}
.wsca{word-spacing:-2.408000pt;}
.wsf3{word-spacing:-2.376320pt;}
.wsd6{word-spacing:-2.296000pt;}
.ws1a{word-spacing:-2.256000pt;}
.ws42{word-spacing:-2.240000pt;}
.wsa8{word-spacing:-2.174080pt;}
.ws72{word-spacing:-2.128000pt;}
.wse2{word-spacing:-2.072960pt;}
.wse6{word-spacing:-2.072000pt;}
.ws101{word-spacing:-1.968000pt;}
.ws62{word-spacing:-1.904000pt;}
.ws102{word-spacing:-1.872000pt;}
.wse1{word-spacing:-1.870720pt;}
.ws6b{word-spacing:-1.863040pt;}
.ws100{word-spacing:-1.824000pt;}
.wscc{word-spacing:-1.792000pt;}
.wsdf{word-spacing:-1.719040pt;}
.ws108{word-spacing:-1.680000pt;}
.ws25{word-spacing:-1.632000pt;}
.ws10a{word-spacing:-1.584000pt;}
.ws59{word-spacing:-1.568000pt;}
.ws6a{word-spacing:-1.544960pt;}
.ws103{word-spacing:-1.536000pt;}
.wscd{word-spacing:-1.499520pt;}
.ws1d{word-spacing:-1.488000pt;}
.ws5a{word-spacing:-1.456000pt;}
.ws1f{word-spacing:-1.296000pt;}
.ws18{word-spacing:-1.248000pt;}
.ws37{word-spacing:-1.232000pt;}
.ws50{word-spacing:-1.226880pt;}
.wsde{word-spacing:-1.213440pt;}
.ws19{word-spacing:-1.152000pt;}
.ws76{word-spacing:-1.120000pt;}
.ws24{word-spacing:-1.008000pt;}
.ws78{word-spacing:-0.952000pt;}
.ws48{word-spacing:-0.908800pt;}
.ws27{word-spacing:-0.864000pt;}
.wsb2{word-spacing:-0.840000pt;}
.ws17{word-spacing:-0.672000pt;}
.ws70{word-spacing:-0.616000pt;}
.wsb9{word-spacing:-0.606720pt;}
.ws69{word-spacing:-0.590720pt;}
.ws9d{word-spacing:-0.556160pt;}
.wsa2{word-spacing:-0.504000pt;}
.wsb8{word-spacing:-0.455040pt;}
.wse7{word-spacing:-0.336000pt;}
.wsa3{word-spacing:-0.318080pt;}
.ws9c{word-spacing:-0.303360pt;}
.ws5b{word-spacing:-0.280000pt;}
.ws14{word-spacing:-0.272640pt;}
.ws91{word-spacing:-0.252800pt;}
.ws109{word-spacing:-0.240000pt;}
.ws55{word-spacing:-0.207360pt;}
.ws9e{word-spacing:-0.202240pt;}
.ws104{word-spacing:-0.192000pt;}
.ws75{word-spacing:-0.168000pt;}
.wsac{word-spacing:-0.151680pt;}
.ws105{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.127680pt;}
.ws11{word-spacing:-0.117120pt;}
.wsb{word-spacing:-0.103680pt;}
.ws9f{word-spacing:-0.101120pt;}
.wse9{word-spacing:-0.090880pt;}
.ws54{word-spacing:-0.080000pt;}
.ws30{word-spacing:-0.064000pt;}
.ws34{word-spacing:-0.056000pt;}
.wsc6{word-spacing:-0.050560pt;}
.ws22{word-spacing:-0.048000pt;}
.wsae{word-spacing:-0.045440pt;}
.ws12{word-spacing:-0.042560pt;}
.wsa{word-spacing:0.000000pt;}
.wsc{word-spacing:0.034560pt;}
.ws32{word-spacing:0.040000pt;}
.ws15{word-spacing:0.045440pt;}
.ws23{word-spacing:0.048000pt;}
.ws94{word-spacing:0.050560pt;}
.wsf9{word-spacing:0.096000pt;}
.ws95{word-spacing:0.101120pt;}
.ws3a{word-spacing:0.112000pt;}
.ws10{word-spacing:0.117120pt;}
.wse{word-spacing:0.138240pt;}
.ws1c{word-spacing:0.144000pt;}
.wsf{word-spacing:0.175680pt;}
.wsc0{word-spacing:0.202240pt;}
.wsd{word-spacing:0.207360pt;}
.ws31{word-spacing:0.256000pt;}
.wsdb{word-spacing:0.280000pt;}
.ws21{word-spacing:0.288000pt;}
.ws41{word-spacing:0.336000pt;}
.ws4f{word-spacing:0.363520pt;}
.wsfa{word-spacing:0.384000pt;}
.wsaa{word-spacing:0.404480pt;}
.ws40{word-spacing:0.448000pt;}
.ws6e{word-spacing:0.454400pt;}
.wsf5{word-spacing:0.505600pt;}
.ws80{word-spacing:0.545280pt;}
.ws26{word-spacing:0.624000pt;}
.wsf4{word-spacing:0.657280pt;}
.ws3f{word-spacing:0.672000pt;}
.ws4e{word-spacing:0.681600pt;}
.ws8b{word-spacing:0.707840pt;}
.ws81{word-spacing:0.727040pt;}
.ws8f{word-spacing:0.784000pt;}
.ws90{word-spacing:0.808960pt;}
.wsf6{word-spacing:0.817920pt;}
.ws9b{word-spacing:0.859520pt;}
.wsff{word-spacing:0.912000pt;}
.ws68{word-spacing:0.999680pt;}
.ws5e{word-spacing:1.008000pt;}
.wse0{word-spacing:1.011200pt;}
.ws107{word-spacing:1.056000pt;}
.wsb3{word-spacing:1.120000pt;}
.wsbb{word-spacing:1.162880pt;}
.ws5c{word-spacing:1.288000pt;}
.wsc1{word-spacing:1.317760pt;}
.ws5d{word-spacing:1.400000pt;}
.wse3{word-spacing:1.466240pt;}
.wsfe{word-spacing:1.584000pt;}
.wsbc{word-spacing:1.617920pt;}
.ws8c{word-spacing:1.624000pt;}
.ws6c{word-spacing:1.635840pt;}
.wsfd{word-spacing:1.680000pt;}
.ws58{word-spacing:1.736000pt;}
.ws7b{word-spacing:1.904000pt;}
.ws82{word-spacing:1.908480pt;}
.ws84{word-spacing:1.953920pt;}
.ws39{word-spacing:1.960000pt;}
.ws3e{word-spacing:2.072000pt;}
.ws93{word-spacing:2.123520pt;}
.wse8{word-spacing:2.184000pt;}
.ws33{word-spacing:2.208000pt;}
.ws74{word-spacing:2.240000pt;}
.ws83{word-spacing:2.272000pt;}
.ws92{word-spacing:2.325760pt;}
.wsef{word-spacing:2.352000pt;}
.wsbe{word-spacing:2.426880pt;}
.wsfc{word-spacing:2.544000pt;}
.ws44{word-spacing:2.576000pt;}
.wsa9{word-spacing:2.578560pt;}
.ws6d{word-spacing:2.590080pt;}
.wsb6{word-spacing:2.688000pt;}
.ws1e{word-spacing:2.832000pt;}
.ws88{word-spacing:2.881920pt;}
.wsaf{word-spacing:2.908160pt;}
.ws3d{word-spacing:2.912000pt;}
.ws86{word-spacing:2.932480pt;}
.wsd3{word-spacing:2.953600pt;}
.ws56{word-spacing:3.024000pt;}
.ws87{word-spacing:3.084160pt;}
.wsf2{word-spacing:3.192000pt;}
.ws47{word-spacing:3.226240pt;}
.ws79{word-spacing:3.248000pt;}
.ws67{word-spacing:3.271680pt;}
.ws57{word-spacing:3.304000pt;}
.ws1b{word-spacing:3.312000pt;}
.ws7a{word-spacing:3.360000pt;}
.wsda{word-spacing:3.472000pt;}
.ws36{word-spacing:3.528000pt;}
.ws89{word-spacing:3.539200pt;}
.ws4d{word-spacing:3.544320pt;}
.ws4c{word-spacing:3.589760pt;}
.ws35{word-spacing:3.640000pt;}
.ws4b{word-spacing:3.862400pt;}
.ws7d{word-spacing:3.864000pt;}
.ws7c{word-spacing:3.976000pt;}
.wsba{word-spacing:4.044800pt;}
.ws20{word-spacing:4.128000pt;}
.wsd5{word-spacing:4.144000pt;}
.ws66{word-spacing:4.180480pt;}
.ws46{word-spacing:4.200000pt;}
.ws45{word-spacing:4.312000pt;}
.ws16{word-spacing:4.464000pt;}
.ws71{word-spacing:4.480000pt;}
.ws65{word-spacing:4.498560pt;}
.ws106{word-spacing:4.560000pt;}
.wsb5{word-spacing:4.592000pt;}
.wse4{word-spacing:4.634880pt;}
.ws38{word-spacing:4.816000pt;}
.ws4a{word-spacing:4.816640pt;}
.ws9a{word-spacing:4.928000pt;}
.ws49{word-spacing:5.134720pt;}
.ws3b{word-spacing:5.152000pt;}
.wscb{word-spacing:5.264000pt;}
.wsa0{word-spacing:5.488000pt;}
.wscf{word-spacing:5.600000pt;}
.ws43{word-spacing:5.768000pt;}
.ws8a{word-spacing:5.814400pt;}
.wsc7{word-spacing:5.816320pt;}
.ws8d{word-spacing:5.880000pt;}
.ws28{word-spacing:6.048000pt;}
.ws7e{word-spacing:6.104000pt;}
.wsd0{word-spacing:6.216000pt;}
.wsdc{word-spacing:6.269440pt;}
.ws5f{word-spacing:6.440000pt;}
.wsb7{word-spacing:6.471680pt;}
.ws8e{word-spacing:6.552000pt;}
.wsb4{word-spacing:6.720000pt;}
.ws10b{word-spacing:6.768000pt;}
.wsd2{word-spacing:6.770560pt;}
.ws10c{word-spacing:6.816000pt;}
.ws73{word-spacing:6.832000pt;}
.ws7f{word-spacing:7.056000pt;}
.wsd1{word-spacing:7.088640pt;}
.wsf8{word-spacing:7.168000pt;}
.wsad{word-spacing:7.392000pt;}
.wsa1{word-spacing:7.504000pt;}
.wsbd{word-spacing:7.735680pt;}
.wsf1{word-spacing:7.840000pt;}
.wsd8{word-spacing:8.008000pt;}
.wsbf{word-spacing:8.039040pt;}
.wsd9{word-spacing:8.120000pt;}
.wsee{word-spacing:8.960000pt;}
.ws60{word-spacing:9.296000pt;}
.wsc5{word-spacing:10.584000pt;}
.wsc4{word-spacing:10.696000pt;}
.wsc2{word-spacing:10.905600pt;}
.wsd7{word-spacing:11.200000pt;}
.wsec{word-spacing:11.872000pt;}
.ws98{word-spacing:12.208000pt;}
.wsab{word-spacing:16.684800pt;}
.ws64{word-spacing:19.208000pt;}
.ws63{word-spacing:19.320000pt;}
._5{margin-left:-2.421440pt;}
._1{margin-left:-1.181440pt;}
._0{width:1.310400pt;}
._6{width:2.669440pt;}
._2{width:3.584000pt;}
._3{width:4.715200pt;}
._7{width:5.824000pt;}
._8{width:7.392000pt;}
._4{width:25.673600pt;}
.fsa{font-size:29.440000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:2.640000pt;}
.y2e{bottom:39.837440pt;}
.y1{bottom:40.560000pt;}
.y2d{bottom:50.240000pt;}
.ya{bottom:85.040000pt;}
.y1e4{bottom:85.760000pt;}
.y1cc{bottom:85.769280pt;}
.y11d{bottom:85.771840pt;}
.yed{bottom:85.774267pt;}
.y18c{bottom:85.779040pt;}
.y138{bottom:85.781120pt;}
.y19c{bottom:85.783680pt;}
.y5b{bottom:85.790880pt;}
.y157{bottom:85.795520pt;}
.y8a{bottom:85.814560pt;}
.y2b{bottom:87.536000pt;}
.ycb{bottom:87.606000pt;}
.y12{bottom:87.760000pt;}
.y1b1{bottom:94.830000pt;}
.y1cb{bottom:99.446720pt;}
.y11c{bottom:99.449280pt;}
.yec{bottom:99.451707pt;}
.y18b{bottom:99.456480pt;}
.y137{bottom:99.458560pt;}
.y19b{bottom:99.461120pt;}
.y5a{bottom:99.468320pt;}
.y156{bottom:99.472960pt;}
.y89{bottom:99.492000pt;}
.y1e3{bottom:101.120000pt;}
.y2a{bottom:101.540000pt;}
.yca{bottom:104.406000pt;}
.y209{bottom:108.884000pt;}
.y1b0{bottom:111.630000pt;}
.y1ca{bottom:113.044640pt;}
.y11b{bottom:113.047200pt;}
.yeb{bottom:113.049627pt;}
.y18a{bottom:113.054400pt;}
.y136{bottom:113.056480pt;}
.y19a{bottom:113.059040pt;}
.y59{bottom:113.066240pt;}
.y155{bottom:113.070880pt;}
.y88{bottom:113.089920pt;}
.y29{bottom:115.544000pt;}
.y170{bottom:119.624000pt;}
.yc9{bottom:121.206000pt;}
.y1c9{bottom:126.722080pt;}
.y11a{bottom:126.724640pt;}
.yea{bottom:126.727067pt;}
.y189{bottom:126.731840pt;}
.y135{bottom:126.733920pt;}
.y199{bottom:126.736480pt;}
.y58{bottom:126.743680pt;}
.y154{bottom:126.748320pt;}
.y87{bottom:126.767360pt;}
.y208{bottom:128.240000pt;}
.y1af{bottom:128.430000pt;}
.y28{bottom:129.548000pt;}
.y16f{bottom:136.424000pt;}
.y1c8{bottom:140.320000pt;}
.y119{bottom:140.322560pt;}
.ye9{bottom:140.324987pt;}
.y188{bottom:140.329760pt;}
.y134{bottom:140.331840pt;}
.y198{bottom:140.334400pt;}
.y57{bottom:140.341600pt;}
.y153{bottom:140.346240pt;}
.y86{bottom:140.365280pt;}
.y27{bottom:143.552000pt;}
.y1ae{bottom:145.230000pt;}
.yc8{bottom:146.000000pt;}
.y207{bottom:147.524000pt;}
.y1e2{bottom:153.206000pt;}
.y16e{bottom:153.224000pt;}
.y118{bottom:154.000000pt;}
.ye8{bottom:154.002427pt;}
.y187{bottom:154.007200pt;}
.y133{bottom:154.009280pt;}
.y197{bottom:154.011840pt;}
.y56{bottom:154.019040pt;}
.y152{bottom:154.023680pt;}
.y85{bottom:154.042720pt;}
.y1c7{bottom:155.679867pt;}
.y26{bottom:157.556000pt;}
.y1ad{bottom:162.030000pt;}
.yc7{bottom:162.800000pt;}
.y206{bottom:166.880000pt;}
.ye7{bottom:167.679867pt;}
.y186{bottom:167.684640pt;}
.y132{bottom:167.686720pt;}
.y196{bottom:167.689280pt;}
.y55{bottom:167.696480pt;}
.y151{bottom:167.701120pt;}
.y84{bottom:167.720160pt;}
.y117{bottom:169.360000pt;}
.y1e1{bottom:170.006000pt;}
.y16d{bottom:170.024000pt;}
.y25{bottom:171.560000pt;}
.y1c6{bottom:174.800000pt;}
.y1ac{bottom:178.830000pt;}
.yc6{bottom:179.600000pt;}
.y185{bottom:181.282560pt;}
.y131{bottom:181.284640pt;}
.y195{bottom:181.287200pt;}
.y54{bottom:181.294400pt;}
.y150{bottom:181.299040pt;}
.y83{bottom:181.318080pt;}
.ye6{bottom:182.960000pt;}
.y205{bottom:186.236000pt;}
.y1e0{bottom:186.806000pt;}
.y16c{bottom:186.824000pt;}
.y24{bottom:186.836000pt;}
.y1c5{bottom:191.600000pt;}
.y184{bottom:194.960000pt;}
.y130{bottom:194.962080pt;}
.y194{bottom:194.964640pt;}
.y53{bottom:194.971840pt;}
.y14f{bottom:194.976480pt;}
.y82{bottom:194.995520pt;}
.y1ab{bottom:195.630000pt;}
.yc5{bottom:196.400000pt;}
.y23{bottom:202.196000pt;}
.y1df{bottom:203.606000pt;}
.y16b{bottom:203.624000pt;}
.y204{bottom:205.520000pt;}
.y1c4{bottom:208.400000pt;}
.y12f{bottom:208.560000pt;}
.y193{bottom:208.562560pt;}
.y52{bottom:208.569760pt;}
.y14e{bottom:208.574400pt;}
.y81{bottom:208.593440pt;}
.y183{bottom:210.320000pt;}
.ye5{bottom:212.400000pt;}
.y1aa{bottom:212.430000pt;}
.yc4{bottom:213.200000pt;}
.y22{bottom:216.200000pt;}
.y1de{bottom:220.406000pt;}
.y16a{bottom:220.424000pt;}
.y116{bottom:221.211520pt;}
.y22b{bottom:221.919867pt;}
.y192{bottom:222.240000pt;}
.y51{bottom:222.247200pt;}
.y14d{bottom:222.251840pt;}
.y80{bottom:222.270880pt;}
.y12e{bottom:223.920000pt;}
.y1c3{bottom:225.200000pt;}
.ye4{bottom:229.200000pt;}
.yc3{bottom:230.000000pt;}
.y21{bottom:230.204000pt;}
.y1fd{bottom:230.816000pt;}
.y50{bottom:235.924640pt;}
.y14c{bottom:235.929280pt;}
.y7f{bottom:235.948320pt;}
.y1dd{bottom:237.206000pt;}
.y169{bottom:237.224000pt;}
.y22a{bottom:237.279867pt;}
.y191{bottom:237.600000pt;}
.y115{bottom:238.010080pt;}
.y1c2{bottom:242.000000pt;}
.y20{bottom:244.208000pt;}
.ye3{bottom:246.000000pt;}
.yc2{bottom:246.800000pt;}
.y1fc{bottom:247.616000pt;}
.y4f{bottom:249.522560pt;}
.y14b{bottom:249.527200pt;}
.y7e{bottom:249.546240pt;}
.y182{bottom:254.000000pt;}
.y1dc{bottom:254.006000pt;}
.y1a9{bottom:254.024000pt;}
.y114{bottom:254.808640pt;}
.y229{bottom:256.635867pt;}
.y1f{bottom:258.212000pt;}
.y12d{bottom:258.772800pt;}
.y1c1{bottom:258.800000pt;}
.y168{bottom:262.018000pt;}
.ye2{bottom:262.800000pt;}
.y4e{bottom:263.200000pt;}
.y14a{bottom:263.204640pt;}
.y7d{bottom:263.223680pt;}
.yc1{bottom:263.600000pt;}
.y1fb{bottom:264.416000pt;}
.y181{bottom:270.800000pt;}
.y1db{bottom:270.806000pt;}
.y1a8{bottom:270.824000pt;}
.y113{bottom:271.607200pt;}
.y1e{bottom:272.216000pt;}
.y1c0{bottom:275.600000pt;}
.y228{bottom:275.919867pt;}
.y149{bottom:276.802560pt;}
.y7c{bottom:276.821600pt;}
.y190{bottom:278.006000pt;}
.y4d{bottom:278.480000pt;}
.y12c{bottom:279.578240pt;}
.ye1{bottom:279.600000pt;}
.yc0{bottom:280.400000pt;}
.y1fa{bottom:281.216000pt;}
.y1d{bottom:286.220000pt;}
.y167{bottom:286.812000pt;}
.y180{bottom:287.600000pt;}
.y1da{bottom:287.606000pt;}
.y1a7{bottom:287.624000pt;}
.y112{bottom:288.405760pt;}
.y148{bottom:290.480000pt;}
.y7b{bottom:290.499040pt;}
.y227{bottom:291.279867pt;}
.y1bf{bottom:292.400000pt;}
.y18f{bottom:294.806000pt;}
.ye0{bottom:296.400000pt;}
.ybf{bottom:297.200000pt;}
.y1f9{bottom:298.016000pt;}
.y1c{bottom:300.224000pt;}
.y12b{bottom:300.383680pt;}
.y203{bottom:303.612000pt;}
.y7a{bottom:304.096960pt;}
.y17f{bottom:304.400000pt;}
.y1d9{bottom:304.406000pt;}
.y1a6{bottom:304.424000pt;}
.y111{bottom:305.204320pt;}
.y147{bottom:305.840000pt;}
.y101{bottom:306.010000pt;}
.y4c{bottom:307.600000pt;}
.y1be{bottom:309.200000pt;}
.y226{bottom:310.635867pt;}
.y166{bottom:311.606000pt;}
.ydf{bottom:313.200000pt;}
.ya4{bottom:313.206000pt;}
.ybe{bottom:314.000000pt;}
.y1b{bottom:314.228000pt;}
.y1f8{bottom:314.816000pt;}
.y79{bottom:317.774400pt;}
.y202{bottom:320.412000pt;}
.y12a{bottom:321.189120pt;}
.y17e{bottom:321.200000pt;}
.y1a5{bottom:321.224000pt;}
.y110{bottom:322.002880pt;}
.y100{bottom:322.810000pt;}
.y4b{bottom:324.400000pt;}
.y146{bottom:326.000000pt;}
.y1bd{bottom:326.006000pt;}
.y1a{bottom:328.232000pt;}
.y165{bottom:328.406000pt;}
.y1d8{bottom:329.200000pt;}
.y225{bottom:329.919867pt;}
.yde{bottom:330.000000pt;}
.ya3{bottom:330.006000pt;}
.ybd{bottom:330.800000pt;}
.y78{bottom:331.451840pt;}
.y15e{bottom:337.206000pt;}
.y201{bottom:337.212000pt;}
.y17d{bottom:338.000000pt;}
.y1a4{bottom:338.024000pt;}
.y10f{bottom:338.801440pt;}
.yff{bottom:339.610000pt;}
.y4a{bottom:341.200000pt;}
.y129{bottom:341.994560pt;}
.y19{bottom:342.236000pt;}
.y145{bottom:342.800000pt;}
.y1bc{bottom:342.806000pt;}
.y77{bottom:345.049760pt;}
.y164{bottom:345.206000pt;}
.y1d7{bottom:346.000000pt;}
.ydd{bottom:346.800000pt;}
.ya2{bottom:346.806000pt;}
.y224{bottom:349.275867pt;}
.y15d{bottom:354.006000pt;}
.y200{bottom:354.012000pt;}
.y17c{bottom:354.800000pt;}
.y1a3{bottom:354.824000pt;}
.y10e{bottom:355.600000pt;}
.y18{bottom:356.240000pt;}
.y1f7{bottom:356.410000pt;}
.y49{bottom:358.000000pt;}
.y76{bottom:358.727200pt;}
.y144{bottom:359.600000pt;}
.y163{bottom:362.006000pt;}
.y128{bottom:362.800000pt;}
.ydc{bottom:363.600000pt;}
.ya1{bottom:363.606000pt;}
.ybc{bottom:363.607200pt;}
.y1bb{bottom:367.600000pt;}
.y223{bottom:368.631867pt;}
.y15c{bottom:370.806000pt;}
.y1ff{bottom:370.812000pt;}
.y17b{bottom:371.600000pt;}
.y1a2{bottom:371.624000pt;}
.y75{bottom:372.325120pt;}
.yfe{bottom:372.412000pt;}
.y1f6{bottom:373.210000pt;}
.y48{bottom:374.800000pt;}
.y143{bottom:376.400000pt;}
.y17{bottom:378.806000pt;}
.y1d6{bottom:379.600000pt;}
.ydb{bottom:380.400000pt;}
.ybb{bottom:380.405760pt;}
.ya0{bottom:380.406000pt;}
.y1ba{bottom:384.400000pt;}
.y74{bottom:386.002560pt;}
.y15b{bottom:387.606000pt;}
.y127{bottom:387.612000pt;}
.y222{bottom:387.915867pt;}
.y17a{bottom:388.400000pt;}
.y10d{bottom:388.424000pt;}
.y1f5{bottom:390.010000pt;}
.y47{bottom:391.600000pt;}
.y142{bottom:393.200000pt;}
.y162{bottom:395.606000pt;}
.y1d5{bottom:396.400000pt;}
.yda{bottom:397.200000pt;}
.yba{bottom:397.204320pt;}
.y9f{bottom:397.206000pt;}
.y73{bottom:399.680000pt;}
.y1b9{bottom:401.200000pt;}
.y16{bottom:403.600000pt;}
.y15a{bottom:404.406000pt;}
.y126{bottom:404.412000pt;}
.y179{bottom:405.200000pt;}
.y10c{bottom:405.224000pt;}
.y1f4{bottom:406.810000pt;}
.y221{bottom:407.271867pt;}
.y46{bottom:408.400000pt;}
.y141{bottom:410.000000pt;}
.y161{bottom:412.406000pt;}
.y1d4{bottom:413.218000pt;}
.yd9{bottom:414.000000pt;}
.yb9{bottom:414.002880pt;}
.y72{bottom:414.960000pt;}
.y1b8{bottom:418.000000pt;}
.y159{bottom:421.206000pt;}
.y125{bottom:421.212000pt;}
.y9e{bottom:422.000000pt;}
.y10b{bottom:422.024000pt;}
.y1f3{bottom:423.610000pt;}
.y9{bottom:425.040000pt;}
.y45{bottom:425.206000pt;}
.y220{bottom:426.627867pt;}
.y140{bottom:426.800000pt;}
.y160{bottom:429.206000pt;}
.y1d3{bottom:430.018000pt;}
.yd8{bottom:430.800000pt;}
.yb8{bottom:430.801440pt;}
.y1b7{bottom:434.800000pt;}
.y71{bottom:438.006000pt;}
.y124{bottom:438.012000pt;}
.y9d{bottom:438.800000pt;}
.y10a{bottom:438.824000pt;}
.y1f2{bottom:440.410000pt;}
.y10{bottom:441.289760pt;}
.y21f{bottom:441.987867pt;}
.y13f{bottom:443.600000pt;}
.y15f{bottom:446.006000pt;}
.y1d2{bottom:446.818000pt;}
.yb7{bottom:447.600000pt;}
.y44{bottom:450.000000pt;}
.y1b6{bottom:451.600000pt;}
.y70{bottom:454.806000pt;}
.y1fe{bottom:454.812000pt;}
.yf{bottom:454.967200pt;}
.y9c{bottom:455.600000pt;}
.y109{bottom:455.624000pt;}
.y1f1{bottom:457.210000pt;}
.y21e{bottom:461.271867pt;}
.y123{bottom:462.806000pt;}
.y1d1{bottom:463.618000pt;}
.yd7{bottom:464.400000pt;}
.y43{bottom:466.800000pt;}
.y13e{bottom:468.372800pt;}
.ye{bottom:468.644640pt;}
.y158{bottom:471.606000pt;}
.yfd{bottom:472.400000pt;}
.y9b{bottom:472.410000pt;}
.y108{bottom:472.424000pt;}
.y15{bottom:474.235040pt;}
.y1b5{bottom:476.383680pt;}
.y21d{bottom:476.631867pt;}
.y6f{bottom:479.600000pt;}
.y122{bottom:479.606000pt;}
.yb6{bottom:480.406000pt;}
.y1d0{bottom:480.418000pt;}
.yd{bottom:482.242560pt;}
.y42{bottom:483.600000pt;}
.y14{bottom:487.120080pt;}
.y13d{bottom:489.178240pt;}
.yfc{bottom:489.200000pt;}
.y9a{bottom:489.210000pt;}
.y107{bottom:489.224000pt;}
.y1f0{bottom:490.012000pt;}
.y21c{bottom:495.915867pt;}
.yc{bottom:495.920000pt;}
.y6e{bottom:496.400000pt;}
.y121{bottom:496.406000pt;}
.y1b4{bottom:497.189120pt;}
.yd6{bottom:497.205760pt;}
.yb5{bottom:497.206000pt;}
.y1cf{bottom:497.218000pt;}
.y13{bottom:499.920000pt;}
.y41{bottom:500.400000pt;}
.y178{bottom:505.211520pt;}
.yfb{bottom:506.000000pt;}
.y99{bottom:506.010000pt;}
.y1a1{bottom:506.024000pt;}
.y13c{bottom:509.983680pt;}
.yb{bottom:510.080000pt;}
.y21b{bottom:511.275867pt;}
.y6d{bottom:513.200000pt;}
.y120{bottom:513.206000pt;}
.yd5{bottom:514.004320pt;}
.yb4{bottom:514.006000pt;}
.y106{bottom:514.018000pt;}
.y1ef{bottom:514.806000pt;}
.y40{bottom:517.200000pt;}
.y1b3{bottom:517.994560pt;}
.y177{bottom:522.010080pt;}
.yfa{bottom:522.800000pt;}
.y98{bottom:522.810000pt;}
.y1a0{bottom:522.824000pt;}
.y6c{bottom:530.000000pt;}
.y11f{bottom:530.006000pt;}
.y21a{bottom:530.631867pt;}
.y13b{bottom:530.789120pt;}
.yd4{bottom:530.802880pt;}
.yb3{bottom:530.806000pt;}
.y1ce{bottom:530.818000pt;}
.y3f{bottom:534.000000pt;}
.y1b2{bottom:538.800000pt;}
.y176{bottom:538.808640pt;}
.y105{bottom:538.812000pt;}
.yf9{bottom:539.600000pt;}
.y19f{bottom:539.624000pt;}
.y6b{bottom:546.800000pt;}
.y11e{bottom:546.806000pt;}
.yd3{bottom:547.601440pt;}
.yb2{bottom:547.606000pt;}
.y1cd{bottom:547.618000pt;}
.y219{bottom:549.915867pt;}
.y3e{bottom:550.794000pt;}
.y13a{bottom:551.594560pt;}
.y175{bottom:555.607200pt;}
.y97{bottom:555.612000pt;}
.yf8{bottom:556.400000pt;}
.y6a{bottom:563.600000pt;}
.y104{bottom:563.606000pt;}
.yd2{bottom:564.400000pt;}
.yb1{bottom:564.406000pt;}
.y19e{bottom:564.418000pt;}
.y218{bottom:565.275867pt;}
.y3d{bottom:567.594000pt;}
.y18e{bottom:571.600000pt;}
.y139{bottom:572.400000pt;}
.y174{bottom:572.405760pt;}
.yf7{bottom:573.200000pt;}
.y69{bottom:580.400000pt;}
.y96{bottom:580.406000pt;}
.yb0{bottom:581.206000pt;}
.y3c{bottom:584.394000pt;}
.y217{bottom:584.631867pt;}
.y8{bottom:585.201200pt;}
.y18d{bottom:588.400000pt;}
.y173{bottom:589.204320pt;}
.y19d{bottom:589.212000pt;}
.y1ee{bottom:590.000000pt;}
.y68{bottom:597.200000pt;}
.y103{bottom:597.206000pt;}
.y216{bottom:599.991867pt;}
.y3b{bottom:601.194000pt;}
.y95{bottom:605.200000pt;}
.y7{bottom:605.521520pt;}
.yaf{bottom:606.000000pt;}
.y172{bottom:606.002880pt;}
.yf6{bottom:606.007200pt;}
.y1ed{bottom:606.800000pt;}
.y67{bottom:614.000000pt;}
.y102{bottom:614.006000pt;}
.y3a{bottom:617.994000pt;}
.y215{bottom:619.275867pt;}
.y94{bottom:622.000000pt;}
.yae{bottom:622.800000pt;}
.y171{bottom:622.801440pt;}
.yf5{bottom:622.805760pt;}
.y1ec{bottom:623.600000pt;}
.y66{bottom:630.800000pt;}
.yd1{bottom:630.806000pt;}
.y214{bottom:638.631867pt;}
.y93{bottom:638.800000pt;}
.yad{bottom:639.600000pt;}
.yf4{bottom:639.604320pt;}
.y1eb{bottom:640.400000pt;}
.y6{bottom:641.916560pt;}
.y65{bottom:647.600000pt;}
.yd0{bottom:647.606000pt;}
.y39{bottom:650.880000pt;}
.y213{bottom:653.991867pt;}
.y92{bottom:655.600000pt;}
.yac{bottom:656.400000pt;}
.yf3{bottom:656.402880pt;}
.y5{bottom:662.720000pt;}
.y64{bottom:664.400000pt;}
.ycf{bottom:664.406000pt;}
.y91{bottom:672.400000pt;}
.yab{bottom:673.200000pt;}
.yf2{bottom:673.201440pt;}
.y1ea{bottom:673.207200pt;}
.y212{bottom:673.275867pt;}
.y38{bottom:675.036000pt;}
.y63{bottom:681.200000pt;}
.yce{bottom:681.206000pt;}
.y211{bottom:688.635867pt;}
.y90{bottom:689.200000pt;}
.yaa{bottom:690.000000pt;}
.y1e9{bottom:690.005760pt;}
.y37{bottom:690.396000pt;}
.y62{bottom:698.000000pt;}
.ycd{bottom:698.006000pt;}
.y36{bottom:705.756000pt;}
.y8f{bottom:706.000000pt;}
.ya9{bottom:706.800000pt;}
.y1e8{bottom:706.804320pt;}
.y210{bottom:707.919867pt;}
.y61{bottom:714.800000pt;}
.ycc{bottom:714.806000pt;}
.y35{bottom:721.032000pt;}
.yf1{bottom:722.799867pt;}
.y8e{bottom:722.800000pt;}
.y20f{bottom:723.279867pt;}
.y1e7{bottom:723.602880pt;}
.y60{bottom:731.606000pt;}
.y34{bottom:736.392000pt;}
.yf0{bottom:739.599867pt;}
.y8d{bottom:739.600000pt;}
.ya8{bottom:739.605760pt;}
.y1e6{bottom:740.401440pt;}
.y20e{bottom:742.635867pt;}
.y5f{bottom:748.406000pt;}
.y33{bottom:751.752000pt;}
.yef{bottom:756.399867pt;}
.y8c{bottom:756.400000pt;}
.ya7{bottom:756.404320pt;}
.y1e5{bottom:757.200000pt;}
.y20d{bottom:757.995867pt;}
.y5e{bottom:765.206000pt;}
.y32{bottom:767.028000pt;}
.yee{bottom:773.199867pt;}
.y8b{bottom:773.200000pt;}
.ya6{bottom:773.202880pt;}
.y20c{bottom:777.279867pt;}
.y31{bottom:781.032000pt;}
.y4{bottom:787.518080pt;}
.y5d{bottom:790.000000pt;}
.ya5{bottom:790.001440pt;}
.y20b{bottom:792.639867pt;}
.y30{bottom:795.036000pt;}
.y3{bottom:799.519040pt;}
.y5c{bottom:806.800000pt;}
.y20a{bottom:807.999867pt;}
.y2f{bottom:809.040000pt;}
.y2{bottom:811.520000pt;}
.y2c{bottom:845.120000pt;}
.h3{height:32.619375pt;}
.h4{height:33.463125pt;}
.he{height:33.986250pt;}
.hb{height:41.209219pt;}
.h9{height:41.853437pt;}
.h10{height:42.656250pt;}
.ha{height:43.997812pt;}
.h2{height:46.476562pt;}
.h16{height:47.203125pt;}
.h12{height:48.955312pt;}
.h15{height:49.020592pt;}
.h14{height:49.064112pt;}
.h13{height:49.674545pt;}
.hd{height:51.743906pt;}
.h8{height:52.552812pt;}
.hc{height:54.222656pt;}
.hf{height:54.246656pt;}
.h6{height:56.644219pt;}
.h5{height:58.159687pt;}
.h11{height:61.968750pt;}
.h7{height:98.160000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:118.480000pt;}
.w2{width:349.600000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x8{left:50.400000pt;}
.x1{left:86.960000pt;}
.xd{left:94.160000pt;}
.x7{left:106.320000pt;}
.xa{left:123.840000pt;}
.x14{left:124.800000pt;}
.x9{left:147.280000pt;}
.x2{left:166.880000pt;}
.xc{left:168.640000pt;}
.x4{left:172.399280pt;}
.x3{left:188.078720pt;}
.x5{left:217.431920pt;}
.xb{left:219.040000pt;}
.x13{left:278.960000pt;}
.x11{left:324.883840pt;}
.x10{left:356.800000pt;}
.xe{left:436.560000pt;}
.xf{left:443.760000pt;}
.x12{left:555.692000pt;}
}




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