
    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_bfd2516a65911837838c1efb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_564a74c115d9381791586a6a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9627bd5cce948fb0d55d4fdd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_2b8f7b3efe126d4d2cacea37.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fbf61e847c1e4dd7e2699d56.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_447700917bb2e1b9600f6538.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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_ef6ea0882f43f699b234fffc.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_d442fdfbc74923e5563be8fb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d928d6e595b3ee5718a73785.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls40{letter-spacing:-2.820000px;}
.ls49{letter-spacing:-0.840000px;}
.lsf{letter-spacing:-0.780000px;}
.ls30{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.180000px;}
.ls88{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.120000px;}
.ls7b{letter-spacing:-0.096000px;}
.ls11{letter-spacing:-0.060000px;}
.ls7d{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.004140px;}
.lsc{letter-spacing:0.005676px;}
.ls4e{letter-spacing:0.048000px;}
.ls24{letter-spacing:0.060000px;}
.ls63{letter-spacing:0.096000px;}
.ls1b{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.240000px;}
.ls7c{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.420000px;}
.ls6d{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.480000px;}
.ls62{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.540000px;}
.ls81{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.600000px;}
.ls69{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.660000px;}
.ls68{letter-spacing:0.672000px;}
.ls2c{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.780000px;}
.ls1{letter-spacing:0.840000px;}
.ls87{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.900000px;}
.ls2d{letter-spacing:0.960000px;}
.ls84{letter-spacing:1.008000px;}
.ls3{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.056000px;}
.ls19{letter-spacing:1.080000px;}
.ls71{letter-spacing:1.104000px;}
.ls12{letter-spacing:1.140000px;}
.ls6c{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.200000px;}
.ls83{letter-spacing:1.248000px;}
.ls21{letter-spacing:1.260000px;}
.ls85{letter-spacing:1.296000px;}
.ls5{letter-spacing:1.320000px;}
.ls6b{letter-spacing:1.344000px;}
.ls4b{letter-spacing:1.380000px;}
.ls60{letter-spacing:1.392000px;}
.ls2{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.488000px;}
.ls18{letter-spacing:1.500000px;}
.ls6f{letter-spacing:1.536000px;}
.ls22{letter-spacing:1.560000px;}
.ls82{letter-spacing:1.584000px;}
.ls16{letter-spacing:1.620000px;}
.ls5f{letter-spacing:1.632000px;}
.ls2f{letter-spacing:1.680000px;}
.ls78{letter-spacing:1.728000px;}
.ls7{letter-spacing:1.740000px;}
.ls7a{letter-spacing:1.776000px;}
.ls41{letter-spacing:1.800000px;}
.ls75{letter-spacing:1.824000px;}
.ls6{letter-spacing:1.860000px;}
.ls66{letter-spacing:1.872000px;}
.ls31{letter-spacing:1.920000px;}
.ls33{letter-spacing:1.980000px;}
.ls76{letter-spacing:2.016000px;}
.lsb{letter-spacing:2.040000px;}
.ls72{letter-spacing:2.064000px;}
.ls1f{letter-spacing:2.100000px;}
.ls6a{letter-spacing:2.112000px;}
.ls54{letter-spacing:2.160000px;}
.ls35{letter-spacing:2.179800px;}
.ls27{letter-spacing:2.220000px;}
.ls70{letter-spacing:2.256000px;}
.ls17{letter-spacing:2.280000px;}
.ls39{letter-spacing:2.340000px;}
.ls77{letter-spacing:2.352000px;}
.ls28{letter-spacing:2.400000px;}
.ls4d{letter-spacing:2.448000px;}
.ls13{letter-spacing:2.460000px;}
.ls86{letter-spacing:2.496000px;}
.ls1d{letter-spacing:2.520000px;}
.ls1c{letter-spacing:2.580000px;}
.ls0{letter-spacing:2.640000px;}
.ls36{letter-spacing:2.700000px;}
.ls2b{letter-spacing:2.760000px;}
.ls25{letter-spacing:2.880000px;}
.ls79{letter-spacing:2.928000px;}
.ls44{letter-spacing:2.940000px;}
.ls3d{letter-spacing:3.060000px;}
.ls6e{letter-spacing:3.072000px;}
.ls14{letter-spacing:3.120000px;}
.ls74{letter-spacing:3.168000px;}
.ls3e{letter-spacing:3.180000px;}
.ls7f{letter-spacing:3.312000px;}
.ls4f{letter-spacing:3.360000px;}
.ls80{letter-spacing:3.408000px;}
.ls3b{letter-spacing:3.420000px;}
.ls51{letter-spacing:3.480000px;}
.ls23{letter-spacing:3.540000px;}
.ls65{letter-spacing:3.552000px;}
.ls43{letter-spacing:3.600000px;}
.ls34{letter-spacing:3.720000px;}
.ls58{letter-spacing:3.780000px;}
.ls29{letter-spacing:3.900000px;}
.ls57{letter-spacing:4.080000px;}
.ls59{letter-spacing:4.320000px;}
.ls15{letter-spacing:4.380000px;}
.ls45{letter-spacing:4.440000px;}
.ls73{letter-spacing:4.464000px;}
.ls5b{letter-spacing:4.680000px;}
.ls2a{letter-spacing:4.860000px;}
.ls4a{letter-spacing:5.100000px;}
.ls7e{letter-spacing:5.184000px;}
.ls5c{letter-spacing:5.400000px;}
.ls42{letter-spacing:5.460000px;}
.ls48{letter-spacing:5.520000px;}
.ls5a{letter-spacing:5.580000px;}
.ls38{letter-spacing:5.760000px;}
.ls46{letter-spacing:6.000000px;}
.ls50{letter-spacing:6.300000px;}
.ls53{letter-spacing:6.660000px;}
.ls56{letter-spacing:6.840000px;}
.ls55{letter-spacing:6.900000px;}
.ls3a{letter-spacing:7.320000px;}
.ls5e{letter-spacing:7.620000px;}
.ls4c{letter-spacing:8.040000px;}
.ls3c{letter-spacing:8.400000px;}
.ls5d{letter-spacing:10.080000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-35.194800px;}
.ws39{word-spacing:-20.460000px;}
.ws71{word-spacing:-18.900000px;}
.ws21{word-spacing:-18.420000px;}
.ws70{word-spacing:-17.100000px;}
.ws65{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.680000px;}
.ws61{word-spacing:-16.440000px;}
.ws56{word-spacing:-16.380000px;}
.ws3a{word-spacing:-16.020000px;}
.ws22{word-spacing:-15.780000px;}
.wsc{word-spacing:-15.240000px;}
.ws24{word-spacing:-15.180000px;}
.ws64{word-spacing:-15.120000px;}
.ws6f{word-spacing:-15.000000px;}
.ws23{word-spacing:-14.760000px;}
.ws72{word-spacing:-13.872000px;}
.ws8b{word-spacing:-13.776000px;}
.ws75{word-spacing:-13.536000px;}
.ws8e{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.ws8c{word-spacing:-13.152000px;}
.ws89{word-spacing:-13.104000px;}
.ws73{word-spacing:-12.720000px;}
.ws74{word-spacing:-12.624000px;}
.ws8a{word-spacing:-12.576000px;}
.ws76{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.510000px;}
.ws8d{word-spacing:-12.240000px;}
.ws3b{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.210662px;}
.ws3d{word-spacing:-5.520000px;}
.ws29{word-spacing:-3.720000px;}
.ws81{word-spacing:-3.552000px;}
.ws2f{word-spacing:-3.420000px;}
.ws91{word-spacing:-3.408000px;}
.ws7a{word-spacing:-3.300000px;}
.ws90{word-spacing:-2.928000px;}
.ws6{word-spacing:-2.886000px;}
.ws7c{word-spacing:-2.700000px;}
.ws2e{word-spacing:-2.520000px;}
.ws35{word-spacing:-2.400000px;}
.ws15{word-spacing:-2.220000px;}
.ws2c{word-spacing:-2.100000px;}
.ws82{word-spacing:-1.872000px;}
.ws30{word-spacing:-1.740000px;}
.ws2b{word-spacing:-1.560000px;}
.ws80{word-spacing:-1.488000px;}
.ws4b{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.140000px;}
.ws40{word-spacing:-1.020000px;}
.ws2d{word-spacing:-0.960000px;}
.ws41{word-spacing:-0.840000px;}
.ws20{word-spacing:-0.660000px;}
.ws85{word-spacing:-0.624000px;}
.ws42{word-spacing:-0.480000px;}
.ws9e{word-spacing:-0.432000px;}
.ws4a{word-spacing:-0.420000px;}
.ws7d{word-spacing:-0.384000px;}
.ws18{word-spacing:-0.360000px;}
.ws83{word-spacing:-0.336000px;}
.wse{word-spacing:-0.240000px;}
.ws28{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.120000px;}
.ws45{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws88{word-spacing:0.048000px;}
.ws27{word-spacing:0.060000px;}
.ws60{word-spacing:0.096000px;}
.ws63{word-spacing:0.120000px;}
.ws94{word-spacing:0.144000px;}
.ws6b{word-spacing:0.180000px;}
.ws4c{word-spacing:0.240000px;}
.ws98{word-spacing:0.288000px;}
.ws1b{word-spacing:0.300000px;}
.ws9{word-spacing:0.360000px;}
.ws1a{word-spacing:0.420000px;}
.ws68{word-spacing:0.480000px;}
.ws5e{word-spacing:0.540000px;}
.ws54{word-spacing:0.624000px;}
.ws8f{word-spacing:0.768000px;}
.ws3f{word-spacing:0.840000px;}
.ws67{word-spacing:0.900000px;}
.ws77{word-spacing:0.960000px;}
.ws87{word-spacing:1.056000px;}
.ws5a{word-spacing:1.080000px;}
.ws9b{word-spacing:1.104000px;}
.ws26{word-spacing:1.140000px;}
.ws33{word-spacing:1.200000px;}
.ws69{word-spacing:1.260000px;}
.ws46{word-spacing:1.296000px;}
.wsd{word-spacing:1.320000px;}
.ws84{word-spacing:1.344000px;}
.ws95{word-spacing:1.392000px;}
.ws53{word-spacing:1.440000px;}
.ws5b{word-spacing:1.488000px;}
.wsa{word-spacing:1.500000px;}
.ws8{word-spacing:1.560000px;}
.ws4f{word-spacing:1.680000px;}
.ws55{word-spacing:1.728000px;}
.ws49{word-spacing:1.740000px;}
.ws37{word-spacing:1.800000px;}
.ws97{word-spacing:1.824000px;}
.ws31{word-spacing:1.920000px;}
.ws99{word-spacing:1.968000px;}
.ws17{word-spacing:2.040000px;}
.ws6e{word-spacing:2.064000px;}
.ws19{word-spacing:2.100000px;}
.ws86{word-spacing:2.112000px;}
.ws6a{word-spacing:2.160000px;}
.ws5f{word-spacing:2.256000px;}
.ws59{word-spacing:2.280000px;}
.ws5d{word-spacing:2.400000px;}
.ws50{word-spacing:2.448000px;}
.ws96{word-spacing:2.592000px;}
.ws1c{word-spacing:2.640000px;}
.ws43{word-spacing:2.700000px;}
.ws34{word-spacing:2.820000px;}
.ws66{word-spacing:2.880000px;}
.ws11{word-spacing:2.940000px;}
.ws14{word-spacing:3.000000px;}
.wsf{word-spacing:3.060000px;}
.ws9c{word-spacing:3.072000px;}
.ws78{word-spacing:3.120000px;}
.ws93{word-spacing:3.168000px;}
.ws62{word-spacing:3.180000px;}
.ws1f{word-spacing:3.240000px;}
.ws9a{word-spacing:3.264000px;}
.ws51{word-spacing:3.312000px;}
.ws92{word-spacing:3.408000px;}
.ws36{word-spacing:3.420000px;}
.ws25{word-spacing:3.480000px;}
.ws3c{word-spacing:3.600000px;}
.ws7f{word-spacing:3.696000px;}
.ws9d{word-spacing:3.744000px;}
.ws1d{word-spacing:3.780000px;}
.ws47{word-spacing:3.792000px;}
.ws4e{word-spacing:3.840000px;}
.ws2a{word-spacing:3.900000px;}
.ws7e{word-spacing:3.936000px;}
.ws1e{word-spacing:3.960000px;}
.ws52{word-spacing:3.984000px;}
.ws16{word-spacing:4.020000px;}
.ws44{word-spacing:4.140000px;}
.ws38{word-spacing:4.200000px;}
.ws32{word-spacing:4.260000px;}
.ws10{word-spacing:4.320000px;}
.ws6d{word-spacing:4.380000px;}
.ws4d{word-spacing:4.500000px;}
.ws12{word-spacing:4.620000px;}
.ws6c{word-spacing:4.680000px;}
.ws5c{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws7b{word-spacing:5.460000px;}
.ws79{word-spacing:5.520000px;}
.ws3e{word-spacing:10.440000px;}
.ws58{word-spacing:254.352000px;}
.ws57{word-spacing:278.352000px;}
._b{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._a{margin-left:-20.760000px;}
._7{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.215000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._3{width:1.035000px;}
._9{width:2.085000px;}
._6{width:3.420000px;}
._4{width:4.980000px;}
._8{width:6.180000px;}
._d{width:7.970400px;}
._c{width:9.064800px;}
._f{width:10.620000px;}
._10{width:159.024000px;}
._12{width:184.608000px;}
._11{width:193.728000px;}
._2b{width:262.326000px;}
._14{width:266.352000px;}
._18{width:268.128000px;}
._1b{width:290.886000px;}
._15{width:308.016000px;}
._1c{width:310.326000px;}
._24{width:332.016000px;}
._21{width:333.630000px;}
._19{width:342.726000px;}
._1e{width:355.482000px;}
._16{width:364.176000px;}
._25{width:670.800000px;}
._1a{width:860.496000px;}
._20{width:876.480000px;}
._1f{width:880.032000px;}
._13{width:925.344000px;}
._22{width:935.670000px;}
._26{width:942.672000px;}
._2c{width:961.344000px;}
._2d{width:977.328000px;}
._27{width:985.344000px;}
._23{width:1003.968000px;}
._2e{width:1045.824000px;}
._2a{width:1052.016000px;}
._28{width:1065.360000px;}
._17{width:1075.968000px;}
._29{width:1078.704000px;}
._1d{width:1097.280000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs6{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.ycd{bottom:82.917150px;}
.yc8{bottom:83.448600px;}
.yf4{bottom:83.661150px;}
.y5f{bottom:83.770350px;}
.yf5{bottom:83.790900px;}
.y98{bottom:83.920350px;}
.y85{bottom:84.070350px;}
.y4{bottom:88.026750px;}
.y190{bottom:89.263500px;}
.yc5{bottom:91.112100px;}
.yf0{bottom:92.887500px;}
.y1d1{bottom:95.263500px;}
.ycc{bottom:98.661150px;}
.yc7{bottom:99.192600px;}
.yf3{bottom:99.405150px;}
.y5e{bottom:101.770350px;}
.y152{bottom:101.772600px;}
.y97{bottom:101.920350px;}
.y84{bottom:102.070350px;}
.y3{bottom:103.023000px;}
.y18f{bottom:104.263500px;}
.yd4{bottom:107.543400px;}
.yc4{bottom:109.112100px;}
.yef{bottom:109.135500px;}
.y1d0{bottom:110.263500px;}
.ycb{bottom:114.405150px;}
.yc6{bottom:114.936600px;}
.yf2{bottom:115.149150px;}
.y18e{bottom:119.263500px;}
.y151{bottom:119.367600px;}
.y5d{bottom:119.770350px;}
.y96{bottom:119.920350px;}
.y83{bottom:120.070350px;}
.yd3{bottom:123.287400px;}
.y1cf{bottom:125.263500px;}
.yee{bottom:125.383500px;}
.yc3{bottom:127.112100px;}
.y18d{bottom:134.263500px;}
.y124{bottom:137.635350px;}
.y5c{bottom:137.770350px;}
.y95{bottom:137.920350px;}
.y82{bottom:138.070350px;}
.yd2{bottom:139.031400px;}
.y1ce{bottom:140.263500px;}
.yed{bottom:141.631500px;}
.yc2{bottom:145.112100px;}
.y18c{bottom:149.263500px;}
.yd1{bottom:154.775400px;}
.y1cd{bottom:155.263500px;}
.y150{bottom:155.367600px;}
.y123{bottom:155.635350px;}
.y5b{bottom:155.770350px;}
.y94{bottom:155.920350px;}
.y81{bottom:156.070350px;}
.yec{bottom:157.879500px;}
.yc1{bottom:163.112100px;}
.y18b{bottom:164.263500px;}
.y10{bottom:166.012800px;}
.y1cc{bottom:170.263500px;}
.yd0{bottom:170.519400px;}
.y122{bottom:173.635350px;}
.y5a{bottom:173.770350px;}
.y93{bottom:173.920350px;}
.y80{bottom:174.070350px;}
.yeb{bottom:174.127500px;}
.y18a{bottom:179.263500px;}
.yc0{bottom:181.112100px;}
.yf{bottom:184.012800px;}
.y1cb{bottom:185.263500px;}
.ycf{bottom:186.263400px;}
.yea{bottom:190.375500px;}
.y121{bottom:191.635350px;}
.y59{bottom:191.770350px;}
.y14f{bottom:191.772600px;}
.y92{bottom:191.920350px;}
.y7f{bottom:192.070350px;}
.y189{bottom:194.263500px;}
.ybf{bottom:199.112100px;}
.y1ca{bottom:200.263500px;}
.ye{bottom:202.012800px;}
.ye9{bottom:206.623500px;}
.y188{bottom:209.263500px;}
.y120{bottom:209.635350px;}
.y58{bottom:209.770350px;}
.y14e{bottom:209.772600px;}
.y91{bottom:209.920350px;}
.y7e{bottom:210.070350px;}
.y1c9{bottom:215.263500px;}
.ybe{bottom:217.112100px;}
.yd{bottom:220.012800px;}
.ye8{bottom:222.871500px;}
.y187{bottom:224.263500px;}
.y11f{bottom:227.635350px;}
.y57{bottom:227.770350px;}
.y14d{bottom:227.772600px;}
.y90{bottom:227.920350px;}
.y7d{bottom:228.070350px;}
.y1c8{bottom:230.263500px;}
.ybd{bottom:235.112100px;}
.yc{bottom:238.012800px;}
.ye7{bottom:239.119500px;}
.y186{bottom:239.263500px;}
.y1c7{bottom:245.263500px;}
.y11e{bottom:245.635350px;}
.y56{bottom:245.770350px;}
.y14c{bottom:245.772600px;}
.y8f{bottom:245.920350px;}
.y7c{bottom:246.070350px;}
.ybc{bottom:253.112100px;}
.y185{bottom:254.263500px;}
.ye6{bottom:255.367500px;}
.yb{bottom:256.012800px;}
.y1c6{bottom:260.263500px;}
.y11d{bottom:263.635350px;}
.y55{bottom:263.770350px;}
.y14b{bottom:263.772600px;}
.y8e{bottom:263.920350px;}
.y7b{bottom:264.070350px;}
.y184{bottom:269.263500px;}
.ybb{bottom:271.112100px;}
.ye5{bottom:271.615500px;}
.ya{bottom:274.012800px;}
.y1c5{bottom:275.263500px;}
.y11c{bottom:281.635350px;}
.y54{bottom:281.770350px;}
.y14a{bottom:281.772600px;}
.y8d{bottom:281.920350px;}
.y183{bottom:284.263500px;}
.ye4{bottom:287.863500px;}
.yba{bottom:289.112100px;}
.y1c4{bottom:290.263500px;}
.y9{bottom:292.012800px;}
.y182{bottom:299.263500px;}
.y149{bottom:299.367600px;}
.y11b{bottom:299.635350px;}
.y7a{bottom:299.665350px;}
.y53{bottom:299.770350px;}
.y8c{bottom:299.920350px;}
.ye3{bottom:304.111500px;}
.y1c3{bottom:305.263500px;}
.yb9{bottom:307.112100px;}
.y8{bottom:310.012800px;}
.y181{bottom:314.263500px;}
.y11a{bottom:317.635350px;}
.y52{bottom:317.770350px;}
.y8b{bottom:317.920350px;}
.y1c2{bottom:320.263500px;}
.ye2{bottom:320.359500px;}
.y7{bottom:328.012800px;}
.y180{bottom:329.263500px;}
.y1c1{bottom:335.263500px;}
.y119{bottom:335.635350px;}
.y51{bottom:335.770350px;}
.y148{bottom:335.772600px;}
.y79{bottom:335.920350px;}
.ye1{bottom:336.607500px;}
.yb8{bottom:341.952750px;}
.y17f{bottom:344.263500px;}
.y6{bottom:346.012800px;}
.y1c0{bottom:350.263500px;}
.ye0{bottom:352.855500px;}
.y147{bottom:353.367600px;}
.y118{bottom:353.635350px;}
.y50{bottom:353.770350px;}
.y78{bottom:353.920350px;}
.yb7{bottom:357.558750px;}
.y17e{bottom:359.263500px;}
.y12{bottom:364.012800px;}
.y1bf{bottom:365.263500px;}
.ydf{bottom:369.103500px;}
.y117{bottom:371.635350px;}
.y4f{bottom:371.770350px;}
.y77{bottom:371.920350px;}
.yb6{bottom:371.935350px;}
.y17d{bottom:374.263500px;}
.y1be{bottom:380.263500px;}
.y5{bottom:381.607800px;}
.y11{bottom:382.012800px;}
.yde{bottom:385.351500px;}
.y17c{bottom:389.263500px;}
.yb5{bottom:389.530350px;}
.y116{bottom:389.635350px;}
.y4e{bottom:389.770350px;}
.y146{bottom:389.772600px;}
.y76{bottom:389.920350px;}
.y1bd{bottom:395.263500px;}
.ydd{bottom:401.599500px;}
.y17b{bottom:404.263500px;}
.y145{bottom:407.367600px;}
.yb4{bottom:407.530350px;}
.y115{bottom:407.635350px;}
.y4d{bottom:407.770350px;}
.y75{bottom:407.920350px;}
.y1bc{bottom:410.263500px;}
.y17a{bottom:419.263500px;}
.y1bb{bottom:425.263500px;}
.y114{bottom:425.635350px;}
.y4c{bottom:425.770350px;}
.y74{bottom:425.920350px;}
.ydc{bottom:433.111500px;}
.y179{bottom:434.263500px;}
.y1ba{bottom:440.263500px;}
.yb3{bottom:443.380350px;}
.y113{bottom:443.635350px;}
.y4b{bottom:443.770350px;}
.y144{bottom:443.772600px;}
.y73{bottom:443.920350px;}
.y178{bottom:449.263500px;}
.y1b9{bottom:455.263500px;}
.y2a{bottom:457.564200px;}
.yb2{bottom:461.380350px;}
.y112{bottom:461.635350px;}
.y143{bottom:461.772600px;}
.y72{bottom:461.920350px;}
.y177{bottom:464.263500px;}
.ydb{bottom:468.006600px;}
.y1b8{bottom:470.263500px;}
.yd8{bottom:477.239400px;}
.y176{bottom:479.263500px;}
.y4a{bottom:479.365350px;}
.y8a{bottom:479.515350px;}
.y111{bottom:479.635350px;}
.y142{bottom:479.772600px;}
.y71{bottom:479.920350px;}
.y29{bottom:484.909200px;}
.y1b7{bottom:485.263500px;}
.yd7{bottom:492.983400px;}
.y175{bottom:494.263500px;}
.yb1{bottom:497.245350px;}
.y110{bottom:497.635350px;}
.yca{bottom:497.770350px;}
.y141{bottom:497.772600px;}
.y70{bottom:497.920350px;}
.y1b6{bottom:500.263500px;}
.y28{bottom:502.909200px;}
.yd6{bottom:508.727400px;}
.y174{bottom:509.263500px;}
.yda{bottom:513.015450px;}
.y49{bottom:515.230350px;}
.y1b5{bottom:515.263500px;}
.y10f{bottom:515.635350px;}
.y89{bottom:515.770350px;}
.y140{bottom:515.772600px;}
.y6f{bottom:515.920350px;}
.y27{bottom:520.909200px;}
.y173{bottom:524.263500px;}
.yd5{bottom:524.471400px;}
.yd9{bottom:528.759450px;}
.y1b4{bottom:530.263500px;}
.y10e{bottom:533.635350px;}
.y88{bottom:533.770350px;}
.y13f{bottom:533.772600px;}
.y6e{bottom:533.920350px;}
.y26{bottom:538.909200px;}
.y172{bottom:539.263500px;}
.y1b3{bottom:545.263500px;}
.y10d{bottom:551.635350px;}
.y87{bottom:551.770350px;}
.y13e{bottom:551.772600px;}
.yb0{bottom:551.785350px;}
.y6d{bottom:551.920350px;}
.y171{bottom:554.263500px;}
.y25{bottom:556.909200px;}
.y1b2{bottom:560.263500px;}
.y170{bottom:569.263500px;}
.y10c{bottom:569.635350px;}
.y48{bottom:569.770350px;}
.y13d{bottom:569.772600px;}
.yaf{bottom:569.785350px;}
.y6c{bottom:569.920350px;}
.y24{bottom:574.909200px;}
.y1b1{bottom:575.263500px;}
.y16f{bottom:584.263500px;}
.y10b{bottom:587.635350px;}
.y47{bottom:587.770350px;}
.y13c{bottom:587.772600px;}
.yae{bottom:587.785350px;}
.y6b{bottom:587.920350px;}
.y1b0{bottom:590.263500px;}
.y23{bottom:592.909200px;}
.y16e{bottom:599.263500px;}
.y1af{bottom:605.263500px;}
.y10a{bottom:605.635350px;}
.y46{bottom:605.770350px;}
.y13b{bottom:605.772600px;}
.yad{bottom:605.785350px;}
.y6a{bottom:605.920350px;}
.y22{bottom:610.909200px;}
.y16d{bottom:614.263500px;}
.y1ae{bottom:620.263500px;}
.y109{bottom:623.635350px;}
.y45{bottom:623.770350px;}
.y13a{bottom:623.772600px;}
.yac{bottom:623.785350px;}
.y69{bottom:623.920350px;}
.y21{bottom:628.909200px;}
.y16c{bottom:629.263500px;}
.y1ad{bottom:635.263500px;}
.y108{bottom:641.635350px;}
.y44{bottom:641.770350px;}
.y139{bottom:641.772600px;}
.yab{bottom:641.785350px;}
.y68{bottom:641.920350px;}
.y16b{bottom:644.263500px;}
.y20{bottom:646.909200px;}
.y1ac{bottom:650.263500px;}
.y16a{bottom:659.263500px;}
.y107{bottom:659.635350px;}
.y43{bottom:659.770350px;}
.y138{bottom:659.772600px;}
.yaa{bottom:659.785350px;}
.y67{bottom:659.920350px;}
.y1f{bottom:664.909200px;}
.y1ab{bottom:665.263500px;}
.y169{bottom:674.263500px;}
.y106{bottom:677.635350px;}
.y42{bottom:677.770350px;}
.y137{bottom:677.772600px;}
.ya9{bottom:677.785350px;}
.y66{bottom:677.920350px;}
.y1aa{bottom:680.263500px;}
.y1e{bottom:682.909200px;}
.y168{bottom:689.263500px;}
.y1a9{bottom:695.263500px;}
.y105{bottom:695.635350px;}
.y41{bottom:695.770350px;}
.y136{bottom:695.772600px;}
.ya8{bottom:695.785350px;}
.y65{bottom:695.920350px;}
.y1d{bottom:700.909200px;}
.y167{bottom:704.263500px;}
.y1a8{bottom:710.263500px;}
.y135{bottom:713.367600px;}
.y104{bottom:713.635350px;}
.y40{bottom:713.770350px;}
.ya7{bottom:713.785350px;}
.y64{bottom:713.920350px;}
.y166{bottom:719.263500px;}
.y1a7{bottom:725.263500px;}
.y103{bottom:731.635350px;}
.y3f{bottom:731.770350px;}
.ya6{bottom:731.785350px;}
.y63{bottom:731.920350px;}
.y165{bottom:734.263500px;}
.y1a6{bottom:740.263500px;}
.y1c{bottom:746.067300px;}
.y164{bottom:749.263500px;}
.y102{bottom:749.635350px;}
.y3e{bottom:749.770350px;}
.y134{bottom:749.772600px;}
.ya5{bottom:749.785350px;}
.y62{bottom:749.920350px;}
.y1a5{bottom:755.263500px;}
.y1b{bottom:758.518050px;}
.y163{bottom:764.263500px;}
.y101{bottom:767.635350px;}
.y3d{bottom:767.770350px;}
.y133{bottom:767.772600px;}
.ya4{bottom:767.785350px;}
.y61{bottom:767.920350px;}
.y1a4{bottom:770.263500px;}
.y1d7{bottom:773.914350px;}
.y162{bottom:779.263500px;}
.y1a3{bottom:785.263500px;}
.y100{bottom:785.635350px;}
.y3c{bottom:785.770350px;}
.y132{bottom:785.772600px;}
.ya3{bottom:785.785350px;}
.y1a{bottom:790.233600px;}
.y1d6{bottom:791.914350px;}
.y161{bottom:794.263500px;}
.y1a2{bottom:800.263500px;}
.y60{bottom:803.515350px;}
.yff{bottom:803.635350px;}
.y19{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.y131{bottom:803.772600px;}
.ya2{bottom:803.785350px;}
.y160{bottom:809.263500px;}
.y1a1{bottom:815.263500px;}
.yfe{bottom:821.635350px;}
.y3a{bottom:821.770350px;}
.y130{bottom:821.772600px;}
.ya1{bottom:821.785350px;}
.y18{bottom:822.658950px;}
.y15f{bottom:824.263500px;}
.y1d5{bottom:827.914350px;}
.y1a0{bottom:830.263500px;}
.y15e{bottom:839.263500px;}
.yfd{bottom:839.635350px;}
.y39{bottom:839.770350px;}
.y12f{bottom:839.772600px;}
.ya0{bottom:839.785350px;}
.y19f{bottom:845.263500px;}
.y1d4{bottom:845.914350px;}
.y17{bottom:851.380950px;}
.y15d{bottom:854.263500px;}
.yfc{bottom:857.635350px;}
.y38{bottom:857.770350px;}
.y12e{bottom:857.772600px;}
.y19e{bottom:860.263500px;}
.y1d3{bottom:863.914350px;}
.y15c{bottom:869.263500px;}
.y19d{bottom:875.263500px;}
.y9f{bottom:875.380350px;}
.yfb{bottom:875.635350px;}
.y37{bottom:875.770350px;}
.y12d{bottom:875.772600px;}
.y15b{bottom:884.263500px;}
.y19c{bottom:890.263500px;}
.yfa{bottom:893.635350px;}
.y36{bottom:893.770350px;}
.y12c{bottom:893.772600px;}
.y16{bottom:897.543600px;}
.y15a{bottom:899.263500px;}
.y1d2{bottom:899.509350px;}
.y19b{bottom:905.263500px;}
.y9e{bottom:911.245350px;}
.yf9{bottom:911.635350px;}
.y35{bottom:911.770350px;}
.y12b{bottom:911.772600px;}
.y159{bottom:914.263500px;}
.y19a{bottom:920.263500px;}
.y158{bottom:929.263500px;}
.yf8{bottom:929.635350px;}
.y34{bottom:929.770350px;}
.y12a{bottom:929.772600px;}
.y15{bottom:934.004400px;}
.y199{bottom:935.263500px;}
.y157{bottom:944.263500px;}
.y33{bottom:947.770350px;}
.y129{bottom:947.772600px;}
.y198{bottom:950.263500px;}
.y156{bottom:959.263500px;}
.yf7{bottom:965.230350px;}
.y197{bottom:965.263500px;}
.y32{bottom:965.770350px;}
.y128{bottom:965.772600px;}
.y9d{bottom:965.785350px;}
.y14{bottom:970.465200px;}
.y155{bottom:974.263500px;}
.y196{bottom:980.263500px;}
.y31{bottom:983.770350px;}
.y127{bottom:983.772600px;}
.y9c{bottom:983.785350px;}
.y154{bottom:989.263500px;}
.y195{bottom:995.263500px;}
.y30{bottom:1001.770350px;}
.y126{bottom:1001.772600px;}
.y9b{bottom:1001.785350px;}
.y153{bottom:1004.263500px;}
.y13{bottom:1006.926000px;}
.y194{bottom:1010.263500px;}
.y2f{bottom:1019.770350px;}
.y9a{bottom:1019.785350px;}
.y193{bottom:1025.263500px;}
.y125{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y99{bottom:1037.785350px;}
.y192{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y86{bottom:1132.418700px;}
.yce{bottom:1132.421700px;}
.yf6{bottom:1132.422900px;}
.y191{bottom:1132.423500px;}
.yc9{bottom:1132.428600px;}
.yf1{bottom:1132.495500px;}
.y2c{bottom:1136.089500px;}
.y2b{bottom:1150.492500px;}
.ha{height:19.125417px;}
.hb{height:32.805176px;}
.h12{height:33.351562px;}
.hc{height:34.962891px;}
.h2{height:37.652344px;}
.h4{height:40.341797px;}
.h7{height:41.689453px;}
.h11{height:42.117188px;}
.he{height:43.019250px;}
.hf{height:43.031250px;}
.h5{height:43.681641px;}
.h10{height:47.381836px;}
.h6{height:52.646484px;}
.hd{height:53.789062px;}
.h13{height:54.266484px;}
.h3{height:56.786133px;}
.h9{height:57.121316px;}
.h8{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:70.582650px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.920550px;}
.x26{left:102.047250px;}
.x7{left:106.299150px;}
.xb{left:110.555400px;}
.x6{left:125.427900px;}
.x4{left:131.816400px;}
.xc{left:144.725400px;}
.x22{left:211.392300px;}
.x3{left:212.876400px;}
.x1e{left:422.000550px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x11{left:478.374000px;}
.x5{left:480.476400px;}
.x27{left:482.603250px;}
.xe{left:491.105400px;}
.x17{left:493.164000px;}
.x16{left:495.369000px;}
.x1a{left:500.506800px;}
.x24{left:503.858400px;}
.x15{left:509.814000px;}
.x13{left:512.394000px;}
.x20{left:579.440400px;}
.x19{left:580.974000px;}
.x18{left:593.214000px;}
.x23{left:596.112300px;}
.x1b{left:601.608300px;}
.x14{left:604.749000px;}
.x12{left:612.939000px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x21{left:721.717650px;}
.xf{left:728.391600px;}
.x25{left:743.846400px;}
.x1c{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls40{letter-spacing:-2.506667pt;}
.ls49{letter-spacing:-0.746667pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls88{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls7b{letter-spacing:-0.085333pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls7d{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003680pt;}
.lsc{letter-spacing:0.005045pt;}
.ls4e{letter-spacing:0.042667pt;}
.ls24{letter-spacing:0.053333pt;}
.ls63{letter-spacing:0.085333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls7c{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.373333pt;}
.ls6d{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls62{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls81{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.533333pt;}
.ls69{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls68{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.693333pt;}
.ls1{letter-spacing:0.746667pt;}
.ls87{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls2d{letter-spacing:0.853333pt;}
.ls84{letter-spacing:0.896000pt;}
.ls3{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.938667pt;}
.ls19{letter-spacing:0.960000pt;}
.ls71{letter-spacing:0.981333pt;}
.ls12{letter-spacing:1.013333pt;}
.ls6c{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.066667pt;}
.ls83{letter-spacing:1.109333pt;}
.ls21{letter-spacing:1.120000pt;}
.ls85{letter-spacing:1.152000pt;}
.ls5{letter-spacing:1.173333pt;}
.ls6b{letter-spacing:1.194667pt;}
.ls4b{letter-spacing:1.226667pt;}
.ls60{letter-spacing:1.237333pt;}
.ls2{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.322667pt;}
.ls18{letter-spacing:1.333333pt;}
.ls6f{letter-spacing:1.365333pt;}
.ls22{letter-spacing:1.386667pt;}
.ls82{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls5f{letter-spacing:1.450667pt;}
.ls2f{letter-spacing:1.493333pt;}
.ls78{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.546667pt;}
.ls7a{letter-spacing:1.578667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls75{letter-spacing:1.621333pt;}
.ls6{letter-spacing:1.653333pt;}
.ls66{letter-spacing:1.664000pt;}
.ls31{letter-spacing:1.706667pt;}
.ls33{letter-spacing:1.760000pt;}
.ls76{letter-spacing:1.792000pt;}
.lsb{letter-spacing:1.813333pt;}
.ls72{letter-spacing:1.834667pt;}
.ls1f{letter-spacing:1.866667pt;}
.ls6a{letter-spacing:1.877333pt;}
.ls54{letter-spacing:1.920000pt;}
.ls35{letter-spacing:1.937600pt;}
.ls27{letter-spacing:1.973333pt;}
.ls70{letter-spacing:2.005333pt;}
.ls17{letter-spacing:2.026667pt;}
.ls39{letter-spacing:2.080000pt;}
.ls77{letter-spacing:2.090667pt;}
.ls28{letter-spacing:2.133333pt;}
.ls4d{letter-spacing:2.176000pt;}
.ls13{letter-spacing:2.186667pt;}
.ls86{letter-spacing:2.218667pt;}
.ls1d{letter-spacing:2.240000pt;}
.ls1c{letter-spacing:2.293333pt;}
.ls0{letter-spacing:2.346667pt;}
.ls36{letter-spacing:2.400000pt;}
.ls2b{letter-spacing:2.453333pt;}
.ls25{letter-spacing:2.560000pt;}
.ls79{letter-spacing:2.602667pt;}
.ls44{letter-spacing:2.613333pt;}
.ls3d{letter-spacing:2.720000pt;}
.ls6e{letter-spacing:2.730667pt;}
.ls14{letter-spacing:2.773333pt;}
.ls74{letter-spacing:2.816000pt;}
.ls3e{letter-spacing:2.826667pt;}
.ls7f{letter-spacing:2.944000pt;}
.ls4f{letter-spacing:2.986667pt;}
.ls80{letter-spacing:3.029333pt;}
.ls3b{letter-spacing:3.040000pt;}
.ls51{letter-spacing:3.093333pt;}
.ls23{letter-spacing:3.146667pt;}
.ls65{letter-spacing:3.157333pt;}
.ls43{letter-spacing:3.200000pt;}
.ls34{letter-spacing:3.306667pt;}
.ls58{letter-spacing:3.360000pt;}
.ls29{letter-spacing:3.466667pt;}
.ls57{letter-spacing:3.626667pt;}
.ls59{letter-spacing:3.840000pt;}
.ls15{letter-spacing:3.893333pt;}
.ls45{letter-spacing:3.946667pt;}
.ls73{letter-spacing:3.968000pt;}
.ls5b{letter-spacing:4.160000pt;}
.ls2a{letter-spacing:4.320000pt;}
.ls4a{letter-spacing:4.533333pt;}
.ls7e{letter-spacing:4.608000pt;}
.ls5c{letter-spacing:4.800000pt;}
.ls42{letter-spacing:4.853333pt;}
.ls48{letter-spacing:4.906667pt;}
.ls5a{letter-spacing:4.960000pt;}
.ls38{letter-spacing:5.120000pt;}
.ls46{letter-spacing:5.333333pt;}
.ls50{letter-spacing:5.600000pt;}
.ls53{letter-spacing:5.920000pt;}
.ls56{letter-spacing:6.080000pt;}
.ls55{letter-spacing:6.133333pt;}
.ls3a{letter-spacing:6.506667pt;}
.ls5e{letter-spacing:6.773333pt;}
.ls4c{letter-spacing:7.146667pt;}
.ls3c{letter-spacing:7.466667pt;}
.ls5d{letter-spacing:8.960000pt;}
.ws1{word-spacing:-31.284267pt;}
.ws39{word-spacing:-18.186667pt;}
.ws71{word-spacing:-16.800000pt;}
.ws21{word-spacing:-16.373333pt;}
.ws70{word-spacing:-15.200000pt;}
.ws65{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws61{word-spacing:-14.613333pt;}
.ws56{word-spacing:-14.560000pt;}
.ws3a{word-spacing:-14.240000pt;}
.ws22{word-spacing:-14.026667pt;}
.wsc{word-spacing:-13.546667pt;}
.ws24{word-spacing:-13.493333pt;}
.ws64{word-spacing:-13.440000pt;}
.ws6f{word-spacing:-13.333333pt;}
.ws23{word-spacing:-13.120000pt;}
.ws72{word-spacing:-12.330667pt;}
.ws8b{word-spacing:-12.245333pt;}
.ws75{word-spacing:-12.032000pt;}
.ws8e{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws8c{word-spacing:-11.690667pt;}
.ws89{word-spacing:-11.648000pt;}
.ws73{word-spacing:-11.306667pt;}
.ws74{word-spacing:-11.221333pt;}
.ws8a{word-spacing:-11.178667pt;}
.ws76{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.120000pt;}
.ws8d{word-spacing:-10.880000pt;}
.ws3b{word-spacing:-10.666667pt;}
.ws2{word-spacing:-9.076144pt;}
.ws3d{word-spacing:-4.906667pt;}
.ws29{word-spacing:-3.306667pt;}
.ws81{word-spacing:-3.157333pt;}
.ws2f{word-spacing:-3.040000pt;}
.ws91{word-spacing:-3.029333pt;}
.ws7a{word-spacing:-2.933333pt;}
.ws90{word-spacing:-2.602667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws7c{word-spacing:-2.400000pt;}
.ws2e{word-spacing:-2.240000pt;}
.ws35{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.973333pt;}
.ws2c{word-spacing:-1.866667pt;}
.ws82{word-spacing:-1.664000pt;}
.ws30{word-spacing:-1.546667pt;}
.ws2b{word-spacing:-1.386667pt;}
.ws80{word-spacing:-1.322667pt;}
.ws4b{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.013333pt;}
.ws40{word-spacing:-0.906667pt;}
.ws2d{word-spacing:-0.853333pt;}
.ws41{word-spacing:-0.746667pt;}
.ws20{word-spacing:-0.586667pt;}
.ws85{word-spacing:-0.554667pt;}
.ws42{word-spacing:-0.426667pt;}
.ws9e{word-spacing:-0.384000pt;}
.ws4a{word-spacing:-0.373333pt;}
.ws7d{word-spacing:-0.341333pt;}
.ws18{word-spacing:-0.320000pt;}
.ws83{word-spacing:-0.298667pt;}
.wse{word-spacing:-0.213333pt;}
.ws28{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.106667pt;}
.ws45{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws88{word-spacing:0.042667pt;}
.ws27{word-spacing:0.053333pt;}
.ws60{word-spacing:0.085333pt;}
.ws63{word-spacing:0.106667pt;}
.ws94{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.160000pt;}
.ws4c{word-spacing:0.213333pt;}
.ws98{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.266667pt;}
.ws9{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.373333pt;}
.ws68{word-spacing:0.426667pt;}
.ws5e{word-spacing:0.480000pt;}
.ws54{word-spacing:0.554667pt;}
.ws8f{word-spacing:0.682667pt;}
.ws3f{word-spacing:0.746667pt;}
.ws67{word-spacing:0.800000pt;}
.ws77{word-spacing:0.853333pt;}
.ws87{word-spacing:0.938667pt;}
.ws5a{word-spacing:0.960000pt;}
.ws9b{word-spacing:0.981333pt;}
.ws26{word-spacing:1.013333pt;}
.ws33{word-spacing:1.066667pt;}
.ws69{word-spacing:1.120000pt;}
.ws46{word-spacing:1.152000pt;}
.wsd{word-spacing:1.173333pt;}
.ws84{word-spacing:1.194667pt;}
.ws95{word-spacing:1.237333pt;}
.ws53{word-spacing:1.280000pt;}
.ws5b{word-spacing:1.322667pt;}
.wsa{word-spacing:1.333333pt;}
.ws8{word-spacing:1.386667pt;}
.ws4f{word-spacing:1.493333pt;}
.ws55{word-spacing:1.536000pt;}
.ws49{word-spacing:1.546667pt;}
.ws37{word-spacing:1.600000pt;}
.ws97{word-spacing:1.621333pt;}
.ws31{word-spacing:1.706667pt;}
.ws99{word-spacing:1.749333pt;}
.ws17{word-spacing:1.813333pt;}
.ws6e{word-spacing:1.834667pt;}
.ws19{word-spacing:1.866667pt;}
.ws86{word-spacing:1.877333pt;}
.ws6a{word-spacing:1.920000pt;}
.ws5f{word-spacing:2.005333pt;}
.ws59{word-spacing:2.026667pt;}
.ws5d{word-spacing:2.133333pt;}
.ws50{word-spacing:2.176000pt;}
.ws96{word-spacing:2.304000pt;}
.ws1c{word-spacing:2.346667pt;}
.ws43{word-spacing:2.400000pt;}
.ws34{word-spacing:2.506667pt;}
.ws66{word-spacing:2.560000pt;}
.ws11{word-spacing:2.613333pt;}
.ws14{word-spacing:2.666667pt;}
.wsf{word-spacing:2.720000pt;}
.ws9c{word-spacing:2.730667pt;}
.ws78{word-spacing:2.773333pt;}
.ws93{word-spacing:2.816000pt;}
.ws62{word-spacing:2.826667pt;}
.ws1f{word-spacing:2.880000pt;}
.ws9a{word-spacing:2.901333pt;}
.ws51{word-spacing:2.944000pt;}
.ws92{word-spacing:3.029333pt;}
.ws36{word-spacing:3.040000pt;}
.ws25{word-spacing:3.093333pt;}
.ws3c{word-spacing:3.200000pt;}
.ws7f{word-spacing:3.285333pt;}
.ws9d{word-spacing:3.328000pt;}
.ws1d{word-spacing:3.360000pt;}
.ws47{word-spacing:3.370667pt;}
.ws4e{word-spacing:3.413333pt;}
.ws2a{word-spacing:3.466667pt;}
.ws7e{word-spacing:3.498667pt;}
.ws1e{word-spacing:3.520000pt;}
.ws52{word-spacing:3.541333pt;}
.ws16{word-spacing:3.573333pt;}
.ws44{word-spacing:3.680000pt;}
.ws38{word-spacing:3.733333pt;}
.ws32{word-spacing:3.786667pt;}
.ws10{word-spacing:3.840000pt;}
.ws6d{word-spacing:3.893333pt;}
.ws4d{word-spacing:4.000000pt;}
.ws12{word-spacing:4.106667pt;}
.ws6c{word-spacing:4.160000pt;}
.ws5c{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws7b{word-spacing:4.853333pt;}
.ws79{word-spacing:4.906667pt;}
.ws3e{word-spacing:9.280000pt;}
.ws58{word-spacing:226.090667pt;}
.ws57{word-spacing:247.424000pt;}
._b{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._a{margin-left:-18.453333pt;}
._7{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.746667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._3{width:0.920000pt;}
._9{width:1.853333pt;}
._6{width:3.040000pt;}
._4{width:4.426667pt;}
._8{width:5.493333pt;}
._d{width:7.084800pt;}
._c{width:8.057600pt;}
._f{width:9.440000pt;}
._10{width:141.354667pt;}
._12{width:164.096000pt;}
._11{width:172.202667pt;}
._2b{width:233.178667pt;}
._14{width:236.757333pt;}
._18{width:238.336000pt;}
._1b{width:258.565333pt;}
._15{width:273.792000pt;}
._1c{width:275.845333pt;}
._24{width:295.125333pt;}
._21{width:296.560000pt;}
._19{width:304.645333pt;}
._1e{width:315.984000pt;}
._16{width:323.712000pt;}
._25{width:596.266667pt;}
._1a{width:764.885333pt;}
._20{width:779.093333pt;}
._1f{width:782.250667pt;}
._13{width:822.528000pt;}
._22{width:831.706667pt;}
._26{width:837.930667pt;}
._2c{width:854.528000pt;}
._2d{width:868.736000pt;}
._27{width:875.861333pt;}
._23{width:892.416000pt;}
._2e{width:929.621333pt;}
._2a{width:935.125333pt;}
._28{width:946.986667pt;}
._17{width:956.416000pt;}
._29{width:958.848000pt;}
._1d{width:975.360000pt;}
.fs7{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs6{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.ycd{bottom:73.704133pt;}
.yc8{bottom:74.176533pt;}
.yf4{bottom:74.365467pt;}
.y5f{bottom:74.462533pt;}
.yf5{bottom:74.480800pt;}
.y98{bottom:74.595867pt;}
.y85{bottom:74.729200pt;}
.y4{bottom:78.246000pt;}
.y190{bottom:79.345333pt;}
.yc5{bottom:80.988533pt;}
.yf0{bottom:82.566667pt;}
.y1d1{bottom:84.678667pt;}
.ycc{bottom:87.698800pt;}
.yc7{bottom:88.171200pt;}
.yf3{bottom:88.360133pt;}
.y5e{bottom:90.462533pt;}
.y152{bottom:90.464533pt;}
.y97{bottom:90.595867pt;}
.y84{bottom:90.729200pt;}
.y3{bottom:91.576000pt;}
.y18f{bottom:92.678667pt;}
.yd4{bottom:95.594133pt;}
.yc4{bottom:96.988533pt;}
.yef{bottom:97.009333pt;}
.y1d0{bottom:98.012000pt;}
.ycb{bottom:101.693467pt;}
.yc6{bottom:102.165867pt;}
.yf2{bottom:102.354800pt;}
.y18e{bottom:106.012000pt;}
.y151{bottom:106.104533pt;}
.y5d{bottom:106.462533pt;}
.y96{bottom:106.595867pt;}
.y83{bottom:106.729200pt;}
.yd3{bottom:109.588800pt;}
.y1cf{bottom:111.345333pt;}
.yee{bottom:111.452000pt;}
.yc3{bottom:112.988533pt;}
.y18d{bottom:119.345333pt;}
.y124{bottom:122.342533pt;}
.y5c{bottom:122.462533pt;}
.y95{bottom:122.595867pt;}
.y82{bottom:122.729200pt;}
.yd2{bottom:123.583467pt;}
.y1ce{bottom:124.678667pt;}
.yed{bottom:125.894667pt;}
.yc2{bottom:128.988533pt;}
.y18c{bottom:132.678667pt;}
.yd1{bottom:137.578133pt;}
.y1cd{bottom:138.012000pt;}
.y150{bottom:138.104533pt;}
.y123{bottom:138.342533pt;}
.y5b{bottom:138.462533pt;}
.y94{bottom:138.595867pt;}
.y81{bottom:138.729200pt;}
.yec{bottom:140.337333pt;}
.yc1{bottom:144.988533pt;}
.y18b{bottom:146.012000pt;}
.y10{bottom:147.566933pt;}
.y1cc{bottom:151.345333pt;}
.yd0{bottom:151.572800pt;}
.y122{bottom:154.342533pt;}
.y5a{bottom:154.462533pt;}
.y93{bottom:154.595867pt;}
.y80{bottom:154.729200pt;}
.yeb{bottom:154.780000pt;}
.y18a{bottom:159.345333pt;}
.yc0{bottom:160.988533pt;}
.yf{bottom:163.566933pt;}
.y1cb{bottom:164.678667pt;}
.ycf{bottom:165.567467pt;}
.yea{bottom:169.222667pt;}
.y121{bottom:170.342533pt;}
.y59{bottom:170.462533pt;}
.y14f{bottom:170.464533pt;}
.y92{bottom:170.595867pt;}
.y7f{bottom:170.729200pt;}
.y189{bottom:172.678667pt;}
.ybf{bottom:176.988533pt;}
.y1ca{bottom:178.012000pt;}
.ye{bottom:179.566933pt;}
.ye9{bottom:183.665333pt;}
.y188{bottom:186.012000pt;}
.y120{bottom:186.342533pt;}
.y58{bottom:186.462533pt;}
.y14e{bottom:186.464533pt;}
.y91{bottom:186.595867pt;}
.y7e{bottom:186.729200pt;}
.y1c9{bottom:191.345333pt;}
.ybe{bottom:192.988533pt;}
.yd{bottom:195.566933pt;}
.ye8{bottom:198.108000pt;}
.y187{bottom:199.345333pt;}
.y11f{bottom:202.342533pt;}
.y57{bottom:202.462533pt;}
.y14d{bottom:202.464533pt;}
.y90{bottom:202.595867pt;}
.y7d{bottom:202.729200pt;}
.y1c8{bottom:204.678667pt;}
.ybd{bottom:208.988533pt;}
.yc{bottom:211.566933pt;}
.ye7{bottom:212.550667pt;}
.y186{bottom:212.678667pt;}
.y1c7{bottom:218.012000pt;}
.y11e{bottom:218.342533pt;}
.y56{bottom:218.462533pt;}
.y14c{bottom:218.464533pt;}
.y8f{bottom:218.595867pt;}
.y7c{bottom:218.729200pt;}
.ybc{bottom:224.988533pt;}
.y185{bottom:226.012000pt;}
.ye6{bottom:226.993333pt;}
.yb{bottom:227.566933pt;}
.y1c6{bottom:231.345333pt;}
.y11d{bottom:234.342533pt;}
.y55{bottom:234.462533pt;}
.y14b{bottom:234.464533pt;}
.y8e{bottom:234.595867pt;}
.y7b{bottom:234.729200pt;}
.y184{bottom:239.345333pt;}
.ybb{bottom:240.988533pt;}
.ye5{bottom:241.436000pt;}
.ya{bottom:243.566933pt;}
.y1c5{bottom:244.678667pt;}
.y11c{bottom:250.342533pt;}
.y54{bottom:250.462533pt;}
.y14a{bottom:250.464533pt;}
.y8d{bottom:250.595867pt;}
.y183{bottom:252.678667pt;}
.ye4{bottom:255.878667pt;}
.yba{bottom:256.988533pt;}
.y1c4{bottom:258.012000pt;}
.y9{bottom:259.566933pt;}
.y182{bottom:266.012000pt;}
.y149{bottom:266.104533pt;}
.y11b{bottom:266.342533pt;}
.y7a{bottom:266.369200pt;}
.y53{bottom:266.462533pt;}
.y8c{bottom:266.595867pt;}
.ye3{bottom:270.321333pt;}
.y1c3{bottom:271.345333pt;}
.yb9{bottom:272.988533pt;}
.y8{bottom:275.566933pt;}
.y181{bottom:279.345333pt;}
.y11a{bottom:282.342533pt;}
.y52{bottom:282.462533pt;}
.y8b{bottom:282.595867pt;}
.y1c2{bottom:284.678667pt;}
.ye2{bottom:284.764000pt;}
.y7{bottom:291.566933pt;}
.y180{bottom:292.678667pt;}
.y1c1{bottom:298.012000pt;}
.y119{bottom:298.342533pt;}
.y51{bottom:298.462533pt;}
.y148{bottom:298.464533pt;}
.y79{bottom:298.595867pt;}
.ye1{bottom:299.206667pt;}
.yb8{bottom:303.958000pt;}
.y17f{bottom:306.012000pt;}
.y6{bottom:307.566933pt;}
.y1c0{bottom:311.345333pt;}
.ye0{bottom:313.649333pt;}
.y147{bottom:314.104533pt;}
.y118{bottom:314.342533pt;}
.y50{bottom:314.462533pt;}
.y78{bottom:314.595867pt;}
.yb7{bottom:317.830000pt;}
.y17e{bottom:319.345333pt;}
.y12{bottom:323.566933pt;}
.y1bf{bottom:324.678667pt;}
.ydf{bottom:328.092000pt;}
.y117{bottom:330.342533pt;}
.y4f{bottom:330.462533pt;}
.y77{bottom:330.595867pt;}
.yb6{bottom:330.609200pt;}
.y17d{bottom:332.678667pt;}
.y1be{bottom:338.012000pt;}
.y5{bottom:339.206933pt;}
.y11{bottom:339.566933pt;}
.yde{bottom:342.534667pt;}
.y17c{bottom:346.012000pt;}
.yb5{bottom:346.249200pt;}
.y116{bottom:346.342533pt;}
.y4e{bottom:346.462533pt;}
.y146{bottom:346.464533pt;}
.y76{bottom:346.595867pt;}
.y1bd{bottom:351.345333pt;}
.ydd{bottom:356.977333pt;}
.y17b{bottom:359.345333pt;}
.y145{bottom:362.104533pt;}
.yb4{bottom:362.249200pt;}
.y115{bottom:362.342533pt;}
.y4d{bottom:362.462533pt;}
.y75{bottom:362.595867pt;}
.y1bc{bottom:364.678667pt;}
.y17a{bottom:372.678667pt;}
.y1bb{bottom:378.012000pt;}
.y114{bottom:378.342533pt;}
.y4c{bottom:378.462533pt;}
.y74{bottom:378.595867pt;}
.ydc{bottom:384.988000pt;}
.y179{bottom:386.012000pt;}
.y1ba{bottom:391.345333pt;}
.yb3{bottom:394.115867pt;}
.y113{bottom:394.342533pt;}
.y4b{bottom:394.462533pt;}
.y144{bottom:394.464533pt;}
.y73{bottom:394.595867pt;}
.y178{bottom:399.345333pt;}
.y1b9{bottom:404.678667pt;}
.y2a{bottom:406.723733pt;}
.yb2{bottom:410.115867pt;}
.y112{bottom:410.342533pt;}
.y143{bottom:410.464533pt;}
.y72{bottom:410.595867pt;}
.y177{bottom:412.678667pt;}
.ydb{bottom:416.005867pt;}
.y1b8{bottom:418.012000pt;}
.yd8{bottom:424.212800pt;}
.y176{bottom:426.012000pt;}
.y4a{bottom:426.102533pt;}
.y8a{bottom:426.235867pt;}
.y111{bottom:426.342533pt;}
.y142{bottom:426.464533pt;}
.y71{bottom:426.595867pt;}
.y29{bottom:431.030400pt;}
.y1b7{bottom:431.345333pt;}
.yd7{bottom:438.207467pt;}
.y175{bottom:439.345333pt;}
.yb1{bottom:441.995867pt;}
.y110{bottom:442.342533pt;}
.yca{bottom:442.462533pt;}
.y141{bottom:442.464533pt;}
.y70{bottom:442.595867pt;}
.y1b6{bottom:444.678667pt;}
.y28{bottom:447.030400pt;}
.yd6{bottom:452.202133pt;}
.y174{bottom:452.678667pt;}
.yda{bottom:456.013733pt;}
.y49{bottom:457.982533pt;}
.y1b5{bottom:458.012000pt;}
.y10f{bottom:458.342533pt;}
.y89{bottom:458.462533pt;}
.y140{bottom:458.464533pt;}
.y6f{bottom:458.595867pt;}
.y27{bottom:463.030400pt;}
.y173{bottom:466.012000pt;}
.yd5{bottom:466.196800pt;}
.yd9{bottom:470.008400pt;}
.y1b4{bottom:471.345333pt;}
.y10e{bottom:474.342533pt;}
.y88{bottom:474.462533pt;}
.y13f{bottom:474.464533pt;}
.y6e{bottom:474.595867pt;}
.y26{bottom:479.030400pt;}
.y172{bottom:479.345333pt;}
.y1b3{bottom:484.678667pt;}
.y10d{bottom:490.342533pt;}
.y87{bottom:490.462533pt;}
.y13e{bottom:490.464533pt;}
.yb0{bottom:490.475867pt;}
.y6d{bottom:490.595867pt;}
.y171{bottom:492.678667pt;}
.y25{bottom:495.030400pt;}
.y1b2{bottom:498.012000pt;}
.y170{bottom:506.012000pt;}
.y10c{bottom:506.342533pt;}
.y48{bottom:506.462533pt;}
.y13d{bottom:506.464533pt;}
.yaf{bottom:506.475867pt;}
.y6c{bottom:506.595867pt;}
.y24{bottom:511.030400pt;}
.y1b1{bottom:511.345333pt;}
.y16f{bottom:519.345333pt;}
.y10b{bottom:522.342533pt;}
.y47{bottom:522.462533pt;}
.y13c{bottom:522.464533pt;}
.yae{bottom:522.475867pt;}
.y6b{bottom:522.595867pt;}
.y1b0{bottom:524.678667pt;}
.y23{bottom:527.030400pt;}
.y16e{bottom:532.678667pt;}
.y1af{bottom:538.012000pt;}
.y10a{bottom:538.342533pt;}
.y46{bottom:538.462533pt;}
.y13b{bottom:538.464533pt;}
.yad{bottom:538.475867pt;}
.y6a{bottom:538.595867pt;}
.y22{bottom:543.030400pt;}
.y16d{bottom:546.012000pt;}
.y1ae{bottom:551.345333pt;}
.y109{bottom:554.342533pt;}
.y45{bottom:554.462533pt;}
.y13a{bottom:554.464533pt;}
.yac{bottom:554.475867pt;}
.y69{bottom:554.595867pt;}
.y21{bottom:559.030400pt;}
.y16c{bottom:559.345333pt;}
.y1ad{bottom:564.678667pt;}
.y108{bottom:570.342533pt;}
.y44{bottom:570.462533pt;}
.y139{bottom:570.464533pt;}
.yab{bottom:570.475867pt;}
.y68{bottom:570.595867pt;}
.y16b{bottom:572.678667pt;}
.y20{bottom:575.030400pt;}
.y1ac{bottom:578.012000pt;}
.y16a{bottom:586.012000pt;}
.y107{bottom:586.342533pt;}
.y43{bottom:586.462533pt;}
.y138{bottom:586.464533pt;}
.yaa{bottom:586.475867pt;}
.y67{bottom:586.595867pt;}
.y1f{bottom:591.030400pt;}
.y1ab{bottom:591.345333pt;}
.y169{bottom:599.345333pt;}
.y106{bottom:602.342533pt;}
.y42{bottom:602.462533pt;}
.y137{bottom:602.464533pt;}
.ya9{bottom:602.475867pt;}
.y66{bottom:602.595867pt;}
.y1aa{bottom:604.678667pt;}
.y1e{bottom:607.030400pt;}
.y168{bottom:612.678667pt;}
.y1a9{bottom:618.012000pt;}
.y105{bottom:618.342533pt;}
.y41{bottom:618.462533pt;}
.y136{bottom:618.464533pt;}
.ya8{bottom:618.475867pt;}
.y65{bottom:618.595867pt;}
.y1d{bottom:623.030400pt;}
.y167{bottom:626.012000pt;}
.y1a8{bottom:631.345333pt;}
.y135{bottom:634.104533pt;}
.y104{bottom:634.342533pt;}
.y40{bottom:634.462533pt;}
.ya7{bottom:634.475867pt;}
.y64{bottom:634.595867pt;}
.y166{bottom:639.345333pt;}
.y1a7{bottom:644.678667pt;}
.y103{bottom:650.342533pt;}
.y3f{bottom:650.462533pt;}
.ya6{bottom:650.475867pt;}
.y63{bottom:650.595867pt;}
.y165{bottom:652.678667pt;}
.y1a6{bottom:658.012000pt;}
.y1c{bottom:663.170933pt;}
.y164{bottom:666.012000pt;}
.y102{bottom:666.342533pt;}
.y3e{bottom:666.462533pt;}
.y134{bottom:666.464533pt;}
.ya5{bottom:666.475867pt;}
.y62{bottom:666.595867pt;}
.y1a5{bottom:671.345333pt;}
.y1b{bottom:674.238267pt;}
.y163{bottom:679.345333pt;}
.y101{bottom:682.342533pt;}
.y3d{bottom:682.462533pt;}
.y133{bottom:682.464533pt;}
.ya4{bottom:682.475867pt;}
.y61{bottom:682.595867pt;}
.y1a4{bottom:684.678667pt;}
.y1d7{bottom:687.923867pt;}
.y162{bottom:692.678667pt;}
.y1a3{bottom:698.012000pt;}
.y100{bottom:698.342533pt;}
.y3c{bottom:698.462533pt;}
.y132{bottom:698.464533pt;}
.ya3{bottom:698.475867pt;}
.y1a{bottom:702.429867pt;}
.y1d6{bottom:703.923867pt;}
.y161{bottom:706.012000pt;}
.y1a2{bottom:711.345333pt;}
.y60{bottom:714.235867pt;}
.yff{bottom:714.342533pt;}
.y19{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.y131{bottom:714.464533pt;}
.ya2{bottom:714.475867pt;}
.y160{bottom:719.345333pt;}
.y1a1{bottom:724.678667pt;}
.yfe{bottom:730.342533pt;}
.y3a{bottom:730.462533pt;}
.y130{bottom:730.464533pt;}
.ya1{bottom:730.475867pt;}
.y18{bottom:731.252400pt;}
.y15f{bottom:732.678667pt;}
.y1d5{bottom:735.923867pt;}
.y1a0{bottom:738.012000pt;}
.y15e{bottom:746.012000pt;}
.yfd{bottom:746.342533pt;}
.y39{bottom:746.462533pt;}
.y12f{bottom:746.464533pt;}
.ya0{bottom:746.475867pt;}
.y19f{bottom:751.345333pt;}
.y1d4{bottom:751.923867pt;}
.y17{bottom:756.783067pt;}
.y15d{bottom:759.345333pt;}
.yfc{bottom:762.342533pt;}
.y38{bottom:762.462533pt;}
.y12e{bottom:762.464533pt;}
.y19e{bottom:764.678667pt;}
.y1d3{bottom:767.923867pt;}
.y15c{bottom:772.678667pt;}
.y19d{bottom:778.012000pt;}
.y9f{bottom:778.115867pt;}
.yfb{bottom:778.342533pt;}
.y37{bottom:778.462533pt;}
.y12d{bottom:778.464533pt;}
.y15b{bottom:786.012000pt;}
.y19c{bottom:791.345333pt;}
.yfa{bottom:794.342533pt;}
.y36{bottom:794.462533pt;}
.y12c{bottom:794.464533pt;}
.y16{bottom:797.816533pt;}
.y15a{bottom:799.345333pt;}
.y1d2{bottom:799.563867pt;}
.y19b{bottom:804.678667pt;}
.y9e{bottom:809.995867pt;}
.yf9{bottom:810.342533pt;}
.y35{bottom:810.462533pt;}
.y12b{bottom:810.464533pt;}
.y159{bottom:812.678667pt;}
.y19a{bottom:818.012000pt;}
.y158{bottom:826.012000pt;}
.yf8{bottom:826.342533pt;}
.y34{bottom:826.462533pt;}
.y12a{bottom:826.464533pt;}
.y15{bottom:830.226133pt;}
.y199{bottom:831.345333pt;}
.y157{bottom:839.345333pt;}
.y33{bottom:842.462533pt;}
.y129{bottom:842.464533pt;}
.y198{bottom:844.678667pt;}
.y156{bottom:852.678667pt;}
.yf7{bottom:857.982533pt;}
.y197{bottom:858.012000pt;}
.y32{bottom:858.462533pt;}
.y128{bottom:858.464533pt;}
.y9d{bottom:858.475867pt;}
.y14{bottom:862.635733pt;}
.y155{bottom:866.012000pt;}
.y196{bottom:871.345333pt;}
.y31{bottom:874.462533pt;}
.y127{bottom:874.464533pt;}
.y9c{bottom:874.475867pt;}
.y154{bottom:879.345333pt;}
.y195{bottom:884.678667pt;}
.y30{bottom:890.462533pt;}
.y126{bottom:890.464533pt;}
.y9b{bottom:890.475867pt;}
.y153{bottom:892.678667pt;}
.y13{bottom:895.045333pt;}
.y194{bottom:898.012000pt;}
.y2f{bottom:906.462533pt;}
.y9a{bottom:906.475867pt;}
.y193{bottom:911.345333pt;}
.y125{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y99{bottom:922.475867pt;}
.y192{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y86{bottom:1006.594400pt;}
.yce{bottom:1006.597067pt;}
.yf6{bottom:1006.598133pt;}
.y191{bottom:1006.598667pt;}
.yc9{bottom:1006.603200pt;}
.yf1{bottom:1006.662667pt;}
.y2c{bottom:1009.857333pt;}
.y2b{bottom:1022.660000pt;}
.ha{height:17.000371pt;}
.hb{height:29.160156pt;}
.h12{height:29.645833pt;}
.hc{height:31.078125pt;}
.h2{height:33.468750pt;}
.h4{height:35.859375pt;}
.h7{height:37.057292pt;}
.h11{height:37.437500pt;}
.he{height:38.239333pt;}
.hf{height:38.250000pt;}
.h5{height:38.828125pt;}
.h10{height:42.117188pt;}
.h6{height:46.796875pt;}
.hd{height:47.812500pt;}
.h13{height:48.236875pt;}
.h3{height:50.476562pt;}
.h9{height:50.774503pt;}
.h8{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:62.740133pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.818267pt;}
.x26{left:90.708667pt;}
.x7{left:94.488133pt;}
.xb{left:98.271467pt;}
.x6{left:111.491467pt;}
.x4{left:117.170133pt;}
.xc{left:128.644800pt;}
.x22{left:187.904267pt;}
.x3{left:189.223467pt;}
.x1e{left:375.111600pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x11{left:425.221333pt;}
.x5{left:427.090133pt;}
.x27{left:428.980667pt;}
.xe{left:436.538133pt;}
.x17{left:438.368000pt;}
.x16{left:440.328000pt;}
.x1a{left:444.894933pt;}
.x24{left:447.874133pt;}
.x15{left:453.168000pt;}
.x13{left:455.461333pt;}
.x20{left:515.058133pt;}
.x19{left:516.421333pt;}
.x18{left:527.301333pt;}
.x23{left:529.877600pt;}
.x1b{left:534.762933pt;}
.x14{left:537.554667pt;}
.x12{left:544.834667pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x21{left:641.526800pt;}
.xf{left:647.459200pt;}
.x25{left:661.196800pt;}
.x1c{left:666.356800pt;}
}




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