
    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_cc6410672711cb6527215c6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_900699016574792430fc3a1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_ea5dd71a84467290b3483fd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_717c61eff665be79aba8988f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_2e6bda5bf1191a5c8eaec3a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_64ed074aeef2cdb78c1cb5a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_fa7308e8af0e932d21861836.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e3896ad1832542e133462cc2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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:ff9;src:url('chunks/assets/font_606bd4c2a033731a055c8957.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.782000;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:ffa;src:url('chunks/assets/font_2c07d237f7e0ad3ccd715678.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.856000;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:ffb;src:url('chunks/assets/font_87014a85fca27fb47741cc0f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.049000;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:ffc;src:url('chunks/assets/font_48f63164db518a36ba3788bd.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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:ffd;src:url('chunks/assets/font_5cd09972fddd9fb448a452f4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.655000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.970000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v7{vertical-align:31.470000px;}
.v6{vertical-align:40.440000px;}
.v9{vertical-align:45.306000px;}
.v8{vertical-align:102.222000px;}
.ls7{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000300px;}
.ls15{letter-spacing:0.000564px;}
.lsb{letter-spacing:0.000583px;}
.ls14{letter-spacing:0.000648px;}
.ls38{letter-spacing:0.001140px;}
.ls2c{letter-spacing:0.002387px;}
.lse{letter-spacing:0.003031px;}
.ls9{letter-spacing:0.003269px;}
.ls4{letter-spacing:0.004200px;}
.ls23{letter-spacing:0.005602px;}
.ls18{letter-spacing:0.221549px;}
.ls6{letter-spacing:2.449834px;}
.ls5{letter-spacing:2.964877px;}
.ls25{letter-spacing:2.982648px;}
.lsc{letter-spacing:2.984525px;}
.ls3{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.985113px;}
.ls3e{letter-spacing:2.987675px;}
.lsf{letter-spacing:2.988648px;}
.ls8{letter-spacing:2.988780px;}
.ls0{letter-spacing:2.990915px;}
.ls2{letter-spacing:2.991113px;}
.ls2e{letter-spacing:3.156921px;}
.ls21{letter-spacing:9.962338px;}
.lsa{letter-spacing:9.964200px;}
.ls22{letter-spacing:9.982525px;}
.ls26{letter-spacing:13.278538px;}
.ls13{letter-spacing:13.280338px;}
.ls19{letter-spacing:13.281269px;}
.ls17{letter-spacing:13.284538px;}
.ls33{letter-spacing:13.286338px;}
.ls27{letter-spacing:13.287269px;}
.ls12{letter-spacing:13.505549px;}
.ls24{letter-spacing:16.266648px;}
.ls16{letter-spacing:16.268525px;}
.ls34{letter-spacing:16.272648px;}
.ls2d{letter-spacing:16.440921px;}
.ls2b{letter-spacing:16.601607px;}
.ls11{letter-spacing:16.602538px;}
.ls32{letter-spacing:16.604172px;}
.ls35{letter-spacing:16.610172px;}
.ls3d{letter-spacing:17.436921px;}
.ls29{letter-spacing:18.533549px;}
.ls10{letter-spacing:19.590648px;}
.ls2a{letter-spacing:19.758921px;}
.ls20{letter-spacing:25.974648px;}
.ls37{letter-spacing:27.836172px;}
.lsd{letter-spacing:30.054648px;}
.ls1b{letter-spacing:30.917549px;}
.ls3c{letter-spacing:30.978305px;}
.ls30{letter-spacing:34.086921px;}
.ls1c{letter-spacing:34.696200px;}
.ls1d{letter-spacing:34.698538px;}
.ls1e{letter-spacing:34.925549px;}
.ls31{letter-spacing:59.150338px;}
.ls3a{letter-spacing:59.774338px;}
.ls2f{letter-spacing:143.433269px;}
.ls36{letter-spacing:170.926200px;}
.ls28{letter-spacing:174.486600px;}
.ls39{letter-spacing:206.258338px;}
.ls3b{letter-spacing:294.818338px;}
.ls1a{letter-spacing:295.676525px;}
.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;}
}
.wsed{word-spacing:-59.775600px;}
.wsef{word-spacing:-48.920351px;}
.wse1{word-spacing:-38.937826px;}
.wsab{word-spacing:-28.955301px;}
.ws101{word-spacing:-22.320209px;}
.ws4{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.920027px;}
.ws59{word-spacing:-11.955150px;}
.wsf6{word-spacing:-10.460700px;}
.ws91{word-spacing:-2.988780px;}
.wsc2{word-spacing:-1.135736px;}
.ws32{word-spacing:-1.075961px;}
.ws153{word-spacing:-0.956412px;}
.ws158{word-spacing:-0.812950px;}
.ws14a{word-spacing:-0.765130px;}
.ws68{word-spacing:-0.717307px;}
.ws15d{word-spacing:-0.669488px;}
.ws7e{word-spacing:-0.657532px;}
.ws14b{word-spacing:-0.478206px;}
.wsd9{word-spacing:-0.358654px;}
.ws157{word-spacing:-0.334744px;}
.ws148{word-spacing:-0.286924px;}
.ws92{word-spacing:-0.239102px;}
.ws140{word-spacing:-0.179327px;}
.ws121{word-spacing:-0.119551px;}
.wsaa{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wse5{word-spacing:-0.041843px;}
.ws56{word-spacing:0.000000px;}
.ws13e{word-spacing:0.059776px;}
.wsa4{word-spacing:0.119551px;}
.ws15e{word-spacing:0.191282px;}
.ws15b{word-spacing:0.239103px;}
.ws106{word-spacing:0.298878px;}
.ws14f{word-spacing:0.334744px;}
.ws76{word-spacing:0.418429px;}
.ws104{word-spacing:0.478205px;}
.wsd4{word-spacing:0.597756px;}
.wsc1{word-spacing:0.717307px;}
.wsa2{word-spacing:0.896634px;}
.ws65{word-spacing:0.956410px;}
.ws93{word-spacing:1.016185px;}
.ws11b{word-spacing:1.075961px;}
.wsd7{word-spacing:1.195512px;}
.wsac{word-spacing:1.255288px;}
.ws11f{word-spacing:1.374839px;}
.ws116{word-spacing:1.434614px;}
.ws4b{word-spacing:1.494390px;}
.ws12d{word-spacing:1.554166px;}
.ws29{word-spacing:1.613941px;}
.ws71{word-spacing:1.733492px;}
.ws67{word-spacing:1.853044px;}
.ws8e{word-spacing:1.912819px;}
.wsda{word-spacing:1.972595px;}
.wsf0{word-spacing:2.032370px;}
.ws62{word-spacing:2.092146px;}
.wsde{word-spacing:2.211697px;}
.ws85{word-spacing:2.271473px;}
.ws12e{word-spacing:2.331248px;}
.ws123{word-spacing:2.450800px;}
.ws10b{word-spacing:2.510575px;}
.ws152{word-spacing:2.534492px;}
.ws3e{word-spacing:2.570351px;}
.ws55{word-spacing:2.630126px;}
.wsf1{word-spacing:2.689902px;}
.ws155{word-spacing:2.725774px;}
.ws11c{word-spacing:2.773595px;}
.ws49{word-spacing:2.809453px;}
.ws5c{word-spacing:2.929004px;}
.wsdb{word-spacing:2.988780px;}
.ws89{word-spacing:3.108331px;}
.wsfd{word-spacing:3.168107px;}
.wsbb{word-spacing:3.227882px;}
.ws75{word-spacing:3.287658px;}
.wsf5{word-spacing:3.347434px;}
.ws3f{word-spacing:3.407209px;}
.wsa1{word-spacing:3.526760px;}
.ws127{word-spacing:3.586536px;}
.ws1f{word-spacing:3.765863px;}
.ws114{word-spacing:3.825638px;}
.ws10c{word-spacing:3.885414px;}
.ws6a{word-spacing:3.945190px;}
.ws13d{word-spacing:4.124516px;}
.ws69{word-spacing:4.184292px;}
.wsc9{word-spacing:4.244068px;}
.ws7b{word-spacing:4.303843px;}
.ws40{word-spacing:4.363619px;}
.ws34{word-spacing:4.483170px;}
.ws132{word-spacing:4.542946px;}
.ws6c{word-spacing:4.602721px;}
.ws44{word-spacing:4.662497px;}
.ws2a{word-spacing:4.722272px;}
.ws88{word-spacing:4.782048px;}
.wsa8{word-spacing:4.782060px;}
.ws23{word-spacing:4.841824px;}
.ws7d{word-spacing:4.901599px;}
.ws13f{word-spacing:4.961375px;}
.ws6d{word-spacing:5.021150px;}
.wscc{word-spacing:5.080926px;}
.ws5e{word-spacing:5.140702px;}
.wsa9{word-spacing:5.200477px;}
.wsea{word-spacing:5.260253px;}
.ws125{word-spacing:5.320028px;}
.ws9f{word-spacing:5.379804px;}
.wsce{word-spacing:5.439580px;}
.ws22{word-spacing:5.499355px;}
.ws25{word-spacing:5.559131px;}
.ws7a{word-spacing:5.618906px;}
.wsbf{word-spacing:5.678682px;}
.ws2c{word-spacing:5.798233px;}
.ws159{word-spacing:5.834113px;}
.wse2{word-spacing:5.917784px;}
.ws58{word-spacing:5.919699px;}
.ws102{word-spacing:5.977208px;}
.ws3{word-spacing:5.977560px;}
.wsbd{word-spacing:6.097111px;}
.ws160{word-spacing:6.121037px;}
.ws3a{word-spacing:6.156887px;}
.ws4e{word-spacing:6.216662px;}
.ws156{word-spacing:6.264499px;}
.wsd3{word-spacing:6.276438px;}
.wsb2{word-spacing:6.336214px;}
.ws131{word-spacing:6.395989px;}
.ws80{word-spacing:6.515540px;}
.wsf2{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws2f{word-spacing:6.635092px;}
.ws145{word-spacing:6.790525px;}
.ws70{word-spacing:6.814418px;}
.wsb5{word-spacing:6.874194px;}
.ws27{word-spacing:6.993745px;}
.ws60{word-spacing:7.113296px;}
.ws112{word-spacing:7.173072px;}
.wsfe{word-spacing:7.232848px;}
.ws21{word-spacing:7.471950px;}
.ws78{word-spacing:7.531726px;}
.wsc0{word-spacing:7.591501px;}
.ws154{word-spacing:7.603475px;}
.ws6b{word-spacing:7.651277px;}
.wsba{word-spacing:7.711052px;}
.ws28{word-spacing:7.770828px;}
.ws86{word-spacing:7.830604px;}
.ws149{word-spacing:7.842578px;}
.ws134{word-spacing:7.890379px;}
.ws107{word-spacing:7.950155px;}
.ws4a{word-spacing:8.009930px;}
.ws47{word-spacing:8.069706px;}
.ws119{word-spacing:8.129482px;}
.ws122{word-spacing:8.189257px;}
.ws9e{word-spacing:8.249033px;}
.wsbe{word-spacing:8.308808px;}
.ws42{word-spacing:8.368584px;}
.ws94{word-spacing:8.428360px;}
.ws10d{word-spacing:8.488135px;}
.wsa0{word-spacing:8.547911px;}
.ws15f{word-spacing:8.559887px;}
.ws46{word-spacing:8.607686px;}
.ws3b{word-spacing:8.667462px;}
.ws11d{word-spacing:8.727238px;}
.ws126{word-spacing:8.846789px;}
.ws151{word-spacing:9.038093px;}
.ws13c{word-spacing:9.085891px;}
.ws10e{word-spacing:9.145667px;}
.wsdd{word-spacing:9.205442px;}
.ws135{word-spacing:9.265218px;}
.ws111{word-spacing:9.324994px;}
.ws8f{word-spacing:9.384769px;}
.ws2d{word-spacing:9.504320px;}
.ws103{word-spacing:9.518134px;}
.ws3c{word-spacing:9.564096px;}
.ws11a{word-spacing:9.623872px;}
.wsbc{word-spacing:9.683647px;}
.ws105{word-spacing:9.743423px;}
.ws4f{word-spacing:9.803198px;}
.wse0{word-spacing:9.862974px;}
.wsee{word-spacing:9.902624px;}
.wsec{word-spacing:9.906824px;}
.ws13b{word-spacing:9.922750px;}
.ws108{word-spacing:9.982525px;}
.ws77{word-spacing:10.042301px;}
.ws9b{word-spacing:10.161852px;}
.ws72{word-spacing:10.221628px;}
.ws129{word-spacing:10.281403px;}
.ws63{word-spacing:10.341179px;}
.ws9c{word-spacing:10.400954px;}
.ws136{word-spacing:10.460730px;}
.ws15c{word-spacing:10.472711px;}
.ws130{word-spacing:10.520506px;}
.ws7c{word-spacing:10.580281px;}
.wsb0{word-spacing:10.640057px;}
.ws8d{word-spacing:10.699832px;}
.wse3{word-spacing:10.715083px;}
.ws12b{word-spacing:10.759608px;}
.ws120{word-spacing:10.879159px;}
.wscb{word-spacing:10.938935px;}
.ws45{word-spacing:10.998710px;}
.ws0{word-spacing:11.046559px;}
.ws2b{word-spacing:11.058486px;}
.ws30{word-spacing:11.178037px;}
.ws6e{word-spacing:11.297588px;}
.ws38{word-spacing:11.357364px;}
.wsd2{word-spacing:11.417140px;}
.ws84{word-spacing:11.476915px;}
.ws13a{word-spacing:11.536691px;}
.ws26{word-spacing:11.596466px;}
.ws113{word-spacing:11.656242px;}
.ws3d{word-spacing:11.716018px;}
.ws109{word-spacing:11.775793px;}
.ws64{word-spacing:11.835569px;}
.ws35{word-spacing:11.955120px;}
.wsb6{word-spacing:12.014896px;}
.ws74{word-spacing:12.074671px;}
.wsc4{word-spacing:12.134447px;}
.ws14d{word-spacing:12.242074px;}
.wsad{word-spacing:12.313774px;}
.ws118{word-spacing:12.433325px;}
.ws98{word-spacing:12.552876px;}
.wsb4{word-spacing:12.612652px;}
.wsdc{word-spacing:12.791978px;}
.ws95{word-spacing:12.851754px;}
.ws90{word-spacing:12.911530px;}
.ws150{word-spacing:13.007203px;}
.ws39{word-spacing:13.031081px;}
.ws4c{word-spacing:13.090856px;}
.ws18{word-spacing:13.126810px;}
.wscd{word-spacing:13.150632px;}
.ws54{word-spacing:13.210408px;}
.wsfb{word-spacing:13.224763px;}
.wsfa{word-spacing:13.254774px;}
.ws5f{word-spacing:13.270183px;}
.wscf{word-spacing:13.329959px;}
.ws96{word-spacing:13.389734px;}
.wsc3{word-spacing:13.449510px;}
.ws15a{word-spacing:13.485409px;}
.ws83{word-spacing:13.509286px;}
.ws9d{word-spacing:13.628837px;}
.ws97{word-spacing:13.688612px;}
.ws110{word-spacing:13.748388px;}
.ws37{word-spacing:13.808164px;}
.wsc8{word-spacing:13.867939px;}
.wsb1{word-spacing:13.987490px;}
.wsdf{word-spacing:14.047266px;}
.ws14e{word-spacing:14.107077px;}
.ws146{word-spacing:14.154898px;}
.ws128{word-spacing:14.166817px;}
.ws52{word-spacing:14.226593px;}
.ws5a{word-spacing:14.286368px;}
.ws7f{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws8{word-spacing:14.364173px;}
.ws36{word-spacing:14.465695px;}
.ws50{word-spacing:14.525471px;}
.ws12f{word-spacing:14.585246px;}
.wsb7{word-spacing:14.645022px;}
.ws133{word-spacing:14.764573px;}
.wsa5{word-spacing:14.824349px;}
.wsb3{word-spacing:14.884124px;}
.wsa3{word-spacing:15.003676px;}
.ws79{word-spacing:15.183002px;}
.ws87{word-spacing:15.242778px;}
.ws57{word-spacing:15.422105px;}
.wsae{word-spacing:15.481880px;}
.ws1b{word-spacing:15.547738px;}
.wse6{word-spacing:15.720983px;}
.wsa6{word-spacing:15.900310px;}
.wsf8{word-spacing:15.960085px;}
.ws2e{word-spacing:16.019861px;}
.wsd{word-spacing:16.031923px;}
.ws73{word-spacing:16.079636px;}
.ws82{word-spacing:16.139412px;}
.ws99{word-spacing:16.258963px;}
.wsd6{word-spacing:16.318739px;}
.wsf7{word-spacing:16.530415px;}
.wsff{word-spacing:16.557841px;}
.ws8a{word-spacing:16.617617px;}
.ws6f{word-spacing:16.677392px;}
.ws137{word-spacing:16.737168px;}
.ws12a{word-spacing:16.796944px;}
.ws31{word-spacing:17.095822px;}
.ws81{word-spacing:17.215373px;}
.ws138{word-spacing:17.275148px;}
.ws139{word-spacing:17.334924px;}
.ws10a{word-spacing:17.390220px;}
.ws5d{word-spacing:17.394700px;}
.ws41{word-spacing:17.454475px;}
.ws66{word-spacing:17.514251px;}
.ws10{word-spacing:17.538278px;}
.ws8b{word-spacing:17.574026px;}
.ws9a{word-spacing:17.633802px;}
.ws33{word-spacing:17.753353px;}
.wse{word-spacing:17.807270px;}
.ws1c{word-spacing:17.932680px;}
.wsfc{word-spacing:18.067063px;}
.ws15{word-spacing:18.183859px;}
.ws4d{word-spacing:18.351109px;}
.wsc7{word-spacing:18.410885px;}
.wsa7{word-spacing:18.470660px;}
.ws48{word-spacing:18.590212px;}
.ws14c{word-spacing:18.697855px;}
.ws24{word-spacing:18.709763px;}
.wse8{word-spacing:18.889090px;}
.ws43{word-spacing:18.948865px;}
.wsd8{word-spacing:19.128192px;}
.ws117{word-spacing:19.367294px;}
.wsca{word-spacing:19.546621px;}
.ws100{word-spacing:19.548683px;}
.wsf4{word-spacing:19.550547px;}
.ws5b{word-spacing:19.666172px;}
.wsd5{word-spacing:19.725948px;}
.wsc6{word-spacing:19.905275px;}
.ws115{word-spacing:20.023962px;}
.ws20{word-spacing:20.024826px;}
.ws19{word-spacing:20.120602px;}
.ws124{word-spacing:20.144377px;}
.wseb{word-spacing:20.263928px;}
.ws11e{word-spacing:20.383480px;}
.ws1e{word-spacing:20.861684px;}
.ws61{word-spacing:21.041011px;}
.wsc5{word-spacing:21.100787px;}
.wse7{word-spacing:21.220338px;}
.ws7{word-spacing:21.411763px;}
.wse9{word-spacing:21.997421px;}
.ws12c{word-spacing:22.356074px;}
.wsd1{word-spacing:22.415850px;}
.ws147{word-spacing:22.427861px;}
.ws16{word-spacing:22.649126px;}
.wsf9{word-spacing:22.894055px;}
.wsb9{word-spacing:23.073382px;}
.ws12{word-spacing:23.240909px;}
.wsf3{word-spacing:23.870547px;}
.ws51{word-spacing:24.029791px;}
.ws53{word-spacing:24.567772px;}
.ws8c{word-spacing:25.285079px;}
.wsaf{word-spacing:25.524181px;}
.ws14{word-spacing:25.715635px;}
.wsb{word-spacing:28.082765px;}
.wse4{word-spacing:28.602683px;}
.wsc{word-spacing:28.997338px;}
.ws11{word-spacing:29.104934px;}
.ws10f{word-spacing:29.230268px;}
.ws1a{word-spacing:29.750515px;}
.wsd0{word-spacing:30.186678px;}
.ws142{word-spacing:31.860395px;}
.ws161{word-spacing:32.422367px;}
.ws9{word-spacing:33.462605px;}
.wsf{word-spacing:34.108186px;}
.ws144{word-spacing:34.550297px;}
.wsb8{word-spacing:37.957506px;}
.ws17{word-spacing:39.326630px;}
.ws13{word-spacing:39.488026px;}
.wsa{word-spacing:40.617792px;}
.ws141{word-spacing:47.641153px;}
.ws6{word-spacing:53.852198px;}
.ws143{word-spacing:104.188871px;}
._2{margin-left:-8.607708px;}
._4{margin-left:-7.294836px;}
._3{margin-left:-5.263372px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-2.151927px;}
._5{margin-left:-1.135731px;}
._c{width:1.417139px;}
._8{width:2.988780px;}
._d{width:4.555385px;}
._f{width:13.569061px;}
._10{width:15.599435px;}
._e{width:17.155597px;}
._13{width:19.008641px;}
._7{width:21.680755px;}
._6{width:24.747264px;}
._a{width:28.214083px;}
._b{width:29.887800px;}
._12{width:34.968731px;}
._11{width:36.086827px;}
._9{width:38.495486px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y129{bottom:122.328000px;}
.y38{bottom:127.558500px;}
.y1ac{bottom:131.887500px;}
.y128{bottom:132.579000px;}
.y37{bottom:145.491000px;}
.y1ee{bottom:147.141000px;}
.y1ab{bottom:149.820000px;}
.y1ed{bottom:160.590000px;}
.y36{bottom:163.423500px;}
.ye2{bottom:163.425000px;}
.y1aa{bottom:167.754000px;}
.y127{bottom:169.732500px;}
.y1ec{bottom:174.040500px;}
.yc3{bottom:181.356000px;}
.y35{bottom:181.357500px;}
.y1a9{bottom:185.686500px;}
.y1eb{bottom:187.489500px;}
.y126{bottom:187.665000px;}
.y5e{bottom:198.958500px;}
.yc2{bottom:199.288500px;}
.y93{bottom:199.290000px;}
.y34{bottom:199.557000px;}
.y1ea{bottom:200.940000px;}
.y1a8{bottom:203.619000px;}
.y125{bottom:205.597500px;}
.y1e9{bottom:214.389000px;}
.y92{bottom:217.222500px;}
.y33{bottom:217.489500px;}
.y1a7{bottom:221.551500px;}
.y124{bottom:223.530000px;}
.y1e8{bottom:227.838000px;}
.y91{bottom:235.155000px;}
.y32{bottom:235.422000px;}
.y1a6{bottom:239.484000px;}
.y1e7{bottom:241.288500px;}
.y5d{bottom:245.245500px;}
.y90{bottom:253.087500px;}
.yc1{bottom:253.180500px;}
.y31{bottom:253.354500px;}
.y123{bottom:254.062500px;}
.y1e6{bottom:254.737500px;}
.y1a5{bottom:257.416500px;}
.y5c{bottom:263.178000px;}
.y1e5{bottom:268.186500px;}
.y8f{bottom:271.020000px;}
.ye1{bottom:271.021500px;}
.yc0{bottom:271.113000px;}
.y30{bottom:271.287000px;}
.y1a4{bottom:275.350500px;}
.y5b{bottom:281.110500px;}
.y1e4{bottom:281.637000px;}
.y122{bottom:284.596500px;}
.yf8{bottom:288.952500px;}
.y8e{bottom:288.954000px;}
.ybf{bottom:289.138500px;}
.y2f{bottom:289.221000px;}
.y1a3{bottom:293.283000px;}
.y1e3{bottom:295.086000px;}
.y5a{bottom:299.044500px;}
.y121{bottom:302.529000px;}
.y155{bottom:306.775500px;}
.y8d{bottom:306.886500px;}
.ybe{bottom:307.071000px;}
.y2e{bottom:307.153500px;}
.y1e2{bottom:308.535000px;}
.y1a2{bottom:311.215500px;}
.y59{bottom:316.977000px;}
.y120{bottom:320.461500px;}
.y1e1{bottom:321.985500px;}
.y154{bottom:324.709500px;}
.y8c{bottom:324.819000px;}
.ybd{bottom:325.003500px;}
.y2d{bottom:325.086000px;}
.y1a1{bottom:329.148000px;}
.y58{bottom:334.909500px;}
.y1e0{bottom:335.434500px;}
.y153{bottom:342.642000px;}
.y8b{bottom:342.751500px;}
.ybc{bottom:342.936000px;}
.y2c{bottom:343.018500px;}
.y1a0{bottom:347.080500px;}
.y1df{bottom:348.885000px;}
.y11f{bottom:350.994000px;}
.y57{bottom:352.842000px;}
.y152{bottom:360.574500px;}
.y8a{bottom:360.684000px;}
.y167{bottom:360.685500px;}
.ybb{bottom:360.870000px;}
.y2b{bottom:360.951000px;}
.y1de{bottom:362.334000px;}
.y19f{bottom:370.296000px;}
.y56{bottom:370.774500px;}
.y1dd{bottom:375.783000px;}
.y151{bottom:378.507000px;}
.y89{bottom:378.616500px;}
.ye0{bottom:378.618000px;}
.yba{bottom:378.802500px;}
.y2a{bottom:378.885000px;}
.y11e{bottom:381.526500px;}
.y166{bottom:385.395000px;}
.y55{bottom:388.707000px;}
.y1dc{bottom:389.233500px;}
.y150{bottom:396.439500px;}
.ydf{bottom:396.550500px;}
.yb9{bottom:396.735000px;}
.y29{bottom:396.817500px;}
.y11d{bottom:399.459000px;}
.y1db{bottom:402.682500px;}
.y88{bottom:404.152500px;}
.y54{bottom:408.789000px;}
.y14f{bottom:414.373500px;}
.yf7{bottom:414.483000px;}
.yb8{bottom:414.667500px;}
.y28{bottom:414.750000px;}
.y1da{bottom:416.131500px;}
.yde{bottom:416.944500px;}
.y11c{bottom:417.393000px;}
.y165{bottom:423.723000px;}
.y53{bottom:426.721500px;}
.y1d9{bottom:429.582000px;}
.y14e{bottom:432.306000px;}
.yf6{bottom:432.415500px;}
.yb7{bottom:432.600000px;}
.y27{bottom:432.682500px;}
.ydd{bottom:434.877000px;}
.y11b{bottom:435.325500px;}
.y87{bottom:439.201500px;}
.y1d8{bottom:443.031000px;}
.y52{bottom:444.655500px;}
.y14d{bottom:450.238500px;}
.yf5{bottom:450.348000px;}
.yb6{bottom:450.532500px;}
.y26{bottom:450.615000px;}
.ydc{bottom:452.809500px;}
.y11a{bottom:453.258000px;}
.y18c{bottom:455.010000px;}
.y1d7{bottom:456.481500px;}
.y86{bottom:457.135500px;}
.y51{bottom:462.588000px;}
.y14c{bottom:468.171000px;}
.yb5{bottom:468.466500px;}
.y25{bottom:468.547500px;}
.y1d6{bottom:469.930500px;}
.ydb{bottom:470.743500px;}
.y119{bottom:471.190500px;}
.y85{bottom:475.068000px;}
.yf4{bottom:475.665000px;}
.y50{bottom:480.520500px;}
.y18b{bottom:482.760000px;}
.y1d5{bottom:483.379500px;}
.y19e{bottom:484.432500px;}
.y14b{bottom:486.103500px;}
.yb4{bottom:486.399000px;}
.y24{bottom:486.481500px;}
.yda{bottom:488.676000px;}
.y118{bottom:489.123000px;}
.y84{bottom:493.000500px;}
.yf3{bottom:493.599000px;}
.y1d4{bottom:496.830000px;}
.y4f{bottom:498.453000px;}
.y18a{bottom:500.692500px;}
.y19d{bottom:502.365000px;}
.y14a{bottom:504.036000px;}
.yb3{bottom:504.331500px;}
.y23{bottom:504.414000px;}
.yd9{bottom:506.608500px;}
.y117{bottom:507.057000px;}
.y1d3{bottom:510.279000px;}
.y83{bottom:510.933000px;}
.yf2{bottom:511.531500px;}
.y4e{bottom:516.385500px;}
.y189{bottom:518.625000px;}
.y19c{bottom:520.297500px;}
.y149{bottom:521.970000px;}
.yb2{bottom:522.264000px;}
.y22{bottom:522.346500px;}
.y1d2{bottom:523.728000px;}
.yd8{bottom:524.541000px;}
.y116{bottom:524.989500px;}
.y82{bottom:528.865500px;}
.yf1{bottom:529.464000px;}
.y4d{bottom:534.318000px;}
.y188{bottom:536.557500px;}
.y1d1{bottom:537.178500px;}
.y19b{bottom:538.230000px;}
.y148{bottom:539.902500px;}
.y21{bottom:540.279000px;}
.y115{bottom:542.922000px;}
.yd7{bottom:544.935000px;}
.yb1{bottom:545.229000px;}
.y81{bottom:546.799500px;}
.yf0{bottom:547.396500px;}
.y1d0{bottom:550.627500px;}
.y4c{bottom:552.252000px;}
.y187{bottom:554.491500px;}
.y19a{bottom:556.162500px;}
.y147{bottom:557.835000px;}
.y20{bottom:558.211500px;}
.y114{bottom:560.854500px;}
.yd6{bottom:562.869000px;}
.y1cf{bottom:564.078000px;}
.y80{bottom:564.732000px;}
.yef{bottom:565.329000px;}
.y4b{bottom:570.184500px;}
.y186{bottom:572.424000px;}
.yb0{bottom:574.035000px;}
.y199{bottom:574.096500px;}
.y146{bottom:575.767500px;}
.y1ce{bottom:577.527000px;}
.y113{bottom:578.787000px;}
.yd5{bottom:580.801500px;}
.y1f{bottom:582.454500px;}
.y7f{bottom:582.664500px;}
.yee{bottom:583.263000px;}
.y4a{bottom:588.117000px;}
.y185{bottom:590.356500px;}
.y1cd{bottom:590.976000px;}
.yaf{bottom:591.969000px;}
.y198{bottom:592.029000px;}
.y145{bottom:593.700000px;}
.y112{bottom:596.719500px;}
.yd4{bottom:598.734000px;}
.y7e{bottom:600.597000px;}
.yed{bottom:601.195500px;}
.y1e{bottom:601.954500px;}
.y1cc{bottom:604.426500px;}
.y49{bottom:606.049500px;}
.y164{bottom:607.660500px;}
.y184{bottom:608.289000px;}
.yae{bottom:609.901500px;}
.y197{bottom:609.961500px;}
.y144{bottom:611.632500px;}
.y111{bottom:614.653500px;}
.yd3{bottom:616.666500px;}
.y1d{bottom:616.899000px;}
.y1cb{bottom:617.875500px;}
.y7d{bottom:618.529500px;}
.yec{bottom:619.128000px;}
.y48{bottom:623.982000px;}
.y183{bottom:626.221500px;}
.yad{bottom:627.834000px;}
.y196{bottom:627.894000px;}
.y143{bottom:629.566500px;}
.y1ca{bottom:631.324500px;}
.y1c{bottom:631.842000px;}
.y110{bottom:632.586000px;}
.yd2{bottom:634.599000px;}
.y7c{bottom:636.462000px;}
.yeb{bottom:637.060500px;}
.y47{bottom:641.916000px;}
.y182{bottom:644.154000px;}
.y1c9{bottom:644.775000px;}
.yac{bottom:645.766500px;}
.y195{bottom:645.826500px;}
.y1b{bottom:647.053500px;}
.y10f{bottom:650.518500px;}
.y142{bottom:652.095000px;}
.yd1{bottom:652.531500px;}
.y7b{bottom:654.396000px;}
.yea{bottom:654.993000px;}
.y1c8{bottom:658.224000px;}
.y46{bottom:659.848500px;}
.y1a{bottom:661.998000px;}
.y181{bottom:662.088000px;}
.yab{bottom:663.699000px;}
.y194{bottom:663.760500px;}
.y10e{bottom:668.451000px;}
.yd0{bottom:670.465500px;}
.y1c7{bottom:671.674500px;}
.y7a{bottom:672.328500px;}
.ye9{bottom:672.925500px;}
.y19{bottom:676.941000px;}
.y45{bottom:677.781000px;}
.y141{bottom:679.455000px;}
.y180{bottom:680.020500px;}
.yaa{bottom:681.633000px;}
.y193{bottom:681.693000px;}
.y1c6{bottom:685.123500px;}
.ycf{bottom:688.398000px;}
.y79{bottom:690.261000px;}
.ye8{bottom:690.859500px;}
.y18{bottom:691.885500px;}
.y44{bottom:695.713500px;}
.y140{bottom:697.387500px;}
.y17f{bottom:697.953000px;}
.y1c5{bottom:698.572500px;}
.y10d{bottom:698.983500px;}
.ya9{bottom:699.565500px;}
.y192{bottom:699.625500px;}
.yce{bottom:706.330500px;}
.y17{bottom:706.830000px;}
.y78{bottom:708.193500px;}
.ye7{bottom:708.792000px;}
.y1c4{bottom:712.023000px;}
.y43{bottom:715.795500px;}
.y17e{bottom:715.885500px;}
.ya8{bottom:717.498000px;}
.y191{bottom:717.558000px;}
.y13f{bottom:719.917500px;}
.y16{bottom:721.773000px;}
.ycd{bottom:724.263000px;}
.y1c3{bottom:725.472000px;}
.y77{bottom:726.126000px;}
.ye6{bottom:726.724500px;}
.y10c{bottom:729.516000px;}
.y42{bottom:733.728000px;}
.y17d{bottom:733.818000px;}
.y190{bottom:735.490500px;}
.y15{bottom:736.717500px;}
.y1c2{bottom:738.921000px;}
.ya7{bottom:740.694000px;}
.y76{bottom:744.058500px;}
.ycc{bottom:744.657000px;}
.y13e{bottom:747.276000px;}
.y10b{bottom:747.450000px;}
.y41{bottom:751.660500px;}
.y14{bottom:751.662000px;}
.y17c{bottom:751.750500px;}
.y1c1{bottom:752.371500px;}
.y18f{bottom:753.423000px;}
.y75{bottom:761.992500px;}
.ye5{bottom:762.589500px;}
.ycb{bottom:762.591000px;}
.y13d{bottom:765.208500px;}
.y10a{bottom:765.382500px;}
.y1c0{bottom:765.820500px;}
.y13{bottom:766.605000px;}
.ya6{bottom:769.501500px;}
.y40{bottom:769.593000px;}
.y17b{bottom:769.684500px;}
.y18e{bottom:776.638500px;}
.y1bf{bottom:779.269500px;}
.y74{bottom:779.925000px;}
.ye4{bottom:780.522000px;}
.yca{bottom:780.523500px;}
.y12{bottom:781.549500px;}
.y13c{bottom:783.141000px;}
.y109{bottom:783.315000px;}
.ya5{bottom:787.434000px;}
.y3f{bottom:787.527000px;}
.y17a{bottom:787.617000px;}
.y1be{bottom:792.720000px;}
.y11{bottom:796.492500px;}
.y73{bottom:797.857500px;}
.yc9{bottom:798.456000px;}
.y13b{bottom:801.073500px;}
.y108{bottom:801.247500px;}
.y163{bottom:804.868500px;}
.ya4{bottom:805.366500px;}
.y3e{bottom:805.459500px;}
.y179{bottom:805.549500px;}
.y10{bottom:811.437000px;}
.y1bd{bottom:813.706500px;}
.y72{bottom:815.790000px;}
.yc8{bottom:816.388500px;}
.y13a{bottom:819.006000px;}
.y107{bottom:819.180000px;}
.y162{bottom:822.801000px;}
.ya3{bottom:823.299000px;}
.y3d{bottom:823.392000px;}
.y178{bottom:823.437000px;}
.yf{bottom:826.381500px;}
.y71{bottom:833.722500px;}
.yc7{bottom:834.321000px;}
.y139{bottom:836.940000px;}
.y106{bottom:837.114000px;}
.y1bc{bottom:838.108500px;}
.y161{bottom:840.733500px;}
.ya2{bottom:841.231500px;}
.ye{bottom:841.324500px;}
.y177{bottom:841.369500px;}
.y70{bottom:851.655000px;}
.yc6{bottom:852.253500px;}
.y138{bottom:854.872500px;}
.y105{bottom:855.046500px;}
.y1bb{bottom:856.041000px;}
.yd{bottom:856.269000px;}
.y160{bottom:858.666000px;}
.ya1{bottom:859.164000px;}
.y3c{bottom:859.257000px;}
.y176{bottom:859.302000px;}
.y6f{bottom:869.589000px;}
.ye3{bottom:870.186000px;}
.yc5{bottom:870.187500px;}
.yc{bottom:871.213500px;}
.y137{bottom:872.805000px;}
.y104{bottom:872.979000px;}
.y1ba{bottom:873.973500px;}
.y15f{bottom:876.598500px;}
.ya0{bottom:877.098000px;}
.y3b{bottom:877.189500px;}
.y175{bottom:877.236000px;}
.yb{bottom:886.156500px;}
.y6e{bottom:887.521500px;}
.yc4{bottom:890.062500px;}
.y136{bottom:890.737500px;}
.y103{bottom:890.911500px;}
.y1b9{bottom:891.907500px;}
.y15e{bottom:894.532500px;}
.y3a{bottom:895.123500px;}
.y174{bottom:895.168500px;}
.ya{bottom:901.101000px;}
.y6d{bottom:905.454000px;}
.y135{bottom:908.670000px;}
.y102{bottom:908.844000px;}
.y1b8{bottom:909.840000px;}
.y15d{bottom:912.465000px;}
.y39{bottom:913.056000px;}
.y173{bottom:913.101000px;}
.y9{bottom:916.045500px;}
.y6c{bottom:923.386500px;}
.y134{bottom:926.604000px;}
.y101{bottom:926.776500px;}
.y15c{bottom:930.397500px;}
.y8{bottom:930.988500px;}
.y172{bottom:931.033500px;}
.y1b7{bottom:931.876500px;}
.y6b{bottom:941.319000px;}
.y18d{bottom:943.387500px;}
.y133{bottom:944.536500px;}
.y100{bottom:944.710500px;}
.y15b{bottom:948.330000px;}
.y9f{bottom:948.921000px;}
.y171{bottom:948.966000px;}
.y1b6{bottom:956.280000px;}
.y6a{bottom:959.253000px;}
.y132{bottom:962.469000px;}
.yff{bottom:963.208500px;}
.y15a{bottom:966.262500px;}
.y9e{bottom:966.853500px;}
.y170{bottom:966.900000px;}
.y1b5{bottom:974.212500px;}
.y69{bottom:977.185500px;}
.yfe{bottom:981.141000px;}
.y7{bottom:982.521000px;}
.y159{bottom:984.196500px;}
.y9d{bottom:984.786000px;}
.y16f{bottom:984.832500px;}
.y131{bottom:989.631000px;}
.y1b4{bottom:992.145000px;}
.y68{bottom:995.118000px;}
.yfd{bottom:999.073500px;}
.y130{bottom:1000.957500px;}
.y158{bottom:1002.129000px;}
.y9c{bottom:1002.720000px;}
.y16e{bottom:1002.765000px;}
.y6{bottom:1006.437000px;}
.y1b3{bottom:1010.077500px;}
.y67{bottom:1013.050500px;}
.yfc{bottom:1017.006000px;}
.y9b{bottom:1020.652500px;}
.y16d{bottom:1020.697500px;}
.y5{bottom:1024.930500px;}
.y1b2{bottom:1028.011500px;}
.y66{bottom:1030.983000px;}
.yfb{bottom:1034.938500px;}
.y12f{bottom:1036.917000px;}
.y9a{bottom:1038.585000px;}
.y16c{bottom:1038.630000px;}
.y4{bottom:1043.424000px;}
.y1b1{bottom:1045.944000px;}
.y65{bottom:1048.915500px;}
.yfa{bottom:1052.872500px;}
.y99{bottom:1056.517500px;}
.y16b{bottom:1056.562500px;}
.y3{bottom:1056.715500px;}
.y12e{bottom:1058.200500px;}
.y1b0{bottom:1063.876500px;}
.y12b{bottom:1065.580500px;}
.y64{bottom:1066.849500px;}
.y98{bottom:1074.450000px;}
.y157{bottom:1074.451500px;}
.y16a{bottom:1074.496500px;}
.y12a{bottom:1075.831500px;}
.yf9{bottom:1077.490500px;}
.y1af{bottom:1081.809000px;}
.y63{bottom:1084.782000px;}
.y12d{bottom:1090.029000px;}
.y97{bottom:1092.382500px;}
.y156{bottom:1092.384000px;}
.y169{bottom:1092.429000px;}
.y12c{bottom:1094.511000px;}
.y1ae{bottom:1099.741500px;}
.y62{bottom:1102.714500px;}
.y2{bottom:1103.790000px;}
.y96{bottom:1110.316500px;}
.y168{bottom:1110.361500px;}
.y61{bottom:1120.647000px;}
.y1ad{bottom:1121.779500px;}
.y95{bottom:1128.249000px;}
.y60{bottom:1138.579500px;}
.y1{bottom:1145.632500px;}
.y94{bottom:1146.181500px;}
.y5f{bottom:1164.114000px;}
.h10{height:2.391024px;}
.hf{height:27.741776px;}
.h11{height:27.783619px;}
.ha{height:32.900573px;}
.h4{height:33.665702px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h9{height:40.826735px;}
.h8{height:41.125613px;}
.hc{height:42.799330px;}
.h5{height:44.831700px;}
.hb{height:49.473619px;}
.h3{height:57.419702px;}
.he{height:82.129613px;}
.hd{height:85.271700px;}
.h13{height:86.431613px;}
.h2{height:98.701718px;}
.h12{height:104.613024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x1b{left:75.202500px;}
.x6{left:87.228000px;}
.x2{left:112.798500px;}
.x5{left:117.918000px;}
.xf{left:125.566500px;}
.x10{left:130.647000px;}
.xe{left:132.583500px;}
.x4{left:145.840500px;}
.x1c{left:148.977000px;}
.xd{left:162.880500px;}
.x7{left:196.576500px;}
.xc{left:198.246000px;}
.x11{left:217.651500px;}
.x3{left:219.967500px;}
.x8{left:455.422500px;}
.x20{left:461.400000px;}
.x9{left:470.367000px;}
.x21{left:482.812500px;}
.x18{left:497.644500px;}
.x12{left:524.413500px;}
.x1a{left:538.425000px;}
.xb{left:540.480000px;}
.x1e{left:554.229000px;}
.xa{left:569.913000px;}
.x1d{left:575.733000px;}
.x13{left:594.420000px;}
.x1f{left:596.184000px;}
.x15{left:612.340500px;}
.x16{left:613.453500px;}
.x14{left:619.440000px;}
.x17{left:636.417000px;}
.x19{left:640.680000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.973333pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v7{vertical-align:27.973333pt;}
.v6{vertical-align:35.946667pt;}
.v9{vertical-align:40.272000pt;}
.v8{vertical-align:90.864000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000267pt;}
.ls15{letter-spacing:0.000501pt;}
.lsb{letter-spacing:0.000518pt;}
.ls14{letter-spacing:0.000576pt;}
.ls38{letter-spacing:0.001014pt;}
.ls2c{letter-spacing:0.002122pt;}
.lse{letter-spacing:0.002694pt;}
.ls9{letter-spacing:0.002906pt;}
.ls4{letter-spacing:0.003733pt;}
.ls23{letter-spacing:0.004980pt;}
.ls18{letter-spacing:0.196932pt;}
.ls6{letter-spacing:2.177630pt;}
.ls5{letter-spacing:2.635446pt;}
.ls25{letter-spacing:2.651242pt;}
.lsc{letter-spacing:2.652911pt;}
.ls3{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.653433pt;}
.ls3e{letter-spacing:2.655711pt;}
.lsf{letter-spacing:2.656576pt;}
.ls8{letter-spacing:2.656693pt;}
.ls0{letter-spacing:2.658591pt;}
.ls2{letter-spacing:2.658767pt;}
.ls2e{letter-spacing:2.806152pt;}
.ls21{letter-spacing:8.855412pt;}
.lsa{letter-spacing:8.857067pt;}
.ls22{letter-spacing:8.873356pt;}
.ls26{letter-spacing:11.803145pt;}
.ls13{letter-spacing:11.804745pt;}
.ls19{letter-spacing:11.805573pt;}
.ls17{letter-spacing:11.808479pt;}
.ls33{letter-spacing:11.810079pt;}
.ls27{letter-spacing:11.810906pt;}
.ls12{letter-spacing:12.004932pt;}
.ls24{letter-spacing:14.459242pt;}
.ls16{letter-spacing:14.460911pt;}
.ls34{letter-spacing:14.464576pt;}
.ls2d{letter-spacing:14.614152pt;}
.ls2b{letter-spacing:14.756984pt;}
.ls11{letter-spacing:14.757812pt;}
.ls32{letter-spacing:14.759264pt;}
.ls35{letter-spacing:14.764597pt;}
.ls3d{letter-spacing:15.499485pt;}
.ls29{letter-spacing:16.474265pt;}
.ls10{letter-spacing:17.413909pt;}
.ls2a{letter-spacing:17.563485pt;}
.ls20{letter-spacing:23.088576pt;}
.ls37{letter-spacing:24.743264pt;}
.lsd{letter-spacing:26.715242pt;}
.ls1b{letter-spacing:27.482265pt;}
.ls3c{letter-spacing:27.536271pt;}
.ls30{letter-spacing:30.299485pt;}
.ls1c{letter-spacing:30.841067pt;}
.ls1d{letter-spacing:30.843145pt;}
.ls1e{letter-spacing:31.044932pt;}
.ls31{letter-spacing:52.578079pt;}
.ls3a{letter-spacing:53.132745pt;}
.ls2f{letter-spacing:127.496239pt;}
.ls36{letter-spacing:151.934400pt;}
.ls28{letter-spacing:155.099200pt;}
.ls39{letter-spacing:183.340745pt;}
.ls3b{letter-spacing:262.060745pt;}
.ls1a{letter-spacing:262.823578pt;}
.wsed{word-spacing:-53.133867pt;}
.wsef{word-spacing:-43.484756pt;}
.wse1{word-spacing:-34.611401pt;}
.wsab{word-spacing:-25.738045pt;}
.ws101{word-spacing:-19.840186pt;}
.ws4{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.262246pt;}
.ws59{word-spacing:-10.626800pt;}
.wsf6{word-spacing:-9.298400pt;}
.ws91{word-spacing:-2.656693pt;}
.wsc2{word-spacing:-1.009543pt;}
.ws32{word-spacing:-0.956410pt;}
.ws153{word-spacing:-0.850144pt;}
.ws158{word-spacing:-0.722622pt;}
.ws14a{word-spacing:-0.680115pt;}
.ws68{word-spacing:-0.637606pt;}
.ws15d{word-spacing:-0.595101pt;}
.ws7e{word-spacing:-0.584473pt;}
.ws14b{word-spacing:-0.425072pt;}
.wsd9{word-spacing:-0.318803pt;}
.ws157{word-spacing:-0.297550pt;}
.ws148{word-spacing:-0.255043pt;}
.ws92{word-spacing:-0.212535pt;}
.ws140{word-spacing:-0.159402pt;}
.ws121{word-spacing:-0.106268pt;}
.wsaa{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wse5{word-spacing:-0.037194pt;}
.ws56{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.053134pt;}
.wsa4{word-spacing:0.106268pt;}
.ws15e{word-spacing:0.170029pt;}
.ws15b{word-spacing:0.212536pt;}
.ws106{word-spacing:0.265669pt;}
.ws14f{word-spacing:0.297550pt;}
.ws76{word-spacing:0.371937pt;}
.ws104{word-spacing:0.425071pt;}
.wsd4{word-spacing:0.531339pt;}
.wsc1{word-spacing:0.637606pt;}
.wsa2{word-spacing:0.797008pt;}
.ws65{word-spacing:0.850142pt;}
.ws93{word-spacing:0.903276pt;}
.ws11b{word-spacing:0.956410pt;}
.wsd7{word-spacing:1.062677pt;}
.wsac{word-spacing:1.115811pt;}
.ws11f{word-spacing:1.222079pt;}
.ws116{word-spacing:1.275213pt;}
.ws4b{word-spacing:1.328347pt;}
.ws12d{word-spacing:1.381481pt;}
.ws29{word-spacing:1.434614pt;}
.ws71{word-spacing:1.540882pt;}
.ws67{word-spacing:1.647150pt;}
.ws8e{word-spacing:1.700284pt;}
.wsda{word-spacing:1.753418pt;}
.wsf0{word-spacing:1.806551pt;}
.ws62{word-spacing:1.859685pt;}
.wsde{word-spacing:1.965953pt;}
.ws85{word-spacing:2.019087pt;}
.ws12e{word-spacing:2.072221pt;}
.ws123{word-spacing:2.178489pt;}
.ws10b{word-spacing:2.231622pt;}
.ws152{word-spacing:2.252882pt;}
.ws3e{word-spacing:2.284756pt;}
.ws55{word-spacing:2.337890pt;}
.wsf1{word-spacing:2.391024pt;}
.ws155{word-spacing:2.422910pt;}
.ws11c{word-spacing:2.465418pt;}
.ws49{word-spacing:2.497292pt;}
.ws5c{word-spacing:2.603559pt;}
.wsdb{word-spacing:2.656693pt;}
.ws89{word-spacing:2.762961pt;}
.wsfd{word-spacing:2.816095pt;}
.wsbb{word-spacing:2.869229pt;}
.ws75{word-spacing:2.922363pt;}
.wsf5{word-spacing:2.975497pt;}
.ws3f{word-spacing:3.028630pt;}
.wsa1{word-spacing:3.134898pt;}
.ws127{word-spacing:3.188032pt;}
.ws1f{word-spacing:3.347434pt;}
.ws114{word-spacing:3.400567pt;}
.ws10c{word-spacing:3.453701pt;}
.ws6a{word-spacing:3.506835pt;}
.ws13d{word-spacing:3.666237pt;}
.ws69{word-spacing:3.719371pt;}
.wsc9{word-spacing:3.772505pt;}
.ws7b{word-spacing:3.825638pt;}
.ws40{word-spacing:3.878772pt;}
.ws34{word-spacing:3.985040pt;}
.ws132{word-spacing:4.038174pt;}
.ws6c{word-spacing:4.091308pt;}
.ws44{word-spacing:4.144442pt;}
.ws2a{word-spacing:4.197575pt;}
.ws88{word-spacing:4.250709pt;}
.wsa8{word-spacing:4.250720pt;}
.ws23{word-spacing:4.303843pt;}
.ws7d{word-spacing:4.356977pt;}
.ws13f{word-spacing:4.410111pt;}
.ws6d{word-spacing:4.463245pt;}
.wscc{word-spacing:4.516379pt;}
.ws5e{word-spacing:4.569513pt;}
.wsa9{word-spacing:4.622646pt;}
.wsea{word-spacing:4.675780pt;}
.ws125{word-spacing:4.728914pt;}
.ws9f{word-spacing:4.782048pt;}
.wsce{word-spacing:4.835182pt;}
.ws22{word-spacing:4.888316pt;}
.ws25{word-spacing:4.941450pt;}
.ws7a{word-spacing:4.994583pt;}
.wsbf{word-spacing:5.047717pt;}
.ws2c{word-spacing:5.153985pt;}
.ws159{word-spacing:5.185878pt;}
.wse2{word-spacing:5.260253pt;}
.ws58{word-spacing:5.261955pt;}
.ws102{word-spacing:5.313074pt;}
.ws3{word-spacing:5.313387pt;}
.wsbd{word-spacing:5.419654pt;}
.ws160{word-spacing:5.440922pt;}
.ws3a{word-spacing:5.472788pt;}
.ws4e{word-spacing:5.525922pt;}
.ws156{word-spacing:5.568443pt;}
.wsd3{word-spacing:5.579056pt;}
.wsb2{word-spacing:5.632190pt;}
.ws131{word-spacing:5.685324pt;}
.ws80{word-spacing:5.791591pt;}
.wsf2{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws2f{word-spacing:5.897859pt;}
.ws145{word-spacing:6.036022pt;}
.ws70{word-spacing:6.057261pt;}
.wsb5{word-spacing:6.110395pt;}
.ws27{word-spacing:6.216662pt;}
.ws60{word-spacing:6.322930pt;}
.ws112{word-spacing:6.376064pt;}
.wsfe{word-spacing:6.429198pt;}
.ws21{word-spacing:6.641733pt;}
.ws78{word-spacing:6.694867pt;}
.wsc0{word-spacing:6.748001pt;}
.ws154{word-spacing:6.758645pt;}
.ws6b{word-spacing:6.801135pt;}
.wsba{word-spacing:6.854269pt;}
.ws28{word-spacing:6.907403pt;}
.ws86{word-spacing:6.960537pt;}
.ws149{word-spacing:6.971181pt;}
.ws134{word-spacing:7.013670pt;}
.ws107{word-spacing:7.066804pt;}
.ws4a{word-spacing:7.119938pt;}
.ws47{word-spacing:7.173072pt;}
.ws119{word-spacing:7.226206pt;}
.ws122{word-spacing:7.279340pt;}
.ws9e{word-spacing:7.332474pt;}
.wsbe{word-spacing:7.385607pt;}
.ws42{word-spacing:7.438741pt;}
.ws94{word-spacing:7.491875pt;}
.ws10d{word-spacing:7.545009pt;}
.wsa0{word-spacing:7.598143pt;}
.ws15f{word-spacing:7.608789pt;}
.ws46{word-spacing:7.651277pt;}
.ws3b{word-spacing:7.704411pt;}
.ws11d{word-spacing:7.757545pt;}
.ws126{word-spacing:7.863812pt;}
.ws151{word-spacing:8.033861pt;}
.ws13c{word-spacing:8.076348pt;}
.ws10e{word-spacing:8.129482pt;}
.wsdd{word-spacing:8.182615pt;}
.ws135{word-spacing:8.235749pt;}
.ws111{word-spacing:8.288883pt;}
.ws8f{word-spacing:8.342017pt;}
.ws2d{word-spacing:8.448285pt;}
.ws103{word-spacing:8.460563pt;}
.ws3c{word-spacing:8.501419pt;}
.ws11a{word-spacing:8.554553pt;}
.wsbc{word-spacing:8.607686pt;}
.ws105{word-spacing:8.660820pt;}
.ws4f{word-spacing:8.713954pt;}
.wse0{word-spacing:8.767088pt;}
.wsee{word-spacing:8.802333pt;}
.wsec{word-spacing:8.806066pt;}
.ws13b{word-spacing:8.820222pt;}
.ws108{word-spacing:8.873356pt;}
.ws77{word-spacing:8.926490pt;}
.ws9b{word-spacing:9.032757pt;}
.ws72{word-spacing:9.085891pt;}
.ws129{word-spacing:9.139025pt;}
.ws63{word-spacing:9.192159pt;}
.ws9c{word-spacing:9.245293pt;}
.ws136{word-spacing:9.298427pt;}
.ws15c{word-spacing:9.309077pt;}
.ws130{word-spacing:9.351561pt;}
.ws7c{word-spacing:9.404694pt;}
.wsb0{word-spacing:9.457828pt;}
.ws8d{word-spacing:9.510962pt;}
.wse3{word-spacing:9.524518pt;}
.ws12b{word-spacing:9.564096pt;}
.ws120{word-spacing:9.670364pt;}
.wscb{word-spacing:9.723498pt;}
.ws45{word-spacing:9.776631pt;}
.ws0{word-spacing:9.819163pt;}
.ws2b{word-spacing:9.829765pt;}
.ws30{word-spacing:9.936033pt;}
.ws6e{word-spacing:10.042301pt;}
.ws38{word-spacing:10.095435pt;}
.wsd2{word-spacing:10.148569pt;}
.ws84{word-spacing:10.201702pt;}
.ws13a{word-spacing:10.254836pt;}
.ws26{word-spacing:10.307970pt;}
.ws113{word-spacing:10.361104pt;}
.ws3d{word-spacing:10.414238pt;}
.ws109{word-spacing:10.467372pt;}
.ws64{word-spacing:10.520506pt;}
.ws35{word-spacing:10.626773pt;}
.wsb6{word-spacing:10.679907pt;}
.ws74{word-spacing:10.733041pt;}
.wsc4{word-spacing:10.786175pt;}
.ws14d{word-spacing:10.881843pt;}
.wsad{word-spacing:10.945577pt;}
.ws118{word-spacing:11.051844pt;}
.ws98{word-spacing:11.158112pt;}
.wsb4{word-spacing:11.211246pt;}
.wsdc{word-spacing:11.370647pt;}
.ws95{word-spacing:11.423781pt;}
.ws90{word-spacing:11.476915pt;}
.ws150{word-spacing:11.561958pt;}
.ws39{word-spacing:11.583183pt;}
.ws4c{word-spacing:11.636317pt;}
.ws18{word-spacing:11.668275pt;}
.wscd{word-spacing:11.689451pt;}
.ws54{word-spacing:11.742585pt;}
.wsfb{word-spacing:11.755345pt;}
.wsfa{word-spacing:11.782021pt;}
.ws5f{word-spacing:11.795718pt;}
.wscf{word-spacing:11.848852pt;}
.ws96{word-spacing:11.901986pt;}
.wsc3{word-spacing:11.955120pt;}
.ws15a{word-spacing:11.987030pt;}
.ws83{word-spacing:12.008254pt;}
.ws9d{word-spacing:12.114522pt;}
.ws97{word-spacing:12.167655pt;}
.ws110{word-spacing:12.220789pt;}
.ws37{word-spacing:12.273923pt;}
.wsc8{word-spacing:12.327057pt;}
.wsb1{word-spacing:12.433325pt;}
.wsdf{word-spacing:12.486459pt;}
.ws14e{word-spacing:12.539624pt;}
.ws146{word-spacing:12.582131pt;}
.ws128{word-spacing:12.592726pt;}
.ws52{word-spacing:12.645860pt;}
.ws5a{word-spacing:12.698994pt;}
.ws7f{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws8{word-spacing:12.768154pt;}
.ws36{word-spacing:12.858396pt;}
.ws50{word-spacing:12.911530pt;}
.ws12f{word-spacing:12.964663pt;}
.wsb7{word-spacing:13.017797pt;}
.ws133{word-spacing:13.124065pt;}
.wsa5{word-spacing:13.177199pt;}
.wsb3{word-spacing:13.230333pt;}
.wsa3{word-spacing:13.336601pt;}
.ws79{word-spacing:13.496002pt;}
.ws87{word-spacing:13.549136pt;}
.ws57{word-spacing:13.708538pt;}
.wsae{word-spacing:13.761671pt;}
.ws1b{word-spacing:13.820211pt;}
.wse6{word-spacing:13.974207pt;}
.wsa6{word-spacing:14.133609pt;}
.wsf8{word-spacing:14.186742pt;}
.ws2e{word-spacing:14.239876pt;}
.wsd{word-spacing:14.250598pt;}
.ws73{word-spacing:14.293010pt;}
.ws82{word-spacing:14.346144pt;}
.ws99{word-spacing:14.452412pt;}
.wsd6{word-spacing:14.505546pt;}
.wsf7{word-spacing:14.693702pt;}
.wsff{word-spacing:14.718081pt;}
.ws8a{word-spacing:14.771215pt;}
.ws6f{word-spacing:14.824349pt;}
.ws137{word-spacing:14.877483pt;}
.ws12a{word-spacing:14.930617pt;}
.ws31{word-spacing:15.196286pt;}
.ws81{word-spacing:15.302554pt;}
.ws138{word-spacing:15.355687pt;}
.ws139{word-spacing:15.408821pt;}
.ws10a{word-spacing:15.457973pt;}
.ws5d{word-spacing:15.461955pt;}
.ws41{word-spacing:15.515089pt;}
.ws66{word-spacing:15.568223pt;}
.ws10{word-spacing:15.589581pt;}
.ws8b{word-spacing:15.621357pt;}
.ws9a{word-spacing:15.674491pt;}
.ws33{word-spacing:15.780758pt;}
.wse{word-spacing:15.828685pt;}
.ws1c{word-spacing:15.940160pt;}
.wsfc{word-spacing:16.059611pt;}
.ws15{word-spacing:16.163430pt;}
.ws4d{word-spacing:16.312097pt;}
.wsc7{word-spacing:16.365231pt;}
.wsa7{word-spacing:16.418365pt;}
.ws48{word-spacing:16.524633pt;}
.ws14c{word-spacing:16.620315pt;}
.ws24{word-spacing:16.630900pt;}
.wse8{word-spacing:16.790302pt;}
.ws43{word-spacing:16.843436pt;}
.wsd8{word-spacing:17.002837pt;}
.ws117{word-spacing:17.215373pt;}
.wsca{word-spacing:17.374774pt;}
.ws100{word-spacing:17.376607pt;}
.wsf4{word-spacing:17.378264pt;}
.ws5b{word-spacing:17.481042pt;}
.wsd5{word-spacing:17.534176pt;}
.wsc6{word-spacing:17.693578pt;}
.ws115{word-spacing:17.799077pt;}
.ws20{word-spacing:17.799845pt;}
.ws19{word-spacing:17.884979pt;}
.ws124{word-spacing:17.906113pt;}
.wseb{word-spacing:18.012381pt;}
.ws11e{word-spacing:18.118649pt;}
.ws1e{word-spacing:18.543719pt;}
.ws61{word-spacing:18.703121pt;}
.wsc5{word-spacing:18.756255pt;}
.wse7{word-spacing:18.862523pt;}
.ws7{word-spacing:19.032678pt;}
.wse9{word-spacing:19.553263pt;}
.ws12c{word-spacing:19.872066pt;}
.wsd1{word-spacing:19.925200pt;}
.ws147{word-spacing:19.935877pt;}
.ws16{word-spacing:20.132557pt;}
.wsf9{word-spacing:20.350271pt;}
.wsb9{word-spacing:20.509673pt;}
.ws12{word-spacing:20.658586pt;}
.wsf3{word-spacing:21.218264pt;}
.ws51{word-spacing:21.359814pt;}
.ws53{word-spacing:21.838019pt;}
.ws8c{word-spacing:22.475626pt;}
.wsaf{word-spacing:22.688161pt;}
.ws14{word-spacing:22.858342pt;}
.wsb{word-spacing:24.962458pt;}
.wse4{word-spacing:25.424607pt;}
.wsc{word-spacing:25.775411pt;}
.ws11{word-spacing:25.871053pt;}
.ws10f{word-spacing:25.982461pt;}
.ws1a{word-spacing:26.444902pt;}
.wsd0{word-spacing:26.832603pt;}
.ws142{word-spacing:28.320351pt;}
.ws161{word-spacing:28.819882pt;}
.ws9{word-spacing:29.744538pt;}
.wsf{word-spacing:30.318387pt;}
.ws144{word-spacing:30.711375pt;}
.wsb8{word-spacing:33.740005pt;}
.ws17{word-spacing:34.957005pt;}
.ws13{word-spacing:35.100467pt;}
.wsa{word-spacing:36.104704pt;}
.ws141{word-spacing:42.347692pt;}
.ws6{word-spacing:47.868621pt;}
.ws143{word-spacing:92.612330pt;}
._2{margin-left:-7.651296pt;}
._4{margin-left:-6.484299pt;}
._3{margin-left:-4.678553pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-1.912824pt;}
._5{margin-left:-1.009539pt;}
._c{width:1.259679pt;}
._8{width:2.656693pt;}
._d{width:4.049231pt;}
._f{width:12.061388pt;}
._10{width:13.866165pt;}
._e{width:15.249420pt;}
._13{width:16.896570pt;}
._7{width:19.271782pt;}
._6{width:21.997568pt;}
._a{width:25.079185pt;}
._b{width:26.566933pt;}
._12{width:31.083317pt;}
._11{width:32.077180pt;}
._9{width:34.218210pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:108.736000pt;}
.y38{bottom:113.385333pt;}
.y1ac{bottom:117.233333pt;}
.y128{bottom:117.848000pt;}
.y37{bottom:129.325333pt;}
.y1ee{bottom:130.792000pt;}
.y1ab{bottom:133.173333pt;}
.y1ed{bottom:142.746667pt;}
.y36{bottom:145.265333pt;}
.ye2{bottom:145.266667pt;}
.y1aa{bottom:149.114667pt;}
.y127{bottom:150.873333pt;}
.y1ec{bottom:154.702667pt;}
.yc3{bottom:161.205333pt;}
.y35{bottom:161.206667pt;}
.y1a9{bottom:165.054667pt;}
.y1eb{bottom:166.657333pt;}
.y126{bottom:166.813333pt;}
.y5e{bottom:176.852000pt;}
.yc2{bottom:177.145333pt;}
.y93{bottom:177.146667pt;}
.y34{bottom:177.384000pt;}
.y1ea{bottom:178.613333pt;}
.y1a8{bottom:180.994667pt;}
.y125{bottom:182.753333pt;}
.y1e9{bottom:190.568000pt;}
.y92{bottom:193.086667pt;}
.y33{bottom:193.324000pt;}
.y1a7{bottom:196.934667pt;}
.y124{bottom:198.693333pt;}
.y1e8{bottom:202.522667pt;}
.y91{bottom:209.026667pt;}
.y32{bottom:209.264000pt;}
.y1a6{bottom:212.874667pt;}
.y1e7{bottom:214.478667pt;}
.y5d{bottom:217.996000pt;}
.y90{bottom:224.966667pt;}
.yc1{bottom:225.049333pt;}
.y31{bottom:225.204000pt;}
.y123{bottom:225.833333pt;}
.y1e6{bottom:226.433333pt;}
.y1a5{bottom:228.814667pt;}
.y5c{bottom:233.936000pt;}
.y1e5{bottom:238.388000pt;}
.y8f{bottom:240.906667pt;}
.ye1{bottom:240.908000pt;}
.yc0{bottom:240.989333pt;}
.y30{bottom:241.144000pt;}
.y1a4{bottom:244.756000pt;}
.y5b{bottom:249.876000pt;}
.y1e4{bottom:250.344000pt;}
.y122{bottom:252.974667pt;}
.yf8{bottom:256.846667pt;}
.y8e{bottom:256.848000pt;}
.ybf{bottom:257.012000pt;}
.y2f{bottom:257.085333pt;}
.y1a3{bottom:260.696000pt;}
.y1e3{bottom:262.298667pt;}
.y5a{bottom:265.817333pt;}
.y121{bottom:268.914667pt;}
.y155{bottom:272.689333pt;}
.y8d{bottom:272.788000pt;}
.ybe{bottom:272.952000pt;}
.y2e{bottom:273.025333pt;}
.y1e2{bottom:274.253333pt;}
.y1a2{bottom:276.636000pt;}
.y59{bottom:281.757333pt;}
.y120{bottom:284.854667pt;}
.y1e1{bottom:286.209333pt;}
.y154{bottom:288.630667pt;}
.y8c{bottom:288.728000pt;}
.ybd{bottom:288.892000pt;}
.y2d{bottom:288.965333pt;}
.y1a1{bottom:292.576000pt;}
.y58{bottom:297.697333pt;}
.y1e0{bottom:298.164000pt;}
.y153{bottom:304.570667pt;}
.y8b{bottom:304.668000pt;}
.ybc{bottom:304.832000pt;}
.y2c{bottom:304.905333pt;}
.y1a0{bottom:308.516000pt;}
.y1df{bottom:310.120000pt;}
.y11f{bottom:311.994667pt;}
.y57{bottom:313.637333pt;}
.y152{bottom:320.510667pt;}
.y8a{bottom:320.608000pt;}
.y167{bottom:320.609333pt;}
.ybb{bottom:320.773333pt;}
.y2b{bottom:320.845333pt;}
.y1de{bottom:322.074667pt;}
.y19f{bottom:329.152000pt;}
.y56{bottom:329.577333pt;}
.y1dd{bottom:334.029333pt;}
.y151{bottom:336.450667pt;}
.y89{bottom:336.548000pt;}
.ye0{bottom:336.549333pt;}
.yba{bottom:336.713333pt;}
.y2a{bottom:336.786667pt;}
.y11e{bottom:339.134667pt;}
.y166{bottom:342.573333pt;}
.y55{bottom:345.517333pt;}
.y1dc{bottom:345.985333pt;}
.y150{bottom:352.390667pt;}
.ydf{bottom:352.489333pt;}
.yb9{bottom:352.653333pt;}
.y29{bottom:352.726667pt;}
.y11d{bottom:355.074667pt;}
.y1db{bottom:357.940000pt;}
.y88{bottom:359.246667pt;}
.y54{bottom:363.368000pt;}
.y14f{bottom:368.332000pt;}
.yf7{bottom:368.429333pt;}
.yb8{bottom:368.593333pt;}
.y28{bottom:368.666667pt;}
.y1da{bottom:369.894667pt;}
.yde{bottom:370.617333pt;}
.y11c{bottom:371.016000pt;}
.y165{bottom:376.642667pt;}
.y53{bottom:379.308000pt;}
.y1d9{bottom:381.850667pt;}
.y14e{bottom:384.272000pt;}
.yf6{bottom:384.369333pt;}
.yb7{bottom:384.533333pt;}
.y27{bottom:384.606667pt;}
.ydd{bottom:386.557333pt;}
.y11b{bottom:386.956000pt;}
.y87{bottom:390.401333pt;}
.y1d8{bottom:393.805333pt;}
.y52{bottom:395.249333pt;}
.y14d{bottom:400.212000pt;}
.yf5{bottom:400.309333pt;}
.yb6{bottom:400.473333pt;}
.y26{bottom:400.546667pt;}
.ydc{bottom:402.497333pt;}
.y11a{bottom:402.896000pt;}
.y18c{bottom:404.453333pt;}
.y1d7{bottom:405.761333pt;}
.y86{bottom:406.342667pt;}
.y51{bottom:411.189333pt;}
.y14c{bottom:416.152000pt;}
.yb5{bottom:416.414667pt;}
.y25{bottom:416.486667pt;}
.y1d6{bottom:417.716000pt;}
.ydb{bottom:418.438667pt;}
.y119{bottom:418.836000pt;}
.y85{bottom:422.282667pt;}
.yf4{bottom:422.813333pt;}
.y50{bottom:427.129333pt;}
.y18b{bottom:429.120000pt;}
.y1d5{bottom:429.670667pt;}
.y19e{bottom:430.606667pt;}
.y14b{bottom:432.092000pt;}
.yb4{bottom:432.354667pt;}
.y24{bottom:432.428000pt;}
.yda{bottom:434.378667pt;}
.y118{bottom:434.776000pt;}
.y84{bottom:438.222667pt;}
.yf3{bottom:438.754667pt;}
.y1d4{bottom:441.626667pt;}
.y4f{bottom:443.069333pt;}
.y18a{bottom:445.060000pt;}
.y19d{bottom:446.546667pt;}
.y14a{bottom:448.032000pt;}
.yb3{bottom:448.294667pt;}
.y23{bottom:448.368000pt;}
.yd9{bottom:450.318667pt;}
.y117{bottom:450.717333pt;}
.y1d3{bottom:453.581333pt;}
.y83{bottom:454.162667pt;}
.yf2{bottom:454.694667pt;}
.y4e{bottom:459.009333pt;}
.y189{bottom:461.000000pt;}
.y19c{bottom:462.486667pt;}
.y149{bottom:463.973333pt;}
.yb2{bottom:464.234667pt;}
.y22{bottom:464.308000pt;}
.y1d2{bottom:465.536000pt;}
.yd8{bottom:466.258667pt;}
.y116{bottom:466.657333pt;}
.y82{bottom:470.102667pt;}
.yf1{bottom:470.634667pt;}
.y4d{bottom:474.949333pt;}
.y188{bottom:476.940000pt;}
.y1d1{bottom:477.492000pt;}
.y19b{bottom:478.426667pt;}
.y148{bottom:479.913333pt;}
.y21{bottom:480.248000pt;}
.y115{bottom:482.597333pt;}
.yd7{bottom:484.386667pt;}
.yb1{bottom:484.648000pt;}
.y81{bottom:486.044000pt;}
.yf0{bottom:486.574667pt;}
.y1d0{bottom:489.446667pt;}
.y4c{bottom:490.890667pt;}
.y187{bottom:492.881333pt;}
.y19a{bottom:494.366667pt;}
.y147{bottom:495.853333pt;}
.y20{bottom:496.188000pt;}
.y114{bottom:498.537333pt;}
.yd6{bottom:500.328000pt;}
.y1cf{bottom:501.402667pt;}
.y80{bottom:501.984000pt;}
.yef{bottom:502.514667pt;}
.y4b{bottom:506.830667pt;}
.y186{bottom:508.821333pt;}
.yb0{bottom:510.253333pt;}
.y199{bottom:510.308000pt;}
.y146{bottom:511.793333pt;}
.y1ce{bottom:513.357333pt;}
.y113{bottom:514.477333pt;}
.yd5{bottom:516.268000pt;}
.y1f{bottom:517.737333pt;}
.y7f{bottom:517.924000pt;}
.yee{bottom:518.456000pt;}
.y4a{bottom:522.770667pt;}
.y185{bottom:524.761333pt;}
.y1cd{bottom:525.312000pt;}
.yaf{bottom:526.194667pt;}
.y198{bottom:526.248000pt;}
.y145{bottom:527.733333pt;}
.y112{bottom:530.417333pt;}
.yd4{bottom:532.208000pt;}
.y7e{bottom:533.864000pt;}
.yed{bottom:534.396000pt;}
.y1e{bottom:535.070667pt;}
.y1cc{bottom:537.268000pt;}
.y49{bottom:538.710667pt;}
.y164{bottom:540.142667pt;}
.y184{bottom:540.701333pt;}
.yae{bottom:542.134667pt;}
.y197{bottom:542.188000pt;}
.y144{bottom:543.673333pt;}
.y111{bottom:546.358667pt;}
.yd3{bottom:548.148000pt;}
.y1d{bottom:548.354667pt;}
.y1cb{bottom:549.222667pt;}
.y7d{bottom:549.804000pt;}
.yec{bottom:550.336000pt;}
.y48{bottom:554.650667pt;}
.y183{bottom:556.641333pt;}
.yad{bottom:558.074667pt;}
.y196{bottom:558.128000pt;}
.y143{bottom:559.614667pt;}
.y1ca{bottom:561.177333pt;}
.y1c{bottom:561.637333pt;}
.y110{bottom:562.298667pt;}
.yd2{bottom:564.088000pt;}
.y7c{bottom:565.744000pt;}
.yeb{bottom:566.276000pt;}
.y47{bottom:570.592000pt;}
.y182{bottom:572.581333pt;}
.y1c9{bottom:573.133333pt;}
.yac{bottom:574.014667pt;}
.y195{bottom:574.068000pt;}
.y1b{bottom:575.158667pt;}
.y10f{bottom:578.238667pt;}
.y142{bottom:579.640000pt;}
.yd1{bottom:580.028000pt;}
.y7b{bottom:581.685333pt;}
.yea{bottom:582.216000pt;}
.y1c8{bottom:585.088000pt;}
.y46{bottom:586.532000pt;}
.y1a{bottom:588.442667pt;}
.y181{bottom:588.522667pt;}
.yab{bottom:589.954667pt;}
.y194{bottom:590.009333pt;}
.y10e{bottom:594.178667pt;}
.yd0{bottom:595.969333pt;}
.y1c7{bottom:597.044000pt;}
.y7a{bottom:597.625333pt;}
.ye9{bottom:598.156000pt;}
.y19{bottom:601.725333pt;}
.y45{bottom:602.472000pt;}
.y141{bottom:603.960000pt;}
.y180{bottom:604.462667pt;}
.yaa{bottom:605.896000pt;}
.y193{bottom:605.949333pt;}
.y1c6{bottom:608.998667pt;}
.ycf{bottom:611.909333pt;}
.y79{bottom:613.565333pt;}
.ye8{bottom:614.097333pt;}
.y18{bottom:615.009333pt;}
.y44{bottom:618.412000pt;}
.y140{bottom:619.900000pt;}
.y17f{bottom:620.402667pt;}
.y1c5{bottom:620.953333pt;}
.y10d{bottom:621.318667pt;}
.ya9{bottom:621.836000pt;}
.y192{bottom:621.889333pt;}
.yce{bottom:627.849333pt;}
.y17{bottom:628.293333pt;}
.y78{bottom:629.505333pt;}
.ye7{bottom:630.037333pt;}
.y1c4{bottom:632.909333pt;}
.y43{bottom:636.262667pt;}
.y17e{bottom:636.342667pt;}
.ya8{bottom:637.776000pt;}
.y191{bottom:637.829333pt;}
.y13f{bottom:639.926667pt;}
.y16{bottom:641.576000pt;}
.ycd{bottom:643.789333pt;}
.y1c3{bottom:644.864000pt;}
.y77{bottom:645.445333pt;}
.ye6{bottom:645.977333pt;}
.y10c{bottom:648.458667pt;}
.y42{bottom:652.202667pt;}
.y17d{bottom:652.282667pt;}
.y190{bottom:653.769333pt;}
.y15{bottom:654.860000pt;}
.y1c2{bottom:656.818667pt;}
.ya7{bottom:658.394667pt;}
.y76{bottom:661.385333pt;}
.ycc{bottom:661.917333pt;}
.y13e{bottom:664.245333pt;}
.y10b{bottom:664.400000pt;}
.y41{bottom:668.142667pt;}
.y14{bottom:668.144000pt;}
.y17c{bottom:668.222667pt;}
.y1c1{bottom:668.774667pt;}
.y18f{bottom:669.709333pt;}
.y75{bottom:677.326667pt;}
.ye5{bottom:677.857333pt;}
.ycb{bottom:677.858667pt;}
.y13d{bottom:680.185333pt;}
.y10a{bottom:680.340000pt;}
.y1c0{bottom:680.729333pt;}
.y13{bottom:681.426667pt;}
.ya6{bottom:684.001333pt;}
.y40{bottom:684.082667pt;}
.y17b{bottom:684.164000pt;}
.y18e{bottom:690.345333pt;}
.y1bf{bottom:692.684000pt;}
.y74{bottom:693.266667pt;}
.ye4{bottom:693.797333pt;}
.yca{bottom:693.798667pt;}
.y12{bottom:694.710667pt;}
.y13c{bottom:696.125333pt;}
.y109{bottom:696.280000pt;}
.ya5{bottom:699.941333pt;}
.y3f{bottom:700.024000pt;}
.y17a{bottom:700.104000pt;}
.y1be{bottom:704.640000pt;}
.y11{bottom:707.993333pt;}
.y73{bottom:709.206667pt;}
.yc9{bottom:709.738667pt;}
.y13b{bottom:712.065333pt;}
.y108{bottom:712.220000pt;}
.y163{bottom:715.438667pt;}
.ya4{bottom:715.881333pt;}
.y3e{bottom:715.964000pt;}
.y179{bottom:716.044000pt;}
.y10{bottom:721.277333pt;}
.y1bd{bottom:723.294667pt;}
.y72{bottom:725.146667pt;}
.yc8{bottom:725.678667pt;}
.y13a{bottom:728.005333pt;}
.y107{bottom:728.160000pt;}
.y162{bottom:731.378667pt;}
.ya3{bottom:731.821333pt;}
.y3d{bottom:731.904000pt;}
.y178{bottom:731.944000pt;}
.yf{bottom:734.561333pt;}
.y71{bottom:741.086667pt;}
.yc7{bottom:741.618667pt;}
.y139{bottom:743.946667pt;}
.y106{bottom:744.101333pt;}
.y1bc{bottom:744.985333pt;}
.y161{bottom:747.318667pt;}
.ya2{bottom:747.761333pt;}
.ye{bottom:747.844000pt;}
.y177{bottom:747.884000pt;}
.y70{bottom:757.026667pt;}
.yc6{bottom:757.558667pt;}
.y138{bottom:759.886667pt;}
.y105{bottom:760.041333pt;}
.y1bb{bottom:760.925333pt;}
.yd{bottom:761.128000pt;}
.y160{bottom:763.258667pt;}
.ya1{bottom:763.701333pt;}
.y3c{bottom:763.784000pt;}
.y176{bottom:763.824000pt;}
.y6f{bottom:772.968000pt;}
.ye3{bottom:773.498667pt;}
.yc5{bottom:773.500000pt;}
.yc{bottom:774.412000pt;}
.y137{bottom:775.826667pt;}
.y104{bottom:775.981333pt;}
.y1ba{bottom:776.865333pt;}
.y15f{bottom:779.198667pt;}
.ya0{bottom:779.642667pt;}
.y3b{bottom:779.724000pt;}
.y175{bottom:779.765333pt;}
.yb{bottom:787.694667pt;}
.y6e{bottom:788.908000pt;}
.yc4{bottom:791.166667pt;}
.y136{bottom:791.766667pt;}
.y103{bottom:791.921333pt;}
.y1b9{bottom:792.806667pt;}
.y15e{bottom:795.140000pt;}
.y3a{bottom:795.665333pt;}
.y174{bottom:795.705333pt;}
.ya{bottom:800.978667pt;}
.y6d{bottom:804.848000pt;}
.y135{bottom:807.706667pt;}
.y102{bottom:807.861333pt;}
.y1b8{bottom:808.746667pt;}
.y15d{bottom:811.080000pt;}
.y39{bottom:811.605333pt;}
.y173{bottom:811.645333pt;}
.y9{bottom:814.262667pt;}
.y6c{bottom:820.788000pt;}
.y134{bottom:823.648000pt;}
.y101{bottom:823.801333pt;}
.y15c{bottom:827.020000pt;}
.y8{bottom:827.545333pt;}
.y172{bottom:827.585333pt;}
.y1b7{bottom:828.334667pt;}
.y6b{bottom:836.728000pt;}
.y18d{bottom:838.566667pt;}
.y133{bottom:839.588000pt;}
.y100{bottom:839.742667pt;}
.y15b{bottom:842.960000pt;}
.y9f{bottom:843.485333pt;}
.y171{bottom:843.525333pt;}
.y1b6{bottom:850.026667pt;}
.y6a{bottom:852.669333pt;}
.y132{bottom:855.528000pt;}
.yff{bottom:856.185333pt;}
.y15a{bottom:858.900000pt;}
.y9e{bottom:859.425333pt;}
.y170{bottom:859.466667pt;}
.y1b5{bottom:865.966667pt;}
.y69{bottom:868.609333pt;}
.yfe{bottom:872.125333pt;}
.y7{bottom:873.352000pt;}
.y159{bottom:874.841333pt;}
.y9d{bottom:875.365333pt;}
.y16f{bottom:875.406667pt;}
.y131{bottom:879.672000pt;}
.y1b4{bottom:881.906667pt;}
.y68{bottom:884.549333pt;}
.yfd{bottom:888.065333pt;}
.y130{bottom:889.740000pt;}
.y158{bottom:890.781333pt;}
.y9c{bottom:891.306667pt;}
.y16e{bottom:891.346667pt;}
.y6{bottom:894.610667pt;}
.y1b3{bottom:897.846667pt;}
.y67{bottom:900.489333pt;}
.yfc{bottom:904.005333pt;}
.y9b{bottom:907.246667pt;}
.y16d{bottom:907.286667pt;}
.y5{bottom:911.049333pt;}
.y1b2{bottom:913.788000pt;}
.y66{bottom:916.429333pt;}
.yfb{bottom:919.945333pt;}
.y12f{bottom:921.704000pt;}
.y9a{bottom:923.186667pt;}
.y16c{bottom:923.226667pt;}
.y4{bottom:927.488000pt;}
.y1b1{bottom:929.728000pt;}
.y65{bottom:932.369333pt;}
.yfa{bottom:935.886667pt;}
.y99{bottom:939.126667pt;}
.y16b{bottom:939.166667pt;}
.y3{bottom:939.302667pt;}
.y12e{bottom:940.622667pt;}
.y1b0{bottom:945.668000pt;}
.y12b{bottom:947.182667pt;}
.y64{bottom:948.310667pt;}
.y98{bottom:955.066667pt;}
.y157{bottom:955.068000pt;}
.y16a{bottom:955.108000pt;}
.y12a{bottom:956.294667pt;}
.yf9{bottom:957.769333pt;}
.y1af{bottom:961.608000pt;}
.y63{bottom:964.250667pt;}
.y12d{bottom:968.914667pt;}
.y97{bottom:971.006667pt;}
.y156{bottom:971.008000pt;}
.y169{bottom:971.048000pt;}
.y12c{bottom:972.898667pt;}
.y1ae{bottom:977.548000pt;}
.y62{bottom:980.190667pt;}
.y2{bottom:981.146667pt;}
.y96{bottom:986.948000pt;}
.y168{bottom:986.988000pt;}
.y61{bottom:996.130667pt;}
.y1ad{bottom:997.137333pt;}
.y95{bottom:1002.888000pt;}
.y60{bottom:1012.070667pt;}
.y1{bottom:1018.340000pt;}
.y94{bottom:1018.828000pt;}
.y5f{bottom:1034.768000pt;}
.h10{height:2.125355pt;}
.hf{height:24.659357pt;}
.h11{height:24.696550pt;}
.ha{height:29.244954pt;}
.h4{height:29.925069pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h9{height:36.290431pt;}
.h8{height:36.556100pt;}
.hc{height:38.043849pt;}
.h5{height:39.850400pt;}
.hb{height:43.976550pt;}
.h3{height:51.039735pt;}
.he{height:73.004100pt;}
.hd{height:75.797067pt;}
.h13{height:76.828100pt;}
.h2{height:87.734861pt;}
.h12{height:92.989355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x1b{left:66.846667pt;}
.x6{left:77.536000pt;}
.x2{left:100.265333pt;}
.x5{left:104.816000pt;}
.xf{left:111.614667pt;}
.x10{left:116.130667pt;}
.xe{left:117.852000pt;}
.x4{left:129.636000pt;}
.x1c{left:132.424000pt;}
.xd{left:144.782667pt;}
.x7{left:174.734667pt;}
.xc{left:176.218667pt;}
.x11{left:193.468000pt;}
.x3{left:195.526667pt;}
.x8{left:404.820000pt;}
.x20{left:410.133333pt;}
.x9{left:418.104000pt;}
.x21{left:429.166667pt;}
.x18{left:442.350667pt;}
.x12{left:466.145333pt;}
.x1a{left:478.600000pt;}
.xb{left:480.426667pt;}
.x1e{left:492.648000pt;}
.xa{left:506.589333pt;}
.x1d{left:511.762667pt;}
.x13{left:528.373333pt;}
.x1f{left:529.941333pt;}
.x15{left:544.302667pt;}
.x16{left:545.292000pt;}
.x14{left:550.613333pt;}
.x17{left:565.704000pt;}
.x19{left:569.493333pt;}
}




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