
    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_041036a555bcc1885310ee87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_7e4ea35bdcd862f1e70fcc21.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947000;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_3f3cafcb85b1a976dacd47f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_ca1d435b9277cdd426ec9351.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947000;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_9209d15e06680d9a7d6fcc46.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_b29507fcaadf731b78263bb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.514000;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_24decc670b1875aa30ea6fa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_977e8c367cb569d3a4d26271.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692000;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_06cd1cfe87a21758b257c755.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_b38b423c2040b3bb55973341.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717000;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_b4a1c23f2bd4f0e5a7474696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.305556,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.305556,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.305556,0.250000,0.000000,0,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);}
.m5{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.980200px;}
.lsb{letter-spacing:-3.130498px;}
.lsa{letter-spacing:-2.296536px;}
.ls3{letter-spacing:-2.025334px;}
.ls4{letter-spacing:-0.748051px;}
.ls10{letter-spacing:-0.732784px;}
.ls14{letter-spacing:-0.664535px;}
.ls12{letter-spacing:-0.648670px;}
.ls7{letter-spacing:-0.493612px;}
.ls11{letter-spacing:-0.490618px;}
.ls16{letter-spacing:-0.440030px;}
.lsf{letter-spacing:-0.319396px;}
.ls5{letter-spacing:-0.316103px;}
.lse{letter-spacing:-0.239173px;}
.ls15{letter-spacing:-0.220015px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003600px;}
.ls9{letter-spacing:8.029496px;}
.ls13{letter-spacing:8.607522px;}
.ls8{letter-spacing:9.047851px;}
.ls6{letter-spacing:9.999453px;}
.lsc{letter-spacing:10.732237px;}
.ls0{letter-spacing:12.808459px;}
.ls1{letter-spacing:23.946548px;}
.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;}
}
.ws81{word-spacing:-28.857573px;}
.ws2f{word-spacing:-25.291237px;}
.ws41{word-spacing:-24.797625px;}
.ws95{word-spacing:-22.315797px;}
.wsac{word-spacing:-21.875767px;}
.ws4a{word-spacing:-20.953800px;}
.ws1e{word-spacing:-20.828077px;}
.ws4d{word-spacing:-18.657264px;}
.ws51{word-spacing:-17.697579px;}
.ws2d{word-spacing:-16.513091px;}
.ws84{word-spacing:-16.462203px;}
.ws60{word-spacing:-16.446937px;}
.ws6{word-spacing:-16.431671px;}
.ws7{word-spacing:-16.411316px;}
.ws32{word-spacing:-16.364918px;}
.ws71{word-spacing:-16.309540px;}
.ws8f{word-spacing:-16.294274px;}
.ws13{word-spacing:-16.243386px;}
.ws54{word-spacing:-16.223031px;}
.ws3b{word-spacing:-16.156877px;}
.ws72{word-spacing:-16.141610px;}
.ws5e{word-spacing:-16.121255px;}
.ws8a{word-spacing:-16.070367px;}
.ws2b{word-spacing:-16.048815px;}
.ws85{word-spacing:-16.045522px;}
.ws8b{word-spacing:-16.039835px;}
.ws87{word-spacing:-15.983858px;}
.ws5c{word-spacing:-15.953325px;}
.ws17{word-spacing:-15.902437px;}
.ws33{word-spacing:-15.887171px;}
.ws55{word-spacing:-15.836283px;}
.ws40{word-spacing:-15.815928px;}
.ws3c{word-spacing:-15.800662px;}
.ws3e{word-spacing:-15.785396px;}
.wsa{word-spacing:-15.765040px;}
.ws10{word-spacing:-15.749774px;}
.ws43{word-spacing:-15.698886px;}
.ws1b{word-spacing:-15.683620px;}
.ws59{word-spacing:-15.597111px;}
.ws61{word-spacing:-15.581844px;}
.ws62{word-spacing:-15.576756px;}
.ws3f{word-spacing:-15.561489px;}
.ws73{word-spacing:-15.546223px;}
.wse{word-spacing:-15.530957px;}
.ws8{word-spacing:-15.525868px;}
.ws91{word-spacing:-15.510601px;}
.ws5f{word-spacing:-15.495335px;}
.wsb{word-spacing:-15.444447px;}
.ws2e{word-spacing:-15.408826px;}
.ws22{word-spacing:-15.369313px;}
.ws75{word-spacing:-15.322317px;}
.ws12{word-spacing:-15.307050px;}
.ws36{word-spacing:-15.291784px;}
.wsd{word-spacing:-15.271429px;}
.ws90{word-spacing:-15.240896px;}
.ws24{word-spacing:-15.216051px;}
.ws42{word-spacing:-15.205275px;}
.ws58{word-spacing:-15.154387px;}
.ws2c{word-spacing:-15.103499px;}
.ws57{word-spacing:-15.088233px;}
.ws18{word-spacing:-15.052611px;}
.ws83{word-spacing:-15.047522px;}
.ws31{word-spacing:-15.037345px;}
.ws44{word-spacing:-14.950836px;}
.ws5b{word-spacing:-14.899948px;}
.ws30{word-spacing:-14.849060px;}
.ws89{word-spacing:-14.828705px;}
.ws88{word-spacing:-14.777817px;}
.ws8e{word-spacing:-14.747284px;}
.ws19{word-spacing:-14.711663px;}
.ws48{word-spacing:-14.676042px;}
.ws21{word-spacing:-14.617371px;}
.ws11{word-spacing:-14.609887px;}
.ws9d{word-spacing:-14.574865px;}
.ws56{word-spacing:-14.574266px;}
.wsc{word-spacing:-14.559000px;}
.ws99{word-spacing:-14.170756px;}
.ws16{word-spacing:-14.029766px;}
.ws93{word-spacing:-13.982171px;}
.wsa2{word-spacing:-13.847468px;}
.ws9b{word-spacing:-13.829508px;}
.wsb3{word-spacing:-13.775627px;}
.ws97{word-spacing:-13.762157px;}
.ws3{word-spacing:-13.708275px;}
.ws23{word-spacing:-13.702588px;}
.ws39{word-spacing:-13.658884px;}
.wsb0{word-spacing:-13.622963px;}
.ws6b{word-spacing:-13.615779px;}
.ws50{word-spacing:-13.599016px;}
.ws76{word-spacing:-13.515201px;}
.ws9e{word-spacing:-13.438869px;}
.wsa9{word-spacing:-13.371518px;}
.ws77{word-spacing:-13.037454px;}
.wsab{word-spacing:-12.926998px;}
.ws80{word-spacing:-12.920113px;}
.wsa4{word-spacing:-12.909037px;}
.ws28{word-spacing:-12.886587px;}
.ws9c{word-spacing:-12.859646px;}
.ws52{word-spacing:-12.802772px;}
.ws1d{word-spacing:-12.798581px;}
.ws6d{word-spacing:-12.580662px;}
.ws6c{word-spacing:-12.392077px;}
.ws6e{word-spacing:-12.169967px;}
.ws4b{word-spacing:-11.905949px;}
.wsae{word-spacing:-11.786512px;}
.ws70{word-spacing:-11.475199px;}
.ws14{word-spacing:-10.503242px;}
.ws4c{word-spacing:-9.353776px;}
.ws4f{word-spacing:-9.052042px;}
.wsa6{word-spacing:-8.652423px;}
.ws15{word-spacing:-8.432108px;}
.ws67{word-spacing:-8.424000px;}
.ws4{word-spacing:-0.065854px;}
.ws34{word-spacing:-0.056875px;}
.ws3d{word-spacing:-0.050888px;}
.wsa5{word-spacing:-0.044901px;}
.ws78{word-spacing:-0.041908px;}
.ws6a{word-spacing:-0.036000px;}
.ws4e{word-spacing:-0.004191px;}
.ws7d{word-spacing:-0.003900px;}
.ws2a{word-spacing:0.000000px;}
.wsa8{word-spacing:0.175114px;}
.wsad{word-spacing:0.395129px;}
.wsa7{word-spacing:0.619634px;}
.ws26{word-spacing:7.898086px;}
.ws27{word-spacing:7.899583px;}
.ws1c{word-spacing:7.987589px;}
.ws98{word-spacing:8.100140px;}
.ws49{word-spacing:8.203413px;}
.ws92{word-spacing:8.288725px;}
.wsa1{word-spacing:8.423428px;}
.ws9a{word-spacing:8.441388px;}
.wsb2{word-spacing:8.486289px;}
.wsb4{word-spacing:8.490779px;}
.ws96{word-spacing:8.508740px;}
.wsa3{word-spacing:8.553641px;}
.ws9f{word-spacing:8.558131px;}
.ws94{word-spacing:8.562621px;}
.ws37{word-spacing:8.605127px;}
.wsb1{word-spacing:8.643442px;}
.ws86{word-spacing:8.778146px;}
.ws0{word-spacing:8.946075px;}
.ws5d{word-spacing:9.287023px;}
.ws74{word-spacing:9.353178px;}
.ws1f{word-spacing:9.472315px;}
.ws9{word-spacing:9.475308px;}
.wsf{word-spacing:9.490575px;}
.ws1a{word-spacing:9.556729px;}
.ws5a{word-spacing:9.643238px;}
.ws63{word-spacing:9.663593px;}
.ws47{word-spacing:9.795901px;}
.ws35{word-spacing:9.992867px;}
.wsaf{word-spacing:10.484383px;}
.ws2{word-spacing:19.720409px;}
.ws20{word-spacing:20.446119px;}
.ws25{word-spacing:20.450909px;}
.ws1{word-spacing:21.718913px;}
.ws5{word-spacing:21.724002px;}
.ws7f{word-spacing:31.564804px;}
.ws7e{word-spacing:31.581567px;}
.ws66{word-spacing:184.632000px;}
.ws79{word-spacing:210.711413px;}
.ws7b{word-spacing:267.919478px;}
.ws7a{word-spacing:290.968658px;}
.ws68{word-spacing:462.252000px;}
.ws64{word-spacing:543.807218px;}
.ws38{word-spacing:543.812307px;}
.ws45{word-spacing:543.816610px;}
.ws8c{word-spacing:543.821613px;}
.wsa0{word-spacing:934.761590px;}
.wsb5{word-spacing:940.054520px;}
.wsaa{word-spacing:947.690085px;}
.ws6f{word-spacing:950.937924px;}
.ws82{word-spacing:951.021739px;}
.ws8d{word-spacing:951.344428px;}
.ws53{word-spacing:951.688070px;}
.ws3a{word-spacing:954.034896px;}
.ws65{word-spacing:954.324058px;}
.ws46{word-spacing:954.374347px;}
.ws7c{word-spacing:957.383313px;}
.ws69{word-spacing:1017.479400px;}
.ws29{word-spacing:1021.539658px;}
._44{margin-left:-9.052042px;}
._42{margin-left:-8.029496px;}
._2{margin-left:-4.849281px;}
._4{margin-left:-2.981426px;}
._0{margin-left:-1.496101px;}
._3{width:1.066842px;}
._9{width:2.490215px;}
._24{width:3.569624px;}
._25{width:9.965627px;}
._2f{width:10.971410px;}
._7{width:12.075675px;}
._5{width:13.209276px;}
._8{width:14.833794px;}
._43{width:19.082925px;}
._1{width:21.271100px;}
._6{width:22.278679px;}
._a{width:36.262048px;}
._b{width:71.688637px;}
._3b{width:97.845864px;}
._3c{width:99.605984px;}
._14{width:105.586198px;}
._3a{width:116.205584px;}
._39{width:118.569173px;}
._38{width:120.895044px;}
._1f{width:129.293328px;}
._29{width:139.366800px;}
._36{width:143.261131px;}
._f{width:152.342508px;}
._2e{width:154.162800px;}
._27{width:159.166800px;}
._28{width:166.982400px;}
._21{width:167.999187px;}
._30{width:173.588400px;}
._15{width:175.894579px;}
._35{width:182.499216px;}
._41{width:184.288671px;}
._22{width:186.845035px;}
._13{width:191.048367px;}
._37{width:196.806471px;}
._19{width:198.943759px;}
._1c{width:202.656772px;}
._10{width:210.552164px;}
._17{width:214.097547px;}
._e{width:221.502620px;}
._23{width:224.356527px;}
._d{width:225.705952px;}
._20{width:229.770989px;}
._18{width:232.943395px;}
._11{width:236.622882px;}
._1d{width:244.551800px;}
._1a{width:248.063657px;}
._12{width:252.820169px;}
._1e{width:259.672062px;}
._c{width:264.428574px;}
._16{width:275.869349px;}
._1b{width:287.477754px;}
._40{width:341.488269px;}
._3f{width:358.087870px;}
._3e{width:360.451458px;}
._31{width:361.939178px;}
._3d{width:438.223582px;}
._2d{width:460.321200px;}
._26{width:464.023200px;}
._32{width:513.514777px;}
._2c{width:531.640800px;}
._2a{width:801.284400px;}
._2b{width:985.003200px;}
._33{width:1012.818686px;}
._34{width:1095.141975px;}
.fc3{color:rgb(191,25,49);}
.fc2{color:rgb(78,109,188);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(236,7,114);}
.fsb{font-size:26.940600px;}
.fs4{font-size:32.927400px;}
.fse{font-size:35.100000px;}
.fsc{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs5{font-size:41.907600px;}
.fs2{font-size:44.901000px;}
.fs7{font-size:47.894400px;}
.fs9{font-size:48.000000px;}
.fs0{font-size:50.887800px;}
.fs6{font-size:53.881200px;}
.fsa{font-size:56.874600px;}
.fs3{font-size:65.854200px;}
.fs8{font-size:95.788200px;}
.fs1{font-size:107.761800px;}
.y0{bottom:0.000000px;}
.y42{bottom:2.604000px;}
.y41{bottom:3.000000px;}
.y83{bottom:74.834550px;}
.y40{bottom:74.834700px;}
.y3f{bottom:101.775150px;}
.y1c4{bottom:110.380801px;}
.yff{bottom:110.381100px;}
.yfe{bottom:114.497100px;}
.y1c2{bottom:114.866223px;}
.y1ba{bottom:114.871200px;}
.y22f{bottom:115.607047px;}
.y266{bottom:116.343045px;}
.y130{bottom:116.742448px;}
.y1c5{bottom:117.864600px;}
.y203{bottom:120.484049px;}
.y1c3{bottom:125.348100px;}
.yfd{bottom:129.087753px;}
.y1b9{bottom:129.089850px;}
.y81{bottom:129.464099px;}
.y265{bottom:132.807119px;}
.y108{bottom:132.831450px;}
.y1b8{bottom:133.205700px;}
.y296{bottom:135.817887px;}
.yba{bottom:136.199398px;}
.y22e{bottom:136.561221px;}
.y2a{bottom:136.947450px;}
.y202{bottom:139.940999px;}
.yfc{bottom:144.055053px;}
.y1b7{bottom:147.798450px;}
.y80{bottom:148.921049px;}
.y107{bottom:151.540200px;}
.y1b6{bottom:151.914300px;}
.y295{bottom:152.281962px;}
.y264{bottom:153.761293px;}
.y106{bottom:155.656050px;}
.yb9{bottom:155.656348px;}
.y22d{bottom:157.515396px;}
.yfb{bottom:159.022352px;}
.y201{bottom:159.397949px;}
.y1b5{bottom:166.506751px;}
.y7f{bottom:168.377999px;}
.y294{bottom:168.746036px;}
.y263{bottom:170.225367px;}
.y105{bottom:170.248800px;}
.y104{bottom:174.364650px;}
.y29{bottom:174.364800px;}
.yb8{bottom:175.113298px;}
.yfa{bottom:177.730952px;}
.y22c{bottom:178.469570px;}
.y200{bottom:178.854900px;}
.y1b2{bottom:181.473601px;}
.y1b4{bottom:181.474050px;}
.y293{bottom:185.210110px;}
.y1b3{bottom:185.589900px;}
.y262{bottom:186.689441px;}
.y1bb{bottom:187.083233px;}
.y7e{bottom:187.834950px;}
.y103{bottom:188.957400px;}
.yf9{bottom:192.698252px;}
.y102{bottom:193.073400px;}
.y28{bottom:193.821750px;}
.yb7{bottom:194.570249px;}
.y22b{bottom:194.933644px;}
.y1b1{bottom:196.440900px;}
.y1fe{bottom:198.311850px;}
.y1b0{bottom:200.556900px;}
.y292{bottom:201.674184px;}
.y1ff{bottom:203.550300px;}
.y7d{bottom:207.291900px;}
.y261{bottom:207.643615px;}
.yf8{bottom:207.665551px;}
.y101{bottom:207.666150px;}
.y100{bottom:211.782000px;}
.y174{bottom:212.477853px;}
.yb6{bottom:214.027199px;}
.y1af{bottom:215.149350px;}
.y22a{bottom:215.887818px;}
.y1fd{bottom:217.768800px;}
.y291{bottom:218.138258px;}
.y260{bottom:224.107690px;}
.y7c{bottom:226.000650px;}
.y178{bottom:227.444104px;}
.y173{bottom:227.445152px;}
.yf6{bottom:229.368823px;}
.y27{bottom:232.736098px;}
.yb5{bottom:233.484149px;}
.y290{bottom:234.602332px;}
.y229{bottom:236.841992px;}
.y1fb{bottom:237.226497px;}
.y1ac{bottom:238.348200px;}
.y1ae{bottom:238.348350px;}
.y25f{bottom:240.571764px;}
.yf7{bottom:240.593400px;}
.yf5{bottom:240.593774px;}
.y177{bottom:242.411404px;}
.y172{bottom:242.412451px;}
.y1ad{bottom:242.464200px;}
.y1fc{bottom:242.464350px;}
.y26{bottom:252.193048px;}
.yb4{bottom:252.941100px;}
.y228{bottom:253.306066px;}
.y1a9{bottom:256.308450px;}
.y1ab{bottom:256.308750px;}
.yf2{bottom:256.683373px;}
.y1fa{bottom:256.683447px;}
.y176{bottom:257.378703px;}
.y171{bottom:257.379751px;}
.y1aa{bottom:260.424600px;}
.yf3{bottom:260.798700px;}
.y25e{bottom:261.525938px;}
.y7b{bottom:265.663348px;}
.yf4{bottom:267.908100px;}
.yf1{bottom:267.908324px;}
.y28f{bottom:269.026807px;}
.y12f{bottom:271.649850px;}
.y25{bottom:271.649999px;}
.y175{bottom:272.346002px;}
.y170{bottom:272.347050px;}
.yb3{bottom:272.398050px;}
.yb1{bottom:272.398348px;}
.y227{bottom:274.260241px;}
.y1a7{bottom:274.269000px;}
.y1f9{bottom:276.140397px;}
.yb2{bottom:277.636500px;}
.y25d{bottom:277.990012px;}
.y1a8{bottom:278.384850px;}
.yee{bottom:283.998073px;}
.y7a{bottom:285.120299px;}
.y28e{bottom:285.490881px;}
.yef{bottom:288.113400px;}
.y1a3{bottom:290.358450px;}
.y24{bottom:291.106949px;}
.yb0{bottom:291.855299px;}
.y1a6{bottom:294.474300px;}
.y226{bottom:295.214415px;}
.yf0{bottom:295.222650px;}
.yed{bottom:295.223024px;}
.y1f8{bottom:295.597348px;}
.y25c{bottom:298.944186px;}
.y161{bottom:304.547250px;}
.y79{bottom:304.577249px;}
.y28d{bottom:306.445055px;}
.y1a4{bottom:308.319000px;}
.y23{bottom:310.563899px;}
.yaf{bottom:311.312249px;}
.yea{bottom:311.312623px;}
.y12e{bottom:311.313443px;}
.y225{bottom:311.678489px;}
.y1a5{bottom:312.434700px;}
.y1f7{bottom:315.054298px;}
.y25b{bottom:315.408260px;}
.yeb{bottom:315.427950px;}
.y160{bottom:319.445400px;}
.yec{bottom:322.537350px;}
.ye9{bottom:322.537574px;}
.y28c{bottom:322.909129px;}
.y78{bottom:324.034199px;}
.y157{bottom:328.833750px;}
.y22{bottom:330.020850px;}
.yae{bottom:330.769199px;}
.y12d{bottom:330.770393px;}
.y1a2{bottom:331.666574px;}
.y25a{bottom:331.872335px;}
.y224{bottom:332.632663px;}
.y1f6{bottom:334.511248px;}
.ye6{bottom:338.627323px;}
.y28b{bottom:339.373203px;}
.ye7{bottom:342.742650px;}
.y77{bottom:343.491150px;}
.y1a1{bottom:346.633200px;}
.y223{bottom:349.096737px;}
.y20{bottom:349.477800px;}
.ye8{bottom:349.851900px;}
.ye5{bottom:349.852274px;}
.yad{bottom:350.226150px;}
.y12c{bottom:350.227343px;}
.y259{bottom:352.826509px;}
.y1f5{bottom:353.968199px;}
.y21{bottom:354.716100px;}
.y15f{bottom:355.365750px;}
.y28a{bottom:360.327377px;}
.y75{bottom:362.948099px;}
.y222{bottom:365.560812px;}
.ye2{bottom:365.942023px;}
.y165{bottom:367.998750px;}
.y76{bottom:368.186550px;}
.y1f{bottom:368.934750px;}
.y1d{bottom:368.935048px;}
.y258{bottom:369.290583px;}
.yac{bottom:369.683100px;}
.yaa{bottom:369.683250px;}
.y12b{bottom:369.684294px;}
.ye3{bottom:370.057350px;}
.y1f4{bottom:373.425149px;}
.y1e{bottom:374.173200px;}
.yab{bottom:374.921550px;}
.y167{bottom:375.263250px;}
.y289{bottom:376.791452px;}
.ye4{bottom:377.166600px;}
.ye1{bottom:377.166974px;}
.y15e{bottom:381.896250px;}
.y221{bottom:382.024886px;}
.y74{bottom:382.405050px;}
.y257{bottom:385.754657px;}
.y1c{bottom:388.391999px;}
.ya9{bottom:389.140200px;}
.y12a{bottom:389.141244px;}
.y15a{bottom:391.871400px;}
.y1f3{bottom:392.882099px;}
.y288{bottom:393.255526px;}
.yde{bottom:393.256723px;}
.y187{bottom:396.690000px;}
.y190{bottom:396.690300px;}
.y1a0{bottom:396.768757px;}
.ydf{bottom:397.371900px;}
.y220{bottom:398.488960px;}
.y73{bottom:401.862000px;}
.ye0{bottom:404.481300px;}
.ydd{bottom:404.481674px;}
.y186{bottom:406.078800px;}
.y256{bottom:406.708831px;}
.y1bc{bottom:407.715900px;}
.ya8{bottom:407.848800px;}
.y1b{bottom:407.848949px;}
.y15d{bottom:408.426750px;}
.y129{bottom:408.598194px;}
.y19f{bottom:411.736056px;}
.y1f2{bottom:412.339050px;}
.y287{bottom:414.192706px;}
.y21f{bottom:414.953034px;}
.y72{bottom:420.570750px;}
.y166{bottom:421.692750px;}
.y255{bottom:423.172906px;}
.ydb{bottom:424.686600px;}
.y19e{bottom:426.703355px;}
.y1a{bottom:427.305899px;}
.y128{bottom:428.055145px;}
.y286{bottom:430.656780px;}
.y21e{bottom:431.417108px;}
.yda{bottom:431.795700px;}
.ydc{bottom:431.796000px;}
.y18f{bottom:432.555300px;}
.y15c{bottom:434.958750px;}
.y1f1{bottom:437.034300px;}
.y19d{bottom:441.670655px;}
.y254{bottom:444.127080px;}
.y19{bottom:446.762850px;}
.ya7{bottom:447.511200px;}
.y127{bottom:447.512095px;}
.y21d{bottom:447.881182px;}
.yd7{bottom:449.755950px;}
.yd9{bottom:449.756250px;}
.y1f0{bottom:451.252950px;}
.y285{bottom:451.610954px;}
.yd8{bottom:453.872100px;}
.y19c{bottom:456.637954px;}
.y18a{bottom:456.807000px;}
.y18e{bottom:459.032850px;}
.y1bd{bottom:459.722850px;}
.y71{bottom:460.233299px;}
.y253{bottom:460.591154px;}
.y15b{bottom:461.489250px;}
.y21c{bottom:464.345257px;}
.y18{bottom:466.219800px;}
.ya6{bottom:466.968150px;}
.ya4{bottom:466.968448px;}
.y126{bottom:466.969045px;}
.yd4{bottom:467.716200px;}
.yd6{bottom:467.716500px;}
.y284{bottom:468.075028px;}
.y164{bottom:468.122250px;}
.y1ef{bottom:470.709900px;}
.y1ed{bottom:470.710050px;}
.y19b{bottom:471.605253px;}
.yd5{bottom:471.832500px;}
.ya5{bottom:472.206600px;}
.y1ee{bottom:475.948350px;}
.y3e{bottom:479.315551px;}
.y70{bottom:479.690249px;}
.y21b{bottom:480.809331px;}
.y252{bottom:481.545328px;}
.y18d{bottom:485.509800px;}
.yd3{bottom:485.676750px;}
.yd1{bottom:485.676975px;}
.ya3{bottom:486.425398px;}
.y125{bottom:486.425996px;}
.y19a{bottom:486.572553px;}
.y159{bottom:488.021250px;}
.y283{bottom:489.029202px;}
.yd2{bottom:489.792750px;}
.y1eb{bottom:490.167000px;}
.y3d{bottom:494.282850px;}
.y1ec{bottom:495.405300px;}
.y251{bottom:498.009402px;}
.y6f{bottom:499.147200px;}
.y16a{bottom:501.242550px;}
.y199{bottom:501.539852px;}
.y21a{bottom:501.763505px;}
.ycd{bottom:501.766350px;}
.y17{bottom:505.134149px;}
.y282{bottom:505.493276px;}
.ya2{bottom:505.882349px;}
.y124{bottom:505.882946px;}
.y1e9{bottom:509.623950px;}
.y18c{bottom:511.986150px;}
.yce{bottom:512.991301px;}
.y158{bottom:514.551750px;}
.y1ea{bottom:514.862400px;}
.y198{bottom:516.507151px;}
.y3c{bottom:517.107450px;}
.y219{bottom:518.227579px;}
.y6d{bottom:518.604150px;}
.y250{bottom:518.963576px;}
.y281{bottom:521.957351px;}
.y6e{bottom:523.842600px;}
.y16{bottom:524.591099px;}
.ya1{bottom:525.339299px;}
.y123{bottom:525.339896px;}
.ycf{bottom:529.080676px;}
.y1e8{bottom:529.080900px;}
.y1e6{bottom:529.081198px;}
.y195{bottom:529.143150px;}
.y197{bottom:531.474451px;}
.y162{bottom:533.163750px;}
.y168{bottom:533.164275px;}
.yd0{bottom:533.196900px;}
.y163{bottom:533.489250px;}
.y1e7{bottom:534.319350px;}
.y24f{bottom:535.427651px;}
.y18b{bottom:538.462500px;}
.y218{bottom:539.181753px;}
.y194{bottom:540.267150px;}
.y280{bottom:542.911525px;}
.y15{bottom:544.048049px;}
.ya0{bottom:544.796249px;}
.y122{bottom:544.796847px;}
.y3b{bottom:545.544600px;}
.y6c{bottom:546.292950px;}
.y196{bottom:546.441750px;}
.y1e5{bottom:548.538149px;}
.y193{bottom:551.353050px;}
.y24e{bottom:551.891725px;}
.ycc{bottom:552.428550px;}
.y217{bottom:555.645827px;}
.y27f{bottom:559.375599px;}
.y192{bottom:562.540050px;}
.y14{bottom:563.505000px;}
.y9f{bottom:564.253200px;}
.y121{bottom:564.253797px;}
.y189{bottom:564.939450px;}
.y14a{bottom:565.545750px;}
.y1e4{bottom:567.995099px;}
.y24d{bottom:568.355799px;}
.y191{bottom:573.754950px;}
.y216{bottom:576.600002px;}
.y27e{bottom:580.329773px;}
.y149{bottom:580.443750px;}
.y13{bottom:582.961950px;}
.y9e{bottom:583.710150px;}
.y9c{bottom:583.710300px;}
.y120{bottom:583.710747px;}
.y24c{bottom:584.819873px;}
.y1e3{bottom:587.452049px;}
.y9d{bottom:588.948600px;}
.y142{bottom:589.833750px;}
.y188{bottom:591.415800px;}
.y6b{bottom:592.690499px;}
.y3a{bottom:595.682400px;}
.y27d{bottom:596.793847px;}
.y215{bottom:597.554176px;}
.y9b{bottom:603.167250px;}
.y11f{bottom:603.167698px;}
.y24b{bottom:605.774047px;}
.y1e2{bottom:606.909000px;}
.ycb{bottom:606.909596px;}
.y156{bottom:608.406750px;}
.y6a{bottom:612.147449px;}
.y27c{bottom:613.257921px;}
.y214{bottom:614.018250px;}
.y39{bottom:615.139500px;}
.y185{bottom:616.463474px;}
.y1c6{bottom:620.755800px;}
.y9a{bottom:621.875850px;}
.y12{bottom:621.876298px;}
.y24a{bottom:622.238121px;}
.y11e{bottom:622.624648px;}
.y1e1{bottom:626.365950px;}
.yca{bottom:626.366547px;}
.y155{bottom:626.978250px;}
.y148{bottom:627.282750px;}
.y184{bottom:631.430100px;}
.y69{bottom:631.604400px;}
.y27b{bottom:634.212096px;}
.y38{bottom:634.596600px;}
.y14e{bottom:639.554250px;}
.y11{bottom:641.333248px;}
.y11d{bottom:642.081598px;}
.y249{bottom:643.192296px;}
.y154{bottom:645.549750px;}
.y1e0{bottom:645.822900px;}
.y1df{bottom:645.823049px;}
.yc9{bottom:645.823497px;}
.y27a{bottom:650.676170px;}
.y68{bottom:651.061350px;}
.y66{bottom:651.061500px;}
.y67{bottom:656.299800px;}
.y145{bottom:659.541750px;}
.y248{bottom:659.656370px;}
.y10{bottom:660.790199px;}
.y11c{bottom:661.538549px;}
.y99{bottom:661.538846px;}
.y37{bottom:662.285550px;}
.y152{bottom:664.121250px;}
.y147{bottom:664.350750px;}
.y1de{bottom:665.280000px;}
.yc8{bottom:665.280447px;}
.y279{bottom:667.140244px;}
.y65{bottom:670.518450px;}
.y63{bottom:670.518599px;}
.y64{bottom:675.756750px;}
.yf{bottom:680.247149px;}
.y247{bottom:680.610544px;}
.y11b{bottom:680.995499px;}
.y98{bottom:680.995797px;}
.y36{bottom:681.742650px;}
.y153{bottom:682.694250px;}
.y1dc{bottom:684.736950px;}
.yc7{bottom:684.737398px;}
.y278{bottom:688.094418px;}
.y1dd{bottom:689.975400px;}
.y62{bottom:689.975549px;}
.y246{bottom:697.074618px;}
.ye{bottom:699.704099px;}
.y11a{bottom:700.452449px;}
.y97{bottom:700.452747px;}
.y183{bottom:700.453493px;}
.y35{bottom:701.199750px;}
.y151{bottom:701.264250px;}
.y146{bottom:701.418750px;}
.y1db{bottom:704.193900px;}
.y1da{bottom:704.194049px;}
.yc6{bottom:704.194348px;}
.y277{bottom:704.558492px;}
.y1be{bottom:704.856150px;}
.y61{bottom:709.432500px;}
.y245{bottom:713.538692px;}
.yd{bottom:719.161050px;}
.y150{bottom:719.835750px;}
.y119{bottom:719.909400px;}
.y96{bottom:719.909697px;}
.y182{bottom:719.910444px;}
.y34{bottom:720.656850px;}
.y1d9{bottom:723.651000px;}
.yc5{bottom:723.651298px;}
.y276{bottom:725.512667px;}
.y60{bottom:728.889450px;}
.y5e{bottom:728.889599px;}
.y213{bottom:731.882850px;}
.y5f{bottom:734.127900px;}
.y14f{bottom:738.408750px;}
.y144{bottom:738.485250px;}
.yc{bottom:738.618000px;}
.y118{bottom:739.366350px;}
.y95{bottom:739.366648px;}
.y181{bottom:739.367394px;}
.y33{bottom:740.113950px;}
.y275{bottom:741.976741px;}
.y1d8{bottom:743.107950px;}
.y1d6{bottom:743.108099px;}
.yc4{bottom:743.108249px;}
.y244{bottom:743.473067px;}
.y1d7{bottom:748.346400px;}
.y5d{bottom:748.346550px;}
.y1bf{bottom:752.122200px;}
.y14d{bottom:756.981750px;}
.y117{bottom:758.074950px;}
.y274{bottom:758.440815px;}
.y94{bottom:758.823598px;}
.y180{bottom:758.824344px;}
.y32{bottom:759.571050px;}
.y243{bottom:759.937141px;}
.y1d5{bottom:762.565050px;}
.yc3{bottom:762.565199px;}
.y5b{bottom:767.803499px;}
.y5c{bottom:773.041800px;}
.y143{bottom:775.551750px;}
.y242{bottom:776.401215px;}
.yb{bottom:777.532050px;}
.y93{bottom:778.280548px;}
.y212{bottom:778.280847px;}
.y17f{bottom:778.281295px;}
.y31{bottom:779.028150px;}
.y273{bottom:779.394989px;}
.y1d4{bottom:782.022000px;}
.yc2{bottom:782.022149px;}
.y1d3{bottom:782.022596px;}
.y5a{bottom:787.260450px;}
.y241{bottom:792.865289px;}
.y14b{bottom:794.163750px;}
.y14c{bottom:794.489250px;}
.y272{bottom:795.859063px;}
.ya{bottom:796.989000px;}
.y92{bottom:797.737499px;}
.y211{bottom:797.737797px;}
.y116{bottom:797.737946px;}
.y17e{bottom:797.738245px;}
.y30{bottom:798.485250px;}
.yc1{bottom:801.479100px;}
.y1d2{bottom:801.479547px;}
.y59{bottom:806.717400px;}
.y271{bottom:812.323137px;}
.y240{bottom:813.819463px;}
.y91{bottom:817.194449px;}
.y210{bottom:817.194748px;}
.y115{bottom:817.194897px;}
.y17d{bottom:817.195195px;}
.yc0{bottom:820.936050px;}
.y1d1{bottom:820.936497px;}
.y2f{bottom:826.174200px;}
.y57{bottom:826.174500px;}
.y13a{bottom:826.545750px;}
.y23f{bottom:830.283537px;}
.y58{bottom:831.412950px;}
.y270{bottom:833.277312px;}
.y9{bottom:835.903049px;}
.y90{bottom:836.651399px;}
.y20f{bottom:836.651698px;}
.y114{bottom:836.651847px;}
.y17c{bottom:836.652146px;}
.y1d0{bottom:840.393447px;}
.y139{bottom:841.443750px;}
.y2e{bottom:845.631300px;}
.y56{bottom:845.631450px;}
.y54{bottom:845.631599px;}
.y23e{bottom:846.747612px;}
.ybf{bottom:848.624850px;}
.y26f{bottom:849.741386px;}
.y132{bottom:850.832250px;}
.y55{bottom:850.869900px;}
.y8{bottom:855.360000px;}
.y8f{bottom:856.108350px;}
.y20e{bottom:856.108648px;}
.y113{bottom:856.108797px;}
.y17b{bottom:856.109096px;}
.y1cf{bottom:859.850398px;}
.y2d{bottom:865.088400px;}
.y53{bottom:865.088550px;}
.y141{bottom:865.323750px;}
.y23d{bottom:867.701786px;}
.y26e{bottom:870.695560px;}
.y7{bottom:874.816950px;}
.y8e{bottom:875.565300px;}
.y20d{bottom:875.565599px;}
.y112{bottom:875.565748px;}
.y17a{bottom:875.566046px;}
.y1ce{bottom:879.307348px;}
.y13e{bottom:882.231750px;}
.y135{bottom:884.034600px;}
.y23c{bottom:884.165860px;}
.y2c{bottom:884.545500px;}
.y26d{bottom:887.159634px;}
.y138{bottom:888.282750px;}
.y52{bottom:889.783950px;}
.y8d{bottom:894.273900px;}
.y20c{bottom:895.022549px;}
.y111{bottom:895.022698px;}
.ybd{bottom:895.022997px;}
.y1cd{bottom:898.764298px;}
.ybe{bottom:900.260700px;}
.y23b{bottom:900.629934px;}
.y51{bottom:904.002450px;}
.y2b{bottom:905.125050px;}
.y6{bottom:906.995850px;}
.y26c{bottom:908.113808px;}
.y140{bottom:908.130750px;}
.y20b{bottom:914.479499px;}
.y110{bottom:914.479648px;}
.ybc{bottom:914.479947px;}
.y23a{bottom:917.094008px;}
.y1cc{bottom:918.221249px;}
.y50{bottom:923.459400px;}
.y4e{bottom:923.459699px;}
.y26b{bottom:924.577882px;}
.y137{bottom:925.350150px;}
.y4f{bottom:928.698000px;}
.y239{bottom:933.558082px;}
.y20a{bottom:933.936450px;}
.y10f{bottom:933.936599px;}
.y8c{bottom:933.936897px;}
.y1cb{bottom:937.678199px;}
.y4d{bottom:942.916649px;}
.y26a{bottom:945.532057px;}
.y238{bottom:950.022157px;}
.y13f{bottom:950.938050px;}
.y209{bottom:953.393400px;}
.y10e{bottom:953.393549px;}
.y8b{bottom:953.393848px;}
.y1ca{bottom:957.135149px;}
.y5{bottom:961.251000px;}
.y269{bottom:961.996131px;}
.y4c{bottom:962.373600px;}
.y136{bottom:962.417400px;}
.y237{bottom:966.486231px;}
.y16f{bottom:971.892000px;}
.y208{bottom:972.102000px;}
.y10d{bottom:972.850499px;}
.y8a{bottom:972.850798px;}
.y1c9{bottom:976.592100px;}
.y4{bottom:976.966350px;}
.y268{bottom:978.460205px;}
.y4a{bottom:981.830549px;}
.y236{bottom:982.950305px;}
.y16e{bottom:983.016000px;}
.y4b{bottom:987.069000px;}
.y10c{bottom:992.307450px;}
.y89{bottom:992.307748px;}
.y13d{bottom:993.745200px;}
.y16d{bottom:994.101900px;}
.y1c8{bottom:996.049050px;}
.y1c0{bottom:997.247100px;}
.y235{bottom:999.414379px;}
.y134{bottom:999.484500px;}
.y49{bottom:1001.287500px;}
.y16c{bottom:1005.288900px;}
.y3{bottom:1007.649182px;}
.y10b{bottom:1011.764400px;}
.y88{bottom:1011.764699px;}
.y234{bottom:1015.878453px;}
.y16b{bottom:1016.503800px;}
.y48{bottom:1020.744450px;}
.y46{bottom:1020.744599px;}
.y169{bottom:1020.907050px;}
.y1c7{bottom:1023.737850px;}
.y47{bottom:1025.982900px;}
.y10a{bottom:1030.473150px;}
.y207{bottom:1031.221350px;}
.y87{bottom:1031.221649px;}
.y133{bottom:1036.551600px;}
.y233{bottom:1036.832627px;}
.y45{bottom:1040.201550px;}
.y2{bottom:1040.575800px;}
.y1c1{bottom:1044.508800px;}
.y206{bottom:1050.678450px;}
.y86{bottom:1050.678599px;}
.y232{bottom:1053.296702px;}
.y13b{bottom:1055.162400px;}
.y13c{bottom:1055.489100px;}
.y205{bottom:1055.916900px;}
.y44{bottom:1059.658500px;}
.y231{bottom:1069.760776px;}
.y1{bottom:1070.135400px;}
.y85{bottom:1070.135550px;}
.y267{bottom:1074.250876px;}
.y131{bottom:1082.483100px;}
.y43{bottom:1087.347300px;}
.y84{bottom:1089.592500px;}
.y230{bottom:1090.714950px;}
.y179{bottom:1094.830800px;}
.y109{bottom:1125.513000px;}
.y82{bottom:1125.517724px;}
.ybb{bottom:1125.518023px;}
.y204{bottom:1125.518099px;}
.he{height:19.909103px;}
.hf{height:20.151569px;}
.h5{height:24.629695px;}
.h12{height:24.745500px;}
.h10{height:26.604000px;}
.h11{height:28.821000px;}
.hd{height:30.969716px;}
.h6{height:31.346885px;}
.h3{height:33.585948px;}
.h13{height:33.653926px;}
.h8{height:35.825011px;}
.h1{height:38.064074px;}
.h7{height:40.303138px;}
.hc{height:42.542201px;}
.hb{height:48.375000px;}
.h4{height:49.258942px;}
.h9{height:71.649574px;}
.h2{height:80.605826px;}
.ha{height:1185.000000px;}
.h0{height:1188.000000px;}
.w1{width:903.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:15.000000px;}
.x1{left:71.841300px;}
.x2b{left:76.331250px;}
.x39{left:79.324650px;}
.x53{left:83.100450px;}
.xa{left:86.808150px;}
.x54{left:91.321950px;}
.x10{left:98.781051px;}
.x63{left:110.903401px;}
.x71{left:120.229500px;}
.x38{left:121.265550px;}
.x43{left:122.737800px;}
.x49{left:127.347450px;}
.x3e{left:129.201000px;}
.x1a{left:132.257250px;}
.x15{left:133.789200px;}
.x61{left:135.599550px;}
.x42{left:137.076000px;}
.x16{left:141.969600px;}
.x1b{left:144.532500px;}
.x62{left:146.824501px;}
.x35{left:148.220550px;}
.x34{left:152.799000px;}
.x37{left:154.278000px;}
.x3f{left:155.344350px;}
.x36{left:157.136400px;}
.x7c{left:158.642550px;}
.x64{left:162.914025px;}
.x7d{left:166.997250px;}
.x5e{left:173.922900px;}
.x6{left:180.336900px;}
.x20{left:181.904400px;}
.x80{left:184.091100px;}
.x65{left:185.363927px;}
.x7{left:188.558550px;}
.xe{left:189.591600px;}
.x21{left:193.158900px;}
.x1c{left:194.571300px;}
.x5d{left:195.617700px;}
.xf{left:196.974150px;}
.x75{left:204.441000px;}
.x1d{left:213.457200px;}
.x76{left:216.299250px;}
.x41{left:223.248600px;}
.x55{left:226.208700px;}
.x2c{left:228.705188px;}
.x58{left:231.048600px;}
.x18{left:235.365900px;}
.x19{left:243.526950px;}
.x22{left:248.679450px;}
.x23{left:257.082750px;}
.x66{left:259.825050px;}
.x77{left:267.012150px;}
.x67{left:275.914500px;}
.x40{left:284.179800px;}
.x5a{left:286.860365px;}
.x73{left:290.934600px;}
.x68{left:293.874750px;}
.xc{left:297.368400px;}
.x72{left:299.140950px;}
.x74{left:302.870700px;}
.xd{left:310.436250px;}
.x69{left:311.835300px;}
.x6a{left:323.060250px;}
.x57{left:324.154500px;}
.x78{left:331.895550px;}
.x6b{left:339.149700px;}
.x1e{left:342.206250px;}
.x79{left:344.494950px;}
.x1f{left:352.838250px;}
.x51{left:356.938950px;}
.x2{left:371.570100px;}
.x7a{left:373.099200px;}
.x6c{left:375.070350px;}
.x3{left:379.791750px;}
.x7b{left:385.194150px;}
.x56{left:390.344850px;}
.x13{left:395.284350px;}
.x28{left:398.556600px;}
.x14{left:402.430200px;}
.x29{left:409.198350px;}
.x6d{left:413.236050px;}
.x6e{left:417.351900px;}
.x26{left:424.021950px;}
.x7e{left:425.943600px;}
.x27{left:431.542050px;}
.x32{left:440.161370px;}
.x7f{left:449.925150px;}
.x5b{left:453.574800px;}
.x2d{left:462.500400px;}
.x3a{left:466.968150px;}
.x3b{left:474.451650px;}
.x50{left:475.738650px;}
.x4d{left:478.143150px;}
.x3c{left:479.836650px;}
.x48{left:482.248650px;}
.x3d{left:486.091050px;}
.x4e{left:487.281150px;}
.x4a{left:489.774150px;}
.x11{left:491.060850px;}
.x4c{left:492.652650px;}
.x44{left:494.724150px;}
.x47{left:496.465650px;}
.x12{left:499.066200px;}
.x4f{left:511.416300px;}
.x4b{left:512.916150px;}
.x4{left:515.405550px;}
.x6f{left:518.826300px;}
.x5{left:523.627050px;}
.x70{left:528.699900px;}
.x5c{left:536.581500px;}
.x2e{left:542.882850px;}
.x17{left:557.085000px;}
.x5f{left:558.713100px;}
.x24{left:562.271250px;}
.x60{left:564.967500px;}
.x25{left:570.432150px;}
.x2a{left:571.598550px;}
.x52{left:574.275150px;}
.x46{left:583.822650px;}
.x2f{left:595.395168px;}
.x59{left:610.650600px;}
.x9{left:628.611000px;}
.x8{left:637.591200px;}
.x45{left:644.752650px;}
.x30{left:657.646050px;}
.x33{left:689.613216px;}
.x31{left:796.113000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.982400pt;}
.lsb{letter-spacing:-2.782665pt;}
.lsa{letter-spacing:-2.041366pt;}
.ls3{letter-spacing:-1.800297pt;}
.ls4{letter-spacing:-0.664934pt;}
.ls10{letter-spacing:-0.651364pt;}
.ls14{letter-spacing:-0.590698pt;}
.ls12{letter-spacing:-0.576595pt;}
.ls7{letter-spacing:-0.438766pt;}
.ls11{letter-spacing:-0.436105pt;}
.ls16{letter-spacing:-0.391138pt;}
.lsf{letter-spacing:-0.283907pt;}
.ls5{letter-spacing:-0.280980pt;}
.lse{letter-spacing:-0.212598pt;}
.ls15{letter-spacing:-0.195569pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003200pt;}
.ls9{letter-spacing:7.137330pt;}
.ls13{letter-spacing:7.651130pt;}
.ls8{letter-spacing:8.042534pt;}
.ls6{letter-spacing:8.888402pt;}
.lsc{letter-spacing:9.539766pt;}
.ls0{letter-spacing:11.385297pt;}
.ls1{letter-spacing:21.285820pt;}
.ws81{word-spacing:-25.651176pt;}
.ws2f{word-spacing:-22.481099pt;}
.ws41{word-spacing:-22.042333pt;}
.ws95{word-spacing:-19.836264pt;}
.wsac{word-spacing:-19.445126pt;}
.ws4a{word-spacing:-18.625600pt;}
.ws1e{word-spacing:-18.513846pt;}
.ws4d{word-spacing:-16.584234pt;}
.ws51{word-spacing:-15.731182pt;}
.ws2d{word-spacing:-14.678303pt;}
.ws84{word-spacing:-14.633070pt;}
.ws60{word-spacing:-14.619500pt;}
.ws6{word-spacing:-14.605929pt;}
.ws7{word-spacing:-14.587836pt;}
.ws32{word-spacing:-14.546594pt;}
.ws71{word-spacing:-14.497369pt;}
.ws8f{word-spacing:-14.483799pt;}
.ws13{word-spacing:-14.438565pt;}
.ws54{word-spacing:-14.420472pt;}
.ws3b{word-spacing:-14.361668pt;}
.ws72{word-spacing:-14.348098pt;}
.ws5e{word-spacing:-14.330004pt;}
.ws8a{word-spacing:-14.284771pt;}
.ws2b{word-spacing:-14.265613pt;}
.ws85{word-spacing:-14.262686pt;}
.ws8b{word-spacing:-14.257631pt;}
.ws87{word-spacing:-14.207874pt;}
.ws5c{word-spacing:-14.180734pt;}
.ws17{word-spacing:-14.135500pt;}
.ws33{word-spacing:-14.121930pt;}
.ws55{word-spacing:-14.076696pt;}
.ws40{word-spacing:-14.058603pt;}
.ws3c{word-spacing:-14.045033pt;}
.ws3e{word-spacing:-14.031463pt;}
.wsa{word-spacing:-14.013369pt;}
.ws10{word-spacing:-13.999799pt;}
.ws43{word-spacing:-13.954566pt;}
.ws1b{word-spacing:-13.940996pt;}
.ws59{word-spacing:-13.864098pt;}
.ws61{word-spacing:-13.850528pt;}
.ws62{word-spacing:-13.846005pt;}
.ws3f{word-spacing:-13.832435pt;}
.ws73{word-spacing:-13.818865pt;}
.wse{word-spacing:-13.805295pt;}
.ws8{word-spacing:-13.800771pt;}
.ws91{word-spacing:-13.787201pt;}
.ws5f{word-spacing:-13.773631pt;}
.wsb{word-spacing:-13.728398pt;}
.ws2e{word-spacing:-13.696734pt;}
.ws22{word-spacing:-13.661612pt;}
.ws75{word-spacing:-13.619837pt;}
.ws12{word-spacing:-13.606267pt;}
.ws36{word-spacing:-13.592697pt;}
.wsd{word-spacing:-13.574603pt;}
.ws90{word-spacing:-13.547463pt;}
.ws24{word-spacing:-13.525379pt;}
.ws42{word-spacing:-13.515800pt;}
.ws58{word-spacing:-13.470566pt;}
.ws2c{word-spacing:-13.425332pt;}
.ws57{word-spacing:-13.411762pt;}
.ws18{word-spacing:-13.380099pt;}
.ws83{word-spacing:-13.375576pt;}
.ws31{word-spacing:-13.366529pt;}
.ws44{word-spacing:-13.289632pt;}
.ws5b{word-spacing:-13.244398pt;}
.ws30{word-spacing:-13.199164pt;}
.ws89{word-spacing:-13.181071pt;}
.ws88{word-spacing:-13.135837pt;}
.ws8e{word-spacing:-13.108697pt;}
.ws19{word-spacing:-13.077034pt;}
.ws48{word-spacing:-13.045370pt;}
.ws21{word-spacing:-12.993219pt;}
.ws11{word-spacing:-12.986567pt;}
.ws9d{word-spacing:-12.955435pt;}
.ws56{word-spacing:-12.954903pt;}
.wsc{word-spacing:-12.941333pt;}
.ws99{word-spacing:-12.596227pt;}
.ws16{word-spacing:-12.470904pt;}
.ws93{word-spacing:-12.428597pt;}
.wsa2{word-spacing:-12.308861pt;}
.ws9b{word-spacing:-12.292896pt;}
.wsb3{word-spacing:-12.245002pt;}
.ws97{word-spacing:-12.233028pt;}
.ws3{word-spacing:-12.185134pt;}
.ws23{word-spacing:-12.180078pt;}
.ws39{word-spacing:-12.141230pt;}
.wsb0{word-spacing:-12.109301pt;}
.ws6b{word-spacing:-12.102915pt;}
.ws50{word-spacing:-12.088014pt;}
.ws76{word-spacing:-12.013512pt;}
.ws9e{word-spacing:-11.945662pt;}
.wsa9{word-spacing:-11.885794pt;}
.ws77{word-spacing:-11.588848pt;}
.wsab{word-spacing:-11.490665pt;}
.ws80{word-spacing:-11.484545pt;}
.wsa4{word-spacing:-11.474700pt;}
.ws28{word-spacing:-11.454744pt;}
.ws9c{word-spacing:-11.430797pt;}
.ws52{word-spacing:-11.380242pt;}
.ws1d{word-spacing:-11.376516pt;}
.ws6d{word-spacing:-11.182810pt;}
.ws6c{word-spacing:-11.015180pt;}
.ws6e{word-spacing:-10.817748pt;}
.ws4b{word-spacing:-10.583066pt;}
.wsae{word-spacing:-10.476900pt;}
.ws70{word-spacing:-10.200177pt;}
.ws14{word-spacing:-9.336215pt;}
.ws4c{word-spacing:-8.314468pt;}
.ws4f{word-spacing:-8.046259pt;}
.wsa6{word-spacing:-7.691042pt;}
.ws15{word-spacing:-7.495208pt;}
.ws67{word-spacing:-7.488000pt;}
.ws4{word-spacing:-0.058537pt;}
.ws34{word-spacing:-0.050555pt;}
.ws3d{word-spacing:-0.045234pt;}
.wsa5{word-spacing:-0.039912pt;}
.ws78{word-spacing:-0.037251pt;}
.ws6a{word-spacing:-0.032000pt;}
.ws4e{word-spacing:-0.003725pt;}
.ws7d{word-spacing:-0.003467pt;}
.ws2a{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.155657pt;}
.wsad{word-spacing:0.351226pt;}
.wsa7{word-spacing:0.550786pt;}
.ws26{word-spacing:7.020521pt;}
.ws27{word-spacing:7.021851pt;}
.ws1c{word-spacing:7.100079pt;}
.ws98{word-spacing:7.200125pt;}
.ws49{word-spacing:7.291922pt;}
.ws92{word-spacing:7.367755pt;}
.wsa1{word-spacing:7.487491pt;}
.ws9a{word-spacing:7.503456pt;}
.wsb2{word-spacing:7.543368pt;}
.wsb4{word-spacing:7.547359pt;}
.ws96{word-spacing:7.563324pt;}
.wsa3{word-spacing:7.603236pt;}
.ws9f{word-spacing:7.607227pt;}
.ws94{word-spacing:7.611218pt;}
.ws37{word-spacing:7.649002pt;}
.wsb1{word-spacing:7.683060pt;}
.ws86{word-spacing:7.802796pt;}
.ws0{word-spacing:7.952067pt;}
.ws5d{word-spacing:8.255132pt;}
.ws74{word-spacing:8.313936pt;}
.ws1f{word-spacing:8.419836pt;}
.ws9{word-spacing:8.422496pt;}
.wsf{word-spacing:8.436066pt;}
.ws1a{word-spacing:8.494870pt;}
.ws5a{word-spacing:8.571767pt;}
.ws63{word-spacing:8.589861pt;}
.ws47{word-spacing:8.707468pt;}
.ws35{word-spacing:8.882549pt;}
.wsaf{word-spacing:9.319452pt;}
.ws2{word-spacing:17.529253pt;}
.ws20{word-spacing:18.174328pt;}
.ws25{word-spacing:18.178586pt;}
.ws1{word-spacing:19.305700pt;}
.ws5{word-spacing:19.310224pt;}
.ws7f{word-spacing:28.057604pt;}
.ws7e{word-spacing:28.072504pt;}
.ws66{word-spacing:164.117333pt;}
.ws79{word-spacing:187.299034pt;}
.ws7b{word-spacing:238.150647pt;}
.ws7a{word-spacing:258.638807pt;}
.ws68{word-spacing:410.890667pt;}
.ws64{word-spacing:483.384194pt;}
.ws38{word-spacing:483.388717pt;}
.ws45{word-spacing:483.392542pt;}
.ws8c{word-spacing:483.396989pt;}
.wsa0{word-spacing:830.899191pt;}
.wsb5{word-spacing:835.604018pt;}
.wsaa{word-spacing:842.391187pt;}
.ws6f{word-spacing:845.278155pt;}
.ws82{word-spacing:845.352657pt;}
.ws8d{word-spacing:845.639491pt;}
.ws53{word-spacing:845.944951pt;}
.ws3a{word-spacing:848.031018pt;}
.ws65{word-spacing:848.288052pt;}
.ws46{word-spacing:848.332753pt;}
.ws7c{word-spacing:851.007389pt;}
.ws69{word-spacing:904.426133pt;}
.ws29{word-spacing:908.035251pt;}
._44{margin-left:-8.046259pt;}
._42{margin-left:-7.137330pt;}
._2{margin-left:-4.310472pt;}
._4{margin-left:-2.650157pt;}
._0{margin-left:-1.329868pt;}
._3{width:0.948304pt;}
._9{width:2.213525pt;}
._24{width:3.172999pt;}
._25{width:8.858335pt;}
._2f{width:9.752364pt;}
._7{width:10.733933pt;}
._5{width:11.741578pt;}
._8{width:13.185594pt;}
._43{width:16.962600pt;}
._1{width:18.907645pt;}
._6{width:19.803270pt;}
._a{width:32.232931pt;}
._b{width:63.723233pt;}
._3b{width:86.974102pt;}
._3c{width:88.538652pt;}
._14{width:93.854398pt;}
._3a{width:103.293852pt;}
._39{width:105.394820pt;}
._38{width:107.462262pt;}
._1f{width:114.927402pt;}
._29{width:123.881600pt;}
._36{width:127.343227pt;}
._f{width:135.415562pt;}
._2e{width:137.033600pt;}
._27{width:141.481600pt;}
._28{width:148.428800pt;}
._21{width:149.332611pt;}
._30{width:154.300800pt;}
._15{width:156.350737pt;}
._35{width:162.221526pt;}
._41{width:163.812152pt;}
._22{width:166.084475pt;}
._13{width:169.820771pt;}
._37{width:174.939085pt;}
._19{width:176.838897pt;}
._1c{width:180.139353pt;}
._10{width:187.157479pt;}
._17{width:190.308931pt;}
._e{width:196.891218pt;}
._23{width:199.428024pt;}
._d{width:200.627513pt;}
._20{width:204.240879pt;}
._18{width:207.060795pt;}
._11{width:210.331451pt;}
._1d{width:217.379378pt;}
._1a{width:220.501028pt;}
._12{width:224.729039pt;}
._1e{width:230.819611pt;}
._c{width:235.047622pt;}
._16{width:245.217199pt;}
._1b{width:255.535782pt;}
._40{width:303.545128pt;}
._3f{width:318.300329pt;}
._3e{width:320.401296pt;}
._31{width:321.723714pt;}
._3d{width:389.532073pt;}
._2d{width:409.174400pt;}
._26{width:412.465067pt;}
._32{width:456.457579pt;}
._2c{width:472.569600pt;}
._2a{width:712.252800pt;}
._2b{width:875.558400pt;}
._33{width:900.283276pt;}
._34{width:973.459534pt;}
.fsb{font-size:23.947200pt;}
.fs4{font-size:29.268800pt;}
.fse{font-size:31.200000pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs5{font-size:37.251200pt;}
.fs2{font-size:39.912000pt;}
.fs7{font-size:42.572800pt;}
.fs9{font-size:42.666667pt;}
.fs0{font-size:45.233600pt;}
.fs6{font-size:47.894400pt;}
.fsa{font-size:50.555200pt;}
.fs3{font-size:58.537067pt;}
.fs8{font-size:85.145067pt;}
.fs1{font-size:95.788267pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.314667pt;}
.y41{bottom:2.666667pt;}
.y83{bottom:66.519600pt;}
.y40{bottom:66.519733pt;}
.y3f{bottom:90.466800pt;}
.y1c4{bottom:98.116267pt;}
.yff{bottom:98.116533pt;}
.yfe{bottom:101.775200pt;}
.y1c2{bottom:102.103309pt;}
.y1ba{bottom:102.107733pt;}
.y22f{bottom:102.761820pt;}
.y266{bottom:103.416040pt;}
.y130{bottom:103.771065pt;}
.y1c5{bottom:104.768533pt;}
.y203{bottom:107.096932pt;}
.y1c3{bottom:111.420533pt;}
.yfd{bottom:114.744670pt;}
.y1b9{bottom:114.746533pt;}
.y81{bottom:115.079199pt;}
.y265{bottom:118.050772pt;}
.y108{bottom:118.072400pt;}
.y1b8{bottom:118.405067pt;}
.y296{bottom:120.727011pt;}
.yba{bottom:121.066131pt;}
.y22e{bottom:121.387752pt;}
.y2a{bottom:121.731067pt;}
.y202{bottom:124.391999pt;}
.yfc{bottom:128.048936pt;}
.y1b7{bottom:131.376400pt;}
.y80{bottom:132.374266pt;}
.y107{bottom:134.702400pt;}
.y1b6{bottom:135.034933pt;}
.y295{bottom:135.361744pt;}
.y264{bottom:136.676705pt;}
.y106{bottom:138.360933pt;}
.yb9{bottom:138.361198pt;}
.y22d{bottom:140.013685pt;}
.yfb{bottom:141.353202pt;}
.y201{bottom:141.687066pt;}
.y1b5{bottom:148.006001pt;}
.y7f{bottom:149.669333pt;}
.y294{bottom:149.996476pt;}
.y263{bottom:151.311437pt;}
.y105{bottom:151.332267pt;}
.y104{bottom:154.990800pt;}
.y29{bottom:154.990933pt;}
.yb8{bottom:155.656265pt;}
.yfa{bottom:157.983069pt;}
.y22c{bottom:158.639618pt;}
.y200{bottom:158.982133pt;}
.y1b2{bottom:161.309867pt;}
.y1b4{bottom:161.310267pt;}
.y293{bottom:164.631209pt;}
.y1b3{bottom:164.968800pt;}
.y262{bottom:165.946170pt;}
.y1bb{bottom:166.296207pt;}
.y7e{bottom:166.964400pt;}
.y103{bottom:167.962133pt;}
.yf9{bottom:171.287335pt;}
.y102{bottom:171.620800pt;}
.y28{bottom:172.286000pt;}
.yb7{bottom:172.951332pt;}
.y22b{bottom:173.274350pt;}
.y1b1{bottom:174.614133pt;}
.y1fe{bottom:176.277200pt;}
.y1b0{bottom:178.272800pt;}
.y292{bottom:179.265941pt;}
.y1ff{bottom:180.933600pt;}
.y7d{bottom:184.259467pt;}
.y261{bottom:184.572103pt;}
.yf8{bottom:184.591601pt;}
.y101{bottom:184.592133pt;}
.y100{bottom:188.250667pt;}
.y174{bottom:188.869202pt;}
.yb6{bottom:190.246399pt;}
.y1af{bottom:191.243867pt;}
.y22a{bottom:191.900283pt;}
.y1fd{bottom:193.572267pt;}
.y291{bottom:193.900674pt;}
.y260{bottom:199.206835pt;}
.y7c{bottom:200.889467pt;}
.y178{bottom:202.172537pt;}
.y173{bottom:202.173468pt;}
.yf6{bottom:203.883399pt;}
.y27{bottom:206.876532pt;}
.yb5{bottom:207.541466pt;}
.y290{bottom:208.535407pt;}
.y229{bottom:210.526215pt;}
.y1fb{bottom:210.867997pt;}
.y1ac{bottom:211.865067pt;}
.y1ae{bottom:211.865200pt;}
.y25f{bottom:213.841568pt;}
.yf7{bottom:213.860800pt;}
.yf5{bottom:213.861132pt;}
.y177{bottom:215.476803pt;}
.y172{bottom:215.477735pt;}
.y1ad{bottom:215.523733pt;}
.y1fc{bottom:215.523867pt;}
.y26{bottom:224.171599pt;}
.yb4{bottom:224.836533pt;}
.y228{bottom:225.160948pt;}
.y1a9{bottom:227.829734pt;}
.y1ab{bottom:227.830000pt;}
.yf2{bottom:228.162999pt;}
.y1fa{bottom:228.163064pt;}
.y176{bottom:228.781069pt;}
.y171{bottom:228.782001pt;}
.y1aa{bottom:231.488533pt;}
.yf3{bottom:231.821067pt;}
.y25e{bottom:232.467500pt;}
.y7b{bottom:236.145199pt;}
.yf4{bottom:238.140533pt;}
.yf1{bottom:238.140732pt;}
.y28f{bottom:239.134939pt;}
.y12f{bottom:241.466533pt;}
.y25{bottom:241.466665pt;}
.y175{bottom:242.085335pt;}
.y170{bottom:242.086267pt;}
.yb3{bottom:242.131600pt;}
.yb1{bottom:242.131865pt;}
.y227{bottom:243.786881pt;}
.y1a7{bottom:243.794667pt;}
.y1f9{bottom:245.458131pt;}
.yb2{bottom:246.788000pt;}
.y25d{bottom:247.102233pt;}
.y1a8{bottom:247.453200pt;}
.yee{bottom:252.442732pt;}
.y7a{bottom:253.440265pt;}
.y28e{bottom:253.769672pt;}
.yef{bottom:256.100800pt;}
.y1a3{bottom:258.096400pt;}
.y24{bottom:258.761732pt;}
.yb0{bottom:259.426932pt;}
.y1a6{bottom:261.754933pt;}
.y226{bottom:262.412813pt;}
.yf0{bottom:262.420133pt;}
.yed{bottom:262.420466pt;}
.y1f8{bottom:262.753198pt;}
.y25c{bottom:265.728166pt;}
.y161{bottom:270.708667pt;}
.y79{bottom:270.735332pt;}
.y28d{bottom:272.395604pt;}
.y1a4{bottom:274.061333pt;}
.y23{bottom:276.056799pt;}
.yaf{bottom:276.721999pt;}
.yea{bottom:276.722332pt;}
.y12e{bottom:276.723060pt;}
.y225{bottom:277.047546pt;}
.y1a5{bottom:277.719733pt;}
.y1f7{bottom:280.048265pt;}
.y25b{bottom:280.362898pt;}
.yeb{bottom:280.380400pt;}
.y160{bottom:283.951467pt;}
.yec{bottom:286.699867pt;}
.ye9{bottom:286.700066pt;}
.y28c{bottom:287.030337pt;}
.y78{bottom:288.030399pt;}
.y157{bottom:292.296667pt;}
.y22{bottom:293.351866pt;}
.yae{bottom:294.017066pt;}
.y12d{bottom:294.018127pt;}
.y1a2{bottom:294.814733pt;}
.y25a{bottom:294.997631pt;}
.y224{bottom:295.673478pt;}
.y1f6{bottom:297.343332pt;}
.ye6{bottom:301.002065pt;}
.y28b{bottom:301.665070pt;}
.ye7{bottom:304.660133pt;}
.y77{bottom:305.325466pt;}
.y1a1{bottom:308.118400pt;}
.y223{bottom:310.308211pt;}
.y20{bottom:310.646933pt;}
.ye8{bottom:310.979467pt;}
.ye5{bottom:310.979799pt;}
.yad{bottom:311.312133pt;}
.y12c{bottom:311.313194pt;}
.y259{bottom:313.623563pt;}
.y1f5{bottom:314.638399pt;}
.y21{bottom:315.303200pt;}
.y15f{bottom:315.880667pt;}
.y28a{bottom:320.291002pt;}
.y75{bottom:322.620533pt;}
.y222{bottom:324.942944pt;}
.ye2{bottom:325.281799pt;}
.y165{bottom:327.110000pt;}
.y76{bottom:327.276933pt;}
.y1f{bottom:327.942000pt;}
.y1d{bottom:327.942265pt;}
.y258{bottom:328.258296pt;}
.yac{bottom:328.607200pt;}
.yaa{bottom:328.607333pt;}
.y12b{bottom:328.608261pt;}
.ye3{bottom:328.939867pt;}
.y1f4{bottom:331.933466pt;}
.y1e{bottom:332.598400pt;}
.yab{bottom:333.263600pt;}
.y167{bottom:333.567333pt;}
.y289{bottom:334.925735pt;}
.ye4{bottom:335.259200pt;}
.ye1{bottom:335.259532pt;}
.y15e{bottom:339.463333pt;}
.y221{bottom:339.577676pt;}
.y74{bottom:339.915600pt;}
.y257{bottom:342.893029pt;}
.y1c{bottom:345.237332pt;}
.ya9{bottom:345.902400pt;}
.y12a{bottom:345.903328pt;}
.y15a{bottom:348.330133pt;}
.y1f3{bottom:349.228533pt;}
.y288{bottom:349.560467pt;}
.yde{bottom:349.561532pt;}
.y187{bottom:352.613333pt;}
.y190{bottom:352.613600pt;}
.y1a0{bottom:352.683339pt;}
.ydf{bottom:353.219467pt;}
.y220{bottom:354.212409pt;}
.y73{bottom:357.210667pt;}
.ye0{bottom:359.538933pt;}
.ydd{bottom:359.539266pt;}
.y186{bottom:360.958933pt;}
.y256{bottom:361.518961pt;}
.y1bc{bottom:362.414133pt;}
.ya8{bottom:362.532267pt;}
.y1b{bottom:362.532399pt;}
.y15d{bottom:363.046000pt;}
.y129{bottom:363.198395pt;}
.y19f{bottom:365.987605pt;}
.y1f2{bottom:366.523600pt;}
.y287{bottom:368.171294pt;}
.y21f{bottom:368.847141pt;}
.y72{bottom:373.840667pt;}
.y166{bottom:374.838000pt;}
.y255{bottom:376.153694pt;}
.ydb{bottom:377.499200pt;}
.y19e{bottom:379.291871pt;}
.y1a{bottom:379.827466pt;}
.y128{bottom:380.493462pt;}
.y286{bottom:382.806026pt;}
.y21e{bottom:383.481874pt;}
.yda{bottom:383.818400pt;}
.ydc{bottom:383.818667pt;}
.y18f{bottom:384.493600pt;}
.y15c{bottom:386.630000pt;}
.y1f1{bottom:388.474933pt;}
.y19d{bottom:392.596137pt;}
.y254{bottom:394.779626pt;}
.y19{bottom:397.122533pt;}
.ya7{bottom:397.787733pt;}
.y127{bottom:397.788529pt;}
.y21d{bottom:398.116607pt;}
.yd7{bottom:399.783067pt;}
.yd9{bottom:399.783333pt;}
.y1f0{bottom:401.113733pt;}
.y285{bottom:401.431959pt;}
.yd8{bottom:403.441867pt;}
.y19c{bottom:405.900404pt;}
.y18a{bottom:406.050667pt;}
.y18e{bottom:408.029200pt;}
.y1bd{bottom:408.642533pt;}
.y71{bottom:409.096266pt;}
.y253{bottom:409.414359pt;}
.y15b{bottom:410.212667pt;}
.y21c{bottom:412.751339pt;}
.y18{bottom:414.417600pt;}
.ya6{bottom:415.082800pt;}
.ya4{bottom:415.083065pt;}
.y126{bottom:415.083596pt;}
.yd4{bottom:415.747734pt;}
.yd6{bottom:415.748000pt;}
.y284{bottom:416.066692pt;}
.y164{bottom:416.108667pt;}
.y1ef{bottom:418.408800pt;}
.y1ed{bottom:418.408933pt;}
.y19b{bottom:419.204670pt;}
.yd5{bottom:419.406667pt;}
.ya5{bottom:419.739200pt;}
.y1ee{bottom:423.065200pt;}
.y3e{bottom:426.058267pt;}
.y70{bottom:426.391333pt;}
.y21b{bottom:427.386072pt;}
.y252{bottom:428.040292pt;}
.y18d{bottom:431.564267pt;}
.yd3{bottom:431.712667pt;}
.yd1{bottom:431.712866pt;}
.ya3{bottom:432.378132pt;}
.y125{bottom:432.378663pt;}
.y19a{bottom:432.508936pt;}
.y159{bottom:433.796667pt;}
.y283{bottom:434.692624pt;}
.yd2{bottom:435.371333pt;}
.y1eb{bottom:435.704000pt;}
.y3d{bottom:439.362533pt;}
.y1ec{bottom:440.360267pt;}
.y251{bottom:442.675024pt;}
.y6f{bottom:443.686400pt;}
.y16a{bottom:445.548933pt;}
.y199{bottom:445.813202pt;}
.y21a{bottom:446.012004pt;}
.ycd{bottom:446.014533pt;}
.y17{bottom:449.008132pt;}
.y282{bottom:449.327357pt;}
.ya2{bottom:449.673199pt;}
.y124{bottom:449.673730pt;}
.y1e9{bottom:452.999066pt;}
.y18c{bottom:455.098800pt;}
.yce{bottom:455.992267pt;}
.y158{bottom:457.379333pt;}
.y1ea{bottom:457.655467pt;}
.y198{bottom:459.117468pt;}
.y3c{bottom:459.651067pt;}
.y219{bottom:460.646737pt;}
.y6d{bottom:460.981467pt;}
.y250{bottom:461.300957pt;}
.y281{bottom:463.962089pt;}
.y6e{bottom:465.637867pt;}
.y16{bottom:466.303199pt;}
.ya1{bottom:466.968266pt;}
.y123{bottom:466.968797pt;}
.ycf{bottom:470.293934pt;}
.y1e8{bottom:470.294133pt;}
.y1e6{bottom:470.294399pt;}
.y195{bottom:470.349467pt;}
.y197{bottom:472.421734pt;}
.y162{bottom:473.923333pt;}
.y168{bottom:473.923800pt;}
.yd0{bottom:473.952800pt;}
.y163{bottom:474.212667pt;}
.y1e7{bottom:474.950533pt;}
.y24f{bottom:475.935689pt;}
.y18b{bottom:478.633333pt;}
.y218{bottom:479.272670pt;}
.y194{bottom:480.237467pt;}
.y280{bottom:482.588022pt;}
.y15{bottom:483.598266pt;}
.ya0{bottom:484.263333pt;}
.y122{bottom:484.263864pt;}
.y3b{bottom:484.928533pt;}
.y6c{bottom:485.593733pt;}
.y196{bottom:485.726000pt;}
.y1e5{bottom:487.589465pt;}
.y193{bottom:490.091600pt;}
.y24e{bottom:490.570422pt;}
.ycc{bottom:491.047600pt;}
.y217{bottom:493.907402pt;}
.y27f{bottom:497.222755pt;}
.y192{bottom:500.035600pt;}
.y14{bottom:500.893333pt;}
.y9f{bottom:501.558400pt;}
.y121{bottom:501.558931pt;}
.y189{bottom:502.168400pt;}
.y14a{bottom:502.707333pt;}
.y1e4{bottom:504.884532pt;}
.y24d{bottom:505.205155pt;}
.y191{bottom:510.004400pt;}
.y216{bottom:512.533335pt;}
.y27e{bottom:515.848687pt;}
.y149{bottom:515.950000pt;}
.y13{bottom:518.188400pt;}
.y9e{bottom:518.853467pt;}
.y9c{bottom:518.853600pt;}
.y120{bottom:518.853998pt;}
.y24c{bottom:519.839887pt;}
.y1e3{bottom:522.179599pt;}
.y9d{bottom:523.509867pt;}
.y142{bottom:524.296667pt;}
.y188{bottom:525.702933pt;}
.y6b{bottom:526.835999pt;}
.y3a{bottom:529.495467pt;}
.y27d{bottom:530.483420pt;}
.y215{bottom:531.159267pt;}
.y9b{bottom:536.148667pt;}
.y11f{bottom:536.149065pt;}
.y24b{bottom:538.465820pt;}
.y1e2{bottom:539.474666pt;}
.ycb{bottom:539.475197pt;}
.y156{bottom:540.806000pt;}
.y6a{bottom:544.131066pt;}
.y27c{bottom:545.118152pt;}
.y214{bottom:545.794000pt;}
.y39{bottom:546.790667pt;}
.y185{bottom:547.967533pt;}
.y1c6{bottom:551.782933pt;}
.y9a{bottom:552.778533pt;}
.y12{bottom:552.778932pt;}
.y24a{bottom:553.100552pt;}
.y11e{bottom:553.444132pt;}
.y1e1{bottom:556.769733pt;}
.yca{bottom:556.770264pt;}
.y155{bottom:557.314000pt;}
.y148{bottom:557.584667pt;}
.y184{bottom:561.271200pt;}
.y69{bottom:561.426133pt;}
.y27b{bottom:563.744085pt;}
.y38{bottom:564.085867pt;}
.y14e{bottom:568.492667pt;}
.y11{bottom:570.073999pt;}
.y11d{bottom:570.739199pt;}
.y249{bottom:571.726485pt;}
.y154{bottom:573.822000pt;}
.y1e0{bottom:574.064800pt;}
.y1df{bottom:574.064933pt;}
.yc9{bottom:574.065331pt;}
.y27a{bottom:578.378818pt;}
.y68{bottom:578.721200pt;}
.y66{bottom:578.721333pt;}
.y67{bottom:583.377600pt;}
.y145{bottom:586.259333pt;}
.y248{bottom:586.361218pt;}
.y10{bottom:587.369065pt;}
.y11c{bottom:588.034265pt;}
.y99{bottom:588.034530pt;}
.y37{bottom:588.698267pt;}
.y152{bottom:590.330000pt;}
.y147{bottom:590.534000pt;}
.y1de{bottom:591.360000pt;}
.yc8{bottom:591.360398pt;}
.y279{bottom:593.013550pt;}
.y65{bottom:596.016400pt;}
.y63{bottom:596.016532pt;}
.y64{bottom:600.672667pt;}
.yf{bottom:604.664132pt;}
.y247{bottom:604.987150pt;}
.y11b{bottom:605.329332pt;}
.y98{bottom:605.329597pt;}
.y36{bottom:605.993467pt;}
.y153{bottom:606.839333pt;}
.y1dc{bottom:608.655066pt;}
.yc7{bottom:608.655465pt;}
.y278{bottom:611.639483pt;}
.y1dd{bottom:613.311467pt;}
.y62{bottom:613.311599pt;}
.y246{bottom:619.621883pt;}
.ye{bottom:621.959199pt;}
.y11a{bottom:622.624399pt;}
.y97{bottom:622.624664pt;}
.y183{bottom:622.625327pt;}
.y35{bottom:623.288667pt;}
.y151{bottom:623.346000pt;}
.y146{bottom:623.483333pt;}
.y1db{bottom:625.950133pt;}
.y1da{bottom:625.950266pt;}
.yc6{bottom:625.950532pt;}
.y277{bottom:626.274215pt;}
.y1be{bottom:626.538800pt;}
.y61{bottom:630.606666pt;}
.y245{bottom:634.256615pt;}
.yd{bottom:639.254266pt;}
.y150{bottom:639.854000pt;}
.y119{bottom:639.919466pt;}
.y96{bottom:639.919731pt;}
.y182{bottom:639.920394pt;}
.y34{bottom:640.583867pt;}
.y1d9{bottom:643.245333pt;}
.yc5{bottom:643.245599pt;}
.y276{bottom:644.900148pt;}
.y60{bottom:647.901733pt;}
.y5e{bottom:647.901866pt;}
.y213{bottom:650.562533pt;}
.y5f{bottom:652.558133pt;}
.y14f{bottom:656.363333pt;}
.y144{bottom:656.431333pt;}
.yc{bottom:656.549333pt;}
.y118{bottom:657.214533pt;}
.y95{bottom:657.214798pt;}
.y181{bottom:657.215461pt;}
.y33{bottom:657.879067pt;}
.y275{bottom:659.534881pt;}
.y1d8{bottom:660.540400pt;}
.y1d6{bottom:660.540533pt;}
.yc4{bottom:660.540665pt;}
.y244{bottom:660.864948pt;}
.y1d7{bottom:665.196800pt;}
.y5d{bottom:665.196933pt;}
.y1bf{bottom:668.553067pt;}
.y14d{bottom:672.872667pt;}
.y117{bottom:673.844400pt;}
.y274{bottom:674.169613pt;}
.y94{bottom:674.509865pt;}
.y180{bottom:674.510528pt;}
.y32{bottom:675.174267pt;}
.y243{bottom:675.499681pt;}
.y1d5{bottom:677.835600pt;}
.yc3{bottom:677.835732pt;}
.y5b{bottom:682.491999pt;}
.y5c{bottom:687.148267pt;}
.y143{bottom:689.379333pt;}
.y242{bottom:690.134413pt;}
.yb{bottom:691.139600pt;}
.y93{bottom:691.804932pt;}
.y212{bottom:691.805197pt;}
.y17f{bottom:691.805595pt;}
.y31{bottom:692.469467pt;}
.y273{bottom:692.795546pt;}
.y1d4{bottom:695.130667pt;}
.yc2{bottom:695.130799pt;}
.y1d3{bottom:695.131197pt;}
.y5a{bottom:699.787066pt;}
.y241{bottom:704.769146pt;}
.y14b{bottom:705.923333pt;}
.y14c{bottom:706.212667pt;}
.y272{bottom:707.430278pt;}
.ya{bottom:708.434667pt;}
.y92{bottom:709.099999pt;}
.y211{bottom:709.100264pt;}
.y116{bottom:709.100397pt;}
.y17e{bottom:709.100662pt;}
.y30{bottom:709.764667pt;}
.yc1{bottom:712.425866pt;}
.y1d2{bottom:712.426264pt;}
.y59{bottom:717.082133pt;}
.y271{bottom:722.065011pt;}
.y240{bottom:723.395078pt;}
.y91{bottom:726.395066pt;}
.y210{bottom:726.395331pt;}
.y115{bottom:726.395464pt;}
.y17d{bottom:726.395729pt;}
.yc0{bottom:729.720933pt;}
.y1d1{bottom:729.721331pt;}
.y2f{bottom:734.377067pt;}
.y57{bottom:734.377333pt;}
.y13a{bottom:734.707333pt;}
.y23f{bottom:738.029811pt;}
.y58{bottom:739.033733pt;}
.y270{bottom:740.690944pt;}
.y9{bottom:743.024933pt;}
.y90{bottom:743.690133pt;}
.y20f{bottom:743.690398pt;}
.y114{bottom:743.690531pt;}
.y17c{bottom:743.690796pt;}
.y1d0{bottom:747.016398pt;}
.y139{bottom:747.950000pt;}
.y2e{bottom:751.672267pt;}
.y56{bottom:751.672400pt;}
.y54{bottom:751.672533pt;}
.y23e{bottom:752.664544pt;}
.ybf{bottom:754.333200pt;}
.y26f{bottom:755.325676pt;}
.y132{bottom:756.295333pt;}
.y55{bottom:756.328800pt;}
.y8{bottom:760.320000pt;}
.y8f{bottom:760.985200pt;}
.y20e{bottom:760.985465pt;}
.y113{bottom:760.985598pt;}
.y17b{bottom:760.985863pt;}
.y1cf{bottom:764.311465pt;}
.y2d{bottom:768.967467pt;}
.y53{bottom:768.967600pt;}
.y141{bottom:769.176667pt;}
.y23d{bottom:771.290476pt;}
.y26e{bottom:773.951609pt;}
.y7{bottom:777.615067pt;}
.y8e{bottom:778.280267pt;}
.y20d{bottom:778.280532pt;}
.y112{bottom:778.280665pt;}
.y17a{bottom:778.280930pt;}
.y1ce{bottom:781.606532pt;}
.y13e{bottom:784.206000pt;}
.y135{bottom:785.808533pt;}
.y23c{bottom:785.925209pt;}
.y2c{bottom:786.262667pt;}
.y26d{bottom:788.586341pt;}
.y138{bottom:789.584667pt;}
.y52{bottom:790.919067pt;}
.y8d{bottom:794.910133pt;}
.y20c{bottom:795.575599pt;}
.y111{bottom:795.575732pt;}
.ybd{bottom:795.575997pt;}
.y1cd{bottom:798.901599pt;}
.ybe{bottom:800.231733pt;}
.y23b{bottom:800.559941pt;}
.y51{bottom:803.557733pt;}
.y2b{bottom:804.555600pt;}
.y6{bottom:806.218533pt;}
.y26c{bottom:807.212274pt;}
.y140{bottom:807.227333pt;}
.y20b{bottom:812.870666pt;}
.y110{bottom:812.870799pt;}
.ybc{bottom:812.871064pt;}
.y23a{bottom:815.194674pt;}
.y1cc{bottom:816.196665pt;}
.y50{bottom:820.852800pt;}
.y4e{bottom:820.853066pt;}
.y26b{bottom:821.847007pt;}
.y137{bottom:822.533467pt;}
.y4f{bottom:825.509333pt;}
.y239{bottom:829.829407pt;}
.y20a{bottom:830.165733pt;}
.y10f{bottom:830.165865pt;}
.y8c{bottom:830.166131pt;}
.y1cb{bottom:833.491732pt;}
.y4d{bottom:838.148133pt;}
.y26a{bottom:840.472939pt;}
.y238{bottom:844.464139pt;}
.y13f{bottom:845.278267pt;}
.y209{bottom:847.460800pt;}
.y10e{bottom:847.460932pt;}
.y8b{bottom:847.461198pt;}
.y1ca{bottom:850.786799pt;}
.y5{bottom:854.445333pt;}
.y269{bottom:855.107672pt;}
.y4c{bottom:855.443200pt;}
.y136{bottom:855.482133pt;}
.y237{bottom:859.098872pt;}
.y16f{bottom:863.904000pt;}
.y208{bottom:864.090667pt;}
.y10d{bottom:864.755999pt;}
.y8a{bottom:864.756265pt;}
.y1c9{bottom:868.081866pt;}
.y4{bottom:868.414533pt;}
.y268{bottom:869.742404pt;}
.y4a{bottom:872.738266pt;}
.y236{bottom:873.733604pt;}
.y16e{bottom:873.792000pt;}
.y4b{bottom:877.394667pt;}
.y10c{bottom:882.051066pt;}
.y89{bottom:882.051332pt;}
.y13d{bottom:883.329067pt;}
.y16d{bottom:883.646133pt;}
.y1c8{bottom:885.376933pt;}
.y1c0{bottom:886.441867pt;}
.y235{bottom:888.368337pt;}
.y134{bottom:888.430667pt;}
.y49{bottom:890.033333pt;}
.y16c{bottom:893.590133pt;}
.y3{bottom:895.688162pt;}
.y10b{bottom:899.346133pt;}
.y88{bottom:899.346399pt;}
.y234{bottom:903.003070pt;}
.y16b{bottom:903.558933pt;}
.y48{bottom:907.328400pt;}
.y46{bottom:907.328533pt;}
.y169{bottom:907.472933pt;}
.y1c7{bottom:909.989200pt;}
.y47{bottom:911.984800pt;}
.y10a{bottom:915.976133pt;}
.y207{bottom:916.641200pt;}
.y87{bottom:916.641466pt;}
.y133{bottom:921.379200pt;}
.y233{bottom:921.629002pt;}
.y45{bottom:924.623600pt;}
.y2{bottom:924.956267pt;}
.y1c1{bottom:928.452267pt;}
.y206{bottom:933.936400pt;}
.y86{bottom:933.936533pt;}
.y232{bottom:936.263735pt;}
.y13b{bottom:937.922133pt;}
.y13c{bottom:938.212533pt;}
.y205{bottom:938.592800pt;}
.y44{bottom:941.918667pt;}
.y231{bottom:950.898467pt;}
.y1{bottom:951.231467pt;}
.y85{bottom:951.231600pt;}
.y267{bottom:954.889667pt;}
.y131{bottom:962.207200pt;}
.y43{bottom:966.530933pt;}
.y84{bottom:968.526667pt;}
.y230{bottom:969.524400pt;}
.y179{bottom:973.182933pt;}
.y109{bottom:1000.456000pt;}
.y82{bottom:1000.460199pt;}
.ybb{bottom:1000.460465pt;}
.y204{bottom:1000.460532pt;}
.he{height:17.696981pt;}
.hf{height:17.912506pt;}
.h5{height:21.893062pt;}
.h12{height:21.996000pt;}
.h10{height:23.648000pt;}
.h11{height:25.618667pt;}
.hd{height:27.528637pt;}
.h6{height:27.863898pt;}
.h3{height:29.854176pt;}
.h13{height:29.914601pt;}
.h8{height:31.844454pt;}
.h1{height:33.834733pt;}
.h7{height:35.825011pt;}
.hc{height:37.815290pt;}
.hb{height:43.000000pt;}
.h4{height:43.785726pt;}
.h9{height:63.688510pt;}
.h2{height:71.649623pt;}
.ha{height:1053.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:802.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:13.333333pt;}
.x1{left:63.858933pt;}
.x2b{left:67.850000pt;}
.x39{left:70.510800pt;}
.x53{left:73.867067pt;}
.xa{left:77.162800pt;}
.x54{left:81.175067pt;}
.x10{left:87.805379pt;}
.x63{left:98.580801pt;}
.x71{left:106.870667pt;}
.x38{left:107.791600pt;}
.x43{left:109.100267pt;}
.x49{left:113.197733pt;}
.x3e{left:114.845333pt;}
.x1a{left:117.562000pt;}
.x15{left:118.923733pt;}
.x61{left:120.532933pt;}
.x42{left:121.845333pt;}
.x16{left:126.195200pt;}
.x1b{left:128.473333pt;}
.x62{left:130.510667pt;}
.x35{left:131.751600pt;}
.x34{left:135.821333pt;}
.x37{left:137.136000pt;}
.x3f{left:138.083867pt;}
.x36{left:139.676800pt;}
.x7c{left:141.015600pt;}
.x64{left:144.812467pt;}
.x7d{left:148.442000pt;}
.x5e{left:154.598133pt;}
.x6{left:160.299467pt;}
.x20{left:161.692800pt;}
.x80{left:163.636533pt;}
.x65{left:164.767935pt;}
.x7{left:167.607600pt;}
.xe{left:168.525867pt;}
.x21{left:171.696800pt;}
.x1c{left:172.952267pt;}
.x5d{left:173.882400pt;}
.xf{left:175.088133pt;}
.x75{left:181.725333pt;}
.x1d{left:189.739733pt;}
.x76{left:192.266000pt;}
.x41{left:198.443200pt;}
.x55{left:201.074400pt;}
.x2c{left:203.293501pt;}
.x58{left:205.376533pt;}
.x18{left:209.214133pt;}
.x19{left:216.468400pt;}
.x22{left:221.048400pt;}
.x23{left:228.518000pt;}
.x66{left:230.955600pt;}
.x77{left:237.344133pt;}
.x67{left:245.257333pt;}
.x40{left:252.604267pt;}
.x5a{left:254.986991pt;}
.x73{left:258.608533pt;}
.x68{left:261.222000pt;}
.xc{left:264.327467pt;}
.x72{left:265.903067pt;}
.x74{left:269.218400pt;}
.xd{left:275.943333pt;}
.x69{left:277.186933pt;}
.x6a{left:287.164667pt;}
.x57{left:288.137333pt;}
.x78{left:295.018267pt;}
.x6b{left:301.466400pt;}
.x1e{left:304.183333pt;}
.x79{left:306.217733pt;}
.x1f{left:313.634000pt;}
.x51{left:317.279067pt;}
.x2{left:330.284533pt;}
.x7a{left:331.643733pt;}
.x6c{left:333.395867pt;}
.x3{left:337.592667pt;}
.x7b{left:342.394800pt;}
.x56{left:346.973200pt;}
.x13{left:351.363867pt;}
.x28{left:354.272533pt;}
.x14{left:357.715733pt;}
.x29{left:363.731867pt;}
.x6d{left:367.320933pt;}
.x6e{left:370.979467pt;}
.x26{left:376.908400pt;}
.x7e{left:378.616533pt;}
.x27{left:383.592933pt;}
.x32{left:391.254551pt;}
.x7f{left:399.933467pt;}
.x5b{left:403.177600pt;}
.x2d{left:411.111467pt;}
.x3a{left:415.082800pt;}
.x3b{left:421.734800pt;}
.x50{left:422.878800pt;}
.x4d{left:425.016133pt;}
.x3c{left:426.521467pt;}
.x48{left:428.665467pt;}
.x3d{left:432.080933pt;}
.x4e{left:433.138800pt;}
.x4a{left:435.354800pt;}
.x11{left:436.498533pt;}
.x4c{left:437.913467pt;}
.x44{left:439.754800pt;}
.x47{left:441.302800pt;}
.x12{left:443.614400pt;}
.x4f{left:454.592267pt;}
.x4b{left:455.925467pt;}
.x4{left:458.138267pt;}
.x6f{left:461.178933pt;}
.x5{left:465.446267pt;}
.x70{left:469.955467pt;}
.x5c{left:476.961333pt;}
.x2e{left:482.562533pt;}
.x17{left:495.186667pt;}
.x5f{left:496.633867pt;}
.x24{left:499.796667pt;}
.x60{left:502.193333pt;}
.x25{left:507.050800pt;}
.x2a{left:508.087600pt;}
.x52{left:510.466800pt;}
.x46{left:518.953467pt;}
.x2f{left:529.240149pt;}
.x59{left:542.800533pt;}
.x9{left:558.765333pt;}
.x8{left:566.747733pt;}
.x45{left:573.113467pt;}
.x30{left:584.574267pt;}
.x33{left:612.989525pt;}
.x31{left:707.656000pt;}
}




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