
    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_feb74a55c32fddb6871bd1de.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_1dc1846fc99ba03b267214c5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_fbbc9cba2c5666b5c3a95854.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b6000c66728f4d7e5bedd3a8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db32ba4a286ebb0c62c0403d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f65412b2a05e01c2c5f533cb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.580000;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_e4670a52fc3f752f2b90f37a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.429000;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_c93e3bfbe071f1e55a853781.woff')format("woff");}.ff8{font-family:ff8;line-height:0.793945;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_c60a72e1f9c60fcdcf79dd8e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e4a8d57de059d442c8b7b255.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_63f546b452366c45da828e56.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1c1a4a4df149c8093a42762a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.793945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_091eeccfe26c6c97ac66c63e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921875;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:ffe;src:url('chunks/assets/font_ca7a4a179832ee87f531a2e6.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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:fff;src:url('chunks/assets/font_f49b99d20cfa38531932ec09.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_19074f90f07d691be0b73210.woff')format("woff");}.ff10{font-family:ff10;line-height:0.899000;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:ff11;src:url('chunks/assets/font_eca74d626ddf3609af1bb4fa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.694000;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:ff12;src:url('chunks/assets/font_c852c67836cc44336be7b2b8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.686000;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:ff13;src:url('chunks/assets/font_0c9f466c6bad8cecd3665e87.woff')format("woff");}.ff13{font-family:ff13;line-height:0.685000;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:ff14;src:url('chunks/assets/font_cba9b336d61b091937f18dd3.woff')format("woff");}.ff14{font-family:ff14;line-height:0.894000;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;}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.689940px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000060px;}
