
    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_c4bdc6ca2b408a273dd2dcc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.857422;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_8c57fc4d65bfafe524fd0ff0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_3173932482d61d7eac44c8a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_9e7d0e067a10b0de4d710631.woff2')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_332bfcae7df386b463e88d1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c873245e02c4f3f850a96543.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_9c57961e4c64963b4327cb67.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_24af6ed214fa8dd05bb932fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_00e15b57f946a45dee632d00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1ff84876db2e542e05964df1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_9792dbbc471fd5a927386fe3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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:ffc;src:url('chunks/assets/font_e09f99ee02a5e74246c6fd3c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2fc01433b38de362ce695b59.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_12f505b369ea8c114766a1b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f8136a12299dd3a61fab8592.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_37f198b8c0814d2edf61fd2e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.842285;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:ff11;src:url('chunks/assets/font_d7883b5a23dfc32371c93200.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.850586;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:ff12;src:url('chunks/assets/font_0004e6f4118779e35c608b01.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_dbc5b314d1fe2e71a1145876.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.851074;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:ff14;src:url('chunks/assets/font_5c2329628019b847a9a5dc46.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3be53721fab27059db6c09e3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675293;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:ff16;src:url('chunks/assets/font_aa0800e246e49116f64c84d9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ff2e48fc6b3bb079812bee1f.woff2')format("woff");}.ff17{font-family:ff17;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);}
.v2{vertical-align:-30.240000px;}
.v4{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.480000px;}
.v1{vertical-align:30.240000px;}
.ls66{letter-spacing:-6.624000px;}
.ls41{letter-spacing:-3.824928px;}
.ls47{letter-spacing:-1.181952px;}
.ls44{letter-spacing:-0.590976px;}
.ls5c{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.410688px;}
.ls48{letter-spacing:-0.410400px;}
.ls4a{letter-spacing:-0.399456px;}
.ls43{letter-spacing:-0.333792px;}
.ls23{letter-spacing:-0.317952px;}
.ls24{letter-spacing:-0.238464px;}
.ls42{letter-spacing:-0.229824px;}
.ls49{letter-spacing:-0.202464px;}
.ls22{letter-spacing:-0.158976px;}
.ls61{letter-spacing:-0.119232px;}
.ls62{letter-spacing:-0.086112px;}
.ls60{letter-spacing:-0.079488px;}
.ls53{letter-spacing:-0.036000px;}
.ls50{letter-spacing:-0.028800px;}
.ls59{letter-spacing:-0.021600px;}
.ls3b{letter-spacing:-0.014400px;}
.ls1f{letter-spacing:-0.007200px;}
.ls1e{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.001440px;}
.ls56{letter-spacing:0.002160px;}
.ls5b{letter-spacing:0.002880px;}
.ls0{letter-spacing:0.007200px;}
.ls3f{letter-spacing:0.014400px;}
.ls52{letter-spacing:0.021600px;}
.ls5a{letter-spacing:0.023040px;}
.ls54{letter-spacing:0.023904px;}
.ls4e{letter-spacing:0.024480px;}
.ls4c{letter-spacing:0.036000px;}
.ls4d{letter-spacing:0.043200px;}
.ls30{letter-spacing:0.085536px;}
.ls7{letter-spacing:0.116928px;}
.ls3{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.119952px;}
.ls6{letter-spacing:0.120096px;}
.ls5{letter-spacing:0.120960px;}
.ls32{letter-spacing:0.123552px;}
.ls1a{letter-spacing:0.126720px;}
.ls57{letter-spacing:0.137952px;}
.ls1{letter-spacing:0.160416px;}
.ls2e{letter-spacing:0.171072px;}
.ls39{letter-spacing:0.175824px;}
.ls35{letter-spacing:0.180576px;}
.ls38{letter-spacing:0.185328px;}
.ls15{letter-spacing:0.187632px;}
.lsd{letter-spacing:0.187776px;}
.ls36{letter-spacing:0.190080px;}
.ls26{letter-spacing:0.200448px;}
.ls37{letter-spacing:0.228096px;}
.ls40{letter-spacing:0.237600px;}
.ls3c{letter-spacing:0.239040px;}
.ls3e{letter-spacing:0.240048px;}
.ls3d{letter-spacing:0.240480px;}
.ls2b{letter-spacing:0.242352px;}
.ls14{letter-spacing:0.247104px;}
.ls2a{letter-spacing:0.251856px;}
.ls34{letter-spacing:0.261360px;}
.ls1c{letter-spacing:0.266112px;}
.ls2c{letter-spacing:0.270864px;}
.ls28{letter-spacing:0.275616px;}
.ls31{letter-spacing:0.280368px;}
.ls27{letter-spacing:0.283968px;}
.ls2d{letter-spacing:0.304128px;}
.ls20{letter-spacing:0.317376px;}
.ls29{letter-spacing:0.337392px;}
.ls2f{letter-spacing:0.342144px;}
.ls25{letter-spacing:0.359136px;}
.ls3a{letter-spacing:0.365904px;}
.ls33{letter-spacing:0.394416px;}
.ls2{letter-spacing:0.432000px;}
.ls51{letter-spacing:0.446400px;}
.ls45{letter-spacing:0.827712px;}
.ls58{letter-spacing:0.842400px;}
.ls5d{letter-spacing:0.979200px;}
.ls4f{letter-spacing:1.895760px;}
.ls65{letter-spacing:15.984000px;}
.ls5f{letter-spacing:24.084576px;}
.ls63{letter-spacing:27.384768px;}
.ls46{letter-spacing:33.984000px;}
.ls4b{letter-spacing:38.026944px;}
.ls12{letter-spacing:39.945744px;}
.ls19{letter-spacing:44.633232px;}
.ls64{letter-spacing:51.984000px;}
.lse{letter-spacing:53.492544px;}
.ls9{letter-spacing:53.726976px;}
.ls13{letter-spacing:54.195696px;}
.lsb{letter-spacing:54.992592px;}
.ls8{letter-spacing:55.062864px;}
.ls11{letter-spacing:56.351952px;}
.ls1b{letter-spacing:56.492496px;}
.lsa{letter-spacing:58.109760px;}
.ls17{letter-spacing:58.836384px;}
.ls1d{letter-spacing:58.930128px;}
.ls5e{letter-spacing:60.084576px;}
.ls16{letter-spacing:62.961264px;}
.ls18{letter-spacing:64.203552px;}
.lsc{letter-spacing:64.976976px;}
.ls10{letter-spacing:66.734784px;}
.lsf{letter-spacing:69.289488px;}
.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;}
}
.ws3{word-spacing:-33.120000px;}
.ws4{word-spacing:-32.881536px;}
.ws5{word-spacing:-21.239136px;}
.ws2{word-spacing:-21.197376px;}
.ws19{word-spacing:-18.014400px;}
.ws16{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.985600px;}
.ws22{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.473888px;}
.wse{word-spacing:-15.268176px;}
.ws15{word-spacing:-15.239664px;}
.ws14{word-spacing:-15.211152px;}
.wsa{word-spacing:-15.144624px;}
.wsf{word-spacing:-15.135120px;}
.ws8{word-spacing:-15.125616px;}
.ws7{word-spacing:-15.120864px;}
.ws9{word-spacing:-15.116112px;}
.ws12{word-spacing:-15.101856px;}
.ws11{word-spacing:-15.063840px;}
.ws13{word-spacing:-15.059088px;}
.ws10{word-spacing:-15.054336px;}
.wsb{word-spacing:-15.044832px;}
.wsd{word-spacing:-14.997312px;}
.wsc{word-spacing:-14.959296px;}
.ws1f{word-spacing:-14.652000px;}
.ws1d{word-spacing:-14.630400px;}
.ws20{word-spacing:-14.616000px;}
.ws21{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.680000px;}
.ws24{word-spacing:-11.376000px;}
.ws1c{word-spacing:-11.108160px;}
.ws1e{word-spacing:-10.697760px;}
.ws0{word-spacing:-8.143200px;}
.ws1{word-spacing:-8.128800px;}
.ws1a{word-spacing:-0.289872px;}
.ws1b{word-spacing:-0.285120px;}
.ws17{word-spacing:0.000000px;}
._8a{margin-left:-3019.608000px;}
._5c{margin-left:-2912.283360px;}
._43{margin-left:-2911.176000px;}
._c4{margin-left:-2903.359680px;}
._14{margin-left:-2901.452544px;}
._d{margin-left:-2900.142000px;}
._fb{margin-left:-2894.896080px;}
._31{margin-left:-2893.659408px;}
._9b{margin-left:-2889.810720px;}
._a7{margin-left:-2888.751600px;}
._b9{margin-left:-2887.209360px;}
._45{margin-left:-2885.227200px;}
._26{margin-left:-2884.055472px;}
._9a{margin-left:-2882.768400px;}
._6{margin-left:-2881.680480px;}
._76{margin-left:-2880.316800px;}
._e{margin-left:-2877.928992px;}
._20{margin-left:-2875.097664px;}
._d9{margin-left:-2873.352240px;}
._4e{margin-left:-2872.288800px;}
._ac{margin-left:-2870.327952px;}
._4{margin-left:-2868.522624px;}
._af{margin-left:-2864.494080px;}
._108{margin-left:-2862.693360px;}
._e5{margin-left:-2860.646112px;}
._18{margin-left:-2855.621088px;}
._82{margin-left:-2852.203680px;}
._f5{margin-left:-2850.178032px;}
._2e{margin-left:-2848.529808px;}
._3b{margin-left:-2846.376000px;}
._d0{margin-left:-2844.440640px;}
._3e{margin-left:-2842.560000px;}
._d5{margin-left:-2840.996880px;}
._c{margin-left:-2839.509072px;}
._47{margin-left:-2837.304000px;}
._65{margin-left:-2835.432000px;}
._67{margin-left:-2833.153200px;}
._fd{margin-left:-2831.616432px;}
._b4{margin-left:-2828.964240px;}
._21{margin-left:-2827.709568px;}
._c0{margin-left:-2826.493920px;}
._8f{margin-left:-2824.020000px;}
._b2{margin-left:-2822.738400px;}
._33{margin-left:-2820.853584px;}
._3a{margin-left:-2818.512000px;}
._fc{margin-left:-2817.124560px;}
._66{margin-left:-2815.416000px;}
._c8{margin-left:-2810.519712px;}
._e7{margin-left:-2806.829280px;}
._44{margin-left:-2803.536000px;}
._12e{margin-left:-2802.456000px;}
._42{margin-left:-2801.448000px;}
._e8{margin-left:-2798.952912px;}
._2b{margin-left:-2796.874704px;}
._f9{margin-left:-2794.518720px;}
._80{margin-left:-2793.384000px;}
._40{margin-left:-2792.304000px;}
._3c{margin-left:-2784.484800px;}
._79{margin-left:-2783.421792px;}
._100{margin-left:-2781.438912px;}
._10{margin-left:-2780.417376px;}
._128{margin-left:-2773.492992px;}
._7d{margin-left:-2768.281200px;}
._9c{margin-left:-2764.978560px;}
._34{margin-left:-2761.416000px;}
._cd{margin-left:-2759.572080px;}
._23{margin-left:-2757.474720px;}
._109{margin-left:-2755.702656px;}
._16{margin-left:-2750.482944px;}
._f2{margin-left:-2746.681632px;}
._d4{margin-left:-2744.276832px;}
._3f{margin-left:-2742.552000px;}
._d3{margin-left:-2741.047920px;}
._105{margin-left:-2735.386560px;}
._f{margin-left:-2732.334768px;}
._48{margin-left:-2729.304000px;}
._102{margin-left:-2728.170720px;}
._e4{margin-left:-2726.913600px;}
._97{margin-left:-2724.048000px;}
._e2{margin-left:-2721.889872px;}
._aa{margin-left:-2720.805120px;}
._d1{margin-left:-2716.375392px;}
._cb{margin-left:-2712.850272px;}
._17b{margin-left:-2711.577600px;}
._1e{margin-left:-2706.583104px;}
._be{margin-left:-2701.111392px;}
._ff{margin-left:-2696.628240px;}
._ef{margin-left:-2694.214512px;}
._b7{margin-left:-2692.418832px;}
._118{margin-left:-2689.704000px;}
._41{margin-left:-2687.328000px;}
._12{margin-left:-2684.106144px;}
._f3{margin-left:-2681.701632px;}
._157{margin-left:-2680.488000px;}
._12a{margin-left:-2677.320000px;}
._f0{margin-left:-2667.413232px;}
._8d{margin-left:-2663.854704px;}
._dd{margin-left:-2661.978960px;}
._7f{margin-left:-2660.380704px;}
._d2{margin-left:-2658.398400px;}
._b0{margin-left:-2654.841312px;}
._f7{margin-left:-2651.885712px;}
._bf{margin-left:-2649.670992px;}
._46{margin-left:-2645.208000px;}
._c6{margin-left:-2639.238912px;}
._63{margin-left:-2636.568000px;}
._178{margin-left:-2622.228336px;}
._c2{margin-left:-2612.455920px;}
._3d{margin-left:-2610.504000px;}
._b6{margin-left:-2600.245440px;}
._da{margin-left:-2582.020512px;}
._143{margin-left:-2579.400000px;}
._bd{margin-left:-2572.012800px;}
._72{margin-left:-2568.628800px;}
._ce{margin-left:-2565.327024px;}
._15b{margin-left:-2559.312000px;}
._17a{margin-left:-2545.704000px;}
._7e{margin-left:-2542.608000px;}
._10b{margin-left:-2539.440000px;}
._dc{margin-left:-2524.636512px;}
._16c{margin-left:-2521.368000px;}
._e1{margin-left:-2509.953840px;}
._de{margin-left:-2493.338112px;}
._148{margin-left:-2491.560000px;}
._a4{margin-left:-2486.300832px;}
._ed{margin-left:-2481.667632px;}
._ad{margin-left:-2477.575440px;}
._3{margin-left:-2475.675504px;}
._117{margin-left:-2463.552000px;}
._98{margin-left:-2455.254720px;}
._125{margin-left:-2449.728000px;}
._ec{margin-left:-2445.400368px;}
._ab{margin-left:-2435.295312px;}
._10e{margin-left:-2415.600000px;}
._12b{margin-left:-2414.448000px;}
._154{margin-left:-2410.776000px;}
._159{margin-left:-2404.440000px;}
._2a{margin-left:-2388.688416px;}
._2d{margin-left:-2383.929360px;}
._93{margin-left:-2374.812000px;}
._14d{margin-left:-2369.664000px;}
._85{margin-left:-2367.403200px;}
._120{margin-left:-2365.615296px;}
._d6{margin-left:-2360.721312px;}
._155{margin-left:-2340.504000px;}
._172{margin-left:-2337.588000px;}
._121{margin-left:-2318.164992px;}
._e3{margin-left:-2313.900432px;}
._126{margin-left:-2309.616000px;}
._149{margin-left:-2293.416000px;}
._15a{margin-left:-2276.640000px;}
._29{margin-left:-2262.306816px;}
._cf{margin-left:-2261.022912px;}
._11b{margin-left:-2249.640000px;}
._14f{margin-left:-2241.432000px;}
._153{margin-left:-2238.552000px;}
._152{margin-left:-2229.552000px;}
._137{margin-left:-2225.736000px;}
._c9{margin-left:-2223.096912px;}
._df{margin-left:-2220.659712px;}
._151{margin-left:-2205.504000px;}
._28{margin-left:-2201.458608px;}
._13e{margin-left:-2195.784000px;}
._12f{margin-left:-2194.703856px;}
._106{margin-left:-2191.811472px;}
._9d{margin-left:-2188.591200px;}
._a2{margin-left:-2177.104032px;}
._17f{margin-left:-2173.464000px;}
._fa{margin-left:-2166.540192px;}
._ea{margin-left:-2161.791792px;}
._75{margin-left:-2159.352000px;}
._17{margin-left:-2129.215824px;}
._1b{margin-left:-2098.271520px;}
._1a{margin-left:-2090.051280px;}
._158{margin-left:-2076.638400px;}
._d8{margin-left:-2073.655152px;}
._11a{margin-left:-2067.552000px;}
._171{margin-left:-2065.536000px;}
._22{margin-left:-2061.542736px;}
._b8{margin-left:-2060.325792px;}
._119{margin-left:-2053.656000px;}
._a8{margin-left:-2049.148512px;}
._94{margin-left:-2043.360000px;}
._db{margin-left:-2033.142192px;}
._123{margin-left:-2029.536000px;}
._1c{margin-left:-2022.661152px;}
._bb{margin-left:-2017.580400px;}
._104{margin-left:-2013.676272px;}
._14a{margin-left:-1999.656000px;}
._130{margin-left:-1996.687296px;}
._9f{margin-left:-1993.392000px;}
._60{margin-left:-1975.608000px;}
._49{margin-left:-1955.736000px;}
._14e{margin-left:-1951.488000px;}
._f8{margin-left:-1936.024992px;}
._17d{margin-left:-1919.957760px;}
._35{margin-left:-1902.024000px;}
._129{margin-left:-1891.634688px;}
._ee{margin-left:-1886.903712px;}
._167{margin-left:-1879.704000px;}
._91{margin-left:-1856.476800px;}
._13d{margin-left:-1841.760000px;}
._160{margin-left:-1837.555200px;}
._168{margin-left:-1829.664000px;}
._136{margin-left:-1823.702400px;}
._127{margin-left:-1821.655296px;}
._15c{margin-left:-1811.520000px;}
._103{margin-left:-1807.488432px;}
._179{margin-left:-1799.568000px;}
._ae{margin-left:-1796.241312px;}
._17c{margin-left:-1779.624000px;}
._16b{margin-left:-1777.608000px;}
._ba{margin-left:-1774.223712px;}
._89{margin-left:-1765.368000px;}
._162{margin-left:-1759.507200px;}
._30{margin-left:-1757.152080px;}
._138{margin-left:-1755.864000px;}
._139{margin-left:-1739.520000px;}
._8{margin-left:-1736.068464px;}
._166{margin-left:-1719.619200px;}
._a5{margin-left:-1714.100112px;}
._e9{margin-left:-1700.740512px;}
._110{margin-left:-1699.488000px;}
._c7{margin-left:-1694.591712px;}
._10a{margin-left:-1683.450432px;}
._11d{margin-left:-1675.584000px;}
._cc{margin-left:-1664.614512px;}
._16f{margin-left:-1649.563200px;}
._165{margin-left:-1627.603200px;}
._25{margin-left:-1626.007104px;}
._10f{margin-left:-1623.528000px;}
._122{margin-left:-1619.640000px;}
._13c{margin-left:-1607.616000px;}
._12d{margin-left:-1590.768000px;}
._180{margin-left:-1583.496000px;}
._1f{margin-left:-1578.458160px;}
._5{margin-left:-1566.217728px;}
._150{margin-left:-1549.656000px;}
._173{margin-left:-1547.712000px;}
._140{margin-left:-1535.688000px;}
._e0{margin-left:-1529.517312px;}
._15e{margin-left:-1527.436800px;}
._169{margin-left:-1519.704000px;}
._164{margin-left:-1517.760000px;}
._134{margin-left:-1515.672000px;}
._15f{margin-left:-1511.611200px;}
._124{margin-left:-1505.736000px;}
._13b{margin-left:-1499.760000px;}
._f6{margin-left:-1480.913712px;}
._170{margin-left:-1473.768000px;}
._133{margin-left:-1461.528000px;}
._6f{margin-left:-1459.375200px;}
._2f{margin-left:-1450.088928px;}
._a0{margin-left:-1445.472000px;}
._c1{margin-left:-1440.870912px;}
._156{margin-left:-1428.840000px;}
._132{margin-left:-1426.752000px;}
._a9{margin-left:-1418.630112px;}
._142{margin-left:-1407.600000px;}
._175{margin-left:-1400.760000px;}
._146{margin-left:-1395.720000px;}
._64{margin-left:-1388.808000px;}
._141{margin-left:-1387.728000px;}
._14b{margin-left:-1381.752000px;}
._a3{margin-left:-1379.750112px;}
._15d{margin-left:-1361.736000px;}
._111{margin-left:-1353.600000px;}
._161{margin-left:-1349.683200px;}
._135{margin-left:-1341.720000px;}
._17e{margin-left:-1317.854880px;}
._c3{margin-left:-1314.731520px;}
._163{margin-left:-1309.651200px;}
._5f{margin-left:-1304.640000px;}
._11f{margin-left:-1297.800000px;}
._13a{margin-left:-1289.664000px;}
._f1{margin-left:-1285.433712px;}
._145{margin-left:-1279.728000px;}
._b3{margin-left:-1270.223712px;}
._d7{margin-left:-1254.422016px;}
._1d{margin-left:-1244.144304px;}
._15{margin-left:-1226.762208px;}
._6a{margin-left:-1219.680000px;}
._144{margin-left:-1215.648000px;}
._90{margin-left:-1202.688000px;}
._8e{margin-left:-1196.928000px;}
._b1{margin-left:-1193.255712px;}
._96{margin-left:-1190.801520px;}
._174{margin-left:-1182.888000px;}
._13f{margin-left:-1171.728000px;}
._147{margin-left:-1169.712000px;}
._112{margin-left:-1147.608000px;}
._74{margin-left:-1114.443360px;}
._a6{margin-left:-1104.504912px;}
._fe{margin-left:-1099.367712px;}
._ca{margin-left:-1092.678912px;}
._176{margin-left:-1090.872000px;}
._5b{margin-left:-1085.640048px;}
._37{margin-left:-1067.760000px;}
._b5{margin-left:-1066.406112px;}
._16e{margin-left:-1061.596800px;}
._7c{margin-left:-1048.752000px;}
._115{margin-left:-1039.780800px;}
._e6{margin-left:-1033.577712px;}
._114{margin-left:-1031.760000px;}
._7b{margin-left:-1009.080000px;}
._7a{margin-left:-1007.305344px;}
._24{margin-left:-994.761072px;}
._88{margin-left:-986.760000px;}
._101{margin-left:-945.899712px;}
._6e{margin-left:-890.784000px;}
._14c{margin-left:-873.806400px;}
._16a{margin-left:-855.806400px;}
._62{margin-left:-842.832000px;}
._9e{margin-left:-827.377200px;}
._68{margin-left:-811.656000px;}
._181{margin-left:-805.680000px;}
._81{margin-left:-803.736000px;}
._13{margin-left:-800.442288px;}
._32{margin-left:-797.666112px;}
._bc{margin-left:-792.391392px;}
._8b{margin-left:-784.800000px;}
._10d{margin-left:-777.672000px;}
._7{margin-left:-718.447680px;}
._8c{margin-left:-704.808000px;}
._6b{margin-left:-701.640000px;}
._2c{margin-left:-693.646848px;}
._10c{margin-left:-685.728000px;}
._16d{margin-left:-653.760000px;}
._69{margin-left:-631.728000px;}
._177{margin-left:-614.880000px;}
._107{margin-left:-590.083200px;}
._61{margin-left:-584.784000px;}
._4b{margin-left:-567.774000px;}
._a1{margin-left:-540.457200px;}
._27{margin-left:-538.465536px;}
._19{margin-left:-533.580480px;}
._f4{margin-left:-531.935712px;}
._c5{margin-left:-528.832512px;}
._11c{margin-left:-527.760000px;}
._a{margin-left:-510.834384px;}
._131{margin-left:-488.880000px;}
._113{margin-left:-487.656000px;}
._83{margin-left:-478.220400px;}
._38{margin-left:-474.768000px;}
._73{margin-left:-447.696000px;}
._95{margin-left:-419.760000px;}
._77{margin-left:-388.872000px;}
._0{margin-left:-376.756416px;}
._116{margin-left:-221.760000px;}
._b{margin-left:-206.640000px;}
._11{margin-left:-202.887360px;}
._4a{margin-left:-199.440000px;}
._9{margin-left:-167.760000px;}
._39{margin-left:-164.880000px;}
._eb{margin-left:-10.542672px;}
._99{margin-left:-9.338400px;}
._70{margin-left:-7.827840px;}
._78{margin-left:-6.232320px;}
._4d{margin-left:-5.011200px;}
._55{margin-left:-3.520800px;}
._5d{margin-left:-2.206800px;}
._2{margin-left:-1.170000px;}
._1{width:1.192320px;}
._54{width:2.554560px;}
._4c{width:3.924000px;}
._4f{width:5.445360px;}
._56{width:6.595200px;}
._5e{width:8.100000px;}
._57{width:9.220032px;}
._58{width:10.224576px;}
._51{width:12.105648px;}
._52{width:13.124160px;}
._6c{width:14.860800px;}
._53{width:15.998400px;}
._71{width:19.288800px;}
._50{width:20.397600px;}
._86{width:22.212000px;}
._87{width:26.241264px;}
._59{width:28.951200px;}
._5a{width:30.945600px;}
._92{width:32.472000px;}
._6d{width:39.988800px;}
._11e{width:144.000000px;}
._12c{width:198.000000px;}
._84{width:235.036800px;}
._36{width:846.000000px;}
.fc2{color:rgb(14,40,65);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.yce{bottom:4.020000px;}
.y81{bottom:4.080000px;}
.yfc{bottom:4.200000px;}
.y8b{bottom:4.260000px;}
.yf2{bottom:4.380000px;}
.yc6{bottom:4.440000px;}
.ye3{bottom:4.560000px;}
.y102{bottom:4.620000px;}
.yf9{bottom:4.680000px;}
.y100{bottom:4.860000px;}
.ya1{bottom:4.920000px;}
.yf0{bottom:4.980000px;}
.yf5{bottom:5.040000px;}
.yed{bottom:5.100000px;}
.y110{bottom:5.160000px;}
.yab{bottom:5.220000px;}
.y108{bottom:5.280000px;}
.yb3{bottom:5.400000px;}
.yfe{bottom:5.460000px;}
.ycf{bottom:5.520000px;}
.y82{bottom:5.580000px;}
.ybc{bottom:5.640000px;}
.yeb{bottom:5.700000px;}
.ye8{bottom:5.820000px;}
.y106{bottom:5.880000px;}
.ye5{bottom:5.940000px;}
.y7{bottom:6.180000px;}
.y10d{bottom:11.640000px;}
.yfb{bottom:25.080000px;}
.y8a{bottom:25.140000px;}
.yc5{bottom:25.320000px;}
.ya0{bottom:25.440000px;}
.yef{bottom:25.500000px;}
.y112{bottom:25.560000px;}
.yf7{bottom:25.800000px;}
.yaa{bottom:26.100000px;}
.ybb{bottom:26.160000px;}
.yea{bottom:26.220000px;}
.yb2{bottom:26.280000px;}
.ye7{bottom:26.340000px;}
.ycc{bottom:26.400000px;}
.y7f{bottom:26.460000px;}
.y89{bottom:45.660000px;}
.yc4{bottom:45.840000px;}
.y104{bottom:46.020000px;}
.y9f{bottom:46.320000px;}
.ya9{bottom:46.620000px;}
.yb1{bottom:46.800000px;}
.ycb{bottom:46.920000px;}
.y7e{bottom:46.980000px;}
.yba{bottom:47.040000px;}
.y5{bottom:55.800000px;}
.y88{bottom:66.540000px;}
.y4{bottom:66.600000px;}
.yc3{bottom:66.720000px;}
.y9e{bottom:66.840000px;}
.ya8{bottom:67.500000px;}
.yb9{bottom:67.560000px;}
.yb0{bottom:67.680000px;}
.yca{bottom:67.800000px;}
.y7d{bottom:67.860000px;}
.y3{bottom:77.760000px;}
.y87{bottom:87.060000px;}
.yc2{bottom:87.240000px;}
.y9d{bottom:87.720000px;}
.ya7{bottom:88.020000px;}
.yaf{bottom:88.200000px;}
.yc9{bottom:88.320000px;}
.yb8{bottom:88.440000px;}
.y2{bottom:88.560000px;}
.y86{bottom:107.940000px;}
.yc1{bottom:108.120000px;}
.y9c{bottom:108.240000px;}
.ya6{bottom:108.900000px;}
.yb7{bottom:108.960000px;}
.yae{bottom:109.080000px;}
.yc8{bottom:109.200000px;}
.y107{bottom:111.000000px;}
.y41{bottom:112.320000px;}
.y75{bottom:115.200000px;}
.y1f1{bottom:115.560000px;}
.y1b7{bottom:119.880000px;}
.y85{bottom:128.460000px;}
.yc0{bottom:128.640000px;}
.y9b{bottom:129.120000px;}
.ya5{bottom:129.420000px;}
.yad{bottom:129.600000px;}
.yb6{bottom:129.840000px;}
.y105{bottom:132.000000px;}
.yde{bottom:132.120000px;}
.y40{bottom:133.200000px;}
.y5e{bottom:136.080000px;}
.y1f0{bottom:136.440000px;}
.y1e5{bottom:139.680000px;}
.y186{bottom:141.480000px;}
.y1b6{bottom:141.840000px;}
.y169{bottom:145.800000px;}
.y84{bottom:149.340000px;}
.ybf{bottom:149.520000px;}
.y9a{bottom:149.640000px;}
.ya4{bottom:150.300000px;}
.yb5{bottom:150.360000px;}
.yac{bottom:150.480000px;}
.y128{bottom:151.560000px;}
.y3f{bottom:153.720000px;}
.y103{bottom:154.500000px;}
.y74{bottom:156.600000px;}
.y77{bottom:156.960000px;}
.y1e4{bottom:160.560000px;}
.y8c{bottom:162.000000px;}
.y185{bottom:163.440000px;}
.y197{bottom:163.800000px;}
.y168{bottom:167.760000px;}
.ybe{bottom:170.040000px;}
.y99{bottom:170.520000px;}
.ya3{bottom:170.820000px;}
.yd4{bottom:171.000000px;}
.ydd{bottom:173.520000px;}
.y3e{bottom:174.600000px;}
.y5d{bottom:177.480000px;}
.y76{bottom:177.840000px;}
.y1e3{bottom:181.080000px;}
.y1b5{bottom:181.800000px;}
.y196{bottom:185.760000px;}
.yd3{bottom:191.880000px;}
.y127{bottom:192.960000px;}
.y3d{bottom:195.120000px;}
.y73{bottom:198.000000px;}
.y1ef{bottom:198.360000px;}
.y1e2{bottom:201.960000px;}
.y184{bottom:203.400000px;}
.y1b4{bottom:203.760000px;}
.y167{bottom:207.720000px;}
.yd2{bottom:212.400000px;}
.y3c{bottom:214.920000px;}
.y101{bottom:217.500000px;}
.y5c{bottom:218.880000px;}
.y1ee{bottom:219.240000px;}
.y1e1{bottom:222.480000px;}
.y183{bottom:225.360000px;}
.y1b3{bottom:225.720000px;}
.y59{bottom:229.320000px;}
.y166{bottom:229.680000px;}
.y3b{bottom:230.760000px;}
.yd1{bottom:233.280000px;}
.y126{bottom:234.360000px;}
.yff{bottom:238.500000px;}
.y72{bottom:239.400000px;}
.y1ed{bottom:239.760000px;}
.y1e0{bottom:243.360000px;}
.y3a{bottom:245.160000px;}
.y182{bottom:247.320000px;}
.y195{bottom:247.680000px;}
.y165{bottom:251.640000px;}
.ydc{bottom:256.320000px;}
.yfd{bottom:259.500000px;}
.y39{bottom:259.560000px;}
.y5b{bottom:260.280000px;}
.y1ec{bottom:260.640000px;}
.y1df{bottom:263.880000px;}
.y1b2{bottom:265.680000px;}
.y194{bottom:269.640000px;}
.y58{bottom:270.360000px;}
.y38{bottom:274.320000px;}
.y125{bottom:275.760000px;}
.y71{bottom:280.800000px;}
.y1eb{bottom:281.160000px;}
.yfa{bottom:282.000000px;}
.y1de{bottom:284.760000px;}
.y181{bottom:287.280000px;}
.y1b1{bottom:287.640000px;}
.y37{bottom:288.720000px;}
.y164{bottom:291.600000px;}
.ydb{bottom:297.720000px;}
.y5a{bottom:301.680000px;}
.y1ea{bottom:302.040000px;}
.y36{bottom:303.120000px;}
.y1dd{bottom:305.280000px;}
.y57{bottom:306.000000px;}
.y180{bottom:309.240000px;}
.y163{bottom:313.560000px;}
.y124{bottom:317.160000px;}
.y35{bottom:317.520000px;}
.y70{bottom:322.200000px;}
.y1e9{bottom:322.560000px;}
.yf8{bottom:324.000000px;}
.y1dc{bottom:326.160000px;}
.y1b0{bottom:327.600000px;}
.ya2{bottom:328.500000px;}
.y193{bottom:331.560000px;}
.y34{bottom:331.920000px;}
.y162{bottom:335.520000px;}
.yda{bottom:339.120000px;}
.y56{bottom:343.080000px;}
.y1e8{bottom:343.440000px;}
.yf6{bottom:345.000000px;}
.y33{bottom:346.680000px;}
.y17f{bottom:349.200000px;}
.y1af{bottom:349.560000px;}
.y192{bottom:353.520000px;}
.y123{bottom:358.560000px;}
.yd9{bottom:360.360000px;}
.y32{bottom:361.080000px;}
.y6f{bottom:363.600000px;}
.y1e7{bottom:363.960000px;}
.y1db{bottom:367.560000px;}
.y17e{bottom:371.160000px;}
.y1ae{bottom:371.520000px;}
.y31{bottom:375.480000px;}
.yd8{bottom:380.880000px;}
.y55{bottom:384.480000px;}
.y1e6{bottom:384.840000px;}
.yf4{bottom:387.000000px;}
.y1da{bottom:388.080000px;}
.y30{bottom:389.880000px;}
.y17d{bottom:393.120000px;}
.y161{bottom:397.440000px;}
.y122{bottom:399.960000px;}
.yd7{bottom:401.760000px;}
.y2f{bottom:404.640000px;}
.y6e{bottom:405.000000px;}
.y14a{bottom:405.360000px;}
.yf3{bottom:408.000000px;}
.y1d9{bottom:408.960000px;}
.y1ad{bottom:411.480000px;}
.y191{bottom:415.440000px;}
.y2e{bottom:419.040000px;}
.y160{bottom:419.400000px;}
.yd6{bottom:422.280000px;}
.y54{bottom:425.880000px;}
.y149{bottom:426.240000px;}
.y1d8{bottom:429.480000px;}
.yf1{bottom:430.500000px;}
.y2d{bottom:433.440000px;}
.y1ac{bottom:433.800000px;}
.y190{bottom:437.400000px;}
.y121{bottom:441.360000px;}
.yd5{bottom:443.160000px;}
.y6d{bottom:446.400000px;}
.y148{bottom:446.760000px;}
.y2c{bottom:447.840000px;}
.y1d7{bottom:450.360000px;}
.yee{bottom:451.500000px;}
.y17c{bottom:455.400000px;}
.y1ab{bottom:455.760000px;}
.yd0{bottom:459.000000px;}
.y18f{bottom:459.360000px;}
.y2b{bottom:462.600000px;}
.y53{bottom:467.280000px;}
.y147{bottom:467.640000px;}
.y1d6{bottom:470.880000px;}
.y2a{bottom:477.000000px;}
.y17b{bottom:477.360000px;}
.y15f{bottom:481.320000px;}
.y120{bottom:482.760000px;}
.y97{bottom:483.840000px;}
.y6c{bottom:487.800000px;}
.y146{bottom:488.160000px;}
.y29{bottom:491.400000px;}
.y1d5{bottom:491.760000px;}
.yec{bottom:493.500000px;}
.y1aa{bottom:495.720000px;}
.y15e{bottom:503.280000px;}
.y96{bottom:504.360000px;}
.y28{bottom:505.800000px;}
.y52{bottom:508.680000px;}
.y145{bottom:509.040000px;}
.y1d4{bottom:512.280000px;}
.ye9{bottom:514.500000px;}
.y98{bottom:516.000000px;}
.y17a{bottom:517.320000px;}
.y1a9{bottom:517.680000px;}
.y27{bottom:520.200000px;}
.y18e{bottom:521.280000px;}
.y11f{bottom:524.160000px;}
.y95{bottom:525.240000px;}
.y6b{bottom:529.200000px;}
.y144{bottom:529.560000px;}
.y1d3{bottom:533.160000px;}
.y26{bottom:534.960000px;}
.y179{bottom:539.280000px;}
.y1a8{bottom:539.640000px;}
.y18d{bottom:543.240000px;}
.y94{bottom:545.760000px;}
.y25{bottom:549.360000px;}
.y51{bottom:550.080000px;}
.y143{bottom:550.440000px;}
.y1d2{bottom:553.680000px;}
.ye6{bottom:556.500000px;}
.y178{bottom:561.240000px;}
.y24{bottom:563.760000px;}
.y15d{bottom:565.200000px;}
.y11e{bottom:565.560000px;}
.y93{bottom:566.640000px;}
.y6a{bottom:570.600000px;}
.y142{bottom:570.960000px;}
.y1d1{bottom:574.560000px;}
.y23{bottom:578.160000px;}
.y1a7{bottom:579.600000px;}
.y177{bottom:583.200000px;}
.y92{bottom:587.160000px;}
.y50{bottom:591.480000px;}
.y141{bottom:591.840000px;}
.y22{bottom:592.920000px;}
.y1d0{bottom:595.080000px;}
.ye4{bottom:598.500000px;}
.y1a6{bottom:601.560000px;}
.y18c{bottom:605.520000px;}
.y11d{bottom:606.960000px;}
.y21{bottom:607.320000px;}
.y91{bottom:608.040000px;}
.y69{bottom:612.000000px;}
.y140{bottom:612.360000px;}
.y1cf{bottom:615.960000px;}
.y20{bottom:621.720000px;}
.y176{bottom:623.160000px;}
.y15c{bottom:627.120000px;}
.y18b{bottom:627.480000px;}
.y90{bottom:628.560000px;}
.y4f{bottom:632.880000px;}
.y13f{bottom:633.240000px;}
.y1f{bottom:636.120000px;}
.y1ce{bottom:636.480000px;}
.y1a5{bottom:641.520000px;}
.ye2{bottom:642.000000px;}
.y175{bottom:645.120000px;}
.y11c{bottom:648.360000px;}
.y15b{bottom:649.080000px;}
.y8f{bottom:649.440000px;}
.y1e{bottom:650.880000px;}
.y68{bottom:653.400000px;}
.y13e{bottom:653.760000px;}
.y1cd{bottom:657.360000px;}
.y1a4{bottom:663.480000px;}
.y1d{bottom:665.280000px;}
.y174{bottom:667.080000px;}
.y8e{bottom:669.960000px;}
.y15a{bottom:671.040000px;}
.y18a{bottom:671.400000px;}
.y4e{bottom:674.280000px;}
.y13d{bottom:674.640000px;}
.y1cc{bottom:677.880000px;}
.y1c{bottom:679.680000px;}
.ye1{bottom:682.560000px;}
.y11b{bottom:689.400000px;}
.y8d{bottom:690.840000px;}
.y1b{bottom:694.080000px;}
.y67{bottom:694.800000px;}
.y13c{bottom:695.160000px;}
.y1cb{bottom:698.760000px;}
.ye0{bottom:699.120000px;}
.y1a3{bottom:703.440000px;}
.y83{bottom:703.500000px;}
.y173{bottom:707.400000px;}
.yc7{bottom:708.000000px;}
.y1a{bottom:708.840000px;}
.ycd{bottom:709.500000px;}
.y159{bottom:711.000000px;}
.y189{bottom:711.360000px;}
.y4d{bottom:715.680000px;}
.ydf{bottom:716.040000px;}
.y1ca{bottom:719.280000px;}
.y19{bottom:723.600000px;}
.y1a2{bottom:725.400000px;}
.y172{bottom:729.360000px;}
.y11a{bottom:730.800000px;}
.y158{bottom:733.320000px;}
.y66{bottom:736.200000px;}
.y13b{bottom:736.560000px;}
.y18{bottom:739.800000px;}
.y1c9{bottom:740.160000px;}
.y1a1{bottom:747.360000px;}
.y171{bottom:751.320000px;}
.y4c{bottom:757.080000px;}
.y13a{bottom:757.440000px;}
.y17{bottom:757.800000px;}
.y1c8{bottom:760.680000px;}
.y1a0{bottom:769.320000px;}
.y119{bottom:772.200000px;}
.y157{bottom:773.280000px;}
.y65{bottom:777.600000px;}
.y139{bottom:777.960000px;}
.y1c7{bottom:781.560000px;}
.y16{bottom:781.920000px;}
.y170{bottom:791.280000px;}
.y156{bottom:795.240000px;}
.y4b{bottom:798.480000px;}
.y138{bottom:798.840000px;}
.y1c6{bottom:802.080000px;}
.y15{bottom:806.040000px;}
.y19f{bottom:809.280000px;}
.y16f{bottom:813.240000px;}
.y118{bottom:813.600000px;}
.y64{bottom:819.000000px;}
.y137{bottom:819.360000px;}
.y1c5{bottom:822.960000px;}
.y14{bottom:830.160000px;}
.y19e{bottom:831.240000px;}
.ybd{bottom:834.000000px;}
.y155{bottom:835.200000px;}
.y4a{bottom:839.880000px;}
.y136{bottom:840.240000px;}
.y1c4{bottom:843.480000px;}
.y19d{bottom:853.200000px;}
.y13{bottom:854.280000px;}
.y117{bottom:855.000000px;}
.y154{bottom:857.160000px;}
.y63{bottom:860.400000px;}
.y135{bottom:860.760000px;}
.y1c3{bottom:864.360000px;}
.y7c{bottom:868.500000px;}
.y80{bottom:870.000000px;}
.y16e{bottom:875.160000px;}
.y12{bottom:878.760000px;}
.y188{bottom:879.120000px;}
.y49{bottom:881.280000px;}
.y134{bottom:881.640000px;}
.y1c2{bottom:884.880000px;}
.y116{bottom:896.400000px;}
.y153{bottom:897.120000px;}
.y62{bottom:901.800000px;}
.y133{bottom:902.160000px;}
.y11{bottom:902.880000px;}
.y1c1{bottom:905.760000px;}
.y19c{bottom:915.120000px;}
.y152{bottom:919.080000px;}
.y48{bottom:922.680000px;}
.y132{bottom:923.040000px;}
.y1c0{bottom:926.280000px;}
.y10{bottom:927.000000px;}
.y19b{bottom:937.080000px;}
.y115{bottom:937.800000px;}
.y151{bottom:941.040000px;}
.y61{bottom:943.200000px;}
.y131{bottom:943.560000px;}
.y1bf{bottom:947.160000px;}
.yf{bottom:951.120000px;}
.y16d{bottom:959.040000px;}
.y187{bottom:963.000000px;}
.y47{bottom:964.080000px;}
.y130{bottom:964.440000px;}
.y1be{bottom:967.680000px;}
.y7b{bottom:972.360000px;}
.ye{bottom:975.240000px;}
.y114{bottom:979.200000px;}
.y150{bottom:981.000000px;}
.y60{bottom:984.600000px;}
.y12f{bottom:984.960000px;}
.y1bd{bottom:988.560000px;}
.y7a{bottom:988.920000px;}
.y19a{bottom:999.000000px;}
.yd{bottom:999.360000px;}
.y113{bottom:1000.440000px;}
.y14f{bottom:1002.960000px;}
.y46{bottom:1005.480000px;}
.y5f{bottom:1005.840000px;}
.y1bc{bottom:1009.800000px;}
.y111{bottom:1017.000000px;}
.yb4{bottom:1020.000000px;}
.y199{bottom:1020.960000px;}
.yc{bottom:1024.560000px;}
.y14e{bottom:1024.920000px;}
.y12e{bottom:1026.360000px;}
.y1bb{bottom:1032.840000px;}
.y16c{bottom:1042.920000px;}
.y45{bottom:1046.520000px;}
.y12d{bottom:1046.880000px;}
.y1ba{bottom:1051.560000px;}
.yb{bottom:1057.320000px;}
.y10f{bottom:1059.000000px;}
.y14d{bottom:1064.880000px;}
.y12c{bottom:1067.760000px;}
.y1b9{bottom:1070.640000px;}
.y10e{bottom:1080.000000px;}
.y14c{bottom:1086.840000px;}
.y44{bottom:1087.920000px;}
.y12b{bottom:1088.280000px;}
.y1b8{bottom:1089.720000px;}
.ya{bottom:1095.120000px;}
.y198{bottom:1104.840000px;}
.y14b{bottom:1108.800000px;}
.y12a{bottom:1109.160000px;}
.y10c{bottom:1122.000000px;}
.y10b{bottom:1123.500000px;}
.y16b{bottom:1126.800000px;}
.y43{bottom:1129.320000px;}
.y129{bottom:1129.680000px;}
.y9{bottom:1132.920000px;}
.y10a{bottom:1144.500000px;}
.y16a{bottom:1148.760000px;}
.y79{bottom:1150.560000px;}
.y109{bottom:1165.500000px;}
.y8{bottom:1168.200000px;}
.y42{bottom:1170.720000px;}
.y78{bottom:1171.080000px;}
.y6{bottom:1186.500000px;}
.y1{bottom:1193.040000px;}
.h18{height:21.000000px;}
.h1a{height:22.500000px;}
.h5{height:24.000000px;}
.h4{height:24.486328px;}
.h3{height:26.138672px;}
.h1d{height:32.113125px;}
.h1b{height:42.000000px;}
.h19{height:43.500000px;}
.h2{height:48.480469px;}
.hc{height:48.796875px;}
.hd{height:49.992188px;}
.hb{height:50.027344px;}
.h1e{height:52.313203px;}
.h1f{height:55.666406px;}
.he{height:56.593125px;}
.h8{height:56.604375px;}
.h9{height:58.031719px;}
.h1c{height:63.000000px;}
.ha{height:68.260781px;}
.h7{height:71.982422px;}
.h10{height:84.000000px;}
.hf{height:85.500000px;}
.h6{height:89.721563px;}
.h16{height:124.500000px;}
.h15{height:126.000000px;}
.h11{height:166.500000px;}
.h14{height:168.000000px;}
.h13{height:187.500000px;}
.h17{height:250.500000px;}
.h12{height:708.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w6{width:21.000000px;}
.w7{width:75.000000px;}
.w4{width:204.000000px;}
.w5{width:228.000000px;}
.w9{width:274.500000px;}
.w3{width:288.000000px;}
.w8{width:372.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xd{left:7.439928px;}
.x6{left:8.640036px;}
.xf{left:35.640036px;}
.x10{left:58.140036px;}
.x8{left:89.682360px;}
.x11{left:101.939928px;}
.x1{left:108.000000px;}
.x4{left:135.000000px;}
.x13{left:136.799928px;}
.x5{left:162.000000px;}
.xa{left:169.618920px;}
.x1b{left:171.825084px;}
.x12{left:177.156720px;}
.x19{left:181.649772px;}
.xc{left:183.000000px;}
.x14{left:189.000000px;}
.x15{left:216.000000px;}
.x1a{left:220.500000px;}
.x18{left:236.997072px;}
.x17{left:241.998048px;}
.x1c{left:243.000000px;}
.x16{left:246.999024px;}
.x7{left:394.500000px;}
.xe{left:553.500000px;}
.x9{left:597.000000px;}
.xb{left:765.000000px;}
.x2{left:775.500000px;}
.x3{left:784.950120px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.760000pt;}
.v1{vertical-align:26.880000pt;}
.ls66{letter-spacing:-5.888000pt;}
.ls41{letter-spacing:-3.399936pt;}
.ls47{letter-spacing:-1.050624pt;}
.ls44{letter-spacing:-0.525312pt;}
.ls5c{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.365056pt;}
.ls48{letter-spacing:-0.364800pt;}
.ls4a{letter-spacing:-0.355072pt;}
.ls43{letter-spacing:-0.296704pt;}
.ls23{letter-spacing:-0.282624pt;}
.ls24{letter-spacing:-0.211968pt;}
.ls42{letter-spacing:-0.204288pt;}
.ls49{letter-spacing:-0.179968pt;}
.ls22{letter-spacing:-0.141312pt;}
.ls61{letter-spacing:-0.105984pt;}
.ls62{letter-spacing:-0.076544pt;}
.ls60{letter-spacing:-0.070656pt;}
.ls53{letter-spacing:-0.032000pt;}
.ls50{letter-spacing:-0.025600pt;}
.ls59{letter-spacing:-0.019200pt;}
.ls3b{letter-spacing:-0.012800pt;}
.ls1f{letter-spacing:-0.006400pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.001280pt;}
.ls56{letter-spacing:0.001920pt;}
.ls5b{letter-spacing:0.002560pt;}
.ls0{letter-spacing:0.006400pt;}
.ls3f{letter-spacing:0.012800pt;}
.ls52{letter-spacing:0.019200pt;}
.ls5a{letter-spacing:0.020480pt;}
.ls54{letter-spacing:0.021248pt;}
.ls4e{letter-spacing:0.021760pt;}
.ls4c{letter-spacing:0.032000pt;}
.ls4d{letter-spacing:0.038400pt;}
.ls30{letter-spacing:0.076032pt;}
.ls7{letter-spacing:0.103936pt;}
.ls3{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.106624pt;}
.ls6{letter-spacing:0.106752pt;}
.ls5{letter-spacing:0.107520pt;}
.ls32{letter-spacing:0.109824pt;}
.ls1a{letter-spacing:0.112640pt;}
.ls57{letter-spacing:0.122624pt;}
.ls1{letter-spacing:0.142592pt;}
.ls2e{letter-spacing:0.152064pt;}
.ls39{letter-spacing:0.156288pt;}
.ls35{letter-spacing:0.160512pt;}
.ls38{letter-spacing:0.164736pt;}
.ls15{letter-spacing:0.166784pt;}
.lsd{letter-spacing:0.166912pt;}
.ls36{letter-spacing:0.168960pt;}
.ls26{letter-spacing:0.178176pt;}
.ls37{letter-spacing:0.202752pt;}
.ls40{letter-spacing:0.211200pt;}
.ls3c{letter-spacing:0.212480pt;}
.ls3e{letter-spacing:0.213376pt;}
.ls3d{letter-spacing:0.213760pt;}
.ls2b{letter-spacing:0.215424pt;}
.ls14{letter-spacing:0.219648pt;}
.ls2a{letter-spacing:0.223872pt;}
.ls34{letter-spacing:0.232320pt;}
.ls1c{letter-spacing:0.236544pt;}
.ls2c{letter-spacing:0.240768pt;}
.ls28{letter-spacing:0.244992pt;}
.ls31{letter-spacing:0.249216pt;}
.ls27{letter-spacing:0.252416pt;}
.ls2d{letter-spacing:0.270336pt;}
.ls20{letter-spacing:0.282112pt;}
.ls29{letter-spacing:0.299904pt;}
.ls2f{letter-spacing:0.304128pt;}
.ls25{letter-spacing:0.319232pt;}
.ls3a{letter-spacing:0.325248pt;}
.ls33{letter-spacing:0.350592pt;}
.ls2{letter-spacing:0.384000pt;}
.ls51{letter-spacing:0.396800pt;}
.ls45{letter-spacing:0.735744pt;}
.ls58{letter-spacing:0.748800pt;}
.ls5d{letter-spacing:0.870400pt;}
.ls4f{letter-spacing:1.685120pt;}
.ls65{letter-spacing:14.208000pt;}
.ls5f{letter-spacing:21.408512pt;}
.ls63{letter-spacing:24.342016pt;}
.ls46{letter-spacing:30.208000pt;}
.ls4b{letter-spacing:33.801728pt;}
.ls12{letter-spacing:35.507328pt;}
.ls19{letter-spacing:39.673984pt;}
.ls64{letter-spacing:46.208000pt;}
.lse{letter-spacing:47.548928pt;}
.ls9{letter-spacing:47.757312pt;}
.ls13{letter-spacing:48.173952pt;}
.lsb{letter-spacing:48.882304pt;}
.ls8{letter-spacing:48.944768pt;}
.ls11{letter-spacing:50.090624pt;}
.ls1b{letter-spacing:50.215552pt;}
.lsa{letter-spacing:51.653120pt;}
.ls17{letter-spacing:52.299008pt;}
.ls1d{letter-spacing:52.382336pt;}
.ls5e{letter-spacing:53.408512pt;}
.ls16{letter-spacing:55.965568pt;}
.ls18{letter-spacing:57.069824pt;}
.lsc{letter-spacing:57.757312pt;}
.ls10{letter-spacing:59.319808pt;}
.lsf{letter-spacing:61.590656pt;}
.ws3{word-spacing:-29.440000pt;}
.ws4{word-spacing:-29.228032pt;}
.ws5{word-spacing:-18.879232pt;}
.ws2{word-spacing:-18.842112pt;}
.ws19{word-spacing:-16.012800pt;}
.ws16{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.987200pt;}
.ws22{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.643456pt;}
.wse{word-spacing:-13.571712pt;}
.ws15{word-spacing:-13.546368pt;}
.ws14{word-spacing:-13.521024pt;}
.wsa{word-spacing:-13.461888pt;}
.wsf{word-spacing:-13.453440pt;}
.ws8{word-spacing:-13.444992pt;}
.ws7{word-spacing:-13.440768pt;}
.ws9{word-spacing:-13.436544pt;}
.ws12{word-spacing:-13.423872pt;}
.ws11{word-spacing:-13.390080pt;}
.ws13{word-spacing:-13.385856pt;}
.ws10{word-spacing:-13.381632pt;}
.wsb{word-spacing:-13.373184pt;}
.wsd{word-spacing:-13.330944pt;}
.wsc{word-spacing:-13.297152pt;}
.ws1f{word-spacing:-13.024000pt;}
.ws1d{word-spacing:-13.004800pt;}
.ws20{word-spacing:-12.992000pt;}
.ws21{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws24{word-spacing:-10.112000pt;}
.ws1c{word-spacing:-9.873920pt;}
.ws1e{word-spacing:-9.509120pt;}
.ws0{word-spacing:-7.238400pt;}
.ws1{word-spacing:-7.225600pt;}
.ws1a{word-spacing:-0.257664pt;}
.ws1b{word-spacing:-0.253440pt;}
.ws17{word-spacing:0.000000pt;}
._8a{margin-left:-2684.096000pt;}
._5c{margin-left:-2588.696320pt;}
._43{margin-left:-2587.712000pt;}
._c4{margin-left:-2580.764160pt;}
._14{margin-left:-2579.068928pt;}
._d{margin-left:-2577.904000pt;}
._fb{margin-left:-2573.240960pt;}
._31{margin-left:-2572.141696pt;}
._9b{margin-left:-2568.720640pt;}
._a7{margin-left:-2567.779200pt;}
._b9{margin-left:-2566.408320pt;}
._45{margin-left:-2564.646400pt;}
._26{margin-left:-2563.604864pt;}
._9a{margin-left:-2562.460800pt;}
._6{margin-left:-2561.493760pt;}
._76{margin-left:-2560.281600pt;}
._e{margin-left:-2558.159104pt;}
._20{margin-left:-2555.642368pt;}
._d9{margin-left:-2554.090880pt;}
._4e{margin-left:-2553.145600pt;}
._ac{margin-left:-2551.402624pt;}
._4{margin-left:-2549.797888pt;}
._af{margin-left:-2546.216960pt;}
._108{margin-left:-2544.616320pt;}
._e5{margin-left:-2542.796544pt;}
._18{margin-left:-2538.329856pt;}
._82{margin-left:-2535.292160pt;}
._f5{margin-left:-2533.491584pt;}
._2e{margin-left:-2532.026496pt;}
._3b{margin-left:-2530.112000pt;}
._d0{margin-left:-2528.391680pt;}
._3e{margin-left:-2526.720000pt;}
._d5{margin-left:-2525.330560pt;}
._c{margin-left:-2524.008064pt;}
._47{margin-left:-2522.048000pt;}
._65{margin-left:-2520.384000pt;}
._67{margin-left:-2518.358400pt;}
._fd{margin-left:-2516.992384pt;}
._b4{margin-left:-2514.634880pt;}
._21{margin-left:-2513.519616pt;}
._c0{margin-left:-2512.439040pt;}
._8f{margin-left:-2510.240000pt;}
._b2{margin-left:-2509.100800pt;}
._33{margin-left:-2507.425408pt;}
._3a{margin-left:-2505.344000pt;}
._fc{margin-left:-2504.110720pt;}
._66{margin-left:-2502.592000pt;}
._c8{margin-left:-2498.239744pt;}
._e7{margin-left:-2494.959360pt;}
._44{margin-left:-2492.032000pt;}
._12e{margin-left:-2491.072000pt;}
._42{margin-left:-2490.176000pt;}
._e8{margin-left:-2487.958144pt;}
._2b{margin-left:-2486.110848pt;}
._f9{margin-left:-2484.016640pt;}
._80{margin-left:-2483.008000pt;}
._40{margin-left:-2482.048000pt;}
._3c{margin-left:-2475.097600pt;}
._79{margin-left:-2474.152704pt;}
._100{margin-left:-2472.390144pt;}
._10{margin-left:-2471.482112pt;}
._128{margin-left:-2465.327104pt;}
._7d{margin-left:-2460.694400pt;}
._9c{margin-left:-2457.758720pt;}
._34{margin-left:-2454.592000pt;}
._cd{margin-left:-2452.952960pt;}
._23{margin-left:-2451.088640pt;}
._109{margin-left:-2449.513472pt;}
._16{margin-left:-2444.873728pt;}
._f2{margin-left:-2441.494784pt;}
._d4{margin-left:-2439.357184pt;}
._3f{margin-left:-2437.824000pt;}
._d3{margin-left:-2436.487040pt;}
._105{margin-left:-2431.454720pt;}
._f{margin-left:-2428.742016pt;}
._48{margin-left:-2426.048000pt;}
._102{margin-left:-2425.040640pt;}
._e4{margin-left:-2423.923200pt;}
._97{margin-left:-2421.376000pt;}
._e2{margin-left:-2419.457664pt;}
._aa{margin-left:-2418.493440pt;}
._d1{margin-left:-2414.555904pt;}
._cb{margin-left:-2411.422464pt;}
._17b{margin-left:-2410.291200pt;}
._1e{margin-left:-2405.851648pt;}
._be{margin-left:-2400.987904pt;}
._ff{margin-left:-2397.002880pt;}
._ef{margin-left:-2394.857344pt;}
._b7{margin-left:-2393.261184pt;}
._118{margin-left:-2390.848000pt;}
._41{margin-left:-2388.736000pt;}
._12{margin-left:-2385.872128pt;}
._f3{margin-left:-2383.734784pt;}
._157{margin-left:-2382.656000pt;}
._12a{margin-left:-2379.840000pt;}
._f0{margin-left:-2371.033984pt;}
._8d{margin-left:-2367.870848pt;}
._dd{margin-left:-2366.203520pt;}
._7f{margin-left:-2364.782848pt;}
._d2{margin-left:-2363.020800pt;}
._b0{margin-left:-2359.858944pt;}
._f7{margin-left:-2357.231744pt;}
._bf{margin-left:-2355.263104pt;}
._46{margin-left:-2351.296000pt;}
._c6{margin-left:-2345.990144pt;}
._63{margin-left:-2343.616000pt;}
._178{margin-left:-2330.869632pt;}
._c2{margin-left:-2322.183040pt;}
._3d{margin-left:-2320.448000pt;}
._b6{margin-left:-2311.329280pt;}
._da{margin-left:-2295.129344pt;}
._143{margin-left:-2292.800000pt;}
._bd{margin-left:-2286.233600pt;}
._72{margin-left:-2283.225600pt;}
._ce{margin-left:-2280.290688pt;}
._15b{margin-left:-2274.944000pt;}
._17a{margin-left:-2262.848000pt;}
._7e{margin-left:-2260.096000pt;}
._10b{margin-left:-2257.280000pt;}
._dc{margin-left:-2244.121344pt;}
._16c{margin-left:-2241.216000pt;}
._e1{margin-left:-2231.070080pt;}
._de{margin-left:-2216.300544pt;}
._148{margin-left:-2214.720000pt;}
._a4{margin-left:-2210.045184pt;}
._ed{margin-left:-2205.926784pt;}
._ad{margin-left:-2202.289280pt;}
._3{margin-left:-2200.600448pt;}
._117{margin-left:-2189.824000pt;}
._98{margin-left:-2182.448640pt;}
._125{margin-left:-2177.536000pt;}
._ec{margin-left:-2173.689216pt;}
._ab{margin-left:-2164.706944pt;}
._10e{margin-left:-2147.200000pt;}
._12b{margin-left:-2146.176000pt;}
._154{margin-left:-2142.912000pt;}
._159{margin-left:-2137.280000pt;}
._2a{margin-left:-2123.278592pt;}
._2d{margin-left:-2119.048320pt;}
._93{margin-left:-2110.944000pt;}
._14d{margin-left:-2106.368000pt;}
._85{margin-left:-2104.358400pt;}
._120{margin-left:-2102.769152pt;}
._d6{margin-left:-2098.418944pt;}
._155{margin-left:-2080.448000pt;}
._172{margin-left:-2077.856000pt;}
._121{margin-left:-2060.591104pt;}
._e3{margin-left:-2056.800384pt;}
._126{margin-left:-2052.992000pt;}
._149{margin-left:-2038.592000pt;}
._15a{margin-left:-2023.680000pt;}
._29{margin-left:-2010.939392pt;}
._cf{margin-left:-2009.798144pt;}
._11b{margin-left:-1999.680000pt;}
._14f{margin-left:-1992.384000pt;}
._153{margin-left:-1989.824000pt;}
._152{margin-left:-1981.824000pt;}
._137{margin-left:-1978.432000pt;}
._c9{margin-left:-1976.086144pt;}
._df{margin-left:-1973.919744pt;}
._151{margin-left:-1960.448000pt;}
._28{margin-left:-1956.852096pt;}
._13e{margin-left:-1951.808000pt;}
._12f{margin-left:-1950.847872pt;}
._106{margin-left:-1948.276864pt;}
._9d{margin-left:-1945.414400pt;}
._a2{margin-left:-1935.203584pt;}
._17f{margin-left:-1931.968000pt;}
._fa{margin-left:-1925.813504pt;}
._ea{margin-left:-1921.592704pt;}
._75{margin-left:-1919.424000pt;}
._17{margin-left:-1892.636288pt;}
._1b{margin-left:-1865.130240pt;}
._1a{margin-left:-1857.823360pt;}
._158{margin-left:-1845.900800pt;}
._d8{margin-left:-1843.249024pt;}
._11a{margin-left:-1837.824000pt;}
._171{margin-left:-1836.032000pt;}
._22{margin-left:-1832.482432pt;}
._b8{margin-left:-1831.400704pt;}
._119{margin-left:-1825.472000pt;}
._a8{margin-left:-1821.465344pt;}
._94{margin-left:-1816.320000pt;}
._db{margin-left:-1807.237504pt;}
._123{margin-left:-1804.032000pt;}
._1c{margin-left:-1797.921024pt;}
._bb{margin-left:-1793.404800pt;}
._104{margin-left:-1789.934464pt;}
._14a{margin-left:-1777.472000pt;}
._130{margin-left:-1774.833152pt;}
._9f{margin-left:-1771.904000pt;}
._60{margin-left:-1756.096000pt;}
._49{margin-left:-1738.432000pt;}
._14e{margin-left:-1734.656000pt;}
._f8{margin-left:-1720.911104pt;}
._17d{margin-left:-1706.629120pt;}
._35{margin-left:-1690.688000pt;}
._129{margin-left:-1681.453056pt;}
._ee{margin-left:-1677.247744pt;}
._167{margin-left:-1670.848000pt;}
._91{margin-left:-1650.201600pt;}
._13d{margin-left:-1637.120000pt;}
._160{margin-left:-1633.382400pt;}
._168{margin-left:-1626.368000pt;}
._136{margin-left:-1621.068800pt;}
._127{margin-left:-1619.249152pt;}
._15c{margin-left:-1610.240000pt;}
._103{margin-left:-1606.656384pt;}
._179{margin-left:-1599.616000pt;}
._ae{margin-left:-1596.658944pt;}
._17c{margin-left:-1581.888000pt;}
._16b{margin-left:-1580.096000pt;}
._ba{margin-left:-1577.087744pt;}
._89{margin-left:-1569.216000pt;}
._162{margin-left:-1564.006400pt;}
._30{margin-left:-1561.912960pt;}
._138{margin-left:-1560.768000pt;}
._139{margin-left:-1546.240000pt;}
._8{margin-left:-1543.171968pt;}
._166{margin-left:-1528.550400pt;}
._a5{margin-left:-1523.644544pt;}
._e9{margin-left:-1511.769344pt;}
._110{margin-left:-1510.656000pt;}
._c7{margin-left:-1506.303744pt;}
._10a{margin-left:-1496.400384pt;}
._11d{margin-left:-1489.408000pt;}
._cc{margin-left:-1479.657344pt;}
._16f{margin-left:-1466.278400pt;}
._165{margin-left:-1446.758400pt;}
._25{margin-left:-1445.339648pt;}
._10f{margin-left:-1443.136000pt;}
._122{margin-left:-1439.680000pt;}
._13c{margin-left:-1428.992000pt;}
._12d{margin-left:-1414.016000pt;}
._180{margin-left:-1407.552000pt;}
._1f{margin-left:-1403.073920pt;}
._5{margin-left:-1392.193536pt;}
._150{margin-left:-1377.472000pt;}
._173{margin-left:-1375.744000pt;}
._140{margin-left:-1365.056000pt;}
._e0{margin-left:-1359.570944pt;}
._15e{margin-left:-1357.721600pt;}
._169{margin-left:-1350.848000pt;}
._164{margin-left:-1349.120000pt;}
._134{margin-left:-1347.264000pt;}
._15f{margin-left:-1343.654400pt;}
._124{margin-left:-1338.432000pt;}
._13b{margin-left:-1333.120000pt;}
._f6{margin-left:-1316.367744pt;}
._170{margin-left:-1310.016000pt;}
._133{margin-left:-1299.136000pt;}
._6f{margin-left:-1297.222400pt;}
._2f{margin-left:-1288.967936pt;}
._a0{margin-left:-1284.864000pt;}
._c1{margin-left:-1280.774144pt;}
._156{margin-left:-1270.080000pt;}
._132{margin-left:-1268.224000pt;}
._a9{margin-left:-1261.004544pt;}
._142{margin-left:-1251.200000pt;}
._175{margin-left:-1245.120000pt;}
._146{margin-left:-1240.640000pt;}
._64{margin-left:-1234.496000pt;}
._141{margin-left:-1233.536000pt;}
._14b{margin-left:-1228.224000pt;}
._a3{margin-left:-1226.444544pt;}
._15d{margin-left:-1210.432000pt;}
._111{margin-left:-1203.200000pt;}
._161{margin-left:-1199.718400pt;}
._135{margin-left:-1192.640000pt;}
._17e{margin-left:-1171.426560pt;}
._c3{margin-left:-1168.650240pt;}
._163{margin-left:-1164.134400pt;}
._5f{margin-left:-1159.680000pt;}
._11f{margin-left:-1153.600000pt;}
._13a{margin-left:-1146.368000pt;}
._f1{margin-left:-1142.607744pt;}
._145{margin-left:-1137.536000pt;}
._b3{margin-left:-1129.087744pt;}
._d7{margin-left:-1115.041792pt;}
._1d{margin-left:-1105.906048pt;}
._15{margin-left:-1090.455296pt;}
._6a{margin-left:-1084.160000pt;}
._144{margin-left:-1080.576000pt;}
._90{margin-left:-1069.056000pt;}
._8e{margin-left:-1063.936000pt;}
._b1{margin-left:-1060.671744pt;}
._96{margin-left:-1058.490240pt;}
._174{margin-left:-1051.456000pt;}
._13f{margin-left:-1041.536000pt;}
._147{margin-left:-1039.744000pt;}
._112{margin-left:-1020.096000pt;}
._74{margin-left:-990.616320pt;}
._a6{margin-left:-981.782144pt;}
._fe{margin-left:-977.215744pt;}
._ca{margin-left:-971.270144pt;}
._176{margin-left:-969.664000pt;}
._5b{margin-left:-965.013376pt;}
._37{margin-left:-949.120000pt;}
._b5{margin-left:-947.916544pt;}
._16e{margin-left:-943.641600pt;}
._7c{margin-left:-932.224000pt;}
._115{margin-left:-924.249600pt;}
._e6{margin-left:-918.735744pt;}
._114{margin-left:-917.120000pt;}
._7b{margin-left:-896.960000pt;}
._7a{margin-left:-895.382528pt;}
._24{margin-left:-884.232064pt;}
._88{margin-left:-877.120000pt;}
._101{margin-left:-840.799744pt;}
._6e{margin-left:-791.808000pt;}
._14c{margin-left:-776.716800pt;}
._16a{margin-left:-760.716800pt;}
._62{margin-left:-749.184000pt;}
._9e{margin-left:-735.446400pt;}
._68{margin-left:-721.472000pt;}
._181{margin-left:-716.160000pt;}
._81{margin-left:-714.432000pt;}
._13{margin-left:-711.504256pt;}
._32{margin-left:-709.036544pt;}
._bc{margin-left:-704.347904pt;}
._8b{margin-left:-697.600000pt;}
._10d{margin-left:-691.264000pt;}
._7{margin-left:-638.620160pt;}
._8c{margin-left:-626.496000pt;}
._6b{margin-left:-623.680000pt;}
._2c{margin-left:-616.574976pt;}
._10c{margin-left:-609.536000pt;}
._16d{margin-left:-581.120000pt;}
._69{margin-left:-561.536000pt;}
._177{margin-left:-546.560000pt;}
._107{margin-left:-524.518400pt;}
._61{margin-left:-519.808000pt;}
._4b{margin-left:-504.688000pt;}
._a1{margin-left:-480.406400pt;}
._27{margin-left:-478.636032pt;}
._19{margin-left:-474.293760pt;}
._f4{margin-left:-472.831744pt;}
._c5{margin-left:-470.073344pt;}
._11c{margin-left:-469.120000pt;}
._a{margin-left:-454.075008pt;}
._131{margin-left:-434.560000pt;}
._113{margin-left:-433.472000pt;}
._83{margin-left:-425.084800pt;}
._38{margin-left:-422.016000pt;}
._73{margin-left:-397.952000pt;}
._95{margin-left:-373.120000pt;}
._77{margin-left:-345.664000pt;}
._0{margin-left:-334.894592pt;}
._116{margin-left:-197.120000pt;}
._b{margin-left:-183.680000pt;}
._11{margin-left:-180.344320pt;}
._4a{margin-left:-177.280000pt;}
._9{margin-left:-149.120000pt;}
._39{margin-left:-146.560000pt;}
._eb{margin-left:-9.371264pt;}
._99{margin-left:-8.300800pt;}
._70{margin-left:-6.958080pt;}
._78{margin-left:-5.539840pt;}
._4d{margin-left:-4.454400pt;}
._55{margin-left:-3.129600pt;}
._5d{margin-left:-1.961600pt;}
._2{margin-left:-1.040000pt;}
._1{width:1.059840pt;}
._54{width:2.270720pt;}
._4c{width:3.488000pt;}
._4f{width:4.840320pt;}
._56{width:5.862400pt;}
._5e{width:7.200000pt;}
._57{width:8.195584pt;}
._58{width:9.088512pt;}
._51{width:10.760576pt;}
._52{width:11.665920pt;}
._6c{width:13.209600pt;}
._53{width:14.220800pt;}
._71{width:17.145600pt;}
._50{width:18.131200pt;}
._86{width:19.744000pt;}
._87{width:23.325568pt;}
._59{width:25.734400pt;}
._5a{width:27.507200pt;}
._92{width:28.864000pt;}
._6d{width:35.545600pt;}
._11e{width:128.000000pt;}
._12c{width:176.000000pt;}
._84{width:208.921600pt;}
._36{width:752.000000pt;}
.fs2{font-size:5.120000pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.573333pt;}
.y81{bottom:3.626667pt;}
.yfc{bottom:3.733333pt;}
.y8b{bottom:3.786667pt;}
.yf2{bottom:3.893333pt;}
.yc6{bottom:3.946667pt;}
.ye3{bottom:4.053333pt;}
.y102{bottom:4.106667pt;}
.yf9{bottom:4.160000pt;}
.y100{bottom:4.320000pt;}
.ya1{bottom:4.373333pt;}
.yf0{bottom:4.426667pt;}
.yf5{bottom:4.480000pt;}
.yed{bottom:4.533333pt;}
.y110{bottom:4.586667pt;}
.yab{bottom:4.640000pt;}
.y108{bottom:4.693333pt;}
.yb3{bottom:4.800000pt;}
.yfe{bottom:4.853333pt;}
.ycf{bottom:4.906667pt;}
.y82{bottom:4.960000pt;}
.ybc{bottom:5.013333pt;}
.yeb{bottom:5.066667pt;}
.ye8{bottom:5.173333pt;}
.y106{bottom:5.226667pt;}
.ye5{bottom:5.280000pt;}
.y7{bottom:5.493333pt;}
.y10d{bottom:10.346667pt;}
.yfb{bottom:22.293333pt;}
.y8a{bottom:22.346667pt;}
.yc5{bottom:22.506667pt;}
.ya0{bottom:22.613333pt;}
.yef{bottom:22.666667pt;}
.y112{bottom:22.720000pt;}
.yf7{bottom:22.933333pt;}
.yaa{bottom:23.200000pt;}
.ybb{bottom:23.253333pt;}
.yea{bottom:23.306667pt;}
.yb2{bottom:23.360000pt;}
.ye7{bottom:23.413333pt;}
.ycc{bottom:23.466667pt;}
.y7f{bottom:23.520000pt;}
.y89{bottom:40.586667pt;}
.yc4{bottom:40.746667pt;}
.y104{bottom:40.906667pt;}
.y9f{bottom:41.173333pt;}
.ya9{bottom:41.440000pt;}
.yb1{bottom:41.600000pt;}
.ycb{bottom:41.706667pt;}
.y7e{bottom:41.760000pt;}
.yba{bottom:41.813333pt;}
.y5{bottom:49.600000pt;}
.y88{bottom:59.146667pt;}
.y4{bottom:59.200000pt;}
.yc3{bottom:59.306667pt;}
.y9e{bottom:59.413333pt;}
.ya8{bottom:60.000000pt;}
.yb9{bottom:60.053333pt;}
.yb0{bottom:60.160000pt;}
.yca{bottom:60.266667pt;}
.y7d{bottom:60.320000pt;}
.y3{bottom:69.120000pt;}
.y87{bottom:77.386667pt;}
.yc2{bottom:77.546667pt;}
.y9d{bottom:77.973333pt;}
.ya7{bottom:78.240000pt;}
.yaf{bottom:78.400000pt;}
.yc9{bottom:78.506667pt;}
.yb8{bottom:78.613333pt;}
.y2{bottom:78.720000pt;}
.y86{bottom:95.946667pt;}
.yc1{bottom:96.106667pt;}
.y9c{bottom:96.213333pt;}
.ya6{bottom:96.800000pt;}
.yb7{bottom:96.853333pt;}
.yae{bottom:96.960000pt;}
.yc8{bottom:97.066667pt;}
.y107{bottom:98.666667pt;}
.y41{bottom:99.840000pt;}
.y75{bottom:102.400000pt;}
.y1f1{bottom:102.720000pt;}
.y1b7{bottom:106.560000pt;}
.y85{bottom:114.186667pt;}
.yc0{bottom:114.346667pt;}
.y9b{bottom:114.773333pt;}
.ya5{bottom:115.040000pt;}
.yad{bottom:115.200000pt;}
.yb6{bottom:115.413333pt;}
.y105{bottom:117.333333pt;}
.yde{bottom:117.440000pt;}
.y40{bottom:118.400000pt;}
.y5e{bottom:120.960000pt;}
.y1f0{bottom:121.280000pt;}
.y1e5{bottom:124.160000pt;}
.y186{bottom:125.760000pt;}
.y1b6{bottom:126.080000pt;}
.y169{bottom:129.600000pt;}
.y84{bottom:132.746667pt;}
.ybf{bottom:132.906667pt;}
.y9a{bottom:133.013333pt;}
.ya4{bottom:133.600000pt;}
.yb5{bottom:133.653333pt;}
.yac{bottom:133.760000pt;}
.y128{bottom:134.720000pt;}
.y3f{bottom:136.640000pt;}
.y103{bottom:137.333333pt;}
.y74{bottom:139.200000pt;}
.y77{bottom:139.520000pt;}
.y1e4{bottom:142.720000pt;}
.y8c{bottom:144.000000pt;}
.y185{bottom:145.280000pt;}
.y197{bottom:145.600000pt;}
.y168{bottom:149.120000pt;}
.ybe{bottom:151.146667pt;}
.y99{bottom:151.573333pt;}
.ya3{bottom:151.840000pt;}
.yd4{bottom:152.000000pt;}
.ydd{bottom:154.240000pt;}
.y3e{bottom:155.200000pt;}
.y5d{bottom:157.760000pt;}
.y76{bottom:158.080000pt;}
.y1e3{bottom:160.960000pt;}
.y1b5{bottom:161.600000pt;}
.y196{bottom:165.120000pt;}
.yd3{bottom:170.560000pt;}
.y127{bottom:171.520000pt;}
.y3d{bottom:173.440000pt;}
.y73{bottom:176.000000pt;}
.y1ef{bottom:176.320000pt;}
.y1e2{bottom:179.520000pt;}
.y184{bottom:180.800000pt;}
.y1b4{bottom:181.120000pt;}
.y167{bottom:184.640000pt;}
.yd2{bottom:188.800000pt;}
.y3c{bottom:191.040000pt;}
.y101{bottom:193.333333pt;}
.y5c{bottom:194.560000pt;}
.y1ee{bottom:194.880000pt;}
.y1e1{bottom:197.760000pt;}
.y183{bottom:200.320000pt;}
.y1b3{bottom:200.640000pt;}
.y59{bottom:203.840000pt;}
.y166{bottom:204.160000pt;}
.y3b{bottom:205.120000pt;}
.yd1{bottom:207.360000pt;}
.y126{bottom:208.320000pt;}
.yff{bottom:212.000000pt;}
.y72{bottom:212.800000pt;}
.y1ed{bottom:213.120000pt;}
.y1e0{bottom:216.320000pt;}
.y3a{bottom:217.920000pt;}
.y182{bottom:219.840000pt;}
.y195{bottom:220.160000pt;}
.y165{bottom:223.680000pt;}
.ydc{bottom:227.840000pt;}
.yfd{bottom:230.666667pt;}
.y39{bottom:230.720000pt;}
.y5b{bottom:231.360000pt;}
.y1ec{bottom:231.680000pt;}
.y1df{bottom:234.560000pt;}
.y1b2{bottom:236.160000pt;}
.y194{bottom:239.680000pt;}
.y58{bottom:240.320000pt;}
.y38{bottom:243.840000pt;}
.y125{bottom:245.120000pt;}
.y71{bottom:249.600000pt;}
.y1eb{bottom:249.920000pt;}
.yfa{bottom:250.666667pt;}
.y1de{bottom:253.120000pt;}
.y181{bottom:255.360000pt;}
.y1b1{bottom:255.680000pt;}
.y37{bottom:256.640000pt;}
.y164{bottom:259.200000pt;}
.ydb{bottom:264.640000pt;}
.y5a{bottom:268.160000pt;}
.y1ea{bottom:268.480000pt;}
.y36{bottom:269.440000pt;}
.y1dd{bottom:271.360000pt;}
.y57{bottom:272.000000pt;}
.y180{bottom:274.880000pt;}
.y163{bottom:278.720000pt;}
.y124{bottom:281.920000pt;}
.y35{bottom:282.240000pt;}
.y70{bottom:286.400000pt;}
.y1e9{bottom:286.720000pt;}
.yf8{bottom:288.000000pt;}
.y1dc{bottom:289.920000pt;}
.y1b0{bottom:291.200000pt;}
.ya2{bottom:292.000000pt;}
.y193{bottom:294.720000pt;}
.y34{bottom:295.040000pt;}
.y162{bottom:298.240000pt;}
.yda{bottom:301.440000pt;}
.y56{bottom:304.960000pt;}
.y1e8{bottom:305.280000pt;}
.yf6{bottom:306.666667pt;}
.y33{bottom:308.160000pt;}
.y17f{bottom:310.400000pt;}
.y1af{bottom:310.720000pt;}
.y192{bottom:314.240000pt;}
.y123{bottom:318.720000pt;}
.yd9{bottom:320.320000pt;}
.y32{bottom:320.960000pt;}
.y6f{bottom:323.200000pt;}
.y1e7{bottom:323.520000pt;}
.y1db{bottom:326.720000pt;}
.y17e{bottom:329.920000pt;}
.y1ae{bottom:330.240000pt;}
.y31{bottom:333.760000pt;}
.yd8{bottom:338.560000pt;}
.y55{bottom:341.760000pt;}
.y1e6{bottom:342.080000pt;}
.yf4{bottom:344.000000pt;}
.y1da{bottom:344.960000pt;}
.y30{bottom:346.560000pt;}
.y17d{bottom:349.440000pt;}
.y161{bottom:353.280000pt;}
.y122{bottom:355.520000pt;}
.yd7{bottom:357.120000pt;}
.y2f{bottom:359.680000pt;}
.y6e{bottom:360.000000pt;}
.y14a{bottom:360.320000pt;}
.yf3{bottom:362.666667pt;}
.y1d9{bottom:363.520000pt;}
.y1ad{bottom:365.760000pt;}
.y191{bottom:369.280000pt;}
.y2e{bottom:372.480000pt;}
.y160{bottom:372.800000pt;}
.yd6{bottom:375.360000pt;}
.y54{bottom:378.560000pt;}
.y149{bottom:378.880000pt;}
.y1d8{bottom:381.760000pt;}
.yf1{bottom:382.666667pt;}
.y2d{bottom:385.280000pt;}
.y1ac{bottom:385.600000pt;}
.y190{bottom:388.800000pt;}
.y121{bottom:392.320000pt;}
.yd5{bottom:393.920000pt;}
.y6d{bottom:396.800000pt;}
.y148{bottom:397.120000pt;}
.y2c{bottom:398.080000pt;}
.y1d7{bottom:400.320000pt;}
.yee{bottom:401.333333pt;}
.y17c{bottom:404.800000pt;}
.y1ab{bottom:405.120000pt;}
.yd0{bottom:408.000000pt;}
.y18f{bottom:408.320000pt;}
.y2b{bottom:411.200000pt;}
.y53{bottom:415.360000pt;}
.y147{bottom:415.680000pt;}
.y1d6{bottom:418.560000pt;}
.y2a{bottom:424.000000pt;}
.y17b{bottom:424.320000pt;}
.y15f{bottom:427.840000pt;}
.y120{bottom:429.120000pt;}
.y97{bottom:430.080000pt;}
.y6c{bottom:433.600000pt;}
.y146{bottom:433.920000pt;}
.y29{bottom:436.800000pt;}
.y1d5{bottom:437.120000pt;}
.yec{bottom:438.666667pt;}
.y1aa{bottom:440.640000pt;}
.y15e{bottom:447.360000pt;}
.y96{bottom:448.320000pt;}
.y28{bottom:449.600000pt;}
.y52{bottom:452.160000pt;}
.y145{bottom:452.480000pt;}
.y1d4{bottom:455.360000pt;}
.ye9{bottom:457.333333pt;}
.y98{bottom:458.666667pt;}
.y17a{bottom:459.840000pt;}
.y1a9{bottom:460.160000pt;}
.y27{bottom:462.400000pt;}
.y18e{bottom:463.360000pt;}
.y11f{bottom:465.920000pt;}
.y95{bottom:466.880000pt;}
.y6b{bottom:470.400000pt;}
.y144{bottom:470.720000pt;}
.y1d3{bottom:473.920000pt;}
.y26{bottom:475.520000pt;}
.y179{bottom:479.360000pt;}
.y1a8{bottom:479.680000pt;}
.y18d{bottom:482.880000pt;}
.y94{bottom:485.120000pt;}
.y25{bottom:488.320000pt;}
.y51{bottom:488.960000pt;}
.y143{bottom:489.280000pt;}
.y1d2{bottom:492.160000pt;}
.ye6{bottom:494.666667pt;}
.y178{bottom:498.880000pt;}
.y24{bottom:501.120000pt;}
.y15d{bottom:502.400000pt;}
.y11e{bottom:502.720000pt;}
.y93{bottom:503.680000pt;}
.y6a{bottom:507.200000pt;}
.y142{bottom:507.520000pt;}
.y1d1{bottom:510.720000pt;}
.y23{bottom:513.920000pt;}
.y1a7{bottom:515.200000pt;}
.y177{bottom:518.400000pt;}
.y92{bottom:521.920000pt;}
.y50{bottom:525.760000pt;}
.y141{bottom:526.080000pt;}
.y22{bottom:527.040000pt;}
.y1d0{bottom:528.960000pt;}
.ye4{bottom:532.000000pt;}
.y1a6{bottom:534.720000pt;}
.y18c{bottom:538.240000pt;}
.y11d{bottom:539.520000pt;}
.y21{bottom:539.840000pt;}
.y91{bottom:540.480000pt;}
.y69{bottom:544.000000pt;}
.y140{bottom:544.320000pt;}
.y1cf{bottom:547.520000pt;}
.y20{bottom:552.640000pt;}
.y176{bottom:553.920000pt;}
.y15c{bottom:557.440000pt;}
.y18b{bottom:557.760000pt;}
.y90{bottom:558.720000pt;}
.y4f{bottom:562.560000pt;}
.y13f{bottom:562.880000pt;}
.y1f{bottom:565.440000pt;}
.y1ce{bottom:565.760000pt;}
.y1a5{bottom:570.240000pt;}
.ye2{bottom:570.666667pt;}
.y175{bottom:573.440000pt;}
.y11c{bottom:576.320000pt;}
.y15b{bottom:576.960000pt;}
.y8f{bottom:577.280000pt;}
.y1e{bottom:578.560000pt;}
.y68{bottom:580.800000pt;}
.y13e{bottom:581.120000pt;}
.y1cd{bottom:584.320000pt;}
.y1a4{bottom:589.760000pt;}
.y1d{bottom:591.360000pt;}
.y174{bottom:592.960000pt;}
.y8e{bottom:595.520000pt;}
.y15a{bottom:596.480000pt;}
.y18a{bottom:596.800000pt;}
.y4e{bottom:599.360000pt;}
.y13d{bottom:599.680000pt;}
.y1cc{bottom:602.560000pt;}
.y1c{bottom:604.160000pt;}
.ye1{bottom:606.720000pt;}
.y11b{bottom:612.800000pt;}
.y8d{bottom:614.080000pt;}
.y1b{bottom:616.960000pt;}
.y67{bottom:617.600000pt;}
.y13c{bottom:617.920000pt;}
.y1cb{bottom:621.120000pt;}
.ye0{bottom:621.440000pt;}
.y1a3{bottom:625.280000pt;}
.y83{bottom:625.333333pt;}
.y173{bottom:628.800000pt;}
.yc7{bottom:629.333333pt;}
.y1a{bottom:630.080000pt;}
.ycd{bottom:630.666667pt;}
.y159{bottom:632.000000pt;}
.y189{bottom:632.320000pt;}
.y4d{bottom:636.160000pt;}
.ydf{bottom:636.480000pt;}
.y1ca{bottom:639.360000pt;}
.y19{bottom:643.200000pt;}
.y1a2{bottom:644.800000pt;}
.y172{bottom:648.320000pt;}
.y11a{bottom:649.600000pt;}
.y158{bottom:651.840000pt;}
.y66{bottom:654.400000pt;}
.y13b{bottom:654.720000pt;}
.y18{bottom:657.600000pt;}
.y1c9{bottom:657.920000pt;}
.y1a1{bottom:664.320000pt;}
.y171{bottom:667.840000pt;}
.y4c{bottom:672.960000pt;}
.y13a{bottom:673.280000pt;}
.y17{bottom:673.600000pt;}
.y1c8{bottom:676.160000pt;}
.y1a0{bottom:683.840000pt;}
.y119{bottom:686.400000pt;}
.y157{bottom:687.360000pt;}
.y65{bottom:691.200000pt;}
.y139{bottom:691.520000pt;}
.y1c7{bottom:694.720000pt;}
.y16{bottom:695.040000pt;}
.y170{bottom:703.360000pt;}
.y156{bottom:706.880000pt;}
.y4b{bottom:709.760000pt;}
.y138{bottom:710.080000pt;}
.y1c6{bottom:712.960000pt;}
.y15{bottom:716.480000pt;}
.y19f{bottom:719.360000pt;}
.y16f{bottom:722.880000pt;}
.y118{bottom:723.200000pt;}
.y64{bottom:728.000000pt;}
.y137{bottom:728.320000pt;}
.y1c5{bottom:731.520000pt;}
.y14{bottom:737.920000pt;}
.y19e{bottom:738.880000pt;}
.ybd{bottom:741.333333pt;}
.y155{bottom:742.400000pt;}
.y4a{bottom:746.560000pt;}
.y136{bottom:746.880000pt;}
.y1c4{bottom:749.760000pt;}
.y19d{bottom:758.400000pt;}
.y13{bottom:759.360000pt;}
.y117{bottom:760.000000pt;}
.y154{bottom:761.920000pt;}
.y63{bottom:764.800000pt;}
.y135{bottom:765.120000pt;}
.y1c3{bottom:768.320000pt;}
.y7c{bottom:772.000000pt;}
.y80{bottom:773.333333pt;}
.y16e{bottom:777.920000pt;}
.y12{bottom:781.120000pt;}
.y188{bottom:781.440000pt;}
.y49{bottom:783.360000pt;}
.y134{bottom:783.680000pt;}
.y1c2{bottom:786.560000pt;}
.y116{bottom:796.800000pt;}
.y153{bottom:797.440000pt;}
.y62{bottom:801.600000pt;}
.y133{bottom:801.920000pt;}
.y11{bottom:802.560000pt;}
.y1c1{bottom:805.120000pt;}
.y19c{bottom:813.440000pt;}
.y152{bottom:816.960000pt;}
.y48{bottom:820.160000pt;}
.y132{bottom:820.480000pt;}
.y1c0{bottom:823.360000pt;}
.y10{bottom:824.000000pt;}
.y19b{bottom:832.960000pt;}
.y115{bottom:833.600000pt;}
.y151{bottom:836.480000pt;}
.y61{bottom:838.400000pt;}
.y131{bottom:838.720000pt;}
.y1bf{bottom:841.920000pt;}
.yf{bottom:845.440000pt;}
.y16d{bottom:852.480000pt;}
.y187{bottom:856.000000pt;}
.y47{bottom:856.960000pt;}
.y130{bottom:857.280000pt;}
.y1be{bottom:860.160000pt;}
.y7b{bottom:864.320000pt;}
.ye{bottom:866.880000pt;}
.y114{bottom:870.400000pt;}
.y150{bottom:872.000000pt;}
.y60{bottom:875.200000pt;}
.y12f{bottom:875.520000pt;}
.y1bd{bottom:878.720000pt;}
.y7a{bottom:879.040000pt;}
.y19a{bottom:888.000000pt;}
.yd{bottom:888.320000pt;}
.y113{bottom:889.280000pt;}
.y14f{bottom:891.520000pt;}
.y46{bottom:893.760000pt;}
.y5f{bottom:894.080000pt;}
.y1bc{bottom:897.600000pt;}
.y111{bottom:904.000000pt;}
.yb4{bottom:906.666667pt;}
.y199{bottom:907.520000pt;}
.yc{bottom:910.720000pt;}
.y14e{bottom:911.040000pt;}
.y12e{bottom:912.320000pt;}
.y1bb{bottom:918.080000pt;}
.y16c{bottom:927.040000pt;}
.y45{bottom:930.240000pt;}
.y12d{bottom:930.560000pt;}
.y1ba{bottom:934.720000pt;}
.yb{bottom:939.840000pt;}
.y10f{bottom:941.333333pt;}
.y14d{bottom:946.560000pt;}
.y12c{bottom:949.120000pt;}
.y1b9{bottom:951.680000pt;}
.y10e{bottom:960.000000pt;}
.y14c{bottom:966.080000pt;}
.y44{bottom:967.040000pt;}
.y12b{bottom:967.360000pt;}
.y1b8{bottom:968.640000pt;}
.ya{bottom:973.440000pt;}
.y198{bottom:982.080000pt;}
.y14b{bottom:985.600000pt;}
.y12a{bottom:985.920000pt;}
.y10c{bottom:997.333333pt;}
.y10b{bottom:998.666667pt;}
.y16b{bottom:1001.600000pt;}
.y43{bottom:1003.840000pt;}
.y129{bottom:1004.160000pt;}
.y9{bottom:1007.040000pt;}
.y10a{bottom:1017.333333pt;}
.y16a{bottom:1021.120000pt;}
.y79{bottom:1022.720000pt;}
.y109{bottom:1036.000000pt;}
.y8{bottom:1038.400000pt;}
.y42{bottom:1040.640000pt;}
.y78{bottom:1040.960000pt;}
.y6{bottom:1054.666667pt;}
.y1{bottom:1060.480000pt;}
.h18{height:18.666667pt;}
.h1a{height:20.000000pt;}
.h5{height:21.333333pt;}
.h4{height:21.765625pt;}
.h3{height:23.234375pt;}
.h1d{height:28.545000pt;}
.h1b{height:37.333333pt;}
.h19{height:38.666667pt;}
.h2{height:43.093750pt;}
.hc{height:43.375000pt;}
.hd{height:44.437500pt;}
.hb{height:44.468750pt;}
.h1e{height:46.500625pt;}
.h1f{height:49.481250pt;}
.he{height:50.305000pt;}
.h8{height:50.315000pt;}
.h9{height:51.583750pt;}
.h1c{height:56.000000pt;}
.ha{height:60.676250pt;}
.h7{height:63.984375pt;}
.h10{height:74.666667pt;}
.hf{height:76.000000pt;}
.h6{height:79.752500pt;}
.h16{height:110.666667pt;}
.h15{height:112.000000pt;}
.h11{height:148.000000pt;}
.h14{height:149.333333pt;}
.h13{height:166.666667pt;}
.h17{height:222.666667pt;}
.h12{height:629.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w6{width:18.666667pt;}
.w7{width:66.666667pt;}
.w4{width:181.333333pt;}
.w5{width:202.666667pt;}
.w9{width:244.000000pt;}
.w3{width:256.000000pt;}
.w8{width:330.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xd{left:6.613269pt;}
.x6{left:7.680032pt;}
.xf{left:31.680032pt;}
.x10{left:51.680032pt;}
.x8{left:79.717653pt;}
.x11{left:90.613269pt;}
.x1{left:96.000000pt;}
.x4{left:120.000000pt;}
.x13{left:121.599936pt;}
.x5{left:144.000000pt;}
.xa{left:150.772373pt;}
.x1b{left:152.733408pt;}
.x12{left:157.472640pt;}
.x19{left:161.466464pt;}
.xc{left:162.666667pt;}
.x14{left:168.000000pt;}
.x15{left:192.000000pt;}
.x1a{left:196.000000pt;}
.x18{left:210.664064pt;}
.x17{left:215.109376pt;}
.x1c{left:216.000000pt;}
.x16{left:219.554688pt;}
.x7{left:350.666667pt;}
.xe{left:492.000000pt;}
.x9{left:530.666667pt;}
.xb{left:680.000000pt;}
.x2{left:689.333333pt;}
.x3{left:697.733440pt;}
}




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