
    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_6e9c3e070e5735074d65650e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_d8c8a50965dc14c5f7b1cb18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_1037d623e01633b837508452.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.856934;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_ab843626bb840d13fbb041d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_89ff8830d5deff9a4cad44cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2c9f6c2cb6e5180f82eeb934.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_634cd7470e0f69d802c439cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.124320px;}
.ls4e{letter-spacing:-3.974400px;}
.lsf{letter-spacing:-3.666240px;}
.ls37{letter-spacing:-3.510720px;}
.lsd{letter-spacing:-3.502080px;}
.ls38{letter-spacing:-3.444480px;}
.ls2f{letter-spacing:-3.179520px;}
.ls4b{letter-spacing:-2.903040px;}
.lsa{letter-spacing:-2.900160px;}
.ls2d{letter-spacing:-2.848320px;}
.ls26{letter-spacing:-2.845440px;}
.ls5a{letter-spacing:-2.842560px;}
.ls14{letter-spacing:-2.736000px;}
.ls30{letter-spacing:-2.583360px;}
.ls36{letter-spacing:-2.450880px;}
.ls59{letter-spacing:-2.419200px;}
.ls3c{letter-spacing:-2.358720px;}
.lsc{letter-spacing:-2.352960px;}
.ls29{letter-spacing:-2.131200px;}
.ls7{letter-spacing:-2.079360px;}
.ls2c{letter-spacing:-2.053440px;}
.ls15{letter-spacing:-2.024640px;}
.ls47{letter-spacing:-1.935360px;}
.ls6{letter-spacing:-1.929600px;}
.ls1f{letter-spacing:-1.874880px;}
.ls16{letter-spacing:-1.805760px;}
.ls51{letter-spacing:-1.774080px;}
.ls23{letter-spacing:-1.751040px;}
.ls8{letter-spacing:-1.722240px;}
.ls27{letter-spacing:-1.670400px;}
.ls22{letter-spacing:-1.663200px;}
.ls10{letter-spacing:-1.641600px;}
.ls20{letter-spacing:-1.632960px;}
.ls57{letter-spacing:-1.589760px;}
.ls21{letter-spacing:-1.512000px;}
.ls24{letter-spacing:-1.477440px;}
.ls2a{letter-spacing:-1.457280px;}
.ls3d{letter-spacing:-1.451520px;}
.ls28{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.422720px;}
.ls11{letter-spacing:-1.368000px;}
.ls3a{letter-spacing:-1.324800px;}
.ls12{letter-spacing:-1.313280px;}
.lse{letter-spacing:-1.258560px;}
.ls4{letter-spacing:-1.188000px;}
.ls58{letter-spacing:-1.140480px;}
.ls2e{letter-spacing:-1.126080px;}
.ls25{letter-spacing:-1.094400px;}
.ls13{letter-spacing:-1.039680px;}
.ls3e{letter-spacing:-0.967680px;}
.ls17{letter-spacing:-0.950400px;}
.ls49{letter-spacing:-0.907200px;}
.lsb{letter-spacing:-0.820800px;}
.ls52{letter-spacing:-0.760320px;}
.ls4f{letter-spacing:-0.728640px;}
.ls53{letter-spacing:-0.725760px;}
.ls5{letter-spacing:-0.712800px;}
.ls2b{letter-spacing:-0.596160px;}
.ls45{letter-spacing:-0.463680px;}
.ls3{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.132480px;}
.ls56{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.447840px;}
.ls5b{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.728640px;}
.ls4c{letter-spacing:2.177280px;}
.ls35{letter-spacing:2.185920px;}
.ls50{letter-spacing:2.851200px;}
.ls54{letter-spacing:3.576960px;}
.ls43{letter-spacing:3.656448px;}
.ls4d{letter-spacing:3.722688px;}
.ls1b{letter-spacing:4.924800px;}
.ls44{letter-spacing:5.019840px;}
.ls32{letter-spacing:5.034240px;}
.ls3f{letter-spacing:6.491520px;}
.ls33{letter-spacing:7.948800px;}
.ls46{letter-spacing:9.339840px;}
.ls19{letter-spacing:10.800000px;}
.ls42{letter-spacing:13.711680px;}
.ls3b{letter-spacing:16.560000px;}
.ls1e{letter-spacing:17.898048px;}
.ls41{letter-spacing:18.017280px;}
.ls55{letter-spacing:19.408320px;}
.ls39{letter-spacing:22.322880px;}
.ls1a{letter-spacing:23.639040px;}
.ls40{letter-spacing:23.780160px;}
.ls48{letter-spacing:30.934080px;}
.ls1c{letter-spacing:38.030400px;}
.ls2{letter-spacing:51.120000px;}
.ls1d{letter-spacing:91.327680px;}
.ls18{letter-spacing:238.351680px;}
.ls31{letter-spacing:379.451520px;}
.ls0{letter-spacing:745.541280px;}
.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;}
}
.ws100{word-spacing:-18.000000px;}
.ws104{word-spacing:-16.891200px;}
.ws3{word-spacing:-16.560000px;}
.ws98{word-spacing:-15.963840px;}
.ws109{word-spacing:-15.840000px;}
.wsde{word-spacing:-15.831360px;}
.ws105{word-spacing:-15.433920px;}
.ws103{word-spacing:-15.235200px;}
.wsd2{word-spacing:-15.120000px;}
.ws38{word-spacing:-15.102720px;}
.ws106{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.837760px;}
.ws108{word-spacing:-14.699520px;}
.wsb5{word-spacing:-14.506560px;}
.wse8{word-spacing:-14.382720px;}
.ws2{word-spacing:-14.319360px;}
.ws10a{word-spacing:-14.212800px;}
.wsc9{word-spacing:-14.152320px;}
.ws7a{word-spacing:-14.109120px;}
.ws3a{word-spacing:-13.976640px;}
.ws7b{word-spacing:-13.711680px;}
.ws9{word-spacing:-13.680000px;}
.ws32{word-spacing:-13.668480px;}
.ws39{word-spacing:-13.380480px;}
.ws10d{word-spacing:-13.184640px;}
.ws7c{word-spacing:-13.049280px;}
.ws36{word-spacing:-13.017600px;}
.wsa5{word-spacing:-12.859200px;}
.ws10c{word-spacing:-12.761280px;}
.ws10b{word-spacing:-12.700800px;}
.wsc{word-spacing:-12.366720px;}
.ws10f{word-spacing:-12.277440px;}
.ws6{word-spacing:-12.257280px;}
.wsd3{word-spacing:-12.216960px;}
.ws1{word-spacing:-11.880000px;}
.ws31{word-spacing:-11.793600px;}
.ws8{word-spacing:-11.600640px;}
.ws34{word-spacing:-11.327040px;}
.ws0{word-spacing:-11.167200px;}
.ws35{word-spacing:-10.998720px;}
.ws37{word-spacing:-10.886400px;}
.ws5{word-spacing:-10.779840px;}
.wsa{word-spacing:-10.725120px;}
.ws33{word-spacing:-10.560960px;}
.wsb{word-spacing:-10.342080px;}
.ws7{word-spacing:-10.177920px;}
.ws93{word-spacing:-3.576960px;}
.ws2b{word-spacing:-3.337920px;}
.wsb7{word-spacing:-2.980800px;}
.ws53{word-spacing:-2.681280px;}
.ws2e{word-spacing:-2.518560px;}
.wsf2{word-spacing:-2.450880px;}
.ws1e{word-spacing:-2.407680px;}
.ws2a{word-spacing:-2.352960px;}
.ws9b{word-spacing:-2.119680px;}
.wsae{word-spacing:-2.116800px;}
.ws81{word-spacing:-1.589760px;}
.wsac{word-spacing:-1.523520px;}
.wsa6{word-spacing:-1.209600px;}
.ws10{word-spacing:-1.092960px;}
.wsf3{word-spacing:-0.993600px;}
.ws47{word-spacing:-0.930240px;}
.wsf0{word-spacing:-0.861120px;}
.ws55{word-spacing:-0.820800px;}
.ws76{word-spacing:-0.728640px;}
.ws3b{word-spacing:-0.725760px;}
.ws1c{word-spacing:-0.711360px;}
.wse{word-spacing:-0.617760px;}
.ws4c{word-spacing:-0.547200px;}
.wsec{word-spacing:-0.241920px;}
.ws74{word-spacing:-0.132480px;}
.wsdd{word-spacing:-0.063360px;}
.ws6c{word-spacing:-0.057600px;}
.wsd{word-spacing:0.000000px;}
.ws17{word-spacing:0.109440px;}
.ws6b{word-spacing:0.172800px;}
.wsaf{word-spacing:0.181440px;}
.wsad{word-spacing:0.241920px;}
.ws14{word-spacing:0.289440px;}
.wsf{word-spacing:0.332640px;}
.wsb6{word-spacing:0.397440px;}
.ws2c{word-spacing:0.492480px;}
.ws5a{word-spacing:0.547200px;}
.wsbd{word-spacing:0.596160px;}
.ws75{word-spacing:0.662400px;}
.ws16{word-spacing:0.711360px;}
.ws2d{word-spacing:0.725760px;}
.ws82{word-spacing:0.728640px;}
.ws3d{word-spacing:0.786240px;}
.ws3c{word-spacing:0.907200px;}
.ws2f{word-spacing:0.950400px;}
.wsf9{word-spacing:0.967680px;}
.ws101{word-spacing:0.993600px;}
.ws58{word-spacing:1.039680px;}
.wsbf{word-spacing:1.126080px;}
.ws1a{word-spacing:1.258560px;}
.ws70{word-spacing:1.324800px;}
.wsc0{word-spacing:1.368000px;}
.ws10e{word-spacing:1.451520px;}
.ws78{word-spacing:1.457280px;}
.ws69{word-spacing:1.477440px;}
.wsaa{word-spacing:1.632960px;}
.ws24{word-spacing:1.641600px;}
.ws3e{word-spacing:1.663200px;}
.ws102{word-spacing:1.722240px;}
.ws12{word-spacing:1.736640px;}
.ws80{word-spacing:1.854720px;}
.wsf8{word-spacing:1.935360px;}
.ws67{word-spacing:1.969920px;}
.ws95{word-spacing:2.053440px;}
.ws15{word-spacing:2.079360px;}
.ws6f{word-spacing:2.119680px;}
.wsf1{word-spacing:2.177280px;}
.ws7f{word-spacing:2.185920px;}
.ws18{word-spacing:2.352960px;}
.ws107{word-spacing:2.450880px;}
.wsa3{word-spacing:2.583360px;}
.wse5{word-spacing:2.661120px;}
.wsab{word-spacing:2.782080px;}
.wsb4{word-spacing:2.848320px;}
.wsf7{word-spacing:2.903040px;}
.ws61{word-spacing:3.064320px;}
.wse6{word-spacing:3.084480px;}
.wsd1{word-spacing:3.144960px;}
.wsbc{word-spacing:3.312000px;}
.ws28{word-spacing:3.392640px;}
.ws97{word-spacing:3.444480px;}
.ws19{word-spacing:3.502080px;}
.wsc5{word-spacing:3.510720px;}
.ws77{word-spacing:3.576960px;}
.ws79{word-spacing:3.643200px;}
.ws1b{word-spacing:3.666240px;}
.wseb{word-spacing:3.674880px;}
.wse7{word-spacing:4.112640px;}
.ws94{word-spacing:4.173120px;}
.wsa1{word-spacing:4.239360px;}
.wsd7{word-spacing:4.536000px;}
.wse0{word-spacing:4.703040px;}
.ws27{word-spacing:4.815360px;}
.ws86{word-spacing:5.034240px;}
.wsd8{word-spacing:5.080320px;}
.ws6e{word-spacing:5.630400px;}
.wsfa{word-spacing:5.927040px;}
.ws52{word-spacing:5.964480px;}
.wscc{word-spacing:5.987520px;}
.wsea{word-spacing:6.082560px;}
.ws30{word-spacing:6.130080px;}
.wsfe{word-spacing:6.160320px;}
.ws25{word-spacing:6.292800px;}
.ws9d{word-spacing:6.359040px;}
.wsb0{word-spacing:6.425280px;}
.wscd{word-spacing:6.471360px;}
.ws7d{word-spacing:6.491520px;}
.wsef{word-spacing:6.531840px;}
.wsfb{word-spacing:6.955200px;}
.wsfd{word-spacing:7.021440px;}
.ws8c{word-spacing:7.087680px;}
.wsce{word-spacing:7.378560px;}
.wsd0{word-spacing:7.439040px;}
.ws11{word-spacing:7.525440px;}
.wse4{word-spacing:7.617600px;}
.ws7e{word-spacing:7.882560px;}
.wsa8{word-spacing:7.922880px;}
.ws89{word-spacing:7.948800px;}
.wscf{word-spacing:8.406720px;}
.ws91{word-spacing:8.544960px;}
.ws23{word-spacing:8.809920px;}
.wsa7{word-spacing:8.830080px;}
.wsd9{word-spacing:9.074880px;}
.ws44{word-spacing:9.138240px;}
.wse2{word-spacing:9.339840px;}
.ws92{word-spacing:9.406080px;}
.wsbb{word-spacing:9.936000px;}
.wsa9{word-spacing:10.281600px;}
.ws5f{word-spacing:10.287360px;}
.wsf4{word-spacing:10.342080px;}
.wsb3{word-spacing:10.465920px;}
.wsc2{word-spacing:10.532160px;}
.ws49{word-spacing:10.560960px;}
.ws48{word-spacing:10.615680px;}
.ws8a{word-spacing:10.797120px;}
.wsf5{word-spacing:10.825920px;}
.ws60{word-spacing:11.053440px;}
.ws9f{word-spacing:11.393280px;}
.wsca{word-spacing:11.459520px;}
.wse3{word-spacing:12.121920px;}
.ws8b{word-spacing:12.188160px;}
.ws9a{word-spacing:12.254400px;}
.ws3f{word-spacing:12.421440px;}
.wscb{word-spacing:12.718080px;}
.wsfc{word-spacing:12.761280px;}
.wsdf{word-spacing:12.784320px;}
.wsba{word-spacing:12.850560px;}
.ws1f{word-spacing:13.132800px;}
.wsd6{word-spacing:13.184640px;}
.wsb2{word-spacing:13.380480px;}
.ws54{word-spacing:13.461120px;}
.wse1{word-spacing:13.645440px;}
.ws99{word-spacing:13.711680px;}
.wsb1{word-spacing:14.307840px;}
.wsed{word-spacing:14.636160px;}
.ws62{word-spacing:14.883840px;}
.ws65{word-spacing:14.938560px;}
.ws8e{word-spacing:15.102720px;}
.wsee{word-spacing:15.120000px;}
.wsc7{word-spacing:15.168960px;}
.ws51{word-spacing:16.032960px;}
.wsf6{word-spacing:16.087680px;}
.wsc8{word-spacing:16.295040px;}
.ws66{word-spacing:16.361280px;}
.ws87{word-spacing:16.560000px;}
.ws5c{word-spacing:16.799040px;}
.wsc6{word-spacing:17.156160px;}
.wsd4{word-spacing:17.539200px;}
.ws1d{word-spacing:17.784000px;}
.ws84{word-spacing:17.951040px;}
.ws85{word-spacing:18.017280px;}
.wsc1{word-spacing:18.613440px;}
.wsd5{word-spacing:18.930240px;}
.ws88{word-spacing:19.474560px;}
.ws72{word-spacing:20.070720px;}
.ws29{word-spacing:20.355840px;}
.ws13{word-spacing:20.453760px;}
.ws71{word-spacing:20.600640px;}
.ws6a{word-spacing:20.684160px;}
.ws50{word-spacing:20.793600px;}
.wsc3{word-spacing:20.865600px;}
.ws73{word-spacing:20.931840px;}
.ws83{word-spacing:21.461760px;}
.ws4e{word-spacing:22.052160px;}
.ws46{word-spacing:22.106880px;}
.ws4d{word-spacing:22.216320px;}
.wsa0{word-spacing:22.322880px;}
.wsb9{word-spacing:23.448960px;}
.ws21{word-spacing:23.584320px;}
.wsb8{word-spacing:23.780160px;}
.wsbe{word-spacing:24.376320px;}
.ws22{word-spacing:24.952320px;}
.ws4f{word-spacing:25.007040px;}
.wsff{word-spacing:25.171200px;}
.ws9e{word-spacing:25.237440px;}
.wsa2{word-spacing:25.767360px;}
.wsdc{word-spacing:26.363520px;}
.ws96{word-spacing:26.628480px;}
.ws43{word-spacing:26.812800px;}
.wse9{word-spacing:27.754560px;}
.ws42{word-spacing:27.907200px;}
.ws6d{word-spacing:28.681920px;}
.ws63{word-spacing:29.001600px;}
.wsa4{word-spacing:29.543040px;}
.wsc4{word-spacing:30.139200px;}
.ws64{word-spacing:30.752640px;}
.ws59{word-spacing:32.175360px;}
.ws90{word-spacing:32.987520px;}
.ws45{word-spacing:33.324480px;}
.wsdb{word-spacing:33.517440px;}
.ws5d{word-spacing:33.652800px;}
.wsda{word-spacing:33.782400px;}
.ws8f{word-spacing:33.848640px;}
.ws5e{word-spacing:36.169920px;}
.ws8d{word-spacing:38.154240px;}
.ws20{word-spacing:39.070080px;}
.ws56{word-spacing:39.124800px;}
.ws5b{word-spacing:39.343680px;}
.ws57{word-spacing:39.398400px;}
.ws40{word-spacing:40.492800px;}
.ws41{word-spacing:40.766400px;}
.ws4a{word-spacing:42.298560px;}
.ws26{word-spacing:43.721280px;}
.ws9c{word-spacing:43.917120px;}
.ws4b{word-spacing:47.989440px;}
.ws68{word-spacing:92.695680px;}
._9{margin-left:-4.375296px;}
._7{margin-left:-3.302208px;}
._2{margin-left:-2.147904px;}
._1{margin-left:-1.121472px;}
._0{width:1.130976px;}
._3{width:2.285280px;}
._4{width:3.428928px;}
._8{width:4.610592px;}
._d{width:5.714784px;}
._a{width:7.152768px;}
._e{width:8.421120px;}
._c{width:9.453312px;}
._b{width:12.936672px;}
._6{width:19.416096px;}
._5{width:30.984768px;}
.fc9{color:rgb(17,85,204);}
.fc7{color:rgb(77,81,86);}
.fc4{color:rgb(0,0,9);}
.fc1{color:rgb(0,0,255);}
.fc8{color:rgb(25,25,25);}
.fc6{color:rgb(17,17,17);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(69,69,69);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs9{font-size:57.600000px;}
.fs7{font-size:60.480000px;}
.fs3{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fsc{font-size:69.120000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fsb{font-size:90.720000px;}
.fs2{font-size:96.480000px;}
.fsd{font-size:99.360000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.240000px;}
.y28{bottom:3.600000px;}
.y1fa{bottom:20.520000px;}
.y237{bottom:20.880000px;}
.y211{bottom:38.160000px;}
.y3{bottom:45.357840px;}
.y216{bottom:55.080000px;}
.y21b{bottom:55.440000px;}
.y2{bottom:59.400000px;}
.y23b{bottom:72.720000px;}
.y1fc{bottom:93.600000px;}
.y29{bottom:102.240000px;}
.y65{bottom:102.600000px;}
.y34{bottom:109.431360px;}
.y11d{bottom:114.122880px;}
.yed{bottom:114.881760px;}
.y1da{bottom:115.200000px;}
.y1eb{bottom:116.639850px;}
.y9d{bottom:116.799840px;}
.yc6{bottom:118.483200px;}
.y21{bottom:118.800000px;}
.y133{bottom:120.235680px;}
.y234{bottom:120.240000px;}
.y175{bottom:120.250080px;}
.y1c3{bottom:121.066560px;}
.y19c{bottom:121.320000px;}
.y142{bottom:122.035680px;}
.y75{bottom:122.075280px;}
.y33{bottom:123.117120px;}
.y104{bottom:124.997040px;}
.y201{bottom:127.800000px;}
.y157{bottom:128.527200px;}
.y11c{bottom:133.200000px;}
.yec{bottom:133.594560px;}
.y1d9{bottom:133.920000px;}
.y1ea{bottom:135.735840px;}
.y9c{bottom:135.876960px;}
.y32{bottom:136.802880px;}
.y132{bottom:137.517840px;}
.yc5{bottom:137.560320px;}
.y19b{bottom:138.960000px;}
.y141{bottom:139.317840px;}
.y174{bottom:139.327200px;}
.y1c2{bottom:140.143680px;}
.y74{bottom:141.152400px;}
.y103{bottom:143.709840px;}
.y231{bottom:145.797840px;}
.y156{bottom:147.240000px;}
.y200{bottom:147.960000px;}
.y31{bottom:150.845040px;}
.y11b{bottom:152.280000px;}
.yeb{bottom:152.671680px;}
.y1d8{bottom:153.000000px;}
.y235{bottom:154.440000px;}
.y131{bottom:154.800000px;}
.y1e9{bottom:154.812960px;}
.y9b{bottom:154.954080px;}
.y19a{bottom:156.240000px;}
.y140{bottom:156.600000px;}
.yc4{bottom:156.637440px;}
.y173{bottom:158.040000px;}
.y1c1{bottom:159.220800px;}
.y73{bottom:160.229520px;}
.y155{bottom:160.914960px;}
.y233{bottom:162.720000px;}
.y102{bottom:162.786960px;}
.y230{bottom:163.080000px;}
.y206{bottom:168.479850px;}
.y30{bottom:171.000000px;}
.yea{bottom:171.748800px;}
.y1d7{bottom:172.080000px;}
.y130{bottom:172.138320px;}
.y199{bottom:173.160000px;}
.y1e8{bottom:173.525760px;}
.y9a{bottom:173.666880px;}
.y13f{bottom:174.271680px;}
.yc3{bottom:175.350240px;}
.y172{bottom:177.120000px;}
.y1c0{bottom:177.933600px;}
.y72{bottom:178.942320px;}
.y232{bottom:180.720000px;}
.y101{bottom:181.864080px;}
.y2f{bottom:183.960000px;}
.y205{bottom:185.760000px;}
.y11a{bottom:190.080000px;}
.ye9{bottom:190.461600px;}
.y198{bottom:190.800000px;}
.y12f{bottom:191.215440px;}
.y1e7{bottom:192.602880px;}
.y99{bottom:192.744000px;}
.y13e{bottom:193.348800px;}
.yc2{bottom:194.427360px;}
.y171{bottom:195.840000px;}
.y1bf{bottom:197.010720px;}
.y71{bottom:198.019440px;}
.y100{bottom:200.941200px;}
.y204{bottom:203.040000px;}
.y119{bottom:209.160000px;}
.ye8{bottom:209.538720px;}
.y197{bottom:209.880000px;}
.y12e{bottom:210.292560px;}
.y1d6{bottom:210.600000px;}
.y1e6{bottom:211.680000px;}
.y98{bottom:211.821120px;}
.y13d{bottom:212.061600px;}
.y170{bottom:212.760000px;}
.yc1{bottom:213.504480px;}
.y20{bottom:214.920000px;}
.y22e{bottom:215.280000px;}
.y1be{bottom:216.087840px;}
.y70{bottom:217.096560px;}
.y5d{bottom:217.800000px;}
.yff{bottom:219.654000px;}
.y118{bottom:227.880000px;}
.ye7{bottom:228.615840px;}
.y196{bottom:228.960000px;}
.y12d{bottom:229.369680px;}
.y16f{bottom:230.760000px;}
.y1e5{bottom:230.780160px;}
.y97{bottom:230.898240px;}
.y13c{bottom:231.138720px;}
.yc0{bottom:232.217280px;}
.y27{bottom:234.696960px;}
.y2e{bottom:234.703440px;}
.y1bd{bottom:235.164960px;}
.y6f{bottom:235.809360px;}
.y22d{bottom:236.160000px;}
.yfe{bottom:238.731120px;}
.y203{bottom:241.200000px;}
.y117{bottom:246.960000px;}
.ye6{bottom:247.328640px;}
.y195{bottom:247.680000px;}
.y12c{bottom:248.082480px;}
.y1d5{bottom:249.479850px;}
.y1e4{bottom:249.492960px;}
.y16e{bottom:249.549840px;}
.y96{bottom:249.611040px;}
.y13b{bottom:250.215840px;}
.y43{bottom:250.920000px;}
.y26{bottom:251.263440px;}
.y2d{bottom:251.269920px;}
.ybf{bottom:251.294400px;}
.y22c{bottom:253.440000px;}
.y1bc{bottom:253.877760px;}
.y6e{bottom:254.886480px;}
.yfd{bottom:257.808240px;}
.y229{bottom:258.477840px;}
.y202{bottom:258.480000px;}
.y116{bottom:266.063040px;}
.ye5{bottom:266.405760px;}
.y194{bottom:266.772960px;}
.y22f{bottom:267.120000px;}
.y12b{bottom:267.159600px;}
.y25{bottom:267.829920px;}
.y2c{bottom:267.836400px;}
.y1d4{bottom:268.560000px;}
.y1e3{bottom:268.570080px;}
.y16d{bottom:268.626960px;}
.y95{bottom:268.688160px;}
.y13a{bottom:268.928640px;}
.ybe{bottom:270.007200px;}
.y1bb{bottom:272.954880px;}
.y228{bottom:275.760000px;}
.yfc{bottom:276.521040px;}
.y24{bottom:284.396400px;}
.y2b{bottom:284.402880px;}
.y115{bottom:284.775840px;}
.ye4{bottom:285.482880px;}
.y193{bottom:285.850080px;}
.y12a{bottom:286.236720px;}
.y1d3{bottom:287.640000px;}
.y1e2{bottom:287.647200px;}
.y16c{bottom:287.704080px;}
.y94{bottom:287.765280px;}
.y139{bottom:288.005760px;}
.ybd{bottom:288.766080px;}
.y6d{bottom:291.600000px;}
.y1ba{bottom:292.032000px;}
.y22b{bottom:292.680000px;}
.yfb{bottom:295.598160px;}
.y23{bottom:300.593520px;}
.y2a{bottom:300.600000px;}
.y114{bottom:303.852960px;}
.ye3{bottom:304.560000px;}
.y192{bottom:304.927200px;}
.y129{bottom:304.949520px;}
.y1fb{bottom:306.000000px;}
.y1d2{bottom:306.360000px;}
.y16b{bottom:306.416880px;}
.y93{bottom:306.478080px;}
.y138{bottom:307.082880px;}
.ybc{bottom:308.207520px;}
.y22a{bottom:310.320000px;}
.y6c{bottom:310.680000px;}
.y1b9{bottom:310.744800px;}
.yfa{bottom:314.675280px;}
.y22{bottom:317.160000px;}
.y113{bottom:322.930080px;}
.y191{bottom:323.640000px;}
.ye2{bottom:323.642880px;}
.y128{bottom:324.026640px;}
.y1d1{bottom:325.440000px;}
.y16a{bottom:325.494000px;}
.y92{bottom:325.555200px;}
.y137{bottom:326.160000px;}
.y1ff{bottom:326.880000px;}
.ybb{bottom:327.284640px;}
.y6b{bottom:328.320000px;}
.y1b8{bottom:329.821920px;}
.yf9{bottom:333.388080px;}
.y112{bottom:342.007200px;}
.y190{bottom:342.360000px;}
.ye1{bottom:342.720000px;}
.y127{bottom:343.103760px;}
.y1fe{bottom:344.160000px;}
.y136{bottom:344.520000px;}
.y169{bottom:344.571120px;}
.y91{bottom:344.632320px;}
.y225{bottom:345.240000px;}
.y6a{bottom:345.600000px;}
.yba{bottom:346.361760px;}
.y1b7{bottom:348.899040px;}
.yf8{bottom:352.465200px;}
.y1f{bottom:358.200000px;}
.y18f{bottom:359.640000px;}
.y111{bottom:360.720000px;}
.ye0{bottom:361.800000px;}
.y126{bottom:361.816560px;}
.y69{bottom:362.880000px;}
.y1d0{bottom:363.248640px;}
.y168{bottom:363.283920px;}
.y90{bottom:363.345120px;}
.yb9{bottom:365.074560px;}
.y224{bottom:366.117840px;}
.y226{bottom:366.120000px;}
.y1b6{bottom:367.611840px;}
.yf7{bottom:371.542320px;}
.y227{bottom:374.760000px;}
.y18e{bottom:376.920000px;}
.y110{bottom:379.800000px;}
.y68{bottom:380.160000px;}
.y1c{bottom:380.520000px;}
.y125{bottom:380.893680px;}
.y1fd{bottom:382.320000px;}
.y1cf{bottom:382.325760px;}
.y167{bottom:382.361040px;}
.y8f{bottom:382.422240px;}
.y52{bottom:382.679850px;}
.y223{bottom:383.400000px;}
.yb8{bottom:384.151680px;}
.y1b5{bottom:386.688960px;}
.yf6{bottom:390.619440px;}
.y18d{bottom:394.200000px;}
.y10f{bottom:398.880000px;}
.y1b{bottom:399.232800px;}
.y1e{bottom:399.240000px;}
.ydf{bottom:399.600000px;}
.y124{bottom:399.970800px;}
.y1ce{bottom:401.402880px;}
.y166{bottom:401.438160px;}
.y8e{bottom:401.499360px;}
.y36{bottom:402.840000px;}
.yb7{bottom:403.228800px;}
.y1b4{bottom:405.766080px;}
.yf5{bottom:409.332240px;}
.y18c{bottom:411.840000px;}
.y1a{bottom:414.718560px;}
.y154{bottom:416.882880px;}
.y10e{bottom:417.621600px;}
.yde{bottom:418.692960px;}
.y123{bottom:419.047920px;}
.y1cd{bottom:420.480000px;}
.y165{bottom:420.515280px;}
.y8d{bottom:420.576480px;}
.yb6{bottom:421.941600px;}
.y51{bottom:423.002880px;}
.y1b3{bottom:424.843200px;}
.yf4{bottom:428.409360px;}
.y1f9{bottom:429.840000px;}
.y19{bottom:430.560000px;}
.y18b{bottom:430.581600px;}
.y220{bottom:430.920000px;}
.y153{bottom:435.967200px;}
.y10d{bottom:436.698720px;}
.ydd{bottom:437.405760px;}
.y122{bottom:437.760720px;}
.y50{bottom:439.200000px;}
.y164{bottom:439.228080px;}
.y8c{bottom:439.289280px;}
.yb5{bottom:441.018720px;}
.y1b2{bottom:443.556000px;}
.y18{bottom:446.016960px;}
.yf3{bottom:447.486480px;}
.y37{bottom:448.560000px;}
.y18a{bottom:449.658720px;}
.y21f{bottom:451.437840px;}
.y221{bottom:451.440000px;}
.y152{bottom:453.960000px;}
.y4f{bottom:455.760000px;}
.y10c{bottom:455.775840px;}
.ydc{bottom:456.482880px;}
.y121{bottom:456.837840px;}
.y1cc{bottom:458.280000px;}
.y163{bottom:458.305200px;}
.y8b{bottom:458.366400px;}
.y222{bottom:460.080000px;}
.yb4{bottom:460.095840px;}
.y17{bottom:461.502720px;}
.y1b1{bottom:462.633120px;}
.yf2{bottom:466.199280px;}
.y21e{bottom:468.720000px;}
.y189{bottom:468.735840px;}
.y151{bottom:472.014720px;}
.y4e{bottom:472.273920px;}
.y67{bottom:472.313520px;}
.y10b{bottom:474.852960px;}
.ydb{bottom:475.560000px;}
.y120{bottom:475.914960px;}
.y16{bottom:476.988480px;}
.y1cb{bottom:477.360000px;}
.y1f8{bottom:477.366480px;}
.y1e1{bottom:477.367200px;}
.y162{bottom:477.382320px;}
.y8a{bottom:477.443520px;}
.yb3{bottom:478.808640px;}
.y1b0{bottom:481.710240px;}
.yf1{bottom:485.276400px;}
.y188{bottom:487.448640px;}
.y4d{bottom:488.840400px;}
.y66{bottom:488.880000px;}
.y150{bottom:491.091840px;}
.y15{bottom:492.474240px;}
.y10a{bottom:493.565760px;}
.y11f{bottom:494.280000px;}
.yda{bottom:494.663040px;}
.y1f7{bottom:495.731520px;}
.y161{bottom:495.747360px;}
.y1ca{bottom:496.080000px;}
.y89{bottom:496.156320px;}
.yb2{bottom:497.885760px;}
.yf0{bottom:500.395680px;}
.y1af{bottom:500.423040px;}
.y4c{bottom:505.406880px;}
.y64{bottom:505.440000px;}
.y187{bottom:506.525760px;}
.y14{bottom:507.960000px;}
.y14f{bottom:510.168960px;}
.y109{bottom:512.642880px;}
.yd9{bottom:513.375840px;}
.y1f6{bottom:514.808640px;}
.y160{bottom:514.824480px;}
.y1c9{bottom:515.160000px;}
.y88{bottom:515.233440px;}
.y21a{bottom:516.240000px;}
.yb1{bottom:516.962880px;}
.y1ae{bottom:519.500160px;}
.y4b{bottom:521.604000px;}
.y63{bottom:521.640000px;}
.y13{bottom:524.160000px;}
.y186{bottom:525.602880px;}
.y14e{bottom:528.881760px;}
.y108{bottom:531.720000px;}
.yd8{bottom:532.452960px;}
.y1f5{bottom:533.885760px;}
.y1c8{bottom:534.240000px;}
.y15f{bottom:534.265920px;}
.y87{bottom:534.310560px;}
.yb0{bottom:536.040000px;}
.y21d{bottom:537.120000px;}
.y4a{bottom:538.170480px;}
.y62{bottom:538.183440px;}
.y11e{bottom:538.560000px;}
.y1ad{bottom:538.577280px;}
.y185{bottom:544.680000px;}
.y219{bottom:545.760000px;}
.y14d{bottom:547.958880px;}
.y107{bottom:551.160000px;}
.y12{bottom:551.520000px;}
.yd7{bottom:551.530080px;}
.y1c7{bottom:552.960000px;}
.y1f4{bottom:552.962880px;}
.y15e{bottom:552.978720px;}
.y86{bottom:553.023360px;}
.yaf{bottom:554.384160px;}
.y21c{bottom:554.400000px;}
.y49{bottom:554.736960px;}
.y61{bottom:554.749920px;}
.y1ac{bottom:557.290080px;}
.y184{bottom:563.040000px;}
.y11{bottom:566.969760px;}
.y14c{bottom:567.036000px;}
.yd6{bottom:570.242880px;}
.y48{bottom:571.303440px;}
.y60{bottom:571.316400px;}
.y106{bottom:571.320000px;}
.yae{bottom:571.666320px;}
.y1f3{bottom:572.040000px;}
.y1c6{bottom:572.047200px;}
.y15d{bottom:572.055840px;}
.y85{bottom:572.100480px;}
.y1ab{bottom:576.002880px;}
.y183{bottom:580.320000px;}
.y10{bottom:582.455520px;}
.y14b{bottom:586.113120px;}
.y105{bottom:586.440000px;}
.y47{bottom:587.500560px;}
.y5f{bottom:587.513520px;}
.yad{bottom:588.948480px;}
.yd5{bottom:589.320000px;}
.y1c5{bottom:590.813280px;}
.y1f2{bottom:591.120000px;}
.y15c{bottom:591.132960px;}
.y84{bottom:591.177600px;}
.y1aa{bottom:595.098720px;}
.y182{bottom:597.600000px;}
.yf{bottom:597.941280px;}
.y215{bottom:601.920000px;}
.y46{bottom:604.067040px;}
.y5e{bottom:604.080000px;}
.y14a{bottom:604.825920px;}
.yac{bottom:606.230640px;}
.yd4{bottom:608.400000px;}
.y1c4{bottom:609.890400px;}
.y15b{bottom:610.210080px;}
.y1f1{bottom:610.212960px;}
.y83{bottom:610.254720px;}
.ye{bottom:613.782720px;}
.y1a9{bottom:614.175840px;}
.y181{bottom:614.880000px;}
.y243{bottom:615.960000px;}
.y5c{bottom:620.600400px;}
.y45{bottom:620.633520px;}
.y214{bottom:622.437840px;}
.y217{bottom:622.440000px;}
.yab{bottom:623.512800px;}
.y149{bottom:623.903040px;}
.yd3{bottom:627.480000px;}
.y15a{bottom:628.922880px;}
.y1f0{bottom:628.925760px;}
.y82{bottom:628.967520px;}
.yd{bottom:629.268480px;}
.y218{bottom:631.080000px;}
.y180{bottom:632.160000px;}
.y1a8{bottom:633.252960px;}
.y5b{bottom:637.166880px;}
.y44{bottom:637.200000px;}
.y213{bottom:639.720000px;}
.y240{bottom:640.080000px;}
.yaa{bottom:640.794960px;}
.y148{bottom:642.980160px;}
.yc{bottom:644.754240px;}
.yd2{bottom:646.200000px;}
.y159{bottom:648.000000px;}
.y1ef{bottom:648.002880px;}
.y81{bottom:648.044640px;}
.y17f{bottom:649.440000px;}
.y1a7{bottom:652.330080px;}
.y5a{bottom:653.733360px;}
.ya9{bottom:658.463040px;}
.yb{bottom:660.240000px;}
.y23f{bottom:660.957840px;}
.y241{bottom:660.960000px;}
.y147{bottom:661.692960px;}
.yd1{bottom:665.280000px;}
.y158{bottom:667.080000px;}
.y17e{bottom:667.105770px;}
.y80{bottom:667.121760px;}
.y242{bottom:669.600000px;}
.y42{bottom:669.923850px;}
.y59{bottom:669.930480px;}
.y1a6{bottom:671.407200px;}
.ya{bottom:676.440000px;}
.ya8{bottom:677.175840px;}
.y23e{bottom:678.240000px;}
.y146{bottom:680.770080px;}
.yd0{bottom:684.371520px;}
.y1e0{bottom:685.800000px;}
.y17d{bottom:685.818570px;}
.y7f{bottom:685.834560px;}
.y41{bottom:686.490330px;}
.y58{bottom:686.496960px;}
.y210{bottom:687.240000px;}
.y135{bottom:688.327200px;}
.y1a5{bottom:690.120000px;}
.ya7{bottom:696.252960px;}
.y20f{bottom:699.477840px;}
.y145{bottom:699.847200px;}
.y40{bottom:703.056810px;}
.y57{bottom:703.063440px;}
.ycf{bottom:703.084320px;}
.y1ee{bottom:704.880000px;}
.y1df{bottom:704.885760px;}
.y17c{bottom:704.895690px;}
.y7e{bottom:704.911680px;}
.y134{bottom:706.320000px;}
.y212{bottom:708.120000px;}
.y1a4{bottom:711.360000px;}
.ya6{bottom:715.330080px;}
.y20e{bottom:716.760000px;}
.y9{bottom:718.560000px;}
.y3f{bottom:719.623290px;}
.y56{bottom:719.629920px;}
.yce{bottom:722.161440px;}
.y1de{bottom:723.962880px;}
.y1ed{bottom:723.970080px;}
.y17b{bottom:723.972810px;}
.y7d{bottom:723.988800px;}
.y23a{bottom:725.400000px;}
.ya5{bottom:734.407200px;}
.y3e{bottom:735.820410px;}
.y55{bottom:735.827040px;}
.y144{bottom:737.264880px;}
.y1a3{bottom:737.280000px;}
.ycd{bottom:741.238560px;}
.y1dd{bottom:743.040000px;}
.y1ec{bottom:743.047200px;}
.y17a{bottom:743.049930px;}
.y7c{bottom:743.065920px;}
.y8{bottom:744.838920px;}
.y23d{bottom:746.280000px;}
.y3d{bottom:752.386890px;}
.y54{bottom:752.393520px;}
.ya4{bottom:753.120000px;}
.y143{bottom:754.547040px;}
.y1a2{bottom:754.560000px;}
.y239{bottom:754.917840px;}
.y209{bottom:755.640000px;}
.ycc{bottom:760.690080px;}
.y1dc{bottom:761.760000px;}
.y179{bottom:761.762730px;}
.y7b{bottom:761.778720px;}
.y23c{bottom:763.560000px;}
.y3c{bottom:768.953370px;}
.y53{bottom:768.960000px;}
.y1a1{bottom:771.479850px;}
.ya3{bottom:771.829200px;}
.y238{bottom:772.200000px;}
.y7{bottom:774.000000px;}
.y20c{bottom:776.159850px;}
.y178{bottom:780.839850px;}
.ycb{bottom:780.843600px;}
.y7a{bottom:780.855840px;}
.y3b{bottom:785.509770px;}
.y1a0{bottom:788.760000px;}
.ya2{bottom:789.111360px;}
.y20b{bottom:793.440000px;}
.y208{bottom:795.597840px;}
.yef{bottom:799.916400px;}
.y177{bottom:799.920000px;}
.yca{bottom:799.920720px;}
.y79{bottom:799.932960px;}
.y6{bottom:800.280000px;}
.y3a{bottom:802.076250px;}
.y20d{bottom:804.240000px;}
.ya1{bottom:806.393520px;}
.y19f{bottom:806.400000px;}
.y207{bottom:812.880000px;}
.y39{bottom:818.273370px;}
.yee{bottom:818.281440px;}
.yc9{bottom:818.285760px;}
.y176{bottom:818.639850px;}
.y78{bottom:818.645760px;}
.y5{bottom:819.718920px;}
.ya0{bottom:823.675680px;}
.y19e{bottom:823.680000px;}
.y236{bottom:828.360000px;}
.y20a{bottom:831.960000px;}
.y38{bottom:834.839850px;}
.yc8{bottom:837.362880px;}
.y1db{bottom:837.720000px;}
.y77{bottom:837.722880px;}
.y9f{bottom:840.957840px;}
.y19d{bottom:840.960000px;}
.y4{bottom:848.880000px;}
.yc7{bottom:856.440000px;}
.y76{bottom:856.800000px;}
.y9e{bottom:858.240000px;}
.y35{bottom:938.159850px;}
.y1{bottom:940.319850px;}
.hf{height:32.064609px;}
.h28{height:34.200000px;}
.h1f{height:34.560000px;}
.h3{height:41.696016px;}
.h6{height:45.127969px;}
.h1e{height:45.992812px;}
.h12{height:47.503125px;}
.h2{height:48.013594px;}
.hb{height:48.105754px;}
.ha{height:48.134554px;}
.he{height:49.878281px;}
.h23{height:51.840000px;}
.h14{height:53.067656px;}
.h1a{height:53.717344px;}
.h1b{height:57.003750px;}
.h1c{height:58.092919px;}
.h9{height:58.121719px;}
.h19{height:58.138999px;}
.h11{height:58.162039px;}
.h13{height:58.833281px;}
.h16{height:63.129701px;}
.h15{height:63.135461px;}
.h17{height:63.175781px;}
.h24{height:68.760000px;}
.h2a{height:68.761500px;}
.h25{height:69.120000px;}
.h8{height:73.283906px;}
.h27{height:78.840000px;}
.h4{height:79.567734px;}
.h18{height:80.576016px;}
.h5{height:85.377758px;}
.h29{height:86.400000px;}
.h1d{height:87.182578px;}
.h22{height:106.920000px;}
.h20{height:107.278500px;}
.h26{height:113.400000px;}
.h7{height:118.762133px;}
.hd{height:131.760000px;}
.h21{height:141.480000px;}
.hc{height:320.038500px;}
.h10{height:461.520000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w8{width:82.801500px;}
.w6{width:132.480000px;}
.w3{width:170.281500px;}
.w5{width:280.440000px;}
.w4{width:280.441500px;}
.w7{width:309.960000px;}
.w2{width:382.678500px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x30{left:6.840000px;}
.x7{left:11.880000px;}
.xd{left:16.200000px;}
.x2a{left:18.720000px;}
.x2f{left:22.680000px;}
.xa{left:23.760000px;}
.x2d{left:42.840000px;}
.x11{left:77.400000px;}
.x10{left:88.200000px;}
.x6{left:93.240000px;}
.x1{left:95.760000px;}
.x29{left:97.200000px;}
.x5{left:100.797120px;}
.x31{left:104.040000px;}
.x4{left:105.120000px;}
.xb{left:107.640000px;}
.x2c{left:110.160000px;}
.xf{left:117.000000px;}
.x13{left:127.800000px;}
.x12{left:129.240000px;}
.x1d{left:135.000000px;}
.x1a{left:136.440000px;}
.x18{left:138.237840px;}
.x14{left:140.040000px;}
.x28{left:142.920000px;}
.x1b{left:149.039280px;}
.x20{left:162.000000px;}
.x27{left:163.440000px;}
.x23{left:177.120000px;}
.x2{left:178.200000px;}
.x25{left:190.432800px;}
.x2b{left:231.120000px;}
.x32{left:237.960000px;}
.x21{left:277.207920px;}
.x1e{left:323.999280px;}
.x1c{left:361.440000px;}
.x19{left:367.560000px;}
.xc{left:376.200000px;}
.xe{left:392.400000px;}
.x15{left:401.760000px;}
.x9{left:475.920000px;}
.x8{left:498.600000px;}
.x17{left:522.000000px;}
.x2e{left:542.880000px;}
.x1f{left:545.770800px;}
.x3{left:547.204680px;}
.x33{left:549.360000px;}
.x26{left:582.855120px;}
.x24{left:594.360000px;}
.x22{left:613.800000px;}
.x16{left:627.120000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.443840pt;}
.ls4e{letter-spacing:-3.532800pt;}
.lsf{letter-spacing:-3.258880pt;}
.ls37{letter-spacing:-3.120640pt;}
.lsd{letter-spacing:-3.112960pt;}
.ls38{letter-spacing:-3.061760pt;}
.ls2f{letter-spacing:-2.826240pt;}
.ls4b{letter-spacing:-2.580480pt;}
.lsa{letter-spacing:-2.577920pt;}
.ls2d{letter-spacing:-2.531840pt;}
.ls26{letter-spacing:-2.529280pt;}
.ls5a{letter-spacing:-2.526720pt;}
.ls14{letter-spacing:-2.432000pt;}
.ls30{letter-spacing:-2.296320pt;}
.ls36{letter-spacing:-2.178560pt;}
.ls59{letter-spacing:-2.150400pt;}
.ls3c{letter-spacing:-2.096640pt;}
.lsc{letter-spacing:-2.091520pt;}
.ls29{letter-spacing:-1.894400pt;}
.ls7{letter-spacing:-1.848320pt;}
.ls2c{letter-spacing:-1.825280pt;}
.ls15{letter-spacing:-1.799680pt;}
.ls47{letter-spacing:-1.720320pt;}
.ls6{letter-spacing:-1.715200pt;}
.ls1f{letter-spacing:-1.666560pt;}
.ls16{letter-spacing:-1.605120pt;}
.ls51{letter-spacing:-1.576960pt;}
.ls23{letter-spacing:-1.556480pt;}
.ls8{letter-spacing:-1.530880pt;}
.ls27{letter-spacing:-1.484800pt;}
.ls22{letter-spacing:-1.478400pt;}
.ls10{letter-spacing:-1.459200pt;}
.ls20{letter-spacing:-1.451520pt;}
.ls57{letter-spacing:-1.413120pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls24{letter-spacing:-1.313280pt;}
.ls2a{letter-spacing:-1.295360pt;}
.ls3d{letter-spacing:-1.290240pt;}
.ls28{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-1.264640pt;}
.ls11{letter-spacing:-1.216000pt;}
.ls3a{letter-spacing:-1.177600pt;}
.ls12{letter-spacing:-1.167360pt;}
.lse{letter-spacing:-1.118720pt;}
.ls4{letter-spacing:-1.056000pt;}
.ls58{letter-spacing:-1.013760pt;}
.ls2e{letter-spacing:-1.000960pt;}
.ls25{letter-spacing:-0.972800pt;}
.ls13{letter-spacing:-0.924160pt;}
.ls3e{letter-spacing:-0.860160pt;}
.ls17{letter-spacing:-0.844800pt;}
.ls49{letter-spacing:-0.806400pt;}
.lsb{letter-spacing:-0.729600pt;}
.ls52{letter-spacing:-0.675840pt;}
.ls4f{letter-spacing:-0.647680pt;}
.ls53{letter-spacing:-0.645120pt;}
.ls5{letter-spacing:-0.633600pt;}
.ls2b{letter-spacing:-0.529920pt;}
.ls45{letter-spacing:-0.412160pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.117760pt;}
.ls56{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.398080pt;}
.ls5b{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.647680pt;}
.ls4c{letter-spacing:1.935360pt;}
.ls35{letter-spacing:1.943040pt;}
.ls50{letter-spacing:2.534400pt;}
.ls54{letter-spacing:3.179520pt;}
.ls43{letter-spacing:3.250176pt;}
.ls4d{letter-spacing:3.309056pt;}
.ls1b{letter-spacing:4.377600pt;}
.ls44{letter-spacing:4.462080pt;}
.ls32{letter-spacing:4.474880pt;}
.ls3f{letter-spacing:5.770240pt;}
.ls33{letter-spacing:7.065600pt;}
.ls46{letter-spacing:8.302080pt;}
.ls19{letter-spacing:9.600000pt;}
.ls42{letter-spacing:12.188160pt;}
.ls3b{letter-spacing:14.720000pt;}
.ls1e{letter-spacing:15.909376pt;}
.ls41{letter-spacing:16.015360pt;}
.ls55{letter-spacing:17.251840pt;}
.ls39{letter-spacing:19.842560pt;}
.ls1a{letter-spacing:21.012480pt;}
.ls40{letter-spacing:21.137920pt;}
.ls48{letter-spacing:27.496960pt;}
.ls1c{letter-spacing:33.804800pt;}
.ls2{letter-spacing:45.440000pt;}
.ls1d{letter-spacing:81.180160pt;}
.ls18{letter-spacing:211.868160pt;}
.ls31{letter-spacing:337.290240pt;}
.ls0{letter-spacing:662.703360pt;}
.ws100{word-spacing:-16.000000pt;}
.ws104{word-spacing:-15.014400pt;}
.ws3{word-spacing:-14.720000pt;}
.ws98{word-spacing:-14.190080pt;}
.ws109{word-spacing:-14.080000pt;}
.wsde{word-spacing:-14.072320pt;}
.ws105{word-spacing:-13.719040pt;}
.ws103{word-spacing:-13.542400pt;}
.wsd2{word-spacing:-13.440000pt;}
.ws38{word-spacing:-13.424640pt;}
.ws106{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.189120pt;}
.ws108{word-spacing:-13.066240pt;}
.wsb5{word-spacing:-12.894720pt;}
.wse8{word-spacing:-12.784640pt;}
.ws2{word-spacing:-12.728320pt;}
.ws10a{word-spacing:-12.633600pt;}
.wsc9{word-spacing:-12.579840pt;}
.ws7a{word-spacing:-12.541440pt;}
.ws3a{word-spacing:-12.423680pt;}
.ws7b{word-spacing:-12.188160pt;}
.ws9{word-spacing:-12.160000pt;}
.ws32{word-spacing:-12.149760pt;}
.ws39{word-spacing:-11.893760pt;}
.ws10d{word-spacing:-11.719680pt;}
.ws7c{word-spacing:-11.599360pt;}
.ws36{word-spacing:-11.571200pt;}
.wsa5{word-spacing:-11.430400pt;}
.ws10c{word-spacing:-11.343360pt;}
.ws10b{word-spacing:-11.289600pt;}
.wsc{word-spacing:-10.992640pt;}
.ws10f{word-spacing:-10.913280pt;}
.ws6{word-spacing:-10.895360pt;}
.wsd3{word-spacing:-10.859520pt;}
.ws1{word-spacing:-10.560000pt;}
.ws31{word-spacing:-10.483200pt;}
.ws8{word-spacing:-10.311680pt;}
.ws34{word-spacing:-10.068480pt;}
.ws0{word-spacing:-9.926400pt;}
.ws35{word-spacing:-9.776640pt;}
.ws37{word-spacing:-9.676800pt;}
.ws5{word-spacing:-9.582080pt;}
.wsa{word-spacing:-9.533440pt;}
.ws33{word-spacing:-9.387520pt;}
.wsb{word-spacing:-9.192960pt;}
.ws7{word-spacing:-9.047040pt;}
.ws93{word-spacing:-3.179520pt;}
.ws2b{word-spacing:-2.967040pt;}
.wsb7{word-spacing:-2.649600pt;}
.ws53{word-spacing:-2.383360pt;}
.ws2e{word-spacing:-2.238720pt;}
.wsf2{word-spacing:-2.178560pt;}
.ws1e{word-spacing:-2.140160pt;}
.ws2a{word-spacing:-2.091520pt;}
.ws9b{word-spacing:-1.884160pt;}
.wsae{word-spacing:-1.881600pt;}
.ws81{word-spacing:-1.413120pt;}
.wsac{word-spacing:-1.354240pt;}
.wsa6{word-spacing:-1.075200pt;}
.ws10{word-spacing:-0.971520pt;}
.wsf3{word-spacing:-0.883200pt;}
.ws47{word-spacing:-0.826880pt;}
.wsf0{word-spacing:-0.765440pt;}
.ws55{word-spacing:-0.729600pt;}
.ws76{word-spacing:-0.647680pt;}
.ws3b{word-spacing:-0.645120pt;}
.ws1c{word-spacing:-0.632320pt;}
.wse{word-spacing:-0.549120pt;}
.ws4c{word-spacing:-0.486400pt;}
.wsec{word-spacing:-0.215040pt;}
.ws74{word-spacing:-0.117760pt;}
.wsdd{word-spacing:-0.056320pt;}
.ws6c{word-spacing:-0.051200pt;}
.wsd{word-spacing:0.000000pt;}
.ws17{word-spacing:0.097280pt;}
.ws6b{word-spacing:0.153600pt;}
.wsaf{word-spacing:0.161280pt;}
.wsad{word-spacing:0.215040pt;}
.ws14{word-spacing:0.257280pt;}
.wsf{word-spacing:0.295680pt;}
.wsb6{word-spacing:0.353280pt;}
.ws2c{word-spacing:0.437760pt;}
.ws5a{word-spacing:0.486400pt;}
.wsbd{word-spacing:0.529920pt;}
.ws75{word-spacing:0.588800pt;}
.ws16{word-spacing:0.632320pt;}
.ws2d{word-spacing:0.645120pt;}
.ws82{word-spacing:0.647680pt;}
.ws3d{word-spacing:0.698880pt;}
.ws3c{word-spacing:0.806400pt;}
.ws2f{word-spacing:0.844800pt;}
.wsf9{word-spacing:0.860160pt;}
.ws101{word-spacing:0.883200pt;}
.ws58{word-spacing:0.924160pt;}
.wsbf{word-spacing:1.000960pt;}
.ws1a{word-spacing:1.118720pt;}
.ws70{word-spacing:1.177600pt;}
.wsc0{word-spacing:1.216000pt;}
.ws10e{word-spacing:1.290240pt;}
.ws78{word-spacing:1.295360pt;}
.ws69{word-spacing:1.313280pt;}
.wsaa{word-spacing:1.451520pt;}
.ws24{word-spacing:1.459200pt;}
.ws3e{word-spacing:1.478400pt;}
.ws102{word-spacing:1.530880pt;}
.ws12{word-spacing:1.543680pt;}
.ws80{word-spacing:1.648640pt;}
.wsf8{word-spacing:1.720320pt;}
.ws67{word-spacing:1.751040pt;}
.ws95{word-spacing:1.825280pt;}
.ws15{word-spacing:1.848320pt;}
.ws6f{word-spacing:1.884160pt;}
.wsf1{word-spacing:1.935360pt;}
.ws7f{word-spacing:1.943040pt;}
.ws18{word-spacing:2.091520pt;}
.ws107{word-spacing:2.178560pt;}
.wsa3{word-spacing:2.296320pt;}
.wse5{word-spacing:2.365440pt;}
.wsab{word-spacing:2.472960pt;}
.wsb4{word-spacing:2.531840pt;}
.wsf7{word-spacing:2.580480pt;}
.ws61{word-spacing:2.723840pt;}
.wse6{word-spacing:2.741760pt;}
.wsd1{word-spacing:2.795520pt;}
.wsbc{word-spacing:2.944000pt;}
.ws28{word-spacing:3.015680pt;}
.ws97{word-spacing:3.061760pt;}
.ws19{word-spacing:3.112960pt;}
.wsc5{word-spacing:3.120640pt;}
.ws77{word-spacing:3.179520pt;}
.ws79{word-spacing:3.238400pt;}
.ws1b{word-spacing:3.258880pt;}
.wseb{word-spacing:3.266560pt;}
.wse7{word-spacing:3.655680pt;}
.ws94{word-spacing:3.709440pt;}
.wsa1{word-spacing:3.768320pt;}
.wsd7{word-spacing:4.032000pt;}
.wse0{word-spacing:4.180480pt;}
.ws27{word-spacing:4.280320pt;}
.ws86{word-spacing:4.474880pt;}
.wsd8{word-spacing:4.515840pt;}
.ws6e{word-spacing:5.004800pt;}
.wsfa{word-spacing:5.268480pt;}
.ws52{word-spacing:5.301760pt;}
.wscc{word-spacing:5.322240pt;}
.wsea{word-spacing:5.406720pt;}
.ws30{word-spacing:5.448960pt;}
.wsfe{word-spacing:5.475840pt;}
.ws25{word-spacing:5.593600pt;}
.ws9d{word-spacing:5.652480pt;}
.wsb0{word-spacing:5.711360pt;}
.wscd{word-spacing:5.752320pt;}
.ws7d{word-spacing:5.770240pt;}
.wsef{word-spacing:5.806080pt;}
.wsfb{word-spacing:6.182400pt;}
.wsfd{word-spacing:6.241280pt;}
.ws8c{word-spacing:6.300160pt;}
.wsce{word-spacing:6.558720pt;}
.wsd0{word-spacing:6.612480pt;}
.ws11{word-spacing:6.689280pt;}
.wse4{word-spacing:6.771200pt;}
.ws7e{word-spacing:7.006720pt;}
.wsa8{word-spacing:7.042560pt;}
.ws89{word-spacing:7.065600pt;}
.wscf{word-spacing:7.472640pt;}
.ws91{word-spacing:7.595520pt;}
.ws23{word-spacing:7.831040pt;}
.wsa7{word-spacing:7.848960pt;}
.wsd9{word-spacing:8.066560pt;}
.ws44{word-spacing:8.122880pt;}
.wse2{word-spacing:8.302080pt;}
.ws92{word-spacing:8.360960pt;}
.wsbb{word-spacing:8.832000pt;}
.wsa9{word-spacing:9.139200pt;}
.ws5f{word-spacing:9.144320pt;}
.wsf4{word-spacing:9.192960pt;}
.wsb3{word-spacing:9.303040pt;}
.wsc2{word-spacing:9.361920pt;}
.ws49{word-spacing:9.387520pt;}
.ws48{word-spacing:9.436160pt;}
.ws8a{word-spacing:9.597440pt;}
.wsf5{word-spacing:9.623040pt;}
.ws60{word-spacing:9.825280pt;}
.ws9f{word-spacing:10.127360pt;}
.wsca{word-spacing:10.186240pt;}
.wse3{word-spacing:10.775040pt;}
.ws8b{word-spacing:10.833920pt;}
.ws9a{word-spacing:10.892800pt;}
.ws3f{word-spacing:11.041280pt;}
.wscb{word-spacing:11.304960pt;}
.wsfc{word-spacing:11.343360pt;}
.wsdf{word-spacing:11.363840pt;}
.wsba{word-spacing:11.422720pt;}
.ws1f{word-spacing:11.673600pt;}
.wsd6{word-spacing:11.719680pt;}
.wsb2{word-spacing:11.893760pt;}
.ws54{word-spacing:11.965440pt;}
.wse1{word-spacing:12.129280pt;}
.ws99{word-spacing:12.188160pt;}
.wsb1{word-spacing:12.718080pt;}
.wsed{word-spacing:13.009920pt;}
.ws62{word-spacing:13.230080pt;}
.ws65{word-spacing:13.278720pt;}
.ws8e{word-spacing:13.424640pt;}
.wsee{word-spacing:13.440000pt;}
.wsc7{word-spacing:13.483520pt;}
.ws51{word-spacing:14.251520pt;}
.wsf6{word-spacing:14.300160pt;}
.wsc8{word-spacing:14.484480pt;}
.ws66{word-spacing:14.543360pt;}
.ws87{word-spacing:14.720000pt;}
.ws5c{word-spacing:14.932480pt;}
.wsc6{word-spacing:15.249920pt;}
.wsd4{word-spacing:15.590400pt;}
.ws1d{word-spacing:15.808000pt;}
.ws84{word-spacing:15.956480pt;}
.ws85{word-spacing:16.015360pt;}
.wsc1{word-spacing:16.545280pt;}
.wsd5{word-spacing:16.826880pt;}
.ws88{word-spacing:17.310720pt;}
.ws72{word-spacing:17.840640pt;}
.ws29{word-spacing:18.094080pt;}
.ws13{word-spacing:18.181120pt;}
.ws71{word-spacing:18.311680pt;}
.ws6a{word-spacing:18.385920pt;}
.ws50{word-spacing:18.483200pt;}
.wsc3{word-spacing:18.547200pt;}
.ws73{word-spacing:18.606080pt;}
.ws83{word-spacing:19.077120pt;}
.ws4e{word-spacing:19.601920pt;}
.ws46{word-spacing:19.650560pt;}
.ws4d{word-spacing:19.747840pt;}
.wsa0{word-spacing:19.842560pt;}
.wsb9{word-spacing:20.843520pt;}
.ws21{word-spacing:20.963840pt;}
.wsb8{word-spacing:21.137920pt;}
.wsbe{word-spacing:21.667840pt;}
.ws22{word-spacing:22.179840pt;}
.ws4f{word-spacing:22.228480pt;}
.wsff{word-spacing:22.374400pt;}
.ws9e{word-spacing:22.433280pt;}
.wsa2{word-spacing:22.904320pt;}
.wsdc{word-spacing:23.434240pt;}
.ws96{word-spacing:23.669760pt;}
.ws43{word-spacing:23.833600pt;}
.wse9{word-spacing:24.670720pt;}
.ws42{word-spacing:24.806400pt;}
.ws6d{word-spacing:25.495040pt;}
.ws63{word-spacing:25.779200pt;}
.wsa4{word-spacing:26.260480pt;}
.wsc4{word-spacing:26.790400pt;}
.ws64{word-spacing:27.335680pt;}
.ws59{word-spacing:28.600320pt;}
.ws90{word-spacing:29.322240pt;}
.ws45{word-spacing:29.621760pt;}
.wsdb{word-spacing:29.793280pt;}
.ws5d{word-spacing:29.913600pt;}
.wsda{word-spacing:30.028800pt;}
.ws8f{word-spacing:30.087680pt;}
.ws5e{word-spacing:32.151040pt;}
.ws8d{word-spacing:33.914880pt;}
.ws20{word-spacing:34.728960pt;}
.ws56{word-spacing:34.777600pt;}
.ws5b{word-spacing:34.972160pt;}
.ws57{word-spacing:35.020800pt;}
.ws40{word-spacing:35.993600pt;}
.ws41{word-spacing:36.236800pt;}
.ws4a{word-spacing:37.598720pt;}
.ws26{word-spacing:38.863360pt;}
.ws9c{word-spacing:39.037440pt;}
.ws4b{word-spacing:42.657280pt;}
.ws68{word-spacing:82.396160pt;}
._9{margin-left:-3.889152pt;}
._7{margin-left:-2.935296pt;}
._2{margin-left:-1.909248pt;}
._1{margin-left:-0.996864pt;}
._0{width:1.005312pt;}
._3{width:2.031360pt;}
._4{width:3.047936pt;}
._8{width:4.098304pt;}
._d{width:5.079808pt;}
._a{width:6.358016pt;}
._e{width:7.485440pt;}
._c{width:8.402944pt;}
._b{width:11.499264pt;}
._6{width:17.258752pt;}
._5{width:27.542016pt;}
.fs8{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs9{font-size:51.200000pt;}
.fs7{font-size:53.760000pt;}
.fs3{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fsc{font-size:61.440000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fsb{font-size:80.640000pt;}
.fs2{font-size:85.760000pt;}
.fsd{font-size:88.320000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:2.880000pt;}
.y28{bottom:3.200000pt;}
.y1fa{bottom:18.240000pt;}
.y237{bottom:18.560000pt;}
.y211{bottom:33.920000pt;}
.y3{bottom:40.318080pt;}
.y216{bottom:48.960000pt;}
.y21b{bottom:49.280000pt;}
.y2{bottom:52.800000pt;}
.y23b{bottom:64.640000pt;}
.y1fc{bottom:83.200000pt;}
.y29{bottom:90.880000pt;}
.y65{bottom:91.200000pt;}
.y34{bottom:97.272320pt;}
.y11d{bottom:101.442560pt;}
.yed{bottom:102.117120pt;}
.y1da{bottom:102.400000pt;}
.y1eb{bottom:103.679867pt;}
.y9d{bottom:103.822080pt;}
.yc6{bottom:105.318400pt;}
.y21{bottom:105.600000pt;}
.y133{bottom:106.876160pt;}
.y234{bottom:106.880000pt;}
.y175{bottom:106.888960pt;}
.y1c3{bottom:107.614720pt;}
.y19c{bottom:107.840000pt;}
.y142{bottom:108.476160pt;}
.y75{bottom:108.511360pt;}
.y33{bottom:109.437440pt;}
.y104{bottom:111.108480pt;}
.y201{bottom:113.600000pt;}
.y157{bottom:114.246400pt;}
.y11c{bottom:118.400000pt;}
.yec{bottom:118.750720pt;}
.y1d9{bottom:119.040000pt;}
.y1ea{bottom:120.654080pt;}
.y9c{bottom:120.779520pt;}
.y32{bottom:121.602560pt;}
.y132{bottom:122.238080pt;}
.yc5{bottom:122.275840pt;}
.y19b{bottom:123.520000pt;}
.y141{bottom:123.838080pt;}
.y174{bottom:123.846400pt;}
.y1c2{bottom:124.572160pt;}
.y74{bottom:125.468800pt;}
.y103{bottom:127.742080pt;}
.y231{bottom:129.598080pt;}
.y156{bottom:130.880000pt;}
.y200{bottom:131.520000pt;}
.y31{bottom:134.084480pt;}
.y11b{bottom:135.360000pt;}
.yeb{bottom:135.708160pt;}
.y1d8{bottom:136.000000pt;}
.y235{bottom:137.280000pt;}
.y131{bottom:137.600000pt;}
.y1e9{bottom:137.611520pt;}
.y9b{bottom:137.736960pt;}
.y19a{bottom:138.880000pt;}
.y140{bottom:139.200000pt;}
.yc4{bottom:139.233280pt;}
.y173{bottom:140.480000pt;}
.y1c1{bottom:141.529600pt;}
.y73{bottom:142.426240pt;}
.y155{bottom:143.035520pt;}
.y233{bottom:144.640000pt;}
.y102{bottom:144.699520pt;}
.y230{bottom:144.960000pt;}
.y206{bottom:149.759867pt;}
.y30{bottom:152.000000pt;}
.yea{bottom:152.665600pt;}
.y1d7{bottom:152.960000pt;}
.y130{bottom:153.011840pt;}
.y199{bottom:153.920000pt;}
.y1e8{bottom:154.245120pt;}
.y9a{bottom:154.370560pt;}
.y13f{bottom:154.908160pt;}
.yc3{bottom:155.866880pt;}
.y172{bottom:157.440000pt;}
.y1c0{bottom:158.163200pt;}
.y72{bottom:159.059840pt;}
.y232{bottom:160.640000pt;}
.y101{bottom:161.656960pt;}
.y2f{bottom:163.520000pt;}
.y205{bottom:165.120000pt;}
.y11a{bottom:168.960000pt;}
.ye9{bottom:169.299200pt;}
.y198{bottom:169.600000pt;}
.y12f{bottom:169.969280pt;}
.y1e7{bottom:171.202560pt;}
.y99{bottom:171.328000pt;}
.y13e{bottom:171.865600pt;}
.yc2{bottom:172.824320pt;}
.y171{bottom:174.080000pt;}
.y1bf{bottom:175.120640pt;}
.y71{bottom:176.017280pt;}
.y100{bottom:178.614400pt;}
.y204{bottom:180.480000pt;}
.y119{bottom:185.920000pt;}
.ye8{bottom:186.256640pt;}
.y197{bottom:186.560000pt;}
.y12e{bottom:186.926720pt;}
.y1d6{bottom:187.200000pt;}
.y1e6{bottom:188.160000pt;}
.y98{bottom:188.285440pt;}
.y13d{bottom:188.499200pt;}
.y170{bottom:189.120000pt;}
.yc1{bottom:189.781760pt;}
.y20{bottom:191.040000pt;}
.y22e{bottom:191.360000pt;}
.y1be{bottom:192.078080pt;}
.y70{bottom:192.974720pt;}
.y5d{bottom:193.600000pt;}
.yff{bottom:195.248000pt;}
.y118{bottom:202.560000pt;}
.ye7{bottom:203.214080pt;}
.y196{bottom:203.520000pt;}
.y12d{bottom:203.884160pt;}
.y16f{bottom:205.120000pt;}
.y1e5{bottom:205.137920pt;}
.y97{bottom:205.242880pt;}
.y13c{bottom:205.456640pt;}
.yc0{bottom:206.415360pt;}
.y27{bottom:208.619520pt;}
.y2e{bottom:208.625280pt;}
.y1bd{bottom:209.035520pt;}
.y6f{bottom:209.608320pt;}
.y22d{bottom:209.920000pt;}
.yfe{bottom:212.205440pt;}
.y203{bottom:214.400000pt;}
.y117{bottom:219.520000pt;}
.ye6{bottom:219.847680pt;}
.y195{bottom:220.160000pt;}
.y12c{bottom:220.517760pt;}
.y1d5{bottom:221.759867pt;}
.y1e4{bottom:221.771520pt;}
.y16e{bottom:221.822080pt;}
.y96{bottom:221.876480pt;}
.y13b{bottom:222.414080pt;}
.y43{bottom:223.040000pt;}
.y26{bottom:223.345280pt;}
.y2d{bottom:223.351040pt;}
.ybf{bottom:223.372800pt;}
.y22c{bottom:225.280000pt;}
.y1bc{bottom:225.669120pt;}
.y6e{bottom:226.565760pt;}
.yfd{bottom:229.162880pt;}
.y229{bottom:229.758080pt;}
.y202{bottom:229.760000pt;}
.y116{bottom:236.500480pt;}
.ye5{bottom:236.805120pt;}
.y194{bottom:237.131520pt;}
.y22f{bottom:237.440000pt;}
.y12b{bottom:237.475200pt;}
.y25{bottom:238.071040pt;}
.y2c{bottom:238.076800pt;}
.y1d4{bottom:238.720000pt;}
.y1e3{bottom:238.728960pt;}
.y16d{bottom:238.779520pt;}
.y95{bottom:238.833920pt;}
.y13a{bottom:239.047680pt;}
.ybe{bottom:240.006400pt;}
.y1bb{bottom:242.626560pt;}
.y228{bottom:245.120000pt;}
.yfc{bottom:245.796480pt;}
.y24{bottom:252.796800pt;}
.y2b{bottom:252.802560pt;}
.y115{bottom:253.134080pt;}
.ye4{bottom:253.762560pt;}
.y193{bottom:254.088960pt;}
.y12a{bottom:254.432640pt;}
.y1d3{bottom:255.680000pt;}
.y1e2{bottom:255.686400pt;}
.y16c{bottom:255.736960pt;}
.y94{bottom:255.791360pt;}
.y139{bottom:256.005120pt;}
.ybd{bottom:256.680960pt;}
.y6d{bottom:259.200000pt;}
.y1ba{bottom:259.584000pt;}
.y22b{bottom:260.160000pt;}
.yfb{bottom:262.753920pt;}
.y23{bottom:267.194240pt;}
.y2a{bottom:267.200000pt;}
.y114{bottom:270.091520pt;}
.ye3{bottom:270.720000pt;}
.y192{bottom:271.046400pt;}
.y129{bottom:271.066240pt;}
.y1fb{bottom:272.000000pt;}
.y1d2{bottom:272.320000pt;}
.y16b{bottom:272.370560pt;}
.y93{bottom:272.424960pt;}
.y138{bottom:272.962560pt;}
.ybc{bottom:273.962240pt;}
.y22a{bottom:275.840000pt;}
.y6c{bottom:276.160000pt;}
.y1b9{bottom:276.217600pt;}
.yfa{bottom:279.711360pt;}
.y22{bottom:281.920000pt;}
.y113{bottom:287.048960pt;}
.y191{bottom:287.680000pt;}
.ye2{bottom:287.682560pt;}
.y128{bottom:288.023680pt;}
.y1d1{bottom:289.280000pt;}
.y16a{bottom:289.328000pt;}
.y92{bottom:289.382400pt;}
.y137{bottom:289.920000pt;}
.y1ff{bottom:290.560000pt;}
.ybb{bottom:290.919680pt;}
.y6b{bottom:291.840000pt;}
.y1b8{bottom:293.175040pt;}
.yf9{bottom:296.344960pt;}
.y112{bottom:304.006400pt;}
.y190{bottom:304.320000pt;}
.ye1{bottom:304.640000pt;}
.y127{bottom:304.981120pt;}
.y1fe{bottom:305.920000pt;}
.y136{bottom:306.240000pt;}
.y169{bottom:306.285440pt;}
.y91{bottom:306.339840pt;}
.y225{bottom:306.880000pt;}
.y6a{bottom:307.200000pt;}
.yba{bottom:307.877120pt;}
.y1b7{bottom:310.132480pt;}
.yf8{bottom:313.302400pt;}
.y1f{bottom:318.400000pt;}
.y18f{bottom:319.680000pt;}
.y111{bottom:320.640000pt;}
.ye0{bottom:321.600000pt;}
.y126{bottom:321.614720pt;}
.y69{bottom:322.560000pt;}
.y1d0{bottom:322.887680pt;}
.y168{bottom:322.919040pt;}
.y90{bottom:322.973440pt;}
.yb9{bottom:324.510720pt;}
.y224{bottom:325.438080pt;}
.y226{bottom:325.440000pt;}
.y1b6{bottom:326.766080pt;}
.yf7{bottom:330.259840pt;}
.y227{bottom:333.120000pt;}
.y18e{bottom:335.040000pt;}
.y110{bottom:337.600000pt;}
.y68{bottom:337.920000pt;}
.y1c{bottom:338.240000pt;}
.y125{bottom:338.572160pt;}
.y1fd{bottom:339.840000pt;}
.y1cf{bottom:339.845120pt;}
.y167{bottom:339.876480pt;}
.y8f{bottom:339.930880pt;}
.y52{bottom:340.159867pt;}
.y223{bottom:340.800000pt;}
.yb8{bottom:341.468160pt;}
.y1b5{bottom:343.723520pt;}
.yf6{bottom:347.217280pt;}
.y18d{bottom:350.400000pt;}
.y10f{bottom:354.560000pt;}
.y1b{bottom:354.873600pt;}
.y1e{bottom:354.880000pt;}
.ydf{bottom:355.200000pt;}
.y124{bottom:355.529600pt;}
.y1ce{bottom:356.802560pt;}
.y166{bottom:356.833920pt;}
.y8e{bottom:356.888320pt;}
.y36{bottom:358.080000pt;}
.yb7{bottom:358.425600pt;}
.y1b4{bottom:360.680960pt;}
.yf5{bottom:363.850880pt;}
.y18c{bottom:366.080000pt;}
.y1a{bottom:368.638720pt;}
.y154{bottom:370.562560pt;}
.y10e{bottom:371.219200pt;}
.yde{bottom:372.171520pt;}
.y123{bottom:372.487040pt;}
.y1cd{bottom:373.760000pt;}
.y165{bottom:373.791360pt;}
.y8d{bottom:373.845760pt;}
.yb6{bottom:375.059200pt;}
.y51{bottom:376.002560pt;}
.y1b3{bottom:377.638400pt;}
.yf4{bottom:380.808320pt;}
.y1f9{bottom:382.080000pt;}
.y19{bottom:382.720000pt;}
.y18b{bottom:382.739200pt;}
.y220{bottom:383.040000pt;}
.y153{bottom:387.526400pt;}
.y10d{bottom:388.176640pt;}
.ydd{bottom:388.805120pt;}
.y122{bottom:389.120640pt;}
.y50{bottom:390.400000pt;}
.y164{bottom:390.424960pt;}
.y8c{bottom:390.479360pt;}
.yb5{bottom:392.016640pt;}
.y1b2{bottom:394.272000pt;}
.y18{bottom:396.459520pt;}
.yf3{bottom:397.765760pt;}
.y37{bottom:398.720000pt;}
.y18a{bottom:399.696640pt;}
.y21f{bottom:401.278080pt;}
.y221{bottom:401.280000pt;}
.y152{bottom:403.520000pt;}
.y4f{bottom:405.120000pt;}
.y10c{bottom:405.134080pt;}
.ydc{bottom:405.762560pt;}
.y121{bottom:406.078080pt;}
.y1cc{bottom:407.360000pt;}
.y163{bottom:407.382400pt;}
.y8b{bottom:407.436800pt;}
.y222{bottom:408.960000pt;}
.yb4{bottom:408.974080pt;}
.y17{bottom:410.224640pt;}
.y1b1{bottom:411.229440pt;}
.yf2{bottom:414.399360pt;}
.y21e{bottom:416.640000pt;}
.y189{bottom:416.654080pt;}
.y151{bottom:419.568640pt;}
.y4e{bottom:419.799040pt;}
.y67{bottom:419.834240pt;}
.y10b{bottom:422.091520pt;}
.ydb{bottom:422.720000pt;}
.y120{bottom:423.035520pt;}
.y16{bottom:423.989760pt;}
.y1cb{bottom:424.320000pt;}
.y1f8{bottom:424.325760pt;}
.y1e1{bottom:424.326400pt;}
.y162{bottom:424.339840pt;}
.y8a{bottom:424.394240pt;}
.yb3{bottom:425.607680pt;}
.y1b0{bottom:428.186880pt;}
.yf1{bottom:431.356800pt;}
.y188{bottom:433.287680pt;}
.y4d{bottom:434.524800pt;}
.y66{bottom:434.560000pt;}
.y150{bottom:436.526080pt;}
.y15{bottom:437.754880pt;}
.y10a{bottom:438.725120pt;}
.y11f{bottom:439.360000pt;}
.yda{bottom:439.700480pt;}
.y1f7{bottom:440.650240pt;}
.y161{bottom:440.664320pt;}
.y1ca{bottom:440.960000pt;}
.y89{bottom:441.027840pt;}
.yb2{bottom:442.565120pt;}
.yf0{bottom:444.796160pt;}
.y1af{bottom:444.820480pt;}
.y4c{bottom:449.250560pt;}
.y64{bottom:449.280000pt;}
.y187{bottom:450.245120pt;}
.y14{bottom:451.520000pt;}
.y14f{bottom:453.483520pt;}
.y109{bottom:455.682560pt;}
.yd9{bottom:456.334080pt;}
.y1f6{bottom:457.607680pt;}
.y160{bottom:457.621760pt;}
.y1c9{bottom:457.920000pt;}
.y88{bottom:457.985280pt;}
.y21a{bottom:458.880000pt;}
.yb1{bottom:459.522560pt;}
.y1ae{bottom:461.777920pt;}
.y4b{bottom:463.648000pt;}
.y63{bottom:463.680000pt;}
.y13{bottom:465.920000pt;}
.y186{bottom:467.202560pt;}
.y14e{bottom:470.117120pt;}
.y108{bottom:472.640000pt;}
.yd8{bottom:473.291520pt;}
.y1f5{bottom:474.565120pt;}
.y1c8{bottom:474.880000pt;}
.y15f{bottom:474.903040pt;}
.y87{bottom:474.942720pt;}
.yb0{bottom:476.480000pt;}
.y21d{bottom:477.440000pt;}
.y4a{bottom:478.373760pt;}
.y62{bottom:478.385280pt;}
.y11e{bottom:478.720000pt;}
.y1ad{bottom:478.735360pt;}
.y185{bottom:484.160000pt;}
.y219{bottom:485.120000pt;}
.y14d{bottom:487.074560pt;}
.y107{bottom:489.920000pt;}
.y12{bottom:490.240000pt;}
.yd7{bottom:490.248960pt;}
.y1c7{bottom:491.520000pt;}
.y1f4{bottom:491.522560pt;}
.y15e{bottom:491.536640pt;}
.y86{bottom:491.576320pt;}
.yaf{bottom:492.785920pt;}
.y21c{bottom:492.800000pt;}
.y49{bottom:493.099520pt;}
.y61{bottom:493.111040pt;}
.y1ac{bottom:495.368960pt;}
.y184{bottom:500.480000pt;}
.y11{bottom:503.973120pt;}
.y14c{bottom:504.032000pt;}
.yd6{bottom:506.882560pt;}
.y48{bottom:507.825280pt;}
.y60{bottom:507.836800pt;}
.y106{bottom:507.840000pt;}
.yae{bottom:508.147840pt;}
.y1f3{bottom:508.480000pt;}
.y1c6{bottom:508.486400pt;}
.y15d{bottom:508.494080pt;}
.y85{bottom:508.533760pt;}
.y1ab{bottom:512.002560pt;}
.y183{bottom:515.840000pt;}
.y10{bottom:517.738240pt;}
.y14b{bottom:520.989440pt;}
.y105{bottom:521.280000pt;}
.y47{bottom:522.222720pt;}
.y5f{bottom:522.234240pt;}
.yad{bottom:523.509760pt;}
.yd5{bottom:523.840000pt;}
.y1c5{bottom:525.167360pt;}
.y1f2{bottom:525.440000pt;}
.y15c{bottom:525.451520pt;}
.y84{bottom:525.491200pt;}
.y1aa{bottom:528.976640pt;}
.y182{bottom:531.200000pt;}
.yf{bottom:531.503360pt;}
.y215{bottom:535.040000pt;}
.y46{bottom:536.948480pt;}
.y5e{bottom:536.960000pt;}
.y14a{bottom:537.623040pt;}
.yac{bottom:538.871680pt;}
.yd4{bottom:540.800000pt;}
.y1c4{bottom:542.124800pt;}
.y15b{bottom:542.408960pt;}
.y1f1{bottom:542.411520pt;}
.y83{bottom:542.448640pt;}
.ye{bottom:545.584640pt;}
.y1a9{bottom:545.934080pt;}
.y181{bottom:546.560000pt;}
.y243{bottom:547.520000pt;}
.y5c{bottom:551.644800pt;}
.y45{bottom:551.674240pt;}
.y214{bottom:553.278080pt;}
.y217{bottom:553.280000pt;}
.yab{bottom:554.233600pt;}
.y149{bottom:554.580480pt;}
.yd3{bottom:557.760000pt;}
.y15a{bottom:559.042560pt;}
.y1f0{bottom:559.045120pt;}
.y82{bottom:559.082240pt;}
.yd{bottom:559.349760pt;}
.y218{bottom:560.960000pt;}
.y180{bottom:561.920000pt;}
.y1a8{bottom:562.891520pt;}
.y5b{bottom:566.370560pt;}
.y44{bottom:566.400000pt;}
.y213{bottom:568.640000pt;}
.y240{bottom:568.960000pt;}
.yaa{bottom:569.595520pt;}
.y148{bottom:571.537920pt;}
.yc{bottom:573.114880pt;}
.yd2{bottom:574.400000pt;}
.y159{bottom:576.000000pt;}
.y1ef{bottom:576.002560pt;}
.y81{bottom:576.039680pt;}
.y17f{bottom:577.280000pt;}
.y1a7{bottom:579.848960pt;}
.y5a{bottom:581.096320pt;}
.ya9{bottom:585.300480pt;}
.yb{bottom:586.880000pt;}
.y23f{bottom:587.518080pt;}
.y241{bottom:587.520000pt;}
.y147{bottom:588.171520pt;}
.yd1{bottom:591.360000pt;}
.y158{bottom:592.960000pt;}
.y17e{bottom:592.982907pt;}
.y80{bottom:592.997120pt;}
.y242{bottom:595.200000pt;}
.y42{bottom:595.487867pt;}
.y59{bottom:595.493760pt;}
.y1a6{bottom:596.806400pt;}
.ya{bottom:601.280000pt;}
.ya8{bottom:601.934080pt;}
.y23e{bottom:602.880000pt;}
.y146{bottom:605.128960pt;}
.yd0{bottom:608.330240pt;}
.y1e0{bottom:609.600000pt;}
.y17d{bottom:609.616507pt;}
.y7f{bottom:609.630720pt;}
.y41{bottom:610.213627pt;}
.y58{bottom:610.219520pt;}
.y210{bottom:610.880000pt;}
.y135{bottom:611.846400pt;}
.y1a5{bottom:613.440000pt;}
.ya7{bottom:618.891520pt;}
.y20f{bottom:621.758080pt;}
.y145{bottom:622.086400pt;}
.y40{bottom:624.939387pt;}
.y57{bottom:624.945280pt;}
.ycf{bottom:624.963840pt;}
.y1ee{bottom:626.560000pt;}
.y1df{bottom:626.565120pt;}
.y17c{bottom:626.573947pt;}
.y7e{bottom:626.588160pt;}
.y134{bottom:627.840000pt;}
.y212{bottom:629.440000pt;}
.y1a4{bottom:632.320000pt;}
.ya6{bottom:635.848960pt;}
.y20e{bottom:637.120000pt;}
.y9{bottom:638.720000pt;}
.y3f{bottom:639.665147pt;}
.y56{bottom:639.671040pt;}
.yce{bottom:641.921280pt;}
.y1de{bottom:643.522560pt;}
.y1ed{bottom:643.528960pt;}
.y17b{bottom:643.531387pt;}
.y7d{bottom:643.545600pt;}
.y23a{bottom:644.800000pt;}
.ya5{bottom:652.806400pt;}
.y3e{bottom:654.062587pt;}
.y55{bottom:654.068480pt;}
.y144{bottom:655.346560pt;}
.y1a3{bottom:655.360000pt;}
.ycd{bottom:658.878720pt;}
.y1dd{bottom:660.480000pt;}
.y1ec{bottom:660.486400pt;}
.y17a{bottom:660.488827pt;}
.y7c{bottom:660.503040pt;}
.y8{bottom:662.079040pt;}
.y23d{bottom:663.360000pt;}
.y3d{bottom:668.788347pt;}
.y54{bottom:668.794240pt;}
.ya4{bottom:669.440000pt;}
.y143{bottom:670.708480pt;}
.y1a2{bottom:670.720000pt;}
.y239{bottom:671.038080pt;}
.y209{bottom:671.680000pt;}
.ycc{bottom:676.168960pt;}
.y1dc{bottom:677.120000pt;}
.y179{bottom:677.122427pt;}
.y7b{bottom:677.136640pt;}
.y23c{bottom:678.720000pt;}
.y3c{bottom:683.514107pt;}
.y53{bottom:683.520000pt;}
.y1a1{bottom:685.759867pt;}
.ya3{bottom:686.070400pt;}
.y238{bottom:686.400000pt;}
.y7{bottom:688.000000pt;}
.y20c{bottom:689.919867pt;}
.y178{bottom:694.079867pt;}
.ycb{bottom:694.083200pt;}
.y7a{bottom:694.094080pt;}
.y3b{bottom:698.230907pt;}
.y1a0{bottom:701.120000pt;}
.ya2{bottom:701.432320pt;}
.y20b{bottom:705.280000pt;}
.y208{bottom:707.198080pt;}
.yef{bottom:711.036800pt;}
.y177{bottom:711.040000pt;}
.yca{bottom:711.040640pt;}
.y79{bottom:711.051520pt;}
.y6{bottom:711.360000pt;}
.y3a{bottom:712.956667pt;}
.y20d{bottom:714.880000pt;}
.ya1{bottom:716.794240pt;}
.y19f{bottom:716.800000pt;}
.y207{bottom:722.560000pt;}
.y39{bottom:727.354107pt;}
.yee{bottom:727.361280pt;}
.yc9{bottom:727.365120pt;}
.y176{bottom:727.679867pt;}
.y78{bottom:727.685120pt;}
.y5{bottom:728.639040pt;}
.ya0{bottom:732.156160pt;}
.y19e{bottom:732.160000pt;}
.y236{bottom:736.320000pt;}
.y20a{bottom:739.520000pt;}
.y38{bottom:742.079867pt;}
.yc8{bottom:744.322560pt;}
.y1db{bottom:744.640000pt;}
.y77{bottom:744.642560pt;}
.y9f{bottom:747.518080pt;}
.y19d{bottom:747.520000pt;}
.y4{bottom:754.560000pt;}
.yc7{bottom:761.280000pt;}
.y76{bottom:761.600000pt;}
.y9e{bottom:762.880000pt;}
.y35{bottom:833.919867pt;}
.y1{bottom:835.839867pt;}
.hf{height:28.501875pt;}
.h28{height:30.400000pt;}
.h1f{height:30.720000pt;}
.h3{height:37.063125pt;}
.h6{height:40.113750pt;}
.h1e{height:40.882500pt;}
.h12{height:42.225000pt;}
.h2{height:42.678750pt;}
.hb{height:42.760670pt;}
.ha{height:42.786270pt;}
.he{height:44.336250pt;}
.h23{height:46.080000pt;}
.h14{height:47.171250pt;}
.h1a{height:47.748750pt;}
.h1b{height:50.670000pt;}
.h1c{height:51.638150pt;}
.h9{height:51.663750pt;}
.h19{height:51.679110pt;}
.h11{height:51.699590pt;}
.h13{height:52.296250pt;}
.h16{height:56.115290pt;}
.h15{height:56.120410pt;}
.h17{height:56.156250pt;}
.h24{height:61.120000pt;}
.h2a{height:61.121333pt;}
.h25{height:61.440000pt;}
.h8{height:65.141250pt;}
.h27{height:70.080000pt;}
.h4{height:70.726875pt;}
.h18{height:71.623125pt;}
.h5{height:75.891340pt;}
.h29{height:76.800000pt;}
.h1d{height:77.495625pt;}
.h22{height:95.040000pt;}
.h20{height:95.358667pt;}
.h26{height:100.800000pt;}
.h7{height:105.566340pt;}
.hd{height:117.120000pt;}
.h21{height:125.760000pt;}
.hc{height:284.478667pt;}
.h10{height:410.240000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w8{width:73.601333pt;}
.w6{width:117.760000pt;}
.w3{width:151.361333pt;}
.w5{width:249.280000pt;}
.w4{width:249.281333pt;}
.w7{width:275.520000pt;}
.w2{width:340.158667pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x30{left:6.080000pt;}
.x7{left:10.560000pt;}
.xd{left:14.400000pt;}
.x2a{left:16.640000pt;}
.x2f{left:20.160000pt;}
.xa{left:21.120000pt;}
.x2d{left:38.080000pt;}
.x11{left:68.800000pt;}
.x10{left:78.400000pt;}
.x6{left:82.880000pt;}
.x1{left:85.120000pt;}
.x29{left:86.400000pt;}
.x5{left:89.597440pt;}
.x31{left:92.480000pt;}
.x4{left:93.440000pt;}
.xb{left:95.680000pt;}
.x2c{left:97.920000pt;}
.xf{left:104.000000pt;}
.x13{left:113.600000pt;}
.x12{left:114.880000pt;}
.x1d{left:120.000000pt;}
.x1a{left:121.280000pt;}
.x18{left:122.878080pt;}
.x14{left:124.480000pt;}
.x28{left:127.040000pt;}
.x1b{left:132.479360pt;}
.x20{left:144.000000pt;}
.x27{left:145.280000pt;}
.x23{left:157.440000pt;}
.x2{left:158.400000pt;}
.x25{left:169.273600pt;}
.x2b{left:205.440000pt;}
.x32{left:211.520000pt;}
.x21{left:246.407040pt;}
.x1e{left:287.999360pt;}
.x1c{left:321.280000pt;}
.x19{left:326.720000pt;}
.xc{left:334.400000pt;}
.xe{left:348.800000pt;}
.x15{left:357.120000pt;}
.x9{left:423.040000pt;}
.x8{left:443.200000pt;}
.x17{left:464.000000pt;}
.x2e{left:482.560000pt;}
.x1f{left:485.129600pt;}
.x3{left:486.404160pt;}
.x33{left:488.320000pt;}
.x26{left:518.093440pt;}
.x24{left:528.320000pt;}
.x22{left:545.600000pt;}
.x16{left:557.440000pt;}
}




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