
    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_42fe0963b974ea0c4a614f4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_16b1b5cad6f32098ca939db0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_93ea9f83f04a173f79dce9cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706000;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_9efe32c6c1a45e97650fea0b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5a91c0f9e3c9a883b0c79818.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_93376b61b4392e1130e8cc9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_88d3bff24cea258dc459d9d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119000;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_ae298dde8ecee15eab7d72cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_72fc8fde8c4f1a15e2fdf04c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2ffc03359d558f5438ce7eec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_b3fed96073a25bf5af204061.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.981934;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_54ad63d6b2f74d3f9df8f33e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;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_558bd6776f44ee56389c42e4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1a258bc5b612f2a9e8d6e11e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;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_c2901e87139765a2c5fbec7c.woff2')format("woff");}.fff{font-family:fff;line-height:0.981934;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_d750b94bfeb754e67b5d8ebb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.981934;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_560f197cce78831ecb4e8f21.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;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_975436a05b086d24453d08cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918945;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_f909023a974282fa63bd4502.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936523;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_04cd5c2cf5c0241dd49b71e2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v4{vertical-align:-4.500135px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.394934px;}
.v1{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000466px;}
.lsa{letter-spacing:0.001657px;}
.ls9{letter-spacing:0.001838px;}
.ls6{letter-spacing:1.078118px;}
.ls3{letter-spacing:2.987447px;}
.ls4{letter-spacing:2.992118px;}
.ls2{letter-spacing:19.904383px;}
.ls7{letter-spacing:21.173447px;}
.ls5{letter-spacing:22.889447px;}
.ls0{letter-spacing:29.887800px;}
.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;}
}
.ws19{word-spacing:-31.515269px;}
.ws17{word-spacing:-31.163782px;}
.ws2{word-spacing:-28.921872px;}
.ws10{word-spacing:-24.101616px;}
.ws4{word-spacing:-20.084736px;}
.ws54{word-spacing:-17.127156px;}
.ws2e{word-spacing:-16.737168px;}
.wsaa{word-spacing:-13.389768px;}
.ws1b{word-spacing:-12.402414px;}
.ws1a{word-spacing:-12.401831px;}
.ws16{word-spacing:-12.401248px;}
.ws2b{word-spacing:-3.526760px;}
.ws2a{word-spacing:-3.466985px;}
.ws6f{word-spacing:-3.347434px;}
.wsc1{word-spacing:-3.287658px;}
.wsce{word-spacing:-2.749678px;}
.ws60{word-spacing:-2.689902px;}
.wsa3{word-spacing:-2.450800px;}
.wsc2{word-spacing:-2.331248px;}
.ws4d{word-spacing:-2.092146px;}
.ws4e{word-spacing:-2.048432px;}
.ws55{word-spacing:-1.853044px;}
.wsb1{word-spacing:-1.613941px;}
.wsc4{word-spacing:-1.554166px;}
.wsa5{word-spacing:-1.315063px;}
.ws31{word-spacing:-1.075961px;}
.wsa1{word-spacing:-0.777083px;}
.wsc3{word-spacing:-0.418429px;}
.ws67{word-spacing:-0.298878px;}
.wscc{word-spacing:-0.239102px;}
.ws80{word-spacing:-0.119551px;}
.ws69{word-spacing:-0.063357px;}
.wsa0{word-spacing:-0.059776px;}
.ws97{word-spacing:-0.049501px;}
.ws99{word-spacing:-0.030001px;}
.ws6d{word-spacing:-0.009345px;}
.ws18{word-spacing:0.000000px;}
.ws94{word-spacing:0.358654px;}
.ws8f{word-spacing:0.418429px;}
.wscb{word-spacing:0.436360px;}
.wse{word-spacing:0.591782px;}
.ws5e{word-spacing:0.597756px;}
.ws2c{word-spacing:0.777083px;}
.ws52{word-spacing:0.956410px;}
.wsac{word-spacing:1.434614px;}
.ws24{word-spacing:1.554166px;}
.ws92{word-spacing:1.793268px;}
.ws49{word-spacing:1.853044px;}
.ws47{word-spacing:1.865003px;}
.ws8d{word-spacing:2.092146px;}
.wsd2{word-spacing:2.151922px;}
.ws1{word-spacing:2.169140px;}
.ws0{word-spacing:2.272433px;}
.wsc6{word-spacing:2.343209px;}
.ws9d{word-spacing:2.450800px;}
.wsb3{word-spacing:2.570351px;}
.ws4a{word-spacing:2.689902px;}
.ws4b{word-spacing:2.749678px;}
.ws66{word-spacing:2.809453px;}
.wsb{word-spacing:2.851315px;}
.ws2f{word-spacing:3.108331px;}
.ws26{word-spacing:3.168107px;}
.ws43{word-spacing:3.172565px;}
.ws25{word-spacing:3.227882px;}
.ws42{word-spacing:3.287658px;}
.ws3{word-spacing:3.299635px;}
.wsd{word-spacing:3.389299px;}
.ws7f{word-spacing:3.407209px;}
.ws48{word-spacing:3.538724px;}
.wsa4{word-spacing:3.646312px;}
.ws7e{word-spacing:4.004965px;}
.wsd3{word-spacing:4.006720px;}
.ws6a{word-spacing:4.184292px;}
.ws68{word-spacing:4.244068px;}
.ws6c{word-spacing:4.363619px;}
.ws30{word-spacing:4.483170px;}
.ws50{word-spacing:4.542946px;}
.wsba{word-spacing:4.662497px;}
.ws4f{word-spacing:4.722272px;}
.ws59{word-spacing:4.782048px;}
.wsbc{word-spacing:4.841824px;}
.ws6b{word-spacing:4.901599px;}
.ws96{word-spacing:4.961375px;}
.wsc5{word-spacing:5.068984px;}
.ws9c{word-spacing:5.080926px;}
.wsb4{word-spacing:5.140702px;}
.wsca{word-spacing:5.200477px;}
.wsa6{word-spacing:5.260253px;}
.ws3f{word-spacing:5.355907px;}
.ws32{word-spacing:5.439580px;}
.ws2d{word-spacing:5.559131px;}
.ws23{word-spacing:5.618906px;}
.wsa7{word-spacing:5.678682px;}
.ws9a{word-spacing:5.977560px;}
.ws1e{word-spacing:6.097111px;}
.wsab{word-spacing:6.503602px;}
.ws4c{word-spacing:6.742733px;}
.ws20{word-spacing:6.814464px;}
.ws90{word-spacing:7.113296px;}
.wsb2{word-spacing:7.232848px;}
.wsbd{word-spacing:7.352399px;}
.wsa9{word-spacing:7.364372px;}
.ws21{word-spacing:7.770828px;}
.wsbb{word-spacing:8.091257px;}
.wsa8{word-spacing:8.154114px;}
.ws58{word-spacing:8.189257px;}
.wsf{word-spacing:8.231155px;}
.ws40{word-spacing:8.272964px;}
.ws62{word-spacing:8.428360px;}
.ws71{word-spacing:8.547911px;}
.wsb6{word-spacing:8.607686px;}
.ws22{word-spacing:8.787013px;}
.ws91{word-spacing:8.966340px;}
.wsb5{word-spacing:9.026116px;}
.ws53{word-spacing:9.085891px;}
.wsbf{word-spacing:9.384769px;}
.ws8{word-spacing:9.576115px;}
.ws44{word-spacing:9.743423px;}
.wsd1{word-spacing:9.803198px;}
.ws65{word-spacing:9.862974px;}
.ws9e{word-spacing:9.982525px;}
.ws57{word-spacing:10.161852px;}
.ws51{word-spacing:10.341179px;}
.ws9b{word-spacing:10.460730px;}
.wsb9{word-spacing:10.580281px;}
.wsa2{word-spacing:10.699832px;}
.wsc{word-spacing:11.190067px;}
.wsb0{word-spacing:11.297588px;}
.wsaf{word-spacing:11.365237px;}
.wsbe{word-spacing:11.476915px;}
.wsc9{word-spacing:11.835569px;}
.ws27{word-spacing:11.955120px;}
.ws64{word-spacing:12.672427px;}
.ws6e{word-spacing:12.911530px;}
.wsc0{word-spacing:12.971305px;}
.ws9{word-spacing:13.126810px;}
.ws12{word-spacing:13.150632px;}
.ws41{word-spacing:13.150665px;}
.wsae{word-spacing:13.412110px;}
.wsad{word-spacing:13.412114px;}
.wscd{word-spacing:13.449510px;}
.wsd0{word-spacing:14.346144px;}
.ws7d{word-spacing:14.465695px;}
.ws3d{word-spacing:14.585246px;}
.ws3c{word-spacing:14.645022px;}
.ws56{word-spacing:14.764573px;}
.ws15{word-spacing:17.506835px;}
.wsb7{word-spacing:18.530436px;}
.ws7{word-spacing:19.313626px;}
.wsc7{word-spacing:19.367294px;}
.ws3e{word-spacing:20.228114px;}
.wsa{word-spacing:21.842150px;}
.wsb8{word-spacing:22.356074px;}
.wscf{word-spacing:22.415850px;}
.ws7c{word-spacing:22.654952px;}
.ws5{word-spacing:22.702925px;}
.ws6{word-spacing:23.617498px;}
.wsc8{word-spacing:24.926425px;}
.ws7b{word-spacing:25.285079px;}
.ws28{word-spacing:28.991166px;}
.ws45{word-spacing:29.529146px;}
.ws98{word-spacing:31.848769px;}
.ws5a{word-spacing:39.690998px;}
.ws29{word-spacing:41.544042px;}
.ws9f{word-spacing:48.891717px;}
.ws70{word-spacing:54.933776px;}
.ws5c{word-spacing:54.993552px;}
.ws81{word-spacing:108.911143px;}
.ws93{word-spacing:138.141412px;}
.ws76{word-spacing:182.197715px;}
.ws79{word-spacing:197.619820px;}
.ws61{word-spacing:200.487514px;}
.ws63{word-spacing:235.697768px;}
.ws7a{word-spacing:249.026836px;}
.ws75{word-spacing:272.219768px;}
.ws77{word-spacing:272.578422px;}
.ws73{word-spacing:287.641873px;}
.ws5f{word-spacing:293.081544px;}
.ws74{word-spacing:305.634329px;}
.ws5b{word-spacing:308.560417px;}
.ws78{word-spacing:332.181035px;}
.ws72{word-spacing:360.747432px;}
.ws82{word-spacing:402.890573px;}
.ws86{word-spacing:402.896573px;}
.ws5d{word-spacing:413.170417px;}
.ws8c{word-spacing:450.112294px;}
.ws89{word-spacing:483.712181px;}
.ws87{word-spacing:502.063290px;}
.ws88{word-spacing:508.698382px;}
.ws84{word-spacing:520.294848px;}
.ws8b{word-spacing:526.983715px;}
.ws85{word-spacing:538.287304px;}
.ws8a{word-spacing:538.580182px;}
.ws83{word-spacing:545.281049px;}
.ws95{word-spacing:776.786423px;}
.ws36{word-spacing:797.649146px;}
.ws46{word-spacing:834.411140px;}
.ws33{word-spacing:857.125868px;}
.ws3b{word-spacing:860.831956px;}
.ws3a{word-spacing:862.565448px;}
.ws35{word-spacing:887.372322px;}
.ws8e{word-spacing:915.646181px;}
.ws34{word-spacing:920.727107px;}
.ws37{word-spacing:960.418105px;}
.ws39{word-spacing:987.137798px;}
.ws38{word-spacing:1000.407982px;}
.ws1d{word-spacing:1407.902447px;}
.ws11{word-spacing:1632.183528px;}
.ws1f{word-spacing:1653.998592px;}
.ws1c{word-spacing:1663.204034px;}
.ws13{word-spacing:1747.849314px;}
.ws14{word-spacing:1789.811785px;}
._8e{margin-left:-1820.558217px;}
._14{margin-left:-34.789399px;}
._10{margin-left:-31.501741px;}
._e{margin-left:-29.887800px;}
._11{margin-left:-10.102076px;}
._0{margin-left:-7.953515px;}
._68{margin-left:-5.711131px;}
._6{margin-left:-4.572864px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.116151px;}
._5{width:1.169950px;}
._2{width:2.685602px;}
._2f{width:3.898313px;}
._f{width:5.575547px;}
._1f{width:15.207706px;}
._30{width:16.273931px;}
._1d{width:17.334924px;}
._8f{width:18.376672px;}
._b{width:19.905275px;}
._22{width:21.035456px;}
._a{width:22.985532px;}
._ad{width:24.056617px;}
._1c{width:25.105752px;}
._16{width:26.153477px;}
._23{width:27.596742px;}
._21{width:28.931463px;}
._90{width:30.342120px;}
._18{width:31.527304px;}
._ac{width:33.217326px;}
._12{width:34.402464px;}
._20{width:37.084891px;}
._94{width:38.109506px;}
._b0{width:40.115405px;}
._9{width:41.478566px;}
._17{width:42.570560px;}
._c{width:43.779269px;}
._af{width:45.070802px;}
._66{width:48.059582px;}
._ab{width:49.380679px;}
._ae{width:51.043470px;}
._b2{width:52.511161px;}
._8{width:53.515793px;}
._8d{width:54.920168px;}
._b3{width:59.270842px;}
._9d{width:60.379333px;}
._13{width:64.046653px;}
._8b{width:70.859833px;}
._7{width:72.305050px;}
._b1{width:75.257480px;}
._1a{width:78.246260px;}
._55{width:82.745869px;}
._4{width:86.005709px;}
._4b{width:89.859166px;}
._d{width:94.048380px;}
._49{width:95.059643px;}
._4f{width:96.494257px;}
._4d{width:101.694734px;}
._19{width:104.129095px;}
._43{width:108.090724px;}
._41{width:113.291201px;}
._54{width:114.785591px;}
._50{width:119.627414px;}
._51{width:122.915072px;}
._47{width:126.083179px;}
._6b{width:128.497955px;}
._45{width:131.283656px;}
._3f{width:133.076924px;}
._48{width:136.304807px;}
._3d{width:138.277402px;}
._4a{width:139.592465px;}
._1b{width:140.856932px;}
._4c{width:142.939898px;}
._4e{width:146.227556px;}
._91{width:149.718293px;}
._80{width:151.392010px;}
._40{width:154.536365px;}
._42{width:157.824023px;}
._52{width:161.231232px;}
._53{width:164.518890px;}
._89{width:167.298296px;}
._6a{width:170.360460px;}
._44{width:172.528820px;}
._46{width:175.816478px;}
._70{width:177.533532px;}
._3c{width:179.522566px;}
._3e{width:182.810224px;}
._7e{width:186.472697px;}
._36{width:195.657678px;}
._81{width:199.929948px;}
._69{width:202.852837px;}
._74{width:204.235417px;}
._7a{width:206.079094px;}
._8a{width:209.063413px;}
._84{width:215.098322px;}
._85{width:217.495109px;}
._75{width:223.623974px;}
._71{width:224.943337px;}
._6c{width:226.134550px;}
._7c{width:230.415504px;}
._8c{width:232.691081px;}
._82{width:235.336688px;}
._35{width:236.902842px;}
._37{width:240.190500px;}
._a9{width:242.193647px;}
._73{width:245.619718px;}
._77{width:250.288192px;}
._88{width:253.244468px;}
._6f{width:266.327638px;}
._7f{width:267.969866px;}
._78{width:270.093500px;}
._76{width:275.573270px;}
._72{width:280.409117px;}
._6d{width:283.005030px;}
._6e{width:288.839154px;}
._83{width:307.306511px;}
._7d{width:312.447212px;}
._34{width:319.627973px;}
._32{width:324.828450px;}
._57{width:338.700689px;}
._7b{width:358.175546px;}
._aa{width:360.370008px;}
._31{width:366.073614px;}
._33{width:369.361272px;}
._95{width:377.998696px;}
._56{width:379.945853px;}
._58{width:383.233511px;}
._2d{width:408.036085px;}
._a8{width:418.064682px;}
._86{width:429.214866px;}
._87{width:430.503457px;}
._79{width:440.825616px;}
._2c{width:449.281249px;}
._2e{width:452.568907px;}
._92{width:459.385763px;}
._3b{width:462.670984px;}
._9c{width:466.357672px;}
._39{width:467.871461px;}
._9a{width:500.953116px;}
._38{width:509.116625px;}
._3a{width:512.404283px;}
._98{width:518.800458px;}
._99{width:525.435550px;}
._5a{width:529.021900px;}
._96{width:537.032016px;}
._9b{width:543.726883px;}
._97{width:555.024472px;}
._62{width:557.415310px;}
._93{width:562.703592px;}
._9e{width:567.393024px;}
._61{width:598.660474px;}
._63{width:601.948132px;}
._25{width:636.976633px;}
._5b{width:658.192672px;}
._59{width:682.879994px;}
._5f{width:686.586082px;}
._9f{width:721.734134px;}
._5e{width:727.831246px;}
._60{width:731.118904px;}
._65{width:766.087630px;}
._5c{width:778.640506px;}
._a2{width:781.366298px;}
._29{width:786.291782px;}
._28{width:787.965499px;}
._64{width:797.529595px;}
._67{width:803.351006px;}
._1e{width:805.266376px;}
._24{width:821.081182px;}
._2b{width:824.428615px;}
._2a{width:826.162108px;}
._26{width:857.723624px;}
._5d{width:867.467047px;}
._27{width:890.958858px;}
._a7{width:898.291672px;}
._a6{width:950.734458px;}
._a1{width:957.369550px;}
._a3{width:968.966016px;}
._a5{width:975.660883px;}
._a4{width:986.958472px;}
._a0{width:993.952217px;}
._15{width:1357.607282px;}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.345376px;}
.fsd{font-size:30.000900px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:38.382328px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:49.501485px;}
.fs2{font-size:53.798400px;}
.fs9{font-size:54.028885px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:63.356851px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y228{bottom:4.089966px;}
.y22a{bottom:5.215002px;}
.y226{bottom:5.622239px;}
.y227{bottom:6.747273px;}
.y229{bottom:11.221040px;}
.y59{bottom:12.555778px;}
.y1af{bottom:12.911620px;}
.ybd{bottom:17.701440px;}
.y1ae{bottom:24.790562px;}
.y5b{bottom:42.370909px;}
.y1b1{bottom:52.095829px;}
.y136{bottom:57.132208px;}
.ybf{bottom:59.669431px;}
.y5a{bottom:72.186040px;}
.y1a8{bottom:74.909004px;}
.y1b0{bottom:76.591093px;}
.y1a9{bottom:82.907404px;}
.y19f{bottom:89.427783px;}
.y1a3{bottom:96.792466px;}
.ybe{bottom:101.637422px;}
.y189{bottom:103.993504px;}
.y192{bottom:104.640913px;}
.y18d{bottom:106.883699px;}
.y19c{bottom:110.774020px;}
.yc0{bottom:111.767368px;}
.y1a6{bottom:113.549467px;}
.y19a{bottom:115.171575px;}
.y195{bottom:121.660007px;}
.y185{bottom:126.768213px;}
.y18f{bottom:128.492029px;}
.y188{bottom:128.996004px;}
.y196{bottom:129.493459px;}
.y1aa{bottom:133.580023px;}
.y1a7{bottom:133.818645px;}
.y1f{bottom:134.047500px;}
.y1a2{bottom:134.643391px;}
.y190{bottom:144.994761px;}
.y19d{bottom:148.467819px;}
.y193{bottom:149.594428px;}
.y182{bottom:154.765875px;}
.y17e{bottom:157.861441px;}
.y1ab{bottom:160.567127px;}
.y178{bottom:161.464894px;}
.y18b{bottom:163.772877px;}
.y18e{bottom:163.784613px;}
.y184{bottom:164.493959px;}
.y1a5{bottom:170.664880px;}
.y224{bottom:178.879500px;}
.y85{bottom:178.882500px;}
.y181{bottom:179.693397px;}
.y19e{bottom:180.971916px;}
.y18a{bottom:181.038417px;}
.y265{bottom:181.945500px;}
.y17b{bottom:182.860681px;}
.y186{bottom:184.004240px;}
.ybb{bottom:184.725000px;}
.y1dc{bottom:188.260500px;}
.y17a{bottom:188.401144px;}
.y1ee{bottom:189.223500px;}
.y10f{bottom:191.703000px;}
.y12d{bottom:192.136500px;}
.y1e{bottom:192.526500px;}
.y61{bottom:194.413500px;}
.y264{bottom:196.141500px;}
.y223{bottom:196.812000px;}
.y14b{bottom:197.327954px;}
.y84{bottom:197.419500px;}
.y16c{bottom:198.172258px;}
.y199{bottom:201.741809px;}
.yb1{bottom:204.243000px;}
.y176{bottom:205.725362px;}
.y1ac{bottom:205.830981px;}
.y1db{bottom:206.193000px;}
.y172{bottom:206.361687px;}
.y1ed{bottom:207.156000px;}
.y60{bottom:208.611000px;}
.y10e{bottom:209.635500px;}
.y12c{bottom:210.069000px;}
.y165{bottom:210.284606px;}
.y1d{bottom:210.459000px;}
.y1ad{bottom:210.980913px;}
.yba{bottom:211.624500px;}
.y155{bottom:213.627270px;}
.y19b{bottom:214.660647px;}
.y263{bottom:214.678500px;}
.y13e{bottom:215.121000px;}
.y168{bottom:218.976054px;}
.y246{bottom:219.733500px;}
.y14f{bottom:221.325763px;}
.yb0{bottom:222.177000px;}
.y5f{bottom:222.807000px;}
.y198{bottom:223.977336px;}
.y1da{bottom:224.125500px;}
.y1a1{bottom:224.910309px;}
.y1ec{bottom:225.088500px;}
.y16d{bottom:226.262500px;}
.y10d{bottom:227.568000px;}
.y12b{bottom:228.001500px;}
.y1c{bottom:228.391500px;}
.y17c{bottom:228.901034px;}
.yb9{bottom:229.557000px;}
.y13d{bottom:233.053500px;}
.y183{bottom:234.401075px;}
.y5e{bottom:237.004500px;}
.y262{bottom:237.169500px;}
.y245{bottom:238.270500px;}
.y1b3{bottom:239.320860px;}
.y17f{bottom:239.482550px;}
.yaf{bottom:240.109500px;}
.y1d9{bottom:242.058000px;}
.y152{bottom:242.785443px;}
.y1eb{bottom:243.022500px;}
.y204{bottom:243.679500px;}
.y187{bottom:244.966292px;}
.y10c{bottom:245.502000px;}
.y12a{bottom:245.934000px;}
.y1a4{bottom:245.961202px;}
.y1b{bottom:246.324000px;}
.y163{bottom:247.301006px;}
.yb8{bottom:247.489500px;}
.y151{bottom:249.631156px;}
.y83{bottom:249.777000px;}
.y222{bottom:250.083000px;}
.y244{bottom:252.832500px;}
.y158{bottom:253.157024px;}
.y15b{bottom:253.509090px;}
.y194{bottom:254.176710px;}
.y261{bottom:255.102000px;}
.y15d{bottom:255.311794px;}
.y5d{bottom:255.541500px;}
.y3e{bottom:255.898500px;}
.y17d{bottom:256.268238px;}
.yae{bottom:258.042000px;}
.y174{bottom:259.343593px;}
.y13c{bottom:259.951500px;}
.y1d8{bottom:259.990500px;}
.y1ea{bottom:260.955000px;}
.y203{bottom:261.612000px;}
.y243{bottom:263.143500px;}
.y10b{bottom:263.434500px;}
.y129{bottom:263.868000px;}
.yb7{bottom:265.422000px;}
.y16b{bottom:266.404457px;}
.y82{bottom:267.709500px;}
.y221{bottom:268.015500px;}
.y150{bottom:268.441871px;}
.y164{bottom:269.912070px;}
.y179{bottom:270.217845px;}
.y161{bottom:270.946750px;}
.y260{bottom:273.034500px;}
.y177{bottom:273.773704px;}
.y3d{bottom:273.831000px;}
.yad{bottom:275.974500px;}
.y13b{bottom:277.885500px;}
.y1d7{bottom:277.923000px;}
.y5c{bottom:278.032500px;}
.y1e9{bottom:278.887500px;}
.y1a{bottom:279.201000px;}
.y202{bottom:279.544500px;}
.y10a{bottom:281.367000px;}
.y242{bottom:281.680500px;}
.ydb{bottom:282.873000px;}
.yb6{bottom:283.354500px;}
.y170{bottom:283.446370px;}
.y157{bottom:285.260810px;}
.y81{bottom:285.643500px;}
.y220{bottom:285.948000px;}
.y15f{bottom:288.536320px;}
.y15e{bottom:289.122444px;}
.y171{bottom:289.214372px;}
.y128{bottom:289.309500px;}
.y25f{bottom:290.968500px;}
.y3c{bottom:291.765000px;}
.yac{bottom:293.907000px;}
.y175{bottom:294.956295px;}
.y148{bottom:295.580885px;}
.y1d6{bottom:295.857000px;}
.y16e{bottom:296.005971px;}
.y1e8{bottom:296.820000px;}
.y201{bottom:297.477000px;}
.y154{bottom:299.135440px;}
.y109{bottom:299.299500px;}
.y169{bottom:299.382538px;}
.y149{bottom:299.503805px;}
.yda{bottom:300.805500px;}
.y162{bottom:301.004645px;}
.y166{bottom:301.338455px;}
.y80{bottom:303.576000px;}
.y21f{bottom:303.882000px;}
.y241{bottom:304.156500px;}
.y13a{bottom:304.783500px;}
.y14a{bottom:305.668858px;}
.y25e{bottom:308.901000px;}
.y3b{bottom:309.697500px;}
.y159{bottom:310.825310px;}
.y58{bottom:310.908810px;}
.yb5{bottom:310.948500px;}
.yab{bottom:311.839500px;}
.y19{bottom:312.078000px;}
.y160{bottom:313.600757px;}
.y1d5{bottom:313.789500px;}
.y1e7{bottom:314.752500px;}
.y200{bottom:315.411000px;}
.y167{bottom:316.337739px;}
.y141{bottom:316.829978px;}
.y108{bottom:317.232000px;}
.y16a{bottom:317.339169px;}
.y1a0{bottom:317.346992px;}
.y146{bottom:318.350378px;}
.yd9{bottom:318.739500px;}
.y7f{bottom:321.508500px;}
.y240{bottom:322.089000px;}
.y139{bottom:322.717500px;}
.y14e{bottom:322.944829px;}
.y145{bottom:324.638654px;}
.y1b6{bottom:326.470500px;}
.y156{bottom:326.753002px;}
.y25d{bottom:326.833500px;}
.y144{bottom:327.427141px;}
.y127{bottom:328.914000px;}
.y21e{bottom:329.323500px;}
.yaa{bottom:329.773500px;}
.y18{bottom:330.010500px;}
.y1d4{bottom:331.722000px;}
.y1e6{bottom:332.685000px;}
.y180{bottom:333.298155px;}
.y1ff{bottom:333.343500px;}
.y107{bottom:335.164500px;}
.yd8{bottom:336.672000px;}
.y7e{bottom:339.441000px;}
.y23f{bottom:340.021500px;}
.y142{bottom:340.979697px;}
.y14d{bottom:341.822698px;}
.y3a{bottom:342.444000px;}
.y16f{bottom:343.944869px;}
.y143{bottom:343.965080px;}
.y1b5{bottom:344.403000px;}
.y25c{bottom:344.766000px;}
.y126{bottom:346.846500px;}
.ya9{bottom:347.706000px;}
.y153{bottom:349.442302px;}
.y1d3{bottom:349.654500px;}
.y147{bottom:350.191419px;}
.y1e5{bottom:350.619000px;}
.y1fe{bottom:351.276000px;}
.y173{bottom:351.715079px;}
.yb4{bottom:352.803000px;}
.y106{bottom:353.098500px;}
.yd7{bottom:354.604500px;}
.y15c{bottom:357.198821px;}
.y7d{bottom:357.373500px;}
.y138{bottom:361.497000px;}
.y25b{bottom:362.698500px;}
.y17{bottom:362.887500px;}
.y191{bottom:362.947916px;}
.y14c{bottom:364.171668px;}
.ya8{bottom:365.638500px;}
.y23e{bottom:366.921000px;}
.y1d2{bottom:367.587000px;}
.y21d{bottom:368.271000px;}
.y1fd{bottom:369.208500px;}
.yb3{bottom:370.735500px;}
.y105{bottom:371.031000px;}
.y1b2{bottom:372.238526px;}
.yd6{bottom:372.537000px;}
.y7c{bottom:375.306000px;}
.y1e4{bottom:376.062000px;}
.y13f{bottom:377.280346px;}
.y137{bottom:379.429500px;}
.y25a{bottom:380.631000px;}
.ya7{bottom:383.571000px;}
.y23d{bottom:384.853500px;}
.y1d1{bottom:385.519500px;}
.y18c{bottom:386.123588px;}
.y1fc{bottom:387.141000px;}
.y104{bottom:388.963500px;}
.yd5{bottom:390.469500px;}
.y140{bottom:391.852471px;}
.y39{bottom:391.885500px;}
.y7b{bottom:393.240000px;}
.yb2{bottom:398.329500px;}
.y259{bottom:398.565000px;}
.yfb{bottom:400.636500px;}
.y21c{bottom:401.122500px;}
.y197{bottom:401.266305px;}
.ya6{bottom:401.503500px;}
.y23c{bottom:402.786000px;}
.y1d0{bottom:403.453500px;}
.y125{bottom:404.416500px;}
.y1fb{bottom:405.075000px;}
.y15a{bottom:406.013969px;}
.y103{bottom:406.896000px;}
.yd4{bottom:408.402000px;}
.y38{bottom:409.818000px;}
.y7a{bottom:411.172500px;}
.y135{bottom:412.306251px;}
.y16{bottom:412.329000px;}
.y1e3{bottom:415.665000px;}
.y258{bottom:416.497500px;}
.yfa{bottom:418.570500px;}
.ya5{bottom:419.436000px;}
.y23b{bottom:420.718500px;}
.y1cf{bottom:421.386000px;}
.y57{bottom:421.732500px;}
.y124{bottom:422.349000px;}
.y1fa{bottom:423.007500px;}
.yd3{bottom:426.336000px;}
.y37{bottom:427.752000px;}
.y15{bottom:428.767500px;}
.y79{bottom:429.105000px;}
.y102{bottom:432.339000px;}
.y1e2{bottom:433.597500px;}
.yf9{bottom:436.503000px;}
.ya4{bottom:437.370000px;}
.y23a{bottom:438.652500px;}
.y1ce{bottom:439.318500px;}
.y257{bottom:440.277000px;}
.y123{bottom:440.283000px;}
.y1f9{bottom:440.940000px;}
.yd2{bottom:444.268500px;}
.y14{bottom:445.206000px;}
.y78{bottom:447.037500px;}
.y56{bottom:448.632000px;}
.y1e1{bottom:451.530000px;}
.y21b{bottom:454.393500px;}
.yf8{bottom:454.435500px;}
.y36{bottom:454.650000px;}
.ya3{bottom:455.302500px;}
.y239{bottom:456.585000px;}
.y1cd{bottom:457.251000px;}
.y122{bottom:458.215500px;}
.y1f8{bottom:458.872500px;}
.y13{bottom:461.644500px;}
.yd1{bottom:462.201000px;}
.y1b4{bottom:462.864681px;}
.y77{bottom:464.970000px;}
.y55{bottom:466.564500px;}
.y1e0{bottom:469.462500px;}
.y101{bottom:471.942000px;}
.y21a{bottom:472.326000px;}
.yf7{bottom:472.368000px;}
.y35{bottom:472.584000px;}
.ya2{bottom:473.235000px;}
.y1cc{bottom:475.183500px;}
.y121{bottom:476.148000px;}
.y1f7{bottom:476.805000px;}
.y12{bottom:478.083000px;}
.yd0{bottom:480.133500px;}
.y76{bottom:482.902500px;}
.y54{bottom:484.497000px;}
.y1df{bottom:487.396500px;}
.y238{bottom:489.331500px;}
.y256{bottom:489.720000px;}
.y100{bottom:489.874500px;}
.y219{bottom:490.258500px;}
.yf6{bottom:490.300500px;}
.y34{bottom:490.516500px;}
.ya1{bottom:491.167500px;}
.y1cb{bottom:493.116000px;}
.y120{bottom:494.080500px;}
.y11{bottom:494.521500px;}
.y1f6{bottom:494.737500px;}
.ycf{bottom:498.066000px;}
.y75{bottom:500.836500px;}
.y53{bottom:502.429500px;}
.y1de{bottom:505.329000px;}
.y255{bottom:507.652500px;}
.y218{bottom:508.191000px;}
.yf5{bottom:508.233000px;}
.y33{bottom:508.449000px;}
.ya0{bottom:509.100000px;}
.y10{bottom:510.960000px;}
.y1ca{bottom:511.050000px;}
.y11f{bottom:512.013000px;}
.y1f5{bottom:512.671500px;}
.yce{bottom:515.998500px;}
.y74{bottom:518.769000px;}
.y1dd{bottom:523.261500px;}
.y254{bottom:525.585000px;}
.y217{bottom:526.125000px;}
.yf4{bottom:526.167000px;}
.y9f{bottom:527.032500px;}
.yf{bottom:527.398500px;}
.y1c9{bottom:528.982500px;}
.y11e{bottom:529.945500px;}
.y1f4{bottom:530.604000px;}
.ycd{bottom:533.932500px;}
.y32{bottom:535.348500px;}
.y73{bottom:536.701500px;}
.y52{bottom:538.294500px;}
.y237{bottom:538.773000px;}
.ye{bottom:543.837000px;}
.y216{bottom:544.057500px;}
.yf3{bottom:544.099500px;}
.y9e{bottom:544.966500px;}
.y1c8{bottom:546.915000px;}
.yff{bottom:547.446000px;}
.y11d{bottom:547.879500px;}
.y1f3{bottom:548.536500px;}
.ycc{bottom:551.865000px;}
.y134{bottom:553.051500px;}
.y31{bottom:553.281000px;}
.y72{bottom:554.634000px;}
.y51{bottom:556.228500px;}
.y236{bottom:556.705500px;}
.y253{bottom:558.331500px;}
.yd{bottom:560.275500px;}
.y215{bottom:561.990000px;}
.yf2{bottom:562.032000px;}
.y9d{bottom:562.899000px;}
.y1c7{bottom:564.847500px;}
.y11c{bottom:565.812000px;}
.y1f2{bottom:566.469000px;}
.y133{bottom:570.985500px;}
.y71{bottom:572.566500px;}
.yfe{bottom:572.887500px;}
.y277{bottom:573.399000px;}
.y50{bottom:574.161000px;}
.yc{bottom:576.714000px;}
.ycb{bottom:577.741500px;}
.y214{bottom:579.922500px;}
.yf1{bottom:579.964500px;}
.y30{bottom:580.180500px;}
.y9c{bottom:580.831500px;}
.y1c6{bottom:582.780000px;}
.y11b{bottom:583.744500px;}
.y1f1{bottom:584.401500px;}
.y132{bottom:588.918000px;}
.y70{bottom:590.499000px;}
.y276{bottom:591.333000px;}
.y235{bottom:592.572000px;}
.yb{bottom:593.151000px;}
.y213{bottom:597.855000px;}
.yf0{bottom:597.897000px;}
.y2f{bottom:598.113000px;}
.y9b{bottom:598.764000px;}
.y11a{bottom:601.677000px;}
.y131{bottom:606.850500px;}
.y252{bottom:607.774500px;}
.y1c5{bottom:608.223000px;}
.y6f{bottom:608.433000px;}
.y275{bottom:609.265500px;}
.y1f0{bottom:609.844500px;}
.y4f{bottom:610.026000px;}
.yfd{bottom:612.492000px;}
.y212{bottom:615.787500px;}
.yef{bottom:615.829500px;}
.y2e{bottom:616.045500px;}
.yca{bottom:616.507500px;}
.y9a{bottom:616.696500px;}
.ya{bottom:617.809500px;}
.y119{bottom:619.609500px;}
.y130{bottom:624.783000px;}
.y234{bottom:625.448863px;}
.y251{bottom:625.707000px;}
.y6e{bottom:626.365500px;}
.y274{bottom:627.198000px;}
.y4e{bottom:627.958500px;}
.yfc{bottom:630.424500px;}
.y211{bottom:633.721500px;}
.yee{bottom:633.763500px;}
.y2d{bottom:633.978000px;}
.y99{bottom:634.630500px;}
.y118{bottom:637.542000px;}
.y12f{bottom:642.715500px;}
.y250{bottom:643.639500px;}
.y1c4{bottom:644.256000px;}
.y6d{bottom:644.298000px;}
.y273{bottom:645.130500px;}
.y4d{bottom:645.891000px;}
.y1ef{bottom:648.790500px;}
.yc9{bottom:650.071500px;}
.y210{bottom:651.654000px;}
.yed{bottom:651.696000px;}
.y2c{bottom:651.910500px;}
.y98{bottom:652.563000px;}
.y117{bottom:655.476000px;}
.y9{bottom:656.664000px;}
.y24f{bottom:661.572000px;}
.y1c3{bottom:662.188500px;}
.y6c{bottom:662.230500px;}
.y272{bottom:663.063000px;}
.y233{bottom:668.959500px;}
.y20f{bottom:669.586500px;}
.yec{bottom:669.628500px;}
.y2b{bottom:669.843000px;}
.y12e{bottom:670.309500px;}
.y97{bottom:670.495500px;}
.y116{bottom:673.408500px;}
.yc8{bottom:676.971000px;}
.y24e{bottom:679.504500px;}
.y1c2{bottom:680.121000px;}
.y6b{bottom:680.163000px;}
.y271{bottom:680.997000px;}
.y4c{bottom:681.757500px;}
.y232{bottom:686.893500px;}
.y20e{bottom:687.519000px;}
.yeb{bottom:687.994500px;}
.y96{bottom:688.428000px;}
.y115{bottom:691.341000px;}
.yc7{bottom:694.903500px;}
.y2a{bottom:697.437000px;}
.y1c1{bottom:698.053500px;}
.y6a{bottom:698.095500px;}
.y270{bottom:698.929500px;}
.y4b{bottom:699.690000px;}
.y8{bottom:700.270500px;}
.y231{bottom:704.826000px;}
.y20d{bottom:705.451500px;}
.yea{bottom:705.927000px;}
.y95{bottom:706.360500px;}
.y114{bottom:709.273500px;}
.yc6{bottom:712.836000px;}
.y69{bottom:716.029500px;}
.y26f{bottom:716.862000px;}
.y7{bottom:721.191000px;}
.y230{bottom:722.758500px;}
.y20c{bottom:723.384000px;}
.ye9{bottom:723.859500px;}
.y94{bottom:724.293000px;}
.y4a{bottom:726.589500px;}
.y113{bottom:727.206000px;}
.y24d{bottom:730.185000px;}
.y29{bottom:733.173000px;}
.y68{bottom:733.962000px;}
.y26e{bottom:734.794500px;}
.yc5{bottom:739.735500px;}
.y20b{bottom:741.318000px;}
.ye8{bottom:741.793500px;}
.y6{bottom:742.113000px;}
.y93{bottom:742.227000px;}
.y22f{bottom:750.352500px;}
.y112{bottom:752.649000px;}
.y26d{bottom:752.727000px;}
.y1c0{bottom:755.623500px;}
.yc4{bottom:757.668000px;}
.y20a{bottom:759.250500px;}
.y67{bottom:759.405000px;}
.ye7{bottom:759.726000px;}
.y92{bottom:760.159500px;}
.y5{bottom:763.035000px;}
.y26c{bottom:770.659500px;}
.y1bf{bottom:773.556000px;}
.yc3{bottom:775.600500px;}
.y209{bottom:777.183000px;}
.ye6{bottom:777.658500px;}
.y91{bottom:778.092000px;}
.y24c{bottom:779.626500px;}
.y49{bottom:780.573000px;}
.y28{bottom:782.614500px;}
.y26b{bottom:788.593500px;}
.y1be{bottom:791.488500px;}
.y22e{bottom:792.207000px;}
.y111{bottom:792.252000px;}
.yc2{bottom:793.534500px;}
.y208{bottom:795.115500px;}
.ye5{bottom:795.591000px;}
.y90{bottom:796.024500px;}
.y24b{bottom:797.559000px;}
.y66{bottom:798.351000px;}
.y48{bottom:798.505500px;}
.y26a{bottom:806.526000px;}
.y1bd{bottom:809.422500px;}
.y22d{bottom:810.139500px;}
.y110{bottom:810.186000px;}
.ye4{bottom:813.523500px;}
.y8f{bottom:813.957000px;}
.y27{bottom:815.491500px;}
.y47{bottom:816.438000px;}
.y207{bottom:820.558500px;}
.y4{bottom:824.458500px;}
.y65{bottom:825.945000px;}
.y22c{bottom:828.072000px;}
.ye3{bottom:831.456000px;}
.y8e{bottom:831.889500px;}
.y24a{bottom:833.424000px;}
.y46{bottom:834.370500px;}
.y1bc{bottom:834.864000px;}
.yc1{bottom:841.444500px;}
.y269{bottom:842.391000px;}
.y26{bottom:848.368500px;}
.ye2{bottom:849.390000px;}
.y8d{bottom:849.823500px;}
.y249{bottom:851.358000px;}
.y45{bottom:852.303000px;}
.y206{bottom:856.590000px;}
.y3{bottom:857.335500px;}
.y268{bottom:860.323500px;}
.y22b{bottom:863.938500px;}
.ye1{bottom:867.322500px;}
.y8c{bottom:867.756000px;}
.y64{bottom:867.799500px;}
.y248{bottom:869.290500px;}
.y44{bottom:870.237000px;}
.y1bb{bottom:873.811500px;}
.ybc{bottom:874.320533px;}
.y267{bottom:878.256000px;}
.y25{bottom:881.245500px;}
.ye0{bottom:885.255000px;}
.y8b{bottom:885.688500px;}
.y63{bottom:885.732000px;}
.y205{bottom:886.528500px;}
.y247{bottom:887.223000px;}
.y43{bottom:888.169500px;}
.y2{bottom:890.211000px;}
.y266{bottom:896.190000px;}
.y225{bottom:896.814504px;}
.ydf{bottom:903.187500px;}
.y8a{bottom:903.621000px;}
.y1ba{bottom:904.461000px;}
.y42{bottom:906.102000px;}
.y24{bottom:914.122500px;}
.y62{bottom:918.478500px;}
.yde{bottom:921.120000px;}
.y89{bottom:921.553500px;}
.y1b9{bottom:922.393500px;}
.y1{bottom:923.088000px;}
.y41{bottom:924.034500px;}
.y23{bottom:932.055000px;}
.ydd{bottom:939.052500px;}
.y88{bottom:939.486000px;}
.y1b8{bottom:940.326000px;}
.y40{bottom:949.477500px;}
.y22{bottom:949.987500px;}
.ydc{bottom:956.986500px;}
.y87{bottom:957.420000px;}
.y1b7{bottom:958.258500px;}
.y21{bottom:967.920000px;}
.y86{bottom:982.861500px;}
.y20{bottom:985.852500px;}
.y3f{bottom:988.243500px;}
.h14{height:7.100296px;}
.h17{height:22.266293px;}
.h15{height:22.500675px;}
.hc{height:24.209280px;}
.hb{height:29.161574px;}
.h18{height:34.902414px;}
.hd{height:35.865450px;}
.h16{height:37.609527px;}
.h3{height:37.658880px;}
.h4{height:40.348800px;}
.hf{height:41.049289px;}
.h9{height:41.484266px;}
.h6{height:41.842920px;}
.h12{height:48.136357px;}
.h8{height:50.211840px;}
.h7{height:51.944996px;}
.h10{height:51.950996px;}
.h2{height:53.798400px;}
.h5{height:60.254040px;}
.h1{height:77.366008px;}
.ha{height:89.812290px;}
.h11{height:122.650200px;}
.he{height:126.477225px;}
.h13{height:479.017350px;}
.h0{height:1188.000000px;}
.w5{width:69.752093px;}
.w2{width:515.563650px;}
.w1{width:515.563680px;}
.w4{width:515.569545px;}
.w3{width:515.585100px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x77{left:3.726674px;}
.x69{left:6.210691px;}
.x79{left:7.822501px;}
.x6a{left:17.671067px;}
.x12{left:20.532885px;}
.x6d{left:30.426260px;}
.x22{left:34.240420px;}
.x13{left:39.507124px;}
.x21{left:47.504387px;}
.x78{left:52.589469px;}
.x40{left:67.897736px;}
.x14{left:79.362398px;}
.x38{left:83.802609px;}
.x23{left:97.426233px;}
.x60{left:114.996893px;}
.x64{left:126.324918px;}
.x16{left:132.225137px;}
.x15{left:141.006581px;}
.x6b{left:146.241379px;}
.x41{left:162.712164px;}
.x68{left:165.927693px;}
.x3e{left:168.199166px;}
.x6e{left:169.450301px;}
.x3d{left:173.399300px;}
.x42{left:182.067276px;}
.x6c{left:186.605006px;}
.x67{left:187.895260px;}
.x47{left:197.050260px;}
.xf{left:199.158000px;}
.x4{left:200.652000px;}
.x3f{left:203.526956px;}
.x11{left:208.498500px;}
.x8{left:209.619000px;}
.x43{left:211.054632px;}
.x35{left:212.175373px;}
.x4a{left:214.173018px;}
.x1d{left:215.946000px;}
.x3c{left:219.768247px;}
.x7b{left:221.574000px;}
.xd{left:223.068000px;}
.x2{left:226.428000px;}
.x55{left:235.444277px;}
.x36{left:236.775606px;}
.xc{left:238.012500px;}
.x3a{left:239.232891px;}
.x29{left:241.897500px;}
.x44{left:243.076269px;}
.x19{left:249.027177px;}
.x5{left:250.075500px;}
.x1{left:252.909000px;}
.x3b{left:254.397123px;}
.x46{left:256.765739px;}
.xb{left:258.187500px;}
.x3{left:260.242500px;}
.x2d{left:263.395500px;}
.x33{left:265.812512px;}
.x72{left:267.441791px;}
.x59{left:269.688489px;}
.x18{left:271.464181px;}
.x75{left:272.704500px;}
.x31{left:276.327527px;}
.x7{left:280.005000px;}
.x56{left:284.417203px;}
.x4d{left:285.872406px;}
.x45{left:288.242979px;}
.x30{left:291.947488px;}
.x57{left:293.915793px;}
.x17{left:296.356990px;}
.x6f{left:300.807796px;}
.x34{left:302.510749px;}
.x27{left:305.200500px;}
.x4e{left:307.859532px;}
.x2f{left:309.861088px;}
.x73{left:312.060000px;}
.x37{left:313.478233px;}
.x7a{left:315.726000px;}
.x52{left:317.839930px;}
.x39{left:319.486161px;}
.x10{left:321.421500px;}
.x6{left:323.241000px;}
.x26{left:326.697000px;}
.x71{left:332.326110px;}
.x24{left:334.469202px;}
.x2b{left:337.666500px;}
.x1c{left:342.180000px;}
.x65{left:349.026390px;}
.x2c{left:350.107500px;}
.x5c{left:351.412610px;}
.x2a{left:352.521000px;}
.x4c{left:360.195333px;}
.x49{left:363.251781px;}
.x48{left:365.192704px;}
.x5f{left:366.282150px;}
.x58{left:373.514483px;}
.x70{left:380.837440px;}
.x4b{left:384.434373px;}
.x32{left:385.763745px;}
.x5b{left:389.511284px;}
.x5a{left:391.399397px;}
.x50{left:404.353441px;}
.x25{left:407.124968px;}
.x53{left:412.412475px;}
.x61{left:416.158058px;}
.x9{left:417.441000px;}
.x4f{left:419.277095px;}
.x76{left:423.559967px;}
.x1b{left:425.588027px;}
.xa{left:427.999500px;}
.x1a{left:430.231828px;}
.x54{left:432.008817px;}
.x62{left:437.183525px;}
.x2e{left:440.485808px;}
.x5d{left:448.737132px;}
.x20{left:450.964500px;}
.xe{left:454.699500px;}
.x51{left:455.960989px;}
.x63{left:461.001390px;}
.x1f{left:465.654000px;}
.x1e{left:467.403000px;}
.x5e{left:475.945255px;}
.x66{left:499.269577px;}
.x74{left:556.311000px;}
.x28{left:600.777000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v4{vertical-align:-4.000120pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.906608pt;}
.v1{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000414pt;}
.lsa{letter-spacing:0.001473pt;}
.ls9{letter-spacing:0.001634pt;}
.ls6{letter-spacing:0.958327pt;}
.ls3{letter-spacing:2.655508pt;}
.ls4{letter-spacing:2.659661pt;}
.ls2{letter-spacing:17.692785pt;}
.ls7{letter-spacing:18.820842pt;}
.ls5{letter-spacing:20.346175pt;}
.ls0{letter-spacing:26.566933pt;}
.ws19{word-spacing:-28.013572pt;}
.ws17{word-spacing:-27.701139pt;}
.ws2{word-spacing:-25.708331pt;}
.ws10{word-spacing:-21.423659pt;}
.ws4{word-spacing:-17.853099pt;}
.ws54{word-spacing:-15.224139pt;}
.ws2e{word-spacing:-14.877483pt;}
.wsaa{word-spacing:-11.902016pt;}
.ws1b{word-spacing:-11.024368pt;}
.ws1a{word-spacing:-11.023850pt;}
.ws16{word-spacing:-11.023331pt;}
.ws2b{word-spacing:-3.134898pt;}
.ws2a{word-spacing:-3.081764pt;}
.ws6f{word-spacing:-2.975497pt;}
.wsc1{word-spacing:-2.922363pt;}
.wsce{word-spacing:-2.444158pt;}
.ws60{word-spacing:-2.391024pt;}
.wsa3{word-spacing:-2.178489pt;}
.wsc2{word-spacing:-2.072221pt;}
.ws4d{word-spacing:-1.859685pt;}
.ws4e{word-spacing:-1.820829pt;}
.ws55{word-spacing:-1.647150pt;}
.wsb1{word-spacing:-1.434614pt;}
.wsc4{word-spacing:-1.381481pt;}
.wsa5{word-spacing:-1.168945pt;}
.ws31{word-spacing:-0.956410pt;}
.wsa1{word-spacing:-0.690740pt;}
.wsc3{word-spacing:-0.371937pt;}
.ws67{word-spacing:-0.265669pt;}
.wscc{word-spacing:-0.212535pt;}
.ws80{word-spacing:-0.106268pt;}
.ws69{word-spacing:-0.056317pt;}
.wsa0{word-spacing:-0.053134pt;}
.ws97{word-spacing:-0.044001pt;}
.ws99{word-spacing:-0.026667pt;}
.ws6d{word-spacing:-0.008307pt;}
.ws18{word-spacing:0.000000pt;}
.ws94{word-spacing:0.318803pt;}
.ws8f{word-spacing:0.371937pt;}
.wscb{word-spacing:0.387875pt;}
.wse{word-spacing:0.526029pt;}
.ws5e{word-spacing:0.531339pt;}
.ws2c{word-spacing:0.690740pt;}
.ws52{word-spacing:0.850142pt;}
.wsac{word-spacing:1.275213pt;}
.ws24{word-spacing:1.381481pt;}
.ws92{word-spacing:1.594016pt;}
.ws49{word-spacing:1.647150pt;}
.ws47{word-spacing:1.657781pt;}
.ws8d{word-spacing:1.859685pt;}
.wsd2{word-spacing:1.912819pt;}
.ws1{word-spacing:1.928125pt;}
.ws0{word-spacing:2.019940pt;}
.wsc6{word-spacing:2.082853pt;}
.ws9d{word-spacing:2.178489pt;}
.wsb3{word-spacing:2.284756pt;}
.ws4a{word-spacing:2.391024pt;}
.ws4b{word-spacing:2.444158pt;}
.ws66{word-spacing:2.497292pt;}
.wsb{word-spacing:2.534502pt;}
.ws2f{word-spacing:2.762961pt;}
.ws26{word-spacing:2.816095pt;}
.ws43{word-spacing:2.820058pt;}
.ws25{word-spacing:2.869229pt;}
.ws42{word-spacing:2.922363pt;}
.ws3{word-spacing:2.933009pt;}
.wsd{word-spacing:3.012710pt;}
.ws7f{word-spacing:3.028630pt;}
.ws48{word-spacing:3.145533pt;}
.wsa4{word-spacing:3.241166pt;}
.ws7e{word-spacing:3.559969pt;}
.wsd3{word-spacing:3.561529pt;}
.ws6a{word-spacing:3.719371pt;}
.ws68{word-spacing:3.772505pt;}
.ws6c{word-spacing:3.878772pt;}
.ws30{word-spacing:3.985040pt;}
.ws50{word-spacing:4.038174pt;}
.wsba{word-spacing:4.144442pt;}
.ws4f{word-spacing:4.197575pt;}
.ws59{word-spacing:4.250709pt;}
.wsbc{word-spacing:4.303843pt;}
.ws6b{word-spacing:4.356977pt;}
.ws96{word-spacing:4.410111pt;}
.wsc5{word-spacing:4.505763pt;}
.ws9c{word-spacing:4.516379pt;}
.wsb4{word-spacing:4.569513pt;}
.wsca{word-spacing:4.622646pt;}
.wsa6{word-spacing:4.675780pt;}
.ws3f{word-spacing:4.760806pt;}
.ws32{word-spacing:4.835182pt;}
.ws2d{word-spacing:4.941450pt;}
.ws23{word-spacing:4.994583pt;}
.wsa7{word-spacing:5.047717pt;}
.ws9a{word-spacing:5.313387pt;}
.ws1e{word-spacing:5.419654pt;}
.wsab{word-spacing:5.780979pt;}
.ws4c{word-spacing:5.993540pt;}
.ws20{word-spacing:6.057301pt;}
.ws90{word-spacing:6.322930pt;}
.wsb2{word-spacing:6.429198pt;}
.wsbd{word-spacing:6.535466pt;}
.wsa9{word-spacing:6.546109pt;}
.ws21{word-spacing:6.907403pt;}
.wsbb{word-spacing:7.192228pt;}
.wsa8{word-spacing:7.248101pt;}
.ws58{word-spacing:7.279340pt;}
.wsf{word-spacing:7.316582pt;}
.ws40{word-spacing:7.353746pt;}
.ws62{word-spacing:7.491875pt;}
.ws71{word-spacing:7.598143pt;}
.wsb6{word-spacing:7.651277pt;}
.ws22{word-spacing:7.810678pt;}
.ws91{word-spacing:7.970080pt;}
.wsb5{word-spacing:8.023214pt;}
.ws53{word-spacing:8.076348pt;}
.wsbf{word-spacing:8.342017pt;}
.ws8{word-spacing:8.512102pt;}
.ws44{word-spacing:8.660820pt;}
.wsd1{word-spacing:8.713954pt;}
.ws65{word-spacing:8.767088pt;}
.ws9e{word-spacing:8.873356pt;}
.ws57{word-spacing:9.032757pt;}
.ws51{word-spacing:9.192159pt;}
.ws9b{word-spacing:9.298427pt;}
.wsb9{word-spacing:9.404694pt;}
.wsa2{word-spacing:9.510962pt;}
.wsc{word-spacing:9.946726pt;}
.wsb0{word-spacing:10.042301pt;}
.wsaf{word-spacing:10.102433pt;}
.wsbe{word-spacing:10.201702pt;}
.wsc9{word-spacing:10.520506pt;}
.ws27{word-spacing:10.626773pt;}
.ws64{word-spacing:11.264380pt;}
.ws6e{word-spacing:11.476915pt;}
.wsc0{word-spacing:11.530049pt;}
.ws9{word-spacing:11.668275pt;}
.ws12{word-spacing:11.689451pt;}
.ws41{word-spacing:11.689480pt;}
.wsae{word-spacing:11.921875pt;}
.wsad{word-spacing:11.921879pt;}
.wscd{word-spacing:11.955120pt;}
.wsd0{word-spacing:12.752128pt;}
.ws7d{word-spacing:12.858396pt;}
.ws3d{word-spacing:12.964663pt;}
.ws3c{word-spacing:13.017797pt;}
.ws56{word-spacing:13.124065pt;}
.ws15{word-spacing:15.561631pt;}
.wsb7{word-spacing:16.471499pt;}
.ws7{word-spacing:17.167667pt;}
.wsc7{word-spacing:17.215373pt;}
.ws3e{word-spacing:17.980546pt;}
.wsa{word-spacing:19.415245pt;}
.wsb8{word-spacing:19.872066pt;}
.wscf{word-spacing:19.925200pt;}
.ws7c{word-spacing:20.137735pt;}
.ws5{word-spacing:20.180378pt;}
.ws6{word-spacing:20.993331pt;}
.wsc8{word-spacing:22.156822pt;}
.ws7b{word-spacing:22.475626pt;}
.ws28{word-spacing:25.769925pt;}
.ws45{word-spacing:26.248130pt;}
.ws98{word-spacing:28.310017pt;}
.ws5a{word-spacing:35.280887pt;}
.ws29{word-spacing:36.928037pt;}
.ws9f{word-spacing:43.459304pt;}
.ws70{word-spacing:48.830023pt;}
.ws5c{word-spacing:48.883157pt;}
.ws81{word-spacing:96.809905pt;}
.ws93{word-spacing:122.792366pt;}
.ws76{word-spacing:161.953524pt;}
.ws79{word-spacing:175.662062pt;}
.ws61{word-spacing:178.211123pt;}
.ws63{word-spacing:209.509127pt;}
.ws7a{word-spacing:221.357187pt;}
.ws75{word-spacing:241.973127pt;}
.ws77{word-spacing:242.291931pt;}
.ws73{word-spacing:255.681665pt;}
.ws5f{word-spacing:260.516928pt;}
.ws74{word-spacing:271.674959pt;}
.ws5b{word-spacing:274.275926pt;}
.ws78{word-spacing:295.272031pt;}
.ws72{word-spacing:320.664384pt;}
.ws82{word-spacing:358.124954pt;}
.ws86{word-spacing:358.130287pt;}
.ws5d{word-spacing:367.262593pt;}
.ws8c{word-spacing:400.099817pt;}
.ws89{word-spacing:429.966383pt;}
.ws87{word-spacing:446.278480pt;}
.ws88{word-spacing:452.176339pt;}
.ws84{word-spacing:462.484309pt;}
.ws8b{word-spacing:468.429969pt;}
.ws85{word-spacing:478.477603pt;}
.ws8a{word-spacing:478.737939pt;}
.ws83{word-spacing:484.694266pt;}
.ws95{word-spacing:690.476820pt;}
.ws36{word-spacing:709.021463pt;}
.ws46{word-spacing:741.698791pt;}
.ws33{word-spacing:761.889661pt;}
.ws3b{word-spacing:765.183961pt;}
.ws3a{word-spacing:766.724843pt;}
.ws35{word-spacing:788.775397pt;}
.ws8e{word-spacing:813.907716pt;}
.ws34{word-spacing:818.424095pt;}
.ws37{word-spacing:853.704982pt;}
.ws39{word-spacing:877.455821pt;}
.ws38{word-spacing:889.251539pt;}
.ws1d{word-spacing:1251.468842pt;}
.ws11{word-spacing:1450.829803pt;}
.ws1f{word-spacing:1470.220971pt;}
.ws1c{word-spacing:1478.403586pt;}
.ws13{word-spacing:1553.643835pt;}
.ws14{word-spacing:1590.943809pt;}
._8e{margin-left:-1618.273970pt;}
._14{margin-left:-30.923910pt;}
._10{margin-left:-28.001548pt;}
._e{margin-left:-26.566933pt;}
._11{margin-left:-8.979623pt;}
._0{margin-left:-7.069791pt;}
._68{margin-left:-5.076561pt;}
._6{margin-left:-4.064768pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-0.992134pt;}
._5{width:1.039955pt;}
._2{width:2.387202pt;}
._2f{width:3.465167pt;}
._f{width:4.956042pt;}
._1f{width:13.517961pt;}
._30{width:14.465717pt;}
._1d{width:15.408821pt;}
._8f{width:16.334819pt;}
._b{width:17.693578pt;}
._22{width:18.698183pt;}
._a{width:20.431584pt;}
._ad{width:21.383660pt;}
._1c{width:22.316224pt;}
._16{width:23.247535pt;}
._23{width:24.530437pt;}
._21{width:25.716856pt;}
._90{width:26.970773pt;}
._18{width:28.024270pt;}
._ac{width:29.526512pt;}
._12{width:30.579968pt;}
._20{width:32.964348pt;}
._94{width:33.875117pt;}
._b0{width:35.658138pt;}
._9{width:36.869837pt;}
._17{width:37.840498pt;}
._c{width:38.914906pt;}
._af{width:40.062935pt;}
._66{width:42.719629pt;}
._ab{width:43.893937pt;}
._ae{width:45.371973pt;}
._b2{width:46.676588pt;}
._8{width:47.569594pt;}
._8d{width:48.817927pt;}
._b3{width:52.685193pt;}
._9d{width:53.670518pt;}
._13{width:56.930358pt;}
._8b{width:62.986518pt;}
._7{width:64.271155pt;}
._b1{width:66.895538pt;}
._1a{width:69.552231pt;}
._55{width:73.551884pt;}
._4{width:76.449519pt;}
._4b{width:79.874814pt;}
._d{width:83.598560pt;}
._49{width:84.497460pt;}
._4f{width:85.772673pt;}
._4d{width:90.395319pt;}
._19{width:92.559196pt;}
._43{width:96.080643pt;}
._41{width:100.703290pt;}
._54{width:102.031636pt;}
._50{width:106.335479pt;}
._51{width:109.257842pt;}
._47{width:112.073937pt;}
._6b{width:114.220404pt;}
._45{width:116.696583pt;}
._3f{width:118.290599pt;}
._48{width:121.159828pt;}
._3d{width:122.913246pt;}
._4a{width:124.082191pt;}
._1b{width:125.206162pt;}
._4c{width:127.057687pt;}
._4e{width:129.980050pt;}
._91{width:133.082927pt;}
._80{width:134.570675pt;}
._40{width:137.365658pt;}
._42{width:140.288020pt;}
._52{width:143.316651pt;}
._53{width:146.239013pt;}
._89{width:148.709597pt;}
._6a{width:151.431520pt;}
._44{width:153.358951pt;}
._46{width:156.281314pt;}
._70{width:157.807584pt;}
._3c{width:159.575614pt;}
._3e{width:162.497977pt;}
._7e{width:165.753508pt;}
._36{width:173.917936pt;}
._81{width:177.715509pt;}
._69{width:180.313633pt;}
._74{width:181.542593pt;}
._7a{width:183.181417pt;}
._8a{width:185.834145pt;}
._84{width:191.198509pt;}
._85{width:193.328986pt;}
._75{width:198.776866pt;}
._71{width:199.949633pt;}
._6c{width:201.008489pt;}
._7c{width:204.813781pt;}
._8c{width:206.836516pt;}
._82{width:209.188167pt;}
._35{width:210.580304pt;}
._37{width:213.502667pt;}
._a9{width:215.283242pt;}
._73{width:218.328638pt;}
._77{width:222.478393pt;}
._88{width:225.106194pt;}
._6f{width:236.735678pt;}
._7f{width:238.195437pt;}
._78{width:240.083111pt;}
._76{width:244.954018pt;}
._72{width:249.252548pt;}
._6d{width:251.560027pt;}
._6e{width:256.745915pt;}
._83{width:273.161343pt;}
._7d{width:277.730855pt;}
._34{width:284.113754pt;}
._32{width:288.736400pt;}
._57{width:301.067279pt;}
._7b{width:318.378263pt;}
._aa{width:320.328896pt;}
._31{width:325.398768pt;}
._33{width:328.321131pt;}
._95{width:335.998841pt;}
._56{width:337.729647pt;}
._58{width:340.652010pt;}
._2d{width:362.698742pt;}
._a8{width:371.613051pt;}
._86{width:381.524325pt;}
._87{width:382.669740pt;}
._79{width:391.844992pt;}
._2c{width:399.361110pt;}
._2e{width:402.283473pt;}
._92{width:408.342900pt;}
._3b{width:411.263097pt;}
._9c{width:414.540153pt;}
._39{width:415.885743pt;}
._9a{width:445.291659pt;}
._38{width:452.548111pt;}
._3a{width:455.470474pt;}
._98{width:461.155963pt;}
._99{width:467.053822pt;}
._5a{width:470.241689pt;}
._96{width:477.361792pt;}
._9b{width:483.312785pt;}
._97{width:493.355086pt;}
._62{width:495.480275pt;}
._93{width:500.180971pt;}
._9e{width:504.349355pt;}
._61{width:532.142643pt;}
._63{width:535.065006pt;}
._25{width:566.201452pt;}
._5b{width:585.060153pt;}
._59{width:607.004439pt;}
._5f{width:610.298739pt;}
._9f{width:641.541453pt;}
._5e{width:646.961107pt;}
._60{width:649.883470pt;}
._65{width:680.966782pt;}
._5c{width:692.124894pt;}
._a2{width:694.547821pt;}
._29{width:698.926029pt;}
._28{width:700.413777pt;}
._64{width:708.915196pt;}
._67{width:714.089783pt;}
._1e{width:715.792334pt;}
._24{width:729.849939pt;}
._2b{width:732.825436pt;}
._2a{width:734.366318pt;}
._26{width:762.420999pt;}
._5d{width:771.081820pt;}
._27{width:791.963429pt;}
._a7{width:798.481486pt;}
._a6{width:845.097296pt;}
._a1{width:850.995155pt;}
._a3{width:861.303125pt;}
._a5{width:867.254118pt;}
._a4{width:877.296419pt;}
._a0{width:883.513082pt;}
._15{width:1206.762029pt;}
.fsb{font-size:8.307001pt;}
.fsd{font-size:26.667467pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:34.117625pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:44.001320pt;}
.fs2{font-size:47.820800pt;}
.fs9{font-size:48.025675pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:56.317200pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y228{bottom:3.635525pt;}
.y22a{bottom:4.635558pt;}
.y226{bottom:4.997546pt;}
.y227{bottom:5.997576pt;}
.y229{bottom:9.974258pt;}
.y59{bottom:11.160692pt;}
.y1af{bottom:11.476996pt;}
.ybd{bottom:15.734613pt;}
.y1ae{bottom:22.036055pt;}
.y5b{bottom:37.663030pt;}
.y1b1{bottom:46.307403pt;}
.y136{bottom:50.784184pt;}
.ybf{bottom:53.039494pt;}
.y5a{bottom:64.165369pt;}
.y1a8{bottom:66.585781pt;}
.y1b0{bottom:68.080972pt;}
.y1a9{bottom:73.695471pt;}
.y19f{bottom:79.491363pt;}
.y1a3{bottom:86.037748pt;}
.ybe{bottom:90.344375pt;}
.y189{bottom:92.438670pt;}
.y192{bottom:93.014145pt;}
.y18d{bottom:95.007732pt;}
.y19c{bottom:98.465795pt;}
.yc0{bottom:99.348771pt;}
.y1a6{bottom:100.932860pt;}
.y19a{bottom:102.374734pt;}
.y195{bottom:108.142229pt;}
.y185{bottom:112.682856pt;}
.y18f{bottom:114.215137pt;}
.y188{bottom:114.663114pt;}
.y196{bottom:115.105297pt;}
.y1aa{bottom:118.737799pt;}
.y1a7{bottom:118.949907pt;}
.y1f{bottom:119.153333pt;}
.y1a2{bottom:119.683014pt;}
.y190{bottom:128.884232pt;}
.y19d{bottom:131.971395pt;}
.y193{bottom:132.972825pt;}
.y182{bottom:137.569667pt;}
.y17e{bottom:140.321281pt;}
.y1ab{bottom:142.726336pt;}
.y178{bottom:143.524350pt;}
.y18b{bottom:145.575891pt;}
.y18e{bottom:145.586322pt;}
.y184{bottom:146.216852pt;}
.y1a5{bottom:151.702116pt;}
.y224{bottom:159.004000pt;}
.y85{bottom:159.006667pt;}
.y181{bottom:159.727464pt;}
.y19e{bottom:160.863925pt;}
.y18a{bottom:160.923037pt;}
.y265{bottom:161.729333pt;}
.y17b{bottom:162.542827pt;}
.y186{bottom:163.559325pt;}
.ybb{bottom:164.200000pt;}
.y1dc{bottom:167.342667pt;}
.y17a{bottom:167.467684pt;}
.y1ee{bottom:168.198667pt;}
.y10f{bottom:170.402667pt;}
.y12d{bottom:170.788000pt;}
.y1e{bottom:171.134667pt;}
.y61{bottom:172.812000pt;}
.y264{bottom:174.348000pt;}
.y223{bottom:174.944000pt;}
.y14b{bottom:175.402626pt;}
.y84{bottom:175.484000pt;}
.y16c{bottom:176.153119pt;}
.y199{bottom:179.326052pt;}
.yb1{bottom:181.549333pt;}
.y176{bottom:182.866988pt;}
.y1ac{bottom:182.960872pt;}
.y1db{bottom:183.282667pt;}
.y172{bottom:183.432611pt;}
.y1ed{bottom:184.138667pt;}
.y60{bottom:185.432000pt;}
.y10e{bottom:186.342667pt;}
.y12c{bottom:186.728000pt;}
.y165{bottom:186.919650pt;}
.y1d{bottom:187.074667pt;}
.y1ad{bottom:187.538589pt;}
.yba{bottom:188.110667pt;}
.y155{bottom:189.890907pt;}
.y19b{bottom:190.809464pt;}
.y263{bottom:190.825333pt;}
.y13e{bottom:191.218667pt;}
.y168{bottom:194.645381pt;}
.y246{bottom:195.318667pt;}
.y14f{bottom:196.734012pt;}
.yb0{bottom:197.490667pt;}
.y5f{bottom:198.050667pt;}
.y198{bottom:199.090965pt;}
.y1da{bottom:199.222667pt;}
.y1a1{bottom:199.920275pt;}
.y1ec{bottom:200.078667pt;}
.y16d{bottom:201.122222pt;}
.y10d{bottom:202.282667pt;}
.y12b{bottom:202.668000pt;}
.y1c{bottom:203.014667pt;}
.y17c{bottom:203.467585pt;}
.yb9{bottom:204.050667pt;}
.y13d{bottom:207.158667pt;}
.y183{bottom:208.356511pt;}
.y5e{bottom:210.670667pt;}
.y262{bottom:210.817333pt;}
.y245{bottom:211.796000pt;}
.y1b3{bottom:212.729654pt;}
.y17f{bottom:212.873378pt;}
.yaf{bottom:213.430667pt;}
.y1d9{bottom:215.162667pt;}
.y152{bottom:215.809283pt;}
.y1eb{bottom:216.020000pt;}
.y204{bottom:216.604000pt;}
.y187{bottom:217.747815pt;}
.y10c{bottom:218.224000pt;}
.y12a{bottom:218.608000pt;}
.y1a4{bottom:218.632180pt;}
.y1b{bottom:218.954667pt;}
.y163{bottom:219.823116pt;}
.yb8{bottom:219.990667pt;}
.y151{bottom:221.894361pt;}
.y83{bottom:222.024000pt;}
.y222{bottom:222.296000pt;}
.y244{bottom:224.740000pt;}
.y158{bottom:225.028466pt;}
.y15b{bottom:225.341413pt;}
.y194{bottom:225.934853pt;}
.y261{bottom:226.757333pt;}
.y15d{bottom:226.943817pt;}
.y5d{bottom:227.148000pt;}
.y3e{bottom:227.465333pt;}
.y17d{bottom:227.793989pt;}
.yae{bottom:229.370667pt;}
.y174{bottom:230.527638pt;}
.y13c{bottom:231.068000pt;}
.y1d8{bottom:231.102667pt;}
.y1ea{bottom:231.960000pt;}
.y203{bottom:232.544000pt;}
.y243{bottom:233.905333pt;}
.y10b{bottom:234.164000pt;}
.y129{bottom:234.549333pt;}
.yb7{bottom:235.930667pt;}
.y16b{bottom:236.803962pt;}
.y82{bottom:237.964000pt;}
.y221{bottom:238.236000pt;}
.y150{bottom:238.614997pt;}
.y164{bottom:239.921840pt;}
.y179{bottom:240.193640pt;}
.y161{bottom:240.841556pt;}
.y260{bottom:242.697333pt;}
.y177{bottom:243.354403pt;}
.y3d{bottom:243.405333pt;}
.yad{bottom:245.310667pt;}
.y13b{bottom:247.009333pt;}
.y1d7{bottom:247.042667pt;}
.y5c{bottom:247.140000pt;}
.y1e9{bottom:247.900000pt;}
.y1a{bottom:248.178667pt;}
.y202{bottom:248.484000pt;}
.y10a{bottom:250.104000pt;}
.y242{bottom:250.382667pt;}
.ydb{bottom:251.442667pt;}
.yb6{bottom:251.870667pt;}
.y170{bottom:251.952329pt;}
.y157{bottom:253.565164pt;}
.y81{bottom:253.905333pt;}
.y220{bottom:254.176000pt;}
.y15f{bottom:256.476729pt;}
.y15e{bottom:256.997728pt;}
.y171{bottom:257.079442pt;}
.y128{bottom:257.164000pt;}
.y25f{bottom:258.638667pt;}
.y3c{bottom:259.346667pt;}
.yac{bottom:261.250667pt;}
.y175{bottom:262.183374pt;}
.y148{bottom:262.738564pt;}
.y1d6{bottom:262.984000pt;}
.y16e{bottom:263.116419pt;}
.y1e8{bottom:263.840000pt;}
.y201{bottom:264.424000pt;}
.y154{bottom:265.898169pt;}
.y109{bottom:266.044000pt;}
.y169{bottom:266.117811pt;}
.y149{bottom:266.225604pt;}
.yda{bottom:267.382667pt;}
.y162{bottom:267.559685pt;}
.y166{bottom:267.856405pt;}
.y80{bottom:269.845333pt;}
.y21f{bottom:270.117333pt;}
.y241{bottom:270.361333pt;}
.y13a{bottom:270.918667pt;}
.y14a{bottom:271.705652pt;}
.y25e{bottom:274.578667pt;}
.y3b{bottom:275.286667pt;}
.y159{bottom:276.289164pt;}
.y58{bottom:276.363387pt;}
.yb5{bottom:276.398667pt;}
.yab{bottom:277.190667pt;}
.y19{bottom:277.402667pt;}
.y160{bottom:278.756229pt;}
.y1d5{bottom:278.924000pt;}
.y1e7{bottom:279.780000pt;}
.y200{bottom:280.365333pt;}
.y167{bottom:281.189101pt;}
.y141{bottom:281.626647pt;}
.y108{bottom:281.984000pt;}
.y16a{bottom:282.079261pt;}
.y1a0{bottom:282.086215pt;}
.y146{bottom:282.978114pt;}
.yd9{bottom:283.324000pt;}
.y7f{bottom:285.785333pt;}
.y240{bottom:286.301333pt;}
.y139{bottom:286.860000pt;}
.y14e{bottom:287.062071pt;}
.y145{bottom:288.567693pt;}
.y1b6{bottom:290.196000pt;}
.y156{bottom:290.447113pt;}
.y25d{bottom:290.518667pt;}
.y144{bottom:291.046348pt;}
.y127{bottom:292.368000pt;}
.y21e{bottom:292.732000pt;}
.yaa{bottom:293.132000pt;}
.y18{bottom:293.342667pt;}
.y1d4{bottom:294.864000pt;}
.y1e6{bottom:295.720000pt;}
.y180{bottom:296.265027pt;}
.y1ff{bottom:296.305333pt;}
.y107{bottom:297.924000pt;}
.yd8{bottom:299.264000pt;}
.y7e{bottom:301.725333pt;}
.y23f{bottom:302.241333pt;}
.y142{bottom:303.093064pt;}
.y14d{bottom:303.842398pt;}
.y3a{bottom:304.394667pt;}
.y16f{bottom:305.728772pt;}
.y143{bottom:305.746738pt;}
.y1b5{bottom:306.136000pt;}
.y25c{bottom:306.458667pt;}
.y126{bottom:308.308000pt;}
.ya9{bottom:309.072000pt;}
.y153{bottom:310.615380pt;}
.y1d3{bottom:310.804000pt;}
.y147{bottom:311.281261pt;}
.y1e5{bottom:311.661333pt;}
.y1fe{bottom:312.245333pt;}
.y173{bottom:312.635626pt;}
.yb4{bottom:313.602667pt;}
.y106{bottom:313.865333pt;}
.yd7{bottom:315.204000pt;}
.y15c{bottom:317.510063pt;}
.y7d{bottom:317.665333pt;}
.y138{bottom:321.330667pt;}
.y25b{bottom:322.398667pt;}
.y17{bottom:322.566667pt;}
.y191{bottom:322.620369pt;}
.y14c{bottom:323.708150pt;}
.ya8{bottom:325.012000pt;}
.y23e{bottom:326.152000pt;}
.y1d2{bottom:326.744000pt;}
.y21d{bottom:327.352000pt;}
.y1fd{bottom:328.185333pt;}
.yb3{bottom:329.542667pt;}
.y105{bottom:329.805333pt;}
.y1b2{bottom:330.878690pt;}
.yd6{bottom:331.144000pt;}
.y7c{bottom:333.605333pt;}
.y1e4{bottom:334.277333pt;}
.y13f{bottom:335.360307pt;}
.y137{bottom:337.270667pt;}
.y25a{bottom:338.338667pt;}
.ya7{bottom:340.952000pt;}
.y23d{bottom:342.092000pt;}
.y1d1{bottom:342.684000pt;}
.y18c{bottom:343.220967pt;}
.y1fc{bottom:344.125333pt;}
.y104{bottom:345.745333pt;}
.yd5{bottom:347.084000pt;}
.y140{bottom:348.313308pt;}
.y39{bottom:348.342667pt;}
.y7b{bottom:349.546667pt;}
.yb2{bottom:354.070667pt;}
.y259{bottom:354.280000pt;}
.yfb{bottom:356.121333pt;}
.y21c{bottom:356.553333pt;}
.y197{bottom:356.681160pt;}
.ya6{bottom:356.892000pt;}
.y23c{bottom:358.032000pt;}
.y1d0{bottom:358.625333pt;}
.y125{bottom:359.481333pt;}
.y1fb{bottom:360.066667pt;}
.y15a{bottom:360.901306pt;}
.y103{bottom:361.685333pt;}
.yd4{bottom:363.024000pt;}
.y38{bottom:364.282667pt;}
.y7a{bottom:365.486667pt;}
.y135{bottom:366.494445pt;}
.y16{bottom:366.514667pt;}
.y1e3{bottom:369.480000pt;}
.y258{bottom:370.220000pt;}
.yfa{bottom:372.062667pt;}
.ya5{bottom:372.832000pt;}
.y23b{bottom:373.972000pt;}
.y1cf{bottom:374.565333pt;}
.y57{bottom:374.873333pt;}
.y124{bottom:375.421333pt;}
.y1fa{bottom:376.006667pt;}
.yd3{bottom:378.965333pt;}
.y37{bottom:380.224000pt;}
.y15{bottom:381.126667pt;}
.y79{bottom:381.426667pt;}
.y102{bottom:384.301333pt;}
.y1e2{bottom:385.420000pt;}
.yf9{bottom:388.002667pt;}
.ya4{bottom:388.773333pt;}
.y23a{bottom:389.913333pt;}
.y1ce{bottom:390.505333pt;}
.y257{bottom:391.357333pt;}
.y123{bottom:391.362667pt;}
.y1f9{bottom:391.946667pt;}
.yd2{bottom:394.905333pt;}
.y14{bottom:395.738667pt;}
.y78{bottom:397.366667pt;}
.y56{bottom:398.784000pt;}
.y1e1{bottom:401.360000pt;}
.y21b{bottom:403.905333pt;}
.yf8{bottom:403.942667pt;}
.y36{bottom:404.133333pt;}
.ya3{bottom:404.713333pt;}
.y239{bottom:405.853333pt;}
.y1cd{bottom:406.445333pt;}
.y122{bottom:407.302667pt;}
.y1f8{bottom:407.886667pt;}
.y13{bottom:410.350667pt;}
.yd1{bottom:410.845333pt;}
.y1b4{bottom:411.435272pt;}
.y77{bottom:413.306667pt;}
.y55{bottom:414.724000pt;}
.y1e0{bottom:417.300000pt;}
.y101{bottom:419.504000pt;}
.y21a{bottom:419.845333pt;}
.yf7{bottom:419.882667pt;}
.y35{bottom:420.074667pt;}
.ya2{bottom:420.653333pt;}
.y1cc{bottom:422.385333pt;}
.y121{bottom:423.242667pt;}
.y1f7{bottom:423.826667pt;}
.y12{bottom:424.962667pt;}
.yd0{bottom:426.785333pt;}
.y76{bottom:429.246667pt;}
.y54{bottom:430.664000pt;}
.y1df{bottom:433.241333pt;}
.y238{bottom:434.961333pt;}
.y256{bottom:435.306667pt;}
.y100{bottom:435.444000pt;}
.y219{bottom:435.785333pt;}
.yf6{bottom:435.822667pt;}
.y34{bottom:436.014667pt;}
.ya1{bottom:436.593333pt;}
.y1cb{bottom:438.325333pt;}
.y120{bottom:439.182667pt;}
.y11{bottom:439.574667pt;}
.y1f6{bottom:439.766667pt;}
.ycf{bottom:442.725333pt;}
.y75{bottom:445.188000pt;}
.y53{bottom:446.604000pt;}
.y1de{bottom:449.181333pt;}
.y255{bottom:451.246667pt;}
.y218{bottom:451.725333pt;}
.yf5{bottom:451.762667pt;}
.y33{bottom:451.954667pt;}
.ya0{bottom:452.533333pt;}
.y10{bottom:454.186667pt;}
.y1ca{bottom:454.266667pt;}
.y11f{bottom:455.122667pt;}
.y1f5{bottom:455.708000pt;}
.yce{bottom:458.665333pt;}
.y74{bottom:461.128000pt;}
.y1dd{bottom:465.121333pt;}
.y254{bottom:467.186667pt;}
.y217{bottom:467.666667pt;}
.yf4{bottom:467.704000pt;}
.y9f{bottom:468.473333pt;}
.yf{bottom:468.798667pt;}
.y1c9{bottom:470.206667pt;}
.y11e{bottom:471.062667pt;}
.y1f4{bottom:471.648000pt;}
.ycd{bottom:474.606667pt;}
.y32{bottom:475.865333pt;}
.y73{bottom:477.068000pt;}
.y52{bottom:478.484000pt;}
.y237{bottom:478.909333pt;}
.ye{bottom:483.410667pt;}
.y216{bottom:483.606667pt;}
.yf3{bottom:483.644000pt;}
.y9e{bottom:484.414667pt;}
.y1c8{bottom:486.146667pt;}
.yff{bottom:486.618667pt;}
.y11d{bottom:487.004000pt;}
.y1f3{bottom:487.588000pt;}
.ycc{bottom:490.546667pt;}
.y134{bottom:491.601333pt;}
.y31{bottom:491.805333pt;}
.y72{bottom:493.008000pt;}
.y51{bottom:494.425333pt;}
.y236{bottom:494.849333pt;}
.y253{bottom:496.294667pt;}
.yd{bottom:498.022667pt;}
.y215{bottom:499.546667pt;}
.yf2{bottom:499.584000pt;}
.y9d{bottom:500.354667pt;}
.y1c7{bottom:502.086667pt;}
.y11c{bottom:502.944000pt;}
.y1f2{bottom:503.528000pt;}
.y133{bottom:507.542667pt;}
.y71{bottom:508.948000pt;}
.yfe{bottom:509.233333pt;}
.y277{bottom:509.688000pt;}
.y50{bottom:510.365333pt;}
.yc{bottom:512.634667pt;}
.ycb{bottom:513.548000pt;}
.y214{bottom:515.486667pt;}
.yf1{bottom:515.524000pt;}
.y30{bottom:515.716000pt;}
.y9c{bottom:516.294667pt;}
.y1c6{bottom:518.026667pt;}
.y11b{bottom:518.884000pt;}
.y1f1{bottom:519.468000pt;}
.y132{bottom:523.482667pt;}
.y70{bottom:524.888000pt;}
.y276{bottom:525.629333pt;}
.y235{bottom:526.730667pt;}
.yb{bottom:527.245333pt;}
.y213{bottom:531.426667pt;}
.yf0{bottom:531.464000pt;}
.y2f{bottom:531.656000pt;}
.y9b{bottom:532.234667pt;}
.y11a{bottom:534.824000pt;}
.y131{bottom:539.422667pt;}
.y252{bottom:540.244000pt;}
.y1c5{bottom:540.642667pt;}
.y6f{bottom:540.829333pt;}
.y275{bottom:541.569333pt;}
.y1f0{bottom:542.084000pt;}
.y4f{bottom:542.245333pt;}
.yfd{bottom:544.437333pt;}
.y212{bottom:547.366667pt;}
.yef{bottom:547.404000pt;}
.y2e{bottom:547.596000pt;}
.yca{bottom:548.006667pt;}
.y9a{bottom:548.174667pt;}
.ya{bottom:549.164000pt;}
.y119{bottom:550.764000pt;}
.y130{bottom:555.362667pt;}
.y234{bottom:555.954545pt;}
.y251{bottom:556.184000pt;}
.y6e{bottom:556.769333pt;}
.y274{bottom:557.509333pt;}
.y4e{bottom:558.185333pt;}
.yfc{bottom:560.377333pt;}
.y211{bottom:563.308000pt;}
.yee{bottom:563.345333pt;}
.y2d{bottom:563.536000pt;}
.y99{bottom:564.116000pt;}
.y118{bottom:566.704000pt;}
.y12f{bottom:571.302667pt;}
.y250{bottom:572.124000pt;}
.y1c4{bottom:572.672000pt;}
.y6d{bottom:572.709333pt;}
.y273{bottom:573.449333pt;}
.y4d{bottom:574.125333pt;}
.y1ef{bottom:576.702667pt;}
.yc9{bottom:577.841333pt;}
.y210{bottom:579.248000pt;}
.yed{bottom:579.285333pt;}
.y2c{bottom:579.476000pt;}
.y98{bottom:580.056000pt;}
.y117{bottom:582.645333pt;}
.y9{bottom:583.701333pt;}
.y24f{bottom:588.064000pt;}
.y1c3{bottom:588.612000pt;}
.y6c{bottom:588.649333pt;}
.y272{bottom:589.389333pt;}
.y233{bottom:594.630667pt;}
.y20f{bottom:595.188000pt;}
.yec{bottom:595.225333pt;}
.y2b{bottom:595.416000pt;}
.y12e{bottom:595.830667pt;}
.y97{bottom:595.996000pt;}
.y116{bottom:598.585333pt;}
.yc8{bottom:601.752000pt;}
.y24e{bottom:604.004000pt;}
.y1c2{bottom:604.552000pt;}
.y6b{bottom:604.589333pt;}
.y271{bottom:605.330667pt;}
.y4c{bottom:606.006667pt;}
.y232{bottom:610.572000pt;}
.y20e{bottom:611.128000pt;}
.yeb{bottom:611.550667pt;}
.y96{bottom:611.936000pt;}
.y115{bottom:614.525333pt;}
.yc7{bottom:617.692000pt;}
.y2a{bottom:619.944000pt;}
.y1c1{bottom:620.492000pt;}
.y6a{bottom:620.529333pt;}
.y270{bottom:621.270667pt;}
.y4b{bottom:621.946667pt;}
.y8{bottom:622.462667pt;}
.y231{bottom:626.512000pt;}
.y20d{bottom:627.068000pt;}
.yea{bottom:627.490667pt;}
.y95{bottom:627.876000pt;}
.y114{bottom:630.465333pt;}
.yc6{bottom:633.632000pt;}
.y69{bottom:636.470667pt;}
.y26f{bottom:637.210667pt;}
.y7{bottom:641.058667pt;}
.y230{bottom:642.452000pt;}
.y20c{bottom:643.008000pt;}
.ye9{bottom:643.430667pt;}
.y94{bottom:643.816000pt;}
.y4a{bottom:645.857333pt;}
.y113{bottom:646.405333pt;}
.y24d{bottom:649.053333pt;}
.y29{bottom:651.709333pt;}
.y68{bottom:652.410667pt;}
.y26e{bottom:653.150667pt;}
.yc5{bottom:657.542667pt;}
.y20b{bottom:658.949333pt;}
.ye8{bottom:659.372000pt;}
.y6{bottom:659.656000pt;}
.y93{bottom:659.757333pt;}
.y22f{bottom:666.980000pt;}
.y112{bottom:669.021333pt;}
.y26d{bottom:669.090667pt;}
.y1c0{bottom:671.665333pt;}
.yc4{bottom:673.482667pt;}
.y20a{bottom:674.889333pt;}
.y67{bottom:675.026667pt;}
.ye7{bottom:675.312000pt;}
.y92{bottom:675.697333pt;}
.y5{bottom:678.253333pt;}
.y26c{bottom:685.030667pt;}
.y1bf{bottom:687.605333pt;}
.yc3{bottom:689.422667pt;}
.y209{bottom:690.829333pt;}
.ye6{bottom:691.252000pt;}
.y91{bottom:691.637333pt;}
.y24c{bottom:693.001333pt;}
.y49{bottom:693.842667pt;}
.y28{bottom:695.657333pt;}
.y26b{bottom:700.972000pt;}
.y1be{bottom:703.545333pt;}
.y22e{bottom:704.184000pt;}
.y111{bottom:704.224000pt;}
.yc2{bottom:705.364000pt;}
.y208{bottom:706.769333pt;}
.ye5{bottom:707.192000pt;}
.y90{bottom:707.577333pt;}
.y24b{bottom:708.941333pt;}
.y66{bottom:709.645333pt;}
.y48{bottom:709.782667pt;}
.y26a{bottom:716.912000pt;}
.y1bd{bottom:719.486667pt;}
.y22d{bottom:720.124000pt;}
.y110{bottom:720.165333pt;}
.ye4{bottom:723.132000pt;}
.y8f{bottom:723.517333pt;}
.y27{bottom:724.881333pt;}
.y47{bottom:725.722667pt;}
.y207{bottom:729.385333pt;}
.y4{bottom:732.852000pt;}
.y65{bottom:734.173333pt;}
.y22c{bottom:736.064000pt;}
.ye3{bottom:739.072000pt;}
.y8e{bottom:739.457333pt;}
.y24a{bottom:740.821333pt;}
.y46{bottom:741.662667pt;}
.y1bc{bottom:742.101333pt;}
.yc1{bottom:747.950667pt;}
.y269{bottom:748.792000pt;}
.y26{bottom:754.105333pt;}
.ye2{bottom:755.013333pt;}
.y8d{bottom:755.398667pt;}
.y249{bottom:756.762667pt;}
.y45{bottom:757.602667pt;}
.y206{bottom:761.413333pt;}
.y3{bottom:762.076000pt;}
.y268{bottom:764.732000pt;}
.y22b{bottom:767.945333pt;}
.ye1{bottom:770.953333pt;}
.y8c{bottom:771.338667pt;}
.y64{bottom:771.377333pt;}
.y248{bottom:772.702667pt;}
.y44{bottom:773.544000pt;}
.y1bb{bottom:776.721333pt;}
.ybc{bottom:777.173808pt;}
.y267{bottom:780.672000pt;}
.y25{bottom:783.329333pt;}
.ye0{bottom:786.893333pt;}
.y8b{bottom:787.278667pt;}
.y63{bottom:787.317333pt;}
.y205{bottom:788.025333pt;}
.y247{bottom:788.642667pt;}
.y43{bottom:789.484000pt;}
.y2{bottom:791.298667pt;}
.y266{bottom:796.613333pt;}
.y225{bottom:797.168448pt;}
.ydf{bottom:802.833333pt;}
.y8a{bottom:803.218667pt;}
.y1ba{bottom:803.965333pt;}
.y42{bottom:805.424000pt;}
.y24{bottom:812.553333pt;}
.y62{bottom:816.425333pt;}
.yde{bottom:818.773333pt;}
.y89{bottom:819.158667pt;}
.y1b9{bottom:819.905333pt;}
.y1{bottom:820.522667pt;}
.y41{bottom:821.364000pt;}
.y23{bottom:828.493333pt;}
.ydd{bottom:834.713333pt;}
.y88{bottom:835.098667pt;}
.y1b8{bottom:835.845333pt;}
.y40{bottom:843.980000pt;}
.y22{bottom:844.433333pt;}
.ydc{bottom:850.654667pt;}
.y87{bottom:851.040000pt;}
.y1b7{bottom:851.785333pt;}
.y21{bottom:860.373333pt;}
.y86{bottom:873.654667pt;}
.y20{bottom:876.313333pt;}
.y3f{bottom:878.438667pt;}
.h14{height:6.311374pt;}
.h17{height:19.792260pt;}
.h15{height:20.000600pt;}
.hc{height:21.519360pt;}
.hb{height:25.921399pt;}
.h18{height:31.024368pt;}
.hd{height:31.880400pt;}
.h16{height:33.430690pt;}
.h3{height:33.474560pt;}
.h4{height:35.865600pt;}
.hf{height:36.488257pt;}
.h9{height:36.874903pt;}
.h6{height:37.193707pt;}
.h12{height:42.787873pt;}
.h8{height:44.632747pt;}
.h7{height:46.173330pt;}
.h10{height:46.178663pt;}
.h2{height:47.820800pt;}
.h5{height:53.559147pt;}
.h1{height:68.769785pt;}
.ha{height:79.833147pt;}
.h11{height:109.022400pt;}
.he{height:112.424200pt;}
.h13{height:425.793200pt;}
.h0{height:1056.000000pt;}
.w5{width:62.001860pt;}
.w2{width:458.278800pt;}
.w1{width:458.278827pt;}
.w4{width:458.284040pt;}
.w3{width:458.297867pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x77{left:3.312599pt;}
.x69{left:5.520615pt;}
.x79{left:6.953334pt;}
.x6a{left:15.707615pt;}
.x12{left:18.251453pt;}
.x6d{left:27.045564pt;}
.x22{left:30.435929pt;}
.x13{left:35.117443pt;}
.x21{left:42.226122pt;}
.x78{left:46.746194pt;}
.x40{left:60.353544pt;}
.x14{left:70.544354pt;}
.x38{left:74.491208pt;}
.x23{left:86.601096pt;}
.x60{left:102.219461pt;}
.x64{left:112.288816pt;}
.x16{left:117.533455pt;}
.x15{left:125.339183pt;}
.x6b{left:129.992336pt;}
.x41{left:144.633034pt;}
.x68{left:147.491283pt;}
.x3e{left:149.510369pt;}
.x6e{left:150.622490pt;}
.x3d{left:154.132711pt;}
.x42{left:161.837579pt;}
.x6c{left:165.871116pt;}
.x67{left:167.018009pt;}
.x47{left:175.155786pt;}
.xf{left:177.029333pt;}
.x4{left:178.357333pt;}
.x3f{left:180.912850pt;}
.x11{left:185.332000pt;}
.x8{left:186.328000pt;}
.x43{left:187.604118pt;}
.x35{left:188.600332pt;}
.x4a{left:190.376016pt;}
.x1d{left:191.952000pt;}
.x3c{left:195.349553pt;}
.x7b{left:196.954667pt;}
.xd{left:198.282667pt;}
.x2{left:201.269333pt;}
.x55{left:209.283802pt;}
.x36{left:210.467205pt;}
.xc{left:211.566667pt;}
.x3a{left:212.651458pt;}
.x29{left:215.020000pt;}
.x44{left:216.067795pt;}
.x19{left:221.357491pt;}
.x5{left:222.289333pt;}
.x1{left:224.808000pt;}
.x3b{left:226.130776pt;}
.x46{left:228.236213pt;}
.xb{left:229.500000pt;}
.x3{left:231.326667pt;}
.x2d{left:234.129333pt;}
.x33{left:236.277788pt;}
.x72{left:237.726037pt;}
.x59{left:239.723101pt;}
.x18{left:241.301494pt;}
.x75{left:242.404000pt;}
.x31{left:245.624468pt;}
.x7{left:248.893333pt;}
.x56{left:252.815292pt;}
.x4d{left:254.108806pt;}
.x45{left:256.215981pt;}
.x30{left:259.508878pt;}
.x57{left:261.258483pt;}
.x17{left:263.428435pt;}
.x6f{left:267.384708pt;}
.x34{left:268.898443pt;}
.x27{left:271.289333pt;}
.x4e{left:273.652918pt;}
.x2f{left:275.432079pt;}
.x73{left:277.386667pt;}
.x37{left:278.647318pt;}
.x7a{left:280.645333pt;}
.x52{left:282.524382pt;}
.x39{left:283.987698pt;}
.x10{left:285.708000pt;}
.x6{left:287.325333pt;}
.x26{left:290.397333pt;}
.x71{left:295.400987pt;}
.x24{left:297.305957pt;}
.x2b{left:300.148000pt;}
.x1c{left:304.160000pt;}
.x65{left:310.245680pt;}
.x2c{left:311.206667pt;}
.x5c{left:312.366764pt;}
.x2a{left:313.352000pt;}
.x4c{left:320.173630pt;}
.x49{left:322.890472pt;}
.x48{left:324.615737pt;}
.x5f{left:325.584134pt;}
.x58{left:332.012874pt;}
.x70{left:338.522169pt;}
.x4b{left:341.719443pt;}
.x32{left:342.901107pt;}
.x5b{left:346.232252pt;}
.x5a{left:347.910575pt;}
.x50{left:359.425281pt;}
.x25{left:361.888860pt;}
.x53{left:366.588867pt;}
.x61{left:369.918274pt;}
.x9{left:371.058667pt;}
.x4f{left:372.690751pt;}
.x76{left:376.497748pt;}
.x1b{left:378.300468pt;}
.xa{left:380.444000pt;}
.x1a{left:382.428291pt;}
.x54{left:384.007838pt;}
.x62{left:388.607577pt;}
.x2e{left:391.542940pt;}
.x5d{left:398.877451pt;}
.x20{left:400.857333pt;}
.xe{left:404.177333pt;}
.x51{left:405.298657pt;}
.x63{left:409.779013pt;}
.x1f{left:413.914667pt;}
.x1e{left:415.469333pt;}
.x5e{left:423.062449pt;}
.x66{left:443.795179pt;}
.x74{left:494.498667pt;}
.x28{left:534.024000pt;}
}




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