
    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_9f09ba3d3f6d3eedd0ea9794.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_d7a0712de6c8f1d837bd26b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_b9dbe7daf362d5d16cb72083.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_9fb3803b11fe3cdbfb12e3ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968750;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_c7d6d92853b2f38e807f9b30.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026367;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_f7ec965c9da88679f2363c81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.770020;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_71420c3f3d533f78b151db7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a67531186d18365d0c015f24.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_63b68c5f58ad25f36338b578.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.784000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_482334352aeeaf5d1b90515e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7a2ccfdc11b6e314947f59ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.027344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_12f32339cc108b3d7e5356e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a817e1f329a530f37388a3c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_47822d4929de57d75590e5ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.021973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d456a16593c40f29dedcd8a1.woff2')format("woff");}.fff{font-family:fff;line-height:1.021973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ca18877f493b9b2891b6acf8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.972809;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:23.100600px;}
.v3{vertical-align:32.400000px;}
.ls9{letter-spacing:-3.366000px;}
.lsc{letter-spacing:-2.856000px;}
.ls8{letter-spacing:-2.700000px;}
.ls2{letter-spacing:-2.040000px;}
.lse{letter-spacing:-1.836000px;}
.lsb{letter-spacing:-1.242000px;}
.ls6{letter-spacing:-1.134000px;}
.ls12{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.204000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005772px;}
.ls3{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.432200px;}
.ls10{letter-spacing:2.040000px;}
.ls4{letter-spacing:2.520000px;}
.ls11{letter-spacing:4.104000px;}
.lsa{letter-spacing:406.044600px;}
.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;}
}
.ws1{word-spacing:-31.560000px;}
.wsae{word-spacing:-28.560000px;}
.wsbd{word-spacing:-28.356000px;}
.wsce{word-spacing:-26.724000px;}
.ws7c{word-spacing:-25.704000px;}
.wsd5{word-spacing:-19.224000px;}
.ws19{word-spacing:-17.700000px;}
.ws58{word-spacing:-17.496000px;}
.ws4{word-spacing:-17.340000px;}
.wsd8{word-spacing:-16.620000px;}
.ws1a{word-spacing:-14.940000px;}
.wsd6{word-spacing:-14.580000px;}
.wsd7{word-spacing:-14.460000px;}
.ws0{word-spacing:-13.122000px;}
.wscb{word-spacing:-12.906000px;}
.ws3{word-spacing:-11.904000px;}
.ws1b{word-spacing:-11.664000px;}
.ws18{word-spacing:-11.568000px;}
.ws2{word-spacing:-8.675040px;}
.ws9a{word-spacing:-4.896000px;}
.ws7d{word-spacing:-4.392000px;}
.ws83{word-spacing:-4.104000px;}
.wscc{word-spacing:-3.672000px;}
.wsba{word-spacing:-3.456000px;}
.ws7f{word-spacing:-3.240000px;}
.wsc2{word-spacing:-3.168000px;}
.wsa5{word-spacing:-3.096000px;}
.wsa0{word-spacing:-3.024000px;}
.wsd9{word-spacing:-2.820000px;}
.ws60{word-spacing:-2.808000px;}
.ws9d{word-spacing:-2.736000px;}
.wsd3{word-spacing:-2.664000px;}
.ws77{word-spacing:-2.592000px;}
.ws34{word-spacing:-2.580000px;}
.ws7{word-spacing:-2.520000px;}
.wsb6{word-spacing:-2.448000px;}
.wsb0{word-spacing:-2.376000px;}
.wsa8{word-spacing:-2.304000px;}
.ws90{word-spacing:-2.160000px;}
.ws39{word-spacing:-2.100000px;}
.ws47{word-spacing:-2.088000px;}
.ws67{word-spacing:-2.016000px;}
.ws9f{word-spacing:-1.944000px;}
.wsb8{word-spacing:-1.872000px;}
.wse1{word-spacing:-1.740000px;}
.ws4f{word-spacing:-1.728000px;}
.ws6f{word-spacing:-1.656000px;}
.ws2f{word-spacing:-1.620000px;}
.wsc5{word-spacing:-1.512000px;}
.ws92{word-spacing:-1.440000px;}
.ws5c{word-spacing:-1.224000px;}
.wsa3{word-spacing:-1.152000px;}
.wsd0{word-spacing:-1.080000px;}
.ws97{word-spacing:-1.008000px;}
.ws72{word-spacing:-0.864000px;}
.wse4{word-spacing:-0.840000px;}
.wsb1{word-spacing:-0.792000px;}
.ws50{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.648000px;}
.ws87{word-spacing:-0.600000px;}
.wsa4{word-spacing:-0.576000px;}
.ws69{word-spacing:-0.504000px;}
.ws6{word-spacing:-0.480000px;}
.ws22{word-spacing:-0.360000px;}
.wsa6{word-spacing:-0.288000px;}
.ws81{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.144000px;}
.ws23{word-spacing:-0.120000px;}
.ws93{word-spacing:-0.072000px;}
.ws2b{word-spacing:-0.060000px;}
.ws66{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws82{word-spacing:0.072000px;}
.ws86{word-spacing:0.144000px;}
.ws75{word-spacing:0.216000px;}
.ws33{word-spacing:0.240000px;}
.ws5b{word-spacing:0.288000px;}
.wse{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.ws7e{word-spacing:0.432000px;}
.ws64{word-spacing:0.504000px;}
.wse7{word-spacing:0.540000px;}
.wsa9{word-spacing:0.576000px;}
.wse6{word-spacing:0.600000px;}
.ws73{word-spacing:0.648000px;}
.ws20{word-spacing:0.660000px;}
.ws1f{word-spacing:0.720000px;}
.ws43{word-spacing:0.792000px;}
.ws9e{word-spacing:0.864000px;}
.wsda{word-spacing:0.924000px;}
.ws78{word-spacing:1.008000px;}
.ws3d{word-spacing:1.080000px;}
.ws84{word-spacing:1.152000px;}
.ws59{word-spacing:1.224000px;}
.ws76{word-spacing:1.296000px;}
.ws31{word-spacing:1.320000px;}
.ws3f{word-spacing:1.440000px;}
.wsaf{word-spacing:1.512000px;}
.wsad{word-spacing:1.584000px;}
.ws24{word-spacing:1.680000px;}
.ws13{word-spacing:1.740000px;}
.wsa2{word-spacing:1.800000px;}
.ws2e{word-spacing:1.860000px;}
.ws4e{word-spacing:1.872000px;}
.ws36{word-spacing:1.920000px;}
.ws4b{word-spacing:1.944000px;}
.ws30{word-spacing:1.980000px;}
.ws54{word-spacing:2.016000px;}
.ws10{word-spacing:2.040000px;}
.ws45{word-spacing:2.088000px;}
.ws8a{word-spacing:2.100000px;}
.ws42{word-spacing:2.160000px;}
.wsbf{word-spacing:2.232000px;}
.ws91{word-spacing:2.304000px;}
.ws41{word-spacing:2.376000px;}
.ws15{word-spacing:2.400000px;}
.ws9b{word-spacing:2.448000px;}
.wsc1{word-spacing:2.520000px;}
.ws17{word-spacing:2.580000px;}
.wsaa{word-spacing:2.592000px;}
.ws3b{word-spacing:2.700000px;}
.ws55{word-spacing:2.736000px;}
.wscf{word-spacing:2.808000px;}
.wsc4{word-spacing:2.880000px;}
.ws35{word-spacing:2.940000px;}
.ws8c{word-spacing:2.952000px;}
.wsd2{word-spacing:3.024000px;}
.ws8e{word-spacing:3.096000px;}
.ws85{word-spacing:3.120000px;}
.wsb7{word-spacing:3.168000px;}
.wse0{word-spacing:3.180000px;}
.ws3a{word-spacing:3.240000px;}
.ws3c{word-spacing:3.366000px;}
.wscd{word-spacing:3.384000px;}
.wsb{word-spacing:3.480000px;}
.ws5a{word-spacing:3.528000px;}
.ws8{word-spacing:3.540000px;}
.ws1e{word-spacing:3.564000px;}
.ws25{word-spacing:3.600000px;}
.ws37{word-spacing:3.660000px;}
.wsc3{word-spacing:3.672000px;}
.wsca{word-spacing:3.744000px;}
.ws5d{word-spacing:3.888000px;}
.ws65{word-spacing:3.960000px;}
.ws71{word-spacing:4.032000px;}
.ws26{word-spacing:4.080000px;}
.ws44{word-spacing:4.176000px;}
.wsac{word-spacing:4.248000px;}
.ws1c{word-spacing:4.260000px;}
.ws53{word-spacing:4.320000px;}
.ws2a{word-spacing:4.380000px;}
.ws2c{word-spacing:4.440000px;}
.wsa1{word-spacing:4.464000px;}
.wsc{word-spacing:4.500000px;}
.wsbe{word-spacing:4.536000px;}
.ws1d{word-spacing:4.620000px;}
.wsd{word-spacing:4.680000px;}
.ws56{word-spacing:4.752000px;}
.ws63{word-spacing:4.824000px;}
.ws68{word-spacing:4.896000px;}
.ws99{word-spacing:4.968000px;}
.ws8f{word-spacing:5.112000px;}
.wsc7{word-spacing:5.184000px;}
.wsb2{word-spacing:5.256000px;}
.ws21{word-spacing:5.340000px;}
.wsf{word-spacing:5.400000px;}
.ws2d{word-spacing:5.520000px;}
.wsbc{word-spacing:5.616000px;}
.ws61{word-spacing:5.688000px;}
.ws16{word-spacing:5.700000px;}
.wsc8{word-spacing:5.760000px;}
.ws51{word-spacing:5.832000px;}
.ws8b{word-spacing:5.880000px;}
.wsc0{word-spacing:5.976000px;}
.ws40{word-spacing:6.120000px;}
.wsd1{word-spacing:6.192000px;}
.wsa7{word-spacing:6.264000px;}
.wse9{word-spacing:6.300000px;}
.wse8{word-spacing:6.360000px;}
.ws6e{word-spacing:6.408000px;}
.ws29{word-spacing:6.480000px;}
.ws74{word-spacing:6.624000px;}
.ws80{word-spacing:6.696000px;}
.ws32{word-spacing:6.720000px;}
.ws5f{word-spacing:6.768000px;}
.wsb5{word-spacing:6.840000px;}
.ws9{word-spacing:6.960000px;}
.ws49{word-spacing:6.984000px;}
.ws3e{word-spacing:7.128000px;}
.ws7a{word-spacing:7.344000px;}
.ws79{word-spacing:7.416000px;}
.ws9c{word-spacing:7.488000px;}
.ws14{word-spacing:7.500000px;}
.ws4c{word-spacing:7.560000px;}
.ws12{word-spacing:7.680000px;}
.wsde{word-spacing:7.860000px;}
.wsdd{word-spacing:7.920000px;}
.wsb9{word-spacing:7.992000px;}
.ws94{word-spacing:8.064000px;}
.ws52{word-spacing:8.136000px;}
.wsd4{word-spacing:8.208000px;}
.ws38{word-spacing:8.280000px;}
.ws5e{word-spacing:8.352000px;}
.ws89{word-spacing:8.424000px;}
.ws11{word-spacing:8.580000px;}
.ws88{word-spacing:8.640000px;}
.wse5{word-spacing:8.700000px;}
.ws46{word-spacing:8.712000px;}
.wsab{word-spacing:8.784000px;}
.ws4a{word-spacing:9.000000px;}
.wse2{word-spacing:9.240000px;}
.wsc9{word-spacing:9.288000px;}
.ws96{word-spacing:9.360000px;}
.wsbb{word-spacing:9.576000px;}
.wsc6{word-spacing:9.792000px;}
.ws70{word-spacing:9.864000px;}
.wsb4{word-spacing:10.152000px;}
.wseb{word-spacing:10.500000px;}
.wsea{word-spacing:10.620000px;}
.ws28{word-spacing:11.040000px;}
.ws8d{word-spacing:11.088000px;}
.ws27{word-spacing:11.280000px;}
.ws57{word-spacing:11.736000px;}
.ws4d{word-spacing:11.880000px;}
.ws7b{word-spacing:12.312000px;}
.wsdc{word-spacing:14.400000px;}
.wsdb{word-spacing:14.520000px;}
.wsb3{word-spacing:15.984000px;}
.wsdf{word-spacing:18.060000px;}
.wse3{word-spacing:49.620000px;}
.ws98{word-spacing:68.820000px;}
.ws95{word-spacing:69.900000px;}
.ws6d{word-spacing:378.379200px;}
.ws6a{word-spacing:951.808800px;}
.ws6c{word-spacing:1005.795000px;}
.ws6b{word-spacing:1020.573600px;}
._19{margin-left:-9.993000px;}
._17{margin-left:-7.461000px;}
._0{margin-left:-5.859000px;}
._5{margin-left:-4.621860px;}
._1{margin-left:-3.132000px;}
._2{margin-left:-2.100000px;}
._4{margin-left:-1.092000px;}
._3{width:1.800000px;}
._8{width:3.259200px;}
._6{width:4.452000px;}
._9{width:6.045000px;}
._b{width:7.567200px;}
._c{width:8.568600px;}
._14{width:11.088000px;}
._18{width:18.169200px;}
._11{width:68.820000px;}
._10{width:69.900000px;}
._12{width:71.160000px;}
._13{width:82.200000px;}
._7{width:151.811400px;}
._16{width:225.149400px;}
._f{width:298.589400px;}
._15{width:300.670800px;}
._e{width:605.567400px;}
._a{width:625.756200px;}
._d{width:883.619400px;}
.fc3{color:rgb(157,44,63);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(129,178,49);}
.fc0{color:rgb(101,98,99);}
.fs6{font-size:31.482000px;}
.fs4{font-size:34.980000px;}
.fs5{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs8{font-size:102.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:50.527500px;}
.y1{bottom:52.591500px;}
.y3a{bottom:52.653600px;}
.y39{bottom:53.249550px;}
.y38{bottom:99.618900px;}
.y201{bottom:104.940900px;}
.y5a{bottom:105.253950px;}
.y112{bottom:109.523550px;}
.y162{bottom:113.285400px;}
.y1cc{bottom:113.515800px;}
.y37{bottom:117.618900px;}
.y13a{bottom:117.785400px;}
.y186{bottom:119.285400px;}
.y9a{bottom:120.637650px;}
.y59{bottom:123.253950px;}
.yc7{bottom:128.421300px;}
.y200{bottom:128.940900px;}
.y228{bottom:131.515800px;}
.y111{bottom:133.523550px;}
.y139{bottom:137.285400px;}
.y1cb{bottom:137.515800px;}
.yee{bottom:139.027650px;}
.y36{bottom:139.870950px;}
.y58{bottom:141.253950px;}
.y185{bottom:143.285400px;}
.y1aa{bottom:144.265800px;}
.y99{bottom:144.637650px;}
.yc6{bottom:152.421300px;}
.y227{bottom:155.515800px;}
.y110{bottom:157.523550px;}
.y35{bottom:157.870950px;}
.y57{bottom:159.253950px;}
.y161{bottom:161.285400px;}
.y1ca{bottom:161.515800px;}
.y1ff{bottom:161.940900px;}
.yed{bottom:163.027650px;}
.y138{bottom:165.785400px;}
.y184{bottom:167.285400px;}
.y1a9{bottom:168.265800px;}
.y34{bottom:175.870950px;}
.yc5{bottom:176.421300px;}
.y56{bottom:177.253950px;}
.y98{bottom:177.637650px;}
.y226{bottom:179.515800px;}
.y10f{bottom:181.523550px;}
.y160{bottom:185.285400px;}
.y1c9{bottom:185.515800px;}
.y1fe{bottom:185.940900px;}
.yec{bottom:187.027650px;}
.y137{bottom:189.785400px;}
.y1a8{bottom:192.265800px;}
.y33{bottom:193.870950px;}
.y55{bottom:195.253950px;}
.y183{bottom:200.285400px;}
.y97{bottom:201.637650px;}
.y225{bottom:203.515800px;}
.y10e{bottom:205.523550px;}
.y15f{bottom:209.285400px;}
.y1c8{bottom:209.515800px;}
.yeb{bottom:211.027650px;}
.y32{bottom:211.870950px;}
.y54{bottom:213.253950px;}
.y136{bottom:213.785400px;}
.y1a7{bottom:216.265800px;}
.y1fd{bottom:218.940900px;}
.y182{bottom:224.285400px;}
.y96{bottom:225.637650px;}
.y224{bottom:227.515800px;}
.y53{bottom:231.253950px;}
.yc4{bottom:231.594150px;}
.y135{bottom:233.285400px;}
.y31{bottom:234.122850px;}
.y10d{bottom:238.523550px;}
.y1a6{bottom:240.265800px;}
.y1c7{bottom:242.515800px;}
.y1fc{bottom:242.940900px;}
.yea{bottom:244.027650px;}
.yc3{bottom:247.794150px;}
.y181{bottom:248.285400px;}
.y52{bottom:249.253950px;}
.y30{bottom:252.122850px;}
.y134{bottom:252.785400px;}
.y10c{bottom:257.273550px;}
.y95{bottom:258.637650px;}
.y223{bottom:260.515800px;}
.y15e{bottom:266.285400px;}
.y1c6{bottom:266.515800px;}
.y51{bottom:267.253950px;}
.ye9{bottom:268.027650px;}
.y2f{bottom:270.122850px;}
.y180{bottom:272.285400px;}
.y1a5{bottom:273.265800px;}
.yc2{bottom:274.927050px;}
.y1fb{bottom:275.940900px;}
.y10b{bottom:276.023550px;}
.y133{bottom:281.285400px;}
.y94{bottom:282.637650px;}
.y222{bottom:284.515800px;}
.y2e{bottom:288.122850px;}
.y50{bottom:289.505850px;}
.y15d{bottom:290.285400px;}
.y1c5{bottom:290.515800px;}
.yc1{bottom:291.127050px;}
.ye8{bottom:292.027650px;}
.y17f{bottom:296.285400px;}
.y1a4{bottom:297.265800px;}
.y1fa{bottom:299.940900px;}
.y10a{bottom:303.773550px;}
.y132{bottom:305.285400px;}
.y2d{bottom:306.122850px;}
.y93{bottom:306.637650px;}
.y4f{bottom:307.505850px;}
.y15c{bottom:314.285400px;}
.y1c4{bottom:314.515800px;}
.y221{bottom:317.515800px;}
.yc0{bottom:318.259800px;}
.y17e{bottom:320.285400px;}
.y1a3{bottom:321.265800px;}
.y109{bottom:322.523550px;}
.y1f9{bottom:323.940900px;}
.ye7{bottom:325.027650px;}
.y4e{bottom:325.505850px;}
.y2c{bottom:328.374900px;}
.y131{bottom:329.285400px;}
.y1f{bottom:329.940900px;}
.y92{bottom:330.637650px;}
.ybf{bottom:334.459800px;}
.y15b{bottom:338.285400px;}
.y1c3{bottom:338.515800px;}
.y24d{bottom:339.218100px;}
.ybb{bottom:339.779550px;}
.y220{bottom:341.515800px;}
.y4d{bottom:343.505850px;}
.y17d{bottom:344.285400px;}
.y1a2{bottom:345.265800px;}
.y2b{bottom:346.374900px;}
.y1e{bottom:346.440900px;}
.y1f8{bottom:347.940900px;}
.ye6{bottom:349.027650px;}
.y108{bottom:350.273550px;}
.ybe{bottom:350.659800px;}
.y91{bottom:354.637650px;}
.yba{bottom:354.779550px;}
.y130{bottom:357.785400px;}
.y24c{bottom:358.718100px;}
.y4c{bottom:361.505850px;}
.y15a{bottom:362.285400px;}
.y1c2{bottom:362.515800px;}
.y1d{bottom:362.940900px;}
.y2a{bottom:364.374900px;}
.y21f{bottom:365.515800px;}
.y17c{bottom:368.285400px;}
.y1a1{bottom:369.265800px;}
.yb9{bottom:369.779550px;}
.y1f7{bottom:371.940900px;}
.ye5{bottom:373.027650px;}
.y1f3{bottom:373.440900px;}
.y107{bottom:374.273550px;}
.ybd{bottom:377.792700px;}
.y90{bottom:378.637650px;}
.y4b{bottom:379.505850px;}
.y1c{bottom:381.566850px;}
.y12f{bottom:381.785400px;}
.y29{bottom:382.374900px;}
.y24b{bottom:382.470000px;}
.yb8{bottom:384.779550px;}
.y159{bottom:386.285400px;}
.y1f2{bottom:388.440900px;}
.y21e{bottom:389.515800px;}
.y17b{bottom:392.285400px;}
.y1c1{bottom:395.515800px;}
.y1f6{bottom:395.940900px;}
.ye4{bottom:397.027650px;}
.y4a{bottom:397.505850px;}
.yb7{bottom:399.779550px;}
.y24a{bottom:401.970150px;}
.y1a0{bottom:402.265800px;}
.y8f{bottom:402.637650px;}
.y1f1{bottom:403.440900px;}
.y28{bottom:404.626800px;}
.ybc{bottom:404.925600px;}
.y12e{bottom:405.785400px;}
.y1b{bottom:407.196750px;}
.y106{bottom:407.273550px;}
.y158{bottom:410.285400px;}
.yb6{bottom:414.779550px;}
.y49{bottom:415.505850px;}
.y17a{bottom:416.285400px;}
.y1f0{bottom:418.440900px;}
.y1c0{bottom:419.515800px;}
.y1f5{bottom:419.940900px;}
.ye3{bottom:421.027650px;}
.y21d{bottom:422.515800px;}
.y27{bottom:422.626800px;}
.y1a{bottom:423.696750px;}
.y249{bottom:425.722050px;}
.y105{bottom:426.023550px;}
.y19f{bottom:426.265800px;}
.y12d{bottom:429.785400px;}
.y1ef{bottom:433.440900px;}
.y48{bottom:433.505850px;}
.y8e{bottom:435.637650px;}
.y179{bottom:440.285400px;}
.y26{bottom:440.626800px;}
.y19{bottom:442.322850px;}
.y157{bottom:443.285400px;}
.y1bf{bottom:443.515800px;}
.y1f4{bottom:443.940900px;}
.ye2{bottom:445.027650px;}
.y248{bottom:445.222050px;}
.y21c{bottom:446.515800px;}
.y1ee{bottom:448.440900px;}
.yb5{bottom:448.535400px;}
.y19e{bottom:450.265800px;}
.y47{bottom:451.505850px;}
.y104{bottom:453.773550px;}
.y12c{bottom:453.785400px;}
.y25{bottom:458.626800px;}
.y8d{bottom:459.637650px;}
.y178{bottom:464.285400px;}
.y247{bottom:464.722050px;}
.y156{bottom:467.285400px;}
.y1be{bottom:467.515800px;}
.y18{bottom:467.952750px;}
.ye1{bottom:469.027650px;}
.y21b{bottom:470.515800px;}
.y103{bottom:472.523550px;}
.yb4{bottom:472.535400px;}
.y12b{bottom:473.285400px;}
.y19d{bottom:474.265800px;}
.y24{bottom:476.626800px;}
.y46{bottom:480.998550px;}
.y8c{bottom:483.637650px;}
.y17{bottom:486.578700px;}
.y246{bottom:488.474100px;}
.y155{bottom:491.285400px;}
.y12a{bottom:492.785400px;}
.y1ed{bottom:494.420700px;}
.y23{bottom:494.626800px;}
.yb3{bottom:496.535400px;}
.y19c{bottom:498.265800px;}
.y102{bottom:500.273550px;}
.ye0{bottom:502.027650px;}
.y16{bottom:505.204800px;}
.y8b{bottom:507.637650px;}
.y245{bottom:507.974100px;}
.y1bd{bottom:508.523550px;}
.y1ec{bottom:510.620700px;}
.y129{bottom:512.285400px;}
.y154{bottom:515.285400px;}
.yb2{bottom:520.535400px;}
.y22{bottom:521.130750px;}
.y45{bottom:521.726550px;}
.y19b{bottom:522.265800px;}
.y15{bottom:523.830750px;}
.y101{bottom:524.273550px;}
.ydf{bottom:526.027650px;}
.y1eb{bottom:526.820700px;}
.y21a{bottom:527.389350px;}
.y8a{bottom:531.637650px;}
.y244{bottom:531.726000px;}
.y128{bottom:531.785400px;}
.y44{bottom:538.226550px;}
.y153{bottom:539.285400px;}
.y1ea{bottom:543.020700px;}
.y219{bottom:543.589350px;}
.yb1{bottom:544.535400px;}
.y177{bottom:546.035400px;}
.y19a{bottom:546.265800px;}
.yde{bottom:550.027650px;}
.y243{bottom:551.226000px;}
.y127{bottom:551.285400px;}
.y43{bottom:554.726550px;}
.y100{bottom:557.273550px;}
.y218{bottom:559.789350px;}
.y89{bottom:564.637650px;}
.y1e9{bottom:567.649650px;}
.y176{bottom:570.035400px;}
.y242{bottom:570.726000px;}
.y126{bottom:570.785400px;}
.y152{bottom:572.285400px;}
.y1bc{bottom:573.035400px;}
.y42{bottom:573.352500px;}
.ydd{bottom:574.027650px;}
.y217{bottom:575.989350px;}
.yff{bottom:576.023550px;}
.yb0{bottom:577.535400px;}
.y199{bottom:579.265800px;}
.y1e8{bottom:583.849650px;}
.y88{bottom:588.637650px;}
.y175{bottom:594.035400px;}
.y241{bottom:594.478050px;}
.y151{bottom:596.285400px;}
.y1bb{bottom:597.035400px;}
.ydc{bottom:598.027650px;}
.y125{bottom:599.285400px;}
.y1e7{bottom:600.049650px;}
.y216{bottom:600.618300px;}
.yaf{bottom:601.535400px;}
.y198{bottom:603.265800px;}
.yfe{bottom:603.773550px;}
.y14{bottom:607.828500px;}
.y87{bottom:612.637650px;}
.y240{bottom:613.978050px;}
.y1e6{bottom:616.249650px;}
.y71{bottom:616.752750px;}
.y215{bottom:616.818300px;}
.y174{bottom:618.035400px;}
.y150{bottom:620.285400px;}
.y1ba{bottom:621.035400px;}
.yfd{bottom:622.523550px;}
.y124{bottom:623.285400px;}
.yae{bottom:625.535400px;}
.y13{bottom:626.454450px;}
.y197{bottom:627.265800px;}
.ydb{bottom:631.027650px;}
.y1e5{bottom:632.449650px;}
.y214{bottom:633.018300px;}
.y86{bottom:636.637650px;}
.y23f{bottom:637.729950px;}
.y1b9{bottom:645.035400px;}
.y70{bottom:646.008600px;}
.y123{bottom:647.285400px;}
.y1e4{bottom:648.649650px;}
.y213{bottom:649.218300px;}
.yad{bottom:649.535400px;}
.yfc{bottom:650.273550px;}
.y173{bottom:651.035400px;}
.y196{bottom:651.265800px;}
.y12{bottom:652.084350px;}
.y14f{bottom:653.285400px;}
.yda{bottom:655.027650px;}
.y23e{bottom:657.229950px;}
.y85{bottom:660.637650px;}
.y6f{bottom:664.008600px;}
.y1e3{bottom:664.849650px;}
.y122{bottom:666.785400px;}
.y1b8{bottom:669.035400px;}
.y11{bottom:670.710450px;}
.y212{bottom:673.847250px;}
.yfb{bottom:674.273550px;}
.y172{bottom:675.035400px;}
.y195{bottom:675.265800px;}
.y14e{bottom:677.285400px;}
.yd9{bottom:679.027650px;}
.y23d{bottom:680.981850px;}
.y6e{bottom:682.008600px;}
.yac{bottom:682.535400px;}
.y84{bottom:684.637650px;}
.y10{bottom:689.336400px;}
.y1e2{bottom:689.478600px;}
.y211{bottom:690.047250px;}
.y1b7{bottom:693.035400px;}
.y121{bottom:695.285400px;}
.y171{bottom:699.035400px;}
.y194{bottom:699.265800px;}
.y6d{bottom:700.008600px;}
.y14d{bottom:701.285400px;}
.yd8{bottom:703.027650px;}
.y23c{bottom:704.733900px;}
.y1e1{bottom:705.678600px;}
.y210{bottom:706.247250px;}
.yfa{bottom:706.523550px;}
.yab{bottom:706.535400px;}
.y83{bottom:708.637650px;}
.yf{bottom:712.840350px;}
.y1b6{bottom:717.035400px;}
.y6c{bottom:718.008600px;}
.y120{bottom:719.285400px;}
.y14c{bottom:720.785400px;}
.y1e0{bottom:721.878600px;}
.y20f{bottom:722.447250px;}
.y170{bottom:723.035400px;}
.y23b{bottom:724.233900px;}
.yd7{bottom:727.027650px;}
.yaa{bottom:730.535400px;}
.y20c{bottom:731.551200px;}
.y193{bottom:732.265800px;}
.ye{bottom:733.835850px;}
.y6b{bottom:736.008600px;}
.y1df{bottom:738.078600px;}
.y11f{bottom:738.785400px;}
.y14b{bottom:740.285400px;}
.y1b5{bottom:741.035400px;}
.y82{bottom:741.637650px;}
.y20b{bottom:746.551200px;}
.y16f{bottom:747.035400px;}
.y20e{bottom:747.076200px;}
.y23a{bottom:747.985800px;}
.y6a{bottom:754.008600px;}
.ya9{bottom:754.535400px;}
.yd{bottom:754.587750px;}
.yf9{bottom:756.023550px;}
.y192{bottom:756.265800px;}
.y11e{bottom:758.285400px;}
.yd6{bottom:760.027650px;}
.y20a{bottom:761.551200px;}
.y1de{bottom:762.707400px;}
.y1b4{bottom:765.035400px;}
.y81{bottom:765.637650px;}
.y239{bottom:767.485800px;}
.y14a{bottom:768.785400px;}
.y20d{bottom:769.201200px;}
.y16e{bottom:771.035400px;}
.yc{bottom:775.339800px;}
.y69{bottom:776.260650px;}
.y209{bottom:776.551200px;}
.y11d{bottom:777.785400px;}
.y1dd{bottom:778.907400px;}
.yf8{bottom:780.023550px;}
.y191{bottom:780.265800px;}
.yd5{bottom:784.027650px;}
.ya8{bottom:787.535400px;}
.y80{bottom:789.637650px;}
.y238{bottom:791.237850px;}
.y149{bottom:792.785400px;}
.y68{bottom:794.260650px;}
.y1dc{bottom:795.107550px;}
.yb{bottom:795.848100px;}
.y11c{bottom:797.285400px;}
.y1b3{bottom:798.035400px;}
.y16d{bottom:804.035400px;}
.y190{bottom:804.265800px;}
.yd4{bottom:808.027650px;}
.y237{bottom:810.737850px;}
.y1db{bottom:811.307400px;}
.ya7{bottom:811.535400px;}
.y67{bottom:812.260650px;}
.yf7{bottom:813.023550px;}
.y7f{bottom:813.637650px;}
.y11b{bottom:816.785400px;}
.y1b2{bottom:822.035400px;}
.ya{bottom:822.352050px;}
.y208{bottom:822.637650px;}
.y1da{bottom:827.507400px;}
.y16c{bottom:828.035400px;}
.y18f{bottom:828.265800px;}
.y66{bottom:830.260650px;}
.yd3{bottom:832.027650px;}
.y236{bottom:834.489750px;}
.ya6{bottom:835.535400px;}
.y11a{bottom:836.285400px;}
.yf6{bottom:837.023550px;}
.y7e{bottom:837.637650px;}
.y148{bottom:840.785400px;}
.y1b1{bottom:846.035400px;}
.y207{bottom:846.637650px;}
.y16b{bottom:852.035400px;}
.y1d9{bottom:852.136350px;}
.y65{bottom:852.512550px;}
.y235{bottom:853.989750px;}
.y119{bottom:855.785400px;}
.yd2{bottom:856.027650px;}
.ya5{bottom:859.535400px;}
.y147{bottom:860.285400px;}
.yf5{bottom:861.023550px;}
.y9{bottom:861.611850px;}
.y7d{bottom:861.637650px;}
.y1d8{bottom:868.336350px;}
.y18e{bottom:869.273550px;}
.y1b0{bottom:870.035400px;}
.y64{bottom:870.512550px;}
.y206{bottom:870.637650px;}
.y234{bottom:873.489750px;}
.y16a{bottom:876.035400px;}
.y146{bottom:879.785400px;}
.ya4{bottom:883.535400px;}
.y118{bottom:884.285400px;}
.y1d7{bottom:884.536500px;}
.yf4{bottom:885.023550px;}
.y8{bottom:887.111850px;}
.y63{bottom:888.512550px;}
.y1af{bottom:894.035400px;}
.y7c{bottom:894.637650px;}
.y233{bottom:897.241800px;}
.y145{bottom:899.285400px;}
.y1d6{bottom:900.736500px;}
.y62{bottom:906.512550px;}
.ya3{bottom:907.535400px;}
.y117{bottom:908.285400px;}
.y169{bottom:909.035400px;}
.y7{bottom:912.611850px;}
.y232{bottom:916.741800px;}
.y1d5{bottom:916.936500px;}
.yf3{bottom:917.273550px;}
.y1ae{bottom:918.035400px;}
.y7b{bottom:918.637650px;}
.y144{bottom:918.785400px;}
.yd1{bottom:921.040800px;}
.y205{bottom:927.637650px;}
.y61{bottom:928.764450px;}
.y168{bottom:933.035400px;}
.y18d{bottom:933.785400px;}
.y231{bottom:936.241800px;}
.ya2{bottom:940.535400px;}
.y116{bottom:941.285400px;}
.y1d4{bottom:941.565300px;}
.y1ad{bottom:942.035400px;}
.y7a{bottom:942.637650px;}
.yd0{bottom:945.669750px;}
.y6{bottom:946.615800px;}
.y60{bottom:946.764450px;}
.y143{bottom:947.285400px;}
.y204{bottom:951.637650px;}
.y167{bottom:957.035400px;}
.y1d3{bottom:957.765450px;}
.y18c{bottom:957.785400px;}
.yf2{bottom:958.523550px;}
.y230{bottom:959.993700px;}
.ya1{bottom:964.535400px;}
.y5f{bottom:964.764450px;}
.y115{bottom:965.285400px;}
.y79{bottom:966.637650px;}
.ycf{bottom:970.298700px;}
.y142{bottom:971.285400px;}
.y1d2{bottom:973.965300px;}
.y1ac{bottom:975.035400px;}
.y203{bottom:975.637650px;}
.y22f{bottom:979.493700px;}
.y18b{bottom:981.785400px;}
.y5{bottom:982.615800px;}
.y5e{bottom:982.764450px;}
.ya0{bottom:988.535400px;}
.y114{bottom:989.285400px;}
.y166{bottom:990.035400px;}
.y1d1{bottom:990.165300px;}
.y78{bottom:990.637650px;}
.yce{bottom:994.927650px;}
.y141{bottom:995.285400px;}
.y1ab{bottom:999.035400px;}
.y202{bottom:999.637650px;}
.y5d{bottom:1000.764450px;}
.ycb{bottom:1004.031600px;}
.y22e{bottom:1007.497650px;}
.y9f{bottom:1012.535400px;}
.y165{bottom:1014.035400px;}
.y140{bottom:1014.785400px;}
.y1d0{bottom:1014.794250px;}
.y4{bottom:1018.615800px;}
.y5c{bottom:1018.764450px;}
.yca{bottom:1019.031600px;}
.ycd{bottom:1019.556450px;}
.y113{bottom:1021.535400px;}
.yf1{bottom:1023.035400px;}
.y77{bottom:1023.637650px;}
.y1cf{bottom:1030.994250px;}
.yc9{bottom:1034.031600px;}
.y13f{bottom:1034.285400px;}
.y164{bottom:1038.035400px;}
.y18a{bottom:1038.785400px;}
.ycc{bottom:1041.681450px;}
.y9e{bottom:1044.785400px;}
.y5b{bottom:1045.268400px;}
.yf0{bottom:1047.035400px;}
.y76{bottom:1047.637650px;}
.yc8{bottom:1049.031600px;}
.y1ce{bottom:1053.119250px;}
.y13e{bottom:1053.785400px;}
.y3{bottom:1054.615800px;}
.y22d{bottom:1061.249700px;}
.y163{bottom:1062.035400px;}
.y189{bottom:1062.785400px;}
.y1cd{bottom:1069.319250px;}
.yef{bottom:1071.035400px;}
.y75{bottom:1071.637650px;}
.y22c{bottom:1079.249700px;}
.y41{bottom:1080.283350px;}
.y13d{bottom:1082.285400px;}
.y188{bottom:1086.785400px;}
.y2{bottom:1090.615800px;}
.y9d{bottom:1095.035400px;}
.y74{bottom:1095.637650px;}
.y20{bottom:1097.052000px;}
.y22b{bottom:1101.501600px;}
.y13c{bottom:1106.285400px;}
.y40{bottom:1109.285400px;}
.y187{bottom:1110.785400px;}
.y9c{bottom:1119.035400px;}
.y22a{bottom:1119.501600px;}
.y13b{bottom:1125.785400px;}
.y3f{bottom:1127.285400px;}
.y73{bottom:1136.645550px;}
.y9b{bottom:1143.035400px;}
.y3e{bottom:1145.285400px;}
.y229{bottom:1146.005550px;}
.y3c{bottom:1172.887500px;}
.y3b{bottom:1187.287500px;}
.y72{bottom:1199.055150px;}
.y21{bottom:1205.884050px;}
.h6{height:30.823664px;}
.h7{height:36.000000px;}
.ha{height:36.492188px;}
.h9{height:38.250000px;}
.he{height:40.338000px;}
.h16{height:42.793945px;}
.h15{height:43.004883px;}
.h8{height:43.382812px;}
.hc{height:46.020000px;}
.h5{height:46.215000px;}
.hf{height:47.088000px;}
.h10{height:47.812500px;}
.h1c{height:47.841797px;}
.h2{height:48.805664px;}
.hd{height:52.320000px;}
.h1a{height:54.000000px;}
.hb{height:54.228516px;}
.h13{height:57.375000px;}
.h14{height:62.568000px;}
.h12{height:65.074219px;}
.h18{height:66.105483px;}
.h1b{height:73.248000px;}
.h17{height:75.193945px;}
.h19{height:75.909745px;}
.h4{height:81.342773px;}
.h11{height:88.944000px;}
.h3{height:104.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:47.474550px;}
.x5{left:60.302850px;}
.x3{left:75.796200px;}
.x6{left:119.055150px;}
.xa{left:125.055150px;}
.x8{left:127.558950px;}
.xb{left:134.055150px;}
.xd{left:140.314950px;}
.xc{left:150.555150px;}
.x12{left:161.574750px;}
.x1{left:238.110300px;}
.x10{left:323.456850px;}
.xe{left:382.154850px;}
.x9{left:409.051800px;}
.x11{left:521.858700px;}
.xf{left:592.151700px;}
.x7{left:731.338650px;}
.x4{left:816.378000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:20.533867pt;}
.v3{vertical-align:28.800000pt;}
.ls9{letter-spacing:-2.992000pt;}
.lsc{letter-spacing:-2.538667pt;}
.ls8{letter-spacing:-2.400000pt;}
.ls2{letter-spacing:-1.813333pt;}
.lse{letter-spacing:-1.632000pt;}
.lsb{letter-spacing:-1.104000pt;}
.ls6{letter-spacing:-1.008000pt;}
.ls12{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.181333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005131pt;}
.ls3{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.273067pt;}
.ls10{letter-spacing:1.813333pt;}
.ls4{letter-spacing:2.240000pt;}
.ls11{letter-spacing:3.648000pt;}
.lsa{letter-spacing:360.928533pt;}
.ws1{word-spacing:-28.053333pt;}
.wsae{word-spacing:-25.386667pt;}
.wsbd{word-spacing:-25.205333pt;}
.wsce{word-spacing:-23.754667pt;}
.ws7c{word-spacing:-22.848000pt;}
.wsd5{word-spacing:-17.088000pt;}
.ws19{word-spacing:-15.733333pt;}
.ws58{word-spacing:-15.552000pt;}
.ws4{word-spacing:-15.413333pt;}
.wsd8{word-spacing:-14.773333pt;}
.ws1a{word-spacing:-13.280000pt;}
.wsd6{word-spacing:-12.960000pt;}
.wsd7{word-spacing:-12.853333pt;}
.ws0{word-spacing:-11.664000pt;}
.wscb{word-spacing:-11.472000pt;}
.ws3{word-spacing:-10.581333pt;}
.ws1b{word-spacing:-10.368000pt;}
.ws18{word-spacing:-10.282667pt;}
.ws2{word-spacing:-7.711147pt;}
.ws9a{word-spacing:-4.352000pt;}
.ws7d{word-spacing:-3.904000pt;}
.ws83{word-spacing:-3.648000pt;}
.wscc{word-spacing:-3.264000pt;}
.wsba{word-spacing:-3.072000pt;}
.ws7f{word-spacing:-2.880000pt;}
.wsc2{word-spacing:-2.816000pt;}
.wsa5{word-spacing:-2.752000pt;}
.wsa0{word-spacing:-2.688000pt;}
.wsd9{word-spacing:-2.506667pt;}
.ws60{word-spacing:-2.496000pt;}
.ws9d{word-spacing:-2.432000pt;}
.wsd3{word-spacing:-2.368000pt;}
.ws77{word-spacing:-2.304000pt;}
.ws34{word-spacing:-2.293333pt;}
.ws7{word-spacing:-2.240000pt;}
.wsb6{word-spacing:-2.176000pt;}
.wsb0{word-spacing:-2.112000pt;}
.wsa8{word-spacing:-2.048000pt;}
.ws90{word-spacing:-1.920000pt;}
.ws39{word-spacing:-1.866667pt;}
.ws47{word-spacing:-1.856000pt;}
.ws67{word-spacing:-1.792000pt;}
.ws9f{word-spacing:-1.728000pt;}
.wsb8{word-spacing:-1.664000pt;}
.wse1{word-spacing:-1.546667pt;}
.ws4f{word-spacing:-1.536000pt;}
.ws6f{word-spacing:-1.472000pt;}
.ws2f{word-spacing:-1.440000pt;}
.wsc5{word-spacing:-1.344000pt;}
.ws92{word-spacing:-1.280000pt;}
.ws5c{word-spacing:-1.088000pt;}
.wsa3{word-spacing:-1.024000pt;}
.wsd0{word-spacing:-0.960000pt;}
.ws97{word-spacing:-0.896000pt;}
.ws72{word-spacing:-0.768000pt;}
.wse4{word-spacing:-0.746667pt;}
.wsb1{word-spacing:-0.704000pt;}
.ws50{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.576000pt;}
.ws87{word-spacing:-0.533333pt;}
.wsa4{word-spacing:-0.512000pt;}
.ws69{word-spacing:-0.448000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws22{word-spacing:-0.320000pt;}
.wsa6{word-spacing:-0.256000pt;}
.ws81{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.128000pt;}
.ws23{word-spacing:-0.106667pt;}
.ws93{word-spacing:-0.064000pt;}
.ws2b{word-spacing:-0.053333pt;}
.ws66{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws82{word-spacing:0.064000pt;}
.ws86{word-spacing:0.128000pt;}
.ws75{word-spacing:0.192000pt;}
.ws33{word-spacing:0.213333pt;}
.ws5b{word-spacing:0.256000pt;}
.wse{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.ws7e{word-spacing:0.384000pt;}
.ws64{word-spacing:0.448000pt;}
.wse7{word-spacing:0.480000pt;}
.wsa9{word-spacing:0.512000pt;}
.wse6{word-spacing:0.533333pt;}
.ws73{word-spacing:0.576000pt;}
.ws20{word-spacing:0.586667pt;}
.ws1f{word-spacing:0.640000pt;}
.ws43{word-spacing:0.704000pt;}
.ws9e{word-spacing:0.768000pt;}
.wsda{word-spacing:0.821333pt;}
.ws78{word-spacing:0.896000pt;}
.ws3d{word-spacing:0.960000pt;}
.ws84{word-spacing:1.024000pt;}
.ws59{word-spacing:1.088000pt;}
.ws76{word-spacing:1.152000pt;}
.ws31{word-spacing:1.173333pt;}
.ws3f{word-spacing:1.280000pt;}
.wsaf{word-spacing:1.344000pt;}
.wsad{word-spacing:1.408000pt;}
.ws24{word-spacing:1.493333pt;}
.ws13{word-spacing:1.546667pt;}
.wsa2{word-spacing:1.600000pt;}
.ws2e{word-spacing:1.653333pt;}
.ws4e{word-spacing:1.664000pt;}
.ws36{word-spacing:1.706667pt;}
.ws4b{word-spacing:1.728000pt;}
.ws30{word-spacing:1.760000pt;}
.ws54{word-spacing:1.792000pt;}
.ws10{word-spacing:1.813333pt;}
.ws45{word-spacing:1.856000pt;}
.ws8a{word-spacing:1.866667pt;}
.ws42{word-spacing:1.920000pt;}
.wsbf{word-spacing:1.984000pt;}
.ws91{word-spacing:2.048000pt;}
.ws41{word-spacing:2.112000pt;}
.ws15{word-spacing:2.133333pt;}
.ws9b{word-spacing:2.176000pt;}
.wsc1{word-spacing:2.240000pt;}
.ws17{word-spacing:2.293333pt;}
.wsaa{word-spacing:2.304000pt;}
.ws3b{word-spacing:2.400000pt;}
.ws55{word-spacing:2.432000pt;}
.wscf{word-spacing:2.496000pt;}
.wsc4{word-spacing:2.560000pt;}
.ws35{word-spacing:2.613333pt;}
.ws8c{word-spacing:2.624000pt;}
.wsd2{word-spacing:2.688000pt;}
.ws8e{word-spacing:2.752000pt;}
.ws85{word-spacing:2.773333pt;}
.wsb7{word-spacing:2.816000pt;}
.wse0{word-spacing:2.826667pt;}
.ws3a{word-spacing:2.880000pt;}
.ws3c{word-spacing:2.992000pt;}
.wscd{word-spacing:3.008000pt;}
.wsb{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.136000pt;}
.ws8{word-spacing:3.146667pt;}
.ws1e{word-spacing:3.168000pt;}
.ws25{word-spacing:3.200000pt;}
.ws37{word-spacing:3.253333pt;}
.wsc3{word-spacing:3.264000pt;}
.wsca{word-spacing:3.328000pt;}
.ws5d{word-spacing:3.456000pt;}
.ws65{word-spacing:3.520000pt;}
.ws71{word-spacing:3.584000pt;}
.ws26{word-spacing:3.626667pt;}
.ws44{word-spacing:3.712000pt;}
.wsac{word-spacing:3.776000pt;}
.ws1c{word-spacing:3.786667pt;}
.ws53{word-spacing:3.840000pt;}
.ws2a{word-spacing:3.893333pt;}
.ws2c{word-spacing:3.946667pt;}
.wsa1{word-spacing:3.968000pt;}
.wsc{word-spacing:4.000000pt;}
.wsbe{word-spacing:4.032000pt;}
.ws1d{word-spacing:4.106667pt;}
.wsd{word-spacing:4.160000pt;}
.ws56{word-spacing:4.224000pt;}
.ws63{word-spacing:4.288000pt;}
.ws68{word-spacing:4.352000pt;}
.ws99{word-spacing:4.416000pt;}
.ws8f{word-spacing:4.544000pt;}
.wsc7{word-spacing:4.608000pt;}
.wsb2{word-spacing:4.672000pt;}
.ws21{word-spacing:4.746667pt;}
.wsf{word-spacing:4.800000pt;}
.ws2d{word-spacing:4.906667pt;}
.wsbc{word-spacing:4.992000pt;}
.ws61{word-spacing:5.056000pt;}
.ws16{word-spacing:5.066667pt;}
.wsc8{word-spacing:5.120000pt;}
.ws51{word-spacing:5.184000pt;}
.ws8b{word-spacing:5.226667pt;}
.wsc0{word-spacing:5.312000pt;}
.ws40{word-spacing:5.440000pt;}
.wsd1{word-spacing:5.504000pt;}
.wsa7{word-spacing:5.568000pt;}
.wse9{word-spacing:5.600000pt;}
.wse8{word-spacing:5.653333pt;}
.ws6e{word-spacing:5.696000pt;}
.ws29{word-spacing:5.760000pt;}
.ws74{word-spacing:5.888000pt;}
.ws80{word-spacing:5.952000pt;}
.ws32{word-spacing:5.973333pt;}
.ws5f{word-spacing:6.016000pt;}
.wsb5{word-spacing:6.080000pt;}
.ws9{word-spacing:6.186667pt;}
.ws49{word-spacing:6.208000pt;}
.ws3e{word-spacing:6.336000pt;}
.ws7a{word-spacing:6.528000pt;}
.ws79{word-spacing:6.592000pt;}
.ws9c{word-spacing:6.656000pt;}
.ws14{word-spacing:6.666667pt;}
.ws4c{word-spacing:6.720000pt;}
.ws12{word-spacing:6.826667pt;}
.wsde{word-spacing:6.986667pt;}
.wsdd{word-spacing:7.040000pt;}
.wsb9{word-spacing:7.104000pt;}
.ws94{word-spacing:7.168000pt;}
.ws52{word-spacing:7.232000pt;}
.wsd4{word-spacing:7.296000pt;}
.ws38{word-spacing:7.360000pt;}
.ws5e{word-spacing:7.424000pt;}
.ws89{word-spacing:7.488000pt;}
.ws11{word-spacing:7.626667pt;}
.ws88{word-spacing:7.680000pt;}
.wse5{word-spacing:7.733333pt;}
.ws46{word-spacing:7.744000pt;}
.wsab{word-spacing:7.808000pt;}
.ws4a{word-spacing:8.000000pt;}
.wse2{word-spacing:8.213333pt;}
.wsc9{word-spacing:8.256000pt;}
.ws96{word-spacing:8.320000pt;}
.wsbb{word-spacing:8.512000pt;}
.wsc6{word-spacing:8.704000pt;}
.ws70{word-spacing:8.768000pt;}
.wsb4{word-spacing:9.024000pt;}
.wseb{word-spacing:9.333333pt;}
.wsea{word-spacing:9.440000pt;}
.ws28{word-spacing:9.813333pt;}
.ws8d{word-spacing:9.856000pt;}
.ws27{word-spacing:10.026667pt;}
.ws57{word-spacing:10.432000pt;}
.ws4d{word-spacing:10.560000pt;}
.ws7b{word-spacing:10.944000pt;}
.wsdc{word-spacing:12.800000pt;}
.wsdb{word-spacing:12.906667pt;}
.wsb3{word-spacing:14.208000pt;}
.wsdf{word-spacing:16.053333pt;}
.wse3{word-spacing:44.106667pt;}
.ws98{word-spacing:61.173333pt;}
.ws95{word-spacing:62.133333pt;}
.ws6d{word-spacing:336.337067pt;}
.ws6a{word-spacing:846.052267pt;}
.ws6c{word-spacing:894.040000pt;}
.ws6b{word-spacing:907.176533pt;}
._19{margin-left:-8.882667pt;}
._17{margin-left:-6.632000pt;}
._0{margin-left:-5.208000pt;}
._5{margin-left:-4.108320pt;}
._1{margin-left:-2.784000pt;}
._2{margin-left:-1.866667pt;}
._4{margin-left:-0.970667pt;}
._3{width:1.600000pt;}
._8{width:2.897067pt;}
._6{width:3.957333pt;}
._9{width:5.373333pt;}
._b{width:6.726400pt;}
._c{width:7.616533pt;}
._14{width:9.856000pt;}
._18{width:16.150400pt;}
._11{width:61.173333pt;}
._10{width:62.133333pt;}
._12{width:63.253333pt;}
._13{width:73.066667pt;}
._7{width:134.943467pt;}
._16{width:200.132800pt;}
._f{width:265.412800pt;}
._15{width:267.262933pt;}
._e{width:538.282133pt;}
._a{width:556.227733pt;}
._d{width:785.439467pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:31.093333pt;}
.fs5{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs8{font-size:90.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:44.913333pt;}
.y1{bottom:46.748000pt;}
.y3a{bottom:46.803200pt;}
.y39{bottom:47.332933pt;}
.y38{bottom:88.550133pt;}
.y201{bottom:93.280800pt;}
.y5a{bottom:93.559067pt;}
.y112{bottom:97.354267pt;}
.y162{bottom:100.698133pt;}
.y1cc{bottom:100.902933pt;}
.y37{bottom:104.550133pt;}
.y13a{bottom:104.698133pt;}
.y186{bottom:106.031467pt;}
.y9a{bottom:107.233467pt;}
.y59{bottom:109.559067pt;}
.yc7{bottom:114.152267pt;}
.y200{bottom:114.614133pt;}
.y228{bottom:116.902933pt;}
.y111{bottom:118.687600pt;}
.y139{bottom:122.031467pt;}
.y1cb{bottom:122.236267pt;}
.yee{bottom:123.580133pt;}
.y36{bottom:124.329733pt;}
.y58{bottom:125.559067pt;}
.y185{bottom:127.364800pt;}
.y1aa{bottom:128.236267pt;}
.y99{bottom:128.566800pt;}
.yc6{bottom:135.485600pt;}
.y227{bottom:138.236267pt;}
.y110{bottom:140.020933pt;}
.y35{bottom:140.329733pt;}
.y57{bottom:141.559067pt;}
.y161{bottom:143.364800pt;}
.y1ca{bottom:143.569600pt;}
.y1ff{bottom:143.947467pt;}
.yed{bottom:144.913467pt;}
.y138{bottom:147.364800pt;}
.y184{bottom:148.698133pt;}
.y1a9{bottom:149.569600pt;}
.y34{bottom:156.329733pt;}
.yc5{bottom:156.818933pt;}
.y56{bottom:157.559067pt;}
.y98{bottom:157.900133pt;}
.y226{bottom:159.569600pt;}
.y10f{bottom:161.354267pt;}
.y160{bottom:164.698133pt;}
.y1c9{bottom:164.902933pt;}
.y1fe{bottom:165.280800pt;}
.yec{bottom:166.246800pt;}
.y137{bottom:168.698133pt;}
.y1a8{bottom:170.902933pt;}
.y33{bottom:172.329733pt;}
.y55{bottom:173.559067pt;}
.y183{bottom:178.031467pt;}
.y97{bottom:179.233467pt;}
.y225{bottom:180.902933pt;}
.y10e{bottom:182.687600pt;}
.y15f{bottom:186.031467pt;}
.y1c8{bottom:186.236267pt;}
.yeb{bottom:187.580133pt;}
.y32{bottom:188.329733pt;}
.y54{bottom:189.559067pt;}
.y136{bottom:190.031467pt;}
.y1a7{bottom:192.236267pt;}
.y1fd{bottom:194.614133pt;}
.y182{bottom:199.364800pt;}
.y96{bottom:200.566800pt;}
.y224{bottom:202.236267pt;}
.y53{bottom:205.559067pt;}
.yc4{bottom:205.861467pt;}
.y135{bottom:207.364800pt;}
.y31{bottom:208.109200pt;}
.y10d{bottom:212.020933pt;}
.y1a6{bottom:213.569600pt;}
.y1c7{bottom:215.569600pt;}
.y1fc{bottom:215.947467pt;}
.yea{bottom:216.913467pt;}
.yc3{bottom:220.261467pt;}
.y181{bottom:220.698133pt;}
.y52{bottom:221.559067pt;}
.y30{bottom:224.109200pt;}
.y134{bottom:224.698133pt;}
.y10c{bottom:228.687600pt;}
.y95{bottom:229.900133pt;}
.y223{bottom:231.569600pt;}
.y15e{bottom:236.698133pt;}
.y1c6{bottom:236.902933pt;}
.y51{bottom:237.559067pt;}
.ye9{bottom:238.246800pt;}
.y2f{bottom:240.109200pt;}
.y180{bottom:242.031467pt;}
.y1a5{bottom:242.902933pt;}
.yc2{bottom:244.379600pt;}
.y1fb{bottom:245.280800pt;}
.y10b{bottom:245.354267pt;}
.y133{bottom:250.031467pt;}
.y94{bottom:251.233467pt;}
.y222{bottom:252.902933pt;}
.y2e{bottom:256.109200pt;}
.y50{bottom:257.338533pt;}
.y15d{bottom:258.031467pt;}
.y1c5{bottom:258.236267pt;}
.yc1{bottom:258.779600pt;}
.ye8{bottom:259.580133pt;}
.y17f{bottom:263.364800pt;}
.y1a4{bottom:264.236267pt;}
.y1fa{bottom:266.614133pt;}
.y10a{bottom:270.020933pt;}
.y132{bottom:271.364800pt;}
.y2d{bottom:272.109200pt;}
.y93{bottom:272.566800pt;}
.y4f{bottom:273.338533pt;}
.y15c{bottom:279.364800pt;}
.y1c4{bottom:279.569600pt;}
.y221{bottom:282.236267pt;}
.yc0{bottom:282.897600pt;}
.y17e{bottom:284.698133pt;}
.y1a3{bottom:285.569600pt;}
.y109{bottom:286.687600pt;}
.y1f9{bottom:287.947467pt;}
.ye7{bottom:288.913467pt;}
.y4e{bottom:289.338533pt;}
.y2c{bottom:291.888800pt;}
.y131{bottom:292.698133pt;}
.y1f{bottom:293.280800pt;}
.y92{bottom:293.900133pt;}
.ybf{bottom:297.297600pt;}
.y15b{bottom:300.698133pt;}
.y1c3{bottom:300.902933pt;}
.y24d{bottom:301.527200pt;}
.ybb{bottom:302.026267pt;}
.y220{bottom:303.569600pt;}
.y4d{bottom:305.338533pt;}
.y17d{bottom:306.031467pt;}
.y1a2{bottom:306.902933pt;}
.y2b{bottom:307.888800pt;}
.y1e{bottom:307.947467pt;}
.y1f8{bottom:309.280800pt;}
.ye6{bottom:310.246800pt;}
.y108{bottom:311.354267pt;}
.ybe{bottom:311.697600pt;}
.y91{bottom:315.233467pt;}
.yba{bottom:315.359600pt;}
.y130{bottom:318.031467pt;}
.y24c{bottom:318.860533pt;}
.y4c{bottom:321.338533pt;}
.y15a{bottom:322.031467pt;}
.y1c2{bottom:322.236267pt;}
.y1d{bottom:322.614133pt;}
.y2a{bottom:323.888800pt;}
.y21f{bottom:324.902933pt;}
.y17c{bottom:327.364800pt;}
.y1a1{bottom:328.236267pt;}
.yb9{bottom:328.692933pt;}
.y1f7{bottom:330.614133pt;}
.ye5{bottom:331.580133pt;}
.y1f3{bottom:331.947467pt;}
.y107{bottom:332.687600pt;}
.ybd{bottom:335.815733pt;}
.y90{bottom:336.566800pt;}
.y4b{bottom:337.338533pt;}
.y1c{bottom:339.170533pt;}
.y12f{bottom:339.364800pt;}
.y29{bottom:339.888800pt;}
.y24b{bottom:339.973333pt;}
.yb8{bottom:342.026267pt;}
.y159{bottom:343.364800pt;}
.y1f2{bottom:345.280800pt;}
.y21e{bottom:346.236267pt;}
.y17b{bottom:348.698133pt;}
.y1c1{bottom:351.569600pt;}
.y1f6{bottom:351.947467pt;}
.ye4{bottom:352.913467pt;}
.y4a{bottom:353.338533pt;}
.yb7{bottom:355.359600pt;}
.y24a{bottom:357.306800pt;}
.y1a0{bottom:357.569600pt;}
.y8f{bottom:357.900133pt;}
.y1f1{bottom:358.614133pt;}
.y28{bottom:359.668267pt;}
.ybc{bottom:359.933867pt;}
.y12e{bottom:360.698133pt;}
.y1b{bottom:361.952667pt;}
.y106{bottom:362.020933pt;}
.y158{bottom:364.698133pt;}
.yb6{bottom:368.692933pt;}
.y49{bottom:369.338533pt;}
.y17a{bottom:370.031467pt;}
.y1f0{bottom:371.947467pt;}
.y1c0{bottom:372.902933pt;}
.y1f5{bottom:373.280800pt;}
.ye3{bottom:374.246800pt;}
.y21d{bottom:375.569600pt;}
.y27{bottom:375.668267pt;}
.y1a{bottom:376.619333pt;}
.y249{bottom:378.419600pt;}
.y105{bottom:378.687600pt;}
.y19f{bottom:378.902933pt;}
.y12d{bottom:382.031467pt;}
.y1ef{bottom:385.280800pt;}
.y48{bottom:385.338533pt;}
.y8e{bottom:387.233467pt;}
.y179{bottom:391.364800pt;}
.y26{bottom:391.668267pt;}
.y19{bottom:393.175867pt;}
.y157{bottom:394.031467pt;}
.y1bf{bottom:394.236267pt;}
.y1f4{bottom:394.614133pt;}
.ye2{bottom:395.580133pt;}
.y248{bottom:395.752933pt;}
.y21c{bottom:396.902933pt;}
.y1ee{bottom:398.614133pt;}
.yb5{bottom:398.698133pt;}
.y19e{bottom:400.236267pt;}
.y47{bottom:401.338533pt;}
.y104{bottom:403.354267pt;}
.y12c{bottom:403.364800pt;}
.y25{bottom:407.668267pt;}
.y8d{bottom:408.566800pt;}
.y178{bottom:412.698133pt;}
.y247{bottom:413.086267pt;}
.y156{bottom:415.364800pt;}
.y1be{bottom:415.569600pt;}
.y18{bottom:415.958000pt;}
.ye1{bottom:416.913467pt;}
.y21b{bottom:418.236267pt;}
.y103{bottom:420.020933pt;}
.yb4{bottom:420.031467pt;}
.y12b{bottom:420.698133pt;}
.y19d{bottom:421.569600pt;}
.y24{bottom:423.668267pt;}
.y46{bottom:427.554267pt;}
.y8c{bottom:429.900133pt;}
.y17{bottom:432.514400pt;}
.y246{bottom:434.199200pt;}
.y155{bottom:436.698133pt;}
.y12a{bottom:438.031467pt;}
.y1ed{bottom:439.485067pt;}
.y23{bottom:439.668267pt;}
.yb3{bottom:441.364800pt;}
.y19c{bottom:442.902933pt;}
.y102{bottom:444.687600pt;}
.ye0{bottom:446.246800pt;}
.y16{bottom:449.070933pt;}
.y8b{bottom:451.233467pt;}
.y245{bottom:451.532533pt;}
.y1bd{bottom:452.020933pt;}
.y1ec{bottom:453.885067pt;}
.y129{bottom:455.364800pt;}
.y154{bottom:458.031467pt;}
.yb2{bottom:462.698133pt;}
.y22{bottom:463.227333pt;}
.y45{bottom:463.756933pt;}
.y19b{bottom:464.236267pt;}
.y15{bottom:465.627333pt;}
.y101{bottom:466.020933pt;}
.ydf{bottom:467.580133pt;}
.y1eb{bottom:468.285067pt;}
.y21a{bottom:468.790533pt;}
.y8a{bottom:472.566800pt;}
.y244{bottom:472.645333pt;}
.y128{bottom:472.698133pt;}
.y44{bottom:478.423600pt;}
.y153{bottom:479.364800pt;}
.y1ea{bottom:482.685067pt;}
.y219{bottom:483.190533pt;}
.yb1{bottom:484.031467pt;}
.y177{bottom:485.364800pt;}
.y19a{bottom:485.569600pt;}
.yde{bottom:488.913467pt;}
.y243{bottom:489.978667pt;}
.y127{bottom:490.031467pt;}
.y43{bottom:493.090267pt;}
.y100{bottom:495.354267pt;}
.y218{bottom:497.590533pt;}
.y89{bottom:501.900133pt;}
.y1e9{bottom:504.577467pt;}
.y176{bottom:506.698133pt;}
.y242{bottom:507.312000pt;}
.y126{bottom:507.364800pt;}
.y152{bottom:508.698133pt;}
.y1bc{bottom:509.364800pt;}
.y42{bottom:509.646667pt;}
.ydd{bottom:510.246800pt;}
.y217{bottom:511.990533pt;}
.yff{bottom:512.020933pt;}
.yb0{bottom:513.364800pt;}
.y199{bottom:514.902933pt;}
.y1e8{bottom:518.977467pt;}
.y88{bottom:523.233467pt;}
.y175{bottom:528.031467pt;}
.y241{bottom:528.424933pt;}
.y151{bottom:530.031467pt;}
.y1bb{bottom:530.698133pt;}
.ydc{bottom:531.580133pt;}
.y125{bottom:532.698133pt;}
.y1e7{bottom:533.377467pt;}
.y216{bottom:533.882933pt;}
.yaf{bottom:534.698133pt;}
.y198{bottom:536.236267pt;}
.yfe{bottom:536.687600pt;}
.y14{bottom:540.292000pt;}
.y87{bottom:544.566800pt;}
.y240{bottom:545.758267pt;}
.y1e6{bottom:547.777467pt;}
.y71{bottom:548.224667pt;}
.y215{bottom:548.282933pt;}
.y174{bottom:549.364800pt;}
.y150{bottom:551.364800pt;}
.y1ba{bottom:552.031467pt;}
.yfd{bottom:553.354267pt;}
.y124{bottom:554.031467pt;}
.yae{bottom:556.031467pt;}
.y13{bottom:556.848400pt;}
.y197{bottom:557.569600pt;}
.ydb{bottom:560.913467pt;}
.y1e5{bottom:562.177467pt;}
.y214{bottom:562.682933pt;}
.y86{bottom:565.900133pt;}
.y23f{bottom:566.871067pt;}
.y1b9{bottom:573.364800pt;}
.y70{bottom:574.229867pt;}
.y123{bottom:575.364800pt;}
.y1e4{bottom:576.577467pt;}
.y213{bottom:577.082933pt;}
.yad{bottom:577.364800pt;}
.yfc{bottom:578.020933pt;}
.y173{bottom:578.698133pt;}
.y196{bottom:578.902933pt;}
.y12{bottom:579.630533pt;}
.y14f{bottom:580.698133pt;}
.yda{bottom:582.246800pt;}
.y23e{bottom:584.204400pt;}
.y85{bottom:587.233467pt;}
.y6f{bottom:590.229867pt;}
.y1e3{bottom:590.977467pt;}
.y122{bottom:592.698133pt;}
.y1b8{bottom:594.698133pt;}
.y11{bottom:596.187067pt;}
.y212{bottom:598.975333pt;}
.yfb{bottom:599.354267pt;}
.y172{bottom:600.031467pt;}
.y195{bottom:600.236267pt;}
.y14e{bottom:602.031467pt;}
.yd9{bottom:603.580133pt;}
.y23d{bottom:605.317200pt;}
.y6e{bottom:606.229867pt;}
.yac{bottom:606.698133pt;}
.y84{bottom:608.566800pt;}
.y10{bottom:612.743467pt;}
.y1e2{bottom:612.869867pt;}
.y211{bottom:613.375333pt;}
.y1b7{bottom:616.031467pt;}
.y121{bottom:618.031467pt;}
.y171{bottom:621.364800pt;}
.y194{bottom:621.569600pt;}
.y6d{bottom:622.229867pt;}
.y14d{bottom:623.364800pt;}
.yd8{bottom:624.913467pt;}
.y23c{bottom:626.430133pt;}
.y1e1{bottom:627.269867pt;}
.y210{bottom:627.775333pt;}
.yfa{bottom:628.020933pt;}
.yab{bottom:628.031467pt;}
.y83{bottom:629.900133pt;}
.yf{bottom:633.635867pt;}
.y1b6{bottom:637.364800pt;}
.y6c{bottom:638.229867pt;}
.y120{bottom:639.364800pt;}
.y14c{bottom:640.698133pt;}
.y1e0{bottom:641.669867pt;}
.y20f{bottom:642.175333pt;}
.y170{bottom:642.698133pt;}
.y23b{bottom:643.763467pt;}
.yd7{bottom:646.246800pt;}
.yaa{bottom:649.364800pt;}
.y20c{bottom:650.267733pt;}
.y193{bottom:650.902933pt;}
.ye{bottom:652.298533pt;}
.y6b{bottom:654.229867pt;}
.y1df{bottom:656.069867pt;}
.y11f{bottom:656.698133pt;}
.y14b{bottom:658.031467pt;}
.y1b5{bottom:658.698133pt;}
.y82{bottom:659.233467pt;}
.y20b{bottom:663.601067pt;}
.y16f{bottom:664.031467pt;}
.y20e{bottom:664.067733pt;}
.y23a{bottom:664.876267pt;}
.y6a{bottom:670.229867pt;}
.ya9{bottom:670.698133pt;}
.yd{bottom:670.744667pt;}
.yf9{bottom:672.020933pt;}
.y192{bottom:672.236267pt;}
.y11e{bottom:674.031467pt;}
.yd6{bottom:675.580133pt;}
.y20a{bottom:676.934400pt;}
.y1de{bottom:677.962133pt;}
.y1b4{bottom:680.031467pt;}
.y81{bottom:680.566800pt;}
.y239{bottom:682.209600pt;}
.y14a{bottom:683.364800pt;}
.y20d{bottom:683.734400pt;}
.y16e{bottom:685.364800pt;}
.yc{bottom:689.190933pt;}
.y69{bottom:690.009467pt;}
.y209{bottom:690.267733pt;}
.y11d{bottom:691.364800pt;}
.y1dd{bottom:692.362133pt;}
.yf8{bottom:693.354267pt;}
.y191{bottom:693.569600pt;}
.yd5{bottom:696.913467pt;}
.ya8{bottom:700.031467pt;}
.y80{bottom:701.900133pt;}
.y238{bottom:703.322533pt;}
.y149{bottom:704.698133pt;}
.y68{bottom:706.009467pt;}
.y1dc{bottom:706.762267pt;}
.yb{bottom:707.420533pt;}
.y11c{bottom:708.698133pt;}
.y1b3{bottom:709.364800pt;}
.y16d{bottom:714.698133pt;}
.y190{bottom:714.902933pt;}
.yd4{bottom:718.246800pt;}
.y237{bottom:720.655867pt;}
.y1db{bottom:721.162133pt;}
.ya7{bottom:721.364800pt;}
.y67{bottom:722.009467pt;}
.yf7{bottom:722.687600pt;}
.y7f{bottom:723.233467pt;}
.y11b{bottom:726.031467pt;}
.y1b2{bottom:730.698133pt;}
.ya{bottom:730.979600pt;}
.y208{bottom:731.233467pt;}
.y1da{bottom:735.562133pt;}
.y16c{bottom:736.031467pt;}
.y18f{bottom:736.236267pt;}
.y66{bottom:738.009467pt;}
.yd3{bottom:739.580133pt;}
.y236{bottom:741.768667pt;}
.ya6{bottom:742.698133pt;}
.y11a{bottom:743.364800pt;}
.yf6{bottom:744.020933pt;}
.y7e{bottom:744.566800pt;}
.y148{bottom:747.364800pt;}
.y1b1{bottom:752.031467pt;}
.y207{bottom:752.566800pt;}
.y16b{bottom:757.364800pt;}
.y1d9{bottom:757.454533pt;}
.y65{bottom:757.788933pt;}
.y235{bottom:759.102000pt;}
.y119{bottom:760.698133pt;}
.yd2{bottom:760.913467pt;}
.ya5{bottom:764.031467pt;}
.y147{bottom:764.698133pt;}
.yf5{bottom:765.354267pt;}
.y9{bottom:765.877200pt;}
.y7d{bottom:765.900133pt;}
.y1d8{bottom:771.854533pt;}
.y18e{bottom:772.687600pt;}
.y1b0{bottom:773.364800pt;}
.y64{bottom:773.788933pt;}
.y206{bottom:773.900133pt;}
.y234{bottom:776.435333pt;}
.y16a{bottom:778.698133pt;}
.y146{bottom:782.031467pt;}
.ya4{bottom:785.364800pt;}
.y118{bottom:786.031467pt;}
.y1d7{bottom:786.254667pt;}
.yf4{bottom:786.687600pt;}
.y8{bottom:788.543867pt;}
.y63{bottom:789.788933pt;}
.y1af{bottom:794.698133pt;}
.y7c{bottom:795.233467pt;}
.y233{bottom:797.548267pt;}
.y145{bottom:799.364800pt;}
.y1d6{bottom:800.654667pt;}
.y62{bottom:805.788933pt;}
.ya3{bottom:806.698133pt;}
.y117{bottom:807.364800pt;}
.y169{bottom:808.031467pt;}
.y7{bottom:811.210533pt;}
.y232{bottom:814.881600pt;}
.y1d5{bottom:815.054667pt;}
.yf3{bottom:815.354267pt;}
.y1ae{bottom:816.031467pt;}
.y7b{bottom:816.566800pt;}
.y144{bottom:816.698133pt;}
.yd1{bottom:818.702933pt;}
.y205{bottom:824.566800pt;}
.y61{bottom:825.568400pt;}
.y168{bottom:829.364800pt;}
.y18d{bottom:830.031467pt;}
.y231{bottom:832.214933pt;}
.ya2{bottom:836.031467pt;}
.y116{bottom:836.698133pt;}
.y1d4{bottom:836.946933pt;}
.y1ad{bottom:837.364800pt;}
.y7a{bottom:837.900133pt;}
.yd0{bottom:840.595333pt;}
.y6{bottom:841.436267pt;}
.y60{bottom:841.568400pt;}
.y143{bottom:842.031467pt;}
.y204{bottom:845.900133pt;}
.y167{bottom:850.698133pt;}
.y1d3{bottom:851.347067pt;}
.y18c{bottom:851.364800pt;}
.yf2{bottom:852.020933pt;}
.y230{bottom:853.327733pt;}
.ya1{bottom:857.364800pt;}
.y5f{bottom:857.568400pt;}
.y115{bottom:858.031467pt;}
.y79{bottom:859.233467pt;}
.ycf{bottom:862.487733pt;}
.y142{bottom:863.364800pt;}
.y1d2{bottom:865.746933pt;}
.y1ac{bottom:866.698133pt;}
.y203{bottom:867.233467pt;}
.y22f{bottom:870.661067pt;}
.y18b{bottom:872.698133pt;}
.y5{bottom:873.436267pt;}
.y5e{bottom:873.568400pt;}
.ya0{bottom:878.698133pt;}
.y114{bottom:879.364800pt;}
.y166{bottom:880.031467pt;}
.y1d1{bottom:880.146933pt;}
.y78{bottom:880.566800pt;}
.yce{bottom:884.380133pt;}
.y141{bottom:884.698133pt;}
.y1ab{bottom:888.031467pt;}
.y202{bottom:888.566800pt;}
.y5d{bottom:889.568400pt;}
.ycb{bottom:892.472533pt;}
.y22e{bottom:895.553467pt;}
.y9f{bottom:900.031467pt;}
.y165{bottom:901.364800pt;}
.y140{bottom:902.031467pt;}
.y1d0{bottom:902.039333pt;}
.y4{bottom:905.436267pt;}
.y5c{bottom:905.568400pt;}
.yca{bottom:905.805867pt;}
.ycd{bottom:906.272400pt;}
.y113{bottom:908.031467pt;}
.yf1{bottom:909.364800pt;}
.y77{bottom:909.900133pt;}
.y1cf{bottom:916.439333pt;}
.yc9{bottom:919.139200pt;}
.y13f{bottom:919.364800pt;}
.y164{bottom:922.698133pt;}
.y18a{bottom:923.364800pt;}
.ycc{bottom:925.939067pt;}
.y9e{bottom:928.698133pt;}
.y5b{bottom:929.127467pt;}
.yf0{bottom:930.698133pt;}
.y76{bottom:931.233467pt;}
.yc8{bottom:932.472533pt;}
.y1ce{bottom:936.106000pt;}
.y13e{bottom:936.698133pt;}
.y3{bottom:937.436267pt;}
.y22d{bottom:943.333067pt;}
.y163{bottom:944.031467pt;}
.y189{bottom:944.698133pt;}
.y1cd{bottom:950.506000pt;}
.yef{bottom:952.031467pt;}
.y75{bottom:952.566800pt;}
.y22c{bottom:959.333067pt;}
.y41{bottom:960.251867pt;}
.y13d{bottom:962.031467pt;}
.y188{bottom:966.031467pt;}
.y2{bottom:969.436267pt;}
.y9d{bottom:973.364800pt;}
.y74{bottom:973.900133pt;}
.y20{bottom:975.157333pt;}
.y22b{bottom:979.112533pt;}
.y13c{bottom:983.364800pt;}
.y40{bottom:986.031467pt;}
.y187{bottom:987.364800pt;}
.y9c{bottom:994.698133pt;}
.y22a{bottom:995.112533pt;}
.y13b{bottom:1000.698133pt;}
.y3f{bottom:1002.031467pt;}
.y73{bottom:1010.351600pt;}
.y9b{bottom:1016.031467pt;}
.y3e{bottom:1018.031467pt;}
.y229{bottom:1018.671600pt;}
.y3c{bottom:1042.566667pt;}
.y3b{bottom:1055.366667pt;}
.y72{bottom:1065.826800pt;}
.y21{bottom:1071.896933pt;}
.h6{height:27.398812pt;}
.h7{height:32.000000pt;}
.ha{height:32.437500pt;}
.h9{height:34.000000pt;}
.he{height:35.856000pt;}
.h16{height:38.039062pt;}
.h15{height:38.226562pt;}
.h8{height:38.562500pt;}
.hc{height:40.906667pt;}
.h5{height:41.080000pt;}
.hf{height:41.856000pt;}
.h10{height:42.500000pt;}
.h1c{height:42.526042pt;}
.h2{height:43.382812pt;}
.hd{height:46.506667pt;}
.h1a{height:48.000000pt;}
.hb{height:48.203125pt;}
.h13{height:51.000000pt;}
.h14{height:55.616000pt;}
.h12{height:57.843750pt;}
.h18{height:58.760429pt;}
.h1b{height:65.109333pt;}
.h17{height:66.839062pt;}
.h19{height:67.475329pt;}
.h4{height:72.304688pt;}
.h11{height:79.061333pt;}
.h3{height:93.013333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:42.199600pt;}
.x5{left:53.602533pt;}
.x3{left:67.374400pt;}
.x6{left:105.826800pt;}
.xa{left:111.160133pt;}
.x8{left:113.385733pt;}
.xb{left:119.160133pt;}
.xd{left:124.724400pt;}
.xc{left:133.826800pt;}
.x12{left:143.622000pt;}
.x1{left:211.653600pt;}
.x10{left:287.517200pt;}
.xe{left:339.693200pt;}
.x9{left:363.601600pt;}
.x11{left:463.874400pt;}
.xf{left:526.357067pt;}
.x7{left:650.078800pt;}
.x4{left:725.669333pt;}
}




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