
    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_40761ec99012bedc9b7eba57.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_27422669c79c729b3d9273e3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_54e2ddd1157493e982db81dd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.115723;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_909efacc694647e7f047b779.woff')format("woff");}.ff4{font-family:ff4;line-height:1.292969;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_8c429c7a432ee56a16391337.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_77128b8527ede85eeb119973.woff')format("woff");}.ff6{font-family:ff6;line-height:1.115723;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);}
.v4{vertical-align:-13.980000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.959000px;}
.v1{vertical-align:16.980000px;}
.ls12{letter-spacing:-7.371000px;}
.ls8a{letter-spacing:-6.804000px;}
.ls6b{letter-spacing:-6.555000px;}
.ls7f{letter-spacing:-6.552000px;}
.ls89{letter-spacing:-5.922000px;}
.ls61{letter-spacing:-5.796000px;}
.ls62{letter-spacing:-5.520000px;}
.ls55{letter-spacing:-5.451000px;}
.ls87{letter-spacing:-5.103000px;}
.ls6e{letter-spacing:-4.416000px;}
.ls82{letter-spacing:-4.410000px;}
.ls6a{letter-spacing:-4.278000px;}
.ls91{letter-spacing:-4.221000px;}
.lsa0{letter-spacing:-4.200000px;}
.ls9e{letter-spacing:-3.840000px;}
.ls53{letter-spacing:-3.657000px;}
.ls34{letter-spacing:-3.381000px;}
.ls4f{letter-spacing:-3.348000px;}
.ls70{letter-spacing:-3.243000px;}
.ls6f{letter-spacing:-3.105000px;}
.lsb0{letter-spacing:-2.940000px;}
.ls33{letter-spacing:-2.829000px;}
.ls8e{letter-spacing:-2.772000px;}
.ls38{letter-spacing:-2.760000px;}
.ls54{letter-spacing:-2.691000px;}
.ls5f{letter-spacing:-2.622000px;}
.ls22{letter-spacing:-2.484000px;}
.ls6c{letter-spacing:-2.415000px;}
.ls1f{letter-spacing:-2.346000px;}
.ls2a{letter-spacing:-2.277000px;}
.ls56{letter-spacing:-2.208000px;}
.ls99{letter-spacing:-2.205000px;}
.lsc{letter-spacing:-2.175000px;}
.ls4{letter-spacing:-2.160000px;}
.ls57{letter-spacing:-2.070000px;}
.ls39{letter-spacing:-2.001000px;}
.ls23{letter-spacing:-1.932000px;}
.ls32{letter-spacing:-1.863000px;}
.lsa4{letter-spacing:-1.800000px;}
.ls35{letter-spacing:-1.794000px;}
.lsa8{letter-spacing:-1.740000px;}
.ls4b{letter-spacing:-1.725000px;}
.ls49{letter-spacing:-1.656000px;}
.lsa1{letter-spacing:-1.620000px;}
.ls14{letter-spacing:-1.587000px;}
.ls8f{letter-spacing:-1.575000px;}
.ls5e{letter-spacing:-1.518000px;}
.lsad{letter-spacing:-1.500000px;}
.ls3c{letter-spacing:-1.404000px;}
.ls7c{letter-spacing:-1.386000px;}
.ls25{letter-spacing:-1.380000px;}
.ls21{letter-spacing:-1.311000px;}
.lsac{letter-spacing:-1.260000px;}
.ls1d{letter-spacing:-1.242000px;}
.lsa7{letter-spacing:-1.200000px;}
.ls92{letter-spacing:-1.197000px;}
.ls1b{letter-spacing:-1.173000px;}
.ls88{letter-spacing:-1.134000px;}
.ls2e{letter-spacing:-1.125000px;}
.ls24{letter-spacing:-1.104000px;}
.ls26{letter-spacing:-1.035000px;}
.ls83{letter-spacing:-1.008000px;}
.ls4e{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.966000px;}
.ls86{letter-spacing:-0.945000px;}
.ls50{letter-spacing:-0.918000px;}
.lsa9{letter-spacing:-0.900000px;}
.ls19{letter-spacing:-0.897000px;}
.ls96{letter-spacing:-0.882000px;}
.ls1e{letter-spacing:-0.855000px;}
.ls20{letter-spacing:-0.828000px;}
.ls90{letter-spacing:-0.819000px;}
.lsa3{letter-spacing:-0.780000px;}
.ls27{letter-spacing:-0.759000px;}
.ls4d{letter-spacing:-0.756000px;}
.lsb2{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.690000px;}
.ls64{letter-spacing:-0.675000px;}
.lsa6{letter-spacing:-0.660000px;}
.ls7e{letter-spacing:-0.630000px;}
.ls75{letter-spacing:-0.627000px;}
.ls28{letter-spacing:-0.621000px;}
.ls9f{letter-spacing:-0.600000px;}
.ls45{letter-spacing:-0.594000px;}
.ls85{letter-spacing:-0.567000px;}
.ls29{letter-spacing:-0.552000px;}
.lsa2{letter-spacing:-0.540000px;}
.ls79{letter-spacing:-0.504000px;}
.ls42{letter-spacing:-0.486000px;}
.ls60{letter-spacing:-0.483000px;}
.lsb1{letter-spacing:-0.480000px;}
.ls7d{letter-spacing:-0.441000px;}
.ls3b{letter-spacing:-0.432000px;}
.lsa5{letter-spacing:-0.420000px;}
.ls66{letter-spacing:-0.414000px;}
.ls40{letter-spacing:-0.378000px;}
.lsab{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.345000px;}
.ls3d{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.300000px;}
.ls31{letter-spacing:-0.276000px;}
.ls43{letter-spacing:-0.270000px;}
.ls97{letter-spacing:-0.252000px;}
.ls7{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.207000px;}
.ls2{letter-spacing:-0.189000px;}
.lsae{letter-spacing:-0.180000px;}
.ls3f{letter-spacing:-0.162000px;}
.ls59{letter-spacing:-0.138000px;}
.ls41{letter-spacing:-0.108000px;}
.ls76{letter-spacing:-0.081000px;}
.ls58{letter-spacing:-0.069000px;}
.lsf{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000300px;}
.ls4a{letter-spacing:0.138000px;}
.ls5b{letter-spacing:0.207000px;}
.lsaf{letter-spacing:0.240000px;}
.ls94{letter-spacing:0.315000px;}
.ls69{letter-spacing:0.552000px;}
.ls17{letter-spacing:0.586500px;}
.ls8c{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.621000px;}
.ls1c{letter-spacing:0.828000px;}
.ls9c{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.897000px;}
.ls74{letter-spacing:0.975000px;}
.ls13{letter-spacing:1.104000px;}
.ls5a{letter-spacing:1.173000px;}
.ls95{letter-spacing:1.197000px;}
.ls15{letter-spacing:1.242000px;}
.ls9d{letter-spacing:1.259280px;}
.ls6{letter-spacing:1.260000px;}
.ls48{letter-spacing:1.262700px;}
.lse{letter-spacing:1.344000px;}
.ls3e{letter-spacing:1.350000px;}
.ls52{letter-spacing:1.425000px;}
.ls5d{letter-spacing:1.587000px;}
.ls47{letter-spacing:1.635300px;}
.ls68{letter-spacing:1.718100px;}
.ls37{letter-spacing:1.794000px;}
.lsb{letter-spacing:2.400000px;}
.ls2d{letter-spacing:2.553000px;}
.ls8d{letter-spacing:3.213000px;}
.ls9a{letter-spacing:3.339000px;}
.ls80{letter-spacing:3.402000px;}
.ls10{letter-spacing:3.696000px;}
.ls8{letter-spacing:4.200000px;}
.ls72{letter-spacing:4.692000px;}
.ls1a{letter-spacing:5.037000px;}
.ls7b{letter-spacing:5.292000px;}
.ls84{letter-spacing:5.670000px;}
.ls5{letter-spacing:5.760000px;}
.ls9{letter-spacing:5.880000px;}
.lsd{letter-spacing:6.000000px;}
.ls7a{letter-spacing:6.300000px;}
.ls71{letter-spacing:6.348000px;}
.ls77{letter-spacing:6.552000px;}
.ls93{letter-spacing:7.119000px;}
.ls4c{letter-spacing:7.245000px;}
.ls3{letter-spacing:7.260000px;}
.ls98{letter-spacing:7.497000px;}
.ls78{letter-spacing:8.316000px;}
.ls9b{letter-spacing:8.640000px;}
.ls81{letter-spacing:8.820000px;}
.ls2f{letter-spacing:9.453000px;}
.ls51{letter-spacing:499.409400px;}
.ls73{letter-spacing:499.814400px;}
.lsaa{letter-spacing:499.822200px;}
.ls8b{letter-spacing:500.204400px;}
.ls63{letter-spacing:501.502200px;}
.ls2b{letter-spacing:507.939000px;}
.lsa{letter-spacing:509.056800px;}
.ls46{letter-spacing:990.022800px;}
.ls67{letter-spacing:990.517800px;}
.ls0{letter-spacing:993.142800px;}
.ls16{letter-spacing:997.192800px;}
.ls5c{letter-spacing:999.172800px;}
.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;}
}
.ws86{word-spacing:-26.523000px;}
.ws81{word-spacing:-26.019000px;}
.wsab{word-spacing:-25.500000px;}
.ws80{word-spacing:-24.255000px;}
.ws1{word-spacing:-22.740000px;}
.ws7f{word-spacing:-22.680000px;}
.ws0{word-spacing:-22.620000px;}
.ws57{word-spacing:-22.500000px;}
.ws7e{word-spacing:-22.050000px;}
.ws98{word-spacing:-21.675000px;}
.ws47{word-spacing:-20.493000px;}
.ws6c{word-spacing:-20.400000px;}
.ws2b{word-spacing:-19.950000px;}
.ws1e{word-spacing:-19.389000px;}
.ws9{word-spacing:-18.900000px;}
.ws9d{word-spacing:-18.018000px;}
.ws32{word-spacing:-17.043000px;}
.ws5b{word-spacing:-16.905000px;}
.ws89{word-spacing:-16.695000px;}
.ws1f{word-spacing:-16.491000px;}
.ws4b{word-spacing:-16.422000px;}
.ws2e{word-spacing:-16.353000px;}
.ws59{word-spacing:-16.284000px;}
.ws16{word-spacing:-16.146000px;}
.ws4a{word-spacing:-16.077000px;}
.ws1c{word-spacing:-16.008000px;}
.ws1b{word-spacing:-15.939000px;}
.ws19{word-spacing:-15.870000px;}
.ws14{word-spacing:-15.801000px;}
.ws17{word-spacing:-15.732000px;}
.ws1d{word-spacing:-15.663000px;}
.wsaa{word-spacing:-15.561000px;}
.ws64{word-spacing:-15.525000px;}
.ws30{word-spacing:-15.456000px;}
.wsb{word-spacing:-15.390000px;}
.ws48{word-spacing:-15.387000px;}
.ws71{word-spacing:-15.318000px;}
.ws2d{word-spacing:-15.249000px;}
.ws2c{word-spacing:-15.180000px;}
.ws38{word-spacing:-15.174000px;}
.wsa9{word-spacing:-15.120000px;}
.ws1a{word-spacing:-15.111000px;}
.ws87{word-spacing:-15.057000px;}
.ws31{word-spacing:-15.042000px;}
.ws9c{word-spacing:-14.994000px;}
.ws99{word-spacing:-14.931000px;}
.ws5a{word-spacing:-14.835000px;}
.ws15{word-spacing:-14.697000px;}
.ws9e{word-spacing:-14.679000px;}
.ws18{word-spacing:-14.559000px;}
.wsb2{word-spacing:-14.400000px;}
.ws58{word-spacing:-14.352000px;}
.ws2f{word-spacing:-14.283000px;}
.wsb0{word-spacing:-14.280000px;}
.wsae{word-spacing:-14.220000px;}
.ws72{word-spacing:-14.214000px;}
.wsb3{word-spacing:-14.160000px;}
.wsb1{word-spacing:-14.040000px;}
.ws9a{word-spacing:-13.986000px;}
.wsb4{word-spacing:-13.920000px;}
.ws73{word-spacing:-13.800000px;}
.wsba{word-spacing:-13.560000px;}
.ws9b{word-spacing:-13.482000px;}
.wsaf{word-spacing:-13.200000px;}
.ws36{word-spacing:-13.176000px;}
.wsa{word-spacing:-13.146000px;}
.ws3b{word-spacing:-13.122000px;}
.ws3a{word-spacing:-13.068000px;}
.wsad{word-spacing:-13.020000px;}
.ws35{word-spacing:-13.014000px;}
.ws37{word-spacing:-12.960000px;}
.ws33{word-spacing:-12.906000px;}
.ws39{word-spacing:-12.852000px;}
.ws3c{word-spacing:-12.744000px;}
.ws4c{word-spacing:-12.582000px;}
.ws4f{word-spacing:-12.420000px;}
.ws4d{word-spacing:-12.366000px;}
.ws34{word-spacing:-11.934000px;}
.ws66{word-spacing:-11.523000px;}
.ws49{word-spacing:-11.303787px;}
.ws65{word-spacing:-11.247000px;}
.ws88{word-spacing:-11.151000px;}
.wsac{word-spacing:-11.088660px;}
.ws70{word-spacing:-10.488000px;}
.ws4e{word-spacing:-9.990000px;}
.ws3d{word-spacing:-9.453000px;}
.ws85{word-spacing:-9.009000px;}
.wsa7{word-spacing:-7.497000px;}
.ws4{word-spacing:-7.260000px;}
.ws55{word-spacing:-7.245000px;}
.wsa3{word-spacing:-7.119000px;}
.ws7a{word-spacing:-6.348000px;}
.ws8a{word-spacing:-6.300000px;}
.wsd{word-spacing:-6.000000px;}
.wsc2{word-spacing:-5.760000px;}
.ws91{word-spacing:-5.670000px;}
.ws8b{word-spacing:-5.292000px;}
.ws22{word-spacing:-5.037000px;}
.ws7b{word-spacing:-4.692000px;}
.ws8{word-spacing:-4.200000px;}
.wsf{word-spacing:-3.696000px;}
.ws8f{word-spacing:-3.402000px;}
.wsb5{word-spacing:-3.339000px;}
.ws9f{word-spacing:-3.213000px;}
.wsc{word-spacing:-2.400000px;}
.ws42{word-spacing:-1.794000px;}
.ws67{word-spacing:-1.587000px;}
.ws44{word-spacing:-1.350000px;}
.ws6{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.242000px;}
.wsa4{word-spacing:-1.197000px;}
.ws61{word-spacing:-1.173000px;}
.ws11{word-spacing:-1.104000px;}
.ws20{word-spacing:-0.897000px;}
.wsb6{word-spacing:-0.840000px;}
.ws24{word-spacing:-0.828000px;}
.ws77{word-spacing:-0.621000px;}
.ws74{word-spacing:-0.552000px;}
.wsbe{word-spacing:-0.240000px;}
.ws63{word-spacing:-0.207000px;}
.ws52{word-spacing:-0.138000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.060000px;}
.ws60{word-spacing:0.069000px;}
.ws45{word-spacing:0.108000px;}
.ws46{word-spacing:0.162000px;}
.wsbd{word-spacing:0.180000px;}
.ws3{word-spacing:0.189000px;}
.ws3e{word-spacing:0.207000px;}
.ws7{word-spacing:0.240000px;}
.wsa6{word-spacing:0.252000px;}
.ws3f{word-spacing:0.276000px;}
.ws10{word-spacing:0.300000px;}
.ws6e{word-spacing:0.345000px;}
.wsbb{word-spacing:0.360000px;}
.wsa5{word-spacing:0.378000px;}
.ws6f{word-spacing:0.414000px;}
.ws8d{word-spacing:0.441000px;}
.wsc0{word-spacing:0.480000px;}
.ws69{word-spacing:0.483000px;}
.ws84{word-spacing:0.504000px;}
.ws92{word-spacing:0.567000px;}
.ws29{word-spacing:0.621000px;}
.ws83{word-spacing:0.627000px;}
.ws8e{word-spacing:0.630000px;}
.ws5c{word-spacing:0.690000px;}
.wsc1{word-spacing:0.720000px;}
.ws28{word-spacing:0.759000px;}
.wsa1{word-spacing:0.819000px;}
.ws26{word-spacing:0.828000px;}
.ws25{word-spacing:0.855000px;}
.ws21{word-spacing:0.897000px;}
.ws93{word-spacing:0.945000px;}
.ws43{word-spacing:0.966000px;}
.ws62{word-spacing:1.035000px;}
.ws6a{word-spacing:1.104000px;}
.ws95{word-spacing:1.134000px;}
.ws23{word-spacing:1.173000px;}
.wsa2{word-spacing:1.197000px;}
.wsb8{word-spacing:1.200000px;}
.ws7c{word-spacing:1.242000px;}
.ws50{word-spacing:1.311000px;}
.ws27{word-spacing:1.380000px;}
.ws8c{word-spacing:1.386000px;}
.wsbc{word-spacing:1.500000px;}
.ws6d{word-spacing:1.518000px;}
.ws12{word-spacing:1.587000px;}
.ws54{word-spacing:1.725000px;}
.wsb9{word-spacing:1.740000px;}
.ws82{word-spacing:1.863000px;}
.ws53{word-spacing:1.932000px;}
.ws51{word-spacing:2.001000px;}
.ws5f{word-spacing:2.070000px;}
.ws5{word-spacing:2.160000px;}
.wsa8{word-spacing:2.205000px;}
.ws6b{word-spacing:2.208000px;}
.ws2a{word-spacing:2.277000px;}
.ws7d{word-spacing:2.346000px;}
.ws76{word-spacing:2.415000px;}
.wsa0{word-spacing:2.772000px;}
.ws40{word-spacing:2.829000px;}
.wsbf{word-spacing:2.940000px;}
.ws90{word-spacing:3.087000px;}
.ws79{word-spacing:3.105000px;}
.ws41{word-spacing:3.381000px;}
.ws5d{word-spacing:3.657000px;}
.wsb7{word-spacing:4.200000px;}
.ws75{word-spacing:4.278000px;}
.ws78{word-spacing:4.416000px;}
.ws94{word-spacing:5.103000px;}
.ws5e{word-spacing:5.451000px;}
.ws96{word-spacing:5.922000px;}
.ws68{word-spacing:6.693000px;}
.ws97{word-spacing:6.804000px;}
.ws56{word-spacing:43.445160px;}
._1b{margin-left:-14.393400px;}
._1a{margin-left:-13.196400px;}
._19{margin-left:-10.691700px;}
._18{margin-left:-8.945700px;}
._c{margin-left:-7.593300px;}
._b{margin-left:-6.592200px;}
._4{margin-left:-5.190600px;}
._d{margin-left:-3.878100px;}
._2{margin-left:-2.576700px;}
._6{margin-left:-1.254000px;}
._5{width:1.184700px;}
._1{width:2.400000px;}
._3{width:3.724500px;}
._7{width:5.312700px;}
._8{width:6.423300px;}
._9{width:7.506000px;}
._a{width:8.690100px;}
._12{width:10.523100px;}
._16{width:11.567400px;}
._14{width:13.492200px;}
._15{width:14.702100px;}
._13{width:15.936900px;}
._24{width:17.783700px;}
._21{width:18.885600px;}
._25{width:20.158500px;}
._1c{width:22.986900px;}
._11{width:24.392400px;}
._1d{width:25.527900px;}
._23{width:27.882900px;}
._22{width:33.906900px;}
._17{width:43.445160px;}
._1e{width:49.518600px;}
._20{width:55.683000px;}
._10{width:59.274000px;}
._1f{width:65.067000px;}
._e{width:71.400000px;}
._f{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yd8{bottom:106.107300px;}
.y44{bottom:106.157400px;}
.y123{bottom:106.165350px;}
.y1a5{bottom:106.181850px;}
.y8f{bottom:106.281300px;}
.y69{bottom:106.296300px;}
.y1e{bottom:106.298850px;}
.y166{bottom:106.318500px;}
.y185{bottom:106.402350px;}
.y1c5{bottom:106.421400px;}
.y149{bottom:109.294800px;}
.y8e{bottom:123.534300px;}
.yb4{bottom:123.549300px;}
.y1c4{bottom:126.086400px;}
.y1d{bottom:126.473850px;}
.yd7{bottom:126.479550px;}
.y68{bottom:126.544800px;}
.y122{bottom:126.589350px;}
.y43{bottom:126.736650px;}
.y1a4{bottom:127.649100px;}
.y165{bottom:128.431500px;}
.y184{bottom:136.075350px;}
.y8d{bottom:140.787300px;}
.y1c3{bottom:145.751400px;}
.yd6{bottom:146.851800px;}
.y121{bottom:147.013350px;}
.y42{bottom:147.315900px;}
.yb3{bottom:148.046700px;}
.y1a3{bottom:149.116350px;}
.y164{bottom:150.544500px;}
.y148{bottom:153.380100px;}
.y183{bottom:157.243350px;}
.y8c{bottom:158.040300px;}
.y1c{bottom:159.398850px;}
.y1c2{bottom:165.416400px;}
.yb2{bottom:166.547250px;}
.yd5{bottom:167.224050px;}
.y120{bottom:167.437350px;}
.y41{bottom:167.895150px;}
.yfc{bottom:170.549250px;}
.y67{bottom:170.559150px;}
.y147{bottom:173.631600px;}
.y8b{bottom:175.293300px;}
.y182{bottom:178.411350px;}
.y1a2{bottom:179.088600px;}
.y163{bottom:181.162500px;}
.yb1{bottom:183.800250px;}
.y1c1{bottom:185.081400px;}
.yd4{bottom:187.596300px;}
.y11f{bottom:187.861350px;}
.y40{bottom:188.474400px;}
.y66{bottom:190.827900px;}
.yfb{bottom:190.887000px;}
.y8a{bottom:192.546300px;}
.y146{bottom:193.883100px;}
.y181{bottom:199.579350px;}
.y1a1{bottom:200.555850px;}
.yb0{bottom:204.048750px;}
.y1c0{bottom:204.746400px;}
.yd3{bottom:207.968550px;}
.y11e{bottom:208.285350px;}
.y3f{bottom:209.053650px;}
.y1b{bottom:209.333850px;}
.y65{bottom:211.096650px;}
.yfa{bottom:211.224750px;}
.y89{bottom:212.794800px;}
.y145{bottom:214.134600px;}
.y1a0{bottom:222.023100px;}
.y1bf{bottom:224.411400px;}
.yd2{bottom:228.340800px;}
.y11d{bottom:228.709350px;}
.y180{bottom:229.252350px;}
.y3e{bottom:229.632900px;}
.y1a{bottom:231.008850px;}
.y64{bottom:231.365400px;}
.yf9{bottom:231.562500px;}
.y162{bottom:233.822400px;}
.y144{bottom:234.386100px;}
.y1be{bottom:244.076400px;}
.yaf{bottom:248.048100px;}
.yd1{bottom:248.713050px;}
.y11c{bottom:249.133350px;}
.y3d{bottom:250.212150px;}
.y63{bottom:251.634150px;}
.yf8{bottom:251.900250px;}
.y19f{bottom:251.995350px;}
.y19{bottom:252.659100px;}
.y143{bottom:254.637600px;}
.y161{bottom:255.936900px;}
.y88{bottom:256.726200px;}
.y17f{bottom:258.925350px;}
.y1bd{bottom:263.741400px;}
.yae{bottom:268.506600px;}
.yd0{bottom:269.085300px;}
.y11b{bottom:269.557350px;}
.y3c{bottom:270.791400px;}
.y62{bottom:271.902900px;}
.yf7{bottom:272.238000px;}
.y18{bottom:272.834100px;}
.y19e{bottom:273.462600px;}
.y142{bottom:274.889100px;}
.y87{bottom:277.564200px;}
.y160{bottom:278.051400px;}
.y17e{bottom:280.093350px;}
.y1bc{bottom:283.406400px;}
.yad{bottom:288.965100px;}
.ycf{bottom:289.457550px;}
.y11a{bottom:289.981350px;}
.y3b{bottom:291.370650px;}
.y61{bottom:292.171650px;}
.yf6{bottom:292.575750px;}
.y17{bottom:293.009100px;}
.y141{bottom:295.140600px;}
.y86{bottom:298.402200px;}
.y15f{bottom:300.165900px;}
.y1bb{bottom:303.071400px;}
.y19d{bottom:303.434850px;}
.yac{bottom:309.423600px;}
.y17d{bottom:309.766350px;}
.yce{bottom:309.829800px;}
.y119{bottom:310.405350px;}
.y3a{bottom:311.949900px;}
.y60{bottom:312.440400px;}
.yf5{bottom:312.913500px;}
.y16{bottom:313.184100px;}
.y140{bottom:315.392100px;}
.y85{bottom:319.240200px;}
.y15e{bottom:322.280400px;}
.y1ba{bottom:322.736400px;}
.y19c{bottom:324.902100px;}
.yab{bottom:329.882100px;}
.ycd{bottom:330.202050px;}
.y118{bottom:330.829350px;}
.y17c{bottom:330.934350px;}
.y39{bottom:332.529150px;}
.y5f{bottom:332.709150px;}
.yf4{bottom:333.251250px;}
.y15{bottom:333.359100px;}
.y13f{bottom:335.643600px;}
.y84{bottom:340.078200px;}
.y1b9{bottom:342.401400px;}
.y15d{bottom:344.394900px;}
.y19b{bottom:346.369350px;}
.yaa{bottom:350.340600px;}
.ycc{bottom:350.574300px;}
.y117{bottom:351.253350px;}
.y5e{bottom:352.977900px;}
.y38{bottom:353.108400px;}
.y14{bottom:353.534100px;}
.yf3{bottom:353.589000px;}
.y13e{bottom:355.895100px;}
.y17b{bottom:360.607350px;}
.y83{bottom:360.916200px;}
.y1b8{bottom:362.066400px;}
.y15c{bottom:366.514650px;}
.ya9{bottom:370.799100px;}
.ycb{bottom:370.946550px;}
.y116{bottom:371.677350px;}
.y5d{bottom:373.246650px;}
.y37{bottom:373.687650px;}
.y13{bottom:373.709100px;}
.yf2{bottom:373.926750px;}
.y13d{bottom:376.146600px;}
.y19a{bottom:376.341600px;}
.y1b7{bottom:381.731400px;}
.y82{bottom:381.754200px;}
.y17a{bottom:381.775350px;}
.ya8{bottom:391.257600px;}
.yca{bottom:391.318800px;}
.y115{bottom:392.101350px;}
.y5c{bottom:393.515400px;}
.y12{bottom:393.884100px;}
.yf1{bottom:394.264500px;}
.y36{bottom:394.266900px;}
.y13c{bottom:396.398100px;}
.y199{bottom:397.808850px;}
.y1b6{bottom:401.396400px;}
.y81{bottom:402.592200px;}
.y179{bottom:402.943350px;}
.yc9{bottom:411.691050px;}
.ya7{bottom:411.716100px;}
.y114{bottom:412.525350px;}
.y5b{bottom:413.784150px;}
.y11{bottom:414.059100px;}
.yf0{bottom:414.602250px;}
.y35{bottom:414.846150px;}
.y13b{bottom:416.649600px;}
.y1b5{bottom:421.061400px;}
.y80{bottom:423.430200px;}
.y198{bottom:427.781100px;}
.yc8{bottom:432.063300px;}
.ya6{bottom:432.174600px;}
.y178{bottom:432.616350px;}
.y113{bottom:432.949350px;}
.y5a{bottom:434.052900px;}
.y10{bottom:434.234100px;}
.yef{bottom:434.940000px;}
.y34{bottom:435.425400px;}
.y13a{bottom:436.901100px;}
.y1b4{bottom:440.731650px;}
.y15b{bottom:441.331200px;}
.y7f{bottom:444.268200px;}
.y197{bottom:449.248350px;}
.yc7{bottom:452.435550px;}
.ya5{bottom:452.633100px;}
.y112{bottom:453.373350px;}
.y177{bottom:453.784350px;}
.y59{bottom:454.321650px;}
.yf{bottom:454.409100px;}
.yee{bottom:455.277750px;}
.y33{bottom:456.004650px;}
.y139{bottom:457.152600px;}
.y1b3{bottom:460.396650px;}
.y15a{bottom:463.445700px;}
.y7e{bottom:465.106200px;}
.yc6{bottom:472.807800px;}
.ya4{bottom:473.091600px;}
.y111{bottom:473.797350px;}
.y58{bottom:474.590400px;}
.yed{bottom:475.615500px;}
.y32{bottom:476.583900px;}
.y138{bottom:477.404100px;}
.y196{bottom:479.220600px;}
.y176{bottom:483.457350px;}
.y159{bottom:485.560200px;}
.y7d{bottom:485.944200px;}
.ye{bottom:487.334100px;}
.y1b2{bottom:492.826650px;}
.yc5{bottom:493.180050px;}
.ya3{bottom:493.550100px;}
.y110{bottom:494.221350px;}
.y57{bottom:494.859150px;}
.yec{bottom:495.953250px;}
.y31{bottom:497.163150px;}
.y137{bottom:497.655600px;}
.y195{bottom:500.687850px;}
.y7c{bottom:506.782200px;}
.y158{bottom:507.674700px;}
.yc4{bottom:513.552300px;}
.ya2{bottom:514.008600px;}
.y10f{bottom:514.645350px;}
.yeb{bottom:516.291000px;}
.y30{bottom:517.742400px;}
.y136{bottom:517.907100px;}
.y7b{bottom:527.620200px;}
.y157{bottom:529.789200px;}
.y194{bottom:530.660100px;}
.y1d6{bottom:533.442750px;}
.yc3{bottom:533.924550px;}
.ya1{bottom:534.467100px;}
.y10e{bottom:535.069350px;}
.y175{bottom:535.148850px;}
.y56{bottom:536.387550px;}
.yea{bottom:536.628750px;}
.y135{bottom:538.158600px;}
.y2f{bottom:538.321650px;}
.yd{bottom:545.763300px;}
.y7a{bottom:548.458200px;}
.y1b1{bottom:550.762950px;}
.y156{bottom:551.903700px;}
.y193{bottom:552.127350px;}
.y1d5{bottom:553.692750px;}
.yc2{bottom:554.296800px;}
.ya0{bottom:554.925600px;}
.y10d{bottom:555.493350px;}
.y174{bottom:556.316850px;}
.ye9{bottom:556.966500px;}
.y134{bottom:558.410100px;}
.y2e{bottom:558.900900px;}
.y79{bottom:569.296200px;}
.yc{bottom:573.441300px;}
.y192{bottom:573.594600px;}
.y1d4{bottom:573.942750px;}
.y155{bottom:574.018200px;}
.yc1{bottom:574.669050px;}
.y9f{bottom:575.374800px;}
.y10c{bottom:575.917350px;}
.ye8{bottom:577.304250px;}
.y1b0{bottom:577.936950px;}
.y133{bottom:578.661600px;}
.y173{bottom:585.989850px;}
.y78{bottom:590.134200px;}
.y1d3{bottom:594.192750px;}
.yc0{bottom:595.041300px;}
.y9e{bottom:595.833300px;}
.y154{bottom:596.132700px;}
.y10b{bottom:596.341350px;}
.ye7{bottom:597.642000px;}
.y55{bottom:598.670850px;}
.y132{bottom:598.913100px;}
.y2d{bottom:600.733500px;}
.yb{bottom:601.119300px;}
.y191{bottom:603.566850px;}
.y1af{bottom:605.110950px;}
.y172{bottom:607.157850px;}
.y77{bottom:610.972200px;}
.y1d2{bottom:614.442750px;}
.ybf{bottom:615.413550px;}
.y9d{bottom:616.291800px;}
.y10a{bottom:616.765350px;}
.ye6{bottom:617.979750px;}
.y153{bottom:618.247200px;}
.y54{bottom:618.939600px;}
.y131{bottom:619.164600px;}
.y190{bottom:625.034100px;}
.y76{bottom:631.810200px;}
.y1d1{bottom:634.692750px;}
.y9c{bottom:636.750300px;}
.y171{bottom:636.830850px;}
.y109{bottom:637.189350px;}
.ye5{bottom:638.317500px;}
.y53{bottom:639.208350px;}
.y130{bottom:639.416100px;}
.y152{bottom:640.361700px;}
.y18f{bottom:646.501350px;}
.ya{bottom:650.016900px;}
.y75{bottom:652.648200px;}
.ybe{bottom:657.037950px;}
.y9b{bottom:657.208800px;}
.y108{bottom:657.613350px;}
.y170{bottom:657.998850px;}
.ye4{bottom:658.648350px;}
.y52{bottom:659.477100px;}
.y12f{bottom:659.667600px;}
.y151{bottom:662.476200px;}
.y2c{bottom:663.316800px;}
.y1d0{bottom:667.692750px;}
.y74{bottom:673.486200px;}
.y18e{bottom:676.473600px;}
.y9a{bottom:677.667300px;}
.y107{bottom:678.037350px;}
.ye3{bottom:678.986100px;}
.y51{bottom:679.745850px;}
.y12e{bottom:679.919100px;}
.y9{bottom:682.200900px;}
.y150{bottom:684.590700px;}
.y2b{bottom:684.646800px;}
.y16f{bottom:687.671850px;}
.y73{bottom:694.324200px;}
.y1ae{bottom:694.334100px;}
.y18d{bottom:697.940850px;}
.y99{bottom:698.125800px;}
.y106{bottom:698.461350px;}
.ye2{bottom:699.323850px;}
.y50{bottom:700.014600px;}
.y12d{bottom:700.170600px;}
.y2a{bottom:705.897750px;}
.y14f{bottom:706.705200px;}
.y16e{bottom:708.839850px;}
.y1cf{bottom:709.197750px;}
.y8{bottom:714.384900px;}
.y1ad{bottom:714.761850px;}
.y72{bottom:715.162200px;}
.y98{bottom:718.584300px;}
.y105{bottom:718.885350px;}
.ybd{bottom:719.351100px;}
.ye1{bottom:719.661600px;}
.y4f{bottom:720.283350px;}
.y12c{bottom:720.422100px;}
.y29{bottom:725.727750px;}
.y18c{bottom:727.913100px;}
.y1ce{bottom:728.697750px;}
.y16d{bottom:730.007850px;}
.y1ac{bottom:735.189600px;}
.y71{bottom:736.000200px;}
.y97{bottom:739.041600px;}
.y104{bottom:739.309350px;}
.ybc{bottom:739.723350px;}
.ye0{bottom:739.999350px;}
.y4e{bottom:740.552100px;}
.y12b{bottom:740.673600px;}
.y28{bottom:745.557750px;}
.y7{bottom:746.568900px;}
.y1cd{bottom:748.197750px;}
.y18b{bottom:749.380350px;}
.y14e{bottom:750.084750px;}
.y1ab{bottom:755.617350px;}
.y70{bottom:756.838200px;}
.y96{bottom:759.491850px;}
.y16c{bottom:759.680850px;}
.y103{bottom:759.733350px;}
.ybb{bottom:760.095600px;}
.ydf{bottom:760.337100px;}
.y4d{bottom:760.820850px;}
.y12a{bottom:760.940850px;}
.y27{bottom:765.387750px;}
.y1cc{bottom:767.697750px;}
.y6f{bottom:777.676200px;}
.y18a{bottom:779.352600px;}
.y95{bottom:779.950350px;}
.y102{bottom:780.157350px;}
.yba{bottom:780.467850px;}
.yde{bottom:780.674850px;}
.y16b{bottom:780.848850px;}
.y4c{bottom:781.089600px;}
.y129{bottom:781.192350px;}
.y1aa{bottom:784.550100px;}
.y26{bottom:785.217750px;}
.y1cb{bottom:787.197750px;}
.y6e{bottom:798.514200px;}
.y94{bottom:800.408850px;}
.y101{bottom:800.581350px;}
.y189{bottom:800.819850px;}
.yb9{bottom:800.840100px;}
.ydd{bottom:801.012600px;}
.y4b{bottom:801.358350px;}
.y128{bottom:801.443850px;}
.y1a9{bottom:804.977850px;}
.y25{bottom:805.047750px;}
.y1ca{bottom:806.697750px;}
.y6{bottom:808.496400px;}
.y16a{bottom:810.521850px;}
.y14d{bottom:814.243350px;}
.y6d{bottom:819.352200px;}
.y93{bottom:820.867350px;}
.y100{bottom:821.005350px;}
.yb8{bottom:821.212350px;}
.ydc{bottom:821.350350px;}
.y4a{bottom:821.627100px;}
.y127{bottom:821.695350px;}
.y24{bottom:824.877750px;}
.y1c9{bottom:826.197750px;}
.y5{bottom:830.171400px;}
.y188{bottom:830.792100px;}
.y169{bottom:831.689850px;}
.y1a8{bottom:833.910600px;}
.y14c{bottom:836.357850px;}
.y6c{bottom:840.190200px;}
.y92{bottom:841.325850px;}
.yff{bottom:841.429350px;}
.yb7{bottom:841.584600px;}
.ydb{bottom:841.688100px;}
.y49{bottom:841.895100px;}
.y126{bottom:841.946850px;}
.y23{bottom:844.707750px;}
.y1c8{bottom:845.697750px;}
.y4{bottom:851.846400px;}
.y187{bottom:852.259350px;}
.y1a7{bottom:854.338350px;}
.y14b{bottom:858.472350px;}
.y6b{bottom:861.028200px;}
.y168{bottom:861.362850px;}
.y91{bottom:861.784350px;}
.yfe{bottom:861.853350px;}
.yb6{bottom:861.956850px;}
.yda{bottom:862.025850px;}
.y48{bottom:862.163850px;}
.y125{bottom:862.198350px;}
.y22{bottom:864.537750px;}
.y1c7{bottom:865.197750px;}
.y14a{bottom:880.586850px;}
.y6a{bottom:881.863350px;}
.y3{bottom:882.026400px;}
.y186{bottom:882.231600px;}
.y90{bottom:882.242850px;}
.yfd{bottom:882.277350px;}
.yb5{bottom:882.329100px;}
.yd9{bottom:882.363600px;}
.y47{bottom:882.432600px;}
.y124{bottom:882.449850px;}
.y167{bottom:882.530850px;}
.y1a6{bottom:883.271100px;}
.y21{bottom:884.367750px;}
.y1c6{bottom:884.697750px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y45{bottom:966.189000px;}
.h12{height:24.964242px;}
.hc{height:33.870539px;}
.h7{height:40.757812px;}
.hf{height:43.942805px;}
.hd{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h10{height:55.924805px;}
.h9{height:58.589355px;}
.ha{height:58.592355px;}
.h11{height:58.594155px;}
.he{height:58.600755px;}
.h14{height:62.138672px;}
.h2{height:63.684082px;}
.h13{height:65.245605px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.hb{height:71.459473px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:81.431100px;}
.x6{left:83.339250px;}
.x1{left:85.039350px;}
.xc{left:96.251550px;}
.xa{left:102.169200px;}
.x8{left:103.736550px;}
.x5{left:105.165600px;}
.x9{left:106.623000px;}
.xd{left:114.950550px;}
.x7{left:212.319150px;}
.x4{left:230.597400px;}
.x3{left:232.218000px;}
.x2{left:233.345250px;}
@media print{
.v4{vertical-align:-12.426667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.408000pt;}
.v1{vertical-align:15.093333pt;}
.ls12{letter-spacing:-6.552000pt;}
.ls8a{letter-spacing:-6.048000pt;}
.ls6b{letter-spacing:-5.826667pt;}
.ls7f{letter-spacing:-5.824000pt;}
.ls89{letter-spacing:-5.264000pt;}
.ls61{letter-spacing:-5.152000pt;}
.ls62{letter-spacing:-4.906667pt;}
.ls55{letter-spacing:-4.845333pt;}
.ls87{letter-spacing:-4.536000pt;}
.ls6e{letter-spacing:-3.925333pt;}
.ls82{letter-spacing:-3.920000pt;}
.ls6a{letter-spacing:-3.802667pt;}
.ls91{letter-spacing:-3.752000pt;}
.lsa0{letter-spacing:-3.733333pt;}
.ls9e{letter-spacing:-3.413333pt;}
.ls53{letter-spacing:-3.250667pt;}
.ls34{letter-spacing:-3.005333pt;}
.ls4f{letter-spacing:-2.976000pt;}
.ls70{letter-spacing:-2.882667pt;}
.ls6f{letter-spacing:-2.760000pt;}
.lsb0{letter-spacing:-2.613333pt;}
.ls33{letter-spacing:-2.514667pt;}
.ls8e{letter-spacing:-2.464000pt;}
.ls38{letter-spacing:-2.453333pt;}
.ls54{letter-spacing:-2.392000pt;}
.ls5f{letter-spacing:-2.330667pt;}
.ls22{letter-spacing:-2.208000pt;}
.ls6c{letter-spacing:-2.146667pt;}
.ls1f{letter-spacing:-2.085333pt;}
.ls2a{letter-spacing:-2.024000pt;}
.ls56{letter-spacing:-1.962667pt;}
.ls99{letter-spacing:-1.960000pt;}
.lsc{letter-spacing:-1.933333pt;}
.ls4{letter-spacing:-1.920000pt;}
.ls57{letter-spacing:-1.840000pt;}
.ls39{letter-spacing:-1.778667pt;}
.ls23{letter-spacing:-1.717333pt;}
.ls32{letter-spacing:-1.656000pt;}
.lsa4{letter-spacing:-1.600000pt;}
.ls35{letter-spacing:-1.594667pt;}
.lsa8{letter-spacing:-1.546667pt;}
.ls4b{letter-spacing:-1.533333pt;}
.ls49{letter-spacing:-1.472000pt;}
.lsa1{letter-spacing:-1.440000pt;}
.ls14{letter-spacing:-1.410667pt;}
.ls8f{letter-spacing:-1.400000pt;}
.ls5e{letter-spacing:-1.349333pt;}
.lsad{letter-spacing:-1.333333pt;}
.ls3c{letter-spacing:-1.248000pt;}
.ls7c{letter-spacing:-1.232000pt;}
.ls25{letter-spacing:-1.226667pt;}
.ls21{letter-spacing:-1.165333pt;}
.lsac{letter-spacing:-1.120000pt;}
.ls1d{letter-spacing:-1.104000pt;}
.lsa7{letter-spacing:-1.066667pt;}
.ls92{letter-spacing:-1.064000pt;}
.ls1b{letter-spacing:-1.042667pt;}
.ls88{letter-spacing:-1.008000pt;}
.ls2e{letter-spacing:-1.000000pt;}
.ls24{letter-spacing:-0.981333pt;}
.ls26{letter-spacing:-0.920000pt;}
.ls83{letter-spacing:-0.896000pt;}
.ls4e{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.858667pt;}
.ls86{letter-spacing:-0.840000pt;}
.ls50{letter-spacing:-0.816000pt;}
.lsa9{letter-spacing:-0.800000pt;}
.ls19{letter-spacing:-0.797333pt;}
.ls96{letter-spacing:-0.784000pt;}
.ls1e{letter-spacing:-0.760000pt;}
.ls20{letter-spacing:-0.736000pt;}
.ls90{letter-spacing:-0.728000pt;}
.lsa3{letter-spacing:-0.693333pt;}
.ls27{letter-spacing:-0.674667pt;}
.ls4d{letter-spacing:-0.672000pt;}
.lsb2{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.613333pt;}
.ls64{letter-spacing:-0.600000pt;}
.lsa6{letter-spacing:-0.586667pt;}
.ls7e{letter-spacing:-0.560000pt;}
.ls75{letter-spacing:-0.557333pt;}
.ls28{letter-spacing:-0.552000pt;}
.ls9f{letter-spacing:-0.533333pt;}
.ls45{letter-spacing:-0.528000pt;}
.ls85{letter-spacing:-0.504000pt;}
.ls29{letter-spacing:-0.490667pt;}
.lsa2{letter-spacing:-0.480000pt;}
.ls79{letter-spacing:-0.448000pt;}
.ls42{letter-spacing:-0.432000pt;}
.ls60{letter-spacing:-0.429333pt;}
.lsb1{letter-spacing:-0.426667pt;}
.ls7d{letter-spacing:-0.392000pt;}
.ls3b{letter-spacing:-0.384000pt;}
.lsa5{letter-spacing:-0.373333pt;}
.ls66{letter-spacing:-0.368000pt;}
.ls40{letter-spacing:-0.336000pt;}
.lsab{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.306667pt;}
.ls3d{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls31{letter-spacing:-0.245333pt;}
.ls43{letter-spacing:-0.240000pt;}
.ls97{letter-spacing:-0.224000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.184000pt;}
.ls2{letter-spacing:-0.168000pt;}
.lsae{letter-spacing:-0.160000pt;}
.ls3f{letter-spacing:-0.144000pt;}
.ls59{letter-spacing:-0.122667pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls76{letter-spacing:-0.072000pt;}
.ls58{letter-spacing:-0.061333pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000267pt;}
.ls4a{letter-spacing:0.122667pt;}
.ls5b{letter-spacing:0.184000pt;}
.lsaf{letter-spacing:0.213333pt;}
.ls94{letter-spacing:0.280000pt;}
.ls69{letter-spacing:0.490667pt;}
.ls17{letter-spacing:0.521333pt;}
.ls8c{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.552000pt;}
.ls1c{letter-spacing:0.736000pt;}
.ls9c{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.797333pt;}
.ls74{letter-spacing:0.866667pt;}
.ls13{letter-spacing:0.981333pt;}
.ls5a{letter-spacing:1.042667pt;}
.ls95{letter-spacing:1.064000pt;}
.ls15{letter-spacing:1.104000pt;}
.ls9d{letter-spacing:1.119360pt;}
.ls6{letter-spacing:1.120000pt;}
.ls48{letter-spacing:1.122400pt;}
.lse{letter-spacing:1.194667pt;}
.ls3e{letter-spacing:1.200000pt;}
.ls52{letter-spacing:1.266667pt;}
.ls5d{letter-spacing:1.410667pt;}
.ls47{letter-spacing:1.453600pt;}
.ls68{letter-spacing:1.527200pt;}
.ls37{letter-spacing:1.594667pt;}
.lsb{letter-spacing:2.133333pt;}
.ls2d{letter-spacing:2.269333pt;}
.ls8d{letter-spacing:2.856000pt;}
.ls9a{letter-spacing:2.968000pt;}
.ls80{letter-spacing:3.024000pt;}
.ls10{letter-spacing:3.285333pt;}
.ls8{letter-spacing:3.733333pt;}
.ls72{letter-spacing:4.170667pt;}
.ls1a{letter-spacing:4.477333pt;}
.ls7b{letter-spacing:4.704000pt;}
.ls84{letter-spacing:5.040000pt;}
.ls5{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.226667pt;}
.lsd{letter-spacing:5.333333pt;}
.ls7a{letter-spacing:5.600000pt;}
.ls71{letter-spacing:5.642667pt;}
.ls77{letter-spacing:5.824000pt;}
.ls93{letter-spacing:6.328000pt;}
.ls4c{letter-spacing:6.440000pt;}
.ls3{letter-spacing:6.453333pt;}
.ls98{letter-spacing:6.664000pt;}
.ls78{letter-spacing:7.392000pt;}
.ls9b{letter-spacing:7.680000pt;}
.ls81{letter-spacing:7.840000pt;}
.ls2f{letter-spacing:8.402667pt;}
.ls51{letter-spacing:443.919467pt;}
.ls73{letter-spacing:444.279467pt;}
.lsaa{letter-spacing:444.286400pt;}
.ls8b{letter-spacing:444.626133pt;}
.ls63{letter-spacing:445.779733pt;}
.ls2b{letter-spacing:451.501333pt;}
.lsa{letter-spacing:452.494933pt;}
.ls46{letter-spacing:880.020267pt;}
.ls67{letter-spacing:880.460267pt;}
.ls0{letter-spacing:882.793600pt;}
.ls16{letter-spacing:886.393600pt;}
.ls5c{letter-spacing:888.153600pt;}
.ws86{word-spacing:-23.576000pt;}
.ws81{word-spacing:-23.128000pt;}
.wsab{word-spacing:-22.666667pt;}
.ws80{word-spacing:-21.560000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws7f{word-spacing:-20.160000pt;}
.ws0{word-spacing:-20.106667pt;}
.ws57{word-spacing:-20.000000pt;}
.ws7e{word-spacing:-19.600000pt;}
.ws98{word-spacing:-19.266667pt;}
.ws47{word-spacing:-18.216000pt;}
.ws6c{word-spacing:-18.133333pt;}
.ws2b{word-spacing:-17.733333pt;}
.ws1e{word-spacing:-17.234667pt;}
.ws9{word-spacing:-16.800000pt;}
.ws9d{word-spacing:-16.016000pt;}
.ws32{word-spacing:-15.149333pt;}
.ws5b{word-spacing:-15.026667pt;}
.ws89{word-spacing:-14.840000pt;}
.ws1f{word-spacing:-14.658667pt;}
.ws4b{word-spacing:-14.597333pt;}
.ws2e{word-spacing:-14.536000pt;}
.ws59{word-spacing:-14.474667pt;}
.ws16{word-spacing:-14.352000pt;}
.ws4a{word-spacing:-14.290667pt;}
.ws1c{word-spacing:-14.229333pt;}
.ws1b{word-spacing:-14.168000pt;}
.ws19{word-spacing:-14.106667pt;}
.ws14{word-spacing:-14.045333pt;}
.ws17{word-spacing:-13.984000pt;}
.ws1d{word-spacing:-13.922667pt;}
.wsaa{word-spacing:-13.832000pt;}
.ws64{word-spacing:-13.800000pt;}
.ws30{word-spacing:-13.738667pt;}
.wsb{word-spacing:-13.680000pt;}
.ws48{word-spacing:-13.677333pt;}
.ws71{word-spacing:-13.616000pt;}
.ws2d{word-spacing:-13.554667pt;}
.ws2c{word-spacing:-13.493333pt;}
.ws38{word-spacing:-13.488000pt;}
.wsa9{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.432000pt;}
.ws87{word-spacing:-13.384000pt;}
.ws31{word-spacing:-13.370667pt;}
.ws9c{word-spacing:-13.328000pt;}
.ws99{word-spacing:-13.272000pt;}
.ws5a{word-spacing:-13.186667pt;}
.ws15{word-spacing:-13.064000pt;}
.ws9e{word-spacing:-13.048000pt;}
.ws18{word-spacing:-12.941333pt;}
.wsb2{word-spacing:-12.800000pt;}
.ws58{word-spacing:-12.757333pt;}
.ws2f{word-spacing:-12.696000pt;}
.wsb0{word-spacing:-12.693333pt;}
.wsae{word-spacing:-12.640000pt;}
.ws72{word-spacing:-12.634667pt;}
.wsb3{word-spacing:-12.586667pt;}
.wsb1{word-spacing:-12.480000pt;}
.ws9a{word-spacing:-12.432000pt;}
.wsb4{word-spacing:-12.373333pt;}
.ws73{word-spacing:-12.266667pt;}
.wsba{word-spacing:-12.053333pt;}
.ws9b{word-spacing:-11.984000pt;}
.wsaf{word-spacing:-11.733333pt;}
.ws36{word-spacing:-11.712000pt;}
.wsa{word-spacing:-11.685333pt;}
.ws3b{word-spacing:-11.664000pt;}
.ws3a{word-spacing:-11.616000pt;}
.wsad{word-spacing:-11.573333pt;}
.ws35{word-spacing:-11.568000pt;}
.ws37{word-spacing:-11.520000pt;}
.ws33{word-spacing:-11.472000pt;}
.ws39{word-spacing:-11.424000pt;}
.ws3c{word-spacing:-11.328000pt;}
.ws4c{word-spacing:-11.184000pt;}
.ws4f{word-spacing:-11.040000pt;}
.ws4d{word-spacing:-10.992000pt;}
.ws34{word-spacing:-10.608000pt;}
.ws66{word-spacing:-10.242667pt;}
.ws49{word-spacing:-10.047811pt;}
.ws65{word-spacing:-9.997333pt;}
.ws88{word-spacing:-9.912000pt;}
.wsac{word-spacing:-9.856587pt;}
.ws70{word-spacing:-9.322667pt;}
.ws4e{word-spacing:-8.880000pt;}
.ws3d{word-spacing:-8.402667pt;}
.ws85{word-spacing:-8.008000pt;}
.wsa7{word-spacing:-6.664000pt;}
.ws4{word-spacing:-6.453333pt;}
.ws55{word-spacing:-6.440000pt;}
.wsa3{word-spacing:-6.328000pt;}
.ws7a{word-spacing:-5.642667pt;}
.ws8a{word-spacing:-5.600000pt;}
.wsd{word-spacing:-5.333333pt;}
.wsc2{word-spacing:-5.120000pt;}
.ws91{word-spacing:-5.040000pt;}
.ws8b{word-spacing:-4.704000pt;}
.ws22{word-spacing:-4.477333pt;}
.ws7b{word-spacing:-4.170667pt;}
.ws8{word-spacing:-3.733333pt;}
.wsf{word-spacing:-3.285333pt;}
.ws8f{word-spacing:-3.024000pt;}
.wsb5{word-spacing:-2.968000pt;}
.ws9f{word-spacing:-2.856000pt;}
.wsc{word-spacing:-2.133333pt;}
.ws42{word-spacing:-1.594667pt;}
.ws67{word-spacing:-1.410667pt;}
.ws44{word-spacing:-1.200000pt;}
.ws6{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.104000pt;}
.wsa4{word-spacing:-1.064000pt;}
.ws61{word-spacing:-1.042667pt;}
.ws11{word-spacing:-0.981333pt;}
.ws20{word-spacing:-0.797333pt;}
.wsb6{word-spacing:-0.746667pt;}
.ws24{word-spacing:-0.736000pt;}
.ws77{word-spacing:-0.552000pt;}
.ws74{word-spacing:-0.490667pt;}
.wsbe{word-spacing:-0.213333pt;}
.ws63{word-spacing:-0.184000pt;}
.ws52{word-spacing:-0.122667pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.053333pt;}
.ws60{word-spacing:0.061333pt;}
.ws45{word-spacing:0.096000pt;}
.ws46{word-spacing:0.144000pt;}
.wsbd{word-spacing:0.160000pt;}
.ws3{word-spacing:0.168000pt;}
.ws3e{word-spacing:0.184000pt;}
.ws7{word-spacing:0.213333pt;}
.wsa6{word-spacing:0.224000pt;}
.ws3f{word-spacing:0.245333pt;}
.ws10{word-spacing:0.266667pt;}
.ws6e{word-spacing:0.306667pt;}
.wsbb{word-spacing:0.320000pt;}
.wsa5{word-spacing:0.336000pt;}
.ws6f{word-spacing:0.368000pt;}
.ws8d{word-spacing:0.392000pt;}
.wsc0{word-spacing:0.426667pt;}
.ws69{word-spacing:0.429333pt;}
.ws84{word-spacing:0.448000pt;}
.ws92{word-spacing:0.504000pt;}
.ws29{word-spacing:0.552000pt;}
.ws83{word-spacing:0.557333pt;}
.ws8e{word-spacing:0.560000pt;}
.ws5c{word-spacing:0.613333pt;}
.wsc1{word-spacing:0.640000pt;}
.ws28{word-spacing:0.674667pt;}
.wsa1{word-spacing:0.728000pt;}
.ws26{word-spacing:0.736000pt;}
.ws25{word-spacing:0.760000pt;}
.ws21{word-spacing:0.797333pt;}
.ws93{word-spacing:0.840000pt;}
.ws43{word-spacing:0.858667pt;}
.ws62{word-spacing:0.920000pt;}
.ws6a{word-spacing:0.981333pt;}
.ws95{word-spacing:1.008000pt;}
.ws23{word-spacing:1.042667pt;}
.wsa2{word-spacing:1.064000pt;}
.wsb8{word-spacing:1.066667pt;}
.ws7c{word-spacing:1.104000pt;}
.ws50{word-spacing:1.165333pt;}
.ws27{word-spacing:1.226667pt;}
.ws8c{word-spacing:1.232000pt;}
.wsbc{word-spacing:1.333333pt;}
.ws6d{word-spacing:1.349333pt;}
.ws12{word-spacing:1.410667pt;}
.ws54{word-spacing:1.533333pt;}
.wsb9{word-spacing:1.546667pt;}
.ws82{word-spacing:1.656000pt;}
.ws53{word-spacing:1.717333pt;}
.ws51{word-spacing:1.778667pt;}
.ws5f{word-spacing:1.840000pt;}
.ws5{word-spacing:1.920000pt;}
.wsa8{word-spacing:1.960000pt;}
.ws6b{word-spacing:1.962667pt;}
.ws2a{word-spacing:2.024000pt;}
.ws7d{word-spacing:2.085333pt;}
.ws76{word-spacing:2.146667pt;}
.wsa0{word-spacing:2.464000pt;}
.ws40{word-spacing:2.514667pt;}
.wsbf{word-spacing:2.613333pt;}
.ws90{word-spacing:2.744000pt;}
.ws79{word-spacing:2.760000pt;}
.ws41{word-spacing:3.005333pt;}
.ws5d{word-spacing:3.250667pt;}
.wsb7{word-spacing:3.733333pt;}
.ws75{word-spacing:3.802667pt;}
.ws78{word-spacing:3.925333pt;}
.ws94{word-spacing:4.536000pt;}
.ws5e{word-spacing:4.845333pt;}
.ws96{word-spacing:5.264000pt;}
.ws68{word-spacing:5.949333pt;}
.ws97{word-spacing:6.048000pt;}
.ws56{word-spacing:38.617920pt;}
._1b{margin-left:-12.794133pt;}
._1a{margin-left:-11.730133pt;}
._19{margin-left:-9.503733pt;}
._18{margin-left:-7.951733pt;}
._c{margin-left:-6.749600pt;}
._b{margin-left:-5.859733pt;}
._4{margin-left:-4.613867pt;}
._d{margin-left:-3.447200pt;}
._2{margin-left:-2.290400pt;}
._6{margin-left:-1.114667pt;}
._5{width:1.053067pt;}
._1{width:2.133333pt;}
._3{width:3.310667pt;}
._7{width:4.722400pt;}
._8{width:5.709600pt;}
._9{width:6.672000pt;}
._a{width:7.724533pt;}
._12{width:9.353867pt;}
._16{width:10.282133pt;}
._14{width:11.993067pt;}
._15{width:13.068533pt;}
._13{width:14.166133pt;}
._24{width:15.807733pt;}
._21{width:16.787200pt;}
._25{width:17.918667pt;}
._1c{width:20.432800pt;}
._11{width:21.682133pt;}
._1d{width:22.691467pt;}
._23{width:24.784800pt;}
._22{width:30.139467pt;}
._17{width:38.617920pt;}
._1e{width:44.016533pt;}
._20{width:49.496000pt;}
._10{width:52.688000pt;}
._1f{width:57.837333pt;}
._e{width:63.466667pt;}
._f{width:224.896000pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yd8{bottom:94.317600pt;}
.y44{bottom:94.362133pt;}
.y123{bottom:94.369200pt;}
.y1a5{bottom:94.383867pt;}
.y8f{bottom:94.472267pt;}
.y69{bottom:94.485600pt;}
.y1e{bottom:94.487867pt;}
.y166{bottom:94.505333pt;}
.y185{bottom:94.579867pt;}
.y1c5{bottom:94.596800pt;}
.y149{bottom:97.150933pt;}
.y8e{bottom:109.808267pt;}
.yb4{bottom:109.821600pt;}
.y1c4{bottom:112.076800pt;}
.y1d{bottom:112.421200pt;}
.yd7{bottom:112.426267pt;}
.y68{bottom:112.484267pt;}
.y122{bottom:112.523867pt;}
.y43{bottom:112.654800pt;}
.y1a4{bottom:113.465867pt;}
.y165{bottom:114.161333pt;}
.y184{bottom:120.955867pt;}
.y8d{bottom:125.144267pt;}
.y1c3{bottom:129.556800pt;}
.yd6{bottom:130.534933pt;}
.y121{bottom:130.678533pt;}
.y42{bottom:130.947467pt;}
.yb3{bottom:131.597067pt;}
.y1a3{bottom:132.547867pt;}
.y164{bottom:133.817333pt;}
.y148{bottom:136.337867pt;}
.y183{bottom:139.771867pt;}
.y8c{bottom:140.480267pt;}
.y1c{bottom:141.687867pt;}
.y1c2{bottom:147.036800pt;}
.yb2{bottom:148.042000pt;}
.yd5{bottom:148.643600pt;}
.y120{bottom:148.833200pt;}
.y41{bottom:149.240133pt;}
.yfc{bottom:151.599333pt;}
.y67{bottom:151.608133pt;}
.y147{bottom:154.339200pt;}
.y8b{bottom:155.816267pt;}
.y182{bottom:158.587867pt;}
.y1a2{bottom:159.189867pt;}
.y163{bottom:161.033333pt;}
.yb1{bottom:163.378000pt;}
.y1c1{bottom:164.516800pt;}
.yd4{bottom:166.752267pt;}
.y11f{bottom:166.987867pt;}
.y40{bottom:167.532800pt;}
.y66{bottom:169.624800pt;}
.yfb{bottom:169.677333pt;}
.y8a{bottom:171.152267pt;}
.y146{bottom:172.340533pt;}
.y181{bottom:177.403867pt;}
.y1a1{bottom:178.271867pt;}
.yb0{bottom:181.376667pt;}
.y1c0{bottom:181.996800pt;}
.yd3{bottom:184.860933pt;}
.y11e{bottom:185.142533pt;}
.y3f{bottom:185.825467pt;}
.y1b{bottom:186.074533pt;}
.y65{bottom:187.641467pt;}
.yfa{bottom:187.755333pt;}
.y89{bottom:189.150933pt;}
.y145{bottom:190.341867pt;}
.y1a0{bottom:197.353867pt;}
.y1bf{bottom:199.476800pt;}
.yd2{bottom:202.969600pt;}
.y11d{bottom:203.297200pt;}
.y180{bottom:203.779867pt;}
.y3e{bottom:204.118133pt;}
.y1a{bottom:205.341200pt;}
.y64{bottom:205.658133pt;}
.yf9{bottom:205.833333pt;}
.y162{bottom:207.842133pt;}
.y144{bottom:208.343200pt;}
.y1be{bottom:216.956800pt;}
.yaf{bottom:220.487200pt;}
.yd1{bottom:221.078267pt;}
.y11c{bottom:221.451867pt;}
.y3d{bottom:222.410800pt;}
.y63{bottom:223.674800pt;}
.yf8{bottom:223.911333pt;}
.y19f{bottom:223.995867pt;}
.y19{bottom:224.585867pt;}
.y143{bottom:226.344533pt;}
.y161{bottom:227.499467pt;}
.y88{bottom:228.201067pt;}
.y17f{bottom:230.155867pt;}
.y1bd{bottom:234.436800pt;}
.yae{bottom:238.672533pt;}
.yd0{bottom:239.186933pt;}
.y11b{bottom:239.606533pt;}
.y3c{bottom:240.703467pt;}
.y62{bottom:241.691467pt;}
.yf7{bottom:241.989333pt;}
.y18{bottom:242.519200pt;}
.y19e{bottom:243.077867pt;}
.y142{bottom:244.345867pt;}
.y87{bottom:246.723733pt;}
.y160{bottom:247.156800pt;}
.y17e{bottom:248.971867pt;}
.y1bc{bottom:251.916800pt;}
.yad{bottom:256.857867pt;}
.ycf{bottom:257.295600pt;}
.y11a{bottom:257.761200pt;}
.y3b{bottom:258.996133pt;}
.y61{bottom:259.708133pt;}
.yf6{bottom:260.067333pt;}
.y17{bottom:260.452533pt;}
.y141{bottom:262.347200pt;}
.y86{bottom:265.246400pt;}
.y15f{bottom:266.814133pt;}
.y1bb{bottom:269.396800pt;}
.y19d{bottom:269.719867pt;}
.yac{bottom:275.043200pt;}
.y17d{bottom:275.347867pt;}
.yce{bottom:275.404267pt;}
.y119{bottom:275.915867pt;}
.y3a{bottom:277.288800pt;}
.y60{bottom:277.724800pt;}
.yf5{bottom:278.145333pt;}
.y16{bottom:278.385867pt;}
.y140{bottom:280.348533pt;}
.y85{bottom:283.769067pt;}
.y15e{bottom:286.471467pt;}
.y1ba{bottom:286.876800pt;}
.y19c{bottom:288.801867pt;}
.yab{bottom:293.228533pt;}
.ycd{bottom:293.512933pt;}
.y118{bottom:294.070533pt;}
.y17c{bottom:294.163867pt;}
.y39{bottom:295.581467pt;}
.y5f{bottom:295.741467pt;}
.yf4{bottom:296.223333pt;}
.y15{bottom:296.319200pt;}
.y13f{bottom:298.349867pt;}
.y84{bottom:302.291733pt;}
.y1b9{bottom:304.356800pt;}
.y15d{bottom:306.128800pt;}
.y19b{bottom:307.883867pt;}
.yaa{bottom:311.413867pt;}
.ycc{bottom:311.621600pt;}
.y117{bottom:312.225200pt;}
.y5e{bottom:313.758133pt;}
.y38{bottom:313.874133pt;}
.y14{bottom:314.252533pt;}
.yf3{bottom:314.301333pt;}
.y13e{bottom:316.351200pt;}
.y17b{bottom:320.539867pt;}
.y83{bottom:320.814400pt;}
.y1b8{bottom:321.836800pt;}
.y15c{bottom:325.790800pt;}
.ya9{bottom:329.599200pt;}
.ycb{bottom:329.730267pt;}
.y116{bottom:330.379867pt;}
.y5d{bottom:331.774800pt;}
.y37{bottom:332.166800pt;}
.y13{bottom:332.185867pt;}
.yf2{bottom:332.379333pt;}
.y13d{bottom:334.352533pt;}
.y19a{bottom:334.525867pt;}
.y1b7{bottom:339.316800pt;}
.y82{bottom:339.337067pt;}
.y17a{bottom:339.355867pt;}
.ya8{bottom:347.784533pt;}
.yca{bottom:347.838933pt;}
.y115{bottom:348.534533pt;}
.y5c{bottom:349.791467pt;}
.y12{bottom:350.119200pt;}
.yf1{bottom:350.457333pt;}
.y36{bottom:350.459467pt;}
.y13c{bottom:352.353867pt;}
.y199{bottom:353.607867pt;}
.y1b6{bottom:356.796800pt;}
.y81{bottom:357.859733pt;}
.y179{bottom:358.171867pt;}
.yc9{bottom:365.947600pt;}
.ya7{bottom:365.969867pt;}
.y114{bottom:366.689200pt;}
.y5b{bottom:367.808133pt;}
.y11{bottom:368.052533pt;}
.yf0{bottom:368.535333pt;}
.y35{bottom:368.752133pt;}
.y13b{bottom:370.355200pt;}
.y1b5{bottom:374.276800pt;}
.y80{bottom:376.382400pt;}
.y198{bottom:380.249867pt;}
.yc8{bottom:384.056267pt;}
.ya6{bottom:384.155200pt;}
.y178{bottom:384.547867pt;}
.y113{bottom:384.843867pt;}
.y5a{bottom:385.824800pt;}
.y10{bottom:385.985867pt;}
.yef{bottom:386.613333pt;}
.y34{bottom:387.044800pt;}
.y13a{bottom:388.356533pt;}
.y1b4{bottom:391.761467pt;}
.y15b{bottom:392.294400pt;}
.y7f{bottom:394.905067pt;}
.y197{bottom:399.331867pt;}
.yc7{bottom:402.164933pt;}
.ya5{bottom:402.340533pt;}
.y112{bottom:402.998533pt;}
.y177{bottom:403.363867pt;}
.y59{bottom:403.841467pt;}
.yf{bottom:403.919200pt;}
.yee{bottom:404.691333pt;}
.y33{bottom:405.337467pt;}
.y139{bottom:406.357867pt;}
.y1b3{bottom:409.241467pt;}
.y15a{bottom:411.951733pt;}
.y7e{bottom:413.427733pt;}
.yc6{bottom:420.273600pt;}
.ya4{bottom:420.525867pt;}
.y111{bottom:421.153200pt;}
.y58{bottom:421.858133pt;}
.yed{bottom:422.769333pt;}
.y32{bottom:423.630133pt;}
.y138{bottom:424.359200pt;}
.y196{bottom:425.973867pt;}
.y176{bottom:429.739867pt;}
.y159{bottom:431.609067pt;}
.y7d{bottom:431.950400pt;}
.ye{bottom:433.185867pt;}
.y1b2{bottom:438.068133pt;}
.yc5{bottom:438.382267pt;}
.ya3{bottom:438.711200pt;}
.y110{bottom:439.307867pt;}
.y57{bottom:439.874800pt;}
.yec{bottom:440.847333pt;}
.y31{bottom:441.922800pt;}
.y137{bottom:442.360533pt;}
.y195{bottom:445.055867pt;}
.y7c{bottom:450.473067pt;}
.y158{bottom:451.266400pt;}
.yc4{bottom:456.490933pt;}
.ya2{bottom:456.896533pt;}
.y10f{bottom:457.462533pt;}
.yeb{bottom:458.925333pt;}
.y30{bottom:460.215467pt;}
.y136{bottom:460.361867pt;}
.y7b{bottom:468.995733pt;}
.y157{bottom:470.923733pt;}
.y194{bottom:471.697867pt;}
.y1d6{bottom:474.171333pt;}
.yc3{bottom:474.599600pt;}
.ya1{bottom:475.081867pt;}
.y10e{bottom:475.617200pt;}
.y175{bottom:475.687867pt;}
.y56{bottom:476.788933pt;}
.yea{bottom:477.003333pt;}
.y135{bottom:478.363200pt;}
.y2f{bottom:478.508133pt;}
.yd{bottom:485.122933pt;}
.y7a{bottom:487.518400pt;}
.y1b1{bottom:489.567067pt;}
.y156{bottom:490.581067pt;}
.y193{bottom:490.779867pt;}
.y1d5{bottom:492.171333pt;}
.yc2{bottom:492.708267pt;}
.ya0{bottom:493.267200pt;}
.y10d{bottom:493.771867pt;}
.y174{bottom:494.503867pt;}
.ye9{bottom:495.081333pt;}
.y134{bottom:496.364533pt;}
.y2e{bottom:496.800800pt;}
.y79{bottom:506.041067pt;}
.yc{bottom:509.725600pt;}
.y192{bottom:509.861867pt;}
.y1d4{bottom:510.171333pt;}
.y155{bottom:510.238400pt;}
.yc1{bottom:510.816933pt;}
.y9f{bottom:511.444267pt;}
.y10c{bottom:511.926533pt;}
.ye8{bottom:513.159333pt;}
.y1b0{bottom:513.721733pt;}
.y133{bottom:514.365867pt;}
.y173{bottom:520.879867pt;}
.y78{bottom:524.563733pt;}
.y1d3{bottom:528.171333pt;}
.yc0{bottom:528.925600pt;}
.y9e{bottom:529.629600pt;}
.y154{bottom:529.895733pt;}
.y10b{bottom:530.081200pt;}
.ye7{bottom:531.237333pt;}
.y55{bottom:532.151867pt;}
.y132{bottom:532.367200pt;}
.y2d{bottom:533.985333pt;}
.yb{bottom:534.328267pt;}
.y191{bottom:536.503867pt;}
.y1af{bottom:537.876400pt;}
.y172{bottom:539.695867pt;}
.y77{bottom:543.086400pt;}
.y1d2{bottom:546.171333pt;}
.ybf{bottom:547.034267pt;}
.y9d{bottom:547.814933pt;}
.y10a{bottom:548.235867pt;}
.ye6{bottom:549.315333pt;}
.y153{bottom:549.553067pt;}
.y54{bottom:550.168533pt;}
.y131{bottom:550.368533pt;}
.y190{bottom:555.585867pt;}
.y76{bottom:561.609067pt;}
.y1d1{bottom:564.171333pt;}
.y9c{bottom:566.000267pt;}
.y171{bottom:566.071867pt;}
.y109{bottom:566.390533pt;}
.ye5{bottom:567.393333pt;}
.y53{bottom:568.185200pt;}
.y130{bottom:568.369867pt;}
.y152{bottom:569.210400pt;}
.y18f{bottom:574.667867pt;}
.ya{bottom:577.792800pt;}
.y75{bottom:580.131733pt;}
.ybe{bottom:584.033733pt;}
.y9b{bottom:584.185600pt;}
.y108{bottom:584.545200pt;}
.y170{bottom:584.887867pt;}
.ye4{bottom:585.465200pt;}
.y52{bottom:586.201867pt;}
.y12f{bottom:586.371200pt;}
.y151{bottom:588.867733pt;}
.y2c{bottom:589.614933pt;}
.y1d0{bottom:593.504667pt;}
.y74{bottom:598.654400pt;}
.y18e{bottom:601.309867pt;}
.y9a{bottom:602.370933pt;}
.y107{bottom:602.699867pt;}
.ye3{bottom:603.543200pt;}
.y51{bottom:604.218533pt;}
.y12e{bottom:604.372533pt;}
.y9{bottom:606.400800pt;}
.y150{bottom:608.525067pt;}
.y2b{bottom:608.574933pt;}
.y16f{bottom:611.263867pt;}
.y73{bottom:617.177067pt;}
.y1ae{bottom:617.185867pt;}
.y18d{bottom:620.391867pt;}
.y99{bottom:620.556267pt;}
.y106{bottom:620.854533pt;}
.ye2{bottom:621.621200pt;}
.y50{bottom:622.235200pt;}
.y12d{bottom:622.373867pt;}
.y2a{bottom:627.464667pt;}
.y14f{bottom:628.182400pt;}
.y16e{bottom:630.079867pt;}
.y1cf{bottom:630.398000pt;}
.y8{bottom:635.008800pt;}
.y1ad{bottom:635.343867pt;}
.y72{bottom:635.699733pt;}
.y98{bottom:638.741600pt;}
.y105{bottom:639.009200pt;}
.ybd{bottom:639.423200pt;}
.ye1{bottom:639.699200pt;}
.y4f{bottom:640.251867pt;}
.y12c{bottom:640.375200pt;}
.y29{bottom:645.091333pt;}
.y18c{bottom:647.033867pt;}
.y1ce{bottom:647.731333pt;}
.y16d{bottom:648.895867pt;}
.y1ac{bottom:653.501867pt;}
.y71{bottom:654.222400pt;}
.y97{bottom:656.925867pt;}
.y104{bottom:657.163867pt;}
.ybc{bottom:657.531867pt;}
.ye0{bottom:657.777200pt;}
.y4e{bottom:658.268533pt;}
.y12b{bottom:658.376533pt;}
.y28{bottom:662.718000pt;}
.y7{bottom:663.616800pt;}
.y1cd{bottom:665.064667pt;}
.y18b{bottom:666.115867pt;}
.y14e{bottom:666.742000pt;}
.y1ab{bottom:671.659867pt;}
.y70{bottom:672.745067pt;}
.y96{bottom:675.103867pt;}
.y16c{bottom:675.271867pt;}
.y103{bottom:675.318533pt;}
.ybb{bottom:675.640533pt;}
.ydf{bottom:675.855200pt;}
.y4d{bottom:676.285200pt;}
.y12a{bottom:676.391867pt;}
.y27{bottom:680.344667pt;}
.y1cc{bottom:682.398000pt;}
.y6f{bottom:691.267733pt;}
.y18a{bottom:692.757867pt;}
.y95{bottom:693.289200pt;}
.y102{bottom:693.473200pt;}
.yba{bottom:693.749200pt;}
.yde{bottom:693.933200pt;}
.y16b{bottom:694.087867pt;}
.y4c{bottom:694.301867pt;}
.y129{bottom:694.393200pt;}
.y1aa{bottom:697.377867pt;}
.y26{bottom:697.971333pt;}
.y1cb{bottom:699.731333pt;}
.y6e{bottom:709.790400pt;}
.y94{bottom:711.474533pt;}
.y101{bottom:711.627867pt;}
.y189{bottom:711.839867pt;}
.yb9{bottom:711.857867pt;}
.ydd{bottom:712.011200pt;}
.y4b{bottom:712.318533pt;}
.y128{bottom:712.394533pt;}
.y1a9{bottom:715.535867pt;}
.y25{bottom:715.598000pt;}
.y1ca{bottom:717.064667pt;}
.y6{bottom:718.663467pt;}
.y16a{bottom:720.463867pt;}
.y14d{bottom:723.771867pt;}
.y6d{bottom:728.313067pt;}
.y93{bottom:729.659867pt;}
.y100{bottom:729.782533pt;}
.yb8{bottom:729.966533pt;}
.ydc{bottom:730.089200pt;}
.y4a{bottom:730.335200pt;}
.y127{bottom:730.395867pt;}
.y24{bottom:733.224667pt;}
.y1c9{bottom:734.398000pt;}
.y5{bottom:737.930133pt;}
.y188{bottom:738.481867pt;}
.y169{bottom:739.279867pt;}
.y1a8{bottom:741.253867pt;}
.y14c{bottom:743.429200pt;}
.y6c{bottom:746.835733pt;}
.y92{bottom:747.845200pt;}
.yff{bottom:747.937200pt;}
.yb7{bottom:748.075200pt;}
.ydb{bottom:748.167200pt;}
.y49{bottom:748.351200pt;}
.y126{bottom:748.397200pt;}
.y23{bottom:750.851333pt;}
.y1c8{bottom:751.731333pt;}
.y4{bottom:757.196800pt;}
.y187{bottom:757.563867pt;}
.y1a7{bottom:759.411867pt;}
.y14b{bottom:763.086533pt;}
.y6b{bottom:765.358400pt;}
.y168{bottom:765.655867pt;}
.y91{bottom:766.030533pt;}
.yfe{bottom:766.091867pt;}
.yb6{bottom:766.183867pt;}
.yda{bottom:766.245200pt;}
.y48{bottom:766.367867pt;}
.y125{bottom:766.398533pt;}
.y22{bottom:768.478000pt;}
.y1c7{bottom:769.064667pt;}
.y14a{bottom:782.743867pt;}
.y6a{bottom:783.878533pt;}
.y3{bottom:784.023467pt;}
.y186{bottom:784.205867pt;}
.y90{bottom:784.215867pt;}
.yfd{bottom:784.246533pt;}
.yb5{bottom:784.292533pt;}
.yd9{bottom:784.323200pt;}
.y47{bottom:784.384533pt;}
.y124{bottom:784.399867pt;}
.y167{bottom:784.471867pt;}
.y1a6{bottom:785.129867pt;}
.y21{bottom:786.104667pt;}
.y1c6{bottom:786.398000pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y45{bottom:858.834667pt;}
.h12{height:22.190437pt;}
.hc{height:30.107146pt;}
.h7{height:36.229167pt;}
.hf{height:39.060271pt;}
.hd{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h10{height:49.710938pt;}
.h9{height:52.079427pt;}
.ha{height:52.082094pt;}
.h11{height:52.083694pt;}
.he{height:52.089560pt;}
.h14{height:55.234375pt;}
.h2{height:56.608073pt;}
.h13{height:57.996094pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.hb{height:63.519531pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:72.383200pt;}
.x6{left:74.079333pt;}
.x1{left:75.590533pt;}
.xc{left:85.556933pt;}
.xa{left:90.817067pt;}
.x8{left:92.210267pt;}
.x5{left:93.480533pt;}
.x9{left:94.776000pt;}
.xd{left:102.178267pt;}
.x7{left:188.728133pt;}
.x4{left:204.975467pt;}
.x3{left:206.416000pt;}
.x2{left:207.418000pt;}
}




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