
    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_d4b4b39a2350e3f37e8ee85d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_888d2a7762cc3923f75eda6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122000;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_458907e3153f44285b60669f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704102;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_d0d1fd416653ad1b2c7141e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_e9b771dbdcd03c796913354d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.122000;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_580e2a3761f619e39c235b56.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_134033b31c732740af03206a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_d0d1fd416653ad1b2c7141e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_888d2a7762cc3923f75eda6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.122000;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_888d2a7762cc3923f75eda6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.122000;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_d0d1fd416653ad1b2c7141e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_888d2a7762cc3923f75eda6f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.122000;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_d0d1fd416653ad1b2c7141e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_142368a0e54a531fe2283556.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.127000;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_066f9992d309052a062c0154.woff2')format("woff");}.fff{font-family:fff;line-height:0.898438;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_8aea98a3e3fe60fcc69feee5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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:ff11;src:url('chunks/assets/font_050f7e49a8bbb2b778fd6fab.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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:ff12;src:url('chunks/assets/font_40b47dfd39244f9131339a4e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.029000;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:ff13;src:url('chunks/assets/font_5fb18bd6a08fdd1815f09420.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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);}
.v1{vertical-align:-5.102400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.865000px;}
.v3{vertical-align:9.287400px;}
.v2{vertical-align:18.000000px;}
.v5{vertical-align:19.980600px;}
.ls4{letter-spacing:-5.520000px;}
.ls2{letter-spacing:-2.220000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007800px;}
.ls3{letter-spacing:6.960000px;}
.ls6{letter-spacing:20.520000px;}
.ls5{letter-spacing:21.870000px;}
.ls7{letter-spacing:27.900000px;}
.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;}
}
.ws0{word-spacing:-80.064000px;}
.wsc0{word-spacing:-27.900000px;}
.wsb2{word-spacing:-21.900000px;}
.wsbf{word-spacing:-20.520000px;}
.ws2{word-spacing:-15.000000px;}
.ws55{word-spacing:-14.400000px;}
.ws9b{word-spacing:-9.480000px;}
.wsc5{word-spacing:-7.740000px;}
.ws96{word-spacing:-6.960000px;}
.ws5{word-spacing:-5.040000px;}
.ws7b{word-spacing:-3.840000px;}
.ws6f{word-spacing:-3.420000px;}
.ws86{word-spacing:-3.300000px;}
.ws17{word-spacing:-3.120000px;}
.wsfb{word-spacing:-3.000000px;}
.ws25{word-spacing:-2.940000px;}
.wsd5{word-spacing:-2.820000px;}
.wsc1{word-spacing:-2.700000px;}
.ws15{word-spacing:-2.640000px;}
.wsec{word-spacing:-2.520000px;}
.wse1{word-spacing:-2.400000px;}
.ws88{word-spacing:-2.340000px;}
.wsf5{word-spacing:-2.160000px;}
.wsb4{word-spacing:-2.100000px;}
.ws4e{word-spacing:-2.040000px;}
.ws78{word-spacing:-1.980000px;}
.ws2c{word-spacing:-1.776000px;}
.ws4d{word-spacing:-1.620000px;}
.ws22{word-spacing:-1.560000px;}
.ws19{word-spacing:-1.440000px;}
.ws5d{word-spacing:-1.200000px;}
.wsd7{word-spacing:-1.140000px;}
.wsa1{word-spacing:-1.020000px;}
.ws8{word-spacing:-0.960000px;}
.ws18{word-spacing:-0.840000px;}
.ws98{word-spacing:-0.780000px;}
.ws7c{word-spacing:-0.660000px;}
.ws4b{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.420000px;}
.wsd4{word-spacing:-0.360000px;}
.ws3b{word-spacing:-0.300000px;}
.ws45{word-spacing:-0.180000px;}
.ws7a{word-spacing:-0.120000px;}
.ws30{word-spacing:-0.072000px;}
.ws95{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws46{word-spacing:0.060000px;}
.wsef{word-spacing:0.240000px;}
.ws3a{word-spacing:0.300000px;}
.wsd3{word-spacing:0.360000px;}
.ws24{word-spacing:0.420000px;}
.wsd6{word-spacing:0.660000px;}
.ws44{word-spacing:0.720000px;}
.ws12{word-spacing:0.780000px;}
.wsf1{word-spacing:0.900000px;}
.ws3d{word-spacing:1.020000px;}
.ws85{word-spacing:1.080000px;}
.ws6{word-spacing:1.140000px;}
.ws65{word-spacing:1.260000px;}
.wse5{word-spacing:1.320000px;}
.wsf4{word-spacing:1.380000px;}
.ws70{word-spacing:1.440000px;}
.wsce{word-spacing:1.500000px;}
.wsed{word-spacing:1.560000px;}
.ws51{word-spacing:1.620000px;}
.ws41{word-spacing:1.680000px;}
.wse4{word-spacing:1.800000px;}
.ws3c{word-spacing:1.860000px;}
.wsa5{word-spacing:1.920000px;}
.ws5b{word-spacing:1.980000px;}
.ws52{word-spacing:2.160000px;}
.ws100{word-spacing:2.280000px;}
.wsd0{word-spacing:2.340000px;}
.ws39{word-spacing:2.460000px;}
.wsfe{word-spacing:2.520000px;}
.ws35{word-spacing:2.640000px;}
.ws4c{word-spacing:2.700000px;}
.wsea{word-spacing:2.760000px;}
.ws67{word-spacing:3.000000px;}
.wsf2{word-spacing:3.060000px;}
.wscf{word-spacing:3.120000px;}
.wsd{word-spacing:3.180000px;}
.wsd1{word-spacing:3.240000px;}
.wsdc{word-spacing:3.360000px;}
.wsf{word-spacing:3.540000px;}
.ws47{word-spacing:3.600000px;}
.ws11{word-spacing:3.660000px;}
.ws7{word-spacing:3.900000px;}
.wsfd{word-spacing:3.960000px;}
.ws36{word-spacing:4.020000px;}
.wsf6{word-spacing:4.080000px;}
.ws64{word-spacing:4.140000px;}
.wsf3{word-spacing:4.380000px;}
.ws83{word-spacing:4.440000px;}
.wsfa{word-spacing:4.500000px;}
.wsb5{word-spacing:4.560000px;}
.ws3e{word-spacing:4.620000px;}
.wsd9{word-spacing:4.740000px;}
.ws58{word-spacing:4.800000px;}
.ws2b{word-spacing:4.860000px;}
.ws69{word-spacing:4.920000px;}
.wse7{word-spacing:4.980000px;}
.wsdd{word-spacing:5.100000px;}
.wse8{word-spacing:5.220000px;}
.ws34{word-spacing:5.280000px;}
.ws50{word-spacing:5.340000px;}
.wsa2{word-spacing:5.460000px;}
.ws40{word-spacing:5.520000px;}
.wsa3{word-spacing:5.580000px;}
.ws104{word-spacing:5.700000px;}
.ws48{word-spacing:5.820000px;}
.wsde{word-spacing:5.880000px;}
.ws68{word-spacing:5.940000px;}
.wse6{word-spacing:6.000000px;}
.ws1e{word-spacing:6.060000px;}
.wsff{word-spacing:6.120000px;}
.wsf0{word-spacing:6.180000px;}
.ws101{word-spacing:6.240000px;}
.ws56{word-spacing:6.360000px;}
.ws53{word-spacing:6.420000px;}
.wse3{word-spacing:6.660000px;}
.wsf7{word-spacing:6.780000px;}
.ws2d{word-spacing:6.912000px;}
.ws84{word-spacing:6.960000px;}
.ws5a{word-spacing:7.020000px;}
.wsba{word-spacing:7.080000px;}
.ws9{word-spacing:7.140000px;}
.wsb3{word-spacing:7.200000px;}
.ws2a{word-spacing:7.260000px;}
.ws94{word-spacing:7.320000px;}
.wsee{word-spacing:7.500000px;}
.ws14{word-spacing:7.560000px;}
.ws7d{word-spacing:7.680000px;}
.ws38{word-spacing:7.800000px;}
.ws49{word-spacing:7.860000px;}
.ws13{word-spacing:7.920000px;}
.wsae{word-spacing:8.040000px;}
.ws6a{word-spacing:8.100000px;}
.ws43{word-spacing:8.160000px;}
.ws42{word-spacing:8.280000px;}
.ws26{word-spacing:8.460000px;}
.ws2e{word-spacing:8.496000px;}
.wsab{word-spacing:8.759400px;}
.ws4f{word-spacing:8.760000px;}
.ws5f{word-spacing:8.940000px;}
.wsf8{word-spacing:9.000000px;}
.ws105{word-spacing:9.060000px;}
.ws57{word-spacing:9.120000px;}
.ws37{word-spacing:9.180000px;}
.wsd2{word-spacing:9.240000px;}
.ws4a{word-spacing:9.360000px;}
.ws3f{word-spacing:9.480000px;}
.ws28{word-spacing:10.020000px;}
.wse{word-spacing:10.560000px;}
.wsdb{word-spacing:11.220000px;}
.wsd8{word-spacing:11.700000px;}
.wscd{word-spacing:11.760000px;}
.ws5e{word-spacing:12.060000px;}
.ws1a{word-spacing:12.180000px;}
.ws27{word-spacing:12.360000px;}
.wsfc{word-spacing:12.900000px;}
.ws10{word-spacing:12.960000px;}
.wsda{word-spacing:13.020000px;}
.ws87{word-spacing:13.200000px;}
.wsf9{word-spacing:13.260000px;}
.wse2{word-spacing:13.980000px;}
.ws23{word-spacing:14.040000px;}
.ws1b{word-spacing:14.460000px;}
.ws32{word-spacing:14.520000px;}
.wse9{word-spacing:15.000000px;}
.wse0{word-spacing:15.360000px;}
.ws1d{word-spacing:15.420000px;}
.wseb{word-spacing:15.720000px;}
.ws97{word-spacing:16.380000px;}
.wsc3{word-spacing:16.920000px;}
.ws31{word-spacing:17.700000px;}
.wsc6{word-spacing:17.880000px;}
.wsb9{word-spacing:19.260000px;}
.ws33{word-spacing:19.860000px;}
.ws59{word-spacing:20.520000px;}
.wsac{word-spacing:20.640000px;}
.wsb{word-spacing:20.700000px;}
.wsa7{word-spacing:20.820000px;}
.wsc{word-spacing:22.020000px;}
.ws1c{word-spacing:22.680000px;}
.wsdf{word-spacing:23.460000px;}
.wsc9{word-spacing:23.760000px;}
.wsc4{word-spacing:24.720000px;}
.ws61{word-spacing:24.840000px;}
.ws16{word-spacing:26.100000px;}
.ws4{word-spacing:27.480000px;}
.ws79{word-spacing:28.500000px;}
.ws2f{word-spacing:28.920000px;}
.ws103{word-spacing:29.580000px;}
.ws63{word-spacing:30.240000px;}
.ws29{word-spacing:30.420000px;}
.wsa4{word-spacing:32.220000px;}
.wsbd{word-spacing:33.180000px;}
.ws21{word-spacing:33.900000px;}
.ws1f{word-spacing:35.580000px;}
.ws62{word-spacing:37.140000px;}
.wsbc{word-spacing:37.440000px;}
.ws20{word-spacing:41.820000px;}
.wsa{word-spacing:45.780000px;}
.wsaf{word-spacing:45.840000px;}
.wsc2{word-spacing:45.900000px;}
.ws9a{word-spacing:46.204200px;}
.ws102{word-spacing:47.760000px;}
.wsad{word-spacing:48.240000px;}
.wsa0{word-spacing:49.800000px;}
.ws5c{word-spacing:58.920000px;}
.wsca{word-spacing:66.600000px;}
.ws9f{word-spacing:71.760000px;}
.wsb0{word-spacing:77.220000px;}
.wsb8{word-spacing:79.080000px;}
.wsa9{word-spacing:84.360600px;}
.wsc7{word-spacing:86.340000px;}
.wsb7{word-spacing:94.440000px;}
.wsb1{word-spacing:95.280000px;}
.wsc8{word-spacing:97.140000px;}
.wsaa{word-spacing:99.059400px;}
.wsa6{word-spacing:101.100000px;}
.wscb{word-spacing:103.620000px;}
.ws77{word-spacing:106.200000px;}
.ws73{word-spacing:117.756000px;}
.ws82{word-spacing:123.424800px;}
.ws7f{word-spacing:125.651400px;}
.wsb6{word-spacing:135.900000px;}
.ws75{word-spacing:136.200000px;}
.ws74{word-spacing:136.200600px;}
.wscc{word-spacing:137.880000px;}
.ws6e{word-spacing:138.769200px;}
.ws93{word-spacing:139.606800px;}
.ws6d{word-spacing:145.790400px;}
.ws71{word-spacing:147.756000px;}
.ws7e{word-spacing:153.425400px;}
.ws92{word-spacing:154.606800px;}
.ws6b{word-spacing:160.790400px;}
.wsbb{word-spacing:163.020000px;}
.ws90{word-spacing:163.683600px;}
.ws54{word-spacing:166.020000px;}
.ws6c{word-spacing:166.190400px;}
.ws8b{word-spacing:174.448800px;}
.wsa8{word-spacing:174.900000px;}
.ws80{word-spacing:183.701400px;}
.ws9c{word-spacing:187.795200px;}
.ws8e{word-spacing:191.457000px;}
.ws89{word-spacing:193.683600px;}
.ws9d{word-spacing:202.795200px;}
.ws8c{word-spacing:214.468200px;}
.ws8a{word-spacing:218.566800px;}
.ws8d{word-spacing:221.457600px;}
.ws9e{word-spacing:224.008200px;}
.ws91{word-spacing:239.307000px;}
.wsbe{word-spacing:253.800000px;}
.ws99{word-spacing:408.168600px;}
.ws8f{word-spacing:437.115600px;}
.ws60{word-spacing:483.015000px;}
.ws72{word-spacing:589.679400px;}
.ws76{word-spacing:832.418400px;}
.ws81{word-spacing:870.450000px;}
.ws1{word-spacing:871.763400px;}
._93{margin-left:-27.906000px;}
._91{margin-left:-21.882000px;}
._92{margin-left:-20.868000px;}
._9{margin-left:-11.802600px;}
._8{margin-left:-9.372000px;}
._4{margin-left:-7.380000px;}
._1{margin-left:-5.604000px;}
._2{margin-left:-3.960000px;}
._3{margin-left:-2.520000px;}
._0{margin-left:-1.207800px;}
._5{width:1.398000px;}
._54{width:3.282000px;}
._79{width:5.531400px;}
._6{width:7.700400px;}
._7{width:9.451800px;}
._94{width:12.025800px;}
._b{width:51.060000px;}
._34{width:53.565600px;}
._d{width:55.927800px;}
._4f{width:57.684600px;}
._35{width:62.237400px;}
._1e{width:65.362800px;}
._1f{width:66.523200px;}
._4e{width:69.190800px;}
._77{width:75.129000px;}
._70{width:82.732800px;}
._45{width:85.755000px;}
._78{width:88.666800px;}
._6f{width:90.433200px;}
._36{width:95.370600px;}
._5e{width:100.932000px;}
._5d{width:111.544200px;}
._50{width:113.985600px;}
._7e{width:115.747800px;}
._84{width:120.731400px;}
._44{width:124.255800px;}
._83{width:127.434600px;}
._71{width:130.485000px;}
._3a{width:132.756000px;}
._37{width:137.279400px;}
._81{width:145.747800px;}
._7a{width:148.025400px;}
._1d{width:153.747600px;}
._10{width:156.144600px;}
._c{width:158.280000px;}
._31{width:161.282400px;}
._3d{width:162.756000px;}
._5b{width:164.268000px;}
._2c{width:167.062200px;}
._53{width:168.425400px;}
._5a{width:172.357200px;}
._43{width:174.001800px;}
._2d{width:175.587600px;}
._7b{width:178.110600px;}
._42{width:183.669000px;}
._39{width:185.433000px;}
._6e{width:188.128800px;}
._6d{width:189.243600px;}
._26{width:191.102400px;}
._5c{width:194.491200px;}
._3c{width:195.673200px;}
._25{width:197.062200px;}
._76{width:201.013200px;}
._22{width:202.462200px;}
._18{width:204.221400px;}
._27{width:205.275600px;}
._55{width:206.424000px;}
._41{width:207.571800px;}
._7d{width:208.648800px;}
._30{width:210.115800px;}
._52{width:211.971600px;}
._38{width:213.489000px;}
._23{width:215.515800px;}
._80{width:218.371200px;}
._6c{width:219.449400px;}
._3f{width:224.289000px;}
._86{width:225.965400px;}
._82{width:227.840400px;}
._67{width:229.467600px;}
._a{width:234.300000px;}
._64{width:236.457600px;}
._74{width:237.972600px;}
._8a{width:241.299000px;}
._89{width:244.134000px;}
._62{width:246.476400px;}
._60{width:249.906600px;}
._8c{width:252.588000px;}
._20{width:253.992000px;}
._4d{width:255.856800px;}
._63{width:259.134000px;}
._49{width:264.803400px;}
._3e{width:266.459400px;}
._6b{width:269.154000px;}
._21{width:275.551200px;}
._88{width:285.688200px;}
._68{width:289.893600px;}
._16{width:293.244600px;}
._47{width:295.051800px;}
._3b{width:299.099400px;}
._87{width:302.106600px;}
._6a{width:314.967000px;}
._85{width:317.368200px;}
._8b{width:318.423000px;}
._65{width:319.893600px;}
._13{width:323.604600px;}
._14{width:325.164600px;}
._f{width:332.424600px;}
._8e{width:341.308200px;}
._8d{width:347.931000px;}
._8f{width:348.967800px;}
._51{width:357.401400px;}
._7f{width:367.797600px;}
._73{width:389.589600px;}
._59{width:396.829800px;}
._69{width:406.707600px;}
._5f{width:410.007600px;}
._32{width:432.089400px;}
._66{width:440.007000px;}
._2f{width:442.085400px;}
._2b{width:444.929400px;}
._2e{width:447.401400px;}
._33{width:452.944200px;}
._2a{width:460.444200px;}
._29{width:462.401400px;}
._56{width:466.781400px;}
._24{width:475.230600px;}
._28{width:477.401400px;}
._19{width:483.015000px;}
._11{width:487.104600px;}
._61{width:489.987600px;}
._57{width:500.022000px;}
._1b{width:508.542600px;}
._40{width:513.787200px;}
._58{width:536.700000px;}
._1a{width:538.352400px;}
._17{width:560.007000px;}
._7c{width:571.737600px;}
._e{width:585.168600px;}
._15{width:599.432400px;}
._72{width:649.539600px;}
._12{width:651.864600px;}
._90{width:660.168000px;}
._4c{width:690.230400px;}
._4b{width:698.630400px;}
._75{width:710.139600px;}
._48{width:739.490400px;}
._46{width:749.210400px;}
._4a{width:783.590400px;}
._1c{width:1397.982600px;}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:22.895550px;}
.y1c{bottom:39.262350px;}
.y2b{bottom:40.895550px;}
.y1b{bottom:53.662350px;}
.y16f{bottom:55.077900px;}
.y95{bottom:58.080150px;}
.y11b{bottom:61.857600px;}
.y75{bottom:64.422900px;}
.y4b{bottom:64.848300px;}
.y14a{bottom:66.278100px;}
.ya9{bottom:66.467700px;}
.y15c{bottom:67.077900px;}
.y182{bottom:73.077900px;}
.yc8{bottom:73.335150px;}
.y177{bottom:79.077900px;}
.y11a{bottom:79.857600px;}
.y1a{bottom:82.762950px;}
.y16e{bottom:85.077900px;}
.y94{bottom:85.080150px;}
.y74{bottom:89.922900px;}
.y66{bottom:91.077900px;}
.y4a{bottom:94.848300px;}
.yc7{bottom:95.493900px;}
.y149{bottom:96.278100px;}
.ya8{bottom:96.467700px;}
.y15b{bottom:97.077900px;}
.y19{bottom:97.762950px;}
.y119{bottom:97.857600px;}
.y11c{bottom:98.573700px;}
.y181{bottom:103.077900px;}
.y93{bottom:112.080150px;}
.yfb{bottom:113.111700px;}
.y16d{bottom:115.077900px;}
.y73{bottom:115.422900px;}
.yc6{bottom:117.909000px;}
.y117{bottom:120.732450px;}
.y65{bottom:121.077900px;}
.y23{bottom:124.730100px;}
.y49{bottom:124.848300px;}
.ye0{bottom:124.930050px;}
.y148{bottom:126.278100px;}
.y15a{bottom:127.077900px;}
.y116{bottom:138.732450px;}
.y92{bottom:139.080150px;}
.yc5{bottom:140.323950px;}
.yfa{bottom:143.111700px;}
.y16c{bottom:145.077900px;}
.y64{bottom:151.077900px;}
.y48{bottom:154.848300px;}
.ydf{bottom:154.930050px;}
.y147{bottom:156.278100px;}
.y115{bottom:156.732450px;}
.y159{bottom:157.077900px;}
.y118{bottom:157.206900px;}
.yc4{bottom:162.739050px;}
.y91{bottom:166.080150px;}
.yf9{bottom:173.111700px;}
.y180{bottom:175.077900px;}
.y72{bottom:180.133050px;}
.y63{bottom:181.077900px;}
.y114{bottom:181.381200px;}
.y17{bottom:184.184250px;}
.yde{bottom:184.930050px;}
.yc3{bottom:185.154000px;}
.y146{bottom:186.278100px;}
.y158{bottom:187.077900px;}
.y90{bottom:193.080150px;}
.y47{bottom:196.848300px;}
.y16{bottom:200.684250px;}
.yc2{bottom:207.569100px;}
.y113{bottom:210.664950px;}
.y62{bottom:211.077900px;}
.y18{bottom:214.184250px;}
.ydd{bottom:214.930050px;}
.yf8{bottom:215.111700px;}
.y15{bottom:215.684250px;}
.y145{bottom:216.278100px;}
.y168{bottom:217.077900px;}
.y71{bottom:218.911650px;}
.y8f{bottom:220.080150px;}
.y176{bottom:223.077900px;}
.y46{bottom:226.848300px;}
.y157{bottom:229.077900px;}
.yc1{bottom:229.727850px;}
.y14{bottom:230.684250px;}
.y61{bottom:241.077900px;}
.ydc{bottom:244.930050px;}
.y13{bottom:245.684250px;}
.y112{bottom:246.289800px;}
.y167{bottom:247.077900px;}
.y8e{bottom:247.080150px;}
.y70{bottom:248.911650px;}
.y175{bottom:253.077900px;}
.y45{bottom:256.848300px;}
.yf7{bottom:257.861700px;}
.y144{bottom:258.278100px;}
.y156{bottom:259.077900px;}
.y12{bottom:260.684250px;}
.yc0{bottom:267.636450px;}
.y60{bottom:271.077900px;}
.y8d{bottom:274.830150px;}
.ydb{bottom:274.930050px;}
.y11{bottom:275.684250px;}
.y187{bottom:275.952750px;}
.y166{bottom:277.077900px;}
.y6f{bottom:278.911650px;}
.yf6{bottom:280.262100px;}
.y44{bottom:286.848300px;}
.y111{bottom:288.289800px;}
.y155{bottom:289.077900px;}
.y10{bottom:290.684250px;}
.y186{bottom:293.952750px;}
.y142{bottom:294.428100px;}
.y174{bottom:295.077900px;}
.y8c{bottom:297.705000px;}
.y6e{bottom:301.786500px;}
.yda{bottom:304.930050px;}
.ybf{bottom:305.136450px;}
.yf{bottom:305.684250px;}
.y165{bottom:307.077900px;}
.yf5{bottom:310.262100px;}
.y185{bottom:311.952750px;}
.y141{bottom:312.428100px;}
.y5f{bottom:313.077900px;}
.y43{bottom:316.848300px;}
.ya7{bottom:317.584800px;}
.y110{bottom:318.289800px;}
.y154{bottom:319.077900px;}
.y8b{bottom:320.579850px;}
.ye{bottom:320.684250px;}
.y173{bottom:325.077900px;}
.y184{bottom:329.952750px;}
.y140{bottom:330.428100px;}
.ybe{bottom:330.636450px;}
.y6d{bottom:331.786500px;}
.yf4{bottom:332.662500px;}
.yd9{bottom:334.930050px;}
.yd{bottom:335.684250px;}
.y164{bottom:337.077900px;}
.y42{bottom:346.848300px;}
.ya6{bottom:347.584800px;}
.y183{bottom:347.952750px;}
.y10f{bottom:348.289800px;}
.y13f{bottom:348.428100px;}
.y143{bottom:348.902550px;}
.y153{bottom:349.077900px;}
.y8a{bottom:350.579850px;}
.yc{bottom:350.684250px;}
.yf3{bottom:355.062900px;}
.y172{bottom:355.077900px;}
.ybd{bottom:356.136450px;}
.y5e{bottom:361.077900px;}
.yb{bottom:365.684250px;}
.y16b{bottom:367.077900px;}
.y13d{bottom:371.302950px;}
.y89{bottom:373.454700px;}
.y41{bottom:376.848300px;}
.yf2{bottom:377.463300px;}
.y10e{bottom:378.289800px;}
.ya5{bottom:378.334800px;}
.y6c{bottom:378.703350px;}
.y152{bottom:379.077900px;}
.ya{bottom:380.684250px;}
.ybc{bottom:381.636450px;}
.y13c{bottom:389.302950px;}
.y5d{bottom:391.077900px;}
.yd8{bottom:391.711350px;}
.y9{bottom:395.684250px;}
.y88{bottom:396.329550px;}
.y16a{bottom:397.077900px;}
.yf1{bottom:399.621900px;}
.ya4{bottom:401.209650px;}
.y40{bottom:406.848300px;}
.ybb{bottom:407.136450px;}
.y13b{bottom:407.302950px;}
.y151{bottom:409.077900px;}
.y8{bottom:410.684250px;}
.y10d{bottom:420.289800px;}
.y6b{bottom:420.703350px;}
.y5c{bottom:421.077900px;}
.ya3{bottom:424.084500px;}
.y13a{bottom:425.302950px;}
.y7{bottom:425.684250px;}
.y13e{bottom:425.777400px;}
.y87{bottom:426.329550px;}
.yd7{bottom:426.361350px;}
.y169{bottom:427.077900px;}
.y17f{bottom:433.077900px;}
.yf0{bottom:434.530650px;}
.y3f{bottom:436.848300px;}
.y150{bottom:439.077900px;}
.y6{bottom:440.684250px;}
.yba{bottom:444.636450px;}
.ya2{bottom:446.959350px;}
.y138{bottom:448.177800px;}
.y86{bottom:449.204400px;}
.y10c{bottom:451.039800px;}
.y5b{bottom:451.077900px;}
.y5{bottom:455.684250px;}
.y171{bottom:457.077900px;}
.yd6{bottom:458.141550px;}
.y6a{bottom:462.703350px;}
.y17e{bottom:463.077900px;}
.y137{bottom:466.177800px;}
.y3e{bottom:466.848300px;}
.y14f{bottom:469.077900px;}
.ya1{bottom:469.834200px;}
.y4{bottom:470.684250px;}
.y10b{bottom:473.440200px;}
.yef{bottom:476.530650px;}
.y5a{bottom:481.077900px;}
.yb9{bottom:482.136450px;}
.y136{bottom:484.177800px;}
.y85{bottom:484.829250px;}
.y3{bottom:485.684250px;}
.yd5{bottom:489.999300px;}
.ya0{bottom:492.709050px;}
.y10a{bottom:495.840600px;}
.y3d{bottom:496.848300px;}
.y14e{bottom:499.077900px;}
.y135{bottom:502.177800px;}
.y69{bottom:504.703350px;}
.y17d{bottom:505.077900px;}
.yee{bottom:506.530650px;}
.yb8{bottom:507.636450px;}
.y59{bottom:511.077900px;}
.y22{bottom:514.579800px;}
.y9f{bottom:515.583900px;}
.y109{bottom:518.241000px;}
.yd4{bottom:519.808650px;}
.y134{bottom:520.177800px;}
.y84{bottom:526.829250px;}
.y3c{bottom:526.848300px;}
.y163{bottom:529.077900px;}
.yb7{bottom:533.886450px;}
.y17c{bottom:535.077900px;}
.yed{bottom:536.530650px;}
.y133{bottom:538.177800px;}
.y9e{bottom:538.458750px;}
.y108{bottom:540.641400px;}
.y58{bottom:541.077900px;}
.yd3{bottom:550.758600px;}
.y132{bottom:556.177800px;}
.y139{bottom:556.652250px;}
.yb6{bottom:556.761450px;}
.y83{bottom:556.829250px;}
.y3b{bottom:556.848300px;}
.y162{bottom:559.077900px;}
.y9d{bottom:561.333600px;}
.y107{bottom:562.800150px;}
.y17b{bottom:565.077900px;}
.y68{bottom:569.578200px;}
.y2a{bottom:569.937000px;}
.y57{bottom:571.077900px;}
.yec{bottom:578.530650px;}
.yb5{bottom:579.636300px;}
.yd2{bottom:583.912050px;}
.y9c{bottom:584.208600px;}
.y29{bottom:584.337000px;}
.y3a{bottom:586.848300px;}
.y161{bottom:589.077900px;}
.y130{bottom:590.578200px;}
.y67{bottom:592.453050px;}
.y106{bottom:597.708750px;}
.y82{bottom:598.829250px;}
.y56{bottom:601.077900px;}
.yb4{bottom:602.511150px;}
.y17a{bottom:607.077900px;}
.y12f{bottom:608.578200px;}
.y9b{bottom:610.010550px;}
.yd1{bottom:612.891000px;}
.y28{bottom:613.137000px;}
.y160{bottom:619.077900px;}
.yeb{bottom:620.530650px;}
.yb3{bottom:625.386000px;}
.y12e{bottom:626.578200px;}
.y27{bottom:627.537000px;}
.y39{bottom:628.848300px;}
.y55{bottom:631.077900px;}
.y9a{bottom:632.169150px;}
.y81{bottom:635.579250px;}
.y179{bottom:637.077900px;}
.y105{bottom:639.708750px;}
.yd0{bottom:643.010550px;}
.y14d{bottom:643.077900px;}
.y12d{bottom:644.578200px;}
.yb2{bottom:648.260850px;}
.yea{bottom:650.530650px;}
.y80{bottom:658.454250px;}
.y38{bottom:658.848300px;}
.y54{bottom:661.077900px;}
.y12c{bottom:662.578200px;}
.y131{bottom:663.052650px;}
.ycf{bottom:665.169300px;}
.y26{bottom:666.237000px;}
.yb1{bottom:666.260850px;}
.y99{bottom:667.077900px;}
.y104{bottom:669.708750px;}
.y14c{bottom:673.077900px;}
.y7f{bottom:681.329100px;}
.y25{bottom:684.237000px;}
.y12a{bottom:685.453050px;}
.y37{bottom:688.848300px;}
.yb0{bottom:689.135700px;}
.y53{bottom:691.077900px;}
.ye9{bottom:693.522450px;}
.yce{bottom:700.077900px;}
.y24{bottom:702.237000px;}
.y14b{bottom:703.077900px;}
.y129{bottom:703.453050px;}
.y7e{bottom:704.203950px;}
.y98{bottom:709.077900px;}
.y103{bottom:711.708750px;}
.yaf{bottom:712.010550px;}
.ye8{bottom:715.681050px;}
.y36{bottom:718.848300px;}
.y15f{bottom:721.077900px;}
.y128{bottom:721.453050px;}
.y7d{bottom:727.078800px;}
.y52{bottom:733.077900px;}
.yae{bottom:734.169300px;}
.ye7{bottom:738.081450px;}
.y97{bottom:739.077900px;}
.y127{bottom:739.453050px;}
.ycd{bottom:743.577900px;}
.y170{bottom:745.077900px;}
.y35{bottom:748.848300px;}
.y7c{bottom:749.953650px;}
.y15e{bottom:751.077900px;}
.y21{bottom:751.358550px;}
.y102{bottom:754.458900px;}
.y126{bottom:757.453050px;}
.ye6{bottom:760.481850px;}
.y51{bottom:763.077900px;}
.yad{bottom:764.169300px;}
.y178{bottom:769.077900px;}
.y20{bottom:771.158550px;}
.y7b{bottom:772.828500px;}
.ycc{bottom:775.077900px;}
.y125{bottom:775.453050px;}
.y101{bottom:777.333750px;}
.y34{bottom:778.848300px;}
.y96{bottom:781.077900px;}
.ye5{bottom:782.882250px;}
.y7a{bottom:790.828500px;}
.y50{bottom:793.077900px;}
.y124{bottom:793.453050px;}
.y12b{bottom:794.169300px;}
.yac{bottom:799.077900px;}
.y1f{bottom:799.758600px;}
.y100{bottom:800.208600px;}
.ye4{bottom:805.282650px;}
.ycb{bottom:806.577900px;}
.y33{bottom:808.848300px;}
.y15d{bottom:811.077900px;}
.y79{bottom:813.703350px;}
.y122{bottom:816.327900px;}
.y1e{bottom:821.358450px;}
.y4f{bottom:823.077900px;}
.yff{bottom:826.010550px;}
.ye3{bottom:827.683050px;}
.y78{bottom:831.703350px;}
.y121{bottom:834.327900px;}
.y32{bottom:838.848300px;}
.yab{bottom:841.077900px;}
.y1d{bottom:842.958600px;}
.yfd{bottom:848.169300px;}
.yca{bottom:850.077900px;}
.y120{bottom:852.327900px;}
.ye2{bottom:853.010550px;}
.y4e{bottom:853.077900px;}
.y77{bottom:854.578350px;}
.y31{bottom:868.848300px;}
.y11f{bottom:870.327900px;}
.yaa{bottom:871.077900px;}
.ye1{bottom:875.169300px;}
.yfc{bottom:875.847450px;}
.y76{bottom:877.453050px;}
.yfe{bottom:878.169300px;}
.yc9{bottom:881.577900px;}
.y4d{bottom:883.077900px;}
.y11e{bottom:888.327900px;}
.y2{bottom:904.914900px;}
.y11d{bottom:906.327900px;}
.y123{bottom:907.044000px;}
.y30{bottom:910.848300px;}
.y4c{bottom:913.077900px;}
.y1{bottom:926.514900px;}
.y2d{bottom:933.241950px;}
.y2f{bottom:942.465300px;}
.y2e{bottom:951.465300px;}
.h5{height:40.944000px;}
.h9{height:41.074219px;}
.h10{height:45.600000px;}
.h12{height:46.564800px;}
.h11{height:46.565400px;}
.h6{height:48.049805px;}
.h2{height:51.180000px;}
.he{height:51.679284px;}
.hc{height:51.679884px;}
.h8{height:52.140000px;}
.h3{height:52.417969px;}
.hd{height:52.646484px;}
.hb{height:52.704684px;}
.ha{height:52.705284px;}
.h7{height:52.945312px;}
.hf{height:63.175781px;}
.h4{height:209.671875px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:705.750000px;}
.w0{width:705.826500px;}
.x0{left:0.000000px;}
.x2{left:54.000000px;}
.x8{left:55.275600px;}
.x4{left:59.359950px;}
.xf{left:60.750000px;}
.x16{left:70.856550px;}
.x15{left:72.611250px;}
.x20{left:82.956150px;}
.x18{left:85.647450px;}
.x2d{left:88.015800px;}
.x21{left:89.852700px;}
.x7{left:100.629900px;}
.xa{left:108.000000px;}
.x1e{left:114.589950px;}
.x1{left:151.653600px;}
.x12{left:157.655250px;}
.x6{left:159.525150px;}
.xc{left:160.662600px;}
.x5{left:172.662900px;}
.x10{left:201.375000px;}
.xe{left:236.900400px;}
.x1b{left:246.944850px;}
.x29{left:248.175000px;}
.x11{left:256.866150px;}
.x22{left:273.129900px;}
.x27{left:290.269500px;}
.x14{left:297.428700px;}
.x1f{left:313.265550px;}
.xb{left:353.868300px;}
.x1c{left:362.886600px;}
.x3{left:366.944850px;}
.x1a{left:376.351200px;}
.x26{left:409.324650px;}
.x1d{left:430.847250px;}
.x13{left:447.460650px;}
.x2a{left:449.622000px;}
.xd{left:470.499600px;}
.x19{left:537.587550px;}
.x17{left:549.118800px;}
.x23{left:553.637250px;}
.x28{left:582.808050px;}
.x24{left:600.631950px;}
.x2c{left:604.337700px;}
.x25{left:606.256950px;}
.x2b{left:608.087700px;}
.x9{left:664.989300px;}
@media print{
.v1{vertical-align:-4.535467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.546667pt;}
.v3{vertical-align:8.255467pt;}
.v2{vertical-align:16.000000pt;}
.v5{vertical-align:17.760533pt;}
.ls4{letter-spacing:-4.906667pt;}
.ls2{letter-spacing:-1.973333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006933pt;}
.ls3{letter-spacing:6.186667pt;}
.ls6{letter-spacing:18.240000pt;}
.ls5{letter-spacing:19.440000pt;}
.ls7{letter-spacing:24.800000pt;}
.ws0{word-spacing:-71.168000pt;}
.wsc0{word-spacing:-24.800000pt;}
.wsb2{word-spacing:-19.466667pt;}
.wsbf{word-spacing:-18.240000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws55{word-spacing:-12.800000pt;}
.ws9b{word-spacing:-8.426667pt;}
.wsc5{word-spacing:-6.880000pt;}
.ws96{word-spacing:-6.186667pt;}
.ws5{word-spacing:-4.480000pt;}
.ws7b{word-spacing:-3.413333pt;}
.ws6f{word-spacing:-3.040000pt;}
.ws86{word-spacing:-2.933333pt;}
.ws17{word-spacing:-2.773333pt;}
.wsfb{word-spacing:-2.666667pt;}
.ws25{word-spacing:-2.613333pt;}
.wsd5{word-spacing:-2.506667pt;}
.wsc1{word-spacing:-2.400000pt;}
.ws15{word-spacing:-2.346667pt;}
.wsec{word-spacing:-2.240000pt;}
.wse1{word-spacing:-2.133333pt;}
.ws88{word-spacing:-2.080000pt;}
.wsf5{word-spacing:-1.920000pt;}
.wsb4{word-spacing:-1.866667pt;}
.ws4e{word-spacing:-1.813333pt;}
.ws78{word-spacing:-1.760000pt;}
.ws2c{word-spacing:-1.578667pt;}
.ws4d{word-spacing:-1.440000pt;}
.ws22{word-spacing:-1.386667pt;}
.ws19{word-spacing:-1.280000pt;}
.ws5d{word-spacing:-1.066667pt;}
.wsd7{word-spacing:-1.013333pt;}
.wsa1{word-spacing:-0.906667pt;}
.ws8{word-spacing:-0.853333pt;}
.ws18{word-spacing:-0.746667pt;}
.ws98{word-spacing:-0.693333pt;}
.ws7c{word-spacing:-0.586667pt;}
.ws4b{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.373333pt;}
.wsd4{word-spacing:-0.320000pt;}
.ws3b{word-spacing:-0.266667pt;}
.ws45{word-spacing:-0.160000pt;}
.ws7a{word-spacing:-0.106667pt;}
.ws30{word-spacing:-0.064000pt;}
.ws95{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws46{word-spacing:0.053333pt;}
.wsef{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.266667pt;}
.wsd3{word-spacing:0.320000pt;}
.ws24{word-spacing:0.373333pt;}
.wsd6{word-spacing:0.586667pt;}
.ws44{word-spacing:0.640000pt;}
.ws12{word-spacing:0.693333pt;}
.wsf1{word-spacing:0.800000pt;}
.ws3d{word-spacing:0.906667pt;}
.ws85{word-spacing:0.960000pt;}
.ws6{word-spacing:1.013333pt;}
.ws65{word-spacing:1.120000pt;}
.wse5{word-spacing:1.173333pt;}
.wsf4{word-spacing:1.226667pt;}
.ws70{word-spacing:1.280000pt;}
.wsce{word-spacing:1.333333pt;}
.wsed{word-spacing:1.386667pt;}
.ws51{word-spacing:1.440000pt;}
.ws41{word-spacing:1.493333pt;}
.wse4{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.653333pt;}
.wsa5{word-spacing:1.706667pt;}
.ws5b{word-spacing:1.760000pt;}
.ws52{word-spacing:1.920000pt;}
.ws100{word-spacing:2.026667pt;}
.wsd0{word-spacing:2.080000pt;}
.ws39{word-spacing:2.186667pt;}
.wsfe{word-spacing:2.240000pt;}
.ws35{word-spacing:2.346667pt;}
.ws4c{word-spacing:2.400000pt;}
.wsea{word-spacing:2.453333pt;}
.ws67{word-spacing:2.666667pt;}
.wsf2{word-spacing:2.720000pt;}
.wscf{word-spacing:2.773333pt;}
.wsd{word-spacing:2.826667pt;}
.wsd1{word-spacing:2.880000pt;}
.wsdc{word-spacing:2.986667pt;}
.wsf{word-spacing:3.146667pt;}
.ws47{word-spacing:3.200000pt;}
.ws11{word-spacing:3.253333pt;}
.ws7{word-spacing:3.466667pt;}
.wsfd{word-spacing:3.520000pt;}
.ws36{word-spacing:3.573333pt;}
.wsf6{word-spacing:3.626667pt;}
.ws64{word-spacing:3.680000pt;}
.wsf3{word-spacing:3.893333pt;}
.ws83{word-spacing:3.946667pt;}
.wsfa{word-spacing:4.000000pt;}
.wsb5{word-spacing:4.053333pt;}
.ws3e{word-spacing:4.106667pt;}
.wsd9{word-spacing:4.213333pt;}
.ws58{word-spacing:4.266667pt;}
.ws2b{word-spacing:4.320000pt;}
.ws69{word-spacing:4.373333pt;}
.wse7{word-spacing:4.426667pt;}
.wsdd{word-spacing:4.533333pt;}
.wse8{word-spacing:4.640000pt;}
.ws34{word-spacing:4.693333pt;}
.ws50{word-spacing:4.746667pt;}
.wsa2{word-spacing:4.853333pt;}
.ws40{word-spacing:4.906667pt;}
.wsa3{word-spacing:4.960000pt;}
.ws104{word-spacing:5.066667pt;}
.ws48{word-spacing:5.173333pt;}
.wsde{word-spacing:5.226667pt;}
.ws68{word-spacing:5.280000pt;}
.wse6{word-spacing:5.333333pt;}
.ws1e{word-spacing:5.386667pt;}
.wsff{word-spacing:5.440000pt;}
.wsf0{word-spacing:5.493333pt;}
.ws101{word-spacing:5.546667pt;}
.ws56{word-spacing:5.653333pt;}
.ws53{word-spacing:5.706667pt;}
.wse3{word-spacing:5.920000pt;}
.wsf7{word-spacing:6.026667pt;}
.ws2d{word-spacing:6.144000pt;}
.ws84{word-spacing:6.186667pt;}
.ws5a{word-spacing:6.240000pt;}
.wsba{word-spacing:6.293333pt;}
.ws9{word-spacing:6.346667pt;}
.wsb3{word-spacing:6.400000pt;}
.ws2a{word-spacing:6.453333pt;}
.ws94{word-spacing:6.506667pt;}
.wsee{word-spacing:6.666667pt;}
.ws14{word-spacing:6.720000pt;}
.ws7d{word-spacing:6.826667pt;}
.ws38{word-spacing:6.933333pt;}
.ws49{word-spacing:6.986667pt;}
.ws13{word-spacing:7.040000pt;}
.wsae{word-spacing:7.146667pt;}
.ws6a{word-spacing:7.200000pt;}
.ws43{word-spacing:7.253333pt;}
.ws42{word-spacing:7.360000pt;}
.ws26{word-spacing:7.520000pt;}
.ws2e{word-spacing:7.552000pt;}
.wsab{word-spacing:7.786133pt;}
.ws4f{word-spacing:7.786667pt;}
.ws5f{word-spacing:7.946667pt;}
.wsf8{word-spacing:8.000000pt;}
.ws105{word-spacing:8.053333pt;}
.ws57{word-spacing:8.106667pt;}
.ws37{word-spacing:8.160000pt;}
.wsd2{word-spacing:8.213333pt;}
.ws4a{word-spacing:8.320000pt;}
.ws3f{word-spacing:8.426667pt;}
.ws28{word-spacing:8.906667pt;}
.wse{word-spacing:9.386667pt;}
.wsdb{word-spacing:9.973333pt;}
.wsd8{word-spacing:10.400000pt;}
.wscd{word-spacing:10.453333pt;}
.ws5e{word-spacing:10.720000pt;}
.ws1a{word-spacing:10.826667pt;}
.ws27{word-spacing:10.986667pt;}
.wsfc{word-spacing:11.466667pt;}
.ws10{word-spacing:11.520000pt;}
.wsda{word-spacing:11.573333pt;}
.ws87{word-spacing:11.733333pt;}
.wsf9{word-spacing:11.786667pt;}
.wse2{word-spacing:12.426667pt;}
.ws23{word-spacing:12.480000pt;}
.ws1b{word-spacing:12.853333pt;}
.ws32{word-spacing:12.906667pt;}
.wse9{word-spacing:13.333333pt;}
.wse0{word-spacing:13.653333pt;}
.ws1d{word-spacing:13.706667pt;}
.wseb{word-spacing:13.973333pt;}
.ws97{word-spacing:14.560000pt;}
.wsc3{word-spacing:15.040000pt;}
.ws31{word-spacing:15.733333pt;}
.wsc6{word-spacing:15.893333pt;}
.wsb9{word-spacing:17.120000pt;}
.ws33{word-spacing:17.653333pt;}
.ws59{word-spacing:18.240000pt;}
.wsac{word-spacing:18.346667pt;}
.wsb{word-spacing:18.400000pt;}
.wsa7{word-spacing:18.506667pt;}
.wsc{word-spacing:19.573333pt;}
.ws1c{word-spacing:20.160000pt;}
.wsdf{word-spacing:20.853333pt;}
.wsc9{word-spacing:21.120000pt;}
.wsc4{word-spacing:21.973333pt;}
.ws61{word-spacing:22.080000pt;}
.ws16{word-spacing:23.200000pt;}
.ws4{word-spacing:24.426667pt;}
.ws79{word-spacing:25.333333pt;}
.ws2f{word-spacing:25.706667pt;}
.ws103{word-spacing:26.293333pt;}
.ws63{word-spacing:26.880000pt;}
.ws29{word-spacing:27.040000pt;}
.wsa4{word-spacing:28.640000pt;}
.wsbd{word-spacing:29.493333pt;}
.ws21{word-spacing:30.133333pt;}
.ws1f{word-spacing:31.626667pt;}
.ws62{word-spacing:33.013333pt;}
.wsbc{word-spacing:33.280000pt;}
.ws20{word-spacing:37.173333pt;}
.wsa{word-spacing:40.693333pt;}
.wsaf{word-spacing:40.746667pt;}
.wsc2{word-spacing:40.800000pt;}
.ws9a{word-spacing:41.070400pt;}
.ws102{word-spacing:42.453333pt;}
.wsad{word-spacing:42.880000pt;}
.wsa0{word-spacing:44.266667pt;}
.ws5c{word-spacing:52.373333pt;}
.wsca{word-spacing:59.200000pt;}
.ws9f{word-spacing:63.786667pt;}
.wsb0{word-spacing:68.640000pt;}
.wsb8{word-spacing:70.293333pt;}
.wsa9{word-spacing:74.987200pt;}
.wsc7{word-spacing:76.746667pt;}
.wsb7{word-spacing:83.946667pt;}
.wsb1{word-spacing:84.693333pt;}
.wsc8{word-spacing:86.346667pt;}
.wsaa{word-spacing:88.052800pt;}
.wsa6{word-spacing:89.866667pt;}
.wscb{word-spacing:92.106667pt;}
.ws77{word-spacing:94.400000pt;}
.ws73{word-spacing:104.672000pt;}
.ws82{word-spacing:109.710933pt;}
.ws7f{word-spacing:111.690133pt;}
.wsb6{word-spacing:120.800000pt;}
.ws75{word-spacing:121.066667pt;}
.ws74{word-spacing:121.067200pt;}
.wscc{word-spacing:122.560000pt;}
.ws6e{word-spacing:123.350400pt;}
.ws93{word-spacing:124.094933pt;}
.ws6d{word-spacing:129.591467pt;}
.ws71{word-spacing:131.338667pt;}
.ws7e{word-spacing:136.378133pt;}
.ws92{word-spacing:137.428267pt;}
.ws6b{word-spacing:142.924800pt;}
.wsbb{word-spacing:144.906667pt;}
.ws90{word-spacing:145.496533pt;}
.ws54{word-spacing:147.573333pt;}
.ws6c{word-spacing:147.724800pt;}
.ws8b{word-spacing:155.065600pt;}
.wsa8{word-spacing:155.466667pt;}
.ws80{word-spacing:163.290133pt;}
.ws9c{word-spacing:166.929067pt;}
.ws8e{word-spacing:170.184000pt;}
.ws89{word-spacing:172.163200pt;}
.ws9d{word-spacing:180.262400pt;}
.ws8c{word-spacing:190.638400pt;}
.ws8a{word-spacing:194.281600pt;}
.ws8d{word-spacing:196.851200pt;}
.ws9e{word-spacing:199.118400pt;}
.ws91{word-spacing:212.717333pt;}
.wsbe{word-spacing:225.600000pt;}
.ws99{word-spacing:362.816533pt;}
.ws8f{word-spacing:388.547200pt;}
.ws60{word-spacing:429.346667pt;}
.ws72{word-spacing:524.159467pt;}
.ws76{word-spacing:739.927467pt;}
.ws81{word-spacing:773.733333pt;}
.ws1{word-spacing:774.900800pt;}
._93{margin-left:-24.805333pt;}
._91{margin-left:-19.450667pt;}
._92{margin-left:-18.549333pt;}
._9{margin-left:-10.491200pt;}
._8{margin-left:-8.330667pt;}
._4{margin-left:-6.560000pt;}
._1{margin-left:-4.981333pt;}
._2{margin-left:-3.520000pt;}
._3{margin-left:-2.240000pt;}
._0{margin-left:-1.073600pt;}
._5{width:1.242667pt;}
._54{width:2.917333pt;}
._79{width:4.916800pt;}
._6{width:6.844800pt;}
._7{width:8.401600pt;}
._94{width:10.689600pt;}
._b{width:45.386667pt;}
._34{width:47.613867pt;}
._d{width:49.713600pt;}
._4f{width:51.275200pt;}
._35{width:55.322133pt;}
._1e{width:58.100267pt;}
._1f{width:59.131733pt;}
._4e{width:61.502933pt;}
._77{width:66.781333pt;}
._70{width:73.540267pt;}
._45{width:76.226667pt;}
._78{width:78.814933pt;}
._6f{width:80.385067pt;}
._36{width:84.773867pt;}
._5e{width:89.717333pt;}
._5d{width:99.150400pt;}
._50{width:101.320533pt;}
._7e{width:102.886933pt;}
._84{width:107.316800pt;}
._44{width:110.449600pt;}
._83{width:113.275200pt;}
._71{width:115.986667pt;}
._3a{width:118.005333pt;}
._37{width:122.026133pt;}
._81{width:129.553600pt;}
._7a{width:131.578133pt;}
._1d{width:136.664533pt;}
._10{width:138.795200pt;}
._c{width:140.693333pt;}
._31{width:143.362133pt;}
._3d{width:144.672000pt;}
._5b{width:146.016000pt;}
._2c{width:148.499733pt;}
._53{width:149.711467pt;}
._5a{width:153.206400pt;}
._43{width:154.668267pt;}
._2d{width:156.077867pt;}
._7b{width:158.320533pt;}
._42{width:163.261333pt;}
._39{width:164.829333pt;}
._6e{width:167.225600pt;}
._6d{width:168.216533pt;}
._26{width:169.868800pt;}
._5c{width:172.881067pt;}
._3c{width:173.931733pt;}
._25{width:175.166400pt;}
._76{width:178.678400pt;}
._22{width:179.966400pt;}
._18{width:181.530133pt;}
._27{width:182.467200pt;}
._55{width:183.488000pt;}
._41{width:184.508267pt;}
._7d{width:185.465600pt;}
._30{width:186.769600pt;}
._52{width:188.419200pt;}
._38{width:189.768000pt;}
._23{width:191.569600pt;}
._80{width:194.107733pt;}
._6c{width:195.066133pt;}
._3f{width:199.368000pt;}
._86{width:200.858133pt;}
._82{width:202.524800pt;}
._67{width:203.971200pt;}
._a{width:208.266667pt;}
._64{width:210.184533pt;}
._74{width:211.531200pt;}
._8a{width:214.488000pt;}
._89{width:217.008000pt;}
._62{width:219.090133pt;}
._60{width:222.139200pt;}
._8c{width:224.522667pt;}
._20{width:225.770667pt;}
._4d{width:227.428267pt;}
._63{width:230.341333pt;}
._49{width:235.380800pt;}
._3e{width:236.852800pt;}
._6b{width:239.248000pt;}
._21{width:244.934400pt;}
._88{width:253.945067pt;}
._68{width:257.683200pt;}
._16{width:260.661867pt;}
._47{width:262.268267pt;}
._3b{width:265.866133pt;}
._87{width:268.539200pt;}
._6a{width:279.970667pt;}
._85{width:282.105067pt;}
._8b{width:283.042667pt;}
._65{width:284.349867pt;}
._13{width:287.648533pt;}
._14{width:289.035200pt;}
._f{width:295.488533pt;}
._8e{width:303.385067pt;}
._8d{width:309.272000pt;}
._8f{width:310.193600pt;}
._51{width:317.690133pt;}
._7f{width:326.931200pt;}
._73{width:346.301867pt;}
._59{width:352.737600pt;}
._69{width:361.517867pt;}
._5f{width:364.451200pt;}
._32{width:384.079467pt;}
._66{width:391.117333pt;}
._2f{width:392.964800pt;}
._2b{width:395.492800pt;}
._2e{width:397.690133pt;}
._33{width:402.617067pt;}
._2a{width:409.283733pt;}
._29{width:411.023467pt;}
._56{width:414.916800pt;}
._24{width:422.427200pt;}
._28{width:424.356800pt;}
._19{width:429.346667pt;}
._11{width:432.981867pt;}
._61{width:435.544533pt;}
._57{width:444.464000pt;}
._1b{width:452.037867pt;}
._40{width:456.699733pt;}
._58{width:477.066667pt;}
._1a{width:478.535467pt;}
._17{width:497.784000pt;}
._7c{width:508.211200pt;}
._e{width:520.149867pt;}
._15{width:532.828800pt;}
._72{width:577.368533pt;}
._12{width:579.435200pt;}
._90{width:586.816000pt;}
._4c{width:613.538133pt;}
._4b{width:621.004800pt;}
._75{width:631.235200pt;}
._48{width:657.324800pt;}
._46{width:665.964800pt;}
._4a{width:696.524800pt;}
._1c{width:1242.651200pt;}
.fs5{font-size:31.093333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:20.351600pt;}
.y1c{bottom:34.899867pt;}
.y2b{bottom:36.351600pt;}
.y1b{bottom:47.699867pt;}
.y16f{bottom:48.958133pt;}
.y95{bottom:51.626800pt;}
.y11b{bottom:54.984533pt;}
.y75{bottom:57.264800pt;}
.y4b{bottom:57.642933pt;}
.y14a{bottom:58.913867pt;}
.ya9{bottom:59.082400pt;}
.y15c{bottom:59.624800pt;}
.y182{bottom:64.958133pt;}
.yc8{bottom:65.186800pt;}
.y177{bottom:70.291467pt;}
.y11a{bottom:70.984533pt;}
.y1a{bottom:73.567067pt;}
.y16e{bottom:75.624800pt;}
.y94{bottom:75.626800pt;}
.y74{bottom:79.931467pt;}
.y66{bottom:80.958133pt;}
.y4a{bottom:84.309600pt;}
.yc7{bottom:84.883467pt;}
.y149{bottom:85.580533pt;}
.ya8{bottom:85.749067pt;}
.y15b{bottom:86.291467pt;}
.y19{bottom:86.900400pt;}
.y119{bottom:86.984533pt;}
.y11c{bottom:87.621067pt;}
.y181{bottom:91.624800pt;}
.y93{bottom:99.626800pt;}
.yfb{bottom:100.543733pt;}
.y16d{bottom:102.291467pt;}
.y73{bottom:102.598133pt;}
.yc6{bottom:104.808000pt;}
.y117{bottom:107.317733pt;}
.y65{bottom:107.624800pt;}
.y23{bottom:110.871200pt;}
.y49{bottom:110.976267pt;}
.ye0{bottom:111.048933pt;}
.y148{bottom:112.247200pt;}
.y15a{bottom:112.958133pt;}
.y116{bottom:123.317733pt;}
.y92{bottom:123.626800pt;}
.yc5{bottom:124.732400pt;}
.yfa{bottom:127.210400pt;}
.y16c{bottom:128.958133pt;}
.y64{bottom:134.291467pt;}
.y48{bottom:137.642933pt;}
.ydf{bottom:137.715600pt;}
.y147{bottom:138.913867pt;}
.y115{bottom:139.317733pt;}
.y159{bottom:139.624800pt;}
.y118{bottom:139.739467pt;}
.yc4{bottom:144.656933pt;}
.y91{bottom:147.626800pt;}
.yf9{bottom:153.877067pt;}
.y180{bottom:155.624800pt;}
.y72{bottom:160.118267pt;}
.y63{bottom:160.958133pt;}
.y114{bottom:161.227733pt;}
.y17{bottom:163.719333pt;}
.yde{bottom:164.382267pt;}
.yc3{bottom:164.581333pt;}
.y146{bottom:165.580533pt;}
.y158{bottom:166.291467pt;}
.y90{bottom:171.626800pt;}
.y47{bottom:174.976267pt;}
.y16{bottom:178.386000pt;}
.yc2{bottom:184.505867pt;}
.y113{bottom:187.257733pt;}
.y62{bottom:187.624800pt;}
.y18{bottom:190.386000pt;}
.ydd{bottom:191.048933pt;}
.yf8{bottom:191.210400pt;}
.y15{bottom:191.719333pt;}
.y145{bottom:192.247200pt;}
.y168{bottom:192.958133pt;}
.y71{bottom:194.588133pt;}
.y8f{bottom:195.626800pt;}
.y176{bottom:198.291467pt;}
.y46{bottom:201.642933pt;}
.y157{bottom:203.624800pt;}
.yc1{bottom:204.202533pt;}
.y14{bottom:205.052667pt;}
.y61{bottom:214.291467pt;}
.ydc{bottom:217.715600pt;}
.y13{bottom:218.386000pt;}
.y112{bottom:218.924267pt;}
.y167{bottom:219.624800pt;}
.y8e{bottom:219.626800pt;}
.y70{bottom:221.254800pt;}
.y175{bottom:224.958133pt;}
.y45{bottom:228.309600pt;}
.yf7{bottom:229.210400pt;}
.y144{bottom:229.580533pt;}
.y156{bottom:230.291467pt;}
.y12{bottom:231.719333pt;}
.yc0{bottom:237.899067pt;}
.y60{bottom:240.958133pt;}
.y8d{bottom:244.293467pt;}
.ydb{bottom:244.382267pt;}
.y11{bottom:245.052667pt;}
.y187{bottom:245.291333pt;}
.y166{bottom:246.291467pt;}
.y6f{bottom:247.921467pt;}
.yf6{bottom:249.121867pt;}
.y44{bottom:254.976267pt;}
.y111{bottom:256.257600pt;}
.y155{bottom:256.958133pt;}
.y10{bottom:258.386000pt;}
.y186{bottom:261.291333pt;}
.y142{bottom:261.713867pt;}
.y174{bottom:262.291467pt;}
.y8c{bottom:264.626667pt;}
.y6e{bottom:268.254667pt;}
.yda{bottom:271.048933pt;}
.ybf{bottom:271.232400pt;}
.yf{bottom:271.719333pt;}
.y165{bottom:272.958133pt;}
.yf5{bottom:275.788533pt;}
.y185{bottom:277.291333pt;}
.y141{bottom:277.713867pt;}
.y5f{bottom:278.291467pt;}
.y43{bottom:281.642933pt;}
.ya7{bottom:282.297600pt;}
.y110{bottom:282.924267pt;}
.y154{bottom:283.624800pt;}
.y8b{bottom:284.959867pt;}
.ye{bottom:285.052667pt;}
.y173{bottom:288.958133pt;}
.y184{bottom:293.291333pt;}
.y140{bottom:293.713867pt;}
.ybe{bottom:293.899067pt;}
.y6d{bottom:294.921333pt;}
.yf4{bottom:295.700000pt;}
.yd9{bottom:297.715600pt;}
.yd{bottom:298.386000pt;}
.y164{bottom:299.624800pt;}
.y42{bottom:308.309600pt;}
.ya6{bottom:308.964267pt;}
.y183{bottom:309.291333pt;}
.y10f{bottom:309.590933pt;}
.y13f{bottom:309.713867pt;}
.y143{bottom:310.135600pt;}
.y153{bottom:310.291467pt;}
.y8a{bottom:311.626533pt;}
.yc{bottom:311.719333pt;}
.yf3{bottom:315.611467pt;}
.y172{bottom:315.624800pt;}
.ybd{bottom:316.565733pt;}
.y5e{bottom:320.958133pt;}
.yb{bottom:325.052667pt;}
.y16b{bottom:326.291467pt;}
.y13d{bottom:330.047067pt;}
.y89{bottom:331.959733pt;}
.y41{bottom:334.976267pt;}
.yf2{bottom:335.522933pt;}
.y10e{bottom:336.257600pt;}
.ya5{bottom:336.297600pt;}
.y6c{bottom:336.625200pt;}
.y152{bottom:336.958133pt;}
.ya{bottom:338.386000pt;}
.ybc{bottom:339.232400pt;}
.y13c{bottom:346.047067pt;}
.y5d{bottom:347.624800pt;}
.yd8{bottom:348.187867pt;}
.y9{bottom:351.719333pt;}
.y88{bottom:352.292933pt;}
.y16a{bottom:352.958133pt;}
.yf1{bottom:355.219467pt;}
.ya4{bottom:356.630800pt;}
.y40{bottom:361.642933pt;}
.ybb{bottom:361.899067pt;}
.y13b{bottom:362.047067pt;}
.y151{bottom:363.624800pt;}
.y8{bottom:365.052667pt;}
.y10d{bottom:373.590933pt;}
.y6b{bottom:373.958533pt;}
.y5c{bottom:374.291467pt;}
.ya3{bottom:376.964000pt;}
.y13a{bottom:378.047067pt;}
.y7{bottom:378.386000pt;}
.y13e{bottom:378.468800pt;}
.y87{bottom:378.959600pt;}
.yd7{bottom:378.987867pt;}
.y169{bottom:379.624800pt;}
.y17f{bottom:384.958133pt;}
.yf0{bottom:386.249467pt;}
.y3f{bottom:388.309600pt;}
.y150{bottom:390.291467pt;}
.y6{bottom:391.719333pt;}
.yba{bottom:395.232400pt;}
.ya2{bottom:397.297200pt;}
.y138{bottom:398.380267pt;}
.y86{bottom:399.292800pt;}
.y10c{bottom:400.924267pt;}
.y5b{bottom:400.958133pt;}
.y5{bottom:405.052667pt;}
.y171{bottom:406.291467pt;}
.yd6{bottom:407.236933pt;}
.y6a{bottom:411.291867pt;}
.y17e{bottom:411.624800pt;}
.y137{bottom:414.380267pt;}
.y3e{bottom:414.976267pt;}
.y14f{bottom:416.958133pt;}
.ya1{bottom:417.630400pt;}
.y4{bottom:418.386000pt;}
.y10b{bottom:420.835733pt;}
.yef{bottom:423.582800pt;}
.y5a{bottom:427.624800pt;}
.yb9{bottom:428.565733pt;}
.y136{bottom:430.380267pt;}
.y85{bottom:430.959333pt;}
.y3{bottom:431.719333pt;}
.yd5{bottom:435.554933pt;}
.ya0{bottom:437.963600pt;}
.y10a{bottom:440.747200pt;}
.y3d{bottom:441.642933pt;}
.y14e{bottom:443.624800pt;}
.y135{bottom:446.380267pt;}
.y69{bottom:448.625200pt;}
.y17d{bottom:448.958133pt;}
.yee{bottom:450.249467pt;}
.yb8{bottom:451.232400pt;}
.y59{bottom:454.291467pt;}
.y22{bottom:457.404267pt;}
.y9f{bottom:458.296800pt;}
.y109{bottom:460.658667pt;}
.yd4{bottom:462.052133pt;}
.y134{bottom:462.380267pt;}
.y84{bottom:468.292667pt;}
.y3c{bottom:468.309600pt;}
.y163{bottom:470.291467pt;}
.yb7{bottom:474.565733pt;}
.y17c{bottom:475.624800pt;}
.yed{bottom:476.916133pt;}
.y133{bottom:478.380267pt;}
.y9e{bottom:478.630000pt;}
.y108{bottom:480.570133pt;}
.y58{bottom:480.958133pt;}
.yd3{bottom:489.563200pt;}
.y132{bottom:494.380267pt;}
.y139{bottom:494.802000pt;}
.yb6{bottom:494.899067pt;}
.y83{bottom:494.959333pt;}
.y3b{bottom:494.976267pt;}
.y162{bottom:496.958133pt;}
.y9d{bottom:498.963200pt;}
.y107{bottom:500.266800pt;}
.y17b{bottom:502.291467pt;}
.y68{bottom:506.291733pt;}
.y2a{bottom:506.610667pt;}
.y57{bottom:507.624800pt;}
.yec{bottom:514.249467pt;}
.yb5{bottom:515.232267pt;}
.yd2{bottom:519.032933pt;}
.y9c{bottom:519.296533pt;}
.y29{bottom:519.410667pt;}
.y3a{bottom:521.642933pt;}
.y161{bottom:523.624800pt;}
.y130{bottom:524.958400pt;}
.y67{bottom:526.624933pt;}
.y106{bottom:531.296667pt;}
.y82{bottom:532.292667pt;}
.y56{bottom:534.291467pt;}
.yb4{bottom:535.565467pt;}
.y17a{bottom:539.624800pt;}
.y12f{bottom:540.958400pt;}
.y9b{bottom:542.231600pt;}
.yd1{bottom:544.792000pt;}
.y28{bottom:545.010667pt;}
.y160{bottom:550.291467pt;}
.yeb{bottom:551.582800pt;}
.yb3{bottom:555.898667pt;}
.y12e{bottom:556.958400pt;}
.y27{bottom:557.810667pt;}
.y39{bottom:558.976267pt;}
.y55{bottom:560.958133pt;}
.y9a{bottom:561.928133pt;}
.y81{bottom:564.959333pt;}
.y179{bottom:566.291467pt;}
.y105{bottom:568.630000pt;}
.yd0{bottom:571.564933pt;}
.y14d{bottom:571.624800pt;}
.y12d{bottom:572.958400pt;}
.yb2{bottom:576.231867pt;}
.yea{bottom:578.249467pt;}
.y80{bottom:585.292667pt;}
.y38{bottom:585.642933pt;}
.y54{bottom:587.624800pt;}
.y12c{bottom:588.958400pt;}
.y131{bottom:589.380133pt;}
.ycf{bottom:591.261600pt;}
.y26{bottom:592.210667pt;}
.yb1{bottom:592.231867pt;}
.y99{bottom:592.958133pt;}
.y104{bottom:595.296667pt;}
.y14c{bottom:598.291467pt;}
.y7f{bottom:605.625867pt;}
.y25{bottom:608.210667pt;}
.y12a{bottom:609.291600pt;}
.y37{bottom:612.309600pt;}
.yb0{bottom:612.565067pt;}
.y53{bottom:614.291467pt;}
.ye9{bottom:616.464400pt;}
.yce{bottom:622.291467pt;}
.y24{bottom:624.210667pt;}
.y14b{bottom:624.958133pt;}
.y129{bottom:625.291600pt;}
.y7e{bottom:625.959067pt;}
.y98{bottom:630.291467pt;}
.y103{bottom:632.630000pt;}
.yaf{bottom:632.898267pt;}
.ye8{bottom:636.160933pt;}
.y36{bottom:638.976267pt;}
.y15f{bottom:640.958133pt;}
.y128{bottom:641.291600pt;}
.y7d{bottom:646.292267pt;}
.y52{bottom:651.624800pt;}
.yae{bottom:652.594933pt;}
.ye7{bottom:656.072400pt;}
.y97{bottom:656.958133pt;}
.y127{bottom:657.291600pt;}
.ycd{bottom:660.958133pt;}
.y170{bottom:662.291467pt;}
.y35{bottom:665.642933pt;}
.y7c{bottom:666.625467pt;}
.y15e{bottom:667.624800pt;}
.y21{bottom:667.874267pt;}
.y102{bottom:670.630133pt;}
.y126{bottom:673.291600pt;}
.ye6{bottom:675.983867pt;}
.y51{bottom:678.291467pt;}
.yad{bottom:679.261600pt;}
.y178{bottom:683.624800pt;}
.y20{bottom:685.474267pt;}
.y7b{bottom:686.958667pt;}
.ycc{bottom:688.958133pt;}
.y125{bottom:689.291600pt;}
.y101{bottom:690.963333pt;}
.y34{bottom:692.309600pt;}
.y96{bottom:694.291467pt;}
.ye5{bottom:695.895333pt;}
.y7a{bottom:702.958667pt;}
.y50{bottom:704.958133pt;}
.y124{bottom:705.291600pt;}
.y12b{bottom:705.928267pt;}
.yac{bottom:710.291467pt;}
.y1f{bottom:710.896533pt;}
.y100{bottom:711.296533pt;}
.ye4{bottom:715.806800pt;}
.ycb{bottom:716.958133pt;}
.y33{bottom:718.976267pt;}
.y15d{bottom:720.958133pt;}
.y79{bottom:723.291867pt;}
.y122{bottom:725.624800pt;}
.y1e{bottom:730.096400pt;}
.y4f{bottom:731.624800pt;}
.yff{bottom:734.231600pt;}
.ye3{bottom:735.718267pt;}
.y78{bottom:739.291867pt;}
.y121{bottom:741.624800pt;}
.y32{bottom:745.642933pt;}
.yab{bottom:747.624800pt;}
.y1d{bottom:749.296533pt;}
.yfd{bottom:753.928267pt;}
.yca{bottom:755.624800pt;}
.y120{bottom:757.624800pt;}
.ye2{bottom:758.231600pt;}
.y4e{bottom:758.291467pt;}
.y77{bottom:759.625200pt;}
.y31{bottom:772.309600pt;}
.y11f{bottom:773.624800pt;}
.yaa{bottom:774.291467pt;}
.ye1{bottom:777.928267pt;}
.yfc{bottom:778.531067pt;}
.y76{bottom:779.958267pt;}
.yfe{bottom:780.594933pt;}
.yc9{bottom:783.624800pt;}
.y4d{bottom:784.958133pt;}
.y11e{bottom:789.624800pt;}
.y2{bottom:804.368800pt;}
.y11d{bottom:805.624800pt;}
.y123{bottom:806.261333pt;}
.y30{bottom:809.642933pt;}
.y4c{bottom:811.624800pt;}
.y1{bottom:823.568800pt;}
.y2d{bottom:829.548400pt;}
.y2f{bottom:837.746933pt;}
.y2e{bottom:845.746933pt;}
.h5{height:36.394667pt;}
.h9{height:36.510417pt;}
.h10{height:40.533333pt;}
.h12{height:41.390933pt;}
.h11{height:41.391467pt;}
.h6{height:42.710938pt;}
.h2{height:45.493333pt;}
.he{height:45.937142pt;}
.hc{height:45.937675pt;}
.h8{height:46.346667pt;}
.h3{height:46.593750pt;}
.hd{height:46.796875pt;}
.hb{height:46.848608pt;}
.ha{height:46.849142pt;}
.h7{height:47.062500pt;}
.hf{height:56.156250pt;}
.h4{height:186.375000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:627.333333pt;}
.w0{width:627.401333pt;}
.x0{left:0.000000pt;}
.x2{left:48.000000pt;}
.x8{left:49.133867pt;}
.x4{left:52.764400pt;}
.xf{left:54.000000pt;}
.x16{left:62.983600pt;}
.x15{left:64.543333pt;}
.x20{left:73.738800pt;}
.x18{left:76.131067pt;}
.x2d{left:78.236267pt;}
.x21{left:79.869067pt;}
.x7{left:89.448800pt;}
.xa{left:96.000000pt;}
.x1e{left:101.857733pt;}
.x1{left:134.803200pt;}
.x12{left:140.138000pt;}
.x6{left:141.800133pt;}
.xc{left:142.811200pt;}
.x5{left:153.478133pt;}
.x10{left:179.000000pt;}
.xe{left:210.578133pt;}
.x1b{left:219.506533pt;}
.x29{left:220.600000pt;}
.x11{left:228.325467pt;}
.x22{left:242.782133pt;}
.x27{left:258.017333pt;}
.x14{left:264.381067pt;}
.x1f{left:278.458267pt;}
.xb{left:314.549600pt;}
.x1c{left:322.565867pt;}
.x3{left:326.173200pt;}
.x1a{left:334.534400pt;}
.x26{left:363.844133pt;}
.x1d{left:382.975333pt;}
.x13{left:397.742800pt;}
.x2a{left:399.664000pt;}
.xd{left:418.221867pt;}
.x19{left:477.855600pt;}
.x17{left:488.105600pt;}
.x23{left:492.122000pt;}
.x28{left:518.051600pt;}
.x24{left:533.895067pt;}
.x2c{left:537.189067pt;}
.x25{left:538.895067pt;}
.x2b{left:540.522400pt;}
.x9{left:591.101600pt;}
}




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