
    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_55c1ff56fc93218fd8707871.woff')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_d83ecc6182afc72d79277ba4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.839000;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_e2482281691642604253bf5e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.525000;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_d0e1de574bea4a59eee2ba43.woff')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_df6f18104159987a6085c279.woff')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_96808a5d1e6b41fbe4c994b9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_bc785263ae410f1510ff1078.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893000;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_88d19e70d753d994cc6e66f3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.656000;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_6cd7c9bd08da9e3fdc9d20ab.woff')format("woff");}.ff9{font-family:ff9;line-height:0.806000;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_b73dde43c2af0e3cc6af9993.woff')format("woff");}.ffa{font-family:ffa;line-height:0.675000;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;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:16.878000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v4{vertical-align:26.898000px;}
.v5{vertical-align:53.802000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000141px;}
.ls10{letter-spacing:0.003072px;}
.ls1e{letter-spacing:0.834017px;}
.lsd{letter-spacing:2.371909px;}
.lsb{letter-spacing:2.391030px;}
.lsc{letter-spacing:2.391527px;}
.lsa{letter-spacing:2.395613px;}
.ls4{letter-spacing:2.455834px;}
.ls2{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.984915px;}
.ls1c{letter-spacing:2.987675px;}
.ls6{letter-spacing:2.988017px;}
.ls5{letter-spacing:2.988780px;}
.ls1{letter-spacing:2.989409px;}
.ls9{letter-spacing:2.989492px;}
.ls7{letter-spacing:2.990725px;}
.ls15{letter-spacing:13.467056px;}
.ls1b{letter-spacing:13.971056px;}
.ls12{letter-spacing:14.109056px;}
.ls16{letter-spacing:14.115056px;}
.lsf{letter-spacing:16.737056px;}
.lse{letter-spacing:17.847056px;}
.ls19{letter-spacing:21.483056px;}
.ls1d{letter-spacing:25.080538px;}
.ls8{letter-spacing:29.640538px;}
.ls11{letter-spacing:31.089056px;}
.ls14{letter-spacing:32.871056px;}
.ls18{letter-spacing:44.031056px;}
.ls1a{letter-spacing:46.743056px;}
.ls17{letter-spacing:372.690532px;}
.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;}
}
.wsc4{word-spacing:-17.932680px;}
.ws29{word-spacing:-14.943900px;}
.ws1e{word-spacing:-14.920027px;}
.wsd1{word-spacing:-14.346180px;}
.ws19{word-spacing:-13.449600px;}
.ws5d{word-spacing:-11.955150px;}
.wsd4{word-spacing:-11.936059px;}
.ws18f{word-spacing:-3.969110px;}
.ws8a{word-spacing:-2.990520px;}
.wsd3{word-spacing:-2.389020px;}
.ws123{word-spacing:-1.135736px;}
.ws84{word-spacing:-0.956410px;}
.ws22{word-spacing:-0.896634px;}
.ws56{word-spacing:-0.777083px;}
.ws70{word-spacing:-0.597756px;}
.ws93{word-spacing:-0.537980px;}
.ws184{word-spacing:-0.526027px;}
.wsa1{word-spacing:-0.478205px;}
.ws80{word-spacing:-0.418429px;}
.ws1a1{word-spacing:-0.382565px;}
.ws109{word-spacing:-0.298878px;}
.ws6c{word-spacing:-0.119551px;}
.ws122{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.047821px;}
.wsd2{word-spacing:-0.008352px;}
.ws89{word-spacing:-0.006432px;}
.ws5b{word-spacing:0.000000px;}
.ws11f{word-spacing:0.006404px;}
.wsb1{word-spacing:0.059776px;}
.ws4c{word-spacing:0.119551px;}
.ws173{word-spacing:0.286924px;}
.wsfd{word-spacing:0.298878px;}
.ws134{word-spacing:0.418429px;}
.ws2e{word-spacing:0.478205px;}
.ws83{word-spacing:0.537980px;}
.ws71{word-spacing:0.657532px;}
.ws182{word-spacing:0.765130px;}
.ws9f{word-spacing:0.777083px;}
.ws14e{word-spacing:0.896634px;}
.ws169{word-spacing:0.908591px;}
.ws45{word-spacing:0.956410px;}
.ws148{word-spacing:1.135736px;}
.ws82{word-spacing:1.255288px;}
.ws17d{word-spacing:1.291156px;}
.ws187{word-spacing:1.338977px;}
.ws188{word-spacing:1.386797px;}
.ws129{word-spacing:1.434614px;}
.ws189{word-spacing:1.482439px;}
.ws127{word-spacing:1.494390px;}
.wse6{word-spacing:1.530259px;}
.ws145{word-spacing:1.554166px;}
.ws107{word-spacing:1.613941px;}
.ws168{word-spacing:1.673721px;}
.wsa0{word-spacing:1.733492px;}
.ws34{word-spacing:1.817183px;}
.wsa6{word-spacing:1.853044px;}
.ws196{word-spacing:1.865003px;}
.ws111{word-spacing:1.912819px;}
.ws1a0{word-spacing:1.912824px;}
.ws42{word-spacing:1.972595px;}
.wsfa{word-spacing:2.008465px;}
.ws4f{word-spacing:2.032370px;}
.ws14d{word-spacing:2.151922px;}
.ws53{word-spacing:2.211697px;}
.ws78{word-spacing:2.271473px;}
.ws116{word-spacing:2.391024px;}
.ws170{word-spacing:2.391030px;}
.wsdc{word-spacing:2.534492px;}
.ws68{word-spacing:2.570351px;}
.ws16{word-spacing:2.582323px;}
.ws33{word-spacing:2.630133px;}
.ws106{word-spacing:2.809453px;}
.ws177{word-spacing:2.821415px;}
.wsfe{word-spacing:2.869229px;}
.ws32{word-spacing:2.869236px;}
.ws11d{word-spacing:2.988780px;}
.ws172{word-spacing:3.012698px;}
.ws156{word-spacing:3.060518px;}
.ws72{word-spacing:3.108331px;}
.ws16b{word-spacing:3.156160px;}
.ws16a{word-spacing:3.166242px;}
.ws43{word-spacing:3.168107px;}
.wsad{word-spacing:3.347434px;}
.wsa3{word-spacing:3.407209px;}
.wse7{word-spacing:3.443083px;}
.ws1a2{word-spacing:3.538724px;}
.ws95{word-spacing:3.586536px;}
.ws15b{word-spacing:3.586545px;}
.ws183{word-spacing:3.682186px;}
.ws17{word-spacing:3.712090px;}
.ws10d{word-spacing:3.765863px;}
.ws1a3{word-spacing:3.873469px;}
.ws54{word-spacing:3.885414px;}
.ws23{word-spacing:3.945190px;}
.ws16f{word-spacing:3.969110px;}
.ws16e{word-spacing:3.978509px;}
.wsc1{word-spacing:4.004965px;}
.ws47{word-spacing:4.064741px;}
.ws178{word-spacing:4.064751px;}
.wsb4{word-spacing:4.124516px;}
.ws140{word-spacing:4.184292px;}
.ws19b{word-spacing:4.208213px;}
.ws19a{word-spacing:4.216256px;}
.wsb8{word-spacing:4.303843px;}
.ws18d{word-spacing:4.303854px;}
.wsa4{word-spacing:4.423394px;}
.wsdb{word-spacing:4.447316px;}
.wsa5{word-spacing:4.483170px;}
.ws79{word-spacing:4.542946px;}
.ws15a{word-spacing:4.590778px;}
.ws37{word-spacing:4.602721px;}
.ws185{word-spacing:4.638598px;}
.ws9e{word-spacing:4.722272px;}
.ws186{word-spacing:4.734239px;}
.wsd0{word-spacing:4.743818px;}
.ws17c{word-spacing:4.777240px;}
.wsd9{word-spacing:4.778250px;}
.ws81{word-spacing:4.782048px;}
.ws36{word-spacing:4.782060px;}
.wsbb{word-spacing:4.841824px;}
.ws133{word-spacing:4.901599px;}
.ws16d{word-spacing:4.925522px;}
.ws13e{word-spacing:5.021150px;}
.ws10e{word-spacing:5.200477px;}
.ws11a{word-spacing:5.379804px;}
.ws35{word-spacing:5.451548px;}
.ws180{word-spacing:5.496509px;}
.wsce{word-spacing:5.499355px;}
.ws181{word-spacing:5.499369px;}
.ws171{word-spacing:5.529877px;}
.ws159{word-spacing:5.547190px;}
.ws25{word-spacing:5.559131px;}
.ws17a{word-spacing:5.595010px;}
.ws7a{word-spacing:5.738458px;}
.wsa9{word-spacing:5.798233px;}
.ws18b{word-spacing:5.866064px;}
.wsd6{word-spacing:5.881934px;}
.ws88{word-spacing:5.929754px;}
.ws11e{word-spacing:5.942666px;}
.wsc3{word-spacing:5.950279px;}
.ws5c{word-spacing:5.961520px;}
.wsc5{word-spacing:5.963473px;}
.ws1b{word-spacing:5.971622px;}
.ws3{word-spacing:5.977560px;}
.wsd5{word-spacing:5.977575px;}
.ws30{word-spacing:6.037336px;}
.ws28{word-spacing:6.097111px;}
.ws135{word-spacing:6.156887px;}
.ws17b{word-spacing:6.216678px;}
.ws7d{word-spacing:6.276438px;}
.ws160{word-spacing:6.312319px;}
.ws13c{word-spacing:6.336214px;}
.ws197{word-spacing:6.360140px;}
.ws67{word-spacing:6.395989px;}
.wsf1{word-spacing:6.407960px;}
.ws48{word-spacing:6.455765px;}
.wsaa{word-spacing:6.515540px;}
.ws162{word-spacing:6.551422px;}
.ws1{word-spacing:6.575340px;}
.ws167{word-spacing:6.599243px;}
.ws12b{word-spacing:6.694867px;}
.ws14f{word-spacing:6.719602px;}
.ws1c{word-spacing:6.724800px;}
.ws164{word-spacing:6.742705px;}
.ws10b{word-spacing:6.754643px;}
.ws14a{word-spacing:6.814418px;}
.ws165{word-spacing:6.838346px;}
.wsc9{word-spacing:6.874194px;}
.ws15d{word-spacing:6.886166px;}
.wsca{word-spacing:6.933970px;}
.ws16c{word-spacing:6.933987px;}
.ws10{word-spacing:6.939994px;}
.ws96{word-spacing:6.993745px;}
.ws24{word-spacing:7.053521px;}
.ws6b{word-spacing:7.173072px;}
.wscf{word-spacing:7.292623px;}
.wse9{word-spacing:7.364372px;}
.ws19f{word-spacing:7.412193px;}
.ws163{word-spacing:7.507834px;}
.ws12c{word-spacing:7.591501px;}
.ws120{word-spacing:7.651277px;}
.ws108{word-spacing:7.711052px;}
.ws11b{word-spacing:7.770828px;}
.wsbe{word-spacing:7.830604px;}
.ws17e{word-spacing:7.842578px;}
.ws49{word-spacing:7.890379px;}
.wscd{word-spacing:7.950155px;}
.ws4e{word-spacing:8.129482px;}
.ws103{word-spacing:8.189257px;}
.wsff{word-spacing:8.249033px;}
.wse{word-spacing:8.284954px;}
.ws77{word-spacing:8.368584px;}
.wsf4{word-spacing:8.416426px;}
.wsa2{word-spacing:8.428360px;}
.ws166{word-spacing:8.464246px;}
.wscb{word-spacing:8.488135px;}
.ws27{word-spacing:8.547911px;}
.ws9c{word-spacing:8.607686px;}
.ws190{word-spacing:8.703349px;}
.ws10c{word-spacing:8.727238px;}
.ws199{word-spacing:8.751170px;}
.ws13d{word-spacing:8.787013px;}
.ws144{word-spacing:8.846789px;}
.ws12d{word-spacing:8.966340px;}
.wsb9{word-spacing:9.085891px;}
.ws20{word-spacing:9.145667px;}
.wsf9{word-spacing:9.181555px;}
.ws91{word-spacing:9.205442px;}
.ws19c{word-spacing:9.229376px;}
.ws138{word-spacing:9.265218px;}
.ws5f{word-spacing:9.324994px;}
.ws115{word-spacing:9.384769px;}
.wsb6{word-spacing:9.504320px;}
.ws14{word-spacing:9.522317px;}
.wseb{word-spacing:9.531084px;}
.ws1f{word-spacing:9.564096px;}
.ws158{word-spacing:9.659761px;}
.wsa8{word-spacing:9.683647px;}
.ws17f{word-spacing:9.707582px;}
.ws41{word-spacing:9.743423px;}
.ws65{word-spacing:9.803198px;}
.ws193{word-spacing:9.840509px;}
.ws194{word-spacing:9.851044px;}
.ws146{word-spacing:9.862974px;}
.ws7b{word-spacing:9.922750px;}
.wsb0{word-spacing:10.037890px;}
.ws66{word-spacing:10.042301px;}
.ws13a{word-spacing:10.102076px;}
.ws139{word-spacing:10.132801px;}
.wsec{word-spacing:10.137967px;}
.ws3f{word-spacing:10.161852px;}
.ws51{word-spacing:10.221628px;}
.ws176{word-spacing:10.281429px;}
.ws4d{word-spacing:10.341179px;}
.wsac{word-spacing:10.400954px;}
.wsf6{word-spacing:10.424891px;}
.ws69{word-spacing:10.460730px;}
.ws62{word-spacing:10.520506px;}
.ws18a{word-spacing:10.520532px;}
.ws132{word-spacing:10.640057px;}
.ws90{word-spacing:10.699832px;}
.ws7c{word-spacing:10.759608px;}
.ws26{word-spacing:10.819384px;}
.ws60{word-spacing:10.879159px;}
.ws12a{word-spacing:10.938935px;}
.ws19d{word-spacing:11.034509px;}
.ws19e{word-spacing:11.046559px;}
.wsf0{word-spacing:11.094379px;}
.ws86{word-spacing:11.237813px;}
.ws9b{word-spacing:11.357364px;}
.ws15e{word-spacing:11.456261px;}
.ws15f{word-spacing:11.476944px;}
.ws52{word-spacing:11.536691px;}
.ws12{word-spacing:11.620454px;}
.ws74{word-spacing:11.656242px;}
.ws87{word-spacing:11.955120px;}
.ws50{word-spacing:12.014896px;}
.wsf8{word-spacing:12.050791px;}
.ws75{word-spacing:12.074671px;}
.ws73{word-spacing:12.134447px;}
.wsc0{word-spacing:12.194222px;}
.ws152{word-spacing:12.194253px;}
.ws130{word-spacing:12.253998px;}
.ws155{word-spacing:12.289894px;}
.wsae{word-spacing:12.313774px;}
.wsaf{word-spacing:12.373549px;}
.ws15{word-spacing:12.481229px;}
.ws94{word-spacing:12.493100px;}
.ws99{word-spacing:12.552876px;}
.ws9d{word-spacing:12.612652px;}
.ws59{word-spacing:12.672427px;}
.ws154{word-spacing:12.720280px;}
.ws5a{word-spacing:12.732203px;}
.ws11{word-spacing:12.750221px;}
.ws11c{word-spacing:12.911530px;}
.ws101{word-spacing:12.971305px;}
.ws38{word-spacing:13.090856px;}
.ws113{word-spacing:13.210408px;}
.wsb{word-spacing:13.288205px;}
.ws18e{word-spacing:13.294127px;}
.ws85{word-spacing:13.509286px;}
.ws153{word-spacing:13.628871px;}
.ws121{word-spacing:13.688612px;}
.ws55{word-spacing:13.748388px;}
.ws6f{word-spacing:13.808164px;}
.ws7f{word-spacing:14.047266px;}
.ws4a{word-spacing:14.107042px;}
.ws195{word-spacing:14.154898px;}
.ws5e{word-spacing:14.226593px;}
.ws117{word-spacing:14.286368px;}
.ws179{word-spacing:14.298359px;}
.wsab{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws76{word-spacing:14.405920px;}
.ws119{word-spacing:14.465695px;}
.wsc{word-spacing:14.525568px;}
.ws18c{word-spacing:14.537462px;}
.ws13b{word-spacing:14.585246px;}
.ws7{word-spacing:14.686963px;}
.ws64{word-spacing:14.704798px;}
.ws8{word-spacing:14.740762px;}
.ws161{word-spacing:14.824386px;}
.ws174{word-spacing:14.872207px;}
.ws110{word-spacing:14.884124px;}
.ws3d{word-spacing:14.943900px;}
.ws136{word-spacing:15.003676px;}
.ws97{word-spacing:15.123227px;}
.wsa{word-spacing:15.278746px;}
.ws98{word-spacing:15.302554px;}
.ws2c{word-spacing:15.362329px;}
.ws7e{word-spacing:15.422105px;}
.ws12f{word-spacing:15.481880px;}
.ws157{word-spacing:15.541695px;}
.ws175{word-spacing:15.589516px;}
.ws142{word-spacing:15.601432px;}
.ws4b{word-spacing:15.661207px;}
.wsa7{word-spacing:15.720983px;}
.ws102{word-spacing:15.780758px;}
.ws137{word-spacing:15.840534px;}
.ws9{word-spacing:15.870528px;}
.ws198{word-spacing:15.876439px;}
.ws61{word-spacing:15.900310px;}
.ws21{word-spacing:16.019861px;}
.wscc{word-spacing:16.079636px;}
.ws15c{word-spacing:16.115542px;}
.ws6a{word-spacing:16.199188px;}
.ws46{word-spacing:16.378514px;}
.ws18{word-spacing:16.516109px;}
.ws150{word-spacing:16.557841px;}
.ws143{word-spacing:16.677392px;}
.ws104{word-spacing:16.796944px;}
.ws192{word-spacing:16.928492px;}
.wsbf{word-spacing:17.036046px;}
.ws114{word-spacing:17.155597px;}
.ws3a{word-spacing:17.215373px;}
.wsc2{word-spacing:17.275148px;}
.ws40{word-spacing:17.334924px;}
.ws63{word-spacing:17.394700px;}
.ws118{word-spacing:17.454475px;}
.wsb5{word-spacing:17.574026px;}
.ws8f{word-spacing:17.753353px;}
.ws8c{word-spacing:17.872904px;}
.ws1d{word-spacing:17.932680px;}
.ws57{word-spacing:18.052231px;}
.ws13f{word-spacing:18.112007px;}
.ws10a{word-spacing:18.171782px;}
.wsd{word-spacing:18.345254px;}
.ws124{word-spacing:18.351109px;}
.ws6{word-spacing:18.560448px;}
.ws8d{word-spacing:18.590212px;}
.ws44{word-spacing:18.649987px;}
.ws2f{word-spacing:18.709763px;}
.ws13{word-spacing:18.721843px;}
.ws6d{word-spacing:18.769538px;}
.wsbd{word-spacing:18.948865px;}
.wsda{word-spacing:19.128240px;}
.ws1a{word-spacing:19.367424px;}
.ws105{word-spacing:19.427070px;}
.ws191{word-spacing:19.462984px;}
.ws39{word-spacing:19.486846px;}
.ws12e{word-spacing:19.546621px;}
.wsfc{word-spacing:19.606397px;}
.ws14c{word-spacing:19.666172px;}
.ws100{word-spacing:19.785724px;}
.wsc8{word-spacing:19.905275px;}
.ws5{word-spacing:20.013005px;}
.wsb3{word-spacing:20.024826px;}
.ws9a{word-spacing:20.084602px;}
.ws149{word-spacing:20.204153px;}
.ws3b{word-spacing:20.443255px;}
.ws14b{word-spacing:20.503031px;}
.ws92{word-spacing:20.562806px;}
.ws147{word-spacing:20.622582px;}
.ws10f{word-spacing:20.861684px;}
.wse5{word-spacing:20.897602px;}
.wsbc{word-spacing:20.921460px;}
.ws31{word-spacing:21.088885px;}
.ws125{word-spacing:21.100787px;}
.wsed{word-spacing:21.136705px;}
.wsf{word-spacing:21.357965px;}
.wsc6{word-spacing:21.459440px;}
.ws8b{word-spacing:21.698543px;}
.wsb2{word-spacing:21.877870px;}
.ws6e{word-spacing:21.997421px;}
.ws131{word-spacing:22.116972px;}
.ws3c{word-spacing:22.176748px;}
.wsc7{word-spacing:22.236523px;}
.ws2d{word-spacing:22.356074px;}
.ws128{word-spacing:22.415850px;}
.wsf5{word-spacing:22.427861px;}
.ws3e{word-spacing:22.475626px;}
.ws2b{word-spacing:22.535401px;}
.wsb7{word-spacing:22.595177px;}
.ws58{word-spacing:22.714728px;}
.ws151{word-spacing:23.312484px;}
.ws8e{word-spacing:23.432035px;}
.ws141{word-spacing:23.741992px;}
.wsba{word-spacing:23.790689px;}
.ws126{word-spacing:24.029791px;}
.ws112{word-spacing:24.627547px;}
.wsf2{word-spacing:25.440559px;}
.wsde{word-spacing:25.584021px;}
.wse2{word-spacing:25.918765px;}
.wse0{word-spacing:26.062227px;}
.wsf7{word-spacing:28.022872px;}
.ws2a{word-spacing:30.017602px;}
.wsef{word-spacing:31.131211px;}
.wsea{word-spacing:32.087623px;}
.wsee{word-spacing:34.765576px;}
.wse8{word-spacing:37.586992px;}
.wsd8{word-spacing:72.675640px;}
.wsdd{word-spacing:75.064566px;}
.wsf3{word-spacing:96.585940px;}
.wse4{word-spacing:156.361690px;}
.wsdf{word-spacing:178.049396px;}
.wsd7{word-spacing:179.900266px;}
.wse3{word-spacing:274.802283px;}
.wse1{word-spacing:343.291050px;}
.wsfb{word-spacing:393.837424px;}
._1{margin-left:-6.246573px;}
._3{margin-left:-4.782048px;}
._2c{margin-left:-3.777752px;}
._4{margin-left:-2.767634px;}
._2{margin-left:-1.643835px;}
._d{width:1.051189px;}
._0{width:2.985113px;}
._2d{width:4.250303px;}
._2e{width:8.081287px;}
._2b{width:15.362329px;}
._7{width:16.498066px;}
._e{width:20.801909px;}
._a{width:23.611362px;}
._26{width:25.168164px;}
._5{width:27.168192px;}
._28{width:28.646284px;}
._8{width:29.887800px;}
._c{width:30.963761px;}
._6{width:33.474420px;}
._9{width:34.850419px;}
._27{width:36.617560px;}
._b{width:40.456054px;}
._2a{width:43.167512px;}
._29{width:44.743762px;}
._12{width:62.419186px;}
._18{width:74.217787px;}
._21{width:84.630790px;}
._1d{width:91.489850px;}
._11{width:99.665433px;}
._1f{width:104.262211px;}
._16{width:107.203054px;}
._17{width:113.663894px;}
._25{width:114.830563px;}
._1e{width:128.713250px;}
._22{width:130.802644px;}
._13{width:132.682361px;}
._1c{width:152.623550px;}
._10{width:164.549854px;}
._1b{width:170.983760px;}
._20{width:177.133643px;}
._1a{width:195.095011px;}
._23{width:232.911437px;}
._15{width:238.568402px;}
._24{width:278.494137px;}
._f{width:305.455288px;}
._19{width:341.251623px;}
._14{width:448.369767px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:38.256600px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y34{bottom:113.332500px;}
.y1f7{bottom:117.817500px;}
.y33{bottom:126.783000px;}
.y5a{bottom:131.265000px;}
.y1f6{bottom:131.266500px;}
.y32{bottom:140.232000px;}
.y1f5{bottom:144.715500px;}
.y59{bottom:149.197500px;}
.y74{bottom:149.199000px;}
.y31{bottom:153.681000px;}
.y1bf{bottom:153.682500px;}
.y161{bottom:156.292500px;}
.y1f4{bottom:158.166000px;}
.ye8{bottom:167.130000px;}
.y30{bottom:167.131500px;}
.y1be{bottom:167.239500px;}
.ybd{bottom:167.392500px;}
.y1f3{bottom:171.615000px;}
.y2f{bottom:180.580500px;}
.y1bd{bottom:180.688500px;}
.y58{bottom:185.064000px;}
.ybc{bottom:185.325000px;}
.y160{bottom:190.107000px;}
.y1bc{bottom:194.139000px;}
.y1f2{bottom:198.514500px;}
.y57{bottom:202.996500px;}
.ybb{bottom:203.257500px;}
.y1bb{bottom:207.588000px;}
.y15f{bottom:208.039500px;}
.y1f1{bottom:211.963500px;}
.y2e{bottom:215.895000px;}
.y56{bottom:220.929000px;}
.y1ba{bottom:221.146500px;}
.yba{bottom:221.191500px;}
.y1f0{bottom:225.414000px;}
.y15e{bottom:225.973500px;}
.y190{bottom:226.554000px;}
.ye7{bottom:230.511000px;}
.y2d{bottom:233.827500px;}
.y1b9{bottom:234.595500px;}
.y55{bottom:238.861500px;}
.y1ef{bottom:238.863000px;}
.yb9{bottom:239.124000px;}
.y15d{bottom:243.906000px;}
.y1b8{bottom:248.044500px;}
.y2c{bottom:251.760000px;}
.y12f{bottom:252.114000px;}
.y1ee{bottom:252.312000px;}
.y18f{bottom:255.876000px;}
.y54{bottom:256.794000px;}
.y73{bottom:256.795500px;}
.yb8{bottom:257.056500px;}
.y1b7{bottom:261.495000px;}
.y15c{bottom:261.838500px;}
.y1ed{bottom:265.762500px;}
.y2b{bottom:269.692500px;}
.y12e{bottom:270.046500px;}
.ye6{bottom:270.372000px;}
.y18e{bottom:273.808500px;}
.y72{bottom:274.728000px;}
.yb7{bottom:274.989000px;}
.y1b6{bottom:275.052000px;}
.y1ec{bottom:279.211500px;}
.y15b{bottom:279.771000px;}
.y53{bottom:280.705500px;}
.y8a{bottom:284.844000px;}
.y2a{bottom:287.625000px;}
.y12d{bottom:287.979000px;}
.ye5{bottom:288.304500px;}
.y1b5{bottom:288.502500px;}
.y18d{bottom:291.741000px;}
.y71{bottom:292.660500px;}
.yb6{bottom:292.921500px;}
.y15a{bottom:297.703500px;}
.y52{bottom:298.638000px;}
.y1b4{bottom:301.951500px;}
.y29{bottom:305.559000px;}
.y12c{bottom:305.913000px;}
.y1eb{bottom:306.111000px;}
.ye4{bottom:306.237000px;}
.y18c{bottom:309.673500px;}
.y70{bottom:310.593000px;}
.yb5{bottom:310.854000px;}
.y1b3{bottom:315.400500px;}
.y159{bottom:315.636000px;}
.y51{bottom:316.570500px;}
.y1ea{bottom:319.560000px;}
.y89{bottom:320.526000px;}
.y28{bottom:323.491500px;}
.y12b{bottom:323.845500px;}
.ye3{bottom:324.171000px;}
.y18b{bottom:327.607500px;}
.y6f{bottom:328.525500px;}
.yb4{bottom:328.788000px;}
.y1b2{bottom:328.959000px;}
.y1e9{bottom:333.010500px;}
.y158{bottom:333.570000px;}
.y50{bottom:334.503000px;}
.y88{bottom:338.458500px;}
.y27{bottom:341.424000px;}
.y12a{bottom:341.778000px;}
.ye2{bottom:342.103500px;}
.y1b1{bottom:342.408000px;}
.y18a{bottom:345.540000px;}
.y6e{bottom:346.459500px;}
.yb3{bottom:346.720500px;}
.y119{bottom:350.745000px;}
.y157{bottom:351.502500px;}
.y4f{bottom:352.435500px;}
.y1b0{bottom:355.857000px;}
.y87{bottom:356.391000px;}
.y26{bottom:359.356500px;}
.y129{bottom:359.710500px;}
.y1e8{bottom:359.908500px;}
.ye1{bottom:360.036000px;}
.y189{bottom:363.472500px;}
.y6d{bottom:364.392000px;}
.yb2{bottom:364.914000px;}
.y118{bottom:368.677500px;}
.y1af{bottom:369.307500px;}
.y156{bottom:369.435000px;}
.y4e{bottom:370.368000px;}
.y1e7{bottom:373.359000px;}
.y86{bottom:374.323500px;}
.y25{bottom:377.289000px;}
.y128{bottom:377.643000px;}
.ye0{bottom:377.968500px;}
.y188{bottom:381.634500px;}
.y6c{bottom:382.324500px;}
.yb1{bottom:382.846500px;}
.y1ae{bottom:382.864500px;}
.y117{bottom:386.610000px;}
.y1e6{bottom:386.808000px;}
.y4d{bottom:388.302000px;}
.y155{bottom:388.390500px;}
.y85{bottom:392.257500px;}
.y24{bottom:395.221500px;}
.y127{bottom:395.575500px;}
.ydf{bottom:395.901000px;}
.y1ad{bottom:396.315000px;}
.y187{bottom:399.567000px;}
.y6b{bottom:400.257000px;}
.yb0{bottom:400.780500px;}
.y116{bottom:404.542500px;}
.y4c{bottom:406.234500px;}
.y154{bottom:406.323000px;}
.y1ac{bottom:409.764000px;}
.y84{bottom:410.190000px;}
.y23{bottom:413.155500px;}
.y126{bottom:413.509500px;}
.y1e5{bottom:413.707500px;}
.yde{bottom:413.833500px;}
.y186{bottom:417.501000px;}
.y6a{bottom:418.189500px;}
.yaf{bottom:418.713000px;}
.y115{bottom:422.475000px;}
.y1ab{bottom:423.213000px;}
.y4b{bottom:424.167000px;}
.y153{bottom:424.255500px;}
.y1e4{bottom:427.156500px;}
.y83{bottom:428.122500px;}
.y22{bottom:431.088000px;}
.y125{bottom:431.442000px;}
.ydd{bottom:431.767500px;}
.y185{bottom:435.433500px;}
.y69{bottom:436.122000px;}
.yae{bottom:436.645500px;}
.y1aa{bottom:436.771500px;}
.y114{bottom:440.409000px;}
.y1e3{bottom:440.607000px;}
.y4a{bottom:442.099500px;}
.y152{bottom:442.188000px;}
.y82{bottom:446.055000px;}
.y21{bottom:449.020500px;}
.y124{bottom:449.374500px;}
.ydc{bottom:449.700000px;}
.y1a9{bottom:450.220500px;}
.y184{bottom:453.366000px;}
.y68{bottom:454.056000px;}
.yad{bottom:454.578000px;}
.y113{bottom:458.341500px;}
.y151{bottom:460.122000px;}
.y1a8{bottom:463.671000px;}
.y81{bottom:463.987500px;}
.y49{bottom:466.009500px;}
.y20{bottom:466.953000px;}
.y123{bottom:467.307000px;}
.y1e2{bottom:467.505000px;}
.ydb{bottom:467.632500px;}
.y183{bottom:471.298500px;}
.y67{bottom:471.988500px;}
.yac{bottom:472.510500px;}
.y112{bottom:476.274000px;}
.y1a7{bottom:477.120000px;}
.y150{bottom:478.054500px;}
.y1e1{bottom:480.955500px;}
.y80{bottom:481.921500px;}
.y48{bottom:483.943500px;}
.y1f{bottom:484.885500px;}
.y122{bottom:485.239500px;}
.yda{bottom:485.565000px;}
.y182{bottom:489.231000px;}
.y66{bottom:489.921000px;}
.yab{bottom:490.443000px;}
.y1a6{bottom:490.677000px;}
.y111{bottom:494.206500px;}
.y1e0{bottom:494.404500px;}
.y14f{bottom:495.987000px;}
.y7f{bottom:499.854000px;}
.y47{bottom:501.876000px;}
.y121{bottom:503.173500px;}
.y1a5{bottom:504.127500px;}
.y181{bottom:507.163500px;}
.y65{bottom:507.853500px;}
.yaa{bottom:508.377000px;}
.y110{bottom:512.139000px;}
.yd9{bottom:513.081000px;}
.y14e{bottom:513.919500px;}
.y1e{bottom:514.866000px;}
.y1a4{bottom:517.684500px;}
.y7e{bottom:517.786500px;}
.y46{bottom:519.808500px;}
.y120{bottom:521.106000px;}
.y1df{bottom:521.304000px;}
.y180{bottom:525.097500px;}
.y64{bottom:525.786000px;}
.ya9{bottom:526.309500px;}
.y10f{bottom:530.071500px;}
.y1a3{bottom:531.135000px;}
.y14d{bottom:531.852000px;}
.y1de{bottom:534.753000px;}
.y7d{bottom:535.719000px;}
.y45{bottom:537.741000px;}
.y11f{bottom:539.038500px;}
.y17f{bottom:543.030000px;}
.y63{bottom:543.718500px;}
.yd8{bottom:544.078500px;}
.ya8{bottom:544.242000px;}
.y1a2{bottom:544.584000px;}
.y10e{bottom:548.005500px;}
.y1dd{bottom:548.202000px;}
.y14c{bottom:549.786000px;}
.y7c{bottom:553.651500px;}
.y44{bottom:555.673500px;}
.y11e{bottom:556.971000px;}
.y1d{bottom:557.439000px;}
.y1a1{bottom:558.141000px;}
.y17e{bottom:560.962500px;}
.y62{bottom:561.652500px;}
.yd7{bottom:562.011000px;}
.ya7{bottom:562.437000px;}
.y14b{bottom:567.718500px;}
.y10d{bottom:570.223500px;}
.y1a0{bottom:571.591500px;}
.y1c{bottom:572.383500px;}
.y7b{bottom:572.485500px;}
.y43{bottom:573.606000px;}
.y11d{bottom:574.903500px;}
.y1dc{bottom:575.101500px;}
.y17d{bottom:578.895000px;}
.y61{bottom:579.585000px;}
.ya6{bottom:580.369500px;}
.y19f{bottom:585.040500px;}
.y14a{bottom:585.651000px;}
.y10c{bottom:588.156000px;}
.y1b{bottom:588.550500px;}
.y1db{bottom:588.552000px;}
.y7a{bottom:590.419500px;}
.y42{bottom:591.540000px;}
.y17c{bottom:597.057000px;}
.y60{bottom:597.517500px;}
.ya5{bottom:598.302000px;}
.y19e{bottom:598.491000px;}
.yd6{bottom:601.872000px;}
.y1da{bottom:602.001000px;}
.y1a{bottom:603.495000px;}
.y149{bottom:604.606500px;}
.y10b{bottom:606.088500px;}
.y79{bottom:608.352000px;}
.y41{bottom:609.472500px;}
.y19d{bottom:612.048000px;}
.y17b{bottom:614.991000px;}
.y5f{bottom:615.450000px;}
.ya4{bottom:616.234500px;}
.y19{bottom:618.439500px;}
.yd5{bottom:619.804500px;}
.y148{bottom:622.539000px;}
.y11c{bottom:624.021000px;}
.y10a{bottom:624.022500px;}
.y19c{bottom:625.497000px;}
.y78{bottom:626.284500px;}
.y40{bottom:627.405000px;}
.y1d9{bottom:628.900500px;}
.y17a{bottom:632.923500px;}
.y18{bottom:633.382500px;}
.ya3{bottom:634.167000px;}
.yd4{bottom:637.737000px;}
.y19b{bottom:638.947500px;}
.y147{bottom:640.471500px;}
.y109{bottom:641.955000px;}
.y1d8{bottom:642.349500px;}
.y77{bottom:644.217000px;}
.y3f{bottom:645.337500px;}
.y17{bottom:648.327000px;}
.y179{bottom:650.856000px;}
.y5e{bottom:651.315000px;}
.ya2{bottom:652.099500px;}
.y19a{bottom:652.396500px;}
.yd3{bottom:655.669500px;}
.y1d7{bottom:655.798500px;}
.y146{bottom:658.404000px;}
.y108{bottom:659.887500px;}
.y76{bottom:662.149500px;}
.y16{bottom:663.270000px;}
.y178{bottom:668.788500px;}
.y5d{bottom:669.249000px;}
.ya1{bottom:670.033500px;}
.yd2{bottom:673.603500px;}
.y199{bottom:675.756000px;}
.y145{bottom:676.338000px;}
.y107{bottom:677.820000px;}
.y15{bottom:678.214500px;}
.y75{bottom:680.082000px;}
.y3e{bottom:681.202500px;}
.y1d6{bottom:682.698000px;}
.y177{bottom:686.721000px;}
.ya0{bottom:687.966000px;}
.yd1{bottom:691.536000px;}
.y14{bottom:693.159000px;}
.y144{bottom:694.270500px;}
.y106{bottom:695.752500px;}
.y1d5{bottom:696.148500px;}
.y5c{bottom:698.016000px;}
.y3d{bottom:699.136500px;}
.y176{bottom:704.653500px;}
.y198{bottom:705.430500px;}
.y9f{bottom:705.898500px;}
.y13{bottom:708.102000px;}
.yd0{bottom:709.468500px;}
.y1d4{bottom:709.597500px;}
.y143{bottom:712.203000px;}
.y11b{bottom:713.685000px;}
.y105{bottom:713.686500px;}
.y3c{bottom:717.069000px;}
.y175{bottom:722.587500px;}
.y12{bottom:723.046500px;}
.y197{bottom:723.363000px;}
.y9e{bottom:723.831000px;}
.y5b{bottom:725.073000px;}
.ycf{bottom:727.401000px;}
.y142{bottom:730.135500px;}
.y11a{bottom:731.617500px;}
.y104{bottom:731.619000px;}
.y3b{bottom:735.001500px;}
.y1d3{bottom:736.497000px;}
.y11{bottom:737.991000px;}
.y174{bottom:740.520000px;}
.y196{bottom:741.295500px;}
.y9d{bottom:742.026000px;}
.yce{bottom:745.333500px;}
.y141{bottom:748.068000px;}
.y103{bottom:749.551500px;}
.y1d2{bottom:749.946000px;}
.y10{bottom:752.934000px;}
.y173{bottom:758.452500px;}
.y9c{bottom:759.958500px;}
.ycd{bottom:763.266000px;}
.y1d1{bottom:763.395000px;}
.y195{bottom:765.103500px;}
.y140{bottom:767.023500px;}
.yf{bottom:767.878500px;}
.y3a{bottom:770.866500px;}
.y172{bottom:776.385000px;}
.y1d0{bottom:776.845500px;}
.y9b{bottom:777.891000px;}
.ycc{bottom:781.200000px;}
.ye{bottom:782.823000px;}
.y13f{bottom:784.956000px;}
.y100{bottom:788.166000px;}
.y39{bottom:788.800500px;}
.y1cf{bottom:790.294500px;}
.y171{bottom:794.317500px;}
.y194{bottom:794.778000px;}
.y101{bottom:794.890500px;}
.y9a{bottom:795.823500px;}
.yd{bottom:797.766000px;}
.ycb{bottom:799.132500px;}
.yff{bottom:801.615000px;}
.y13e{bottom:802.890000px;}
.y1ce{bottom:803.745000px;}
.y38{bottom:806.733000px;}
.y102{bottom:808.339500px;}
.y170{bottom:812.250000px;}
.yc{bottom:812.710500px;}
.y99{bottom:813.756000px;}
.yfe{bottom:815.064000px;}
.yca{bottom:817.065000px;}
.y1cd{bottom:817.194000px;}
.y13d{bottom:820.822500px;}
.y37{bottom:824.665500px;}
.yb{bottom:827.655000px;}
.y16f{bottom:830.184000px;}
.y193{bottom:830.643000px;}
.y98{bottom:831.688500px;}
.yfd{bottom:832.474500px;}
.yc9{bottom:834.997500px;}
.y13c{bottom:838.755000px;}
.yfa{bottom:839.199000px;}
.ya{bottom:842.598000px;}
.y1cc{bottom:844.093500px;}
.yfc{bottom:845.923500px;}
.y16e{bottom:848.346000px;}
.y192{bottom:848.575500px;}
.yf9{bottom:852.648000px;}
.yc8{bottom:852.930000px;}
.y97{bottom:854.940000px;}
.y13b{bottom:856.687500px;}
.y9{bottom:857.542500px;}
.yfb{bottom:859.374000px;}
.y36{bottom:860.530500px;}
.y16d{bottom:866.278500px;}
.y191{bottom:866.508000px;}
.yc7{bottom:870.864000px;}
.y1cb{bottom:870.991500px;}
.y8{bottom:872.485500px;}
.y13a{bottom:874.620000px;}
.yf8{bottom:876.783000px;}
.y16c{bottom:884.211000px;}
.y35{bottom:884.440500px;}
.y96{bottom:884.442000px;}
.y7{bottom:887.430000px;}
.yc6{bottom:888.796500px;}
.yf6{bottom:890.232000px;}
.y139{bottom:892.552500px;}
.y1ca{bottom:897.891000px;}
.y16b{bottom:902.143500px;}
.y6{bottom:902.374500px;}
.yf7{bottom:903.682500px;}
.yc5{bottom:906.729000px;}
.y138{bottom:910.486500px;}
.y1c9{bottom:911.341500px;}
.y16a{bottom:920.077500px;}
.y95{bottom:920.307000px;}
.yf5{bottom:921.091500px;}
.yc4{bottom:924.661500px;}
.y1c8{bottom:924.790500px;}
.yf2{bottom:927.816000px;}
.y137{bottom:928.419000px;}
.yf4{bottom:934.542000px;}
.y169{bottom:938.010000px;}
.y94{bottom:938.239500px;}
.yf1{bottom:941.266500px;}
.yc3{bottom:942.594000px;}
.y136{bottom:947.374500px;}
.yf3{bottom:947.991000px;}
.y1c7{bottom:951.690000px;}
.y168{bottom:955.942500px;}
.y93{bottom:956.172000px;}
.y5{bottom:960.450000px;}
.yc2{bottom:960.526500px;}
.y1c6{bottom:965.139000px;}
.y135{bottom:965.307000px;}
.yf0{bottom:965.400000px;}
.y167{bottom:973.875000px;}
.y92{bottom:974.104500px;}
.yc1{bottom:978.460500px;}
.y1c5{bottom:978.588000px;}
.yef{bottom:978.850500px;}
.y4{bottom:978.943500px;}
.y134{bottom:983.239500px;}
.y166{bottom:991.807500px;}
.y91{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.yee{bottom:996.259500px;}
.yc0{bottom:996.393000px;}
.y133{bottom:1001.172000px;}
.y1c4{bottom:1005.487500px;}
.yed{bottom:1009.710000px;}
.y165{bottom:1009.740000px;}
.y90{bottom:1009.971000px;}
.y1c3{bottom:1018.936500px;}
.y132{bottom:1019.104500px;}
.ybf{bottom:1023.907500px;}
.yec{bottom:1027.119000px;}
.y164{bottom:1027.674000px;}
.y8f{bottom:1027.903500px;}
.y1c2{bottom:1032.387000px;}
.yeb{bottom:1033.843500px;}
.y131{bottom:1037.038500px;}
.y2{bottom:1039.309500px;}
.y163{bottom:1045.606500px;}
.y8e{bottom:1045.836000px;}
.y130{bottom:1054.971000px;}
.yea{bottom:1057.978500px;}
.y1c1{bottom:1059.286500px;}
.y162{bottom:1063.539000px;}
.y8d{bottom:1063.768500px;}
.y1c0{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y8c{bottom:1081.701000px;}
.ye9{bottom:1086.184500px;}
.ybe{bottom:1099.633500px;}
.y8b{bottom:1099.635000px;}
.h3{height:21.465356px;}
.h10{height:32.804932px;}
.h8{height:32.900573px;}
.h11{height:33.140573px;}
.ha{height:33.187496px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h9{height:41.006062px;}
.h6{height:41.125613px;}
.h7{height:50.477846px;}
.hf{height:50.483846px;}
.h2{height:55.745981px;}
.hb{height:59.798573px;}
.he{height:59.804573px;}
.hc{height:86.696573px;}
.hd{height:86.702573px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:73.446000px;}
.x1f{left:79.423500px;}
.x13{left:83.749500px;}
.x9{left:85.401000px;}
.x6{left:88.389000px;}
.x1{left:96.438000px;}
.x20{left:100.834500px;}
.x1b{left:106.242000px;}
.x21{left:142.633500px;}
.x3{left:173.322000px;}
.xd{left:197.317500px;}
.x8{left:203.428500px;}
.x1c{left:205.716000px;}
.x14{left:208.579500px;}
.x1e{left:219.897000px;}
.x2{left:246.910500px;}
.x5{left:277.599000px;}
.x18{left:290.890500px;}
.xc{left:315.496500px;}
.x12{left:327.321000px;}
.x4{left:358.026000px;}
.x16{left:368.947500px;}
.x11{left:436.213500px;}
.x19{left:447.006000px;}
.xa{left:467.967000px;}
.xb{left:482.910000px;}
.x22{left:495.355500px;}
.x17{left:508.056000px;}
.xe{left:514.788000px;}
.xf{left:526.324500px;}
.x10{left:549.936000px;}
.x1d{left:598.816500px;}
.x26{left:634.651500px;}
.x15{left:662.649000px;}
.x24{left:759.912000px;}
.x27{left:777.985500px;}
.x1a{left:787.411500px;}
.x25{left:813.685500px;}
.x23{left:821.637000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.002667pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v4{vertical-align:23.909333pt;}
.v5{vertical-align:47.824000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000125pt;}
.ls10{letter-spacing:0.002731pt;}
.ls1e{letter-spacing:0.741348pt;}
.lsd{letter-spacing:2.108364pt;}
.lsb{letter-spacing:2.125360pt;}
.lsc{letter-spacing:2.125802pt;}
.lsa{letter-spacing:2.129434pt;}
.ls4{letter-spacing:2.182963pt;}
.ls2{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653258pt;}
.ls1c{letter-spacing:2.655711pt;}
.ls6{letter-spacing:2.656015pt;}
.ls5{letter-spacing:2.656693pt;}
.ls1{letter-spacing:2.657253pt;}
.ls9{letter-spacing:2.657326pt;}
.ls7{letter-spacing:2.658422pt;}
.ls15{letter-spacing:11.970717pt;}
.ls1b{letter-spacing:12.418717pt;}
.ls12{letter-spacing:12.541383pt;}
.ls16{letter-spacing:12.546717pt;}
.lsf{letter-spacing:14.877383pt;}
.lse{letter-spacing:15.864050pt;}
.ls19{letter-spacing:19.096050pt;}
.ls1d{letter-spacing:22.293812pt;}
.ls8{letter-spacing:26.347145pt;}
.ls11{letter-spacing:27.634717pt;}
.ls14{letter-spacing:29.218717pt;}
.ls18{letter-spacing:39.138717pt;}
.ls1a{letter-spacing:41.549383pt;}
.ls17{letter-spacing:331.280473pt;}
.wsc4{word-spacing:-15.940160pt;}
.ws29{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-13.262246pt;}
.wsd1{word-spacing:-12.752160pt;}
.ws19{word-spacing:-11.955200pt;}
.ws5d{word-spacing:-10.626800pt;}
.wsd4{word-spacing:-10.609830pt;}
.ws18f{word-spacing:-3.528098pt;}
.ws8a{word-spacing:-2.658240pt;}
.wsd3{word-spacing:-2.123573pt;}
.ws123{word-spacing:-1.009543pt;}
.ws84{word-spacing:-0.850142pt;}
.ws22{word-spacing:-0.797008pt;}
.ws56{word-spacing:-0.690740pt;}
.ws70{word-spacing:-0.531339pt;}
.ws93{word-spacing:-0.478205pt;}
.ws184{word-spacing:-0.467579pt;}
.wsa1{word-spacing:-0.425071pt;}
.ws80{word-spacing:-0.371937pt;}
.ws1a1{word-spacing:-0.340058pt;}
.ws109{word-spacing:-0.265669pt;}
.ws6c{word-spacing:-0.106268pt;}
.ws122{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.042507pt;}
.wsd2{word-spacing:-0.007424pt;}
.ws89{word-spacing:-0.005717pt;}
.ws5b{word-spacing:0.000000pt;}
.ws11f{word-spacing:0.005693pt;}
.wsb1{word-spacing:0.053134pt;}
.ws4c{word-spacing:0.106268pt;}
.ws173{word-spacing:0.255043pt;}
.wsfd{word-spacing:0.265669pt;}
.ws134{word-spacing:0.371937pt;}
.ws2e{word-spacing:0.425071pt;}
.ws83{word-spacing:0.478205pt;}
.ws71{word-spacing:0.584473pt;}
.ws182{word-spacing:0.680115pt;}
.ws9f{word-spacing:0.690740pt;}
.ws14e{word-spacing:0.797008pt;}
.ws169{word-spacing:0.807637pt;}
.ws45{word-spacing:0.850142pt;}
.ws148{word-spacing:1.009543pt;}
.ws82{word-spacing:1.115811pt;}
.ws17d{word-spacing:1.147694pt;}
.ws187{word-spacing:1.190202pt;}
.ws188{word-spacing:1.232709pt;}
.ws129{word-spacing:1.275213pt;}
.ws189{word-spacing:1.317723pt;}
.ws127{word-spacing:1.328347pt;}
.wse6{word-spacing:1.360230pt;}
.ws145{word-spacing:1.381481pt;}
.ws107{word-spacing:1.434614pt;}
.ws168{word-spacing:1.487752pt;}
.wsa0{word-spacing:1.540882pt;}
.ws34{word-spacing:1.615274pt;}
.wsa6{word-spacing:1.647150pt;}
.ws196{word-spacing:1.657781pt;}
.ws111{word-spacing:1.700284pt;}
.ws1a0{word-spacing:1.700288pt;}
.ws42{word-spacing:1.753418pt;}
.wsfa{word-spacing:1.785302pt;}
.ws4f{word-spacing:1.806551pt;}
.ws14d{word-spacing:1.912819pt;}
.ws53{word-spacing:1.965953pt;}
.ws78{word-spacing:2.019087pt;}
.ws116{word-spacing:2.125355pt;}
.ws170{word-spacing:2.125360pt;}
.wsdc{word-spacing:2.252882pt;}
.ws68{word-spacing:2.284756pt;}
.ws16{word-spacing:2.295398pt;}
.ws33{word-spacing:2.337896pt;}
.ws106{word-spacing:2.497292pt;}
.ws177{word-spacing:2.507925pt;}
.wsfe{word-spacing:2.550426pt;}
.ws32{word-spacing:2.550432pt;}
.ws11d{word-spacing:2.656693pt;}
.ws172{word-spacing:2.677954pt;}
.ws156{word-spacing:2.720461pt;}
.ws72{word-spacing:2.762961pt;}
.ws16b{word-spacing:2.805475pt;}
.ws16a{word-spacing:2.814437pt;}
.ws43{word-spacing:2.816095pt;}
.wsad{word-spacing:2.975497pt;}
.wsa3{word-spacing:3.028630pt;}
.wse7{word-spacing:3.060518pt;}
.ws1a2{word-spacing:3.145533pt;}
.ws95{word-spacing:3.188032pt;}
.ws15b{word-spacing:3.188040pt;}
.ws183{word-spacing:3.273054pt;}
.ws17{word-spacing:3.299635pt;}
.ws10d{word-spacing:3.347434pt;}
.ws1a3{word-spacing:3.443083pt;}
.ws54{word-spacing:3.453701pt;}
.ws23{word-spacing:3.506835pt;}
.ws16f{word-spacing:3.528098pt;}
.ws16e{word-spacing:3.536452pt;}
.wsc1{word-spacing:3.559969pt;}
.ws47{word-spacing:3.613103pt;}
.ws178{word-spacing:3.613112pt;}
.wsb4{word-spacing:3.666237pt;}
.ws140{word-spacing:3.719371pt;}
.ws19b{word-spacing:3.740634pt;}
.ws19a{word-spacing:3.747783pt;}
.wsb8{word-spacing:3.825638pt;}
.ws18d{word-spacing:3.825648pt;}
.wsa4{word-spacing:3.931906pt;}
.wsdb{word-spacing:3.953170pt;}
.wsa5{word-spacing:3.985040pt;}
.ws79{word-spacing:4.038174pt;}
.ws15a{word-spacing:4.080691pt;}
.ws37{word-spacing:4.091308pt;}
.ws185{word-spacing:4.123198pt;}
.ws9e{word-spacing:4.197575pt;}
.ws186{word-spacing:4.208213pt;}
.wsd0{word-spacing:4.216727pt;}
.ws17c{word-spacing:4.246436pt;}
.wsd9{word-spacing:4.247333pt;}
.ws81{word-spacing:4.250709pt;}
.ws36{word-spacing:4.250720pt;}
.wsbb{word-spacing:4.303843pt;}
.ws133{word-spacing:4.356977pt;}
.ws16d{word-spacing:4.378242pt;}
.ws13e{word-spacing:4.463245pt;}
.ws10e{word-spacing:4.622646pt;}
.ws11a{word-spacing:4.782048pt;}
.ws35{word-spacing:4.845821pt;}
.ws180{word-spacing:4.885786pt;}
.wsce{word-spacing:4.888316pt;}
.ws181{word-spacing:4.888328pt;}
.ws171{word-spacing:4.915446pt;}
.ws159{word-spacing:4.930835pt;}
.ws25{word-spacing:4.941450pt;}
.ws17a{word-spacing:4.973342pt;}
.ws7a{word-spacing:5.100851pt;}
.wsa9{word-spacing:5.153985pt;}
.ws18b{word-spacing:5.214279pt;}
.wsd6{word-spacing:5.228386pt;}
.ws88{word-spacing:5.270893pt;}
.ws11e{word-spacing:5.282370pt;}
.wsc3{word-spacing:5.289137pt;}
.ws5c{word-spacing:5.299129pt;}
.wsc5{word-spacing:5.300865pt;}
.ws1b{word-spacing:5.308109pt;}
.ws3{word-spacing:5.313387pt;}
.wsd5{word-spacing:5.313400pt;}
.ws30{word-spacing:5.366521pt;}
.ws28{word-spacing:5.419654pt;}
.ws135{word-spacing:5.472788pt;}
.ws17b{word-spacing:5.525936pt;}
.ws7d{word-spacing:5.579056pt;}
.ws160{word-spacing:5.610950pt;}
.ws13c{word-spacing:5.632190pt;}
.ws197{word-spacing:5.653458pt;}
.ws67{word-spacing:5.685324pt;}
.wsf1{word-spacing:5.695965pt;}
.ws48{word-spacing:5.738458pt;}
.wsaa{word-spacing:5.791591pt;}
.ws162{word-spacing:5.823486pt;}
.ws1{word-spacing:5.844747pt;}
.ws167{word-spacing:5.865994pt;}
.ws12b{word-spacing:5.950993pt;}
.ws14f{word-spacing:5.972979pt;}
.ws1c{word-spacing:5.977600pt;}
.ws164{word-spacing:5.993515pt;}
.ws10b{word-spacing:6.004127pt;}
.ws14a{word-spacing:6.057261pt;}
.ws165{word-spacing:6.078530pt;}
.wsc9{word-spacing:6.110395pt;}
.ws15d{word-spacing:6.121037pt;}
.wsca{word-spacing:6.163529pt;}
.ws16c{word-spacing:6.163544pt;}
.ws10{word-spacing:6.168883pt;}
.ws96{word-spacing:6.216662pt;}
.ws24{word-spacing:6.269796pt;}
.ws6b{word-spacing:6.376064pt;}
.wscf{word-spacing:6.482332pt;}
.wse9{word-spacing:6.546109pt;}
.ws19f{word-spacing:6.588616pt;}
.ws163{word-spacing:6.673630pt;}
.ws12c{word-spacing:6.748001pt;}
.ws120{word-spacing:6.801135pt;}
.ws108{word-spacing:6.854269pt;}
.ws11b{word-spacing:6.907403pt;}
.wsbe{word-spacing:6.960537pt;}
.ws17e{word-spacing:6.971181pt;}
.ws49{word-spacing:7.013670pt;}
.wscd{word-spacing:7.066804pt;}
.ws4e{word-spacing:7.226206pt;}
.ws103{word-spacing:7.279340pt;}
.wsff{word-spacing:7.332474pt;}
.wse{word-spacing:7.364403pt;}
.ws77{word-spacing:7.438741pt;}
.wsf4{word-spacing:7.481267pt;}
.wsa2{word-spacing:7.491875pt;}
.ws166{word-spacing:7.523774pt;}
.wscb{word-spacing:7.545009pt;}
.ws27{word-spacing:7.598143pt;}
.ws9c{word-spacing:7.651277pt;}
.ws190{word-spacing:7.736310pt;}
.ws10c{word-spacing:7.757545pt;}
.ws199{word-spacing:7.778818pt;}
.ws13d{word-spacing:7.810678pt;}
.ws144{word-spacing:7.863812pt;}
.ws12d{word-spacing:7.970080pt;}
.wsb9{word-spacing:8.076348pt;}
.ws20{word-spacing:8.129482pt;}
.wsf9{word-spacing:8.161382pt;}
.ws91{word-spacing:8.182615pt;}
.ws19c{word-spacing:8.203890pt;}
.ws138{word-spacing:8.235749pt;}
.ws5f{word-spacing:8.288883pt;}
.ws115{word-spacing:8.342017pt;}
.wsb6{word-spacing:8.448285pt;}
.ws14{word-spacing:8.464282pt;}
.wseb{word-spacing:8.472075pt;}
.ws1f{word-spacing:8.501419pt;}
.ws158{word-spacing:8.586454pt;}
.wsa8{word-spacing:8.607686pt;}
.ws17f{word-spacing:8.628962pt;}
.ws41{word-spacing:8.660820pt;}
.ws65{word-spacing:8.713954pt;}
.ws193{word-spacing:8.747119pt;}
.ws194{word-spacing:8.756483pt;}
.ws146{word-spacing:8.767088pt;}
.ws7b{word-spacing:8.820222pt;}
.wsb0{word-spacing:8.922569pt;}
.ws66{word-spacing:8.926490pt;}
.ws13a{word-spacing:8.979623pt;}
.ws139{word-spacing:9.006934pt;}
.wsec{word-spacing:9.011526pt;}
.ws3f{word-spacing:9.032757pt;}
.ws51{word-spacing:9.085891pt;}
.ws176{word-spacing:9.139048pt;}
.ws4d{word-spacing:9.192159pt;}
.wsac{word-spacing:9.245293pt;}
.wsf6{word-spacing:9.266570pt;}
.ws69{word-spacing:9.298427pt;}
.ws62{word-spacing:9.351561pt;}
.ws18a{word-spacing:9.351584pt;}
.ws132{word-spacing:9.457828pt;}
.ws90{word-spacing:9.510962pt;}
.ws7c{word-spacing:9.564096pt;}
.ws26{word-spacing:9.617230pt;}
.ws60{word-spacing:9.670364pt;}
.ws12a{word-spacing:9.723498pt;}
.ws19d{word-spacing:9.808452pt;}
.ws19e{word-spacing:9.819163pt;}
.wsf0{word-spacing:9.861670pt;}
.ws86{word-spacing:9.989167pt;}
.ws9b{word-spacing:10.095435pt;}
.ws15e{word-spacing:10.183343pt;}
.ws15f{word-spacing:10.201728pt;}
.ws52{word-spacing:10.254836pt;}
.ws12{word-spacing:10.329293pt;}
.ws74{word-spacing:10.361104pt;}
.ws87{word-spacing:10.626773pt;}
.ws50{word-spacing:10.679907pt;}
.wsf8{word-spacing:10.711814pt;}
.ws75{word-spacing:10.733041pt;}
.ws73{word-spacing:10.786175pt;}
.wsc0{word-spacing:10.839309pt;}
.ws152{word-spacing:10.839336pt;}
.ws130{word-spacing:10.892443pt;}
.ws155{word-spacing:10.924350pt;}
.wsae{word-spacing:10.945577pt;}
.wsaf{word-spacing:10.998710pt;}
.ws15{word-spacing:11.094426pt;}
.ws94{word-spacing:11.104978pt;}
.ws99{word-spacing:11.158112pt;}
.ws9d{word-spacing:11.211246pt;}
.ws59{word-spacing:11.264380pt;}
.ws154{word-spacing:11.306915pt;}
.ws5a{word-spacing:11.317514pt;}
.ws11{word-spacing:11.333530pt;}
.ws11c{word-spacing:11.476915pt;}
.ws101{word-spacing:11.530049pt;}
.ws38{word-spacing:11.636317pt;}
.ws113{word-spacing:11.742585pt;}
.wsb{word-spacing:11.811738pt;}
.ws18e{word-spacing:11.817002pt;}
.ws85{word-spacing:12.008254pt;}
.ws153{word-spacing:12.114552pt;}
.ws121{word-spacing:12.167655pt;}
.ws55{word-spacing:12.220789pt;}
.ws6f{word-spacing:12.273923pt;}
.ws7f{word-spacing:12.486459pt;}
.ws4a{word-spacing:12.539593pt;}
.ws195{word-spacing:12.582131pt;}
.ws5e{word-spacing:12.645860pt;}
.ws117{word-spacing:12.698994pt;}
.ws179{word-spacing:12.709653pt;}
.wsab{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws76{word-spacing:12.805262pt;}
.ws119{word-spacing:12.858396pt;}
.wsc{word-spacing:12.911616pt;}
.ws18c{word-spacing:12.922189pt;}
.ws13b{word-spacing:12.964663pt;}
.ws7{word-spacing:13.055078pt;}
.ws64{word-spacing:13.070931pt;}
.ws8{word-spacing:13.102899pt;}
.ws161{word-spacing:13.177232pt;}
.ws174{word-spacing:13.219739pt;}
.ws110{word-spacing:13.230333pt;}
.ws3d{word-spacing:13.283467pt;}
.ws136{word-spacing:13.336601pt;}
.ws97{word-spacing:13.442868pt;}
.wsa{word-spacing:13.581107pt;}
.ws98{word-spacing:13.602270pt;}
.ws2c{word-spacing:13.655404pt;}
.ws7e{word-spacing:13.708538pt;}
.ws12f{word-spacing:13.761671pt;}
.ws157{word-spacing:13.814840pt;}
.ws175{word-spacing:13.857347pt;}
.ws142{word-spacing:13.867939pt;}
.ws4b{word-spacing:13.921073pt;}
.wsa7{word-spacing:13.974207pt;}
.ws102{word-spacing:14.027341pt;}
.ws137{word-spacing:14.080475pt;}
.ws9{word-spacing:14.107136pt;}
.ws198{word-spacing:14.112390pt;}
.ws61{word-spacing:14.133609pt;}
.ws21{word-spacing:14.239876pt;}
.wscc{word-spacing:14.293010pt;}
.ws15c{word-spacing:14.324926pt;}
.ws6a{word-spacing:14.399278pt;}
.ws46{word-spacing:14.558679pt;}
.ws18{word-spacing:14.680986pt;}
.ws150{word-spacing:14.718081pt;}
.ws143{word-spacing:14.824349pt;}
.ws104{word-spacing:14.930617pt;}
.ws192{word-spacing:15.047549pt;}
.wsbf{word-spacing:15.143152pt;}
.ws114{word-spacing:15.249420pt;}
.ws3a{word-spacing:15.302554pt;}
.wsc2{word-spacing:15.355687pt;}
.ws40{word-spacing:15.408821pt;}
.ws63{word-spacing:15.461955pt;}
.ws118{word-spacing:15.515089pt;}
.wsb5{word-spacing:15.621357pt;}
.ws8f{word-spacing:15.780758pt;}
.ws8c{word-spacing:15.887026pt;}
.ws1d{word-spacing:15.940160pt;}
.ws57{word-spacing:16.046428pt;}
.ws13f{word-spacing:16.099562pt;}
.ws10a{word-spacing:16.152695pt;}
.wsd{word-spacing:16.306893pt;}
.ws124{word-spacing:16.312097pt;}
.ws6{word-spacing:16.498176pt;}
.ws8d{word-spacing:16.524633pt;}
.ws44{word-spacing:16.577766pt;}
.ws2f{word-spacing:16.630900pt;}
.ws13{word-spacing:16.641638pt;}
.ws6d{word-spacing:16.684034pt;}
.wsbd{word-spacing:16.843436pt;}
.wsda{word-spacing:17.002880pt;}
.ws1a{word-spacing:17.215488pt;}
.ws105{word-spacing:17.268507pt;}
.ws191{word-spacing:17.300430pt;}
.ws39{word-spacing:17.321641pt;}
.ws12e{word-spacing:17.374774pt;}
.wsfc{word-spacing:17.427908pt;}
.ws14c{word-spacing:17.481042pt;}
.ws100{word-spacing:17.587310pt;}
.wsc8{word-spacing:17.693578pt;}
.ws5{word-spacing:17.789338pt;}
.wsb3{word-spacing:17.799845pt;}
.ws9a{word-spacing:17.852979pt;}
.ws149{word-spacing:17.959247pt;}
.ws3b{word-spacing:18.171782pt;}
.ws14b{word-spacing:18.224916pt;}
.ws92{word-spacing:18.278050pt;}
.ws147{word-spacing:18.331184pt;}
.ws10f{word-spacing:18.543719pt;}
.wse5{word-spacing:18.575646pt;}
.wsbc{word-spacing:18.596853pt;}
.ws31{word-spacing:18.745675pt;}
.ws125{word-spacing:18.756255pt;}
.wsed{word-spacing:18.788182pt;}
.wsf{word-spacing:18.984858pt;}
.wsc6{word-spacing:19.075058pt;}
.ws8b{word-spacing:19.287594pt;}
.wsb2{word-spacing:19.446995pt;}
.ws6e{word-spacing:19.553263pt;}
.ws131{word-spacing:19.659531pt;}
.ws3c{word-spacing:19.712665pt;}
.wsc7{word-spacing:19.765798pt;}
.ws2d{word-spacing:19.872066pt;}
.ws128{word-spacing:19.925200pt;}
.wsf5{word-spacing:19.935877pt;}
.ws3e{word-spacing:19.978334pt;}
.ws2b{word-spacing:20.031468pt;}
.wsb7{word-spacing:20.084602pt;}
.ws58{word-spacing:20.190869pt;}
.ws151{word-spacing:20.722208pt;}
.ws8e{word-spacing:20.828476pt;}
.ws141{word-spacing:21.103993pt;}
.wsba{word-spacing:21.147279pt;}
.ws126{word-spacing:21.359814pt;}
.ws112{word-spacing:21.891153pt;}
.wsf2{word-spacing:22.613830pt;}
.wsde{word-spacing:22.741352pt;}
.wse2{word-spacing:23.038902pt;}
.wse0{word-spacing:23.166424pt;}
.wsf7{word-spacing:24.909219pt;}
.ws2a{word-spacing:26.682313pt;}
.wsef{word-spacing:27.672187pt;}
.wsea{word-spacing:28.522331pt;}
.wsee{word-spacing:30.902734pt;}
.wse8{word-spacing:33.410659pt;}
.wsd8{word-spacing:64.600569pt;}
.wsdd{word-spacing:66.724059pt;}
.wsf3{word-spacing:85.854169pt;}
.wse4{word-spacing:138.988169pt;}
.wsdf{word-spacing:158.266130pt;}
.wsd7{word-spacing:159.911348pt;}
.wse3{word-spacing:244.268696pt;}
.wse1{word-spacing:305.147600pt;}
.wsfb{word-spacing:350.077710pt;}
._1{margin-left:-5.552509pt;}
._3{margin-left:-4.250709pt;}
._2c{margin-left:-3.358002pt;}
._4{margin-left:-2.460119pt;}
._2{margin-left:-1.461187pt;}
._d{width:0.934390pt;}
._0{width:2.653434pt;}
._2d{width:3.778047pt;}
._2e{width:7.183366pt;}
._2b{width:13.655404pt;}
._7{width:14.664947pt;}
._e{width:18.490586pt;}
._a{width:20.987877pt;}
._26{width:22.371701pt;}
._5{width:24.149504pt;}
._28{width:25.463363pt;}
._8{width:26.566933pt;}
._c{width:27.523343pt;}
._6{width:29.755040pt;}
._9{width:30.978150pt;}
._27{width:32.548942pt;}
._b{width:35.960937pt;}
._2a{width:38.371122pt;}
._29{width:39.772233pt;}
._12{width:55.483721pt;}
._18{width:65.971366pt;}
._21{width:75.227369pt;}
._1d{width:81.324311pt;}
._11{width:88.591496pt;}
._1f{width:92.677521pt;}
._16{width:95.291603pt;}
._17{width:101.034573pt;}
._25{width:102.071612pt;}
._1e{width:114.411778pt;}
._22{width:116.269017pt;}
._13{width:117.939876pt;}
._1c{width:135.665378pt;}
._10{width:146.266537pt;}
._1b{width:151.985565pt;}
._20{width:157.452127pt;}
._1a{width:173.417787pt;}
._23{width:207.032389pt;}
._15{width:212.060802pt;}
._24{width:247.550344pt;}
._f{width:271.515811pt;}
._19{width:303.334776pt;}
._14{width:398.550904pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:34.005867pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:100.740000pt;}
.y1f7{bottom:104.726667pt;}
.y33{bottom:112.696000pt;}
.y5a{bottom:116.680000pt;}
.y1f6{bottom:116.681333pt;}
.y32{bottom:124.650667pt;}
.y1f5{bottom:128.636000pt;}
.y59{bottom:132.620000pt;}
.y74{bottom:132.621333pt;}
.y31{bottom:136.605333pt;}
.y1bf{bottom:136.606667pt;}
.y161{bottom:138.926667pt;}
.y1f4{bottom:140.592000pt;}
.ye8{bottom:148.560000pt;}
.y30{bottom:148.561333pt;}
.y1be{bottom:148.657333pt;}
.ybd{bottom:148.793333pt;}
.y1f3{bottom:152.546667pt;}
.y2f{bottom:160.516000pt;}
.y1bd{bottom:160.612000pt;}
.y58{bottom:164.501333pt;}
.ybc{bottom:164.733333pt;}
.y160{bottom:168.984000pt;}
.y1bc{bottom:172.568000pt;}
.y1f2{bottom:176.457333pt;}
.y57{bottom:180.441333pt;}
.ybb{bottom:180.673333pt;}
.y1bb{bottom:184.522667pt;}
.y15f{bottom:184.924000pt;}
.y1f1{bottom:188.412000pt;}
.y2e{bottom:191.906667pt;}
.y56{bottom:196.381333pt;}
.y1ba{bottom:196.574667pt;}
.yba{bottom:196.614667pt;}
.y1f0{bottom:200.368000pt;}
.y15e{bottom:200.865333pt;}
.y190{bottom:201.381333pt;}
.ye7{bottom:204.898667pt;}
.y2d{bottom:207.846667pt;}
.y1b9{bottom:208.529333pt;}
.y55{bottom:212.321333pt;}
.y1ef{bottom:212.322667pt;}
.yb9{bottom:212.554667pt;}
.y15d{bottom:216.805333pt;}
.y1b8{bottom:220.484000pt;}
.y2c{bottom:223.786667pt;}
.y12f{bottom:224.101333pt;}
.y1ee{bottom:224.277333pt;}
.y18f{bottom:227.445333pt;}
.y54{bottom:228.261333pt;}
.y73{bottom:228.262667pt;}
.yb8{bottom:228.494667pt;}
.y1b7{bottom:232.440000pt;}
.y15c{bottom:232.745333pt;}
.y1ed{bottom:236.233333pt;}
.y2b{bottom:239.726667pt;}
.y12e{bottom:240.041333pt;}
.ye6{bottom:240.330667pt;}
.y18e{bottom:243.385333pt;}
.y72{bottom:244.202667pt;}
.yb7{bottom:244.434667pt;}
.y1b6{bottom:244.490667pt;}
.y1ec{bottom:248.188000pt;}
.y15b{bottom:248.685333pt;}
.y53{bottom:249.516000pt;}
.y8a{bottom:253.194667pt;}
.y2a{bottom:255.666667pt;}
.y12d{bottom:255.981333pt;}
.ye5{bottom:256.270667pt;}
.y1b5{bottom:256.446667pt;}
.y18d{bottom:259.325333pt;}
.y71{bottom:260.142667pt;}
.yb6{bottom:260.374667pt;}
.y15a{bottom:264.625333pt;}
.y52{bottom:265.456000pt;}
.y1b4{bottom:268.401333pt;}
.y29{bottom:271.608000pt;}
.y12c{bottom:271.922667pt;}
.y1eb{bottom:272.098667pt;}
.ye4{bottom:272.210667pt;}
.y18c{bottom:275.265333pt;}
.y70{bottom:276.082667pt;}
.yb5{bottom:276.314667pt;}
.y1b3{bottom:280.356000pt;}
.y159{bottom:280.565333pt;}
.y51{bottom:281.396000pt;}
.y1ea{bottom:284.053333pt;}
.y89{bottom:284.912000pt;}
.y28{bottom:287.548000pt;}
.y12b{bottom:287.862667pt;}
.ye3{bottom:288.152000pt;}
.y18b{bottom:291.206667pt;}
.y6f{bottom:292.022667pt;}
.yb4{bottom:292.256000pt;}
.y1b2{bottom:292.408000pt;}
.y1e9{bottom:296.009333pt;}
.y158{bottom:296.506667pt;}
.y50{bottom:297.336000pt;}
.y88{bottom:300.852000pt;}
.y27{bottom:303.488000pt;}
.y12a{bottom:303.802667pt;}
.ye2{bottom:304.092000pt;}
.y1b1{bottom:304.362667pt;}
.y18a{bottom:307.146667pt;}
.y6e{bottom:307.964000pt;}
.yb3{bottom:308.196000pt;}
.y119{bottom:311.773333pt;}
.y157{bottom:312.446667pt;}
.y4f{bottom:313.276000pt;}
.y1b0{bottom:316.317333pt;}
.y87{bottom:316.792000pt;}
.y26{bottom:319.428000pt;}
.y129{bottom:319.742667pt;}
.y1e8{bottom:319.918667pt;}
.ye1{bottom:320.032000pt;}
.y189{bottom:323.086667pt;}
.y6d{bottom:323.904000pt;}
.yb2{bottom:324.368000pt;}
.y118{bottom:327.713333pt;}
.y1af{bottom:328.273333pt;}
.y156{bottom:328.386667pt;}
.y4e{bottom:329.216000pt;}
.y1e7{bottom:331.874667pt;}
.y86{bottom:332.732000pt;}
.y25{bottom:335.368000pt;}
.y128{bottom:335.682667pt;}
.ye0{bottom:335.972000pt;}
.y188{bottom:339.230667pt;}
.y6c{bottom:339.844000pt;}
.yb1{bottom:340.308000pt;}
.y1ae{bottom:340.324000pt;}
.y117{bottom:343.653333pt;}
.y1e6{bottom:343.829333pt;}
.y4d{bottom:345.157333pt;}
.y155{bottom:345.236000pt;}
.y85{bottom:348.673333pt;}
.y24{bottom:351.308000pt;}
.y127{bottom:351.622667pt;}
.ydf{bottom:351.912000pt;}
.y1ad{bottom:352.280000pt;}
.y187{bottom:355.170667pt;}
.y6b{bottom:355.784000pt;}
.yb0{bottom:356.249333pt;}
.y116{bottom:359.593333pt;}
.y4c{bottom:361.097333pt;}
.y154{bottom:361.176000pt;}
.y1ac{bottom:364.234667pt;}
.y84{bottom:364.613333pt;}
.y23{bottom:367.249333pt;}
.y126{bottom:367.564000pt;}
.y1e5{bottom:367.740000pt;}
.yde{bottom:367.852000pt;}
.y186{bottom:371.112000pt;}
.y6a{bottom:371.724000pt;}
.yaf{bottom:372.189333pt;}
.y115{bottom:375.533333pt;}
.y1ab{bottom:376.189333pt;}
.y4b{bottom:377.037333pt;}
.y153{bottom:377.116000pt;}
.y1e4{bottom:379.694667pt;}
.y83{bottom:380.553333pt;}
.y22{bottom:383.189333pt;}
.y125{bottom:383.504000pt;}
.ydd{bottom:383.793333pt;}
.y185{bottom:387.052000pt;}
.y69{bottom:387.664000pt;}
.yae{bottom:388.129333pt;}
.y1aa{bottom:388.241333pt;}
.y114{bottom:391.474667pt;}
.y1e3{bottom:391.650667pt;}
.y4a{bottom:392.977333pt;}
.y152{bottom:393.056000pt;}
.y82{bottom:396.493333pt;}
.y21{bottom:399.129333pt;}
.y124{bottom:399.444000pt;}
.ydc{bottom:399.733333pt;}
.y1a9{bottom:400.196000pt;}
.y184{bottom:402.992000pt;}
.y68{bottom:403.605333pt;}
.yad{bottom:404.069333pt;}
.y113{bottom:407.414667pt;}
.y151{bottom:408.997333pt;}
.y1a8{bottom:412.152000pt;}
.y81{bottom:412.433333pt;}
.y49{bottom:414.230667pt;}
.y20{bottom:415.069333pt;}
.y123{bottom:415.384000pt;}
.y1e2{bottom:415.560000pt;}
.ydb{bottom:415.673333pt;}
.y183{bottom:418.932000pt;}
.y67{bottom:419.545333pt;}
.yac{bottom:420.009333pt;}
.y112{bottom:423.354667pt;}
.y1a7{bottom:424.106667pt;}
.y150{bottom:424.937333pt;}
.y1e1{bottom:427.516000pt;}
.y80{bottom:428.374667pt;}
.y48{bottom:430.172000pt;}
.y1f{bottom:431.009333pt;}
.y122{bottom:431.324000pt;}
.yda{bottom:431.613333pt;}
.y182{bottom:434.872000pt;}
.y66{bottom:435.485333pt;}
.yab{bottom:435.949333pt;}
.y1a6{bottom:436.157333pt;}
.y111{bottom:439.294667pt;}
.y1e0{bottom:439.470667pt;}
.y14f{bottom:440.877333pt;}
.y7f{bottom:444.314667pt;}
.y47{bottom:446.112000pt;}
.y121{bottom:447.265333pt;}
.y1a5{bottom:448.113333pt;}
.y181{bottom:450.812000pt;}
.y65{bottom:451.425333pt;}
.yaa{bottom:451.890667pt;}
.y110{bottom:455.234667pt;}
.yd9{bottom:456.072000pt;}
.y14e{bottom:456.817333pt;}
.y1e{bottom:457.658667pt;}
.y1a4{bottom:460.164000pt;}
.y7e{bottom:460.254667pt;}
.y46{bottom:462.052000pt;}
.y120{bottom:463.205333pt;}
.y1df{bottom:463.381333pt;}
.y180{bottom:466.753333pt;}
.y64{bottom:467.365333pt;}
.ya9{bottom:467.830667pt;}
.y10f{bottom:471.174667pt;}
.y1a3{bottom:472.120000pt;}
.y14d{bottom:472.757333pt;}
.y1de{bottom:475.336000pt;}
.y7d{bottom:476.194667pt;}
.y45{bottom:477.992000pt;}
.y11f{bottom:479.145333pt;}
.y17f{bottom:482.693333pt;}
.y63{bottom:483.305333pt;}
.yd8{bottom:483.625333pt;}
.ya8{bottom:483.770667pt;}
.y1a2{bottom:484.074667pt;}
.y10e{bottom:487.116000pt;}
.y1dd{bottom:487.290667pt;}
.y14c{bottom:488.698667pt;}
.y7c{bottom:492.134667pt;}
.y44{bottom:493.932000pt;}
.y11e{bottom:495.085333pt;}
.y1d{bottom:495.501333pt;}
.y1a1{bottom:496.125333pt;}
.y17e{bottom:498.633333pt;}
.y62{bottom:499.246667pt;}
.yd7{bottom:499.565333pt;}
.ya7{bottom:499.944000pt;}
.y14b{bottom:504.638667pt;}
.y10d{bottom:506.865333pt;}
.y1a0{bottom:508.081333pt;}
.y1c{bottom:508.785333pt;}
.y7b{bottom:508.876000pt;}
.y43{bottom:509.872000pt;}
.y11d{bottom:511.025333pt;}
.y1dc{bottom:511.201333pt;}
.y17d{bottom:514.573333pt;}
.y61{bottom:515.186667pt;}
.ya6{bottom:515.884000pt;}
.y19f{bottom:520.036000pt;}
.y14a{bottom:520.578667pt;}
.y10c{bottom:522.805333pt;}
.y1b{bottom:523.156000pt;}
.y1db{bottom:523.157333pt;}
.y7a{bottom:524.817333pt;}
.y42{bottom:525.813333pt;}
.y17c{bottom:530.717333pt;}
.y60{bottom:531.126667pt;}
.ya5{bottom:531.824000pt;}
.y19e{bottom:531.992000pt;}
.yd6{bottom:534.997333pt;}
.y1da{bottom:535.112000pt;}
.y1a{bottom:536.440000pt;}
.y149{bottom:537.428000pt;}
.y10b{bottom:538.745333pt;}
.y79{bottom:540.757333pt;}
.y41{bottom:541.753333pt;}
.y19d{bottom:544.042667pt;}
.y17b{bottom:546.658667pt;}
.y5f{bottom:547.066667pt;}
.ya4{bottom:547.764000pt;}
.y19{bottom:549.724000pt;}
.yd5{bottom:550.937333pt;}
.y148{bottom:553.368000pt;}
.y11c{bottom:554.685333pt;}
.y10a{bottom:554.686667pt;}
.y19c{bottom:555.997333pt;}
.y78{bottom:556.697333pt;}
.y40{bottom:557.693333pt;}
.y1d9{bottom:559.022667pt;}
.y17a{bottom:562.598667pt;}
.y18{bottom:563.006667pt;}
.ya3{bottom:563.704000pt;}
.yd4{bottom:566.877333pt;}
.y19b{bottom:567.953333pt;}
.y147{bottom:569.308000pt;}
.y109{bottom:570.626667pt;}
.y1d8{bottom:570.977333pt;}
.y77{bottom:572.637333pt;}
.y3f{bottom:573.633333pt;}
.y17{bottom:576.290667pt;}
.y179{bottom:578.538667pt;}
.y5e{bottom:578.946667pt;}
.ya2{bottom:579.644000pt;}
.y19a{bottom:579.908000pt;}
.yd3{bottom:582.817333pt;}
.y1d7{bottom:582.932000pt;}
.y146{bottom:585.248000pt;}
.y108{bottom:586.566667pt;}
.y76{bottom:588.577333pt;}
.y16{bottom:589.573333pt;}
.y178{bottom:594.478667pt;}
.y5d{bottom:594.888000pt;}
.ya1{bottom:595.585333pt;}
.yd2{bottom:598.758667pt;}
.y199{bottom:600.672000pt;}
.y145{bottom:601.189333pt;}
.y107{bottom:602.506667pt;}
.y15{bottom:602.857333pt;}
.y75{bottom:604.517333pt;}
.y3e{bottom:605.513333pt;}
.y1d6{bottom:606.842667pt;}
.y177{bottom:610.418667pt;}
.ya0{bottom:611.525333pt;}
.yd1{bottom:614.698667pt;}
.y14{bottom:616.141333pt;}
.y144{bottom:617.129333pt;}
.y106{bottom:618.446667pt;}
.y1d5{bottom:618.798667pt;}
.y5c{bottom:620.458667pt;}
.y3d{bottom:621.454667pt;}
.y176{bottom:626.358667pt;}
.y198{bottom:627.049333pt;}
.y9f{bottom:627.465333pt;}
.y13{bottom:629.424000pt;}
.yd0{bottom:630.638667pt;}
.y1d4{bottom:630.753333pt;}
.y143{bottom:633.069333pt;}
.y11b{bottom:634.386667pt;}
.y105{bottom:634.388000pt;}
.y3c{bottom:637.394667pt;}
.y175{bottom:642.300000pt;}
.y12{bottom:642.708000pt;}
.y197{bottom:642.989333pt;}
.y9e{bottom:643.405333pt;}
.y5b{bottom:644.509333pt;}
.ycf{bottom:646.578667pt;}
.y142{bottom:649.009333pt;}
.y11a{bottom:650.326667pt;}
.y104{bottom:650.328000pt;}
.y3b{bottom:653.334667pt;}
.y1d3{bottom:654.664000pt;}
.y11{bottom:655.992000pt;}
.y174{bottom:658.240000pt;}
.y196{bottom:658.929333pt;}
.y9d{bottom:659.578667pt;}
.yce{bottom:662.518667pt;}
.y141{bottom:664.949333pt;}
.y103{bottom:666.268000pt;}
.y1d2{bottom:666.618667pt;}
.y10{bottom:669.274667pt;}
.y173{bottom:674.180000pt;}
.y9c{bottom:675.518667pt;}
.ycd{bottom:678.458667pt;}
.y1d1{bottom:678.573333pt;}
.y195{bottom:680.092000pt;}
.y140{bottom:681.798667pt;}
.yf{bottom:682.558667pt;}
.y3a{bottom:685.214667pt;}
.y172{bottom:690.120000pt;}
.y1d0{bottom:690.529333pt;}
.y9b{bottom:691.458667pt;}
.ycc{bottom:694.400000pt;}
.ye{bottom:695.842667pt;}
.y13f{bottom:697.738667pt;}
.y100{bottom:700.592000pt;}
.y39{bottom:701.156000pt;}
.y1cf{bottom:702.484000pt;}
.y171{bottom:706.060000pt;}
.y194{bottom:706.469333pt;}
.y101{bottom:706.569333pt;}
.y9a{bottom:707.398667pt;}
.yd{bottom:709.125333pt;}
.ycb{bottom:710.340000pt;}
.yff{bottom:712.546667pt;}
.y13e{bottom:713.680000pt;}
.y1ce{bottom:714.440000pt;}
.y38{bottom:717.096000pt;}
.y102{bottom:718.524000pt;}
.y170{bottom:722.000000pt;}
.yc{bottom:722.409333pt;}
.y99{bottom:723.338667pt;}
.yfe{bottom:724.501333pt;}
.yca{bottom:726.280000pt;}
.y1cd{bottom:726.394667pt;}
.y13d{bottom:729.620000pt;}
.y37{bottom:733.036000pt;}
.yb{bottom:735.693333pt;}
.y16f{bottom:737.941333pt;}
.y193{bottom:738.349333pt;}
.y98{bottom:739.278667pt;}
.yfd{bottom:739.977333pt;}
.yc9{bottom:742.220000pt;}
.y13c{bottom:745.560000pt;}
.yfa{bottom:745.954667pt;}
.ya{bottom:748.976000pt;}
.y1cc{bottom:750.305333pt;}
.yfc{bottom:751.932000pt;}
.y16e{bottom:754.085333pt;}
.y192{bottom:754.289333pt;}
.yf9{bottom:757.909333pt;}
.yc8{bottom:758.160000pt;}
.y97{bottom:759.946667pt;}
.y13b{bottom:761.500000pt;}
.y9{bottom:762.260000pt;}
.yfb{bottom:763.888000pt;}
.y36{bottom:764.916000pt;}
.y16d{bottom:770.025333pt;}
.y191{bottom:770.229333pt;}
.yc7{bottom:774.101333pt;}
.y1cb{bottom:774.214667pt;}
.y8{bottom:775.542667pt;}
.y13a{bottom:777.440000pt;}
.yf8{bottom:779.362667pt;}
.y16c{bottom:785.965333pt;}
.y35{bottom:786.169333pt;}
.y96{bottom:786.170667pt;}
.y7{bottom:788.826667pt;}
.yc6{bottom:790.041333pt;}
.yf6{bottom:791.317333pt;}
.y139{bottom:793.380000pt;}
.y1ca{bottom:798.125333pt;}
.y16b{bottom:801.905333pt;}
.y6{bottom:802.110667pt;}
.yf7{bottom:803.273333pt;}
.yc5{bottom:805.981333pt;}
.y138{bottom:809.321333pt;}
.y1c9{bottom:810.081333pt;}
.y16a{bottom:817.846667pt;}
.y95{bottom:818.050667pt;}
.yf5{bottom:818.748000pt;}
.yc4{bottom:821.921333pt;}
.y1c8{bottom:822.036000pt;}
.yf2{bottom:824.725333pt;}
.y137{bottom:825.261333pt;}
.yf4{bottom:830.704000pt;}
.y169{bottom:833.786667pt;}
.y94{bottom:833.990667pt;}
.yf1{bottom:836.681333pt;}
.yc3{bottom:837.861333pt;}
.y136{bottom:842.110667pt;}
.yf3{bottom:842.658667pt;}
.y1c7{bottom:845.946667pt;}
.y168{bottom:849.726667pt;}
.y93{bottom:849.930667pt;}
.y5{bottom:853.733333pt;}
.yc2{bottom:853.801333pt;}
.y1c6{bottom:857.901333pt;}
.y135{bottom:858.050667pt;}
.yf0{bottom:858.133333pt;}
.y167{bottom:865.666667pt;}
.y92{bottom:865.870667pt;}
.yc1{bottom:869.742667pt;}
.y1c5{bottom:869.856000pt;}
.yef{bottom:870.089333pt;}
.y4{bottom:870.172000pt;}
.y134{bottom:873.990667pt;}
.y166{bottom:881.606667pt;}
.y91{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.yee{bottom:885.564000pt;}
.yc0{bottom:885.682667pt;}
.y133{bottom:889.930667pt;}
.y1c4{bottom:893.766667pt;}
.yed{bottom:897.520000pt;}
.y165{bottom:897.546667pt;}
.y90{bottom:897.752000pt;}
.y1c3{bottom:905.721333pt;}
.y132{bottom:905.870667pt;}
.ybf{bottom:910.140000pt;}
.yec{bottom:912.994667pt;}
.y164{bottom:913.488000pt;}
.y8f{bottom:913.692000pt;}
.y1c2{bottom:917.677333pt;}
.yeb{bottom:918.972000pt;}
.y131{bottom:921.812000pt;}
.y2{bottom:923.830667pt;}
.y163{bottom:929.428000pt;}
.y8e{bottom:929.632000pt;}
.y130{bottom:937.752000pt;}
.yea{bottom:940.425333pt;}
.y1c1{bottom:941.588000pt;}
.y162{bottom:945.368000pt;}
.y8d{bottom:945.572000pt;}
.y1c0{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y8c{bottom:961.512000pt;}
.ye9{bottom:965.497333pt;}
.ybe{bottom:977.452000pt;}
.y8b{bottom:977.453333pt;}
.h3{height:19.080317pt;}
.h10{height:29.159939pt;}
.h8{height:29.244954pt;}
.h11{height:29.458287pt;}
.ha{height:29.499997pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h9{height:36.449833pt;}
.h6{height:36.556100pt;}
.h7{height:44.869197pt;}
.hf{height:44.874530pt;}
.h2{height:49.551983pt;}
.hb{height:53.154287pt;}
.he{height:53.159620pt;}
.hc{height:77.063620pt;}
.hd{height:77.068954pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:65.285333pt;}
.x1f{left:70.598667pt;}
.x13{left:74.444000pt;}
.x9{left:75.912000pt;}
.x6{left:78.568000pt;}
.x1{left:85.722667pt;}
.x20{left:89.630667pt;}
.x1b{left:94.437333pt;}
.x21{left:126.785333pt;}
.x3{left:154.064000pt;}
.xd{left:175.393333pt;}
.x8{left:180.825333pt;}
.x1c{left:182.858667pt;}
.x14{left:185.404000pt;}
.x1e{left:195.464000pt;}
.x2{left:219.476000pt;}
.x5{left:246.754667pt;}
.x18{left:258.569333pt;}
.xc{left:280.441333pt;}
.x12{left:290.952000pt;}
.x4{left:318.245333pt;}
.x16{left:327.953333pt;}
.x11{left:387.745333pt;}
.x19{left:397.338667pt;}
.xa{left:415.970667pt;}
.xb{left:429.253333pt;}
.x22{left:440.316000pt;}
.x17{left:451.605333pt;}
.xe{left:457.589333pt;}
.xf{left:467.844000pt;}
.x10{left:488.832000pt;}
.x1d{left:532.281333pt;}
.x26{left:564.134667pt;}
.x15{left:589.021333pt;}
.x24{left:675.477333pt;}
.x27{left:691.542667pt;}
.x1a{left:699.921333pt;}
.x25{left:723.276000pt;}
.x23{left:730.344000pt;}
}




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