
    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_a394b0c24990414d18b8469a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_e435b692741b059b9e3858c9.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_41ba7e899150133185b7e627.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_9fc7ffbea86f4f168f399474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_68f74e09b1164ef5f8452995.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_962322e84d0f4dd926a99a96.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1a460045c8d8622c28462065.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8456b4223208828b15f290ea.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_4072e5211fe19f4524872422.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_5568e6c123cee21240a1e320.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-21.700800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:22.586400px;}
.v3{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.ls4{letter-spacing:-0.780000px;}
.ls70{letter-spacing:-0.420000px;}
.ls41{letter-spacing:-0.360000px;}
.ls7c{letter-spacing:-0.336000px;}
.ls42{letter-spacing:-0.300000px;}
.ls39{letter-spacing:-0.240000px;}
.ls71{letter-spacing:-0.192000px;}
.ls43{letter-spacing:-0.180000px;}
.ls74{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.120000px;}
.ls73{letter-spacing:-0.096000px;}
.ls5{letter-spacing:-0.060000px;}
.ls72{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005676px;}
.ls47{letter-spacing:0.025800px;}
.ls6c{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.096000px;}
.ls31{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.180000px;}
.ls59{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.240000px;}
.ls61{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.300000px;}
.ls65{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.384000px;}
.ls2c{letter-spacing:0.420000px;}
.ls64{letter-spacing:0.432000px;}
.ls35{letter-spacing:0.480000px;}
.ls62{letter-spacing:0.528000px;}
.ls2e{letter-spacing:0.540000px;}
.ls46{letter-spacing:0.560400px;}
.ls6f{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.600000px;}
.ls6e{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.720000px;}
.ls5d{letter-spacing:0.768000px;}
.ls21{letter-spacing:0.780000px;}
.ls75{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.864000px;}
.ls48{letter-spacing:0.900000px;}
.ls68{letter-spacing:0.912000px;}
.ls37{letter-spacing:0.960000px;}
.ls45{letter-spacing:0.975600px;}
.ls79{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.020000px;}
.ls3b{letter-spacing:1.080000px;}
.ls5c{letter-spacing:1.104000px;}
.ls8{letter-spacing:1.140000px;}
.ls63{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.248000px;}
.ls16{letter-spacing:1.260000px;}
.ls5a{letter-spacing:1.296000px;}
.ls23{letter-spacing:1.320000px;}
.ls5f{letter-spacing:1.344000px;}
.ls10{letter-spacing:1.380000px;}
.ls69{letter-spacing:1.392000px;}
.ls20{letter-spacing:1.440000px;}
.ls4c{letter-spacing:1.500000px;}
.ls3a{letter-spacing:1.560000px;}
.ls78{letter-spacing:1.584000px;}
.ls36{letter-spacing:1.620000px;}
.ls66{letter-spacing:1.632000px;}
.ls1b{letter-spacing:1.680000px;}
.ls18{letter-spacing:1.740000px;}
.ls76{letter-spacing:1.776000px;}
.ls4d{letter-spacing:1.800000px;}
.ls22{letter-spacing:1.860000px;}
.lsf{letter-spacing:1.920000px;}
.ls26{letter-spacing:1.980000px;}
.ls77{letter-spacing:2.016000px;}
.ls15{letter-spacing:2.040000px;}
.ls7b{letter-spacing:2.064000px;}
.ls3e{letter-spacing:2.100000px;}
.ls5e{letter-spacing:2.112000px;}
.ls44{letter-spacing:2.160000px;}
.ls67{letter-spacing:2.208000px;}
.ls38{letter-spacing:2.220000px;}
.ls1c{letter-spacing:2.280000px;}
.ls4b{letter-spacing:2.304000px;}
.ls25{letter-spacing:2.340000px;}
.ls51{letter-spacing:2.400000px;}
.ls6b{letter-spacing:2.448000px;}
.ls34{letter-spacing:2.460000px;}
.ls2b{letter-spacing:2.520000px;}
.lse{letter-spacing:2.580000px;}
.ls9{letter-spacing:2.640000px;}
.ls30{letter-spacing:2.700000px;}
.ls29{letter-spacing:2.760000px;}
.lsc{letter-spacing:2.820000px;}
.ls32{letter-spacing:2.880000px;}
.ls4a{letter-spacing:2.928000px;}
.ls17{letter-spacing:2.940000px;}
.ls5b{letter-spacing:2.976000px;}
.ls2d{letter-spacing:3.060000px;}
.ls24{letter-spacing:3.120000px;}
.lsa{letter-spacing:3.180000px;}
.ls2a{letter-spacing:3.300000px;}
.ls54{letter-spacing:3.360000px;}
.ls1d{letter-spacing:3.420000px;}
.ls4e{letter-spacing:3.660000px;}
.lsb{letter-spacing:3.720000px;}
.ls3d{letter-spacing:3.780000px;}
.ls2f{letter-spacing:3.960000px;}
.ls3c{letter-spacing:4.140000px;}
.ls55{letter-spacing:4.260000px;}
.ls7a{letter-spacing:4.272000px;}
.ls27{letter-spacing:4.320000px;}
.ls40{letter-spacing:4.380000px;}
.ls50{letter-spacing:4.620000px;}
.ls52{letter-spacing:4.680000px;}
.ls53{letter-spacing:4.980000px;}
.ls3f{letter-spacing:5.340000px;}
.ls4f{letter-spacing:5.460000px;}
.ls56{letter-spacing:5.640000px;}
.ls28{letter-spacing:5.700000px;}
.ls58{letter-spacing:6.060000px;}
.ls57{letter-spacing:7.860000px;}
.ls0{letter-spacing:59.533476px;}
.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;}
}
.ws3b{word-spacing:-17.400000px;}
.ws23{word-spacing:-16.680000px;}
.ws3a{word-spacing:-16.560000px;}
.ws3c{word-spacing:-15.480000px;}
.ws5c{word-spacing:-15.420000px;}
.ws2f{word-spacing:-15.120000px;}
.ws81{word-spacing:-13.776000px;}
.ws2{word-spacing:-13.344000px;}
.ws6a{word-spacing:-13.248000px;}
.ws80{word-spacing:-12.720000px;}
.ws7f{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.510000px;}
.ws67{word-spacing:-12.480000px;}
.ws7e{word-spacing:-12.288000px;}
.ws69{word-spacing:-12.192000px;}
.ws68{word-spacing:-12.000000px;}
.ws6b{word-spacing:-11.856000px;}
.ws0{word-spacing:-10.210662px;}
.ws22{word-spacing:-8.745000px;}
.ws52{word-spacing:-6.996000px;}
.ws2c{word-spacing:-5.340000px;}
.ws48{word-spacing:-4.680000px;}
.ws4{word-spacing:-2.886000px;}
.ws83{word-spacing:-2.640000px;}
.ws49{word-spacing:-2.400000px;}
.ws19{word-spacing:-2.220000px;}
.ws75{word-spacing:-2.208000px;}
.ws89{word-spacing:-1.920000px;}
.ws43{word-spacing:-1.560000px;}
.ws42{word-spacing:-1.500000px;}
.ws31{word-spacing:-1.380000px;}
.ws60{word-spacing:-1.320000px;}
.ws7c{word-spacing:-1.296000px;}
.ws2d{word-spacing:-0.960000px;}
.ws4e{word-spacing:-0.864000px;}
.ws82{word-spacing:-0.816000px;}
.ws8a{word-spacing:-0.576000px;}
.ws4a{word-spacing:-0.480000px;}
.ws71{word-spacing:-0.432000px;}
.ws5f{word-spacing:-0.420000px;}
.ws6d{word-spacing:-0.384000px;}
.ws73{word-spacing:-0.336000px;}
.ws7d{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.240000px;}
.ws79{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.060000px;}
.ws78{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws72{word-spacing:0.048000px;}
.ws7b{word-spacing:0.096000px;}
.ws1a{word-spacing:0.120000px;}
.ws1b{word-spacing:0.300000px;}
.ws18{word-spacing:0.360000px;}
.ws6{word-spacing:0.420000px;}
.ws36{word-spacing:0.480000px;}
.wsb{word-spacing:0.540000px;}
.ws74{word-spacing:0.576000px;}
.ws40{word-spacing:0.600000px;}
.ws35{word-spacing:0.660000px;}
.ws87{word-spacing:0.672000px;}
.ws46{word-spacing:0.720000px;}
.ws15{word-spacing:0.780000px;}
.ws20{word-spacing:0.840000px;}
.ws7{word-spacing:0.960000px;}
.wsf{word-spacing:1.020000px;}
.ws86{word-spacing:1.056000px;}
.ws61{word-spacing:1.140000px;}
.ws64{word-spacing:1.200000px;}
.ws47{word-spacing:1.260000px;}
.ws4d{word-spacing:1.320000px;}
.ws28{word-spacing:1.380000px;}
.ws5d{word-spacing:1.440000px;}
.wsd{word-spacing:1.560000px;}
.ws1c{word-spacing:1.620000px;}
.ws2b{word-spacing:1.680000px;}
.ws62{word-spacing:1.740000px;}
.ws30{word-spacing:1.800000px;}
.ws26{word-spacing:1.920000px;}
.ws76{word-spacing:1.968000px;}
.ws10{word-spacing:1.980000px;}
.ws12{word-spacing:2.040000px;}
.ws29{word-spacing:2.100000px;}
.ws6e{word-spacing:2.160000px;}
.ws70{word-spacing:2.256000px;}
.ws34{word-spacing:2.280000px;}
.ws63{word-spacing:2.340000px;}
.ws7a{word-spacing:2.352000px;}
.ws4b{word-spacing:2.400000px;}
.ws1e{word-spacing:2.460000px;}
.ws51{word-spacing:2.496000px;}
.ws11{word-spacing:2.520000px;}
.ws77{word-spacing:2.592000px;}
.ws65{word-spacing:2.640000px;}
.ws1d{word-spacing:2.700000px;}
.ws85{word-spacing:2.784000px;}
.ws16{word-spacing:2.820000px;}
.ws25{word-spacing:2.880000px;}
.ws2a{word-spacing:2.940000px;}
.wse{word-spacing:3.000000px;}
.ws84{word-spacing:3.024000px;}
.ws27{word-spacing:3.060000px;}
.ws57{word-spacing:3.180000px;}
.ws41{word-spacing:3.240000px;}
.ws44{word-spacing:3.360000px;}
.ws24{word-spacing:3.420000px;}
.ws56{word-spacing:3.480000px;}
.wsc{word-spacing:3.540000px;}
.ws4f{word-spacing:3.600000px;}
.ws6f{word-spacing:3.696000px;}
.ws1f{word-spacing:3.720000px;}
.ws39{word-spacing:3.744000px;}
.ws58{word-spacing:3.780000px;}
.ws88{word-spacing:3.792000px;}
.ws59{word-spacing:3.840000px;}
.ws2e{word-spacing:3.900000px;}
.ws38{word-spacing:3.936000px;}
.ws13{word-spacing:3.960000px;}
.ws37{word-spacing:3.984000px;}
.ws50{word-spacing:4.080000px;}
.ws5b{word-spacing:4.140000px;}
.wsa{word-spacing:4.200000px;}
.ws9{word-spacing:4.380000px;}
.ws66{word-spacing:4.440000px;}
.ws45{word-spacing:4.500000px;}
.ws5e{word-spacing:4.560000px;}
.ws17{word-spacing:4.740000px;}
.ws5a{word-spacing:4.800000px;}
.ws4c{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws5{word-spacing:4.980000px;}
.ws6c{word-spacing:5.520000px;}
.ws33{word-spacing:7.860000px;}
.ws3f{word-spacing:206.736000px;}
.ws54{word-spacing:209.136000px;}
.ws3d{word-spacing:228.288000px;}
.ws3e{word-spacing:244.176000px;}
.ws55{word-spacing:249.168000px;}
.ws53{word-spacing:270.768000px;}
._9{margin-left:-2898.366000px;}
._48{margin-left:-2897.310000px;}
._a{margin-left:-2874.558000px;}
._2{margin-left:-9.368400px;}
._b{margin-left:-7.680000px;}
._5{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._47{margin-left:-4.338000px;}
._3{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._6{width:1.110000px;}
._2d{width:2.130000px;}
._8{width:3.300000px;}
._7{width:5.100000px;}
._d{width:6.510000px;}
._e{width:8.160000px;}
._c{width:10.380000px;}
._43{width:177.626400px;}
._1a{width:208.176000px;}
._19{width:218.736000px;}
._32{width:221.136000px;}
._1d{width:230.736000px;}
._14{width:232.176000px;}
._13{width:242.736000px;}
._20{width:244.512000px;}
._1e{width:256.176000px;}
._22{width:265.824000px;}
._3e{width:285.168000px;}
._11{width:286.944000px;}
._31{width:297.168000px;}
._f{width:300.144000px;}
._10{width:307.824000px;}
._15{width:315.552000px;}
._2f{width:320.976000px;}
._2e{width:324.816000px;}
._29{width:336.000000px;}
._23{width:337.398000px;}
._33{width:355.680000px;}
._46{width:358.224000px;}
._3a{width:374.298000px;}
._37{width:375.408000px;}
._16{width:421.200000px;}
._44{width:433.056000px;}
._45{width:436.944000px;}
._36{width:452.496000px;}
._34{width:455.184000px;}
._24{width:460.272000px;}
._41{width:481.302000px;}
._38{width:494.256000px;}
._39{width:523.974000px;}
._18{width:563.040000px;}
._40{width:584.406000px;}
._3f{width:586.080000px;}
._3d{width:588.720000px;}
._2b{width:591.846000px;}
._30{width:618.960000px;}
._1b{width:634.518000px;}
._42{width:648.240000px;}
._3c{width:682.896000px;}
._35{width:688.224000px;}
._3b{width:691.824000px;}
._28{width:694.950000px;}
._27{width:696.624000px;}
._26{width:699.264000px;}
._2a{width:702.918000px;}
._12{width:729.504000px;}
._2c{width:746.784000px;}
._25{width:793.440000px;}
._17{width:798.768000px;}
._1f{width:802.368000px;}
._1c{width:806.352000px;}
._21{width:810.336000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2b{bottom:47.777250px;}
.y177{bottom:80.121900px;}
.y1b8{bottom:80.263500px;}
.y148{bottom:83.642100px;}
.ye2{bottom:83.661150px;}
.y60{bottom:83.772600px;}
.yd8{bottom:83.777100px;}
.y83{bottom:84.003450px;}
.ya6{bottom:84.062100px;}
.y14d{bottom:84.205800px;}
.y28{bottom:88.023000px;}
.y105{bottom:93.001500px;}
.y11d{bottom:93.220200px;}
.y176{bottom:95.121900px;}
.y1b7{bottom:95.263500px;}
.ye1{bottom:99.405150px;}
.y147{bottom:101.642100px;}
.y5f{bottom:101.772600px;}
.yd7{bottom:101.777100px;}
.ya5{bottom:102.062100px;}
.y27{bottom:103.023000px;}
.y104{bottom:109.249500px;}
.y11c{bottom:109.468200px;}
.y14c{bottom:109.717800px;}
.y175{bottom:110.121900px;}
.y1b6{bottom:110.263500px;}
.ye0{bottom:115.149150px;}
.y146{bottom:119.642100px;}
.y5e{bottom:119.772600px;}
.yd6{bottom:119.777100px;}
.ya4{bottom:120.062100px;}
.y174{bottom:125.121900px;}
.y1b5{bottom:125.263500px;}
.y103{bottom:125.497500px;}
.y11b{bottom:125.716200px;}
.y14b{bottom:125.965800px;}
.y145{bottom:137.642100px;}
.y5d{bottom:137.772600px;}
.yd5{bottom:137.777100px;}
.ya3{bottom:138.062100px;}
.y173{bottom:140.121900px;}
.y1b4{bottom:140.263500px;}
.y102{bottom:141.745500px;}
.y11a{bottom:141.964200px;}
.y172{bottom:155.121900px;}
.y1b3{bottom:155.263500px;}
.y144{bottom:155.642100px;}
.y5c{bottom:155.772600px;}
.yd4{bottom:155.777100px;}
.ya2{bottom:156.062100px;}
.y14a{bottom:157.477650px;}
.y101{bottom:157.993500px;}
.y119{bottom:158.212200px;}
.y171{bottom:170.121900px;}
.y1b2{bottom:170.263500px;}
.y143{bottom:173.642100px;}
.y5b{bottom:173.772600px;}
.yd3{bottom:173.777100px;}
.y100{bottom:174.241500px;}
.y118{bottom:174.460200px;}
.y170{bottom:185.121900px;}
.y1b1{bottom:185.263500px;}
.yff{bottom:190.489500px;}
.y117{bottom:190.708200px;}
.y142{bottom:191.642100px;}
.ya1{bottom:191.657100px;}
.y5a{bottom:191.772600px;}
.yd2{bottom:191.777100px;}
.y149{bottom:192.392100px;}
.y16f{bottom:200.121900px;}
.y1b0{bottom:200.263500px;}
.yfe{bottom:206.737500px;}
.y116{bottom:206.956200px;}
.y141{bottom:209.642100px;}
.y59{bottom:209.772600px;}
.yd1{bottom:209.777100px;}
.y16e{bottom:215.121900px;}
.y1af{bottom:215.263500px;}
.yfd{bottom:222.985500px;}
.y115{bottom:223.204200px;}
.y140{bottom:227.642100px;}
.y58{bottom:227.772600px;}
.yd0{bottom:227.777100px;}
.ya0{bottom:227.912100px;}
.y16d{bottom:230.121900px;}
.y1ae{bottom:230.263500px;}
.yfc{bottom:239.233500px;}
.y114{bottom:239.452200px;}
.y16c{bottom:245.121900px;}
.y13f{bottom:245.237100px;}
.y1ad{bottom:245.263500px;}
.y57{bottom:245.772600px;}
.ycf{bottom:245.777100px;}
.y9f{bottom:245.912100px;}
.y26{bottom:251.617950px;}
.yfb{bottom:255.481500px;}
.y113{bottom:255.700200px;}
.y16b{bottom:260.121900px;}
.y1ac{bottom:260.263500px;}
.y56{bottom:263.772600px;}
.yce{bottom:263.777100px;}
.y9e{bottom:263.912100px;}
.y25{bottom:269.627250px;}
.yfa{bottom:271.729500px;}
.y112{bottom:271.948200px;}
.y16a{bottom:275.121900px;}
.y1ab{bottom:275.263500px;}
.y13e{bottom:281.642100px;}
.y55{bottom:281.772600px;}
.ycd{bottom:281.777100px;}
.y9d{bottom:281.912100px;}
.yf9{bottom:287.977500px;}
.y111{bottom:288.196200px;}
.y169{bottom:290.121900px;}
.y1aa{bottom:290.263500px;}
.y24{bottom:296.972250px;}
.y13d{bottom:299.642100px;}
.y54{bottom:299.772600px;}
.ycc{bottom:299.777100px;}
.y9c{bottom:299.912100px;}
.y12d{bottom:299.920350px;}
.yf8{bottom:304.225500px;}
.y110{bottom:304.444200px;}
.y168{bottom:305.121900px;}
.y1a9{bottom:305.263500px;}
.y23{bottom:314.972250px;}
.y13c{bottom:317.642100px;}
.y53{bottom:317.772600px;}
.ycb{bottom:317.777100px;}
.y9b{bottom:317.912100px;}
.y12c{bottom:317.920350px;}
.y167{bottom:320.121900px;}
.y1a8{bottom:320.263500px;}
.yf7{bottom:320.473500px;}
.y10f{bottom:320.692200px;}
.y1ed{bottom:332.914350px;}
.y22{bottom:332.972250px;}
.y166{bottom:335.121900px;}
.y1a7{bottom:335.263500px;}
.y13b{bottom:335.642100px;}
.y52{bottom:335.772600px;}
.yca{bottom:335.777100px;}
.y9a{bottom:335.912100px;}
.y12b{bottom:335.920350px;}
.yf6{bottom:336.721500px;}
.y10e{bottom:336.940200px;}
.y165{bottom:350.121900px;}
.y1a6{bottom:350.263500px;}
.y1ec{bottom:350.914350px;}
.y21{bottom:350.972250px;}
.y13a{bottom:353.642100px;}
.y51{bottom:353.772600px;}
.yc9{bottom:353.777100px;}
.y99{bottom:353.912100px;}
.y12a{bottom:353.920350px;}
.y10d{bottom:362.068200px;}
.y164{bottom:365.121900px;}
.y1a5{bottom:365.263500px;}
.yf5{bottom:368.233500px;}
.y20{bottom:368.972250px;}
.y139{bottom:371.642100px;}
.y50{bottom:371.772600px;}
.yc8{bottom:371.777100px;}
.y98{bottom:371.912100px;}
.y129{bottom:371.920350px;}
.y163{bottom:380.121900px;}
.y1a4{bottom:380.263500px;}
.y1eb{bottom:386.914350px;}
.y1f{bottom:386.972250px;}
.y138{bottom:389.642100px;}
.y4f{bottom:389.772600px;}
.yc7{bottom:389.777100px;}
.y97{bottom:389.912100px;}
.y128{bottom:389.920350px;}
.y162{bottom:395.121900px;}
.y1a3{bottom:395.263500px;}
.y10c{bottom:396.963300px;}
.yf4{bottom:403.135350px;}
.y1ea{bottom:404.914350px;}
.y1e{bottom:404.972250px;}
.y137{bottom:407.642100px;}
.y4e{bottom:407.772600px;}
.y96{bottom:407.912100px;}
.y127{bottom:407.920350px;}
.y161{bottom:410.121900px;}
.y1a2{bottom:410.263500px;}
.y10b{bottom:416.463300px;}
.yf3{bottom:422.635350px;}
.y1e9{bottom:422.914350px;}
.y1d{bottom:422.972250px;}
.y160{bottom:425.121900px;}
.y1a1{bottom:425.263500px;}
.y64{bottom:425.367600px;}
.yc6{bottom:425.372100px;}
.y136{bottom:425.642100px;}
.y4d{bottom:425.772600px;}
.y95{bottom:425.912100px;}
.y126{bottom:425.920350px;}
.y10a{bottom:435.963300px;}
.y15f{bottom:440.121900px;}
.y1a0{bottom:440.263500px;}
.y1e8{bottom:440.914350px;}
.y1c{bottom:440.972250px;}
.yf2{bottom:442.135350px;}
.y135{bottom:443.642100px;}
.y4c{bottom:443.772600px;}
.y94{bottom:443.912100px;}
.y125{bottom:443.920350px;}
.y15e{bottom:455.121900px;}
.y19f{bottom:455.263500px;}
.y109{bottom:455.463300px;}
.y1b{bottom:458.972250px;}
.y63{bottom:461.232600px;}
.yc5{bottom:461.237100px;}
.yf1{bottom:461.635350px;}
.y134{bottom:461.642100px;}
.y4b{bottom:461.772600px;}
.y93{bottom:461.912100px;}
.y124{bottom:461.920350px;}
.y15d{bottom:470.121900px;}
.y19e{bottom:470.263500px;}
.y1e7{bottom:476.914350px;}
.y1a{bottom:476.972250px;}
.y133{bottom:479.642100px;}
.y4a{bottom:479.772600px;}
.y92{bottom:479.912100px;}
.y123{bottom:479.920350px;}
.y15c{bottom:485.121900px;}
.y19d{bottom:485.263500px;}
.y1e6{bottom:494.914350px;}
.y19{bottom:494.972250px;}
.y132{bottom:497.642100px;}
.y49{bottom:497.772600px;}
.y91{bottom:497.912100px;}
.y122{bottom:497.920350px;}
.y15b{bottom:500.121900px;}
.y1de{bottom:500.263500px;}
.y19c{bottom:500.265900px;}
.y108{bottom:500.733750px;}
.ydf{bottom:505.669050px;}
.y1e5{bottom:512.914350px;}
.y18{bottom:512.972250px;}
.y15a{bottom:515.121900px;}
.y1dd{bottom:515.263500px;}
.y19b{bottom:515.265900px;}
.y131{bottom:515.642100px;}
.yed{bottom:515.770350px;}
.y48{bottom:515.772600px;}
.yc4{bottom:515.777100px;}
.y90{bottom:515.912100px;}
.y121{bottom:515.920350px;}
.y107{bottom:516.477750px;}
.yde{bottom:521.413050px;}
.y159{bottom:530.121900px;}
.y1dc{bottom:530.263500px;}
.y19a{bottom:530.265900px;}
.y1e4{bottom:530.914350px;}
.y17{bottom:530.972250px;}
.y130{bottom:533.642100px;}
.yec{bottom:533.770350px;}
.y47{bottom:533.772600px;}
.yc3{bottom:533.777100px;}
.y8f{bottom:533.912100px;}
.y120{bottom:533.920350px;}
.ydd{bottom:537.157050px;}
.y158{bottom:545.121900px;}
.y1db{bottom:545.263500px;}
.y199{bottom:545.265900px;}
.y16{bottom:548.972250px;}
.y12f{bottom:551.642100px;}
.yeb{bottom:551.770350px;}
.y46{bottom:551.772600px;}
.yc2{bottom:551.777100px;}
.y8e{bottom:551.912100px;}
.y11f{bottom:551.920350px;}
.y157{bottom:560.121900px;}
.y1da{bottom:560.263500px;}
.y198{bottom:560.265900px;}
.y1e3{bottom:566.914350px;}
.y15{bottom:566.972250px;}
.yea{bottom:569.770350px;}
.y45{bottom:569.772600px;}
.yc1{bottom:569.777100px;}
.ydc{bottom:569.912100px;}
.y8d{bottom:569.920350px;}
.y156{bottom:575.121900px;}
.y1d9{bottom:575.263500px;}
.y197{bottom:575.265900px;}
.y1e2{bottom:584.914350px;}
.y14{bottom:584.972250px;}
.y12e{bottom:587.237100px;}
.yf0{bottom:587.365350px;}
.ye9{bottom:587.770350px;}
.y44{bottom:587.772600px;}
.yc0{bottom:587.777100px;}
.ydb{bottom:587.912100px;}
.y8c{bottom:587.920350px;}
.y155{bottom:590.121900px;}
.y1d8{bottom:590.263500px;}
.y196{bottom:590.265900px;}
.y13{bottom:602.972250px;}
.y1d7{bottom:605.263500px;}
.y195{bottom:605.265900px;}
.yef{bottom:605.365350px;}
.ye8{bottom:605.770350px;}
.y43{bottom:605.772600px;}
.ybf{bottom:605.777100px;}
.yda{bottom:605.912100px;}
.y8b{bottom:605.920350px;}
.y1d6{bottom:620.263500px;}
.y194{bottom:620.265900px;}
.y1e1{bottom:620.914350px;}
.y12{bottom:620.972250px;}
.y154{bottom:623.230350px;}
.ye7{bottom:623.770350px;}
.y42{bottom:623.772600px;}
.ybe{bottom:623.777100px;}
.y8a{bottom:623.920350px;}
.y1d5{bottom:635.263500px;}
.y193{bottom:635.265900px;}
.y1e0{bottom:638.914350px;}
.y11{bottom:638.972250px;}
.yee{bottom:641.230350px;}
.ye6{bottom:641.770350px;}
.y41{bottom:641.772600px;}
.ybd{bottom:641.777100px;}
.y89{bottom:641.920350px;}
.y1d4{bottom:650.263500px;}
.y192{bottom:650.265900px;}
.y10{bottom:656.972250px;}
.yd9{bottom:659.515350px;}
.ye5{bottom:659.770350px;}
.y40{bottom:659.772600px;}
.ybc{bottom:659.777100px;}
.y88{bottom:659.920350px;}
.y1d3{bottom:665.263500px;}
.y191{bottom:665.265900px;}
.y1df{bottom:674.509350px;}
.yf{bottom:674.972250px;}
.ye4{bottom:677.770350px;}
.y3f{bottom:677.772600px;}
.ybb{bottom:677.777100px;}
.y87{bottom:677.920350px;}
.y1d2{bottom:680.263500px;}
.y190{bottom:680.265900px;}
.y1d1{bottom:695.263500px;}
.y18f{bottom:695.265900px;}
.y153{bottom:695.365350px;}
.y79{bottom:695.770350px;}
.y3e{bottom:695.772600px;}
.yba{bottom:695.777100px;}
.y82{bottom:695.920350px;}
.y1d0{bottom:710.263500px;}
.y18e{bottom:710.265900px;}
.y78{bottom:713.770350px;}
.y3d{bottom:713.772600px;}
.yb9{bottom:713.777100px;}
.y81{bottom:713.920350px;}
.ye{bottom:720.130350px;}
.y1cf{bottom:725.263500px;}
.y18d{bottom:725.265900px;}
.y152{bottom:731.365350px;}
.y77{bottom:731.770350px;}
.y3c{bottom:731.772600px;}
.yb8{bottom:731.777100px;}
.y80{bottom:731.920350px;}
.yd{bottom:732.581100px;}
.y1ce{bottom:740.263500px;}
.y18c{bottom:740.265900px;}
.y76{bottom:749.770350px;}
.y3b{bottom:749.772600px;}
.yb7{bottom:749.777100px;}
.y7f{bottom:749.920350px;}
.y1cd{bottom:755.263500px;}
.y18b{bottom:755.265900px;}
.yc{bottom:764.296650px;}
.y75{bottom:767.770350px;}
.y3a{bottom:767.772600px;}
.yb6{bottom:767.777100px;}
.y7e{bottom:767.920350px;}
.y1cc{bottom:770.263500px;}
.y18a{bottom:770.265900px;}
.yb{bottom:783.221850px;}
.y1cb{bottom:785.263500px;}
.y189{bottom:785.265900px;}
.y74{bottom:785.770350px;}
.y39{bottom:785.772600px;}
.yb5{bottom:785.777100px;}
.y7d{bottom:785.920350px;}
.ya{bottom:796.721850px;}
.y1ca{bottom:800.263500px;}
.y188{bottom:800.265900px;}
.y151{bottom:803.365350px;}
.y73{bottom:803.770350px;}
.y38{bottom:803.772600px;}
.yb4{bottom:803.777100px;}
.y7c{bottom:803.920350px;}
.y9{bottom:804.796650px;}
.y1c9{bottom:815.263500px;}
.y187{bottom:815.265900px;}
.y72{bottom:821.770350px;}
.y37{bottom:821.772600px;}
.yb3{bottom:821.777100px;}
.y86{bottom:821.920350px;}
.y8{bottom:823.721850px;}
.y1c8{bottom:830.263500px;}
.y186{bottom:830.265900px;}
.y7b{bottom:839.515350px;}
.y71{bottom:839.770350px;}
.y36{bottom:839.772600px;}
.yb2{bottom:839.777100px;}
.y1c7{bottom:845.263500px;}
.y185{bottom:845.265900px;}
.y7{bottom:852.444000px;}
.y150{bottom:857.365350px;}
.y7a{bottom:857.515350px;}
.y70{bottom:857.770350px;}
.y35{bottom:857.772600px;}
.yb1{bottom:857.777100px;}
.y1c6{bottom:860.263500px;}
.y184{bottom:860.265900px;}
.y1c5{bottom:875.263500px;}
.y183{bottom:875.265900px;}
.y85{bottom:875.515350px;}
.y6f{bottom:875.770350px;}
.y34{bottom:875.772600px;}
.yb0{bottom:875.777100px;}
.y1c4{bottom:890.263500px;}
.y182{bottom:890.265900px;}
.y6e{bottom:893.770350px;}
.y33{bottom:893.772600px;}
.yaf{bottom:893.777100px;}
.y6{bottom:898.606650px;}
.y1c3{bottom:905.263500px;}
.y181{bottom:905.265900px;}
.y6d{bottom:911.770350px;}
.y32{bottom:911.772600px;}
.yae{bottom:911.777100px;}
.y1c2{bottom:920.263500px;}
.y180{bottom:920.265900px;}
.y6c{bottom:929.770350px;}
.y31{bottom:929.772600px;}
.yad{bottom:929.777100px;}
.y5{bottom:935.067450px;}
.y1c1{bottom:935.263500px;}
.y17f{bottom:935.265900px;}
.y6b{bottom:947.770350px;}
.y30{bottom:947.772600px;}
.yac{bottom:947.777100px;}
.y1c0{bottom:950.263500px;}
.y17e{bottom:950.265900px;}
.y1bf{bottom:965.263500px;}
.y17d{bottom:965.265900px;}
.y6a{bottom:965.770350px;}
.y2f{bottom:965.772600px;}
.yab{bottom:965.777100px;}
.y4{bottom:971.528250px;}
.y1be{bottom:980.263500px;}
.y17c{bottom:980.265900px;}
.y69{bottom:983.770350px;}
.y2e{bottom:983.772600px;}
.yaa{bottom:983.777100px;}
.y1bd{bottom:995.263500px;}
.y17b{bottom:995.265900px;}
.y14f{bottom:1001.365350px;}
.y68{bottom:1001.770350px;}
.y2d{bottom:1001.772600px;}
.ya9{bottom:1001.777100px;}
.y3{bottom:1007.989050px;}
.y1bc{bottom:1010.263500px;}
.y17a{bottom:1010.265900px;}
.y67{bottom:1019.770350px;}
.y62{bottom:1019.772600px;}
.ya8{bottom:1019.777100px;}
.y1bb{bottom:1025.263500px;}
.y179{bottom:1025.265900px;}
.y2c{bottom:1037.367600px;}
.y66{bottom:1037.770350px;}
.y61{bottom:1037.772600px;}
.ya7{bottom:1037.777100px;}
.y1ba{bottom:1040.263500px;}
.y178{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y14e{bottom:1132.417800px;}
.y65{bottom:1132.418700px;}
.y84{bottom:1132.419450px;}
.y1b9{bottom:1132.423500px;}
.ye3{bottom:1132.425150px;}
.y106{bottom:1132.477500px;}
.y11e{bottom:1132.480200px;}
.y2a{bottom:1136.092500px;}
.y29{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hb{height:32.783203px;}
.h7{height:32.805176px;}
.h13{height:33.328125px;}
.h10{height:33.351562px;}
.hd{height:34.968750px;}
.hc{height:34.992188px;}
.hf{height:41.660156px;}
.he{height:41.689453px;}
.h14{height:42.030361px;}
.h15{height:42.054361px;}
.ha{height:43.681641px;}
.h9{height:43.710938px;}
.h11{height:52.534951px;}
.h12{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x16{left:78.672600px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x19{left:99.921150px;}
.x1b{left:102.047400px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x1e{left:123.307350px;}
.x3{left:125.427900px;}
.xf{left:131.815350px;}
.x5{left:191.338500px;}
.x1a{left:194.270400px;}
.x18{left:237.263700px;}
.x17{left:285.718800px;}
.x15{left:313.356600px;}
.x7{left:455.041500px;}
.xa{left:457.088550px;}
.x10{left:478.345350px;}
.x1c{left:482.603400px;}
.xb{left:491.108550px;}
.x1f{left:503.863350px;}
.x11{left:512.365350px;}
.xc{left:525.278550px;}
.x14{left:579.410400px;}
.x13{left:591.648600px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:722.622450px;}
.xd{left:729.282150px;}
.x20{left:744.758850px;}
.x12{left:750.547350px;}
@media print{
.v2{vertical-align:-19.289600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:20.076800pt;}
.v3{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls70{letter-spacing:-0.373333pt;}
.ls41{letter-spacing:-0.320000pt;}
.ls7c{letter-spacing:-0.298667pt;}
.ls42{letter-spacing:-0.266667pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls71{letter-spacing:-0.170667pt;}
.ls43{letter-spacing:-0.160000pt;}
.ls74{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.106667pt;}
.ls73{letter-spacing:-0.085333pt;}
.ls5{letter-spacing:-0.053333pt;}
.ls72{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.005045pt;}
.ls47{letter-spacing:0.022933pt;}
.ls6c{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.085333pt;}
.ls31{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.160000pt;}
.ls59{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls61{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls65{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.341333pt;}
.ls2c{letter-spacing:0.373333pt;}
.ls64{letter-spacing:0.384000pt;}
.ls35{letter-spacing:0.426667pt;}
.ls62{letter-spacing:0.469333pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls46{letter-spacing:0.498133pt;}
.ls6f{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls6e{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.640000pt;}
.ls5d{letter-spacing:0.682667pt;}
.ls21{letter-spacing:0.693333pt;}
.ls75{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.768000pt;}
.ls48{letter-spacing:0.800000pt;}
.ls68{letter-spacing:0.810667pt;}
.ls37{letter-spacing:0.853333pt;}
.ls45{letter-spacing:0.867200pt;}
.ls79{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls5c{letter-spacing:0.981333pt;}
.ls8{letter-spacing:1.013333pt;}
.ls63{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.109333pt;}
.ls16{letter-spacing:1.120000pt;}
.ls5a{letter-spacing:1.152000pt;}
.ls23{letter-spacing:1.173333pt;}
.ls5f{letter-spacing:1.194667pt;}
.ls10{letter-spacing:1.226667pt;}
.ls69{letter-spacing:1.237333pt;}
.ls20{letter-spacing:1.280000pt;}
.ls4c{letter-spacing:1.333333pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls78{letter-spacing:1.408000pt;}
.ls36{letter-spacing:1.440000pt;}
.ls66{letter-spacing:1.450667pt;}
.ls1b{letter-spacing:1.493333pt;}
.ls18{letter-spacing:1.546667pt;}
.ls76{letter-spacing:1.578667pt;}
.ls4d{letter-spacing:1.600000pt;}
.ls22{letter-spacing:1.653333pt;}
.lsf{letter-spacing:1.706667pt;}
.ls26{letter-spacing:1.760000pt;}
.ls77{letter-spacing:1.792000pt;}
.ls15{letter-spacing:1.813333pt;}
.ls7b{letter-spacing:1.834667pt;}
.ls3e{letter-spacing:1.866667pt;}
.ls5e{letter-spacing:1.877333pt;}
.ls44{letter-spacing:1.920000pt;}
.ls67{letter-spacing:1.962667pt;}
.ls38{letter-spacing:1.973333pt;}
.ls1c{letter-spacing:2.026667pt;}
.ls4b{letter-spacing:2.048000pt;}
.ls25{letter-spacing:2.080000pt;}
.ls51{letter-spacing:2.133333pt;}
.ls6b{letter-spacing:2.176000pt;}
.ls34{letter-spacing:2.186667pt;}
.ls2b{letter-spacing:2.240000pt;}
.lse{letter-spacing:2.293333pt;}
.ls9{letter-spacing:2.346667pt;}
.ls30{letter-spacing:2.400000pt;}
.ls29{letter-spacing:2.453333pt;}
.lsc{letter-spacing:2.506667pt;}
.ls32{letter-spacing:2.560000pt;}
.ls4a{letter-spacing:2.602667pt;}
.ls17{letter-spacing:2.613333pt;}
.ls5b{letter-spacing:2.645333pt;}
.ls2d{letter-spacing:2.720000pt;}
.ls24{letter-spacing:2.773333pt;}
.lsa{letter-spacing:2.826667pt;}
.ls2a{letter-spacing:2.933333pt;}
.ls54{letter-spacing:2.986667pt;}
.ls1d{letter-spacing:3.040000pt;}
.ls4e{letter-spacing:3.253333pt;}
.lsb{letter-spacing:3.306667pt;}
.ls3d{letter-spacing:3.360000pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls3c{letter-spacing:3.680000pt;}
.ls55{letter-spacing:3.786667pt;}
.ls7a{letter-spacing:3.797333pt;}
.ls27{letter-spacing:3.840000pt;}
.ls40{letter-spacing:3.893333pt;}
.ls50{letter-spacing:4.106667pt;}
.ls52{letter-spacing:4.160000pt;}
.ls53{letter-spacing:4.426667pt;}
.ls3f{letter-spacing:4.746667pt;}
.ls4f{letter-spacing:4.853333pt;}
.ls56{letter-spacing:5.013333pt;}
.ls28{letter-spacing:5.066667pt;}
.ls58{letter-spacing:5.386667pt;}
.ls57{letter-spacing:6.986667pt;}
.ls0{letter-spacing:52.918645pt;}
.ws3b{word-spacing:-15.466667pt;}
.ws23{word-spacing:-14.826667pt;}
.ws3a{word-spacing:-14.720000pt;}
.ws3c{word-spacing:-13.760000pt;}
.ws5c{word-spacing:-13.706667pt;}
.ws2f{word-spacing:-13.440000pt;}
.ws81{word-spacing:-12.245333pt;}
.ws2{word-spacing:-11.861333pt;}
.ws6a{word-spacing:-11.776000pt;}
.ws80{word-spacing:-11.306667pt;}
.ws7f{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.120000pt;}
.ws67{word-spacing:-11.093333pt;}
.ws7e{word-spacing:-10.922667pt;}
.ws69{word-spacing:-10.837333pt;}
.ws68{word-spacing:-10.666667pt;}
.ws6b{word-spacing:-10.538667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws22{word-spacing:-7.773333pt;}
.ws52{word-spacing:-6.218667pt;}
.ws2c{word-spacing:-4.746667pt;}
.ws48{word-spacing:-4.160000pt;}
.ws4{word-spacing:-2.565333pt;}
.ws83{word-spacing:-2.346667pt;}
.ws49{word-spacing:-2.133333pt;}
.ws19{word-spacing:-1.973333pt;}
.ws75{word-spacing:-1.962667pt;}
.ws89{word-spacing:-1.706667pt;}
.ws43{word-spacing:-1.386667pt;}
.ws42{word-spacing:-1.333333pt;}
.ws31{word-spacing:-1.226667pt;}
.ws60{word-spacing:-1.173333pt;}
.ws7c{word-spacing:-1.152000pt;}
.ws2d{word-spacing:-0.853333pt;}
.ws4e{word-spacing:-0.768000pt;}
.ws82{word-spacing:-0.725333pt;}
.ws8a{word-spacing:-0.512000pt;}
.ws4a{word-spacing:-0.426667pt;}
.ws71{word-spacing:-0.384000pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws6d{word-spacing:-0.341333pt;}
.ws73{word-spacing:-0.298667pt;}
.ws7d{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.213333pt;}
.ws79{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.053333pt;}
.ws78{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws72{word-spacing:0.042667pt;}
.ws7b{word-spacing:0.085333pt;}
.ws1a{word-spacing:0.106667pt;}
.ws1b{word-spacing:0.266667pt;}
.ws18{word-spacing:0.320000pt;}
.ws6{word-spacing:0.373333pt;}
.ws36{word-spacing:0.426667pt;}
.wsb{word-spacing:0.480000pt;}
.ws74{word-spacing:0.512000pt;}
.ws40{word-spacing:0.533333pt;}
.ws35{word-spacing:0.586667pt;}
.ws87{word-spacing:0.597333pt;}
.ws46{word-spacing:0.640000pt;}
.ws15{word-spacing:0.693333pt;}
.ws20{word-spacing:0.746667pt;}
.ws7{word-spacing:0.853333pt;}
.wsf{word-spacing:0.906667pt;}
.ws86{word-spacing:0.938667pt;}
.ws61{word-spacing:1.013333pt;}
.ws64{word-spacing:1.066667pt;}
.ws47{word-spacing:1.120000pt;}
.ws4d{word-spacing:1.173333pt;}
.ws28{word-spacing:1.226667pt;}
.ws5d{word-spacing:1.280000pt;}
.wsd{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.440000pt;}
.ws2b{word-spacing:1.493333pt;}
.ws62{word-spacing:1.546667pt;}
.ws30{word-spacing:1.600000pt;}
.ws26{word-spacing:1.706667pt;}
.ws76{word-spacing:1.749333pt;}
.ws10{word-spacing:1.760000pt;}
.ws12{word-spacing:1.813333pt;}
.ws29{word-spacing:1.866667pt;}
.ws6e{word-spacing:1.920000pt;}
.ws70{word-spacing:2.005333pt;}
.ws34{word-spacing:2.026667pt;}
.ws63{word-spacing:2.080000pt;}
.ws7a{word-spacing:2.090667pt;}
.ws4b{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.186667pt;}
.ws51{word-spacing:2.218667pt;}
.ws11{word-spacing:2.240000pt;}
.ws77{word-spacing:2.304000pt;}
.ws65{word-spacing:2.346667pt;}
.ws1d{word-spacing:2.400000pt;}
.ws85{word-spacing:2.474667pt;}
.ws16{word-spacing:2.506667pt;}
.ws25{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.613333pt;}
.wse{word-spacing:2.666667pt;}
.ws84{word-spacing:2.688000pt;}
.ws27{word-spacing:2.720000pt;}
.ws57{word-spacing:2.826667pt;}
.ws41{word-spacing:2.880000pt;}
.ws44{word-spacing:2.986667pt;}
.ws24{word-spacing:3.040000pt;}
.ws56{word-spacing:3.093333pt;}
.wsc{word-spacing:3.146667pt;}
.ws4f{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.285333pt;}
.ws1f{word-spacing:3.306667pt;}
.ws39{word-spacing:3.328000pt;}
.ws58{word-spacing:3.360000pt;}
.ws88{word-spacing:3.370667pt;}
.ws59{word-spacing:3.413333pt;}
.ws2e{word-spacing:3.466667pt;}
.ws38{word-spacing:3.498667pt;}
.ws13{word-spacing:3.520000pt;}
.ws37{word-spacing:3.541333pt;}
.ws50{word-spacing:3.626667pt;}
.ws5b{word-spacing:3.680000pt;}
.wsa{word-spacing:3.733333pt;}
.ws9{word-spacing:3.893333pt;}
.ws66{word-spacing:3.946667pt;}
.ws45{word-spacing:4.000000pt;}
.ws5e{word-spacing:4.053333pt;}
.ws17{word-spacing:4.213333pt;}
.ws5a{word-spacing:4.266667pt;}
.ws4c{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws5{word-spacing:4.426667pt;}
.ws6c{word-spacing:4.906667pt;}
.ws33{word-spacing:6.986667pt;}
.ws3f{word-spacing:183.765333pt;}
.ws54{word-spacing:185.898667pt;}
.ws3d{word-spacing:202.922667pt;}
.ws3e{word-spacing:217.045333pt;}
.ws55{word-spacing:221.482667pt;}
.ws53{word-spacing:240.682667pt;}
._9{margin-left:-2576.325333pt;}
._48{margin-left:-2575.386667pt;}
._a{margin-left:-2555.162667pt;}
._2{margin-left:-8.327467pt;}
._b{margin-left:-6.826667pt;}
._5{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._47{margin-left:-3.856000pt;}
._3{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._6{width:0.986667pt;}
._2d{width:1.893333pt;}
._8{width:2.933333pt;}
._7{width:4.533333pt;}
._d{width:5.786667pt;}
._e{width:7.253333pt;}
._c{width:9.226667pt;}
._43{width:157.890133pt;}
._1a{width:185.045333pt;}
._19{width:194.432000pt;}
._32{width:196.565333pt;}
._1d{width:205.098667pt;}
._14{width:206.378667pt;}
._13{width:215.765333pt;}
._20{width:217.344000pt;}
._1e{width:227.712000pt;}
._22{width:236.288000pt;}
._3e{width:253.482667pt;}
._11{width:255.061333pt;}
._31{width:264.149333pt;}
._f{width:266.794667pt;}
._10{width:273.621333pt;}
._15{width:280.490667pt;}
._2f{width:285.312000pt;}
._2e{width:288.725333pt;}
._29{width:298.666667pt;}
._23{width:299.909333pt;}
._33{width:316.160000pt;}
._46{width:318.421333pt;}
._3a{width:332.709333pt;}
._37{width:333.696000pt;}
._16{width:374.400000pt;}
._44{width:384.938667pt;}
._45{width:388.394667pt;}
._36{width:402.218667pt;}
._34{width:404.608000pt;}
._24{width:409.130667pt;}
._41{width:427.824000pt;}
._38{width:439.338667pt;}
._39{width:465.754667pt;}
._18{width:500.480000pt;}
._40{width:519.472000pt;}
._3f{width:520.960000pt;}
._3d{width:523.306667pt;}
._2b{width:526.085333pt;}
._30{width:550.186667pt;}
._1b{width:564.016000pt;}
._42{width:576.213333pt;}
._3c{width:607.018667pt;}
._35{width:611.754667pt;}
._3b{width:614.954667pt;}
._28{width:617.733333pt;}
._27{width:619.221333pt;}
._26{width:621.568000pt;}
._2a{width:624.816000pt;}
._12{width:648.448000pt;}
._2c{width:663.808000pt;}
._25{width:705.280000pt;}
._17{width:710.016000pt;}
._1f{width:713.216000pt;}
._1c{width:716.757333pt;}
._21{width:720.298667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2b{bottom:42.468667pt;}
.y177{bottom:71.219467pt;}
.y1b8{bottom:71.345333pt;}
.y148{bottom:74.348533pt;}
.ye2{bottom:74.365467pt;}
.y60{bottom:74.464533pt;}
.yd8{bottom:74.468533pt;}
.y83{bottom:74.669733pt;}
.ya6{bottom:74.721867pt;}
.y14d{bottom:74.849600pt;}
.y28{bottom:78.242667pt;}
.y105{bottom:82.668000pt;}
.y11d{bottom:82.862400pt;}
.y176{bottom:84.552800pt;}
.y1b7{bottom:84.678667pt;}
.ye1{bottom:88.360133pt;}
.y147{bottom:90.348533pt;}
.y5f{bottom:90.464533pt;}
.yd7{bottom:90.468533pt;}
.ya5{bottom:90.721867pt;}
.y27{bottom:91.576000pt;}
.y104{bottom:97.110667pt;}
.y11c{bottom:97.305067pt;}
.y14c{bottom:97.526933pt;}
.y175{bottom:97.886133pt;}
.y1b6{bottom:98.012000pt;}
.ye0{bottom:102.354800pt;}
.y146{bottom:106.348533pt;}
.y5e{bottom:106.464533pt;}
.yd6{bottom:106.468533pt;}
.ya4{bottom:106.721867pt;}
.y174{bottom:111.219467pt;}
.y1b5{bottom:111.345333pt;}
.y103{bottom:111.553333pt;}
.y11b{bottom:111.747733pt;}
.y14b{bottom:111.969600pt;}
.y145{bottom:122.348533pt;}
.y5d{bottom:122.464533pt;}
.yd5{bottom:122.468533pt;}
.ya3{bottom:122.721867pt;}
.y173{bottom:124.552800pt;}
.y1b4{bottom:124.678667pt;}
.y102{bottom:125.996000pt;}
.y11a{bottom:126.190400pt;}
.y172{bottom:137.886133pt;}
.y1b3{bottom:138.012000pt;}
.y144{bottom:138.348533pt;}
.y5c{bottom:138.464533pt;}
.yd4{bottom:138.468533pt;}
.ya2{bottom:138.721867pt;}
.y14a{bottom:139.980133pt;}
.y101{bottom:140.438667pt;}
.y119{bottom:140.633067pt;}
.y171{bottom:151.219467pt;}
.y1b2{bottom:151.345333pt;}
.y143{bottom:154.348533pt;}
.y5b{bottom:154.464533pt;}
.yd3{bottom:154.468533pt;}
.y100{bottom:154.881333pt;}
.y118{bottom:155.075733pt;}
.y170{bottom:164.552800pt;}
.y1b1{bottom:164.678667pt;}
.yff{bottom:169.324000pt;}
.y117{bottom:169.518400pt;}
.y142{bottom:170.348533pt;}
.ya1{bottom:170.361867pt;}
.y5a{bottom:170.464533pt;}
.yd2{bottom:170.468533pt;}
.y149{bottom:171.015200pt;}
.y16f{bottom:177.886133pt;}
.y1b0{bottom:178.012000pt;}
.yfe{bottom:183.766667pt;}
.y116{bottom:183.961067pt;}
.y141{bottom:186.348533pt;}
.y59{bottom:186.464533pt;}
.yd1{bottom:186.468533pt;}
.y16e{bottom:191.219467pt;}
.y1af{bottom:191.345333pt;}
.yfd{bottom:198.209333pt;}
.y115{bottom:198.403733pt;}
.y140{bottom:202.348533pt;}
.y58{bottom:202.464533pt;}
.yd0{bottom:202.468533pt;}
.ya0{bottom:202.588533pt;}
.y16d{bottom:204.552800pt;}
.y1ae{bottom:204.678667pt;}
.yfc{bottom:212.652000pt;}
.y114{bottom:212.846400pt;}
.y16c{bottom:217.886133pt;}
.y13f{bottom:217.988533pt;}
.y1ad{bottom:218.012000pt;}
.y57{bottom:218.464533pt;}
.ycf{bottom:218.468533pt;}
.y9f{bottom:218.588533pt;}
.y26{bottom:223.660400pt;}
.yfb{bottom:227.094667pt;}
.y113{bottom:227.289067pt;}
.y16b{bottom:231.219467pt;}
.y1ac{bottom:231.345333pt;}
.y56{bottom:234.464533pt;}
.yce{bottom:234.468533pt;}
.y9e{bottom:234.588533pt;}
.y25{bottom:239.668667pt;}
.yfa{bottom:241.537333pt;}
.y112{bottom:241.731733pt;}
.y16a{bottom:244.552800pt;}
.y1ab{bottom:244.678667pt;}
.y13e{bottom:250.348533pt;}
.y55{bottom:250.464533pt;}
.ycd{bottom:250.468533pt;}
.y9d{bottom:250.588533pt;}
.yf9{bottom:255.980000pt;}
.y111{bottom:256.174400pt;}
.y169{bottom:257.886133pt;}
.y1aa{bottom:258.012000pt;}
.y24{bottom:263.975333pt;}
.y13d{bottom:266.348533pt;}
.y54{bottom:266.464533pt;}
.ycc{bottom:266.468533pt;}
.y9c{bottom:266.588533pt;}
.y12d{bottom:266.595867pt;}
.yf8{bottom:270.422667pt;}
.y110{bottom:270.617067pt;}
.y168{bottom:271.219467pt;}
.y1a9{bottom:271.345333pt;}
.y23{bottom:279.975333pt;}
.y13c{bottom:282.348533pt;}
.y53{bottom:282.464533pt;}
.ycb{bottom:282.468533pt;}
.y9b{bottom:282.588533pt;}
.y12c{bottom:282.595867pt;}
.y167{bottom:284.552800pt;}
.y1a8{bottom:284.678667pt;}
.yf7{bottom:284.865333pt;}
.y10f{bottom:285.059733pt;}
.y1ed{bottom:295.923867pt;}
.y22{bottom:295.975333pt;}
.y166{bottom:297.886133pt;}
.y1a7{bottom:298.012000pt;}
.y13b{bottom:298.348533pt;}
.y52{bottom:298.464533pt;}
.yca{bottom:298.468533pt;}
.y9a{bottom:298.588533pt;}
.y12b{bottom:298.595867pt;}
.yf6{bottom:299.308000pt;}
.y10e{bottom:299.502400pt;}
.y165{bottom:311.219467pt;}
.y1a6{bottom:311.345333pt;}
.y1ec{bottom:311.923867pt;}
.y21{bottom:311.975333pt;}
.y13a{bottom:314.348533pt;}
.y51{bottom:314.464533pt;}
.yc9{bottom:314.468533pt;}
.y99{bottom:314.588533pt;}
.y12a{bottom:314.595867pt;}
.y10d{bottom:321.838400pt;}
.y164{bottom:324.552800pt;}
.y1a5{bottom:324.678667pt;}
.yf5{bottom:327.318667pt;}
.y20{bottom:327.975333pt;}
.y139{bottom:330.348533pt;}
.y50{bottom:330.464533pt;}
.yc8{bottom:330.468533pt;}
.y98{bottom:330.588533pt;}
.y129{bottom:330.595867pt;}
.y163{bottom:337.886133pt;}
.y1a4{bottom:338.012000pt;}
.y1eb{bottom:343.923867pt;}
.y1f{bottom:343.975333pt;}
.y138{bottom:346.348533pt;}
.y4f{bottom:346.464533pt;}
.yc7{bottom:346.468533pt;}
.y97{bottom:346.588533pt;}
.y128{bottom:346.595867pt;}
.y162{bottom:351.219467pt;}
.y1a3{bottom:351.345333pt;}
.y10c{bottom:352.856267pt;}
.yf4{bottom:358.342533pt;}
.y1ea{bottom:359.923867pt;}
.y1e{bottom:359.975333pt;}
.y137{bottom:362.348533pt;}
.y4e{bottom:362.464533pt;}
.y96{bottom:362.588533pt;}
.y127{bottom:362.595867pt;}
.y161{bottom:364.552800pt;}
.y1a2{bottom:364.678667pt;}
.y10b{bottom:370.189600pt;}
.yf3{bottom:375.675867pt;}
.y1e9{bottom:375.923867pt;}
.y1d{bottom:375.975333pt;}
.y160{bottom:377.886133pt;}
.y1a1{bottom:378.012000pt;}
.y64{bottom:378.104533pt;}
.yc6{bottom:378.108533pt;}
.y136{bottom:378.348533pt;}
.y4d{bottom:378.464533pt;}
.y95{bottom:378.588533pt;}
.y126{bottom:378.595867pt;}
.y10a{bottom:387.522933pt;}
.y15f{bottom:391.219467pt;}
.y1a0{bottom:391.345333pt;}
.y1e8{bottom:391.923867pt;}
.y1c{bottom:391.975333pt;}
.yf2{bottom:393.009200pt;}
.y135{bottom:394.348533pt;}
.y4c{bottom:394.464533pt;}
.y94{bottom:394.588533pt;}
.y125{bottom:394.595867pt;}
.y15e{bottom:404.552800pt;}
.y19f{bottom:404.678667pt;}
.y109{bottom:404.856267pt;}
.y1b{bottom:407.975333pt;}
.y63{bottom:409.984533pt;}
.yc5{bottom:409.988533pt;}
.yf1{bottom:410.342533pt;}
.y134{bottom:410.348533pt;}
.y4b{bottom:410.464533pt;}
.y93{bottom:410.588533pt;}
.y124{bottom:410.595867pt;}
.y15d{bottom:417.886133pt;}
.y19e{bottom:418.012000pt;}
.y1e7{bottom:423.923867pt;}
.y1a{bottom:423.975333pt;}
.y133{bottom:426.348533pt;}
.y4a{bottom:426.464533pt;}
.y92{bottom:426.588533pt;}
.y123{bottom:426.595867pt;}
.y15c{bottom:431.219467pt;}
.y19d{bottom:431.345333pt;}
.y1e6{bottom:439.923867pt;}
.y19{bottom:439.975333pt;}
.y132{bottom:442.348533pt;}
.y49{bottom:442.464533pt;}
.y91{bottom:442.588533pt;}
.y122{bottom:442.595867pt;}
.y15b{bottom:444.552800pt;}
.y1de{bottom:444.678667pt;}
.y19c{bottom:444.680800pt;}
.y108{bottom:445.096667pt;}
.ydf{bottom:449.483600pt;}
.y1e5{bottom:455.923867pt;}
.y18{bottom:455.975333pt;}
.y15a{bottom:457.886133pt;}
.y1dd{bottom:458.012000pt;}
.y19b{bottom:458.014133pt;}
.y131{bottom:458.348533pt;}
.yed{bottom:458.462533pt;}
.y48{bottom:458.464533pt;}
.yc4{bottom:458.468533pt;}
.y90{bottom:458.588533pt;}
.y121{bottom:458.595867pt;}
.y107{bottom:459.091333pt;}
.yde{bottom:463.478267pt;}
.y159{bottom:471.219467pt;}
.y1dc{bottom:471.345333pt;}
.y19a{bottom:471.347467pt;}
.y1e4{bottom:471.923867pt;}
.y17{bottom:471.975333pt;}
.y130{bottom:474.348533pt;}
.yec{bottom:474.462533pt;}
.y47{bottom:474.464533pt;}
.yc3{bottom:474.468533pt;}
.y8f{bottom:474.588533pt;}
.y120{bottom:474.595867pt;}
.ydd{bottom:477.472933pt;}
.y158{bottom:484.552800pt;}
.y1db{bottom:484.678667pt;}
.y199{bottom:484.680800pt;}
.y16{bottom:487.975333pt;}
.y12f{bottom:490.348533pt;}
.yeb{bottom:490.462533pt;}
.y46{bottom:490.464533pt;}
.yc2{bottom:490.468533pt;}
.y8e{bottom:490.588533pt;}
.y11f{bottom:490.595867pt;}
.y157{bottom:497.886133pt;}
.y1da{bottom:498.012000pt;}
.y198{bottom:498.014133pt;}
.y1e3{bottom:503.923867pt;}
.y15{bottom:503.975333pt;}
.yea{bottom:506.462533pt;}
.y45{bottom:506.464533pt;}
.yc1{bottom:506.468533pt;}
.ydc{bottom:506.588533pt;}
.y8d{bottom:506.595867pt;}
.y156{bottom:511.219467pt;}
.y1d9{bottom:511.345333pt;}
.y197{bottom:511.347467pt;}
.y1e2{bottom:519.923867pt;}
.y14{bottom:519.975333pt;}
.y12e{bottom:521.988533pt;}
.yf0{bottom:522.102533pt;}
.ye9{bottom:522.462533pt;}
.y44{bottom:522.464533pt;}
.yc0{bottom:522.468533pt;}
.ydb{bottom:522.588533pt;}
.y8c{bottom:522.595867pt;}
.y155{bottom:524.552800pt;}
.y1d8{bottom:524.678667pt;}
.y196{bottom:524.680800pt;}
.y13{bottom:535.975333pt;}
.y1d7{bottom:538.012000pt;}
.y195{bottom:538.014133pt;}
.yef{bottom:538.102533pt;}
.ye8{bottom:538.462533pt;}
.y43{bottom:538.464533pt;}
.ybf{bottom:538.468533pt;}
.yda{bottom:538.588533pt;}
.y8b{bottom:538.595867pt;}
.y1d6{bottom:551.345333pt;}
.y194{bottom:551.347467pt;}
.y1e1{bottom:551.923867pt;}
.y12{bottom:551.975333pt;}
.y154{bottom:553.982533pt;}
.ye7{bottom:554.462533pt;}
.y42{bottom:554.464533pt;}
.ybe{bottom:554.468533pt;}
.y8a{bottom:554.595867pt;}
.y1d5{bottom:564.678667pt;}
.y193{bottom:564.680800pt;}
.y1e0{bottom:567.923867pt;}
.y11{bottom:567.975333pt;}
.yee{bottom:569.982533pt;}
.ye6{bottom:570.462533pt;}
.y41{bottom:570.464533pt;}
.ybd{bottom:570.468533pt;}
.y89{bottom:570.595867pt;}
.y1d4{bottom:578.012000pt;}
.y192{bottom:578.014133pt;}
.y10{bottom:583.975333pt;}
.yd9{bottom:586.235867pt;}
.ye5{bottom:586.462533pt;}
.y40{bottom:586.464533pt;}
.ybc{bottom:586.468533pt;}
.y88{bottom:586.595867pt;}
.y1d3{bottom:591.345333pt;}
.y191{bottom:591.347467pt;}
.y1df{bottom:599.563867pt;}
.yf{bottom:599.975333pt;}
.ye4{bottom:602.462533pt;}
.y3f{bottom:602.464533pt;}
.ybb{bottom:602.468533pt;}
.y87{bottom:602.595867pt;}
.y1d2{bottom:604.678667pt;}
.y190{bottom:604.680800pt;}
.y1d1{bottom:618.012000pt;}
.y18f{bottom:618.014133pt;}
.y153{bottom:618.102533pt;}
.y79{bottom:618.462533pt;}
.y3e{bottom:618.464533pt;}
.yba{bottom:618.468533pt;}
.y82{bottom:618.595867pt;}
.y1d0{bottom:631.345333pt;}
.y18e{bottom:631.347467pt;}
.y78{bottom:634.462533pt;}
.y3d{bottom:634.464533pt;}
.yb9{bottom:634.468533pt;}
.y81{bottom:634.595867pt;}
.ye{bottom:640.115867pt;}
.y1cf{bottom:644.678667pt;}
.y18d{bottom:644.680800pt;}
.y152{bottom:650.102533pt;}
.y77{bottom:650.462533pt;}
.y3c{bottom:650.464533pt;}
.yb8{bottom:650.468533pt;}
.y80{bottom:650.595867pt;}
.yd{bottom:651.183200pt;}
.y1ce{bottom:658.012000pt;}
.y18c{bottom:658.014133pt;}
.y76{bottom:666.462533pt;}
.y3b{bottom:666.464533pt;}
.yb7{bottom:666.468533pt;}
.y7f{bottom:666.595867pt;}
.y1cd{bottom:671.345333pt;}
.y18b{bottom:671.347467pt;}
.yc{bottom:679.374800pt;}
.y75{bottom:682.462533pt;}
.y3a{bottom:682.464533pt;}
.yb6{bottom:682.468533pt;}
.y7e{bottom:682.595867pt;}
.y1cc{bottom:684.678667pt;}
.y18a{bottom:684.680800pt;}
.yb{bottom:696.197200pt;}
.y1cb{bottom:698.012000pt;}
.y189{bottom:698.014133pt;}
.y74{bottom:698.462533pt;}
.y39{bottom:698.464533pt;}
.yb5{bottom:698.468533pt;}
.y7d{bottom:698.595867pt;}
.ya{bottom:708.197200pt;}
.y1ca{bottom:711.345333pt;}
.y188{bottom:711.347467pt;}
.y151{bottom:714.102533pt;}
.y73{bottom:714.462533pt;}
.y38{bottom:714.464533pt;}
.yb4{bottom:714.468533pt;}
.y7c{bottom:714.595867pt;}
.y9{bottom:715.374800pt;}
.y1c9{bottom:724.678667pt;}
.y187{bottom:724.680800pt;}
.y72{bottom:730.462533pt;}
.y37{bottom:730.464533pt;}
.yb3{bottom:730.468533pt;}
.y86{bottom:730.595867pt;}
.y8{bottom:732.197200pt;}
.y1c8{bottom:738.012000pt;}
.y186{bottom:738.014133pt;}
.y7b{bottom:746.235867pt;}
.y71{bottom:746.462533pt;}
.y36{bottom:746.464533pt;}
.yb2{bottom:746.468533pt;}
.y1c7{bottom:751.345333pt;}
.y185{bottom:751.347467pt;}
.y7{bottom:757.728000pt;}
.y150{bottom:762.102533pt;}
.y7a{bottom:762.235867pt;}
.y70{bottom:762.462533pt;}
.y35{bottom:762.464533pt;}
.yb1{bottom:762.468533pt;}
.y1c6{bottom:764.678667pt;}
.y184{bottom:764.680800pt;}
.y1c5{bottom:778.012000pt;}
.y183{bottom:778.014133pt;}
.y85{bottom:778.235867pt;}
.y6f{bottom:778.462533pt;}
.y34{bottom:778.464533pt;}
.yb0{bottom:778.468533pt;}
.y1c4{bottom:791.345333pt;}
.y182{bottom:791.347467pt;}
.y6e{bottom:794.462533pt;}
.y33{bottom:794.464533pt;}
.yaf{bottom:794.468533pt;}
.y6{bottom:798.761467pt;}
.y1c3{bottom:804.678667pt;}
.y181{bottom:804.680800pt;}
.y6d{bottom:810.462533pt;}
.y32{bottom:810.464533pt;}
.yae{bottom:810.468533pt;}
.y1c2{bottom:818.012000pt;}
.y180{bottom:818.014133pt;}
.y6c{bottom:826.462533pt;}
.y31{bottom:826.464533pt;}
.yad{bottom:826.468533pt;}
.y5{bottom:831.171067pt;}
.y1c1{bottom:831.345333pt;}
.y17f{bottom:831.347467pt;}
.y6b{bottom:842.462533pt;}
.y30{bottom:842.464533pt;}
.yac{bottom:842.468533pt;}
.y1c0{bottom:844.678667pt;}
.y17e{bottom:844.680800pt;}
.y1bf{bottom:858.012000pt;}
.y17d{bottom:858.014133pt;}
.y6a{bottom:858.462533pt;}
.y2f{bottom:858.464533pt;}
.yab{bottom:858.468533pt;}
.y4{bottom:863.580667pt;}
.y1be{bottom:871.345333pt;}
.y17c{bottom:871.347467pt;}
.y69{bottom:874.462533pt;}
.y2e{bottom:874.464533pt;}
.yaa{bottom:874.468533pt;}
.y1bd{bottom:884.678667pt;}
.y17b{bottom:884.680800pt;}
.y14f{bottom:890.102533pt;}
.y68{bottom:890.462533pt;}
.y2d{bottom:890.464533pt;}
.ya9{bottom:890.468533pt;}
.y3{bottom:895.990267pt;}
.y1bc{bottom:898.012000pt;}
.y17a{bottom:898.014133pt;}
.y67{bottom:906.462533pt;}
.y62{bottom:906.464533pt;}
.ya8{bottom:906.468533pt;}
.y1bb{bottom:911.345333pt;}
.y179{bottom:911.347467pt;}
.y2c{bottom:922.104533pt;}
.y66{bottom:922.462533pt;}
.y61{bottom:922.464533pt;}
.ya7{bottom:922.468533pt;}
.y1ba{bottom:924.678667pt;}
.y178{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y14e{bottom:1006.593600pt;}
.y65{bottom:1006.594400pt;}
.y84{bottom:1006.595067pt;}
.y1b9{bottom:1006.598667pt;}
.ye3{bottom:1006.600133pt;}
.y106{bottom:1006.646667pt;}
.y11e{bottom:1006.649067pt;}
.y2a{bottom:1009.860000pt;}
.y29{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hb{height:29.140625pt;}
.h7{height:29.160156pt;}
.h13{height:29.625000pt;}
.h10{height:29.645833pt;}
.hd{height:31.083333pt;}
.hc{height:31.104167pt;}
.hf{height:37.031250pt;}
.he{height:37.057292pt;}
.h14{height:37.360321pt;}
.h15{height:37.381654pt;}
.ha{height:38.828125pt;}
.h9{height:38.854167pt;}
.h11{height:46.697734pt;}
.h12{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x16{left:69.931200pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x19{left:88.818800pt;}
.x1b{left:90.708800pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x1e{left:109.606533pt;}
.x3{left:111.491467pt;}
.xf{left:117.169200pt;}
.x5{left:170.078667pt;}
.x1a{left:172.684800pt;}
.x18{left:210.901067pt;}
.x17{left:253.972267pt;}
.x15{left:278.539200pt;}
.x7{left:404.481333pt;}
.xa{left:406.300933pt;}
.x10{left:425.195867pt;}
.x1c{left:428.980800pt;}
.xb{left:436.540933pt;}
.x1f{left:447.878533pt;}
.x11{left:455.435867pt;}
.xc{left:466.914267pt;}
.x14{left:515.031467pt;}
.x13{left:525.909867pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:642.331067pt;}
.xd{left:648.250800pt;}
.x20{left:662.007867pt;}
.x12{left:667.153200pt;}
}




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