
    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_1a2109c55a61b2d1a4dd8824.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_ff83b662fadf98cc0fdc6f89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_46e19c2902cd2c5ed115c63c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_7449d57cce6cd740278958e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_c38d4cb622b539c79bde11cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774000;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_a2b14dc1bd55cee3a6147e5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_5e79e73259628f63fb745e23.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202000;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_1ab234e93e13984a94373a30.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.444000;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_4b598da216228dfbf054b163.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.444000;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_16af404fe7c3b4a7fcece63b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_f31fbab8f8f18a8df77f64d4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_4f40c3f4db1127b198b0c43a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6aa0270e7022d909fede7419.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.027000;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.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v5{vertical-align:3.402000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:26.399780px;}
.ls6{letter-spacing:-1.587600px;}
.ls8{letter-spacing:-1.528800px;}
.ls3{letter-spacing:-1.050000px;}
.ls9{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.470400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.lsb{letter-spacing:0.150130px;}
.lsc{letter-spacing:0.225194px;}
.ls7{letter-spacing:0.705600px;}
.ls4{letter-spacing:0.823200px;}
.lsd{letter-spacing:1.125972px;}
.lsa{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-30.528000px;}
.wsbb{word-spacing:-14.641200px;}
.wsb9{word-spacing:-13.935600px;}
.ws19{word-spacing:-13.818000px;}
.wsf2{word-spacing:-13.347600px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.wsba{word-spacing:-12.348000px;}
.ws116{word-spacing:-12.310630px;}
.wsbc{word-spacing:-12.289200px;}
.ws115{word-spacing:-11.559982px;}
.ws10c{word-spacing:-11.426400px;}
.ws114{word-spacing:-10.659204px;}
.ws113{word-spacing:-10.584140px;}
.wsa7{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws10f{word-spacing:-9.855000px;}
.wsf3{word-spacing:-9.315000px;}
.ws7{word-spacing:-8.148000px;}
.ws10e{word-spacing:-8.100000px;}
.ws110{word-spacing:-7.200000px;}
.ws10d{word-spacing:-6.898500px;}
.ws117{word-spacing:-1.876621px;}
.wsdc{word-spacing:-0.999600px;}
.wsc2{word-spacing:-0.940800px;}
.wsab{word-spacing:-0.823200px;}
.ws6{word-spacing:-0.780000px;}
.wsca{word-spacing:-0.646800px;}
.ws5f{word-spacing:-0.529200px;}
.wsc1{word-spacing:-0.411600px;}
.ws106{word-spacing:-0.352800px;}
.wsb3{word-spacing:-0.294000px;}
.ws73{word-spacing:-0.235200px;}
.ws111{word-spacing:-0.135000px;}
.ws10{word-spacing:-0.117600px;}
.ws112{word-spacing:-0.090000px;}
.wsa4{word-spacing:-0.058800px;}
.ws5{word-spacing:0.000000px;}
.wsdf{word-spacing:0.176400px;}
.wsd3{word-spacing:0.294000px;}
.ws5c{word-spacing:0.352800px;}
.wsb2{word-spacing:0.470400px;}
.wsd5{word-spacing:0.529200px;}
.ws4f{word-spacing:0.588000px;}
.ws31{word-spacing:0.646800px;}
.ws7e{word-spacing:0.705600px;}
.ws1f{word-spacing:0.764400px;}
.wse8{word-spacing:0.823200px;}
.ws47{word-spacing:0.882000px;}
.wse2{word-spacing:0.940800px;}
.ws4d{word-spacing:0.999600px;}
.ws5e{word-spacing:1.117200px;}
.ws37{word-spacing:1.176000px;}
.ws75{word-spacing:1.234800px;}
.ws8f{word-spacing:1.293600px;}
.ws88{word-spacing:1.352400px;}
.ws6b{word-spacing:1.411200px;}
.wsd{word-spacing:1.470000px;}
.ws6d{word-spacing:1.528800px;}
.wseb{word-spacing:1.587600px;}
.ws9d{word-spacing:1.646400px;}
.ws7d{word-spacing:1.705200px;}
.ws24{word-spacing:1.764000px;}
.ws39{word-spacing:1.822800px;}
.ws83{word-spacing:1.881600px;}
.ws3c{word-spacing:1.999200px;}
.ws71{word-spacing:2.058000px;}
.ws8c{word-spacing:2.116800px;}
.ws70{word-spacing:2.175600px;}
.wsa{word-spacing:2.234400px;}
.ws84{word-spacing:2.352000px;}
.ws1b{word-spacing:2.410800px;}
.ws1c{word-spacing:2.469600px;}
.ws56{word-spacing:2.587200px;}
.ws40{word-spacing:2.646000px;}
.wsbd{word-spacing:2.704800px;}
.ws36{word-spacing:2.763600px;}
.ws79{word-spacing:2.822400px;}
.ws61{word-spacing:2.998800px;}
.wsc9{word-spacing:3.057600px;}
.wsb5{word-spacing:3.116400px;}
.wsae{word-spacing:3.175200px;}
.ws98{word-spacing:3.234000px;}
.ws4a{word-spacing:3.292800px;}
.wsd8{word-spacing:3.351600px;}
.wsa1{word-spacing:3.410400px;}
.ws7b{word-spacing:3.469200px;}
.ws85{word-spacing:3.528000px;}
.ws6c{word-spacing:3.586800px;}
.ws34{word-spacing:3.645600px;}
.ws20{word-spacing:3.704400px;}
.wsa6{word-spacing:3.763200px;}
.ws14{word-spacing:3.822000px;}
.ws11{word-spacing:3.880800px;}
.wsf5{word-spacing:3.939600px;}
.wsd9{word-spacing:3.998400px;}
.ws64{word-spacing:4.057200px;}
.ws3f{word-spacing:4.174800px;}
.ws22{word-spacing:4.233600px;}
.ws90{word-spacing:4.292400px;}
.ws1d{word-spacing:4.351200px;}
.ws51{word-spacing:4.410000px;}
.ws16{word-spacing:4.468800px;}
.ws2c{word-spacing:4.527600px;}
.ws60{word-spacing:4.645200px;}
.ws4c{word-spacing:4.704000px;}
.ws3b{word-spacing:4.880400px;}
.ws92{word-spacing:4.998000px;}
.wsc3{word-spacing:5.174400px;}
.wsd7{word-spacing:5.233200px;}
.ws77{word-spacing:5.292000px;}
.wsb4{word-spacing:5.350800px;}
.ws1e{word-spacing:5.409600px;}
.ws7a{word-spacing:5.468400px;}
.ws7c{word-spacing:5.527200px;}
.wsd1{word-spacing:5.586000px;}
.wsd2{word-spacing:5.644800px;}
.wsad{word-spacing:5.762400px;}
.ws57{word-spacing:5.821200px;}
.ws35{word-spacing:5.938800px;}
.ws29{word-spacing:5.997600px;}
.wsd6{word-spacing:6.056400px;}
.wsb{word-spacing:6.115200px;}
.ws8d{word-spacing:6.174000px;}
.ws5a{word-spacing:6.232800px;}
.wsc4{word-spacing:6.291600px;}
.wsf{word-spacing:6.350400px;}
.wsf1{word-spacing:6.409200px;}
.ws2f{word-spacing:6.526800px;}
.wsa3{word-spacing:6.585600px;}
.ws6f{word-spacing:6.644400px;}
.ws9f{word-spacing:6.703200px;}
.wsf9{word-spacing:6.762000px;}
.ws23{word-spacing:6.820800px;}
.ws5b{word-spacing:6.879600px;}
.ws52{word-spacing:6.938400px;}
.ws76{word-spacing:6.997200px;}
.wsb1{word-spacing:7.056000px;}
.ws108{word-spacing:7.173600px;}
.ws45{word-spacing:7.232400px;}
.ws65{word-spacing:7.291200px;}
.ws43{word-spacing:7.350000px;}
.ws2b{word-spacing:7.408800px;}
.ws74{word-spacing:7.467600px;}
.ws25{word-spacing:7.526400px;}
.ws81{word-spacing:7.585200px;}
.wsce{word-spacing:7.644000px;}
.ws13{word-spacing:7.702800px;}
.ws95{word-spacing:7.820400px;}
.ws5d{word-spacing:7.879200px;}
.ws49{word-spacing:7.996800px;}
.wsc{word-spacing:8.055600px;}
.ws66{word-spacing:8.114400px;}
.wsdd{word-spacing:8.173200px;}
.ws2d{word-spacing:8.232000px;}
.ws8b{word-spacing:8.290800px;}
.ws2e{word-spacing:8.349600px;}
.ws26{word-spacing:8.408400px;}
.ws41{word-spacing:8.467200px;}
.ws94{word-spacing:8.526000px;}
.ws100{word-spacing:8.584800px;}
.wsed{word-spacing:8.643600px;}
.wsd0{word-spacing:8.761200px;}
.wse{word-spacing:8.878800px;}
.wsfb{word-spacing:8.937600px;}
.wsc8{word-spacing:9.055200px;}
.ws103{word-spacing:9.172800px;}
.ws6a{word-spacing:9.231600px;}
.ws32{word-spacing:9.290400px;}
.ws8a{word-spacing:9.349200px;}
.ws15{word-spacing:9.408000px;}
.ws9b{word-spacing:9.525600px;}
.ws107{word-spacing:9.819600px;}
.ws67{word-spacing:9.878400px;}
.ws91{word-spacing:9.937200px;}
.ws101{word-spacing:9.996000px;}
.ws8e{word-spacing:10.054800px;}
.wsc7{word-spacing:10.172400px;}
.ws21{word-spacing:10.231200px;}
.wsb8{word-spacing:10.290000px;}
.ws105{word-spacing:10.348800px;}
.wse1{word-spacing:10.407600px;}
.wsef{word-spacing:10.466400px;}
.ws4b{word-spacing:10.525200px;}
.wsee{word-spacing:10.584000px;}
.wsaa{word-spacing:10.701600px;}
.ws4e{word-spacing:10.760400px;}
.wse3{word-spacing:10.819200px;}
.wsa2{word-spacing:10.936800px;}
.ws93{word-spacing:10.995600px;}
.ws30{word-spacing:11.054400px;}
.wscc{word-spacing:11.113200px;}
.ws96{word-spacing:11.172000px;}
.wsfa{word-spacing:11.230800px;}
.wsec{word-spacing:11.289600px;}
.ws82{word-spacing:11.348400px;}
.ws6e{word-spacing:11.407200px;}
.wsaf{word-spacing:11.466000px;}
.ws78{word-spacing:11.524800px;}
.wsda{word-spacing:11.583600px;}
.ws3d{word-spacing:11.642400px;}
.ws9e{word-spacing:11.701200px;}
.ws33{word-spacing:11.877600px;}
.ws3e{word-spacing:11.936400px;}
.wsff{word-spacing:12.171600px;}
.wsde{word-spacing:12.230400px;}
.ws54{word-spacing:12.348000px;}
.ws38{word-spacing:12.406800px;}
.wse7{word-spacing:12.465600px;}
.wscf{word-spacing:12.642000px;}
.wsac{word-spacing:12.759600px;}
.wse4{word-spacing:12.877200px;}
.ws62{word-spacing:12.936000px;}
.wsa9{word-spacing:12.994800px;}
.ws69{word-spacing:13.171200px;}
.ws58{word-spacing:13.230000px;}
.ws104{word-spacing:13.288800px;}
.ws12{word-spacing:13.347600px;}
.ws8{word-spacing:13.700400px;}
.ws18{word-spacing:13.818000px;}
.ws48{word-spacing:13.876800px;}
.ws68{word-spacing:13.994400px;}
.ws59{word-spacing:14.112000px;}
.wscb{word-spacing:14.170800px;}
.ws86{word-spacing:14.229600px;}
.ws10a{word-spacing:14.347200px;}
.wse0{word-spacing:14.406000px;}
.wsf0{word-spacing:14.582400px;}
.ws53{word-spacing:14.758800px;}
.wsc0{word-spacing:14.817600px;}
.ws72{word-spacing:14.876400px;}
.ws2a{word-spacing:14.935200px;}
.ws46{word-spacing:14.994000px;}
.wsfc{word-spacing:15.111600px;}
.wsfe{word-spacing:15.229200px;}
.ws17{word-spacing:15.346800px;}
.wscd{word-spacing:15.405600px;}
.wsfd{word-spacing:15.523200px;}
.ws28{word-spacing:15.582000px;}
.wsb6{word-spacing:15.640800px;}
.ws9a{word-spacing:15.758400px;}
.ws99{word-spacing:15.876000px;}
.wsc6{word-spacing:15.934800px;}
.wsf4{word-spacing:16.228800px;}
.wsa0{word-spacing:16.346400px;}
.wsd4{word-spacing:16.875600px;}
.ws9c{word-spacing:16.934400px;}
.wse5{word-spacing:17.287200px;}
.wsb7{word-spacing:17.404800px;}
.wsbf{word-spacing:17.463600px;}
.ws89{word-spacing:17.816400px;}
.wsa8{word-spacing:17.992800px;}
.ws7f{word-spacing:18.110400px;}
.ws97{word-spacing:18.169200px;}
.wsea{word-spacing:18.522000px;}
.wsa5{word-spacing:18.639600px;}
.wsf7{word-spacing:18.698400px;}
.ws3a{word-spacing:18.757200px;}
.wse6{word-spacing:18.992400px;}
.ws87{word-spacing:19.168800px;}
.ws80{word-spacing:19.227600px;}
.wsc5{word-spacing:19.345200px;}
.ws44{word-spacing:19.580400px;}
.ws63{word-spacing:19.756800px;}
.ws9{word-spacing:19.815600px;}
.ws10b{word-spacing:20.874000px;}
.ws109{word-spacing:21.638400px;}
.ws27{word-spacing:22.108800px;}
.wsb0{word-spacing:22.520400px;}
.ws50{word-spacing:22.638000px;}
.wsdb{word-spacing:23.814000px;}
.ws42{word-spacing:24.284400px;}
.wsbe{word-spacing:26.695200px;}
.wse9{word-spacing:27.342000px;}
.ws55{word-spacing:28.459200px;}
.ws102{word-spacing:28.753200px;}
.ws1a{word-spacing:29.576400px;}
.wsf8{word-spacing:30.105600px;}
.wsf6{word-spacing:31.046400px;}
._13{margin-left:-7.965000px;}
._3{margin-left:-6.474000px;}
._14{margin-left:-5.265000px;}
._7{margin-left:-4.231080px;}
._1{margin-left:-2.418000px;}
._0{margin-left:-1.012800px;}
._2{width:1.638000px;}
._4{width:2.647200px;}
._a{width:3.697680px;}
._c{width:5.021520px;}
._8{width:6.716280px;}
._9{width:7.902720px;}
._11{width:10.290000px;}
._b{width:11.301360px;}
._e{width:12.707280px;}
._10{width:14.082600px;}
._f{width:15.655080px;}
._6{width:16.792788px;}
._d{width:19.000775px;}
._12{width:20.050800px;}
._5{width:37.720180px;}
.fc5{color:transparent;}
.fc4{color:rgb(78,78,77);}
.fc3{color:rgb(86,86,85);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:14.074549px;}
.fsb{font-size:31.500000px;}
.fsd{font-size:36.000000px;}
.fsf{font-size:37.532410px;}
.fse{font-size:39.900000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:96.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:6.504456px;}
.y22{bottom:79.008299px;}
.y21{bottom:91.009799px;}
.y323{bottom:99.461998px;}
.yff{bottom:100.002445px;}
.y198{bottom:100.662003px;}
.y145{bottom:100.820403px;}
.y284{bottom:100.838997px;}
.y30b{bottom:100.842808px;}
.y20{bottom:103.011299px;}
.y23d{bottom:103.842728px;}
.yca{bottom:106.649695px;}
.ya5{bottom:106.656895px;}
.y75{bottom:106.664095px;}
.y1d3{bottom:107.759553px;}
.y15f{bottom:108.747002px;}
.y168{bottom:111.691795px;}
.y283{bottom:114.338997px;}
.y2c4{bottom:114.342773px;}
.y30a{bottom:114.342808px;}
.y1f{bottom:115.012799px;}
.y321{bottom:115.974000px;}
.y23c{bottom:117.342728px;}
.yfe{bottom:118.002445px;}
.y110{bottom:118.088696px;}
.y197{bottom:118.662003px;}
.y144{bottom:118.813203px;}
.y15e{bottom:123.747002px;}
.yc9{bottom:124.642495px;}
.ya4{bottom:124.649695px;}
.y74{bottom:124.656895px;}
.y1d2{bottom:125.752353px;}
.y1e{bottom:127.014299px;}
.y282{bottom:127.838997px;}
.y2c3{bottom:127.842773px;}
.y309{bottom:127.842808px;}
.y167{bottom:129.742195px;}
.y23b{bottom:130.842728px;}
.y31f{bottom:133.764149px;}
.yfd{bottom:136.016845px;}
.y10f{bottom:136.081496px;}
.y196{bottom:136.683603px;}
.y143{bottom:136.806003px;}
.y15d{bottom:138.747002px;}
.y1d{bottom:139.015799px;}
.y320{bottom:139.914000px;}
.y281{bottom:141.338997px;}
.y2c2{bottom:141.342773px;}
.y308{bottom:141.342808px;}
.yc8{bottom:142.635295px;}
.ya3{bottom:142.642495px;}
.y73{bottom:142.649695px;}
.y1d1{bottom:143.745153px;}
.y23a{bottom:144.342728px;}
.y166{bottom:147.734995px;}
.y1c{bottom:151.017299px;}
.y31c{bottom:151.773148px;}
.y15c{bottom:153.747002px;}
.yfc{bottom:154.009645px;}
.y10e{bottom:154.074296px;}
.y195{bottom:154.676403px;}
.y142{bottom:154.798803px;}
.y280{bottom:154.838997px;}
.y2c1{bottom:154.842773px;}
.y307{bottom:154.842808px;}
.y201{bottom:156.487953px;}
.y239{bottom:157.842728px;}
.yc7{bottom:160.628095px;}
.ya2{bottom:160.635295px;}
.y72{bottom:160.642495px;}
.y1d0{bottom:161.737953px;}
.y1b{bottom:163.018799px;}
.y165{bottom:165.727795px;}
.y31e{bottom:167.479649px;}
.y31d{bottom:168.058205px;}
.y27f{bottom:168.338997px;}
.y2c0{bottom:168.342773px;}
.y306{bottom:168.342808px;}
.y15b{bottom:168.747002px;}
.y31a{bottom:168.927749px;}
.y200{bottom:169.987953px;}
.y238{bottom:171.342728px;}
.yfb{bottom:172.002445px;}
.y10d{bottom:172.067096px;}
.y194{bottom:172.669203px;}
.y141{bottom:172.791603px;}
.yc6{bottom:178.620895px;}
.ya1{bottom:178.628095px;}
.y71{bottom:178.635295px;}
.y1cf{bottom:179.759553px;}
.y27e{bottom:181.838997px;}
.y2bf{bottom:181.842773px;}
.y305{bottom:181.842808px;}
.y324{bottom:182.881943px;}
.y1ff{bottom:183.487953px;}
.y164{bottom:183.720595px;}
.y319{bottom:184.824749px;}
.y237{bottom:184.842728px;}
.y31b{bottom:185.888248px;}
.y317{bottom:187.776139px;}
.yfa{bottom:190.038457px;}
.y10c{bottom:190.059896px;}
.y193{bottom:190.662003px;}
.y140{bottom:190.784403px;}
.y27d{bottom:195.338997px;}
.y2be{bottom:195.342773px;}
.y304{bottom:195.342808px;}
.ya0{bottom:196.620895px;}
.y70{bottom:196.628095px;}
.y1fe{bottom:196.987953px;}
.y1ce{bottom:197.752353px;}
.y236{bottom:198.342728px;}
.y3e{bottom:200.893799px;}
.y163{bottom:201.713395px;}
.y316{bottom:202.539139px;}
.y36{bottom:203.535759px;}
.y318{bottom:204.131400px;}
.y314{bottom:205.759204px;}
.yf9{bottom:208.031257px;}
.y10b{bottom:208.052696px;}
.y192{bottom:208.676403px;}
.y13f{bottom:208.777203px;}
.y27c{bottom:208.838997px;}
.y2bd{bottom:208.842773px;}
.y303{bottom:208.842808px;}
.y235{bottom:211.842728px;}
.y3d{bottom:214.393799px;}
.y6f{bottom:214.620895px;}
.yed{bottom:214.642495px;}
.y9f{bottom:214.656895px;}
.y1cd{bottom:215.745153px;}
.y162{bottom:219.706195px;}
.y313{bottom:220.060204px;}
.y315{bottom:221.440041px;}
.y35{bottom:221.586159px;}
.y27b{bottom:222.338997px;}
.y2bc{bottom:222.342773px;}
.y302{bottom:222.342808px;}
.y311{bottom:223.765945px;}
.y1fd{bottom:223.987953px;}
.y234{bottom:225.342728px;}
.yf8{bottom:226.024057px;}
.y10a{bottom:226.045496px;}
.y191{bottom:226.669203px;}
.y13e{bottom:226.770003px;}
.y3c{bottom:227.893799px;}
.y6e{bottom:232.628095px;}
.yec{bottom:232.635295px;}
.y9e{bottom:232.649695px;}
.y1cc{bottom:233.737953px;}
.y27a{bottom:235.838997px;}
.y2bb{bottom:235.842773px;}
.y301{bottom:235.842808px;}
.y1fc{bottom:237.487953px;}
.y310{bottom:237.636445px;}
.y161{bottom:237.698995px;}
.y312{bottom:238.801346px;}
.y233{bottom:238.842728px;}
.y34{bottom:239.578959px;}
.y30d{bottom:241.768497px;}
.y30f{bottom:241.773445px;}
.yf7{bottom:244.016857px;}
.y109{bottom:244.038296px;}
.y190{bottom:244.662003px;}
.y13d{bottom:244.762803px;}
.y3b{bottom:245.893799px;}
.y279{bottom:249.338997px;}
.y2ba{bottom:249.342773px;}
.y300{bottom:249.342808px;}
.y6d{bottom:250.620895px;}
.yeb{bottom:250.628095px;}
.y9d{bottom:250.642495px;}
.y1fb{bottom:250.987953px;}
.y1cb{bottom:251.802730px;}
.y232{bottom:252.342728px;}
.y3a{bottom:254.893799px;}
.y160{bottom:255.691795px;}
.y30c{bottom:255.859497px;}
.y30e{bottom:256.813042px;}
.y33{bottom:257.571759px;}
.yf6{bottom:262.009657px;}
.y108{bottom:262.031096px;}
.y18f{bottom:262.705203px;}
.y13c{bottom:262.755603px;}
.y278{bottom:262.838997px;}
.y2b9{bottom:262.842773px;}
.y2ff{bottom:262.842808px;}
.y1fa{bottom:264.487953px;}
.y231{bottom:265.842728px;}
.yea{bottom:268.620895px;}
.y6c{bottom:268.628095px;}
.y9c{bottom:268.635295px;}
.yc5{bottom:268.707295px;}
.y1ca{bottom:269.795530px;}
.y32{bottom:275.564559px;}
.y277{bottom:276.338997px;}
.y2b8{bottom:276.342773px;}
.y2fe{bottom:276.342808px;}
.y1f9{bottom:277.987953px;}
.y230{bottom:279.342728px;}
.yf5{bottom:280.002457px;}
.y107{bottom:280.023896px;}
.y18e{bottom:280.698003px;}
.y13b{bottom:280.748403px;}
.y322{bottom:282.343941px;}
.y6b{bottom:286.620895px;}
.y9b{bottom:286.628095px;}
.ye9{bottom:286.671295px;}
.yc4{bottom:286.700095px;}
.y1c9{bottom:287.788330px;}
.y276{bottom:289.838997px;}
.y2b7{bottom:289.842773px;}
.y2fd{bottom:289.842808px;}
.y22f{bottom:292.842728px;}
.y31{bottom:293.557359px;}
.yf4{bottom:298.009496px;}
.y106{bottom:298.016696px;}
.y18d{bottom:298.690803px;}
.y13a{bottom:298.741203px;}
.y275{bottom:303.338997px;}
.y2b6{bottom:303.342773px;}
.y2fc{bottom:303.342808px;}
.y6a{bottom:304.620895px;}
.ye8{bottom:304.664095px;}
.yc3{bottom:304.692895px;}
.y1f8{bottom:304.987953px;}
.y1c8{bottom:305.781130px;}
.y22e{bottom:306.342728px;}
.y29{bottom:310.752594px;}
.y30{bottom:311.550159px;}
.y1a2{bottom:313.479744px;}
.yf3{bottom:316.002296px;}
.y105{bottom:316.009496px;}
.y18c{bottom:316.683603px;}
.y139{bottom:316.734003px;}
.y274{bottom:316.838997px;}
.y2b5{bottom:316.842773px;}
.y2fb{bottom:316.842808px;}
.y1f7{bottom:318.487953px;}
.y22d{bottom:319.842728px;}
.y69{bottom:322.628095px;}
.ye7{bottom:322.656895px;}
.yc2{bottom:322.685695px;}
.y1c7{bottom:323.773930px;}
.y1a1{bottom:328.479744px;}
.y28{bottom:328.752594px;}
.y2f{bottom:329.542959px;}
.y273{bottom:330.338997px;}
.y2b4{bottom:330.342773px;}
.y2fa{bottom:330.342808px;}
.y1f6{bottom:331.987953px;}
.y22c{bottom:333.342728px;}
.y104{bottom:334.002296px;}
.yf2{bottom:334.031119px;}
.y18b{bottom:334.676403px;}
.y138{bottom:334.726803px;}
.y68{bottom:340.620895px;}
.ye6{bottom:340.649695px;}
.yc1{bottom:340.678495px;}
.y1c6{bottom:341.766730px;}
.y1a0{bottom:343.479744px;}
.y272{bottom:343.838997px;}
.y2b3{bottom:343.842773px;}
.y2f9{bottom:343.842808px;}
.y27{bottom:346.774194px;}
.y22b{bottom:346.842728px;}
.y2e{bottom:347.535759px;}
.y103{bottom:352.002296px;}
.yf1{bottom:352.023919px;}
.y18a{bottom:352.669203px;}
.y137{bottom:352.719603px;}
.y271{bottom:357.338997px;}
.y2b2{bottom:357.342773px;}
.y2f8{bottom:357.342808px;}
.y19f{bottom:358.479744px;}
.y9a{bottom:358.628095px;}
.ye5{bottom:358.642495px;}
.y67{bottom:358.656895px;}
.yc0{bottom:358.671295px;}
.y1c5{bottom:359.759530px;}
.y22a{bottom:360.342728px;}
.y26{bottom:364.766994px;}
.y2d{bottom:365.535759px;}
.y102{bottom:370.012045px;}
.yf0{bottom:370.016719px;}
.y189{bottom:370.662003px;}
.y136{bottom:370.712403px;}
.y270{bottom:370.838997px;}
.y2b1{bottom:370.842773px;}
.y2f7{bottom:370.842808px;}
.y229{bottom:373.842728px;}
.y99{bottom:376.620895px;}
.ye4{bottom:376.635295px;}
.y66{bottom:376.649695px;}
.ybf{bottom:376.664095px;}
.y1f5{bottom:376.995130px;}
.y1c4{bottom:377.752330px;}
.y25{bottom:382.759794px;}
.y2c{bottom:383.546994px;}
.y26f{bottom:384.338997px;}
.y2b0{bottom:384.342773px;}
.y2f6{bottom:384.342808px;}
.y228{bottom:387.342728px;}
.y101{bottom:388.004845px;}
.yef{bottom:388.009519px;}
.y188{bottom:388.662003px;}
.y135{bottom:388.705203px;}
.y98{bottom:394.620895px;}
.ye3{bottom:394.628095px;}
.y65{bottom:394.642495px;}
.ybe{bottom:394.656895px;}
.y1f4{bottom:394.987930px;}
.y1c3{bottom:395.745130px;}
.y26e{bottom:397.838997px;}
.y2af{bottom:397.842773px;}
.y2f5{bottom:397.842808px;}
.y24{bottom:400.752594px;}
.y227{bottom:400.842728px;}
.y2b{bottom:401.539794px;}
.y100{bottom:405.997645px;}
.yee{bottom:406.002319px;}
.y187{bottom:406.683603px;}
.y134{bottom:406.698003px;}
.y26d{bottom:411.338997px;}
.y2ae{bottom:411.342773px;}
.y2f4{bottom:411.342808px;}
.ye2{bottom:412.620895px;}
.y64{bottom:412.635295px;}
.ybd{bottom:412.649695px;}
.y97{bottom:412.678495px;}
.y1f3{bottom:413.016730px;}
.y1c2{bottom:413.737930px;}
.y226{bottom:414.342728px;}
.y23{bottom:418.752594px;}
.y2a{bottom:419.532594px;}
.y186{bottom:424.676403px;}
.y133{bottom:424.690803px;}
.y26c{bottom:424.838997px;}
.y2ad{bottom:424.842773px;}
.y2f3{bottom:424.842808px;}
.y225{bottom:427.842728px;}
.y63{bottom:430.628095px;}
.ye1{bottom:430.635295px;}
.ybc{bottom:430.642495px;}
.y96{bottom:430.671295px;}
.y1f2{bottom:431.009530px;}
.y1c1{bottom:431.795530px;}
.y26b{bottom:438.338997px;}
.y2ac{bottom:438.342773px;}
.y2f2{bottom:438.342808px;}
.y224{bottom:441.342728px;}
.y185{bottom:442.669203px;}
.y132{bottom:442.683603px;}
.y62{bottom:448.620895px;}
.ye0{bottom:448.628095px;}
.ybb{bottom:448.635295px;}
.y95{bottom:448.664095px;}
.y1f1{bottom:449.002330px;}
.y1c0{bottom:449.788330px;}
.y26a{bottom:451.838997px;}
.y2ab{bottom:451.842773px;}
.y2f1{bottom:451.842808px;}
.y223{bottom:454.842728px;}
.y184{bottom:460.662003px;}
.y131{bottom:460.676403px;}
.y269{bottom:465.338997px;}
.y2aa{bottom:465.342773px;}
.y2f0{bottom:465.342808px;}
.y61{bottom:466.620895px;}
.yba{bottom:466.628095px;}
.y94{bottom:466.656895px;}
.y1f0{bottom:466.995130px;}
.y1bf{bottom:467.781130px;}
.y222{bottom:468.342728px;}
.y113{bottom:470.240250px;}
.y1a{bottom:471.215103px;}
.y130{bottom:478.669203px;}
.y183{bottom:478.690803px;}
.y268{bottom:478.838997px;}
.y2a9{bottom:478.842773px;}
.y2ef{bottom:478.842808px;}
.y221{bottom:481.842728px;}
.yb9{bottom:484.620895px;}
.y60{bottom:484.628095px;}
.ydf{bottom:484.642495px;}
.y93{bottom:484.649695px;}
.y1ef{bottom:484.987930px;}
.y112{bottom:485.240250px;}
.y1be{bottom:485.773930px;}
.y267{bottom:492.338997px;}
.y2a8{bottom:492.342773px;}
.y2ee{bottom:492.342808px;}
.y19{bottom:493.715103px;}
.y220{bottom:495.342728px;}
.y12f{bottom:496.662003px;}
.y182{bottom:496.683603px;}
.y111{bottom:500.240250px;}
.y5f{bottom:502.620895px;}
.yb8{bottom:502.628095px;}
.yde{bottom:502.635295px;}
.y92{bottom:502.642495px;}
.y1ee{bottom:502.987930px;}
.y1bd{bottom:503.766730px;}
.y266{bottom:505.838997px;}
.y2a7{bottom:505.842773px;}
.y2ed{bottom:505.842808px;}
.y21f{bottom:508.842728px;}
.y18{bottom:511.715103px;}
.y12e{bottom:514.669203px;}
.y181{bottom:514.676403px;}
.y265{bottom:519.338997px;}
.y2a6{bottom:519.342773px;}
.y2ec{bottom:519.342808px;}
.yb7{bottom:520.620895px;}
.y5e{bottom:520.628095px;}
.y91{bottom:520.635295px;}
.y1ed{bottom:520.987930px;}
.y1bc{bottom:521.759530px;}
.y17{bottom:529.715103px;}
.y12d{bottom:532.662003px;}
.y180{bottom:532.669203px;}
.y264{bottom:532.838997px;}
.y2a5{bottom:532.842773px;}
.y2eb{bottom:532.842808px;}
.y5d{bottom:538.620895px;}
.y90{bottom:538.628095px;}
.y1ec{bottom:538.987930px;}
.y1bb{bottom:539.752330px;}
.y263{bottom:546.338997px;}
.y2a4{bottom:546.342773px;}
.y2ea{bottom:546.342808px;}
.y16{bottom:547.715103px;}
.y17f{bottom:550.662003px;}
.y12c{bottom:550.669203px;}
.y8f{bottom:556.620895px;}
.ydd{bottom:556.635295px;}
.y5c{bottom:556.671295px;}
.y1ba{bottom:557.745130px;}
.y262{bottom:559.838997px;}
.y2a3{bottom:559.842773px;}
.y2e9{bottom:559.842808px;}
.y15{bottom:565.715103px;}
.y12b{bottom:568.662003px;}
.y261{bottom:573.338997px;}
.y2a2{bottom:573.342773px;}
.y2e8{bottom:573.342808px;}
.yb6{bottom:574.620895px;}
.ydc{bottom:574.628095px;}
.y8e{bottom:574.642495px;}
.y5b{bottom:574.664095px;}
.y1b9{bottom:575.737930px;}
.y21e{bottom:577.842728px;}
.y14{bottom:583.715103px;}
.y12a{bottom:586.662003px;}
.y260{bottom:586.838997px;}
.y2a1{bottom:586.842773px;}
.y2e7{bottom:586.842808px;}
.y325{bottom:591.342728px;}
.ydb{bottom:592.620895px;}
.y8d{bottom:592.635295px;}
.y5a{bottom:592.656895px;}
.y1eb{bottom:593.737930px;}
.y1b8{bottom:593.752330px;}
.y25f{bottom:600.338997px;}
.y2a0{bottom:600.342773px;}
.y2e6{bottom:600.342808px;}
.y13{bottom:601.715103px;}
.y17e{bottom:604.662003px;}
.y21d{bottom:604.842728px;}
.yda{bottom:610.620895px;}
.y8c{bottom:610.628095px;}
.y59{bottom:610.649695px;}
.y1b7{bottom:611.745130px;}
.y25e{bottom:613.838997px;}
.y29f{bottom:613.842773px;}
.y2e5{bottom:613.842808px;}
.y21c{bottom:618.342728px;}
.y12{bottom:619.715103px;}
.y129{bottom:625.860921px;}
.y25d{bottom:627.338997px;}
.y29e{bottom:627.342773px;}
.y2e4{bottom:627.342808px;}
.y8b{bottom:628.620895px;}
.yd9{bottom:628.628095px;}
.y58{bottom:628.642495px;}
.y15a{bottom:628.995130px;}
.y1b6{bottom:629.737930px;}
.y21b{bottom:631.842728px;}
.y11{bottom:637.715103px;}
.y25c{bottom:640.838997px;}
.y29d{bottom:640.842773px;}
.y2e3{bottom:640.842808px;}
.y128{bottom:643.853721px;}
.y17d{bottom:644.257521px;}
.y21a{bottom:645.342728px;}
.yd8{bottom:646.620895px;}
.yb5{bottom:646.628095px;}
.y57{bottom:646.635295px;}
.y8a{bottom:646.642495px;}
.y159{bottom:646.987930px;}
.y1ea{bottom:647.752330px;}
.y1b5{bottom:647.759530px;}
.y25b{bottom:654.338997px;}
.y29c{bottom:654.342773px;}
.y2e2{bottom:654.342808px;}
.y10{bottom:655.715103px;}
.y219{bottom:658.842728px;}
.y127{bottom:661.846521px;}
.y17c{bottom:662.250321px;}
.yb4{bottom:664.620895px;}
.y56{bottom:664.628095px;}
.y89{bottom:664.635295px;}
.y158{bottom:664.987930px;}
.y1e9{bottom:665.745130px;}
.y1b4{bottom:665.752330px;}
.y19e{bottom:666.260239px;}
.y25a{bottom:667.838997px;}
.y29b{bottom:667.842773px;}
.y2e1{bottom:667.842808px;}
.yf{bottom:673.715103px;}
.y218{bottom:676.842728px;}
.y126{bottom:679.839321px;}
.y17b{bottom:680.243121px;}
.y19d{bottom:681.260239px;}
.y259{bottom:681.338997px;}
.y29a{bottom:681.342773px;}
.y2e0{bottom:681.342808px;}
.y55{bottom:682.620895px;}
.y88{bottom:682.628095px;}
.y1e8{bottom:683.737930px;}
.y1b3{bottom:683.745130px;}
.y217{bottom:690.342728px;}
.ye{bottom:691.715103px;}
.y258{bottom:694.838997px;}
.y299{bottom:694.842773px;}
.y2df{bottom:694.842808px;}
.y19c{bottom:696.260239px;}
.y125{bottom:697.832121px;}
.y17a{bottom:698.235921px;}
.y216{bottom:699.342728px;}
.y87{bottom:700.620895px;}
.y54{bottom:700.628095px;}
.y157{bottom:701.002330px;}
.y1b2{bottom:701.737930px;}
.y1e7{bottom:701.773976px;}
.y257{bottom:708.338997px;}
.y298{bottom:708.342773px;}
.y2de{bottom:708.342808px;}
.yd{bottom:709.715103px;}
.y19b{bottom:711.260239px;}
.y124{bottom:715.824921px;}
.y179{bottom:716.228721px;}
.y215{bottom:717.342728px;}
.y53{bottom:718.620895px;}
.yb3{bottom:718.628095px;}
.y86{bottom:718.635295px;}
.y156{bottom:718.995130px;}
.y1e6{bottom:719.766776px;}
.y1b1{bottom:719.795576px;}
.y256{bottom:721.838997px;}
.y297{bottom:721.842773px;}
.y2dd{bottom:721.842808px;}
.y19a{bottom:726.260239px;}
.y214{bottom:726.342773px;}
.yc{bottom:727.715103px;}
.y123{bottom:733.860921px;}
.y178{bottom:734.221521px;}
.y255{bottom:735.338997px;}
.y296{bottom:735.342773px;}
.y2dc{bottom:735.342808px;}
.yb2{bottom:736.620895px;}
.y85{bottom:736.628095px;}
.yd7{bottom:736.664141px;}
.y52{bottom:736.700141px;}
.y155{bottom:736.987930px;}
.y1e5{bottom:737.759576px;}
.y1b0{bottom:737.788376px;}
.y199{bottom:741.260239px;}
.y254{bottom:748.838997px;}
.y295{bottom:748.842773px;}
.y2db{bottom:748.842808px;}
.yb{bottom:750.215103px;}
.y122{bottom:751.853721px;}
.y177{bottom:752.214321px;}
.y213{bottom:753.342773px;}
.y84{bottom:754.620895px;}
.yd6{bottom:754.656941px;}
.y51{bottom:754.692941px;}
.y154{bottom:755.002376px;}
.y1e4{bottom:755.752376px;}
.y1af{bottom:755.781176px;}
.y253{bottom:762.338997px;}
.y294{bottom:762.342773px;}
.y2da{bottom:762.342808px;}
.y212{bottom:766.842773px;}
.y121{bottom:769.846521px;}
.y176{bottom:770.207121px;}
.y83{bottom:772.635341px;}
.yd5{bottom:772.649741px;}
.y50{bottom:772.685741px;}
.y153{bottom:772.995176px;}
.y1e3{bottom:773.745176px;}
.y1ae{bottom:773.773976px;}
.y252{bottom:775.838997px;}
.y293{bottom:775.842773px;}
.y2d9{bottom:775.842808px;}
.y120{bottom:787.839321px;}
.y175{bottom:788.199921px;}
.y251{bottom:789.338997px;}
.y292{bottom:789.342773px;}
.y2d8{bottom:789.342808px;}
.y82{bottom:790.628141px;}
.yd4{bottom:790.642541px;}
.y4f{bottom:790.678541px;}
.y152{bottom:790.987976px;}
.y1e2{bottom:791.737976px;}
.y1ad{bottom:791.766776px;}
.y211{bottom:793.842773px;}
.y250{bottom:802.838997px;}
.y291{bottom:802.842773px;}
.y2d7{bottom:802.842808px;}
.y11f{bottom:805.832121px;}
.y174{bottom:806.214321px;}
.y210{bottom:807.342773px;}
.y81{bottom:808.620941px;}
.yd3{bottom:808.635341px;}
.y4e{bottom:808.671341px;}
.y151{bottom:809.016776px;}
.y1ac{bottom:809.759576px;}
.y1e1{bottom:809.795576px;}
.y24f{bottom:816.338997px;}
.y290{bottom:816.342773px;}
.y2d6{bottom:816.342808px;}
.y20f{bottom:820.842773px;}
.ya{bottom:822.548112px;}
.y11e{bottom:823.824921px;}
.y173{bottom:824.207121px;}
.yb1{bottom:826.620941px;}
.y80{bottom:826.628141px;}
.y4d{bottom:826.664141px;}
.y150{bottom:827.009576px;}
.y1ab{bottom:827.752376px;}
.y1e0{bottom:827.788376px;}
.y24e{bottom:829.838997px;}
.y28f{bottom:829.842773px;}
.y2d5{bottom:829.842808px;}
.y20e{bottom:834.342773px;}
.y11d{bottom:841.832121px;}
.y172{bottom:842.199921px;}
.y24d{bottom:843.338997px;}
.y28e{bottom:843.342773px;}
.y2d4{bottom:843.342808px;}
.y9{bottom:843.548112px;}
.y7f{bottom:844.620941px;}
.yb0{bottom:844.635341px;}
.y4c{bottom:844.656941px;}
.y14f{bottom:845.002376px;}
.y1aa{bottom:845.745176px;}
.y1df{bottom:845.781176px;}
.y20d{bottom:847.842773px;}
.y24c{bottom:856.838997px;}
.y28d{bottom:856.842773px;}
.y2d3{bottom:856.842808px;}
.y11c{bottom:859.824921px;}
.y171{bottom:860.199921px;}
.y20c{bottom:861.342773px;}
.yaf{bottom:862.628141px;}
.y7e{bottom:862.635341px;}
.y4b{bottom:862.649741px;}
.yd2{bottom:862.664141px;}
.y14e{bottom:862.995176px;}
.y1a9{bottom:863.737976px;}
.y1de{bottom:863.773976px;}
.y8{bottom:864.552612px;}
.y24b{bottom:870.338997px;}
.y28c{bottom:870.342773px;}
.y2d2{bottom:870.342808px;}
.y20b{bottom:874.842773px;}
.y11b{bottom:877.832121px;}
.y170{bottom:878.214321px;}
.yae{bottom:880.620941px;}
.y7d{bottom:880.628141px;}
.y4a{bottom:880.642541px;}
.yd1{bottom:880.656941px;}
.y14d{bottom:880.987976px;}
.y1dd{bottom:881.766776px;}
.y1a8{bottom:881.773976px;}
.y24a{bottom:883.838997px;}
.y28b{bottom:883.842773px;}
.y2d1{bottom:883.842808px;}
.y20a{bottom:888.342773px;}
.y11a{bottom:895.824921px;}
.y16f{bottom:896.207121px;}
.y249{bottom:897.338997px;}
.y28a{bottom:897.342773px;}
.y2d0{bottom:897.342808px;}
.y7c{bottom:898.620941px;}
.y49{bottom:898.635341px;}
.yd0{bottom:898.649741px;}
.yad{bottom:898.678541px;}
.y14c{bottom:899.002376px;}
.y1dc{bottom:899.759576px;}
.y1a7{bottom:899.766776px;}
.y7{bottom:900.577528px;}
.y209{bottom:901.842773px;}
.y248{bottom:910.838997px;}
.y289{bottom:910.842773px;}
.y2cf{bottom:910.842808px;}
.y119{bottom:913.824921px;}
.y16e{bottom:914.199921px;}
.y7b{bottom:916.620941px;}
.y48{bottom:916.628141px;}
.ycf{bottom:916.642541px;}
.yac{bottom:916.671341px;}
.y14b{bottom:916.995176px;}
.y1db{bottom:917.752376px;}
.y1a6{bottom:917.759576px;}
.y247{bottom:924.338997px;}
.y288{bottom:924.342773px;}
.y2ce{bottom:924.342808px;}
.y208{bottom:928.842773px;}
.y118{bottom:931.824921px;}
.y16d{bottom:932.199921px;}
.y47{bottom:934.620941px;}
.y7a{bottom:934.635341px;}
.yab{bottom:934.664141px;}
.y14a{bottom:934.987976px;}
.y1da{bottom:935.745176px;}
.y1a5{bottom:935.752376px;}
.y246{bottom:937.838997px;}
.y287{bottom:937.842773px;}
.y2cd{bottom:937.842808px;}
.y6{bottom:939.565528px;}
.y16c{bottom:950.199921px;}
.y245{bottom:951.338997px;}
.y286{bottom:951.342773px;}
.y2cc{bottom:951.342808px;}
.y46{bottom:952.628141px;}
.yaa{bottom:952.656941px;}
.y149{bottom:952.987976px;}
.y1d9{bottom:953.737976px;}
.y1a4{bottom:953.745176px;}
.y244{bottom:964.838997px;}
.y207{bottom:964.842773px;}
.y2cb{bottom:964.842808px;}
.y45{bottom:970.620941px;}
.ya9{bottom:970.649741px;}
.y1a3{bottom:971.737976px;}
.y1d8{bottom:971.745176px;}
.y243{bottom:978.338997px;}
.y206{bottom:978.342773px;}
.y2ca{bottom:978.342808px;}
.y5{bottom:978.553528px;}
.yce{bottom:988.620941px;}
.y44{bottom:988.642541px;}
.y79{bottom:988.678795px;}
.y1d7{bottom:989.737976px;}
.y16b{bottom:989.745176px;}
.y117{bottom:989.759576px;}
.y242{bottom:991.838997px;}
.y285{bottom:991.842773px;}
.y2c9{bottom:991.842808px;}
.y241{bottom:1005.338997px;}
.y205{bottom:1005.342773px;}
.y2c8{bottom:1005.342808px;}
.y43{bottom:1006.635341px;}
.ycd{bottom:1006.657195px;}
.y78{bottom:1006.671595px;}
.y148{bottom:1007.737976px;}
.y116{bottom:1007.752376px;}
.y1d6{bottom:1007.767053px;}
.y240{bottom:1018.838997px;}
.y204{bottom:1018.842773px;}
.y2c7{bottom:1018.842808px;}
.y42{bottom:1024.628141px;}
.ycc{bottom:1024.649995px;}
.y77{bottom:1024.664395px;}
.y16a{bottom:1025.737785px;}
.y147{bottom:1025.737976px;}
.y115{bottom:1025.745176px;}
.y1d5{bottom:1025.759853px;}
.y23f{bottom:1032.338997px;}
.y203{bottom:1032.342773px;}
.y2c6{bottom:1032.342808px;}
.y4{bottom:1033.362579px;}
.y37{bottom:1035.750183px;}
.y41{bottom:1042.620941px;}
.ycb{bottom:1042.642795px;}
.y76{bottom:1042.657195px;}
.y169{bottom:1043.730585px;}
.y114{bottom:1043.737976px;}
.y1d4{bottom:1043.752653px;}
.y146{bottom:1043.898885px;}
.y23e{bottom:1045.838997px;}
.y202{bottom:1045.842773px;}
.y2c5{bottom:1045.842808px;}
.y3{bottom:1097.297079px;}
.y38{bottom:1108.798462px;}
.y2{bottom:1112.297079px;}
.ya6{bottom:1126.524628px;}
.y3f{bottom:1126.524719px;}
.ya8{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.ya7{bottom:1127.300079px;}
.y40{bottom:1127.304719px;}
.h24{height:10.640359px;}
.hf{height:27.072000px;}
.h1e{height:27.540000px;}
.h12{height:27.814500px;}
.h22{height:28.374502px;}
.h1c{height:29.988000px;}
.h20{height:30.324000px;}
.h21{height:30.523500px;}
.h1d{height:32.130000px;}
.h1f{height:35.532000px;}
.hd{height:37.086000px;}
.h11{height:39.735000px;}
.hc{height:41.538000px;}
.h16{height:42.384000px;}
.h1b{height:42.840000px;}
.h19{height:43.785000px;}
.h4{height:45.696000px;}
.h3{height:45.744000px;}
.h1a{height:45.814500px;}
.h17{height:46.704000px;}
.h2{height:47.232000px;}
.h15{height:47.472000px;}
.ha{height:52.980000px;}
.h13{height:53.709599px;}
.h14{height:54.625200px;}
.he{height:55.860000px;}
.h18{height:55.860762px;}
.hb{height:58.380000px;}
.h9{height:61.120200px;}
.h7{height:67.194379px;}
.h8{height:67.212379px;}
.h10{height:72.960000px;}
.h5{height:77.142000px;}
.h6{height:137.088000px;}
.h23{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:344.762993px;}
.w2{width:388.300507px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:97.034552px;}
.xe{left:107.539352px;}
.xc{left:115.039352px;}
.x1a{left:139.550400px;}
.x1c{left:140.704651px;}
.x4{left:270.817497px;}
.x8{left:419.451004px;}
.x5{left:457.092894px;}
.x17{left:463.109985px;}
.xd{left:466.649094px;}
.x6{left:469.081794px;}
.x16{left:475.906036px;}
.x15{left:476.938660px;}
.xf{left:479.610602px;}
.x11{left:483.529633px;}
.xb{left:487.084344px;}
.x12{left:490.386133px;}
.x13{left:493.103989px;}
.x19{left:602.660385px;}
.x1b{left:603.814636px;}
.x14{left:660.952332px;}
.x7{left:694.929886px;}
.x10{left:741.068390px;}
.x9{left:747.224258px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v5{vertical-align:3.024000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:23.466471pt;}
.ls6{letter-spacing:-1.411200pt;}
.ls8{letter-spacing:-1.358933pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.418133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.133449pt;}
.lsc{letter-spacing:0.200173pt;}
.ls7{letter-spacing:0.627200pt;}
.ls4{letter-spacing:0.731733pt;}
.lsd{letter-spacing:1.000864pt;}
.lsa{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ws1{word-spacing:-27.136000pt;}
.wsbb{word-spacing:-13.014400pt;}
.wsb9{word-spacing:-12.387200pt;}
.ws19{word-spacing:-12.282667pt;}
.wsf2{word-spacing:-11.864533pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.wsba{word-spacing:-10.976000pt;}
.ws116{word-spacing:-10.942783pt;}
.wsbc{word-spacing:-10.923733pt;}
.ws115{word-spacing:-10.275540pt;}
.ws10c{word-spacing:-10.156800pt;}
.ws114{word-spacing:-9.474848pt;}
.ws113{word-spacing:-9.408124pt;}
.wsa7{word-spacing:-9.344000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws10f{word-spacing:-8.760000pt;}
.wsf3{word-spacing:-8.280000pt;}
.ws7{word-spacing:-7.242667pt;}
.ws10e{word-spacing:-7.200000pt;}
.ws110{word-spacing:-6.400000pt;}
.ws10d{word-spacing:-6.132000pt;}
.ws117{word-spacing:-1.668107pt;}
.wsdc{word-spacing:-0.888533pt;}
.wsc2{word-spacing:-0.836267pt;}
.wsab{word-spacing:-0.731733pt;}
.ws6{word-spacing:-0.693333pt;}
.wsca{word-spacing:-0.574933pt;}
.ws5f{word-spacing:-0.470400pt;}
.wsc1{word-spacing:-0.365867pt;}
.ws106{word-spacing:-0.313600pt;}
.wsb3{word-spacing:-0.261333pt;}
.ws73{word-spacing:-0.209067pt;}
.ws111{word-spacing:-0.120000pt;}
.ws10{word-spacing:-0.104533pt;}
.ws112{word-spacing:-0.080000pt;}
.wsa4{word-spacing:-0.052267pt;}
.ws5{word-spacing:0.000000pt;}
.wsdf{word-spacing:0.156800pt;}
.wsd3{word-spacing:0.261333pt;}
.ws5c{word-spacing:0.313600pt;}
.wsb2{word-spacing:0.418133pt;}
.wsd5{word-spacing:0.470400pt;}
.ws4f{word-spacing:0.522667pt;}
.ws31{word-spacing:0.574933pt;}
.ws7e{word-spacing:0.627200pt;}
.ws1f{word-spacing:0.679467pt;}
.wse8{word-spacing:0.731733pt;}
.ws47{word-spacing:0.784000pt;}
.wse2{word-spacing:0.836267pt;}
.ws4d{word-spacing:0.888533pt;}
.ws5e{word-spacing:0.993067pt;}
.ws37{word-spacing:1.045333pt;}
.ws75{word-spacing:1.097600pt;}
.ws8f{word-spacing:1.149867pt;}
.ws88{word-spacing:1.202133pt;}
.ws6b{word-spacing:1.254400pt;}
.wsd{word-spacing:1.306667pt;}
.ws6d{word-spacing:1.358933pt;}
.wseb{word-spacing:1.411200pt;}
.ws9d{word-spacing:1.463467pt;}
.ws7d{word-spacing:1.515733pt;}
.ws24{word-spacing:1.568000pt;}
.ws39{word-spacing:1.620267pt;}
.ws83{word-spacing:1.672533pt;}
.ws3c{word-spacing:1.777067pt;}
.ws71{word-spacing:1.829333pt;}
.ws8c{word-spacing:1.881600pt;}
.ws70{word-spacing:1.933867pt;}
.wsa{word-spacing:1.986133pt;}
.ws84{word-spacing:2.090667pt;}
.ws1b{word-spacing:2.142933pt;}
.ws1c{word-spacing:2.195200pt;}
.ws56{word-spacing:2.299733pt;}
.ws40{word-spacing:2.352000pt;}
.wsbd{word-spacing:2.404267pt;}
.ws36{word-spacing:2.456533pt;}
.ws79{word-spacing:2.508800pt;}
.ws61{word-spacing:2.665600pt;}
.wsc9{word-spacing:2.717867pt;}
.wsb5{word-spacing:2.770133pt;}
.wsae{word-spacing:2.822400pt;}
.ws98{word-spacing:2.874667pt;}
.ws4a{word-spacing:2.926933pt;}
.wsd8{word-spacing:2.979200pt;}
.wsa1{word-spacing:3.031467pt;}
.ws7b{word-spacing:3.083733pt;}
.ws85{word-spacing:3.136000pt;}
.ws6c{word-spacing:3.188267pt;}
.ws34{word-spacing:3.240533pt;}
.ws20{word-spacing:3.292800pt;}
.wsa6{word-spacing:3.345067pt;}
.ws14{word-spacing:3.397333pt;}
.ws11{word-spacing:3.449600pt;}
.wsf5{word-spacing:3.501867pt;}
.wsd9{word-spacing:3.554133pt;}
.ws64{word-spacing:3.606400pt;}
.ws3f{word-spacing:3.710933pt;}
.ws22{word-spacing:3.763200pt;}
.ws90{word-spacing:3.815467pt;}
.ws1d{word-spacing:3.867733pt;}
.ws51{word-spacing:3.920000pt;}
.ws16{word-spacing:3.972267pt;}
.ws2c{word-spacing:4.024533pt;}
.ws60{word-spacing:4.129067pt;}
.ws4c{word-spacing:4.181333pt;}
.ws3b{word-spacing:4.338133pt;}
.ws92{word-spacing:4.442667pt;}
.wsc3{word-spacing:4.599467pt;}
.wsd7{word-spacing:4.651733pt;}
.ws77{word-spacing:4.704000pt;}
.wsb4{word-spacing:4.756267pt;}
.ws1e{word-spacing:4.808533pt;}
.ws7a{word-spacing:4.860800pt;}
.ws7c{word-spacing:4.913067pt;}
.wsd1{word-spacing:4.965333pt;}
.wsd2{word-spacing:5.017600pt;}
.wsad{word-spacing:5.122133pt;}
.ws57{word-spacing:5.174400pt;}
.ws35{word-spacing:5.278933pt;}
.ws29{word-spacing:5.331200pt;}
.wsd6{word-spacing:5.383467pt;}
.wsb{word-spacing:5.435733pt;}
.ws8d{word-spacing:5.488000pt;}
.ws5a{word-spacing:5.540267pt;}
.wsc4{word-spacing:5.592533pt;}
.wsf{word-spacing:5.644800pt;}
.wsf1{word-spacing:5.697067pt;}
.ws2f{word-spacing:5.801600pt;}
.wsa3{word-spacing:5.853867pt;}
.ws6f{word-spacing:5.906133pt;}
.ws9f{word-spacing:5.958400pt;}
.wsf9{word-spacing:6.010667pt;}
.ws23{word-spacing:6.062933pt;}
.ws5b{word-spacing:6.115200pt;}
.ws52{word-spacing:6.167467pt;}
.ws76{word-spacing:6.219733pt;}
.wsb1{word-spacing:6.272000pt;}
.ws108{word-spacing:6.376533pt;}
.ws45{word-spacing:6.428800pt;}
.ws65{word-spacing:6.481067pt;}
.ws43{word-spacing:6.533333pt;}
.ws2b{word-spacing:6.585600pt;}
.ws74{word-spacing:6.637867pt;}
.ws25{word-spacing:6.690133pt;}
.ws81{word-spacing:6.742400pt;}
.wsce{word-spacing:6.794667pt;}
.ws13{word-spacing:6.846933pt;}
.ws95{word-spacing:6.951467pt;}
.ws5d{word-spacing:7.003733pt;}
.ws49{word-spacing:7.108267pt;}
.wsc{word-spacing:7.160533pt;}
.ws66{word-spacing:7.212800pt;}
.wsdd{word-spacing:7.265067pt;}
.ws2d{word-spacing:7.317333pt;}
.ws8b{word-spacing:7.369600pt;}
.ws2e{word-spacing:7.421867pt;}
.ws26{word-spacing:7.474133pt;}
.ws41{word-spacing:7.526400pt;}
.ws94{word-spacing:7.578667pt;}
.ws100{word-spacing:7.630933pt;}
.wsed{word-spacing:7.683200pt;}
.wsd0{word-spacing:7.787733pt;}
.wse{word-spacing:7.892267pt;}
.wsfb{word-spacing:7.944533pt;}
.wsc8{word-spacing:8.049067pt;}
.ws103{word-spacing:8.153600pt;}
.ws6a{word-spacing:8.205867pt;}
.ws32{word-spacing:8.258133pt;}
.ws8a{word-spacing:8.310400pt;}
.ws15{word-spacing:8.362667pt;}
.ws9b{word-spacing:8.467200pt;}
.ws107{word-spacing:8.728533pt;}
.ws67{word-spacing:8.780800pt;}
.ws91{word-spacing:8.833067pt;}
.ws101{word-spacing:8.885333pt;}
.ws8e{word-spacing:8.937600pt;}
.wsc7{word-spacing:9.042133pt;}
.ws21{word-spacing:9.094400pt;}
.wsb8{word-spacing:9.146667pt;}
.ws105{word-spacing:9.198933pt;}
.wse1{word-spacing:9.251200pt;}
.wsef{word-spacing:9.303467pt;}
.ws4b{word-spacing:9.355733pt;}
.wsee{word-spacing:9.408000pt;}
.wsaa{word-spacing:9.512533pt;}
.ws4e{word-spacing:9.564800pt;}
.wse3{word-spacing:9.617067pt;}
.wsa2{word-spacing:9.721600pt;}
.ws93{word-spacing:9.773867pt;}
.ws30{word-spacing:9.826133pt;}
.wscc{word-spacing:9.878400pt;}
.ws96{word-spacing:9.930667pt;}
.wsfa{word-spacing:9.982933pt;}
.wsec{word-spacing:10.035200pt;}
.ws82{word-spacing:10.087467pt;}
.ws6e{word-spacing:10.139733pt;}
.wsaf{word-spacing:10.192000pt;}
.ws78{word-spacing:10.244267pt;}
.wsda{word-spacing:10.296533pt;}
.ws3d{word-spacing:10.348800pt;}
.ws9e{word-spacing:10.401067pt;}
.ws33{word-spacing:10.557867pt;}
.ws3e{word-spacing:10.610133pt;}
.wsff{word-spacing:10.819200pt;}
.wsde{word-spacing:10.871467pt;}
.ws54{word-spacing:10.976000pt;}
.ws38{word-spacing:11.028267pt;}
.wse7{word-spacing:11.080533pt;}
.wscf{word-spacing:11.237333pt;}
.wsac{word-spacing:11.341867pt;}
.wse4{word-spacing:11.446400pt;}
.ws62{word-spacing:11.498667pt;}
.wsa9{word-spacing:11.550933pt;}
.ws69{word-spacing:11.707733pt;}
.ws58{word-spacing:11.760000pt;}
.ws104{word-spacing:11.812267pt;}
.ws12{word-spacing:11.864533pt;}
.ws8{word-spacing:12.178133pt;}
.ws18{word-spacing:12.282667pt;}
.ws48{word-spacing:12.334933pt;}
.ws68{word-spacing:12.439467pt;}
.ws59{word-spacing:12.544000pt;}
.wscb{word-spacing:12.596267pt;}
.ws86{word-spacing:12.648533pt;}
.ws10a{word-spacing:12.753067pt;}
.wse0{word-spacing:12.805333pt;}
.wsf0{word-spacing:12.962133pt;}
.ws53{word-spacing:13.118933pt;}
.wsc0{word-spacing:13.171200pt;}
.ws72{word-spacing:13.223467pt;}
.ws2a{word-spacing:13.275733pt;}
.ws46{word-spacing:13.328000pt;}
.wsfc{word-spacing:13.432533pt;}
.wsfe{word-spacing:13.537067pt;}
.ws17{word-spacing:13.641600pt;}
.wscd{word-spacing:13.693867pt;}
.wsfd{word-spacing:13.798400pt;}
.ws28{word-spacing:13.850667pt;}
.wsb6{word-spacing:13.902933pt;}
.ws9a{word-spacing:14.007467pt;}
.ws99{word-spacing:14.112000pt;}
.wsc6{word-spacing:14.164267pt;}
.wsf4{word-spacing:14.425600pt;}
.wsa0{word-spacing:14.530133pt;}
.wsd4{word-spacing:15.000533pt;}
.ws9c{word-spacing:15.052800pt;}
.wse5{word-spacing:15.366400pt;}
.wsb7{word-spacing:15.470933pt;}
.wsbf{word-spacing:15.523200pt;}
.ws89{word-spacing:15.836800pt;}
.wsa8{word-spacing:15.993600pt;}
.ws7f{word-spacing:16.098133pt;}
.ws97{word-spacing:16.150400pt;}
.wsea{word-spacing:16.464000pt;}
.wsa5{word-spacing:16.568533pt;}
.wsf7{word-spacing:16.620800pt;}
.ws3a{word-spacing:16.673067pt;}
.wse6{word-spacing:16.882133pt;}
.ws87{word-spacing:17.038933pt;}
.ws80{word-spacing:17.091200pt;}
.wsc5{word-spacing:17.195733pt;}
.ws44{word-spacing:17.404800pt;}
.ws63{word-spacing:17.561600pt;}
.ws9{word-spacing:17.613867pt;}
.ws10b{word-spacing:18.554667pt;}
.ws109{word-spacing:19.234133pt;}
.ws27{word-spacing:19.652267pt;}
.wsb0{word-spacing:20.018133pt;}
.ws50{word-spacing:20.122667pt;}
.wsdb{word-spacing:21.168000pt;}
.ws42{word-spacing:21.586133pt;}
.wsbe{word-spacing:23.729067pt;}
.wse9{word-spacing:24.304000pt;}
.ws55{word-spacing:25.297067pt;}
.ws102{word-spacing:25.558400pt;}
.ws1a{word-spacing:26.290133pt;}
.wsf8{word-spacing:26.760533pt;}
.wsf6{word-spacing:27.596800pt;}
._13{margin-left:-7.080000pt;}
._3{margin-left:-5.754667pt;}
._14{margin-left:-4.680000pt;}
._7{margin-left:-3.760960pt;}
._1{margin-left:-2.149333pt;}
._0{margin-left:-0.900267pt;}
._2{width:1.456000pt;}
._4{width:2.353067pt;}
._a{width:3.286827pt;}
._c{width:4.463573pt;}
._8{width:5.970027pt;}
._9{width:7.024640pt;}
._11{width:9.146667pt;}
._b{width:10.045653pt;}
._e{width:11.295360pt;}
._10{width:12.517867pt;}
._f{width:13.915627pt;}
._6{width:14.926923pt;}
._d{width:16.889578pt;}
._12{width:17.822933pt;}
._5{width:33.529049pt;}
.fs10{font-size:12.510710pt;}
.fsb{font-size:28.000000pt;}
.fsd{font-size:32.000000pt;}
.fsf{font-size:33.362142pt;}
.fse{font-size:35.466667pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:85.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:5.781738pt;}
.y22{bottom:70.229599pt;}
.y21{bottom:80.897599pt;}
.y323{bottom:88.410665pt;}
.yff{bottom:88.891062pt;}
.y198{bottom:89.477336pt;}
.y145{bottom:89.618136pt;}
.y284{bottom:89.634664pt;}
.y30b{bottom:89.638051pt;}
.y20{bottom:91.565599pt;}
.y23d{bottom:92.304647pt;}
.yca{bottom:94.799729pt;}
.ya5{bottom:94.806129pt;}
.y75{bottom:94.812529pt;}
.y1d3{bottom:95.786269pt;}
.y15f{bottom:96.664001pt;}
.y168{bottom:99.281596pt;}
.y283{bottom:101.634664pt;}
.y2c4{bottom:101.638021pt;}
.y30a{bottom:101.638051pt;}
.y1f{bottom:102.233599pt;}
.y321{bottom:103.088000pt;}
.y23c{bottom:104.304647pt;}
.yfe{bottom:104.891062pt;}
.y110{bottom:104.967730pt;}
.y197{bottom:105.477336pt;}
.y144{bottom:105.611736pt;}
.y15e{bottom:109.997335pt;}
.yc9{bottom:110.793329pt;}
.ya4{bottom:110.799729pt;}
.y74{bottom:110.806129pt;}
.y1d2{bottom:111.779869pt;}
.y1e{bottom:112.901599pt;}
.y282{bottom:113.634664pt;}
.y2c3{bottom:113.638021pt;}
.y309{bottom:113.638051pt;}
.y167{bottom:115.326396pt;}
.y23b{bottom:116.304647pt;}
.y31f{bottom:118.901465pt;}
.yfd{bottom:120.903862pt;}
.y10f{bottom:120.961330pt;}
.y196{bottom:121.496536pt;}
.y143{bottom:121.605336pt;}
.y15d{bottom:123.330668pt;}
.y1d{bottom:123.569599pt;}
.y320{bottom:124.368000pt;}
.y281{bottom:125.634664pt;}
.y2c2{bottom:125.638021pt;}
.y308{bottom:125.638051pt;}
.yc8{bottom:126.786929pt;}
.ya3{bottom:126.793329pt;}
.y73{bottom:126.799729pt;}
.y1d1{bottom:127.773469pt;}
.y23a{bottom:128.304647pt;}
.y166{bottom:131.319996pt;}
.y1c{bottom:134.237599pt;}
.y31c{bottom:134.909465pt;}
.y15c{bottom:136.664001pt;}
.yfc{bottom:136.897462pt;}
.y10e{bottom:136.954930pt;}
.y195{bottom:137.490136pt;}
.y142{bottom:137.598936pt;}
.y280{bottom:137.634664pt;}
.y2c1{bottom:137.638021pt;}
.y307{bottom:137.638051pt;}
.y201{bottom:139.100403pt;}
.y239{bottom:140.304647pt;}
.yc7{bottom:142.780529pt;}
.ya2{bottom:142.786929pt;}
.y72{bottom:142.793329pt;}
.y1d0{bottom:143.767069pt;}
.y1b{bottom:144.905599pt;}
.y165{bottom:147.313596pt;}
.y31e{bottom:148.870799pt;}
.y31d{bottom:149.385071pt;}
.y27f{bottom:149.634664pt;}
.y2c0{bottom:149.638021pt;}
.y306{bottom:149.638051pt;}
.y15b{bottom:149.997335pt;}
.y31a{bottom:150.157999pt;}
.y200{bottom:151.100403pt;}
.y238{bottom:152.304647pt;}
.yfb{bottom:152.891062pt;}
.y10d{bottom:152.948530pt;}
.y194{bottom:153.483736pt;}
.y141{bottom:153.592536pt;}
.yc6{bottom:158.774129pt;}
.ya1{bottom:158.780529pt;}
.y71{bottom:158.786929pt;}
.y1cf{bottom:159.786269pt;}
.y27e{bottom:161.634664pt;}
.y2bf{bottom:161.638021pt;}
.y305{bottom:161.638051pt;}
.y324{bottom:162.561727pt;}
.y1ff{bottom:163.100403pt;}
.y164{bottom:163.307196pt;}
.y319{bottom:164.288666pt;}
.y237{bottom:164.304647pt;}
.y31b{bottom:165.233999pt;}
.y317{bottom:166.912123pt;}
.yfa{bottom:168.923073pt;}
.y10c{bottom:168.942130pt;}
.y193{bottom:169.477336pt;}
.y140{bottom:169.586136pt;}
.y27d{bottom:173.634664pt;}
.y2be{bottom:173.638021pt;}
.y304{bottom:173.638051pt;}
.ya0{bottom:174.774129pt;}
.y70{bottom:174.780529pt;}
.y1fe{bottom:175.100403pt;}
.y1ce{bottom:175.779869pt;}
.y236{bottom:176.304647pt;}
.y3e{bottom:178.572266pt;}
.y163{bottom:179.300796pt;}
.y316{bottom:180.034790pt;}
.y36{bottom:180.920675pt;}
.y318{bottom:181.450133pt;}
.y314{bottom:182.897070pt;}
.yf9{bottom:184.916673pt;}
.y10b{bottom:184.935730pt;}
.y192{bottom:185.490136pt;}
.y13f{bottom:185.579736pt;}
.y27c{bottom:185.634664pt;}
.y2bd{bottom:185.638021pt;}
.y303{bottom:185.638051pt;}
.y235{bottom:188.304647pt;}
.y3d{bottom:190.572266pt;}
.y6f{bottom:190.774129pt;}
.yed{bottom:190.793329pt;}
.y9f{bottom:190.806129pt;}
.y1cd{bottom:191.773469pt;}
.y162{bottom:195.294396pt;}
.y313{bottom:195.609070pt;}
.y315{bottom:196.835592pt;}
.y35{bottom:196.965475pt;}
.y27b{bottom:197.634664pt;}
.y2bc{bottom:197.638021pt;}
.y302{bottom:197.638051pt;}
.y311{bottom:198.903062pt;}
.y1fd{bottom:199.100403pt;}
.y234{bottom:200.304647pt;}
.yf8{bottom:200.910273pt;}
.y10a{bottom:200.929330pt;}
.y191{bottom:201.483736pt;}
.y13e{bottom:201.573336pt;}
.y3c{bottom:202.572266pt;}
.y6e{bottom:206.780529pt;}
.yec{bottom:206.786929pt;}
.y9e{bottom:206.799729pt;}
.y1cc{bottom:207.767069pt;}
.y27a{bottom:209.634664pt;}
.y2bb{bottom:209.638021pt;}
.y301{bottom:209.638051pt;}
.y1fc{bottom:211.100403pt;}
.y310{bottom:211.232396pt;}
.y161{bottom:211.287996pt;}
.y312{bottom:212.267863pt;}
.y233{bottom:212.304647pt;}
.y34{bottom:212.959075pt;}
.y30d{bottom:214.905331pt;}
.y30f{bottom:214.909729pt;}
.yf7{bottom:216.903873pt;}
.y109{bottom:216.922930pt;}
.y190{bottom:217.477336pt;}
.y13d{bottom:217.566936pt;}
.y3b{bottom:218.572266pt;}
.y279{bottom:221.634664pt;}
.y2ba{bottom:221.638021pt;}
.y300{bottom:221.638051pt;}
.y6d{bottom:222.774129pt;}
.yeb{bottom:222.780529pt;}
.y9d{bottom:222.793329pt;}
.y1fb{bottom:223.100403pt;}
.y1cb{bottom:223.824649pt;}
.y232{bottom:224.304647pt;}
.y3a{bottom:226.572266pt;}
.y160{bottom:227.281596pt;}
.y30c{bottom:227.430664pt;}
.y30e{bottom:228.278259pt;}
.y33{bottom:228.952675pt;}
.yf6{bottom:232.897473pt;}
.y108{bottom:232.916530pt;}
.y18f{bottom:233.515736pt;}
.y13c{bottom:233.560536pt;}
.y278{bottom:233.634664pt;}
.y2b9{bottom:233.638021pt;}
.y2ff{bottom:233.638051pt;}
.y1fa{bottom:235.100403pt;}
.y231{bottom:236.304647pt;}
.yea{bottom:238.774129pt;}
.y6c{bottom:238.780529pt;}
.y9c{bottom:238.786929pt;}
.yc5{bottom:238.850929pt;}
.y1ca{bottom:239.818249pt;}
.y32{bottom:244.946275pt;}
.y277{bottom:245.634664pt;}
.y2b8{bottom:245.638021pt;}
.y2fe{bottom:245.638051pt;}
.y1f9{bottom:247.100403pt;}
.y230{bottom:248.304647pt;}
.yf5{bottom:248.891073pt;}
.y107{bottom:248.910130pt;}
.y18e{bottom:249.509336pt;}
.y13b{bottom:249.554136pt;}
.y322{bottom:250.972392pt;}
.y6b{bottom:254.774129pt;}
.y9b{bottom:254.780529pt;}
.ye9{bottom:254.818929pt;}
.yc4{bottom:254.844529pt;}
.y1c9{bottom:255.811849pt;}
.y276{bottom:257.634664pt;}
.y2b7{bottom:257.638021pt;}
.y2fd{bottom:257.638051pt;}
.y22f{bottom:260.304647pt;}
.y31{bottom:260.939875pt;}
.yf4{bottom:264.897330pt;}
.y106{bottom:264.903730pt;}
.y18d{bottom:265.502936pt;}
.y13a{bottom:265.547736pt;}
.y275{bottom:269.634664pt;}
.y2b6{bottom:269.638021pt;}
.y2fc{bottom:269.638051pt;}
.y6a{bottom:270.774129pt;}
.ye8{bottom:270.812529pt;}
.yc3{bottom:270.838129pt;}
.y1f8{bottom:271.100403pt;}
.y1c8{bottom:271.805449pt;}
.y22e{bottom:272.304647pt;}
.y29{bottom:276.224528pt;}
.y30{bottom:276.933475pt;}
.y1a2{bottom:278.648661pt;}
.yf3{bottom:280.890930pt;}
.y105{bottom:280.897330pt;}
.y18c{bottom:281.496536pt;}
.y139{bottom:281.541336pt;}
.y274{bottom:281.634664pt;}
.y2b5{bottom:281.638021pt;}
.y2fb{bottom:281.638051pt;}
.y1f7{bottom:283.100403pt;}
.y22d{bottom:284.304647pt;}
.y69{bottom:286.780529pt;}
.ye7{bottom:286.806129pt;}
.yc2{bottom:286.831729pt;}
.y1c7{bottom:287.799049pt;}
.y1a1{bottom:291.981995pt;}
.y28{bottom:292.224528pt;}
.y2f{bottom:292.927075pt;}
.y273{bottom:293.634664pt;}
.y2b4{bottom:293.638021pt;}
.y2fa{bottom:293.638051pt;}
.y1f6{bottom:295.100403pt;}
.y22c{bottom:296.304647pt;}
.y104{bottom:296.890930pt;}
.yf2{bottom:296.916551pt;}
.y18b{bottom:297.490136pt;}
.y138{bottom:297.534936pt;}
.y68{bottom:302.774129pt;}
.ye6{bottom:302.799729pt;}
.yc1{bottom:302.825329pt;}
.y1c6{bottom:303.792649pt;}
.y1a0{bottom:305.315328pt;}
.y272{bottom:305.634664pt;}
.y2b3{bottom:305.638021pt;}
.y2f9{bottom:305.638051pt;}
.y27{bottom:308.243728pt;}
.y22b{bottom:308.304647pt;}
.y2e{bottom:308.920675pt;}
.y103{bottom:312.890930pt;}
.yf1{bottom:312.910151pt;}
.y18a{bottom:313.483736pt;}
.y137{bottom:313.528536pt;}
.y271{bottom:317.634664pt;}
.y2b2{bottom:317.638021pt;}
.y2f8{bottom:317.638051pt;}
.y19f{bottom:318.648661pt;}
.y9a{bottom:318.780529pt;}
.ye5{bottom:318.793329pt;}
.y67{bottom:318.806129pt;}
.yc0{bottom:318.818929pt;}
.y1c5{bottom:319.786249pt;}
.y22a{bottom:320.304647pt;}
.y26{bottom:324.237328pt;}
.y2d{bottom:324.920675pt;}
.y102{bottom:328.899596pt;}
.yf0{bottom:328.903751pt;}
.y189{bottom:329.477336pt;}
.y136{bottom:329.522136pt;}
.y270{bottom:329.634664pt;}
.y2b1{bottom:329.638021pt;}
.y2f7{bottom:329.638051pt;}
.y229{bottom:332.304647pt;}
.y99{bottom:334.774129pt;}
.ye4{bottom:334.786929pt;}
.y66{bottom:334.799729pt;}
.ybf{bottom:334.812529pt;}
.y1f5{bottom:335.106782pt;}
.y1c4{bottom:335.779849pt;}
.y25{bottom:340.230928pt;}
.y2c{bottom:340.930661pt;}
.y26f{bottom:341.634664pt;}
.y2b0{bottom:341.638021pt;}
.y2f6{bottom:341.638051pt;}
.y228{bottom:344.304647pt;}
.y101{bottom:344.893196pt;}
.yef{bottom:344.897351pt;}
.y188{bottom:345.477336pt;}
.y135{bottom:345.515736pt;}
.y98{bottom:350.774129pt;}
.ye3{bottom:350.780529pt;}
.y65{bottom:350.793329pt;}
.ybe{bottom:350.806129pt;}
.y1f4{bottom:351.100382pt;}
.y1c3{bottom:351.773449pt;}
.y26e{bottom:353.634664pt;}
.y2af{bottom:353.638021pt;}
.y2f5{bottom:353.638051pt;}
.y24{bottom:356.224528pt;}
.y227{bottom:356.304647pt;}
.y2b{bottom:356.924261pt;}
.y100{bottom:360.886796pt;}
.yee{bottom:360.890951pt;}
.y187{bottom:361.496536pt;}
.y134{bottom:361.509336pt;}
.y26d{bottom:365.634664pt;}
.y2ae{bottom:365.638021pt;}
.y2f4{bottom:365.638051pt;}
.ye2{bottom:366.774129pt;}
.y64{bottom:366.786929pt;}
.ybd{bottom:366.799729pt;}
.y97{bottom:366.825329pt;}
.y1f3{bottom:367.125982pt;}
.y1c2{bottom:367.767049pt;}
.y226{bottom:368.304647pt;}
.y23{bottom:372.224528pt;}
.y2a{bottom:372.917861pt;}
.y186{bottom:377.490136pt;}
.y133{bottom:377.502936pt;}
.y26c{bottom:377.634664pt;}
.y2ad{bottom:377.638021pt;}
.y2f3{bottom:377.638051pt;}
.y225{bottom:380.304647pt;}
.y63{bottom:382.780529pt;}
.ye1{bottom:382.786929pt;}
.ybc{bottom:382.793329pt;}
.y96{bottom:382.818929pt;}
.y1f2{bottom:383.119582pt;}
.y1c1{bottom:383.818249pt;}
.y26b{bottom:389.634664pt;}
.y2ac{bottom:389.638021pt;}
.y2f2{bottom:389.638051pt;}
.y224{bottom:392.304647pt;}
.y185{bottom:393.483736pt;}
.y132{bottom:393.496536pt;}
.y62{bottom:398.774129pt;}
.ye0{bottom:398.780529pt;}
.ybb{bottom:398.786929pt;}
.y95{bottom:398.812529pt;}
.y1f1{bottom:399.113182pt;}
.y1c0{bottom:399.811849pt;}
.y26a{bottom:401.634664pt;}
.y2ab{bottom:401.638021pt;}
.y2f1{bottom:401.638051pt;}
.y223{bottom:404.304647pt;}
.y184{bottom:409.477336pt;}
.y131{bottom:409.490136pt;}
.y269{bottom:413.634664pt;}
.y2aa{bottom:413.638021pt;}
.y2f0{bottom:413.638051pt;}
.y61{bottom:414.774129pt;}
.yba{bottom:414.780529pt;}
.y94{bottom:414.806129pt;}
.y1f0{bottom:415.106782pt;}
.y1bf{bottom:415.805449pt;}
.y222{bottom:416.304647pt;}
.y113{bottom:417.991333pt;}
.y1a{bottom:418.857869pt;}
.y130{bottom:425.483736pt;}
.y183{bottom:425.502936pt;}
.y268{bottom:425.634664pt;}
.y2a9{bottom:425.638021pt;}
.y2ef{bottom:425.638051pt;}
.y221{bottom:428.304647pt;}
.yb9{bottom:430.774129pt;}
.y60{bottom:430.780529pt;}
.ydf{bottom:430.793329pt;}
.y93{bottom:430.799729pt;}
.y1ef{bottom:431.100382pt;}
.y112{bottom:431.324666pt;}
.y1be{bottom:431.799049pt;}
.y267{bottom:437.634664pt;}
.y2a8{bottom:437.638021pt;}
.y2ee{bottom:437.638051pt;}
.y19{bottom:438.857869pt;}
.y220{bottom:440.304647pt;}
.y12f{bottom:441.477336pt;}
.y182{bottom:441.496536pt;}
.y111{bottom:444.658000pt;}
.y5f{bottom:446.774129pt;}
.yb8{bottom:446.780529pt;}
.yde{bottom:446.786929pt;}
.y92{bottom:446.793329pt;}
.y1ee{bottom:447.100382pt;}
.y1bd{bottom:447.792649pt;}
.y266{bottom:449.634664pt;}
.y2a7{bottom:449.638021pt;}
.y2ed{bottom:449.638051pt;}
.y21f{bottom:452.304647pt;}
.y18{bottom:454.857869pt;}
.y12e{bottom:457.483736pt;}
.y181{bottom:457.490136pt;}
.y265{bottom:461.634664pt;}
.y2a6{bottom:461.638021pt;}
.y2ec{bottom:461.638051pt;}
.yb7{bottom:462.774129pt;}
.y5e{bottom:462.780529pt;}
.y91{bottom:462.786929pt;}
.y1ed{bottom:463.100382pt;}
.y1bc{bottom:463.786249pt;}
.y17{bottom:470.857869pt;}
.y12d{bottom:473.477336pt;}
.y180{bottom:473.483736pt;}
.y264{bottom:473.634664pt;}
.y2a5{bottom:473.638021pt;}
.y2eb{bottom:473.638051pt;}
.y5d{bottom:478.774129pt;}
.y90{bottom:478.780529pt;}
.y1ec{bottom:479.100382pt;}
.y1bb{bottom:479.779849pt;}
.y263{bottom:485.634664pt;}
.y2a4{bottom:485.638021pt;}
.y2ea{bottom:485.638051pt;}
.y16{bottom:486.857869pt;}
.y17f{bottom:489.477336pt;}
.y12c{bottom:489.483736pt;}
.y8f{bottom:494.774129pt;}
.ydd{bottom:494.786929pt;}
.y5c{bottom:494.818929pt;}
.y1ba{bottom:495.773449pt;}
.y262{bottom:497.634664pt;}
.y2a3{bottom:497.638021pt;}
.y2e9{bottom:497.638051pt;}
.y15{bottom:502.857869pt;}
.y12b{bottom:505.477336pt;}
.y261{bottom:509.634664pt;}
.y2a2{bottom:509.638021pt;}
.y2e8{bottom:509.638051pt;}
.yb6{bottom:510.774129pt;}
.ydc{bottom:510.780529pt;}
.y8e{bottom:510.793329pt;}
.y5b{bottom:510.812529pt;}
.y1b9{bottom:511.767049pt;}
.y21e{bottom:513.637980pt;}
.y14{bottom:518.857869pt;}
.y12a{bottom:521.477336pt;}
.y260{bottom:521.634664pt;}
.y2a1{bottom:521.638021pt;}
.y2e7{bottom:521.638051pt;}
.y325{bottom:525.637980pt;}
.ydb{bottom:526.774129pt;}
.y8d{bottom:526.786929pt;}
.y5a{bottom:526.806129pt;}
.y1eb{bottom:527.767049pt;}
.y1b8{bottom:527.779849pt;}
.y25f{bottom:533.634664pt;}
.y2a0{bottom:533.638021pt;}
.y2e6{bottom:533.638051pt;}
.y13{bottom:534.857869pt;}
.y17e{bottom:537.477336pt;}
.y21d{bottom:537.637980pt;}
.yda{bottom:542.774129pt;}
.y8c{bottom:542.780529pt;}
.y59{bottom:542.799729pt;}
.y1b7{bottom:543.773449pt;}
.y25e{bottom:545.634664pt;}
.y29f{bottom:545.638021pt;}
.y2e5{bottom:545.638051pt;}
.y21c{bottom:549.637980pt;}
.y12{bottom:550.857869pt;}
.y129{bottom:556.320818pt;}
.y25d{bottom:557.634664pt;}
.y29e{bottom:557.638021pt;}
.y2e4{bottom:557.638051pt;}
.y8b{bottom:558.774129pt;}
.yd9{bottom:558.780529pt;}
.y58{bottom:558.793329pt;}
.y15a{bottom:559.106782pt;}
.y1b6{bottom:559.767049pt;}
.y21b{bottom:561.637980pt;}
.y11{bottom:566.857869pt;}
.y25c{bottom:569.634664pt;}
.y29d{bottom:569.638021pt;}
.y2e3{bottom:569.638051pt;}
.y128{bottom:572.314418pt;}
.y17d{bottom:572.673352pt;}
.y21a{bottom:573.637980pt;}
.yd8{bottom:574.774129pt;}
.yb5{bottom:574.780529pt;}
.y57{bottom:574.786929pt;}
.y8a{bottom:574.793329pt;}
.y159{bottom:575.100382pt;}
.y1ea{bottom:575.779849pt;}
.y1b5{bottom:575.786249pt;}
.y25b{bottom:581.634664pt;}
.y29c{bottom:581.638021pt;}
.y2e2{bottom:581.638051pt;}
.y10{bottom:582.857869pt;}
.y219{bottom:585.637980pt;}
.y127{bottom:588.308018pt;}
.y17c{bottom:588.666952pt;}
.yb4{bottom:590.774129pt;}
.y56{bottom:590.780529pt;}
.y89{bottom:590.786929pt;}
.y158{bottom:591.100382pt;}
.y1e9{bottom:591.773449pt;}
.y1b4{bottom:591.779849pt;}
.y19e{bottom:592.231323pt;}
.y25a{bottom:593.634664pt;}
.y29b{bottom:593.638021pt;}
.y2e1{bottom:593.638051pt;}
.yf{bottom:598.857869pt;}
.y218{bottom:601.637980pt;}
.y126{bottom:604.301618pt;}
.y17b{bottom:604.660552pt;}
.y19d{bottom:605.564657pt;}
.y259{bottom:605.634664pt;}
.y29a{bottom:605.638021pt;}
.y2e0{bottom:605.638051pt;}
.y55{bottom:606.774129pt;}
.y88{bottom:606.780529pt;}
.y1e8{bottom:607.767049pt;}
.y1b3{bottom:607.773449pt;}
.y217{bottom:613.637980pt;}
.ye{bottom:614.857869pt;}
.y258{bottom:617.634664pt;}
.y299{bottom:617.638021pt;}
.y2df{bottom:617.638051pt;}
.y19c{bottom:618.897990pt;}
.y125{bottom:620.295218pt;}
.y17a{bottom:620.654152pt;}
.y216{bottom:621.637980pt;}
.y87{bottom:622.774129pt;}
.y54{bottom:622.780529pt;}
.y157{bottom:623.113182pt;}
.y1b2{bottom:623.767049pt;}
.y1e7{bottom:623.799090pt;}
.y257{bottom:629.634664pt;}
.y298{bottom:629.638021pt;}
.y2de{bottom:629.638051pt;}
.yd{bottom:630.857869pt;}
.y19b{bottom:632.231323pt;}
.y124{bottom:636.288818pt;}
.y179{bottom:636.647752pt;}
.y215{bottom:637.637980pt;}
.y53{bottom:638.774129pt;}
.yb3{bottom:638.780529pt;}
.y86{bottom:638.786929pt;}
.y156{bottom:639.106782pt;}
.y1e6{bottom:639.792690pt;}
.y1b1{bottom:639.818290pt;}
.y256{bottom:641.634664pt;}
.y297{bottom:641.638021pt;}
.y2dd{bottom:641.638051pt;}
.y19a{bottom:645.564657pt;}
.y214{bottom:645.638021pt;}
.yc{bottom:646.857869pt;}
.y123{bottom:652.320818pt;}
.y178{bottom:652.641352pt;}
.y255{bottom:653.634664pt;}
.y296{bottom:653.638021pt;}
.y2dc{bottom:653.638051pt;}
.yb2{bottom:654.774129pt;}
.y85{bottom:654.780529pt;}
.yd7{bottom:654.812570pt;}
.y52{bottom:654.844570pt;}
.y155{bottom:655.100382pt;}
.y1e5{bottom:655.786290pt;}
.y1b0{bottom:655.811890pt;}
.y199{bottom:658.897990pt;}
.y254{bottom:665.634664pt;}
.y295{bottom:665.638021pt;}
.y2db{bottom:665.638051pt;}
.yb{bottom:666.857869pt;}
.y122{bottom:668.314418pt;}
.y177{bottom:668.634952pt;}
.y213{bottom:669.638021pt;}
.y84{bottom:670.774129pt;}
.yd6{bottom:670.806170pt;}
.y51{bottom:670.838170pt;}
.y154{bottom:671.113223pt;}
.y1e4{bottom:671.779890pt;}
.y1af{bottom:671.805490pt;}
.y253{bottom:677.634664pt;}
.y294{bottom:677.638021pt;}
.y2da{bottom:677.638051pt;}
.y212{bottom:681.638021pt;}
.y121{bottom:684.308018pt;}
.y176{bottom:684.628552pt;}
.y83{bottom:686.786970pt;}
.yd5{bottom:686.799770pt;}
.y50{bottom:686.831770pt;}
.y153{bottom:687.106823pt;}
.y1e3{bottom:687.773490pt;}
.y1ae{bottom:687.799090pt;}
.y252{bottom:689.634664pt;}
.y293{bottom:689.638021pt;}
.y2d9{bottom:689.638051pt;}
.y120{bottom:700.301618pt;}
.y175{bottom:700.622152pt;}
.y251{bottom:701.634664pt;}
.y292{bottom:701.638021pt;}
.y2d8{bottom:701.638051pt;}
.y82{bottom:702.780570pt;}
.yd4{bottom:702.793370pt;}
.y4f{bottom:702.825370pt;}
.y152{bottom:703.100423pt;}
.y1e2{bottom:703.767090pt;}
.y1ad{bottom:703.792690pt;}
.y211{bottom:705.638021pt;}
.y250{bottom:713.634664pt;}
.y291{bottom:713.638021pt;}
.y2d7{bottom:713.638051pt;}
.y11f{bottom:716.295218pt;}
.y174{bottom:716.634952pt;}
.y210{bottom:717.638021pt;}
.y81{bottom:718.774170pt;}
.yd3{bottom:718.786970pt;}
.y4e{bottom:718.818970pt;}
.y151{bottom:719.126023pt;}
.y1ac{bottom:719.786290pt;}
.y1e1{bottom:719.818290pt;}
.y24f{bottom:725.634664pt;}
.y290{bottom:725.638021pt;}
.y2d6{bottom:725.638051pt;}
.y20f{bottom:729.638021pt;}
.ya{bottom:731.153878pt;}
.y11e{bottom:732.288818pt;}
.y173{bottom:732.628552pt;}
.yb1{bottom:734.774170pt;}
.y80{bottom:734.780570pt;}
.y4d{bottom:734.812570pt;}
.y150{bottom:735.119623pt;}
.y1ab{bottom:735.779890pt;}
.y1e0{bottom:735.811890pt;}
.y24e{bottom:737.634664pt;}
.y28f{bottom:737.638021pt;}
.y2d5{bottom:737.638051pt;}
.y20e{bottom:741.638021pt;}
.y11d{bottom:748.295218pt;}
.y172{bottom:748.622152pt;}
.y24d{bottom:749.634664pt;}
.y28e{bottom:749.638021pt;}
.y2d4{bottom:749.638051pt;}
.y9{bottom:749.820544pt;}
.y7f{bottom:750.774170pt;}
.yb0{bottom:750.786970pt;}
.y4c{bottom:750.806170pt;}
.y14f{bottom:751.113223pt;}
.y1aa{bottom:751.773490pt;}
.y1df{bottom:751.805490pt;}
.y20d{bottom:753.638021pt;}
.y24c{bottom:761.634664pt;}
.y28d{bottom:761.638021pt;}
.y2d3{bottom:761.638051pt;}
.y11c{bottom:764.288818pt;}
.y171{bottom:764.622152pt;}
.y20c{bottom:765.638021pt;}
.yaf{bottom:766.780570pt;}
.y7e{bottom:766.786970pt;}
.y4b{bottom:766.799770pt;}
.yd2{bottom:766.812570pt;}
.y14e{bottom:767.106823pt;}
.y1a9{bottom:767.767090pt;}
.y1de{bottom:767.799090pt;}
.y8{bottom:768.491211pt;}
.y24b{bottom:773.634664pt;}
.y28c{bottom:773.638021pt;}
.y2d2{bottom:773.638051pt;}
.y20b{bottom:777.638021pt;}
.y11b{bottom:780.295218pt;}
.y170{bottom:780.634952pt;}
.yae{bottom:782.774170pt;}
.y7d{bottom:782.780570pt;}
.y4a{bottom:782.793370pt;}
.yd1{bottom:782.806170pt;}
.y14d{bottom:783.100423pt;}
.y1dd{bottom:783.792690pt;}
.y1a8{bottom:783.799090pt;}
.y24a{bottom:785.634664pt;}
.y28b{bottom:785.638021pt;}
.y2d1{bottom:785.638051pt;}
.y20a{bottom:789.638021pt;}
.y11a{bottom:796.288818pt;}
.y16f{bottom:796.628552pt;}
.y249{bottom:797.634664pt;}
.y28a{bottom:797.638021pt;}
.y2d0{bottom:797.638051pt;}
.y7c{bottom:798.774170pt;}
.y49{bottom:798.786970pt;}
.yd0{bottom:798.799770pt;}
.yad{bottom:798.825370pt;}
.y14c{bottom:799.113223pt;}
.y1dc{bottom:799.786290pt;}
.y1a7{bottom:799.792690pt;}
.y7{bottom:800.513358pt;}
.y209{bottom:801.638021pt;}
.y248{bottom:809.634664pt;}
.y289{bottom:809.638021pt;}
.y2cf{bottom:809.638051pt;}
.y119{bottom:812.288818pt;}
.y16e{bottom:812.622152pt;}
.y7b{bottom:814.774170pt;}
.y48{bottom:814.780570pt;}
.ycf{bottom:814.793370pt;}
.yac{bottom:814.818970pt;}
.y14b{bottom:815.106823pt;}
.y1db{bottom:815.779890pt;}
.y1a6{bottom:815.786290pt;}
.y247{bottom:821.634664pt;}
.y288{bottom:821.638021pt;}
.y2ce{bottom:821.638051pt;}
.y208{bottom:825.638021pt;}
.y118{bottom:828.288818pt;}
.y16d{bottom:828.622152pt;}
.y47{bottom:830.774170pt;}
.y7a{bottom:830.786970pt;}
.yab{bottom:830.812570pt;}
.y14a{bottom:831.100423pt;}
.y1da{bottom:831.773490pt;}
.y1a5{bottom:831.779890pt;}
.y246{bottom:833.634664pt;}
.y287{bottom:833.638021pt;}
.y2cd{bottom:833.638051pt;}
.y6{bottom:835.169358pt;}
.y16c{bottom:844.622152pt;}
.y245{bottom:845.634664pt;}
.y286{bottom:845.638021pt;}
.y2cc{bottom:845.638051pt;}
.y46{bottom:846.780570pt;}
.yaa{bottom:846.806170pt;}
.y149{bottom:847.100423pt;}
.y1d9{bottom:847.767090pt;}
.y1a4{bottom:847.773490pt;}
.y244{bottom:857.634664pt;}
.y207{bottom:857.638021pt;}
.y2cb{bottom:857.638051pt;}
.y45{bottom:862.774170pt;}
.ya9{bottom:862.799770pt;}
.y1a3{bottom:863.767090pt;}
.y1d8{bottom:863.773490pt;}
.y243{bottom:869.634664pt;}
.y206{bottom:869.638021pt;}
.y2ca{bottom:869.638051pt;}
.y5{bottom:869.825358pt;}
.yce{bottom:878.774170pt;}
.y44{bottom:878.793370pt;}
.y79{bottom:878.825596pt;}
.y1d7{bottom:879.767090pt;}
.y16b{bottom:879.773490pt;}
.y117{bottom:879.786290pt;}
.y242{bottom:881.634664pt;}
.y285{bottom:881.638021pt;}
.y2c9{bottom:881.638051pt;}
.y241{bottom:893.634664pt;}
.y205{bottom:893.638021pt;}
.y2c8{bottom:893.638051pt;}
.y43{bottom:894.786970pt;}
.ycd{bottom:894.806396pt;}
.y78{bottom:894.819196pt;}
.y148{bottom:895.767090pt;}
.y116{bottom:895.779890pt;}
.y1d6{bottom:895.792936pt;}
.y240{bottom:905.634664pt;}
.y204{bottom:905.638021pt;}
.y2c7{bottom:905.638051pt;}
.y42{bottom:910.780570pt;}
.ycc{bottom:910.799996pt;}
.y77{bottom:910.812796pt;}
.y16a{bottom:911.766920pt;}
.y147{bottom:911.767090pt;}
.y115{bottom:911.773490pt;}
.y1d5{bottom:911.786536pt;}
.y23f{bottom:917.634664pt;}
.y203{bottom:917.638021pt;}
.y2c6{bottom:917.638051pt;}
.y4{bottom:918.544515pt;}
.y37{bottom:920.666829pt;}
.y41{bottom:926.774170pt;}
.ycb{bottom:926.793596pt;}
.y76{bottom:926.806396pt;}
.y169{bottom:927.760520pt;}
.y114{bottom:927.767090pt;}
.y1d4{bottom:927.780136pt;}
.y146{bottom:927.910120pt;}
.y23e{bottom:929.634664pt;}
.y202{bottom:929.638021pt;}
.y2c5{bottom:929.638051pt;}
.y3{bottom:975.375182pt;}
.y38{bottom:985.598633pt;}
.y2{bottom:988.708515pt;}
.ya6{bottom:1001.355225pt;}
.y3f{bottom:1001.355306pt;}
.ya8{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.ya7{bottom:1002.044515pt;}
.y40{bottom:1002.048639pt;}
.h24{height:9.458097pt;}
.hf{height:24.064000pt;}
.h1e{height:24.480000pt;}
.h12{height:24.724000pt;}
.h22{height:25.221780pt;}
.h1c{height:26.656000pt;}
.h20{height:26.954667pt;}
.h21{height:27.132000pt;}
.h1d{height:28.560000pt;}
.h1f{height:31.584000pt;}
.hd{height:32.965333pt;}
.h11{height:35.320000pt;}
.hc{height:36.922667pt;}
.h16{height:37.674667pt;}
.h1b{height:38.080000pt;}
.h19{height:38.920000pt;}
.h4{height:40.618667pt;}
.h3{height:40.661333pt;}
.h1a{height:40.724000pt;}
.h17{height:41.514667pt;}
.h2{height:41.984000pt;}
.h15{height:42.197333pt;}
.ha{height:47.093333pt;}
.h13{height:47.741866pt;}
.h14{height:48.555733pt;}
.he{height:49.653333pt;}
.h18{height:49.654011pt;}
.hb{height:51.893333pt;}
.h9{height:54.329067pt;}
.h7{height:59.728337pt;}
.h8{height:59.744337pt;}
.h10{height:64.853333pt;}
.h5{height:68.570667pt;}
.h6{height:121.856000pt;}
.h23{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:306.455994pt;}
.w2{width:345.156006pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:86.252935pt;}
.xe{left:95.590535pt;}
.xc{left:102.257202pt;}
.x1a{left:124.044800pt;}
.x1c{left:125.070801pt;}
.x4{left:240.726664pt;}
.x8{left:372.845337pt;}
.x5{left:406.304795pt;}
.x17{left:411.653320pt;}
.xd{left:414.799194pt;}
.x6{left:416.961594pt;}
.x16{left:423.027588pt;}
.x15{left:423.945475pt;}
.xf{left:426.320535pt;}
.x11{left:429.804118pt;}
.xb{left:432.963862pt;}
.x12{left:435.898785pt;}
.x13{left:438.314657pt;}
.x19{left:535.698120pt;}
.x1b{left:536.724121pt;}
.x14{left:587.513184pt;}
.x7{left:617.715454pt;}
.x10{left:658.727458pt;}
.x9{left:664.199341pt;}
}




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