
    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_a2dce38b78b81e271bbbd73d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_c14b74f77d03a77ff6efa51f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_92ec70361ea4c9f4697bb881.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_a7afb0a991550cfa64d4591f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_c14b74f77d03a77ff6efa51f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9ab3f043c1fa383e2b75ce03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102000;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_a589c665463a50a5eae07e6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_155a0a3a7f4efd4368c41b46.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116000;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_2d58d22fabf12388da317f07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748000;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_2d3fcf71d3e2893eefa61fb7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_35b5626cc62f0a4a66372ea5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.417000px;}
.v3{vertical-align:35.208000px;}
.v4{vertical-align:53.298000px;}
.ls3b{letter-spacing:-2.400000px;}
.ls3a{letter-spacing:-1.200000px;}
.ls46{letter-spacing:-1.080000px;}
.ls4a{letter-spacing:-0.600000px;}
.ls4c{letter-spacing:-0.300000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.150000px;}
.ls2b{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.204000px;}
.ls3c{letter-spacing:0.210000px;}
.lsb{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.390000px;}
.lsd{letter-spacing:0.420000px;}
.lse{letter-spacing:0.436500px;}
.ls11{letter-spacing:0.480000px;}
.ls4b{letter-spacing:0.510000px;}
.ls12{letter-spacing:0.540000px;}
.ls38{letter-spacing:0.570000px;}
.ls2a{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.600000px;}
.ls27{letter-spacing:0.652800px;}
.ls7{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.780000px;}
.ls28{letter-spacing:0.840000px;}
.ls31{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.930000px;}
.ls23{letter-spacing:0.960000px;}
.ls20{letter-spacing:0.990000px;}
.ls19{letter-spacing:1.020000px;}
.ls15{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.110000px;}
.ls1{letter-spacing:1.152000px;}
.ls16{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.230000px;}
.ls2d{letter-spacing:1.242000px;}
.ls22{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.344000px;}
.ls25{letter-spacing:1.380000px;}
.ls43{letter-spacing:1.410000px;}
.ls18{letter-spacing:1.440000px;}
.ls44{letter-spacing:1.470000px;}
.ls1c{letter-spacing:1.500000px;}
.ls30{letter-spacing:1.560000px;}
.ls13{letter-spacing:1.590000px;}
.ls47{letter-spacing:1.620000px;}
.ls2f{letter-spacing:1.680000px;}
.ls33{letter-spacing:1.740000px;}
.ls24{letter-spacing:1.800000px;}
.ls3f{letter-spacing:1.860000px;}
.ls41{letter-spacing:1.890000px;}
.ls35{letter-spacing:1.920000px;}
.ls1d{letter-spacing:1.950000px;}
.ls1f{letter-spacing:2.040000px;}
.ls34{letter-spacing:2.070000px;}
.ls1e{letter-spacing:2.100000px;}
.lsf{letter-spacing:2.160000px;}
.ls3e{letter-spacing:2.220000px;}
.ls26{letter-spacing:2.340000px;}
.ls36{letter-spacing:2.400000px;}
.ls40{letter-spacing:2.520000px;}
.ls42{letter-spacing:2.700000px;}
.ls45{letter-spacing:2.880000px;}
.ls29{letter-spacing:7.020000px;}
.ls3d{letter-spacing:11.988000px;}
.ls0{letter-spacing:12.510000px;}
.ls6{letter-spacing:1965.048000px;}
.ls10{letter-spacing:2010.232200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-30.024000px;}
.ws2{word-spacing:-22.518000px;}
.ws0{word-spacing:-18.348000px;}
.ws42{word-spacing:-17.400000px;}
.ws2e{word-spacing:-16.980000px;}
.wsf{word-spacing:-14.178000px;}
.ws61{word-spacing:-10.842000px;}
.ws51{word-spacing:-9.757800px;}
.ws12{word-spacing:-5.661000px;}
.ws84{word-spacing:-1.260000px;}
.ws9f{word-spacing:-1.200000px;}
.ws6{word-spacing:-1.152000px;}
.ws4e{word-spacing:-1.080000px;}
.ws78{word-spacing:-0.900000px;}
.ws17{word-spacing:-0.720000px;}
.ws5b{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.481500px;}
.ws6e{word-spacing:-0.300000px;}
.ws6c{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws68{word-spacing:0.120000px;}
.ws8f{word-spacing:0.180000px;}
.ws69{word-spacing:0.300000px;}
.ws9{word-spacing:0.336000px;}
.ws75{word-spacing:0.360000px;}
.ws1d{word-spacing:0.420000px;}
.ws7d{word-spacing:0.480000px;}
.ws1f{word-spacing:0.540000px;}
.ws5{word-spacing:0.546000px;}
.ws63{word-spacing:0.600000px;}
.ws1a{word-spacing:0.660000px;}
.ws25{word-spacing:0.720000px;}
.ws67{word-spacing:0.780000px;}
.ws1c{word-spacing:0.840000px;}
.ws70{word-spacing:0.900000px;}
.ws4c{word-spacing:0.960000px;}
.ws34{word-spacing:1.020000px;}
.ws6d{word-spacing:1.080000px;}
.ws16{word-spacing:1.140000px;}
.ws85{word-spacing:1.200000px;}
.wsd{word-spacing:1.248000px;}
.ws4d{word-spacing:1.260000px;}
.ws90{word-spacing:1.380000px;}
.ws33{word-spacing:1.440000px;}
.ws7b{word-spacing:1.500000px;}
.ws8b{word-spacing:1.560000px;}
.ws57{word-spacing:1.620000px;}
.ws60{word-spacing:1.674000px;}
.ws9e{word-spacing:1.680000px;}
.ws3d{word-spacing:1.740000px;}
.wsb4{word-spacing:1.800000px;}
.ws87{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.ws3e{word-spacing:1.980000px;}
.ws24{word-spacing:2.040000px;}
.ws58{word-spacing:2.100000px;}
.ws4a{word-spacing:2.220000px;}
.ws29{word-spacing:2.340000px;}
.ws47{word-spacing:2.400000px;}
.ws94{word-spacing:2.460000px;}
.ws43{word-spacing:2.520000px;}
.ws54{word-spacing:2.580000px;}
.ws79{word-spacing:2.640000px;}
.ws5f{word-spacing:2.646000px;}
.wsb{word-spacing:2.736000px;}
.ws45{word-spacing:2.760000px;}
.ws77{word-spacing:2.820000px;}
.ws2c{word-spacing:2.880000px;}
.ws5a{word-spacing:2.940000px;}
.wsb8{word-spacing:3.000000px;}
.ws52{word-spacing:3.060000px;}
.ws71{word-spacing:3.120000px;}
.ws9d{word-spacing:3.180000px;}
.ws4b{word-spacing:3.240000px;}
.ws93{word-spacing:3.300000px;}
.wsbb{word-spacing:3.360000px;}
.ws76{word-spacing:3.420000px;}
.ws3c{word-spacing:3.480000px;}
.wsb1{word-spacing:3.540000px;}
.wsa{word-spacing:3.552000px;}
.ws91{word-spacing:3.600000px;}
.ws56{word-spacing:3.660000px;}
.ws48{word-spacing:3.720000px;}
.ws36{word-spacing:3.780000px;}
.ws8{word-spacing:3.792000px;}
.ws20{word-spacing:3.840000px;}
.ws1e{word-spacing:3.900000px;}
.ws46{word-spacing:3.960000px;}
.ws3a{word-spacing:4.020000px;}
.ws21{word-spacing:4.080000px;}
.ws38{word-spacing:4.140000px;}
.wsbc{word-spacing:4.200000px;}
.ws7a{word-spacing:4.260000px;}
.ws8a{word-spacing:4.320000px;}
.wsb9{word-spacing:4.380000px;}
.ws74{word-spacing:4.440000px;}
.ws3f{word-spacing:4.500000px;}
.ws53{word-spacing:4.620000px;}
.ws88{word-spacing:4.680000px;}
.ws89{word-spacing:4.740000px;}
.ws39{word-spacing:4.800000px;}
.ws30{word-spacing:4.860000px;}
.ws1b{word-spacing:4.920000px;}
.wsb2{word-spacing:4.980000px;}
.ws50{word-spacing:5.040000px;}
.ws8e{word-spacing:5.100000px;}
.ws32{word-spacing:5.160000px;}
.ws44{word-spacing:5.220000px;}
.ws6b{word-spacing:5.280000px;}
.wsb6{word-spacing:5.340000px;}
.ws49{word-spacing:5.400000px;}
.ws19{word-spacing:5.460000px;}
.ws37{word-spacing:5.580000px;}
.ws3b{word-spacing:5.640000px;}
.ws5c{word-spacing:5.700000px;}
.ws4f{word-spacing:5.760000px;}
.ws2b{word-spacing:5.820000px;}
.ws7c{word-spacing:6.000000px;}
.ws62{word-spacing:6.060000px;}
.ws41{word-spacing:6.120000px;}
.ws23{word-spacing:6.180000px;}
.wsb5{word-spacing:6.240000px;}
.ws2a{word-spacing:6.300000px;}
.ws66{word-spacing:6.360000px;}
.wse{word-spacing:6.384000px;}
.ws8c{word-spacing:6.420000px;}
.ws72{word-spacing:6.480000px;}
.wsc{word-spacing:6.576000px;}
.ws6f{word-spacing:6.600000px;}
.wsa0{word-spacing:6.660000px;}
.ws7{word-spacing:6.672000px;}
.ws18{word-spacing:6.720000px;}
.ws22{word-spacing:6.780000px;}
.ws2d{word-spacing:6.900000px;}
.wsb3{word-spacing:6.960000px;}
.ws5d{word-spacing:7.020000px;}
.ws7e{word-spacing:7.140000px;}
.ws31{word-spacing:7.200000px;}
.ws2f{word-spacing:7.260000px;}
.ws64{word-spacing:7.320000px;}
.wsaf{word-spacing:7.380000px;}
.ws92{word-spacing:7.440000px;}
.ws65{word-spacing:7.500000px;}
.ws5e{word-spacing:7.506000px;}
.wsb0{word-spacing:7.560000px;}
.ws8d{word-spacing:7.680000px;}
.ws55{word-spacing:7.740000px;}
.ws6a{word-spacing:7.800000px;}
.ws73{word-spacing:7.860000px;}
.ws27{word-spacing:7.920000px;}
.ws15{word-spacing:7.980000px;}
.ws35{word-spacing:8.040000px;}
.ws9c{word-spacing:8.100000px;}
.ws26{word-spacing:8.160000px;}
.wsb7{word-spacing:8.220000px;}
.ws59{word-spacing:8.280000px;}
.ws14{word-spacing:8.340000px;}
.ws28{word-spacing:8.400000px;}
.ws4{word-spacing:11.676000px;}
.ws86{word-spacing:16.680000px;}
.ws13{word-spacing:17.316000px;}
.ws96{word-spacing:19.278000px;}
.ws7f{word-spacing:90.774000px;}
.ws81{word-spacing:100.680000px;}
.ws98{word-spacing:119.640000px;}
.wsba{word-spacing:127.440000px;}
.wsa9{word-spacing:132.780000px;}
.wsae{word-spacing:135.780000px;}
.ws97{word-spacing:136.320000px;}
.ws9b{word-spacing:136.380000px;}
.ws82{word-spacing:147.960000px;}
.ws80{word-spacing:148.080000px;}
.wsa3{word-spacing:150.840000px;}
.wsa5{word-spacing:305.040000px;}
.wsac{word-spacing:321.660000px;}
.wsa2{word-spacing:333.900000px;}
.wsa6{word-spacing:350.580000px;}
.ws9a{word-spacing:356.100000px;}
.wsa4{word-spacing:375.000000px;}
.wsad{word-spacing:385.020000px;}
.wsab{word-spacing:389.340000px;}
.wsa1{word-spacing:390.600000px;}
.wsa7{word-spacing:401.700000px;}
.wsa8{word-spacing:462.780000px;}
.ws99{word-spacing:609.180000px;}
.wsaa{word-spacing:619.260000px;}
.ws83{word-spacing:685.440000px;}
.ws95{word-spacing:1190.214000px;}
._2b{margin-left:-126.000000px;}
._2{margin-left:-23.352000px;}
._8{margin-left:-21.684000px;}
._1{margin-left:-9.324000px;}
._b{margin-left:-2.160000px;}
._5{margin-left:-1.156800px;}
._d{width:1.020000px;}
._a{width:2.358600px;}
._3{width:3.936000px;}
._6{width:5.454000px;}
._4{width:6.667200px;}
._c{width:8.029800px;}
._9{width:9.420000px;}
._0{width:11.676000px;}
._11{width:13.986000px;}
._e{width:15.984000px;}
._7{width:17.316000px;}
._10{width:41.742000px;}
._f{width:43.470000px;}
._1d{width:116.400000px;}
._15{width:117.600000px;}
._17{width:119.700000px;}
._1b{width:121.920000px;}
._19{width:136.320000px;}
._20{width:137.760000px;}
._1a{width:153.000000px;}
._12{width:164.760000px;}
._23{width:167.520000px;}
._16{width:340.260000px;}
._2a{width:371.580000px;}
._18{width:372.780000px;}
._25{width:386.640000px;}
._13{width:396.300000px;}
._28{width:401.700000px;}
._29{width:411.660000px;}
._21{width:463.560000px;}
._1f{width:488.100000px;}
._26{width:635.940000px;}
._22{width:691.740000px;}
._27{width:809.580000px;}
._14{width:811.320000px;}
._1c{width:814.500000px;}
._24{width:870.180000px;}
._1e{width:1318.500000px;}
.fc1{color:rgb(180,141,14);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.100000px;}
.fsc{font-size:39.000000px;}
.fs2{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fse{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs5{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y109{bottom:138.201000px;}
.ye1{bottom:138.225000px;}
.y8c{bottom:138.320700px;}
.y175{bottom:138.367650px;}
.y135{bottom:138.396000px;}
.y16c{bottom:138.519150px;}
.y215{bottom:138.628200px;}
.y1b7{bottom:138.804750px;}
.y227{bottom:138.883050px;}
.y12a{bottom:138.892800px;}
.y209{bottom:138.981600px;}
.y258{bottom:139.138350px;}
.y1c8{bottom:139.334850px;}
.y1ee{bottom:139.444050px;}
.y23f{bottom:139.605750px;}
.yb5{bottom:139.793700px;}
.y27f{bottom:139.877850px;}
.y172{bottom:140.060250px;}
.y9{bottom:140.313450px;}
.y5e{bottom:143.002650px;}
.y151{bottom:151.450350px;}
.y8{bottom:152.314950px;}
.y108{bottom:155.791500px;}
.ye0{bottom:155.815500px;}
.y134{bottom:159.186000px;}
.y8b{bottom:159.395700px;}
.y1b6{bottom:159.594750px;}
.y226{bottom:159.673050px;}
.y129{bottom:159.682800px;}
.y208{bottom:159.771600px;}
.y257{bottom:159.928350px;}
.y1c7{bottom:160.124850px;}
.y1ed{bottom:160.234050px;}
.y23e{bottom:160.395750px;}
.yb4{bottom:160.531650px;}
.y27e{bottom:160.667850px;}
.y5d{bottom:163.792650px;}
.y7{bottom:170.695350px;}
.y150{bottom:172.240350px;}
.ydf{bottom:173.406000px;}
.y107{bottom:177.432000px;}
.y133{bottom:179.976000px;}
.y181{bottom:180.203550px;}
.y1b5{bottom:180.384750px;}
.y225{bottom:180.463050px;}
.y8a{bottom:180.470700px;}
.y128{bottom:180.472800px;}
.y207{bottom:180.561600px;}
.y1c6{bottom:180.914850px;}
.y1ec{bottom:181.024050px;}
.y23d{bottom:181.185750px;}
.yb3{bottom:181.321650px;}
.y195{bottom:181.654800px;}
.y5c{bottom:184.582650px;}
.y6{bottom:188.251350px;}
.y27d{bottom:189.962850px;}
.yde{bottom:190.996500px;}
.y256{bottom:191.113350px;}
.y14f{bottom:193.030350px;}
.y132{bottom:200.766000px;}
.y180{bottom:200.993550px;}
.y224{bottom:201.253050px;}
.y206{bottom:201.351600px;}
.y89{bottom:201.545700px;}
.y1c5{bottom:201.704850px;}
.y1eb{bottom:201.814050px;}
.yb2{bottom:202.111650px;}
.y194{bottom:202.444800px;}
.y5b{bottom:205.372650px;}
.y5{bottom:205.807350px;}
.ydd{bottom:208.587000px;}
.y27c{bottom:210.752850px;}
.y127{bottom:211.657800px;}
.y23c{bottom:212.370750px;}
.y14e{bottom:213.820350px;}
.y4{bottom:216.989850px;}
.y131{bottom:221.556000px;}
.y17f{bottom:221.783550px;}
.y223{bottom:222.043050px;}
.y205{bottom:222.141600px;}
.y255{bottom:222.298350px;}
.y1c4{bottom:222.494850px;}
.y1ea{bottom:222.604050px;}
.y88{bottom:222.620700px;}
.yb1{bottom:222.901650px;}
.y193{bottom:223.234800px;}
.y5a{bottom:226.162650px;}
.ydc{bottom:226.177500px;}
.y106{bottom:231.126450px;}
.y27b{bottom:231.542850px;}
.y3{bottom:232.424850px;}
.y126{bottom:232.447800px;}
.y23b{bottom:233.160750px;}
.y14d{bottom:234.610350px;}
.y130{bottom:242.346000px;}
.y17e{bottom:242.573550px;}
.y222{bottom:242.833050px;}
.y204{bottom:242.931600px;}
.y254{bottom:243.088350px;}
.y1c3{bottom:243.284850px;}
.y1e9{bottom:243.394050px;}
.y1b4{bottom:243.455400px;}
.yb0{bottom:243.691650px;}
.y87{bottom:243.695700px;}
.y192{bottom:244.024800px;}
.ydb{bottom:247.818000px;}
.y105{bottom:251.916450px;}
.y125{bottom:253.237800px;}
.y23a{bottom:253.950750px;}
.y14c{bottom:255.400350px;}
.y59{bottom:257.347650px;}
.y27a{bottom:260.837850px;}
.y12f{bottom:263.136000px;}
.y17d{bottom:263.363550px;}
.y221{bottom:263.623050px;}
.y203{bottom:263.721600px;}
.y1c2{bottom:264.074850px;}
.y1e8{bottom:264.184050px;}
.yaf{bottom:264.481650px;}
.y86{bottom:264.770700px;}
.y191{bottom:264.814800px;}
.y1b3{bottom:271.193400px;}
.y104{bottom:272.706450px;}
.y124{bottom:274.027800px;}
.y253{bottom:274.273350px;}
.y239{bottom:274.740750px;}
.y14b{bottom:276.190350px;}
.y58{bottom:278.137650px;}
.y279{bottom:281.627850px;}
.y17c{bottom:284.153550px;}
.y220{bottom:284.413050px;}
.y202{bottom:284.511600px;}
.y1c1{bottom:284.864850px;}
.y1e7{bottom:284.974050px;}
.yae{bottom:285.271650px;}
.y190{bottom:285.604800px;}
.y85{bottom:285.845700px;}
.y103{bottom:293.496450px;}
.y123{bottom:294.817800px;}
.y238{bottom:295.530750px;}
.y1b2{bottom:298.913400px;}
.y57{bottom:298.927650px;}
.y12e{bottom:303.509700px;}
.y17b{bottom:304.943550px;}
.y21f{bottom:305.203050px;}
.y201{bottom:305.301600px;}
.y252{bottom:305.458350px;}
.y1c0{bottom:305.654850px;}
.y1e6{bottom:305.764050px;}
.yad{bottom:306.061650px;}
.y18f{bottom:306.394800px;}
.y84{bottom:306.920700px;}
.y14a{bottom:307.375350px;}
.y278{bottom:310.922850px;}
.y122{bottom:315.607800px;}
.y237{bottom:316.320750px;}
.yda{bottom:317.642100px;}
.y56{bottom:319.705650px;}
.y102{bottom:324.681450px;}
.y17a{bottom:325.733550px;}
.y21e{bottom:325.993050px;}
.y200{bottom:326.091600px;}
.y1bf{bottom:326.444850px;}
.y1e5{bottom:326.554050px;}
.y1b1{bottom:326.633400px;}
.yac{bottom:326.851650px;}
.y18e{bottom:327.184800px;}
.y83{bottom:327.995700px;}
.y149{bottom:328.165350px;}
.y277{bottom:331.712850px;}
.y121{bottom:336.397800px;}
.y251{bottom:336.643350px;}
.y236{bottom:337.110750px;}
.yd9{bottom:338.432100px;}
.y55{bottom:340.495650px;}
.y101{bottom:345.471450px;}
.y179{bottom:346.523550px;}
.y21d{bottom:346.783050px;}
.y1ff{bottom:346.881600px;}
.y1e4{bottom:347.344050px;}
.yab{bottom:347.641650px;}
.y18d{bottom:347.974800px;}
.y82{bottom:349.070700px;}
.y1b0{bottom:354.353400px;}
.y120{bottom:357.187800px;}
.y1be{bottom:357.629850px;}
.y235{bottom:357.900750px;}
.yd8{bottom:359.222100px;}
.y148{bottom:359.350350px;}
.y276{bottom:361.007850px;}
.y54{bottom:361.285650px;}
.y100{bottom:366.261450px;}
.y178{bottom:367.313550px;}
.y21c{bottom:367.573050px;}
.y250{bottom:367.828350px;}
.y1e3{bottom:368.134050px;}
.yaa{bottom:368.431650px;}
.y18c{bottom:368.764800px;}
.y81{bottom:370.145700px;}
.y12d{bottom:372.710700px;}
.y11f{bottom:377.977800px;}
.y1fe{bottom:378.066600px;}
.y1bd{bottom:378.419850px;}
.y234{bottom:378.690750px;}
.yd7{bottom:379.907850px;}
.y147{bottom:380.140350px;}
.y275{bottom:381.797850px;}
.y53{bottom:382.075650px;}
.y1af{bottom:382.079850px;}
.yff{bottom:387.051450px;}
.y21b{bottom:388.363050px;}
.y1e2{bottom:388.924050px;}
.ya9{bottom:389.221650px;}
.y18b{bottom:389.554800px;}
.y80{bottom:391.220700px;}
.y12c{bottom:396.351150px;}
.y11e{bottom:398.767800px;}
.y1fd{bottom:398.856600px;}
.y24f{bottom:399.013350px;}
.y1bc{bottom:399.209850px;}
.y233{bottom:399.480750px;}
.y1ae{bottom:399.670350px;}
.yd6{bottom:400.697850px;}
.y146{bottom:400.930350px;}
.y274{bottom:402.587850px;}
.y52{bottom:402.844800px;}
.y1ac{bottom:404.192850px;}
.yfe{bottom:407.841450px;}
.y21a{bottom:409.153050px;}
.y1e1{bottom:409.714050px;}
.ya8{bottom:410.011650px;}
.y18a{bottom:410.344800px;}
.y7f{bottom:412.295700px;}
.y11d{bottom:419.557800px;}
.y1fc{bottom:419.646600px;}
.y177{bottom:419.754300px;}
.y1bb{bottom:419.999850px;}
.y232{bottom:420.270750px;}
.yd5{bottom:421.487850px;}
.y145{bottom:421.720350px;}
.y51{bottom:423.634800px;}
.y1ad{bottom:426.319350px;}
.y2b{bottom:427.394100px;}
.yfd{bottom:428.631450px;}
.y219{bottom:429.943050px;}
.y24e{bottom:430.198350px;}
.y1e0{bottom:430.504050px;}
.ya7{bottom:430.801650px;}
.y189{bottom:431.134800px;}
.y273{bottom:431.882850px;}
.y32{bottom:434.618100px;}
.y11c{bottom:440.347800px;}
.y1fb{bottom:440.436600px;}
.y1ba{bottom:440.789850px;}
.y231{bottom:441.060750px;}
.y2a{bottom:441.782100px;}
.yd4{bottom:442.277850px;}
.y144{bottom:442.510350px;}
.y7e{bottom:443.765700px;}
.y50{bottom:444.424800px;}
.y31{bottom:449.006100px;}
.yfc{bottom:449.421450px;}
.ya6{bottom:451.591650px;}
.y188{bottom:451.924800px;}
.y272{bottom:452.672850px;}
.y29{bottom:456.170100px;}
.y11b{bottom:461.137800px;}
.y1fa{bottom:461.226600px;}
.y24d{bottom:461.383350px;}
.y1ab{bottom:461.599500px;}
.y1df{bottom:461.689050px;}
.y230{bottom:461.850750px;}
.yd3{bottom:463.067850px;}
.y143{bottom:463.300350px;}
.y30{bottom:463.394100px;}
.y7d{bottom:464.840700px;}
.y4f{bottom:465.214800px;}
.yfb{bottom:470.211450px;}
.y28{bottom:470.558100px;}
.ya5{bottom:472.381650px;}
.y187{bottom:472.714800px;}
.y271{bottom:473.462850px;}
.y2f{bottom:477.782100px;}
.y11a{bottom:481.927800px;}
.y1f9{bottom:482.016600px;}
.y218{bottom:482.383800px;}
.y1de{bottom:482.479050px;}
.yd2{bottom:483.857850px;}
.y142{bottom:484.090350px;}
.y27{bottom:484.946100px;}
.y7c{bottom:485.915700px;}
.y4e{bottom:486.004800px;}
.y1aa{bottom:486.720750px;}
.yfa{bottom:491.001450px;}
.y16b{bottom:491.589450px;}
.y2e{bottom:492.170100px;}
.y24c{bottom:492.568350px;}
.y22f{bottom:493.035750px;}
.ya4{bottom:493.171650px;}
.y186{bottom:493.504800px;}
.y270{bottom:494.252850px;}
.y26{bottom:499.334100px;}
.y1b9{bottom:501.734550px;}
.y119{bottom:502.717800px;}
.y1f8{bottom:502.806600px;}
.y1dd{bottom:503.269050px;}
.yd1{bottom:504.647850px;}
.y2d{bottom:506.558100px;}
.y4d{bottom:506.794800px;}
.y7b{bottom:506.990700px;}
.yf9{bottom:511.791450px;}
.y22e{bottom:513.825750px;}
.y185{bottom:514.294800px;}
.y141{bottom:515.275350px;}
.y214{bottom:515.301150px;}
.y25{bottom:520.923000px;}
.y2c{bottom:520.946100px;}
.y118{bottom:523.507800px;}
.y26f{bottom:523.547850px;}
.y1f7{bottom:523.596600px;}
.y24b{bottom:523.753350px;}
.y1dc{bottom:524.059050px;}
.ya3{bottom:524.341650px;}
.yd0{bottom:525.437850px;}
.y4c{bottom:527.584800px;}
.y7a{bottom:528.065700px;}
.yf8{bottom:532.581450px;}
.y22d{bottom:534.615750px;}
.y184{bottom:535.084800px;}
.y140{bottom:536.065350px;}
.y1a9{bottom:539.491500px;}
.y117{bottom:544.297800px;}
.y26e{bottom:544.337850px;}
.y1f6{bottom:544.386600px;}
.y1db{bottom:544.849050px;}
.ya2{bottom:545.131650px;}
.ycf{bottom:546.227850px;}
.y16a{bottom:546.383100px;}
.y4b{bottom:548.374800px;}
.y79{bottom:549.140700px;}
.yf7{bottom:553.371450px;}
.y24a{bottom:554.938350px;}
.y22c{bottom:555.405750px;}
.y183{bottom:555.874800px;}
.y13f{bottom:556.855350px;}
.y24{bottom:559.309200px;}
.y1a8{bottom:560.281500px;}
.y174{bottom:564.257250px;}
.y116{bottom:565.087800px;}
.y26d{bottom:565.127850px;}
.ya1{bottom:565.921650px;}
.y1c{bottom:566.473200px;}
.yce{bottom:567.017850px;}
.y169{bottom:567.173100px;}
.y213{bottom:570.079950px;}
.y78{bottom:570.215700px;}
.y23{bottom:573.697200px;}
.yf6{bottom:574.161450px;}
.y171{bottom:574.653300px;}
.y1f5{bottom:575.571600px;}
.y22b{bottom:576.195750px;}
.y13e{bottom:577.645350px;}
.y1b{bottom:580.861200px;}
.y1a7{bottom:581.071500px;}
.y173{bottom:585.047250px;}
.y115{bottom:585.877800px;}
.y249{bottom:586.123350px;}
.ya0{bottom:586.711650px;}
.ycd{bottom:587.807850px;}
.y168{bottom:587.963100px;}
.y22{bottom:588.085200px;}
.y212{bottom:590.869950px;}
.y77{bottom:591.290700px;}
.y26c{bottom:594.422850px;}
.yf5{bottom:594.951450px;}
.y1a{bottom:595.249200px;}
.y1f4{bottom:596.361600px;}
.y4a{bottom:596.566500px;}
.y22a{bottom:596.985750px;}
.y13d{bottom:598.435350px;}
.y1a6{bottom:601.861500px;}
.y21{bottom:602.473200px;}
.y114{bottom:606.667800px;}
.y9f{bottom:607.501650px;}
.y182{bottom:608.315550px;}
.y167{bottom:608.753100px;}
.y19{bottom:609.637200px;}
.y211{bottom:611.659950px;}
.y76{bottom:612.365700px;}
.y1da{bottom:614.297700px;}
.y26b{bottom:615.212850px;}
.yf4{bottom:615.741450px;}
.y20{bottom:616.861200px;}
.y1f3{bottom:617.151600px;}
.y248{bottom:617.308350px;}
.ycc{bottom:618.992850px;}
.y49{bottom:622.150500px;}
.y1a5{bottom:622.651500px;}
.y18{bottom:624.025200px;}
.y9e{bottom:628.291650px;}
.y170{bottom:629.387850px;}
.y1f{bottom:631.249200px;}
.y210{bottom:632.449950px;}
.y75{bottom:633.440700px;}
.yf3{bottom:636.531450px;}
.y1f2{bottom:637.941600px;}
.y247{bottom:638.098350px;}
.y17{bottom:638.413200px;}
.ycb{bottom:639.782850px;}
.y1d9{bottom:642.015150px;}
.y229{bottom:643.048500px;}
.y1a4{bottom:643.441500px;}
.y13c{bottom:644.498250px;}
.y26a{bottom:644.507850px;}
.y1e{bottom:645.637200px;}
.y113{bottom:647.041500px;}
.y16f{bottom:650.177850px;}
.y20f{bottom:653.239950px;}
.y74{bottom:654.515700px;}
.y1f1{bottom:658.731600px;}
.y246{bottom:658.888350px;}
.y16{bottom:660.002250px;}
.y1d{bottom:660.025200px;}
.yca{bottom:660.572850px;}
.y166{bottom:661.193850px;}
.y9d{bottom:663.724500px;}
.y269{bottom:665.297850px;}
.yf2{bottom:667.716450px;}
.y1d8{bottom:669.735150px;}
.y16e{bottom:670.967850px;}
.y20e{bottom:674.029950px;}
.y73{bottom:675.590700px;}
.y1f0{bottom:679.521600px;}
.yc9{bottom:681.362850px;}
.yf1{bottom:688.506450px;}
.y165{bottom:688.967100px;}
.y245{bottom:690.073350px;}
.y16d{bottom:691.757850px;}
.y48{bottom:694.457100px;}
.y268{bottom:694.592850px;}
.y20d{bottom:694.819950px;}
.y72{bottom:696.665700px;}
.y1d7{bottom:697.455150px;}
.yc8{bottom:702.152850px;}
.y1a3{bottom:704.386200px;}
.yf0{bottom:709.296450px;}
.y176{bottom:709.397250px;}
.y244{bottom:710.863350px;}
.y13b{bottom:712.547850px;}
.y47{bottom:715.247100px;}
.y20c{bottom:715.609950px;}
.y164{bottom:716.687100px;}
.y71{bottom:717.740700px;}
.y228{bottom:719.659200px;}
.yc7{bottom:722.942850px;}
.y267{bottom:723.887850px;}
.y1d6{bottom:725.175150px;}
.y9c{bottom:731.249100px;}
.y243{bottom:731.653350px;}
.y1ef{bottom:731.962350px;}
.y1a2{bottom:732.121800px;}
.y13a{bottom:733.337850px;}
.y163{bottom:735.872100px;}
.y46{bottom:736.037100px;}
.y20b{bottom:736.399950px;}
.y70{bottom:738.815700px;}
.yc6{bottom:743.732850px;}
.yef{bottom:744.729300px;}
.y9b{bottom:752.039100px;}
.y1d5{bottom:752.895150px;}
.y266{bottom:753.182850px;}
.y139{bottom:754.127850px;}
.y45{bottom:756.827100px;}
.y1a1{bottom:759.841800px;}
.y6f{bottom:759.962850px;}
.y242{bottom:762.838350px;}
.y162{bottom:763.592100px;}
.yc5{bottom:764.522850px;}
.y15{bottom:767.484300px;}
.y9a{bottom:772.829100px;}
.y265{bottom:773.972850px;}
.y138{bottom:774.917850px;}
.y44{bottom:777.617100px;}
.y1a0{bottom:779.026800px;}
.y1d4{bottom:780.615150px;}
.y6e{bottom:781.037850px;}
.y241{bottom:783.628350px;}
.yc4{bottom:785.312850px;}
.y14{bottom:788.274300px;}
.y20a{bottom:788.840700px;}
.y161{bottom:791.312100px;}
.y99{bottom:793.619100px;}
.y264{bottom:794.762850px;}
.y137{bottom:795.707850px;}
.y43{bottom:798.407100px;}
.y6d{bottom:802.112850px;}
.yc3{bottom:806.102850px;}
.y19f{bottom:806.746800px;}
.y1d3{bottom:808.335150px;}
.y13{bottom:809.061450px;}
.y160{bottom:810.497100px;}
.y98{bottom:814.409100px;}
.y136{bottom:816.497850px;}
.yee{bottom:816.509850px;}
.y42{bottom:819.197100px;}
.y6c{bottom:823.187850px;}
.y263{bottom:824.057850px;}
.yc2{bottom:826.892850px;}
.y240{bottom:829.691250px;}
.y19e{bottom:834.466800px;}
.y1d2{bottom:836.055150px;}
.y112{bottom:837.287850px;}
.yed{bottom:837.299850px;}
.y15e{bottom:838.202100px;}
.y41{bottom:839.987100px;}
.y6b{bottom:844.262850px;}
.y262{bottom:844.847850px;}
.y97{bottom:845.594100px;}
.yc1{bottom:847.682850px;}
.y12{bottom:853.443300px;}
.y12b{bottom:854.906100px;}
.y15d{bottom:857.387100px;}
.y111{bottom:858.077850px;}
.yec{bottom:858.089850px;}
.y40{bottom:860.777100px;}
.y19d{bottom:862.186800px;}
.y1d1{bottom:863.775150px;}
.y6a{bottom:865.337850px;}
.y261{bottom:865.637850px;}
.y217{bottom:865.669200px;}
.y96{bottom:866.384100px;}
.yc0{bottom:868.472850px;}
.y11{bottom:874.233300px;}
.y1b8{bottom:875.693250px;}
.y15c{bottom:876.572100px;}
.y15f{bottom:876.587100px;}
.y110{bottom:878.867850px;}
.yeb{bottom:878.879850px;}
.y3f{bottom:881.567100px;}
.y69{bottom:886.412850px;}
.y216{bottom:886.459200px;}
.y95{bottom:887.174100px;}
.ybf{bottom:889.262850px;}
.y19c{bottom:889.906800px;}
.y1d0{bottom:891.495150px;}
.y260{bottom:894.932850px;}
.y10{bottom:895.011150px;}
.y10f{bottom:899.657850px;}
.yea{bottom:899.669850px;}
.y15b{bottom:904.292100px;}
.y94{bottom:907.964100px;}
.y19b{bottom:909.091800px;}
.ybe{bottom:910.052850px;}
.y3e{bottom:912.752100px;}
.y25f{bottom:915.722850px;}
.y68{bottom:917.882850px;}
.y1cf{bottom:919.215150px;}
.y10e{bottom:920.447850px;}
.ye9{bottom:920.459850px;}
.y15a{bottom:923.477100px;}
.y93{bottom:928.754100px;}
.ybd{bottom:930.842850px;}
.y3d{bottom:933.542100px;}
.y25e{bottom:936.512850px;}
.y19a{bottom:936.811800px;}
.y67{bottom:938.957850px;}
.yf{bottom:939.405150px;}
.y10d{bottom:941.237850px;}
.ye8{bottom:941.249850px;}
.y1ce{bottom:946.935150px;}
.y92{bottom:949.544100px;}
.y159{bottom:951.197100px;}
.ybc{bottom:951.632850px;}
.y3c{bottom:954.332100px;}
.y66{bottom:960.032850px;}
.y10c{bottom:962.027850px;}
.ye7{bottom:962.039850px;}
.y199{bottom:964.531800px;}
.ye{bottom:964.605150px;}
.y25d{bottom:965.807850px;}
.y91{bottom:970.325100px;}
.y158{bottom:970.382100px;}
.ybb{bottom:972.422850px;}
.y1cd{bottom:974.655150px;}
.y3b{bottom:975.122100px;}
.y65{bottom:981.107850px;}
.y10b{bottom:982.817850px;}
.ye6{bottom:982.829850px;}
.y25c{bottom:986.597850px;}
.yd{bottom:989.805150px;}
.y90{bottom:991.115100px;}
.y198{bottom:992.251800px;}
.yba{bottom:993.212850px;}
.y3a{bottom:995.912100px;}
.y157{bottom:998.112000px;}
.y64{bottom:1002.182850px;}
.y1cc{bottom:1002.381450px;}
.y10a{bottom:1003.607850px;}
.ye5{bottom:1003.619850px;}
.y25b{bottom:1007.387850px;}
.y8f{bottom:1011.905100px;}
.yb9{bottom:1014.002850px;}
.y156{bottom:1015.702500px;}
.y39{bottom:1016.702100px;}
.y197{bottom:1019.968350px;}
.y1cb{bottom:1019.971950px;}
.y154{bottom:1022.358000px;}
.y63{bottom:1023.257850px;}
.ye4{bottom:1024.397850px;}
.y1c9{bottom:1024.494450px;}
.y8e{bottom:1032.695100px;}
.y196{bottom:1033.292850px;}
.yc{bottom:1034.190000px;}
.yb8{bottom:1034.792850px;}
.y25a{bottom:1036.682850px;}
.y38{bottom:1037.492100px;}
.y62{bottom:1044.332850px;}
.y155{bottom:1044.484500px;}
.ye3{bottom:1045.187850px;}
.y1ca{bottom:1046.620950px;}
.yb7{bottom:1055.582850px;}
.y259{bottom:1057.472850px;}
.y37{bottom:1058.282100px;}
.y61{bottom:1065.407850px;}
.ye2{bottom:1065.977850px;}
.yb{bottom:1066.590000px;}
.y8d{bottom:1078.761000px;}
.y153{bottom:1081.901250px;}
.y60{bottom:1086.482850px;}
.yb6{bottom:1086.767850px;}
.ya{bottom:1098.990000px;}
.y36{bottom:1104.345000px;}
.y152{bottom:1107.022500px;}
.y5f{bottom:1107.557850px;}
.y2{bottom:1163.815350px;}
.y35{bottom:1172.943900px;}
.y34{bottom:1193.930100px;}
.y33{bottom:1207.430100px;}
.h3{height:30.912000px;}
.h4{height:31.206000px;}
.h19{height:32.832000px;}
.h5{height:33.435000px;}
.h17{height:33.480000px;}
.hd{height:35.328000px;}
.hc{height:43.584000px;}
.h20{height:43.860000px;}
.hb{height:44.160000px;}
.he{height:46.308000px;}
.h18{height:49.032000px;}
.h1d{height:49.680000px;}
.ha{height:54.480000px;}
.h12{height:54.516000px;}
.h11{height:54.528000px;}
.h14{height:54.540000px;}
.h10{height:54.563400px;}
.h15{height:54.688200px;}
.h16{height:54.897000px;}
.h1c{height:57.204000px;}
.h1b{height:57.960000px;}
.h2{height:59.928000px;}
.h1a{height:60.720000px;}
.h8{height:61.404000px;}
.h13{height:66.240000px;}
.hf{height:71.760000px;}
.h9{height:76.272000px;}
.h1e{height:84.888000px;}
.h6{height:99.360000px;}
.h7{height:99.360600px;}
.h1f{height:102.978000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x13{left:86.980500px;}
.x3f{left:88.968900px;}
.x54{left:90.690750px;}
.x32{left:91.860600px;}
.x10{left:93.543300px;}
.x38{left:98.952150px;}
.x1c{left:101.514600px;}
.x15{left:106.293750px;}
.x16{left:108.234900px;}
.x3{left:110.543850px;}
.x14{left:112.993500px;}
.x17{left:116.768850px;}
.x3d{left:124.462800px;}
.x36{left:130.378050px;}
.x6{left:133.503450px;}
.x72{left:136.069350px;}
.x58{left:138.370050px;}
.x7{left:141.163350px;}
.x1b{left:144.043350px;}
.x4{left:145.195650px;}
.x5{left:150.820650px;}
.x57{left:161.600700px;}
.x6e{left:167.704650px;}
.x6a{left:169.303050px;}
.x43{left:172.836300px;}
.x6b{left:178.890150px;}
.x37{left:180.085050px;}
.x42{left:182.784450px;}
.x35{left:185.599950px;}
.x6c{left:189.796350px;}
.x39{left:191.895300px;}
.x1e{left:200.834100px;}
.x1f{left:211.080600px;}
.x71{left:212.421000px;}
.x3c{left:220.836450px;}
.x3e{left:222.985800px;}
.x33{left:227.931000px;}
.x40{left:239.883900px;}
.x5a{left:242.036550px;}
.x5b{left:252.283050px;}
.x19{left:254.502150px;}
.x20{left:258.708600px;}
.x9{left:260.202300px;}
.x21{left:268.955100px;}
.x55{left:282.047100px;}
.x11{left:284.883300px;}
.x5c{left:300.586050px;}
.xa{left:307.032300px;}
.x5d{left:310.832550px;}
.x6f{left:314.541900px;}
.x22{left:316.583100px;}
.x34{left:318.396750px;}
.x6d{left:320.080350px;}
.x70{left:322.021500px;}
.x56{left:324.647400px;}
.x23{left:326.829600px;}
.x3a{left:332.025000px;}
.x45{left:357.786300px;}
.x5e{left:359.135550px;}
.x46{left:368.032800px;}
.x5f{left:369.382050px;}
.x24{left:374.403600px;}
.x8{left:383.134500px;}
.x25{left:384.650100px;}
.x47{left:408.667800px;}
.x60{left:417.685050px;}
.x3b{left:419.034450px;}
.x1a{left:420.975600px;}
.x61{left:427.931550px;}
.x26{left:432.224100px;}
.x18{left:433.259550px;}
.x27{left:442.470600px;}
.x48{left:459.549300px;}
.x1d{left:464.354100px;}
.xb{left:468.669300px;}
.x49{left:469.795800px;}
.x62{left:476.234550px;}
.x59{left:485.549550px;}
.x28{left:490.098600px;}
.x29{left:500.345100px;}
.x4a{left:510.430800px;}
.x12{left:514.629150px;}
.x44{left:519.651300px;}
.x4b{left:520.677300px;}
.x41{left:531.228900px;}
.x63{left:534.784050px;}
.xe{left:543.321900px;}
.x64{left:545.030550px;}
.x2a{left:547.973100px;}
.xc{left:555.861300px;}
.x2b{left:558.219600px;}
.x4c{left:561.312300px;}
.x4d{left:571.558800px;}
.xf{left:581.183250px;}
.x65{left:593.333550px;}
.x66{left:603.580050px;}
.x2c{left:605.793600px;}
.x4e{left:612.193800px;}
.x2d{left:616.040100px;}
.x4f{left:622.440300px;}
.x67{left:651.883050px;}
.xd{left:657.021900px;}
.x68{left:662.129550px;}
.x2e{left:663.614100px;}
.x2f{left:673.860600px;}
.x69{left:710.432550px;}
.x50{left:713.956800px;}
.x30{left:721.488600px;}
.x51{left:724.203300px;}
.x31{left:731.735100px;}
.x2{left:743.162250px;}
.x52{left:764.838300px;}
.x53{left:775.084800px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.370667pt;}
.v3{vertical-align:31.296000pt;}
.v4{vertical-align:47.376000pt;}
.ls3b{letter-spacing:-2.133333pt;}
.ls3a{letter-spacing:-1.066667pt;}
.ls46{letter-spacing:-0.960000pt;}
.ls4a{letter-spacing:-0.533333pt;}
.ls4c{letter-spacing:-0.266667pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.133333pt;}
.ls2b{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.181333pt;}
.ls3c{letter-spacing:0.186667pt;}
.lsb{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.346667pt;}
.lsd{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.388000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls4b{letter-spacing:0.453333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls38{letter-spacing:0.506667pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls27{letter-spacing:0.580267pt;}
.ls7{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls28{letter-spacing:0.746667pt;}
.ls31{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.826667pt;}
.ls23{letter-spacing:0.853333pt;}
.ls20{letter-spacing:0.880000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls15{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:0.986667pt;}
.ls1{letter-spacing:1.024000pt;}
.ls16{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.093333pt;}
.ls2d{letter-spacing:1.104000pt;}
.ls22{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.194667pt;}
.ls25{letter-spacing:1.226667pt;}
.ls43{letter-spacing:1.253333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls44{letter-spacing:1.306667pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls30{letter-spacing:1.386667pt;}
.ls13{letter-spacing:1.413333pt;}
.ls47{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:1.493333pt;}
.ls33{letter-spacing:1.546667pt;}
.ls24{letter-spacing:1.600000pt;}
.ls3f{letter-spacing:1.653333pt;}
.ls41{letter-spacing:1.680000pt;}
.ls35{letter-spacing:1.706667pt;}
.ls1d{letter-spacing:1.733333pt;}
.ls1f{letter-spacing:1.813333pt;}
.ls34{letter-spacing:1.840000pt;}
.ls1e{letter-spacing:1.866667pt;}
.lsf{letter-spacing:1.920000pt;}
.ls3e{letter-spacing:1.973333pt;}
.ls26{letter-spacing:2.080000pt;}
.ls36{letter-spacing:2.133333pt;}
.ls40{letter-spacing:2.240000pt;}
.ls42{letter-spacing:2.400000pt;}
.ls45{letter-spacing:2.560000pt;}
.ls29{letter-spacing:6.240000pt;}
.ls3d{letter-spacing:10.656000pt;}
.ls0{letter-spacing:11.120000pt;}
.ls6{letter-spacing:1746.709333pt;}
.ls10{letter-spacing:1786.873067pt;}
.ws1{word-spacing:-26.688000pt;}
.ws2{word-spacing:-20.016000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws42{word-spacing:-15.466667pt;}
.ws2e{word-spacing:-15.093333pt;}
.wsf{word-spacing:-12.602667pt;}
.ws61{word-spacing:-9.637333pt;}
.ws51{word-spacing:-8.673600pt;}
.ws12{word-spacing:-5.032000pt;}
.ws84{word-spacing:-1.120000pt;}
.ws9f{word-spacing:-1.066667pt;}
.ws6{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.800000pt;}
.ws17{word-spacing:-0.640000pt;}
.ws5b{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.428000pt;}
.ws6e{word-spacing:-0.266667pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws68{word-spacing:0.106667pt;}
.ws8f{word-spacing:0.160000pt;}
.ws69{word-spacing:0.266667pt;}
.ws9{word-spacing:0.298667pt;}
.ws75{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.373333pt;}
.ws7d{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.480000pt;}
.ws5{word-spacing:0.485333pt;}
.ws63{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.586667pt;}
.ws25{word-spacing:0.640000pt;}
.ws67{word-spacing:0.693333pt;}
.ws1c{word-spacing:0.746667pt;}
.ws70{word-spacing:0.800000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws34{word-spacing:0.906667pt;}
.ws6d{word-spacing:0.960000pt;}
.ws16{word-spacing:1.013333pt;}
.ws85{word-spacing:1.066667pt;}
.wsd{word-spacing:1.109333pt;}
.ws4d{word-spacing:1.120000pt;}
.ws90{word-spacing:1.226667pt;}
.ws33{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.333333pt;}
.ws8b{word-spacing:1.386667pt;}
.ws57{word-spacing:1.440000pt;}
.ws60{word-spacing:1.488000pt;}
.ws9e{word-spacing:1.493333pt;}
.ws3d{word-spacing:1.546667pt;}
.wsb4{word-spacing:1.600000pt;}
.ws87{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.ws3e{word-spacing:1.760000pt;}
.ws24{word-spacing:1.813333pt;}
.ws58{word-spacing:1.866667pt;}
.ws4a{word-spacing:1.973333pt;}
.ws29{word-spacing:2.080000pt;}
.ws47{word-spacing:2.133333pt;}
.ws94{word-spacing:2.186667pt;}
.ws43{word-spacing:2.240000pt;}
.ws54{word-spacing:2.293333pt;}
.ws79{word-spacing:2.346667pt;}
.ws5f{word-spacing:2.352000pt;}
.wsb{word-spacing:2.432000pt;}
.ws45{word-spacing:2.453333pt;}
.ws77{word-spacing:2.506667pt;}
.ws2c{word-spacing:2.560000pt;}
.ws5a{word-spacing:2.613333pt;}
.wsb8{word-spacing:2.666667pt;}
.ws52{word-spacing:2.720000pt;}
.ws71{word-spacing:2.773333pt;}
.ws9d{word-spacing:2.826667pt;}
.ws4b{word-spacing:2.880000pt;}
.ws93{word-spacing:2.933333pt;}
.wsbb{word-spacing:2.986667pt;}
.ws76{word-spacing:3.040000pt;}
.ws3c{word-spacing:3.093333pt;}
.wsb1{word-spacing:3.146667pt;}
.wsa{word-spacing:3.157333pt;}
.ws91{word-spacing:3.200000pt;}
.ws56{word-spacing:3.253333pt;}
.ws48{word-spacing:3.306667pt;}
.ws36{word-spacing:3.360000pt;}
.ws8{word-spacing:3.370667pt;}
.ws20{word-spacing:3.413333pt;}
.ws1e{word-spacing:3.466667pt;}
.ws46{word-spacing:3.520000pt;}
.ws3a{word-spacing:3.573333pt;}
.ws21{word-spacing:3.626667pt;}
.ws38{word-spacing:3.680000pt;}
.wsbc{word-spacing:3.733333pt;}
.ws7a{word-spacing:3.786667pt;}
.ws8a{word-spacing:3.840000pt;}
.wsb9{word-spacing:3.893333pt;}
.ws74{word-spacing:3.946667pt;}
.ws3f{word-spacing:4.000000pt;}
.ws53{word-spacing:4.106667pt;}
.ws88{word-spacing:4.160000pt;}
.ws89{word-spacing:4.213333pt;}
.ws39{word-spacing:4.266667pt;}
.ws30{word-spacing:4.320000pt;}
.ws1b{word-spacing:4.373333pt;}
.wsb2{word-spacing:4.426667pt;}
.ws50{word-spacing:4.480000pt;}
.ws8e{word-spacing:4.533333pt;}
.ws32{word-spacing:4.586667pt;}
.ws44{word-spacing:4.640000pt;}
.ws6b{word-spacing:4.693333pt;}
.wsb6{word-spacing:4.746667pt;}
.ws49{word-spacing:4.800000pt;}
.ws19{word-spacing:4.853333pt;}
.ws37{word-spacing:4.960000pt;}
.ws3b{word-spacing:5.013333pt;}
.ws5c{word-spacing:5.066667pt;}
.ws4f{word-spacing:5.120000pt;}
.ws2b{word-spacing:5.173333pt;}
.ws7c{word-spacing:5.333333pt;}
.ws62{word-spacing:5.386667pt;}
.ws41{word-spacing:5.440000pt;}
.ws23{word-spacing:5.493333pt;}
.wsb5{word-spacing:5.546667pt;}
.ws2a{word-spacing:5.600000pt;}
.ws66{word-spacing:5.653333pt;}
.wse{word-spacing:5.674667pt;}
.ws8c{word-spacing:5.706667pt;}
.ws72{word-spacing:5.760000pt;}
.wsc{word-spacing:5.845333pt;}
.ws6f{word-spacing:5.866667pt;}
.wsa0{word-spacing:5.920000pt;}
.ws7{word-spacing:5.930667pt;}
.ws18{word-spacing:5.973333pt;}
.ws22{word-spacing:6.026667pt;}
.ws2d{word-spacing:6.133333pt;}
.wsb3{word-spacing:6.186667pt;}
.ws5d{word-spacing:6.240000pt;}
.ws7e{word-spacing:6.346667pt;}
.ws31{word-spacing:6.400000pt;}
.ws2f{word-spacing:6.453333pt;}
.ws64{word-spacing:6.506667pt;}
.wsaf{word-spacing:6.560000pt;}
.ws92{word-spacing:6.613333pt;}
.ws65{word-spacing:6.666667pt;}
.ws5e{word-spacing:6.672000pt;}
.wsb0{word-spacing:6.720000pt;}
.ws8d{word-spacing:6.826667pt;}
.ws55{word-spacing:6.880000pt;}
.ws6a{word-spacing:6.933333pt;}
.ws73{word-spacing:6.986667pt;}
.ws27{word-spacing:7.040000pt;}
.ws15{word-spacing:7.093333pt;}
.ws35{word-spacing:7.146667pt;}
.ws9c{word-spacing:7.200000pt;}
.ws26{word-spacing:7.253333pt;}
.wsb7{word-spacing:7.306667pt;}
.ws59{word-spacing:7.360000pt;}
.ws14{word-spacing:7.413333pt;}
.ws28{word-spacing:7.466667pt;}
.ws4{word-spacing:10.378667pt;}
.ws86{word-spacing:14.826667pt;}
.ws13{word-spacing:15.392000pt;}
.ws96{word-spacing:17.136000pt;}
.ws7f{word-spacing:80.688000pt;}
.ws81{word-spacing:89.493333pt;}
.ws98{word-spacing:106.346667pt;}
.wsba{word-spacing:113.280000pt;}
.wsa9{word-spacing:118.026667pt;}
.wsae{word-spacing:120.693333pt;}
.ws97{word-spacing:121.173333pt;}
.ws9b{word-spacing:121.226667pt;}
.ws82{word-spacing:131.520000pt;}
.ws80{word-spacing:131.626667pt;}
.wsa3{word-spacing:134.080000pt;}
.wsa5{word-spacing:271.146667pt;}
.wsac{word-spacing:285.920000pt;}
.wsa2{word-spacing:296.800000pt;}
.wsa6{word-spacing:311.626667pt;}
.ws9a{word-spacing:316.533333pt;}
.wsa4{word-spacing:333.333333pt;}
.wsad{word-spacing:342.240000pt;}
.wsab{word-spacing:346.080000pt;}
.wsa1{word-spacing:347.200000pt;}
.wsa7{word-spacing:357.066667pt;}
.wsa8{word-spacing:411.360000pt;}
.ws99{word-spacing:541.493333pt;}
.wsaa{word-spacing:550.453333pt;}
.ws83{word-spacing:609.280000pt;}
.ws95{word-spacing:1057.968000pt;}
._2b{margin-left:-112.000000pt;}
._2{margin-left:-20.757333pt;}
._8{margin-left:-19.274667pt;}
._1{margin-left:-8.288000pt;}
._b{margin-left:-1.920000pt;}
._5{margin-left:-1.028267pt;}
._d{width:0.906667pt;}
._a{width:2.096533pt;}
._3{width:3.498667pt;}
._6{width:4.848000pt;}
._4{width:5.926400pt;}
._c{width:7.137600pt;}
._9{width:8.373333pt;}
._0{width:10.378667pt;}
._11{width:12.432000pt;}
._e{width:14.208000pt;}
._7{width:15.392000pt;}
._10{width:37.104000pt;}
._f{width:38.640000pt;}
._1d{width:103.466667pt;}
._15{width:104.533333pt;}
._17{width:106.400000pt;}
._1b{width:108.373333pt;}
._19{width:121.173333pt;}
._20{width:122.453333pt;}
._1a{width:136.000000pt;}
._12{width:146.453333pt;}
._23{width:148.906667pt;}
._16{width:302.453333pt;}
._2a{width:330.293333pt;}
._18{width:331.360000pt;}
._25{width:343.680000pt;}
._13{width:352.266667pt;}
._28{width:357.066667pt;}
._29{width:365.920000pt;}
._21{width:412.053333pt;}
._1f{width:433.866667pt;}
._26{width:565.280000pt;}
._22{width:614.880000pt;}
._27{width:719.626667pt;}
._14{width:721.173333pt;}
._1c{width:724.000000pt;}
._24{width:773.493333pt;}
._1e{width:1172.000000pt;}
.fsd{font-size:31.200000pt;}
.fsc{font-size:34.666667pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fse{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs5{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y109{bottom:122.845333pt;}
.ye1{bottom:122.866667pt;}
.y8c{bottom:122.951733pt;}
.y175{bottom:122.993467pt;}
.y135{bottom:123.018667pt;}
.y16c{bottom:123.128133pt;}
.y215{bottom:123.225067pt;}
.y1b7{bottom:123.382000pt;}
.y227{bottom:123.451600pt;}
.y12a{bottom:123.460267pt;}
.y209{bottom:123.539200pt;}
.y258{bottom:123.678533pt;}
.y1c8{bottom:123.853200pt;}
.y1ee{bottom:123.950267pt;}
.y23f{bottom:124.094000pt;}
.yb5{bottom:124.261067pt;}
.y27f{bottom:124.335867pt;}
.y172{bottom:124.498000pt;}
.y9{bottom:124.723067pt;}
.y5e{bottom:127.113467pt;}
.y151{bottom:134.622533pt;}
.y8{bottom:135.391067pt;}
.y108{bottom:138.481333pt;}
.ye0{bottom:138.502667pt;}
.y134{bottom:141.498667pt;}
.y8b{bottom:141.685067pt;}
.y1b6{bottom:141.862000pt;}
.y226{bottom:141.931600pt;}
.y129{bottom:141.940267pt;}
.y208{bottom:142.019200pt;}
.y257{bottom:142.158533pt;}
.y1c7{bottom:142.333200pt;}
.y1ed{bottom:142.430267pt;}
.y23e{bottom:142.574000pt;}
.yb4{bottom:142.694800pt;}
.y27e{bottom:142.815867pt;}
.y5d{bottom:145.593467pt;}
.y7{bottom:151.729200pt;}
.y150{bottom:153.102533pt;}
.ydf{bottom:154.138667pt;}
.y107{bottom:157.717333pt;}
.y133{bottom:159.978667pt;}
.y181{bottom:160.180933pt;}
.y1b5{bottom:160.342000pt;}
.y225{bottom:160.411600pt;}
.y8a{bottom:160.418400pt;}
.y128{bottom:160.420267pt;}
.y207{bottom:160.499200pt;}
.y1c6{bottom:160.813200pt;}
.y1ec{bottom:160.910267pt;}
.y23d{bottom:161.054000pt;}
.yb3{bottom:161.174800pt;}
.y195{bottom:161.470933pt;}
.y5c{bottom:164.073467pt;}
.y6{bottom:167.334533pt;}
.y27d{bottom:168.855867pt;}
.yde{bottom:169.774667pt;}
.y256{bottom:169.878533pt;}
.y14f{bottom:171.582533pt;}
.y132{bottom:178.458667pt;}
.y180{bottom:178.660933pt;}
.y224{bottom:178.891600pt;}
.y206{bottom:178.979200pt;}
.y89{bottom:179.151733pt;}
.y1c5{bottom:179.293200pt;}
.y1eb{bottom:179.390267pt;}
.yb2{bottom:179.654800pt;}
.y194{bottom:179.950933pt;}
.y5b{bottom:182.553467pt;}
.y5{bottom:182.939867pt;}
.ydd{bottom:185.410667pt;}
.y27c{bottom:187.335867pt;}
.y127{bottom:188.140267pt;}
.y23c{bottom:188.774000pt;}
.y14e{bottom:190.062533pt;}
.y4{bottom:192.879867pt;}
.y131{bottom:196.938667pt;}
.y17f{bottom:197.140933pt;}
.y223{bottom:197.371600pt;}
.y205{bottom:197.459200pt;}
.y255{bottom:197.598533pt;}
.y1c4{bottom:197.773200pt;}
.y1ea{bottom:197.870267pt;}
.y88{bottom:197.885067pt;}
.yb1{bottom:198.134800pt;}
.y193{bottom:198.430933pt;}
.y5a{bottom:201.033467pt;}
.ydc{bottom:201.046667pt;}
.y106{bottom:205.445733pt;}
.y27b{bottom:205.815867pt;}
.y3{bottom:206.599867pt;}
.y126{bottom:206.620267pt;}
.y23b{bottom:207.254000pt;}
.y14d{bottom:208.542533pt;}
.y130{bottom:215.418667pt;}
.y17e{bottom:215.620933pt;}
.y222{bottom:215.851600pt;}
.y204{bottom:215.939200pt;}
.y254{bottom:216.078533pt;}
.y1c3{bottom:216.253200pt;}
.y1e9{bottom:216.350267pt;}
.y1b4{bottom:216.404800pt;}
.yb0{bottom:216.614800pt;}
.y87{bottom:216.618400pt;}
.y192{bottom:216.910933pt;}
.ydb{bottom:220.282667pt;}
.y105{bottom:223.925733pt;}
.y125{bottom:225.100267pt;}
.y23a{bottom:225.734000pt;}
.y14c{bottom:227.022533pt;}
.y59{bottom:228.753467pt;}
.y27a{bottom:231.855867pt;}
.y12f{bottom:233.898667pt;}
.y17d{bottom:234.100933pt;}
.y221{bottom:234.331600pt;}
.y203{bottom:234.419200pt;}
.y1c2{bottom:234.733200pt;}
.y1e8{bottom:234.830267pt;}
.yaf{bottom:235.094800pt;}
.y86{bottom:235.351733pt;}
.y191{bottom:235.390933pt;}
.y1b3{bottom:241.060800pt;}
.y104{bottom:242.405733pt;}
.y124{bottom:243.580267pt;}
.y253{bottom:243.798533pt;}
.y239{bottom:244.214000pt;}
.y14b{bottom:245.502533pt;}
.y58{bottom:247.233467pt;}
.y279{bottom:250.335867pt;}
.y17c{bottom:252.580933pt;}
.y220{bottom:252.811600pt;}
.y202{bottom:252.899200pt;}
.y1c1{bottom:253.213200pt;}
.y1e7{bottom:253.310267pt;}
.yae{bottom:253.574800pt;}
.y190{bottom:253.870933pt;}
.y85{bottom:254.085067pt;}
.y103{bottom:260.885733pt;}
.y123{bottom:262.060267pt;}
.y238{bottom:262.694000pt;}
.y1b2{bottom:265.700800pt;}
.y57{bottom:265.713467pt;}
.y12e{bottom:269.786400pt;}
.y17b{bottom:271.060933pt;}
.y21f{bottom:271.291600pt;}
.y201{bottom:271.379200pt;}
.y252{bottom:271.518533pt;}
.y1c0{bottom:271.693200pt;}
.y1e6{bottom:271.790267pt;}
.yad{bottom:272.054800pt;}
.y18f{bottom:272.350933pt;}
.y84{bottom:272.818400pt;}
.y14a{bottom:273.222533pt;}
.y278{bottom:276.375867pt;}
.y122{bottom:280.540267pt;}
.y237{bottom:281.174000pt;}
.yda{bottom:282.348533pt;}
.y56{bottom:284.182800pt;}
.y102{bottom:288.605733pt;}
.y17a{bottom:289.540933pt;}
.y21e{bottom:289.771600pt;}
.y200{bottom:289.859200pt;}
.y1bf{bottom:290.173200pt;}
.y1e5{bottom:290.270267pt;}
.y1b1{bottom:290.340800pt;}
.yac{bottom:290.534800pt;}
.y18e{bottom:290.830933pt;}
.y83{bottom:291.551733pt;}
.y149{bottom:291.702533pt;}
.y277{bottom:294.855867pt;}
.y121{bottom:299.020267pt;}
.y251{bottom:299.238533pt;}
.y236{bottom:299.654000pt;}
.yd9{bottom:300.828533pt;}
.y55{bottom:302.662800pt;}
.y101{bottom:307.085733pt;}
.y179{bottom:308.020933pt;}
.y21d{bottom:308.251600pt;}
.y1ff{bottom:308.339200pt;}
.y1e4{bottom:308.750267pt;}
.yab{bottom:309.014800pt;}
.y18d{bottom:309.310933pt;}
.y82{bottom:310.285067pt;}
.y1b0{bottom:314.980800pt;}
.y120{bottom:317.500267pt;}
.y1be{bottom:317.893200pt;}
.y235{bottom:318.134000pt;}
.yd8{bottom:319.308533pt;}
.y148{bottom:319.422533pt;}
.y276{bottom:320.895867pt;}
.y54{bottom:321.142800pt;}
.y100{bottom:325.565733pt;}
.y178{bottom:326.500933pt;}
.y21c{bottom:326.731600pt;}
.y250{bottom:326.958533pt;}
.y1e3{bottom:327.230267pt;}
.yaa{bottom:327.494800pt;}
.y18c{bottom:327.790933pt;}
.y81{bottom:329.018400pt;}
.y12d{bottom:331.298400pt;}
.y11f{bottom:335.980267pt;}
.y1fe{bottom:336.059200pt;}
.y1bd{bottom:336.373200pt;}
.y234{bottom:336.614000pt;}
.yd7{bottom:337.695867pt;}
.y147{bottom:337.902533pt;}
.y275{bottom:339.375867pt;}
.y53{bottom:339.622800pt;}
.y1af{bottom:339.626533pt;}
.yff{bottom:344.045733pt;}
.y21b{bottom:345.211600pt;}
.y1e2{bottom:345.710267pt;}
.ya9{bottom:345.974800pt;}
.y18b{bottom:346.270933pt;}
.y80{bottom:347.751733pt;}
.y12c{bottom:352.312133pt;}
.y11e{bottom:354.460267pt;}
.y1fd{bottom:354.539200pt;}
.y24f{bottom:354.678533pt;}
.y1bc{bottom:354.853200pt;}
.y233{bottom:355.094000pt;}
.y1ae{bottom:355.262533pt;}
.yd6{bottom:356.175867pt;}
.y146{bottom:356.382533pt;}
.y274{bottom:357.855867pt;}
.y52{bottom:358.084267pt;}
.y1ac{bottom:359.282533pt;}
.yfe{bottom:362.525733pt;}
.y21a{bottom:363.691600pt;}
.y1e1{bottom:364.190267pt;}
.ya8{bottom:364.454800pt;}
.y18a{bottom:364.750933pt;}
.y7f{bottom:366.485067pt;}
.y11d{bottom:372.940267pt;}
.y1fc{bottom:373.019200pt;}
.y177{bottom:373.114933pt;}
.y1bb{bottom:373.333200pt;}
.y232{bottom:373.574000pt;}
.yd5{bottom:374.655867pt;}
.y145{bottom:374.862533pt;}
.y51{bottom:376.564267pt;}
.y1ad{bottom:378.950533pt;}
.y2b{bottom:379.905867pt;}
.yfd{bottom:381.005733pt;}
.y219{bottom:382.171600pt;}
.y24e{bottom:382.398533pt;}
.y1e0{bottom:382.670267pt;}
.ya7{bottom:382.934800pt;}
.y189{bottom:383.230933pt;}
.y273{bottom:383.895867pt;}
.y32{bottom:386.327200pt;}
.y11c{bottom:391.420267pt;}
.y1fb{bottom:391.499200pt;}
.y1ba{bottom:391.813200pt;}
.y231{bottom:392.054000pt;}
.y2a{bottom:392.695200pt;}
.yd4{bottom:393.135867pt;}
.y144{bottom:393.342533pt;}
.y7e{bottom:394.458400pt;}
.y50{bottom:395.044267pt;}
.y31{bottom:399.116533pt;}
.yfc{bottom:399.485733pt;}
.ya6{bottom:401.414800pt;}
.y188{bottom:401.710933pt;}
.y272{bottom:402.375867pt;}
.y29{bottom:405.484533pt;}
.y11b{bottom:409.900267pt;}
.y1fa{bottom:409.979200pt;}
.y24d{bottom:410.118533pt;}
.y1ab{bottom:410.310667pt;}
.y1df{bottom:410.390267pt;}
.y230{bottom:410.534000pt;}
.yd3{bottom:411.615867pt;}
.y143{bottom:411.822533pt;}
.y30{bottom:411.905867pt;}
.y7d{bottom:413.191733pt;}
.y4f{bottom:413.524267pt;}
.yfb{bottom:417.965733pt;}
.y28{bottom:418.273867pt;}
.ya5{bottom:419.894800pt;}
.y187{bottom:420.190933pt;}
.y271{bottom:420.855867pt;}
.y2f{bottom:424.695200pt;}
.y11a{bottom:428.380267pt;}
.y1f9{bottom:428.459200pt;}
.y218{bottom:428.785600pt;}
.y1de{bottom:428.870267pt;}
.yd2{bottom:430.095867pt;}
.y142{bottom:430.302533pt;}
.y27{bottom:431.063200pt;}
.y7c{bottom:431.925067pt;}
.y4e{bottom:432.004267pt;}
.y1aa{bottom:432.640667pt;}
.yfa{bottom:436.445733pt;}
.y16b{bottom:436.968400pt;}
.y2e{bottom:437.484533pt;}
.y24c{bottom:437.838533pt;}
.y22f{bottom:438.254000pt;}
.ya4{bottom:438.374800pt;}
.y186{bottom:438.670933pt;}
.y270{bottom:439.335867pt;}
.y26{bottom:443.852533pt;}
.y1b9{bottom:445.986267pt;}
.y119{bottom:446.860267pt;}
.y1f8{bottom:446.939200pt;}
.y1dd{bottom:447.350267pt;}
.yd1{bottom:448.575867pt;}
.y2d{bottom:450.273867pt;}
.y4d{bottom:450.484267pt;}
.y7b{bottom:450.658400pt;}
.yf9{bottom:454.925733pt;}
.y22e{bottom:456.734000pt;}
.y185{bottom:457.150933pt;}
.y141{bottom:458.022533pt;}
.y214{bottom:458.045467pt;}
.y25{bottom:463.042667pt;}
.y2c{bottom:463.063200pt;}
.y118{bottom:465.340267pt;}
.y26f{bottom:465.375867pt;}
.y1f7{bottom:465.419200pt;}
.y24b{bottom:465.558533pt;}
.y1dc{bottom:465.830267pt;}
.ya3{bottom:466.081467pt;}
.yd0{bottom:467.055867pt;}
.y4c{bottom:468.964267pt;}
.y7a{bottom:469.391733pt;}
.yf8{bottom:473.405733pt;}
.y22d{bottom:475.214000pt;}
.y184{bottom:475.630933pt;}
.y140{bottom:476.502533pt;}
.y1a9{bottom:479.548000pt;}
.y117{bottom:483.820267pt;}
.y26e{bottom:483.855867pt;}
.y1f6{bottom:483.899200pt;}
.y1db{bottom:484.310267pt;}
.ya2{bottom:484.561467pt;}
.ycf{bottom:485.535867pt;}
.y16a{bottom:485.673867pt;}
.y4b{bottom:487.444267pt;}
.y79{bottom:488.125067pt;}
.yf7{bottom:491.885733pt;}
.y24a{bottom:493.278533pt;}
.y22c{bottom:493.694000pt;}
.y183{bottom:494.110933pt;}
.y13f{bottom:494.982533pt;}
.y24{bottom:497.163733pt;}
.y1a8{bottom:498.028000pt;}
.y174{bottom:501.562000pt;}
.y116{bottom:502.300267pt;}
.y26d{bottom:502.335867pt;}
.ya1{bottom:503.041467pt;}
.y1c{bottom:503.531733pt;}
.yce{bottom:504.015867pt;}
.y169{bottom:504.153867pt;}
.y213{bottom:506.737733pt;}
.y78{bottom:506.858400pt;}
.y23{bottom:509.953067pt;}
.yf6{bottom:510.365733pt;}
.y171{bottom:510.802933pt;}
.y1f5{bottom:511.619200pt;}
.y22b{bottom:512.174000pt;}
.y13e{bottom:513.462533pt;}
.y1b{bottom:516.321067pt;}
.y1a7{bottom:516.508000pt;}
.y173{bottom:520.042000pt;}
.y115{bottom:520.780267pt;}
.y249{bottom:520.998533pt;}
.ya0{bottom:521.521467pt;}
.ycd{bottom:522.495867pt;}
.y168{bottom:522.633867pt;}
.y22{bottom:522.742400pt;}
.y212{bottom:525.217733pt;}
.y77{bottom:525.591733pt;}
.y26c{bottom:528.375867pt;}
.yf5{bottom:528.845733pt;}
.y1a{bottom:529.110400pt;}
.y1f4{bottom:530.099200pt;}
.y4a{bottom:530.281333pt;}
.y22a{bottom:530.654000pt;}
.y13d{bottom:531.942533pt;}
.y1a6{bottom:534.988000pt;}
.y21{bottom:535.531733pt;}
.y114{bottom:539.260267pt;}
.y9f{bottom:540.001467pt;}
.y182{bottom:540.724933pt;}
.y167{bottom:541.113867pt;}
.y19{bottom:541.899733pt;}
.y211{bottom:543.697733pt;}
.y76{bottom:544.325067pt;}
.y1da{bottom:546.042400pt;}
.y26b{bottom:546.855867pt;}
.yf4{bottom:547.325733pt;}
.y20{bottom:548.321067pt;}
.y1f3{bottom:548.579200pt;}
.y248{bottom:548.718533pt;}
.ycc{bottom:550.215867pt;}
.y49{bottom:553.022667pt;}
.y1a5{bottom:553.468000pt;}
.y18{bottom:554.689067pt;}
.y9e{bottom:558.481467pt;}
.y170{bottom:559.455867pt;}
.y1f{bottom:561.110400pt;}
.y210{bottom:562.177733pt;}
.y75{bottom:563.058400pt;}
.yf3{bottom:565.805733pt;}
.y1f2{bottom:567.059200pt;}
.y247{bottom:567.198533pt;}
.y17{bottom:567.478400pt;}
.ycb{bottom:568.695867pt;}
.y1d9{bottom:570.680133pt;}
.y229{bottom:571.598667pt;}
.y1a4{bottom:571.948000pt;}
.y13c{bottom:572.887333pt;}
.y26a{bottom:572.895867pt;}
.y1e{bottom:573.899733pt;}
.y113{bottom:575.148000pt;}
.y16f{bottom:577.935867pt;}
.y20f{bottom:580.657733pt;}
.y74{bottom:581.791733pt;}
.y1f1{bottom:585.539200pt;}
.y246{bottom:585.678533pt;}
.y16{bottom:586.668667pt;}
.y1d{bottom:586.689067pt;}
.yca{bottom:587.175867pt;}
.y166{bottom:587.727867pt;}
.y9d{bottom:589.977333pt;}
.y269{bottom:591.375867pt;}
.yf2{bottom:593.525733pt;}
.y1d8{bottom:595.320133pt;}
.y16e{bottom:596.415867pt;}
.y20e{bottom:599.137733pt;}
.y73{bottom:600.525067pt;}
.y1f0{bottom:604.019200pt;}
.yc9{bottom:605.655867pt;}
.yf1{bottom:612.005733pt;}
.y165{bottom:612.415200pt;}
.y245{bottom:613.398533pt;}
.y16d{bottom:614.895867pt;}
.y48{bottom:617.295200pt;}
.y268{bottom:617.415867pt;}
.y20d{bottom:617.617733pt;}
.y72{bottom:619.258400pt;}
.y1d7{bottom:619.960133pt;}
.yc8{bottom:624.135867pt;}
.y1a3{bottom:626.121067pt;}
.yf0{bottom:630.485733pt;}
.y176{bottom:630.575333pt;}
.y244{bottom:631.878533pt;}
.y13b{bottom:633.375867pt;}
.y47{bottom:635.775200pt;}
.y20c{bottom:636.097733pt;}
.y164{bottom:637.055200pt;}
.y71{bottom:637.991733pt;}
.y228{bottom:639.697067pt;}
.yc7{bottom:642.615867pt;}
.y267{bottom:643.455867pt;}
.y1d6{bottom:644.600133pt;}
.y9c{bottom:649.999200pt;}
.y243{bottom:650.358533pt;}
.y1ef{bottom:650.633200pt;}
.y1a2{bottom:650.774933pt;}
.y13a{bottom:651.855867pt;}
.y163{bottom:654.108533pt;}
.y46{bottom:654.255200pt;}
.y20b{bottom:654.577733pt;}
.y70{bottom:656.725067pt;}
.yc6{bottom:661.095867pt;}
.yef{bottom:661.981600pt;}
.y9b{bottom:668.479200pt;}
.y1d5{bottom:669.240133pt;}
.y266{bottom:669.495867pt;}
.y139{bottom:670.335867pt;}
.y45{bottom:672.735200pt;}
.y1a1{bottom:675.414933pt;}
.y6f{bottom:675.522533pt;}
.y242{bottom:678.078533pt;}
.y162{bottom:678.748533pt;}
.yc5{bottom:679.575867pt;}
.y15{bottom:682.208267pt;}
.y9a{bottom:686.959200pt;}
.y265{bottom:687.975867pt;}
.y138{bottom:688.815867pt;}
.y44{bottom:691.215200pt;}
.y1a0{bottom:692.468267pt;}
.y1d4{bottom:693.880133pt;}
.y6e{bottom:694.255867pt;}
.y241{bottom:696.558533pt;}
.yc4{bottom:698.055867pt;}
.y14{bottom:700.688267pt;}
.y20a{bottom:701.191733pt;}
.y161{bottom:703.388533pt;}
.y99{bottom:705.439200pt;}
.y264{bottom:706.455867pt;}
.y137{bottom:707.295867pt;}
.y43{bottom:709.695200pt;}
.y6d{bottom:712.989200pt;}
.yc3{bottom:716.535867pt;}
.y19f{bottom:717.108267pt;}
.y1d3{bottom:718.520133pt;}
.y13{bottom:719.165733pt;}
.y160{bottom:720.441867pt;}
.y98{bottom:723.919200pt;}
.y136{bottom:725.775867pt;}
.yee{bottom:725.786533pt;}
.y42{bottom:728.175200pt;}
.y6c{bottom:731.722533pt;}
.y263{bottom:732.495867pt;}
.yc2{bottom:735.015867pt;}
.y240{bottom:737.503333pt;}
.y19e{bottom:741.748267pt;}
.y1d2{bottom:743.160133pt;}
.y112{bottom:744.255867pt;}
.yed{bottom:744.266533pt;}
.y15e{bottom:745.068533pt;}
.y41{bottom:746.655200pt;}
.y6b{bottom:750.455867pt;}
.y262{bottom:750.975867pt;}
.y97{bottom:751.639200pt;}
.yc1{bottom:753.495867pt;}
.y12{bottom:758.616267pt;}
.y12b{bottom:759.916533pt;}
.y15d{bottom:762.121867pt;}
.y111{bottom:762.735867pt;}
.yec{bottom:762.746533pt;}
.y40{bottom:765.135200pt;}
.y19d{bottom:766.388267pt;}
.y1d1{bottom:767.800133pt;}
.y6a{bottom:769.189200pt;}
.y261{bottom:769.455867pt;}
.y217{bottom:769.483733pt;}
.y96{bottom:770.119200pt;}
.yc0{bottom:771.975867pt;}
.y11{bottom:777.096267pt;}
.y1b8{bottom:778.394000pt;}
.y15c{bottom:779.175200pt;}
.y15f{bottom:779.188533pt;}
.y110{bottom:781.215867pt;}
.yeb{bottom:781.226533pt;}
.y3f{bottom:783.615200pt;}
.y69{bottom:787.922533pt;}
.y216{bottom:787.963733pt;}
.y95{bottom:788.599200pt;}
.ybf{bottom:790.455867pt;}
.y19c{bottom:791.028267pt;}
.y1d0{bottom:792.440133pt;}
.y260{bottom:795.495867pt;}
.y10{bottom:795.565467pt;}
.y10f{bottom:799.695867pt;}
.yea{bottom:799.706533pt;}
.y15b{bottom:803.815200pt;}
.y94{bottom:807.079200pt;}
.y19b{bottom:808.081600pt;}
.ybe{bottom:808.935867pt;}
.y3e{bottom:811.335200pt;}
.y25f{bottom:813.975867pt;}
.y68{bottom:815.895867pt;}
.y1cf{bottom:817.080133pt;}
.y10e{bottom:818.175867pt;}
.ye9{bottom:818.186533pt;}
.y15a{bottom:820.868533pt;}
.y93{bottom:825.559200pt;}
.ybd{bottom:827.415867pt;}
.y3d{bottom:829.815200pt;}
.y25e{bottom:832.455867pt;}
.y19a{bottom:832.721600pt;}
.y67{bottom:834.629200pt;}
.yf{bottom:835.026800pt;}
.y10d{bottom:836.655867pt;}
.ye8{bottom:836.666533pt;}
.y1ce{bottom:841.720133pt;}
.y92{bottom:844.039200pt;}
.y159{bottom:845.508533pt;}
.ybc{bottom:845.895867pt;}
.y3c{bottom:848.295200pt;}
.y66{bottom:853.362533pt;}
.y10c{bottom:855.135867pt;}
.ye7{bottom:855.146533pt;}
.y199{bottom:857.361600pt;}
.ye{bottom:857.426800pt;}
.y25d{bottom:858.495867pt;}
.y91{bottom:862.511200pt;}
.y158{bottom:862.561867pt;}
.ybb{bottom:864.375867pt;}
.y1cd{bottom:866.360133pt;}
.y3b{bottom:866.775200pt;}
.y65{bottom:872.095867pt;}
.y10b{bottom:873.615867pt;}
.ye6{bottom:873.626533pt;}
.y25c{bottom:876.975867pt;}
.yd{bottom:879.826800pt;}
.y90{bottom:880.991200pt;}
.y198{bottom:882.001600pt;}
.yba{bottom:882.855867pt;}
.y3a{bottom:885.255200pt;}
.y157{bottom:887.210667pt;}
.y64{bottom:890.829200pt;}
.y1cc{bottom:891.005733pt;}
.y10a{bottom:892.095867pt;}
.ye5{bottom:892.106533pt;}
.y25b{bottom:895.455867pt;}
.y8f{bottom:899.471200pt;}
.yb9{bottom:901.335867pt;}
.y156{bottom:902.846667pt;}
.y39{bottom:903.735200pt;}
.y197{bottom:906.638533pt;}
.y1cb{bottom:906.641733pt;}
.y154{bottom:908.762667pt;}
.y63{bottom:909.562533pt;}
.ye4{bottom:910.575867pt;}
.y1c9{bottom:910.661733pt;}
.y8e{bottom:917.951200pt;}
.y196{bottom:918.482533pt;}
.yc{bottom:919.280000pt;}
.yb8{bottom:919.815867pt;}
.y25a{bottom:921.495867pt;}
.y38{bottom:922.215200pt;}
.y62{bottom:928.295867pt;}
.y155{bottom:928.430667pt;}
.ye3{bottom:929.055867pt;}
.y1ca{bottom:930.329733pt;}
.yb7{bottom:938.295867pt;}
.y259{bottom:939.975867pt;}
.y37{bottom:940.695200pt;}
.y61{bottom:947.029200pt;}
.ye2{bottom:947.535867pt;}
.yb{bottom:948.080000pt;}
.y8d{bottom:958.898667pt;}
.y153{bottom:961.690000pt;}
.y60{bottom:965.762533pt;}
.yb6{bottom:966.015867pt;}
.ya{bottom:976.880000pt;}
.y36{bottom:981.640000pt;}
.y152{bottom:984.020000pt;}
.y5f{bottom:984.495867pt;}
.y2{bottom:1034.502533pt;}
.y35{bottom:1042.616800pt;}
.y34{bottom:1061.271200pt;}
.y33{bottom:1073.271200pt;}
.h3{height:27.477333pt;}
.h4{height:27.738667pt;}
.h19{height:29.184000pt;}
.h5{height:29.720000pt;}
.h17{height:29.760000pt;}
.hd{height:31.402667pt;}
.hc{height:38.741333pt;}
.h20{height:38.986667pt;}
.hb{height:39.253333pt;}
.he{height:41.162667pt;}
.h18{height:43.584000pt;}
.h1d{height:44.160000pt;}
.ha{height:48.426667pt;}
.h12{height:48.458667pt;}
.h11{height:48.469333pt;}
.h14{height:48.480000pt;}
.h10{height:48.500800pt;}
.h15{height:48.611733pt;}
.h16{height:48.797333pt;}
.h1c{height:50.848000pt;}
.h1b{height:51.520000pt;}
.h2{height:53.269333pt;}
.h1a{height:53.973333pt;}
.h8{height:54.581333pt;}
.h13{height:58.880000pt;}
.hf{height:63.786667pt;}
.h9{height:67.797333pt;}
.h1e{height:75.456000pt;}
.h6{height:88.320000pt;}
.h7{height:88.320533pt;}
.h1f{height:91.536000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x13{left:77.316000pt;}
.x3f{left:79.083467pt;}
.x54{left:80.614000pt;}
.x32{left:81.653867pt;}
.x10{left:83.149600pt;}
.x38{left:87.957467pt;}
.x1c{left:90.235200pt;}
.x15{left:94.483333pt;}
.x16{left:96.208800pt;}
.x3{left:98.261200pt;}
.x14{left:100.438667pt;}
.x17{left:103.794533pt;}
.x3d{left:110.633600pt;}
.x36{left:115.891600pt;}
.x6{left:118.669733pt;}
.x72{left:120.950533pt;}
.x58{left:122.995600pt;}
.x7{left:125.478533pt;}
.x1b{left:128.038533pt;}
.x4{left:129.062800pt;}
.x5{left:134.062800pt;}
.x57{left:143.645067pt;}
.x6e{left:149.070800pt;}
.x6a{left:150.491600pt;}
.x43{left:153.632267pt;}
.x6b{left:159.013467pt;}
.x37{left:160.075600pt;}
.x42{left:162.475067pt;}
.x35{left:164.977733pt;}
.x6c{left:168.707867pt;}
.x39{left:170.573600pt;}
.x1e{left:178.519200pt;}
.x1f{left:187.627200pt;}
.x71{left:188.818667pt;}
.x3c{left:196.299067pt;}
.x3e{left:198.209600pt;}
.x33{left:202.605333pt;}
.x40{left:213.230133pt;}
.x5a{left:215.143600pt;}
.x5b{left:224.251600pt;}
.x19{left:226.224133pt;}
.x20{left:229.963200pt;}
.x9{left:231.290933pt;}
.x21{left:239.071200pt;}
.x55{left:250.708533pt;}
.x11{left:253.229600pt;}
.x5c{left:267.187600pt;}
.xa{left:272.917600pt;}
.x5d{left:276.295600pt;}
.x6f{left:279.592800pt;}
.x22{left:281.407200pt;}
.x34{left:283.019333pt;}
.x6d{left:284.515867pt;}
.x70{left:286.241333pt;}
.x56{left:288.575467pt;}
.x23{left:290.515200pt;}
.x3a{left:295.133333pt;}
.x45{left:318.032267pt;}
.x5e{left:319.231600pt;}
.x46{left:327.140267pt;}
.x5f{left:328.339600pt;}
.x24{left:332.803200pt;}
.x8{left:340.564000pt;}
.x25{left:341.911200pt;}
.x47{left:363.260267pt;}
.x60{left:371.275600pt;}
.x3b{left:372.475067pt;}
.x1a{left:374.200533pt;}
.x61{left:380.383600pt;}
.x26{left:384.199200pt;}
.x18{left:385.119600pt;}
.x27{left:393.307200pt;}
.x48{left:408.488267pt;}
.x1d{left:412.759200pt;}
.xb{left:416.594933pt;}
.x49{left:417.596267pt;}
.x62{left:423.319600pt;}
.x59{left:431.599600pt;}
.x28{left:435.643200pt;}
.x29{left:444.751200pt;}
.x4a{left:453.716267pt;}
.x12{left:457.448133pt;}
.x44{left:461.912267pt;}
.x4b{left:462.824267pt;}
.x41{left:472.203467pt;}
.x63{left:475.363600pt;}
.xe{left:482.952800pt;}
.x64{left:484.471600pt;}
.x2a{left:487.087200pt;}
.xc{left:494.098933pt;}
.x2b{left:496.195200pt;}
.x4c{left:498.944267pt;}
.x4d{left:508.052267pt;}
.xf{left:516.607333pt;}
.x65{left:527.407600pt;}
.x66{left:536.515600pt;}
.x2c{left:538.483200pt;}
.x4e{left:544.172267pt;}
.x2d{left:547.591200pt;}
.x4f{left:553.280267pt;}
.x67{left:579.451600pt;}
.xd{left:584.019467pt;}
.x68{left:588.559600pt;}
.x2e{left:589.879200pt;}
.x2f{left:598.987200pt;}
.x69{left:631.495600pt;}
.x50{left:634.628267pt;}
.x30{left:641.323200pt;}
.x51{left:643.736267pt;}
.x31{left:650.431200pt;}
.x2{left:660.588667pt;}
.x52{left:679.856267pt;}
.x53{left:688.964267pt;}
}




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