
    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_492c5ce6701ed7ba81748605.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb673a03609adf4775b50e43.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a9d6f019d12285e71c278ae6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.821777;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_198787a9c968f9b7b10dd294.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_9a26fa261f59402658805f69.woff')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_9b0a8dc3592324d486f9111b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.858887;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_4ea67db6c4f56b6f8c1dbea1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_fc6bb2d95dd774e5245a7af8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_05979d8882f3aa929689c3bc.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_533c66982c0020f022e9a347.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls58{letter-spacing:-1.722240px;}
.ls35{letter-spacing:-1.523520px;}
.ls1a{letter-spacing:-1.457280px;}
.ls3c{letter-spacing:-1.192320px;}
.ls62{letter-spacing:-1.126080px;}
.ls22{letter-spacing:-1.059840px;}
.ls14{letter-spacing:-1.010880px;}
.ls2d{letter-spacing:-0.993600px;}
.ls1b{letter-spacing:-0.861120px;}
.ls6{letter-spacing:-0.758160px;}
.ls36{letter-spacing:-0.728640px;}
.ls8{letter-spacing:-0.673920px;}
.ls52{letter-spacing:-0.529920px;}
.ls21{letter-spacing:-0.463680px;}
.ls2e{letter-spacing:-0.397440px;}
.lse{letter-spacing:-0.336960px;}
.ls19{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.287280px;}
.ls1f{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.252720px;}
.ls30{letter-spacing:-0.198720px;}
.ls3e{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.084240px;}
.ls2c{letter-spacing:-0.077760px;}
.ls2f{letter-spacing:-0.066240px;}
.ls4{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.054000px;}
.lsb{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.132480px;}
.ls43{letter-spacing:0.158976px;}
.lsc{letter-spacing:0.168480px;}
.ls16{letter-spacing:0.185472px;}
.ls0{letter-spacing:0.192240px;}
.ls44{letter-spacing:0.225216px;}
.ls4c{letter-spacing:0.231840px;}
.ls6c{letter-spacing:0.245088px;}
.ls10{letter-spacing:0.252720px;}
.ls1d{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.264960px;}
.ls3d{letter-spacing:0.271584px;}
.ls5e{letter-spacing:0.278208px;}
.ls4d{letter-spacing:0.291456px;}
.ls29{letter-spacing:0.304704px;}
.ls1e{letter-spacing:0.305280px;}
.ls47{letter-spacing:0.311328px;}
.ls34{letter-spacing:0.317952px;}
.ls32{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.336960px;}
.ls67{letter-spacing:0.337824px;}
.ls51{letter-spacing:0.351072px;}
.ls57{letter-spacing:0.357696px;}
.ls3{letter-spacing:0.379080px;}
.ls5{letter-spacing:0.384480px;}
.ls20{letter-spacing:0.397440px;}
.ls6e{letter-spacing:0.404064px;}
.ls69{letter-spacing:0.417312px;}
.ls11{letter-spacing:0.421200px;}
.ls42{letter-spacing:0.423936px;}
.ls66{letter-spacing:0.430560px;}
.ls5b{letter-spacing:0.437184px;}
.ls70{letter-spacing:0.443808px;}
.ls5c{letter-spacing:0.450432px;}
.ls38{letter-spacing:0.457056px;}
.ls61{letter-spacing:0.490176px;}
.ls26{letter-spacing:0.510048px;}
.ls4f{letter-spacing:0.516672px;}
.ls56{letter-spacing:0.529920px;}
.ls50{letter-spacing:0.536544px;}
.ls55{letter-spacing:0.543168px;}
.ls2a{letter-spacing:0.563040px;}
.ls40{letter-spacing:0.569664px;}
.ls24{letter-spacing:0.576288px;}
.ls37{letter-spacing:0.596160px;}
.ls60{letter-spacing:0.602784px;}
.ls3b{letter-spacing:0.669024px;}
.ls63{letter-spacing:0.675648px;}
.ls39{letter-spacing:0.695520px;}
.ls53{letter-spacing:0.702144px;}
.ls5f{letter-spacing:0.722016px;}
.ls48{letter-spacing:0.728640px;}
.ls25{letter-spacing:0.775008px;}
.ls49{letter-spacing:0.781632px;}
.ls4a{letter-spacing:0.880992px;}
.ls5a{letter-spacing:0.993600px;}
.ls41{letter-spacing:1.066464px;}
.ls9{letter-spacing:1.095120px;}
.ls2b{letter-spacing:1.722240px;}
.ls18{letter-spacing:1.980576px;}
.ls46{letter-spacing:3.179520px;}
.ls3a{letter-spacing:4.802400px;}
.ls59{letter-spacing:5.365440px;}
.ls5d{letter-spacing:6.345792px;}
.ls6b{letter-spacing:7.485120px;}
.ls6f{letter-spacing:8.280000px;}
.ls54{letter-spacing:9.671040px;}
.ls23{letter-spacing:10.399680px;}
.ls28{letter-spacing:11.856960px;}
.ls65{letter-spacing:13.248000px;}
.ls6d{letter-spacing:16.891200px;}
.ls3f{letter-spacing:19.010880px;}
.ls4b{letter-spacing:21.925440px;}
.ls17{letter-spacing:26.231040px;}
.ls68{letter-spacing:30.536640px;}
.ls27{letter-spacing:31.464000px;}
.ls6a{letter-spacing:34.842240px;}
.ls45{letter-spacing:35.570880px;}
.ls64{letter-spacing:38.485440px;}
.ls4e{letter-spacing:59.351040px;}
.ls2{letter-spacing:188.950320px;}
.lsd{letter-spacing:845.585280px;}
.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;}
}
.ws88{word-spacing:-66.240000px;}
.ws0{word-spacing:-53.827200px;}
.ws1{word-spacing:-53.442720px;}
.ws4{word-spacing:-23.797800px;}
.ws5{word-spacing:-23.755680px;}
.ws3{word-spacing:-23.334480px;}
.ws2{word-spacing:-22.660560px;}
.wsf{word-spacing:-19.290960px;}
.ws10{word-spacing:-19.038240px;}
.ws13{word-spacing:-18.954000px;}
.ws35{word-spacing:-18.812160px;}
.ws12{word-spacing:-18.785520px;}
.wse{word-spacing:-18.745920px;}
.ws14{word-spacing:-18.701280px;}
.ws36{word-spacing:-18.679680px;}
.wsc{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.282240px;}
.ws34{word-spacing:-18.149760px;}
.ws1f{word-spacing:-18.083520px;}
.ws15{word-spacing:-18.027360px;}
.ws9a{word-spacing:-18.017280px;}
.ws87{word-spacing:-17.951040px;}
.ws9b{word-spacing:-17.686080px;}
.ws38{word-spacing:-17.553600px;}
.ws37{word-spacing:-17.354880px;}
.ws4f{word-spacing:-15.235200px;}
.ws50{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.904000px;}
.ws5c{word-spacing:-12.204000px;}
.ws96{word-spacing:-4.570560px;}
.ws33{word-spacing:-3.841920px;}
.ws25{word-spacing:-3.179520px;}
.wsa4{word-spacing:-2.980800px;}
.ws28{word-spacing:-2.450880px;}
.ws6e{word-spacing:-2.252160px;}
.ws3f{word-spacing:-1.722240px;}
.ws68{word-spacing:-1.026000px;}
.ws2c{word-spacing:-0.993600px;}
.ws9{word-spacing:-0.961200px;}
.ws80{word-spacing:-0.794880px;}
.ws18{word-spacing:-0.758160px;}
.wsa2{word-spacing:-0.728640px;}
.ws1d{word-spacing:-0.673920px;}
.ws1c{word-spacing:-0.589680px;}
.ws19{word-spacing:-0.505440px;}
.ws55{word-spacing:-0.397440px;}
.ws8{word-spacing:-0.384480px;}
.ws17{word-spacing:-0.336960px;}
.ws5d{word-spacing:-0.331200px;}
.ws65{word-spacing:-0.324000px;}
.ws86{word-spacing:-0.270000px;}
.ws3b{word-spacing:-0.264960px;}
.ws16{word-spacing:-0.252720px;}
.wsa{word-spacing:-0.192240px;}
.ws1b{word-spacing:-0.084240px;}
.ws3d{word-spacing:-0.066240px;}
.ws66{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws7a{word-spacing:0.054000px;}
.ws3a{word-spacing:0.066240px;}
.ws4a{word-spacing:0.077760px;}
.ws7{word-spacing:0.131760px;}
.ws3e{word-spacing:0.132480px;}
.ws67{word-spacing:0.162000px;}
.ws1a{word-spacing:0.216000px;}
.ws8a{word-spacing:0.264960px;}
.ws32{word-spacing:0.287280px;}
.ws51{word-spacing:0.331200px;}
.ws4e{word-spacing:0.397440px;}
.ws22{word-spacing:0.463680px;}
.ws8c{word-spacing:0.529920px;}
.ws95{word-spacing:0.596160px;}
.ws39{word-spacing:0.662400px;}
.wsb{word-spacing:0.673920px;}
.ws7d{word-spacing:0.699840px;}
.ws6f{word-spacing:0.728640px;}
.ws3c{word-spacing:0.794880px;}
.ws6c{word-spacing:0.861120px;}
.ws4d{word-spacing:0.993600px;}
.ws99{word-spacing:1.126080px;}
.ws21{word-spacing:1.192320px;}
.ws93{word-spacing:1.324800px;}
.ws2a{word-spacing:1.457280px;}
.ws6b{word-spacing:1.523520px;}
.ws91{word-spacing:1.722240px;}
.ws31{word-spacing:1.920960px;}
.ws82{word-spacing:2.119680px;}
.ws57{word-spacing:2.583360px;}
.ws30{word-spacing:3.312000px;}
.ws85{word-spacing:3.444480px;}
.ws43{word-spacing:4.040640px;}
.ws77{word-spacing:4.636800px;}
.ws42{word-spacing:4.769280px;}
.ws20{word-spacing:5.497920px;}
.ws9c{word-spacing:5.754240px;}
.ws44{word-spacing:6.226560px;}
.ws29{word-spacing:6.955200px;}
.ws7f{word-spacing:7.220160px;}
.ws6a{word-spacing:7.551360px;}
.ws2d{word-spacing:7.683840px;}
.ws74{word-spacing:7.816320px;}
.ws75{word-spacing:7.882560px;}
.ws89{word-spacing:7.948800px;}
.ws53{word-spacing:8.346240px;}
.ws46{word-spacing:9.074880px;}
.ws81{word-spacing:9.207360px;}
.ws23{word-spacing:9.803520px;}
.ws26{word-spacing:10.532160px;}
.ws94{word-spacing:10.797120px;}
.ws78{word-spacing:11.260800px;}
.ws49{word-spacing:11.989440px;}
.ws63{word-spacing:12.188160px;}
.ws24{word-spacing:12.718080px;}
.ws59{word-spacing:13.380480px;}
.ws70{word-spacing:14.109120px;}
.ws69{word-spacing:14.837760px;}
.ws7b{word-spacing:15.102720px;}
.ws58{word-spacing:15.566400px;}
.ws5e{word-spacing:16.295040px;}
.ws45{word-spacing:17.023680px;}
.ws5b{word-spacing:17.752320px;}
.ws56{word-spacing:18.480960px;}
.wsa1{word-spacing:19.010880px;}
.ws2b{word-spacing:19.143360px;}
.ws7e{word-spacing:19.342080px;}
.ws7c{word-spacing:19.474560px;}
.ws8b{word-spacing:19.872000px;}
.ws4b{word-spacing:20.600640px;}
.wsa5{word-spacing:20.733120px;}
.wsa6{word-spacing:20.799360px;}
.ws4c{word-spacing:20.931840px;}
.ws40{word-spacing:21.329280px;}
.ws73{word-spacing:22.057920px;}
.wsa3{word-spacing:22.322880px;}
.ws41{word-spacing:22.786560px;}
.ws8d{word-spacing:23.846400px;}
.ws76{word-spacing:24.243840px;}
.ws72{word-spacing:24.906240px;}
.ws84{word-spacing:25.634880px;}
.ws2f{word-spacing:26.363520px;}
.ws6d{word-spacing:27.092160px;}
.ws8f{word-spacing:27.290880px;}
.ws79{word-spacing:27.820800px;}
.ws2e{word-spacing:29.278080px;}
.ws92{word-spacing:29.476800px;}
.ws5a{word-spacing:29.940480px;}
.ws90{word-spacing:30.669120px;}
.ws48{word-spacing:31.397760px;}
.ws47{word-spacing:32.126400px;}
.ws27{word-spacing:32.855040px;}
.ws71{word-spacing:33.583680px;}
.ws9d{word-spacing:34.312320px;}
.ws83{word-spacing:35.703360px;}
.ws60{word-spacing:37.889280px;}
.ws9e{word-spacing:38.617920px;}
.ws9f{word-spacing:39.346560px;}
.wsa0{word-spacing:39.545280px;}
.ws5f{word-spacing:40.803840px;}
.ws52{word-spacing:43.652160px;}
.ws64{word-spacing:47.229120px;}
.ws98{word-spacing:48.686400px;}
.ws97{word-spacing:49.415040px;}
.ws1e{word-spacing:50.796720px;}
.ws62{word-spacing:52.263360px;}
.ws54{word-spacing:59.483520px;}
.ws8e{word-spacing:79.620480px;}
.ws61{word-spacing:92.603520px;}
._2{margin-left:-206.034192px;}
._3{margin-left:-188.950320px;}
._c{margin-left:-16.275168px;}
._8{margin-left:-15.156072px;}
._a{margin-left:-11.798784px;}
._b{margin-left:-10.749024px;}
._5{margin-left:-9.607248px;}
._7{margin-left:-7.525656px;}
._9{margin-left:-6.032016px;}
._6{margin-left:-4.938192px;}
._4{margin-left:-3.032640px;}
._1{margin-left:-1.018872px;}
._0{width:1.027728px;}
._d{width:2.418264px;}
._13{width:3.607056px;}
._12{width:4.653216px;}
._15{width:7.008192px;}
._14{width:8.280000px;}
._16{width:9.703152px;}
._1c{width:11.790720px;}
._17{width:13.552632px;}
._1b{width:16.452792px;}
._11{width:19.458864px;}
._10{width:20.759616px;}
._f{width:22.288752px;}
._19{width:29.840112px;}
._18{width:30.852144px;}
._1a{width:107.277408px;}
._e{width:845.553600px;}
.fc4{color:transparent;}
.fc3{color:rgb(47,84,150);}
.fc5{color:rgb(68,84,106);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(156,194,229);}
.fc0{color:rgb(78,107,161);}
.fs6{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.fs3{font-size:192.240000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:6.300000px;}
.y51{bottom:6.480000px;}
.ya5{bottom:10.800000px;}
.yb6{bottom:10.980000px;}
.yac{bottom:32.580000px;}
.yb4{bottom:32.760000px;}
.yab{bottom:54.360000px;}
.yb3{bottom:54.540000px;}
.y16{bottom:56.710800px;}
.y15{bottom:75.605760px;}
.yae{bottom:76.140000px;}
.yaa{bottom:76.320000px;}
.ya8{bottom:98.100000px;}
.y18e{bottom:111.420720px;}
.yec{bottom:112.680000px;}
.y1ea{bottom:113.082480px;}
.y126{bottom:118.985040px;}
.yca{bottom:119.520000px;}
.yc3{bottom:119.880000px;}
.yd5{bottom:120.060000px;}
.y181{bottom:121.762080px;}
.y142{bottom:122.669280px;}
.ya0{bottom:122.955840px;}
.y227{bottom:126.642960px;}
.yfc{bottom:128.904480px;}
.y157{bottom:130.341600px;}
.ycd{bottom:130.500000px;}
.y1d1{bottom:131.677920px;}
.y18d{bottom:133.379280px;}
.y1e9{bottom:134.858880px;}
.y125{bottom:140.761440px;}
.yda{bottom:141.660000px;}
.yd3{bottom:141.840000px;}
.y247{bottom:143.534160px;}
.y180{bottom:143.538480px;}
.y141{bottom:144.445680px;}
.y9f{bottom:144.732240px;}
.y226{bottom:148.601520px;}
.y1fc{bottom:148.950000px;}
.y1b7{bottom:148.966560px;}
.yeb{bottom:149.580000px;}
.yfb{bottom:150.863040px;}
.y156{bottom:152.118000px;}
.ycc{bottom:152.280000px;}
.y1e8{bottom:156.817440px;}
.y1d0{bottom:157.958640px;}
.y18c{bottom:159.660000px;}
.y124{bottom:162.720000px;}
.yd1{bottom:163.620000px;}
.y246{bottom:165.310560px;}
.y17f{bottom:165.314880px;}
.y140{bottom:166.222080px;}
.y9e{bottom:166.508640px;}
.y225{bottom:170.377920px;}
.y1fb{bottom:170.726400px;}
.yfa{bottom:172.639440px;}
.ycb{bottom:174.060000px;}
.yea{bottom:174.240720px;}
.y155{bottom:178.580880px;}
.y1e7{bottom:178.593840px;}
.y1b6{bottom:181.374480px;}
.y1cf{bottom:184.239360px;}
.ycf{bottom:185.400000px;}
.y17e{bottom:187.091280px;}
.y9d{bottom:188.285040px;}
.y245{bottom:191.591280px;}
.y224{bottom:192.154320px;}
.y13f{bottom:192.684960px;}
.yf9{bottom:194.415840px;}
.y123{bottom:194.940000px;}
.yc6{bottom:195.120000px;}
.y18b{bottom:196.560000px;}
.y1e6{bottom:200.370240px;}
.y1b5{bottom:201.710160px;}
.y154{bottom:204.861600px;}
.yc9{bottom:206.100000px;}
.y1ce{bottom:206.197920px;}
.y17d{bottom:208.867680px;}
.y76{bottom:209.699280px;}
.y9c{bottom:210.243600px;}
.y223{bottom:213.930720px;}
.y1fa{bottom:214.461360px;}
.yf8{bottom:216.192240px;}
.y4c{bottom:216.915840px;}
.y244{bottom:217.872000px;}
.y13e{bottom:218.965680px;}
.y18a{bottom:221.411520px;}
.y1e5{bottom:222.146640px;}
.y1b4{bottom:222.228000px;}
.y153{bottom:226.638000px;}
.y1cd{bottom:227.974320px;}
.y17c{bottom:230.826240px;}
.y9b{bottom:232.020000px;}
.y269{bottom:234.600480px;}
.y75{bottom:235.980000px;}
.y122{bottom:236.237760px;}
.yf7{bottom:238.150800px;}
.y4b{bottom:238.692240px;}
.y243{bottom:239.830560px;}
.y222{bottom:240.393600px;}
.y13d{bottom:240.742080px;}
.y1b3{bottom:243.822240px;}
.y1e4{bottom:244.105200px;}
.y152{bottom:248.414400px;}
.y1cc{bottom:249.750720px;}
.y74{bottom:256.680000px;}
.y17b{bottom:257.106960px;}
.yf6{bottom:259.927200px;}
.y4a{bottom:260.468640px;}
.y268{bottom:260.881200px;}
.y242{bottom:261.606960px;}
.y221{bottom:262.170000px;}
.y121{bottom:262.518480px;}
.y1b2{bottom:264.340080px;}
.y1e3{bottom:265.881600px;}
.y1f9{bottom:267.022800px;}
.y9a{bottom:269.820000px;}
.y151{bottom:270.190800px;}
.yc8{bottom:271.440000px;}
.y1cb{bottom:276.031440px;}
.y17a{bottom:278.883360px;}
.y73{bottom:279.180000px;}
.yf5{bottom:281.703600px;}
.y49{bottom:282.427200px;}
.y241{bottom:283.383360px;}
.y220{bottom:283.946400px;}
.y120{bottom:284.294880px;}
.y1b1{bottom:284.857920px;}
.y267{bottom:287.161920px;}
.y1e2{bottom:287.658000px;}
.y1f8{bottom:288.799200px;}
.yc7{bottom:293.220000px;}
.y150{bottom:296.653680px;}
.y99{bottom:299.220480px;}
.y179{bottom:300.659760px;}
.y72{bottom:301.860000px;}
.y1ca{bottom:302.312160px;}
.yf4{bottom:303.480000px;}
.y48{bottom:304.203600px;}
.y240{bottom:305.159760px;}
.y21f{bottom:305.722800px;}
.y11f{bottom:306.253440px;}
.y1b0{bottom:306.270000px;}
.y266{bottom:309.120480px;}
.y1e1{bottom:309.434400px;}
.y1f7{bottom:310.757760px;}
.yc2{bottom:314.460000px;}
.y178{bottom:322.618320px;}
.y14f{bottom:322.934400px;}
.y1c9{bottom:324.270720px;}
.y71{bottom:324.360000px;}
.yf3{bottom:325.256400px;}
.yc5{bottom:325.260000px;}
.y98{bottom:325.501200px;}
.y47{bottom:325.980000px;}
.y1af{bottom:326.787840px;}
.y23f{bottom:327.118320px;}
.y21e{bottom:327.499200px;}
.y13c{bottom:328.029840px;}
.y265{bottom:330.896880px;}
.y1e0{bottom:331.210800px;}
.y11e{bottom:332.534160px;}
.y177{bottom:344.394720px;}
.y14e{bottom:344.710800px;}
.y1c8{bottom:346.047120px;}
.y70{bottom:347.040000px;}
.y1ae{bottom:348.382080px;}
.y23e{bottom:348.894720px;}
.y21d{bottom:349.457760px;}
.y13b{bottom:349.806240px;}
.yf2{bottom:351.719280px;}
.y97{bottom:351.781920px;}
.y1df{bottom:353.169360px;}
.y1f6{bottom:354.310560px;}
.y264{bottom:357.177600px;}
.y46{bottom:358.200000px;}
.y11d{bottom:358.814880px;}
.y176{bottom:366.171120px;}
.y14d{bottom:366.487200px;}
.y1c7{bottom:367.823520px;}
.y1ad{bottom:368.899920px;}
.y6f{bottom:369.540000px;}
.y23d{bottom:370.671120px;}
.y21c{bottom:371.234160px;}
.y96{bottom:373.558320px;}
.y13a{bottom:376.086960px;}
.yf1{bottom:378.000000px;}
.y1de{bottom:379.450080px;}
.y11c{bottom:380.591280px;}
.y263{bottom:383.458320px;}
.y175{bottom:387.947520px;}
.y14c{bottom:388.445760px;}
.y1c6{bottom:389.599920px;}
.y1ac{bottom:390.494160px;}
.y6e{bottom:392.040000px;}
.y23c{bottom:392.447520px;}
.y21b{bottom:393.010560px;}
.y95{bottom:395.516880px;}
.y45{bottom:399.473280px;}
.y11b{bottom:402.549840px;}
.y262{bottom:405.234720px;}
.y1dd{bottom:405.730800px;}
.y1f5{bottom:407.054160px;}
.y174{bottom:409.723920px;}
.y14b{bottom:410.222160px;}
.y1ab{bottom:411.012000px;}
.y1c5{bottom:411.558480px;}
.y23b{bottom:414.223920px;}
.y6d{bottom:414.720000px;}
.yf0{bottom:414.900000px;}
.y94{bottom:417.293280px;}
.y21a{bottom:419.291280px;}
.y11a{bottom:424.326240px;}
.y13{bottom:425.905020px;}
.y44{bottom:425.936160px;}
.y261{bottom:427.193280px;}
.y1f4{bottom:428.830560px;}
.y173{bottom:431.682480px;}
.y14a{bottom:431.998560px;}
.y1aa{bottom:432.424080px;}
.yc4{bottom:434.340000px;}
.y23a{bottom:436.182480px;}
.y6c{bottom:437.220000px;}
.y1c4{bottom:437.839200px;}
.yef{bottom:439.740000px;}
.y219{bottom:441.249840px;}
.y1eb{bottom:442.800000px;}
.y93{bottom:443.574000px;}
.y139{bottom:446.102640px;}
.y260{bottom:448.969680px;}
.y119{bottom:450.606960px;}
.y43{bottom:452.216880px;}
.y1a9{bottom:452.941920px;}
.y172{bottom:453.458880px;}
.ybf{bottom:455.400000px;}
.y239{bottom:457.958880px;}
.y149{bottom:458.279280px;}
.y1c3{bottom:459.615600px;}
.y6b{bottom:459.720000px;}
.y218{bottom:463.026240px;}
.y12{bottom:463.876200px;}
.y92{bottom:465.350400px;}
.yc1{bottom:466.200000px;}
.y138{bottom:467.879040px;}
.y25f{bottom:470.746080px;}
.y118{bottom:472.383360px;}
.y171{bottom:475.235280px;}
.y42{bottom:478.497600px;}
.y238{bottom:479.735280px;}
.y1a8{bottom:480.481200px;}
.y1c2{bottom:481.392000px;}
.y6a{bottom:482.400000px;}
.y148{bottom:484.560000px;}
.y217{bottom:484.802640px;}
.y91{bottom:487.126800px;}
.y137{bottom:489.655440px;}
.y25e{bottom:492.522480px;}
.y117{bottom:494.159760px;}
.y170{bottom:497.011680px;}
.y237{bottom:501.511680px;}
.y11{bottom:502.036920px;}
.y1a7{bottom:502.439760px;}
.y1c1{bottom:503.168400px;}
.y41{bottom:504.778320px;}
.y69{bottom:504.900000px;}
.y147{bottom:506.518560px;}
.y216{bottom:506.579040px;}
.yc0{bottom:509.940000px;}
.y136{bottom:511.614000px;}
.y90{bottom:513.589680px;}
.y116{bottom:516.118320px;}
.y25d{bottom:518.803200px;}
.ye9{bottom:523.259280px;}
.y236{bottom:523.288080px;}
.y16f{bottom:523.292400px;}
.y68{bottom:527.580000px;}
.y215{bottom:528.355440px;}
.y1a6{bottom:528.720480px;}
.y1c0{bottom:529.631280px;}
.ybb{bottom:531.000000px;}
.y40{bottom:531.059040px;}
.y146{bottom:532.799280px;}
.y8f{bottom:535.366080px;}
.y115{bottom:537.894720px;}
.y10{bottom:540.008100px;}
.ybe{bottom:541.800000px;}
.y235{bottom:545.246640px;}
.y16e{bottom:545.250960px;}
.y25c{bottom:545.266080px;}
.ye8{bottom:549.540000px;}
.y67{bottom:550.080000px;}
.y1bf{bottom:551.407680px;}
.y214{bottom:554.818320px;}
.y1a5{bottom:555.001200px;}
.y3f{bottom:557.521920px;}
.y145{bottom:559.080000px;}
.y114{bottom:559.671120px;}
.y8e{bottom:561.646800px;}
.y135{bottom:564.175440px;}
.y234{bottom:567.023040px;}
.y16d{bottom:567.027360px;}
.y25b{bottom:567.042480px;}
.ye4{bottom:570.600000px;}
.y66{bottom:572.580000px;}
.y1be{bottom:573.184080px;}
.y213{bottom:576.594720px;}
.y1a4{bottom:576.777600px;}
.yf{bottom:577.979280px;}
.ye7{bottom:581.400000px;}
.y113{bottom:581.447520px;}
.y8d{bottom:583.423200px;}
.y26{bottom:584.277840px;}
.ybd{bottom:585.540000px;}
.y134{bottom:585.951840px;}
.y189{bottom:588.795120px;}
.y233{bottom:588.799440px;}
.y16c{bottom:588.803760px;}
.y25a{bottom:588.818880px;}
.y3e{bottom:589.929840px;}
.y1f3{bottom:590.456160px;}
.y1bd{bottom:594.960480px;}
.y65{bottom:595.260000px;}
.y144{bottom:596.160000px;}
.y212{bottom:598.371120px;}
.y1a3{bottom:598.736160px;}
.ye6{bottom:603.360000px;}
.ybc{bottom:607.320000px;}
.y112{bottom:607.910400px;}
.y8c{bottom:609.703920px;}
.y232{bottom:610.575840px;}
.y16b{bottom:610.580160px;}
.y259{bottom:610.595280px;}
.y1f2{bottom:612.414720px;}
.y25{bottom:613.440000px;}
.y188{bottom:615.075840px;}
.ye{bottom:616.140000px;}
.y64{bottom:617.760000px;}
.y211{bottom:620.147520px;}
.y1a2{bottom:620.512560px;}
.y143{bottom:620.827200px;}
.y1bc{bottom:621.423360px;}
.y3d{bottom:622.503360px;}
.yb8{bottom:628.380000px;}
.y111{bottom:629.686800px;}
.y8b{bottom:631.662480px;}
.y231{bottom:632.534400px;}
.y16a{bottom:632.538720px;}
.y258{bottom:632.553840px;}
.y1f1{bottom:634.191120px;}
.y187{bottom:637.034400px;}
.yba{bottom:639.180000px;}
.y63{bottom:640.440000px;}
.y210{bottom:642.106080px;}
.y1a1{bottom:642.288960px;}
.y1bb{bottom:643.199760px;}
.y24{bottom:645.840000px;}
.ye5{bottom:646.920000px;}
.y110{bottom:651.463200px;}
.yd{bottom:654.111180px;}
.y169{bottom:654.315120px;}
.y257{bottom:654.330240px;}
.y3c{bottom:654.911280px;}
.y1f0{bottom:655.967520px;}
.y8a{bottom:657.943200px;}
.y186{bottom:658.810800px;}
.y230{bottom:658.815120px;}
.y62{bottom:662.940000px;}
.y20f{bottom:663.882480px;}
.y1a0{bottom:664.065360px;}
.y1ba{bottom:664.976160px;}
.ye0{bottom:667.980000px;}
.y3b{bottom:675.246960px;}
.y168{bottom:676.091520px;}
.y256{bottom:676.106640px;}
.y10f{bottom:677.743920px;}
.ye3{bottom:678.780000px;}
.y89{bottom:679.719600px;}
.y185{bottom:680.587200px;}
.y23{bottom:682.920000px;}
.y22f{bottom:685.095840px;}
.y61{bottom:685.440000px;}
.y20e{bottom:685.658880px;}
.y19f{bottom:685.841760px;}
.y1b9{bottom:686.752560px;}
.y167{bottom:697.867920px;}
.y255{bottom:697.883040px;}
.y10e{bottom:699.520320px;}
.yc{bottom:700.351200px;}
.ye2{bottom:700.740000px;}
.y184{bottom:702.363600px;}
.y133{bottom:704.024640px;}
.yb9{bottom:704.700000px;}
.y88{bottom:706.000320px;}
.y22e{bottom:706.872240px;}
.y19e{bottom:707.800320px;}
.y3a{bottom:707.820480px;}
.y60{bottom:708.120000px;}
.y1b8{bottom:708.528960px;}
.y20d{bottom:711.939600px;}
.y166{bottom:719.644320px;}
.y254{bottom:719.659440px;}
.y22{bottom:719.823420px;}
.y10d{bottom:721.478880px;}
.y183{bottom:724.140000px;}
.yb1{bottom:725.760000px;}
.y87{bottom:727.958880px;}
.y39{bottom:728.156160px;}
.y22d{bottom:728.648640px;}
.y132{bottom:730.487520px;}
.y5f{bottom:730.620000px;}
.y20c{bottom:733.716000px;}
.y19d{bottom:734.081040px;}
.yb7{bottom:736.740000px;}
.y253{bottom:741.618000px;}
.y165{bottom:746.107200px;}
.y10c{bottom:747.759600px;}
.y38{bottom:748.674000px;}
.y21{bottom:749.160000px;}
.y86{bottom:749.735280px;}
.y22c{bottom:750.607200px;}
.y5e{bottom:753.120000px;}
.y20b{bottom:755.674560px;}
.y131{bottom:756.768240px;}
.yb5{bottom:758.520000px;}
.yb{bottom:759.945600px;}
.y19c{bottom:760.361760px;}
.y182{bottom:762.120000px;}
.ye1{bottom:766.080000px;}
.y164{bottom:767.883600px;}
.y252{bottom:767.898720px;}
.y37{bottom:769.009680px;}
.y10b{bottom:769.536000px;}
.y85{bottom:771.511680px;}
.y22b{bottom:772.383600px;}
.y1ef{bottom:774.040320px;}
.y5d{bottom:775.800000px;}
.y20a{bottom:777.450960px;}
.y130{bottom:778.544640px;}
.y19b{bottom:782.138160px;}
.y20{bottom:786.420000px;}
.yd9{bottom:787.320000px;}
.y36{bottom:789.527520px;}
.y163{bottom:789.660000px;}
.y10a{bottom:791.312400px;}
.y22a{bottom:794.160000px;}
.y251{bottom:794.179440px;}
.y1ee{bottom:795.816720px;}
.y84{bottom:797.792400px;}
.ydf{bottom:798.120000px;}
.y5c{bottom:798.300000px;}
.y209{bottom:799.227360px;}
.y12f{bottom:800.321040px;}
.yee{bottom:801.000000px;}
.yb2{bottom:802.080000px;}
.y19a{bottom:804.096720px;}
.y250{bottom:815.955840px;}
.y109{bottom:817.775280px;}
.ya{bottom:819.540000px;}
.y83{bottom:819.568800px;}
.yde{bottom:819.900000px;}
.y5b{bottom:820.980000px;}
.y208{bottom:821.003760px;}
.y12e{bottom:822.279600px;}
.y35{bottom:822.283200px;}
.y1f{bottom:823.320000px;}
.yed{bottom:825.856560px;}
.y199{bottom:825.873120px;}
.y162{bottom:827.640000px;}
.y229{bottom:832.140000px;}
.y24f{bottom:837.914400px;}
.y1ed{bottom:839.551680px;}
.y82{bottom:841.527360px;}
.ydd{bottom:841.680000px;}
.y34{bottom:842.436720px;}
.y207{bottom:842.962320px;}
.y5a{bottom:843.480000px;}
.y108{bottom:844.056000px;}
.y198{bottom:848.013840px;}
.y12d{bottom:848.560320px;}
.yb0{bottom:855.900000px;}
.y161{bottom:856.823760px;}
.y24e{bottom:859.690800px;}
.y1e{bottom:860.220000px;}
.y1ec{bottom:861.328080px;}
.y33{bottom:862.954560px;}
.y81{bottom:863.303760px;}
.y1dc{bottom:864.194400px;}
.y206{bottom:864.738720px;}
.y107{bottom:865.832400px;}
.y59{bottom:865.980000px;}
.y197{bottom:869.972400px;}
.y12c{bottom:870.336720px;}
.y24d{bottom:881.467200px;}
.y160{bottom:883.104480px;}
.y32{bottom:883.472400px;}
.ydc{bottom:885.420000px;}
.y9{bottom:886.500000px;}
.y205{bottom:886.515120px;}
.y106{bottom:887.608800px;}
.y58{bottom:888.660000px;}
.y80{bottom:889.584480px;}
.y1db{bottom:890.475120px;}
.y196{bottom:891.748800px;}
.y12b{bottom:892.113120px;}
.y1d{bottom:893.880000px;}
.yaf{bottom:899.460000px;}
.y24c{bottom:903.243600px;}
.y31{bottom:903.990240px;}
.y15f{bottom:904.880880px;}
.y105{bottom:909.385200px;}
.y57{bottom:911.160000px;}
.y7f{bottom:911.360880px;}
.y204{bottom:912.795840px;}
.y195{bottom:913.525200px;}
.y12a{bottom:913.889520px;}
.y1da{bottom:916.755840px;}
.ya7{bottom:920.700000px;}
.y30{bottom:924.325920px;}
.y24b{bottom:925.020000px;}
.y1c{bottom:926.640000px;}
.ydb{bottom:928.980000px;}
.y15e{bottom:931.343760px;}
.yad{bottom:931.500000px;}
.y7e{bottom:933.319440px;}
.y56{bottom:933.840000px;}
.y203{bottom:934.572240px;}
.y194{bottom:935.301600px;}
.y104{bottom:935.848080px;}
.y1d9{bottom:938.532240px;}
.y8{bottom:945.900000px;}
.yce{bottom:950.040000px;}
.y7d{bottom:955.095840px;}
.y55{bottom:956.340000px;}
.y202{bottom:956.530800px;}
.y193{bottom:957.078000px;}
.y2f{bottom:957.081600px;}
.y15d{bottom:957.624480px;}
.y1d8{bottom:960.490800px;}
.yd8{bottom:961.020000px;}
.y103{bottom:962.128800px;}
.y24a{bottom:963.000000px;}
.y1b{bottom:963.540000px;}
.y7c{bottom:976.872240px;}
.y2e{bottom:977.235120px;}
.y201{bottom:978.307200px;}
.y54{bottom:978.840000px;}
.y192{bottom:979.036560px;}
.y15c{bottom:979.400880px;}
.y1d7{bottom:982.267200px;}
.y102{bottom:983.905200px;}
.y249{bottom:992.168640px;}
.y2d{bottom:997.752960px;}
.y7b{bottom:998.648640px;}
.y200{bottom:1000.083600px;}
.y1a{bottom:1000.620000px;}
.y191{bottom:1000.812960px;}
.y15b{bottom:1001.177280px;}
.y53{bottom:1001.520000px;}
.y1d6{bottom:1004.043600px;}
.yd7{bottom:1004.580000px;}
.y101{bottom:1005.681600px;}
.y7{bottom:1014.855480px;}
.y2c{bottom:1018.270800px;}
.y248{bottom:1018.449360px;}
.ya9{bottom:1018.800000px;}
.y7a{bottom:1020.425040px;}
.y1ff{bottom:1021.860000px;}
.y15a{bottom:1022.953680px;}
.y52{bottom:1024.020000px;}
.y190{bottom:1027.093680px;}
.y100{bottom:1027.458000px;}
.y1d5{bottom:1030.324320px;}
.y19{bottom:1034.280000px;}
.y2b{bottom:1038.788640px;}
.ya4{bottom:1039.860000px;}
.y79{bottom:1042.383600px;}
.y159{bottom:1044.912240px;}
.y50{bottom:1046.520000px;}
.yff{bottom:1049.416560px;}
.ya6{bottom:1050.660000px;}
.y6{bottom:1053.016200px;}
.y18f{bottom:1053.556560px;}
.y228{bottom:1053.920880px;}
.y1d4{bottom:1056.787200px;}
.y2a{bottom:1059.124320px;}
.y1fe{bottom:1059.841440px;}
.y78{bottom:1064.160000px;}
.y158{bottom:1066.688640px;}
.y18{bottom:1066.868100px;}
.y4f{bottom:1069.200000px;}
.yd6{bottom:1070.100000px;}
.yfe{bottom:1071.192960px;}
.y129{bottom:1075.697280px;}
.y1d3{bottom:1078.563600px;}
.y29{bottom:1079.642160px;}
.ya3{bottom:1083.778560px;}
.y1fd{bottom:1085.580000px;}
.y5{bottom:1090.987380px;}
.yd4{bottom:1091.880000px;}
.yfd{bottom:1092.969360px;}
.y4d{bottom:1093.320000px;}
.y128{bottom:1097.473680px;}
.y28{bottom:1100.160000px;}
.y1d2{bottom:1100.340000px;}
.y77{bottom:1101.967200px;}
.yd2{bottom:1113.660000px;}
.ya2{bottom:1114.745760px;}
.y127{bottom:1119.250080px;}
.y17{bottom:1121.940000px;}
.y4{bottom:1129.148100px;}
.yd0{bottom:1135.440000px;}
.y27{bottom:1138.320000px;}
.ya1{bottom:1141.208640px;}
.y3{bottom:1167.119280px;}
.y14{bottom:1194.300000px;}
.y2{bottom:1205.280000px;}
.y1{bottom:1243.260000px;}
.hd{height:21.780000px;}
.h10{height:21.781500px;}
.h11{height:21.958500px;}
.hf{height:21.960000px;}
.h13{height:30.780000px;}
.h1c{height:36.914062px;}
.h12{height:45.054844px;}
.h1d{height:47.415937px;}
.he{height:48.224531px;}
.h7{height:48.256875px;}
.h9{height:48.972656px;}
.hb{height:56.611406px;}
.ha{height:56.620046px;}
.h8{height:57.298008px;}
.h2{height:61.329023px;}
.h6{height:61.370156px;}
.hc{height:65.180391px;}
.h18{height:74.520000px;}
.h4{height:95.924883px;}
.h15{height:96.120000px;}
.h16{height:96.300000px;}
.h17{height:96.301500px;}
.h14{height:118.080000px;}
.h19{height:139.860000px;}
.h5{height:139.955977px;}
.h3{height:157.253906px;}
.h1b{height:161.640000px;}
.h1a{height:205.381500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:38.700000px;}
.w2{width:212.578500px;}
.w5{width:232.560000px;}
.w6{width:361.800000px;}
.w3{width:476.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x35{left:19.440000px;}
.x5{left:55.800000px;}
.xf{left:79.200000px;}
.xd{left:81.900000px;}
.x8{left:84.240000px;}
.xe{left:86.580000px;}
.xc{left:88.380000px;}
.x10{left:89.820000px;}
.xb{left:92.520000px;}
.xa{left:94.320000px;}
.x11{left:95.760000px;}
.x9{left:97.920000px;}
.x1{left:127.620000px;}
.x13{left:128.700000px;}
.x25{left:133.380000px;}
.x47{left:139.140000px;}
.x19{left:140.580000px;}
.x4{left:144.180000px;}
.x14{left:150.660000px;}
.x39{left:154.980000px;}
.x15{left:168.480000px;}
.x21{left:178.020000px;}
.x4e{left:181.638720px;}
.x2e{left:196.740000px;}
.x16{left:202.500000px;}
.x3b{left:217.080000px;}
.x1e{left:229.680000px;}
.x41{left:237.420000px;}
.x3d{left:242.820000px;}
.x2d{left:246.600000px;}
.x30{left:264.960000px;}
.x29{left:267.480000px;}
.x26{left:270.360000px;}
.x23{left:273.960000px;}
.x44{left:277.740000px;}
.x4f{left:279.720000px;}
.x42{left:287.820000px;}
.x37{left:289.620000px;}
.x12{left:294.478560px;}
.x3f{left:310.680000px;}
.x4a{left:318.960000px;}
.x4c{left:320.040000px;}
.x1a{left:322.560000px;}
.x2b{left:326.340000px;}
.x4d{left:330.300000px;}
.x1f{left:333.720000px;}
.x32{left:335.520000px;}
.x45{left:340.020000px;}
.x6{left:341.640000px;}
.x1c{left:353.700000px;}
.x33{left:357.480000px;}
.x17{left:402.300000px;}
.x34{left:416.160000px;}
.x2c{left:451.980000px;}
.x24{left:454.680000px;}
.x2f{left:465.660000px;}
.x1b{left:468.360000px;}
.x43{left:478.440000px;}
.x48{left:487.800000px;}
.x38{left:493.560000px;}
.x22{left:516.960000px;}
.x40{left:522.720000px;}
.x46{left:535.860000px;}
.x27{left:541.440000px;}
.x18{left:550.080000px;}
.x3e{left:558.180000px;}
.x20{left:574.920000px;}
.x3a{left:613.800000px;}
.x1d{left:626.400000px;}
.x3c{left:629.820000px;}
.x36{left:686.340000px;}
.x2a{left:719.820000px;}
.x28{left:747.360000px;}
.x31{left:751.680000px;}
.x3{left:756.187920px;}
.x2{left:765.361800px;}
.x49{left:781.193520px;}
.x4b{left:784.985760px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls58{letter-spacing:-1.530880pt;}
.ls35{letter-spacing:-1.354240pt;}
.ls1a{letter-spacing:-1.295360pt;}
.ls3c{letter-spacing:-1.059840pt;}
.ls62{letter-spacing:-1.000960pt;}
.ls22{letter-spacing:-0.942080pt;}
.ls14{letter-spacing:-0.898560pt;}
.ls2d{letter-spacing:-0.883200pt;}
.ls1b{letter-spacing:-0.765440pt;}
.ls6{letter-spacing:-0.673920pt;}
.ls36{letter-spacing:-0.647680pt;}
.ls8{letter-spacing:-0.599040pt;}
.ls52{letter-spacing:-0.471040pt;}
.ls21{letter-spacing:-0.412160pt;}
.ls2e{letter-spacing:-0.353280pt;}
.lse{letter-spacing:-0.299520pt;}
.ls19{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.255360pt;}
.ls1f{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.224640pt;}
.ls30{letter-spacing:-0.176640pt;}
.ls3e{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.074880pt;}
.ls2c{letter-spacing:-0.069120pt;}
.ls2f{letter-spacing:-0.058880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.048000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.117760pt;}
.ls43{letter-spacing:0.141312pt;}
.lsc{letter-spacing:0.149760pt;}
.ls16{letter-spacing:0.164864pt;}
.ls0{letter-spacing:0.170880pt;}
.ls44{letter-spacing:0.200192pt;}
.ls4c{letter-spacing:0.206080pt;}
.ls6c{letter-spacing:0.217856pt;}
.ls10{letter-spacing:0.224640pt;}
.ls1d{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.235520pt;}
.ls3d{letter-spacing:0.241408pt;}
.ls5e{letter-spacing:0.247296pt;}
.ls4d{letter-spacing:0.259072pt;}
.ls29{letter-spacing:0.270848pt;}
.ls1e{letter-spacing:0.271360pt;}
.ls47{letter-spacing:0.276736pt;}
.ls34{letter-spacing:0.282624pt;}
.ls32{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.299520pt;}
.ls67{letter-spacing:0.300288pt;}
.ls51{letter-spacing:0.312064pt;}
.ls57{letter-spacing:0.317952pt;}
.ls3{letter-spacing:0.336960pt;}
.ls5{letter-spacing:0.341760pt;}
.ls20{letter-spacing:0.353280pt;}
.ls6e{letter-spacing:0.359168pt;}
.ls69{letter-spacing:0.370944pt;}
.ls11{letter-spacing:0.374400pt;}
.ls42{letter-spacing:0.376832pt;}
.ls66{letter-spacing:0.382720pt;}
.ls5b{letter-spacing:0.388608pt;}
.ls70{letter-spacing:0.394496pt;}
.ls5c{letter-spacing:0.400384pt;}
.ls38{letter-spacing:0.406272pt;}
.ls61{letter-spacing:0.435712pt;}
.ls26{letter-spacing:0.453376pt;}
.ls4f{letter-spacing:0.459264pt;}
.ls56{letter-spacing:0.471040pt;}
.ls50{letter-spacing:0.476928pt;}
.ls55{letter-spacing:0.482816pt;}
.ls2a{letter-spacing:0.500480pt;}
.ls40{letter-spacing:0.506368pt;}
.ls24{letter-spacing:0.512256pt;}
.ls37{letter-spacing:0.529920pt;}
.ls60{letter-spacing:0.535808pt;}
.ls3b{letter-spacing:0.594688pt;}
.ls63{letter-spacing:0.600576pt;}
.ls39{letter-spacing:0.618240pt;}
.ls53{letter-spacing:0.624128pt;}
.ls5f{letter-spacing:0.641792pt;}
.ls48{letter-spacing:0.647680pt;}
.ls25{letter-spacing:0.688896pt;}
.ls49{letter-spacing:0.694784pt;}
.ls4a{letter-spacing:0.783104pt;}
.ls5a{letter-spacing:0.883200pt;}
.ls41{letter-spacing:0.947968pt;}
.ls9{letter-spacing:0.973440pt;}
.ls2b{letter-spacing:1.530880pt;}
.ls18{letter-spacing:1.760512pt;}
.ls46{letter-spacing:2.826240pt;}
.ls3a{letter-spacing:4.268800pt;}
.ls59{letter-spacing:4.769280pt;}
.ls5d{letter-spacing:5.640704pt;}
.ls6b{letter-spacing:6.653440pt;}
.ls6f{letter-spacing:7.360000pt;}
.ls54{letter-spacing:8.596480pt;}
.ls23{letter-spacing:9.244160pt;}
.ls28{letter-spacing:10.539520pt;}
.ls65{letter-spacing:11.776000pt;}
.ls6d{letter-spacing:15.014400pt;}
.ls3f{letter-spacing:16.898560pt;}
.ls4b{letter-spacing:19.489280pt;}
.ls17{letter-spacing:23.316480pt;}
.ls68{letter-spacing:27.143680pt;}
.ls27{letter-spacing:27.968000pt;}
.ls6a{letter-spacing:30.970880pt;}
.ls45{letter-spacing:31.618560pt;}
.ls64{letter-spacing:34.209280pt;}
.ls4e{letter-spacing:52.756480pt;}
.ls2{letter-spacing:167.955840pt;}
.lsd{letter-spacing:751.631360pt;}
.ws88{word-spacing:-58.880000pt;}
.ws0{word-spacing:-47.846400pt;}
.ws1{word-spacing:-47.504640pt;}
.ws4{word-spacing:-21.153600pt;}
.ws5{word-spacing:-21.116160pt;}
.ws3{word-spacing:-20.741760pt;}
.ws2{word-spacing:-20.142720pt;}
.wsf{word-spacing:-17.147520pt;}
.ws10{word-spacing:-16.922880pt;}
.ws13{word-spacing:-16.848000pt;}
.ws35{word-spacing:-16.721920pt;}
.ws12{word-spacing:-16.698240pt;}
.wse{word-spacing:-16.663040pt;}
.ws14{word-spacing:-16.623360pt;}
.ws36{word-spacing:-16.604160pt;}
.wsc{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.250880pt;}
.ws34{word-spacing:-16.133120pt;}
.ws1f{word-spacing:-16.074240pt;}
.ws15{word-spacing:-16.024320pt;}
.ws9a{word-spacing:-16.015360pt;}
.ws87{word-spacing:-15.956480pt;}
.ws9b{word-spacing:-15.720960pt;}
.ws38{word-spacing:-15.603200pt;}
.ws37{word-spacing:-15.426560pt;}
.ws4f{word-spacing:-13.542400pt;}
.ws50{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.248000pt;}
.ws5c{word-spacing:-10.848000pt;}
.ws96{word-spacing:-4.062720pt;}
.ws33{word-spacing:-3.415040pt;}
.ws25{word-spacing:-2.826240pt;}
.wsa4{word-spacing:-2.649600pt;}
.ws28{word-spacing:-2.178560pt;}
.ws6e{word-spacing:-2.001920pt;}
.ws3f{word-spacing:-1.530880pt;}
.ws68{word-spacing:-0.912000pt;}
.ws2c{word-spacing:-0.883200pt;}
.ws9{word-spacing:-0.854400pt;}
.ws80{word-spacing:-0.706560pt;}
.ws18{word-spacing:-0.673920pt;}
.wsa2{word-spacing:-0.647680pt;}
.ws1d{word-spacing:-0.599040pt;}
.ws1c{word-spacing:-0.524160pt;}
.ws19{word-spacing:-0.449280pt;}
.ws55{word-spacing:-0.353280pt;}
.ws8{word-spacing:-0.341760pt;}
.ws17{word-spacing:-0.299520pt;}
.ws5d{word-spacing:-0.294400pt;}
.ws65{word-spacing:-0.288000pt;}
.ws86{word-spacing:-0.240000pt;}
.ws3b{word-spacing:-0.235520pt;}
.ws16{word-spacing:-0.224640pt;}
.wsa{word-spacing:-0.170880pt;}
.ws1b{word-spacing:-0.074880pt;}
.ws3d{word-spacing:-0.058880pt;}
.ws66{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.048000pt;}
.ws3a{word-spacing:0.058880pt;}
.ws4a{word-spacing:0.069120pt;}
.ws7{word-spacing:0.117120pt;}
.ws3e{word-spacing:0.117760pt;}
.ws67{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws8a{word-spacing:0.235520pt;}
.ws32{word-spacing:0.255360pt;}
.ws51{word-spacing:0.294400pt;}
.ws4e{word-spacing:0.353280pt;}
.ws22{word-spacing:0.412160pt;}
.ws8c{word-spacing:0.471040pt;}
.ws95{word-spacing:0.529920pt;}
.ws39{word-spacing:0.588800pt;}
.wsb{word-spacing:0.599040pt;}
.ws7d{word-spacing:0.622080pt;}
.ws6f{word-spacing:0.647680pt;}
.ws3c{word-spacing:0.706560pt;}
.ws6c{word-spacing:0.765440pt;}
.ws4d{word-spacing:0.883200pt;}
.ws99{word-spacing:1.000960pt;}
.ws21{word-spacing:1.059840pt;}
.ws93{word-spacing:1.177600pt;}
.ws2a{word-spacing:1.295360pt;}
.ws6b{word-spacing:1.354240pt;}
.ws91{word-spacing:1.530880pt;}
.ws31{word-spacing:1.707520pt;}
.ws82{word-spacing:1.884160pt;}
.ws57{word-spacing:2.296320pt;}
.ws30{word-spacing:2.944000pt;}
.ws85{word-spacing:3.061760pt;}
.ws43{word-spacing:3.591680pt;}
.ws77{word-spacing:4.121600pt;}
.ws42{word-spacing:4.239360pt;}
.ws20{word-spacing:4.887040pt;}
.ws9c{word-spacing:5.114880pt;}
.ws44{word-spacing:5.534720pt;}
.ws29{word-spacing:6.182400pt;}
.ws7f{word-spacing:6.417920pt;}
.ws6a{word-spacing:6.712320pt;}
.ws2d{word-spacing:6.830080pt;}
.ws74{word-spacing:6.947840pt;}
.ws75{word-spacing:7.006720pt;}
.ws89{word-spacing:7.065600pt;}
.ws53{word-spacing:7.418880pt;}
.ws46{word-spacing:8.066560pt;}
.ws81{word-spacing:8.184320pt;}
.ws23{word-spacing:8.714240pt;}
.ws26{word-spacing:9.361920pt;}
.ws94{word-spacing:9.597440pt;}
.ws78{word-spacing:10.009600pt;}
.ws49{word-spacing:10.657280pt;}
.ws63{word-spacing:10.833920pt;}
.ws24{word-spacing:11.304960pt;}
.ws59{word-spacing:11.893760pt;}
.ws70{word-spacing:12.541440pt;}
.ws69{word-spacing:13.189120pt;}
.ws7b{word-spacing:13.424640pt;}
.ws58{word-spacing:13.836800pt;}
.ws5e{word-spacing:14.484480pt;}
.ws45{word-spacing:15.132160pt;}
.ws5b{word-spacing:15.779840pt;}
.ws56{word-spacing:16.427520pt;}
.wsa1{word-spacing:16.898560pt;}
.ws2b{word-spacing:17.016320pt;}
.ws7e{word-spacing:17.192960pt;}
.ws7c{word-spacing:17.310720pt;}
.ws8b{word-spacing:17.664000pt;}
.ws4b{word-spacing:18.311680pt;}
.wsa5{word-spacing:18.429440pt;}
.wsa6{word-spacing:18.488320pt;}
.ws4c{word-spacing:18.606080pt;}
.ws40{word-spacing:18.959360pt;}
.ws73{word-spacing:19.607040pt;}
.wsa3{word-spacing:19.842560pt;}
.ws41{word-spacing:20.254720pt;}
.ws8d{word-spacing:21.196800pt;}
.ws76{word-spacing:21.550080pt;}
.ws72{word-spacing:22.138880pt;}
.ws84{word-spacing:22.786560pt;}
.ws2f{word-spacing:23.434240pt;}
.ws6d{word-spacing:24.081920pt;}
.ws8f{word-spacing:24.258560pt;}
.ws79{word-spacing:24.729600pt;}
.ws2e{word-spacing:26.024960pt;}
.ws92{word-spacing:26.201600pt;}
.ws5a{word-spacing:26.613760pt;}
.ws90{word-spacing:27.261440pt;}
.ws48{word-spacing:27.909120pt;}
.ws47{word-spacing:28.556800pt;}
.ws27{word-spacing:29.204480pt;}
.ws71{word-spacing:29.852160pt;}
.ws9d{word-spacing:30.499840pt;}
.ws83{word-spacing:31.736320pt;}
.ws60{word-spacing:33.679360pt;}
.ws9e{word-spacing:34.327040pt;}
.ws9f{word-spacing:34.974720pt;}
.wsa0{word-spacing:35.151360pt;}
.ws5f{word-spacing:36.270080pt;}
.ws52{word-spacing:38.801920pt;}
.ws64{word-spacing:41.981440pt;}
.ws98{word-spacing:43.276800pt;}
.ws97{word-spacing:43.924480pt;}
.ws1e{word-spacing:45.152640pt;}
.ws62{word-spacing:46.456320pt;}
.ws54{word-spacing:52.874240pt;}
.ws8e{word-spacing:70.773760pt;}
.ws61{word-spacing:82.314240pt;}
._2{margin-left:-183.141504pt;}
._3{margin-left:-167.955840pt;}
._c{margin-left:-14.466816pt;}
._8{margin-left:-13.472064pt;}
._a{margin-left:-10.487808pt;}
._b{margin-left:-9.554688pt;}
._5{margin-left:-8.539776pt;}
._7{margin-left:-6.689472pt;}
._9{margin-left:-5.361792pt;}
._6{margin-left:-4.389504pt;}
._4{margin-left:-2.695680pt;}
._1{margin-left:-0.905664pt;}
._0{width:0.913536pt;}
._d{width:2.149568pt;}
._13{width:3.206272pt;}
._12{width:4.136192pt;}
._15{width:6.229504pt;}
._14{width:7.360000pt;}
._16{width:8.625024pt;}
._1c{width:10.480640pt;}
._17{width:12.046784pt;}
._1b{width:14.624704pt;}
._11{width:17.296768pt;}
._10{width:18.452992pt;}
._f{width:19.812224pt;}
._19{width:26.524544pt;}
._18{width:27.424128pt;}
._1a{width:95.357696pt;}
._e{width:751.603200pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.fs3{font-size:170.880000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:5.600000pt;}
.y51{bottom:5.760000pt;}
.ya5{bottom:9.600000pt;}
.yb6{bottom:9.760000pt;}
.yac{bottom:28.960000pt;}
.yb4{bottom:29.120000pt;}
.yab{bottom:48.320000pt;}
.yb3{bottom:48.480000pt;}
.y16{bottom:50.409600pt;}
.y15{bottom:67.205120pt;}
.yae{bottom:67.680000pt;}
.yaa{bottom:67.840000pt;}
.ya8{bottom:87.200000pt;}
.y18e{bottom:99.040640pt;}
.yec{bottom:100.160000pt;}
.y1ea{bottom:100.517760pt;}
.y126{bottom:105.764480pt;}
.yca{bottom:106.240000pt;}
.yc3{bottom:106.560000pt;}
.yd5{bottom:106.720000pt;}
.y181{bottom:108.232960pt;}
.y142{bottom:109.039360pt;}
.ya0{bottom:109.294080pt;}
.y227{bottom:112.571520pt;}
.yfc{bottom:114.581760pt;}
.y157{bottom:115.859200pt;}
.ycd{bottom:116.000000pt;}
.y1d1{bottom:117.047040pt;}
.y18d{bottom:118.559360pt;}
.y1e9{bottom:119.874560pt;}
.y125{bottom:125.121280pt;}
.yda{bottom:125.920000pt;}
.yd3{bottom:126.080000pt;}
.y247{bottom:127.585920pt;}
.y180{bottom:127.589760pt;}
.y141{bottom:128.396160pt;}
.y9f{bottom:128.650880pt;}
.y226{bottom:132.090240pt;}
.y1fc{bottom:132.400000pt;}
.y1b7{bottom:132.414720pt;}
.yeb{bottom:132.960000pt;}
.yfb{bottom:134.100480pt;}
.y156{bottom:135.216000pt;}
.ycc{bottom:135.360000pt;}
.y1e8{bottom:139.393280pt;}
.y1d0{bottom:140.407680pt;}
.y18c{bottom:141.920000pt;}
.y124{bottom:144.640000pt;}
.yd1{bottom:145.440000pt;}
.y246{bottom:146.942720pt;}
.y17f{bottom:146.946560pt;}
.y140{bottom:147.752960pt;}
.y9e{bottom:148.007680pt;}
.y225{bottom:151.447040pt;}
.y1fb{bottom:151.756800pt;}
.yfa{bottom:153.457280pt;}
.ycb{bottom:154.720000pt;}
.yea{bottom:154.880640pt;}
.y155{bottom:158.738560pt;}
.y1e7{bottom:158.750080pt;}
.y1b6{bottom:161.221760pt;}
.y1cf{bottom:163.768320pt;}
.ycf{bottom:164.800000pt;}
.y17e{bottom:166.303360pt;}
.y9d{bottom:167.364480pt;}
.y245{bottom:170.303360pt;}
.y224{bottom:170.803840pt;}
.y13f{bottom:171.275520pt;}
.yf9{bottom:172.814080pt;}
.y123{bottom:173.280000pt;}
.yc6{bottom:173.440000pt;}
.y18b{bottom:174.720000pt;}
.y1e6{bottom:178.106880pt;}
.y1b5{bottom:179.297920pt;}
.y154{bottom:182.099200pt;}
.yc9{bottom:183.200000pt;}
.y1ce{bottom:183.287040pt;}
.y17d{bottom:185.660160pt;}
.y76{bottom:186.399360pt;}
.y9c{bottom:186.883200pt;}
.y223{bottom:190.160640pt;}
.y1fa{bottom:190.632320pt;}
.yf8{bottom:192.170880pt;}
.y4c{bottom:192.814080pt;}
.y244{bottom:193.664000pt;}
.y13e{bottom:194.636160pt;}
.y18a{bottom:196.810240pt;}
.y1e5{bottom:197.463680pt;}
.y1b4{bottom:197.536000pt;}
.y153{bottom:201.456000pt;}
.y1cd{bottom:202.643840pt;}
.y17c{bottom:205.178880pt;}
.y9b{bottom:206.240000pt;}
.y269{bottom:208.533760pt;}
.y75{bottom:209.760000pt;}
.y122{bottom:209.989120pt;}
.yf7{bottom:211.689600pt;}
.y4b{bottom:212.170880pt;}
.y243{bottom:213.182720pt;}
.y222{bottom:213.683200pt;}
.y13d{bottom:213.992960pt;}
.y1b3{bottom:216.730880pt;}
.y1e4{bottom:216.982400pt;}
.y152{bottom:220.812800pt;}
.y1cc{bottom:222.000640pt;}
.y74{bottom:228.160000pt;}
.y17b{bottom:228.539520pt;}
.yf6{bottom:231.046400pt;}
.y4a{bottom:231.527680pt;}
.y268{bottom:231.894400pt;}
.y242{bottom:232.539520pt;}
.y221{bottom:233.040000pt;}
.y121{bottom:233.349760pt;}
.y1b2{bottom:234.968960pt;}
.y1e3{bottom:236.339200pt;}
.y1f9{bottom:237.353600pt;}
.y9a{bottom:239.840000pt;}
.y151{bottom:240.169600pt;}
.yc8{bottom:241.280000pt;}
.y1cb{bottom:245.361280pt;}
.y17a{bottom:247.896320pt;}
.y73{bottom:248.160000pt;}
.yf5{bottom:250.403200pt;}
.y49{bottom:251.046400pt;}
.y241{bottom:251.896320pt;}
.y220{bottom:252.396800pt;}
.y120{bottom:252.706560pt;}
.y1b1{bottom:253.207040pt;}
.y267{bottom:255.255040pt;}
.y1e2{bottom:255.696000pt;}
.y1f8{bottom:256.710400pt;}
.yc7{bottom:260.640000pt;}
.y150{bottom:263.692160pt;}
.y99{bottom:265.973760pt;}
.y179{bottom:267.253120pt;}
.y72{bottom:268.320000pt;}
.y1ca{bottom:268.721920pt;}
.yf4{bottom:269.760000pt;}
.y48{bottom:270.403200pt;}
.y240{bottom:271.253120pt;}
.y21f{bottom:271.753600pt;}
.y11f{bottom:272.225280pt;}
.y1b0{bottom:272.240000pt;}
.y266{bottom:274.773760pt;}
.y1e1{bottom:275.052800pt;}
.y1f7{bottom:276.229120pt;}
.yc2{bottom:279.520000pt;}
.y178{bottom:286.771840pt;}
.y14f{bottom:287.052800pt;}
.y1c9{bottom:288.240640pt;}
.y71{bottom:288.320000pt;}
.yf3{bottom:289.116800pt;}
.yc5{bottom:289.120000pt;}
.y98{bottom:289.334400pt;}
.y47{bottom:289.760000pt;}
.y1af{bottom:290.478080pt;}
.y23f{bottom:290.771840pt;}
.y21e{bottom:291.110400pt;}
.y13c{bottom:291.582080pt;}
.y265{bottom:294.130560pt;}
.y1e0{bottom:294.409600pt;}
.y11e{bottom:295.585920pt;}
.y177{bottom:306.128640pt;}
.y14e{bottom:306.409600pt;}
.y1c8{bottom:307.597440pt;}
.y70{bottom:308.480000pt;}
.y1ae{bottom:309.672960pt;}
.y23e{bottom:310.128640pt;}
.y21d{bottom:310.629120pt;}
.y13b{bottom:310.938880pt;}
.yf2{bottom:312.639360pt;}
.y97{bottom:312.695040pt;}
.y1df{bottom:313.928320pt;}
.y1f6{bottom:314.942720pt;}
.y264{bottom:317.491200pt;}
.y46{bottom:318.400000pt;}
.y11d{bottom:318.946560pt;}
.y176{bottom:325.485440pt;}
.y14d{bottom:325.766400pt;}
.y1c7{bottom:326.954240pt;}
.y1ad{bottom:327.911040pt;}
.y6f{bottom:328.480000pt;}
.y23d{bottom:329.485440pt;}
.y21c{bottom:329.985920pt;}
.y96{bottom:332.051840pt;}
.y13a{bottom:334.299520pt;}
.yf1{bottom:336.000000pt;}
.y1de{bottom:337.288960pt;}
.y11c{bottom:338.303360pt;}
.y263{bottom:340.851840pt;}
.y175{bottom:344.842240pt;}
.y14c{bottom:345.285120pt;}
.y1c6{bottom:346.311040pt;}
.y1ac{bottom:347.105920pt;}
.y6e{bottom:348.480000pt;}
.y23c{bottom:348.842240pt;}
.y21b{bottom:349.342720pt;}
.y95{bottom:351.570560pt;}
.y45{bottom:355.087360pt;}
.y11b{bottom:357.822080pt;}
.y262{bottom:360.208640pt;}
.y1dd{bottom:360.649600pt;}
.y1f5{bottom:361.825920pt;}
.y174{bottom:364.199040pt;}
.y14b{bottom:364.641920pt;}
.y1ab{bottom:365.344000pt;}
.y1c5{bottom:365.829760pt;}
.y23b{bottom:368.199040pt;}
.y6d{bottom:368.640000pt;}
.yf0{bottom:368.800000pt;}
.y94{bottom:370.927360pt;}
.y21a{bottom:372.703360pt;}
.y11a{bottom:377.178880pt;}
.y13{bottom:378.582240pt;}
.y44{bottom:378.609920pt;}
.y261{bottom:379.727360pt;}
.y1f4{bottom:381.182720pt;}
.y173{bottom:383.717760pt;}
.y14a{bottom:383.998720pt;}
.y1aa{bottom:384.376960pt;}
.yc4{bottom:386.080000pt;}
.y23a{bottom:387.717760pt;}
.y6c{bottom:388.640000pt;}
.y1c4{bottom:389.190400pt;}
.yef{bottom:390.880000pt;}
.y219{bottom:392.222080pt;}
.y1eb{bottom:393.600000pt;}
.y93{bottom:394.288000pt;}
.y139{bottom:396.535680pt;}
.y260{bottom:399.084160pt;}
.y119{bottom:400.539520pt;}
.y43{bottom:401.970560pt;}
.y1a9{bottom:402.615040pt;}
.y172{bottom:403.074560pt;}
.ybf{bottom:404.800000pt;}
.y239{bottom:407.074560pt;}
.y149{bottom:407.359360pt;}
.y1c3{bottom:408.547200pt;}
.y6b{bottom:408.640000pt;}
.y218{bottom:411.578880pt;}
.y12{bottom:412.334400pt;}
.y92{bottom:413.644800pt;}
.yc1{bottom:414.400000pt;}
.y138{bottom:415.892480pt;}
.y25f{bottom:418.440960pt;}
.y118{bottom:419.896320pt;}
.y171{bottom:422.431360pt;}
.y42{bottom:425.331200pt;}
.y238{bottom:426.431360pt;}
.y1a8{bottom:427.094400pt;}
.y1c2{bottom:427.904000pt;}
.y6a{bottom:428.800000pt;}
.y148{bottom:430.720000pt;}
.y217{bottom:430.935680pt;}
.y91{bottom:433.001600pt;}
.y137{bottom:435.249280pt;}
.y25e{bottom:437.797760pt;}
.y117{bottom:439.253120pt;}
.y170{bottom:441.788160pt;}
.y237{bottom:445.788160pt;}
.y11{bottom:446.255040pt;}
.y1a7{bottom:446.613120pt;}
.y1c1{bottom:447.260800pt;}
.y41{bottom:448.691840pt;}
.y69{bottom:448.800000pt;}
.y147{bottom:450.238720pt;}
.y216{bottom:450.292480pt;}
.yc0{bottom:453.280000pt;}
.y136{bottom:454.768000pt;}
.y90{bottom:456.524160pt;}
.y116{bottom:458.771840pt;}
.y25d{bottom:461.158400pt;}
.ye9{bottom:465.119360pt;}
.y236{bottom:465.144960pt;}
.y16f{bottom:465.148800pt;}
.y68{bottom:468.960000pt;}
.y215{bottom:469.649280pt;}
.y1a6{bottom:469.973760pt;}
.y1c0{bottom:470.783360pt;}
.ybb{bottom:472.000000pt;}
.y40{bottom:472.052480pt;}
.y146{bottom:473.599360pt;}
.y8f{bottom:475.880960pt;}
.y115{bottom:478.128640pt;}
.y10{bottom:480.007200pt;}
.ybe{bottom:481.600000pt;}
.y235{bottom:484.663680pt;}
.y16e{bottom:484.667520pt;}
.y25c{bottom:484.680960pt;}
.ye8{bottom:488.480000pt;}
.y67{bottom:488.960000pt;}
.y1bf{bottom:490.140160pt;}
.y214{bottom:493.171840pt;}
.y1a5{bottom:493.334400pt;}
.y3f{bottom:495.575040pt;}
.y145{bottom:496.960000pt;}
.y114{bottom:497.485440pt;}
.y8e{bottom:499.241600pt;}
.y135{bottom:501.489280pt;}
.y234{bottom:504.020480pt;}
.y16d{bottom:504.024320pt;}
.y25b{bottom:504.037760pt;}
.ye4{bottom:507.200000pt;}
.y66{bottom:508.960000pt;}
.y1be{bottom:509.496960pt;}
.y213{bottom:512.528640pt;}
.y1a4{bottom:512.691200pt;}
.yf{bottom:513.759360pt;}
.ye7{bottom:516.800000pt;}
.y113{bottom:516.842240pt;}
.y8d{bottom:518.598400pt;}
.y26{bottom:519.358080pt;}
.ybd{bottom:520.480000pt;}
.y134{bottom:520.846080pt;}
.y189{bottom:523.373440pt;}
.y233{bottom:523.377280pt;}
.y16c{bottom:523.381120pt;}
.y25a{bottom:523.394560pt;}
.y3e{bottom:524.382080pt;}
.y1f3{bottom:524.849920pt;}
.y1bd{bottom:528.853760pt;}
.y65{bottom:529.120000pt;}
.y144{bottom:529.920000pt;}
.y212{bottom:531.885440pt;}
.y1a3{bottom:532.209920pt;}
.ye6{bottom:536.320000pt;}
.ybc{bottom:539.840000pt;}
.y112{bottom:540.364800pt;}
.y8c{bottom:541.959040pt;}
.y232{bottom:542.734080pt;}
.y16b{bottom:542.737920pt;}
.y259{bottom:542.751360pt;}
.y1f2{bottom:544.368640pt;}
.y25{bottom:545.280000pt;}
.y188{bottom:546.734080pt;}
.ye{bottom:547.680000pt;}
.y64{bottom:549.120000pt;}
.y211{bottom:551.242240pt;}
.y1a2{bottom:551.566720pt;}
.y143{bottom:551.846400pt;}
.y1bc{bottom:552.376320pt;}
.y3d{bottom:553.336320pt;}
.yb8{bottom:558.560000pt;}
.y111{bottom:559.721600pt;}
.y8b{bottom:561.477760pt;}
.y231{bottom:562.252800pt;}
.y16a{bottom:562.256640pt;}
.y258{bottom:562.270080pt;}
.y1f1{bottom:563.725440pt;}
.y187{bottom:566.252800pt;}
.yba{bottom:568.160000pt;}
.y63{bottom:569.280000pt;}
.y210{bottom:570.760960pt;}
.y1a1{bottom:570.923520pt;}
.y1bb{bottom:571.733120pt;}
.y24{bottom:574.080000pt;}
.ye5{bottom:575.040000pt;}
.y110{bottom:579.078400pt;}
.yd{bottom:581.432160pt;}
.y169{bottom:581.613440pt;}
.y257{bottom:581.626880pt;}
.y3c{bottom:582.143360pt;}
.y1f0{bottom:583.082240pt;}
.y8a{bottom:584.838400pt;}
.y186{bottom:585.609600pt;}
.y230{bottom:585.613440pt;}
.y62{bottom:589.280000pt;}
.y20f{bottom:590.117760pt;}
.y1a0{bottom:590.280320pt;}
.y1ba{bottom:591.089920pt;}
.ye0{bottom:593.760000pt;}
.y3b{bottom:600.219520pt;}
.y168{bottom:600.970240pt;}
.y256{bottom:600.983680pt;}
.y10f{bottom:602.439040pt;}
.ye3{bottom:603.360000pt;}
.y89{bottom:604.195200pt;}
.y185{bottom:604.966400pt;}
.y23{bottom:607.040000pt;}
.y22f{bottom:608.974080pt;}
.y61{bottom:609.280000pt;}
.y20e{bottom:609.474560pt;}
.y19f{bottom:609.637120pt;}
.y1b9{bottom:610.446720pt;}
.y167{bottom:620.327040pt;}
.y255{bottom:620.340480pt;}
.y10e{bottom:621.795840pt;}
.yc{bottom:622.534400pt;}
.ye2{bottom:622.880000pt;}
.y184{bottom:624.323200pt;}
.y133{bottom:625.799680pt;}
.yb9{bottom:626.400000pt;}
.y88{bottom:627.555840pt;}
.y22e{bottom:628.330880pt;}
.y19e{bottom:629.155840pt;}
.y3a{bottom:629.173760pt;}
.y60{bottom:629.440000pt;}
.y1b8{bottom:629.803520pt;}
.y20d{bottom:632.835200pt;}
.y166{bottom:639.683840pt;}
.y254{bottom:639.697280pt;}
.y22{bottom:639.843040pt;}
.y10d{bottom:641.314560pt;}
.y183{bottom:643.680000pt;}
.yb1{bottom:645.120000pt;}
.y87{bottom:647.074560pt;}
.y39{bottom:647.249920pt;}
.y22d{bottom:647.687680pt;}
.y132{bottom:649.322240pt;}
.y5f{bottom:649.440000pt;}
.y20c{bottom:652.192000pt;}
.y19d{bottom:652.516480pt;}
.yb7{bottom:654.880000pt;}
.y253{bottom:659.216000pt;}
.y165{bottom:663.206400pt;}
.y10c{bottom:664.675200pt;}
.y38{bottom:665.488000pt;}
.y21{bottom:665.920000pt;}
.y86{bottom:666.431360pt;}
.y22c{bottom:667.206400pt;}
.y5e{bottom:669.440000pt;}
.y20b{bottom:671.710720pt;}
.y131{bottom:672.682880pt;}
.yb5{bottom:674.240000pt;}
.yb{bottom:675.507200pt;}
.y19c{bottom:675.877120pt;}
.y182{bottom:677.440000pt;}
.ye1{bottom:680.960000pt;}
.y164{bottom:682.563200pt;}
.y252{bottom:682.576640pt;}
.y37{bottom:683.564160pt;}
.y10b{bottom:684.032000pt;}
.y85{bottom:685.788160pt;}
.y22b{bottom:686.563200pt;}
.y1ef{bottom:688.035840pt;}
.y5d{bottom:689.600000pt;}
.y20a{bottom:691.067520pt;}
.y130{bottom:692.039680pt;}
.y19b{bottom:695.233920pt;}
.y20{bottom:699.040000pt;}
.yd9{bottom:699.840000pt;}
.y36{bottom:701.802240pt;}
.y163{bottom:701.920000pt;}
.y10a{bottom:703.388800pt;}
.y22a{bottom:705.920000pt;}
.y251{bottom:705.937280pt;}
.y1ee{bottom:707.392640pt;}
.y84{bottom:709.148800pt;}
.ydf{bottom:709.440000pt;}
.y5c{bottom:709.600000pt;}
.y209{bottom:710.424320pt;}
.y12f{bottom:711.396480pt;}
.yee{bottom:712.000000pt;}
.yb2{bottom:712.960000pt;}
.y19a{bottom:714.752640pt;}
.y250{bottom:725.294080pt;}
.y109{bottom:726.911360pt;}
.ya{bottom:728.480000pt;}
.y83{bottom:728.505600pt;}
.yde{bottom:728.800000pt;}
.y5b{bottom:729.760000pt;}
.y208{bottom:729.781120pt;}
.y12e{bottom:730.915200pt;}
.y35{bottom:730.918400pt;}
.y1f{bottom:731.840000pt;}
.yed{bottom:734.094720pt;}
.y199{bottom:734.109440pt;}
.y162{bottom:735.680000pt;}
.y229{bottom:739.680000pt;}
.y24f{bottom:744.812800pt;}
.y1ed{bottom:746.268160pt;}
.y82{bottom:748.024320pt;}
.ydd{bottom:748.160000pt;}
.y34{bottom:748.832640pt;}
.y207{bottom:749.299840pt;}
.y5a{bottom:749.760000pt;}
.y108{bottom:750.272000pt;}
.y198{bottom:753.790080pt;}
.y12d{bottom:754.275840pt;}
.yb0{bottom:760.800000pt;}
.y161{bottom:761.621120pt;}
.y24e{bottom:764.169600pt;}
.y1e{bottom:764.640000pt;}
.y1ec{bottom:765.624960pt;}
.y33{bottom:767.070720pt;}
.y81{bottom:767.381120pt;}
.y1dc{bottom:768.172800pt;}
.y206{bottom:768.656640pt;}
.y107{bottom:769.628800pt;}
.y59{bottom:769.760000pt;}
.y197{bottom:773.308800pt;}
.y12c{bottom:773.632640pt;}
.y24d{bottom:783.526400pt;}
.y160{bottom:784.981760pt;}
.y32{bottom:785.308800pt;}
.ydc{bottom:787.040000pt;}
.y9{bottom:788.000000pt;}
.y205{bottom:788.013440pt;}
.y106{bottom:788.985600pt;}
.y58{bottom:789.920000pt;}
.y80{bottom:790.741760pt;}
.y1db{bottom:791.533440pt;}
.y196{bottom:792.665600pt;}
.y12b{bottom:792.989440pt;}
.y1d{bottom:794.560000pt;}
.yaf{bottom:799.520000pt;}
.y24c{bottom:802.883200pt;}
.y31{bottom:803.546880pt;}
.y15f{bottom:804.338560pt;}
.y105{bottom:808.342400pt;}
.y57{bottom:809.920000pt;}
.y7f{bottom:810.098560pt;}
.y204{bottom:811.374080pt;}
.y195{bottom:812.022400pt;}
.y12a{bottom:812.346240pt;}
.y1da{bottom:814.894080pt;}
.ya7{bottom:818.400000pt;}
.y30{bottom:821.623040pt;}
.y24b{bottom:822.240000pt;}
.y1c{bottom:823.680000pt;}
.ydb{bottom:825.760000pt;}
.y15e{bottom:827.861120pt;}
.yad{bottom:828.000000pt;}
.y7e{bottom:829.617280pt;}
.y56{bottom:830.080000pt;}
.y203{bottom:830.730880pt;}
.y194{bottom:831.379200pt;}
.y104{bottom:831.864960pt;}
.y1d9{bottom:834.250880pt;}
.y8{bottom:840.800000pt;}
.yce{bottom:844.480000pt;}
.y7d{bottom:848.974080pt;}
.y55{bottom:850.080000pt;}
.y202{bottom:850.249600pt;}
.y193{bottom:850.736000pt;}
.y2f{bottom:850.739200pt;}
.y15d{bottom:851.221760pt;}
.y1d8{bottom:853.769600pt;}
.yd8{bottom:854.240000pt;}
.y103{bottom:855.225600pt;}
.y24a{bottom:856.000000pt;}
.y1b{bottom:856.480000pt;}
.y7c{bottom:868.330880pt;}
.y2e{bottom:868.653440pt;}
.y201{bottom:869.606400pt;}
.y54{bottom:870.080000pt;}
.y192{bottom:870.254720pt;}
.y15c{bottom:870.578560pt;}
.y1d7{bottom:873.126400pt;}
.y102{bottom:874.582400pt;}
.y249{bottom:881.927680pt;}
.y2d{bottom:886.891520pt;}
.y7b{bottom:887.687680pt;}
.y200{bottom:888.963200pt;}
.y1a{bottom:889.440000pt;}
.y191{bottom:889.611520pt;}
.y15b{bottom:889.935360pt;}
.y53{bottom:890.240000pt;}
.y1d6{bottom:892.483200pt;}
.yd7{bottom:892.960000pt;}
.y101{bottom:893.939200pt;}
.y7{bottom:902.093760pt;}
.y2c{bottom:905.129600pt;}
.y248{bottom:905.288320pt;}
.ya9{bottom:905.600000pt;}
.y7a{bottom:907.044480pt;}
.y1ff{bottom:908.320000pt;}
.y15a{bottom:909.292160pt;}
.y52{bottom:910.240000pt;}
.y190{bottom:912.972160pt;}
.y100{bottom:913.296000pt;}
.y1d5{bottom:915.843840pt;}
.y19{bottom:919.360000pt;}
.y2b{bottom:923.367680pt;}
.ya4{bottom:924.320000pt;}
.y79{bottom:926.563200pt;}
.y159{bottom:928.810880pt;}
.y50{bottom:930.240000pt;}
.yff{bottom:932.814720pt;}
.ya6{bottom:933.920000pt;}
.y6{bottom:936.014400pt;}
.y18f{bottom:936.494720pt;}
.y228{bottom:936.818560pt;}
.y1d4{bottom:939.366400pt;}
.y2a{bottom:941.443840pt;}
.y1fe{bottom:942.081280pt;}
.y78{bottom:945.920000pt;}
.y158{bottom:948.167680pt;}
.y18{bottom:948.327200pt;}
.y4f{bottom:950.400000pt;}
.yd6{bottom:951.200000pt;}
.yfe{bottom:952.171520pt;}
.y129{bottom:956.175360pt;}
.y1d3{bottom:958.723200pt;}
.y29{bottom:959.681920pt;}
.ya3{bottom:963.358720pt;}
.y1fd{bottom:964.960000pt;}
.y5{bottom:969.766560pt;}
.yd4{bottom:970.560000pt;}
.yfd{bottom:971.528320pt;}
.y4d{bottom:971.840000pt;}
.y128{bottom:975.532160pt;}
.y28{bottom:977.920000pt;}
.y1d2{bottom:978.080000pt;}
.y77{bottom:979.526400pt;}
.yd2{bottom:989.920000pt;}
.ya2{bottom:990.885120pt;}
.y127{bottom:994.888960pt;}
.y17{bottom:997.280000pt;}
.y4{bottom:1003.687200pt;}
.yd0{bottom:1009.280000pt;}
.y27{bottom:1011.840000pt;}
.ya1{bottom:1014.407680pt;}
.y3{bottom:1037.439360pt;}
.y14{bottom:1061.600000pt;}
.y2{bottom:1071.360000pt;}
.y1{bottom:1105.120000pt;}
.hd{height:19.360000pt;}
.h10{height:19.361333pt;}
.h11{height:19.518667pt;}
.hf{height:19.520000pt;}
.h13{height:27.360000pt;}
.h1c{height:32.812500pt;}
.h12{height:40.048750pt;}
.h1d{height:42.147500pt;}
.he{height:42.866250pt;}
.h7{height:42.895000pt;}
.h9{height:43.531250pt;}
.hb{height:50.321250pt;}
.ha{height:50.328930pt;}
.h8{height:50.931562pt;}
.h2{height:54.514687pt;}
.h6{height:54.551250pt;}
.hc{height:57.938125pt;}
.h18{height:66.240000pt;}
.h4{height:85.266562pt;}
.h15{height:85.440000pt;}
.h16{height:85.600000pt;}
.h17{height:85.601333pt;}
.h14{height:104.960000pt;}
.h19{height:124.320000pt;}
.h5{height:124.405313pt;}
.h3{height:139.781250pt;}
.h1b{height:143.680000pt;}
.h1a{height:182.561333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:34.400000pt;}
.w2{width:188.958667pt;}
.w5{width:206.720000pt;}
.w6{width:321.600000pt;}
.w3{width:423.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x35{left:17.280000pt;}
.x5{left:49.600000pt;}
.xf{left:70.400000pt;}
.xd{left:72.800000pt;}
.x8{left:74.880000pt;}
.xe{left:76.960000pt;}
.xc{left:78.560000pt;}
.x10{left:79.840000pt;}
.xb{left:82.240000pt;}
.xa{left:83.840000pt;}
.x11{left:85.120000pt;}
.x9{left:87.040000pt;}
.x1{left:113.440000pt;}
.x13{left:114.400000pt;}
.x25{left:118.560000pt;}
.x47{left:123.680000pt;}
.x19{left:124.960000pt;}
.x4{left:128.160000pt;}
.x14{left:133.920000pt;}
.x39{left:137.760000pt;}
.x15{left:149.760000pt;}
.x21{left:158.240000pt;}
.x4e{left:161.456640pt;}
.x2e{left:174.880000pt;}
.x16{left:180.000000pt;}
.x3b{left:192.960000pt;}
.x1e{left:204.160000pt;}
.x41{left:211.040000pt;}
.x3d{left:215.840000pt;}
.x2d{left:219.200000pt;}
.x30{left:235.520000pt;}
.x29{left:237.760000pt;}
.x26{left:240.320000pt;}
.x23{left:243.520000pt;}
.x44{left:246.880000pt;}
.x4f{left:248.640000pt;}
.x42{left:255.840000pt;}
.x37{left:257.440000pt;}
.x12{left:261.758720pt;}
.x3f{left:276.160000pt;}
.x4a{left:283.520000pt;}
.x4c{left:284.480000pt;}
.x1a{left:286.720000pt;}
.x2b{left:290.080000pt;}
.x4d{left:293.600000pt;}
.x1f{left:296.640000pt;}
.x32{left:298.240000pt;}
.x45{left:302.240000pt;}
.x6{left:303.680000pt;}
.x1c{left:314.400000pt;}
.x33{left:317.760000pt;}
.x17{left:357.600000pt;}
.x34{left:369.920000pt;}
.x2c{left:401.760000pt;}
.x24{left:404.160000pt;}
.x2f{left:413.920000pt;}
.x1b{left:416.320000pt;}
.x43{left:425.280000pt;}
.x48{left:433.600000pt;}
.x38{left:438.720000pt;}
.x22{left:459.520000pt;}
.x40{left:464.640000pt;}
.x46{left:476.320000pt;}
.x27{left:481.280000pt;}
.x18{left:488.960000pt;}
.x3e{left:496.160000pt;}
.x20{left:511.040000pt;}
.x3a{left:545.600000pt;}
.x1d{left:556.800000pt;}
.x3c{left:559.840000pt;}
.x36{left:610.080000pt;}
.x2a{left:639.840000pt;}
.x28{left:664.320000pt;}
.x31{left:668.160000pt;}
.x3{left:672.167040pt;}
.x2{left:680.321600pt;}
.x49{left:694.394240pt;}
.x4b{left:697.765120pt;}
}




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