
    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_376d225b74d70c9a8b44e585.woff')format("woff");}.ff1{font-family:ff1;line-height:1.437000;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_0e79c494d36f7054c324e841.woff')format("woff");}.ff2{font-family:ff2;line-height:1.437000;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_48a738807811954194814519.woff')format("woff");}.ff3{font-family:ff3;line-height:1.437000;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_a1cfc94b8558ea0a967f2b3a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_c47dcb98b57e847704aa3cad.woff')format("woff");}.ff5{font-family:ff5;line-height:1.437000;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);}
.v4{vertical-align:-67.117296px;}
.v6{vertical-align:-11.832384px;}
.v2{vertical-align:-1.314720px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.314720px;}
.v5{vertical-align:24.179136px;}
.v3{vertical-align:29.838000px;}
.ls61{letter-spacing:-3.628800px;}
.ls48{letter-spacing:-2.177280px;}
.ls28{letter-spacing:-1.753920px;}
.ls37{letter-spacing:-1.693440px;}
.ls5f{letter-spacing:-1.512000px;}
.ls41{letter-spacing:-1.451520px;}
.ls39{letter-spacing:-1.391040px;}
.ls76{letter-spacing:-1.368000px;}
.ls31{letter-spacing:-1.270080px;}
.ls6e{letter-spacing:-1.258560px;}
.ls49{letter-spacing:-1.209600px;}
.ls6f{letter-spacing:-1.203840px;}
.ls74{letter-spacing:-1.094400px;}
.ls5e{letter-spacing:-1.088640px;}
.ls60{letter-spacing:-1.028160px;}
.ls10{letter-spacing:-0.967680px;}
.lse{letter-spacing:-0.907200px;}
.ls66{letter-spacing:-0.875520px;}
.ls13{letter-spacing:-0.846720px;}
.ls6b{letter-spacing:-0.820800px;}
.ls6{letter-spacing:-0.794880px;}
.lsb{letter-spacing:-0.786240px;}
.ls2e{letter-spacing:-0.766080px;}
.ls1a{letter-spacing:-0.760320px;}
.lsc{letter-spacing:-0.725760px;}
.ls1b{letter-spacing:-0.712800px;}
.ls2a{letter-spacing:-0.665280px;}
.ls79{letter-spacing:-0.656640px;}
.ls7a{letter-spacing:-0.601920px;}
.ls69{letter-spacing:-0.547200px;}
.ls2c{letter-spacing:-0.544320px;}
.ls73{letter-spacing:-0.492480px;}
.lsf{letter-spacing:-0.483840px;}
.ls47{letter-spacing:-0.423360px;}
.ls6c{letter-spacing:-0.383040px;}
.ls59{letter-spacing:-0.380160px;}
.ls11{letter-spacing:-0.362880px;}
.ls18{letter-spacing:-0.302400px;}
.ls78{letter-spacing:-0.273600px;}
.lsa{letter-spacing:-0.241920px;}
.ls19{letter-spacing:-0.218880px;}
.ls3{letter-spacing:-0.190080px;}
.ls9{letter-spacing:-0.181440px;}
.ls15{letter-spacing:-0.164160px;}
.ls5c{letter-spacing:-0.142560px;}
.ls16{letter-spacing:-0.120960px;}
.ls4{letter-spacing:-0.119520px;}
.ls68{letter-spacing:-0.109440px;}
.ls55{letter-spacing:-0.095040px;}
.lsd{letter-spacing:-0.060480px;}
.ls67{letter-spacing:-0.054720px;}
.ls50{letter-spacing:-0.047520px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.018144px;}
.ls4f{letter-spacing:0.047520px;}
.ls71{letter-spacing:0.054720px;}
.ls3d{letter-spacing:0.060480px;}
.ls7{letter-spacing:0.066240px;}
.ls54{letter-spacing:0.142560px;}
.ls30{letter-spacing:0.181440px;}
.ls8{letter-spacing:0.198720px;}
.ls75{letter-spacing:0.218880px;}
.ls58{letter-spacing:0.237600px;}
.ls0{letter-spacing:0.239040px;}
.ls57{letter-spacing:0.241920px;}
.ls72{letter-spacing:0.273600px;}
.ls14{letter-spacing:0.302400px;}
.ls5b{letter-spacing:0.332640px;}
.ls1{letter-spacing:0.358560px;}
.ls34{letter-spacing:0.362880px;}
.ls5a{letter-spacing:0.380160px;}
.ls2d{letter-spacing:0.423360px;}
.ls24{letter-spacing:0.483840px;}
.ls65{letter-spacing:0.492480px;}
.ls29{letter-spacing:0.544320px;}
.ls45{letter-spacing:0.604800px;}
.ls4e{letter-spacing:0.617760px;}
.ls43{letter-spacing:0.665280px;}
.ls4d{letter-spacing:0.712800px;}
.ls5{letter-spacing:0.717120px;}
.ls42{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.725760px;}
.ls20{letter-spacing:0.786240px;}
.ls53{letter-spacing:0.855360px;}
.ls2f{letter-spacing:0.901152px;}
.ls51{letter-spacing:0.902880px;}
.ls52{letter-spacing:0.940896px;}
.ls26{letter-spacing:0.967680px;}
.ls32{letter-spacing:1.149120px;}
.ls17{letter-spacing:1.209600px;}
.ls64{letter-spacing:1.258560px;}
.ls33{letter-spacing:1.270080px;}
.ls56{letter-spacing:1.273536px;}
.ls6a{letter-spacing:1.313280px;}
.ls3c{letter-spacing:1.330560px;}
.ls3e{letter-spacing:1.354752px;}
.ls70{letter-spacing:1.368000px;}
.ls23{letter-spacing:1.391040px;}
.ls77{letter-spacing:1.422720px;}
.ls3f{letter-spacing:1.439424px;}
.ls25{letter-spacing:1.451520px;}
.ls1d{letter-spacing:1.457568px;}
.ls40{letter-spacing:1.512000px;}
.ls2b{letter-spacing:1.572480px;}
.ls27{letter-spacing:1.693440px;}
.ls36{letter-spacing:2.177280px;}
.ls3a{letter-spacing:2.237760px;}
.ls21{letter-spacing:2.358720px;}
.ls1e{letter-spacing:2.540160px;}
.ls38{letter-spacing:2.600640px;}
.ls5d{letter-spacing:2.721600px;}
.ls62{letter-spacing:2.736000px;}
.ls6d{letter-spacing:2.790720px;}
.ls1f{letter-spacing:2.842560px;}
.ls4c{letter-spacing:2.870208px;}
.ls63{letter-spacing:2.900160px;}
.ls22{letter-spacing:2.903040px;}
.ls3b{letter-spacing:2.963520px;}
.ls44{letter-spacing:3.507840px;}
.ls35{letter-spacing:3.628800px;}
.ls4b{letter-spacing:4.173120px;}
.ls4a{letter-spacing:4.777920px;}
.ls46{letter-spacing:5.019840px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsda{word-spacing:-16.470720px;}
.ws0{word-spacing:-15.120000px;}
.ws27{word-spacing:-14.999040px;}
.wsd8{word-spacing:-14.636160px;}
.ws69{word-spacing:-14.152320px;}
.wsd9{word-spacing:-13.680000px;}
.ws116{word-spacing:-12.859200px;}
.wsdb{word-spacing:-12.476160px;}
.wsb4{word-spacing:-12.022560px;}
.wsa6{word-spacing:-11.880000px;}
.wsa7{word-spacing:-11.167200px;}
.ws89{word-spacing:-9.000000px;}
.wsd6{word-spacing:-6.713280px;}
.ws9a{word-spacing:-6.531840px;}
.ws67{word-spacing:-6.410880px;}
.wsbd{word-spacing:-6.289920px;}
.ws2d{word-spacing:-6.229440px;}
.ws4e{word-spacing:-5.987520px;}
.ws76{word-spacing:-5.382720px;}
.ws77{word-spacing:-5.201280px;}
.ws70{word-spacing:-5.019840px;}
.ws104{word-spacing:-4.979520px;}
.ws82{word-spacing:-4.959360px;}
.wsf7{word-spacing:-4.924800px;}
.ws35{word-spacing:-4.898880px;}
.ws14{word-spacing:-4.838400px;}
.ws13{word-spacing:-4.777920px;}
.ws72{word-spacing:-4.717440px;}
.ws50{word-spacing:-4.596480px;}
.ws108{word-spacing:-4.541760px;}
.ws15{word-spacing:-4.536000px;}
.wscc{word-spacing:-4.294080px;}
.ws5a{word-spacing:-4.112640px;}
.ws86{word-spacing:-3.689280px;}
.ws73{word-spacing:-3.628800px;}
.ws3b{word-spacing:-3.568320px;}
.ws105{word-spacing:-3.556800px;}
.ws91{word-spacing:-3.507840px;}
.wse7{word-spacing:-3.502080px;}
.ws4b{word-spacing:-3.447360px;}
.wsfb{word-spacing:-3.392640px;}
.ws6b{word-spacing:-3.386880px;}
.ws114{word-spacing:-3.337920px;}
.ws46{word-spacing:-3.326400px;}
.wsbb{word-spacing:-3.231360px;}
.wsc7{word-spacing:-3.088800px;}
.ws64{word-spacing:-3.084480px;}
.ws10{word-spacing:-2.903040px;}
.ws119{word-spacing:-2.845440px;}
.ws41{word-spacing:-2.721600px;}
.wsb6{word-spacing:-2.661120px;}
.ws96{word-spacing:-2.116800px;}
.wse5{word-spacing:-2.079360px;}
.ws58{word-spacing:-2.056320px;}
.ws112{word-spacing:-2.024640px;}
.ws7d{word-spacing:-1.995840px;}
.ws10d{word-spacing:-1.969920px;}
.ws3e{word-spacing:-1.935360px;}
.wsfd{word-spacing:-1.915200px;}
.ws54{word-spacing:-1.874880px;}
.ws1a{word-spacing:-1.814400px;}
.wsbc{word-spacing:-1.805760px;}
.ws5{word-spacing:-1.792800px;}
.wsb7{word-spacing:-1.758240px;}
.wsd0{word-spacing:-1.451520px;}
.ws90{word-spacing:-1.330560px;}
.ws3{word-spacing:-1.314720px;}
.wseb{word-spacing:-1.313280px;}
.ws7c{word-spacing:-1.270080px;}
.ws87{word-spacing:-1.209600px;}
.wsc3{word-spacing:-1.092960px;}
.wsd7{word-spacing:-1.088640px;}
.ws1d{word-spacing:-1.028160px;}
.wsae{word-spacing:-0.997920px;}
.ws4{word-spacing:-0.956160px;}
.ws10a{word-spacing:-0.930240px;}
.wsb{word-spacing:-0.861120px;}
.ws9b{word-spacing:-0.786240px;}
.wsf0{word-spacing:-0.766080px;}
.ws4c{word-spacing:-0.725760px;}
.wsc6{word-spacing:-0.712800px;}
.wsfe{word-spacing:-0.711360px;}
.ws8f{word-spacing:-0.665280px;}
.wsdf{word-spacing:-0.656640px;}
.ws19{word-spacing:-0.604800px;}
.wsea{word-spacing:-0.601920px;}
.ws1e{word-spacing:-0.547200px;}
.ws3d{word-spacing:-0.544320px;}
.ws23{word-spacing:-0.492480px;}
.wse{word-spacing:-0.483840px;}
.wsb2{word-spacing:-0.427680px;}
.ws59{word-spacing:-0.423360px;}
.ws1{word-spacing:-0.380160px;}
.wscb{word-spacing:-0.362880px;}
.wsb3{word-spacing:-0.332640px;}
.wsa2{word-spacing:-0.302400px;}
.wsba{word-spacing:-0.285120px;}
.ws99{word-spacing:-0.241920px;}
.ws2{word-spacing:-0.190080px;}
.ws111{word-spacing:-0.164160px;}
.ws11a{word-spacing:-0.054720px;}
.ws6{word-spacing:0.000000px;}
.ws68{word-spacing:0.054720px;}
.ws63{word-spacing:0.060480px;}
.ws8{word-spacing:0.066240px;}
.ws79{word-spacing:0.120960px;}
.wsdd{word-spacing:0.164160px;}
.ws60{word-spacing:0.181440px;}
.wsb0{word-spacing:0.190080px;}
.ws66{word-spacing:0.302400px;}
.ws25{word-spacing:0.332640px;}
.ws7{word-spacing:0.358560px;}
.ws24{word-spacing:0.380160px;}
.ws26{word-spacing:0.383040px;}
.ws118{word-spacing:0.492480px;}
.wsa{word-spacing:0.529920px;}
.ws71{word-spacing:0.544320px;}
.ws10b{word-spacing:0.656640px;}
.ws9{word-spacing:0.662400px;}
.ws85{word-spacing:0.665280px;}
.wsf1{word-spacing:0.711360px;}
.ws75{word-spacing:0.725760px;}
.ws44{word-spacing:0.786240px;}
.ws11c{word-spacing:0.820800px;}
.ws3a{word-spacing:0.846720px;}
.wsef{word-spacing:0.875520px;}
.ws20{word-spacing:0.907200px;}
.wsd{word-spacing:0.967680px;}
.ws7b{word-spacing:1.028160px;}
.wsaf{word-spacing:1.045440px;}
.wsc9{word-spacing:1.092960px;}
.wsab{word-spacing:1.140480px;}
.ws74{word-spacing:1.209600px;}
.ws8b{word-spacing:1.296000px;}
.ws11b{word-spacing:1.313280px;}
.wsf9{word-spacing:1.532160px;}
.ws7a{word-spacing:1.632960px;}
.wsfa{word-spacing:1.641600px;}
.ws6d{word-spacing:1.693440px;}
.wsd5{word-spacing:1.753920px;}
.wsaa{word-spacing:1.758240px;}
.wsc5{word-spacing:1.853280px;}
.wsbf{word-spacing:2.116800px;}
.ws107{word-spacing:2.134080px;}
.ws78{word-spacing:2.177280px;}
.ws10c{word-spacing:2.188800px;}
.ws3c{word-spacing:2.237760px;}
.wsec{word-spacing:2.243520px;}
.ws5b{word-spacing:2.298240px;}
.ws47{word-spacing:2.358720px;}
.wsb8{word-spacing:2.376000px;}
.ws29{word-spacing:2.419200px;}
.ws95{word-spacing:2.479680px;}
.wsee{word-spacing:2.517120px;}
.wsb9{word-spacing:2.566080px;}
.wse1{word-spacing:2.681280px;}
.wsed{word-spacing:2.954880px;}
.ws43{word-spacing:2.963520px;}
.ws8e{word-spacing:3.084480px;}
.ws110{word-spacing:3.119040px;}
.wsad{word-spacing:3.231360px;}
.wsce{word-spacing:3.265920px;}
.wsff{word-spacing:3.666240px;}
.ws11{word-spacing:3.689280px;}
.wse0{word-spacing:3.720960px;}
.ws55{word-spacing:3.749760px;}
.wsc{word-spacing:3.810240px;}
.ws2c{word-spacing:3.870720px;}
.wsb1{word-spacing:3.944160px;}
.wsac{word-spacing:3.991680px;}
.ws9e{word-spacing:4.052160px;}
.wsf8{word-spacing:4.158720px;}
.ws3f{word-spacing:4.475520px;}
.ws81{word-spacing:4.536000px;}
.ws10f{word-spacing:4.870080px;}
.ws93{word-spacing:5.019840px;}
.ws92{word-spacing:5.080320px;}
.wse6{word-spacing:5.088960px;}
.ws37{word-spacing:5.140800px;}
.ws106{word-spacing:5.143680px;}
.wsf2{word-spacing:5.198400px;}
.wsa1{word-spacing:5.201280px;}
.ws48{word-spacing:5.261760px;}
.wsd4{word-spacing:5.322240px;}
.wsc8{word-spacing:5.464800px;}
.ws5e{word-spacing:5.685120px;}
.wsf{word-spacing:5.806080px;}
.ws12{word-spacing:5.927040px;}
.ws94{word-spacing:5.987520px;}
.ws109{word-spacing:6.128640px;}
.wsde{word-spacing:6.511680px;}
.ws4d{word-spacing:6.531840px;}
.wsf6{word-spacing:6.566400px;}
.ws5d{word-spacing:6.592320px;}
.ws5f{word-spacing:6.652800px;}
.ws36{word-spacing:6.713280px;}
.wsa0{word-spacing:6.773760px;}
.wscf{word-spacing:6.834240px;}
.wsd3{word-spacing:6.894720px;}
.wsf5{word-spacing:7.277760px;}
.ws1c{word-spacing:7.318080px;}
.wsa4{word-spacing:7.680960px;}
.ws2a{word-spacing:7.922880px;}
.ws34{word-spacing:7.983360px;}
.ws100{word-spacing:7.989120px;}
.wsa8{word-spacing:8.043840px;}
.ws65{word-spacing:8.104320px;}
.ws2b{word-spacing:8.164800px;}
.ws21{word-spacing:8.225280px;}
.ws7f{word-spacing:8.588160px;}
.wsc2{word-spacing:8.830080px;}
.wsd2{word-spacing:8.890560px;}
.ws4f{word-spacing:9.434880px;}
.ws117{word-spacing:9.466560px;}
.wsf3{word-spacing:9.521280px;}
.ws18{word-spacing:9.555840px;}
.ws61{word-spacing:9.616320px;}
.wsd1{word-spacing:9.676800px;}
.ws9f{word-spacing:10.100160px;}
.ws97{word-spacing:10.160640px;}
.ws9c{word-spacing:10.221120px;}
.wsf4{word-spacing:10.615680px;}
.wse3{word-spacing:10.779840px;}
.ws2f{word-spacing:10.825920px;}
.ws10e{word-spacing:10.834560px;}
.ws39{word-spacing:10.886400px;}
.wse2{word-spacing:10.944000px;}
.ws6c{word-spacing:10.946880px;}
.wse9{word-spacing:10.998720px;}
.ws1f{word-spacing:11.007360px;}
.ws83{word-spacing:11.067840px;}
.ws28{word-spacing:11.128320px;}
.ws6f{word-spacing:11.309760px;}
.wsb5{word-spacing:11.612160px;}
.ws5c{word-spacing:11.672640px;}
.ws84{word-spacing:11.733120px;}
.ws113{word-spacing:11.764800px;}
.ws16{word-spacing:11.793600px;}
.wscd{word-spacing:11.975040px;}
.ws62{word-spacing:12.096000px;}
.ws102{word-spacing:12.202560px;}
.ws32{word-spacing:12.216960px;}
.ws40{word-spacing:12.277440px;}
.wse8{word-spacing:12.312000px;}
.ws8d{word-spacing:12.337920px;}
.ws17{word-spacing:12.398400px;}
.wse4{word-spacing:12.421440px;}
.ws38{word-spacing:12.458880px;}
.ws57{word-spacing:12.519360px;}
.wsbe{word-spacing:12.579840px;}
.ws31{word-spacing:12.761280px;}
.ws30{word-spacing:12.882240px;}
.ws1b{word-spacing:12.942720px;}
.ws115{word-spacing:13.132800px;}
.ws6e{word-spacing:13.184640px;}
.wsa3{word-spacing:13.245120px;}
.wsc0{word-spacing:13.366080px;}
.ws103{word-spacing:13.406400px;}
.ws52{word-spacing:13.426560px;}
.wsca{word-spacing:13.608000px;}
.ws42{word-spacing:13.668480px;}
.ws2e{word-spacing:13.728960px;}
.ws101{word-spacing:13.734720px;}
.ws22{word-spacing:13.789440px;}
.wsfc{word-spacing:13.844160px;}
.ws4a{word-spacing:13.849920px;}
.wsa5{word-spacing:13.910400px;}
.ws56{word-spacing:13.970880px;}
.ws9d{word-spacing:14.394240px;}
.wsdc{word-spacing:14.454720px;}
.ws49{word-spacing:14.575680px;}
.ws45{word-spacing:14.636160px;}
.ws88{word-spacing:14.696640px;}
.ws98{word-spacing:14.817600px;}
.wsc1{word-spacing:14.878080px;}
.ws8a{word-spacing:15.059520px;}
.ws7e{word-spacing:15.120000px;}
.ws51{word-spacing:15.180480px;}
.ws8c{word-spacing:15.240960px;}
.ws80{word-spacing:15.301440px;}
.ws33{word-spacing:15.422400px;}
.ws53{word-spacing:15.603840px;}
.ws6a{word-spacing:15.906240px;}
.wsa9{word-spacing:16.087680px;}
.wsc4{word-spacing:23.902560px;}
._2{margin-left:-1123.467840px;}
._10{margin-left:-24.531840px;}
._4{margin-left:-13.793760px;}
._f{margin-left:-10.013760px;}
._b{margin-left:-8.395200px;}
._8{margin-left:-7.344000px;}
._9{margin-left:-6.207840px;}
._20{margin-left:-5.185440px;}
._6{margin-left:-4.152960px;}
._5{margin-left:-2.734560px;}
._0{margin-left:-1.378080px;}
._3{width:1.092960px;}
._1{width:2.138400px;}
._21{width:4.151520px;}
._e{width:21.578400px;}
._d{width:23.950080px;}
._7{width:25.794720px;}
._a{width:27.544320px;}
._11{width:120.178080px;}
._12{width:193.263840px;}
._17{width:213.982560px;}
._1f{width:216.216000px;}
._18{width:325.844640px;}
._13{width:351.220320px;}
._19{width:356.133888px;}
._14{width:382.331664px;}
._1a{width:383.676480px;}
._16{width:384.721920px;}
._1c{width:388.984464px;}
._1e{width:405.269568px;}
._15{width:407.707344px;}
._1d{width:413.599824px;}
._1b{width:432.451008px;}
._c{width:2246.300640px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:36.000000px;}
.fs0{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:88.804080px;}
.y5e{bottom:88.810128px;}
.yec{bottom:88.814664px;}
.y91{bottom:88.826760px;}
.y15e{bottom:96.715440px;}
.y2b{bottom:96.939324px;}
.y159{bottom:98.154864px;}
.y171{bottom:99.596520px;}
.y17d{bottom:99.599544px;}
.y14c{bottom:101.034648px;}
.y225{bottom:101.661084px;}
.y261{bottom:101.681604px;}
.y118{bottom:101.764728px;}
.y1bf{bottom:101.772504px;}
.y148{bottom:101.773800px;}
.y1f1{bottom:101.790648px;}
.ybc{bottom:108.243864px;}
.y5d{bottom:108.249912px;}
.yeb{bottom:108.254448px;}
.y90{bottom:108.266544px;}
.y2a{bottom:112.059000px;}
.y15d{bottom:116.155224px;}
.y158{bottom:117.594648px;}
.y224{bottom:118.220724px;}
.y260{bottom:118.241244px;}
.y170{bottom:119.036304px;}
.y17c{bottom:119.039328px;}
.y14b{bottom:120.474432px;}
.y117{bottom:121.204512px;}
.y147{bottom:121.213584px;}
.y1be{bottom:121.572144px;}
.y1f0{bottom:121.590288px;}
.ybb{bottom:127.683648px;}
.yea{bottom:127.694232px;}
.y5c{bottom:128.049552px;}
.y8f{bottom:128.066184px;}
.y29{bottom:134.160000px;}
.y223{bottom:134.420580px;}
.y25f{bottom:134.800884px;}
.y15c{bottom:135.595008px;}
.y157{bottom:137.034432px;}
.y16f{bottom:138.476088px;}
.y17b{bottom:138.479112px;}
.y14a{bottom:139.914216px;}
.y116{bottom:140.638248px;}
.y146{bottom:140.653368px;}
.y1bd{bottom:141.371784px;}
.y1ef{bottom:141.389928px;}
.yba{bottom:147.123432px;}
.ye9{bottom:147.134016px;}
.y5b{bottom:147.849192px;}
.y8e{bottom:147.865824px;}
.y222{bottom:150.980220px;}
.y25e{bottom:151.360524px;}
.y15b{bottom:155.034792px;}
.y16e{bottom:157.915872px;}
.y17a{bottom:157.918896px;}
.y149{bottom:159.354000px;}
.y115{bottom:160.078032px;}
.y145{bottom:160.093152px;}
.y1bc{bottom:161.171424px;}
.y1ee{bottom:161.189568px;}
.yb9{bottom:166.923072px;}
.ye8{bottom:166.933656px;}
.y25d{bottom:167.560380px;}
.y5a{bottom:167.648832px;}
.y8d{bottom:167.665464px;}
.y221{bottom:169.340148px;}
.y15a{bottom:174.474576px;}
.y156{bottom:175.914000px;}
.y16d{bottom:177.355656px;}
.y179{bottom:177.358680px;}
.y24{bottom:178.282440px;}
.y114{bottom:179.517816px;}
.y144{bottom:179.892792px;}
.y1bb{bottom:181.330920px;}
.y1ed{bottom:181.349064px;}
.y28{bottom:181.882512px;}
.y25c{bottom:184.120020px;}
.y220{bottom:185.899788px;}
.yb8{bottom:186.362856px;}
.ye7{bottom:186.373440px;}
.y59{bottom:187.448472px;}
.y8c{bottom:187.465104px;}
.y16c{bottom:196.795440px;}
.y178{bottom:196.798464px;}
.y23{bottom:197.722224px;}
.y143{bottom:199.332576px;}
.y25b{bottom:200.679660px;}
.y1ba{bottom:201.130560px;}
.y1ec{bottom:201.148704px;}
.y27{bottom:201.322296px;}
.y21f{bottom:202.459428px;}
.yb7{bottom:205.802640px;}
.ye6{bottom:205.813224px;}
.y58{bottom:206.888256px;}
.y8b{bottom:206.904888px;}
.y113{bottom:216.238248px;}
.y16b{bottom:216.595080px;}
.y177{bottom:216.598104px;}
.y25a{bottom:217.239300px;}
.y165{bottom:217.805340px;}
.y142{bottom:218.772360px;}
.y21e{bottom:219.019068px;}
.y26{bottom:220.762080px;}
.y1b9{bottom:220.930200px;}
.y1eb{bottom:220.948344px;}
.y155{bottom:223.926348px;}
.yb6{bottom:225.242424px;}
.ye5{bottom:225.253008px;}
.y57{bottom:226.687896px;}
.y8a{bottom:226.704528px;}
.y259{bottom:233.798940px;}
.y164{bottom:234.364872px;}
.y21d{bottom:235.578708px;}
.y16a{bottom:236.034864px;}
.y176{bottom:236.037888px;}
.y141{bottom:238.212144px;}
.y25{bottom:240.201864px;}
.y154{bottom:240.485880px;}
.y1b8{bottom:240.729840px;}
.y1ea{bottom:240.747984px;}
.y22{bottom:241.794000px;}
.yb5{bottom:244.682208px;}
.ye4{bottom:244.692792px;}
.y56{bottom:246.487536px;}
.y89{bottom:246.504168px;}
.y258{bottom:250.358580px;}
.y163{bottom:250.924404px;}
.y21c{bottom:253.578852px;}
.y169{bottom:255.474648px;}
.y175{bottom:255.477672px;}
.y153{bottom:257.045412px;}
.y140{bottom:257.651928px;}
.y1b7{bottom:260.529480px;}
.y1e9{bottom:260.547624px;}
.yb4{bottom:264.121992px;}
.y55{bottom:265.927320px;}
.y112{bottom:266.277888px;}
.y88{bottom:266.303808px;}
.y257{bottom:266.918220px;}
.y162{bottom:267.483936px;}
.y21b{bottom:270.138492px;}
.y152{bottom:273.604944px;}
.y168{bottom:274.914432px;}
.y174{bottom:274.917456px;}
.y13f{bottom:277.091712px;}
.ye3{bottom:279.612432px;}
.y1b6{bottom:280.329120px;}
.y1e8{bottom:280.347264px;}
.y256{bottom:283.477860px;}
.y161{bottom:284.043468px;}
.y111{bottom:285.717672px;}
.y54{bottom:285.726960px;}
.y87{bottom:285.743592px;}
.y21a{bottom:286.698132px;}
.y21{bottom:287.994000px;}
.y167{bottom:294.354216px;}
.y173{bottom:294.357240px;}
.y13e{bottom:296.891352px;}
.yb3{bottom:299.761344px;}
.y255{bottom:300.037500px;}
.y1b5{bottom:300.128760px;}
.y1e7{bottom:300.146904px;}
.y219{bottom:303.257772px;}
.y110{bottom:305.157456px;}
.y53{bottom:305.526600px;}
.y86{bottom:305.543232px;}
.y166{bottom:313.794000px;}
.y172{bottom:313.797024px;}
.y13d{bottom:316.331136px;}
.y254{bottom:316.597140px;}
.y1b4{bottom:319.928400px;}
.y1e6{bottom:319.946544px;}
.y218{bottom:321.617700px;}
.y10f{bottom:324.957096px;}
.y52{bottom:325.326240px;}
.y85{bottom:325.342872px;}
.ye2{bottom:328.212648px;}
.y20{bottom:333.087828px;}
.y253{bottom:333.156780px;}
.y13c{bottom:335.770920px;}
.y217{bottom:338.177340px;}
.y1b3{bottom:339.728040px;}
.y1e5{bottom:339.746184px;}
.y10e{bottom:344.396880px;}
.y51{bottom:345.125880px;}
.y84{bottom:345.142512px;}
.ye1{bottom:347.652432px;}
.yb2{bottom:348.721416px;}
.y252{bottom:349.716420px;}
.y1f{bottom:352.527612px;}
.y13b{bottom:355.210704px;}
.y216{bottom:356.537268px;}
.y1b2{bottom:359.527680px;}
.y1e4{bottom:359.545824px;}
.y10d{bottom:363.836664px;}
.y50{bottom:364.565664px;}
.y83{bottom:364.582296px;}
.y251{bottom:365.916276px;}
.ye0{bottom:367.092216px;}
.yb1{bottom:368.161200px;}
.y1e{bottom:372.327252px;}
.y215{bottom:373.096908px;}
.y13a{bottom:374.650488px;}
.y189{bottom:376.923000px;}
.y1b1{bottom:379.687176px;}
.y1e3{bottom:379.705320px;}
.y250{bottom:382.475916px;}
.y10c{bottom:383.276448px;}
.y4f{bottom:384.365304px;}
.y82{bottom:384.381936px;}
.ydf{bottom:386.532000px;}
.yb0{bottom:387.960840px;}
.y214{bottom:391.097052px;}
.y1d{bottom:391.767036px;}
.y139{bottom:394.090272px;}
.y24f{bottom:399.035556px;}
.y1b0{bottom:399.486816px;}
.y1e2{bottom:399.504960px;}
.y188{bottom:401.765880px;}
.y10b{bottom:402.716232px;}
.y4e{bottom:404.164944px;}
.y81{bottom:404.181576px;}
.yde{bottom:405.971784px;}
.yaf{bottom:407.400624px;}
.y213{bottom:407.656692px;}
.y1c{bottom:411.206820px;}
.y138{bottom:413.530056px;}
.y24e{bottom:415.595196px;}
.y187{bottom:417.965448px;}
.y1af{bottom:419.286456px;}
.y1e1{bottom:419.304600px;}
.y10a{bottom:422.156016px;}
.y80{bottom:423.621360px;}
.y4d{bottom:423.964584px;}
.y212{bottom:424.216332px;}
.ydd{bottom:425.411568px;}
.yae{bottom:426.840408px;}
.y1b{bottom:430.646604px;}
.y24d{bottom:432.154836px;}
.y137{bottom:433.329696px;}
.y186{bottom:433.805052px;}
.y1ae{bottom:439.086096px;}
.y1e0{bottom:439.104240px;}
.y211{bottom:440.775972px;}
.y109{bottom:441.955656px;}
.y4c{bottom:443.404368px;}
.y7f{bottom:443.421000px;}
.ydc{bottom:445.211208px;}
.yad{bottom:446.280192px;}
.y24c{bottom:448.714476px;}
.y185{bottom:449.644656px;}
.y1a{bottom:450.086388px;}
.y136{bottom:452.769480px;}
.y1ad{bottom:458.885736px;}
.y1df{bottom:458.903880px;}
.y210{bottom:459.135900px;}
.y4b{bottom:463.204008px;}
.y7e{bottom:463.220640px;}
.ydb{bottom:464.650992px;}
.y24b{bottom:465.274116px;}
.yac{bottom:465.719976px;}
.y184{bottom:465.844224px;}
.y19{bottom:469.526172px;}
.y135{bottom:472.209264px;}
.y20f{bottom:475.695540px;}
.y108{bottom:478.316232px;}
.y1ac{bottom:478.685376px;}
.y1de{bottom:478.703520px;}
.y183{bottom:481.683828px;}
.y24a{bottom:481.833756px;}
.y4a{bottom:483.003648px;}
.y7d{bottom:483.020280px;}
.yda{bottom:484.090776px;}
.yab{bottom:485.159760px;}
.y18{bottom:489.325812px;}
.y134{bottom:491.649048px;}
.y20e{bottom:491.895396px;}
.y182{bottom:497.883396px;}
.y249{bottom:498.393396px;}
.y1ab{bottom:498.844872px;}
.y1dd{bottom:498.863016px;}
.y49{bottom:502.803288px;}
.y7c{bottom:502.819920px;}
.yd9{bottom:503.530560px;}
.yaa{bottom:504.599544px;}
.y20d{bottom:508.455036px;}
.y17{bottom:508.765596px;}
.y133{bottom:511.448688px;}
.y181{bottom:513.723000px;}
.y248{bottom:514.953036px;}
.y1aa{bottom:518.644512px;}
.y1dc{bottom:518.662656px;}
.y48{bottom:522.243072px;}
.y7b{bottom:522.259704px;}
.yd8{bottom:522.970344px;}
.ya9{bottom:524.399184px;}
.y20c{bottom:526.814964px;}
.y16{bottom:528.205380px;}
.y107{bottom:528.355872px;}
.y132{bottom:530.888472px;}
.y247{bottom:531.512676px;}
.y1a9{bottom:538.444152px;}
.y1db{bottom:538.462296px;}
.y180{bottom:540.722856px;}
.y47{bottom:542.042712px;}
.y7a{bottom:542.059344px;}
.yd7{bottom:542.410128px;}
.y20b{bottom:543.374604px;}
.ya8{bottom:543.838968px;}
.y15{bottom:547.645164px;}
.y106{bottom:547.795656px;}
.y246{bottom:548.072316px;}
.y131{bottom:550.328256px;}
.y1a8{bottom:558.243792px;}
.y1da{bottom:558.261936px;}
.y20a{bottom:559.934244px;}
.y46{bottom:561.842352px;}
.yd6{bottom:561.849912px;}
.y79{bottom:561.858984px;}
.ya7{bottom:563.278752px;}
.y245{bottom:564.272172px;}
.y14{bottom:567.084948px;}
.y105{bottom:567.235440px;}
.y130{bottom:569.768040px;}
.y17f{bottom:571.683324px;}
.y209{bottom:576.493884px;}
.y1a7{bottom:578.043432px;}
.y1d9{bottom:578.061576px;}
.y244{bottom:581.191596px;}
.y45{bottom:581.641992px;}
.yd5{bottom:581.649552px;}
.y78{bottom:581.658624px;}
.ya6{bottom:582.718536px;}
.y13{bottom:586.524732px;}
.y104{bottom:586.675224px;}
.y17e{bottom:586.803000px;}
.y12f{bottom:589.207824px;}
.y208{bottom:594.853812px;}
.y243{bottom:597.391452px;}
.y1a6{bottom:597.843072px;}
.y1d8{bottom:597.861216px;}
.y44{bottom:601.081776px;}
.yd4{bottom:601.089336px;}
.y77{bottom:601.098408px;}
.ya5{bottom:602.158320px;}
.y12{bottom:605.964516px;}
.y103{bottom:606.474864px;}
.y12e{bottom:608.647608px;}
.y207{bottom:611.053668px;}
.y242{bottom:614.310876px;}
.y1a5{bottom:617.642712px;}
.y1d7{bottom:617.660856px;}
.yd3{bottom:620.529120px;}
.y43{bottom:620.881416px;}
.y76{bottom:620.898048px;}
.ya4{bottom:621.598104px;}
.y11{bottom:625.764156px;}
.y102{bottom:625.914648px;}
.y206{bottom:627.613308px;}
.y12d{bottom:628.087392px;}
.y241{bottom:630.870516px;}
.y1a4{bottom:637.442352px;}
.y1d6{bottom:637.460496px;}
.yd2{bottom:639.968904px;}
.y42{bottom:640.681056px;}
.y75{bottom:640.697688px;}
.ya3{bottom:641.397744px;}
.y205{bottom:644.172948px;}
.y10{bottom:645.203940px;}
.y101{bottom:645.354432px;}
.y240{bottom:647.070372px;}
.y18e{bottom:647.644440px;}
.y12c{bottom:647.887032px;}
.y1d5{bottom:657.260136px;}
.y1a3{bottom:657.601848px;}
.yd1{bottom:659.408688px;}
.y41{bottom:660.480696px;}
.y74{bottom:660.497328px;}
.ya2{bottom:660.837528px;}
.y204{bottom:662.532876px;}
.y23f{bottom:663.989796px;}
.y18d{bottom:664.203972px;}
.yf{bottom:664.643724px;}
.y100{bottom:664.794216px;}
.y151{bottom:666.364872px;}
.y12b{bottom:667.326816px;}
.y1d4{bottom:677.059776px;}
.y1a2{bottom:677.401488px;}
.yd0{bottom:678.848472px;}
.y203{bottom:679.092516px;}
.y40{bottom:679.920480px;}
.y73{bottom:679.937112px;}
.y23e{bottom:680.189652px;}
.ya1{bottom:680.277312px;}
.y18c{bottom:680.403540px;}
.y150{bottom:682.924404px;}
.ye{bottom:684.083508px;}
.yff{bottom:684.235224px;}
.y12a{bottom:686.766600px;}
.y160{bottom:687.963468px;}
.y202{bottom:695.652156px;}
.y23d{bottom:696.749292px;}
.y1d3{bottom:696.859416px;}
.y18b{bottom:696.963072px;}
.y1a1{bottom:697.201128px;}
.ycf{bottom:698.648112px;}
.y14f{bottom:699.483936px;}
.ya0{bottom:699.717096px;}
.y3f{bottom:699.720120px;}
.y72{bottom:699.736752px;}
.yd{bottom:703.523292px;}
.yfe{bottom:703.675008px;}
.y15f{bottom:704.523000px;}
.y129{bottom:706.206384px;}
.y201{bottom:712.211796px;}
.y23c{bottom:713.308932px;}
.y18a{bottom:713.522604px;}
.y14e{bottom:716.043468px;}
.y1a0{bottom:717.000768px;}
.y1d2{bottom:717.018912px;}
.yce{bottom:718.087896px;}
.y9f{bottom:719.156880px;}
.y3e{bottom:719.519760px;}
.y71{bottom:719.536392px;}
.yc{bottom:722.963076px;}
.yfd{bottom:723.474648px;}
.y128{bottom:725.646168px;}
.y23b{bottom:729.868572px;}
.y200{bottom:730.571724px;}
.y14d{bottom:732.603000px;}
.y19f{bottom:736.800408px;}
.y1d1{bottom:736.818552px;}
.ycd{bottom:737.527680px;}
.y9e{bottom:738.596664px;}
.y3d{bottom:739.319400px;}
.y70{bottom:739.336032px;}
.yb{bottom:742.762716px;}
.yfc{bottom:742.914432px;}
.y127{bottom:745.085952px;}
.y23a{bottom:746.428212px;}
.y1ff{bottom:746.771580px;}
.y19e{bottom:756.600048px;}
.y1d0{bottom:756.618192px;}
.ycc{bottom:756.967464px;}
.y9d{bottom:758.396304px;}
.y3c{bottom:758.759184px;}
.y6f{bottom:759.135672px;}
.ya{bottom:762.202500px;}
.yfb{bottom:762.354216px;}
.y239{bottom:762.987852px;}
.y1fe{bottom:763.331220px;}
.y126{bottom:764.885592px;}
.y19d{bottom:776.399688px;}
.ycb{bottom:776.407248px;}
.y1cf{bottom:776.417832px;}
.y3b{bottom:778.558824px;}
.y6e{bottom:778.575456px;}
.y238{bottom:779.547492px;}
.y1fd{bottom:779.890860px;}
.yfa{bottom:781.797096px;}
.y125{bottom:784.325376px;}
.y9c{bottom:793.675800px;}
.yca{bottom:795.847032px;}
.y237{bottom:796.107132px;}
.y19c{bottom:796.199328px;}
.y1ce{bottom:796.217472px;}
.y1fc{bottom:796.450500px;}
.y3a{bottom:798.358464px;}
.y6d{bottom:798.375096px;}
.yf9{bottom:801.236880px;}
.y124{bottom:803.765160px;}
.y236{bottom:812.666772px;}
.yc9{bottom:815.646672px;}
.y19b{bottom:815.998968px;}
.y1cd{bottom:816.017112px;}
.y6c{bottom:817.814880px;}
.y39{bottom:818.158104px;}
.y9{bottom:819.190932px;}
.yf8{bottom:820.676664px;}
.y123{bottom:823.204944px;}
.y235{bottom:829.226412px;}
.yc8{bottom:835.086456px;}
.y19a{bottom:835.798608px;}
.y1cc{bottom:835.816752px;}
.y38{bottom:837.597888px;}
.y6b{bottom:837.614520px;}
.y8{bottom:838.630716px;}
.y1fb{bottom:838.676520px;}
.yf7{bottom:840.116448px;}
.y122{bottom:842.644728px;}
.y9b{bottom:843.715440px;}
.y234{bottom:845.786052px;}
.y199{bottom:855.958104px;}
.y1cb{bottom:855.976248px;}
.y37{bottom:857.397528px;}
.y6a{bottom:857.414160px;}
.y7{bottom:858.070500px;}
.yf6{bottom:859.916088px;}
.y233{bottom:862.345692px;}
.yc7{bottom:870.006096px;}
.y198{bottom:875.757744px;}
.y1ca{bottom:875.775888px;}
.y36{bottom:877.197168px;}
.y69{bottom:877.213800px;}
.y232{bottom:878.905332px;}
.yf5{bottom:879.355872px;}
.y6{bottom:882.169500px;}
.y121{bottom:882.605376px;}
.y231{bottom:895.464972px;}
.y197{bottom:895.557384px;}
.y1c9{bottom:895.575528px;}
.y1fa{bottom:896.636016px;}
.y68{bottom:896.653584px;}
.y35{bottom:896.996808px;}
.yf4{bottom:898.795656px;}
.y9a{bottom:898.796088px;}
.y230{bottom:912.024612px;}
.y196{bottom:915.357024px;}
.y1c8{bottom:915.375168px;}
.y1f9{bottom:916.075800px;}
.y67{bottom:916.453224px;}
.y34{bottom:916.796448px;}
.yf3{bottom:918.235440px;}
.y99{bottom:918.235872px;}
.yc6{bottom:918.246456px;}
.y22f{bottom:928.584252px;}
.y195{bottom:935.156664px;}
.y1c7{bottom:935.174808px;}
.y1f8{bottom:935.515584px;}
.y33{bottom:936.236232px;}
.y66{bottom:936.252864px;}
.yf2{bottom:937.675224px;}
.y98{bottom:937.675656px;}
.y120{bottom:937.686024px;}
.yc5{bottom:937.686240px;}
.y22e{bottom:944.784108px;}
.y5{bottom:949.224228px;}
.y1f7{bottom:954.955368px;}
.y194{bottom:954.956304px;}
.y1c6{bottom:954.974448px;}
.y32{bottom:956.035872px;}
.y65{bottom:956.052504px;}
.yf1{bottom:957.115008px;}
.y97{bottom:957.115440px;}
.y11f{bottom:957.125808px;}
.yc4{bottom:957.126024px;}
.y22d{bottom:961.343748px;}
.y1f6{bottom:974.395152px;}
.y193{bottom:975.115800px;}
.y1c5{bottom:975.133944px;}
.y31{bottom:975.835512px;}
.y64{bottom:975.852144px;}
.yf0{bottom:976.914648px;}
.y96{bottom:976.915080px;}
.y11e{bottom:976.925448px;}
.yc3{bottom:976.925664px;}
.y22c{bottom:977.903388px;}
.y269{bottom:978.252444px;}
.y270{bottom:978.253812px;}
.y4{bottom:985.223652px;}
.y1f5{bottom:993.834936px;}
.y268{bottom:994.452300px;}
.y26f{bottom:994.453668px;}
.y22b{bottom:994.463028px;}
.y192{bottom:994.915440px;}
.y1c4{bottom:994.933584px;}
.y30{bottom:995.275296px;}
.y63{bottom:995.291928px;}
.yef{bottom:996.354432px;}
.y95{bottom:996.354864px;}
.y11d{bottom:996.365232px;}
.yc2{bottom:996.365448px;}
.y267{bottom:1011.011940px;}
.y26e{bottom:1011.013308px;}
.y22a{bottom:1011.022668px;}
.y1f4{bottom:1013.634576px;}
.y191{bottom:1014.715080px;}
.y1c3{bottom:1014.733224px;}
.y2f{bottom:1015.074936px;}
.y62{bottom:1015.091568px;}
.yee{bottom:1015.794216px;}
.y94{bottom:1015.794648px;}
.y11c{bottom:1015.805016px;}
.yc1{bottom:1015.805232px;}
.y3{bottom:1021.223076px;}
.y266{bottom:1027.571580px;}
.y26d{bottom:1027.572948px;}
.y229{bottom:1027.582308px;}
.y1f3{bottom:1033.074360px;}
.y190{bottom:1034.514720px;}
.y1c2{bottom:1034.532864px;}
.y2e{bottom:1034.874576px;}
.y61{bottom:1034.891208px;}
.yed{bottom:1035.234000px;}
.y93{bottom:1035.234432px;}
.y11b{bottom:1035.244800px;}
.yc0{bottom:1035.245016px;}
.y265{bottom:1044.131220px;}
.y26c{bottom:1044.132588px;}
.y228{bottom:1044.141948px;}
.y18f{bottom:1054.314360px;}
.y1c1{bottom:1054.332504px;}
.y2d{bottom:1054.674216px;}
.y11a{bottom:1054.684584px;}
.ybf{bottom:1054.684800px;}
.y60{bottom:1054.690848px;}
.y2{bottom:1057.222500px;}
.y264{bottom:1060.690860px;}
.y26b{bottom:1060.692228px;}
.y227{bottom:1060.701588px;}
.y2c{bottom:1074.114000px;}
.y119{bottom:1074.124368px;}
.ybe{bottom:1074.124584px;}
.y5f{bottom:1074.130632px;}
.y1c0{bottom:1074.132144px;}
.y1f2{bottom:1075.554000px;}
.y263{bottom:1077.250500px;}
.y26a{bottom:1077.251868px;}
.y226{bottom:1077.261228px;}
.y1{bottom:1093.564500px;}
.y92{bottom:1123.690500px;}
.y271{bottom:1123.694100px;}
.y262{bottom:1123.721244px;}
.h1{height:49.800960px;}
.h8{height:50.765616px;}
.h7{height:57.346560px;}
.h5{height:63.383040px;}
.h6{height:64.774080px;}
.h4{height:69.419520px;}
.h2{height:125.256960px;}
.h3{height:126.571680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:86.100000px;}
.x1{left:89.700000px;}
.xc{left:107.699784px;}
.x3{left:137.581080px;}
.x16{left:156.660432px;}
.x10{left:162.419640px;}
.x17{left:178.980000px;}
.x9{left:183.659496px;}
.x15{left:186.179856px;}
.x13{left:187.619712px;}
.x5{left:189.061332px;}
.x2{left:190.140000px;}
.xa{left:197.700000px;}
.xb{left:201.660000px;}
.x14{left:216.060000px;}
.x8{left:221.100000px;}
.x7{left:237.660000px;}
.x4{left:251.701764px;}
.x6{left:313.620000px;}
.x11{left:449.700000px;}
.xd{left:476.698848px;}
.xf{left:494.699784px;}
.x12{left:618.538776px;}
@media print{
.v4{vertical-align:-59.659819pt;}
.v6{vertical-align:-10.517675pt;}
.v2{vertical-align:-1.168640pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.168640pt;}
.v5{vertical-align:21.492565pt;}
.v3{vertical-align:26.522667pt;}
.ls61{letter-spacing:-3.225600pt;}
.ls48{letter-spacing:-1.935360pt;}
.ls28{letter-spacing:-1.559040pt;}
.ls37{letter-spacing:-1.505280pt;}
.ls5f{letter-spacing:-1.344000pt;}
.ls41{letter-spacing:-1.290240pt;}
.ls39{letter-spacing:-1.236480pt;}
.ls76{letter-spacing:-1.216000pt;}
.ls31{letter-spacing:-1.128960pt;}
.ls6e{letter-spacing:-1.118720pt;}
.ls49{letter-spacing:-1.075200pt;}
.ls6f{letter-spacing:-1.070080pt;}
.ls74{letter-spacing:-0.972800pt;}
.ls5e{letter-spacing:-0.967680pt;}
.ls60{letter-spacing:-0.913920pt;}
.ls10{letter-spacing:-0.860160pt;}
.lse{letter-spacing:-0.806400pt;}
.ls66{letter-spacing:-0.778240pt;}
.ls13{letter-spacing:-0.752640pt;}
.ls6b{letter-spacing:-0.729600pt;}
.ls6{letter-spacing:-0.706560pt;}
.lsb{letter-spacing:-0.698880pt;}
.ls2e{letter-spacing:-0.680960pt;}
.ls1a{letter-spacing:-0.675840pt;}
.lsc{letter-spacing:-0.645120pt;}
.ls1b{letter-spacing:-0.633600pt;}
.ls2a{letter-spacing:-0.591360pt;}
.ls79{letter-spacing:-0.583680pt;}
.ls7a{letter-spacing:-0.535040pt;}
.ls69{letter-spacing:-0.486400pt;}
.ls2c{letter-spacing:-0.483840pt;}
.ls73{letter-spacing:-0.437760pt;}
.lsf{letter-spacing:-0.430080pt;}
.ls47{letter-spacing:-0.376320pt;}
.ls6c{letter-spacing:-0.340480pt;}
.ls59{letter-spacing:-0.337920pt;}
.ls11{letter-spacing:-0.322560pt;}
.ls18{letter-spacing:-0.268800pt;}
.ls78{letter-spacing:-0.243200pt;}
.lsa{letter-spacing:-0.215040pt;}
.ls19{letter-spacing:-0.194560pt;}
.ls3{letter-spacing:-0.168960pt;}
.ls9{letter-spacing:-0.161280pt;}
.ls15{letter-spacing:-0.145920pt;}
.ls5c{letter-spacing:-0.126720pt;}
.ls16{letter-spacing:-0.107520pt;}
.ls4{letter-spacing:-0.106240pt;}
.ls68{letter-spacing:-0.097280pt;}
.ls55{letter-spacing:-0.084480pt;}
.lsd{letter-spacing:-0.053760pt;}
.ls67{letter-spacing:-0.048640pt;}
.ls50{letter-spacing:-0.042240pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.016128pt;}
.ls4f{letter-spacing:0.042240pt;}
.ls71{letter-spacing:0.048640pt;}
.ls3d{letter-spacing:0.053760pt;}
.ls7{letter-spacing:0.058880pt;}
.ls54{letter-spacing:0.126720pt;}
.ls30{letter-spacing:0.161280pt;}
.ls8{letter-spacing:0.176640pt;}
.ls75{letter-spacing:0.194560pt;}
.ls58{letter-spacing:0.211200pt;}
.ls0{letter-spacing:0.212480pt;}
.ls57{letter-spacing:0.215040pt;}
.ls72{letter-spacing:0.243200pt;}
.ls14{letter-spacing:0.268800pt;}
.ls5b{letter-spacing:0.295680pt;}
.ls1{letter-spacing:0.318720pt;}
.ls34{letter-spacing:0.322560pt;}
.ls5a{letter-spacing:0.337920pt;}
.ls2d{letter-spacing:0.376320pt;}
.ls24{letter-spacing:0.430080pt;}
.ls65{letter-spacing:0.437760pt;}
.ls29{letter-spacing:0.483840pt;}
.ls45{letter-spacing:0.537600pt;}
.ls4e{letter-spacing:0.549120pt;}
.ls43{letter-spacing:0.591360pt;}
.ls4d{letter-spacing:0.633600pt;}
.ls5{letter-spacing:0.637440pt;}
.ls42{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.645120pt;}
.ls20{letter-spacing:0.698880pt;}
.ls53{letter-spacing:0.760320pt;}
.ls2f{letter-spacing:0.801024pt;}
.ls51{letter-spacing:0.802560pt;}
.ls52{letter-spacing:0.836352pt;}
.ls26{letter-spacing:0.860160pt;}
.ls32{letter-spacing:1.021440pt;}
.ls17{letter-spacing:1.075200pt;}
.ls64{letter-spacing:1.118720pt;}
.ls33{letter-spacing:1.128960pt;}
.ls56{letter-spacing:1.132032pt;}
.ls6a{letter-spacing:1.167360pt;}
.ls3c{letter-spacing:1.182720pt;}
.ls3e{letter-spacing:1.204224pt;}
.ls70{letter-spacing:1.216000pt;}
.ls23{letter-spacing:1.236480pt;}
.ls77{letter-spacing:1.264640pt;}
.ls3f{letter-spacing:1.279488pt;}
.ls25{letter-spacing:1.290240pt;}
.ls1d{letter-spacing:1.295616pt;}
.ls40{letter-spacing:1.344000pt;}
.ls2b{letter-spacing:1.397760pt;}
.ls27{letter-spacing:1.505280pt;}
.ls36{letter-spacing:1.935360pt;}
.ls3a{letter-spacing:1.989120pt;}
.ls21{letter-spacing:2.096640pt;}
.ls1e{letter-spacing:2.257920pt;}
.ls38{letter-spacing:2.311680pt;}
.ls5d{letter-spacing:2.419200pt;}
.ls62{letter-spacing:2.432000pt;}
.ls6d{letter-spacing:2.480640pt;}
.ls1f{letter-spacing:2.526720pt;}
.ls4c{letter-spacing:2.551296pt;}
.ls63{letter-spacing:2.577920pt;}
.ls22{letter-spacing:2.580480pt;}
.ls3b{letter-spacing:2.634240pt;}
.ls44{letter-spacing:3.118080pt;}
.ls35{letter-spacing:3.225600pt;}
.ls4b{letter-spacing:3.709440pt;}
.ls4a{letter-spacing:4.247040pt;}
.ls46{letter-spacing:4.462080pt;}
.wsda{word-spacing:-14.640640pt;}
.ws0{word-spacing:-13.440000pt;}
.ws27{word-spacing:-13.332480pt;}
.wsd8{word-spacing:-13.009920pt;}
.ws69{word-spacing:-12.579840pt;}
.wsd9{word-spacing:-12.160000pt;}
.ws116{word-spacing:-11.430400pt;}
.wsdb{word-spacing:-11.089920pt;}
.wsb4{word-spacing:-10.686720pt;}
.wsa6{word-spacing:-10.560000pt;}
.wsa7{word-spacing:-9.926400pt;}
.ws89{word-spacing:-8.000000pt;}
.wsd6{word-spacing:-5.967360pt;}
.ws9a{word-spacing:-5.806080pt;}
.ws67{word-spacing:-5.698560pt;}
.wsbd{word-spacing:-5.591040pt;}
.ws2d{word-spacing:-5.537280pt;}
.ws4e{word-spacing:-5.322240pt;}
.ws76{word-spacing:-4.784640pt;}
.ws77{word-spacing:-4.623360pt;}
.ws70{word-spacing:-4.462080pt;}
.ws104{word-spacing:-4.426240pt;}
.ws82{word-spacing:-4.408320pt;}
.wsf7{word-spacing:-4.377600pt;}
.ws35{word-spacing:-4.354560pt;}
.ws14{word-spacing:-4.300800pt;}
.ws13{word-spacing:-4.247040pt;}
.ws72{word-spacing:-4.193280pt;}
.ws50{word-spacing:-4.085760pt;}
.ws108{word-spacing:-4.037120pt;}
.ws15{word-spacing:-4.032000pt;}
.wscc{word-spacing:-3.816960pt;}
.ws5a{word-spacing:-3.655680pt;}
.ws86{word-spacing:-3.279360pt;}
.ws73{word-spacing:-3.225600pt;}
.ws3b{word-spacing:-3.171840pt;}
.ws105{word-spacing:-3.161600pt;}
.ws91{word-spacing:-3.118080pt;}
.wse7{word-spacing:-3.112960pt;}
.ws4b{word-spacing:-3.064320pt;}
.wsfb{word-spacing:-3.015680pt;}
.ws6b{word-spacing:-3.010560pt;}
.ws114{word-spacing:-2.967040pt;}
.ws46{word-spacing:-2.956800pt;}
.wsbb{word-spacing:-2.872320pt;}
.wsc7{word-spacing:-2.745600pt;}
.ws64{word-spacing:-2.741760pt;}
.ws10{word-spacing:-2.580480pt;}
.ws119{word-spacing:-2.529280pt;}
.ws41{word-spacing:-2.419200pt;}
.wsb6{word-spacing:-2.365440pt;}
.ws96{word-spacing:-1.881600pt;}
.wse5{word-spacing:-1.848320pt;}
.ws58{word-spacing:-1.827840pt;}
.ws112{word-spacing:-1.799680pt;}
.ws7d{word-spacing:-1.774080pt;}
.ws10d{word-spacing:-1.751040pt;}
.ws3e{word-spacing:-1.720320pt;}
.wsfd{word-spacing:-1.702400pt;}
.ws54{word-spacing:-1.666560pt;}
.ws1a{word-spacing:-1.612800pt;}
.wsbc{word-spacing:-1.605120pt;}
.ws5{word-spacing:-1.593600pt;}
.wsb7{word-spacing:-1.562880pt;}
.wsd0{word-spacing:-1.290240pt;}
.ws90{word-spacing:-1.182720pt;}
.ws3{word-spacing:-1.168640pt;}
.wseb{word-spacing:-1.167360pt;}
.ws7c{word-spacing:-1.128960pt;}
.ws87{word-spacing:-1.075200pt;}
.wsc3{word-spacing:-0.971520pt;}
.wsd7{word-spacing:-0.967680pt;}
.ws1d{word-spacing:-0.913920pt;}
.wsae{word-spacing:-0.887040pt;}
.ws4{word-spacing:-0.849920pt;}
.ws10a{word-spacing:-0.826880pt;}
.wsb{word-spacing:-0.765440pt;}
.ws9b{word-spacing:-0.698880pt;}
.wsf0{word-spacing:-0.680960pt;}
.ws4c{word-spacing:-0.645120pt;}
.wsc6{word-spacing:-0.633600pt;}
.wsfe{word-spacing:-0.632320pt;}
.ws8f{word-spacing:-0.591360pt;}
.wsdf{word-spacing:-0.583680pt;}
.ws19{word-spacing:-0.537600pt;}
.wsea{word-spacing:-0.535040pt;}
.ws1e{word-spacing:-0.486400pt;}
.ws3d{word-spacing:-0.483840pt;}
.ws23{word-spacing:-0.437760pt;}
.wse{word-spacing:-0.430080pt;}
.wsb2{word-spacing:-0.380160pt;}
.ws59{word-spacing:-0.376320pt;}
.ws1{word-spacing:-0.337920pt;}
.wscb{word-spacing:-0.322560pt;}
.wsb3{word-spacing:-0.295680pt;}
.wsa2{word-spacing:-0.268800pt;}
.wsba{word-spacing:-0.253440pt;}
.ws99{word-spacing:-0.215040pt;}
.ws2{word-spacing:-0.168960pt;}
.ws111{word-spacing:-0.145920pt;}
.ws11a{word-spacing:-0.048640pt;}
.ws6{word-spacing:0.000000pt;}
.ws68{word-spacing:0.048640pt;}
.ws63{word-spacing:0.053760pt;}
.ws8{word-spacing:0.058880pt;}
.ws79{word-spacing:0.107520pt;}
.wsdd{word-spacing:0.145920pt;}
.ws60{word-spacing:0.161280pt;}
.wsb0{word-spacing:0.168960pt;}
.ws66{word-spacing:0.268800pt;}
.ws25{word-spacing:0.295680pt;}
.ws7{word-spacing:0.318720pt;}
.ws24{word-spacing:0.337920pt;}
.ws26{word-spacing:0.340480pt;}
.ws118{word-spacing:0.437760pt;}
.wsa{word-spacing:0.471040pt;}
.ws71{word-spacing:0.483840pt;}
.ws10b{word-spacing:0.583680pt;}
.ws9{word-spacing:0.588800pt;}
.ws85{word-spacing:0.591360pt;}
.wsf1{word-spacing:0.632320pt;}
.ws75{word-spacing:0.645120pt;}
.ws44{word-spacing:0.698880pt;}
.ws11c{word-spacing:0.729600pt;}
.ws3a{word-spacing:0.752640pt;}
.wsef{word-spacing:0.778240pt;}
.ws20{word-spacing:0.806400pt;}
.wsd{word-spacing:0.860160pt;}
.ws7b{word-spacing:0.913920pt;}
.wsaf{word-spacing:0.929280pt;}
.wsc9{word-spacing:0.971520pt;}
.wsab{word-spacing:1.013760pt;}
.ws74{word-spacing:1.075200pt;}
.ws8b{word-spacing:1.152000pt;}
.ws11b{word-spacing:1.167360pt;}
.wsf9{word-spacing:1.361920pt;}
.ws7a{word-spacing:1.451520pt;}
.wsfa{word-spacing:1.459200pt;}
.ws6d{word-spacing:1.505280pt;}
.wsd5{word-spacing:1.559040pt;}
.wsaa{word-spacing:1.562880pt;}
.wsc5{word-spacing:1.647360pt;}
.wsbf{word-spacing:1.881600pt;}
.ws107{word-spacing:1.896960pt;}
.ws78{word-spacing:1.935360pt;}
.ws10c{word-spacing:1.945600pt;}
.ws3c{word-spacing:1.989120pt;}
.wsec{word-spacing:1.994240pt;}
.ws5b{word-spacing:2.042880pt;}
.ws47{word-spacing:2.096640pt;}
.wsb8{word-spacing:2.112000pt;}
.ws29{word-spacing:2.150400pt;}
.ws95{word-spacing:2.204160pt;}
.wsee{word-spacing:2.237440pt;}
.wsb9{word-spacing:2.280960pt;}
.wse1{word-spacing:2.383360pt;}
.wsed{word-spacing:2.626560pt;}
.ws43{word-spacing:2.634240pt;}
.ws8e{word-spacing:2.741760pt;}
.ws110{word-spacing:2.772480pt;}
.wsad{word-spacing:2.872320pt;}
.wsce{word-spacing:2.903040pt;}
.wsff{word-spacing:3.258880pt;}
.ws11{word-spacing:3.279360pt;}
.wse0{word-spacing:3.307520pt;}
.ws55{word-spacing:3.333120pt;}
.wsc{word-spacing:3.386880pt;}
.ws2c{word-spacing:3.440640pt;}
.wsb1{word-spacing:3.505920pt;}
.wsac{word-spacing:3.548160pt;}
.ws9e{word-spacing:3.601920pt;}
.wsf8{word-spacing:3.696640pt;}
.ws3f{word-spacing:3.978240pt;}
.ws81{word-spacing:4.032000pt;}
.ws10f{word-spacing:4.328960pt;}
.ws93{word-spacing:4.462080pt;}
.ws92{word-spacing:4.515840pt;}
.wse6{word-spacing:4.523520pt;}
.ws37{word-spacing:4.569600pt;}
.ws106{word-spacing:4.572160pt;}
.wsf2{word-spacing:4.620800pt;}
.wsa1{word-spacing:4.623360pt;}
.ws48{word-spacing:4.677120pt;}
.wsd4{word-spacing:4.730880pt;}
.wsc8{word-spacing:4.857600pt;}
.ws5e{word-spacing:5.053440pt;}
.wsf{word-spacing:5.160960pt;}
.ws12{word-spacing:5.268480pt;}
.ws94{word-spacing:5.322240pt;}
.ws109{word-spacing:5.447680pt;}
.wsde{word-spacing:5.788160pt;}
.ws4d{word-spacing:5.806080pt;}
.wsf6{word-spacing:5.836800pt;}
.ws5d{word-spacing:5.859840pt;}
.ws5f{word-spacing:5.913600pt;}
.ws36{word-spacing:5.967360pt;}
.wsa0{word-spacing:6.021120pt;}
.wscf{word-spacing:6.074880pt;}
.wsd3{word-spacing:6.128640pt;}
.wsf5{word-spacing:6.469120pt;}
.ws1c{word-spacing:6.504960pt;}
.wsa4{word-spacing:6.827520pt;}
.ws2a{word-spacing:7.042560pt;}
.ws34{word-spacing:7.096320pt;}
.ws100{word-spacing:7.101440pt;}
.wsa8{word-spacing:7.150080pt;}
.ws65{word-spacing:7.203840pt;}
.ws2b{word-spacing:7.257600pt;}
.ws21{word-spacing:7.311360pt;}
.ws7f{word-spacing:7.633920pt;}
.wsc2{word-spacing:7.848960pt;}
.wsd2{word-spacing:7.902720pt;}
.ws4f{word-spacing:8.386560pt;}
.ws117{word-spacing:8.414720pt;}
.wsf3{word-spacing:8.463360pt;}
.ws18{word-spacing:8.494080pt;}
.ws61{word-spacing:8.547840pt;}
.wsd1{word-spacing:8.601600pt;}
.ws9f{word-spacing:8.977920pt;}
.ws97{word-spacing:9.031680pt;}
.ws9c{word-spacing:9.085440pt;}
.wsf4{word-spacing:9.436160pt;}
.wse3{word-spacing:9.582080pt;}
.ws2f{word-spacing:9.623040pt;}
.ws10e{word-spacing:9.630720pt;}
.ws39{word-spacing:9.676800pt;}
.wse2{word-spacing:9.728000pt;}
.ws6c{word-spacing:9.730560pt;}
.wse9{word-spacing:9.776640pt;}
.ws1f{word-spacing:9.784320pt;}
.ws83{word-spacing:9.838080pt;}
.ws28{word-spacing:9.891840pt;}
.ws6f{word-spacing:10.053120pt;}
.wsb5{word-spacing:10.321920pt;}
.ws5c{word-spacing:10.375680pt;}
.ws84{word-spacing:10.429440pt;}
.ws113{word-spacing:10.457600pt;}
.ws16{word-spacing:10.483200pt;}
.wscd{word-spacing:10.644480pt;}
.ws62{word-spacing:10.752000pt;}
.ws102{word-spacing:10.846720pt;}
.ws32{word-spacing:10.859520pt;}
.ws40{word-spacing:10.913280pt;}
.wse8{word-spacing:10.944000pt;}
.ws8d{word-spacing:10.967040pt;}
.ws17{word-spacing:11.020800pt;}
.wse4{word-spacing:11.041280pt;}
.ws38{word-spacing:11.074560pt;}
.ws57{word-spacing:11.128320pt;}
.wsbe{word-spacing:11.182080pt;}
.ws31{word-spacing:11.343360pt;}
.ws30{word-spacing:11.450880pt;}
.ws1b{word-spacing:11.504640pt;}
.ws115{word-spacing:11.673600pt;}
.ws6e{word-spacing:11.719680pt;}
.wsa3{word-spacing:11.773440pt;}
.wsc0{word-spacing:11.880960pt;}
.ws103{word-spacing:11.916800pt;}
.ws52{word-spacing:11.934720pt;}
.wsca{word-spacing:12.096000pt;}
.ws42{word-spacing:12.149760pt;}
.ws2e{word-spacing:12.203520pt;}
.ws101{word-spacing:12.208640pt;}
.ws22{word-spacing:12.257280pt;}
.wsfc{word-spacing:12.305920pt;}
.ws4a{word-spacing:12.311040pt;}
.wsa5{word-spacing:12.364800pt;}
.ws56{word-spacing:12.418560pt;}
.ws9d{word-spacing:12.794880pt;}
.wsdc{word-spacing:12.848640pt;}
.ws49{word-spacing:12.956160pt;}
.ws45{word-spacing:13.009920pt;}
.ws88{word-spacing:13.063680pt;}
.ws98{word-spacing:13.171200pt;}
.wsc1{word-spacing:13.224960pt;}
.ws8a{word-spacing:13.386240pt;}
.ws7e{word-spacing:13.440000pt;}
.ws51{word-spacing:13.493760pt;}
.ws8c{word-spacing:13.547520pt;}
.ws80{word-spacing:13.601280pt;}
.ws33{word-spacing:13.708800pt;}
.ws53{word-spacing:13.870080pt;}
.ws6a{word-spacing:14.138880pt;}
.wsa9{word-spacing:14.300160pt;}
.wsc4{word-spacing:21.246720pt;}
._2{margin-left:-998.638080pt;}
._10{margin-left:-21.806080pt;}
._4{margin-left:-12.261120pt;}
._f{margin-left:-8.901120pt;}
._b{margin-left:-7.462400pt;}
._8{margin-left:-6.528000pt;}
._9{margin-left:-5.518080pt;}
._20{margin-left:-4.609280pt;}
._6{margin-left:-3.691520pt;}
._5{margin-left:-2.430720pt;}
._0{margin-left:-1.224960pt;}
._3{width:0.971520pt;}
._1{width:1.900800pt;}
._21{width:3.690240pt;}
._e{width:19.180800pt;}
._d{width:21.288960pt;}
._7{width:22.928640pt;}
._a{width:24.483840pt;}
._11{width:106.824960pt;}
._12{width:171.790080pt;}
._17{width:190.206720pt;}
._1f{width:192.192000pt;}
._18{width:289.639680pt;}
._13{width:312.195840pt;}
._19{width:316.563456pt;}
._14{width:339.850368pt;}
._1a{width:341.045760pt;}
._16{width:341.975040pt;}
._1c{width:345.763968pt;}
._1e{width:360.239616pt;}
._15{width:362.406528pt;}
._1d{width:367.644288pt;}
._1b{width:384.400896pt;}
._c{width:1996.711680pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:78.936960pt;}
.y5e{bottom:78.942336pt;}
.yec{bottom:78.946368pt;}
.y91{bottom:78.957120pt;}
.y15e{bottom:85.969280pt;}
.y2b{bottom:86.168288pt;}
.y159{bottom:87.248768pt;}
.y171{bottom:88.530240pt;}
.y17d{bottom:88.532928pt;}
.y14c{bottom:89.808576pt;}
.y225{bottom:90.365408pt;}
.y261{bottom:90.383648pt;}
.y118{bottom:90.457536pt;}
.y1bf{bottom:90.464448pt;}
.y148{bottom:90.465600pt;}
.y1f1{bottom:90.480576pt;}
.ybc{bottom:96.216768pt;}
.y5d{bottom:96.222144pt;}
.yeb{bottom:96.226176pt;}
.y90{bottom:96.236928pt;}
.y2a{bottom:99.608000pt;}
.y15d{bottom:103.249088pt;}
.y158{bottom:104.528576pt;}
.y224{bottom:105.085088pt;}
.y260{bottom:105.103328pt;}
.y170{bottom:105.810048pt;}
.y17c{bottom:105.812736pt;}
.y14b{bottom:107.088384pt;}
.y117{bottom:107.737344pt;}
.y147{bottom:107.745408pt;}
.y1be{bottom:108.064128pt;}
.y1f0{bottom:108.080256pt;}
.ybb{bottom:113.496576pt;}
.yea{bottom:113.505984pt;}
.y5c{bottom:113.821824pt;}
.y8f{bottom:113.836608pt;}
.y29{bottom:119.253333pt;}
.y223{bottom:119.484960pt;}
.y25f{bottom:119.823008pt;}
.y15c{bottom:120.528896pt;}
.y157{bottom:121.808384pt;}
.y16f{bottom:123.089856pt;}
.y17b{bottom:123.092544pt;}
.y14a{bottom:124.368192pt;}
.y116{bottom:125.011776pt;}
.y146{bottom:125.025216pt;}
.y1bd{bottom:125.663808pt;}
.y1ef{bottom:125.679936pt;}
.yba{bottom:130.776384pt;}
.ye9{bottom:130.785792pt;}
.y5b{bottom:131.421504pt;}
.y8e{bottom:131.436288pt;}
.y222{bottom:134.204640pt;}
.y25e{bottom:134.542688pt;}
.y15b{bottom:137.808704pt;}
.y16e{bottom:140.369664pt;}
.y17a{bottom:140.372352pt;}
.y149{bottom:141.648000pt;}
.y115{bottom:142.291584pt;}
.y145{bottom:142.305024pt;}
.y1bc{bottom:143.263488pt;}
.y1ee{bottom:143.279616pt;}
.yb9{bottom:148.376064pt;}
.ye8{bottom:148.385472pt;}
.y25d{bottom:148.942560pt;}
.y5a{bottom:149.021184pt;}
.y8d{bottom:149.035968pt;}
.y221{bottom:150.524576pt;}
.y15a{bottom:155.088512pt;}
.y156{bottom:156.368000pt;}
.y16d{bottom:157.649472pt;}
.y179{bottom:157.652160pt;}
.y24{bottom:158.473280pt;}
.y114{bottom:159.571392pt;}
.y144{bottom:159.904704pt;}
.y1bb{bottom:161.183040pt;}
.y1ed{bottom:161.199168pt;}
.y28{bottom:161.673344pt;}
.y25c{bottom:163.662240pt;}
.y220{bottom:165.244256pt;}
.yb8{bottom:165.655872pt;}
.ye7{bottom:165.665280pt;}
.y59{bottom:166.620864pt;}
.y8c{bottom:166.635648pt;}
.y16c{bottom:174.929280pt;}
.y178{bottom:174.931968pt;}
.y23{bottom:175.753088pt;}
.y143{bottom:177.184512pt;}
.y25b{bottom:178.381920pt;}
.y1ba{bottom:178.782720pt;}
.y1ec{bottom:178.798848pt;}
.y27{bottom:178.953152pt;}
.y21f{bottom:179.963936pt;}
.yb7{bottom:182.935680pt;}
.ye6{bottom:182.945088pt;}
.y58{bottom:183.900672pt;}
.y8b{bottom:183.915456pt;}
.y113{bottom:192.211776pt;}
.y16b{bottom:192.528960pt;}
.y177{bottom:192.531648pt;}
.y25a{bottom:193.101600pt;}
.y165{bottom:193.604747pt;}
.y142{bottom:194.464320pt;}
.y21e{bottom:194.683616pt;}
.y26{bottom:196.232960pt;}
.y1b9{bottom:196.382400pt;}
.y1eb{bottom:196.398528pt;}
.y155{bottom:199.045643pt;}
.yb6{bottom:200.215488pt;}
.ye5{bottom:200.224896pt;}
.y57{bottom:201.500352pt;}
.y8a{bottom:201.515136pt;}
.y259{bottom:207.821280pt;}
.y164{bottom:208.324331pt;}
.y21d{bottom:209.403296pt;}
.y16a{bottom:209.808768pt;}
.y176{bottom:209.811456pt;}
.y141{bottom:211.744128pt;}
.y25{bottom:213.512768pt;}
.y154{bottom:213.765227pt;}
.y1b8{bottom:213.982080pt;}
.y1ea{bottom:213.998208pt;}
.y22{bottom:214.928000pt;}
.yb5{bottom:217.495296pt;}
.ye4{bottom:217.504704pt;}
.y56{bottom:219.100032pt;}
.y89{bottom:219.114816pt;}
.y258{bottom:222.540960pt;}
.y163{bottom:223.043915pt;}
.y21c{bottom:225.403424pt;}
.y169{bottom:227.088576pt;}
.y175{bottom:227.091264pt;}
.y153{bottom:228.484811pt;}
.y140{bottom:229.023936pt;}
.y1b7{bottom:231.581760pt;}
.y1e9{bottom:231.597888pt;}
.yb4{bottom:234.775104pt;}
.y55{bottom:236.379840pt;}
.y112{bottom:236.691456pt;}
.y88{bottom:236.714496pt;}
.y257{bottom:237.260640pt;}
.y162{bottom:237.763499pt;}
.y21b{bottom:240.123104pt;}
.y152{bottom:243.204395pt;}
.y168{bottom:244.368384pt;}
.y174{bottom:244.371072pt;}
.y13f{bottom:246.303744pt;}
.ye3{bottom:248.544384pt;}
.y1b6{bottom:249.181440pt;}
.y1e8{bottom:249.197568pt;}
.y256{bottom:251.980320pt;}
.y161{bottom:252.483083pt;}
.y111{bottom:253.971264pt;}
.y54{bottom:253.979520pt;}
.y87{bottom:253.994304pt;}
.y21a{bottom:254.842784pt;}
.y21{bottom:255.994667pt;}
.y167{bottom:261.648192pt;}
.y173{bottom:261.650880pt;}
.y13e{bottom:263.903424pt;}
.yb3{bottom:266.454528pt;}
.y255{bottom:266.700000pt;}
.y1b5{bottom:266.781120pt;}
.y1e7{bottom:266.797248pt;}
.y219{bottom:269.562464pt;}
.y110{bottom:271.251072pt;}
.y53{bottom:271.579200pt;}
.y86{bottom:271.593984pt;}
.y166{bottom:278.928000pt;}
.y172{bottom:278.930688pt;}
.y13d{bottom:281.183232pt;}
.y254{bottom:281.419680pt;}
.y1b4{bottom:284.380800pt;}
.y1e6{bottom:284.396928pt;}
.y218{bottom:285.882400pt;}
.y10f{bottom:288.850752pt;}
.y52{bottom:289.178880pt;}
.y85{bottom:289.193664pt;}
.ye2{bottom:291.744576pt;}
.y20{bottom:296.078069pt;}
.y253{bottom:296.139360pt;}
.y13c{bottom:298.463040pt;}
.y217{bottom:300.602080pt;}
.y1b3{bottom:301.980480pt;}
.y1e5{bottom:301.996608pt;}
.y10e{bottom:306.130560pt;}
.y51{bottom:306.778560pt;}
.y84{bottom:306.793344pt;}
.ye1{bottom:309.024384pt;}
.yb2{bottom:309.974592pt;}
.y252{bottom:310.859040pt;}
.y1f{bottom:313.357877pt;}
.y13b{bottom:315.742848pt;}
.y216{bottom:316.922016pt;}
.y1b2{bottom:319.580160pt;}
.y1e4{bottom:319.596288pt;}
.y10d{bottom:323.410368pt;}
.y50{bottom:324.058368pt;}
.y83{bottom:324.073152pt;}
.y251{bottom:325.258912pt;}
.ye0{bottom:326.304192pt;}
.yb1{bottom:327.254400pt;}
.y1e{bottom:330.957557pt;}
.y215{bottom:331.641696pt;}
.y13a{bottom:333.022656pt;}
.y189{bottom:335.042667pt;}
.y1b1{bottom:337.499712pt;}
.y1e3{bottom:337.515840pt;}
.y250{bottom:339.978592pt;}
.y10c{bottom:340.690176pt;}
.y4f{bottom:341.658048pt;}
.y82{bottom:341.672832pt;}
.ydf{bottom:343.584000pt;}
.yb0{bottom:344.854080pt;}
.y214{bottom:347.641824pt;}
.y1d{bottom:348.237365pt;}
.y139{bottom:350.302464pt;}
.y24f{bottom:354.698272pt;}
.y1b0{bottom:355.099392pt;}
.y1e2{bottom:355.115520pt;}
.y188{bottom:357.125227pt;}
.y10b{bottom:357.969984pt;}
.y4e{bottom:359.257728pt;}
.y81{bottom:359.272512pt;}
.yde{bottom:360.863808pt;}
.yaf{bottom:362.133888pt;}
.y213{bottom:362.361504pt;}
.y1c{bottom:365.517173pt;}
.y138{bottom:367.582272pt;}
.y24e{bottom:369.417952pt;}
.y187{bottom:371.524843pt;}
.y1af{bottom:372.699072pt;}
.y1e1{bottom:372.715200pt;}
.y10a{bottom:375.249792pt;}
.y80{bottom:376.552320pt;}
.y4d{bottom:376.857408pt;}
.y212{bottom:377.081184pt;}
.ydd{bottom:378.143616pt;}
.yae{bottom:379.413696pt;}
.y1b{bottom:382.796981pt;}
.y24d{bottom:384.137632pt;}
.y137{bottom:385.181952pt;}
.y186{bottom:385.604491pt;}
.y1ae{bottom:390.298752pt;}
.y1e0{bottom:390.314880pt;}
.y211{bottom:391.800864pt;}
.y109{bottom:392.849472pt;}
.y4c{bottom:394.137216pt;}
.y7f{bottom:394.152000pt;}
.ydc{bottom:395.743296pt;}
.yad{bottom:396.693504pt;}
.y24c{bottom:398.857312pt;}
.y185{bottom:399.684139pt;}
.y1a{bottom:400.076789pt;}
.y136{bottom:402.461760pt;}
.y1ad{bottom:407.898432pt;}
.y1df{bottom:407.914560pt;}
.y210{bottom:408.120800pt;}
.y4b{bottom:411.736896pt;}
.y7e{bottom:411.751680pt;}
.ydb{bottom:413.023104pt;}
.y24b{bottom:413.576992pt;}
.yac{bottom:413.973312pt;}
.y184{bottom:414.083755pt;}
.y19{bottom:417.356597pt;}
.y135{bottom:419.741568pt;}
.y20f{bottom:422.840480pt;}
.y108{bottom:425.169984pt;}
.y1ac{bottom:425.498112pt;}
.y1de{bottom:425.514240pt;}
.y183{bottom:428.163403pt;}
.y24a{bottom:428.296672pt;}
.y4a{bottom:429.336576pt;}
.y7d{bottom:429.351360pt;}
.yda{bottom:430.302912pt;}
.yab{bottom:431.253120pt;}
.y18{bottom:434.956277pt;}
.y134{bottom:437.021376pt;}
.y20e{bottom:437.240352pt;}
.y182{bottom:442.563019pt;}
.y249{bottom:443.016352pt;}
.y1ab{bottom:443.417664pt;}
.y1dd{bottom:443.433792pt;}
.y49{bottom:446.936256pt;}
.y7c{bottom:446.951040pt;}
.yd9{bottom:447.582720pt;}
.yaa{bottom:448.532928pt;}
.y20d{bottom:451.960032pt;}
.y17{bottom:452.236085pt;}
.y133{bottom:454.621056pt;}
.y181{bottom:456.642667pt;}
.y248{bottom:457.736032pt;}
.y1aa{bottom:461.017344pt;}
.y1dc{bottom:461.033472pt;}
.y48{bottom:464.216064pt;}
.y7b{bottom:464.230848pt;}
.yd8{bottom:464.862528pt;}
.ya9{bottom:466.132608pt;}
.y20c{bottom:468.279968pt;}
.y16{bottom:469.515893pt;}
.y107{bottom:469.649664pt;}
.y132{bottom:471.900864pt;}
.y247{bottom:472.455712pt;}
.y1a9{bottom:478.617024pt;}
.y1db{bottom:478.633152pt;}
.y180{bottom:480.642539pt;}
.y47{bottom:481.815744pt;}
.y7a{bottom:481.830528pt;}
.yd7{bottom:482.142336pt;}
.y20b{bottom:482.999648pt;}
.ya8{bottom:483.412416pt;}
.y15{bottom:486.795701pt;}
.y106{bottom:486.929472pt;}
.y246{bottom:487.175392pt;}
.y131{bottom:489.180672pt;}
.y1a8{bottom:496.216704pt;}
.y1da{bottom:496.232832pt;}
.y20a{bottom:497.719328pt;}
.y46{bottom:499.415424pt;}
.yd6{bottom:499.422144pt;}
.y79{bottom:499.430208pt;}
.ya7{bottom:500.692224pt;}
.y245{bottom:501.575264pt;}
.y14{bottom:504.075509pt;}
.y105{bottom:504.209280pt;}
.y130{bottom:506.460480pt;}
.y17f{bottom:508.162955pt;}
.y209{bottom:512.439008pt;}
.y1a7{bottom:513.816384pt;}
.y1d9{bottom:513.832512pt;}
.y244{bottom:516.614752pt;}
.y45{bottom:517.015104pt;}
.yd5{bottom:517.021824pt;}
.y78{bottom:517.029888pt;}
.ya6{bottom:517.972032pt;}
.y13{bottom:521.355317pt;}
.y104{bottom:521.489088pt;}
.y17e{bottom:521.602667pt;}
.y12f{bottom:523.740288pt;}
.y208{bottom:528.758944pt;}
.y243{bottom:531.014624pt;}
.y1a6{bottom:531.416064pt;}
.y1d8{bottom:531.432192pt;}
.y44{bottom:534.294912pt;}
.yd4{bottom:534.301632pt;}
.y77{bottom:534.309696pt;}
.ya5{bottom:535.251840pt;}
.y12{bottom:538.635125pt;}
.y103{bottom:539.088768pt;}
.y12e{bottom:541.020096pt;}
.y207{bottom:543.158816pt;}
.y242{bottom:546.054112pt;}
.y1a5{bottom:549.015744pt;}
.y1d7{bottom:549.031872pt;}
.yd3{bottom:551.581440pt;}
.y43{bottom:551.894592pt;}
.y76{bottom:551.909376pt;}
.ya4{bottom:552.531648pt;}
.y11{bottom:556.234805pt;}
.y102{bottom:556.368576pt;}
.y206{bottom:557.878496pt;}
.y12d{bottom:558.299904pt;}
.y241{bottom:560.773792pt;}
.y1a4{bottom:566.615424pt;}
.y1d6{bottom:566.631552pt;}
.yd2{bottom:568.861248pt;}
.y42{bottom:569.494272pt;}
.y75{bottom:569.509056pt;}
.ya3{bottom:570.131328pt;}
.y205{bottom:572.598176pt;}
.y10{bottom:573.514613pt;}
.y101{bottom:573.648384pt;}
.y240{bottom:575.173664pt;}
.y18e{bottom:575.683947pt;}
.y12c{bottom:575.899584pt;}
.y1d5{bottom:584.231232pt;}
.y1a3{bottom:584.534976pt;}
.yd1{bottom:586.141056pt;}
.y41{bottom:587.093952pt;}
.y74{bottom:587.108736pt;}
.ya2{bottom:587.411136pt;}
.y204{bottom:588.918112pt;}
.y23f{bottom:590.213152pt;}
.y18d{bottom:590.403531pt;}
.yf{bottom:590.794421pt;}
.y100{bottom:590.928192pt;}
.y151{bottom:592.324331pt;}
.y12b{bottom:593.179392pt;}
.y1d4{bottom:601.830912pt;}
.y1a2{bottom:602.134656pt;}
.yd0{bottom:603.420864pt;}
.y203{bottom:603.637792pt;}
.y40{bottom:604.373760pt;}
.y73{bottom:604.388544pt;}
.y23e{bottom:604.613024pt;}
.ya1{bottom:604.690944pt;}
.y18c{bottom:604.803147pt;}
.y150{bottom:607.043915pt;}
.ye{bottom:608.074229pt;}
.yff{bottom:608.209088pt;}
.y12a{bottom:610.459200pt;}
.y160{bottom:611.523083pt;}
.y202{bottom:618.357472pt;}
.y23d{bottom:619.332704pt;}
.y1d3{bottom:619.430592pt;}
.y18b{bottom:619.522731pt;}
.y1a1{bottom:619.734336pt;}
.ycf{bottom:621.020544pt;}
.y14f{bottom:621.763499pt;}
.ya0{bottom:621.970752pt;}
.y3f{bottom:621.973440pt;}
.y72{bottom:621.988224pt;}
.yd{bottom:625.354037pt;}
.yfe{bottom:625.488896pt;}
.y15f{bottom:626.242667pt;}
.y129{bottom:627.739008pt;}
.y201{bottom:633.077152pt;}
.y23c{bottom:634.052384pt;}
.y18a{bottom:634.242315pt;}
.y14e{bottom:636.483083pt;}
.y1a0{bottom:637.334016pt;}
.y1d2{bottom:637.350144pt;}
.yce{bottom:638.300352pt;}
.y9f{bottom:639.250560pt;}
.y3e{bottom:639.573120pt;}
.y71{bottom:639.587904pt;}
.yc{bottom:642.633845pt;}
.yfd{bottom:643.088576pt;}
.y128{bottom:645.018816pt;}
.y23b{bottom:648.772064pt;}
.y200{bottom:649.397088pt;}
.y14d{bottom:651.202667pt;}
.y19f{bottom:654.933696pt;}
.y1d1{bottom:654.949824pt;}
.ycd{bottom:655.580160pt;}
.y9e{bottom:656.530368pt;}
.y3d{bottom:657.172800pt;}
.y70{bottom:657.187584pt;}
.yb{bottom:660.233525pt;}
.yfc{bottom:660.368384pt;}
.y127{bottom:662.298624pt;}
.y23a{bottom:663.491744pt;}
.y1ff{bottom:663.796960pt;}
.y19e{bottom:672.533376pt;}
.y1d0{bottom:672.549504pt;}
.ycc{bottom:672.859968pt;}
.y9d{bottom:674.130048pt;}
.y3c{bottom:674.452608pt;}
.y6f{bottom:674.787264pt;}
.ya{bottom:677.513333pt;}
.yfb{bottom:677.648192pt;}
.y239{bottom:678.211424pt;}
.y1fe{bottom:678.516640pt;}
.y126{bottom:679.898304pt;}
.y19d{bottom:690.133056pt;}
.ycb{bottom:690.139776pt;}
.y1cf{bottom:690.149184pt;}
.y3b{bottom:692.052288pt;}
.y6e{bottom:692.067072pt;}
.y238{bottom:692.931104pt;}
.y1fd{bottom:693.236320pt;}
.yfa{bottom:694.930752pt;}
.y125{bottom:697.178112pt;}
.y9c{bottom:705.489600pt;}
.yca{bottom:707.419584pt;}
.y237{bottom:707.650784pt;}
.y19c{bottom:707.732736pt;}
.y1ce{bottom:707.748864pt;}
.y1fc{bottom:707.956000pt;}
.y3a{bottom:709.651968pt;}
.y6d{bottom:709.666752pt;}
.yf9{bottom:712.210560pt;}
.y124{bottom:714.457920pt;}
.y236{bottom:722.370464pt;}
.yc9{bottom:725.019264pt;}
.y19b{bottom:725.332416pt;}
.y1cd{bottom:725.348544pt;}
.y6c{bottom:726.946560pt;}
.y39{bottom:727.251648pt;}
.y9{bottom:728.169717pt;}
.yf8{bottom:729.490368pt;}
.y123{bottom:731.737728pt;}
.y235{bottom:737.090144pt;}
.yc8{bottom:742.299072pt;}
.y19a{bottom:742.932096pt;}
.y1cc{bottom:742.948224pt;}
.y38{bottom:744.531456pt;}
.y6b{bottom:744.546240pt;}
.y8{bottom:745.449525pt;}
.y1fb{bottom:745.490240pt;}
.yf7{bottom:746.770176pt;}
.y122{bottom:749.017536pt;}
.y9b{bottom:749.969280pt;}
.y234{bottom:751.809824pt;}
.y199{bottom:760.851648pt;}
.y1cb{bottom:760.867776pt;}
.y37{bottom:762.131136pt;}
.y6a{bottom:762.145920pt;}
.y7{bottom:762.729333pt;}
.yf6{bottom:764.369856pt;}
.y233{bottom:766.529504pt;}
.yc7{bottom:773.338752pt;}
.y198{bottom:778.451328pt;}
.y1ca{bottom:778.467456pt;}
.y36{bottom:779.730816pt;}
.y69{bottom:779.745600pt;}
.y232{bottom:781.249184pt;}
.yf5{bottom:781.649664pt;}
.y6{bottom:784.150667pt;}
.y121{bottom:784.538112pt;}
.y231{bottom:795.968864pt;}
.y197{bottom:796.051008pt;}
.y1c9{bottom:796.067136pt;}
.y1fa{bottom:797.009792pt;}
.y68{bottom:797.025408pt;}
.y35{bottom:797.330496pt;}
.yf4{bottom:798.929472pt;}
.y9a{bottom:798.929856pt;}
.y230{bottom:810.688544pt;}
.y196{bottom:813.650688pt;}
.y1c8{bottom:813.666816pt;}
.y1f9{bottom:814.289600pt;}
.y67{bottom:814.625088pt;}
.y34{bottom:814.930176pt;}
.yf3{bottom:816.209280pt;}
.y99{bottom:816.209664pt;}
.yc6{bottom:816.219072pt;}
.y22f{bottom:825.408224pt;}
.y195{bottom:831.250368pt;}
.y1c7{bottom:831.266496pt;}
.y1f8{bottom:831.569408pt;}
.y33{bottom:832.209984pt;}
.y66{bottom:832.224768pt;}
.yf2{bottom:833.489088pt;}
.y98{bottom:833.489472pt;}
.y120{bottom:833.498688pt;}
.yc5{bottom:833.498880pt;}
.y22e{bottom:839.808096pt;}
.y5{bottom:843.754869pt;}
.y1f7{bottom:848.849216pt;}
.y194{bottom:848.850048pt;}
.y1c6{bottom:848.866176pt;}
.y32{bottom:849.809664pt;}
.y65{bottom:849.824448pt;}
.yf1{bottom:850.768896pt;}
.y97{bottom:850.769280pt;}
.y11f{bottom:850.778496pt;}
.yc4{bottom:850.778688pt;}
.y22d{bottom:854.527776pt;}
.y1f6{bottom:866.129024pt;}
.y193{bottom:866.769600pt;}
.y1c5{bottom:866.785728pt;}
.y31{bottom:867.409344pt;}
.y64{bottom:867.424128pt;}
.yf0{bottom:868.368576pt;}
.y96{bottom:868.368960pt;}
.y11e{bottom:868.378176pt;}
.yc3{bottom:868.378368pt;}
.y22c{bottom:869.247456pt;}
.y269{bottom:869.557728pt;}
.y270{bottom:869.558944pt;}
.y4{bottom:875.754357pt;}
.y1f5{bottom:883.408832pt;}
.y268{bottom:883.957600pt;}
.y26f{bottom:883.958816pt;}
.y22b{bottom:883.967136pt;}
.y192{bottom:884.369280pt;}
.y1c4{bottom:884.385408pt;}
.y30{bottom:884.689152pt;}
.y63{bottom:884.703936pt;}
.yef{bottom:885.648384pt;}
.y95{bottom:885.648768pt;}
.y11d{bottom:885.657984pt;}
.yc2{bottom:885.658176pt;}
.y267{bottom:898.677280pt;}
.y26e{bottom:898.678496pt;}
.y22a{bottom:898.686816pt;}
.y1f4{bottom:901.008512pt;}
.y191{bottom:901.968960pt;}
.y1c3{bottom:901.985088pt;}
.y2f{bottom:902.288832pt;}
.y62{bottom:902.303616pt;}
.yee{bottom:902.928192pt;}
.y94{bottom:902.928576pt;}
.y11c{bottom:902.937792pt;}
.yc1{bottom:902.937984pt;}
.y3{bottom:907.753845pt;}
.y266{bottom:913.396960pt;}
.y26d{bottom:913.398176pt;}
.y229{bottom:913.406496pt;}
.y1f3{bottom:918.288320pt;}
.y190{bottom:919.568640pt;}
.y1c2{bottom:919.584768pt;}
.y2e{bottom:919.888512pt;}
.y61{bottom:919.903296pt;}
.yed{bottom:920.208000pt;}
.y93{bottom:920.208384pt;}
.y11b{bottom:920.217600pt;}
.yc0{bottom:920.217792pt;}
.y265{bottom:928.116640pt;}
.y26c{bottom:928.117856pt;}
.y228{bottom:928.126176pt;}
.y18f{bottom:937.168320pt;}
.y1c1{bottom:937.184448pt;}
.y2d{bottom:937.488192pt;}
.y11a{bottom:937.497408pt;}
.ybf{bottom:937.497600pt;}
.y60{bottom:937.502976pt;}
.y2{bottom:939.753333pt;}
.y264{bottom:942.836320pt;}
.y26b{bottom:942.837536pt;}
.y227{bottom:942.845856pt;}
.y2c{bottom:954.768000pt;}
.y119{bottom:954.777216pt;}
.ybe{bottom:954.777408pt;}
.y5f{bottom:954.782784pt;}
.y1c0{bottom:954.784128pt;}
.y1f2{bottom:956.048000pt;}
.y263{bottom:957.556000pt;}
.y26a{bottom:957.557216pt;}
.y226{bottom:957.565536pt;}
.y1{bottom:972.057333pt;}
.y92{bottom:998.836000pt;}
.y271{bottom:998.839200pt;}
.y262{bottom:998.863328pt;}
.h1{height:44.267520pt;}
.h8{height:45.124992pt;}
.h7{height:50.974720pt;}
.h5{height:56.340480pt;}
.h6{height:57.576960pt;}
.h4{height:61.706240pt;}
.h2{height:111.339520pt;}
.h3{height:112.508160pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:76.533333pt;}
.x1{left:79.733333pt;}
.xc{left:95.733141pt;}
.x3{left:122.294293pt;}
.x16{left:139.253717pt;}
.x10{left:144.373013pt;}
.x17{left:159.093333pt;}
.x9{left:163.252885pt;}
.x15{left:165.493205pt;}
.x13{left:166.773077pt;}
.x5{left:168.054517pt;}
.x2{left:169.013333pt;}
.xa{left:175.733333pt;}
.xb{left:179.253333pt;}
.x14{left:192.053333pt;}
.x8{left:196.533333pt;}
.x7{left:211.253333pt;}
.x4{left:223.734901pt;}
.x6{left:278.773333pt;}
.x11{left:399.733333pt;}
.xd{left:423.732309pt;}
.xf{left:439.733141pt;}
.x12{left:549.812245pt;}
}




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