
    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_744a11e9d84ae4d34aa82775.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.164000;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_942a7f54244b044caa17887b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.164000;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_6c1743a2e7b27aafa60ef87e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_a66ee629c2ee9d6026ab5cde.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.180000;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_744a11e9d84ae4d34aa82775.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.164000;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_a66ee629c2ee9d6026ab5cde.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.180000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6c1743a2e7b27aafa60ef87e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_315bf6f649b6e96b8ef6719b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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);}
.v1{vertical-align:-35.988000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.217000px;}
.ls32{letter-spacing:-3.600000px;}
.ls1e{letter-spacing:-2.100000px;}
.ls1f{letter-spacing:-1.140000px;}
.ls11{letter-spacing:-0.900000px;}
.ls29{letter-spacing:-0.570000px;}
.ls22{letter-spacing:-0.420000px;}
.ls2a{letter-spacing:-0.399000px;}
.ls47{letter-spacing:-0.285000px;}
.ls46{letter-spacing:-0.228000px;}
.ls53{letter-spacing:-0.210000px;}
.ls54{letter-spacing:-0.084000px;}
.ls20{letter-spacing:-0.057000px;}
.ls5{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.022800px;}
.ls5c{letter-spacing:0.025500px;}
.ls25{letter-spacing:0.028500px;}
.ls8{letter-spacing:0.057000px;}
.ls7{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.102000px;}
.ls13{letter-spacing:0.114000px;}
.ls51{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.153000px;}
.ls56{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.168000px;}
.lsa{letter-spacing:0.171000px;}
.ls2c{letter-spacing:0.199500px;}
.ls2{letter-spacing:0.204000px;}
.lsd{letter-spacing:0.210000px;}
.ls55{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.228000px;}
.ls34{letter-spacing:0.231000px;}
.ls3d{letter-spacing:0.250800px;}
.lse{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.285000px;}
.ls36{letter-spacing:0.294000px;}
.ls6{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.313500px;}
.lsc{letter-spacing:0.342000px;}
.ls44{letter-spacing:0.399000px;}
.ls30{letter-spacing:0.441000px;}
.ls28{letter-spacing:0.456000px;}
.ls31{letter-spacing:0.462000px;}
.ls4e{letter-spacing:0.484500px;}
.ls24{letter-spacing:0.513000px;}
.ls57{letter-spacing:0.540000px;}
.ls52{letter-spacing:0.546000px;}
.ls39{letter-spacing:0.570000px;}
.ls27{letter-spacing:0.627000px;}
.ls50{letter-spacing:0.630000px;}
.ls1b{letter-spacing:0.672000px;}
.ls41{letter-spacing:0.684000px;}
.ls40{letter-spacing:0.714000px;}
.ls38{letter-spacing:0.741000px;}
.ls59{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.769500px;}
.ls37{letter-spacing:0.855000px;}
.ls0{letter-spacing:0.867000px;}
.ls2f{letter-spacing:0.912000px;}
.ls2e{letter-spacing:0.969000px;}
.ls45{letter-spacing:1.083000px;}
.ls16{letter-spacing:1.092000px;}
.ls14{letter-spacing:1.134000px;}
.ls4f{letter-spacing:1.140000px;}
.ls23{letter-spacing:1.197000px;}
.ls26{letter-spacing:1.218000px;}
.ls43{letter-spacing:1.311000px;}
.ls2b{letter-spacing:1.344000px;}
.ls58{letter-spacing:1.350000px;}
.ls1a{letter-spacing:1.368000px;}
.ls1d{letter-spacing:1.407000px;}
.ls21{letter-spacing:1.428000px;}
.ls4a{letter-spacing:1.539000px;}
.ls5d{letter-spacing:1.632000px;}
.ls4d{letter-spacing:1.653000px;}
.ls4{letter-spacing:1.680000px;}
.lsf{letter-spacing:1.764000px;}
.ls3c{letter-spacing:1.974000px;}
.ls4b{letter-spacing:2.052000px;}
.ls4c{letter-spacing:2.337000px;}
.ls3e{letter-spacing:2.565000px;}
.ls3f{letter-spacing:2.907000px;}
.ls10{letter-spacing:3.066000px;}
.ls2d{letter-spacing:3.192000px;}
.ls33{letter-spacing:5.270100px;}
.ls35{letter-spacing:5.301000px;}
.ls3b{letter-spacing:5.312700px;}
.ls19{letter-spacing:6.048000px;}
.ls17{letter-spacing:6.342000px;}
.ls1c{letter-spacing:7.224000px;}
.ls15{letter-spacing:7.812000px;}
.ls49{letter-spacing:9.576000px;}
.ls48{letter-spacing:10.146000px;}
.ls5a{letter-spacing:11.322000px;}
.ls5b{letter-spacing:11.628000px;}
.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;}
}
.ws0{word-spacing:-16.680000px;}
.wsa8{word-spacing:-15.846000px;}
.ws14{word-spacing:-15.780000px;}
.ws1{word-spacing:-15.045000px;}
.ws48{word-spacing:-14.580000px;}
.ws109{word-spacing:-14.178000px;}
.ws61{word-spacing:-12.894000px;}
.wsd1{word-spacing:-12.390000px;}
.ws7e{word-spacing:-12.138000px;}
.wsa9{word-spacing:-11.884500px;}
.ws1a{word-spacing:-8.721000px;}
.ws44{word-spacing:-6.426000px;}
.ws2b{word-spacing:-1.764000px;}
.wse7{word-spacing:-1.539000px;}
.ws5d{word-spacing:-1.428000px;}
.ws90{word-spacing:-0.684000px;}
.wsf8{word-spacing:-0.630000px;}
.wsc7{word-spacing:-0.570000px;}
.ws100{word-spacing:-0.546000px;}
.ws65{word-spacing:-0.513000px;}
.wsa3{word-spacing:-0.456000px;}
.ws54{word-spacing:-0.399000px;}
.ws71{word-spacing:-0.342000px;}
.ws10a{word-spacing:-0.306000px;}
.wsf2{word-spacing:-0.252000px;}
.wsd{word-spacing:-0.228000px;}
.ws28{word-spacing:-0.210000px;}
.ws67{word-spacing:-0.171000px;}
.ws47{word-spacing:-0.168000px;}
.ws116{word-spacing:-0.153000px;}
.wsd3{word-spacing:-0.114000px;}
.ws29{word-spacing:-0.084000px;}
.wse3{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws3c{word-spacing:0.057000px;}
.ws26{word-spacing:0.084000px;}
.ws79{word-spacing:0.114000px;}
.ws77{word-spacing:0.171000px;}
.ws103{word-spacing:0.210000px;}
.ws57{word-spacing:0.228000px;}
.ws11{word-spacing:0.252000px;}
.ws96{word-spacing:0.285000px;}
.ws9c{word-spacing:0.294000px;}
.ws9e{word-spacing:0.336000px;}
.ws76{word-spacing:0.342000px;}
.ws7a{word-spacing:0.399000px;}
.ws117{word-spacing:0.408000px;}
.ws60{word-spacing:0.420000px;}
.wsa4{word-spacing:0.456000px;}
.ws43{word-spacing:0.504000px;}
.wsa6{word-spacing:0.513000px;}
.wse9{word-spacing:0.546000px;}
.ws8a{word-spacing:0.570000px;}
.ws1e{word-spacing:0.627000px;}
.wsbb{word-spacing:0.630000px;}
.ws105{word-spacing:0.672000px;}
.ws81{word-spacing:0.684000px;}
.ws10f{word-spacing:0.714000px;}
.ws6e{word-spacing:0.741000px;}
.wsb9{word-spacing:0.756000px;}
.ws3b{word-spacing:0.798000px;}
.ws7{word-spacing:0.816000px;}
.ws6d{word-spacing:0.855000px;}
.ws118{word-spacing:0.867000px;}
.wsca{word-spacing:0.912000px;}
.wsba{word-spacing:0.924000px;}
.ws5a{word-spacing:0.966000px;}
.ws8e{word-spacing:0.969000px;}
.ws104{word-spacing:1.008000px;}
.ws58{word-spacing:1.026000px;}
.wsad{word-spacing:1.050000px;}
.ws97{word-spacing:1.083000px;}
.ws2c{word-spacing:1.092000px;}
.ws4a{word-spacing:1.140000px;}
.ws10c{word-spacing:1.173000px;}
.wsfb{word-spacing:1.176000px;}
.ws3e{word-spacing:1.197000px;}
.wseb{word-spacing:1.218000px;}
.ws39{word-spacing:1.254000px;}
.wsdd{word-spacing:1.260000px;}
.wsb0{word-spacing:1.311000px;}
.wsc3{word-spacing:1.344000px;}
.ws3f{word-spacing:1.368000px;}
.ws101{word-spacing:1.386000px;}
.ws88{word-spacing:1.425000px;}
.ws9f{word-spacing:1.428000px;}
.wsc2{word-spacing:1.470000px;}
.ws78{word-spacing:1.482000px;}
.ws91{word-spacing:1.539000px;}
.ws42{word-spacing:1.554000px;}
.ws95{word-spacing:1.596000px;}
.wsfe{word-spacing:1.638000px;}
.ws94{word-spacing:1.653000px;}
.wsf{word-spacing:1.680000px;}
.wscd{word-spacing:1.710000px;}
.wse0{word-spacing:1.722000px;}
.ws111{word-spacing:1.734000px;}
.ws12{word-spacing:1.764000px;}
.wsb1{word-spacing:1.767000px;}
.wsda{word-spacing:1.806000px;}
.ws1b{word-spacing:1.824000px;}
.ws102{word-spacing:1.848000px;}
.wsc{word-spacing:1.881000px;}
.wsa0{word-spacing:1.890000px;}
.wsd9{word-spacing:1.932000px;}
.wse4{word-spacing:1.938000px;}
.wsde{word-spacing:1.974000px;}
.wscb{word-spacing:1.995000px;}
.ws46{word-spacing:2.016000px;}
.wse{word-spacing:2.052000px;}
.wsd0{word-spacing:2.058000px;}
.ws93{word-spacing:2.100000px;}
.wsac{word-spacing:2.109000px;}
.ws41{word-spacing:2.166000px;}
.wsf7{word-spacing:2.184000px;}
.ws7c{word-spacing:2.223000px;}
.ws74{word-spacing:2.226000px;}
.wsee{word-spacing:2.268000px;}
.ws1f{word-spacing:2.280000px;}
.ws27{word-spacing:2.310000px;}
.wsb8{word-spacing:2.337000px;}
.ws25{word-spacing:2.394000px;}
.ws120{word-spacing:2.397000px;}
.wsb5{word-spacing:2.436000px;}
.ws6{word-spacing:2.448000px;}
.ws6a{word-spacing:2.451000px;}
.wsaf{word-spacing:2.478000px;}
.ws11b{word-spacing:2.499000px;}
.ws8d{word-spacing:2.508000px;}
.wsf5{word-spacing:2.562000px;}
.ws49{word-spacing:2.565000px;}
.wsc5{word-spacing:2.622000px;}
.ws5b{word-spacing:2.646000px;}
.ws34{word-spacing:2.679000px;}
.ws112{word-spacing:2.703000px;}
.wsb7{word-spacing:2.730000px;}
.wsd2{word-spacing:2.736000px;}
.ws2f{word-spacing:2.772000px;}
.ws62{word-spacing:2.793000px;}
.ws11a{word-spacing:2.805000px;}
.ws75{word-spacing:2.814000px;}
.ws20{word-spacing:2.850000px;}
.wsd5{word-spacing:2.856000px;}
.ws6c{word-spacing:2.907000px;}
.ws108{word-spacing:2.916000px;}
.wsa{word-spacing:2.964000px;}
.ws2d{word-spacing:2.982000px;}
.ws11e{word-spacing:3.009000px;}
.ws8c{word-spacing:3.021000px;}
.wsfc{word-spacing:3.024000px;}
.ws7d{word-spacing:3.060000px;}
.wse8{word-spacing:3.135000px;}
.wsf3{word-spacing:3.150000px;}
.ws1d{word-spacing:3.192000px;}
.ws121{word-spacing:3.213000px;}
.ws23{word-spacing:3.249000px;}
.wsdf{word-spacing:3.276000px;}
.wsab{word-spacing:3.306000px;}
.wsc0{word-spacing:3.360000px;}
.ws9{word-spacing:3.366000px;}
.ws9d{word-spacing:3.402000px;}
.ws4c{word-spacing:3.420000px;}
.ws72{word-spacing:3.477000px;}
.ws59{word-spacing:3.486000px;}
.wsec{word-spacing:3.528000px;}
.wsb{word-spacing:3.534000px;}
.ws8{word-spacing:3.570000px;}
.ws52{word-spacing:3.591000px;}
.wsd7{word-spacing:3.612000px;}
.wsff{word-spacing:3.696000px;}
.ws38{word-spacing:3.705000px;}
.ws45{word-spacing:3.738000px;}
.ws98{word-spacing:3.762000px;}
.wse6{word-spacing:3.819000px;}
.wsc1{word-spacing:3.822000px;}
.ws35{word-spacing:3.876000px;}
.ws64{word-spacing:3.933000px;}
.ws5f{word-spacing:3.948000px;}
.ws115{word-spacing:3.978000px;}
.ws55{word-spacing:3.990000px;}
.ws10d{word-spacing:4.029000px;}
.ws24{word-spacing:4.032000px;}
.ws19{word-spacing:4.047000px;}
.ws5e{word-spacing:4.074000px;}
.ws119{word-spacing:4.080000px;}
.ws7f{word-spacing:4.104000px;}
.wsa7{word-spacing:4.116000px;}
.ws114{word-spacing:4.131000px;}
.wsb4{word-spacing:4.161000px;}
.ws11f{word-spacing:4.182000px;}
.wsed{word-spacing:4.200000px;}
.ws36{word-spacing:4.218000px;}
.wsb6{word-spacing:4.242000px;}
.wsbc{word-spacing:4.275000px;}
.ws30{word-spacing:4.284000px;}
.ws84{word-spacing:4.326000px;}
.ws51{word-spacing:4.332000px;}
.ws11c{word-spacing:4.335000px;}
.wsf4{word-spacing:4.368000px;}
.ws8f{word-spacing:4.389000px;}
.ws2e{word-spacing:4.410000px;}
.ws107{word-spacing:4.428000px;}
.ws10e{word-spacing:4.437000px;}
.ws17{word-spacing:4.446000px;}
.wsf9{word-spacing:4.452000px;}
.ws3d{word-spacing:4.503000px;}
.ws92{word-spacing:4.560000px;}
.ws83{word-spacing:4.620000px;}
.ws56{word-spacing:4.674000px;}
.wse5{word-spacing:4.731000px;}
.wsfa{word-spacing:4.746000px;}
.wsb3{word-spacing:4.788000px;}
.ws21{word-spacing:4.845000px;}
.ws9b{word-spacing:4.872000px;}
.ws4e{word-spacing:4.902000px;}
.wsae{word-spacing:4.956000px;}
.ws32{word-spacing:4.959000px;}
.ws63{word-spacing:5.016000px;}
.ws9a{word-spacing:5.040000px;}
.wsaa{word-spacing:5.073000px;}
.wsce{word-spacing:5.130000px;}
.ws11d{word-spacing:5.151000px;}
.ws40{word-spacing:5.187000px;}
.ws86{word-spacing:5.244000px;}
.wsfd{word-spacing:5.250000px;}
.ws37{word-spacing:5.301000px;}
.wsd8{word-spacing:5.334000px;}
.ws7b{word-spacing:5.358000px;}
.wsc6{word-spacing:5.415000px;}
.wsd6{word-spacing:5.418000px;}
.ws68{word-spacing:5.472000px;}
.wsc9{word-spacing:5.502000px;}
.ws10b{word-spacing:5.508000px;}
.ws33{word-spacing:5.529000px;}
.ws66{word-spacing:5.586000px;}
.ws5{word-spacing:5.610000px;}
.ws69{word-spacing:5.643000px;}
.ws10{word-spacing:5.670000px;}
.ws15{word-spacing:5.700000px;}
.ws5c{word-spacing:5.712000px;}
.wsa2{word-spacing:5.757000px;}
.ws80{word-spacing:5.814000px;}
.ws13{word-spacing:5.838000px;}
.ws22{word-spacing:5.871000px;}
.ws2a{word-spacing:5.880000px;}
.ws4d{word-spacing:5.928000px;}
.ws73{word-spacing:5.985000px;}
.ws89{word-spacing:6.042000px;}
.ws87{word-spacing:6.099000px;}
.ws50{word-spacing:6.156000px;}
.ws110{word-spacing:6.171000px;}
.wsd4{word-spacing:6.213000px;}
.ws113{word-spacing:6.222000px;}
.wse2{word-spacing:6.270000px;}
.ws4b{word-spacing:6.327000px;}
.ws1c{word-spacing:6.384000px;}
.ws6b{word-spacing:6.441000px;}
.wsc8{word-spacing:6.552000px;}
.ws53{word-spacing:6.555000px;}
.ws18{word-spacing:6.612000px;}
.wsa5{word-spacing:6.669000px;}
.ws3a{word-spacing:6.726000px;}
.wsdc{word-spacing:6.783000px;}
.wsdb{word-spacing:6.897000px;}
.wsbf{word-spacing:6.954000px;}
.ws6f{word-spacing:7.011000px;}
.wsef{word-spacing:7.068000px;}
.ws4{word-spacing:7.089000px;}
.wse1{word-spacing:7.125000px;}
.ws99{word-spacing:7.182000px;}
.ws8b{word-spacing:7.239000px;}
.ws4f{word-spacing:7.296000px;}
.wsb2{word-spacing:7.353000px;}
.wsbe{word-spacing:7.410000px;}
.wsf6{word-spacing:7.467000px;}
.ws106{word-spacing:7.506000px;}
.ws70{word-spacing:7.524000px;}
.wsf0{word-spacing:7.581000px;}
.wsf1{word-spacing:7.638000px;}
.wsc4{word-spacing:7.695000px;}
.wsea{word-spacing:7.752000px;}
.wscc{word-spacing:7.809000px;}
.wsbd{word-spacing:7.866000px;}
.ws16{word-spacing:7.923000px;}
.wscf{word-spacing:8.607000px;}
.ws82{word-spacing:9.990000px;}
.ws3{word-spacing:10.656000px;}
.wsa1{word-spacing:13.320000px;}
.ws31{word-spacing:14.220000px;}
.ws85{word-spacing:16.920000px;}
._1c{margin-left:-24.054000px;}
._1d{margin-left:-20.691000px;}
._1e{margin-left:-18.162000px;}
._b{margin-left:-16.680000px;}
._17{margin-left:-15.447000px;}
._e{margin-left:-14.364000px;}
._f{margin-left:-13.167000px;}
._19{margin-left:-12.138000px;}
._c{margin-left:-10.830000px;}
._13{margin-left:-9.408000px;}
._2{margin-left:-7.560000px;}
._11{margin-left:-6.510000px;}
._4{margin-left:-4.860000px;}
._1{margin-left:-3.420000px;}
._5{margin-left:-2.160000px;}
._9{margin-left:-1.056000px;}
._32{width:1.035300px;}
._d{width:2.052000px;}
._8{width:4.386000px;}
._10{width:5.664000px;}
._18{width:6.756000px;}
._3{width:7.992000px;}
._12{width:9.240000px;}
._16{width:11.088000px;}
._1b{width:12.654000px;}
._a{width:13.980000px;}
._15{width:15.750000px;}
._23{width:52.110000px;}
._1f{width:64.752000px;}
._14{width:68.325000px;}
._1a{width:71.025000px;}
._27{width:91.044000px;}
._25{width:115.074000px;}
._2d{width:118.098000px;}
._24{width:142.074000px;}
._2f{width:148.068000px;}
._2a{width:160.110000px;}
._2b{width:166.104000px;}
._2c{width:175.122000px;}
._22{width:179.010000px;}
._2e{width:199.098000px;}
._21{width:202.770000px;}
._26{width:208.170000px;}
._31{width:211.140000px;}
._28{width:223.128000px;}
._20{width:229.176000px;}
._29{width:241.110000px;}
._30{width:256.122000px;}
._0{width:518.400000px;}
._7{width:783.273000px;}
._6{width:823.500000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,102,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:36.000000px;}
.fs8{font-size:37.050000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:42.750000px;}
.fs7{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:89.291400px;}
.y1{bottom:100.487400px;}
.yad{bottom:133.936950px;}
.ycf{bottom:133.946400px;}
.y26f{bottom:133.946850px;}
.y1ed{bottom:133.950450px;}
.ybb{bottom:133.950600px;}
.y1aa{bottom:133.956450px;}
.y1e7{bottom:133.956900px;}
.y20{bottom:133.959450px;}
.y9b{bottom:133.960350px;}
.yf2{bottom:133.964850px;}
.y113{bottom:133.969500px;}
.y16b{bottom:133.970850px;}
.y143{bottom:133.974750px;}
.yaa{bottom:133.975350px;}
.y220{bottom:133.979250px;}
.y1f8{bottom:133.983300px;}
.y161{bottom:133.987350px;}
.y216{bottom:133.988400px;}
.y11f{bottom:133.989750px;}
.yeb{bottom:133.997850px;}
.y1cd{bottom:134.002350px;}
.y8a{bottom:134.006700px;}
.y60{bottom:134.007300px;}
.y1de{bottom:134.011800px;}
.y4f{bottom:134.025300px;}
.y254{bottom:134.029350px;}
.y23f{bottom:134.075250px;}
.y2a5{bottom:135.015450px;}
.yce{bottom:146.735400px;}
.y1ec{bottom:146.739450px;}
.yba{bottom:146.739600px;}
.y1f{bottom:146.748450px;}
.yf1{bottom:146.753850px;}
.y112{bottom:146.758500px;}
.y142{bottom:146.763750px;}
.y215{bottom:146.777400px;}
.yea{bottom:146.786850px;}
.y89{bottom:146.795700px;}
.y1dd{bottom:146.800800px;}
.y4e{bottom:146.814300px;}
.y253{bottom:146.818350px;}
.y23e{bottom:146.864250px;}
.y2a4{bottom:150.391950px;}
.y26e{bottom:153.130350px;}
.y1a9{bottom:153.139950px;}
.y1e6{bottom:153.140400px;}
.y9a{bottom:153.143850px;}
.y16a{bottom:153.154350px;}
.ya9{bottom:153.158850px;}
.y21f{bottom:153.162750px;}
.y1f7{bottom:153.166800px;}
.y160{bottom:153.170850px;}
.y11e{bottom:153.173250px;}
.y1cc{bottom:153.185850px;}
.y5f{bottom:153.190800px;}
.y1eb{bottom:159.528450px;}
.yb9{bottom:159.528600px;}
.y1e{bottom:159.537450px;}
.y111{bottom:159.547500px;}
.y141{bottom:159.552750px;}
.y88{bottom:159.584700px;}
.y1dc{bottom:159.589800px;}
.y4d{bottom:159.603300px;}
.y252{bottom:159.607350px;}
.y23d{bottom:159.653250px;}
.ycd{bottom:165.918900px;}
.y99{bottom:165.932850px;}
.yf0{bottom:165.937350px;}
.ya8{bottom:165.947850px;}
.y21e{bottom:165.951750px;}
.y214{bottom:165.960900px;}
.ye9{bottom:165.970350px;}
.y5e{bottom:165.979800px;}
.y26d{bottom:172.313850px;}
.y1ea{bottom:172.317450px;}
.yb8{bottom:172.317600px;}
.y1a8{bottom:172.323450px;}
.y1e5{bottom:172.323900px;}
.y1d{bottom:172.326450px;}
.y110{bottom:172.336500px;}
.y169{bottom:172.337850px;}
.y140{bottom:172.341750px;}
.y1f6{bottom:172.350300px;}
.y15f{bottom:172.354350px;}
.y11d{bottom:172.356750px;}
.y1cb{bottom:172.369350px;}
.y1db{bottom:172.378800px;}
.y4c{bottom:172.392300px;}
.y251{bottom:172.396350px;}
.y23c{bottom:172.442250px;}
.y2a3{bottom:173.762700px;}
.y98{bottom:178.721850px;}
.yef{bottom:178.726350px;}
.y213{bottom:178.749900px;}
.ye8{bottom:178.759350px;}
.y87{bottom:178.768200px;}
.y1c{bottom:185.115450px;}
.y168{bottom:185.126850px;}
.ya7{bottom:185.131350px;}
.y21d{bottom:185.135250px;}
.y1f5{bottom:185.139300px;}
.y15e{bottom:185.143350px;}
.y1ca{bottom:185.158350px;}
.y5d{bottom:185.163300px;}
.y250{bottom:185.185350px;}
.y2a2{bottom:189.139200px;}
.y1a7{bottom:191.506950px;}
.y1e4{bottom:191.507400px;}
.y10f{bottom:191.520000px;}
.y13f{bottom:191.525250px;}
.y11c{bottom:191.540250px;}
.y86{bottom:191.557200px;}
.y1da{bottom:191.562300px;}
.y4b{bottom:191.575800px;}
.y23b{bottom:191.625750px;}
.y1b{bottom:197.904450px;}
.y97{bottom:197.905350px;}
.yee{bottom:197.909850px;}
.y15d{bottom:197.932350px;}
.y212{bottom:197.933400px;}
.ye7{bottom:197.942850px;}
.y1c9{bottom:197.947350px;}
.y5c{bottom:197.952300px;}
.y24f{bottom:197.974350px;}
.y1a6{bottom:204.295950px;}
.y167{bottom:204.310350px;}
.y13e{bottom:204.314250px;}
.ya6{bottom:204.314850px;}
.y21c{bottom:204.318750px;}
.y1f4{bottom:204.322800px;}
.y11b{bottom:204.329250px;}
.y85{bottom:204.346200px;}
.y4a{bottom:204.364800px;}
.y2a1{bottom:204.515700px;}
.y188{bottom:207.818700px;}
.ycc{bottom:210.266700px;}
.y1e3{bottom:210.690900px;}
.y96{bottom:210.694350px;}
.yed{bottom:210.698850px;}
.y10e{bottom:210.703500px;}
.y15c{bottom:210.721350px;}
.y211{bottom:210.722400px;}
.ye6{bottom:210.731850px;}
.y1c8{bottom:210.736350px;}
.y1d9{bottom:210.745800px;}
.y24e{bottom:210.763350px;}
.y23a{bottom:210.809250px;}
.ya5{bottom:217.103850px;}
.y21b{bottom:217.107750px;}
.y1f3{bottom:217.111800px;}
.y5b{bottom:217.135800px;}
.y2a0{bottom:219.892200px;}
.yac{bottom:220.989600px;}
.y1e9{bottom:222.967200px;}
.yec{bottom:223.487850px;}
.y10d{bottom:223.492500px;}
.y166{bottom:223.493850px;}
.y13d{bottom:223.497750px;}
.y15b{bottom:223.510350px;}
.y210{bottom:223.511400px;}
.y11a{bottom:223.512750px;}
.y84{bottom:223.529700px;}
.y49{bottom:223.548300px;}
.y24d{bottom:223.552350px;}
.y239{bottom:223.598250px;}
.y187{bottom:225.417450px;}
.y26c{bottom:226.330800px;}
.ycb{bottom:227.865450px;}
.y21a{bottom:229.896750px;}
.y1f2{bottom:229.900800px;}
.ye5{bottom:229.915350px;}
.y1c7{bottom:229.919850px;}
.y5a{bottom:229.924800px;}
.y1d8{bottom:229.929300px;}
.y29f{bottom:235.268700px;}
.yab{bottom:235.378350px;}
.y10c{bottom:236.281500px;}
.ya4{bottom:236.287350px;}
.y15a{bottom:236.299350px;}
.y83{bottom:236.318700px;}
.y48{bottom:236.337300px;}
.y24c{bottom:236.341350px;}
.y1e8{bottom:240.565950px;}
.y165{bottom:242.677350px;}
.y13c{bottom:242.681250px;}
.y219{bottom:242.685750px;}
.y1f1{bottom:242.689800px;}
.y20f{bottom:242.694900px;}
.y119{bottom:242.696250px;}
.y59{bottom:242.713800px;}
.y238{bottom:242.781750px;}
.y186{bottom:243.016200px;}
.y26b{bottom:243.124800px;}
.yca{bottom:245.464200px;}
.ya3{bottom:249.076350px;}
.y159{bottom:249.088350px;}
.ye4{bottom:249.098850px;}
.y1c6{bottom:249.103350px;}
.y82{bottom:249.107700px;}
.y1d7{bottom:249.112800px;}
.y29e{bottom:250.645200px;}
.y1e2{bottom:251.809200px;}
.y164{bottom:255.466350px;}
.y1f0{bottom:255.478800px;}
.y20e{bottom:255.483900px;}
.y118{bottom:255.485250px;}
.y47{bottom:255.520800px;}
.y24b{bottom:255.524850px;}
.y237{bottom:255.570750px;}
.y95{bottom:258.164700px;}
.y26a{bottom:259.918800px;}
.y185{bottom:260.614950px;}
.y13b{bottom:261.864750px;}
.y218{bottom:261.869250px;}
.y158{bottom:261.877350px;}
.ye3{bottom:261.887850px;}
.y58{bottom:261.897300px;}
.y1d6{bottom:261.901800px;}
.yc9{bottom:263.062950px;}
.yb7{bottom:263.293350px;}
.y29d{bottom:266.021700px;}
.y1a{bottom:268.186050px;}
.ya2{bottom:268.259850px;}
.y1ef{bottom:268.267800px;}
.y20d{bottom:268.272900px;}
.y117{bottom:268.274250px;}
.y1c5{bottom:268.286850px;}
.y81{bottom:268.291200px;}
.y46{bottom:268.309800px;}
.y236{bottom:268.359750px;}
.y1e1{bottom:269.407950px;}
.y217{bottom:274.658250px;}
.y157{bottom:274.666350px;}
.y57{bottom:274.686300px;}
.y1d5{bottom:274.690800px;}
.y24a{bottom:274.708350px;}
.y94{bottom:275.763450px;}
.y269{bottom:276.712800px;}
.y10b{bottom:278.204400px;}
.y184{bottom:278.213700px;}
.y1a5{bottom:278.453700px;}
.yc8{bottom:280.661700px;}
.y1ee{bottom:281.056800px;}
.ye2{bottom:281.071350px;}
.y1c4{bottom:281.075850px;}
.y80{bottom:281.080200px;}
.y45{bottom:281.098800px;}
.y235{bottom:281.148750px;}
.y29c{bottom:281.398200px;}
.y19{bottom:285.784800px;}
.yb6{bottom:287.267850px;}
.y156{bottom:287.455350px;}
.y20c{bottom:287.456400px;}
.y116{bottom:287.457750px;}
.y249{bottom:287.497350px;}
.y93{bottom:293.362200px;}
.y268{bottom:293.506800px;}
.ye1{bottom:293.860350px;}
.y1c3{bottom:293.864850px;}
.y56{bottom:293.869800px;}
.y1d4{bottom:293.874300px;}
.y234{bottom:293.937750px;}
.y1e0{bottom:295.798950px;}
.y10a{bottom:295.803150px;}
.y183{bottom:295.812450px;}
.y1a4{bottom:296.052450px;}
.y29b{bottom:296.774700px;}
.yc7{bottom:298.260450px;}
.y20b{bottom:300.245400px;}
.y7f{bottom:300.263700px;}
.y44{bottom:300.282300px;}
.y18{bottom:303.383550px;}
.y115{bottom:306.641250px;}
.ye0{bottom:306.649350px;}
.y1c2{bottom:306.653850px;}
.y55{bottom:306.658800px;}
.y1d3{bottom:306.663300px;}
.y248{bottom:306.680850px;}
.y233{bottom:306.726750px;}
.y267{bottom:310.300800px;}
.y92{bottom:310.960950px;}
.ya1{bottom:311.080950px;}
.y29a{bottom:312.151200px;}
.y7e{bottom:313.052700px;}
.y43{bottom:313.071300px;}
.y163{bottom:313.397700px;}
.y109{bottom:313.401900px;}
.y182{bottom:313.411200px;}
.y1a3{bottom:313.651200px;}
.y114{bottom:319.430250px;}
.ydf{bottom:319.438350px;}
.y1c1{bottom:319.442850px;}
.y54{bottom:319.447800px;}
.y1d2{bottom:319.452300px;}
.y247{bottom:319.469850px;}
.y232{bottom:319.515750px;}
.y17{bottom:320.982300px;}
.y266{bottom:327.094800px;}
.y299{bottom:327.527700px;}
.y91{bottom:328.559700px;}
.y155{bottom:330.996450px;}
.y108{bottom:331.000650px;}
.y181{bottom:331.009950px;}
.y13a{bottom:331.040850px;}
.y1a2{bottom:331.249950px;}
.yde{bottom:332.227350px;}
.y1c0{bottom:332.231850px;}
.y7d{bottom:332.236200px;}
.y53{bottom:332.236800px;}
.y1d1{bottom:332.241300px;}
.y42{bottom:332.254800px;}
.y246{bottom:332.258850px;}
.yc6{bottom:332.645700px;}
.y16{bottom:338.581050px;}
.y231{bottom:338.699250px;}
.y298{bottom:342.904200px;}
.y265{bottom:343.888800px;}
.y1bf{bottom:345.020850px;}
.y7c{bottom:345.025200px;}
.y41{bottom:345.043800px;}
.y90{bottom:346.158450px;}
.y20a{bottom:346.411950px;}
.y154{bottom:348.595200px;}
.y107{bottom:348.599400px;}
.y180{bottom:348.608700px;}
.y139{bottom:348.639600px;}
.y1a1{bottom:348.848700px;}
.y52{bottom:351.420300px;}
.y1d0{bottom:351.424800px;}
.y245{bottom:351.442350px;}
.y230{bottom:351.488250px;}
.y7b{bottom:357.814200px;}
.y264{bottom:360.682800px;}
.y8f{bottom:363.757200px;}
.y209{bottom:364.010700px;}
.y51{bottom:364.209300px;}
.y1cf{bottom:364.213800px;}
.y40{bottom:364.227300px;}
.y244{bottom:364.231350px;}
.y22f{bottom:364.277250px;}
.y153{bottom:366.193950px;}
.y106{bottom:366.198150px;}
.y17f{bottom:366.207450px;}
.y138{bottom:366.238350px;}
.y1a0{bottom:366.447450px;}
.y15{bottom:372.968700px;}
.y1ce{bottom:377.002800px;}
.y3f{bottom:377.016300px;}
.y243{bottom:377.020350px;}
.y263{bottom:377.476800px;}
.y8e{bottom:381.355950px;}
.y208{bottom:381.609450px;}
.y22e{bottom:383.460750px;}
.y152{bottom:383.792700px;}
.y105{bottom:383.796900px;}
.y17e{bottom:383.806200px;}
.yc5{bottom:383.817450px;}
.y137{bottom:383.837100px;}
.y19f{bottom:384.046200px;}
.y3e{bottom:389.805300px;}
.y1be{bottom:390.162450px;}
.y297{bottom:393.470700px;}
.y262{bottom:394.270800px;}
.y242{bottom:396.203850px;}
.y22d{bottom:396.249750px;}
.y8d{bottom:398.954700px;}
.ydd{bottom:398.983950px;}
.y207{bottom:399.208200px;}
.y7a{bottom:400.020450px;}
.y151{bottom:401.391450px;}
.y104{bottom:401.395650px;}
.y17d{bottom:401.404950px;}
.yc4{bottom:401.416200px;}
.y19e{bottom:401.644950px;}
.y3d{bottom:402.594300px;}
.y1bd{bottom:407.761200px;}
.y296{bottom:408.847200px;}
.y241{bottom:408.992850px;}
.y22c{bottom:409.038750px;}
.y261{bottom:411.064800px;}
.y3c{bottom:415.383300px;}
.y8c{bottom:416.553450px;}
.ydc{bottom:416.582700px;}
.y206{bottom:416.806950px;}
.y79{bottom:417.619200px;}
.y136{bottom:418.226100px;}
.y150{bottom:418.990200px;}
.y103{bottom:418.994400px;}
.y17c{bottom:419.003700px;}
.yc3{bottom:419.014950px;}
.y19d{bottom:419.243700px;}
.y240{bottom:421.781850px;}
.y22b{bottom:421.827750px;}
.y1bc{bottom:425.359950px;}
.y260{bottom:427.858800px;}
.y295{bottom:432.217950px;}
.y8b{bottom:434.152200px;}
.ydb{bottom:434.181450px;}
.y205{bottom:434.405700px;}
.y22a{bottom:434.616750px;}
.y78{bottom:435.217950px;}
.y135{bottom:435.821100px;}
.y14f{bottom:436.588950px;}
.y102{bottom:436.593150px;}
.y17b{bottom:436.602450px;}
.yc2{bottom:436.613700px;}
.y19c{bottom:436.842450px;}
.y1bb{bottom:442.958700px;}
.y25f{bottom:444.652800px;}
.y229{bottom:447.405750px;}
.y294{bottom:447.594450px;}
.y50{bottom:451.750950px;}
.yda{bottom:451.780200px;}
.y204{bottom:452.004450px;}
.y77{bottom:452.816700px;}
.y14e{bottom:454.187700px;}
.y101{bottom:454.191900px;}
.y17a{bottom:454.201200px;}
.yc1{bottom:454.212450px;}
.y19b{bottom:454.441200px;}
.y14{bottom:458.145000px;}
.y1ba{bottom:460.557450px;}
.y25e{bottom:461.446800px;}
.y293{bottom:462.970950px;}
.y228{bottom:466.589250px;}
.y3b{bottom:469.349700px;}
.yd9{bottom:469.378950px;}
.y203{bottom:469.603200px;}
.y76{bottom:470.415450px;}
.y14d{bottom:471.786450px;}
.y100{bottom:471.790650px;}
.y179{bottom:471.799950px;}
.yc0{bottom:471.811200px;}
.y19a{bottom:472.039950px;}
.y13{bottom:474.133500px;}
.y1b9{bottom:478.156200px;}
.y25d{bottom:478.240800px;}
.y292{bottom:478.347450px;}
.y227{bottom:479.378250px;}
.y3a{bottom:486.948450px;}
.y134{bottom:486.954750px;}
.yd8{bottom:486.977700px;}
.y202{bottom:487.201950px;}
.y75{bottom:488.014200px;}
.y14c{bottom:489.385200px;}
.yff{bottom:489.389400px;}
.y178{bottom:489.398700px;}
.ybf{bottom:489.409950px;}
.y199{bottom:489.638700px;}
.y12{bottom:490.122000px;}
.y226{bottom:492.167250px;}
.y291{bottom:493.723950px;}
.y25c{bottom:495.034800px;}
.y1b8{bottom:495.754950px;}
.y39{bottom:504.547200px;}
.y133{bottom:504.553500px;}
.yd7{bottom:504.576450px;}
.y201{bottom:504.800700px;}
.y225{bottom:504.956250px;}
.y74{bottom:505.612950px;}
.y11{bottom:506.110500px;}
.y14b{bottom:506.983950px;}
.yfe{bottom:506.988150px;}
.y177{bottom:506.997450px;}
.ybe{bottom:507.008700px;}
.y198{bottom:507.237450px;}
.y290{bottom:509.100450px;}
.y25b{bottom:511.828800px;}
.y1b7{bottom:513.353700px;}
.y224{bottom:517.745250px;}
.y10{bottom:522.099000px;}
.y38{bottom:522.145950px;}
.y132{bottom:522.152250px;}
.yd6{bottom:522.175200px;}
.y200{bottom:522.399450px;}
.y73{bottom:523.211700px;}
.y28f{bottom:524.476950px;}
.y14a{bottom:524.582700px;}
.yfd{bottom:524.586900px;}
.y176{bottom:524.596200px;}
.ybd{bottom:524.607450px;}
.y197{bottom:524.836200px;}
.y25a{bottom:528.622800px;}
.y1b6{bottom:530.952450px;}
.y223{bottom:536.928750px;}
.yf{bottom:538.087500px;}
.y37{bottom:539.744700px;}
.y131{bottom:539.751000px;}
.yd5{bottom:539.773950px;}
.y28e{bottom:539.853450px;}
.y1ff{bottom:539.998200px;}
.y72{bottom:540.810450px;}
.y149{bottom:542.181450px;}
.yfc{bottom:542.185650px;}
.y175{bottom:542.194950px;}
.y196{bottom:542.434950px;}
.y259{bottom:545.416800px;}
.y1b5{bottom:548.551200px;}
.y222{bottom:549.717750px;}
.ye{bottom:554.076000px;}
.y28d{bottom:555.229950px;}
.y36{bottom:557.343450px;}
.y130{bottom:557.349750px;}
.yd4{bottom:557.372700px;}
.y1fe{bottom:557.596950px;}
.y71{bottom:558.409200px;}
.y1df{bottom:558.967950px;}
.ybc{bottom:558.994950px;}
.y148{bottom:559.780200px;}
.yfb{bottom:559.784400px;}
.y174{bottom:559.793700px;}
.y195{bottom:560.033700px;}
.y258{bottom:562.210800px;}
.y221{bottom:562.506750px;}
.y1b4{bottom:566.149950px;}
.yd{bottom:570.064500px;}
.y28c{bottom:570.606450px;}
.y35{bottom:574.942200px;}
.y12f{bottom:574.948500px;}
.yd3{bottom:574.971450px;}
.y1fd{bottom:575.195700px;}
.y70{bottom:576.007950px;}
.y147{bottom:577.378950px;}
.yfa{bottom:577.383150px;}
.y173{bottom:577.392450px;}
.y194{bottom:577.632450px;}
.y257{bottom:579.004800px;}
.ya0{bottom:581.183700px;}
.y1b3{bottom:583.748700px;}
.y28b{bottom:585.982950px;}
.yc{bottom:586.053000px;}
.y34{bottom:592.540950px;}
.y12e{bottom:592.547250px;}
.yd2{bottom:592.570200px;}
.y1fc{bottom:592.794450px;}
.y6f{bottom:593.606700px;}
.y146{bottom:594.977700px;}
.yf9{bottom:594.981900px;}
.y172{bottom:594.991200px;}
.y256{bottom:595.798800px;}
.y9f{bottom:598.782450px;}
.y1b2{bottom:601.347450px;}
.y28a{bottom:601.359450px;}
.yb{bottom:602.041500px;}
.y33{bottom:610.139700px;}
.y12d{bottom:610.146000px;}
.yd1{bottom:610.168950px;}
.y1fb{bottom:610.393200px;}
.y6e{bottom:611.205450px;}
.y193{bottom:612.017700px;}
.y145{bottom:612.576450px;}
.yf8{bottom:612.580650px;}
.y171{bottom:612.589950px;}
.y9e{bottom:616.381200px;}
.ya{bottom:618.030000px;}
.y1b1{bottom:618.946200px;}
.y32{bottom:627.738450px;}
.y12c{bottom:627.744750px;}
.yd0{bottom:627.767700px;}
.y1fa{bottom:627.991950px;}
.y6d{bottom:628.804200px;}
.y255{bottom:629.380800px;}
.yb5{bottom:630.175200px;}
.yf7{bottom:630.179400px;}
.y170{bottom:630.188700px;}
.y9d{bottom:633.979950px;}
.y9{bottom:634.018500px;}
.y1b0{bottom:636.544950px;}
.y31{bottom:645.337200px;}
.y12b{bottom:645.343500px;}
.y1f9{bottom:645.590700px;}
.y6c{bottom:646.402950px;}
.yb4{bottom:647.773950px;}
.yf6{bottom:647.778150px;}
.y27a{bottom:649.847700px;}
.y8{bottom:650.007000px;}
.y289{bottom:651.925950px;}
.y1af{bottom:654.143700px;}
.y30{bottom:662.935950px;}
.y12a{bottom:662.942250px;}
.y192{bottom:663.189450px;}
.y6b{bottom:664.001700px;}
.y16f{bottom:664.573950px;}
.yb3{bottom:665.372700px;}
.yf5{bottom:665.376900px;}
.y288{bottom:667.302450px;}
.y9c{bottom:668.365200px;}
.y1ae{bottom:671.742450px;}
.y279{bottom:676.240200px;}
.y2f{bottom:680.534700px;}
.y129{bottom:680.541000px;}
.y191{bottom:680.788200px;}
.y6a{bottom:681.600450px;}
.y162{bottom:682.159200px;}
.yb2{bottom:682.971450px;}
.yf4{bottom:682.975650px;}
.y1ad{bottom:689.341200px;}
.y287{bottom:690.673200px;}
.y2e{bottom:698.133450px;}
.y128{bottom:698.139750px;}
.y190{bottom:698.386950px;}
.y69{bottom:699.199200px;}
.y144{bottom:699.757950px;}
.yb1{bottom:700.570200px;}
.yf3{bottom:700.574400px;}
.y286{bottom:706.049700px;}
.y1ac{bottom:706.939950px;}
.y2d{bottom:715.732200px;}
.y127{bottom:715.738500px;}
.y16e{bottom:715.745700px;}
.y18f{bottom:715.985700px;}
.y68{bottom:716.797950px;}
.yb0{bottom:718.168950px;}
.y285{bottom:721.426200px;}
.y1ab{bottom:724.538700px;}
.y2c{bottom:733.330950px;}
.y126{bottom:733.337250px;}
.y16d{bottom:733.344450px;}
.y18e{bottom:733.584450px;}
.y67{bottom:734.396700px;}
.yaf{bottom:735.767700px;}
.y284{bottom:736.802700px;}
.y278{bottom:740.310450px;}
.y2b{bottom:750.929700px;}
.y125{bottom:750.936000px;}
.y16c{bottom:750.943200px;}
.y18d{bottom:751.183200px;}
.y66{bottom:751.995450px;}
.y283{bottom:752.179200px;}
.y277{bottom:757.104450px;}
.y7{bottom:759.533250px;}
.y282{bottom:767.555700px;}
.y2a{bottom:768.528450px;}
.y124{bottom:768.534750px;}
.y18c{bottom:768.781950px;}
.y65{bottom:769.594200px;}
.yae{bottom:770.152950px;}
.y276{bottom:773.898450px;}
.y281{bottom:782.932200px;}
.y29{bottom:786.127200px;}
.y123{bottom:786.133500px;}
.y18b{bottom:786.380700px;}
.y64{bottom:787.192950px;}
.y6{bottom:789.917250px;}
.y275{bottom:790.692450px;}
.y280{bottom:798.308700px;}
.y28{bottom:803.725950px;}
.y122{bottom:803.732250px;}
.y18a{bottom:803.979450px;}
.y63{bottom:804.791700px;}
.y274{bottom:807.486450px;}
.y27f{bottom:813.685200px;}
.y27{bottom:821.324700px;}
.y121{bottom:821.331000px;}
.y189{bottom:821.578200px;}
.y273{bottom:824.280450px;}
.y27e{bottom:829.061700px;}
.y5{bottom:829.815450px;}
.y26{bottom:838.923450px;}
.y120{bottom:838.929750px;}
.y62{bottom:839.176950px;}
.y272{bottom:841.074450px;}
.y27d{bottom:844.438200px;}
.y4{bottom:850.605450px;}
.y25{bottom:856.522200px;}
.y271{bottom:857.868450px;}
.y27c{bottom:859.814700px;}
.y3{bottom:871.395450px;}
.y61{bottom:873.564450px;}
.y24{bottom:874.120950px;}
.y270{bottom:874.662450px;}
.y27b{bottom:875.191200px;}
.y23{bottom:913.855950px;}
.y22{bottom:922.852950px;}
.y21{bottom:936.355950px;}
.h2{height:33.480000px;}
.h9{height:39.060000px;}
.hb{height:41.850000px;}
.h5{height:44.640000px;}
.h6{height:47.430000px;}
.hf{height:50.220000px;}
.ha{height:52.326000px;}
.h8{height:53.010000px;}
.he{height:53.064000px;}
.hc{height:53.127000px;}
.hd{height:53.217000px;}
.h7{height:55.080000px;}
.h3{height:55.800000px;}
.h4{height:66.096000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:106.299150px;}
.x1{left:119.055150px;}
.xb{left:127.560150px;}
.x10{left:130.569150px;}
.xf{left:138.839700px;}
.x5{left:140.314950px;}
.x13{left:142.439400px;}
.x14{left:144.567000px;}
.x12{left:148.820100px;}
.x9{left:155.661600px;}
.x4{left:157.424850px;}
.x11{left:161.577150px;}
.x17{left:176.456700px;}
.x15{left:191.335650px;}
.xe{left:195.590550px;}
.x16{left:204.091650px;}
.x6{left:246.031800px;}
.xc{left:258.787800px;}
.x7{left:321.055800px;}
.x3{left:326.412750px;}
.xd{left:333.811800px;}
.x2{left:481.188750px;}
.x8{left:485.823600px;}
@media print{
.v1{vertical-align:-31.989333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.304000pt;}
.ls32{letter-spacing:-3.200000pt;}
.ls1e{letter-spacing:-1.866667pt;}
.ls1f{letter-spacing:-1.013333pt;}
.ls11{letter-spacing:-0.800000pt;}
.ls29{letter-spacing:-0.506667pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls2a{letter-spacing:-0.354667pt;}
.ls47{letter-spacing:-0.253333pt;}
.ls46{letter-spacing:-0.202667pt;}
.ls53{letter-spacing:-0.186667pt;}
.ls54{letter-spacing:-0.074667pt;}
.ls20{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.020267pt;}
.ls5c{letter-spacing:0.022667pt;}
.ls25{letter-spacing:0.025333pt;}
.ls8{letter-spacing:0.050667pt;}
.ls7{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.090667pt;}
.ls13{letter-spacing:0.101333pt;}
.ls51{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.136000pt;}
.ls56{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.149333pt;}
.lsa{letter-spacing:0.152000pt;}
.ls2c{letter-spacing:0.177333pt;}
.ls2{letter-spacing:0.181333pt;}
.lsd{letter-spacing:0.186667pt;}
.ls55{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.202667pt;}
.ls34{letter-spacing:0.205333pt;}
.ls3d{letter-spacing:0.222933pt;}
.lse{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.253333pt;}
.ls36{letter-spacing:0.261333pt;}
.ls6{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.278667pt;}
.lsc{letter-spacing:0.304000pt;}
.ls44{letter-spacing:0.354667pt;}
.ls30{letter-spacing:0.392000pt;}
.ls28{letter-spacing:0.405333pt;}
.ls31{letter-spacing:0.410667pt;}
.ls4e{letter-spacing:0.430667pt;}
.ls24{letter-spacing:0.456000pt;}
.ls57{letter-spacing:0.480000pt;}
.ls52{letter-spacing:0.485333pt;}
.ls39{letter-spacing:0.506667pt;}
.ls27{letter-spacing:0.557333pt;}
.ls50{letter-spacing:0.560000pt;}
.ls1b{letter-spacing:0.597333pt;}
.ls41{letter-spacing:0.608000pt;}
.ls40{letter-spacing:0.634667pt;}
.ls38{letter-spacing:0.658667pt;}
.ls59{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.684000pt;}
.ls37{letter-spacing:0.760000pt;}
.ls0{letter-spacing:0.770667pt;}
.ls2f{letter-spacing:0.810667pt;}
.ls2e{letter-spacing:0.861333pt;}
.ls45{letter-spacing:0.962667pt;}
.ls16{letter-spacing:0.970667pt;}
.ls14{letter-spacing:1.008000pt;}
.ls4f{letter-spacing:1.013333pt;}
.ls23{letter-spacing:1.064000pt;}
.ls26{letter-spacing:1.082667pt;}
.ls43{letter-spacing:1.165333pt;}
.ls2b{letter-spacing:1.194667pt;}
.ls58{letter-spacing:1.200000pt;}
.ls1a{letter-spacing:1.216000pt;}
.ls1d{letter-spacing:1.250667pt;}
.ls21{letter-spacing:1.269333pt;}
.ls4a{letter-spacing:1.368000pt;}
.ls5d{letter-spacing:1.450667pt;}
.ls4d{letter-spacing:1.469333pt;}
.ls4{letter-spacing:1.493333pt;}
.lsf{letter-spacing:1.568000pt;}
.ls3c{letter-spacing:1.754667pt;}
.ls4b{letter-spacing:1.824000pt;}
.ls4c{letter-spacing:2.077333pt;}
.ls3e{letter-spacing:2.280000pt;}
.ls3f{letter-spacing:2.584000pt;}
.ls10{letter-spacing:2.725333pt;}
.ls2d{letter-spacing:2.837333pt;}
.ls33{letter-spacing:4.684533pt;}
.ls35{letter-spacing:4.712000pt;}
.ls3b{letter-spacing:4.722400pt;}
.ls19{letter-spacing:5.376000pt;}
.ls17{letter-spacing:5.637333pt;}
.ls1c{letter-spacing:6.421333pt;}
.ls15{letter-spacing:6.944000pt;}
.ls49{letter-spacing:8.512000pt;}
.ls48{letter-spacing:9.018667pt;}
.ls5a{letter-spacing:10.064000pt;}
.ls5b{letter-spacing:10.336000pt;}
.ws0{word-spacing:-14.826667pt;}
.wsa8{word-spacing:-14.085333pt;}
.ws14{word-spacing:-14.026667pt;}
.ws1{word-spacing:-13.373333pt;}
.ws48{word-spacing:-12.960000pt;}
.ws109{word-spacing:-12.602667pt;}
.ws61{word-spacing:-11.461333pt;}
.wsd1{word-spacing:-11.013333pt;}
.ws7e{word-spacing:-10.789333pt;}
.wsa9{word-spacing:-10.564000pt;}
.ws1a{word-spacing:-7.752000pt;}
.ws44{word-spacing:-5.712000pt;}
.ws2b{word-spacing:-1.568000pt;}
.wse7{word-spacing:-1.368000pt;}
.ws5d{word-spacing:-1.269333pt;}
.ws90{word-spacing:-0.608000pt;}
.wsf8{word-spacing:-0.560000pt;}
.wsc7{word-spacing:-0.506667pt;}
.ws100{word-spacing:-0.485333pt;}
.ws65{word-spacing:-0.456000pt;}
.wsa3{word-spacing:-0.405333pt;}
.ws54{word-spacing:-0.354667pt;}
.ws71{word-spacing:-0.304000pt;}
.ws10a{word-spacing:-0.272000pt;}
.wsf2{word-spacing:-0.224000pt;}
.wsd{word-spacing:-0.202667pt;}
.ws28{word-spacing:-0.186667pt;}
.ws67{word-spacing:-0.152000pt;}
.ws47{word-spacing:-0.149333pt;}
.ws116{word-spacing:-0.136000pt;}
.wsd3{word-spacing:-0.101333pt;}
.ws29{word-spacing:-0.074667pt;}
.wse3{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.050667pt;}
.ws26{word-spacing:0.074667pt;}
.ws79{word-spacing:0.101333pt;}
.ws77{word-spacing:0.152000pt;}
.ws103{word-spacing:0.186667pt;}
.ws57{word-spacing:0.202667pt;}
.ws11{word-spacing:0.224000pt;}
.ws96{word-spacing:0.253333pt;}
.ws9c{word-spacing:0.261333pt;}
.ws9e{word-spacing:0.298667pt;}
.ws76{word-spacing:0.304000pt;}
.ws7a{word-spacing:0.354667pt;}
.ws117{word-spacing:0.362667pt;}
.ws60{word-spacing:0.373333pt;}
.wsa4{word-spacing:0.405333pt;}
.ws43{word-spacing:0.448000pt;}
.wsa6{word-spacing:0.456000pt;}
.wse9{word-spacing:0.485333pt;}
.ws8a{word-spacing:0.506667pt;}
.ws1e{word-spacing:0.557333pt;}
.wsbb{word-spacing:0.560000pt;}
.ws105{word-spacing:0.597333pt;}
.ws81{word-spacing:0.608000pt;}
.ws10f{word-spacing:0.634667pt;}
.ws6e{word-spacing:0.658667pt;}
.wsb9{word-spacing:0.672000pt;}
.ws3b{word-spacing:0.709333pt;}
.ws7{word-spacing:0.725333pt;}
.ws6d{word-spacing:0.760000pt;}
.ws118{word-spacing:0.770667pt;}
.wsca{word-spacing:0.810667pt;}
.wsba{word-spacing:0.821333pt;}
.ws5a{word-spacing:0.858667pt;}
.ws8e{word-spacing:0.861333pt;}
.ws104{word-spacing:0.896000pt;}
.ws58{word-spacing:0.912000pt;}
.wsad{word-spacing:0.933333pt;}
.ws97{word-spacing:0.962667pt;}
.ws2c{word-spacing:0.970667pt;}
.ws4a{word-spacing:1.013333pt;}
.ws10c{word-spacing:1.042667pt;}
.wsfb{word-spacing:1.045333pt;}
.ws3e{word-spacing:1.064000pt;}
.wseb{word-spacing:1.082667pt;}
.ws39{word-spacing:1.114667pt;}
.wsdd{word-spacing:1.120000pt;}
.wsb0{word-spacing:1.165333pt;}
.wsc3{word-spacing:1.194667pt;}
.ws3f{word-spacing:1.216000pt;}
.ws101{word-spacing:1.232000pt;}
.ws88{word-spacing:1.266667pt;}
.ws9f{word-spacing:1.269333pt;}
.wsc2{word-spacing:1.306667pt;}
.ws78{word-spacing:1.317333pt;}
.ws91{word-spacing:1.368000pt;}
.ws42{word-spacing:1.381333pt;}
.ws95{word-spacing:1.418667pt;}
.wsfe{word-spacing:1.456000pt;}
.ws94{word-spacing:1.469333pt;}
.wsf{word-spacing:1.493333pt;}
.wscd{word-spacing:1.520000pt;}
.wse0{word-spacing:1.530667pt;}
.ws111{word-spacing:1.541333pt;}
.ws12{word-spacing:1.568000pt;}
.wsb1{word-spacing:1.570667pt;}
.wsda{word-spacing:1.605333pt;}
.ws1b{word-spacing:1.621333pt;}
.ws102{word-spacing:1.642667pt;}
.wsc{word-spacing:1.672000pt;}
.wsa0{word-spacing:1.680000pt;}
.wsd9{word-spacing:1.717333pt;}
.wse4{word-spacing:1.722667pt;}
.wsde{word-spacing:1.754667pt;}
.wscb{word-spacing:1.773333pt;}
.ws46{word-spacing:1.792000pt;}
.wse{word-spacing:1.824000pt;}
.wsd0{word-spacing:1.829333pt;}
.ws93{word-spacing:1.866667pt;}
.wsac{word-spacing:1.874667pt;}
.ws41{word-spacing:1.925333pt;}
.wsf7{word-spacing:1.941333pt;}
.ws7c{word-spacing:1.976000pt;}
.ws74{word-spacing:1.978667pt;}
.wsee{word-spacing:2.016000pt;}
.ws1f{word-spacing:2.026667pt;}
.ws27{word-spacing:2.053333pt;}
.wsb8{word-spacing:2.077333pt;}
.ws25{word-spacing:2.128000pt;}
.ws120{word-spacing:2.130667pt;}
.wsb5{word-spacing:2.165333pt;}
.ws6{word-spacing:2.176000pt;}
.ws6a{word-spacing:2.178667pt;}
.wsaf{word-spacing:2.202667pt;}
.ws11b{word-spacing:2.221333pt;}
.ws8d{word-spacing:2.229333pt;}
.wsf5{word-spacing:2.277333pt;}
.ws49{word-spacing:2.280000pt;}
.wsc5{word-spacing:2.330667pt;}
.ws5b{word-spacing:2.352000pt;}
.ws34{word-spacing:2.381333pt;}
.ws112{word-spacing:2.402667pt;}
.wsb7{word-spacing:2.426667pt;}
.wsd2{word-spacing:2.432000pt;}
.ws2f{word-spacing:2.464000pt;}
.ws62{word-spacing:2.482667pt;}
.ws11a{word-spacing:2.493333pt;}
.ws75{word-spacing:2.501333pt;}
.ws20{word-spacing:2.533333pt;}
.wsd5{word-spacing:2.538667pt;}
.ws6c{word-spacing:2.584000pt;}
.ws108{word-spacing:2.592000pt;}
.wsa{word-spacing:2.634667pt;}
.ws2d{word-spacing:2.650667pt;}
.ws11e{word-spacing:2.674667pt;}
.ws8c{word-spacing:2.685333pt;}
.wsfc{word-spacing:2.688000pt;}
.ws7d{word-spacing:2.720000pt;}
.wse8{word-spacing:2.786667pt;}
.wsf3{word-spacing:2.800000pt;}
.ws1d{word-spacing:2.837333pt;}
.ws121{word-spacing:2.856000pt;}
.ws23{word-spacing:2.888000pt;}
.wsdf{word-spacing:2.912000pt;}
.wsab{word-spacing:2.938667pt;}
.wsc0{word-spacing:2.986667pt;}
.ws9{word-spacing:2.992000pt;}
.ws9d{word-spacing:3.024000pt;}
.ws4c{word-spacing:3.040000pt;}
.ws72{word-spacing:3.090667pt;}
.ws59{word-spacing:3.098667pt;}
.wsec{word-spacing:3.136000pt;}
.wsb{word-spacing:3.141333pt;}
.ws8{word-spacing:3.173333pt;}
.ws52{word-spacing:3.192000pt;}
.wsd7{word-spacing:3.210667pt;}
.wsff{word-spacing:3.285333pt;}
.ws38{word-spacing:3.293333pt;}
.ws45{word-spacing:3.322667pt;}
.ws98{word-spacing:3.344000pt;}
.wse6{word-spacing:3.394667pt;}
.wsc1{word-spacing:3.397333pt;}
.ws35{word-spacing:3.445333pt;}
.ws64{word-spacing:3.496000pt;}
.ws5f{word-spacing:3.509333pt;}
.ws115{word-spacing:3.536000pt;}
.ws55{word-spacing:3.546667pt;}
.ws10d{word-spacing:3.581333pt;}
.ws24{word-spacing:3.584000pt;}
.ws19{word-spacing:3.597333pt;}
.ws5e{word-spacing:3.621333pt;}
.ws119{word-spacing:3.626667pt;}
.ws7f{word-spacing:3.648000pt;}
.wsa7{word-spacing:3.658667pt;}
.ws114{word-spacing:3.672000pt;}
.wsb4{word-spacing:3.698667pt;}
.ws11f{word-spacing:3.717333pt;}
.wsed{word-spacing:3.733333pt;}
.ws36{word-spacing:3.749333pt;}
.wsb6{word-spacing:3.770667pt;}
.wsbc{word-spacing:3.800000pt;}
.ws30{word-spacing:3.808000pt;}
.ws84{word-spacing:3.845333pt;}
.ws51{word-spacing:3.850667pt;}
.ws11c{word-spacing:3.853333pt;}
.wsf4{word-spacing:3.882667pt;}
.ws8f{word-spacing:3.901333pt;}
.ws2e{word-spacing:3.920000pt;}
.ws107{word-spacing:3.936000pt;}
.ws10e{word-spacing:3.944000pt;}
.ws17{word-spacing:3.952000pt;}
.wsf9{word-spacing:3.957333pt;}
.ws3d{word-spacing:4.002667pt;}
.ws92{word-spacing:4.053333pt;}
.ws83{word-spacing:4.106667pt;}
.ws56{word-spacing:4.154667pt;}
.wse5{word-spacing:4.205333pt;}
.wsfa{word-spacing:4.218667pt;}
.wsb3{word-spacing:4.256000pt;}
.ws21{word-spacing:4.306667pt;}
.ws9b{word-spacing:4.330667pt;}
.ws4e{word-spacing:4.357333pt;}
.wsae{word-spacing:4.405333pt;}
.ws32{word-spacing:4.408000pt;}
.ws63{word-spacing:4.458667pt;}
.ws9a{word-spacing:4.480000pt;}
.wsaa{word-spacing:4.509333pt;}
.wsce{word-spacing:4.560000pt;}
.ws11d{word-spacing:4.578667pt;}
.ws40{word-spacing:4.610667pt;}
.ws86{word-spacing:4.661333pt;}
.wsfd{word-spacing:4.666667pt;}
.ws37{word-spacing:4.712000pt;}
.wsd8{word-spacing:4.741333pt;}
.ws7b{word-spacing:4.762667pt;}
.wsc6{word-spacing:4.813333pt;}
.wsd6{word-spacing:4.816000pt;}
.ws68{word-spacing:4.864000pt;}
.wsc9{word-spacing:4.890667pt;}
.ws10b{word-spacing:4.896000pt;}
.ws33{word-spacing:4.914667pt;}
.ws66{word-spacing:4.965333pt;}
.ws5{word-spacing:4.986667pt;}
.ws69{word-spacing:5.016000pt;}
.ws10{word-spacing:5.040000pt;}
.ws15{word-spacing:5.066667pt;}
.ws5c{word-spacing:5.077333pt;}
.wsa2{word-spacing:5.117333pt;}
.ws80{word-spacing:5.168000pt;}
.ws13{word-spacing:5.189333pt;}
.ws22{word-spacing:5.218667pt;}
.ws2a{word-spacing:5.226667pt;}
.ws4d{word-spacing:5.269333pt;}
.ws73{word-spacing:5.320000pt;}
.ws89{word-spacing:5.370667pt;}
.ws87{word-spacing:5.421333pt;}
.ws50{word-spacing:5.472000pt;}
.ws110{word-spacing:5.485333pt;}
.wsd4{word-spacing:5.522667pt;}
.ws113{word-spacing:5.530667pt;}
.wse2{word-spacing:5.573333pt;}
.ws4b{word-spacing:5.624000pt;}
.ws1c{word-spacing:5.674667pt;}
.ws6b{word-spacing:5.725333pt;}
.wsc8{word-spacing:5.824000pt;}
.ws53{word-spacing:5.826667pt;}
.ws18{word-spacing:5.877333pt;}
.wsa5{word-spacing:5.928000pt;}
.ws3a{word-spacing:5.978667pt;}
.wsdc{word-spacing:6.029333pt;}
.wsdb{word-spacing:6.130667pt;}
.wsbf{word-spacing:6.181333pt;}
.ws6f{word-spacing:6.232000pt;}
.wsef{word-spacing:6.282667pt;}
.ws4{word-spacing:6.301333pt;}
.wse1{word-spacing:6.333333pt;}
.ws99{word-spacing:6.384000pt;}
.ws8b{word-spacing:6.434667pt;}
.ws4f{word-spacing:6.485333pt;}
.wsb2{word-spacing:6.536000pt;}
.wsbe{word-spacing:6.586667pt;}
.wsf6{word-spacing:6.637333pt;}
.ws106{word-spacing:6.672000pt;}
.ws70{word-spacing:6.688000pt;}
.wsf0{word-spacing:6.738667pt;}
.wsf1{word-spacing:6.789333pt;}
.wsc4{word-spacing:6.840000pt;}
.wsea{word-spacing:6.890667pt;}
.wscc{word-spacing:6.941333pt;}
.wsbd{word-spacing:6.992000pt;}
.ws16{word-spacing:7.042667pt;}
.wscf{word-spacing:7.650667pt;}
.ws82{word-spacing:8.880000pt;}
.ws3{word-spacing:9.472000pt;}
.wsa1{word-spacing:11.840000pt;}
.ws31{word-spacing:12.640000pt;}
.ws85{word-spacing:15.040000pt;}
._1c{margin-left:-21.381333pt;}
._1d{margin-left:-18.392000pt;}
._1e{margin-left:-16.144000pt;}
._b{margin-left:-14.826667pt;}
._17{margin-left:-13.730667pt;}
._e{margin-left:-12.768000pt;}
._f{margin-left:-11.704000pt;}
._19{margin-left:-10.789333pt;}
._c{margin-left:-9.626667pt;}
._13{margin-left:-8.362667pt;}
._2{margin-left:-6.720000pt;}
._11{margin-left:-5.786667pt;}
._4{margin-left:-4.320000pt;}
._1{margin-left:-3.040000pt;}
._5{margin-left:-1.920000pt;}
._9{margin-left:-0.938667pt;}
._32{width:0.920267pt;}
._d{width:1.824000pt;}
._8{width:3.898667pt;}
._10{width:5.034667pt;}
._18{width:6.005333pt;}
._3{width:7.104000pt;}
._12{width:8.213333pt;}
._16{width:9.856000pt;}
._1b{width:11.248000pt;}
._a{width:12.426667pt;}
._15{width:14.000000pt;}
._23{width:46.320000pt;}
._1f{width:57.557333pt;}
._14{width:60.733333pt;}
._1a{width:63.133333pt;}
._27{width:80.928000pt;}
._25{width:102.288000pt;}
._2d{width:104.976000pt;}
._24{width:126.288000pt;}
._2f{width:131.616000pt;}
._2a{width:142.320000pt;}
._2b{width:147.648000pt;}
._2c{width:155.664000pt;}
._22{width:159.120000pt;}
._2e{width:176.976000pt;}
._21{width:180.240000pt;}
._26{width:185.040000pt;}
._31{width:187.680000pt;}
._28{width:198.336000pt;}
._20{width:203.712000pt;}
._29{width:214.320000pt;}
._30{width:227.664000pt;}
._0{width:460.800000pt;}
._7{width:696.242667pt;}
._6{width:732.000000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:32.933333pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:38.000000pt;}
.fs7{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:79.370133pt;}
.y1{bottom:89.322133pt;}
.yad{bottom:119.055067pt;}
.ycf{bottom:119.063467pt;}
.y26f{bottom:119.063867pt;}
.y1ed{bottom:119.067067pt;}
.ybb{bottom:119.067200pt;}
.y1aa{bottom:119.072400pt;}
.y1e7{bottom:119.072800pt;}
.y20{bottom:119.075067pt;}
.y9b{bottom:119.075867pt;}
.yf2{bottom:119.079867pt;}
.y113{bottom:119.084000pt;}
.y16b{bottom:119.085200pt;}
.y143{bottom:119.088667pt;}
.yaa{bottom:119.089200pt;}
.y220{bottom:119.092667pt;}
.y1f8{bottom:119.096267pt;}
.y161{bottom:119.099867pt;}
.y216{bottom:119.100800pt;}
.y11f{bottom:119.102000pt;}
.yeb{bottom:119.109200pt;}
.y1cd{bottom:119.113200pt;}
.y8a{bottom:119.117067pt;}
.y60{bottom:119.117600pt;}
.y1de{bottom:119.121600pt;}
.y4f{bottom:119.133600pt;}
.y254{bottom:119.137200pt;}
.y23f{bottom:119.178000pt;}
.y2a5{bottom:120.013733pt;}
.yce{bottom:130.431467pt;}
.y1ec{bottom:130.435067pt;}
.yba{bottom:130.435200pt;}
.y1f{bottom:130.443067pt;}
.yf1{bottom:130.447867pt;}
.y112{bottom:130.452000pt;}
.y142{bottom:130.456667pt;}
.y215{bottom:130.468800pt;}
.yea{bottom:130.477200pt;}
.y89{bottom:130.485067pt;}
.y1dd{bottom:130.489600pt;}
.y4e{bottom:130.501600pt;}
.y253{bottom:130.505200pt;}
.y23e{bottom:130.546000pt;}
.y2a4{bottom:133.681733pt;}
.y26e{bottom:136.115867pt;}
.y1a9{bottom:136.124400pt;}
.y1e6{bottom:136.124800pt;}
.y9a{bottom:136.127867pt;}
.y16a{bottom:136.137200pt;}
.ya9{bottom:136.141200pt;}
.y21f{bottom:136.144667pt;}
.y1f7{bottom:136.148267pt;}
.y160{bottom:136.151867pt;}
.y11e{bottom:136.154000pt;}
.y1cc{bottom:136.165200pt;}
.y5f{bottom:136.169600pt;}
.y1eb{bottom:141.803067pt;}
.yb9{bottom:141.803200pt;}
.y1e{bottom:141.811067pt;}
.y111{bottom:141.820000pt;}
.y141{bottom:141.824667pt;}
.y88{bottom:141.853067pt;}
.y1dc{bottom:141.857600pt;}
.y4d{bottom:141.869600pt;}
.y252{bottom:141.873200pt;}
.y23d{bottom:141.914000pt;}
.ycd{bottom:147.483467pt;}
.y99{bottom:147.495867pt;}
.yf0{bottom:147.499867pt;}
.ya8{bottom:147.509200pt;}
.y21e{bottom:147.512667pt;}
.y214{bottom:147.520800pt;}
.ye9{bottom:147.529200pt;}
.y5e{bottom:147.537600pt;}
.y26d{bottom:153.167867pt;}
.y1ea{bottom:153.171067pt;}
.yb8{bottom:153.171200pt;}
.y1a8{bottom:153.176400pt;}
.y1e5{bottom:153.176800pt;}
.y1d{bottom:153.179067pt;}
.y110{bottom:153.188000pt;}
.y169{bottom:153.189200pt;}
.y140{bottom:153.192667pt;}
.y1f6{bottom:153.200267pt;}
.y15f{bottom:153.203867pt;}
.y11d{bottom:153.206000pt;}
.y1cb{bottom:153.217200pt;}
.y1db{bottom:153.225600pt;}
.y4c{bottom:153.237600pt;}
.y251{bottom:153.241200pt;}
.y23c{bottom:153.282000pt;}
.y2a3{bottom:154.455733pt;}
.y98{bottom:158.863867pt;}
.yef{bottom:158.867867pt;}
.y213{bottom:158.888800pt;}
.ye8{bottom:158.897200pt;}
.y87{bottom:158.905067pt;}
.y1c{bottom:164.547067pt;}
.y168{bottom:164.557200pt;}
.ya7{bottom:164.561200pt;}
.y21d{bottom:164.564667pt;}
.y1f5{bottom:164.568267pt;}
.y15e{bottom:164.571867pt;}
.y1ca{bottom:164.585200pt;}
.y5d{bottom:164.589600pt;}
.y250{bottom:164.609200pt;}
.y2a2{bottom:168.123733pt;}
.y1a7{bottom:170.228400pt;}
.y1e4{bottom:170.228800pt;}
.y10f{bottom:170.240000pt;}
.y13f{bottom:170.244667pt;}
.y11c{bottom:170.258000pt;}
.y86{bottom:170.273067pt;}
.y1da{bottom:170.277600pt;}
.y4b{bottom:170.289600pt;}
.y23b{bottom:170.334000pt;}
.y1b{bottom:175.915067pt;}
.y97{bottom:175.915867pt;}
.yee{bottom:175.919867pt;}
.y15d{bottom:175.939867pt;}
.y212{bottom:175.940800pt;}
.ye7{bottom:175.949200pt;}
.y1c9{bottom:175.953200pt;}
.y5c{bottom:175.957600pt;}
.y24f{bottom:175.977200pt;}
.y1a6{bottom:181.596400pt;}
.y167{bottom:181.609200pt;}
.y13e{bottom:181.612667pt;}
.ya6{bottom:181.613200pt;}
.y21c{bottom:181.616667pt;}
.y1f4{bottom:181.620267pt;}
.y11b{bottom:181.626000pt;}
.y85{bottom:181.641067pt;}
.y4a{bottom:181.657600pt;}
.y2a1{bottom:181.791733pt;}
.y188{bottom:184.727733pt;}
.ycc{bottom:186.903733pt;}
.y1e3{bottom:187.280800pt;}
.y96{bottom:187.283867pt;}
.yed{bottom:187.287867pt;}
.y10e{bottom:187.292000pt;}
.y15c{bottom:187.307867pt;}
.y211{bottom:187.308800pt;}
.ye6{bottom:187.317200pt;}
.y1c8{bottom:187.321200pt;}
.y1d9{bottom:187.329600pt;}
.y24e{bottom:187.345200pt;}
.y23a{bottom:187.386000pt;}
.ya5{bottom:192.981200pt;}
.y21b{bottom:192.984667pt;}
.y1f3{bottom:192.988267pt;}
.y5b{bottom:193.009600pt;}
.y2a0{bottom:195.459733pt;}
.yac{bottom:196.435200pt;}
.y1e9{bottom:198.193067pt;}
.yec{bottom:198.655867pt;}
.y10d{bottom:198.660000pt;}
.y166{bottom:198.661200pt;}
.y13d{bottom:198.664667pt;}
.y15b{bottom:198.675867pt;}
.y210{bottom:198.676800pt;}
.y11a{bottom:198.678000pt;}
.y84{bottom:198.693067pt;}
.y49{bottom:198.709600pt;}
.y24d{bottom:198.713200pt;}
.y239{bottom:198.754000pt;}
.y187{bottom:200.371067pt;}
.y26c{bottom:201.182933pt;}
.ycb{bottom:202.547067pt;}
.y21a{bottom:204.352667pt;}
.y1f2{bottom:204.356267pt;}
.ye5{bottom:204.369200pt;}
.y1c7{bottom:204.373200pt;}
.y5a{bottom:204.377600pt;}
.y1d8{bottom:204.381600pt;}
.y29f{bottom:209.127733pt;}
.yab{bottom:209.225200pt;}
.y10c{bottom:210.028000pt;}
.ya4{bottom:210.033200pt;}
.y15a{bottom:210.043867pt;}
.y83{bottom:210.061067pt;}
.y48{bottom:210.077600pt;}
.y24c{bottom:210.081200pt;}
.y1e8{bottom:213.836400pt;}
.y165{bottom:215.713200pt;}
.y13c{bottom:215.716667pt;}
.y219{bottom:215.720667pt;}
.y1f1{bottom:215.724267pt;}
.y20f{bottom:215.728800pt;}
.y119{bottom:215.730000pt;}
.y59{bottom:215.745600pt;}
.y238{bottom:215.806000pt;}
.y186{bottom:216.014400pt;}
.y26b{bottom:216.110933pt;}
.yca{bottom:218.190400pt;}
.ya3{bottom:221.401200pt;}
.y159{bottom:221.411867pt;}
.ye4{bottom:221.421200pt;}
.y1c6{bottom:221.425200pt;}
.y82{bottom:221.429067pt;}
.y1d7{bottom:221.433600pt;}
.y29e{bottom:222.795733pt;}
.y1e2{bottom:223.830400pt;}
.y164{bottom:227.081200pt;}
.y1f0{bottom:227.092267pt;}
.y20e{bottom:227.096800pt;}
.y118{bottom:227.098000pt;}
.y47{bottom:227.129600pt;}
.y24b{bottom:227.133200pt;}
.y237{bottom:227.174000pt;}
.y95{bottom:229.479733pt;}
.y26a{bottom:231.038933pt;}
.y185{bottom:231.657733pt;}
.y13b{bottom:232.768667pt;}
.y218{bottom:232.772667pt;}
.y158{bottom:232.779867pt;}
.ye3{bottom:232.789200pt;}
.y58{bottom:232.797600pt;}
.y1d6{bottom:232.801600pt;}
.yc9{bottom:233.833733pt;}
.yb7{bottom:234.038533pt;}
.y29d{bottom:236.463733pt;}
.y1a{bottom:238.387600pt;}
.ya2{bottom:238.453200pt;}
.y1ef{bottom:238.460267pt;}
.y20d{bottom:238.464800pt;}
.y117{bottom:238.466000pt;}
.y1c5{bottom:238.477200pt;}
.y81{bottom:238.481067pt;}
.y46{bottom:238.497600pt;}
.y236{bottom:238.542000pt;}
.y1e1{bottom:239.473733pt;}
.y217{bottom:244.140667pt;}
.y157{bottom:244.147867pt;}
.y57{bottom:244.165600pt;}
.y1d5{bottom:244.169600pt;}
.y24a{bottom:244.185200pt;}
.y94{bottom:245.123067pt;}
.y269{bottom:245.966933pt;}
.y10b{bottom:247.292800pt;}
.y184{bottom:247.301067pt;}
.y1a5{bottom:247.514400pt;}
.yc8{bottom:249.477067pt;}
.y1ee{bottom:249.828267pt;}
.ye2{bottom:249.841200pt;}
.y1c4{bottom:249.845200pt;}
.y80{bottom:249.849067pt;}
.y45{bottom:249.865600pt;}
.y235{bottom:249.910000pt;}
.y29c{bottom:250.131733pt;}
.y19{bottom:254.030933pt;}
.yb6{bottom:255.349200pt;}
.y156{bottom:255.515867pt;}
.y20c{bottom:255.516800pt;}
.y116{bottom:255.518000pt;}
.y249{bottom:255.553200pt;}
.y93{bottom:260.766400pt;}
.y268{bottom:260.894933pt;}
.ye1{bottom:261.209200pt;}
.y1c3{bottom:261.213200pt;}
.y56{bottom:261.217600pt;}
.y1d4{bottom:261.221600pt;}
.y234{bottom:261.278000pt;}
.y1e0{bottom:262.932400pt;}
.y10a{bottom:262.936133pt;}
.y183{bottom:262.944400pt;}
.y1a4{bottom:263.157733pt;}
.y29b{bottom:263.799733pt;}
.yc7{bottom:265.120400pt;}
.y20b{bottom:266.884800pt;}
.y7f{bottom:266.901067pt;}
.y44{bottom:266.917600pt;}
.y18{bottom:269.674267pt;}
.y115{bottom:272.570000pt;}
.ye0{bottom:272.577200pt;}
.y1c2{bottom:272.581200pt;}
.y55{bottom:272.585600pt;}
.y1d3{bottom:272.589600pt;}
.y248{bottom:272.605200pt;}
.y233{bottom:272.646000pt;}
.y267{bottom:275.822933pt;}
.y92{bottom:276.409733pt;}
.ya1{bottom:276.516400pt;}
.y29a{bottom:277.467733pt;}
.y7e{bottom:278.269067pt;}
.y43{bottom:278.285600pt;}
.y163{bottom:278.575733pt;}
.y109{bottom:278.579467pt;}
.y182{bottom:278.587733pt;}
.y1a3{bottom:278.801067pt;}
.y114{bottom:283.938000pt;}
.ydf{bottom:283.945200pt;}
.y1c1{bottom:283.949200pt;}
.y54{bottom:283.953600pt;}
.y1d2{bottom:283.957600pt;}
.y247{bottom:283.973200pt;}
.y232{bottom:284.014000pt;}
.y17{bottom:285.317600pt;}
.y266{bottom:290.750933pt;}
.y299{bottom:291.135733pt;}
.y91{bottom:292.053067pt;}
.y155{bottom:294.219067pt;}
.y108{bottom:294.222800pt;}
.y181{bottom:294.231067pt;}
.y13a{bottom:294.258533pt;}
.y1a2{bottom:294.444400pt;}
.yde{bottom:295.313200pt;}
.y1c0{bottom:295.317200pt;}
.y7d{bottom:295.321067pt;}
.y53{bottom:295.321600pt;}
.y1d1{bottom:295.325600pt;}
.y42{bottom:295.337600pt;}
.y246{bottom:295.341200pt;}
.yc6{bottom:295.685067pt;}
.y16{bottom:300.960933pt;}
.y231{bottom:301.066000pt;}
.y298{bottom:304.803733pt;}
.y265{bottom:305.678933pt;}
.y1bf{bottom:306.685200pt;}
.y7c{bottom:306.689067pt;}
.y41{bottom:306.705600pt;}
.y90{bottom:307.696400pt;}
.y20a{bottom:307.921733pt;}
.y154{bottom:309.862400pt;}
.y107{bottom:309.866133pt;}
.y180{bottom:309.874400pt;}
.y139{bottom:309.901867pt;}
.y1a1{bottom:310.087733pt;}
.y52{bottom:312.373600pt;}
.y1d0{bottom:312.377600pt;}
.y245{bottom:312.393200pt;}
.y230{bottom:312.434000pt;}
.y7b{bottom:318.057067pt;}
.y264{bottom:320.606933pt;}
.y8f{bottom:323.339733pt;}
.y209{bottom:323.565067pt;}
.y51{bottom:323.741600pt;}
.y1cf{bottom:323.745600pt;}
.y40{bottom:323.757600pt;}
.y244{bottom:323.761200pt;}
.y22f{bottom:323.802000pt;}
.y153{bottom:325.505733pt;}
.y106{bottom:325.509467pt;}
.y17f{bottom:325.517733pt;}
.y138{bottom:325.545200pt;}
.y1a0{bottom:325.731067pt;}
.y15{bottom:331.527733pt;}
.y1ce{bottom:335.113600pt;}
.y3f{bottom:335.125600pt;}
.y243{bottom:335.129200pt;}
.y263{bottom:335.534933pt;}
.y8e{bottom:338.983067pt;}
.y208{bottom:339.208400pt;}
.y22e{bottom:340.854000pt;}
.y152{bottom:341.149067pt;}
.y105{bottom:341.152800pt;}
.y17e{bottom:341.161067pt;}
.yc5{bottom:341.171067pt;}
.y137{bottom:341.188533pt;}
.y19f{bottom:341.374400pt;}
.y3e{bottom:346.493600pt;}
.y1be{bottom:346.811067pt;}
.y297{bottom:349.751733pt;}
.y262{bottom:350.462933pt;}
.y242{bottom:352.181200pt;}
.y22d{bottom:352.222000pt;}
.y8d{bottom:354.626400pt;}
.ydd{bottom:354.652400pt;}
.y207{bottom:354.851733pt;}
.y7a{bottom:355.573733pt;}
.y151{bottom:356.792400pt;}
.y104{bottom:356.796133pt;}
.y17d{bottom:356.804400pt;}
.yc4{bottom:356.814400pt;}
.y19e{bottom:357.017733pt;}
.y3d{bottom:357.861600pt;}
.y1bd{bottom:362.454400pt;}
.y296{bottom:363.419733pt;}
.y241{bottom:363.549200pt;}
.y22c{bottom:363.590000pt;}
.y261{bottom:365.390933pt;}
.y3c{bottom:369.229600pt;}
.y8c{bottom:370.269733pt;}
.ydc{bottom:370.295733pt;}
.y206{bottom:370.495067pt;}
.y79{bottom:371.217067pt;}
.y136{bottom:371.756533pt;}
.y150{bottom:372.435733pt;}
.y103{bottom:372.439467pt;}
.y17c{bottom:372.447733pt;}
.yc3{bottom:372.457733pt;}
.y19d{bottom:372.661067pt;}
.y240{bottom:374.917200pt;}
.y22b{bottom:374.958000pt;}
.y1bc{bottom:378.097733pt;}
.y260{bottom:380.318933pt;}
.y295{bottom:384.193733pt;}
.y8b{bottom:385.913067pt;}
.ydb{bottom:385.939067pt;}
.y205{bottom:386.138400pt;}
.y22a{bottom:386.326000pt;}
.y78{bottom:386.860400pt;}
.y135{bottom:387.396533pt;}
.y14f{bottom:388.079067pt;}
.y102{bottom:388.082800pt;}
.y17b{bottom:388.091067pt;}
.yc2{bottom:388.101067pt;}
.y19c{bottom:388.304400pt;}
.y1bb{bottom:393.741067pt;}
.y25f{bottom:395.246933pt;}
.y229{bottom:397.694000pt;}
.y294{bottom:397.861733pt;}
.y50{bottom:401.556400pt;}
.yda{bottom:401.582400pt;}
.y204{bottom:401.781733pt;}
.y77{bottom:402.503733pt;}
.y14e{bottom:403.722400pt;}
.y101{bottom:403.726133pt;}
.y17a{bottom:403.734400pt;}
.yc1{bottom:403.744400pt;}
.y19b{bottom:403.947733pt;}
.y14{bottom:407.240000pt;}
.y1ba{bottom:409.384400pt;}
.y25e{bottom:410.174933pt;}
.y293{bottom:411.529733pt;}
.y228{bottom:414.746000pt;}
.y3b{bottom:417.199733pt;}
.yd9{bottom:417.225733pt;}
.y203{bottom:417.425067pt;}
.y76{bottom:418.147067pt;}
.y14d{bottom:419.365733pt;}
.y100{bottom:419.369467pt;}
.y179{bottom:419.377733pt;}
.yc0{bottom:419.387733pt;}
.y19a{bottom:419.591067pt;}
.y13{bottom:421.452000pt;}
.y1b9{bottom:425.027733pt;}
.y25d{bottom:425.102933pt;}
.y292{bottom:425.197733pt;}
.y227{bottom:426.114000pt;}
.y3a{bottom:432.843067pt;}
.y134{bottom:432.848667pt;}
.yd8{bottom:432.869067pt;}
.y202{bottom:433.068400pt;}
.y75{bottom:433.790400pt;}
.y14c{bottom:435.009067pt;}
.yff{bottom:435.012800pt;}
.y178{bottom:435.021067pt;}
.ybf{bottom:435.031067pt;}
.y199{bottom:435.234400pt;}
.y12{bottom:435.664000pt;}
.y226{bottom:437.482000pt;}
.y291{bottom:438.865733pt;}
.y25c{bottom:440.030933pt;}
.y1b8{bottom:440.671067pt;}
.y39{bottom:448.486400pt;}
.y133{bottom:448.492000pt;}
.yd7{bottom:448.512400pt;}
.y201{bottom:448.711733pt;}
.y225{bottom:448.850000pt;}
.y74{bottom:449.433733pt;}
.y11{bottom:449.876000pt;}
.y14b{bottom:450.652400pt;}
.yfe{bottom:450.656133pt;}
.y177{bottom:450.664400pt;}
.ybe{bottom:450.674400pt;}
.y198{bottom:450.877733pt;}
.y290{bottom:452.533733pt;}
.y25b{bottom:454.958933pt;}
.y1b7{bottom:456.314400pt;}
.y224{bottom:460.218000pt;}
.y10{bottom:464.088000pt;}
.y38{bottom:464.129733pt;}
.y132{bottom:464.135333pt;}
.yd6{bottom:464.155733pt;}
.y200{bottom:464.355067pt;}
.y73{bottom:465.077067pt;}
.y28f{bottom:466.201733pt;}
.y14a{bottom:466.295733pt;}
.yfd{bottom:466.299467pt;}
.y176{bottom:466.307733pt;}
.ybd{bottom:466.317733pt;}
.y197{bottom:466.521067pt;}
.y25a{bottom:469.886933pt;}
.y1b6{bottom:471.957733pt;}
.y223{bottom:477.270000pt;}
.yf{bottom:478.300000pt;}
.y37{bottom:479.773067pt;}
.y131{bottom:479.778667pt;}
.yd5{bottom:479.799067pt;}
.y28e{bottom:479.869733pt;}
.y1ff{bottom:479.998400pt;}
.y72{bottom:480.720400pt;}
.y149{bottom:481.939067pt;}
.yfc{bottom:481.942800pt;}
.y175{bottom:481.951067pt;}
.y196{bottom:482.164400pt;}
.y259{bottom:484.814933pt;}
.y1b5{bottom:487.601067pt;}
.y222{bottom:488.638000pt;}
.ye{bottom:492.512000pt;}
.y28d{bottom:493.537733pt;}
.y36{bottom:495.416400pt;}
.y130{bottom:495.422000pt;}
.yd4{bottom:495.442400pt;}
.y1fe{bottom:495.641733pt;}
.y71{bottom:496.363733pt;}
.y1df{bottom:496.860400pt;}
.ybc{bottom:496.884400pt;}
.y148{bottom:497.582400pt;}
.yfb{bottom:497.586133pt;}
.y174{bottom:497.594400pt;}
.y195{bottom:497.807733pt;}
.y258{bottom:499.742933pt;}
.y221{bottom:500.006000pt;}
.y1b4{bottom:503.244400pt;}
.yd{bottom:506.724000pt;}
.y28c{bottom:507.205733pt;}
.y35{bottom:511.059733pt;}
.y12f{bottom:511.065333pt;}
.yd3{bottom:511.085733pt;}
.y1fd{bottom:511.285067pt;}
.y70{bottom:512.007067pt;}
.y147{bottom:513.225733pt;}
.yfa{bottom:513.229467pt;}
.y173{bottom:513.237733pt;}
.y194{bottom:513.451067pt;}
.y257{bottom:514.670933pt;}
.ya0{bottom:516.607733pt;}
.y1b3{bottom:518.887733pt;}
.y28b{bottom:520.873733pt;}
.yc{bottom:520.936000pt;}
.y34{bottom:526.703067pt;}
.y12e{bottom:526.708667pt;}
.yd2{bottom:526.729067pt;}
.y1fc{bottom:526.928400pt;}
.y6f{bottom:527.650400pt;}
.y146{bottom:528.869067pt;}
.yf9{bottom:528.872800pt;}
.y172{bottom:528.881067pt;}
.y256{bottom:529.598933pt;}
.y9f{bottom:532.251067pt;}
.y1b2{bottom:534.531067pt;}
.y28a{bottom:534.541733pt;}
.yb{bottom:535.148000pt;}
.y33{bottom:542.346400pt;}
.y12d{bottom:542.352000pt;}
.yd1{bottom:542.372400pt;}
.y1fb{bottom:542.571733pt;}
.y6e{bottom:543.293733pt;}
.y193{bottom:544.015733pt;}
.y145{bottom:544.512400pt;}
.yf8{bottom:544.516133pt;}
.y171{bottom:544.524400pt;}
.y9e{bottom:547.894400pt;}
.ya{bottom:549.360000pt;}
.y1b1{bottom:550.174400pt;}
.y32{bottom:557.989733pt;}
.y12c{bottom:557.995333pt;}
.yd0{bottom:558.015733pt;}
.y1fa{bottom:558.215067pt;}
.y6d{bottom:558.937067pt;}
.y255{bottom:559.449600pt;}
.yb5{bottom:560.155733pt;}
.yf7{bottom:560.159467pt;}
.y170{bottom:560.167733pt;}
.y9d{bottom:563.537733pt;}
.y9{bottom:563.572000pt;}
.y1b0{bottom:565.817733pt;}
.y31{bottom:573.633067pt;}
.y12b{bottom:573.638667pt;}
.y1f9{bottom:573.858400pt;}
.y6c{bottom:574.580400pt;}
.yb4{bottom:575.799067pt;}
.yf6{bottom:575.802800pt;}
.y27a{bottom:577.642400pt;}
.y8{bottom:577.784000pt;}
.y289{bottom:579.489733pt;}
.y1af{bottom:581.461067pt;}
.y30{bottom:589.276400pt;}
.y12a{bottom:589.282000pt;}
.y192{bottom:589.501733pt;}
.y6b{bottom:590.223733pt;}
.y16f{bottom:590.732400pt;}
.yb3{bottom:591.442400pt;}
.yf5{bottom:591.446133pt;}
.y288{bottom:593.157733pt;}
.y9c{bottom:594.102400pt;}
.y1ae{bottom:597.104400pt;}
.y279{bottom:601.102400pt;}
.y2f{bottom:604.919733pt;}
.y129{bottom:604.925333pt;}
.y191{bottom:605.145067pt;}
.y6a{bottom:605.867067pt;}
.y162{bottom:606.363733pt;}
.yb2{bottom:607.085733pt;}
.yf4{bottom:607.089467pt;}
.y1ad{bottom:612.747733pt;}
.y287{bottom:613.931733pt;}
.y2e{bottom:620.563067pt;}
.y128{bottom:620.568667pt;}
.y190{bottom:620.788400pt;}
.y69{bottom:621.510400pt;}
.y144{bottom:622.007067pt;}
.yb1{bottom:622.729067pt;}
.yf3{bottom:622.732800pt;}
.y286{bottom:627.599733pt;}
.y1ac{bottom:628.391067pt;}
.y2d{bottom:636.206400pt;}
.y127{bottom:636.212000pt;}
.y16e{bottom:636.218400pt;}
.y18f{bottom:636.431733pt;}
.y68{bottom:637.153733pt;}
.yb0{bottom:638.372400pt;}
.y285{bottom:641.267733pt;}
.y1ab{bottom:644.034400pt;}
.y2c{bottom:651.849733pt;}
.y126{bottom:651.855333pt;}
.y16d{bottom:651.861733pt;}
.y18e{bottom:652.075067pt;}
.y67{bottom:652.797067pt;}
.yaf{bottom:654.015733pt;}
.y284{bottom:654.935733pt;}
.y278{bottom:658.053733pt;}
.y2b{bottom:667.493067pt;}
.y125{bottom:667.498667pt;}
.y16c{bottom:667.505067pt;}
.y18d{bottom:667.718400pt;}
.y66{bottom:668.440400pt;}
.y283{bottom:668.603733pt;}
.y277{bottom:672.981733pt;}
.y7{bottom:675.140667pt;}
.y282{bottom:682.271733pt;}
.y2a{bottom:683.136400pt;}
.y124{bottom:683.142000pt;}
.y18c{bottom:683.361733pt;}
.y65{bottom:684.083733pt;}
.yae{bottom:684.580400pt;}
.y276{bottom:687.909733pt;}
.y281{bottom:695.939733pt;}
.y29{bottom:698.779733pt;}
.y123{bottom:698.785333pt;}
.y18b{bottom:699.005067pt;}
.y64{bottom:699.727067pt;}
.y6{bottom:702.148667pt;}
.y275{bottom:702.837733pt;}
.y280{bottom:709.607733pt;}
.y28{bottom:714.423067pt;}
.y122{bottom:714.428667pt;}
.y18a{bottom:714.648400pt;}
.y63{bottom:715.370400pt;}
.y274{bottom:717.765733pt;}
.y27f{bottom:723.275733pt;}
.y27{bottom:730.066400pt;}
.y121{bottom:730.072000pt;}
.y189{bottom:730.291733pt;}
.y273{bottom:732.693733pt;}
.y27e{bottom:736.943733pt;}
.y5{bottom:737.613733pt;}
.y26{bottom:745.709733pt;}
.y120{bottom:745.715333pt;}
.y62{bottom:745.935067pt;}
.y272{bottom:747.621733pt;}
.y27d{bottom:750.611733pt;}
.y4{bottom:756.093733pt;}
.y25{bottom:761.353067pt;}
.y271{bottom:762.549733pt;}
.y27c{bottom:764.279733pt;}
.y3{bottom:774.573733pt;}
.y61{bottom:776.501733pt;}
.y24{bottom:776.996400pt;}
.y270{bottom:777.477733pt;}
.y27b{bottom:777.947733pt;}
.y23{bottom:812.316400pt;}
.y22{bottom:820.313733pt;}
.y21{bottom:832.316400pt;}
.h2{height:29.760000pt;}
.h9{height:34.720000pt;}
.hb{height:37.200000pt;}
.h5{height:39.680000pt;}
.h6{height:42.160000pt;}
.hf{height:44.640000pt;}
.ha{height:46.512000pt;}
.h8{height:47.120000pt;}
.he{height:47.168000pt;}
.hc{height:47.224000pt;}
.hd{height:47.304000pt;}
.h7{height:48.960000pt;}
.h3{height:49.600000pt;}
.h4{height:58.752000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:94.488133pt;}
.x1{left:105.826800pt;}
.xb{left:113.386800pt;}
.x10{left:116.061467pt;}
.xf{left:123.413067pt;}
.x5{left:124.724400pt;}
.x13{left:126.612800pt;}
.x14{left:128.504000pt;}
.x12{left:132.284533pt;}
.x9{left:138.365867pt;}
.x4{left:139.933200pt;}
.x11{left:143.624133pt;}
.x17{left:156.850400pt;}
.x15{left:170.076133pt;}
.xe{left:173.858267pt;}
.x16{left:181.414800pt;}
.x6{left:218.694933pt;}
.xc{left:230.033600pt;}
.x7{left:285.382933pt;}
.x3{left:290.144667pt;}
.xd{left:296.721600pt;}
.x2{left:427.723333pt;}
.x8{left:431.843200pt;}
}




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