
    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_56f516a4d10bf383f3dd820f.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_cf3881c5ac0027e86b375d91.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_a21acfa8fd6af831d7b245fa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_934ec760974290d2d67874c3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_99e371daa5286f949143b740.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_335c94b516e79e07b1687fdf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_891f19851ecd5a0de0c5a9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4ece62eead31a129b1c0c59b.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_ada66294b4101bd72a480d0f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5e540fb4f590756069bb72e2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:22.579200px;}
.v1{vertical-align:30.381600px;}
.ls4f{letter-spacing:-7.740000px;}
.ls4b{letter-spacing:-7.260000px;}
.lsd{letter-spacing:-0.780000px;}
.ls3e{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.120000px;}
.ls7e{letter-spacing:-0.096000px;}
.lsf{letter-spacing:-0.060000px;}
.lsc{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls5c{letter-spacing:0.048000px;}
.ls37{letter-spacing:0.060000px;}
.ls6e{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.120000px;}
.ls6d{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.192000px;}
.ls42{letter-spacing:0.240000px;}
.ls64{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.300000px;}
.ls56{letter-spacing:0.336000px;}
.ls36{letter-spacing:0.360000px;}
.ls74{letter-spacing:0.384000px;}
.ls25{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.600000px;}
.ls7a{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.720000px;}
.ls7b{letter-spacing:0.768000px;}
.ls18{letter-spacing:0.780000px;}
.ls66{letter-spacing:0.816000px;}
.ls40{letter-spacing:0.840000px;}
.ls70{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.900000px;}
.ls61{letter-spacing:0.912000px;}
.ls2a{letter-spacing:0.960000px;}
.ls73{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.020000px;}
.ls15{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.140000px;}
.ls6c{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls6f{letter-spacing:1.248000px;}
.ls2b{letter-spacing:1.260000px;}
.ls46{letter-spacing:1.320000px;}
.ls60{letter-spacing:1.344000px;}
.ls4{letter-spacing:1.380000px;}
.ls2c{letter-spacing:1.440000px;}
.ls2d{letter-spacing:1.500000px;}
.ls65{letter-spacing:1.536000px;}
.lsa{letter-spacing:1.560000px;}
.ls3b{letter-spacing:1.620000px;}
.ls43{letter-spacing:1.680000px;}
.ls58{letter-spacing:1.728000px;}
.ls32{letter-spacing:1.740000px;}
.ls2f{letter-spacing:1.800000px;}
.ls68{letter-spacing:1.824000px;}
.ls2e{letter-spacing:1.860000px;}
.ls5e{letter-spacing:1.872000px;}
.ls17{letter-spacing:1.920000px;}
.ls44{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.040000px;}
.ls12{letter-spacing:2.100000px;}
.ls7c{letter-spacing:2.112000px;}
.ls1e{letter-spacing:2.160000px;}
.ls67{letter-spacing:2.208000px;}
.ls1c{letter-spacing:2.220000px;}
.ls16{letter-spacing:2.280000px;}
.ls75{letter-spacing:2.304000px;}
.ls3d{letter-spacing:2.340000px;}
.ls62{letter-spacing:2.352000px;}
.ls22{letter-spacing:2.400000px;}
.ls7d{letter-spacing:2.448000px;}
.ls1a{letter-spacing:2.460000px;}
.ls59{letter-spacing:2.496000px;}
.ls33{letter-spacing:2.520000px;}
.ls1f{letter-spacing:2.580000px;}
.ls5f{letter-spacing:2.592000px;}
.ls50{letter-spacing:2.640000px;}
.ls49{letter-spacing:2.700000px;}
.ls63{letter-spacing:2.736000px;}
.ls29{letter-spacing:2.760000px;}
.ls3{letter-spacing:2.820000px;}
.ls6b{letter-spacing:2.832000px;}
.ls34{letter-spacing:2.880000px;}
.ls47{letter-spacing:2.940000px;}
.ls6a{letter-spacing:2.976000px;}
.ls1{letter-spacing:3.060000px;}
.ls52{letter-spacing:3.120000px;}
.ls3c{letter-spacing:3.180000px;}
.ls41{letter-spacing:3.240000px;}
.ls5b{letter-spacing:3.264000px;}
.ls20{letter-spacing:3.300000px;}
.ls72{letter-spacing:3.312000px;}
.ls1b{letter-spacing:3.360000px;}
.ls4e{letter-spacing:3.420000px;}
.ls2{letter-spacing:3.480000px;}
.ls30{letter-spacing:3.600000px;}
.ls78{letter-spacing:3.648000px;}
.lsb{letter-spacing:3.660000px;}
.ls3a{letter-spacing:3.780000px;}
.ls8{letter-spacing:3.840000px;}
.ls6{letter-spacing:3.900000px;}
.ls45{letter-spacing:4.080000px;}
.ls4d{letter-spacing:4.200000px;}
.ls77{letter-spacing:4.320000px;}
.ls76{letter-spacing:4.368000px;}
.ls69{letter-spacing:4.608000px;}
.ls71{letter-spacing:4.656000px;}
.ls3f{letter-spacing:4.980000px;}
.ls48{letter-spacing:5.040000px;}
.ls14{letter-spacing:5.400000px;}
.ls24{letter-spacing:5.640000px;}
.ls54{letter-spacing:6.060000px;}
.ls4a{letter-spacing:6.120000px;}
.ls39{letter-spacing:6.240000px;}
.ls38{letter-spacing:6.600000px;}
.ls53{letter-spacing:6.780000px;}
.ls4c{letter-spacing:7.320000px;}
.ls28{letter-spacing:7.440000px;}
.ls55{letter-spacing:8.340000px;}
.ls51{letter-spacing:471.168000px;}
.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;}
}
.ws60{word-spacing:-18.540000px;}
.ws44{word-spacing:-17.340000px;}
.ws22{word-spacing:-16.680000px;}
.ws3a{word-spacing:-16.380000px;}
.ws58{word-spacing:-16.320000px;}
.ws3c{word-spacing:-16.200000px;}
.ws3b{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.180000px;}
.wsd{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.000000px;}
.ws66{word-spacing:-14.736000px;}
.ws68{word-spacing:-14.640000px;}
.ws67{word-spacing:-13.728000px;}
.wse{word-spacing:-13.344000px;}
.ws64{word-spacing:-12.960000px;}
.ws7a{word-spacing:-12.912000px;}
.ws62{word-spacing:-12.480000px;}
.ws65{word-spacing:-12.336000px;}
.ws7d{word-spacing:-12.288000px;}
.ws7b{word-spacing:-12.240000px;}
.ws61{word-spacing:-12.192000px;}
.ws7c{word-spacing:-12.096000px;}
.ws63{word-spacing:-12.000000px;}
.ws7e{word-spacing:-11.856000px;}
.ws0{word-spacing:-10.210662px;}
.ws81{word-spacing:-3.312000px;}
.ws16{word-spacing:-3.300000px;}
.ws3{word-spacing:-2.886000px;}
.ws56{word-spacing:-2.640000px;}
.ws4{word-spacing:-2.331000px;}
.ws17{word-spacing:-2.220000px;}
.ws86{word-spacing:-2.208000px;}
.ws48{word-spacing:-1.800000px;}
.ws5f{word-spacing:-1.560000px;}
.ws5c{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.260000px;}
.ws43{word-spacing:-1.200000px;}
.ws83{word-spacing:-1.008000px;}
.ws18{word-spacing:-0.960000px;}
.ws70{word-spacing:-0.912000px;}
.ws55{word-spacing:-0.864000px;}
.ws75{word-spacing:-0.816000px;}
.ws84{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.480000px;}
.ws6e{word-spacing:-0.432000px;}
.ws1d{word-spacing:-0.420000px;}
.ws30{word-spacing:-0.360000px;}
.ws71{word-spacing:-0.336000px;}
.ws87{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.180000px;}
.ws7f{word-spacing:-0.144000px;}
.ws49{word-spacing:-0.120000px;}
.ws78{word-spacing:-0.096000px;}
.ws23{word-spacing:-0.060000px;}
.ws6d{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.060000px;}
.ws80{word-spacing:0.096000px;}
.ws1e{word-spacing:0.120000px;}
.ws85{word-spacing:0.240000px;}
.ws5e{word-spacing:0.300000px;}
.ws29{word-spacing:0.360000px;}
.ws28{word-spacing:0.384000px;}
.ws9{word-spacing:0.420000px;}
.ws59{word-spacing:0.480000px;}
.ws3f{word-spacing:0.540000px;}
.wsf{word-spacing:0.660000px;}
.ws1f{word-spacing:0.720000px;}
.ws4b{word-spacing:0.864000px;}
.ws1b{word-spacing:0.900000px;}
.ws2d{word-spacing:0.912000px;}
.ws76{word-spacing:1.008000px;}
.ws5a{word-spacing:1.020000px;}
.ws21{word-spacing:1.080000px;}
.ws26{word-spacing:1.200000px;}
.ws2b{word-spacing:1.260000px;}
.ws39{word-spacing:1.320000px;}
.ws19{word-spacing:1.380000px;}
.ws77{word-spacing:1.440000px;}
.ws36{word-spacing:1.500000px;}
.ws25{word-spacing:1.560000px;}
.ws13{word-spacing:1.620000px;}
.ws79{word-spacing:1.632000px;}
.ws1c{word-spacing:1.680000px;}
.ws2c{word-spacing:1.800000px;}
.ws74{word-spacing:1.872000px;}
.ws35{word-spacing:1.980000px;}
.ws2f{word-spacing:2.040000px;}
.wsa{word-spacing:2.100000px;}
.ws50{word-spacing:2.220000px;}
.ws82{word-spacing:2.256000px;}
.ws27{word-spacing:2.280000px;}
.ws57{word-spacing:2.340000px;}
.ws72{word-spacing:2.400000px;}
.ws7{word-spacing:2.520000px;}
.ws3d{word-spacing:2.580000px;}
.ws2e{word-spacing:2.592000px;}
.ws5d{word-spacing:2.640000px;}
.ws8{word-spacing:2.760000px;}
.ws1a{word-spacing:2.820000px;}
.ws6f{word-spacing:2.832000px;}
.ws6a{word-spacing:2.880000px;}
.ws32{word-spacing:3.060000px;}
.ws73{word-spacing:3.120000px;}
.ws20{word-spacing:3.240000px;}
.ws34{word-spacing:3.300000px;}
.ws5b{word-spacing:3.420000px;}
.ws41{word-spacing:3.480000px;}
.ws14{word-spacing:3.600000px;}
.ws15{word-spacing:3.720000px;}
.ws4a{word-spacing:3.840000px;}
.ws6c{word-spacing:3.936000px;}
.ws40{word-spacing:3.960000px;}
.ws6b{word-spacing:3.984000px;}
.ws47{word-spacing:4.020000px;}
.ws31{word-spacing:4.140000px;}
.ws2a{word-spacing:4.200000px;}
.ws37{word-spacing:4.440000px;}
.wsb{word-spacing:4.500000px;}
.ws38{word-spacing:4.560000px;}
.ws42{word-spacing:4.620000px;}
.ws4e{word-spacing:4.800000px;}
.ws24{word-spacing:4.860000px;}
.ws6{word-spacing:4.920000px;}
.ws5{word-spacing:4.980000px;}
.ws69{word-spacing:5.520000px;}
.ws3e{word-spacing:7.260000px;}
.ws4f{word-spacing:7.740000px;}
.ws45{word-spacing:261.504000px;}
.ws4c{word-spacing:262.176000px;}
.ws4d{word-spacing:274.176000px;}
.ws46{word-spacing:383.712000px;}
.ws52{word-spacing:407.568000px;}
.ws51{word-spacing:429.936000px;}
.ws53{word-spacing:450.240000px;}
._b{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._4{margin-left:-7.620000px;}
._9{margin-left:-6.600000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.480000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._6{width:1.020000px;}
._2{width:2.331000px;}
._a{width:3.618000px;}
._7{width:5.400000px;}
._d{width:6.720000px;}
._8{width:8.280000px;}
._73{width:135.120000px;}
._72{width:195.120000px;}
._6f{width:211.350000px;}
._74{width:214.176000px;}
._6c{width:216.864000px;}
._70{width:221.451000px;}
._6d{width:229.776000px;}
._39{width:263.040000px;}
._75{width:268.176000px;}
._21{width:274.176000px;}
._33{width:285.084600px;}
._1d{width:286.176000px;}
._12{width:298.176000px;}
._79{width:357.312000px;}
._3c{width:358.848000px;}
._3a{width:361.158000px;}
._22{width:371.712000px;}
._64{width:377.766000px;}
._f{width:382.368000px;}
._1e{width:383.712000px;}
._84{width:389.664000px;}
._7e{width:391.203000px;}
._13{width:395.712000px;}
._88{width:397.824000px;}
._67{width:400.896000px;}
._86{width:403.104000px;}
._77{width:407.952000px;}
._8d{width:411.168000px;}
._65{width:416.208000px;}
._5d{width:421.296000px;}
._8b{width:422.352000px;}
._37{width:433.296000px;}
._82{width:438.816000px;}
._87{width:440.832000px;}
._23{width:445.296000px;}
._8c{width:452.832000px;}
._1f{width:457.296000px;}
._78{width:462.576000px;}
._8a{width:464.352000px;}
._14{width:469.296000px;}
._4d{width:480.189000px;}
._16{width:481.296000px;}
._80{width:486.240000px;}
._85{width:491.808000px;}
._71{width:497.280000px;}
._10{width:503.280000px;}
._7c{width:504.768000px;}
._76{width:507.984000px;}
._6e{width:514.656000px;}
._7d{width:517.248000px;}
._7f{width:527.856000px;}
._83{width:529.296000px;}
._31{width:592.896000px;}
._81{width:600.240000px;}
._4f{width:611.808000px;}
._53{width:618.432000px;}
._7a{width:622.992000px;}
._61{width:626.448000px;}
._54{width:631.776000px;}
._62{width:639.792000px;}
._2e{width:643.536000px;}
._29{width:662.256000px;}
._55{width:666.384000px;}
._30{width:668.832000px;}
._57{width:673.152000px;}
._56{width:678.480000px;}
._42{width:681.168000px;}
._35{width:687.552000px;}
._5f{width:695.808000px;}
._2f{width:698.160000px;}
._46{width:701.136000px;}
._52{width:706.368000px;}
._60{width:709.152000px;}
._26{width:712.896000px;}
._4e{width:714.432000px;}
._5e{width:718.464000px;}
._51{width:723.696000px;}
._5c{width:726.432000px;}
._2c{width:732.864000px;}
._48{width:735.744000px;}
._43{width:738.432000px;}
._4a{width:742.512000px;}
._2d{width:743.568000px;}
._89{width:745.296000px;}
._49{width:747.840000px;}
._28{width:750.192000px;}
._19{width:752.880000px;}
._4b{width:758.400000px;}
._1a{width:759.600000px;}
._1b{width:762.240000px;}
._2b{width:766.224000px;}
._27{width:767.520000px;}
._50{width:769.104000px;}
._34{width:770.256000px;}
._58{width:774.384000px;}
._45{width:775.728000px;}
._32{width:780.816000px;}
._4c{width:782.352000px;}
._41{width:783.792000px;}
._66{width:788.736000px;}
._44{width:793.056000px;}
._25{width:802.224000px;}
._1c{width:803.568000px;}
._68{width:807.504000px;}
._5b{width:809.136000px;}
._24{width:812.880000px;}
._5a{width:819.696000px;}
._15{width:824.880000px;}
._3d{width:827.760000px;}
._7b{width:829.632000px;}
._17{width:831.600000px;}
._36{width:838.416000px;}
._59{width:843.792000px;}
._3f{width:851.712000px;}
._18{width:860.928000px;}
._2a{width:871.488000px;}
._47{width:881.088000px;}
._20{width:885.672000px;}
._11{width:897.672000px;}
._38{width:902.400000px;}
._3e{width:907.776000px;}
._3b{width:911.208000px;}
._40{width:921.120000px;}
._6b{width:943.488000px;}
._6a{width:954.048000px;}
._e{width:966.480000px;}
._69{width:978.144000px;}
._63{width:1359.456000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:27.984000px;}
.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;}
.y2e{bottom:47.777250px;}
.y1f2{bottom:83.121900px;}
.y141{bottom:83.194050px;}
.y1df{bottom:83.628600px;}
.y61{bottom:83.635350px;}
.yba{bottom:83.661150px;}
.y74{bottom:83.770350px;}
.y1d4{bottom:83.920350px;}
.y105{bottom:83.935350px;}
.yd1{bottom:84.070350px;}
.y1c9{bottom:84.217950px;}
.y8e{bottom:84.523350px;}
.y170{bottom:86.879550px;}
.y19c{bottom:87.151050px;}
.y2b{bottom:88.026750px;}
.y232{bottom:95.263500px;}
.y1f1{bottom:98.121900px;}
.yb9{bottom:99.405150px;}
.y140{bottom:99.694050px;}
.y8d{bottom:100.267350px;}
.y60{bottom:101.635350px;}
.y1de{bottom:101.650350px;}
.y73{bottom:101.770350px;}
.y1d3{bottom:101.920350px;}
.y104{bottom:101.935350px;}
.yd0{bottom:102.070350px;}
.y2a{bottom:103.023000px;}
.y1c8{bottom:109.729950px;}
.y231{bottom:110.263500px;}
.y16f{bottom:112.391550px;}
.y19b{bottom:112.663050px;}
.y1f0{bottom:113.121900px;}
.yb8{bottom:115.149150px;}
.y5f{bottom:119.635350px;}
.y1dd{bottom:119.650350px;}
.y72{bottom:119.770350px;}
.y1d2{bottom:119.920350px;}
.y103{bottom:119.935350px;}
.ycf{bottom:120.070350px;}
.y13f{bottom:125.206050px;}
.y230{bottom:125.263500px;}
.y1c7{bottom:125.977950px;}
.y1ef{bottom:128.121900px;}
.y16e{bottom:128.639550px;}
.y19a{bottom:128.911050px;}
.y5e{bottom:137.635350px;}
.y1dc{bottom:137.650350px;}
.y71{bottom:137.770350px;}
.y1d1{bottom:137.920350px;}
.y102{bottom:137.935350px;}
.y22f{bottom:140.263500px;}
.y13e{bottom:141.454050px;}
.y1c6{bottom:142.225950px;}
.y1ee{bottom:143.121900px;}
.y16d{bottom:144.887550px;}
.y199{bottom:145.159050px;}
.y22e{bottom:155.263500px;}
.y5d{bottom:155.635350px;}
.y1db{bottom:155.650350px;}
.yce{bottom:155.665350px;}
.y70{bottom:155.770350px;}
.y1d0{bottom:155.920350px;}
.y101{bottom:155.935350px;}
.y13d{bottom:157.809000px;}
.y1ed{bottom:158.121900px;}
.y1c5{bottom:158.473950px;}
.y16c{bottom:161.135550px;}
.y198{bottom:161.407050px;}
.y27{bottom:162.502650px;}
.y22d{bottom:170.263500px;}
.y1ec{bottom:173.121900px;}
.y5c{bottom:173.635350px;}
.y1da{bottom:173.650350px;}
.y6f{bottom:173.770350px;}
.y1cf{bottom:173.920350px;}
.y100{bottom:173.935350px;}
.y13c{bottom:174.057000px;}
.y1c4{bottom:174.721950px;}
.y16b{bottom:177.383550px;}
.y197{bottom:177.655050px;}
.y26{bottom:180.502650px;}
.y22c{bottom:185.263500px;}
.y1eb{bottom:188.121900px;}
.y13b{bottom:190.305000px;}
.y1c3{bottom:190.969950px;}
.y5b{bottom:191.635350px;}
.y1d9{bottom:191.650350px;}
.y6e{bottom:191.770350px;}
.ycd{bottom:191.920350px;}
.yff{bottom:191.935350px;}
.y16a{bottom:193.631550px;}
.y196{bottom:193.903050px;}
.y25{bottom:198.502650px;}
.y22b{bottom:200.263500px;}
.y1ea{bottom:203.121900px;}
.y13a{bottom:206.553000px;}
.y1c2{bottom:207.217950px;}
.y5a{bottom:209.635350px;}
.y1d8{bottom:209.650350px;}
.y6d{bottom:209.770350px;}
.y169{bottom:209.879550px;}
.ycc{bottom:209.920350px;}
.yfe{bottom:209.935350px;}
.y195{bottom:210.151050px;}
.y22a{bottom:215.263500px;}
.y24{bottom:216.502650px;}
.y1e9{bottom:218.121900px;}
.y139{bottom:222.801000px;}
.y1c1{bottom:223.465950px;}
.y168{bottom:226.127550px;}
.y194{bottom:226.399050px;}
.y59{bottom:227.635350px;}
.y1d7{bottom:227.650350px;}
.y6c{bottom:227.770350px;}
.ycb{bottom:227.920350px;}
.yfd{bottom:227.935350px;}
.y229{bottom:230.263500px;}
.y1e8{bottom:233.121900px;}
.y23{bottom:234.502650px;}
.y138{bottom:239.049000px;}
.y1c0{bottom:239.713950px;}
.y167{bottom:242.375550px;}
.y193{bottom:242.647050px;}
.y228{bottom:245.263500px;}
.y11e{bottom:245.530350px;}
.y58{bottom:245.635350px;}
.y6b{bottom:245.770350px;}
.yca{bottom:245.920350px;}
.yfc{bottom:245.935350px;}
.y1e7{bottom:248.121900px;}
.y22{bottom:252.502650px;}
.y137{bottom:255.297000px;}
.y1bf{bottom:255.961950px;}
.y166{bottom:258.623550px;}
.y192{bottom:258.895050px;}
.y227{bottom:260.263500px;}
.y1d6{bottom:263.245350px;}
.y57{bottom:263.635350px;}
.y6a{bottom:263.770350px;}
.yc9{bottom:263.920350px;}
.yfb{bottom:263.935350px;}
.y21{bottom:270.502650px;}
.y136{bottom:271.545000px;}
.y1be{bottom:272.209950px;}
.y165{bottom:274.871550px;}
.y191{bottom:275.143050px;}
.y226{bottom:275.263500px;}
.y1e6{bottom:281.230350px;}
.y56{bottom:281.635350px;}
.y69{bottom:281.770350px;}
.yc8{bottom:281.920350px;}
.y135{bottom:287.793000px;}
.y1bd{bottom:288.457950px;}
.y20{bottom:288.502650px;}
.y225{bottom:290.263500px;}
.y164{bottom:291.119550px;}
.y190{bottom:291.391050px;}
.yfa{bottom:299.530350px;}
.y55{bottom:299.635350px;}
.y68{bottom:299.770350px;}
.yc7{bottom:299.920350px;}
.y11d{bottom:300.070350px;}
.y134{bottom:304.041000px;}
.y1bc{bottom:304.705950px;}
.y224{bottom:305.263500px;}
.y1f{bottom:306.502650px;}
.y163{bottom:307.367550px;}
.y18f{bottom:307.639050px;}
.y54{bottom:317.635350px;}
.y67{bottom:317.770350px;}
.y1d5{bottom:317.785350px;}
.yc6{bottom:317.920350px;}
.y11c{bottom:318.070350px;}
.y90{bottom:320.243100px;}
.y223{bottom:320.263500px;}
.y133{bottom:320.289000px;}
.y162{bottom:323.615550px;}
.y18e{bottom:323.887050px;}
.y1e{bottom:324.502650px;}
.y1bb{bottom:333.709950px;}
.y222{bottom:335.263500px;}
.y53{bottom:335.635350px;}
.y66{bottom:335.770350px;}
.yf9{bottom:335.785350px;}
.yc5{bottom:335.920350px;}
.y11b{bottom:336.070350px;}
.y132{bottom:336.537000px;}
.y161{bottom:339.863550px;}
.y18d{bottom:340.234050px;}
.y1d{bottom:342.502650px;}
.y1ba{bottom:350.209950px;}
.y221{bottom:350.263500px;}
.y131{bottom:352.785000px;}
.y1e5{bottom:353.365350px;}
.y65{bottom:353.770350px;}
.yf8{bottom:353.785350px;}
.yc4{bottom:353.920350px;}
.y11a{bottom:354.070350px;}
.y160{bottom:356.111550px;}
.y18c{bottom:356.482050px;}
.y29{bottom:360.502650px;}
.y220{bottom:365.263500px;}
.ybc{bottom:366.589500px;}
.y130{bottom:369.033000px;}
.y52{bottom:371.230350px;}
.y64{bottom:371.770350px;}
.yf7{bottom:371.785350px;}
.yc3{bottom:371.920350px;}
.y119{bottom:372.070350px;}
.y15f{bottom:372.359550px;}
.y18b{bottom:372.730050px;}
.y1c{bottom:378.099900px;}
.y28{bottom:378.502650px;}
.y21f{bottom:380.263500px;}
.y1b9{bottom:382.601100px;}
.y12f{bottom:385.281000px;}
.y15e{bottom:388.706550px;}
.y18a{bottom:388.978050px;}
.y1e4{bottom:389.365350px;}
.y63{bottom:389.770350px;}
.yf6{bottom:389.785350px;}
.yc2{bottom:389.920350px;}
.y118{bottom:390.070350px;}
.y21e{bottom:395.263500px;}
.y12e{bottom:401.529000px;}
.y1b8{bottom:402.101100px;}
.y15d{bottom:404.954550px;}
.y189{bottom:405.226050px;}
.y62{bottom:407.770350px;}
.yf5{bottom:407.785350px;}
.yc1{bottom:407.920350px;}
.y117{bottom:408.070350px;}
.y21d{bottom:410.263500px;}
.y12d{bottom:417.777000px;}
.y15c{bottom:421.202550px;}
.y188{bottom:421.474050px;}
.y21c{bottom:425.263500px;}
.y51{bottom:425.770350px;}
.yf4{bottom:425.785350px;}
.yc0{bottom:425.920350px;}
.y12c{bottom:434.025000px;}
.y15b{bottom:437.450550px;}
.y187{bottom:437.722050px;}
.y21b{bottom:440.263500px;}
.y116{bottom:443.665350px;}
.y50{bottom:443.770350px;}
.yf3{bottom:443.785350px;}
.ybf{bottom:443.920350px;}
.y12b{bottom:450.273000px;}
.y15a{bottom:453.698550px;}
.y186{bottom:453.970050px;}
.y21a{bottom:455.263500px;}
.y1b{bottom:458.014200px;}
.y1b7{bottom:459.335700px;}
.y1e3{bottom:461.365350px;}
.y4f{bottom:461.770350px;}
.yf2{bottom:461.785350px;}
.y1ce{bottom:461.920350px;}
.y12a{bottom:466.521000px;}
.y159{bottom:469.946550px;}
.y185{bottom:470.218050px;}
.y219{bottom:470.265900px;}
.ybe{bottom:479.515350px;}
.y4e{bottom:479.770350px;}
.yf1{bottom:479.785350px;}
.y115{bottom:479.920350px;}
.y129{bottom:482.769000px;}
.y1b6{bottom:484.847700px;}
.y218{bottom:485.265900px;}
.y1a{bottom:485.359200px;}
.y158{bottom:486.194550px;}
.y184{bottom:486.466050px;}
.y4d{bottom:497.770350px;}
.yf0{bottom:497.785350px;}
.y114{bottom:497.920350px;}
.y128{bottom:499.017000px;}
.y217{bottom:500.265900px;}
.y1b5{bottom:501.095700px;}
.y157{bottom:502.442550px;}
.y183{bottom:502.714050px;}
.y19{bottom:503.359200px;}
.y127{bottom:515.265000px;}
.y216{bottom:515.265900px;}
.y1e2{bottom:515.365350px;}
.y4c{bottom:515.770350px;}
.yef{bottom:515.785350px;}
.y113{bottom:515.920350px;}
.y1b4{bottom:517.343700px;}
.y156{bottom:518.690550px;}
.y182{bottom:518.962050px;}
.y18{bottom:521.359200px;}
.y215{bottom:530.265900px;}
.y126{bottom:531.513000px;}
.y1b3{bottom:533.591700px;}
.y4b{bottom:533.770350px;}
.yee{bottom:533.785350px;}
.y112{bottom:533.920350px;}
.y155{bottom:534.938550px;}
.y181{bottom:535.210050px;}
.y17{bottom:539.359200px;}
.y214{bottom:545.265900px;}
.y125{bottom:547.761000px;}
.y1b2{bottom:549.839700px;}
.y154{bottom:551.186550px;}
.y180{bottom:551.458050px;}
.y4a{bottom:551.770350px;}
.yed{bottom:551.785350px;}
.y111{bottom:551.920350px;}
.y8f{bottom:557.077800px;}
.y16{bottom:557.359200px;}
.y254{bottom:560.263500px;}
.y213{bottom:560.265900px;}
.y124{bottom:564.009000px;}
.y1b1{bottom:566.087700px;}
.y153{bottom:567.434550px;}
.y17f{bottom:567.706050px;}
.y49{bottom:569.770350px;}
.yec{bottom:569.785350px;}
.y110{bottom:569.920350px;}
.y253{bottom:575.263500px;}
.y212{bottom:575.265900px;}
.y15{bottom:575.359200px;}
.y123{bottom:580.257000px;}
.y152{bottom:583.682550px;}
.y17e{bottom:583.954050px;}
.y48{bottom:587.770350px;}
.yeb{bottom:587.785350px;}
.y10f{bottom:587.920350px;}
.y252{bottom:590.263500px;}
.y211{bottom:590.265900px;}
.y14{bottom:593.359200px;}
.y1b0{bottom:595.091700px;}
.y122{bottom:596.505000px;}
.y151{bottom:599.930550px;}
.y17d{bottom:600.202050px;}
.y251{bottom:605.263500px;}
.y210{bottom:605.265900px;}
.y79{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.yea{bottom:605.785350px;}
.y10e{bottom:605.920350px;}
.y8c{bottom:606.055350px;}
.y13{bottom:611.359200px;}
.ybb{bottom:615.542250px;}
.y150{bottom:616.178550px;}
.y17c{bottom:616.450050px;}
.y250{bottom:620.263500px;}
.y20f{bottom:620.265900px;}
.y1e1{bottom:623.365350px;}
.y78{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.ye9{bottom:623.785350px;}
.y10d{bottom:623.920350px;}
.y8b{bottom:624.055350px;}
.y1af{bottom:624.095700px;}
.y121{bottom:628.017000px;}
.y12{bottom:629.359200px;}
.y14f{bottom:632.426550px;}
.y17b{bottom:632.698050px;}
.y24f{bottom:635.263500px;}
.y20e{bottom:635.265900px;}
.y77{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.ye8{bottom:641.785350px;}
.y10c{bottom:641.920350px;}
.y8a{bottom:642.055350px;}
.y11{bottom:647.359200px;}
.y14e{bottom:648.674550px;}
.y17a{bottom:648.946050px;}
.y24e{bottom:650.263500px;}
.y20d{bottom:650.265900px;}
.y1ae{bottom:656.487000px;}
.y44{bottom:659.770350px;}
.ya6{bottom:659.772600px;}
.ye7{bottom:659.785350px;}
.y10b{bottom:659.920350px;}
.yb7{bottom:659.922600px;}
.y89{bottom:660.055350px;}
.y120{bottom:662.905350px;}
.y14d{bottom:664.922550px;}
.y179{bottom:665.194050px;}
.y24d{bottom:665.263500px;}
.y20c{bottom:665.265900px;}
.y10{bottom:665.359200px;}
.y1ad{bottom:675.987000px;}
.y76{bottom:677.230350px;}
.y43{bottom:677.770350px;}
.ya5{bottom:677.772600px;}
.ye6{bottom:677.785350px;}
.y10a{bottom:677.920350px;}
.yb6{bottom:677.922600px;}
.y88{bottom:678.055350px;}
.y24c{bottom:680.263500px;}
.y20b{bottom:680.265900px;}
.y14c{bottom:681.170550px;}
.y178{bottom:681.442050px;}
.y11f{bottom:682.405350px;}
.yf{bottom:683.359200px;}
.y24b{bottom:695.263500px;}
.y20a{bottom:695.265900px;}
.y1ac{bottom:695.487000px;}
.y42{bottom:695.770350px;}
.ya4{bottom:695.772600px;}
.ye5{bottom:695.785350px;}
.y109{bottom:695.920350px;}
.yb5{bottom:695.922600px;}
.y87{bottom:696.055350px;}
.y14b{bottom:697.418550px;}
.y177{bottom:697.690050px;}
.ye{bottom:701.359200px;}
.y24a{bottom:710.263500px;}
.y209{bottom:710.265900px;}
.y14a{bottom:713.666550px;}
.y41{bottom:713.770350px;}
.ya3{bottom:713.772600px;}
.ye4{bottom:713.785350px;}
.y108{bottom:713.920350px;}
.yb4{bottom:713.922600px;}
.y176{bottom:713.938050px;}
.y86{bottom:714.055350px;}
.yd{bottom:719.359200px;}
.y249{bottom:725.263500px;}
.y208{bottom:725.265900px;}
.y149{bottom:729.914550px;}
.y175{bottom:730.186050px;}
.y40{bottom:731.770350px;}
.ya2{bottom:731.772600px;}
.ye3{bottom:731.785350px;}
.y107{bottom:731.920350px;}
.yb3{bottom:731.922600px;}
.y85{bottom:732.055350px;}
.yc{bottom:737.359200px;}
.y248{bottom:740.263500px;}
.y207{bottom:740.265900px;}
.y148{bottom:746.162550px;}
.y174{bottom:746.434050px;}
.y3f{bottom:749.770350px;}
.ya1{bottom:749.772600px;}
.ye2{bottom:749.785350px;}
.y1cd{bottom:749.920350px;}
.yb2{bottom:749.922600px;}
.y84{bottom:750.055350px;}
.y1ab{bottom:752.841450px;}
.y247{bottom:755.263500px;}
.y206{bottom:755.265900px;}
.y147{bottom:762.410550px;}
.y106{bottom:767.515350px;}
.y3e{bottom:767.770350px;}
.ya0{bottom:767.772600px;}
.ye1{bottom:767.785350px;}
.y1cc{bottom:767.920350px;}
.yb1{bottom:767.922600px;}
.y83{bottom:768.055350px;}
.y246{bottom:770.263500px;}
.y205{bottom:770.265900px;}
.y173{bottom:777.946050px;}
.y1aa{bottom:778.375650px;}
.y146{bottom:778.658550px;}
.yb{bottom:782.517000px;}
.y245{bottom:785.263500px;}
.y204{bottom:785.265900px;}
.y3d{bottom:785.770350px;}
.y9f{bottom:785.772600px;}
.ye0{bottom:785.785350px;}
.yb0{bottom:785.922600px;}
.y82{bottom:786.055350px;}
.y1a9{bottom:794.623650px;}
.y145{bottom:794.906550px;}
.ya{bottom:794.968500px;}
.y244{bottom:800.263500px;}
.y203{bottom:800.265900px;}
.y1cb{bottom:803.515350px;}
.y3c{bottom:803.770350px;}
.y9e{bottom:803.772600px;}
.ydf{bottom:803.785350px;}
.yaf{bottom:803.922600px;}
.y81{bottom:804.055350px;}
.y1a8{bottom:810.871650px;}
.y172{bottom:812.845350px;}
.y243{bottom:815.263500px;}
.y202{bottom:815.265900px;}
.y3b{bottom:821.770350px;}
.y9d{bottom:821.772600px;}
.yde{bottom:821.785350px;}
.yae{bottom:821.922600px;}
.y80{bottom:822.055350px;}
.y144{bottom:826.418550px;}
.y9{bottom:826.683600px;}
.y1a7{bottom:827.119650px;}
.y242{bottom:830.263500px;}
.y201{bottom:830.265900px;}
.y3a{bottom:839.770350px;}
.y9c{bottom:839.772600px;}
.ydd{bottom:839.785350px;}
.yad{bottom:839.922600px;}
.y7f{bottom:840.055350px;}
.y8{bottom:840.183600px;}
.y1a6{bottom:843.367650px;}
.y241{bottom:845.263500px;}
.y200{bottom:845.265900px;}
.y39{bottom:857.770350px;}
.y9b{bottom:857.772600px;}
.ydc{bottom:857.785350px;}
.yac{bottom:857.922600px;}
.y7e{bottom:858.055350px;}
.y7{bottom:859.108950px;}
.y1a5{bottom:859.615650px;}
.y240{bottom:860.263500px;}
.y1ff{bottom:860.265900px;}
.y143{bottom:861.310350px;}
.y23f{bottom:875.263500px;}
.y1fe{bottom:875.265900px;}
.y1e0{bottom:875.365350px;}
.y38{bottom:875.770350px;}
.y9a{bottom:875.772600px;}
.ydb{bottom:875.785350px;}
.y1a4{bottom:875.863650px;}
.yab{bottom:875.922600px;}
.y7d{bottom:876.055350px;}
.y6{bottom:887.830950px;}
.y23e{bottom:890.263500px;}
.y1fd{bottom:890.265900px;}
.y1a3{bottom:892.111650px;}
.y37{bottom:893.770350px;}
.y99{bottom:893.772600px;}
.yda{bottom:893.785350px;}
.yaa{bottom:893.922600px;}
.y7c{bottom:894.055350px;}
.y23d{bottom:905.263500px;}
.y1fc{bottom:905.265900px;}
.y1a2{bottom:908.371350px;}
.y36{bottom:911.770350px;}
.y98{bottom:911.772600px;}
.yd9{bottom:911.785350px;}
.y23c{bottom:920.263500px;}
.y1fb{bottom:920.265900px;}
.ya9{bottom:929.517600px;}
.y7b{bottom:929.650350px;}
.y35{bottom:929.770350px;}
.y97{bottom:929.772600px;}
.yd8{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y23b{bottom:935.263500px;}
.y1fa{bottom:935.265900px;}
.y1a1{bottom:937.375350px;}
.y34{bottom:947.770350px;}
.y96{bottom:947.772600px;}
.yd7{bottom:947.785350px;}
.y23a{bottom:950.263500px;}
.y1f9{bottom:950.265900px;}
.y239{bottom:965.263500px;}
.y1f8{bottom:965.265900px;}
.y7a{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y95{bottom:965.772600px;}
.yd6{bottom:965.785350px;}
.y1a0{bottom:966.379350px;}
.y4{bottom:970.465200px;}
.y238{bottom:980.263500px;}
.y1f7{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y94{bottom:983.772600px;}
.yd5{bottom:983.785350px;}
.y237{bottom:995.263500px;}
.y1f6{bottom:995.265900px;}
.y19f{bottom:998.770350px;}
.y31{bottom:1001.770350px;}
.y93{bottom:1001.772600px;}
.yd4{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y236{bottom:1010.263500px;}
.y1f5{bottom:1010.265900px;}
.y19e{bottom:1018.270350px;}
.y30{bottom:1019.770350px;}
.ya8{bottom:1019.772600px;}
.yd3{bottom:1019.785350px;}
.y235{bottom:1025.263500px;}
.y1f4{bottom:1025.265900px;}
.y92{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.ya7{bottom:1037.772600px;}
.yd2{bottom:1037.785350px;}
.y234{bottom:1040.263500px;}
.y1f3{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y91{bottom:1132.415100px;}
.ybd{bottom:1132.417500px;}
.y75{bottom:1132.418700px;}
.y233{bottom:1132.423500px;}
.y142{bottom:1132.426050px;}
.y1ca{bottom:1132.465950px;}
.y19d{bottom:1132.471050px;}
.y171{bottom:1132.475550px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h16{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h12{height:41.660156px;}
.h10{height:41.689453px;}
.h17{height:42.107588px;}
.h11{height:42.117188px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h14{height:47.053120px;}
.h13{height:47.133520px;}
.hc{height:52.646484px;}
.h15{height:54.266484px;}
.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;}
.xa{left:76.535400px;}
.x19{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:99.921300px;}
.x26{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x28{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.xc{left:144.710400px;}
.x16{left:148.818900px;}
.x14{left:170.078700px;}
.x25{left:194.255400px;}
.x5{left:212.876400px;}
.x11{left:232.360350px;}
.x1b{left:299.365350px;}
.x1c{left:321.649350px;}
.x1a{left:400.741350px;}
.x1d{left:448.225350px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x12{left:478.330350px;}
.x7{left:480.471000px;}
.x27{left:482.579400px;}
.xe{left:491.105400px;}
.x29{left:503.863350px;}
.x13{left:512.350350px;}
.x17{left:579.425400px;}
.x1e{left:581.449350px;}
.x1f{left:584.401350px;}
.x23{left:591.910350px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x21{left:711.949350px;}
.x20{left:715.333350px;}
.x22{left:721.693350px;}
.xf{left:728.391600px;}
.x24{left:743.868150px;}
.x15{left:749.654700px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:20.070400pt;}
.v1{vertical-align:27.005867pt;}
.ls4f{letter-spacing:-6.880000pt;}
.ls4b{letter-spacing:-6.453333pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls3e{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.106667pt;}
.ls7e{letter-spacing:-0.085333pt;}
.lsf{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls5c{letter-spacing:0.042667pt;}
.ls37{letter-spacing:0.053333pt;}
.ls6e{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls6d{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.170667pt;}
.ls42{letter-spacing:0.213333pt;}
.ls64{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.266667pt;}
.ls56{letter-spacing:0.298667pt;}
.ls36{letter-spacing:0.320000pt;}
.ls74{letter-spacing:0.341333pt;}
.ls25{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls7a{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls7b{letter-spacing:0.682667pt;}
.ls18{letter-spacing:0.693333pt;}
.ls66{letter-spacing:0.725333pt;}
.ls40{letter-spacing:0.746667pt;}
.ls70{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls61{letter-spacing:0.810667pt;}
.ls2a{letter-spacing:0.853333pt;}
.ls73{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls15{letter-spacing:0.960000pt;}
.ls31{letter-spacing:1.013333pt;}
.ls6c{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls6f{letter-spacing:1.109333pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls46{letter-spacing:1.173333pt;}
.ls60{letter-spacing:1.194667pt;}
.ls4{letter-spacing:1.226667pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls2d{letter-spacing:1.333333pt;}
.ls65{letter-spacing:1.365333pt;}
.lsa{letter-spacing:1.386667pt;}
.ls3b{letter-spacing:1.440000pt;}
.ls43{letter-spacing:1.493333pt;}
.ls58{letter-spacing:1.536000pt;}
.ls32{letter-spacing:1.546667pt;}
.ls2f{letter-spacing:1.600000pt;}
.ls68{letter-spacing:1.621333pt;}
.ls2e{letter-spacing:1.653333pt;}
.ls5e{letter-spacing:1.664000pt;}
.ls17{letter-spacing:1.706667pt;}
.ls44{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.813333pt;}
.ls12{letter-spacing:1.866667pt;}
.ls7c{letter-spacing:1.877333pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls67{letter-spacing:1.962667pt;}
.ls1c{letter-spacing:1.973333pt;}
.ls16{letter-spacing:2.026667pt;}
.ls75{letter-spacing:2.048000pt;}
.ls3d{letter-spacing:2.080000pt;}
.ls62{letter-spacing:2.090667pt;}
.ls22{letter-spacing:2.133333pt;}
.ls7d{letter-spacing:2.176000pt;}
.ls1a{letter-spacing:2.186667pt;}
.ls59{letter-spacing:2.218667pt;}
.ls33{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:2.293333pt;}
.ls5f{letter-spacing:2.304000pt;}
.ls50{letter-spacing:2.346667pt;}
.ls49{letter-spacing:2.400000pt;}
.ls63{letter-spacing:2.432000pt;}
.ls29{letter-spacing:2.453333pt;}
.ls3{letter-spacing:2.506667pt;}
.ls6b{letter-spacing:2.517333pt;}
.ls34{letter-spacing:2.560000pt;}
.ls47{letter-spacing:2.613333pt;}
.ls6a{letter-spacing:2.645333pt;}
.ls1{letter-spacing:2.720000pt;}
.ls52{letter-spacing:2.773333pt;}
.ls3c{letter-spacing:2.826667pt;}
.ls41{letter-spacing:2.880000pt;}
.ls5b{letter-spacing:2.901333pt;}
.ls20{letter-spacing:2.933333pt;}
.ls72{letter-spacing:2.944000pt;}
.ls1b{letter-spacing:2.986667pt;}
.ls4e{letter-spacing:3.040000pt;}
.ls2{letter-spacing:3.093333pt;}
.ls30{letter-spacing:3.200000pt;}
.ls78{letter-spacing:3.242667pt;}
.lsb{letter-spacing:3.253333pt;}
.ls3a{letter-spacing:3.360000pt;}
.ls8{letter-spacing:3.413333pt;}
.ls6{letter-spacing:3.466667pt;}
.ls45{letter-spacing:3.626667pt;}
.ls4d{letter-spacing:3.733333pt;}
.ls77{letter-spacing:3.840000pt;}
.ls76{letter-spacing:3.882667pt;}
.ls69{letter-spacing:4.096000pt;}
.ls71{letter-spacing:4.138667pt;}
.ls3f{letter-spacing:4.426667pt;}
.ls48{letter-spacing:4.480000pt;}
.ls14{letter-spacing:4.800000pt;}
.ls24{letter-spacing:5.013333pt;}
.ls54{letter-spacing:5.386667pt;}
.ls4a{letter-spacing:5.440000pt;}
.ls39{letter-spacing:5.546667pt;}
.ls38{letter-spacing:5.866667pt;}
.ls53{letter-spacing:6.026667pt;}
.ls4c{letter-spacing:6.506667pt;}
.ls28{letter-spacing:6.613333pt;}
.ls55{letter-spacing:7.413333pt;}
.ls51{letter-spacing:418.816000pt;}
.ws60{word-spacing:-16.480000pt;}
.ws44{word-spacing:-15.413333pt;}
.ws22{word-spacing:-14.826667pt;}
.ws3a{word-spacing:-14.560000pt;}
.ws58{word-spacing:-14.506667pt;}
.ws3c{word-spacing:-14.400000pt;}
.ws3b{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.493333pt;}
.wsd{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.333333pt;}
.ws66{word-spacing:-13.098667pt;}
.ws68{word-spacing:-13.013333pt;}
.ws67{word-spacing:-12.202667pt;}
.wse{word-spacing:-11.861333pt;}
.ws64{word-spacing:-11.520000pt;}
.ws7a{word-spacing:-11.477333pt;}
.ws62{word-spacing:-11.093333pt;}
.ws65{word-spacing:-10.965333pt;}
.ws7d{word-spacing:-10.922667pt;}
.ws7b{word-spacing:-10.880000pt;}
.ws61{word-spacing:-10.837333pt;}
.ws7c{word-spacing:-10.752000pt;}
.ws63{word-spacing:-10.666667pt;}
.ws7e{word-spacing:-10.538667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws81{word-spacing:-2.944000pt;}
.ws16{word-spacing:-2.933333pt;}
.ws3{word-spacing:-2.565333pt;}
.ws56{word-spacing:-2.346667pt;}
.ws4{word-spacing:-2.072000pt;}
.ws17{word-spacing:-1.973333pt;}
.ws86{word-spacing:-1.962667pt;}
.ws48{word-spacing:-1.600000pt;}
.ws5f{word-spacing:-1.386667pt;}
.ws5c{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.120000pt;}
.ws43{word-spacing:-1.066667pt;}
.ws83{word-spacing:-0.896000pt;}
.ws18{word-spacing:-0.853333pt;}
.ws70{word-spacing:-0.810667pt;}
.ws55{word-spacing:-0.768000pt;}
.ws75{word-spacing:-0.725333pt;}
.ws84{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws6e{word-spacing:-0.384000pt;}
.ws1d{word-spacing:-0.373333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws71{word-spacing:-0.298667pt;}
.ws87{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.160000pt;}
.ws7f{word-spacing:-0.128000pt;}
.ws49{word-spacing:-0.106667pt;}
.ws78{word-spacing:-0.085333pt;}
.ws23{word-spacing:-0.053333pt;}
.ws6d{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053333pt;}
.ws80{word-spacing:0.085333pt;}
.ws1e{word-spacing:0.106667pt;}
.ws85{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.266667pt;}
.ws29{word-spacing:0.320000pt;}
.ws28{word-spacing:0.341333pt;}
.ws9{word-spacing:0.373333pt;}
.ws59{word-spacing:0.426667pt;}
.ws3f{word-spacing:0.480000pt;}
.wsf{word-spacing:0.586667pt;}
.ws1f{word-spacing:0.640000pt;}
.ws4b{word-spacing:0.768000pt;}
.ws1b{word-spacing:0.800000pt;}
.ws2d{word-spacing:0.810667pt;}
.ws76{word-spacing:0.896000pt;}
.ws5a{word-spacing:0.906667pt;}
.ws21{word-spacing:0.960000pt;}
.ws26{word-spacing:1.066667pt;}
.ws2b{word-spacing:1.120000pt;}
.ws39{word-spacing:1.173333pt;}
.ws19{word-spacing:1.226667pt;}
.ws77{word-spacing:1.280000pt;}
.ws36{word-spacing:1.333333pt;}
.ws25{word-spacing:1.386667pt;}
.ws13{word-spacing:1.440000pt;}
.ws79{word-spacing:1.450667pt;}
.ws1c{word-spacing:1.493333pt;}
.ws2c{word-spacing:1.600000pt;}
.ws74{word-spacing:1.664000pt;}
.ws35{word-spacing:1.760000pt;}
.ws2f{word-spacing:1.813333pt;}
.wsa{word-spacing:1.866667pt;}
.ws50{word-spacing:1.973333pt;}
.ws82{word-spacing:2.005333pt;}
.ws27{word-spacing:2.026667pt;}
.ws57{word-spacing:2.080000pt;}
.ws72{word-spacing:2.133333pt;}
.ws7{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.293333pt;}
.ws2e{word-spacing:2.304000pt;}
.ws5d{word-spacing:2.346667pt;}
.ws8{word-spacing:2.453333pt;}
.ws1a{word-spacing:2.506667pt;}
.ws6f{word-spacing:2.517333pt;}
.ws6a{word-spacing:2.560000pt;}
.ws32{word-spacing:2.720000pt;}
.ws73{word-spacing:2.773333pt;}
.ws20{word-spacing:2.880000pt;}
.ws34{word-spacing:2.933333pt;}
.ws5b{word-spacing:3.040000pt;}
.ws41{word-spacing:3.093333pt;}
.ws14{word-spacing:3.200000pt;}
.ws15{word-spacing:3.306667pt;}
.ws4a{word-spacing:3.413333pt;}
.ws6c{word-spacing:3.498667pt;}
.ws40{word-spacing:3.520000pt;}
.ws6b{word-spacing:3.541333pt;}
.ws47{word-spacing:3.573333pt;}
.ws31{word-spacing:3.680000pt;}
.ws2a{word-spacing:3.733333pt;}
.ws37{word-spacing:3.946667pt;}
.wsb{word-spacing:4.000000pt;}
.ws38{word-spacing:4.053333pt;}
.ws42{word-spacing:4.106667pt;}
.ws4e{word-spacing:4.266667pt;}
.ws24{word-spacing:4.320000pt;}
.ws6{word-spacing:4.373333pt;}
.ws5{word-spacing:4.426667pt;}
.ws69{word-spacing:4.906667pt;}
.ws3e{word-spacing:6.453333pt;}
.ws4f{word-spacing:6.880000pt;}
.ws45{word-spacing:232.448000pt;}
.ws4c{word-spacing:233.045333pt;}
.ws4d{word-spacing:243.712000pt;}
.ws46{word-spacing:341.077333pt;}
.ws52{word-spacing:362.282667pt;}
.ws51{word-spacing:382.165333pt;}
.ws53{word-spacing:400.213333pt;}
._b{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._4{margin-left:-6.773333pt;}
._9{margin-left:-5.866667pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.093333pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._6{width:0.906667pt;}
._2{width:2.072000pt;}
._a{width:3.216000pt;}
._7{width:4.800000pt;}
._d{width:5.973333pt;}
._8{width:7.360000pt;}
._73{width:120.106667pt;}
._72{width:173.440000pt;}
._6f{width:187.866667pt;}
._74{width:190.378667pt;}
._6c{width:192.768000pt;}
._70{width:196.845333pt;}
._6d{width:204.245333pt;}
._39{width:233.813333pt;}
._75{width:238.378667pt;}
._21{width:243.712000pt;}
._33{width:253.408533pt;}
._1d{width:254.378667pt;}
._12{width:265.045333pt;}
._79{width:317.610667pt;}
._3c{width:318.976000pt;}
._3a{width:321.029333pt;}
._22{width:330.410667pt;}
._64{width:335.792000pt;}
._f{width:339.882667pt;}
._1e{width:341.077333pt;}
._84{width:346.368000pt;}
._7e{width:347.736000pt;}
._13{width:351.744000pt;}
._88{width:353.621333pt;}
._67{width:356.352000pt;}
._86{width:358.314667pt;}
._77{width:362.624000pt;}
._8d{width:365.482667pt;}
._65{width:369.962667pt;}
._5d{width:374.485333pt;}
._8b{width:375.424000pt;}
._37{width:385.152000pt;}
._82{width:390.058667pt;}
._87{width:391.850667pt;}
._23{width:395.818667pt;}
._8c{width:402.517333pt;}
._1f{width:406.485333pt;}
._78{width:411.178667pt;}
._8a{width:412.757333pt;}
._14{width:417.152000pt;}
._4d{width:426.834667pt;}
._16{width:427.818667pt;}
._80{width:432.213333pt;}
._85{width:437.162667pt;}
._71{width:442.026667pt;}
._10{width:447.360000pt;}
._7c{width:448.682667pt;}
._76{width:451.541333pt;}
._6e{width:457.472000pt;}
._7d{width:459.776000pt;}
._7f{width:469.205333pt;}
._83{width:470.485333pt;}
._31{width:527.018667pt;}
._81{width:533.546667pt;}
._4f{width:543.829333pt;}
._53{width:549.717333pt;}
._7a{width:553.770667pt;}
._61{width:556.842667pt;}
._54{width:561.578667pt;}
._62{width:568.704000pt;}
._2e{width:572.032000pt;}
._29{width:588.672000pt;}
._55{width:592.341333pt;}
._30{width:594.517333pt;}
._57{width:598.357333pt;}
._56{width:603.093333pt;}
._42{width:605.482667pt;}
._35{width:611.157333pt;}
._5f{width:618.496000pt;}
._2f{width:620.586667pt;}
._46{width:623.232000pt;}
._52{width:627.882667pt;}
._60{width:630.357333pt;}
._26{width:633.685333pt;}
._4e{width:635.050667pt;}
._5e{width:638.634667pt;}
._51{width:643.285333pt;}
._5c{width:645.717333pt;}
._2c{width:651.434667pt;}
._48{width:653.994667pt;}
._43{width:656.384000pt;}
._4a{width:660.010667pt;}
._2d{width:660.949333pt;}
._89{width:662.485333pt;}
._49{width:664.746667pt;}
._28{width:666.837333pt;}
._19{width:669.226667pt;}
._4b{width:674.133333pt;}
._1a{width:675.200000pt;}
._1b{width:677.546667pt;}
._2b{width:681.088000pt;}
._27{width:682.240000pt;}
._50{width:683.648000pt;}
._34{width:684.672000pt;}
._58{width:688.341333pt;}
._45{width:689.536000pt;}
._32{width:694.058667pt;}
._4c{width:695.424000pt;}
._41{width:696.704000pt;}
._66{width:701.098667pt;}
._44{width:704.938667pt;}
._25{width:713.088000pt;}
._1c{width:714.282667pt;}
._68{width:717.781333pt;}
._5b{width:719.232000pt;}
._24{width:722.560000pt;}
._5a{width:728.618667pt;}
._15{width:733.226667pt;}
._3d{width:735.786667pt;}
._7b{width:737.450667pt;}
._17{width:739.200000pt;}
._36{width:745.258667pt;}
._59{width:750.037333pt;}
._3f{width:757.077333pt;}
._18{width:765.269333pt;}
._2a{width:774.656000pt;}
._47{width:783.189333pt;}
._20{width:787.264000pt;}
._11{width:797.930667pt;}
._38{width:802.133333pt;}
._3e{width:806.912000pt;}
._3b{width:809.962667pt;}
._40{width:818.773333pt;}
._6b{width:838.656000pt;}
._6a{width:848.042667pt;}
._e{width:859.093333pt;}
._69{width:869.461333pt;}
._63{width:1208.405333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:24.874667pt;}
.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;}
.y2e{bottom:42.468667pt;}
.y1f2{bottom:73.886133pt;}
.y141{bottom:73.950267pt;}
.y1df{bottom:74.336533pt;}
.y61{bottom:74.342533pt;}
.yba{bottom:74.365467pt;}
.y74{bottom:74.462533pt;}
.y1d4{bottom:74.595867pt;}
.y105{bottom:74.609200pt;}
.yd1{bottom:74.729200pt;}
.y1c9{bottom:74.860400pt;}
.y8e{bottom:75.131867pt;}
.y170{bottom:77.226267pt;}
.y19c{bottom:77.467600pt;}
.y2b{bottom:78.246000pt;}
.y232{bottom:84.678667pt;}
.y1f1{bottom:87.219467pt;}
.yb9{bottom:88.360133pt;}
.y140{bottom:88.616933pt;}
.y8d{bottom:89.126533pt;}
.y60{bottom:90.342533pt;}
.y1de{bottom:90.355867pt;}
.y73{bottom:90.462533pt;}
.y1d3{bottom:90.595867pt;}
.y104{bottom:90.609200pt;}
.yd0{bottom:90.729200pt;}
.y2a{bottom:91.576000pt;}
.y1c8{bottom:97.537733pt;}
.y231{bottom:98.012000pt;}
.y16f{bottom:99.903600pt;}
.y19b{bottom:100.144933pt;}
.y1f0{bottom:100.552800pt;}
.yb8{bottom:102.354800pt;}
.y5f{bottom:106.342533pt;}
.y1dd{bottom:106.355867pt;}
.y72{bottom:106.462533pt;}
.y1d2{bottom:106.595867pt;}
.y103{bottom:106.609200pt;}
.ycf{bottom:106.729200pt;}
.y13f{bottom:111.294267pt;}
.y230{bottom:111.345333pt;}
.y1c7{bottom:111.980400pt;}
.y1ef{bottom:113.886133pt;}
.y16e{bottom:114.346267pt;}
.y19a{bottom:114.587600pt;}
.y5e{bottom:122.342533pt;}
.y1dc{bottom:122.355867pt;}
.y71{bottom:122.462533pt;}
.y1d1{bottom:122.595867pt;}
.y102{bottom:122.609200pt;}
.y22f{bottom:124.678667pt;}
.y13e{bottom:125.736933pt;}
.y1c6{bottom:126.423067pt;}
.y1ee{bottom:127.219467pt;}
.y16d{bottom:128.788933pt;}
.y199{bottom:129.030267pt;}
.y22e{bottom:138.012000pt;}
.y5d{bottom:138.342533pt;}
.y1db{bottom:138.355867pt;}
.yce{bottom:138.369200pt;}
.y70{bottom:138.462533pt;}
.y1d0{bottom:138.595867pt;}
.y101{bottom:138.609200pt;}
.y13d{bottom:140.274667pt;}
.y1ed{bottom:140.552800pt;}
.y1c5{bottom:140.865733pt;}
.y16c{bottom:143.231600pt;}
.y198{bottom:143.472933pt;}
.y27{bottom:144.446800pt;}
.y22d{bottom:151.345333pt;}
.y1ec{bottom:153.886133pt;}
.y5c{bottom:154.342533pt;}
.y1da{bottom:154.355867pt;}
.y6f{bottom:154.462533pt;}
.y1cf{bottom:154.595867pt;}
.y100{bottom:154.609200pt;}
.y13c{bottom:154.717333pt;}
.y1c4{bottom:155.308400pt;}
.y16b{bottom:157.674267pt;}
.y197{bottom:157.915600pt;}
.y26{bottom:160.446800pt;}
.y22c{bottom:164.678667pt;}
.y1eb{bottom:167.219467pt;}
.y13b{bottom:169.160000pt;}
.y1c3{bottom:169.751067pt;}
.y5b{bottom:170.342533pt;}
.y1d9{bottom:170.355867pt;}
.y6e{bottom:170.462533pt;}
.ycd{bottom:170.595867pt;}
.yff{bottom:170.609200pt;}
.y16a{bottom:172.116933pt;}
.y196{bottom:172.358267pt;}
.y25{bottom:176.446800pt;}
.y22b{bottom:178.012000pt;}
.y1ea{bottom:180.552800pt;}
.y13a{bottom:183.602667pt;}
.y1c2{bottom:184.193733pt;}
.y5a{bottom:186.342533pt;}
.y1d8{bottom:186.355867pt;}
.y6d{bottom:186.462533pt;}
.y169{bottom:186.559600pt;}
.ycc{bottom:186.595867pt;}
.yfe{bottom:186.609200pt;}
.y195{bottom:186.800933pt;}
.y22a{bottom:191.345333pt;}
.y24{bottom:192.446800pt;}
.y1e9{bottom:193.886133pt;}
.y139{bottom:198.045333pt;}
.y1c1{bottom:198.636400pt;}
.y168{bottom:201.002267pt;}
.y194{bottom:201.243600pt;}
.y59{bottom:202.342533pt;}
.y1d7{bottom:202.355867pt;}
.y6c{bottom:202.462533pt;}
.ycb{bottom:202.595867pt;}
.yfd{bottom:202.609200pt;}
.y229{bottom:204.678667pt;}
.y1e8{bottom:207.219467pt;}
.y23{bottom:208.446800pt;}
.y138{bottom:212.488000pt;}
.y1c0{bottom:213.079067pt;}
.y167{bottom:215.444933pt;}
.y193{bottom:215.686267pt;}
.y228{bottom:218.012000pt;}
.y11e{bottom:218.249200pt;}
.y58{bottom:218.342533pt;}
.y6b{bottom:218.462533pt;}
.yca{bottom:218.595867pt;}
.yfc{bottom:218.609200pt;}
.y1e7{bottom:220.552800pt;}
.y22{bottom:224.446800pt;}
.y137{bottom:226.930667pt;}
.y1bf{bottom:227.521733pt;}
.y166{bottom:229.887600pt;}
.y192{bottom:230.128933pt;}
.y227{bottom:231.345333pt;}
.y1d6{bottom:233.995867pt;}
.y57{bottom:234.342533pt;}
.y6a{bottom:234.462533pt;}
.yc9{bottom:234.595867pt;}
.yfb{bottom:234.609200pt;}
.y21{bottom:240.446800pt;}
.y136{bottom:241.373333pt;}
.y1be{bottom:241.964400pt;}
.y165{bottom:244.330267pt;}
.y191{bottom:244.571600pt;}
.y226{bottom:244.678667pt;}
.y1e6{bottom:249.982533pt;}
.y56{bottom:250.342533pt;}
.y69{bottom:250.462533pt;}
.yc8{bottom:250.595867pt;}
.y135{bottom:255.816000pt;}
.y1bd{bottom:256.407067pt;}
.y20{bottom:256.446800pt;}
.y225{bottom:258.012000pt;}
.y164{bottom:258.772933pt;}
.y190{bottom:259.014267pt;}
.yfa{bottom:266.249200pt;}
.y55{bottom:266.342533pt;}
.y68{bottom:266.462533pt;}
.yc7{bottom:266.595867pt;}
.y11d{bottom:266.729200pt;}
.y134{bottom:270.258667pt;}
.y1bc{bottom:270.849733pt;}
.y224{bottom:271.345333pt;}
.y1f{bottom:272.446800pt;}
.y163{bottom:273.215600pt;}
.y18f{bottom:273.456933pt;}
.y54{bottom:282.342533pt;}
.y67{bottom:282.462533pt;}
.y1d5{bottom:282.475867pt;}
.yc6{bottom:282.595867pt;}
.y11c{bottom:282.729200pt;}
.y90{bottom:284.660533pt;}
.y223{bottom:284.678667pt;}
.y133{bottom:284.701333pt;}
.y162{bottom:287.658267pt;}
.y18e{bottom:287.899600pt;}
.y1e{bottom:288.446800pt;}
.y1bb{bottom:296.631067pt;}
.y222{bottom:298.012000pt;}
.y53{bottom:298.342533pt;}
.y66{bottom:298.462533pt;}
.yf9{bottom:298.475867pt;}
.yc5{bottom:298.595867pt;}
.y11b{bottom:298.729200pt;}
.y132{bottom:299.144000pt;}
.y161{bottom:302.100933pt;}
.y18d{bottom:302.430267pt;}
.y1d{bottom:304.446800pt;}
.y1ba{bottom:311.297733pt;}
.y221{bottom:311.345333pt;}
.y131{bottom:313.586667pt;}
.y1e5{bottom:314.102533pt;}
.y65{bottom:314.462533pt;}
.yf8{bottom:314.475867pt;}
.yc4{bottom:314.595867pt;}
.y11a{bottom:314.729200pt;}
.y160{bottom:316.543600pt;}
.y18c{bottom:316.872933pt;}
.y29{bottom:320.446800pt;}
.y220{bottom:324.678667pt;}
.ybc{bottom:325.857333pt;}
.y130{bottom:328.029333pt;}
.y52{bottom:329.982533pt;}
.y64{bottom:330.462533pt;}
.yf7{bottom:330.475867pt;}
.yc3{bottom:330.595867pt;}
.y119{bottom:330.729200pt;}
.y15f{bottom:330.986267pt;}
.y18b{bottom:331.315600pt;}
.y1c{bottom:336.088800pt;}
.y28{bottom:336.446800pt;}
.y21f{bottom:338.012000pt;}
.y1b9{bottom:340.089867pt;}
.y12f{bottom:342.472000pt;}
.y15e{bottom:345.516933pt;}
.y18a{bottom:345.758267pt;}
.y1e4{bottom:346.102533pt;}
.y63{bottom:346.462533pt;}
.yf6{bottom:346.475867pt;}
.yc2{bottom:346.595867pt;}
.y118{bottom:346.729200pt;}
.y21e{bottom:351.345333pt;}
.y12e{bottom:356.914667pt;}
.y1b8{bottom:357.423200pt;}
.y15d{bottom:359.959600pt;}
.y189{bottom:360.200933pt;}
.y62{bottom:362.462533pt;}
.yf5{bottom:362.475867pt;}
.yc1{bottom:362.595867pt;}
.y117{bottom:362.729200pt;}
.y21d{bottom:364.678667pt;}
.y12d{bottom:371.357333pt;}
.y15c{bottom:374.402267pt;}
.y188{bottom:374.643600pt;}
.y21c{bottom:378.012000pt;}
.y51{bottom:378.462533pt;}
.yf4{bottom:378.475867pt;}
.yc0{bottom:378.595867pt;}
.y12c{bottom:385.800000pt;}
.y15b{bottom:388.844933pt;}
.y187{bottom:389.086267pt;}
.y21b{bottom:391.345333pt;}
.y116{bottom:394.369200pt;}
.y50{bottom:394.462533pt;}
.yf3{bottom:394.475867pt;}
.ybf{bottom:394.595867pt;}
.y12b{bottom:400.242667pt;}
.y15a{bottom:403.287600pt;}
.y186{bottom:403.528933pt;}
.y21a{bottom:404.678667pt;}
.y1b{bottom:407.123733pt;}
.y1b7{bottom:408.298400pt;}
.y1e3{bottom:410.102533pt;}
.y4f{bottom:410.462533pt;}
.yf2{bottom:410.475867pt;}
.y1ce{bottom:410.595867pt;}
.y12a{bottom:414.685333pt;}
.y159{bottom:417.730267pt;}
.y185{bottom:417.971600pt;}
.y219{bottom:418.014133pt;}
.ybe{bottom:426.235867pt;}
.y4e{bottom:426.462533pt;}
.yf1{bottom:426.475867pt;}
.y115{bottom:426.595867pt;}
.y129{bottom:429.128000pt;}
.y1b6{bottom:430.975733pt;}
.y218{bottom:431.347467pt;}
.y1a{bottom:431.430400pt;}
.y158{bottom:432.172933pt;}
.y184{bottom:432.414267pt;}
.y4d{bottom:442.462533pt;}
.yf0{bottom:442.475867pt;}
.y114{bottom:442.595867pt;}
.y128{bottom:443.570667pt;}
.y217{bottom:444.680800pt;}
.y1b5{bottom:445.418400pt;}
.y157{bottom:446.615600pt;}
.y183{bottom:446.856933pt;}
.y19{bottom:447.430400pt;}
.y127{bottom:458.013333pt;}
.y216{bottom:458.014133pt;}
.y1e2{bottom:458.102533pt;}
.y4c{bottom:458.462533pt;}
.yef{bottom:458.475867pt;}
.y113{bottom:458.595867pt;}
.y1b4{bottom:459.861067pt;}
.y156{bottom:461.058267pt;}
.y182{bottom:461.299600pt;}
.y18{bottom:463.430400pt;}
.y215{bottom:471.347467pt;}
.y126{bottom:472.456000pt;}
.y1b3{bottom:474.303733pt;}
.y4b{bottom:474.462533pt;}
.yee{bottom:474.475867pt;}
.y112{bottom:474.595867pt;}
.y155{bottom:475.500933pt;}
.y181{bottom:475.742267pt;}
.y17{bottom:479.430400pt;}
.y214{bottom:484.680800pt;}
.y125{bottom:486.898667pt;}
.y1b2{bottom:488.746400pt;}
.y154{bottom:489.943600pt;}
.y180{bottom:490.184933pt;}
.y4a{bottom:490.462533pt;}
.yed{bottom:490.475867pt;}
.y111{bottom:490.595867pt;}
.y8f{bottom:495.180267pt;}
.y16{bottom:495.430400pt;}
.y254{bottom:498.012000pt;}
.y213{bottom:498.014133pt;}
.y124{bottom:501.341333pt;}
.y1b1{bottom:503.189067pt;}
.y153{bottom:504.386267pt;}
.y17f{bottom:504.627600pt;}
.y49{bottom:506.462533pt;}
.yec{bottom:506.475867pt;}
.y110{bottom:506.595867pt;}
.y253{bottom:511.345333pt;}
.y212{bottom:511.347467pt;}
.y15{bottom:511.430400pt;}
.y123{bottom:515.784000pt;}
.y152{bottom:518.828933pt;}
.y17e{bottom:519.070267pt;}
.y48{bottom:522.462533pt;}
.yeb{bottom:522.475867pt;}
.y10f{bottom:522.595867pt;}
.y252{bottom:524.678667pt;}
.y211{bottom:524.680800pt;}
.y14{bottom:527.430400pt;}
.y1b0{bottom:528.970400pt;}
.y122{bottom:530.226667pt;}
.y151{bottom:533.271600pt;}
.y17d{bottom:533.512933pt;}
.y251{bottom:538.012000pt;}
.y210{bottom:538.014133pt;}
.y79{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.yea{bottom:538.475867pt;}
.y10e{bottom:538.595867pt;}
.y8c{bottom:538.715867pt;}
.y13{bottom:543.430400pt;}
.ybb{bottom:547.148667pt;}
.y150{bottom:547.714267pt;}
.y17c{bottom:547.955600pt;}
.y250{bottom:551.345333pt;}
.y20f{bottom:551.347467pt;}
.y1e1{bottom:554.102533pt;}
.y78{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.ye9{bottom:554.475867pt;}
.y10d{bottom:554.595867pt;}
.y8b{bottom:554.715867pt;}
.y1af{bottom:554.751733pt;}
.y121{bottom:558.237333pt;}
.y12{bottom:559.430400pt;}
.y14f{bottom:562.156933pt;}
.y17b{bottom:562.398267pt;}
.y24f{bottom:564.678667pt;}
.y20e{bottom:564.680800pt;}
.y77{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.ye8{bottom:570.475867pt;}
.y10c{bottom:570.595867pt;}
.y8a{bottom:570.715867pt;}
.y11{bottom:575.430400pt;}
.y14e{bottom:576.599600pt;}
.y17a{bottom:576.840933pt;}
.y24e{bottom:578.012000pt;}
.y20d{bottom:578.014133pt;}
.y1ae{bottom:583.544000pt;}
.y44{bottom:586.462533pt;}
.ya6{bottom:586.464533pt;}
.ye7{bottom:586.475867pt;}
.y10b{bottom:586.595867pt;}
.yb7{bottom:586.597867pt;}
.y89{bottom:586.715867pt;}
.y120{bottom:589.249200pt;}
.y14d{bottom:591.042267pt;}
.y179{bottom:591.283600pt;}
.y24d{bottom:591.345333pt;}
.y20c{bottom:591.347467pt;}
.y10{bottom:591.430400pt;}
.y1ad{bottom:600.877333pt;}
.y76{bottom:601.982533pt;}
.y43{bottom:602.462533pt;}
.ya5{bottom:602.464533pt;}
.ye6{bottom:602.475867pt;}
.y10a{bottom:602.595867pt;}
.yb6{bottom:602.597867pt;}
.y88{bottom:602.715867pt;}
.y24c{bottom:604.678667pt;}
.y20b{bottom:604.680800pt;}
.y14c{bottom:605.484933pt;}
.y178{bottom:605.726267pt;}
.y11f{bottom:606.582533pt;}
.yf{bottom:607.430400pt;}
.y24b{bottom:618.012000pt;}
.y20a{bottom:618.014133pt;}
.y1ac{bottom:618.210667pt;}
.y42{bottom:618.462533pt;}
.ya4{bottom:618.464533pt;}
.ye5{bottom:618.475867pt;}
.y109{bottom:618.595867pt;}
.yb5{bottom:618.597867pt;}
.y87{bottom:618.715867pt;}
.y14b{bottom:619.927600pt;}
.y177{bottom:620.168933pt;}
.ye{bottom:623.430400pt;}
.y24a{bottom:631.345333pt;}
.y209{bottom:631.347467pt;}
.y14a{bottom:634.370267pt;}
.y41{bottom:634.462533pt;}
.ya3{bottom:634.464533pt;}
.ye4{bottom:634.475867pt;}
.y108{bottom:634.595867pt;}
.yb4{bottom:634.597867pt;}
.y176{bottom:634.611600pt;}
.y86{bottom:634.715867pt;}
.yd{bottom:639.430400pt;}
.y249{bottom:644.678667pt;}
.y208{bottom:644.680800pt;}
.y149{bottom:648.812933pt;}
.y175{bottom:649.054267pt;}
.y40{bottom:650.462533pt;}
.ya2{bottom:650.464533pt;}
.ye3{bottom:650.475867pt;}
.y107{bottom:650.595867pt;}
.yb3{bottom:650.597867pt;}
.y85{bottom:650.715867pt;}
.yc{bottom:655.430400pt;}
.y248{bottom:658.012000pt;}
.y207{bottom:658.014133pt;}
.y148{bottom:663.255600pt;}
.y174{bottom:663.496933pt;}
.y3f{bottom:666.462533pt;}
.ya1{bottom:666.464533pt;}
.ye2{bottom:666.475867pt;}
.y1cd{bottom:666.595867pt;}
.yb2{bottom:666.597867pt;}
.y84{bottom:666.715867pt;}
.y1ab{bottom:669.192400pt;}
.y247{bottom:671.345333pt;}
.y206{bottom:671.347467pt;}
.y147{bottom:677.698267pt;}
.y106{bottom:682.235867pt;}
.y3e{bottom:682.462533pt;}
.ya0{bottom:682.464533pt;}
.ye1{bottom:682.475867pt;}
.y1cc{bottom:682.595867pt;}
.yb1{bottom:682.597867pt;}
.y83{bottom:682.715867pt;}
.y246{bottom:684.678667pt;}
.y205{bottom:684.680800pt;}
.y173{bottom:691.507600pt;}
.y1aa{bottom:691.889467pt;}
.y146{bottom:692.140933pt;}
.yb{bottom:695.570667pt;}
.y245{bottom:698.012000pt;}
.y204{bottom:698.014133pt;}
.y3d{bottom:698.462533pt;}
.y9f{bottom:698.464533pt;}
.ye0{bottom:698.475867pt;}
.yb0{bottom:698.597867pt;}
.y82{bottom:698.715867pt;}
.y1a9{bottom:706.332133pt;}
.y145{bottom:706.583600pt;}
.ya{bottom:706.638667pt;}
.y244{bottom:711.345333pt;}
.y203{bottom:711.347467pt;}
.y1cb{bottom:714.235867pt;}
.y3c{bottom:714.462533pt;}
.y9e{bottom:714.464533pt;}
.ydf{bottom:714.475867pt;}
.yaf{bottom:714.597867pt;}
.y81{bottom:714.715867pt;}
.y1a8{bottom:720.774800pt;}
.y172{bottom:722.529200pt;}
.y243{bottom:724.678667pt;}
.y202{bottom:724.680800pt;}
.y3b{bottom:730.462533pt;}
.y9d{bottom:730.464533pt;}
.yde{bottom:730.475867pt;}
.yae{bottom:730.597867pt;}
.y80{bottom:730.715867pt;}
.y144{bottom:734.594267pt;}
.y9{bottom:734.829867pt;}
.y1a7{bottom:735.217467pt;}
.y242{bottom:738.012000pt;}
.y201{bottom:738.014133pt;}
.y3a{bottom:746.462533pt;}
.y9c{bottom:746.464533pt;}
.ydd{bottom:746.475867pt;}
.yad{bottom:746.597867pt;}
.y7f{bottom:746.715867pt;}
.y8{bottom:746.829867pt;}
.y1a6{bottom:749.660133pt;}
.y241{bottom:751.345333pt;}
.y200{bottom:751.347467pt;}
.y39{bottom:762.462533pt;}
.y9b{bottom:762.464533pt;}
.ydc{bottom:762.475867pt;}
.yac{bottom:762.597867pt;}
.y7e{bottom:762.715867pt;}
.y7{bottom:763.652400pt;}
.y1a5{bottom:764.102800pt;}
.y240{bottom:764.678667pt;}
.y1ff{bottom:764.680800pt;}
.y143{bottom:765.609200pt;}
.y23f{bottom:778.012000pt;}
.y1fe{bottom:778.014133pt;}
.y1e0{bottom:778.102533pt;}
.y38{bottom:778.462533pt;}
.y9a{bottom:778.464533pt;}
.ydb{bottom:778.475867pt;}
.y1a4{bottom:778.545467pt;}
.yab{bottom:778.597867pt;}
.y7d{bottom:778.715867pt;}
.y6{bottom:789.183067pt;}
.y23e{bottom:791.345333pt;}
.y1fd{bottom:791.347467pt;}
.y1a3{bottom:792.988133pt;}
.y37{bottom:794.462533pt;}
.y99{bottom:794.464533pt;}
.yda{bottom:794.475867pt;}
.yaa{bottom:794.597867pt;}
.y7c{bottom:794.715867pt;}
.y23d{bottom:804.678667pt;}
.y1fc{bottom:804.680800pt;}
.y1a2{bottom:807.441200pt;}
.y36{bottom:810.462533pt;}
.y98{bottom:810.464533pt;}
.yd9{bottom:810.475867pt;}
.y23c{bottom:818.012000pt;}
.y1fb{bottom:818.014133pt;}
.ya9{bottom:826.237867pt;}
.y7b{bottom:826.355867pt;}
.y35{bottom:826.462533pt;}
.y97{bottom:826.464533pt;}
.yd8{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y23b{bottom:831.345333pt;}
.y1fa{bottom:831.347467pt;}
.y1a1{bottom:833.222533pt;}
.y34{bottom:842.462533pt;}
.y96{bottom:842.464533pt;}
.yd7{bottom:842.475867pt;}
.y23a{bottom:844.678667pt;}
.y1f9{bottom:844.680800pt;}
.y239{bottom:858.012000pt;}
.y1f8{bottom:858.014133pt;}
.y7a{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y95{bottom:858.464533pt;}
.yd6{bottom:858.475867pt;}
.y1a0{bottom:859.003867pt;}
.y4{bottom:862.635733pt;}
.y238{bottom:871.345333pt;}
.y1f7{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y94{bottom:874.464533pt;}
.yd5{bottom:874.475867pt;}
.y237{bottom:884.678667pt;}
.y1f6{bottom:884.680800pt;}
.y19f{bottom:887.795867pt;}
.y31{bottom:890.462533pt;}
.y93{bottom:890.464533pt;}
.yd4{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y236{bottom:898.012000pt;}
.y1f5{bottom:898.014133pt;}
.y19e{bottom:905.129200pt;}
.y30{bottom:906.462533pt;}
.ya8{bottom:906.464533pt;}
.yd3{bottom:906.475867pt;}
.y235{bottom:911.345333pt;}
.y1f4{bottom:911.347467pt;}
.y92{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.ya7{bottom:922.464533pt;}
.yd2{bottom:922.475867pt;}
.y234{bottom:924.678667pt;}
.y1f3{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y91{bottom:1006.591200pt;}
.ybd{bottom:1006.593333pt;}
.y75{bottom:1006.594400pt;}
.y233{bottom:1006.598667pt;}
.y142{bottom:1006.600933pt;}
.y1ca{bottom:1006.636400pt;}
.y19d{bottom:1006.640933pt;}
.y171{bottom:1006.644933pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h16{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h12{height:37.031250pt;}
.h10{height:37.057292pt;}
.h17{height:37.428967pt;}
.h11{height:37.437500pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h14{height:41.824996pt;}
.h13{height:41.896463pt;}
.hc{height:46.796875pt;}
.h15{height:48.236875pt;}
.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;}
.xa{left:68.031467pt;}
.x19{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.818933pt;}
.x26{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x28{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.xc{left:128.631467pt;}
.x16{left:132.283467pt;}
.x14{left:151.181067pt;}
.x25{left:172.671467pt;}
.x5{left:189.223467pt;}
.x11{left:206.542533pt;}
.x1b{left:266.102533pt;}
.x1c{left:285.910533pt;}
.x1a{left:356.214533pt;}
.x1d{left:398.422533pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x12{left:425.182533pt;}
.x7{left:427.085333pt;}
.x27{left:428.959467pt;}
.xe{left:436.538133pt;}
.x29{left:447.878533pt;}
.x13{left:455.422533pt;}
.x17{left:515.044800pt;}
.x1e{left:516.843867pt;}
.x1f{left:519.467867pt;}
.x23{left:526.142533pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x21{left:632.843867pt;}
.x20{left:635.851867pt;}
.x22{left:641.505200pt;}
.xf{left:647.459200pt;}
.x24{left:661.216133pt;}
.x15{left:666.359733pt;}
}




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