
    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_f1139aeaa28bce9ab441935b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184570;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_9fe98593f9cdc626dfef5a36.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_29bf9e7cba556a1ad77cfaa4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_204cb434edbf63835c7c00c8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.913086;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_443edc4603ff597f8e155a26.woff')format("woff");}.ff5{font-family:ff5;line-height:1.050781;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_c4830e80d6e660d973f6901f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_2853698504a76e47a0d5275c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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);}
.v3{vertical-align:-16.974000px;}
.v6{vertical-align:-13.980000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.980000px;}
.v2{vertical-align:16.170000px;}
.v1{vertical-align:81.000000px;}
.ls37{letter-spacing:-6.762000px;}
.ls85{letter-spacing:-5.229000px;}
.ls18{letter-spacing:-4.968000px;}
.ls8b{letter-spacing:-4.725000px;}
.ls61{letter-spacing:-4.554000px;}
.ls27{letter-spacing:-4.200000px;}
.ls25{letter-spacing:-4.140000px;}
.ls11{letter-spacing:-3.900000px;}
.ls7f{letter-spacing:-3.465000px;}
.ls56{letter-spacing:-3.450000px;}
.ls67{letter-spacing:-3.243000px;}
.ls6f{letter-spacing:-3.213000px;}
.ls48{letter-spacing:-3.105000px;}
.ls53{letter-spacing:-2.967000px;}
.ls5f{letter-spacing:-2.898000px;}
.ls39{letter-spacing:-2.691000px;}
.ls38{letter-spacing:-2.622000px;}
.ls74{letter-spacing:-2.457000px;}
.ls34{letter-spacing:-2.208000px;}
.ls32{letter-spacing:-2.139000px;}
.ls3b{letter-spacing:-2.001000px;}
.ls93{letter-spacing:-1.953000px;}
.ls8e{letter-spacing:-1.890000px;}
.ls31{letter-spacing:-1.794000px;}
.ls90{letter-spacing:-1.701000px;}
.ls66{letter-spacing:-1.656000px;}
.ls7c{letter-spacing:-1.575000px;}
.ls40{letter-spacing:-1.566000px;}
.ls19{letter-spacing:-1.518000px;}
.ls29{letter-spacing:-1.449000px;}
.ls6b{letter-spacing:-1.386000px;}
.ls1a{letter-spacing:-1.380000px;}
.lsa{letter-spacing:-1.320000px;}
.ls55{letter-spacing:-1.311000px;}
.ls7{letter-spacing:-1.260000px;}
.ls36{letter-spacing:-1.242000px;}
.ls98{letter-spacing:-1.200000px;}
.ls72{letter-spacing:-1.197000px;}
.ls1b{letter-spacing:-1.173000px;}
.ls7e{letter-spacing:-1.134000px;}
.ls24{letter-spacing:-1.104000px;}
.ls59{letter-spacing:-1.080000px;}
.ls6c{letter-spacing:-1.071000px;}
.ls3a{letter-spacing:-1.035000px;}
.ls78{letter-spacing:-1.008000px;}
.ls46{letter-spacing:-0.966000px;}
.ls87{letter-spacing:-0.945000px;}
.ls17{letter-spacing:-0.897000px;}
.ls83{letter-spacing:-0.882000px;}
.ls30{letter-spacing:-0.828000px;}
.ls65{letter-spacing:-0.825000px;}
.ls52{letter-spacing:-0.804540px;}
.ls16{letter-spacing:-0.759000px;}
.ls70{letter-spacing:-0.756000px;}
.ls5b{letter-spacing:-0.724086px;}
.ls47{letter-spacing:-0.690000px;}
.ls45{letter-spacing:-0.664620px;}
.ls2{letter-spacing:-0.630000px;}
.ls3e{letter-spacing:-0.621000px;}
.ls4b{letter-spacing:-0.598158px;}
.ls6e{letter-spacing:-0.567000px;}
.ls2a{letter-spacing:-0.552000px;}
.ls77{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.483000px;}
.ls9{letter-spacing:-0.480000px;}
.ls81{letter-spacing:-0.441000px;}
.ls86{letter-spacing:-0.378000px;}
.ls62{letter-spacing:-0.349800px;}
.ls3d{letter-spacing:-0.345000px;}
.ls7d{letter-spacing:-0.315000px;}
.ls63{letter-spacing:-0.314820px;}
.ls2c{letter-spacing:-0.276000px;}
.ls6d{letter-spacing:-0.252000px;}
.ls21{letter-spacing:-0.207000px;}
.ls80{letter-spacing:-0.189000px;}
.ls4a{letter-spacing:-0.108000px;}
.ls33{letter-spacing:-0.069000px;}
.lsb{letter-spacing:-0.060000px;}
.ls44{letter-spacing:-0.034980px;}
.ls49{letter-spacing:-0.031482px;}
.ls1{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.062964px;}
.ls94{letter-spacing:0.063000px;}
.ls1c{letter-spacing:0.069000px;}
.ls50{letter-spacing:0.069960px;}
.ls95{letter-spacing:0.126000px;}
.ls2e{letter-spacing:0.138000px;}
.ls51{letter-spacing:0.207000px;}
.ls20{letter-spacing:0.276000px;}
.ls5c{letter-spacing:0.283338px;}
.ls57{letter-spacing:0.314820px;}
.ls6{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.345000px;}
.ls3c{letter-spacing:0.414000px;}
.ls89{letter-spacing:0.441000px;}
.ls60{letter-spacing:0.483000px;}
.ls58{letter-spacing:0.566676px;}
.ls2d{letter-spacing:0.621000px;}
.ls4e{letter-spacing:0.629640px;}
.ls3f{letter-spacing:0.690000px;}
.ls54{letter-spacing:1.104000px;}
.ls8a{letter-spacing:1.197000px;}
.ls15{letter-spacing:1.242000px;}
.ls13{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.320000px;}
.ls7a{letter-spacing:1.323000px;}
.ls7b{letter-spacing:1.512000px;}
.ls71{letter-spacing:1.638000px;}
.ls4f{letter-spacing:1.725000px;}
.ls28{letter-spacing:1.794000px;}
.ls8d{letter-spacing:2.016000px;}
.ls23{letter-spacing:2.070000px;}
.ls92{letter-spacing:2.079000px;}
.ls10{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.415000px;}
.ls8f{letter-spacing:2.457000px;}
.ls4d{letter-spacing:3.726000px;}
.lsd{letter-spacing:3.738000px;}
.ls8{letter-spacing:4.260000px;}
.ls69{letter-spacing:4.284000px;}
.ls68{letter-spacing:4.662000px;}
.ls1f{letter-spacing:4.830000px;}
.lsc{letter-spacing:4.956000px;}
.ls97{letter-spacing:5.520000px;}
.ls4{letter-spacing:5.700000px;}
.ls79{letter-spacing:5.733000px;}
.ls8c{letter-spacing:5.796000px;}
.ls91{letter-spacing:5.859000px;}
.ls12{letter-spacing:6.000000px;}
.ls84{letter-spacing:6.111000px;}
.ls3{letter-spacing:6.120000px;}
.ls2b{letter-spacing:6.279000px;}
.ls73{letter-spacing:6.300000px;}
.ls96{letter-spacing:7.200000px;}
.ls6a{letter-spacing:7.245000px;}
.ls76{letter-spacing:8.013600px;}
.ls43{letter-spacing:8.160156px;}
.ls5e{letter-spacing:8.160756px;}
.lsf{letter-spacing:10.074000px;}
.ls42{letter-spacing:12.875400px;}
.ls82{letter-spacing:13.797000px;}
.ls64{letter-spacing:474.013800px;}
.ls88{letter-spacing:474.313800px;}
.ls75{letter-spacing:474.951000px;}
.lse{letter-spacing:478.596000px;}
.ls4c{letter-spacing:480.433800px;}
.ls35{letter-spacing:480.928800px;}
.ls26{letter-spacing:481.963800px;}
.ls5d{letter-spacing:953.928000px;}
.ls1e{letter-spacing:954.426000px;}
.ls2f{letter-spacing:955.974000px;}
.ls41{letter-spacing:961.098000px;}
.ls0{letter-spacing:963.078000px;}
.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;}
}
.ws11{word-spacing:-55.978066px;}
.wsa9{word-spacing:-24.060000px;}
.ws0{word-spacing:-22.980000px;}
.ws73{word-spacing:-21.987000px;}
.ws41{word-spacing:-21.459000px;}
.ws2{word-spacing:-21.120000px;}
.ws6e{word-spacing:-20.250000px;}
.ws99{word-spacing:-19.782000px;}
.ws5b{word-spacing:-19.113000px;}
.ws14{word-spacing:-18.492000px;}
.ws5c{word-spacing:-18.354000px;}
.ws50{word-spacing:-18.285000px;}
.ws1{word-spacing:-18.180000px;}
.ws3f{word-spacing:-17.388000px;}
.wsf{word-spacing:-17.175000px;}
.ws75{word-spacing:-16.947000px;}
.ws2b{word-spacing:-16.875000px;}
.ws2d{word-spacing:-16.491000px;}
.ws59{word-spacing:-16.422000px;}
.ws12{word-spacing:-16.284000px;}
.ws22{word-spacing:-15.939000px;}
.ws4e{word-spacing:-15.663000px;}
.ws98{word-spacing:-15.561000px;}
.ws6f{word-spacing:-15.387000px;}
.ws3e{word-spacing:-15.249000px;}
.ws7f{word-spacing:-15.120000px;}
.ws8f{word-spacing:-15.057000px;}
.ws90{word-spacing:-14.931000px;}
.ws4f{word-spacing:-14.904000px;}
.ws40{word-spacing:-14.835000px;}
.ws8e{word-spacing:-14.616000px;}
.ws74{word-spacing:-14.490000px;}
.ws13{word-spacing:-14.421000px;}
.wsaa{word-spacing:-13.620000px;}
.ws42{word-spacing:-13.608000px;}
.ws76{word-spacing:-13.104000px;}
.ws10{word-spacing:-13.062000px;}
.ws97{word-spacing:-12.978000px;}
.ws15{word-spacing:-11.303787px;}
.ws57{word-spacing:-10.459020px;}
.ws5d{word-spacing:-10.144200px;}
.ws58{word-spacing:-9.899340px;}
.ws2c{word-spacing:-9.829380px;}
.ws4c{word-spacing:-9.794400px;}
.ws69{word-spacing:-9.479580px;}
.ws4d{word-spacing:-9.164760px;}
.ws5a{word-spacing:-9.024840px;}
.ws7e{word-spacing:-6.300000px;}
.ws30{word-spacing:-6.279000px;}
.ws17{word-spacing:-6.000000px;}
.wsa3{word-spacing:-5.859000px;}
.ws9b{word-spacing:-5.796000px;}
.ws82{word-spacing:-5.733000px;}
.ws5{word-spacing:-5.700000px;}
.wse{word-spacing:-3.738000px;}
.ws65{word-spacing:-2.484000px;}
.wsa0{word-spacing:-2.457000px;}
.ws19{word-spacing:-2.415000px;}
.ws71{word-spacing:-2.208000px;}
.ws26{word-spacing:-2.070000px;}
.ws9c{word-spacing:-2.016000px;}
.ws70{word-spacing:-2.001000px;}
.ws3b{word-spacing:-1.863000px;}
.ws2e{word-spacing:-1.794000px;}
.ws5e{word-spacing:-1.725000px;}
.ws7c{word-spacing:-1.638000px;}
.ws8c{word-spacing:-1.575000px;}
.ws84{word-spacing:-1.512000px;}
.ws93{word-spacing:-1.449000px;}
.ws83{word-spacing:-1.323000px;}
.wsab{word-spacing:-1.320000px;}
.ws9d{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.242000px;}
.ws9a{word-spacing:-1.197000px;}
.ws1b{word-spacing:-1.104000px;}
.ws3c{word-spacing:-1.035000px;}
.wsa4{word-spacing:-1.008000px;}
.ws89{word-spacing:-0.945000px;}
.ws39{word-spacing:-0.897000px;}
.ws8d{word-spacing:-0.819000px;}
.ws9f{word-spacing:-0.693000px;}
.ws4a{word-spacing:-0.690000px;}
.ws6{word-spacing:-0.660000px;}
.ws92{word-spacing:-0.630000px;}
.ws2a{word-spacing:-0.621000px;}
.ws63{word-spacing:-0.566676px;}
.wsa5{word-spacing:-0.504000px;}
.ws6b{word-spacing:-0.483000px;}
.ws47{word-spacing:-0.414000px;}
.ws25{word-spacing:-0.345000px;}
.ws8{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.283338px;}
.ws23{word-spacing:-0.276000px;}
.ws3d{word-spacing:-0.216000px;}
.ws5f{word-spacing:-0.207000px;}
.ws33{word-spacing:-0.138000px;}
.wsa8{word-spacing:-0.126000px;}
.ws20{word-spacing:-0.069000px;}
.wsa7{word-spacing:-0.063000px;}
.ws66{word-spacing:-0.062964px;}
.ws3{word-spacing:0.000000px;}
.ws54{word-spacing:0.031482px;}
.wsc{word-spacing:0.060000px;}
.ws77{word-spacing:0.063000px;}
.ws38{word-spacing:0.069000px;}
.ws55{word-spacing:0.108000px;}
.ws28{word-spacing:0.138000px;}
.wsa2{word-spacing:0.189000px;}
.ws24{word-spacing:0.207000px;}
.ws79{word-spacing:0.252000px;}
.ws32{word-spacing:0.276000px;}
.wsd{word-spacing:0.294000px;}
.ws6d{word-spacing:0.314820px;}
.ws86{word-spacing:0.315000px;}
.ws48{word-spacing:0.345000px;}
.ws7d{word-spacing:0.378000px;}
.ws96{word-spacing:0.441000px;}
.wsa{word-spacing:0.480000px;}
.ws21{word-spacing:0.483000px;}
.ws80{word-spacing:0.504000px;}
.ws36{word-spacing:0.552000px;}
.ws7a{word-spacing:0.567000px;}
.ws56{word-spacing:0.598158px;}
.ws49{word-spacing:0.621000px;}
.ws81{word-spacing:0.630000px;}
.ws51{word-spacing:0.690000px;}
.ws67{word-spacing:0.724086px;}
.ws95{word-spacing:0.756000px;}
.ws1d{word-spacing:0.759000px;}
.ws34{word-spacing:0.828000px;}
.ws7{word-spacing:0.864000px;}
.ws91{word-spacing:0.882000px;}
.ws1a{word-spacing:0.897000px;}
.ws9e{word-spacing:0.945000px;}
.ws31{word-spacing:0.966000px;}
.ws16{word-spacing:1.008000px;}
.ws46{word-spacing:1.035000px;}
.ws8b{word-spacing:1.071000px;}
.ws64{word-spacing:1.080000px;}
.ws27{word-spacing:1.104000px;}
.ws88{word-spacing:1.134000px;}
.ws1f{word-spacing:1.173000px;}
.ws4{word-spacing:1.197000px;}
.wsac{word-spacing:1.200000px;}
.ws43{word-spacing:1.242000px;}
.ws9{word-spacing:1.260000px;}
.ws61{word-spacing:1.311000px;}
.wsb{word-spacing:1.320000px;}
.ws1e{word-spacing:1.380000px;}
.ws78{word-spacing:1.386000px;}
.ws2f{word-spacing:1.449000px;}
.ws1c{word-spacing:1.518000px;}
.ws85{word-spacing:1.575000px;}
.ws52{word-spacing:1.656000px;}
.wsa1{word-spacing:1.701000px;}
.ws35{word-spacing:1.794000px;}
.wsa6{word-spacing:1.953000px;}
.ws6c{word-spacing:2.001000px;}
.ws37{word-spacing:2.139000px;}
.ws3a{word-spacing:2.208000px;}
.ws45{word-spacing:2.691000px;}
.ws6a{word-spacing:2.898000px;}
.ws60{word-spacing:2.967000px;}
.ws53{word-spacing:3.105000px;}
.ws7b{word-spacing:3.213000px;}
.ws72{word-spacing:3.243000px;}
.ws62{word-spacing:3.450000px;}
.ws8a{word-spacing:3.465000px;}
.ws29{word-spacing:4.140000px;}
.ws94{word-spacing:5.229000px;}
.ws87{word-spacing:5.607000px;}
.ws44{word-spacing:6.762000px;}
.ws4b{word-spacing:43.445160px;}
._1c{margin-left:-12.950700px;}
._1b{margin-left:-11.784900px;}
._1a{margin-left:-9.505500px;}
._12{margin-left:-7.746900px;}
._f{margin-left:-6.703500px;}
._7{margin-left:-4.990500px;}
._17{margin-left:-3.985500px;}
._4{margin-left:-2.973600px;}
._2{margin-left:-1.518300px;}
._3{width:1.430100px;}
._5{width:3.112200px;}
._8{width:4.128000px;}
._6{width:5.842800px;}
._9{width:7.005600px;}
._a{width:8.094300px;}
._d{width:9.164100px;}
._c{width:10.346400px;}
._10{width:11.609700px;}
._1{width:13.140000px;}
._13{width:14.386500px;}
._15{width:15.624900px;}
._14{width:16.846500px;}
._18{width:19.956600px;}
._19{width:20.963100px;}
._1e{width:22.089258px;}
._1f{width:23.360400px;}
._16{width:27.735642px;}
._1d{width:29.497458px;}
._11{width:43.445160px;}
._b{width:45.192000px;}
._e{width:253.554000px;}
._0{width:578.400000px;}
.fc1{color:rgb(144,62,65);}
.fc0{color:rgb(36,31,31);}
.fsb{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs8{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y165{bottom:106.165500px;}
.y187{bottom:106.227750px;}
.y1c5{bottom:106.245000px;}
.y46{bottom:106.293300px;}
.y6b{bottom:106.294500px;}
.yb5{bottom:106.296300px;}
.y1e{bottom:106.299150px;}
.yd8{bottom:106.299300px;}
.y1a5{bottom:106.323750px;}
.y90{bottom:109.294800px;}
.y45{bottom:123.546300px;}
.yb4{bottom:126.544800px;}
.y164{bottom:126.589500px;}
.y6a{bottom:127.253250px;}
.y1a4{bottom:127.633500px;}
.yfd{bottom:127.792500px;}
.yd7{bottom:127.798200px;}
.y8f{bottom:130.796700px;}
.y186{bottom:135.491250px;}
.y1c4{bottom:135.949500px;}
.y44{bottom:143.794800px;}
.y1e5{bottom:144.990000px;}
.yfc{bottom:145.045500px;}
.yb3{bottom:145.048500px;}
.y163{bottom:147.013500px;}
.yd6{bottom:148.046700px;}
.y69{bottom:148.212000px;}
.y1a3{bottom:148.943250px;}
.y1d{bottom:149.046000px;}
.y8e{bottom:149.301000px;}
.y11a{bottom:152.299500px;}
.y13e{bottom:153.337500px;}
.y185{bottom:156.249750px;}
.y1c3{bottom:157.149000px;}
.yfb{bottom:162.298500px;}
.y1e4{bottom:165.244500px;}
.yb2{bottom:165.297000px;}
.y162{bottom:167.437500px;}
.y1c{bottom:169.041000px;}
.y68{bottom:169.170750px;}
.y8d{bottom:169.549500px;}
.y1a2{bottom:170.253000px;}
.y119{bottom:170.802000px;}
.y13d{bottom:173.589000px;}
.yfa{bottom:182.547000px;}
.y1e3{bottom:185.499000px;}
.y184{bottom:185.513250px;}
.y1c2{bottom:186.853500px;}
.y43{bottom:187.833000px;}
.y161{bottom:187.861500px;}
.y1b{bottom:189.036000px;}
.y67{bottom:190.129500px;}
.y8c{bottom:191.050500px;}
.yd5{bottom:192.071250px;}
.y13c{bottom:193.840500px;}
.y1a1{bottom:200.067750px;}
.y1e2{bottom:205.753500px;}
.y183{bottom:206.271750px;}
.y42{bottom:208.257000px;}
.y160{bottom:208.285500px;}
.y1a{bottom:209.031000px;}
.yb1{bottom:209.340000px;}
.y66{bottom:211.088250px;}
.y13b{bottom:214.092000px;}
.yd4{bottom:214.371750px;}
.y1c1{bottom:216.558000px;}
.y1a0{bottom:221.377500px;}
.yf9{bottom:226.461000px;}
.y41{bottom:228.681000px;}
.y15f{bottom:228.709500px;}
.y19{bottom:229.026000px;}
.yb0{bottom:230.350500px;}
.y65{bottom:232.047000px;}
.y13a{bottom:234.343500px;}
.y1e1{bottom:234.513000px;}
.y118{bottom:235.102500px;}
.y8b{bottom:235.135500px;}
.y182{bottom:235.535250px;}
.yd3{bottom:236.572500px;}
.y1c0{bottom:237.757500px;}
.y19f{bottom:242.687250px;}
.yf8{bottom:246.954000px;}
.y18{bottom:249.021000px;}
.y15e{bottom:249.133500px;}
.y40{bottom:249.306000px;}
.yaf{bottom:251.361000px;}
.y139{bottom:254.595000px;}
.y1e0{bottom:254.767500px;}
.y117{bottom:255.957750px;}
.y8a{bottom:255.990750px;}
.y181{bottom:256.293750px;}
.yd2{bottom:258.773250px;}
.y1bf{bottom:258.957000px;}
.yf7{bottom:267.447000px;}
.y17{bottom:269.016000px;}
.y15d{bottom:269.557500px;}
.y3f{bottom:269.730000px;}
.yae{bottom:272.371500px;}
.y19e{bottom:272.502000px;}
.y64{bottom:273.972000px;}
.y138{bottom:274.846500px;}
.y116{bottom:276.813000px;}
.y89{bottom:276.846000px;}
.yd1{bottom:280.974000px;}
.y1df{bottom:283.527000px;}
.y180{bottom:285.557250px;}
.yf6{bottom:287.940000px;}
.y1be{bottom:288.661500px;}
.y15c{bottom:289.981500px;}
.y3e{bottom:290.154000px;}
.yad{bottom:293.382000px;}
.y63{bottom:294.927000px;}
.y137{bottom:295.098000px;}
.y115{bottom:297.668250px;}
.y88{bottom:297.701250px;}
.y16{bottom:301.761000px;}
.y19d{bottom:302.316750px;}
.yd0{bottom:303.174750px;}
.y1de{bottom:303.781500px;}
.y17f{bottom:306.315750px;}
.yf5{bottom:308.433000px;}
.y1bd{bottom:309.861000px;}
.y15b{bottom:310.405500px;}
.y3d{bottom:310.578000px;}
.yac{bottom:314.392500px;}
.y136{bottom:315.349500px;}
.y62{bottom:315.882000px;}
.y87{bottom:318.556500px;}
.y114{bottom:318.639000px;}
.y19c{bottom:323.626500px;}
.ycf{bottom:325.375500px;}
.yf4{bottom:328.926000px;}
.y15a{bottom:330.829500px;}
.y3c{bottom:331.002000px;}
.y1dd{bottom:332.541000px;}
.yab{bottom:335.403000px;}
.y17e{bottom:335.579250px;}
.y135{bottom:335.601000px;}
.y61{bottom:336.837000px;}
.y86{bottom:339.411750px;}
.y113{bottom:339.494250px;}
.y1bc{bottom:339.565500px;}
.yce{bottom:347.576250px;}
.yf3{bottom:349.419000px;}
.y159{bottom:351.253500px;}
.y3b{bottom:351.426000px;}
.y15{bottom:351.516000px;}
.y1dc{bottom:352.795500px;}
.y19b{bottom:353.441250px;}
.y134{bottom:355.852500px;}
.y17d{bottom:356.337750px;}
.yaa{bottom:356.413500px;}
.y60{bottom:357.790500px;}
.y85{bottom:360.267000px;}
.y112{bottom:360.349500px;}
.y1bb{bottom:360.765000px;}
.ycd{bottom:369.777000px;}
.yf2{bottom:369.912000px;}
.y158{bottom:371.677500px;}
.y3a{bottom:371.850000px;}
.y14{bottom:373.011000px;}
.y19a{bottom:374.751000px;}
.y133{bottom:376.162500px;}
.ya9{bottom:377.424000px;}
.y5f{bottom:378.749250px;}
.y84{bottom:381.122250px;}
.y111{bottom:381.204750px;}
.y1db{bottom:381.555000px;}
.y17c{bottom:385.601250px;}
.yf1{bottom:390.405000px;}
.y1ba{bottom:390.469500px;}
.ycc{bottom:391.977750px;}
.y157{bottom:392.101500px;}
.y39{bottom:392.274000px;}
.y132{bottom:396.414000px;}
.ya8{bottom:398.434500px;}
.y5e{bottom:399.708000px;}
.y1da{bottom:401.809500px;}
.y83{bottom:402.035250px;}
.y110{bottom:402.060000px;}
.y199{bottom:404.565750px;}
.y17b{bottom:406.359750px;}
.yf0{bottom:410.898000px;}
.y1b9{bottom:411.669000px;}
.y156{bottom:412.525500px;}
.y38{bottom:412.698000px;}
.ycb{bottom:414.178500px;}
.y13{bottom:415.753500px;}
.y131{bottom:416.665500px;}
.ya7{bottom:419.445000px;}
.y5d{bottom:420.666750px;}
.y82{bottom:422.890500px;}
.y10f{bottom:422.915250px;}
.y198{bottom:425.875500px;}
.y1d9{bottom:430.569000px;}
.yef{bottom:431.391000px;}
.y155{bottom:432.949500px;}
.y37{bottom:433.122000px;}
.y17a{bottom:435.623250px;}
.y12{bottom:435.748500px;}
.yca{bottom:436.379250px;}
.y130{bottom:436.917000px;}
.ya6{bottom:440.455500px;}
.y1b8{bottom:441.373500px;}
.y5c{bottom:441.625500px;}
.y81{bottom:443.745750px;}
.y10e{bottom:443.770500px;}
.y1d8{bottom:450.823500px;}
.yee{bottom:451.884000px;}
.y154{bottom:453.373500px;}
.y36{bottom:453.546000px;}
.y197{bottom:455.690250px;}
.y11{bottom:455.743500px;}
.y179{bottom:457.122000px;}
.y12f{bottom:457.168500px;}
.yc9{bottom:458.580000px;}
.ya5{bottom:461.466000px;}
.y1b7{bottom:462.573000px;}
.y5b{bottom:462.584250px;}
.y80{bottom:464.601000px;}
.y10d{bottom:464.625750px;}
.yed{bottom:472.377000px;}
.y153{bottom:473.797500px;}
.y35{bottom:473.970000px;}
.y10{bottom:475.738500px;}
.y12e{bottom:477.420000px;}
.y1d7{bottom:479.583000px;}
.yc8{bottom:480.780750px;}
.ya4{bottom:482.476500px;}
.y5a{bottom:483.543000px;}
.y7f{bottom:485.456250px;}
.y10c{bottom:485.481000px;}
.y196{bottom:485.505000px;}
.y1b6{bottom:492.277500px;}
.yec{bottom:492.870000px;}
.y152{bottom:494.221500px;}
.y34{bottom:494.394000px;}
.yf{bottom:495.733500px;}
.y12d{bottom:497.671500px;}
.y1d6{bottom:499.837500px;}
.yc7{bottom:502.981500px;}
.ya3{bottom:503.487000px;}
.y7e{bottom:506.311500px;}
.y10b{bottom:506.336250px;}
.y178{bottom:508.418250px;}
.yeb{bottom:513.363000px;}
.y1b5{bottom:513.477000px;}
.y151{bottom:514.645500px;}
.y33{bottom:514.818000px;}
.y195{bottom:515.319750px;}
.ye{bottom:515.728500px;}
.y12c{bottom:517.923000px;}
.ya2{bottom:524.497500px;}
.yc6{bottom:525.182250px;}
.y59{bottom:525.463500px;}
.y7d{bottom:527.166750px;}
.y10a{bottom:527.191500px;}
.y1d5{bottom:528.597000px;}
.y177{bottom:529.170000px;}
.yea{bottom:533.856000px;}
.y1b4{bottom:534.676500px;}
.y150{bottom:535.069500px;}
.y32{bottom:535.242000px;}
.yd{bottom:535.723500px;}
.y194{bottom:536.629500px;}
.y12b{bottom:538.174500px;}
.ya1{bottom:545.508000px;}
.y58{bottom:546.418500px;}
.yc5{bottom:547.489500px;}
.y109{bottom:548.046750px;}
.y7c{bottom:548.079750px;}
.y1d4{bottom:548.851500px;}
.y176{bottom:549.921750px;}
.ye9{bottom:554.349000px;}
.y14f{bottom:555.493500px;}
.y31{bottom:555.666000px;}
.yc{bottom:555.718500px;}
.y1b3{bottom:555.876000px;}
.y12a{bottom:558.426000px;}
.y1f3{bottom:558.684000px;}
.y193{bottom:566.444250px;}
.ya0{bottom:566.518500px;}
.y57{bottom:567.373500px;}
.y108{bottom:568.902000px;}
.y7b{bottom:568.935000px;}
.y1d3{bottom:569.106000px;}
.yc4{bottom:569.690250px;}
.y175{bottom:570.673500px;}
.ye8{bottom:574.842000px;}
.yb{bottom:575.713500px;}
.y14e{bottom:575.917500px;}
.y30{bottom:576.090000px;}
.y129{bottom:578.677500px;}
.y1f2{bottom:578.934000px;}
.y1b2{bottom:585.580500px;}
.y9f{bottom:587.529000px;}
.y192{bottom:587.754000px;}
.y56{bottom:588.320250px;}
.y107{bottom:589.757250px;}
.y7a{bottom:589.790250px;}
.y174{bottom:591.425250px;}
.yc3{bottom:591.891000px;}
.ye7{bottom:595.335000px;}
.y14d{bottom:596.341500px;}
.y2f{bottom:596.514000px;}
.y1d2{bottom:597.865500px;}
.y128{bottom:598.929000px;}
.y1f1{bottom:599.184000px;}
.y1b1{bottom:606.780000px;}
.ya{bottom:608.458500px;}
.y9e{bottom:608.539500px;}
.y191{bottom:609.063750px;}
.y55{bottom:609.279000px;}
.y106{bottom:610.637250px;}
.y79{bottom:610.645500px;}
.y173{bottom:612.177000px;}
.yc2{bottom:614.091750px;}
.ye6{bottom:615.828000px;}
.y14c{bottom:616.765500px;}
.y2e{bottom:616.938000px;}
.y1d1{bottom:618.120000px;}
.y127{bottom:619.180500px;}
.y9d{bottom:629.550000px;}
.y54{bottom:630.237750px;}
.y105{bottom:631.492500px;}
.y78{bottom:631.500750px;}
.y1f0{bottom:632.184000px;}
.y172{bottom:632.928750px;}
.yc1{bottom:636.292500px;}
.ye5{bottom:636.321000px;}
.y1b0{bottom:636.484500px;}
.y14b{bottom:637.189500px;}
.y2d{bottom:637.362000px;}
.y190{bottom:638.878500px;}
.y126{bottom:639.432000px;}
.y1d0{bottom:646.879500px;}
.y9c{bottom:650.569500px;}
.y53{bottom:651.196500px;}
.y104{bottom:652.347750px;}
.y77{bottom:652.356000px;}
.y171{bottom:653.680500px;}
.ye4{bottom:656.814000px;}
.y14a{bottom:657.613500px;}
.y1af{bottom:657.684000px;}
.y2c{bottom:657.786000px;}
.yc0{bottom:658.493250px;}
.y125{bottom:659.683500px;}
.y18f{bottom:660.188250px;}
.y9{bottom:666.718500px;}
.y1cf{bottom:667.134000px;}
.y9b{bottom:671.580000px;}
.y52{bottom:672.155250px;}
.y76{bottom:673.211250px;}
.y103{bottom:673.252500px;}
.y1ef{bottom:673.689000px;}
.y170{bottom:674.432250px;}
.ye3{bottom:677.307000px;}
.y149{bottom:678.037500px;}
.y2b{bottom:678.210000px;}
.y124{bottom:679.935000px;}
.ybf{bottom:680.694000px;}
.y1ae{bottom:687.388500px;}
.y18e{bottom:690.003000px;}
.y9a{bottom:692.590500px;}
.y51{bottom:693.114000px;}
.y1ee{bottom:693.189000px;}
.y102{bottom:694.107750px;}
.y75{bottom:694.149000px;}
.y16f{bottom:695.184000px;}
.y1ce{bottom:695.893500px;}
.ye2{bottom:697.800000px;}
.y148{bottom:698.461500px;}
.y2a{bottom:698.634000px;}
.y123{bottom:700.186500px;}
.ybe{bottom:702.894750px;}
.y1ad{bottom:708.588000px;}
.y1ed{bottom:712.689000px;}
.y99{bottom:713.601000px;}
.y50{bottom:714.072750px;}
.y101{bottom:714.963000px;}
.y74{bottom:715.004250px;}
.y8{bottom:715.470000px;}
.y16e{bottom:715.935750px;}
.y1cd{bottom:716.148000px;}
.ye1{bottom:718.293000px;}
.y147{bottom:718.885500px;}
.y29{bottom:719.058000px;}
.y18d{bottom:719.817750px;}
.y122{bottom:720.438000px;}
.ybd{bottom:725.095500px;}
.y1ec{bottom:732.189000px;}
.y98{bottom:734.611500px;}
.y4f{bottom:735.031500px;}
.y100{bottom:735.818250px;}
.y73{bottom:735.859500px;}
.y16d{bottom:736.687500px;}
.y1ac{bottom:738.292500px;}
.ye0{bottom:738.786000px;}
.y146{bottom:739.309500px;}
.y28{bottom:739.482000px;}
.y121{bottom:740.689500px;}
.y1cc{bottom:744.907500px;}
.ybc{bottom:747.296250px;}
.y7{bottom:747.465000px;}
.y1eb{bottom:751.689000px;}
.y97{bottom:755.622000px;}
.y4e{bottom:755.990250px;}
.yff{bottom:756.673500px;}
.y72{bottom:756.714750px;}
.y16c{bottom:757.439250px;}
.ydf{bottom:759.250500px;}
.y1ab{bottom:759.492000px;}
.y145{bottom:759.733500px;}
.y27{bottom:759.906000px;}
.y120{bottom:760.941000px;}
.y1cb{bottom:765.162000px;}
.ybb{bottom:769.497000px;}
.y1ea{bottom:771.189000px;}
.y18c{bottom:771.635250px;}
.y96{bottom:776.632500px;}
.y4d{bottom:776.949000px;}
.yfe{bottom:777.528750px;}
.y71{bottom:777.570000px;}
.y16b{bottom:778.191000px;}
.yde{bottom:779.743500px;}
.y144{bottom:780.157500px;}
.y26{bottom:780.330000px;}
.y11f{bottom:781.192500px;}
.y1aa{bottom:789.196500px;}
.y1e9{bottom:790.689000px;}
.yba{bottom:791.697750px;}
.y18b{bottom:792.945000px;}
.y1ca{bottom:793.921500px;}
.y95{bottom:797.649000px;}
.y4c{bottom:797.907750px;}
.y70{bottom:798.425250px;}
.y16a{bottom:798.942750px;}
.ydd{bottom:800.236500px;}
.y143{bottom:800.581500px;}
.y25{bottom:800.754000px;}
.y11e{bottom:801.444000px;}
.y6{bottom:809.215500px;}
.y1e8{bottom:810.189000px;}
.y1a9{bottom:810.396000px;}
.yb9{bottom:813.898500px;}
.y1c9{bottom:814.176000px;}
.y94{bottom:818.659500px;}
.y4b{bottom:818.866500px;}
.y6f{bottom:819.280500px;}
.y169{bottom:819.694500px;}
.ydc{bottom:820.729500px;}
.y142{bottom:821.005500px;}
.y24{bottom:821.178000px;}
.y11d{bottom:821.695500px;}
.y18a{bottom:822.759750px;}
.y5{bottom:830.710500px;}
.y1a8{bottom:831.595500px;}
.yb8{bottom:836.099250px;}
.y93{bottom:839.670000px;}
.y4a{bottom:839.825250px;}
.y6e{bottom:840.135750px;}
.y168{bottom:840.446250px;}
.ydb{bottom:841.222500px;}
.y141{bottom:841.429500px;}
.y23{bottom:841.602000px;}
.y11c{bottom:841.947000px;}
.y1e7{bottom:842.439000px;}
.y1c8{bottom:842.935500px;}
.y189{bottom:844.069500px;}
.y4{bottom:852.205500px;}
.yb7{bottom:858.300000px;}
.y92{bottom:860.680500px;}
.y49{bottom:860.784000px;}
.y6d{bottom:860.991000px;}
.y167{bottom:861.198000px;}
.y1a7{bottom:861.300000px;}
.yda{bottom:861.715500px;}
.y140{bottom:861.853500px;}
.y22{bottom:862.026000px;}
.y11b{bottom:862.198500px;}
.y1c7{bottom:863.190000px;}
.y188{bottom:873.884250px;}
.yb6{bottom:880.500750px;}
.y91{bottom:881.691000px;}
.y48{bottom:881.742750px;}
.y6c{bottom:881.846250px;}
.y166{bottom:881.949750px;}
.y3{bottom:882.205500px;}
.yd9{bottom:882.208500px;}
.y13f{bottom:882.277500px;}
.y21{bottom:882.450000px;}
.y20{bottom:882.451500px;}
.y1a6{bottom:882.499500px;}
.y1c6{bottom:883.444500px;}
.y1e6{bottom:900.207000px;}
.y47{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y1f{bottom:948.189000px;}
.he{height:25.748218px;}
.h11{height:39.404648px;}
.hb{height:39.407648px;}
.h8{height:45.679688px;}
.hd{height:49.072266px;}
.h13{height:50.947266px;}
.hc{height:51.389648px;}
.h12{height:51.525879px;}
.h4{height:57.099609px;}
.h3{height:59.954590px;}
.h10{height:65.565551px;}
.ha{height:65.664551px;}
.hf{height:65.778551px;}
.h2{height:71.374512px;}
.h7{height:79.939453px;}
.h6{height:88.330078px;}
.h5{height:102.779297px;}
.h9{height:162.928264px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.928600px;}
.x6{left:82.214250px;}
.x5{left:83.925000px;}
.x1{left:85.039350px;}
.x7{left:99.427500px;}
.xb{left:104.044500px;}
.x4{left:105.180000px;}
.x8{left:106.569150px;}
.x9{left:148.412550px;}
.x2{left:232.075500px;}
.x3{left:233.557500px;}
@media print{
.v3{vertical-align:-15.088000pt;}
.v6{vertical-align:-12.426667pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.426667pt;}
.v2{vertical-align:14.373333pt;}
.v1{vertical-align:72.000000pt;}
.ls37{letter-spacing:-6.010667pt;}
.ls85{letter-spacing:-4.648000pt;}
.ls18{letter-spacing:-4.416000pt;}
.ls8b{letter-spacing:-4.200000pt;}
.ls61{letter-spacing:-4.048000pt;}
.ls27{letter-spacing:-3.733333pt;}
.ls25{letter-spacing:-3.680000pt;}
.ls11{letter-spacing:-3.466667pt;}
.ls7f{letter-spacing:-3.080000pt;}
.ls56{letter-spacing:-3.066667pt;}
.ls67{letter-spacing:-2.882667pt;}
.ls6f{letter-spacing:-2.856000pt;}
.ls48{letter-spacing:-2.760000pt;}
.ls53{letter-spacing:-2.637333pt;}
.ls5f{letter-spacing:-2.576000pt;}
.ls39{letter-spacing:-2.392000pt;}
.ls38{letter-spacing:-2.330667pt;}
.ls74{letter-spacing:-2.184000pt;}
.ls34{letter-spacing:-1.962667pt;}
.ls32{letter-spacing:-1.901333pt;}
.ls3b{letter-spacing:-1.778667pt;}
.ls93{letter-spacing:-1.736000pt;}
.ls8e{letter-spacing:-1.680000pt;}
.ls31{letter-spacing:-1.594667pt;}
.ls90{letter-spacing:-1.512000pt;}
.ls66{letter-spacing:-1.472000pt;}
.ls7c{letter-spacing:-1.400000pt;}
.ls40{letter-spacing:-1.392000pt;}
.ls19{letter-spacing:-1.349333pt;}
.ls29{letter-spacing:-1.288000pt;}
.ls6b{letter-spacing:-1.232000pt;}
.ls1a{letter-spacing:-1.226667pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls55{letter-spacing:-1.165333pt;}
.ls7{letter-spacing:-1.120000pt;}
.ls36{letter-spacing:-1.104000pt;}
.ls98{letter-spacing:-1.066667pt;}
.ls72{letter-spacing:-1.064000pt;}
.ls1b{letter-spacing:-1.042667pt;}
.ls7e{letter-spacing:-1.008000pt;}
.ls24{letter-spacing:-0.981333pt;}
.ls59{letter-spacing:-0.960000pt;}
.ls6c{letter-spacing:-0.952000pt;}
.ls3a{letter-spacing:-0.920000pt;}
.ls78{letter-spacing:-0.896000pt;}
.ls46{letter-spacing:-0.858667pt;}
.ls87{letter-spacing:-0.840000pt;}
.ls17{letter-spacing:-0.797333pt;}
.ls83{letter-spacing:-0.784000pt;}
.ls30{letter-spacing:-0.736000pt;}
.ls65{letter-spacing:-0.733333pt;}
.ls52{letter-spacing:-0.715147pt;}
.ls16{letter-spacing:-0.674667pt;}
.ls70{letter-spacing:-0.672000pt;}
.ls5b{letter-spacing:-0.643632pt;}
.ls47{letter-spacing:-0.613333pt;}
.ls45{letter-spacing:-0.590773pt;}
.ls2{letter-spacing:-0.560000pt;}
.ls3e{letter-spacing:-0.552000pt;}
.ls4b{letter-spacing:-0.531696pt;}
.ls6e{letter-spacing:-0.504000pt;}
.ls2a{letter-spacing:-0.490667pt;}
.ls77{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.429333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls81{letter-spacing:-0.392000pt;}
.ls86{letter-spacing:-0.336000pt;}
.ls62{letter-spacing:-0.310933pt;}
.ls3d{letter-spacing:-0.306667pt;}
.ls7d{letter-spacing:-0.280000pt;}
.ls63{letter-spacing:-0.279840pt;}
.ls2c{letter-spacing:-0.245333pt;}
.ls6d{letter-spacing:-0.224000pt;}
.ls21{letter-spacing:-0.184000pt;}
.ls80{letter-spacing:-0.168000pt;}
.ls4a{letter-spacing:-0.096000pt;}
.ls33{letter-spacing:-0.061333pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls44{letter-spacing:-0.031093pt;}
.ls49{letter-spacing:-0.027984pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.055968pt;}
.ls94{letter-spacing:0.056000pt;}
.ls1c{letter-spacing:0.061333pt;}
.ls50{letter-spacing:0.062187pt;}
.ls95{letter-spacing:0.112000pt;}
.ls2e{letter-spacing:0.122667pt;}
.ls51{letter-spacing:0.184000pt;}
.ls20{letter-spacing:0.245333pt;}
.ls5c{letter-spacing:0.251856pt;}
.ls57{letter-spacing:0.279840pt;}
.ls6{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.306667pt;}
.ls3c{letter-spacing:0.368000pt;}
.ls89{letter-spacing:0.392000pt;}
.ls60{letter-spacing:0.429333pt;}
.ls58{letter-spacing:0.503712pt;}
.ls2d{letter-spacing:0.552000pt;}
.ls4e{letter-spacing:0.559680pt;}
.ls3f{letter-spacing:0.613333pt;}
.ls54{letter-spacing:0.981333pt;}
.ls8a{letter-spacing:1.064000pt;}
.ls15{letter-spacing:1.104000pt;}
.ls13{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.173333pt;}
.ls7a{letter-spacing:1.176000pt;}
.ls7b{letter-spacing:1.344000pt;}
.ls71{letter-spacing:1.456000pt;}
.ls4f{letter-spacing:1.533333pt;}
.ls28{letter-spacing:1.594667pt;}
.ls8d{letter-spacing:1.792000pt;}
.ls23{letter-spacing:1.840000pt;}
.ls92{letter-spacing:1.848000pt;}
.ls10{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.146667pt;}
.ls8f{letter-spacing:2.184000pt;}
.ls4d{letter-spacing:3.312000pt;}
.lsd{letter-spacing:3.322667pt;}
.ls8{letter-spacing:3.786667pt;}
.ls69{letter-spacing:3.808000pt;}
.ls68{letter-spacing:4.144000pt;}
.ls1f{letter-spacing:4.293333pt;}
.lsc{letter-spacing:4.405333pt;}
.ls97{letter-spacing:4.906667pt;}
.ls4{letter-spacing:5.066667pt;}
.ls79{letter-spacing:5.096000pt;}
.ls8c{letter-spacing:5.152000pt;}
.ls91{letter-spacing:5.208000pt;}
.ls12{letter-spacing:5.333333pt;}
.ls84{letter-spacing:5.432000pt;}
.ls3{letter-spacing:5.440000pt;}
.ls2b{letter-spacing:5.581333pt;}
.ls73{letter-spacing:5.600000pt;}
.ls96{letter-spacing:6.400000pt;}
.ls6a{letter-spacing:6.440000pt;}
.ls76{letter-spacing:7.123200pt;}
.ls43{letter-spacing:7.253472pt;}
.ls5e{letter-spacing:7.254005pt;}
.lsf{letter-spacing:8.954667pt;}
.ls42{letter-spacing:11.444800pt;}
.ls82{letter-spacing:12.264000pt;}
.ls64{letter-spacing:421.345600pt;}
.ls88{letter-spacing:421.612267pt;}
.ls75{letter-spacing:422.178667pt;}
.lse{letter-spacing:425.418667pt;}
.ls4c{letter-spacing:427.052267pt;}
.ls35{letter-spacing:427.492267pt;}
.ls26{letter-spacing:428.412267pt;}
.ls5d{letter-spacing:847.936000pt;}
.ls1e{letter-spacing:848.378667pt;}
.ls2f{letter-spacing:849.754667pt;}
.ls41{letter-spacing:854.309333pt;}
.ls0{letter-spacing:856.069333pt;}
.ws11{word-spacing:-49.758281pt;}
.wsa9{word-spacing:-21.386667pt;}
.ws0{word-spacing:-20.426667pt;}
.ws73{word-spacing:-19.544000pt;}
.ws41{word-spacing:-19.074667pt;}
.ws2{word-spacing:-18.773333pt;}
.ws6e{word-spacing:-18.000000pt;}
.ws99{word-spacing:-17.584000pt;}
.ws5b{word-spacing:-16.989333pt;}
.ws14{word-spacing:-16.437333pt;}
.ws5c{word-spacing:-16.314667pt;}
.ws50{word-spacing:-16.253333pt;}
.ws1{word-spacing:-16.160000pt;}
.ws3f{word-spacing:-15.456000pt;}
.wsf{word-spacing:-15.266667pt;}
.ws75{word-spacing:-15.064000pt;}
.ws2b{word-spacing:-15.000000pt;}
.ws2d{word-spacing:-14.658667pt;}
.ws59{word-spacing:-14.597333pt;}
.ws12{word-spacing:-14.474667pt;}
.ws22{word-spacing:-14.168000pt;}
.ws4e{word-spacing:-13.922667pt;}
.ws98{word-spacing:-13.832000pt;}
.ws6f{word-spacing:-13.677333pt;}
.ws3e{word-spacing:-13.554667pt;}
.ws7f{word-spacing:-13.440000pt;}
.ws8f{word-spacing:-13.384000pt;}
.ws90{word-spacing:-13.272000pt;}
.ws4f{word-spacing:-13.248000pt;}
.ws40{word-spacing:-13.186667pt;}
.ws8e{word-spacing:-12.992000pt;}
.ws74{word-spacing:-12.880000pt;}
.ws13{word-spacing:-12.818667pt;}
.wsaa{word-spacing:-12.106667pt;}
.ws42{word-spacing:-12.096000pt;}
.ws76{word-spacing:-11.648000pt;}
.ws10{word-spacing:-11.610667pt;}
.ws97{word-spacing:-11.536000pt;}
.ws15{word-spacing:-10.047811pt;}
.ws57{word-spacing:-9.296907pt;}
.ws5d{word-spacing:-9.017067pt;}
.ws58{word-spacing:-8.799413pt;}
.ws2c{word-spacing:-8.737227pt;}
.ws4c{word-spacing:-8.706133pt;}
.ws69{word-spacing:-8.426293pt;}
.ws4d{word-spacing:-8.146453pt;}
.ws5a{word-spacing:-8.022080pt;}
.ws7e{word-spacing:-5.600000pt;}
.ws30{word-spacing:-5.581333pt;}
.ws17{word-spacing:-5.333333pt;}
.wsa3{word-spacing:-5.208000pt;}
.ws9b{word-spacing:-5.152000pt;}
.ws82{word-spacing:-5.096000pt;}
.ws5{word-spacing:-5.066667pt;}
.wse{word-spacing:-3.322667pt;}
.ws65{word-spacing:-2.208000pt;}
.wsa0{word-spacing:-2.184000pt;}
.ws19{word-spacing:-2.146667pt;}
.ws71{word-spacing:-1.962667pt;}
.ws26{word-spacing:-1.840000pt;}
.ws9c{word-spacing:-1.792000pt;}
.ws70{word-spacing:-1.778667pt;}
.ws3b{word-spacing:-1.656000pt;}
.ws2e{word-spacing:-1.594667pt;}
.ws5e{word-spacing:-1.533333pt;}
.ws7c{word-spacing:-1.456000pt;}
.ws8c{word-spacing:-1.400000pt;}
.ws84{word-spacing:-1.344000pt;}
.ws93{word-spacing:-1.288000pt;}
.ws83{word-spacing:-1.176000pt;}
.wsab{word-spacing:-1.173333pt;}
.ws9d{word-spacing:-1.120000pt;}
.ws18{word-spacing:-1.104000pt;}
.ws9a{word-spacing:-1.064000pt;}
.ws1b{word-spacing:-0.981333pt;}
.ws3c{word-spacing:-0.920000pt;}
.wsa4{word-spacing:-0.896000pt;}
.ws89{word-spacing:-0.840000pt;}
.ws39{word-spacing:-0.797333pt;}
.ws8d{word-spacing:-0.728000pt;}
.ws9f{word-spacing:-0.616000pt;}
.ws4a{word-spacing:-0.613333pt;}
.ws6{word-spacing:-0.586667pt;}
.ws92{word-spacing:-0.560000pt;}
.ws2a{word-spacing:-0.552000pt;}
.ws63{word-spacing:-0.503712pt;}
.wsa5{word-spacing:-0.448000pt;}
.ws6b{word-spacing:-0.429333pt;}
.ws47{word-spacing:-0.368000pt;}
.ws25{word-spacing:-0.306667pt;}
.ws8{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.251856pt;}
.ws23{word-spacing:-0.245333pt;}
.ws3d{word-spacing:-0.192000pt;}
.ws5f{word-spacing:-0.184000pt;}
.ws33{word-spacing:-0.122667pt;}
.wsa8{word-spacing:-0.112000pt;}
.ws20{word-spacing:-0.061333pt;}
.wsa7{word-spacing:-0.056000pt;}
.ws66{word-spacing:-0.055968pt;}
.ws3{word-spacing:0.000000pt;}
.ws54{word-spacing:0.027984pt;}
.wsc{word-spacing:0.053333pt;}
.ws77{word-spacing:0.056000pt;}
.ws38{word-spacing:0.061333pt;}
.ws55{word-spacing:0.096000pt;}
.ws28{word-spacing:0.122667pt;}
.wsa2{word-spacing:0.168000pt;}
.ws24{word-spacing:0.184000pt;}
.ws79{word-spacing:0.224000pt;}
.ws32{word-spacing:0.245333pt;}
.wsd{word-spacing:0.261333pt;}
.ws6d{word-spacing:0.279840pt;}
.ws86{word-spacing:0.280000pt;}
.ws48{word-spacing:0.306667pt;}
.ws7d{word-spacing:0.336000pt;}
.ws96{word-spacing:0.392000pt;}
.wsa{word-spacing:0.426667pt;}
.ws21{word-spacing:0.429333pt;}
.ws80{word-spacing:0.448000pt;}
.ws36{word-spacing:0.490667pt;}
.ws7a{word-spacing:0.504000pt;}
.ws56{word-spacing:0.531696pt;}
.ws49{word-spacing:0.552000pt;}
.ws81{word-spacing:0.560000pt;}
.ws51{word-spacing:0.613333pt;}
.ws67{word-spacing:0.643632pt;}
.ws95{word-spacing:0.672000pt;}
.ws1d{word-spacing:0.674667pt;}
.ws34{word-spacing:0.736000pt;}
.ws7{word-spacing:0.768000pt;}
.ws91{word-spacing:0.784000pt;}
.ws1a{word-spacing:0.797333pt;}
.ws9e{word-spacing:0.840000pt;}
.ws31{word-spacing:0.858667pt;}
.ws16{word-spacing:0.896000pt;}
.ws46{word-spacing:0.920000pt;}
.ws8b{word-spacing:0.952000pt;}
.ws64{word-spacing:0.960000pt;}
.ws27{word-spacing:0.981333pt;}
.ws88{word-spacing:1.008000pt;}
.ws1f{word-spacing:1.042667pt;}
.ws4{word-spacing:1.064000pt;}
.wsac{word-spacing:1.066667pt;}
.ws43{word-spacing:1.104000pt;}
.ws9{word-spacing:1.120000pt;}
.ws61{word-spacing:1.165333pt;}
.wsb{word-spacing:1.173333pt;}
.ws1e{word-spacing:1.226667pt;}
.ws78{word-spacing:1.232000pt;}
.ws2f{word-spacing:1.288000pt;}
.ws1c{word-spacing:1.349333pt;}
.ws85{word-spacing:1.400000pt;}
.ws52{word-spacing:1.472000pt;}
.wsa1{word-spacing:1.512000pt;}
.ws35{word-spacing:1.594667pt;}
.wsa6{word-spacing:1.736000pt;}
.ws6c{word-spacing:1.778667pt;}
.ws37{word-spacing:1.901333pt;}
.ws3a{word-spacing:1.962667pt;}
.ws45{word-spacing:2.392000pt;}
.ws6a{word-spacing:2.576000pt;}
.ws60{word-spacing:2.637333pt;}
.ws53{word-spacing:2.760000pt;}
.ws7b{word-spacing:2.856000pt;}
.ws72{word-spacing:2.882667pt;}
.ws62{word-spacing:3.066667pt;}
.ws8a{word-spacing:3.080000pt;}
.ws29{word-spacing:3.680000pt;}
.ws94{word-spacing:4.648000pt;}
.ws87{word-spacing:4.984000pt;}
.ws44{word-spacing:6.010667pt;}
.ws4b{word-spacing:38.617920pt;}
._1c{margin-left:-11.511733pt;}
._1b{margin-left:-10.475467pt;}
._1a{margin-left:-8.449333pt;}
._12{margin-left:-6.886133pt;}
._f{margin-left:-5.958667pt;}
._7{margin-left:-4.436000pt;}
._17{margin-left:-3.542667pt;}
._4{margin-left:-2.643200pt;}
._2{margin-left:-1.349600pt;}
._3{width:1.271200pt;}
._5{width:2.766400pt;}
._8{width:3.669333pt;}
._6{width:5.193600pt;}
._9{width:6.227200pt;}
._a{width:7.194933pt;}
._d{width:8.145867pt;}
._c{width:9.196800pt;}
._10{width:10.319733pt;}
._1{width:11.680000pt;}
._13{width:12.788000pt;}
._15{width:13.888800pt;}
._14{width:14.974667pt;}
._18{width:17.739200pt;}
._19{width:18.633867pt;}
._1e{width:19.634896pt;}
._1f{width:20.764800pt;}
._16{width:24.653904pt;}
._1d{width:26.219963pt;}
._11{width:38.617920pt;}
._b{width:40.170667pt;}
._e{width:225.381333pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs8{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y165{bottom:94.369333pt;}
.y187{bottom:94.424667pt;}
.y1c5{bottom:94.440000pt;}
.y46{bottom:94.482933pt;}
.y6b{bottom:94.484000pt;}
.yb5{bottom:94.485600pt;}
.y1e{bottom:94.488133pt;}
.yd8{bottom:94.488267pt;}
.y1a5{bottom:94.510000pt;}
.y90{bottom:97.150933pt;}
.y45{bottom:109.818933pt;}
.yb4{bottom:112.484267pt;}
.y164{bottom:112.524000pt;}
.y6a{bottom:113.114000pt;}
.y1a4{bottom:113.452000pt;}
.yfd{bottom:113.593333pt;}
.yd7{bottom:113.598400pt;}
.y8f{bottom:116.263733pt;}
.y186{bottom:120.436667pt;}
.y1c4{bottom:120.844000pt;}
.y44{bottom:127.817600pt;}
.y1e5{bottom:128.880000pt;}
.yfc{bottom:128.929333pt;}
.yb3{bottom:128.932000pt;}
.y163{bottom:130.678667pt;}
.yd6{bottom:131.597067pt;}
.y69{bottom:131.744000pt;}
.y1a3{bottom:132.394000pt;}
.y1d{bottom:132.485333pt;}
.y8e{bottom:132.712000pt;}
.y11a{bottom:135.377333pt;}
.y13e{bottom:136.300000pt;}
.y185{bottom:138.888667pt;}
.y1c3{bottom:139.688000pt;}
.yfb{bottom:144.265333pt;}
.y1e4{bottom:146.884000pt;}
.yb2{bottom:146.930667pt;}
.y162{bottom:148.833333pt;}
.y1c{bottom:150.258667pt;}
.y68{bottom:150.374000pt;}
.y8d{bottom:150.710667pt;}
.y1a2{bottom:151.336000pt;}
.y119{bottom:151.824000pt;}
.y13d{bottom:154.301333pt;}
.yfa{bottom:162.264000pt;}
.y1e3{bottom:164.888000pt;}
.y184{bottom:164.900667pt;}
.y1c2{bottom:166.092000pt;}
.y43{bottom:166.962667pt;}
.y161{bottom:166.988000pt;}
.y1b{bottom:168.032000pt;}
.y67{bottom:169.004000pt;}
.y8c{bottom:169.822667pt;}
.yd5{bottom:170.730000pt;}
.y13c{bottom:172.302667pt;}
.y1a1{bottom:177.838000pt;}
.y1e2{bottom:182.892000pt;}
.y183{bottom:183.352667pt;}
.y42{bottom:185.117333pt;}
.y160{bottom:185.142667pt;}
.y1a{bottom:185.805333pt;}
.yb1{bottom:186.080000pt;}
.y66{bottom:187.634000pt;}
.y13b{bottom:190.304000pt;}
.yd4{bottom:190.552667pt;}
.y1c1{bottom:192.496000pt;}
.y1a0{bottom:196.780000pt;}
.yf9{bottom:201.298667pt;}
.y41{bottom:203.272000pt;}
.y15f{bottom:203.297333pt;}
.y19{bottom:203.578667pt;}
.yb0{bottom:204.756000pt;}
.y65{bottom:206.264000pt;}
.y13a{bottom:208.305333pt;}
.y1e1{bottom:208.456000pt;}
.y118{bottom:208.980000pt;}
.y8b{bottom:209.009333pt;}
.y182{bottom:209.364667pt;}
.yd3{bottom:210.286667pt;}
.y1c0{bottom:211.340000pt;}
.y19f{bottom:215.722000pt;}
.yf8{bottom:219.514667pt;}
.y18{bottom:221.352000pt;}
.y15e{bottom:221.452000pt;}
.y40{bottom:221.605333pt;}
.yaf{bottom:223.432000pt;}
.y139{bottom:226.306667pt;}
.y1e0{bottom:226.460000pt;}
.y117{bottom:227.518000pt;}
.y8a{bottom:227.547333pt;}
.y181{bottom:227.816667pt;}
.yd2{bottom:230.020667pt;}
.y1bf{bottom:230.184000pt;}
.yf7{bottom:237.730667pt;}
.y17{bottom:239.125333pt;}
.y15d{bottom:239.606667pt;}
.y3f{bottom:239.760000pt;}
.yae{bottom:242.108000pt;}
.y19e{bottom:242.224000pt;}
.y64{bottom:243.530667pt;}
.y138{bottom:244.308000pt;}
.y116{bottom:246.056000pt;}
.y89{bottom:246.085333pt;}
.yd1{bottom:249.754667pt;}
.y1df{bottom:252.024000pt;}
.y180{bottom:253.828667pt;}
.yf6{bottom:255.946667pt;}
.y1be{bottom:256.588000pt;}
.y15c{bottom:257.761333pt;}
.y3e{bottom:257.914667pt;}
.yad{bottom:260.784000pt;}
.y63{bottom:262.157333pt;}
.y137{bottom:262.309333pt;}
.y115{bottom:264.594000pt;}
.y88{bottom:264.623333pt;}
.y16{bottom:268.232000pt;}
.y19d{bottom:268.726000pt;}
.yd0{bottom:269.488667pt;}
.y1de{bottom:270.028000pt;}
.y17f{bottom:272.280667pt;}
.yf5{bottom:274.162667pt;}
.y1bd{bottom:275.432000pt;}
.y15b{bottom:275.916000pt;}
.y3d{bottom:276.069333pt;}
.yac{bottom:279.460000pt;}
.y136{bottom:280.310667pt;}
.y62{bottom:280.784000pt;}
.y87{bottom:283.161333pt;}
.y114{bottom:283.234667pt;}
.y19c{bottom:287.668000pt;}
.ycf{bottom:289.222667pt;}
.yf4{bottom:292.378667pt;}
.y15a{bottom:294.070667pt;}
.y3c{bottom:294.224000pt;}
.y1dd{bottom:295.592000pt;}
.yab{bottom:298.136000pt;}
.y17e{bottom:298.292667pt;}
.y135{bottom:298.312000pt;}
.y61{bottom:299.410667pt;}
.y86{bottom:301.699333pt;}
.y113{bottom:301.772667pt;}
.y1bc{bottom:301.836000pt;}
.yce{bottom:308.956667pt;}
.yf3{bottom:310.594667pt;}
.y159{bottom:312.225333pt;}
.y3b{bottom:312.378667pt;}
.y15{bottom:312.458667pt;}
.y1dc{bottom:313.596000pt;}
.y19b{bottom:314.170000pt;}
.y134{bottom:316.313333pt;}
.y17d{bottom:316.744667pt;}
.yaa{bottom:316.812000pt;}
.y60{bottom:318.036000pt;}
.y85{bottom:320.237333pt;}
.y112{bottom:320.310667pt;}
.y1bb{bottom:320.680000pt;}
.ycd{bottom:328.690667pt;}
.yf2{bottom:328.810667pt;}
.y158{bottom:330.380000pt;}
.y3a{bottom:330.533333pt;}
.y14{bottom:331.565333pt;}
.y19a{bottom:333.112000pt;}
.y133{bottom:334.366667pt;}
.ya9{bottom:335.488000pt;}
.y5f{bottom:336.666000pt;}
.y84{bottom:338.775333pt;}
.y111{bottom:338.848667pt;}
.y1db{bottom:339.160000pt;}
.y17c{bottom:342.756667pt;}
.yf1{bottom:347.026667pt;}
.y1ba{bottom:347.084000pt;}
.ycc{bottom:348.424667pt;}
.y157{bottom:348.534667pt;}
.y39{bottom:348.688000pt;}
.y132{bottom:352.368000pt;}
.ya8{bottom:354.164000pt;}
.y5e{bottom:355.296000pt;}
.y1da{bottom:357.164000pt;}
.y83{bottom:357.364667pt;}
.y110{bottom:357.386667pt;}
.y199{bottom:359.614000pt;}
.y17b{bottom:361.208667pt;}
.yf0{bottom:365.242667pt;}
.y1b9{bottom:365.928000pt;}
.y156{bottom:366.689333pt;}
.y38{bottom:366.842667pt;}
.ycb{bottom:368.158667pt;}
.y13{bottom:369.558667pt;}
.y131{bottom:370.369333pt;}
.ya7{bottom:372.840000pt;}
.y5d{bottom:373.926000pt;}
.y82{bottom:375.902667pt;}
.y10f{bottom:375.924667pt;}
.y198{bottom:378.556000pt;}
.y1d9{bottom:382.728000pt;}
.yef{bottom:383.458667pt;}
.y155{bottom:384.844000pt;}
.y37{bottom:384.997333pt;}
.y17a{bottom:387.220667pt;}
.y12{bottom:387.332000pt;}
.yca{bottom:387.892667pt;}
.y130{bottom:388.370667pt;}
.ya6{bottom:391.516000pt;}
.y1b8{bottom:392.332000pt;}
.y5c{bottom:392.556000pt;}
.y81{bottom:394.440667pt;}
.y10e{bottom:394.462667pt;}
.y1d8{bottom:400.732000pt;}
.yee{bottom:401.674667pt;}
.y154{bottom:402.998667pt;}
.y36{bottom:403.152000pt;}
.y197{bottom:405.058000pt;}
.y11{bottom:405.105333pt;}
.y179{bottom:406.330667pt;}
.y12f{bottom:406.372000pt;}
.yc9{bottom:407.626667pt;}
.ya5{bottom:410.192000pt;}
.y1b7{bottom:411.176000pt;}
.y5b{bottom:411.186000pt;}
.y80{bottom:412.978667pt;}
.y10d{bottom:413.000667pt;}
.yed{bottom:419.890667pt;}
.y153{bottom:421.153333pt;}
.y35{bottom:421.306667pt;}
.y10{bottom:422.878667pt;}
.y12e{bottom:424.373333pt;}
.y1d7{bottom:426.296000pt;}
.yc8{bottom:427.360667pt;}
.ya4{bottom:428.868000pt;}
.y5a{bottom:429.816000pt;}
.y7f{bottom:431.516667pt;}
.y10c{bottom:431.538667pt;}
.y196{bottom:431.560000pt;}
.y1b6{bottom:437.580000pt;}
.yec{bottom:438.106667pt;}
.y152{bottom:439.308000pt;}
.y34{bottom:439.461333pt;}
.yf{bottom:440.652000pt;}
.y12d{bottom:442.374667pt;}
.y1d6{bottom:444.300000pt;}
.yc7{bottom:447.094667pt;}
.ya3{bottom:447.544000pt;}
.y7e{bottom:450.054667pt;}
.y10b{bottom:450.076667pt;}
.y178{bottom:451.927333pt;}
.yeb{bottom:456.322667pt;}
.y1b5{bottom:456.424000pt;}
.y151{bottom:457.462667pt;}
.y33{bottom:457.616000pt;}
.y195{bottom:458.062000pt;}
.ye{bottom:458.425333pt;}
.y12c{bottom:460.376000pt;}
.ya2{bottom:466.220000pt;}
.yc6{bottom:466.828667pt;}
.y59{bottom:467.078667pt;}
.y7d{bottom:468.592667pt;}
.y10a{bottom:468.614667pt;}
.y1d5{bottom:469.864000pt;}
.y177{bottom:470.373333pt;}
.yea{bottom:474.538667pt;}
.y1b4{bottom:475.268000pt;}
.y150{bottom:475.617333pt;}
.y32{bottom:475.770667pt;}
.yd{bottom:476.198667pt;}
.y194{bottom:477.004000pt;}
.y12b{bottom:478.377333pt;}
.ya1{bottom:484.896000pt;}
.y58{bottom:485.705333pt;}
.yc5{bottom:486.657333pt;}
.y109{bottom:487.152667pt;}
.y7c{bottom:487.182000pt;}
.y1d4{bottom:487.868000pt;}
.y176{bottom:488.819333pt;}
.ye9{bottom:492.754667pt;}
.y14f{bottom:493.772000pt;}
.y31{bottom:493.925333pt;}
.yc{bottom:493.972000pt;}
.y1b3{bottom:494.112000pt;}
.y12a{bottom:496.378667pt;}
.y1f3{bottom:496.608000pt;}
.y193{bottom:503.506000pt;}
.ya0{bottom:503.572000pt;}
.y57{bottom:504.332000pt;}
.y108{bottom:505.690667pt;}
.y7b{bottom:505.720000pt;}
.y1d3{bottom:505.872000pt;}
.yc4{bottom:506.391333pt;}
.y175{bottom:507.265333pt;}
.ye8{bottom:510.970667pt;}
.yb{bottom:511.745333pt;}
.y14e{bottom:511.926667pt;}
.y30{bottom:512.080000pt;}
.y129{bottom:514.380000pt;}
.y1f2{bottom:514.608000pt;}
.y1b2{bottom:520.516000pt;}
.y9f{bottom:522.248000pt;}
.y192{bottom:522.448000pt;}
.y56{bottom:522.951333pt;}
.y107{bottom:524.228667pt;}
.y7a{bottom:524.258000pt;}
.y174{bottom:525.711333pt;}
.yc3{bottom:526.125333pt;}
.ye7{bottom:529.186667pt;}
.y14d{bottom:530.081333pt;}
.y2f{bottom:530.234667pt;}
.y1d2{bottom:531.436000pt;}
.y128{bottom:532.381333pt;}
.y1f1{bottom:532.608000pt;}
.y1b1{bottom:539.360000pt;}
.ya{bottom:540.852000pt;}
.y9e{bottom:540.924000pt;}
.y191{bottom:541.390000pt;}
.y55{bottom:541.581333pt;}
.y106{bottom:542.788667pt;}
.y79{bottom:542.796000pt;}
.y173{bottom:544.157333pt;}
.yc2{bottom:545.859333pt;}
.ye6{bottom:547.402667pt;}
.y14c{bottom:548.236000pt;}
.y2e{bottom:548.389333pt;}
.y1d1{bottom:549.440000pt;}
.y127{bottom:550.382667pt;}
.y9d{bottom:559.600000pt;}
.y54{bottom:560.211333pt;}
.y105{bottom:561.326667pt;}
.y78{bottom:561.334000pt;}
.y1f0{bottom:561.941333pt;}
.y172{bottom:562.603333pt;}
.yc1{bottom:565.593333pt;}
.ye5{bottom:565.618667pt;}
.y1b0{bottom:565.764000pt;}
.y14b{bottom:566.390667pt;}
.y2d{bottom:566.544000pt;}
.y190{bottom:567.892000pt;}
.y126{bottom:568.384000pt;}
.y1d0{bottom:575.004000pt;}
.y9c{bottom:578.284000pt;}
.y53{bottom:578.841333pt;}
.y104{bottom:579.864667pt;}
.y77{bottom:579.872000pt;}
.y171{bottom:581.049333pt;}
.ye4{bottom:583.834667pt;}
.y14a{bottom:584.545333pt;}
.y1af{bottom:584.608000pt;}
.y2c{bottom:584.698667pt;}
.yc0{bottom:585.327333pt;}
.y125{bottom:586.385333pt;}
.y18f{bottom:586.834000pt;}
.y9{bottom:592.638667pt;}
.y1cf{bottom:593.008000pt;}
.y9b{bottom:596.960000pt;}
.y52{bottom:597.471333pt;}
.y76{bottom:598.410000pt;}
.y103{bottom:598.446667pt;}
.y1ef{bottom:598.834667pt;}
.y170{bottom:599.495333pt;}
.ye3{bottom:602.050667pt;}
.y149{bottom:602.700000pt;}
.y2b{bottom:602.853333pt;}
.y124{bottom:604.386667pt;}
.ybf{bottom:605.061333pt;}
.y1ae{bottom:611.012000pt;}
.y18e{bottom:613.336000pt;}
.y9a{bottom:615.636000pt;}
.y51{bottom:616.101333pt;}
.y1ee{bottom:616.168000pt;}
.y102{bottom:616.984667pt;}
.y75{bottom:617.021333pt;}
.y16f{bottom:617.941333pt;}
.y1ce{bottom:618.572000pt;}
.ye2{bottom:620.266667pt;}
.y148{bottom:620.854667pt;}
.y2a{bottom:621.008000pt;}
.y123{bottom:622.388000pt;}
.ybe{bottom:624.795333pt;}
.y1ad{bottom:629.856000pt;}
.y1ed{bottom:633.501333pt;}
.y99{bottom:634.312000pt;}
.y50{bottom:634.731333pt;}
.y101{bottom:635.522667pt;}
.y74{bottom:635.559333pt;}
.y8{bottom:635.973333pt;}
.y16e{bottom:636.387333pt;}
.y1cd{bottom:636.576000pt;}
.ye1{bottom:638.482667pt;}
.y147{bottom:639.009333pt;}
.y29{bottom:639.162667pt;}
.y18d{bottom:639.838000pt;}
.y122{bottom:640.389333pt;}
.ybd{bottom:644.529333pt;}
.y1ec{bottom:650.834667pt;}
.y98{bottom:652.988000pt;}
.y4f{bottom:653.361333pt;}
.y100{bottom:654.060667pt;}
.y73{bottom:654.097333pt;}
.y16d{bottom:654.833333pt;}
.y1ac{bottom:656.260000pt;}
.ye0{bottom:656.698667pt;}
.y146{bottom:657.164000pt;}
.y28{bottom:657.317333pt;}
.y121{bottom:658.390667pt;}
.y1cc{bottom:662.140000pt;}
.ybc{bottom:664.263333pt;}
.y7{bottom:664.413333pt;}
.y1eb{bottom:668.168000pt;}
.y97{bottom:671.664000pt;}
.y4e{bottom:671.991333pt;}
.yff{bottom:672.598667pt;}
.y72{bottom:672.635333pt;}
.y16c{bottom:673.279333pt;}
.ydf{bottom:674.889333pt;}
.y1ab{bottom:675.104000pt;}
.y145{bottom:675.318667pt;}
.y27{bottom:675.472000pt;}
.y120{bottom:676.392000pt;}
.y1cb{bottom:680.144000pt;}
.ybb{bottom:683.997333pt;}
.y1ea{bottom:685.501333pt;}
.y18c{bottom:685.898000pt;}
.y96{bottom:690.340000pt;}
.y4d{bottom:690.621333pt;}
.yfe{bottom:691.136667pt;}
.y71{bottom:691.173333pt;}
.y16b{bottom:691.725333pt;}
.yde{bottom:693.105333pt;}
.y144{bottom:693.473333pt;}
.y26{bottom:693.626667pt;}
.y11f{bottom:694.393333pt;}
.y1aa{bottom:701.508000pt;}
.y1e9{bottom:702.834667pt;}
.yba{bottom:703.731333pt;}
.y18b{bottom:704.840000pt;}
.y1ca{bottom:705.708000pt;}
.y95{bottom:709.021333pt;}
.y4c{bottom:709.251333pt;}
.y70{bottom:709.711333pt;}
.y16a{bottom:710.171333pt;}
.ydd{bottom:711.321333pt;}
.y143{bottom:711.628000pt;}
.y25{bottom:711.781333pt;}
.y11e{bottom:712.394667pt;}
.y6{bottom:719.302667pt;}
.y1e8{bottom:720.168000pt;}
.y1a9{bottom:720.352000pt;}
.yb9{bottom:723.465333pt;}
.y1c9{bottom:723.712000pt;}
.y94{bottom:727.697333pt;}
.y4b{bottom:727.881333pt;}
.y6f{bottom:728.249333pt;}
.y169{bottom:728.617333pt;}
.ydc{bottom:729.537333pt;}
.y142{bottom:729.782667pt;}
.y24{bottom:729.936000pt;}
.y11d{bottom:730.396000pt;}
.y18a{bottom:731.342000pt;}
.y5{bottom:738.409333pt;}
.y1a8{bottom:739.196000pt;}
.yb8{bottom:743.199333pt;}
.y93{bottom:746.373333pt;}
.y4a{bottom:746.511333pt;}
.y6e{bottom:746.787333pt;}
.y168{bottom:747.063333pt;}
.ydb{bottom:747.753333pt;}
.y141{bottom:747.937333pt;}
.y23{bottom:748.090667pt;}
.y11c{bottom:748.397333pt;}
.y1e7{bottom:748.834667pt;}
.y1c8{bottom:749.276000pt;}
.y189{bottom:750.284000pt;}
.y4{bottom:757.516000pt;}
.yb7{bottom:762.933333pt;}
.y92{bottom:765.049333pt;}
.y49{bottom:765.141333pt;}
.y6d{bottom:765.325333pt;}
.y167{bottom:765.509333pt;}
.y1a7{bottom:765.600000pt;}
.yda{bottom:765.969333pt;}
.y140{bottom:766.092000pt;}
.y22{bottom:766.245333pt;}
.y11b{bottom:766.398667pt;}
.y1c7{bottom:767.280000pt;}
.y188{bottom:776.786000pt;}
.yb6{bottom:782.667333pt;}
.y91{bottom:783.725333pt;}
.y48{bottom:783.771333pt;}
.y6c{bottom:783.863333pt;}
.y166{bottom:783.955333pt;}
.y3{bottom:784.182667pt;}
.yd9{bottom:784.185333pt;}
.y13f{bottom:784.246667pt;}
.y21{bottom:784.400000pt;}
.y20{bottom:784.401333pt;}
.y1a6{bottom:784.444000pt;}
.y1c6{bottom:785.284000pt;}
.y1e6{bottom:800.184000pt;}
.y47{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y1f{bottom:842.834667pt;}
.he{height:22.887305pt;}
.h11{height:35.026354pt;}
.hb{height:35.029021pt;}
.h8{height:40.604167pt;}
.hd{height:43.619792pt;}
.h13{height:45.286458pt;}
.hc{height:45.679688pt;}
.h12{height:45.800781pt;}
.h4{height:50.755208pt;}
.h3{height:53.292969pt;}
.h10{height:58.280490pt;}
.ha{height:58.368490pt;}
.hf{height:58.469823pt;}
.h2{height:63.444010pt;}
.h7{height:71.057292pt;}
.h6{height:78.515625pt;}
.h5{height:91.359375pt;}
.h9{height:144.825124pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.936533pt;}
.x6{left:73.079333pt;}
.x5{left:74.600000pt;}
.x1{left:75.590533pt;}
.x7{left:88.380000pt;}
.xb{left:92.484000pt;}
.x4{left:93.493333pt;}
.x8{left:94.728133pt;}
.x9{left:131.922267pt;}
.x2{left:206.289333pt;}
.x3{left:207.606667pt;}
}




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