
    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_d687aa092682612e4e2118fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_d1061b7b77dff958927c1a7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769000;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_3c9baba4ab5ad2725dfdf32f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_d4db6156cc2bb39d6dbf6527.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_389553f5fbe88efc1e11f30f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_bd5e5efd02b4ecfd49bf57f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_85f74d49065aa557a5048a12.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_0043104f998c53426b1149e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.514000;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_feb74dd2d1b036c38e4fe3b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_8375b3c1be5a34a539ddc83d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977000;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_31df36299f9716e8522c0914.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_c1b1245196aa0370b78abbeb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914000;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_033c870258951aad6aba01ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.716000;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_a623d7b0d56b6af1adb53386.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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_9460e148f3d7e5073d0b1619.woff2')format("woff");}.fff{font-family:fff;line-height:0.451000;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_69e8c9ee870c28d3dd1cae19.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.m3{transform:matrix(0.000000,-0.185174,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.185174,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.185174,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.337520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337520,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);}
.v4{vertical-align:-39.588000px;}
.v2{vertical-align:-26.034000px;}
.v19{vertical-align:-23.000146px;}
.v1c{vertical-align:-21.690000px;}
.v10{vertical-align:-16.062000px;}
.v7{vertical-align:-10.764000px;}
.v5{vertical-align:-9.324000px;}
.v18{vertical-align:-7.380206px;}
.v0{vertical-align:0.000000px;}
.v1a{vertical-align:5.356620px;}
.v1b{vertical-align:9.087994px;}
.v1d{vertical-align:16.206000px;}
.va{vertical-align:20.724000px;}
.v14{vertical-align:24.738000px;}
.v1{vertical-align:26.034000px;}
.v3{vertical-align:28.242000px;}
.v6{vertical-align:29.616000px;}
.v16{vertical-align:45.456000px;}
.v8{vertical-align:48.528000px;}
.v15{vertical-align:50.772000px;}
.v12{vertical-align:52.710000px;}
.vd{vertical-align:58.104000px;}
.v9{vertical-align:74.556000px;}
.v17{vertical-align:75.906000px;}
.vc{vertical-align:78.816000px;}
.v13{vertical-align:80.952000px;}
.ve{vertical-align:101.142000px;}
.vb{vertical-align:107.304000px;}
.v11{vertical-align:134.286000px;}
.vf{vertical-align:150.348000px;}
.ls3{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000638px;}
.ls51{letter-spacing:0.000938px;}
.ls50{letter-spacing:0.000964px;}
.ls2e{letter-spacing:0.001288px;}
.lsa{letter-spacing:0.001641px;}
.ls10{letter-spacing:0.001695px;}
.lse{letter-spacing:0.002759px;}
.ls14{letter-spacing:0.003736px;}
.ls13{letter-spacing:0.003744px;}
.ls46{letter-spacing:0.004664px;}
.ls4b{letter-spacing:0.004765px;}
.ls3e{letter-spacing:0.005591px;}
.ls4d{letter-spacing:1.834614px;}
.ls52{letter-spacing:1.945021px;}
.ls0{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.985056px;}
.ls59{letter-spacing:2.987700px;}
.ls2f{letter-spacing:2.988103px;}
.ls5a{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.990915px;}
.ls7{letter-spacing:2.991056px;}
.ls5b{letter-spacing:2.993700px;}
.ls18{letter-spacing:5.641227px;}
.ls4e{letter-spacing:6.583154px;}
.ls49{letter-spacing:7.166915px;}
.lsb{letter-spacing:7.172915px;}
.ls44{letter-spacing:7.174664px;}
.ls27{letter-spacing:9.754765px;}
.ls12{letter-spacing:9.760765px;}
.ls55{letter-spacing:14.759347px;}
.ls3b{letter-spacing:15.934404px;}
.ls1f{letter-spacing:15.935073px;}
.lsd{letter-spacing:15.935518px;}
.ls20{letter-spacing:15.937473px;}
.lsc{letter-spacing:15.939736px;}
.ls42{letter-spacing:15.940404px;}
.ls34{letter-spacing:15.941073px;}
.ls3f{letter-spacing:15.941518px;}
.ls3c{letter-spacing:15.943473px;}
.ls56{letter-spacing:16.489200px;}
.ls4{letter-spacing:16.915200px;}
.ls1b{letter-spacing:17.445736px;}
.ls38{letter-spacing:17.595736px;}
.ls39{letter-spacing:17.597347px;}
.ls31{letter-spacing:18.926915px;}
.ls30{letter-spacing:19.919518px;}
.ls8{letter-spacing:19.923736px;}
.ls1d{letter-spacing:19.923744px;}
.ls1e{letter-spacing:19.925518px;}
.ls16{letter-spacing:20.457736px;}
.ls17{letter-spacing:20.459347px;}
.ls6{letter-spacing:20.573347px;}
.ls5{letter-spacing:20.577736px;}
.ls58{letter-spacing:20.795347px;}
.ls2{letter-spacing:20.924915px;}
.ls19{letter-spacing:21.927736px;}
.ls1a{letter-spacing:21.935347px;}
.lsf{letter-spacing:22.701744px;}
.ls33{letter-spacing:22.914103px;}
.ls48{letter-spacing:23.105518px;}
.ls3a{letter-spacing:23.111518px;}
.ls4f{letter-spacing:23.694103px;}
.ls53{letter-spacing:24.374022px;}
.ls57{letter-spacing:24.697200px;}
.ls41{letter-spacing:25.696765px;}
.ls54{letter-spacing:26.485200px;}
.ls1c{letter-spacing:30.478765px;}
.ls9{letter-spacing:48.269518px;}
.ls2b{letter-spacing:76.664915px;}
.ls29{letter-spacing:76.670915px;}
.ls25{letter-spacing:78.614915px;}
.ls43{letter-spacing:78.616404px;}
.ls22{letter-spacing:82.520915px;}
.ls3d{letter-spacing:90.568404px;}
.ls45{letter-spacing:123.490404px;}
.ls2a{letter-spacing:147.380915px;}
.ls26{letter-spacing:149.330915px;}
.ls2c{letter-spacing:162.740915px;}
.ls2d{letter-spacing:198.668915px;}
.ls36{letter-spacing:200.861518px;}
.ls28{letter-spacing:218.666759px;}
.ls47{letter-spacing:234.155518px;}
.ls23{letter-spacing:253.400915px;}
.ls40{letter-spacing:262.175591px;}
.ls24{letter-spacing:287.372915px;}
.ls35{letter-spacing:628.253073px;}
.ls21{letter-spacing:653.405073px;}
.ls4a{letter-spacing:669.194915px;}
.ls15{letter-spacing:816.493114px;}
.ls32{letter-spacing:839.960915px;}
.ls37{letter-spacing:896.126915px;}
.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;}
}
.ws3c{word-spacing:-71.731200px;}
.ws79{word-spacing:-50.809387px;}
.ws7e{word-spacing:-45.664082px;}
.ws45{word-spacing:-33.707224px;}
.ws3d{word-spacing:-19.510886px;}
.ws25{word-spacing:-17.932800px;}
.wsb5{word-spacing:-17.140245px;}
.ws84{word-spacing:-16.617617px;}
.ws82{word-spacing:-15.621242px;}
.wsd3{word-spacing:-14.943900px;}
.ws5c{word-spacing:-11.955150px;}
.ws83{word-spacing:-11.158509px;}
.ws77{word-spacing:-10.613983px;}
.ws74{word-spacing:-7.581742px;}
.ws78{word-spacing:-6.064483px;}
.ws91{word-spacing:-4.088678px;}
.ws43{word-spacing:-3.945216px;}
.ws15{word-spacing:-3.730022px;}
.ws7c{word-spacing:-3.658291px;}
.ws54{word-spacing:-3.586560px;}
.ws63{word-spacing:-3.575318px;}
.ws58{word-spacing:-3.573723px;}
.wsaf{word-spacing:-3.371366px;}
.wsa2{word-spacing:-3.175910px;}
.ws3{word-spacing:-3.156173px;}
.ws6a{word-spacing:-2.725786px;}
.ws21{word-spacing:-2.654054px;}
.ws93{word-spacing:-2.510592px;}
.wse0{word-spacing:-2.367130px;}
.ws33{word-spacing:-2.295398px;}
.ws4b{word-spacing:-2.151936px;}
.ws2e{word-spacing:-2.080205px;}
.ws71{word-spacing:-2.008474px;}
.ws17{word-spacing:-1.936742px;}
.wsb9{word-spacing:-1.793280px;}
.ws30{word-spacing:-1.721549px;}
.wsbc{word-spacing:-1.506355px;}
.wsef{word-spacing:-1.434624px;}
.ws3f{word-spacing:-1.362893px;}
.ws34{word-spacing:-1.291162px;}
.ws5f{word-spacing:-1.147699px;}
.ws60{word-spacing:-1.075968px;}
.wse4{word-spacing:-1.071053px;}
.ws97{word-spacing:-1.004237px;}
.wsd4{word-spacing:-0.932506px;}
.ws2d{word-spacing:-0.860774px;}
.ws59{word-spacing:-0.777083px;}
.wsd{word-spacing:-0.717312px;}
.ws50{word-spacing:-0.649910px;}
.ws4f{word-spacing:-0.645581px;}
.wsb{word-spacing:-0.573850px;}
.ws53{word-spacing:-0.502118px;}
.wsa4{word-spacing:-0.468000px;}
.ws8e{word-spacing:-0.430387px;}
.ws61{word-spacing:-0.358656px;}
.ws6e{word-spacing:-0.286925px;}
.wsc0{word-spacing:-0.246000px;}
.wsbf{word-spacing:-0.244522px;}
.ws4c{word-spacing:-0.215194px;}
.wsba{word-spacing:-0.147398px;}
.wsb7{word-spacing:-0.143462px;}
.wsf0{word-spacing:-0.136080px;}
.ws6{word-spacing:-0.071731px;}
.wsf2{word-spacing:-0.004037px;}
.wsdb{word-spacing:-0.003592px;}
.wsd8{word-spacing:-0.003550px;}
.ws40{word-spacing:-0.002016px;}
.ws36{word-spacing:-0.000634px;}
.ws0{word-spacing:0.000000px;}
.wsf3{word-spacing:0.001500px;}
.wsd7{word-spacing:0.002408px;}
.ws85{word-spacing:0.002947px;}
.ws20{word-spacing:0.071731px;}
.wsab{word-spacing:0.095990px;}
.ws1d{word-spacing:0.143462px;}
.ws52{word-spacing:0.215194px;}
.wse5{word-spacing:0.217920px;}
.ws7{word-spacing:0.286925px;}
.ws35{word-spacing:0.374602px;}
.ws46{word-spacing:0.396117px;}
.ws90{word-spacing:0.430387px;}
.wse6{word-spacing:0.502118px;}
.ws4a{word-spacing:0.573850px;}
.wse2{word-spacing:0.590602px;}
.wseb{word-spacing:0.597756px;}
.ws8d{word-spacing:0.645581px;}
.ws8c{word-spacing:0.702000px;}
.ws1c{word-spacing:0.717312px;}
.ws12{word-spacing:0.789043px;}
.ws9{word-spacing:0.860774px;}
.ws1e{word-spacing:0.932506px;}
.wsf4{word-spacing:0.956410px;}
.ws68{word-spacing:1.004237px;}
.wsa{word-spacing:1.075968px;}
.wsa3{word-spacing:1.147699px;}
.ws11{word-spacing:1.219430px;}
.ws42{word-spacing:1.362893px;}
.ws31{word-spacing:1.434624px;}
.ws2c{word-spacing:1.506355px;}
.ws29{word-spacing:1.649818px;}
.wsb0{word-spacing:1.721549px;}
.ws39{word-spacing:1.793280px;}
.ws2f{word-spacing:1.865011px;}
.ws22{word-spacing:1.936742px;}
.ws70{word-spacing:2.008474px;}
.ws88{word-spacing:2.018045px;}
.ws87{word-spacing:2.080205px;}
.ws49{word-spacing:2.223667px;}
.ws69{word-spacing:2.286653px;}
.ws3a{word-spacing:2.295398px;}
.ws1b{word-spacing:2.367130px;}
.ws4d{word-spacing:2.510592px;}
.ws3e{word-spacing:2.582323px;}
.ws67{word-spacing:2.606602px;}
.ws3b{word-spacing:2.654054px;}
.ws99{word-spacing:2.725786px;}
.ws7f{word-spacing:2.773805px;}
.ws32{word-spacing:2.797517px;}
.wsc7{word-spacing:2.846141px;}
.wsc8{word-spacing:2.854090px;}
.ws24{word-spacing:2.869248px;}
.wsf{word-spacing:2.940979px;}
.wsb1{word-spacing:2.989920px;}
.wsae{word-spacing:3.012710px;}
.wsb8{word-spacing:3.084442px;}
.wsc{word-spacing:3.156173px;}
.wscd{word-spacing:3.216701px;}
.wscc{word-spacing:3.222000px;}
.ws73{word-spacing:3.227904px;}
.ws2a{word-spacing:3.299635px;}
.wsbd{word-spacing:3.371366px;}
.ws37{word-spacing:3.443098px;}
.ws19{word-spacing:3.514829px;}
.ws28{word-spacing:3.586560px;}
.ws94{word-spacing:3.658291px;}
.ws16{word-spacing:3.730022px;}
.wsed{word-spacing:3.785510px;}
.wsbe{word-spacing:3.801754px;}
.ws89{word-spacing:3.873485px;}
.ws14{word-spacing:3.945216px;}
.ws65{word-spacing:3.964090px;}
.ws51{word-spacing:3.981763px;}
.ws10{word-spacing:4.016947px;}
.wsea{word-spacing:4.088678px;}
.ws5{word-spacing:4.160410px;}
.wsfa{word-spacing:4.232141px;}
.wsc3{word-spacing:4.309920px;}
.wsf1{word-spacing:4.375603px;}
.ws56{word-spacing:4.519066px;}
.ws5e{word-spacing:4.590797px;}
.wsc2{word-spacing:4.621920px;}
.ws13{word-spacing:4.662528px;}
.ws44{word-spacing:4.734259px;}
.ws2{word-spacing:4.805990px;}
.ws48{word-spacing:5.021184px;}
.ws8{word-spacing:5.092915px;}
.wsb4{word-spacing:5.164646px;}
.ws23{word-spacing:5.236378px;}
.wsaa{word-spacing:5.308109px;}
.wsdf{word-spacing:5.344562px;}
.wsc5{word-spacing:5.379840px;}
.wsc4{word-spacing:5.595034px;}
.ws66{word-spacing:5.618602px;}
.ws7a{word-spacing:5.666765px;}
.wse1{word-spacing:5.738496px;}
.wsec{word-spacing:5.798233px;}
.ws8b{word-spacing:5.810227px;}
.ws92{word-spacing:5.881958px;}
.ws8f{word-spacing:5.947920px;}
.ws41{word-spacing:5.953690px;}
.ws18{word-spacing:6.025421px;}
.wsa9{word-spacing:6.097152px;}
.ws4e{word-spacing:6.168883px;}
.wsa6{word-spacing:6.312346px;}
.ws64{word-spacing:6.384077px;}
.wsf5{word-spacing:6.455765px;}
.ws80{word-spacing:6.527539px;}
.wsf9{word-spacing:6.599270px;}
.ws9d{word-spacing:6.671002px;}
.wsa7{word-spacing:6.742733px;}
.ws2b{word-spacing:6.814464px;}
.ws9b{word-spacing:6.844474px;}
.ws98{word-spacing:6.886195px;}
.wse7{word-spacing:7.029658px;}
.wsc6{word-spacing:7.052602px;}
.ws6b{word-spacing:7.101389px;}
.wsde{word-spacing:7.173072px;}
.ws38{word-spacing:7.173120px;}
.wsdd{word-spacing:7.206858px;}
.wsdc{word-spacing:7.292623px;}
.wsbb{word-spacing:7.297920px;}
.wsee{word-spacing:7.345920px;}
.wse3{word-spacing:7.376602px;}
.ws6c{word-spacing:7.388314px;}
.wsa5{word-spacing:7.460045px;}
.ws8a{word-spacing:7.603507px;}
.wse8{word-spacing:7.688794px;}
.ws7b{word-spacing:7.746970px;}
.wsb3{word-spacing:7.818701px;}
.wsfc{word-spacing:7.889242px;}
.ws7d{word-spacing:7.890432px;}
.wsa1{word-spacing:7.962163px;}
.ws26{word-spacing:8.033894px;}
.wse9{word-spacing:8.036602px;}
.ws9a{word-spacing:8.105626px;}
.ws9c{word-spacing:8.492602px;}
.ws4{word-spacing:8.607744px;}
.ws6f{word-spacing:8.679475px;}
.wsd6{word-spacing:8.723184px;}
.wsda{word-spacing:8.729184px;}
.wsb2{word-spacing:8.822938px;}
.wsca{word-spacing:8.894669px;}
.ws86{word-spacing:8.961644px;}
.wsc1{word-spacing:8.966400px;}
.wsfb{word-spacing:9.038131px;}
.wsc9{word-spacing:9.109862px;}
.wsf7{word-spacing:9.146947px;}
.ws47{word-spacing:9.396787px;}
.wsa0{word-spacing:9.540250px;}
.ws9e{word-spacing:9.611981px;}
.ws27{word-spacing:9.898906px;}
.ws1f{word-spacing:9.970637px;}
.wsa8{word-spacing:10.042368px;}
.wscb{word-spacing:10.177920px;}
.ws6d{word-spacing:10.185830px;}
.wsac{word-spacing:10.257562px;}
.wsf8{word-spacing:10.429920px;}
.wsad{word-spacing:10.472755px;}
.wsd1{word-spacing:10.616218px;}
.wsce{word-spacing:10.687949px;}
.wsd0{word-spacing:10.700947px;}
.wscf{word-spacing:10.713466px;}
.ws72{word-spacing:10.759680px;}
.ws9f{word-spacing:10.885920px;}
.ws62{word-spacing:10.954917px;}
.ws5d{word-spacing:10.960917px;}
.ws55{word-spacing:11.261798px;}
.ws96{word-spacing:11.405261px;}
.ws95{word-spacing:11.441520px;}
.wsf6{word-spacing:11.832396px;}
.wsd2{word-spacing:11.893920px;}
.ws5a{word-spacing:13.126810px;}
.ws5b{word-spacing:13.132090px;}
.ws1a{word-spacing:16.396472px;}
.ws1{word-spacing:35.037485px;}
.wse{word-spacing:35.037648px;}
.wsd5{word-spacing:39.612082px;}
.ws57{word-spacing:53.788483px;}
.wsd9{word-spacing:86.664715px;}
.wsb6{word-spacing:510.442086px;}
.ws75{word-spacing:578.151035px;}
.ws76{word-spacing:657.026511px;}
.ws81{word-spacing:1190.717900px;}
._26{margin-left:-8.249095px;}
._1{margin-left:-6.671009px;}
._15{margin-left:-5.308109px;}
._2{margin-left:-3.873485px;}
._5{margin-left:-2.869284px;}
._0{margin-left:-1.721542px;}
._e{width:1.968857px;}
._1b{width:2.973200px;}
._20{width:15.278724px;}
._22{width:16.301419px;}
._13{width:17.502413px;}
._10{width:18.578374px;}
._a{width:20.228220px;}
._c{width:21.447658px;}
._6{width:22.810543px;}
._d{width:23.958221px;}
._8{width:25.536358px;}
._12{width:26.540544px;}
._4{width:28.046899px;}
._1d{width:29.051136px;}
._f{width:30.342298px;}
._9{width:32.207323px;}
._b{width:34.000589px;}
._14{width:35.148288px;}
._18{width:36.726353px;}
._7{width:37.730647px;}
._1f{width:39.366656px;}
._17{width:40.886784px;}
._23{width:42.608333px;}
._16{width:43.827763px;}
._21{width:45.118925px;}
._24{width:46.170893px;}
._3{width:48.562015px;}
._25{width:50.355302px;}
._11{width:52.076830px;}
._1e{width:54.228787px;}
._1c{width:55.950336px;}
._1a{width:159.360432px;}
._19{width:205.177853px;}
.fc2{color:transparent;}
.fc1{color:rgb(224,49,48);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:11.810400px;}
.fsf{font-size:14.172480px;}
.fse{font-size:15.945000px;}
.fs5{font-size:24.257933px;}
.fs7{font-size:30.326968px;}
.fsa{font-size:39.599998px;}
.fsc{font-size:41.842800px;}
.fs6{font-size:42.455932px;}
.fs9{font-size:44.634037px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs8{font-size:62.484970px;}
.fsb{font-size:65.983497px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:77.708400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y13b{bottom:10.361965px;}
.y13a{bottom:14.398723px;}
.y13c{bottom:17.586608px;}
.y186{bottom:32.137021px;}
.y153{bottom:33.556574px;}
.y10b{bottom:33.747398px;}
.y1a0{bottom:34.163028px;}
.y18e{bottom:34.593584px;}
.y16a{bottom:36.294282px;}
.y144{bottom:37.428080px;}
.y195{bottom:39.782153px;}
.y114{bottom:39.787364px;}
.y14c{bottom:40.299721px;}
.ya7{bottom:40.751755px;}
.y13d{bottom:43.777351px;}
.y1a8{bottom:44.311856px;}
.y171{bottom:45.211384px;}
.y19b{bottom:46.367645px;}
.y187{bottom:46.687434px;}
.y10a{bottom:47.359897px;}
.yac{bottom:47.538117px;}
.y154{bottom:49.526539px;}
.y1a1{bottom:50.739448px;}
.y18f{bottom:51.600560px;}
.ya3{bottom:52.917292px;}
.y113{bottom:53.399863px;}
.y16b{bottom:55.001955px;}
.y145{bottom:57.269552px;}
.y109{bottom:60.972397px;}
.y188{bottom:61.237847px;}
.ybc{bottom:61.914479px;}
.y196{bottom:61.977698px;}
.y14d{bottom:63.012834px;}
.y155{bottom:65.496504px;}
.y1a2{bottom:67.315867px;}
.y190{bottom:68.607536px;}
.y13e{bottom:69.968094px;}
.y1a9{bottom:71.037104px;}
.y176{bottom:71.892027px;}
.yaa{bottom:72.718120px;}
.y142{bottom:72.812408px;}
.y172{bottom:72.836160px;}
.y16c{bottom:73.709629px;}
.y19c{bottom:75.148681px;}
.y14a{bottom:75.610458px;}
.y189{bottom:75.788259px;}
.y146{bottom:77.111024px;}
.y156{bottom:81.466469px;}
.y1a3{bottom:83.892287px;}
.y197{bottom:84.173243px;}
.y191{bottom:85.614512px;}
.y14e{bottom:85.725947px;}
.y18a{bottom:90.338672px;}
.y16d{bottom:92.417303px;}
.y13f{bottom:96.158837px;}
.y147{bottom:96.952496px;}
.y11b{bottom:97.326856px;}
.y157{bottom:97.436435px;}
.y1aa{bottom:97.762352px;}
.yb8{bottom:100.145250px;}
.y173{bottom:100.460936px;}
.y1a4{bottom:100.468707px;}
.ya6{bottom:101.419692px;}
.y192{bottom:102.621488px;}
.ya8{bottom:102.746428px;}
.y19d{bottom:103.929717px;}
.y18b{bottom:104.889085px;}
.y28{bottom:106.299000px;}
.y198{bottom:106.368788px;}
.y14f{bottom:108.439061px;}
.y16e{bottom:111.124976px;}
.y138{bottom:111.721500px;}
.y158{bottom:113.406400px;}
.y148{bottom:116.793968px;}
.y1a5{bottom:117.045126px;}
.y18c{bottom:119.439498px;}
.y193{bottom:119.628464px;}
.y140{bottom:122.349580px;}
.y1ab{bottom:124.487600px;}
.yab{bottom:125.196450px;}
.y27{bottom:127.818000px;}
.y174{bottom:128.085712px;}
.y199{bottom:128.564333px;}
.y159{bottom:129.376365px;}
.y16f{bottom:129.832650px;}
.y150{bottom:131.152174px;}
.y19e{bottom:132.710754px;}
.y1a6{bottom:133.621546px;}
.y18d{bottom:133.989911px;}
.yba{bottom:135.248293px;}
.y149{bottom:136.635440px;}
.y137{bottom:138.796500px;}
.ybd{bottom:143.327962px;}
.y110{bottom:143.748683px;}
.y15a{bottom:145.346330px;}
.y141{bottom:148.540323px;}
.y26{bottom:149.338500px;}
.y112{bottom:149.862598px;}
.y1b6{bottom:151.063500px;}
.y143{bottom:151.432949px;}
.ya5{bottom:151.633914px;}
.y10f{bottom:157.361182px;}
.yb6{bottom:158.304000px;}
.y50{bottom:159.169500px;}
.y136{bottom:160.315500px;}
.y10d{bottom:163.475098px;}
.y25{bottom:170.857500px;}
.y10e{bottom:170.973682px;}
.yc0{bottom:173.901184px;}
.y10c{bottom:177.087597px;}
.y90{bottom:178.320000px;}
.yb5{bottom:179.823000px;}
.ybb{bottom:180.534911px;}
.y11e{bottom:180.738222px;}
.y135{bottom:181.834500px;}
.ya9{bottom:182.404282px;}
.y8f{bottom:184.504500px;}
.y70{bottom:190.569000px;}
.y111{bottom:190.700096px;}
.y24{bottom:192.376500px;}
.y1b5{bottom:195.948000px;}
.y8d{bottom:197.296500px;}
.y4f{bottom:199.488000px;}
.yb4{bottom:201.343500px;}
.y134{bottom:203.355000px;}
.yae{bottom:203.916141px;}
.y8e{bottom:204.289500px;}
.ya4{bottom:212.294824px;}
.y23{bottom:213.895500px;}
.ybf{bottom:214.373712px;}
.y11c{bottom:220.742140px;}
.y4e{bottom:221.007000px;}
.yb3{bottom:222.862500px;}
.y11a{bottom:223.313283px;}
.yb9{bottom:224.526631px;}
.y133{bottom:224.874000px;}
.yad{bottom:230.947801px;}
.ye5{bottom:235.414500px;}
.y4d{bottom:242.526000px;}
.y6f{bottom:243.459000px;}
.yb2{bottom:244.381500px;}
.y132{bottom:246.393000px;}
.y22{bottom:247.233000px;}
.y8c{bottom:251.281500px;}
.y1b4{bottom:251.473500px;}
.ybe{bottom:253.189599px;}
.y121{bottom:256.933500px;}
.y8b{bottom:263.583000px;}
.y6e{bottom:264.978000px;}
.y118{bottom:265.235029px;}
.y1d4{bottom:265.498500px;}
.yb1{bottom:265.900500px;}
.y116{bottom:266.615131px;}
.y168{bottom:266.706000px;}
.y131{bottom:267.912000px;}
.y1b3{bottom:272.992500px;}
.y4c{bottom:273.877500px;}
.y117{bottom:278.847529px;}
.y115{bottom:280.227630px;}
.y120{bottom:286.287000px;}
.y6d{bottom:286.497000px;}
.y1d3{bottom:287.017500px;}
.yb0{bottom:287.419500px;}
.y11d{bottom:288.466951px;}
.y130{bottom:289.431000px;}
.y1b2{bottom:294.513000px;}
.y21{bottom:297.904500px;}
.y119{bottom:303.383299px;}
.y167{bottom:306.963000px;}
.y6c{bottom:308.016000px;}
.y1d2{bottom:308.536500px;}
.ycc{bottom:308.940000px;}
.y12f{bottom:310.951500px;}
.y1b1{bottom:316.032000px;}
.y104{bottom:317.905500px;}
.y4b{bottom:318.081000px;}
.y20{bottom:319.423500px;}
.y8a{bottom:322.353000px;}
.yaf{bottom:325.399500px;}
.y166{bottom:328.482000px;}
.y6b{bottom:329.535000px;}
.ycb{bottom:330.459000px;}
.y89{bottom:334.653000px;}
.y185{bottom:336.552000px;}
.y11f{bottom:336.928500px;}
.y1b0{bottom:337.551000px;}
.y1d1{bottom:339.022500px;}
.y103{bottom:339.424500px;}
.y4a{bottom:339.600000px;}
.y1f{bottom:340.942500px;}
.y12e{bottom:341.281500px;}
.y165{bottom:350.001000px;}
.y6a{bottom:351.054000px;}
.ye4{bottom:351.978000px;}
.ya2{bottom:352.896010px;}
.y1af{bottom:359.070000px;}
.y1d0{bottom:360.541500px;}
.yca{bottom:360.945000px;}
.y49{bottom:361.119000px;}
.y1e{bottom:362.463000px;}
.y108{bottom:364.424997px;}
.y164{bottom:371.521500px;}
.y69{bottom:372.574500px;}
.ye3{bottom:373.497000px;}
.y184{bottom:377.017500px;}
.y12d{bottom:380.578500px;}
.yc9{bottom:382.464000px;}
.y48{bottom:382.638000px;}
.y1d{bottom:383.982000px;}
.y1cf{bottom:391.027500px;}
.y163{bottom:393.040500px;}
.y183{bottom:398.536500px;}
.y88{bottom:401.134500px;}
.y12c{bottom:402.097500px;}
.yc8{bottom:403.983000px;}
.y47{bottom:404.157000px;}
.y1c{bottom:405.501000px;}
.y1ce{bottom:412.546500px;}
.y162{bottom:414.559500px;}
.y68{bottom:414.946500px;}
.y1ae{bottom:418.365000px;}
.y182{bottom:420.055500px;}
.y87{bottom:422.653500px;}
.y12b{bottom:423.616500px;}
.yc7{bottom:425.502000px;}
.y1b{bottom:427.020000px;}
.y1cd{bottom:434.065500px;}
.y102{bottom:434.469000px;}
.y46{bottom:435.076500px;}
.y161{bottom:436.078500px;}
.y1ad{bottom:436.297500px;}
.y181{bottom:441.574500px;}
.y86{bottom:444.174000px;}
.y12a{bottom:445.135500px;}
.yc6{bottom:447.021000px;}
.y1a{bottom:448.539000px;}
.y1ac{bottom:454.231500px;}
.y1cc{bottom:455.584500px;}
.y101{bottom:455.988000px;}
.y45{bottom:456.595500px;}
.y160{bottom:457.597500px;}
.y180{bottom:463.093500px;}
.y85{bottom:465.693000px;}
.y129{bottom:466.656000px;}
.yc5{bottom:468.540000px;}
.ye2{bottom:468.541500px;}
.y19{bottom:470.059500px;}
.y67{bottom:472.048500px;}
.y100{bottom:477.507000px;}
.y44{bottom:478.330500px;}
.y15f{bottom:479.118000px;}
.y17f{bottom:484.614000px;}
.y1cb{bottom:486.070500px;}
.y84{bottom:487.212000px;}
.y128{bottom:488.175000px;}
.yc4{bottom:490.060500px;}
.y18{bottom:491.578500px;}
.y1a7{bottom:492.435000px;}
.y66{bottom:493.567500px;}
.yff{bottom:499.026000px;}
.y43{bottom:499.851000px;}
.y17e{bottom:506.133000px;}
.y1ca{bottom:507.589500px;}
.y127{bottom:509.694000px;}
.y15e{bottom:510.408000px;}
.yc3{bottom:511.579500px;}
.y17{bottom:513.097500px;}
.y19f{bottom:513.954000px;}
.y65{bottom:515.086500px;}
.yfe{bottom:520.546500px;}
.y42{bottom:521.586000px;}
.y1c9{bottom:529.110000px;}
.y83{bottom:529.279500px;}
.y126{bottom:531.213000px;}
.yc2{bottom:533.098500px;}
.y16{bottom:534.616500px;}
.y64{bottom:536.605500px;}
.y17d{bottom:536.619000px;}
.yfd{bottom:545.617500px;}
.y41{bottom:552.721500px;}
.y125{bottom:552.732000px;}
.y15{bottom:556.135500px;}
.y63{bottom:558.124500px;}
.y17c{bottom:558.138000px;}
.y1c8{bottom:559.594500px;}
.ye1{bottom:563.584500px;}
.y15d{bottom:564.924000px;}
.y40{bottom:574.240500px;}
.y124{bottom:574.251000px;}
.y14{bottom:577.656000px;}
.y62{bottom:579.645000px;}
.yfc{bottom:579.654000px;}
.y17b{bottom:579.657000px;}
.y1c7{bottom:581.115000px;}
.y15c{bottom:582.856500px;}
.y82{bottom:583.225500px;}
.ye0{bottom:585.103500px;}
.yc1{bottom:586.938000px;}
.y81{bottom:595.527000px;}
.y3f{bottom:595.759500px;}
.y123{bottom:595.771500px;}
.y13{bottom:599.175000px;}
.y15b{bottom:600.789000px;}
.y61{bottom:601.164000px;}
.yfb{bottom:601.174500px;}
.y1c6{bottom:602.634000px;}
.ydf{bottom:606.622500px;}
.ya1{bottom:611.265000px;}
.yb7{bottom:614.434511px;}
.y3e{bottom:617.278500px;}
.y60{bottom:622.683000px;}
.yfa{bottom:622.693500px;}
.y122{bottom:626.101500px;}
.yde{bottom:628.141500px;}
.y17a{bottom:629.985000px;}
.ya0{bottom:632.784000px;}
.y1c5{bottom:633.120000px;}
.y152{bottom:638.814000px;}
.yf9{bottom:644.212500px;}
.y12{bottom:646.674000px;}
.y3d{bottom:647.764500px;}
.y179{bottom:647.917500px;}
.ydd{bottom:649.662000px;}
.y5f{bottom:653.169000px;}
.y9f{bottom:654.303000px;}
.y1c4{bottom:654.639000px;}
.y80{bottom:660.214500px;}
.y151{bottom:660.333000px;}
.yf8{bottom:665.731500px;}
.y178{bottom:665.850000px;}
.y11{bottom:668.193000px;}
.y3c{bottom:669.283500px;}
.ydc{bottom:671.181000px;}
.y5e{bottom:674.688000px;}
.y9e{bottom:675.822000px;}
.y1c3{bottom:685.123500px;}
.y10{bottom:689.712000px;}
.y3b{bottom:690.802500px;}
.y5d{bottom:696.207000px;}
.yf7{bottom:696.217500px;}
.y9d{bottom:697.341000px;}
.ydb{bottom:701.667000px;}
.y19a{bottom:703.695000px;}
.y177{bottom:703.875000px;}
.yf{bottom:711.231000px;}
.y3a{bottom:712.323000px;}
.y1c2{bottom:715.609500px;}
.y5c{bottom:717.726000px;}
.yf6{bottom:717.736500px;}
.y7f{bottom:718.582500px;}
.yda{bottom:723.186000px;}
.y194{bottom:725.215500px;}
.y175{bottom:725.394000px;}
.y9c{bottom:727.827000px;}
.ye{bottom:732.751500px;}
.y39{bottom:733.842000px;}
.y1c1{bottom:737.128500px;}
.y5b{bottom:739.246500px;}
.yf5{bottom:739.255500px;}
.yd9{bottom:744.705000px;}
.y9b{bottom:749.346000px;}
.yd{bottom:754.270500px;}
.y38{bottom:755.361000px;}
.y5a{bottom:760.765500px;}
.yf4{bottom:760.776000px;}
.yd8{bottom:766.224000px;}
.y1c0{bottom:767.614500px;}
.y7e{bottom:770.587500px;}
.y9a{bottom:770.866500px;}
.yc{bottom:775.789500px;}
.y37{bottom:776.880000px;}
.y59{bottom:782.284500px;}
.yf3{bottom:782.295000px;}
.yd7{bottom:787.743000px;}
.y1bf{bottom:789.133500px;}
.y7d{bottom:792.106500px;}
.y99{bottom:792.385500px;}
.yb{bottom:797.308500px;}
.y36{bottom:798.399000px;}
.y58{bottom:803.803500px;}
.yf2{bottom:803.814000px;}
.yd6{bottom:809.263500px;}
.y1be{bottom:810.654000px;}
.y7c{bottom:813.625500px;}
.ya{bottom:818.827500px;}
.y107{bottom:819.919500px;}
.y98{bottom:822.871500px;}
.y57{bottom:825.322500px;}
.yf1{bottom:825.333000px;}
.y35{bottom:828.885000px;}
.yd5{bottom:830.782500px;}
.y1bd{bottom:832.173000px;}
.y7b{bottom:835.146000px;}
.y9{bottom:840.348000px;}
.y106{bottom:841.438500px;}
.y97{bottom:844.390500px;}
.y56{bottom:846.841500px;}
.yf0{bottom:846.852000px;}
.y14b{bottom:849.895500px;}
.y34{bottom:850.404000px;}
.yd4{bottom:852.301500px;}
.y1bc{bottom:853.692000px;}
.y7a{bottom:856.665000px;}
.y8{bottom:861.867000px;}
.y105{bottom:862.957500px;}
.y96{bottom:865.909500px;}
.yef{bottom:868.372500px;}
.y139{bottom:871.414500px;}
.y33{bottom:871.923000px;}
.yd3{bottom:873.820500px;}
.y7{bottom:883.386000px;}
.y1bb{bottom:884.178000px;}
.y79{bottom:887.151000px;}
.y95{bottom:887.428500px;}
.yee{bottom:889.891500px;}
.y32{bottom:893.443500px;}
.y55{bottom:896.145000px;}
.yd2{bottom:904.306500px;}
.y6{bottom:904.905000px;}
.y1ba{bottom:905.697000px;}
.y78{bottom:908.670000px;}
.y94{bottom:908.947500px;}
.yed{bottom:911.410500px;}
.y170{bottom:914.956500px;}
.y31{bottom:914.962500px;}
.yd1{bottom:925.825500px;}
.y5{bottom:926.424000px;}
.y93{bottom:930.468000px;}
.y1b9{bottom:936.183000px;}
.y169{bottom:936.475500px;}
.y30{bottom:936.481500px;}
.yec{bottom:941.896500px;}
.yd0{bottom:947.344500px;}
.y92{bottom:951.987000px;}
.y77{bottom:957.403500px;}
.y2f{bottom:958.000500px;}
.yeb{bottom:963.415500px;}
.ycf{bottom:968.865000px;}
.y76{bottom:975.336000px;}
.y91{bottom:976.513500px;}
.y54{bottom:979.519500px;}
.y4{bottom:980.431500px;}
.yea{bottom:984.934500px;}
.y2e{bottom:988.486500px;}
.yce{bottom:990.384000px;}
.y53{bottom:1001.040000px;}
.ye9{bottom:1006.453500px;}
.y75{bottom:1009.887000px;}
.y2d{bottom:1010.005500px;}
.ycd{bottom:1011.903000px;}
.y3{bottom:1015.513500px;}
.y52{bottom:1022.559000px;}
.ye8{bottom:1027.972500px;}
.y2c{bottom:1031.524500px;}
.y74{bottom:1032.003000px;}
.y1b8{bottom:1044.078000px;}
.ye7{bottom:1049.493000px;}
.y2b{bottom:1053.045000px;}
.y73{bottom:1054.120500px;}
.y51{bottom:1055.376000px;}
.y2{bottom:1057.104000px;}
.y1b7{bottom:1065.597000px;}
.ye6{bottom:1071.012000px;}
.y2a{bottom:1074.564000px;}
.y72{bottom:1076.238000px;}
.y1{bottom:1086.993000px;}
.y29{bottom:1096.083000px;}
.y71{bottom:1098.354000px;}
.h26{height:10.971862px;}
.h28{height:13.166234px;}
.h27{height:14.812905px;}
.h18{height:17.029069px;}
.h1a{height:21.289531px;}
.h19{height:29.804064px;}
.h20{height:30.338085px;}
.h1e{height:31.333094px;}
.h24{height:37.240092px;}
.h4{height:37.806768px;}
.h1d{height:43.864449px;}
.hb{height:45.250129px;}
.h6{height:48.992410px;}
.h1c{height:49.221069px;}
.h5{height:50.140109px;}
.h21{height:50.550834px;}
.h9{height:51.144346px;}
.h29{height:53.200284px;}
.ha{height:54.516768px;}
.h7{height:55.406089px;}
.h3{height:57.834699px;}
.h22{height:59.638827px;}
.h14{height:60.042699px;}
.h8{height:63.840768px;}
.h2{height:68.192176px;}
.h23{height:68.588334px;}
.h2a{height:80.046768px;}
.h13{height:82.572699px;}
.h15{height:84.780699px;}
.he{height:102.326400px;}
.h10{height:104.011248px;}
.hc{height:106.356699px;}
.h12{height:112.752699px;}
.hf{height:113.040768px;}
.hd{height:113.046768px;}
.h16{height:139.746768px;}
.h11{height:166.086699px;}
.h25{height:170.069760px;}
.h17{height:239.531165px;}
.h1b{height:265.822256px;}
.h1f{height:324.224986px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:287.010000px;}
.w4{width:419.512483px;}
.w2{width:510.226404px;}
.w3{width:637.772542px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:7.178769px;}
.x3d{left:16.324667px;}
.x3e{left:18.730246px;}
.x3f{left:22.462549px;}
.x47{left:24.322354px;}
.x36{left:27.418884px;}
.x37{left:29.101110px;}
.x39{left:30.744665px;}
.x25{left:32.047383px;}
.x20{left:40.684924px;}
.x38{left:43.419372px;}
.x2d{left:51.726540px;}
.x29{left:59.878470px;}
.x24{left:67.155113px;}
.x1f{left:104.653494px;}
.x46{left:109.766999px;}
.x48{left:124.089471px;}
.x6{left:127.558500px;}
.x41{left:128.785954px;}
.x3{left:136.525500px;}
.x44{left:148.480500px;}
.x45{left:152.725500px;}
.x22{left:154.989695px;}
.x1{left:158.877000px;}
.x5{left:161.575500px;}
.x8{left:166.503000px;}
.x52{left:171.238500px;}
.x35{left:173.834072px;}
.x40{left:174.893874px;}
.x3b{left:176.847952px;}
.x31{left:180.140439px;}
.x7{left:181.558500px;}
.x3a{left:184.533987px;}
.x2{left:186.649500px;}
.x1e{left:191.337000px;}
.x2f{left:197.598000px;}
.x34{left:198.951453px;}
.xe{left:205.473000px;}
.x21{left:207.350027px;}
.x4a{left:208.882500px;}
.x4d{left:210.579000px;}
.x2e{left:212.875135px;}
.x12{left:214.012500px;}
.x4f{left:215.860500px;}
.x28{left:220.119587px;}
.x27{left:222.906000px;}
.x2a{left:228.107731px;}
.x43{left:230.803500px;}
.x30{left:236.700000px;}
.x9{left:238.536000px;}
.xd{left:241.353000px;}
.x51{left:246.265941px;}
.x49{left:248.800947px;}
.xc{left:251.830500px;}
.x42{left:283.409169px;}
.x14{left:290.269500px;}
.x4{left:305.274000px;}
.xb{left:311.820000px;}
.x19{left:313.227000px;}
.x26{left:326.243242px;}
.x23{left:331.445495px;}
.x33{left:345.439152px;}
.x32{left:348.049503px;}
.xa{left:352.591500px;}
.x1b{left:356.637000px;}
.xf{left:357.711000px;}
.x56{left:361.969500px;}
.x10{left:369.960000px;}
.x13{left:372.303000px;}
.x2b{left:382.194768px;}
.x2c{left:386.819930px;}
.x1c{left:400.962000px;}
.x11{left:413.371500px;}
.x15{left:428.259000px;}
.x1a{left:452.725500px;}
.x54{left:465.754500px;}
.x53{left:470.035500px;}
.x55{left:472.113000px;}
.x16{left:480.976500px;}
.x1d{left:504.490500px;}
.x4b{left:507.261000px;}
.x4e{left:508.957500px;}
.x4c{left:511.542000px;}
.x50{left:514.240500px;}
.x17{left:542.692500px;}
.x18{left:744.445500px;}
@media print{
.v4{vertical-align:-35.189333pt;}
.v2{vertical-align:-23.141333pt;}
.v19{vertical-align:-20.444574pt;}
.v1c{vertical-align:-19.280000pt;}
.v10{vertical-align:-14.277333pt;}
.v7{vertical-align:-9.568000pt;}
.v5{vertical-align:-8.288000pt;}
.v18{vertical-align:-6.560183pt;}
.v0{vertical-align:0.000000pt;}
.v1a{vertical-align:4.761440pt;}
.v1b{vertical-align:8.078217pt;}
.v1d{vertical-align:14.405333pt;}
.va{vertical-align:18.421333pt;}
.v14{vertical-align:21.989333pt;}
.v1{vertical-align:23.141333pt;}
.v3{vertical-align:25.104000pt;}
.v6{vertical-align:26.325333pt;}
.v16{vertical-align:40.405333pt;}
.v8{vertical-align:43.136000pt;}
.v15{vertical-align:45.130667pt;}
.v12{vertical-align:46.853333pt;}
.vd{vertical-align:51.648000pt;}
.v9{vertical-align:66.272000pt;}
.v17{vertical-align:67.472000pt;}
.vc{vertical-align:70.058667pt;}
.v13{vertical-align:71.957333pt;}
.ve{vertical-align:89.904000pt;}
.vb{vertical-align:95.381333pt;}
.v11{vertical-align:119.365333pt;}
.vf{vertical-align:133.642667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000567pt;}
.ls51{letter-spacing:0.000834pt;}
.ls50{letter-spacing:0.000857pt;}
.ls2e{letter-spacing:0.001145pt;}
.lsa{letter-spacing:0.001458pt;}
.ls10{letter-spacing:0.001507pt;}
.lse{letter-spacing:0.002452pt;}
.ls14{letter-spacing:0.003321pt;}
.ls13{letter-spacing:0.003328pt;}
.ls46{letter-spacing:0.004145pt;}
.ls4b{letter-spacing:0.004236pt;}
.ls3e{letter-spacing:0.004970pt;}
.ls4d{letter-spacing:1.630768pt;}
.ls52{letter-spacing:1.728908pt;}
.ls0{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.653383pt;}
.ls59{letter-spacing:2.655733pt;}
.ls2f{letter-spacing:2.656092pt;}
.ls5a{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.658591pt;}
.ls7{letter-spacing:2.658717pt;}
.ls5b{letter-spacing:2.661067pt;}
.ls18{letter-spacing:5.014424pt;}
.ls4e{letter-spacing:5.851693pt;}
.ls49{letter-spacing:6.370591pt;}
.lsb{letter-spacing:6.375925pt;}
.ls44{letter-spacing:6.377479pt;}
.ls27{letter-spacing:8.670903pt;}
.ls12{letter-spacing:8.676236pt;}
.ls55{letter-spacing:13.119420pt;}
.ls3b{letter-spacing:14.163915pt;}
.ls1f{letter-spacing:14.164509pt;}
.lsd{letter-spacing:14.164905pt;}
.ls20{letter-spacing:14.166642pt;}
.lsc{letter-spacing:14.168655pt;}
.ls42{letter-spacing:14.169248pt;}
.ls34{letter-spacing:14.169842pt;}
.ls3f{letter-spacing:14.170238pt;}
.ls3c{letter-spacing:14.171976pt;}
.ls56{letter-spacing:14.657067pt;}
.ls4{letter-spacing:15.035733pt;}
.ls1b{letter-spacing:15.507321pt;}
.ls38{letter-spacing:15.640655pt;}
.ls39{letter-spacing:15.642086pt;}
.ls31{letter-spacing:16.823925pt;}
.ls30{letter-spacing:17.706238pt;}
.ls8{letter-spacing:17.709988pt;}
.ls1d{letter-spacing:17.709995pt;}
.ls1e{letter-spacing:17.711572pt;}
.ls16{letter-spacing:18.184655pt;}
.ls17{letter-spacing:18.186086pt;}
.ls6{letter-spacing:18.287420pt;}
.ls5{letter-spacing:18.291321pt;}
.ls58{letter-spacing:18.484753pt;}
.ls2{letter-spacing:18.599925pt;}
.ls19{letter-spacing:19.491321pt;}
.ls1a{letter-spacing:19.498086pt;}
.lsf{letter-spacing:20.179328pt;}
.ls33{letter-spacing:20.368092pt;}
.ls48{letter-spacing:20.538238pt;}
.ls3a{letter-spacing:20.543572pt;}
.ls4f{letter-spacing:21.061425pt;}
.ls53{letter-spacing:21.665798pt;}
.ls57{letter-spacing:21.953067pt;}
.ls41{letter-spacing:22.841569pt;}
.ls54{letter-spacing:23.542400pt;}
.ls1c{letter-spacing:27.092236pt;}
.ls9{letter-spacing:42.906238pt;}
.ls2b{letter-spacing:68.146591pt;}
.ls29{letter-spacing:68.151925pt;}
.ls25{letter-spacing:69.879925pt;}
.ls43{letter-spacing:69.881248pt;}
.ls22{letter-spacing:73.351925pt;}
.ls3d{letter-spacing:80.505248pt;}
.ls45{letter-spacing:109.769248pt;}
.ls2a{letter-spacing:131.005258pt;}
.ls26{letter-spacing:132.738591pt;}
.ls2c{letter-spacing:144.658591pt;}
.ls2d{letter-spacing:176.594591pt;}
.ls36{letter-spacing:178.543572pt;}
.ls28{letter-spacing:194.370452pt;}
.ls47{letter-spacing:208.138238pt;}
.ls23{letter-spacing:225.245258pt;}
.ls40{letter-spacing:233.044970pt;}
.ls24{letter-spacing:255.442591pt;}
.ls35{letter-spacing:558.447176pt;}
.ls21{letter-spacing:580.804509pt;}
.ls4a{letter-spacing:594.839925pt;}
.ls15{letter-spacing:725.771657pt;}
.ls32{letter-spacing:746.631925pt;}
.ls37{letter-spacing:796.557258pt;}
.ws3c{word-spacing:-63.761067pt;}
.ws79{word-spacing:-45.163900pt;}
.ws7e{word-spacing:-40.590295pt;}
.ws45{word-spacing:-29.961977pt;}
.ws3d{word-spacing:-17.343010pt;}
.ws25{word-spacing:-15.940267pt;}
.wsb5{word-spacing:-15.235773pt;}
.ws84{word-spacing:-14.771215pt;}
.ws82{word-spacing:-13.885549pt;}
.wsd3{word-spacing:-13.283467pt;}
.ws5c{word-spacing:-10.626800pt;}
.ws83{word-spacing:-9.918675pt;}
.ws77{word-spacing:-9.434652pt;}
.ws74{word-spacing:-6.739326pt;}
.ws78{word-spacing:-5.390652pt;}
.ws91{word-spacing:-3.634381pt;}
.ws43{word-spacing:-3.506859pt;}
.ws15{word-spacing:-3.315575pt;}
.ws7c{word-spacing:-3.251814pt;}
.ws54{word-spacing:-3.188053pt;}
.ws63{word-spacing:-3.178061pt;}
.ws58{word-spacing:-3.176643pt;}
.wsaf{word-spacing:-2.996770pt;}
.wsa2{word-spacing:-2.823031pt;}
.ws3{word-spacing:-2.805487pt;}
.ws6a{word-spacing:-2.422921pt;}
.ws21{word-spacing:-2.359159pt;}
.ws93{word-spacing:-2.231637pt;}
.wse0{word-spacing:-2.104115pt;}
.ws33{word-spacing:-2.040354pt;}
.ws4b{word-spacing:-1.912832pt;}
.ws2e{word-spacing:-1.849071pt;}
.ws71{word-spacing:-1.785310pt;}
.ws17{word-spacing:-1.721549pt;}
.wsb9{word-spacing:-1.594027pt;}
.ws30{word-spacing:-1.530266pt;}
.wsbc{word-spacing:-1.338982pt;}
.wsef{word-spacing:-1.275221pt;}
.ws3f{word-spacing:-1.211460pt;}
.ws34{word-spacing:-1.147699pt;}
.ws5f{word-spacing:-1.020177pt;}
.ws60{word-spacing:-0.956416pt;}
.wse4{word-spacing:-0.952047pt;}
.ws97{word-spacing:-0.892655pt;}
.wsd4{word-spacing:-0.828894pt;}
.ws2d{word-spacing:-0.765133pt;}
.ws59{word-spacing:-0.690740pt;}
.wsd{word-spacing:-0.637611pt;}
.ws50{word-spacing:-0.577698pt;}
.ws4f{word-spacing:-0.573850pt;}
.wsb{word-spacing:-0.510089pt;}
.ws53{word-spacing:-0.446327pt;}
.wsa4{word-spacing:-0.416000pt;}
.ws8e{word-spacing:-0.382566pt;}
.ws61{word-spacing:-0.318805pt;}
.ws6e{word-spacing:-0.255044pt;}
.wsc0{word-spacing:-0.218667pt;}
.wsbf{word-spacing:-0.217353pt;}
.ws4c{word-spacing:-0.191283pt;}
.wsba{word-spacing:-0.131021pt;}
.wsb7{word-spacing:-0.127522pt;}
.wsf0{word-spacing:-0.120960pt;}
.ws6{word-spacing:-0.063761pt;}
.wsf2{word-spacing:-0.003588pt;}
.wsdb{word-spacing:-0.003193pt;}
.wsd8{word-spacing:-0.003155pt;}
.ws40{word-spacing:-0.001792pt;}
.ws36{word-spacing:-0.000563pt;}
.ws0{word-spacing:0.000000pt;}
.wsf3{word-spacing:0.001333pt;}
.wsd7{word-spacing:0.002141pt;}
.ws85{word-spacing:0.002620pt;}
.ws20{word-spacing:0.063761pt;}
.wsab{word-spacing:0.085325pt;}
.ws1d{word-spacing:0.127522pt;}
.ws52{word-spacing:0.191283pt;}
.wse5{word-spacing:0.193707pt;}
.ws7{word-spacing:0.255044pt;}
.ws35{word-spacing:0.332979pt;}
.ws46{word-spacing:0.352104pt;}
.ws90{word-spacing:0.382566pt;}
.wse6{word-spacing:0.446327pt;}
.ws4a{word-spacing:0.510089pt;}
.wse2{word-spacing:0.524979pt;}
.wseb{word-spacing:0.531339pt;}
.ws8d{word-spacing:0.573850pt;}
.ws8c{word-spacing:0.624000pt;}
.ws1c{word-spacing:0.637611pt;}
.ws12{word-spacing:0.701372pt;}
.ws9{word-spacing:0.765133pt;}
.ws1e{word-spacing:0.828894pt;}
.wsf4{word-spacing:0.850142pt;}
.ws68{word-spacing:0.892655pt;}
.wsa{word-spacing:0.956416pt;}
.wsa3{word-spacing:1.020177pt;}
.ws11{word-spacing:1.083938pt;}
.ws42{word-spacing:1.211460pt;}
.ws31{word-spacing:1.275221pt;}
.ws2c{word-spacing:1.338982pt;}
.ws29{word-spacing:1.466505pt;}
.wsb0{word-spacing:1.530266pt;}
.ws39{word-spacing:1.594027pt;}
.ws2f{word-spacing:1.657788pt;}
.ws22{word-spacing:1.721549pt;}
.ws70{word-spacing:1.785310pt;}
.ws88{word-spacing:1.793818pt;}
.ws87{word-spacing:1.849071pt;}
.ws49{word-spacing:1.976593pt;}
.ws69{word-spacing:2.032580pt;}
.ws3a{word-spacing:2.040354pt;}
.ws1b{word-spacing:2.104115pt;}
.ws4d{word-spacing:2.231637pt;}
.ws3e{word-spacing:2.295398pt;}
.ws67{word-spacing:2.316979pt;}
.ws3b{word-spacing:2.359159pt;}
.ws99{word-spacing:2.422921pt;}
.ws7f{word-spacing:2.465604pt;}
.ws32{word-spacing:2.486682pt;}
.wsc7{word-spacing:2.529903pt;}
.wsc8{word-spacing:2.536969pt;}
.ws24{word-spacing:2.550443pt;}
.wsf{word-spacing:2.614204pt;}
.wsb1{word-spacing:2.657707pt;}
.wsae{word-spacing:2.677965pt;}
.wsb8{word-spacing:2.741726pt;}
.wsc{word-spacing:2.805487pt;}
.wscd{word-spacing:2.859290pt;}
.wscc{word-spacing:2.864000pt;}
.ws73{word-spacing:2.869248pt;}
.ws2a{word-spacing:2.933009pt;}
.wsbd{word-spacing:2.996770pt;}
.ws37{word-spacing:3.060531pt;}
.ws19{word-spacing:3.124292pt;}
.ws28{word-spacing:3.188053pt;}
.ws94{word-spacing:3.251814pt;}
.ws16{word-spacing:3.315575pt;}
.wsed{word-spacing:3.364898pt;}
.wsbe{word-spacing:3.379337pt;}
.ws89{word-spacing:3.443098pt;}
.ws14{word-spacing:3.506859pt;}
.ws65{word-spacing:3.523635pt;}
.ws51{word-spacing:3.539345pt;}
.ws10{word-spacing:3.570620pt;}
.wsea{word-spacing:3.634381pt;}
.ws5{word-spacing:3.698142pt;}
.wsfa{word-spacing:3.761903pt;}
.wsc3{word-spacing:3.831040pt;}
.wsf1{word-spacing:3.889425pt;}
.ws56{word-spacing:4.016947pt;}
.ws5e{word-spacing:4.080708pt;}
.wsc2{word-spacing:4.108373pt;}
.ws13{word-spacing:4.144469pt;}
.ws44{word-spacing:4.208230pt;}
.ws2{word-spacing:4.271991pt;}
.ws48{word-spacing:4.463275pt;}
.ws8{word-spacing:4.527036pt;}
.wsb4{word-spacing:4.590797pt;}
.ws23{word-spacing:4.654558pt;}
.wsaa{word-spacing:4.718319pt;}
.wsdf{word-spacing:4.750722pt;}
.wsc5{word-spacing:4.782080pt;}
.wsc4{word-spacing:4.973363pt;}
.ws66{word-spacing:4.994313pt;}
.ws7a{word-spacing:5.037124pt;}
.wse1{word-spacing:5.100885pt;}
.wsec{word-spacing:5.153985pt;}
.ws8b{word-spacing:5.164646pt;}
.ws92{word-spacing:5.228407pt;}
.ws8f{word-spacing:5.287040pt;}
.ws41{word-spacing:5.292169pt;}
.ws18{word-spacing:5.355930pt;}
.wsa9{word-spacing:5.419691pt;}
.ws4e{word-spacing:5.483452pt;}
.wsa6{word-spacing:5.610974pt;}
.ws64{word-spacing:5.674735pt;}
.wsf5{word-spacing:5.738458pt;}
.ws80{word-spacing:5.802257pt;}
.wsf9{word-spacing:5.866018pt;}
.ws9d{word-spacing:5.929779pt;}
.wsa7{word-spacing:5.993540pt;}
.ws2b{word-spacing:6.057301pt;}
.ws9b{word-spacing:6.083977pt;}
.ws98{word-spacing:6.121062pt;}
.wse7{word-spacing:6.248585pt;}
.wsc6{word-spacing:6.268979pt;}
.ws6b{word-spacing:6.312346pt;}
.wsde{word-spacing:6.376064pt;}
.ws38{word-spacing:6.376107pt;}
.wsdd{word-spacing:6.406096pt;}
.wsdc{word-spacing:6.482332pt;}
.wsbb{word-spacing:6.487040pt;}
.wsee{word-spacing:6.529707pt;}
.wse3{word-spacing:6.556979pt;}
.ws6c{word-spacing:6.567390pt;}
.wsa5{word-spacing:6.631151pt;}
.ws8a{word-spacing:6.758673pt;}
.wse8{word-spacing:6.834483pt;}
.ws7b{word-spacing:6.886195pt;}
.wsb3{word-spacing:6.949956pt;}
.wsfc{word-spacing:7.012659pt;}
.ws7d{word-spacing:7.013717pt;}
.wsa1{word-spacing:7.077478pt;}
.ws26{word-spacing:7.141239pt;}
.wse9{word-spacing:7.143646pt;}
.ws9a{word-spacing:7.205001pt;}
.ws9c{word-spacing:7.548979pt;}
.ws4{word-spacing:7.651328pt;}
.ws6f{word-spacing:7.715089pt;}
.wsd6{word-spacing:7.753941pt;}
.wsda{word-spacing:7.759275pt;}
.wsb2{word-spacing:7.842611pt;}
.wsca{word-spacing:7.906372pt;}
.ws86{word-spacing:7.965906pt;}
.wsc1{word-spacing:7.970133pt;}
.wsfb{word-spacing:8.033894pt;}
.wsc9{word-spacing:8.097655pt;}
.wsf7{word-spacing:8.130620pt;}
.ws47{word-spacing:8.352700pt;}
.wsa0{word-spacing:8.480222pt;}
.ws9e{word-spacing:8.543983pt;}
.ws27{word-spacing:8.799027pt;}
.ws1f{word-spacing:8.862788pt;}
.wsa8{word-spacing:8.926549pt;}
.wscb{word-spacing:9.047040pt;}
.ws6d{word-spacing:9.054071pt;}
.wsac{word-spacing:9.117833pt;}
.wsf8{word-spacing:9.271040pt;}
.wsad{word-spacing:9.309116pt;}
.wsd1{word-spacing:9.436638pt;}
.wsce{word-spacing:9.500399pt;}
.wsd0{word-spacing:9.511953pt;}
.wscf{word-spacing:9.523081pt;}
.ws72{word-spacing:9.564160pt;}
.ws9f{word-spacing:9.676373pt;}
.ws62{word-spacing:9.737704pt;}
.ws5d{word-spacing:9.743037pt;}
.ws55{word-spacing:10.010487pt;}
.ws96{word-spacing:10.138010pt;}
.ws95{word-spacing:10.170240pt;}
.wsf6{word-spacing:10.517685pt;}
.wsd2{word-spacing:10.572373pt;}
.ws5a{word-spacing:11.668275pt;}
.ws5b{word-spacing:11.672969pt;}
.ws1a{word-spacing:14.574642pt;}
.ws1{word-spacing:31.144431pt;}
.wse{word-spacing:31.144576pt;}
.wsd5{word-spacing:35.210739pt;}
.ws57{word-spacing:47.811985pt;}
.wsd9{word-spacing:77.035302pt;}
.wsb6{word-spacing:453.726299pt;}
.ws75{word-spacing:513.912031pt;}
.ws76{word-spacing:584.023565pt;}
.ws81{word-spacing:1058.415911pt;}
._26{margin-left:-7.332529pt;}
._1{margin-left:-5.929786pt;}
._15{margin-left:-4.718319pt;}
._2{margin-left:-3.443098pt;}
._5{margin-left:-2.550475pt;}
._0{margin-left:-1.530259pt;}
._e{width:1.750095pt;}
._1b{width:2.642844pt;}
._20{width:13.581088pt;}
._22{width:14.490150pt;}
._13{width:15.557700pt;}
._10{width:16.514110pt;}
._a{width:17.980640pt;}
._c{width:19.064585pt;}
._6{width:20.276038pt;}
._d{width:21.296196pt;}
._8{width:22.698985pt;}
._12{width:23.591595pt;}
._4{width:24.930577pt;}
._1d{width:25.823232pt;}
._f{width:26.970931pt;}
._9{width:28.628732pt;}
._b{width:30.222746pt;}
._14{width:31.242923pt;}
._18{width:32.645647pt;}
._7{width:33.538353pt;}
._1f{width:34.992583pt;}
._17{width:36.343808pt;}
._23{width:37.874074pt;}
._16{width:38.958012pt;}
._21{width:40.105711pt;}
._24{width:41.040794pt;}
._3{width:43.166236pt;}
._25{width:44.760269pt;}
._11{width:46.290515pt;}
._1e{width:48.203366pt;}
._1c{width:49.733632pt;}
._1a{width:141.653717pt;}
._19{width:182.380314pt;}
.fsd{font-size:10.498133pt;}
.fsf{font-size:12.597760pt;}
.fse{font-size:14.173333pt;}
.fs5{font-size:21.562607pt;}
.fs7{font-size:26.957304pt;}
.fsa{font-size:35.199999pt;}
.fsc{font-size:37.193600pt;}
.fs6{font-size:37.738606pt;}
.fs9{font-size:39.674700pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs8{font-size:55.542195pt;}
.fsb{font-size:58.651998pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:69.074133pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:9.210636pt;}
.y13a{bottom:12.798865pt;}
.y13c{bottom:15.632541pt;}
.y186{bottom:28.566241pt;}
.y153{bottom:29.828065pt;}
.y10b{bottom:29.997687pt;}
.y1a0{bottom:30.367136pt;}
.y18e{bottom:30.749853pt;}
.y16a{bottom:32.261584pt;}
.y144{bottom:33.269405pt;}
.y195{bottom:35.361914pt;}
.y114{bottom:35.366546pt;}
.y14c{bottom:35.821975pt;}
.ya7{bottom:36.223782pt;}
.y13d{bottom:38.913201pt;}
.y1a8{bottom:39.388317pt;}
.y171{bottom:40.187897pt;}
.y19b{bottom:41.215684pt;}
.y187{bottom:41.499941pt;}
.y10a{bottom:42.097686pt;}
.yac{bottom:42.256104pt;}
.y154{bottom:44.023590pt;}
.y1a1{bottom:45.101731pt;}
.y18f{bottom:45.867165pt;}
.ya3{bottom:47.037593pt;}
.y113{bottom:47.466545pt;}
.y16b{bottom:48.890627pt;}
.y145{bottom:50.906269pt;}
.y109{bottom:54.197686pt;}
.y188{bottom:54.433641pt;}
.ybc{bottom:55.035092pt;}
.y196{bottom:55.091287pt;}
.y14d{bottom:56.011408pt;}
.y155{bottom:58.219115pt;}
.y1a2{bottom:59.836326pt;}
.y190{bottom:60.984477pt;}
.y13e{bottom:62.193862pt;}
.y1a9{bottom:63.144093pt;}
.y176{bottom:63.904024pt;}
.yaa{bottom:64.638329pt;}
.y142{bottom:64.722140pt;}
.y172{bottom:64.743253pt;}
.y16c{bottom:65.519670pt;}
.y19c{bottom:66.798827pt;}
.y14a{bottom:67.209296pt;}
.y189{bottom:67.367342pt;}
.y146{bottom:68.543133pt;}
.y156{bottom:72.414639pt;}
.y1a3{bottom:74.570922pt;}
.y197{bottom:74.820661pt;}
.y191{bottom:76.101789pt;}
.y14e{bottom:76.200842pt;}
.y18a{bottom:80.301042pt;}
.y16d{bottom:82.148714pt;}
.y13f{bottom:85.474522pt;}
.y147{bottom:86.179997pt;}
.y11b{bottom:86.512761pt;}
.y157{bottom:86.610164pt;}
.y1aa{bottom:86.899869pt;}
.yb8{bottom:89.018000pt;}
.y173{bottom:89.298610pt;}
.y1a4{bottom:89.305517pt;}
.ya6{bottom:90.150837pt;}
.y192{bottom:91.219101pt;}
.ya8{bottom:91.330158pt;}
.y19d{bottom:92.381971pt;}
.y18b{bottom:93.234742pt;}
.y28{bottom:94.488000pt;}
.y198{bottom:94.550034pt;}
.y14f{bottom:96.390276pt;}
.y16e{bottom:98.777757pt;}
.y138{bottom:99.308000pt;}
.y158{bottom:100.805689pt;}
.y148{bottom:103.816861pt;}
.y1a5{bottom:104.040112pt;}
.y18c{bottom:106.168443pt;}
.y193{bottom:106.336413pt;}
.y140{bottom:108.755183pt;}
.y1ab{bottom:110.655645pt;}
.yab{bottom:111.285733pt;}
.y27{bottom:113.616000pt;}
.y174{bottom:113.853966pt;}
.y199{bottom:114.279407pt;}
.y159{bottom:115.001213pt;}
.y16f{bottom:115.406800pt;}
.y150{bottom:116.579710pt;}
.y19e{bottom:117.965114pt;}
.y1a6{bottom:118.774707pt;}
.y18d{bottom:119.102143pt;}
.yba{bottom:120.220705pt;}
.y149{bottom:121.453725pt;}
.y137{bottom:123.374667pt;}
.ybd{bottom:127.402633pt;}
.y110{bottom:127.776607pt;}
.y15a{bottom:129.196738pt;}
.y141{bottom:132.035843pt;}
.y26{bottom:132.745333pt;}
.y112{bottom:133.211198pt;}
.y1b6{bottom:134.278667pt;}
.y143{bottom:134.607066pt;}
.ya5{bottom:134.785701pt;}
.y10f{bottom:139.876607pt;}
.yb6{bottom:140.714667pt;}
.y50{bottom:141.484000pt;}
.y136{bottom:142.502667pt;}
.y10d{bottom:145.311198pt;}
.y25{bottom:151.873333pt;}
.y10e{bottom:151.976606pt;}
.yc0{bottom:154.578830pt;}
.y10c{bottom:157.411197pt;}
.y90{bottom:158.506667pt;}
.yb5{bottom:159.842667pt;}
.ybb{bottom:160.475476pt;}
.y11e{bottom:160.656197pt;}
.y135{bottom:161.630667pt;}
.ya9{bottom:162.137140pt;}
.y8f{bottom:164.004000pt;}
.y70{bottom:169.394667pt;}
.y111{bottom:169.511197pt;}
.y24{bottom:171.001333pt;}
.y1b5{bottom:174.176000pt;}
.y8d{bottom:175.374667pt;}
.y4f{bottom:177.322667pt;}
.yb4{bottom:178.972000pt;}
.y134{bottom:180.760000pt;}
.yae{bottom:181.258792pt;}
.y8e{bottom:181.590667pt;}
.ya4{bottom:188.706510pt;}
.y23{bottom:190.129333pt;}
.ybf{bottom:190.554410pt;}
.y11c{bottom:196.215236pt;}
.y4e{bottom:196.450667pt;}
.yb3{bottom:198.100000pt;}
.y11a{bottom:198.500696pt;}
.yb9{bottom:199.579228pt;}
.y133{bottom:199.888000pt;}
.yad{bottom:205.286935pt;}
.ye5{bottom:209.257333pt;}
.y4d{bottom:215.578667pt;}
.y6f{bottom:216.408000pt;}
.yb2{bottom:217.228000pt;}
.y132{bottom:219.016000pt;}
.y22{bottom:219.762667pt;}
.y8c{bottom:223.361333pt;}
.y1b4{bottom:223.532000pt;}
.ybe{bottom:225.057422pt;}
.y121{bottom:228.385333pt;}
.y8b{bottom:234.296000pt;}
.y6e{bottom:235.536000pt;}
.y118{bottom:235.764470pt;}
.y1d4{bottom:235.998667pt;}
.yb1{bottom:236.356000pt;}
.y116{bottom:236.991227pt;}
.y168{bottom:237.072000pt;}
.y131{bottom:238.144000pt;}
.y1b3{bottom:242.660000pt;}
.y4c{bottom:243.446667pt;}
.y117{bottom:247.864470pt;}
.y115{bottom:249.091227pt;}
.y120{bottom:254.477333pt;}
.y6d{bottom:254.664000pt;}
.y1d3{bottom:255.126667pt;}
.yb0{bottom:255.484000pt;}
.y11d{bottom:256.415068pt;}
.y130{bottom:257.272000pt;}
.y1b2{bottom:261.789333pt;}
.y21{bottom:264.804000pt;}
.y119{bottom:269.674043pt;}
.y167{bottom:272.856000pt;}
.y6c{bottom:273.792000pt;}
.y1d2{bottom:274.254667pt;}
.ycc{bottom:274.613333pt;}
.y12f{bottom:276.401333pt;}
.y1b1{bottom:280.917333pt;}
.y104{bottom:282.582667pt;}
.y4b{bottom:282.738667pt;}
.y20{bottom:283.932000pt;}
.y8a{bottom:286.536000pt;}
.yaf{bottom:289.244000pt;}
.y166{bottom:291.984000pt;}
.y6b{bottom:292.920000pt;}
.ycb{bottom:293.741333pt;}
.y89{bottom:297.469333pt;}
.y185{bottom:299.157333pt;}
.y11f{bottom:299.492000pt;}
.y1b0{bottom:300.045333pt;}
.y1d1{bottom:301.353333pt;}
.y103{bottom:301.710667pt;}
.y4a{bottom:301.866667pt;}
.y1f{bottom:303.060000pt;}
.y12e{bottom:303.361333pt;}
.y165{bottom:311.112000pt;}
.y6a{bottom:312.048000pt;}
.ye4{bottom:312.869333pt;}
.ya2{bottom:313.685342pt;}
.y1af{bottom:319.173333pt;}
.y1d0{bottom:320.481333pt;}
.yca{bottom:320.840000pt;}
.y49{bottom:320.994667pt;}
.y1e{bottom:322.189333pt;}
.y108{bottom:323.933331pt;}
.y164{bottom:330.241333pt;}
.y69{bottom:331.177333pt;}
.ye3{bottom:331.997333pt;}
.y184{bottom:335.126667pt;}
.y12d{bottom:338.292000pt;}
.yc9{bottom:339.968000pt;}
.y48{bottom:340.122667pt;}
.y1d{bottom:341.317333pt;}
.y1cf{bottom:347.580000pt;}
.y163{bottom:349.369333pt;}
.y183{bottom:354.254667pt;}
.y88{bottom:356.564000pt;}
.y12c{bottom:357.420000pt;}
.yc8{bottom:359.096000pt;}
.y47{bottom:359.250667pt;}
.y1c{bottom:360.445333pt;}
.y1ce{bottom:366.708000pt;}
.y162{bottom:368.497333pt;}
.y68{bottom:368.841333pt;}
.y1ae{bottom:371.880000pt;}
.y182{bottom:373.382667pt;}
.y87{bottom:375.692000pt;}
.y12b{bottom:376.548000pt;}
.yc7{bottom:378.224000pt;}
.y1b{bottom:379.573333pt;}
.y1cd{bottom:385.836000pt;}
.y102{bottom:386.194667pt;}
.y46{bottom:386.734667pt;}
.y161{bottom:387.625333pt;}
.y1ad{bottom:387.820000pt;}
.y181{bottom:392.510667pt;}
.y86{bottom:394.821333pt;}
.y12a{bottom:395.676000pt;}
.yc6{bottom:397.352000pt;}
.y1a{bottom:398.701333pt;}
.y1ac{bottom:403.761333pt;}
.y1cc{bottom:404.964000pt;}
.y101{bottom:405.322667pt;}
.y45{bottom:405.862667pt;}
.y160{bottom:406.753333pt;}
.y180{bottom:411.638667pt;}
.y85{bottom:413.949333pt;}
.y129{bottom:414.805333pt;}
.yc5{bottom:416.480000pt;}
.ye2{bottom:416.481333pt;}
.y19{bottom:417.830667pt;}
.y67{bottom:419.598667pt;}
.y100{bottom:424.450667pt;}
.y44{bottom:425.182667pt;}
.y15f{bottom:425.882667pt;}
.y17f{bottom:430.768000pt;}
.y1cb{bottom:432.062667pt;}
.y84{bottom:433.077333pt;}
.y128{bottom:433.933333pt;}
.yc4{bottom:435.609333pt;}
.y18{bottom:436.958667pt;}
.y1a7{bottom:437.720000pt;}
.y66{bottom:438.726667pt;}
.yff{bottom:443.578667pt;}
.y43{bottom:444.312000pt;}
.y17e{bottom:449.896000pt;}
.y1ca{bottom:451.190667pt;}
.y127{bottom:453.061333pt;}
.y15e{bottom:453.696000pt;}
.yc3{bottom:454.737333pt;}
.y17{bottom:456.086667pt;}
.y19f{bottom:456.848000pt;}
.y65{bottom:457.854667pt;}
.yfe{bottom:462.708000pt;}
.y42{bottom:463.632000pt;}
.y1c9{bottom:470.320000pt;}
.y83{bottom:470.470667pt;}
.y126{bottom:472.189333pt;}
.yc2{bottom:473.865333pt;}
.y16{bottom:475.214667pt;}
.y64{bottom:476.982667pt;}
.y17d{bottom:476.994667pt;}
.yfd{bottom:484.993333pt;}
.y41{bottom:491.308000pt;}
.y125{bottom:491.317333pt;}
.y15{bottom:494.342667pt;}
.y63{bottom:496.110667pt;}
.y17c{bottom:496.122667pt;}
.y1c8{bottom:497.417333pt;}
.ye1{bottom:500.964000pt;}
.y15d{bottom:502.154667pt;}
.y40{bottom:510.436000pt;}
.y124{bottom:510.445333pt;}
.y14{bottom:513.472000pt;}
.y62{bottom:515.240000pt;}
.yfc{bottom:515.248000pt;}
.y17b{bottom:515.250667pt;}
.y1c7{bottom:516.546667pt;}
.y15c{bottom:518.094667pt;}
.y82{bottom:518.422667pt;}
.ye0{bottom:520.092000pt;}
.yc1{bottom:521.722667pt;}
.y81{bottom:529.357333pt;}
.y3f{bottom:529.564000pt;}
.y123{bottom:529.574667pt;}
.y13{bottom:532.600000pt;}
.y15b{bottom:534.034667pt;}
.y61{bottom:534.368000pt;}
.yfb{bottom:534.377333pt;}
.y1c6{bottom:535.674667pt;}
.ydf{bottom:539.220000pt;}
.ya1{bottom:543.346667pt;}
.yb7{bottom:546.164010pt;}
.y3e{bottom:548.692000pt;}
.y60{bottom:553.496000pt;}
.yfa{bottom:553.505333pt;}
.y122{bottom:556.534667pt;}
.yde{bottom:558.348000pt;}
.y17a{bottom:559.986667pt;}
.ya0{bottom:562.474667pt;}
.y1c5{bottom:562.773333pt;}
.y152{bottom:567.834667pt;}
.yf9{bottom:572.633333pt;}
.y12{bottom:574.821333pt;}
.y3d{bottom:575.790667pt;}
.y179{bottom:575.926667pt;}
.ydd{bottom:577.477333pt;}
.y5f{bottom:580.594667pt;}
.y9f{bottom:581.602667pt;}
.y1c4{bottom:581.901333pt;}
.y80{bottom:586.857333pt;}
.y151{bottom:586.962667pt;}
.yf8{bottom:591.761333pt;}
.y178{bottom:591.866667pt;}
.y11{bottom:593.949333pt;}
.y3c{bottom:594.918667pt;}
.ydc{bottom:596.605333pt;}
.y5e{bottom:599.722667pt;}
.y9e{bottom:600.730667pt;}
.y1c3{bottom:608.998667pt;}
.y10{bottom:613.077333pt;}
.y3b{bottom:614.046667pt;}
.y5d{bottom:618.850667pt;}
.yf7{bottom:618.860000pt;}
.y9d{bottom:619.858667pt;}
.ydb{bottom:623.704000pt;}
.y19a{bottom:625.506667pt;}
.y177{bottom:625.666667pt;}
.yf{bottom:632.205333pt;}
.y3a{bottom:633.176000pt;}
.y1c2{bottom:636.097333pt;}
.y5c{bottom:637.978667pt;}
.yf6{bottom:637.988000pt;}
.y7f{bottom:638.740000pt;}
.yda{bottom:642.832000pt;}
.y194{bottom:644.636000pt;}
.y175{bottom:644.794667pt;}
.y9c{bottom:646.957333pt;}
.ye{bottom:651.334667pt;}
.y39{bottom:652.304000pt;}
.y1c1{bottom:655.225333pt;}
.y5b{bottom:657.108000pt;}
.yf5{bottom:657.116000pt;}
.yd9{bottom:661.960000pt;}
.y9b{bottom:666.085333pt;}
.yd{bottom:670.462667pt;}
.y38{bottom:671.432000pt;}
.y5a{bottom:676.236000pt;}
.yf4{bottom:676.245333pt;}
.yd8{bottom:681.088000pt;}
.y1c0{bottom:682.324000pt;}
.y7e{bottom:684.966667pt;}
.y9a{bottom:685.214667pt;}
.yc{bottom:689.590667pt;}
.y37{bottom:690.560000pt;}
.y59{bottom:695.364000pt;}
.yf3{bottom:695.373333pt;}
.yd7{bottom:700.216000pt;}
.y1bf{bottom:701.452000pt;}
.y7d{bottom:704.094667pt;}
.y99{bottom:704.342667pt;}
.yb{bottom:708.718667pt;}
.y36{bottom:709.688000pt;}
.y58{bottom:714.492000pt;}
.yf2{bottom:714.501333pt;}
.yd6{bottom:719.345333pt;}
.y1be{bottom:720.581333pt;}
.y7c{bottom:723.222667pt;}
.ya{bottom:727.846667pt;}
.y107{bottom:728.817333pt;}
.y98{bottom:731.441333pt;}
.y57{bottom:733.620000pt;}
.yf1{bottom:733.629333pt;}
.y35{bottom:736.786667pt;}
.yd5{bottom:738.473333pt;}
.y1bd{bottom:739.709333pt;}
.y7b{bottom:742.352000pt;}
.y9{bottom:746.976000pt;}
.y106{bottom:747.945333pt;}
.y97{bottom:750.569333pt;}
.y56{bottom:752.748000pt;}
.yf0{bottom:752.757333pt;}
.y14b{bottom:755.462667pt;}
.y34{bottom:755.914667pt;}
.yd4{bottom:757.601333pt;}
.y1bc{bottom:758.837333pt;}
.y7a{bottom:761.480000pt;}
.y8{bottom:766.104000pt;}
.y105{bottom:767.073333pt;}
.y96{bottom:769.697333pt;}
.yef{bottom:771.886667pt;}
.y139{bottom:774.590667pt;}
.y33{bottom:775.042667pt;}
.yd3{bottom:776.729333pt;}
.y7{bottom:785.232000pt;}
.y1bb{bottom:785.936000pt;}
.y79{bottom:788.578667pt;}
.y95{bottom:788.825333pt;}
.yee{bottom:791.014667pt;}
.y32{bottom:794.172000pt;}
.y55{bottom:796.573333pt;}
.yd2{bottom:803.828000pt;}
.y6{bottom:804.360000pt;}
.y1ba{bottom:805.064000pt;}
.y78{bottom:807.706667pt;}
.y94{bottom:807.953333pt;}
.yed{bottom:810.142667pt;}
.y170{bottom:813.294667pt;}
.y31{bottom:813.300000pt;}
.yd1{bottom:822.956000pt;}
.y5{bottom:823.488000pt;}
.y93{bottom:827.082667pt;}
.y1b9{bottom:832.162667pt;}
.y169{bottom:832.422667pt;}
.y30{bottom:832.428000pt;}
.yec{bottom:837.241333pt;}
.yd0{bottom:842.084000pt;}
.y92{bottom:846.210667pt;}
.y77{bottom:851.025333pt;}
.y2f{bottom:851.556000pt;}
.yeb{bottom:856.369333pt;}
.ycf{bottom:861.213333pt;}
.y76{bottom:866.965333pt;}
.y91{bottom:868.012000pt;}
.y54{bottom:870.684000pt;}
.y4{bottom:871.494667pt;}
.yea{bottom:875.497333pt;}
.y2e{bottom:878.654667pt;}
.yce{bottom:880.341333pt;}
.y53{bottom:889.813333pt;}
.ye9{bottom:894.625333pt;}
.y75{bottom:897.677333pt;}
.y2d{bottom:897.782667pt;}
.ycd{bottom:899.469333pt;}
.y3{bottom:902.678667pt;}
.y52{bottom:908.941333pt;}
.ye8{bottom:913.753333pt;}
.y2c{bottom:916.910667pt;}
.y74{bottom:917.336000pt;}
.y1b8{bottom:928.069333pt;}
.ye7{bottom:932.882667pt;}
.y2b{bottom:936.040000pt;}
.y73{bottom:936.996000pt;}
.y51{bottom:938.112000pt;}
.y2{bottom:939.648000pt;}
.y1b7{bottom:947.197333pt;}
.ye6{bottom:952.010667pt;}
.y2a{bottom:955.168000pt;}
.y72{bottom:956.656000pt;}
.y1{bottom:966.216000pt;}
.y29{bottom:974.296000pt;}
.y71{bottom:976.314667pt;}
.h26{height:9.752766pt;}
.h28{height:11.703319pt;}
.h27{height:13.167027pt;}
.h18{height:15.136950pt;}
.h1a{height:18.924028pt;}
.h19{height:26.492502pt;}
.h20{height:26.967186pt;}
.h1e{height:27.851639pt;}
.h24{height:33.102304pt;}
.h4{height:33.606016pt;}
.h1d{height:38.990621pt;}
.hb{height:40.222337pt;}
.h6{height:43.548809pt;}
.h1c{height:43.752061pt;}
.h5{height:44.568986pt;}
.h21{height:44.934074pt;}
.h9{height:45.461641pt;}
.h29{height:47.289141pt;}
.ha{height:48.459349pt;}
.h7{height:49.249857pt;}
.h3{height:51.408621pt;}
.h22{height:53.012291pt;}
.h14{height:53.371288pt;}
.h8{height:56.747349pt;}
.h2{height:60.615267pt;}
.h23{height:60.967408pt;}
.h2a{height:71.152683pt;}
.h13{height:73.397955pt;}
.h15{height:75.360621pt;}
.he{height:90.956800pt;}
.h10{height:92.454443pt;}
.hc{height:94.539288pt;}
.h12{height:100.224621pt;}
.hf{height:100.480683pt;}
.hd{height:100.486016pt;}
.h16{height:124.219349pt;}
.h11{height:147.632621pt;}
.h25{height:151.173120pt;}
.h17{height:212.916591pt;}
.h1b{height:236.286450pt;}
.h1f{height:288.199988pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:255.120000pt;}
.w4{width:372.899984pt;}
.w2{width:453.534581pt;}
.w3{width:566.908926pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:6.381128pt;}
.x3d{left:14.510815pt;}
.x3e{left:16.649108pt;}
.x3f{left:19.966710pt;}
.x47{left:21.619870pt;}
.x36{left:24.372341pt;}
.x37{left:25.867654pt;}
.x39{left:27.328591pt;}
.x25{left:28.486563pt;}
.x20{left:36.164377pt;}
.x38{left:38.594997pt;}
.x2d{left:45.979147pt;}
.x29{left:53.225306pt;}
.x24{left:59.693434pt;}
.x1f{left:93.025328pt;}
.x46{left:97.570666pt;}
.x48{left:110.301752pt;}
.x6{left:113.385333pt;}
.x41{left:114.476404pt;}
.x3{left:121.356000pt;}
.x44{left:131.982667pt;}
.x45{left:135.756000pt;}
.x22{left:137.768617pt;}
.x1{left:141.224000pt;}
.x5{left:143.622667pt;}
.x8{left:148.002667pt;}
.x52{left:152.212000pt;}
.x35{left:154.519175pt;}
.x40{left:155.461221pt;}
.x3b{left:157.198180pt;}
.x31{left:160.124835pt;}
.x7{left:161.385333pt;}
.x3a{left:164.030211pt;}
.x2{left:165.910667pt;}
.x1e{left:170.077333pt;}
.x2f{left:175.642667pt;}
.x34{left:176.845736pt;}
.xe{left:182.642667pt;}
.x21{left:184.311135pt;}
.x4a{left:185.673333pt;}
.x4d{left:187.181333pt;}
.x2e{left:189.222342pt;}
.x12{left:190.233333pt;}
.x4f{left:191.876000pt;}
.x28{left:195.661855pt;}
.x27{left:198.138667pt;}
.x2a{left:202.762428pt;}
.x43{left:205.158667pt;}
.x30{left:210.400000pt;}
.x9{left:212.032000pt;}
.xd{left:214.536000pt;}
.x51{left:218.903059pt;}
.x49{left:221.156397pt;}
.xc{left:223.849333pt;}
.x42{left:251.919262pt;}
.x14{left:258.017333pt;}
.x4{left:271.354667pt;}
.xb{left:277.173333pt;}
.x19{left:278.424000pt;}
.x26{left:289.993993pt;}
.x23{left:294.618218pt;}
.x33{left:307.057024pt;}
.x32{left:309.377336pt;}
.xa{left:313.414667pt;}
.x1b{left:317.010667pt;}
.xf{left:317.965333pt;}
.x56{left:321.750667pt;}
.x10{left:328.853333pt;}
.x13{left:330.936000pt;}
.x2b{left:339.728682pt;}
.x2c{left:343.839938pt;}
.x1c{left:356.410667pt;}
.x11{left:367.441333pt;}
.x15{left:380.674667pt;}
.x1a{left:402.422667pt;}
.x54{left:414.004000pt;}
.x53{left:417.809333pt;}
.x55{left:419.656000pt;}
.x16{left:427.534667pt;}
.x1d{left:448.436000pt;}
.x4b{left:450.898667pt;}
.x4e{left:452.406667pt;}
.x4c{left:454.704000pt;}
.x50{left:457.102667pt;}
.x17{left:482.393333pt;}
.x18{left:661.729333pt;}
}




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