.lsc{letter-spacing:0.000873px;}
.ls12{letter-spacing:0.004388px;}
.ls14{letter-spacing:0.042693px;}
.lsf{letter-spacing:0.050973px;}
.ls23{letter-spacing:2.386080px;}
.ls24{letter-spacing:2.391960px;}
.ls5{letter-spacing:2.453568px;}
.lsd{letter-spacing:2.983782px;}
.ls25{letter-spacing:2.986134px;}
.ls7{letter-spacing:2.986224px;}
.ls15{letter-spacing:2.988130px;}
.ls6{letter-spacing:2.988900px;}
.ls16{letter-spacing:3.046182px;}
.lse{letter-spacing:9.419669px;}
.ls1b{letter-spacing:13.282672px;}
.ls11{letter-spacing:16.600007px;}
.ls19{letter-spacing:16.600672px;}
.ls13{letter-spacing:16.606672px;}
.ls0{letter-spacing:17.045700px;}
.ls1{letter-spacing:17.074672px;}
.ls18{letter-spacing:18.744847px;}
.ls10{letter-spacing:19.590070px;}
.lsb{letter-spacing:21.347727px;}
.ls20{letter-spacing:21.495836px;}
.ls1e{letter-spacing:21.501660px;}
.ls9{letter-spacing:22.374245px;}
.ls1f{letter-spacing:22.451936px;}
.ls1a{letter-spacing:22.703729px;}
.ls8{letter-spacing:23.047916px;}
.lsa{letter-spacing:23.905842px;}
.ls1d{letter-spacing:24.486130px;}
.ls21{letter-spacing:28.538732px;}
.ls22{letter-spacing:30.304672px;}
.ls3{letter-spacing:35.868707px;}
.ls17{letter-spacing:431.510336px;}
.ls1c{letter-spacing:510.113282px;}
.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;}
}
.ws5{word-spacing:-14.944500px;}
.ws1a{word-spacing:-11.955000px;}
.wse4{word-spacing:-9.564000px;}
.ws72{word-spacing:-1.135782px;}
.wsf1{word-spacing:-1.076124px;}
.ws15{word-spacing:-0.968382px;}
.wsfb{word-spacing:-0.896670px;}
.wsd3{word-spacing:-0.836713px;}
.ws39{word-spacing:-0.717336px;}
.ws59{word-spacing:-0.657558px;}
.wsd6{word-spacing:-0.597900px;}
.wsec{word-spacing:-0.538002px;}
.ws45{word-spacing:-0.418446px;}
.wsc8{word-spacing:-0.358489px;}
.ws78{word-spacing:-0.299129px;}
.ws8b{word-spacing:-0.239112px;}
.ws11b{word-spacing:-0.143556px;}
.ws105{word-spacing:-0.119556px;}
.ws9d{word-spacing:-0.059778px;}
.ws6{word-spacing:-0.053796px;}
.wsa9{word-spacing:-0.041844px;}
.ws52{word-spacing:0.000000px;}
.ws9e{word-spacing:0.179334px;}
.ws3f{word-spacing:0.298890px;}
.wsd{word-spacing:0.322776px;}
.wsd2{word-spacing:0.597900px;}
.ws67{word-spacing:0.657558px;}
.ws10a{word-spacing:0.764833px;}
.ws10e{word-spacing:0.812844px;}
.ws100{word-spacing:0.896670px;}
.ws6b{word-spacing:0.896730px;}
.wsc5{word-spacing:1.016166px;}
.ws20{word-spacing:1.076124px;}
.ws95{word-spacing:1.135543px;}
.ws74{word-spacing:1.135782px;}
.wsc7{word-spacing:1.195560px;}
.ws87{word-spacing:1.254920px;}
.ws5a{word-spacing:1.255338px;}
.wsa1{word-spacing:1.315116px;}
.wsa2{word-spacing:1.315534px;}
.ws21{word-spacing:1.374894px;}
.wsda{word-spacing:1.374954px;}
.wsb{word-spacing:1.613880px;}
.wsc4{word-spacing:1.733741px;}
.ws108{word-spacing:1.960620px;}
.wsa3{word-spacing:2.092589px;}
.ws8c{word-spacing:2.152008px;}
.ws111{word-spacing:2.199433px;}
.ws14{word-spacing:2.259486px;}
.wse3{word-spacing:2.390857px;}
.ws8e{word-spacing:2.570454px;}
.ws8d{word-spacing:2.690189px;}
.wsa0{word-spacing:2.749788px;}
.ws13{word-spacing:2.958780px;}
.ws11a{word-spacing:2.964410px;}
.ws9f{word-spacing:2.989020px;}
.ws85{word-spacing:3.108300px;}
.ws28{word-spacing:3.168413px;}
.ws121{word-spacing:3.203844px;}
.wsdd{word-spacing:3.287850px;}
.ws106{word-spacing:3.586620px;}
.wsb7{word-spacing:3.706057px;}
.ws2b{word-spacing:3.766074px;}
.wsf4{word-spacing:3.945348px;}
.ws109{word-spacing:3.968821px;}
.wsb4{word-spacing:4.124264px;}
.ws2f{word-spacing:4.208160px;}
.ws83{word-spacing:4.303609px;}
.ws3d{word-spacing:4.363674px;}
.ws44{word-spacing:4.483051px;}
.ws6a{word-spacing:4.483350px;}
.ws110{word-spacing:4.542996px;}
.ws46{word-spacing:4.603085px;}
.wscd{word-spacing:4.662505px;}
.wse1{word-spacing:4.736198px;}
.wse2{word-spacing:4.743361px;}
.ws82{word-spacing:4.781809px;}
.ws30{word-spacing:4.782000px;}
.ws107{word-spacing:4.782240px;}
.ws7b{word-spacing:4.841898px;}
.ws68{word-spacing:4.842018px;}
.ws38{word-spacing:4.961574px;}
.wsdb{word-spacing:5.021292px;}
.wsf2{word-spacing:5.081130px;}
.ws34{word-spacing:5.260464px;}
.wsdf{word-spacing:5.260703px;}
.ws119{word-spacing:5.308020px;}
.wsa4{word-spacing:5.380140px;}
.wsa8{word-spacing:5.421846px;}
.wsd1{word-spacing:5.499516px;}
.ws8a{word-spacing:5.499576px;}
.wsde{word-spacing:5.798346px;}
.ws63{word-spacing:5.858244px;}
.wsf0{word-spacing:5.858364px;}
.ws71{word-spacing:5.928193px;}
.ws53{word-spacing:5.964120px;}
.ws9c{word-spacing:5.970426px;}
.wse5{word-spacing:5.977452px;}
.ws4f{word-spacing:5.977740px;}
.ws3{word-spacing:5.977800px;}
.wsfc{word-spacing:6.037757px;}
.ws12{word-spacing:6.078948px;}
.ws84{word-spacing:6.121008px;}
.ws80{word-spacing:6.157134px;}
.ws9a{word-spacing:6.208878px;}
.ws103{word-spacing:6.216912px;}
.ws9b{word-spacing:6.276690px;}
.wsb2{word-spacing:6.396545px;}
.wsc{word-spacing:6.455735px;}
.wsee{word-spacing:6.455964px;}
.ws11c{word-spacing:6.503807px;}
.wsac{word-spacing:6.543846px;}
.wsae{word-spacing:6.544068px;}
.ws1{word-spacing:6.575400px;}
.wsad{word-spacing:6.575939px;}
.ws122{word-spacing:6.599208px;}
.wseb{word-spacing:6.635358px;}
.ws43{word-spacing:6.695136px;}
.ws16{word-spacing:6.724500px;}
.ws81{word-spacing:6.754794px;}
.ws94{word-spacing:6.934248px;}
.ws31{word-spacing:6.994205px;}
.wsfd{word-spacing:7.113582px;}
.ws6e{word-spacing:7.173360px;}
.ws69{word-spacing:7.233138px;}
.wscc{word-spacing:7.292976px;}
.ws1c{word-spacing:7.352395px;}
.ws96{word-spacing:7.352694px;}
.ws118{word-spacing:7.412196px;}
.wsd9{word-spacing:7.472370px;}
.ws115{word-spacing:7.507597px;}
.wsb8{word-spacing:7.651823px;}
.ws65{word-spacing:7.771200px;}
.wsbe{word-spacing:7.831217px;}
.ws10f{word-spacing:7.890348px;}
.ws40{word-spacing:7.890636px;}
.ws3e{word-spacing:7.950594px;}
.ws1f{word-spacing:8.070030px;}
.wsab{word-spacing:8.249364px;}
.wsb3{word-spacing:8.249424px;}
.wsb5{word-spacing:8.308843px;}
.ws58{word-spacing:8.309142px;}
.ws26{word-spacing:8.368860px;}
.ws90{word-spacing:8.428818px;}
.ws25{word-spacing:8.488476px;}
.ws73{word-spacing:8.667631px;}
.ws47{word-spacing:8.667810px;}
.ws97{word-spacing:8.787366px;}
.wsc9{word-spacing:8.907042px;}
.ws37{word-spacing:8.966700px;}
.wsff{word-spacing:9.026478px;}
.ws4b{word-spacing:9.086435px;}
.wsd4{word-spacing:9.205872px;}
.wsed{word-spacing:9.265590px;}
.ws3a{word-spacing:9.325248px;}
.ws7c{word-spacing:9.444924px;}
.wsd5{word-spacing:9.504702px;}
.ws79{word-spacing:9.564480px;}
.ws4d{word-spacing:9.684036px;}
.wsa6{word-spacing:9.863370px;}
.wsaa{word-spacing:9.923148px;}
.ws6f{word-spacing:9.982926px;}
.ws89{word-spacing:10.042704px;}
.ws7d{word-spacing:10.102482px;}
.ws11f{word-spacing:10.185325px;}
.ws120{word-spacing:10.185947px;}
.wsf{word-spacing:10.436424px;}
.ws22{word-spacing:10.461150px;}
.wsf9{word-spacing:10.520510px;}
.ws114{word-spacing:10.568124px;}
.ws101{word-spacing:10.640484px;}
.wscf{word-spacing:10.640544px;}
.ws60{word-spacing:10.759920px;}
.ws64{word-spacing:10.760040px;}
.wsbf{word-spacing:10.819938px;}
.ws4a{word-spacing:10.939314px;}
.ws51{word-spacing:10.939374px;}
.ws48{word-spacing:11.118708px;}
.ws49{word-spacing:11.118768px;}
.ws10d{word-spacing:11.237748px;}
.wsf6{word-spacing:11.357820px;}
.wsd0{word-spacing:11.417538px;}
.ws5d{word-spacing:11.477376px;}
.wsb9{word-spacing:11.477555px;}
.ws77{word-spacing:11.536975px;}
.wsce{word-spacing:11.537572px;}
.wsa{word-spacing:11.619667px;}
.ws92{word-spacing:11.656710px;}
.wsb6{word-spacing:11.716368px;}
.wscb{word-spacing:11.776386px;}
.ws8{word-spacing:11.835066px;}
.ws70{word-spacing:11.955600px;}
.ws54{word-spacing:11.955779px;}
.wsd7{word-spacing:12.434003px;}
.ws10{word-spacing:12.480618px;}
.ws61{word-spacing:12.493602px;}
.wsf7{word-spacing:12.553380px;}
.wsaf{word-spacing:12.613397px;}
.ws7e{word-spacing:12.912048px;}
.ws6c{word-spacing:12.912227px;}
.ws3c{word-spacing:12.971647px;}
.ws27{word-spacing:13.031604px;}
.ws10c{word-spacing:13.054525px;}
.ws36{word-spacing:13.151160px;}
.ws11{word-spacing:13.287612px;}
.ws5b{word-spacing:13.450050px;}
.wsef{word-spacing:13.569606px;}
.wsf3{word-spacing:13.689162px;}
.ws35{word-spacing:13.748940px;}
.ws1b{word-spacing:13.808658px;}
.ws98{word-spacing:14.227164px;}
.wsfa{word-spacing:14.286882px;}
.ws0{word-spacing:14.346000px;}
.ws86{word-spacing:14.406259px;}
.ws5e{word-spacing:14.466276px;}
.wsf5{word-spacing:14.645670px;}
.wsbc{word-spacing:14.705089px;}
.ws23{word-spacing:14.765106px;}
.ws2d{word-spacing:14.765166px;}
.ws41{word-spacing:14.884483px;}
.ws55{word-spacing:14.884722px;}
.wsc3{word-spacing:14.944500px;}
.ws3b{word-spacing:15.004517px;}
.ws99{word-spacing:15.063877px;}
.ws75{word-spacing:15.243330px;}
.wsc0{word-spacing:15.362707px;}
.ws2a{word-spacing:15.422724px;}
.ws113{word-spacing:15.493489px;}
.ws57{word-spacing:15.900948px;}
.ws42{word-spacing:16.080282px;}
.ws112{word-spacing:16.163686px;}
.wsbd{word-spacing:16.319155px;}
.wsa5{word-spacing:16.558506px;}
.wsd8{word-spacing:16.617985px;}
.ws1d{word-spacing:16.618284px;}
.ws2c{word-spacing:16.677942px;}
.wse7{word-spacing:16.689180px;}
.ws1e{word-spacing:16.737840px;}
.wsca{word-spacing:16.737960px;}
.ws33{word-spacing:16.917174px;}
.ws4e{word-spacing:17.156286px;}
.ws29{word-spacing:17.275842px;}
.ws10b{word-spacing:17.502263px;}
.ws91{word-spacing:17.634510px;}
.wsdc{word-spacing:17.694408px;}
.ws66{word-spacing:17.754066px;}
.ws7a{word-spacing:17.813844px;}
.wsb0{word-spacing:17.933221px;}
.ws19{word-spacing:17.933400px;}
.ws104{word-spacing:17.993178px;}
.ws62{word-spacing:18.112614px;}
.ws93{word-spacing:18.172632px;}
.wsea{word-spacing:18.232051px;}
.ws5f{word-spacing:18.232290px;}
.ws2e{word-spacing:18.267240px;}
.ws117{word-spacing:19.127617px;}
.ws8f{word-spacing:19.188439px;}
.ws24{word-spacing:19.188798px;}
.wse{word-spacing:19.205118px;}
.ws18{word-spacing:19.689336px;}
.ws102{word-spacing:20.085408px;}
.wsc2{word-spacing:20.145485px;}
.ws76{word-spacing:20.264742px;}
.wsa7{word-spacing:20.308894px;}
.wsc6{word-spacing:20.324341px;}
.wsfe{word-spacing:20.802505px;}
.ws4{word-spacing:20.862462px;}
.ws2{word-spacing:20.862522px;}
.ws88{word-spacing:21.101335px;}
.wsf8{word-spacing:21.280729px;}
.wse0{word-spacing:21.579559px;}
.ws6d{word-spacing:21.938406px;}
.wsc1{word-spacing:22.117800px;}
.ws7f{word-spacing:22.655862px;}
.ws56{word-spacing:22.835196px;}
.ws9{word-spacing:22.863192px;}
.ws32{word-spacing:23.193864px;}
.ws5c{word-spacing:23.313420px;}
.wsba{word-spacing:23.313659px;}
.ws50{word-spacing:25.345872px;}
.ws4c{word-spacing:25.824156px;}
.ws7{word-spacing:27.650983px;}
.wsbb{word-spacing:28.454627px;}
.wsb1{word-spacing:29.829222px;}
.ws116{word-spacing:31.800109px;}
.ws17{word-spacing:33.084540px;}
.ws11d{word-spacing:67.617480px;}
.ws11e{word-spacing:75.077400px;}
.wse6{word-spacing:82.345080px;}
.wse9{word-spacing:163.113000px;}
.wse8{word-spacing:211.938000px;}
._9{margin-left:-11.880000px;}
._a{margin-left:-8.160059px;}
._1{margin-left:-5.738400px;}
._d{margin-left:-4.721804px;}
._0{margin-left:-3.586500px;}
._3{margin-left:-2.301390px;}
._2{margin-left:-1.255566px;}
._b{width:1.049250px;}
._7{width:2.988900px;}
._1a{width:4.701489px;}
._6{width:14.686200px;}
._f{width:15.751500px;}
._5{width:18.505555px;}
._8{width:19.726631px;}
._10{width:21.221130px;}
._4{width:24.895979px;}
._11{width:27.378275px;}
._c{width:29.889000px;}
._e{width:33.474143px;}
._12{width:42.663529px;}
._15{width:72.693360px;}
._13{width:153.648000px;}
._17{width:187.026000px;}
._16{width:198.984000px;}
._18{width:211.941000px;}
._19{width:223.899000px;}
._14{width:234.378378px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.256000px;}
.fs5{font-size:41.844000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:42.288000px;}
.fs8{font-size:47.520000px;}
.fs4{font-size:47.820000px;}
.fsa{font-size:48.000000px;}
.fs3{font-size:53.796000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.778000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:60.120000px;}
.fs1{font-size:65.754000px;}
.fs0{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y61{bottom:32.862000px;}
.y5c{bottom:40.743000px;}
.ya3{bottom:40.743450px;}
.y14a{bottom:40.743645px;}
.y5f{bottom:43.566450px;}
.y5e{bottom:56.525040px;}
.y60{bottom:90.000000px;}
.y36{bottom:113.332350px;}
.y96{bottom:113.332500px;}
.y35{bottom:126.782850px;}
.y5b{bottom:131.264850px;}
.y95{bottom:131.265000px;}
.ya2{bottom:131.266500px;}
.y34{bottom:140.231850px;}
.y149{bottom:146.956395px;}
.y5a{bottom:149.197350px;}
.y94{bottom:149.197500px;}
.ya1{bottom:149.199000px;}
.y148{bottom:160.406895px;}
.yfb{bottom:167.130000px;}
.y59{bottom:167.131350px;}
.y93{bottom:167.131500px;}
.y33{bottom:171.961350px;}
.y147{bottom:173.855895px;}
.y58{bottom:185.063850px;}
.y92{bottom:185.064000px;}
.y146{bottom:187.306395px;}
.y32{bottom:189.893850px;}
.yd0{bottom:189.909000px;}
.y145{bottom:200.755395px;}
.y57{bottom:202.996350px;}
.y91{bottom:202.996500px;}
.y31{bottom:207.827850px;}
.y144{bottom:214.204395px;}
.ycf{bottom:218.262000px;}
.y56{bottom:220.928850px;}
.y90{bottom:220.929000px;}
.yfa{bottom:221.305500px;}
.y30{bottom:225.760350px;}
.y143{bottom:227.654895px;}
.yce{bottom:236.194500px;}
.y55{bottom:238.861350px;}
.y8f{bottom:238.861500px;}
.ya0{bottom:238.863000px;}
.yf9{bottom:239.238000px;}
.y142{bottom:241.103895px;}
.y2f{bottom:243.692850px;}
.ycd{bottom:254.128500px;}
.y141{bottom:254.552895px;}
.y8e{bottom:256.795500px;}
.yf8{bottom:257.170500px;}
.y2e{bottom:261.625350px;}
.y140{bottom:268.003395px;}
.ycc{bottom:272.061000px;}
.y8d{bottom:274.728000px;}
.yf7{bottom:275.103000px;}
.y2d{bottom:279.557850px;}
.y13f{bottom:281.452395px;}
.y54{bottom:285.874350px;}
.ycb{bottom:289.993500px;}
.y8c{bottom:292.660500px;}
.yf6{bottom:293.037000px;}
.y13e{bottom:294.901395px;}
.y2c{bottom:297.490350px;}
.y53{bottom:303.806850px;}
.yca{bottom:307.926000px;}
.y13d{bottom:308.351895px;}
.y8b{bottom:310.593000px;}
.yf5{bottom:310.969500px;}
.y2b{bottom:315.424350px;}
.y13c{bottom:321.800895px;}
.yc9{bottom:325.858500px;}
.y8a{bottom:328.525500px;}
.yf4{bottom:328.902000px;}
.y2a{bottom:333.356850px;}
.y52{bottom:334.099350px;}
.y9f{bottom:334.464000px;}
.y13b{bottom:335.251395px;}
.yc8{bottom:343.791000px;}
.y89{bottom:346.458000px;}
.y10f{bottom:346.459500px;}
.y13a{bottom:348.700395px;}
.y29{bottom:351.841350px;}
.y51{bottom:352.031850px;}
.yf3{bottom:352.420500px;}
.yc7{bottom:361.725000px;}
.y139{bottom:362.149395px;}
.y88{bottom:364.392000px;}
.y28{bottom:369.773850px;}
.y50{bottom:369.964350px;}
.y138{bottom:375.599895px;}
.yc6{bottom:379.657500px;}
.y9e{bottom:380.655000px;}
.y87{bottom:382.324500px;}
.yf2{bottom:382.575000px;}
.y27{bottom:387.706350px;}
.y4f{bottom:387.896850px;}
.y137{bottom:389.048895px;}
.y9d{bottom:394.105500px;}
.yc5{bottom:397.590000px;}
.y86{bottom:400.257000px;}
.yf1{bottom:400.507500px;}
.y136{bottom:402.497895px;}
.y26{bottom:405.638850px;}
.y4e{bottom:405.830850px;}
.y9c{bottom:407.554500px;}
.y135{bottom:415.948410px;}
.y85{bottom:418.189500px;}
.yf0{bottom:418.440000px;}
.yc4{bottom:420.367500px;}
.y9b{bottom:421.003500px;}
.y25{bottom:423.571350px;}
.y4d{bottom:423.763350px;}
.y134{bottom:429.397410px;}
.y84{bottom:436.122000px;}
.yef{bottom:436.372500px;}
.y24{bottom:441.503850px;}
.y4c{bottom:441.695850px;}
.y133{bottom:442.847925px;}
.yc3{bottom:443.242500px;}
.y83{bottom:454.054500px;}
.y10e{bottom:454.056000px;}
.yee{bottom:454.305000px;}
.y132{bottom:456.296925px;}
.y23{bottom:459.437850px;}
.y4b{bottom:459.628350px;}
.y131{bottom:469.745925px;}
.yc2{bottom:471.597000px;}
.y10d{bottom:471.988500px;}
.yed{bottom:472.239000px;}
.y22{bottom:477.370350px;}
.y4a{bottom:477.560850px;}
.y82{bottom:481.011000px;}
.y130{bottom:483.196440px;}
.yc1{bottom:489.529500px;}
.y10c{bottom:489.921000px;}
.yec{bottom:490.171500px;}
.y21{bottom:495.302850px;}
.y49{bottom:495.494850px;}
.y12f{bottom:496.645440px;}
.yc0{bottom:507.462000px;}
.y10b{bottom:507.853500px;}
.yeb{bottom:508.104000px;}
.y12e{bottom:510.094440px;}
.y81{bottom:511.047000px;}
.y20{bottom:513.235350px;}
.y48{bottom:513.427350px;}
.y12d{bottom:523.544955px;}
.y10a{bottom:525.786000px;}
.yea{bottom:526.036500px;}
.y47{bottom:531.359850px;}
.ybf{bottom:535.657500px;}
.y12c{bottom:536.993955px;}
.y1f{bottom:539.183850px;}
.y109{bottom:543.718500px;}
.ye9{bottom:543.969000px;}
.y46{bottom:549.292350px;}
.y80{bottom:549.547500px;}
.y12b{bottom:550.444470px;}
.ye8{bottom:561.903000px;}
.y12a{bottom:563.893470px;}
.ybe{bottom:564.025500px;}
.y45{bottom:567.224850px;}
.y7f{bottom:567.480000px;}
.y1e{bottom:576.044850px;}
.y129{bottom:577.342470px;}
.ye7{bottom:579.835500px;}
.y44{bottom:585.157350px;}
.y7e{bottom:585.412500px;}
.y128{bottom:590.792985px;}
.y1d{bottom:590.987865px;}
.ye6{bottom:597.768000px;}
.ybd{bottom:600.105000px;}
.y43{bottom:603.091350px;}
.y7d{bottom:603.345000px;}
.y127{bottom:604.241985px;}
.y108{bottom:604.888500px;}
.y1c{bottom:606.482865px;}
.ye5{bottom:615.700500px;}
.y126{bottom:617.690985px;}
.ybc{bottom:618.039000px;}
.y107{bottom:618.337500px;}
.y42{bottom:621.023850px;}
.y7c{bottom:621.277500px;}
.y1b{bottom:621.427380px;}
.y125{bottom:631.141500px;}
.y106{bottom:631.786500px;}
.ye4{bottom:633.633000px;}
.ybb{bottom:635.971500px;}
.y1a{bottom:636.371895px;}
.y41{bottom:638.956350px;}
.y7b{bottom:639.211500px;}
.y124{bottom:644.590500px;}
.y105{bottom:645.237000px;}
.y19{bottom:651.314910px;}
.ye3{bottom:651.565500px;}
.yba{bottom:653.904000px;}
.y40{bottom:656.888850px;}
.y7a{bottom:657.144000px;}
.y123{bottom:658.039500px;}
.y104{bottom:658.686000px;}
.y18{bottom:666.259425px;}
.ye2{bottom:669.499500px;}
.yb9{bottom:671.836500px;}
.y103{bottom:672.135000px;}
.y3f{bottom:674.821350px;}
.y79{bottom:675.076500px;}
.y122{bottom:680.232000px;}
.y17{bottom:681.203940px;}
.y102{bottom:685.585500px;}
.yb8{bottom:689.769000px;}
.y3e{bottom:692.753850px;}
.y78{bottom:693.009000px;}
.ye1{bottom:693.018000px;}
.y16{bottom:696.146955px;}
.y101{bottom:699.034500px;}
.yb7{bottom:707.701500px;}
.y121{bottom:708.252000px;}
.y3d{bottom:710.687850px;}
.y77{bottom:710.941500px;}
.y15{bottom:711.091470px;}
.y100{bottom:713.082000px;}
.y9a{bottom:715.882980px;}
.ye0{bottom:723.171000px;}
.yb6{bottom:725.674500px;}
.y14{bottom:726.035985px;}
.y120{bottom:726.184500px;}
.yff{bottom:726.531000px;}
.y3c{bottom:728.620350px;}
.y76{bottom:728.874000px;}
.y13{bottom:740.979000px;}
.ydf{bottom:741.105000px;}
.yb5{bottom:743.607000px;}
.y11f{bottom:744.117000px;}
.y3b{bottom:746.552850px;}
.y75{bottom:746.808000px;}
.yfe{bottom:752.385000px;}
.y12{bottom:755.923515px;}
.yde{bottom:759.037500px;}
.yb4{bottom:761.539500px;}
.y11e{bottom:762.049500px;}
.y3a{bottom:764.485350px;}
.y74{bottom:764.740500px;}
.yfd{bottom:765.834000px;}
.y11{bottom:770.868030px;}
.ydd{bottom:776.970000px;}
.yb3{bottom:779.472000px;}
.y11d{bottom:779.983500px;}
.y39{bottom:782.417850px;}
.y73{bottom:782.673000px;}
.y10{bottom:785.811000px;}
.ydc{bottom:794.902500px;}
.yb2{bottom:797.404500px;}
.y11c{bottom:797.916000px;}
.y72{bottom:800.605500px;}
.yf{bottom:800.755515px;}
.yfc{bottom:803.439000px;}
.y38{bottom:812.710350px;}
.ydb{bottom:812.835000px;}
.yb1{bottom:815.338500px;}
.ye{bottom:815.700030px;}
.y11b{bottom:815.848500px;}
.y99{bottom:818.212500px;}
.y71{bottom:818.538000px;}
.y37{bottom:830.642850px;}
.yd{bottom:830.643000px;}
.yda{bottom:830.767500px;}
.yb0{bottom:833.271000px;}
.y11a{bottom:833.781000px;}
.y70{bottom:836.470500px;}
.yaf{bottom:851.242500px;}
.y119{bottom:851.713500px;}
.yd9{bottom:854.287500px;}
.y6f{bottom:854.404500px;}
.yae{bottom:869.175000px;}
.y118{bottom:869.646000px;}
.y6e{bottom:872.337000px;}
.yd8{bottom:884.440500px;}
.yad{bottom:887.109000px;}
.y117{bottom:887.580000px;}
.y7{bottom:889.690500px;}
.ya{bottom:890.184000px;}
.y6d{bottom:890.269500px;}
.yd7{bottom:902.373000px;}
.yac{bottom:905.041500px;}
.yc{bottom:905.184000px;}
.y116{bottom:905.512500px;}
.y6{bottom:908.184000px;}
.y6c{bottom:908.202000px;}
.y9{bottom:908.676000px;}
.yd6{bottom:920.307000px;}
.yab{bottom:922.974000px;}
.y115{bottom:923.445000px;}
.yb{bottom:923.676000px;}
.y6b{bottom:926.134500px;}
.y5{bottom:926.676000px;}
.y8{bottom:927.169500px;}
.yd5{bottom:938.239500px;}
.yaa{bottom:940.906500px;}
.y114{bottom:941.377500px;}
.y6a{bottom:944.068500px;}
.y4{bottom:945.663000px;}
.yd4{bottom:956.172000px;}
.ya9{bottom:958.839000px;}
.y113{bottom:959.310000px;}
.y69{bottom:962.001000px;}
.y3{bottom:964.377000px;}
.yd3{bottom:974.104500px;}
.y112{bottom:977.244000px;}
.y68{bottom:979.933500px;}
.ya8{bottom:981.616500px;}
.yd2{bottom:992.037000px;}
.y111{bottom:995.176500px;}
.y67{bottom:997.866000px;}
.yd1{bottom:1009.969500px;}
.ya7{bottom:1009.971000px;}
.y66{bottom:1015.798500px;}
.y110{bottom:1017.816000px;}
.ya6{bottom:1027.903500px;}
.y65{bottom:1033.731000px;}
.y2{bottom:1039.309500px;}
.ya5{bottom:1045.836000px;}
.y64{bottom:1051.665000px;}
.ya4{bottom:1063.768500px;}
.y63{bottom:1069.597500px;}
.y1{bottom:1081.152000px;}
.y98{bottom:1081.701000px;}
.y97{bottom:1099.633500px;}
.y62{bottom:1099.635000px;}
.y5d{bottom:1135.350000px;}
.hf{height:29.362078px;}
.h7{height:32.900160px;}
.h13{height:33.134166px;}
.h14{height:33.140166px;}
.h12{height:33.187080px;}
.hd{height:35.695312px;}
.h6{height:37.334424px;}
.h5{height:37.603404px;}
.hc{height:38.759766px;}
.h3{height:40.828374px;}
.h4{height:41.127264px;}
.h10{height:41.485932px;}
.hb{height:41.696016px;}
.ha{height:41.743477px;}
.h9{height:43.066406px;}
.he{height:43.804688px;}
.h8{height:44.833500px;}
.h2{height:45.238752px;}
.h11{height:49.892796px;}
.h1{height:98.700480px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:25.500000px;}
.x19{left:59.463030px;}
.x1a{left:65.035500px;}
.x11{left:73.446015px;}
.x27{left:84.039000px;}
.x13{left:85.401015px;}
.x10{left:88.389015px;}
.x28{left:89.682000px;}
.x29{left:98.983500px;}
.x1c{left:101.548515px;}
.x24{left:108.051000px;}
.x1{left:109.995000px;}
.x6{left:137.631000px;}
.x26{left:140.319000px;}
.x3{left:155.512500px;}
.x5{left:157.483500px;}
.x4{left:159.979500px;}
.x1e{left:176.343000px;}
.x1d{left:197.317500px;}
.x21{left:198.747390px;}
.x23{left:202.314450px;}
.x12{left:203.428515px;}
.x22{left:218.398920px;}
.x18{left:219.900120px;}
.x25{left:238.953000px;}
.x8{left:351.987000px;}
.x2{left:371.328000px;}
.xa{left:392.559000px;}
.x7{left:397.209000px;}
.xb{left:412.473000px;}
.x9{left:435.000000px;}
.x17{left:451.500120px;}
.x14{left:467.967015px;}
.x2c{left:473.944500px;}
.x15{left:482.910030px;}
.x2d{left:495.355500px;}
.x16{left:498.000120px;}
.x20{left:505.038184px;}
.x30{left:536.341422px;}
.x1f{left:577.320000px;}
.xd{left:601.633500px;}
.x2a{left:602.641500px;}
.x2b{left:614.417985px;}
.x31{left:617.266413px;}
.xc{left:644.083500px;}
.xe{left:652.546500px;}
.xf{left:654.534015px;}
.x2e{left:769.741461px;}
.x2f{left:830.279936px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.279947pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000053pt;}
.lsc{letter-spacing:0.000776pt;}
.ls12{letter-spacing:0.003901pt;}
.ls14{letter-spacing:0.037949pt;}
.lsf{letter-spacing:0.045309pt;}
.ls23{letter-spacing:2.120960pt;}
.ls24{letter-spacing:2.126187pt;}
.ls5{letter-spacing:2.180949pt;}
.lsd{letter-spacing:2.652251pt;}
.ls25{letter-spacing:2.654341pt;}
.ls7{letter-spacing:2.654421pt;}
.ls15{letter-spacing:2.656115pt;}
.ls6{letter-spacing:2.656800pt;}
.ls16{letter-spacing:2.707717pt;}
.lse{letter-spacing:8.373039pt;}
.ls1b{letter-spacing:11.806819pt;}
.ls11{letter-spacing:14.755562pt;}
.ls19{letter-spacing:14.756153pt;}
.ls13{letter-spacing:14.761486pt;}
.ls0{letter-spacing:15.151733pt;}
.ls1{letter-spacing:15.177486pt;}
.ls18{letter-spacing:16.662086pt;}
.ls10{letter-spacing:17.413395pt;}
.lsb{letter-spacing:18.975757pt;}
.ls20{letter-spacing:19.107410pt;}
.ls1e{letter-spacing:19.112587pt;}
.ls9{letter-spacing:19.888218pt;}
.ls1f{letter-spacing:19.957276pt;}
.ls1a{letter-spacing:20.181092pt;}
.ls8{letter-spacing:20.487037pt;}
.lsa{letter-spacing:21.249637pt;}
.ls1d{letter-spacing:21.765449pt;}
.ls21{letter-spacing:25.367762pt;}
.ls22{letter-spacing:26.937486pt;}
.ls3{letter-spacing:31.883295pt;}
.ls17{letter-spacing:383.564743pt;}
.ls1c{letter-spacing:453.434029pt;}
.ws5{word-spacing:-13.284000pt;}
.ws1a{word-spacing:-10.626667pt;}
.wse4{word-spacing:-8.501333pt;}
.ws72{word-spacing:-1.009584pt;}
.wsf1{word-spacing:-0.956554pt;}
.ws15{word-spacing:-0.860784pt;}
.wsfb{word-spacing:-0.797040pt;}
.wsd3{word-spacing:-0.743745pt;}
.ws39{word-spacing:-0.637632pt;}
.ws59{word-spacing:-0.584496pt;}
.wsd6{word-spacing:-0.531466pt;}
.wsec{word-spacing:-0.478224pt;}
.ws45{word-spacing:-0.371952pt;}
.wsc8{word-spacing:-0.318657pt;}
.ws78{word-spacing:-0.265893pt;}
.ws8b{word-spacing:-0.212544pt;}
.ws11b{word-spacing:-0.127605pt;}
.ws105{word-spacing:-0.106272pt;}
.ws9d{word-spacing:-0.053136pt;}
.ws6{word-spacing:-0.047819pt;}
.wsa9{word-spacing:-0.037195pt;}
.ws52{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.159408pt;}
.ws3f{word-spacing:0.265680pt;}
.wsd{word-spacing:0.286912pt;}
.wsd2{word-spacing:0.531466pt;}
.ws67{word-spacing:0.584496pt;}
.ws10a{word-spacing:0.679852pt;}
.ws10e{word-spacing:0.722528pt;}
.ws100{word-spacing:0.797040pt;}
.ws6b{word-spacing:0.797093pt;}
.wsc5{word-spacing:0.903259pt;}
.ws20{word-spacing:0.956554pt;}
.ws95{word-spacing:1.009371pt;}
.ws74{word-spacing:1.009584pt;}
.wsc7{word-spacing:1.062720pt;}
.ws87{word-spacing:1.115484pt;}
.ws5a{word-spacing:1.115856pt;}
.wsa1{word-spacing:1.168992pt;}
.wsa2{word-spacing:1.169364pt;}
.ws21{word-spacing:1.222128pt;}
.wsda{word-spacing:1.222181pt;}
.wsb{word-spacing:1.434560pt;}
.wsc4{word-spacing:1.541103pt;}
.ws108{word-spacing:1.742773pt;}
.wsa3{word-spacing:1.860079pt;}
.ws8c{word-spacing:1.912896pt;}
.ws111{word-spacing:1.955052pt;}
.ws14{word-spacing:2.008432pt;}
.wse3{word-spacing:2.125206pt;}
.ws8e{word-spacing:2.284848pt;}
.ws8d{word-spacing:2.391279pt;}
.wsa0{word-spacing:2.444256pt;}
.ws13{word-spacing:2.630027pt;}
.ws11a{word-spacing:2.635031pt;}
.ws9f{word-spacing:2.656906pt;}
.ws85{word-spacing:2.762933pt;}
.ws28{word-spacing:2.816367pt;}
.ws121{word-spacing:2.847862pt;}
.wsdd{word-spacing:2.922533pt;}
.ws106{word-spacing:3.188107pt;}
.wsb7{word-spacing:3.294273pt;}
.ws2b{word-spacing:3.347621pt;}
.wsf4{word-spacing:3.506976pt;}
.ws109{word-spacing:3.527841pt;}
.wsb4{word-spacing:3.666012pt;}
.ws2f{word-spacing:3.740587pt;}
.ws83{word-spacing:3.825430pt;}
.ws3d{word-spacing:3.878822pt;}
.ws44{word-spacing:3.984934pt;}
.ws6a{word-spacing:3.985200pt;}
.ws110{word-spacing:4.038218pt;}
.ws46{word-spacing:4.091631pt;}
.wscd{word-spacing:4.144449pt;}
.wse1{word-spacing:4.209954pt;}
.wse2{word-spacing:4.216321pt;}
.ws82{word-spacing:4.250497pt;}
.ws30{word-spacing:4.250667pt;}
.ws107{word-spacing:4.250880pt;}
.ws7b{word-spacing:4.303910pt;}
.ws68{word-spacing:4.304016pt;}
.ws38{word-spacing:4.410288pt;}
.wsdb{word-spacing:4.463371pt;}
.wsf2{word-spacing:4.516560pt;}
.ws34{word-spacing:4.675968pt;}
.wsdf{word-spacing:4.676181pt;}
.ws119{word-spacing:4.718240pt;}
.wsa4{word-spacing:4.782346pt;}
.wsa8{word-spacing:4.819419pt;}
.wsd1{word-spacing:4.888459pt;}
.ws8a{word-spacing:4.888512pt;}
.wsde{word-spacing:5.154086pt;}
.ws63{word-spacing:5.207328pt;}
.wsf0{word-spacing:5.207434pt;}
.ws71{word-spacing:5.269505pt;}
.ws53{word-spacing:5.301440pt;}
.ws9c{word-spacing:5.307045pt;}
.wse5{word-spacing:5.313291pt;}
.ws4f{word-spacing:5.313547pt;}
.ws3{word-spacing:5.313600pt;}
.wsfc{word-spacing:5.366895pt;}
.ws12{word-spacing:5.403509pt;}
.ws84{word-spacing:5.440896pt;}
.ws80{word-spacing:5.473008pt;}
.ws9a{word-spacing:5.519003pt;}
.ws103{word-spacing:5.526144pt;}
.ws9b{word-spacing:5.579280pt;}
.wsb2{word-spacing:5.685818pt;}
.wsc{word-spacing:5.738431pt;}
.wsee{word-spacing:5.738635pt;}
.ws11c{word-spacing:5.781162pt;}
.wsac{word-spacing:5.816752pt;}
.wsae{word-spacing:5.816949pt;}
.ws1{word-spacing:5.844800pt;}
.wsad{word-spacing:5.845279pt;}
.ws122{word-spacing:5.865963pt;}
.wseb{word-spacing:5.898096pt;}
.ws43{word-spacing:5.951232pt;}
.ws16{word-spacing:5.977333pt;}
.ws81{word-spacing:6.004262pt;}
.ws94{word-spacing:6.163776pt;}
.ws31{word-spacing:6.217071pt;}
.wsfd{word-spacing:6.323184pt;}
.ws6e{word-spacing:6.376320pt;}
.ws69{word-spacing:6.429456pt;}
.wscc{word-spacing:6.482645pt;}
.ws1c{word-spacing:6.535462pt;}
.ws96{word-spacing:6.535728pt;}
.ws118{word-spacing:6.588618pt;}
.wsd9{word-spacing:6.642106pt;}
.ws115{word-spacing:6.673419pt;}
.wsb8{word-spacing:6.801621pt;}
.ws65{word-spacing:6.907733pt;}
.wsbe{word-spacing:6.961082pt;}
.ws10f{word-spacing:7.013643pt;}
.ws40{word-spacing:7.013899pt;}
.ws3e{word-spacing:7.067194pt;}
.ws1f{word-spacing:7.173360pt;}
.wsab{word-spacing:7.332768pt;}
.wsb3{word-spacing:7.332821pt;}
.wsb5{word-spacing:7.385638pt;}
.ws58{word-spacing:7.385904pt;}
.ws26{word-spacing:7.438987pt;}
.ws90{word-spacing:7.492282pt;}
.ws25{word-spacing:7.545312pt;}
.ws73{word-spacing:7.704561pt;}
.ws47{word-spacing:7.704720pt;}
.ws97{word-spacing:7.810992pt;}
.wsc9{word-spacing:7.917370pt;}
.ws37{word-spacing:7.970400pt;}
.wsff{word-spacing:8.023536pt;}
.ws4b{word-spacing:8.076831pt;}
.wsd4{word-spacing:8.182997pt;}
.wsed{word-spacing:8.236080pt;}
.ws3a{word-spacing:8.289110pt;}
.ws7c{word-spacing:8.395488pt;}
.wsd5{word-spacing:8.448624pt;}
.ws79{word-spacing:8.501760pt;}
.ws4d{word-spacing:8.608032pt;}
.wsa6{word-spacing:8.767440pt;}
.wsaa{word-spacing:8.820576pt;}
.ws6f{word-spacing:8.873712pt;}
.ws89{word-spacing:8.926848pt;}
.ws7d{word-spacing:8.979984pt;}
.ws11f{word-spacing:9.053622pt;}
.ws120{word-spacing:9.054175pt;}
.wsf{word-spacing:9.276821pt;}
.ws22{word-spacing:9.298800pt;}
.wsf9{word-spacing:9.351564pt;}
.ws114{word-spacing:9.393888pt;}
.ws101{word-spacing:9.458208pt;}
.wscf{word-spacing:9.458261pt;}
.ws60{word-spacing:9.564374pt;}
.ws64{word-spacing:9.564480pt;}
.wsbf{word-spacing:9.617722pt;}
.ws4a{word-spacing:9.723835pt;}
.ws51{word-spacing:9.723888pt;}
.ws48{word-spacing:9.883296pt;}
.ws49{word-spacing:9.883349pt;}
.ws10d{word-spacing:9.989109pt;}
.wsf6{word-spacing:10.095840pt;}
.wsd0{word-spacing:10.148923pt;}
.ws5d{word-spacing:10.202112pt;}
.wsb9{word-spacing:10.202271pt;}
.ws77{word-spacing:10.255089pt;}
.wsce{word-spacing:10.255620pt;}
.wsa{word-spacing:10.328593pt;}
.ws92{word-spacing:10.361520pt;}
.wsb6{word-spacing:10.414550pt;}
.wscb{word-spacing:10.467898pt;}
.ws8{word-spacing:10.520059pt;}
.ws70{word-spacing:10.627200pt;}
.ws54{word-spacing:10.627359pt;}
.wsd7{word-spacing:11.052447pt;}
.ws10{word-spacing:11.093883pt;}
.ws61{word-spacing:11.105424pt;}
.wsf7{word-spacing:11.158560pt;}
.wsaf{word-spacing:11.211909pt;}
.ws7e{word-spacing:11.477376pt;}
.ws6c{word-spacing:11.477535pt;}
.ws3c{word-spacing:11.530353pt;}
.ws27{word-spacing:11.583648pt;}
.ws10c{word-spacing:11.604022pt;}
.ws36{word-spacing:11.689920pt;}
.ws11{word-spacing:11.811211pt;}
.ws5b{word-spacing:11.955600pt;}
.wsef{word-spacing:12.061872pt;}
.wsf3{word-spacing:12.168144pt;}
.ws35{word-spacing:12.221280pt;}
.ws1b{word-spacing:12.274363pt;}
.ws98{word-spacing:12.646368pt;}
.wsfa{word-spacing:12.699451pt;}
.ws0{word-spacing:12.752000pt;}
.ws86{word-spacing:12.805563pt;}
.ws5e{word-spacing:12.858912pt;}
.wsf5{word-spacing:13.018373pt;}
.wsbc{word-spacing:13.071190pt;}
.ws23{word-spacing:13.124539pt;}
.ws2d{word-spacing:13.124592pt;}
.ws41{word-spacing:13.230651pt;}
.ws55{word-spacing:13.230864pt;}
.wsc3{word-spacing:13.284000pt;}
.ws3b{word-spacing:13.337349pt;}
.ws99{word-spacing:13.390113pt;}
.ws75{word-spacing:13.549627pt;}
.wsc0{word-spacing:13.655739pt;}
.ws2a{word-spacing:13.709088pt;}
.ws113{word-spacing:13.771990pt;}
.ws57{word-spacing:14.134176pt;}
.ws42{word-spacing:14.293584pt;}
.ws112{word-spacing:14.367721pt;}
.wsbd{word-spacing:14.505915pt;}
.wsa5{word-spacing:14.718672pt;}
.wsd8{word-spacing:14.771542pt;}
.ws1d{word-spacing:14.771808pt;}
.ws2c{word-spacing:14.824838pt;}
.wse7{word-spacing:14.834827pt;}
.ws1e{word-spacing:14.878080pt;}
.wsca{word-spacing:14.878186pt;}
.ws33{word-spacing:15.037488pt;}
.ws4e{word-spacing:15.250032pt;}
.ws29{word-spacing:15.356304pt;}
.ws10b{word-spacing:15.557568pt;}
.ws91{word-spacing:15.675120pt;}
.wsdc{word-spacing:15.728362pt;}
.ws66{word-spacing:15.781392pt;}
.ws7a{word-spacing:15.834528pt;}
.wsb0{word-spacing:15.940641pt;}
.ws19{word-spacing:15.940800pt;}
.ws104{word-spacing:15.993936pt;}
.ws62{word-spacing:16.100102pt;}
.ws93{word-spacing:16.153450pt;}
.wsea{word-spacing:16.206267pt;}
.ws5f{word-spacing:16.206480pt;}
.ws2e{word-spacing:16.237547pt;}
.ws117{word-spacing:17.002327pt;}
.ws8f{word-spacing:17.056390pt;}
.ws24{word-spacing:17.056709pt;}
.wse{word-spacing:17.071216pt;}
.ws18{word-spacing:17.501632pt;}
.ws102{word-spacing:17.853696pt;}
.wsc2{word-spacing:17.907098pt;}
.ws76{word-spacing:18.013104pt;}
.wsa7{word-spacing:18.052350pt;}
.wsc6{word-spacing:18.066081pt;}
.wsfe{word-spacing:18.491115pt;}
.ws4{word-spacing:18.544411pt;}
.ws2{word-spacing:18.544464pt;}
.ws88{word-spacing:18.756742pt;}
.wsf8{word-spacing:18.916203pt;}
.wse0{word-spacing:19.181830pt;}
.ws6d{word-spacing:19.500806pt;}
.wsc1{word-spacing:19.660267pt;}
.ws7f{word-spacing:20.138544pt;}
.ws56{word-spacing:20.297952pt;}
.ws9{word-spacing:20.322838pt;}
.ws32{word-spacing:20.616768pt;}
.ws5c{word-spacing:20.723040pt;}
.wsba{word-spacing:20.723253pt;}
.ws50{word-spacing:22.529664pt;}
.ws4c{word-spacing:22.954805pt;}
.ws7{word-spacing:24.578651pt;}
.wsbb{word-spacing:25.293002pt;}
.wsb1{word-spacing:26.514864pt;}
.ws116{word-spacing:28.266763pt;}
.ws17{word-spacing:29.408480pt;}
.ws11d{word-spacing:60.104427pt;}
.ws11e{word-spacing:66.735467pt;}
.wse6{word-spacing:73.195627pt;}
.wse9{word-spacing:144.989333pt;}
.wse8{word-spacing:188.389333pt;}
._9{margin-left:-10.560000pt;}
._a{margin-left:-7.253386pt;}
._1{margin-left:-5.100800pt;}
._d{margin-left:-4.197160pt;}
._0{margin-left:-3.188000pt;}
._3{margin-left:-2.045680pt;}
._2{margin-left:-1.116059pt;}
._b{width:0.932667pt;}
._7{width:2.656800pt;}
._1a{width:4.179102pt;}
._6{width:13.054400pt;}
._f{width:14.001333pt;}
._5{width:16.449382pt;}
._8{width:17.534783pt;}
._10{width:18.863227pt;}
._4{width:22.129759pt;}
._11{width:24.336245pt;}
._c{width:26.568000pt;}
._e{width:29.754794pt;}
._12{width:37.923136pt;}
._15{width:64.616320pt;}
._13{width:136.576000pt;}
._17{width:166.245333pt;}
._16{width:176.874667pt;}
._18{width:188.392000pt;}
._19{width:199.021333pt;}
._14{width:208.336336pt;}
.fsd{font-size:34.005333pt;}
.fs5{font-size:37.194667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:37.589333pt;}
.fs8{font-size:42.240000pt;}
.fs4{font-size:42.506667pt;}
.fsa{font-size:42.666667pt;}
.fs3{font-size:47.818667pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.136000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:53.440000pt;}
.fs1{font-size:58.448000pt;}
.fs0{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:29.210667pt;}
.y5c{bottom:36.216000pt;}
.ya3{bottom:36.216400pt;}
.y14a{bottom:36.216573pt;}
.y5f{bottom:38.725733pt;}
.y5e{bottom:50.244480pt;}
.y60{bottom:80.000000pt;}
.y36{bottom:100.739867pt;}
.y96{bottom:100.740000pt;}
.y35{bottom:112.695867pt;}
.y5b{bottom:116.679867pt;}
.y95{bottom:116.680000pt;}
.ya2{bottom:116.681333pt;}
.y34{bottom:124.650533pt;}
.y149{bottom:130.627907pt;}
.y5a{bottom:132.619867pt;}
.y94{bottom:132.620000pt;}
.ya1{bottom:132.621333pt;}
.y148{bottom:142.583907pt;}
.yfb{bottom:148.560000pt;}
.y59{bottom:148.561200pt;}
.y93{bottom:148.561333pt;}
.y33{bottom:152.854533pt;}
.y147{bottom:154.538573pt;}
.y58{bottom:164.501200pt;}
.y92{bottom:164.501333pt;}
.y146{bottom:166.494573pt;}
.y32{bottom:168.794533pt;}
.yd0{bottom:168.808000pt;}
.y145{bottom:178.449240pt;}
.y57{bottom:180.441200pt;}
.y91{bottom:180.441333pt;}
.y31{bottom:184.735867pt;}
.y144{bottom:190.403907pt;}
.ycf{bottom:194.010667pt;}
.y56{bottom:196.381200pt;}
.y90{bottom:196.381333pt;}
.yfa{bottom:196.716000pt;}
.y30{bottom:200.675867pt;}
.y143{bottom:202.359907pt;}
.yce{bottom:209.950667pt;}
.y55{bottom:212.321200pt;}
.y8f{bottom:212.321333pt;}
.ya0{bottom:212.322667pt;}
.yf9{bottom:212.656000pt;}
.y142{bottom:214.314573pt;}
.y2f{bottom:216.615867pt;}
.ycd{bottom:225.892000pt;}
.y141{bottom:226.269240pt;}
.y8e{bottom:228.262667pt;}
.yf8{bottom:228.596000pt;}
.y2e{bottom:232.555867pt;}
.y140{bottom:238.225240pt;}
.ycc{bottom:241.832000pt;}
.y8d{bottom:244.202667pt;}
.yf7{bottom:244.536000pt;}
.y2d{bottom:248.495867pt;}
.y13f{bottom:250.179907pt;}
.y54{bottom:254.110533pt;}
.ycb{bottom:257.772000pt;}
.y8c{bottom:260.142667pt;}
.yf6{bottom:260.477333pt;}
.y13e{bottom:262.134573pt;}
.y2c{bottom:264.435867pt;}
.y53{bottom:270.050533pt;}
.yca{bottom:273.712000pt;}
.y13d{bottom:274.090573pt;}
.y8b{bottom:276.082667pt;}
.yf5{bottom:276.417333pt;}
.y2b{bottom:280.377200pt;}
.y13c{bottom:286.045240pt;}
.yc9{bottom:289.652000pt;}
.y8a{bottom:292.022667pt;}
.yf4{bottom:292.357333pt;}
.y2a{bottom:296.317200pt;}
.y52{bottom:296.977200pt;}
.y9f{bottom:297.301333pt;}
.y13b{bottom:298.001240pt;}
.yc8{bottom:305.592000pt;}
.y89{bottom:307.962667pt;}
.y10f{bottom:307.964000pt;}
.y13a{bottom:309.955907pt;}
.y29{bottom:312.747867pt;}
.y51{bottom:312.917200pt;}
.yf3{bottom:313.262667pt;}
.yc7{bottom:321.533333pt;}
.y139{bottom:321.910573pt;}
.y88{bottom:323.904000pt;}
.y28{bottom:328.687867pt;}
.y50{bottom:328.857200pt;}
.y138{bottom:333.866573pt;}
.yc6{bottom:337.473333pt;}
.y9e{bottom:338.360000pt;}
.y87{bottom:339.844000pt;}
.yf2{bottom:340.066667pt;}
.y27{bottom:344.627867pt;}
.y4f{bottom:344.797200pt;}
.y137{bottom:345.821240pt;}
.y9d{bottom:350.316000pt;}
.yc5{bottom:353.413333pt;}
.y86{bottom:355.784000pt;}
.yf1{bottom:356.006667pt;}
.y136{bottom:357.775907pt;}
.y26{bottom:360.567867pt;}
.y4e{bottom:360.738533pt;}
.y9c{bottom:362.270667pt;}
.y135{bottom:369.731920pt;}
.y85{bottom:371.724000pt;}
.yf0{bottom:371.946667pt;}
.yc4{bottom:373.660000pt;}
.y9b{bottom:374.225333pt;}
.y25{bottom:376.507867pt;}
.y4d{bottom:376.678533pt;}
.y134{bottom:381.686587pt;}
.y84{bottom:387.664000pt;}
.yef{bottom:387.886667pt;}
.y24{bottom:392.447867pt;}
.y4c{bottom:392.618533pt;}
.y133{bottom:393.642600pt;}
.yc3{bottom:393.993333pt;}
.y83{bottom:403.604000pt;}
.y10e{bottom:403.605333pt;}
.yee{bottom:403.826667pt;}
.y132{bottom:405.597267pt;}
.y23{bottom:408.389200pt;}
.y4b{bottom:408.558533pt;}
.y131{bottom:417.551933pt;}
.yc2{bottom:419.197333pt;}
.y10d{bottom:419.545333pt;}
.yed{bottom:419.768000pt;}
.y22{bottom:424.329200pt;}
.y4a{bottom:424.498533pt;}
.y82{bottom:427.565333pt;}
.y130{bottom:429.507947pt;}
.yc1{bottom:435.137333pt;}
.y10c{bottom:435.485333pt;}
.yec{bottom:435.708000pt;}
.y21{bottom:440.269200pt;}
.y49{bottom:440.439867pt;}
.y12f{bottom:441.462613pt;}
.yc0{bottom:451.077333pt;}
.y10b{bottom:451.425333pt;}
.yeb{bottom:451.648000pt;}
.y12e{bottom:453.417280pt;}
.y81{bottom:454.264000pt;}
.y20{bottom:456.209200pt;}
.y48{bottom:456.379867pt;}
.y12d{bottom:465.373293pt;}
.y10a{bottom:467.365333pt;}
.yea{bottom:467.588000pt;}
.y47{bottom:472.319867pt;}
.ybf{bottom:476.140000pt;}
.y12c{bottom:477.327960pt;}
.y1f{bottom:479.274533pt;}
.y109{bottom:483.305333pt;}
.ye9{bottom:483.528000pt;}
.y46{bottom:488.259867pt;}
.y80{bottom:488.486667pt;}
.y12b{bottom:489.283973pt;}
.ye8{bottom:499.469333pt;}
.y12a{bottom:501.238640pt;}
.ybe{bottom:501.356000pt;}
.y45{bottom:504.199867pt;}
.y7f{bottom:504.426667pt;}
.y1e{bottom:512.039867pt;}
.y129{bottom:513.193307pt;}
.ye7{bottom:515.409333pt;}
.y44{bottom:520.139867pt;}
.y7e{bottom:520.366667pt;}
.y128{bottom:525.149320pt;}
.y1d{bottom:525.322547pt;}
.ye6{bottom:531.349333pt;}
.ybd{bottom:533.426667pt;}
.y43{bottom:536.081200pt;}
.y7d{bottom:536.306667pt;}
.y127{bottom:537.103987pt;}
.y108{bottom:537.678667pt;}
.y1c{bottom:539.095880pt;}
.ye5{bottom:547.289333pt;}
.y126{bottom:549.058653pt;}
.ybc{bottom:549.368000pt;}
.y107{bottom:549.633333pt;}
.y42{bottom:552.021200pt;}
.y7c{bottom:552.246667pt;}
.y1b{bottom:552.379893pt;}
.y125{bottom:561.014667pt;}
.y106{bottom:561.588000pt;}
.ye4{bottom:563.229333pt;}
.ybb{bottom:565.308000pt;}
.y1a{bottom:565.663907pt;}
.y41{bottom:567.961200pt;}
.y7b{bottom:568.188000pt;}
.y124{bottom:572.969333pt;}
.y105{bottom:573.544000pt;}
.y19{bottom:578.946587pt;}
.ye3{bottom:579.169333pt;}
.yba{bottom:581.248000pt;}
.y40{bottom:583.901200pt;}
.y7a{bottom:584.128000pt;}
.y123{bottom:584.924000pt;}
.y104{bottom:585.498667pt;}
.y18{bottom:592.230600pt;}
.ye2{bottom:595.110667pt;}
.yb9{bottom:597.188000pt;}
.y103{bottom:597.453333pt;}
.y3f{bottom:599.841200pt;}
.y79{bottom:600.068000pt;}
.y122{bottom:604.650667pt;}
.y17{bottom:605.514613pt;}
.y102{bottom:609.409333pt;}
.yb8{bottom:613.128000pt;}
.y3e{bottom:615.781200pt;}
.y78{bottom:616.008000pt;}
.ye1{bottom:616.016000pt;}
.y16{bottom:618.797293pt;}
.y101{bottom:621.364000pt;}
.yb7{bottom:629.068000pt;}
.y121{bottom:629.557333pt;}
.y3d{bottom:631.722533pt;}
.y77{bottom:631.948000pt;}
.y15{bottom:632.081307pt;}
.y100{bottom:633.850667pt;}
.y9a{bottom:636.340427pt;}
.ye0{bottom:642.818667pt;}
.yb6{bottom:645.044000pt;}
.y14{bottom:645.365320pt;}
.y120{bottom:645.497333pt;}
.yff{bottom:645.805333pt;}
.y3c{bottom:647.662533pt;}
.y76{bottom:647.888000pt;}
.y13{bottom:658.648000pt;}
.ydf{bottom:658.760000pt;}
.yb5{bottom:660.984000pt;}
.y11f{bottom:661.437333pt;}
.y3b{bottom:663.602533pt;}
.y75{bottom:663.829333pt;}
.yfe{bottom:668.786667pt;}
.y12{bottom:671.932013pt;}
.yde{bottom:674.700000pt;}
.yb4{bottom:676.924000pt;}
.y11e{bottom:677.377333pt;}
.y3a{bottom:679.542533pt;}
.y74{bottom:679.769333pt;}
.yfd{bottom:680.741333pt;}
.y11{bottom:685.216027pt;}
.ydd{bottom:690.640000pt;}
.yb3{bottom:692.864000pt;}
.y11d{bottom:693.318667pt;}
.y39{bottom:695.482533pt;}
.y73{bottom:695.709333pt;}
.y10{bottom:698.498667pt;}
.ydc{bottom:706.580000pt;}
.yb2{bottom:708.804000pt;}
.y11c{bottom:709.258667pt;}
.y72{bottom:711.649333pt;}
.yf{bottom:711.782680pt;}
.yfc{bottom:714.168000pt;}
.y38{bottom:722.409200pt;}
.ydb{bottom:722.520000pt;}
.yb1{bottom:724.745333pt;}
.ye{bottom:725.066693pt;}
.y11b{bottom:725.198667pt;}
.y99{bottom:727.300000pt;}
.y71{bottom:727.589333pt;}
.y37{bottom:738.349200pt;}
.yd{bottom:738.349333pt;}
.yda{bottom:738.460000pt;}
.yb0{bottom:740.685333pt;}
.y11a{bottom:741.138667pt;}
.y70{bottom:743.529333pt;}
.yaf{bottom:756.660000pt;}
.y119{bottom:757.078667pt;}
.yd9{bottom:759.366667pt;}
.y6f{bottom:759.470667pt;}
.yae{bottom:772.600000pt;}
.y118{bottom:773.018667pt;}
.y6e{bottom:775.410667pt;}
.yd8{bottom:786.169333pt;}
.yad{bottom:788.541333pt;}
.y117{bottom:788.960000pt;}
.y7{bottom:790.836000pt;}
.ya{bottom:791.274667pt;}
.y6d{bottom:791.350667pt;}
.yd7{bottom:802.109333pt;}
.yac{bottom:804.481333pt;}
.yc{bottom:804.608000pt;}
.y116{bottom:804.900000pt;}
.y6{bottom:807.274667pt;}
.y6c{bottom:807.290667pt;}
.y9{bottom:807.712000pt;}
.yd6{bottom:818.050667pt;}
.yab{bottom:820.421333pt;}
.y115{bottom:820.840000pt;}
.yb{bottom:821.045333pt;}
.y6b{bottom:823.230667pt;}
.y5{bottom:823.712000pt;}
.y8{bottom:824.150667pt;}
.yd5{bottom:833.990667pt;}
.yaa{bottom:836.361333pt;}
.y114{bottom:836.780000pt;}
.y6a{bottom:839.172000pt;}
.y4{bottom:840.589333pt;}
.yd4{bottom:849.930667pt;}
.ya9{bottom:852.301333pt;}
.y113{bottom:852.720000pt;}
.y69{bottom:855.112000pt;}
.y3{bottom:857.224000pt;}
.yd3{bottom:865.870667pt;}
.y112{bottom:868.661333pt;}
.y68{bottom:871.052000pt;}
.ya8{bottom:872.548000pt;}
.yd2{bottom:881.810667pt;}
.y111{bottom:884.601333pt;}
.y67{bottom:886.992000pt;}
.yd1{bottom:897.750667pt;}
.ya7{bottom:897.752000pt;}
.y66{bottom:902.932000pt;}
.y110{bottom:904.725333pt;}
.ya6{bottom:913.692000pt;}
.y65{bottom:918.872000pt;}
.y2{bottom:923.830667pt;}
.ya5{bottom:929.632000pt;}
.y64{bottom:934.813333pt;}
.ya4{bottom:945.572000pt;}
.y63{bottom:950.753333pt;}
.y1{bottom:961.024000pt;}
.y98{bottom:961.512000pt;}
.y97{bottom:977.452000pt;}
.y62{bottom:977.453333pt;}
.y5d{bottom:1009.200000pt;}
.hf{height:26.099625pt;}
.h7{height:29.244587pt;}
.h13{height:29.452592pt;}
.h14{height:29.457925pt;}
.h12{height:29.499627pt;}
.hd{height:31.729167pt;}
.h6{height:33.186155pt;}
.h5{height:33.425248pt;}
.hc{height:34.453125pt;}
.h3{height:36.291888pt;}
.h4{height:36.557568pt;}
.h10{height:36.876384pt;}
.hb{height:37.063125pt;}
.ha{height:37.105312pt;}
.h9{height:38.281250pt;}
.he{height:38.937500pt;}
.h8{height:39.852000pt;}
.h2{height:40.212224pt;}
.h11{height:44.349152pt;}
.h1{height:87.733760pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:22.666667pt;}
.x19{left:52.856027pt;}
.x1a{left:57.809333pt;}
.x11{left:65.285347pt;}
.x27{left:74.701333pt;}
.x13{left:75.912013pt;}
.x10{left:78.568013pt;}
.x28{left:79.717333pt;}
.x29{left:87.985333pt;}
.x1c{left:90.265347pt;}
.x24{left:96.045333pt;}
.x1{left:97.773333pt;}
.x6{left:122.338667pt;}
.x26{left:124.728000pt;}
.x3{left:138.233333pt;}
.x5{left:139.985333pt;}
.x4{left:142.204000pt;}
.x1e{left:156.749333pt;}
.x1d{left:175.393333pt;}
.x21{left:176.664347pt;}
.x23{left:179.835067pt;}
.x12{left:180.825347pt;}
.x22{left:194.132373pt;}
.x18{left:195.466773pt;}
.x25{left:212.402667pt;}
.x8{left:312.877333pt;}
.x2{left:330.069333pt;}
.xa{left:348.941333pt;}
.x7{left:353.074667pt;}
.xb{left:366.642667pt;}
.x9{left:386.666667pt;}
.x17{left:401.333440pt;}
.x14{left:415.970680pt;}
.x2c{left:421.284000pt;}
.x15{left:429.253360pt;}
.x2d{left:440.316000pt;}
.x16{left:442.666773pt;}
.x20{left:448.922830pt;}
.x30{left:476.747931pt;}
.x1f{left:513.173333pt;}
.xd{left:534.785333pt;}
.x2a{left:535.681333pt;}
.x2b{left:546.149320pt;}
.x31{left:548.681256pt;}
.xc{left:572.518667pt;}
.xe{left:580.041333pt;}
.xf{left:581.808013pt;}
.x2e{left:684.214632pt;}
.x2f{left:738.026609pt;}
}




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