
    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_a38ae68e8f545bbf2db08392.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4b6ae6da1f3fd8b926fac636.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_bf5480732507f1d97fbd1a93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_cbb72918932051fee61c3444.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698242;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_6b76c0d517a91387d7ecc9e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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_60718c81a40abeec076699ac.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_665a41b7e10ae93a4c8ca6a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_ff92b93aeaf74ceb3d5d7e21.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f89c22c4e3c539978f997b3f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.890000;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_0f4025fda37a8155fe9083be.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962000;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_09d85dbae166de09a0fb6ef8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.089355;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;}
.me{transform:matrix(0.000000,-0.249947,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249947,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249947,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.236504,0.000000,-0.080889,0.236552,0,0);-ms-transform:matrix(0.236504,0.000000,-0.080889,0.236552,0,0);-webkit-transform:matrix(0.236504,0.000000,-0.080889,0.236552,0,0);}
.ma{transform:matrix(0.236506,0.000000,-0.080884,0.236554,0,0);-ms-transform:matrix(0.236506,0.000000,-0.080884,0.236554,0,0);-webkit-transform:matrix(0.236506,0.000000,-0.080884,0.236554,0,0);}
.m3{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-54.719978px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.003600px;}
.lsb{letter-spacing:0.003604px;}
.ls7{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.007201px;}
.ls13{letter-spacing:0.007209px;}
.ls17{letter-spacing:0.111240px;}
.ls15{letter-spacing:0.112980px;}
.ls5{letter-spacing:0.115860px;}
.lsa{letter-spacing:0.131220px;}
.ls1a{letter-spacing:0.133080px;}
.ls8{letter-spacing:0.158280px;}
.ls6{letter-spacing:0.183560px;}
.ls3{letter-spacing:0.183648px;}
.ls4{letter-spacing:0.183660px;}
.ls1e{letter-spacing:0.222480px;}
.ls1f{letter-spacing:0.280620px;}
.ls2{letter-spacing:0.296065px;}
.ls14{letter-spacing:0.309360px;}
.ls19{letter-spacing:0.365820px;}
.ls18{letter-spacing:0.365835px;}
.ls16{letter-spacing:0.365878px;}
.ls23{letter-spacing:0.367260px;}
.lsc{letter-spacing:0.509220px;}
.ls1c{letter-spacing:0.833160px;}
.lsf{letter-spacing:0.836040px;}
.ls22{letter-spacing:1.087440px;}
.ls11{letter-spacing:1.802519px;}
.ls9{letter-spacing:2.884199px;}
.ls1b{letter-spacing:6.484977px;}
.ls12{letter-spacing:34.571086px;}
.ls10{letter-spacing:85.702157px;}
.lsd{letter-spacing:699.680394px;}
.ls1d{letter-spacing:803.049579px;}
.lse{letter-spacing:978.378072px;}
.ls20{letter-spacing:1123.390951px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-65.454454px;}
.ws4{word-spacing:-55.943978px;}
.ws7{word-spacing:-51.468459px;}
.ws5{word-spacing:-46.433501px;}
.ws9{word-spacing:-41.957983px;}
.ws2{word-spacing:-21.059992px;}
.wsd{word-spacing:-18.622633px;}
.ws11{word-spacing:-18.547636px;}
.ws1a{word-spacing:-18.173693px;}
.ws18{word-spacing:-18.024593px;}
.ws3{word-spacing:-17.999993px;}
.wsb{word-spacing:-17.621093px;}
.wse{word-spacing:-17.549993px;}
.ws15{word-spacing:-16.567202px;}
.ws8{word-spacing:-16.559993px;}
.ws1b{word-spacing:-15.144594px;}
.ws19{word-spacing:-15.020094px;}
.ws6{word-spacing:-14.939994px;}
.wsc{word-spacing:-14.684034px;}
.ws16{word-spacing:-13.865873px;}
.ws17{word-spacing:-13.865829px;}
.wsa{word-spacing:-13.499995px;}
.ws12{word-spacing:-10.278356px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:722.361107px;}
.wsf{word-spacing:778.621609px;}
.ws14{word-spacing:908.158833px;}
.ws13{word-spacing:964.411534px;}
._a3{margin-left:-808.327366px;}
._a2{margin-left:-758.087071px;}
._b5{margin-left:-756.740189px;}
._b3{margin-left:-705.803980px;}
._4b{margin-left:-665.681734px;}
._23{margin-left:-528.693252px;}
._22{margin-left:-512.361695px;}
._36{margin-left:-505.151472px;}
._33{margin-left:-488.530845px;}
._31{margin-left:-479.884608px;}
._b4{margin-left:-466.522105px;}
._42{margin-left:-458.280417px;}
._34{margin-left:-454.168795px;}
._b2{margin-left:-431.197018px;}
._2c{margin-left:-398.059477px;}
._49{margin-left:-388.963847px;}
._28{margin-left:-387.394045px;}
._46{margin-left:-385.856014px;}
._35{margin-left:-383.793446px;}
._2a{margin-left:-382.205983px;}
._39{margin-left:-357.543665px;}
._44{margin-left:-355.276563px;}
._51{margin-left:-349.387276px;}
._37{margin-left:-343.006527px;}
._9f{margin-left:-336.878605px;}
._48{margin-left:-333.949883px;}
._45{margin-left:-323.300871px;}
._47{margin-left:-317.081138px;}
._ae{margin-left:-312.566847px;}
._4d{margin-left:-302.416679px;}
._4e{margin-left:-298.469554px;}
._a0{margin-left:-296.995124px;}
._3a{margin-left:-282.756029px;}
._54{margin-left:-264.150863px;}
._4c{margin-left:-262.379200px;}
._3d{margin-left:-253.073025px;}
._55{margin-left:-251.511859px;}
._50{margin-left:-235.008757px;}
._ac{margin-left:-231.335607px;}
._3e{margin-left:-228.468869px;}
._53{margin-left:-225.299215px;}
._4f{margin-left:-224.182575px;}
._af{margin-left:-213.426423px;}
._99{margin-left:-211.966535px;}
._26{margin-left:-207.163370px;}
._95{margin-left:-205.982318px;}
._3c{margin-left:-202.256224px;}
._2e{margin-left:-184.955926px;}
._32{margin-left:-167.405933px;}
._29{margin-left:-166.161669px;}
._43{margin-left:-163.235587px;}
._25{margin-left:-158.680641px;}
._2b{margin-left:-153.919274px;}
._38{margin-left:-150.162540px;}
._9e{margin-left:-134.507119px;}
._96{margin-left:-131.310315px;}
._ad{margin-left:-127.765869px;}
._97{margin-left:-126.151150px;}
._9a{margin-left:-119.669832px;}
._3f{margin-left:-110.787076px;}
._2f{margin-left:-108.554957px;}
._9b{margin-left:-106.238036px;}
._24{margin-left:-102.821839px;}
._b1{margin-left:-101.072367px;}
._a1{margin-left:-95.033084px;}
._9d{margin-left:-84.769855px;}
._98{margin-left:-54.945197px;}
._27{margin-left:-52.335307px;}
._b0{margin-left:-47.873966px;}
._9c{margin-left:-44.545393px;}
._3b{margin-left:-38.793352px;}
._0{margin-left:-1.313037px;}
._1{width:1.038805px;}
._2{width:2.676606px;}
._7{width:3.690360px;}
._5{width:5.592598px;}
._3{width:7.413559px;}
._4{width:8.572239px;}
._12{width:9.607931px;}
._16{width:11.094635px;}
._15{width:12.169524px;}
._20{width:13.860441px;}
._18{width:15.174175px;}
._58{width:17.578541px;}
._f{width:18.679243px;}
._6{width:19.833837px;}
._8{width:21.694696px;}
._c{width:22.782488px;}
._b{width:24.523652px;}
._a{width:25.564118px;}
._5a{width:26.681845px;}
._40{width:27.906181px;}
._13{width:29.495611px;}
._14{width:30.632899px;}
._17{width:32.130104px;}
._11{width:33.847579px;}
._10{width:35.566315px;}
._56{width:37.241843px;}
._2d{width:38.892072px;}
._b9{width:39.902342px;}
._41{width:41.207404px;}
._b7{width:42.245285px;}
._1f{width:43.336045px;}
._e{width:44.618264px;}
._d{width:45.911292px;}
._59{width:47.013360px;}
._19{width:48.142674px;}
._1a{width:49.186016px;}
._ba{width:50.352125px;}
._5c{width:51.428813px;}
._5d{width:52.683141px;}
._1e{width:53.971385px;}
._1d{width:55.470966px;}
._5b{width:57.725617px;}
._b6{width:59.761613px;}
._1c{width:61.572397px;}
._1b{width:62.858116px;}
._ab{width:64.202732px;}
._aa{width:65.239466px;}
._a4{width:66.977887px;}
._57{width:68.068037px;}
._6a{width:69.701876px;}
._6b{width:71.192414px;}
._a5{width:73.444580px;}
._68{width:83.025316px;}
._9{width:85.701940px;}
._a7{width:91.034683px;}
._b8{width:92.510469px;}
._21{width:93.624241px;}
._79{width:110.390950px;}
._85{width:111.684855px;}
._77{width:113.415182px;}
._52{width:125.310795px;}
._30{width:177.162121px;}
._83{width:184.939691px;}
._4a{width:188.684565px;}
._7c{width:193.389952px;}
._6e{width:197.711030px;}
._66{width:205.617493px;}
._64{width:212.305260px;}
._81{width:216.674301px;}
._5f{width:223.707191px;}
._92{width:232.817907px;}
._90{width:235.841906px;}
._67{width:237.983816px;}
._6c{width:239.928494px;}
._60{width:244.605265px;}
._7e{width:251.073300px;}
._76{width:260.349171px;}
._84{width:265.349925px;}
._73{width:271.405936px;}
._6f{width:278.438825px;}
._69{width:280.623275px;}
._78{width:292.715494px;}
._70{width:299.336944px;}
._82{width:301.629509px;}
._80{width:313.617593px;}
._a9{width:316.751509px;}
._a8{width:327.686846px;}
._63{width:328.995078px;}
._7a{width:335.354953px;}
._62{width:340.983162px;}
._a6{width:342.555191px;}
._5e{width:349.635604px;}
._65{width:352.971407px;}
._74{width:356.361188px;}
._61{width:361.512118px;}
._72{width:368.349271px;}
._7d{width:377.001173px;}
._75{width:380.336977px;}
._8f{width:382.775847px;}
._7f{width:388.877687px;}
._8c{width:393.833037px;}
._88{width:400.865840px;}
._6d{width:404.366742px;}
._7b{width:410.306756px;}
._91{width:415.141437px;}
._71{width:416.243796px;}
._89{width:445.739822px;}
._93{width:457.781817px;}
._8d{width:478.787808px;}
._87{width:484.332116px;}
._8b{width:490.775804px;}
._8e{width:502.763799px;}
._86{width:526.793789px;}
._94{width:528.251789px;}
._8a{width:538.671325px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.999986px;}
.fs12{font-size:38.879984px;}
.fs11{font-size:41.113424px;}
.fs9{font-size:41.759983px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:53.999978px;}
.fsd{font-size:58.736137px;}
.fs7{font-size:59.759976px;}
.fs3{font-size:60.000000px;}
.fs14{font-size:60.080376px;}
.fs16{font-size:60.578376px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.239974px;}
.fsf{font-size:70.199972px;}
.fsc{font-size:70.484372px;}
.fs5{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs13{font-size:72.098371px;}
.fs15{font-size:72.694771px;}
.fs10{font-size:74.190545px;}
.fse{font-size:74.490534px;}
.fs6{font-size:84.239966px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1d0{bottom:2.880080px;}
.y172{bottom:2.880146px;}
.y19c{bottom:2.880148px;}
.y175{bottom:2.880152px;}
.y125{bottom:2.880155px;}
.y129{bottom:3.060167px;}
.y14b{bottom:3.239945px;}
.y154{bottom:3.239950px;}
.y14e{bottom:3.239952px;}
.y157{bottom:3.239957px;}
.y151{bottom:3.239959px;}
.y15a{bottom:3.239964px;}
.y1a1{bottom:3.240167px;}
.y12d{bottom:3.240174px;}
.y130{bottom:3.240181px;}
.y133{bottom:3.240188px;}
.y1e2{bottom:3.240194px;}
.y136{bottom:3.240195px;}
.y139{bottom:3.240202px;}
.y13c{bottom:3.240209px;}
.y13f{bottom:3.240217px;}
.y142{bottom:3.240224px;}
.y145{bottom:3.240231px;}
.y148{bottom:3.240238px;}
.yb0{bottom:3.780143px;}
.y20e{bottom:3.959967px;}
.y5{bottom:66.525004px;}
.y90{bottom:92.221163px;}
.y3b{bottom:93.121163px;}
.y208{bottom:96.181462px;}
.y4{bottom:97.125005px;}
.y64{bottom:97.261461px;}
.y1bb{bottom:97.801200px;}
.y150{bottom:98.701200px;}
.yef{bottom:99.241460px;}
.y1ba{bottom:101.041160px;}
.y180{bottom:101.581159px;}
.y14f{bottom:101.941159px;}
.y8f{bottom:107.701157px;}
.yc1{bottom:108.241157px;}
.y3a{bottom:113.461155px;}
.y8e{bottom:113.641155px;}
.y113{bottom:114.541454px;}
.yc0{bottom:115.081154px;}
.y207{bottom:115.261454px;}
.y1b9{bottom:115.441200px;}
.y63{bottom:116.161454px;}
.y14d{bottom:116.521200px;}
.yee{bottom:118.321453px;}
.y1b8{bottom:118.681153px;}
.y17f{bottom:119.581152px;}
.y14c{bottom:119.761152px;}
.y8d{bottom:124.441150px;}
.ybf{bottom:126.241150px;}
.y23a{bottom:129.481448px;}
.y39{bottom:131.101448px;}
.y1b7{bottom:133.261200px;}
.y112{bottom:133.621447px;}
.y206{bottom:134.161446px;}
.y14a{bottom:134.341200px;}
.y62{bottom:135.061446px;}
.y1b6{bottom:136.501145px;}
.yed{bottom:137.221445px;}
.y17e{bottom:137.401145px;}
.y149{bottom:137.581145px;}
.y20{bottom:139.264499px;}
.y239{bottom:148.921440px;}
.y1b5{bottom:151.081200px;}
.y38{bottom:151.801439px;}
.y147{bottom:151.981200px;}
.y111{bottom:152.521439px;}
.y205{bottom:153.061439px;}
.y1b4{bottom:154.321438px;}
.y146{bottom:155.221438px;}
.yec{bottom:156.121438px;}
.y238{bottom:168.361433px;}
.y1b3{bottom:168.901200px;}
.y8c{bottom:168.901432px;}
.y144{bottom:169.801200px;}
.y110{bottom:171.421431px;}
.y1b2{bottom:172.141431px;}
.y37{bottom:172.501431px;}
.y143{bottom:173.041431px;}
.y61{bottom:174.661430px;}
.yeb{bottom:175.201430px;}
.y1b1{bottom:186.541200px;}
.y141{bottom:187.621200px;}
.y8b{bottom:187.801425px;}
.y237{bottom:187.981425px;}
.y1b0{bottom:189.781424px;}
.ybe{bottom:190.501424px;}
.y140{bottom:190.861424px;}
.y204{bottom:191.041424px;}
.y36{bottom:193.201423px;}
.yea{bottom:194.101422px;}
.y17{bottom:196.933500px;}
.y1af{bottom:204.361200px;}
.y13e{bottom:205.441200px;}
.y8a{bottom:206.881417px;}
.y236{bottom:207.421417px;}
.y1ae{bottom:207.601417px;}
.y13d{bottom:208.681417px;}
.ybd{bottom:209.401416px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y203{bottom:210.121416px;}
.ye9{bottom:213.181415px;}
.y35{bottom:213.901414px;}
.y22b{bottom:214.621414px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1ad{bottom:222.181200px;}
.y13b{bottom:223.081200px;}
.y1ac{bottom:225.421410px;}
.y89{bottom:225.781410px;}
.y13a{bottom:226.321409px;}
.y17d{bottom:226.681409px;}
.y235{bottom:226.861409px;}
.y1e4{bottom:227.761409px;}
.ybc{bottom:228.481409px;}
.y202{bottom:229.021408px;}
.ye8{bottom:232.081407px;}
.y22a{bottom:233.701407px;}
.y34{bottom:234.601406px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y60{bottom:239.101404px;}
.y1ab{bottom:240.001200px;}
.y138{bottom:240.901200px;}
.y1aa{bottom:243.241403px;}
.y137{bottom:244.141402px;}
.y17c{bottom:244.501402px;}
.y88{bottom:244.681402px;}
.y234{bottom:246.481401px;}
.ybb{bottom:247.381401px;}
.y201{bottom:247.921401px;}
.ye7{bottom:250.981400px;}
.y229{bottom:252.601399px;}
.y33{bottom:255.301398px;}
.y5f{bottom:256.381397px;}
.y1a9{bottom:257.641200px;}
.y135{bottom:258.721200px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1a8{bottom:260.881396px;}
.y1e1{bottom:261.961200px;}
.y134{bottom:261.961395px;}
.y17b{bottom:262.321395px;}
.y87{bottom:263.761394px;}
.y1e0{bottom:265.201394px;}
.y233{bottom:265.921394px;}
.y1e3{bottom:266.101394px;}
.y10f{bottom:266.281393px;}
.yba{bottom:266.461393px;}
.y200{bottom:267.001393px;}
.ye6{bottom:271.321391px;}
.y228{bottom:271.501391px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y5e{bottom:273.661391px;}
.y1a7{bottom:275.461200px;}
.y32{bottom:276.001390px;}
.y132{bottom:276.541200px;}
.y1a6{bottom:278.701389px;}
.y131{bottom:279.781388px;}
.y17a{bottom:280.141388px;}
.y86{bottom:282.661387px;}
.y1df{bottom:283.201387px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yb9{bottom:285.361386px;}
.y1ff{bottom:285.901386px;}
.ye5{bottom:290.221384px;}
.y227{bottom:290.581384px;}
.y5d{bottom:290.941384px;}
.yb7{bottom:291.301383px;}
.y1a5{bottom:293.281200px;}
.y12f{bottom:294.181200px;}
.yb8{bottom:295.621382px;}
.y1a4{bottom:296.521381px;}
.y31{bottom:296.701381px;}
.y12e{bottom:297.421381px;}
.y179{bottom:297.961381px;}
.y1de{bottom:301.021380px;}
.y85{bottom:301.741379px;}
.y10e{bottom:304.261378px;}
.y1fe{bottom:304.981378px;}
.y5c{bottom:308.221377px;}
.ye4{bottom:309.301376px;}
.y226{bottom:309.481376px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1a3{bottom:311.101200px;}
.y12c{bottom:312.001200px;}
.y1a2{bottom:314.341374px;}
.y12b{bottom:315.241374px;}
.y178{bottom:315.781374px;}
.yb6{bottom:316.861373px;}
.y30{bottom:317.401373px;}
.y1dd{bottom:318.841372px;}
.y84{bottom:320.641372px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y10d{bottom:323.341371px;}
.y1fd{bottom:323.881370px;}
.y232{bottom:324.421370px;}
.y5b{bottom:325.321370px;}
.ye3{bottom:328.201369px;}
.y225{bottom:328.561369px;}
.y1a0{bottom:328.741200px;}
.y128{bottom:328.921200px;}
.y127{bottom:331.981367px;}
.y177{bottom:333.781366px;}
.yb5{bottom:335.941366px;}
.y1dc{bottom:336.661365px;}
.y2f{bottom:338.101365px;}
.y12a{bottom:338.641365px;}
.y83{bottom:339.721364px;}
.yb4{bottom:341.881363px;}
.y10c{bottom:342.241363px;}
.y5a{bottom:342.601363px;}
.y1fc{bottom:342.961363px;}
.y231{bottom:343.861362px;}
.yb3{bottom:346.201362px;}
.ye2{bottom:347.101361px;}
.y126{bottom:347.461361px;}
.ye{bottom:348.133500px;}
.y19e{bottom:349.441360px;}
.y176{bottom:351.601359px;}
.y1db{bottom:354.481358px;}
.y19f{bottom:357.901357px;}
.y82{bottom:358.621357px;}
.y59{bottom:359.881356px;}
.y124{bottom:360.061200px;}
.y10b{bottom:361.141356px;}
.y1fb{bottom:361.861355px;}
.y123{bottom:362.941355px;}
.y230{bottom:363.481355px;}
.y19d{bottom:364.921354px;}
.y174{bottom:366.181200px;}
.ye1{bottom:366.181354px;}
.y224{bottom:366.361353px;}
.yb2{bottom:367.261353px;}
.y2e{bottom:367.801353px;}
.y173{bottom:369.061352px;}
.y1da{bottom:372.301351px;}
.y58{bottom:377.161349px;}
.y81{bottom:377.521349px;}
.y19b{bottom:377.701200px;}
.y122{bottom:380.041348px;}
.y10a{bottom:380.221348px;}
.y19a{bottom:380.581348px;}
.y1fa{bottom:380.761348px;}
.y171{bottom:381.661200px;}
.y22f{bottom:382.921347px;}
.y170{bottom:384.541346px;}
.y223{bottom:385.441346px;}
.yb1{bottom:386.161346px;}
.yd{bottom:386.785499px;}
.yaf{bottom:389.761200px;}
.y1d9{bottom:390.301344px;}
.yae{bottom:393.541343px;}
.y57{bottom:394.441342px;}
.y80{bottom:396.601341px;}
.y121{bottom:397.321341px;}
.y2d{bottom:397.501341px;}
.y109{bottom:399.121340px;}
.y1f9{bottom:399.841340px;}
.y199{bottom:400.921340px;}
.y16f{bottom:402.001339px;}
.y22e{bottom:402.361339px;}
.y222{bottom:404.341338px;}
.ye0{bottom:405.781338px;}
.yc{bottom:408.044999px;}
.y1d8{bottom:408.121337px;}
.y56{bottom:411.721335px;}
.yad{bottom:413.341335px;}
.y120{bottom:414.601334px;}
.y7f{bottom:415.501334px;}
.y108{bottom:418.201333px;}
.y1f8{bottom:418.741333px;}
.y16e{bottom:420.541332px;}
.y22d{bottom:421.981331px;}
.y221{bottom:423.421331px;}
.y1d7{bottom:425.941330px;}
.y2c{bottom:427.201329px;}
.y55{bottom:428.821328px;}
.y11f{bottom:432.061327px;}
.yac{bottom:432.241327px;}
.y7d{bottom:434.581326px;}
.y198{bottom:435.661326px;}
.y107{bottom:437.101325px;}
.y1f7{bottom:437.821325px;}
.y16d{bottom:440.161324px;}
.y7e{bottom:442.141323px;}
.y220{bottom:442.321323px;}
.y1d6{bottom:443.761322px;}
.y54{bottom:446.101322px;}
.y11e{bottom:451.141320px;}
.yaa{bottom:451.321319px;}
.y7c{bottom:453.481319px;}
.y197{bottom:454.741318px;}
.y106{bottom:456.181318px;}
.y1f6{bottom:456.721317px;}
.y2b{bottom:456.901317px;}
.yab{bottom:458.881316px;}
.y16c{bottom:459.241316px;}
.y21f{bottom:461.221316px;}
.y1d5{bottom:461.581315px;}
.y22c{bottom:462.301315px;}
.y53{bottom:463.381315px;}
.y11d{bottom:470.041312px;}
.ya9{bottom:470.221312px;}
.ydf{bottom:470.581312px;}
.y7b{bottom:472.381311px;}
.y196{bottom:473.641311px;}
.y105{bottom:475.081310px;}
.y1f5{bottom:475.621310px;}
.ydd{bottom:476.521309px;}
.y16b{bottom:478.141309px;}
.y1d4{bottom:479.401308px;}
.y52{bottom:480.301308px;}
.yde{bottom:480.841308px;}
.y2a{bottom:486.601305px;}
.y11c{bottom:488.941304px;}
.ya8{bottom:489.121304px;}
.y7a{bottom:491.461303px;}
.y195{bottom:492.541303px;}
.y104{bottom:493.981302px;}
.y1f4{bottom:494.701302px;}
.y16a{bottom:497.041301px;}
.y1d3{bottom:497.401301px;}
.y51{bottom:497.941301px;}
.y21e{bottom:499.201300px;}
.ydc{bottom:502.081299px;}
.y29{bottom:507.661297px;}
.yda{bottom:508.021297px;}
.ya7{bottom:508.201297px;}
.y79{bottom:510.361296px;}
.y194{bottom:511.621295px;}
.ydb{bottom:512.341295px;}
.y103{bottom:513.061295px;}
.y1f3{bottom:513.601295px;}
.y1d2{bottom:515.221294px;}
.y50{bottom:515.941294px;}
.y169{bottom:516.121294px;}
.y21d{bottom:518.281293px;}
.yb{bottom:520.864502px;}
.y11b{bottom:526.921289px;}
.ya6{bottom:527.101289px;}
.y28{bottom:527.641289px;}
.y78{bottom:529.441288px;}
.y193{bottom:530.521288px;}
.y102{bottom:531.961287px;}
.y1d1{bottom:533.041287px;}
.yd9{bottom:533.401287px;}
.y168{bottom:535.021286px;}
.y4f{bottom:535.921286px;}
.ya{bottom:538.864499px;}
.y11a{bottom:546.001282px;}
.ya5{bottom:546.181282px;}
.y27{bottom:547.081281px;}
.y1f2{bottom:547.441281px;}
.y1cf{bottom:547.621200px;}
.y77{bottom:548.341281px;}
.y192{bottom:549.601280px;}
.y1ce{bottom:550.501280px;}
.y101{bottom:551.041280px;}
.y21c{bottom:551.941279px;}
.yd8{bottom:552.481279px;}
.y167{bottom:554.101278px;}
.y4e{bottom:555.361278px;}
.y9{bottom:556.864499px;}
.yd7{bottom:558.421277px;}
.yd6{bottom:562.741275px;}
.y119{bottom:564.901274px;}
.ya4{bottom:565.081274px;}
.y76{bottom:567.241273px;}
.y1f1{bottom:567.601273px;}
.y191{bottom:568.501273px;}
.y100{bottom:569.941272px;}
.y1cd{bottom:570.121272px;}
.y21b{bottom:572.281271px;}
.y166{bottom:573.001271px;}
.y4d{bottom:575.521270px;}
.yd5{bottom:583.801266px;}
.ya3{bottom:583.981266px;}
.y75{bottom:586.321265px;}
.y190{bottom:587.401265px;}
.y1f0{bottom:587.941265px;}
.y26{bottom:588.661265px;}
.yff{bottom:588.841264px;}
.y1cc{bottom:589.561264px;}
.y165{bottom:591.901263px;}
.y21a{bottom:592.441263px;}
.y4c{bottom:596.221262px;}
.yd4{bottom:602.881259px;}
.ya2{bottom:603.061259px;}
.y74{bottom:605.221258px;}
.y18f{bottom:606.481257px;}
.yfe{bottom:607.921257px;}
.y1ef{bottom:608.101257px;}
.y1cb{bottom:609.181256px;}
.y164{bottom:610.981256px;}
.y219{bottom:612.781255px;}
.y4b{bottom:616.201254px;}
.yd3{bottom:621.781251px;}
.ya1{bottom:622.141251px;}
.y73{bottom:624.301250px;}
.y18e{bottom:625.381250px;}
.yfd{bottom:626.821249px;}
.y1ca{bottom:628.261249px;}
.y1ee{bottom:628.441249px;}
.y9d{bottom:628.981248px;}
.y163{bottom:629.881248px;}
.y218{bottom:632.941247px;}
.y9f{bottom:633.301247px;}
.y4a{bottom:633.481247px;}
.y25{bottom:633.841246px;}
.yd2{bottom:640.681244px;}
.y118{bottom:640.861244px;}
.y9c{bottom:642.661243px;}
.y72{bottom:643.201243px;}
.y18d{bottom:644.461242px;}
.y8{bottom:645.510000px;}
.yfc{bottom:645.901242px;}
.y9b{bottom:647.161241px;}
.y1ed{bottom:648.601241px;}
.y162{bottom:648.961240px;}
.y49{bottom:650.761240px;}
.y217{bottom:653.281239px;}
.y9e{bottom:656.341237px;}
.yd1{bottom:659.761236px;}
.ya0{bottom:660.841236px;}
.y71{bottom:662.101235px;}
.y18c{bottom:663.361235px;}
.yfb{bottom:664.801234px;}
.y243{bottom:664.981234px;}
.y1c9{bottom:666.061234px;}
.y7{bottom:666.771000px;}
.y161{bottom:667.861233px;}
.y48{bottom:668.761232px;}
.y1ec{bottom:668.941232px;}
.y216{bottom:673.441231px;}
.yd0{bottom:678.661229px;}
.y117{bottom:678.841228px;}
.y24{bottom:679.021228px;}
.y70{bottom:681.181228px;}
.y9a{bottom:681.361227px;}
.y18b{bottom:682.261227px;}
.yfa{bottom:683.701227px;}
.y242{bottom:684.601226px;}
.y1c8{bottom:685.141226px;}
.y160{bottom:686.761225px;}
.y1eb{bottom:688.561225px;}
.y47{bottom:689.461224px;}
.y215{bottom:693.241223px;}
.ycf{bottom:697.741221px;}
.y6f{bottom:700.081220px;}
.y99{bottom:700.441220px;}
.y18a{bottom:701.341219px;}
.yf9{bottom:702.781219px;}
.y1c7{bottom:704.041218px;}
.y15f{bottom:705.841218px;}
.y1ea{bottom:707.641217px;}
.y46{bottom:709.441216px;}
.y214{bottom:712.141215px;}
.yce{bottom:716.641213px;}
.y6e{bottom:719.161212px;}
.y98{bottom:719.341212px;}
.y23{bottom:719.701212px;}
.y189{bottom:720.241212px;}
.y241{bottom:721.141212px;}
.yf8{bottom:721.681211px;}
.y1c6{bottom:723.121211px;}
.y15e{bottom:724.741210px;}
.y6{bottom:726.298500px;}
.y45{bottom:726.541209px;}
.y213{bottom:731.221208px;}
.ycd{bottom:735.541206px;}
.y116{bottom:735.721206px;}
.y6d{bottom:738.061205px;}
.y97{bottom:738.241205px;}
.y240{bottom:738.421205px;}
.y188{bottom:739.321204px;}
.yf7{bottom:740.761204px;}
.y1c5{bottom:742.021203px;}
.y44{bottom:743.821202px;}
.y1e9{bottom:745.621202px;}
.y212{bottom:750.121200px;}
.y3{bottom:752.599495px;}
.y1e8{bottom:753.001199px;}
.ycc{bottom:754.621198px;}
.y23f{bottom:755.881198px;}
.y6c{bottom:756.961197px;}
.y96{bottom:757.321197px;}
.y187{bottom:758.221197px;}
.yf6{bottom:759.661196px;}
.y1c4{bottom:761.101196px;}
.y43{bottom:761.821195px;}
.y15d{bottom:762.721195px;}
.y1e7{bottom:766.681193px;}
.y211{bottom:769.021192px;}
.y1e5{bottom:771.181192px;}
.y1e6{bottom:772.081191px;}
.ycb{bottom:773.521191px;}
.y115{bottom:773.701191px;}
.y23e{bottom:775.321190px;}
.y6b{bottom:776.041190px;}
.y95{bottom:776.221190px;}
.y186{bottom:777.301189px;}
.yf5{bottom:778.561189px;}
.y1c3{bottom:780.001188px;}
.y42{bottom:781.801187px;}
.y210{bottom:788.101185px;}
.yca{bottom:792.601183px;}
.y23d{bottom:794.761182px;}
.y6a{bottom:794.941182px;}
.y94{bottom:795.301182px;}
.y185{bottom:796.201182px;}
.yf4{bottom:797.641181px;}
.y1c2{bottom:798.901180px;}
.y41{bottom:799.081180px;}
.y15c{bottom:800.701180px;}
.y20f{bottom:807.181177px;}
.yc9{bottom:811.501175px;}
.y20c{bottom:813.841174px;}
.y69{bottom:814.021174px;}
.y93{bottom:814.201174px;}
.y23c{bottom:814.381174px;}
.y20a{bottom:814.741174px;}
.y184{bottom:814.921174px;}
.y40{bottom:816.361173px;}
.yf3{bottom:816.541173px;}
.y1c1{bottom:817.801173px;}
.y15b{bottom:819.421172px;}
.y20b{bottom:828.421169px;}
.y20d{bottom:828.961200px;}
.yc8{bottom:830.581168px;}
.y68{bottom:832.921167px;}
.y92{bottom:833.101167px;}
.y3f{bottom:833.641167px;}
.y209{bottom:833.821166px;}
.y183{bottom:834.541166px;}
.yf2{bottom:835.621166px;}
.y159{bottom:836.701200px;}
.y1c0{bottom:837.241165px;}
.yc4{bottom:837.421165px;}
.y158{bottom:839.941164px;}
.yc6{bottom:841.741163px;}
.yc3{bottom:851.101160px;}
.y3e{bottom:851.641159px;}
.y67{bottom:852.001159px;}
.y23b{bottom:853.261159px;}
.y1bf{bottom:853.621200px;}
.y182{bottom:853.801158px;}
.yf1{bottom:854.521158px;}
.y156{bottom:854.521200px;}
.yc2{bottom:855.601158px;}
.y1be{bottom:856.861157px;}
.y155{bottom:857.761157px;}
.yc5{bottom:864.781154px;}
.y181{bottom:868.741200px;}
.yc7{bottom:869.281152px;}
.y114{bottom:870.181152px;}
.y66{bottom:870.901152px;}
.y1bd{bottom:871.441200px;}
.y3d{bottom:871.981151px;}
.y153{bottom:872.161200px;}
.y91{bottom:872.881151px;}
.yf0{bottom:873.601151px;}
.y1bc{bottom:874.681150px;}
.y152{bottom:875.401150px;}
.y2{bottom:879.369000px;}
.y22{bottom:883.501147px;}
.y65{bottom:889.621144px;}
.y21{bottom:904.201138px;}
.y3c{bottom:906.901137px;}
.y1{bottom:966.726000px;}
.h2a{height:15.120000px;}
.h29{height:15.300000px;}
.h21{height:19.800000px;}
.h39{height:22.140000px;}
.h18{height:24.767990px;}
.h26{height:26.749429px;}
.h24{height:28.080468px;}
.h25{height:28.286035px;}
.h17{height:28.730869px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h2b{height:37.151985px;}
.h28{height:38.501985px;}
.h2c{height:40.031984px;}
.h1c{height:40.116781px;}
.h1b{height:40.410462px;}
.h2d{height:40.751984px;}
.h32{height:41.034897px;}
.hf{height:41.114864px;}
.h2f{height:41.335299px;}
.h36{height:41.677923px;}
.h13{height:42.608863px;}
.h1e{height:43.464741px;}
.h30{height:44.459478px;}
.h38{height:44.827998px;}
.h16{height:45.573102px;}
.h7{height:45.960000px;}
.h19{height:47.381817px;}
.h34{height:47.513653px;}
.h14{height:47.707012px;}
.h1d{height:48.140826px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h20{height:48.297581px;}
.h1a{height:48.493248px;}
.h27{height:49.017580px;}
.h33{height:49.243188px;}
.hb{height:49.535980px;}
.h2e{height:49.603679px;}
.h37{height:49.650529px;}
.h35{height:50.014002px;}
.hd{height:50.327980px;}
.he{height:51.335979px;}
.h23{height:51.947979px;}
.h11{height:52.435877px;}
.h3b{height:52.581776px;}
.h31{height:53.352795px;}
.h3a{height:53.794130px;}
.h22{height:54.901003px;}
.h1f{height:55.122995px;}
.h2{height:55.152000px;}
.h15{height:58.121696px;}
.hc{height:60.063096px;}
.h12{height:60.670874px;}
.h10{height:63.175756px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.ha{height:973.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wa{width:2.160000px;}
.w9{width:4.680000px;}
.w7{width:4.860000px;}
.wb{width:5.040000px;}
.w8{width:6.840720px;}
.w6{width:9.720000px;}
.wc{width:9.900000px;}
.w5{width:10.260000px;}
.w4{width:12.420720px;}
.w2{width:637.794021px;}
.w3{width:688.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:93.239213px;}
.x31{left:95.759280px;}
.x4d{left:99.719210px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x34{left:110.699280px;}
.x2a{left:112.499938px;}
.x20{left:114.479204px;}
.x14{left:116.820438px;}
.x11{left:119.519202px;}
.x7a{left:120.959202px;}
.x33{left:124.739280px;}
.x7{left:127.260445px;}
.x27{left:130.500409px;}
.x18{left:131.769547px;}
.x25{left:133.739811px;}
.x2c{left:136.619910px;}
.x28{left:138.060409px;}
.x19{left:139.499261px;}
.x74{left:141.299193px;}
.x24{left:144.539874px;}
.x84{left:149.219190px;}
.x2f{left:150.659940px;}
.x48{left:152.099939px;}
.x1a{left:154.079938px;}
.x1b{left:159.119936px;}
.x3c{left:163.799934px;}
.x32{left:165.059280px;}
.x3b{left:166.859933px;}
.x49{left:168.299933px;}
.x8b{left:169.919932px;}
.x47{left:171.359931px;}
.xf{left:172.439931px;}
.x3d{left:174.239930px;}
.x30{left:178.199280px;}
.x1e{left:185.759926px;}
.x1f{left:190.979924px;}
.xa{left:195.661490px;}
.x4b{left:199.439920px;}
.x8c{left:202.139919px;}
.x4{left:203.484001px;}
.x93{left:205.559918px;}
.x92{left:216.539890px;}
.x15{left:218.340811px;}
.x4c{left:219.780000px;}
.x83{left:230.219908px;}
.x8a{left:231.299907px;}
.x89{left:232.380632px;}
.x8d{left:234.539906px;}
.x73{left:237.059905px;}
.x38{left:239.579904px;}
.x4e{left:244.799902px;}
.x36{left:247.319901px;}
.x58{left:250.560000px;}
.xd{left:251.639905px;}
.x2b{left:253.799898px;}
.x17{left:255.599913px;}
.x90{left:258.479723px;}
.xb{left:259.919953px;}
.x23{left:261.539895px;}
.x12{left:263.339175px;}
.x21{left:264.959894px;}
.xe{left:267.839808px;}
.x39{left:269.639892px;}
.x75{left:271.079243px;}
.xc{left:272.339836px;}
.x88{left:274.319875px;}
.x16{left:275.939890px;}
.x4a{left:277.559995px;}
.x13{left:280.619888px;}
.x2d{left:283.859886px;}
.x1c{left:286.379885px;}
.x8{left:291.600998px;}
.x6e{left:298.619881px;}
.x91{left:301.679876px;}
.x37{left:303.299879px;}
.x4f{left:306.179878px;}
.x76{left:308.520000px;}
.x59{left:312.120000px;}
.x45{left:316.079874px;}
.x29{left:317.519873px;}
.x77{left:320.039872px;}
.x6a{left:322.379871px;}
.x35{left:323.639871px;}
.x26{left:326.700223px;}
.x5a{left:329.219868px;}
.x87{left:330.659868px;}
.x3a{left:331.739867px;}
.x22{left:337.859865px;}
.x7b{left:338.939864px;}
.x5b{left:342.720000px;}
.x9{left:344.160971px;}
.x2e{left:345.239862px;}
.x44{left:349.739860px;}
.x41{left:353.519859px;}
.x6f{left:359.999856px;}
.x50{left:367.739853px;}
.x43{left:370.079852px;}
.x5c{left:373.500000px;}
.x46{left:376.739849px;}
.x8f{left:380.699848px;}
.x6b{left:383.939846px;}
.x40{left:387.179845px;}
.x5d{left:390.779844px;}
.x3f{left:396.359375px;}
.x51{left:398.519841px;}
.x7c{left:400.499840px;}
.x5e{left:404.280000px;}
.x8e{left:406.079838px;}
.x3e{left:407.519837px;}
.x42{left:414.179834px;}
.x70{left:421.559831px;}
.x52{left:429.299828px;}
.x7d{left:431.279827px;}
.x5f{left:435.060000px;}
.x6{left:441.899823px;}
.x60{left:445.499822px;}
.x71{left:452.339819px;}
.x3{left:454.959000px;}
.x53{left:460.079816px;}
.x7e{left:462.059815px;}
.x61{left:465.840000px;}
.x78{left:472.500000px;}
.x6c{left:476.279809px;}
.x62{left:483.119807px;}
.x54{left:490.679804px;}
.x7f{left:492.659803px;}
.x63{left:496.620000px;}
.x6d{left:506.879797px;}
.x64{left:513.719795px;}
.x10{left:515.879794px;}
.x55{left:521.459791px;}
.x80{left:523.439791px;}
.x65{left:527.220000px;}
.x66{left:537.659785px;}
.x72{left:544.499782px;}
.x56{left:552.239779px;}
.x81{left:554.219778px;}
.x67{left:558.000000px;}
.x85{left:560.160000px;}
.x86{left:561.239776px;}
.x1d{left:568.799772px;}
.x79{left:570.960000px;}
.x68{left:575.279770px;}
.x57{left:583.019767px;}
.x82{left:584.999766px;}
.x69{left:588.780000px;}
@media print{
.v1{vertical-align:-48.639981pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003200pt;}
.lsb{letter-spacing:0.003204pt;}
.ls7{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.006401pt;}
.ls13{letter-spacing:0.006408pt;}
.ls17{letter-spacing:0.098880pt;}
.ls15{letter-spacing:0.100427pt;}
.ls5{letter-spacing:0.102987pt;}
.lsa{letter-spacing:0.116640pt;}
.ls1a{letter-spacing:0.118293pt;}
.ls8{letter-spacing:0.140693pt;}
.ls6{letter-spacing:0.163164pt;}
.ls3{letter-spacing:0.163242pt;}
.ls4{letter-spacing:0.163253pt;}
.ls1e{letter-spacing:0.197760pt;}
.ls1f{letter-spacing:0.249440pt;}
.ls2{letter-spacing:0.263169pt;}
.ls14{letter-spacing:0.274987pt;}
.ls19{letter-spacing:0.325173pt;}
.ls18{letter-spacing:0.325186pt;}
.ls16{letter-spacing:0.325225pt;}
.ls23{letter-spacing:0.326453pt;}
.lsc{letter-spacing:0.452640pt;}
.ls1c{letter-spacing:0.740586pt;}
.lsf{letter-spacing:0.743146pt;}
.ls22{letter-spacing:0.966613pt;}
.ls11{letter-spacing:1.602239pt;}
.ls9{letter-spacing:2.563732pt;}
.ls1b{letter-spacing:5.764424pt;}
.ls12{letter-spacing:30.729854pt;}
.ls10{letter-spacing:76.179695pt;}
.lsd{letter-spacing:621.938128pt;}
.ls1d{letter-spacing:713.821848pt;}
.lse{letter-spacing:869.669397pt;}
.ls20{letter-spacing:998.569734pt;}
.ws1{word-spacing:-58.181737pt;}
.ws4{word-spacing:-49.727980pt;}
.ws7{word-spacing:-45.749742pt;}
.ws5{word-spacing:-41.274223pt;}
.ws9{word-spacing:-37.295985pt;}
.ws2{word-spacing:-18.719993pt;}
.wsd{word-spacing:-16.553452pt;}
.ws11{word-spacing:-16.486788pt;}
.ws1a{word-spacing:-16.154394pt;}
.ws18{word-spacing:-16.021860pt;}
.ws3{word-spacing:-15.999994pt;}
.wsb{word-spacing:-15.663194pt;}
.wse{word-spacing:-15.599994pt;}
.ws15{word-spacing:-14.726402pt;}
.ws8{word-spacing:-14.719994pt;}
.ws1b{word-spacing:-13.461861pt;}
.ws19{word-spacing:-13.351195pt;}
.ws6{word-spacing:-13.279995pt;}
.wsc{word-spacing:-13.052475pt;}
.ws16{word-spacing:-12.325221pt;}
.ws17{word-spacing:-12.325182pt;}
.wsa{word-spacing:-11.999995pt;}
.ws12{word-spacing:-9.136316pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:642.098762pt;}
.wsf{word-spacing:692.108096pt;}
.ws14{word-spacing:807.252296pt;}
.ws13{word-spacing:857.254697pt;}
._a3{margin-left:-718.513214pt;}
._a2{margin-left:-673.855174pt;}
._b5{margin-left:-672.657945pt;}
._b3{margin-left:-627.381315pt;}
._4b{margin-left:-591.717097pt;}
._23{margin-left:-469.949557pt;}
._22{margin-left:-455.432618pt;}
._36{margin-left:-449.023530pt;}
._33{margin-left:-434.249640pt;}
._31{margin-left:-426.564096pt;}
._b4{margin-left:-414.686315pt;}
._42{margin-left:-407.360370pt;}
._34{margin-left:-403.705596pt;}
._b2{margin-left:-383.286238pt;}
._2c{margin-left:-353.830646pt;}
._49{margin-left:-345.745642pt;}
._28{margin-left:-344.350262pt;}
._46{margin-left:-342.983124pt;}
._35{margin-left:-341.149730pt;}
._2a{margin-left:-339.738651pt;}
._39{margin-left:-317.816591pt;}
._44{margin-left:-315.801389pt;}
._51{margin-left:-310.566468pt;}
._37{margin-left:-304.894691pt;}
._9f{margin-left:-299.447649pt;}
._48{margin-left:-296.844340pt;}
._45{margin-left:-287.378552pt;}
._47{margin-left:-281.849900pt;}
._ae{margin-left:-277.837197pt;}
._4d{margin-left:-268.814826pt;}
._4e{margin-left:-265.306270pt;}
._a0{margin-left:-263.995666pt;}
._3a{margin-left:-251.338692pt;}
._54{margin-left:-234.800767pt;}
._4c{margin-left:-233.225956pt;}
._3d{margin-left:-224.953800pt;}
._55{margin-left:-223.566097pt;}
._50{margin-left:-208.896673pt;}
._ac{margin-left:-205.631651pt;}
._3e{margin-left:-203.083439pt;}
._53{margin-left:-200.265969pt;}
._4f{margin-left:-199.273400pt;}
._af{margin-left:-189.712376pt;}
._99{margin-left:-188.414698pt;}
._26{margin-left:-184.145217pt;}
._95{margin-left:-183.095393pt;}
._3c{margin-left:-179.783310pt;}
._2e{margin-left:-164.405268pt;}
._32{margin-left:-148.805274pt;}
._29{margin-left:-147.699261pt;}
._43{margin-left:-145.098300pt;}
._25{margin-left:-141.049459pt;}
._2b{margin-left:-136.817132pt;}
._38{margin-left:-133.477813pt;}
._9e{margin-left:-119.561884pt;}
._96{margin-left:-116.720280pt;}
._ad{margin-left:-113.569661pt;}
._97{margin-left:-112.134355pt;}
._9a{margin-left:-106.373184pt;}
._3f{margin-left:-98.477401pt;}
._2f{margin-left:-96.493295pt;}
._9b{margin-left:-94.433810pt;}
._24{margin-left:-91.397190pt;}
._b1{margin-left:-89.842104pt;}
._a1{margin-left:-84.473852pt;}
._9d{margin-left:-75.350982pt;}
._98{margin-left:-48.840175pt;}
._27{margin-left:-46.520273pt;}
._b0{margin-left:-42.554637pt;}
._9c{margin-left:-39.595905pt;}
._3b{margin-left:-34.482980pt;}
._0{margin-left:-1.167144pt;}
._1{width:0.923382pt;}
._2{width:2.379206pt;}
._7{width:3.280320pt;}
._5{width:4.971198pt;}
._3{width:6.589830pt;}
._4{width:7.619768pt;}
._12{width:8.540383pt;}
._16{width:9.861898pt;}
._15{width:10.817354pt;}
._20{width:12.320392pt;}
._18{width:13.488155pt;}
._58{width:15.625370pt;}
._f{width:16.603772pt;}
._6{width:17.630078pt;}
._8{width:19.284175pt;}
._c{width:20.251100pt;}
._b{width:21.798802pt;}
._a{width:22.723661pt;}
._5a{width:23.717196pt;}
._40{width:24.805494pt;}
._13{width:26.218321pt;}
._14{width:27.229244pt;}
._17{width:28.560092pt;}
._11{width:30.086737pt;}
._10{width:31.614502pt;}
._56{width:33.103860pt;}
._2d{width:34.570730pt;}
._b9{width:35.468748pt;}
._41{width:36.628803pt;}
._b7{width:37.551365pt;}
._1f{width:38.520929pt;}
._e{width:39.660679pt;}
._d{width:40.810037pt;}
._59{width:41.789653pt;}
._19{width:42.793488pt;}
._1a{width:43.720903pt;}
._ba{width:44.757445pt;}
._5c{width:45.714501pt;}
._5d{width:46.829459pt;}
._1e{width:47.974564pt;}
._1d{width:49.307526pt;}
._5b{width:51.311660pt;}
._b6{width:53.121434pt;}
._1c{width:54.731019pt;}
._1b{width:55.873881pt;}
._ab{width:57.069095pt;}
._aa{width:57.990636pt;}
._a4{width:59.535899pt;}
._57{width:60.504922pt;}
._6a{width:61.957223pt;}
._6b{width:63.282146pt;}
._a5{width:65.284071pt;}
._68{width:73.800281pt;}
._9{width:76.179502pt;}
._a7{width:80.919718pt;}
._b8{width:82.231528pt;}
._21{width:83.221548pt;}
._79{width:98.125289pt;}
._85{width:99.275426pt;}
._77{width:100.813495pt;}
._52{width:111.387373pt;}
._30{width:157.477441pt;}
._83{width:164.390836pt;}
._4a{width:167.719613pt;}
._7c{width:171.902180pt;}
._6e{width:175.743138pt;}
._66{width:182.771105pt;}
._64{width:188.715787pt;}
._81{width:192.599379pt;}
._5f{width:198.850836pt;}
._92{width:206.949251pt;}
._90{width:209.637249pt;}
._67{width:211.541170pt;}
._6c{width:213.269773pt;}
._60{width:217.426903pt;}
._7e{width:223.176266pt;}
._76{width:231.421486pt;}
._84{width:235.866600pt;}
._73{width:241.249721pt;}
._6f{width:247.501178pt;}
._69{width:249.442911pt;}
._78{width:260.191551pt;}
._70{width:266.077283pt;}
._82{width:268.115119pt;}
._80{width:278.771193pt;}
._a9{width:281.556897pt;}
._a8{width:291.277196pt;}
._63{width:292.440070pt;}
._7a{width:298.093292pt;}
._62{width:303.096144pt;}
._a6{width:304.493503pt;}
._5e{width:310.787203pt;}
._65{width:313.752362pt;}
._74{width:316.765500pt;}
._61{width:321.344105pt;}
._72{width:327.421574pt;}
._7d{width:335.112153pt;}
._75{width:338.077312pt;}
._8f{width:340.245197pt;}
._7f{width:345.669055pt;}
._8c{width:350.073811pt;}
._88{width:356.325191pt;}
._6d{width:359.437104pt;}
._7b{width:364.717117pt;}
._91{width:369.014611pt;}
._71{width:369.994485pt;}
._89{width:396.213175pt;}
._93{width:406.917171pt;}
._8d{width:425.589163pt;}
._87{width:430.517436pt;}
._8b{width:436.245159pt;}
._8e{width:446.901155pt;}
._86{width:468.261146pt;}
._94{width:469.557146pt;}
._8a{width:478.818955pt;}
.fsa{font-size:31.999987pt;}
.fs12{font-size:34.559986pt;}
.fs11{font-size:36.545265pt;}
.fs9{font-size:37.119985pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:47.999981pt;}
.fsd{font-size:52.209899pt;}
.fs7{font-size:53.119979pt;}
.fs3{font-size:53.333333pt;}
.fs14{font-size:53.404779pt;}
.fs16{font-size:53.847445pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.879976pt;}
.fsf{font-size:62.399975pt;}
.fsc{font-size:62.652775pt;}
.fs5{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs13{font-size:64.087441pt;}
.fs15{font-size:64.617574pt;}
.fs10{font-size:65.947151pt;}
.fse{font-size:66.213808pt;}
.fs6{font-size:74.879970pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1d0{bottom:2.560071pt;}
.y172{bottom:2.560130pt;}
.y19c{bottom:2.560131pt;}
.y175{bottom:2.560135pt;}
.y125{bottom:2.560138pt;}
.y129{bottom:2.720149pt;}
.y14b{bottom:2.879951pt;}
.y154{bottom:2.879955pt;}
.y14e{bottom:2.879957pt;}
.y157{bottom:2.879962pt;}
.y151{bottom:2.879964pt;}
.y15a{bottom:2.879968pt;}
.y1a1{bottom:2.880149pt;}
.y12d{bottom:2.880155pt;}
.y130{bottom:2.880161pt;}
.y133{bottom:2.880167pt;}
.y1e2{bottom:2.880172pt;}
.y136{bottom:2.880174pt;}
.y139{bottom:2.880180pt;}
.y13c{bottom:2.880186pt;}
.y13f{bottom:2.880192pt;}
.y142{bottom:2.880199pt;}
.y145{bottom:2.880205pt;}
.y148{bottom:2.880211pt;}
.yb0{bottom:3.360127pt;}
.y20e{bottom:3.519971pt;}
.y5{bottom:59.133337pt;}
.y90{bottom:81.974367pt;}
.y3b{bottom:82.774367pt;}
.y208{bottom:85.494632pt;}
.y4{bottom:86.333337pt;}
.y64{bottom:86.454632pt;}
.y1bb{bottom:86.934400pt;}
.y150{bottom:87.734400pt;}
.yef{bottom:88.214631pt;}
.y1ba{bottom:89.814364pt;}
.y180{bottom:90.294364pt;}
.y14f{bottom:90.614364pt;}
.y8f{bottom:95.734362pt;}
.yc1{bottom:96.214362pt;}
.y3a{bottom:100.854360pt;}
.y8e{bottom:101.014360pt;}
.y113{bottom:101.814626pt;}
.yc0{bottom:102.294359pt;}
.y207{bottom:102.454626pt;}
.y1b9{bottom:102.614400pt;}
.y63{bottom:103.254625pt;}
.y14d{bottom:103.574400pt;}
.yee{bottom:105.174625pt;}
.y1b8{bottom:105.494358pt;}
.y17f{bottom:106.294357pt;}
.y14c{bottom:106.454357pt;}
.y8d{bottom:110.614356pt;}
.ybf{bottom:112.214355pt;}
.y23a{bottom:115.094621pt;}
.y39{bottom:116.534620pt;}
.y1b7{bottom:118.454400pt;}
.y112{bottom:118.774619pt;}
.y206{bottom:119.254619pt;}
.y14a{bottom:119.414400pt;}
.y62{bottom:120.054619pt;}
.y1b6{bottom:121.334351pt;}
.yed{bottom:121.974618pt;}
.y17e{bottom:122.134351pt;}
.y149{bottom:122.294351pt;}
.y20{bottom:123.790666pt;}
.y239{bottom:132.374614pt;}
.y1b5{bottom:134.294400pt;}
.y38{bottom:134.934613pt;}
.y147{bottom:135.094400pt;}
.y111{bottom:135.574612pt;}
.y205{bottom:136.054612pt;}
.y1b4{bottom:137.174612pt;}
.y146{bottom:137.974611pt;}
.yec{bottom:138.774611pt;}
.y238{bottom:149.654607pt;}
.y1b3{bottom:150.134400pt;}
.y8c{bottom:150.134607pt;}
.y144{bottom:150.934400pt;}
.y110{bottom:152.374606pt;}
.y1b2{bottom:153.014605pt;}
.y37{bottom:153.334605pt;}
.y143{bottom:153.814605pt;}
.y61{bottom:155.254605pt;}
.yeb{bottom:155.734604pt;}
.y1b1{bottom:165.814400pt;}
.y141{bottom:166.774400pt;}
.y8b{bottom:166.934600pt;}
.y237{bottom:167.094600pt;}
.y1b0{bottom:168.694599pt;}
.ybe{bottom:169.334599pt;}
.y140{bottom:169.654599pt;}
.y204{bottom:169.814599pt;}
.y36{bottom:171.734598pt;}
.yea{bottom:172.534598pt;}
.y17{bottom:175.052000pt;}
.y1af{bottom:181.654400pt;}
.y13e{bottom:182.614400pt;}
.y8a{bottom:183.894593pt;}
.y236{bottom:184.374593pt;}
.y1ae{bottom:184.534593pt;}
.y13d{bottom:185.494592pt;}
.ybd{bottom:186.134592pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y203{bottom:186.774592pt;}
.ye9{bottom:189.494591pt;}
.y35{bottom:190.134591pt;}
.y22b{bottom:190.774590pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1ad{bottom:197.494400pt;}
.y13b{bottom:198.294400pt;}
.y1ac{bottom:200.374587pt;}
.y89{bottom:200.694586pt;}
.y13a{bottom:201.174586pt;}
.y17d{bottom:201.494586pt;}
.y235{bottom:201.654586pt;}
.y1e4{bottom:202.454586pt;}
.ybc{bottom:203.094585pt;}
.y202{bottom:203.574585pt;}
.ye8{bottom:206.294584pt;}
.y22a{bottom:207.734584pt;}
.y34{bottom:208.534583pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y60{bottom:212.534582pt;}
.y1ab{bottom:213.334400pt;}
.y138{bottom:214.134400pt;}
.y1aa{bottom:216.214580pt;}
.y137{bottom:217.014580pt;}
.y17c{bottom:217.334580pt;}
.y88{bottom:217.494580pt;}
.y234{bottom:219.094579pt;}
.ybb{bottom:219.894579pt;}
.y201{bottom:220.374579pt;}
.ye7{bottom:223.094577pt;}
.y229{bottom:224.534577pt;}
.y33{bottom:226.934576pt;}
.y5f{bottom:227.894576pt;}
.y1a9{bottom:229.014400pt;}
.y135{bottom:229.974400pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1a8{bottom:231.894574pt;}
.y1e1{bottom:232.854400pt;}
.y134{bottom:232.854574pt;}
.y17b{bottom:233.174573pt;}
.y87{bottom:234.454573pt;}
.y1e0{bottom:235.734572pt;}
.y233{bottom:236.374572pt;}
.y1e3{bottom:236.534572pt;}
.y10f{bottom:236.694572pt;}
.yba{bottom:236.854572pt;}
.y200{bottom:237.334572pt;}
.ye6{bottom:241.174570pt;}
.y228{bottom:241.334570pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y5e{bottom:243.254569pt;}
.y1a7{bottom:244.854400pt;}
.y32{bottom:245.334569pt;}
.y132{bottom:245.814400pt;}
.y1a6{bottom:247.734568pt;}
.y131{bottom:248.694567pt;}
.y17a{bottom:249.014567pt;}
.y86{bottom:251.254566pt;}
.y1df{bottom:251.734566pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yb9{bottom:253.654565pt;}
.y1ff{bottom:254.134565pt;}
.ye5{bottom:257.974563pt;}
.y227{bottom:258.294563pt;}
.y5d{bottom:258.614563pt;}
.yb7{bottom:258.934563pt;}
.y1a5{bottom:260.694400pt;}
.y12f{bottom:261.494400pt;}
.yb8{bottom:262.774562pt;}
.y1a4{bottom:263.574561pt;}
.y31{bottom:263.734561pt;}
.y12e{bottom:264.374561pt;}
.y179{bottom:264.854561pt;}
.y1de{bottom:267.574560pt;}
.y85{bottom:268.214559pt;}
.y10e{bottom:270.454558pt;}
.y1fe{bottom:271.094558pt;}
.y5c{bottom:273.974557pt;}
.ye4{bottom:274.934557pt;}
.y226{bottom:275.094557pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1a3{bottom:276.534400pt;}
.y12c{bottom:277.334400pt;}
.y1a2{bottom:279.414555pt;}
.y12b{bottom:280.214555pt;}
.y178{bottom:280.694554pt;}
.yb6{bottom:281.654554pt;}
.y30{bottom:282.134554pt;}
.y1dd{bottom:283.414553pt;}
.y84{bottom:285.014553pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y10d{bottom:287.414552pt;}
.y1fd{bottom:287.894552pt;}
.y232{bottom:288.374551pt;}
.y5b{bottom:289.174551pt;}
.ye3{bottom:291.734550pt;}
.y225{bottom:292.054550pt;}
.y1a0{bottom:292.214400pt;}
.y128{bottom:292.374400pt;}
.y127{bottom:295.094549pt;}
.y177{bottom:296.694548pt;}
.yb5{bottom:298.614547pt;}
.y1dc{bottom:299.254547pt;}
.y2f{bottom:300.534546pt;}
.y12a{bottom:301.014546pt;}
.y83{bottom:301.974546pt;}
.yb4{bottom:303.894545pt;}
.y10c{bottom:304.214545pt;}
.y5a{bottom:304.534545pt;}
.y1fc{bottom:304.854545pt;}
.y231{bottom:305.654544pt;}
.yb3{bottom:307.734544pt;}
.ye2{bottom:308.534543pt;}
.y126{bottom:308.854543pt;}
.ye{bottom:309.452000pt;}
.y19e{bottom:310.614542pt;}
.y176{bottom:312.534542pt;}
.y1db{bottom:315.094541pt;}
.y19f{bottom:318.134539pt;}
.y82{bottom:318.774539pt;}
.y59{bottom:319.894539pt;}
.y124{bottom:320.054400pt;}
.y10b{bottom:321.014538pt;}
.y1fb{bottom:321.654538pt;}
.y123{bottom:322.614538pt;}
.y230{bottom:323.094537pt;}
.y19d{bottom:324.374537pt;}
.y174{bottom:325.494400pt;}
.ye1{bottom:325.494536pt;}
.y224{bottom:325.654536pt;}
.yb2{bottom:326.454536pt;}
.y2e{bottom:326.934536pt;}
.y173{bottom:328.054535pt;}
.y1da{bottom:330.934534pt;}
.y58{bottom:335.254533pt;}
.y81{bottom:335.574532pt;}
.y19b{bottom:335.734400pt;}
.y122{bottom:337.814532pt;}
.y10a{bottom:337.974531pt;}
.y19a{bottom:338.294531pt;}
.y1fa{bottom:338.454531pt;}
.y171{bottom:339.254400pt;}
.y22f{bottom:340.374531pt;}
.y170{bottom:341.814530pt;}
.y223{bottom:342.614530pt;}
.yb1{bottom:343.254529pt;}
.yd{bottom:343.809333pt;}
.yaf{bottom:346.454400pt;}
.y1d9{bottom:346.934528pt;}
.yae{bottom:349.814527pt;}
.y57{bottom:350.614526pt;}
.y80{bottom:352.534526pt;}
.y121{bottom:353.174525pt;}
.y2d{bottom:353.334525pt;}
.y109{bottom:354.774525pt;}
.y1f9{bottom:355.414525pt;}
.y199{bottom:356.374524pt;}
.y16f{bottom:357.334524pt;}
.y22e{bottom:357.654524pt;}
.y222{bottom:359.414523pt;}
.ye0{bottom:360.694522pt;}
.yc{bottom:362.706666pt;}
.y1d8{bottom:362.774522pt;}
.y56{bottom:365.974520pt;}
.yad{bottom:367.414520pt;}
.y120{bottom:368.534519pt;}
.y7f{bottom:369.334519pt;}
.y108{bottom:371.734518pt;}
.y1f8{bottom:372.214518pt;}
.y16e{bottom:373.814517pt;}
.y22d{bottom:375.094517pt;}
.y221{bottom:376.374516pt;}
.y1d7{bottom:378.614515pt;}
.y2c{bottom:379.734515pt;}
.y55{bottom:381.174514pt;}
.y11f{bottom:384.054513pt;}
.yac{bottom:384.214513pt;}
.y7d{bottom:386.294512pt;}
.y198{bottom:387.254512pt;}
.y107{bottom:388.534511pt;}
.y1f7{bottom:389.174511pt;}
.y16d{bottom:391.254510pt;}
.y7e{bottom:393.014509pt;}
.y220{bottom:393.174509pt;}
.y1d6{bottom:394.454509pt;}
.y54{bottom:396.534508pt;}
.y11e{bottom:401.014506pt;}
.yaa{bottom:401.174506pt;}
.y7c{bottom:403.094505pt;}
.y197{bottom:404.214505pt;}
.y106{bottom:405.494504pt;}
.y1f6{bottom:405.974504pt;}
.y2b{bottom:406.134504pt;}
.yab{bottom:407.894504pt;}
.y16c{bottom:408.214503pt;}
.y21f{bottom:409.974503pt;}
.y1d5{bottom:410.294503pt;}
.y22c{bottom:410.934502pt;}
.y53{bottom:411.894502pt;}
.y11d{bottom:417.814500pt;}
.ya9{bottom:417.974499pt;}
.ydf{bottom:418.294499pt;}
.y7b{bottom:419.894499pt;}
.y196{bottom:421.014498pt;}
.y105{bottom:422.294498pt;}
.y1f5{bottom:422.774498pt;}
.ydd{bottom:423.574497pt;}
.y16b{bottom:425.014497pt;}
.y1d4{bottom:426.134496pt;}
.y52{bottom:426.934496pt;}
.yde{bottom:427.414496pt;}
.y2a{bottom:432.534494pt;}
.y11c{bottom:434.614493pt;}
.ya8{bottom:434.774493pt;}
.y7a{bottom:436.854492pt;}
.y195{bottom:437.814492pt;}
.y104{bottom:439.094491pt;}
.y1f4{bottom:439.734491pt;}
.y16a{bottom:441.814490pt;}
.y1d3{bottom:442.134490pt;}
.y51{bottom:442.614490pt;}
.y21e{bottom:443.734489pt;}
.ydc{bottom:446.294488pt;}
.y29{bottom:451.254486pt;}
.yda{bottom:451.574486pt;}
.ya7{bottom:451.734486pt;}
.y79{bottom:453.654485pt;}
.y194{bottom:454.774485pt;}
.ydb{bottom:455.414485pt;}
.y103{bottom:456.054484pt;}
.y1f3{bottom:456.534484pt;}
.y1d2{bottom:457.974483pt;}
.y50{bottom:458.614483pt;}
.y169{bottom:458.774483pt;}
.y21d{bottom:460.694482pt;}
.yb{bottom:462.990669pt;}
.y11b{bottom:468.374479pt;}
.ya6{bottom:468.534479pt;}
.y28{bottom:469.014479pt;}
.y78{bottom:470.614478pt;}
.y193{bottom:471.574478pt;}
.y102{bottom:472.854478pt;}
.y1d1{bottom:473.814477pt;}
.yd9{bottom:474.134477pt;}
.y168{bottom:475.574476pt;}
.y4f{bottom:476.374476pt;}
.ya{bottom:478.990666pt;}
.y11a{bottom:485.334473pt;}
.ya5{bottom:485.494472pt;}
.y27{bottom:486.294472pt;}
.y1f2{bottom:486.614472pt;}
.y1cf{bottom:486.774400pt;}
.y77{bottom:487.414472pt;}
.y192{bottom:488.534471pt;}
.y1ce{bottom:489.334471pt;}
.y101{bottom:489.814471pt;}
.y21c{bottom:490.614470pt;}
.yd8{bottom:491.094470pt;}
.y167{bottom:492.534470pt;}
.y4e{bottom:493.654469pt;}
.y9{bottom:494.990666pt;}
.yd7{bottom:496.374468pt;}
.yd6{bottom:500.214467pt;}
.y119{bottom:502.134466pt;}
.ya4{bottom:502.294466pt;}
.y76{bottom:504.214465pt;}
.y1f1{bottom:504.534465pt;}
.y191{bottom:505.334465pt;}
.y100{bottom:506.614464pt;}
.y1cd{bottom:506.774464pt;}
.y21b{bottom:508.694463pt;}
.y166{bottom:509.334463pt;}
.y4d{bottom:511.574462pt;}
.yd5{bottom:518.934459pt;}
.ya3{bottom:519.094459pt;}
.y75{bottom:521.174458pt;}
.y190{bottom:522.134458pt;}
.y1f0{bottom:522.614458pt;}
.y26{bottom:523.254457pt;}
.yff{bottom:523.414457pt;}
.y1cc{bottom:524.054457pt;}
.y165{bottom:526.134456pt;}
.y21a{bottom:526.614456pt;}
.y4c{bottom:529.974455pt;}
.yd4{bottom:535.894452pt;}
.ya2{bottom:536.054452pt;}
.y74{bottom:537.974451pt;}
.y18f{bottom:539.094451pt;}
.yfe{bottom:540.374451pt;}
.y1ef{bottom:540.534450pt;}
.y1cb{bottom:541.494450pt;}
.y164{bottom:543.094449pt;}
.y219{bottom:544.694449pt;}
.y4b{bottom:547.734448pt;}
.yd3{bottom:552.694446pt;}
.ya1{bottom:553.014445pt;}
.y73{bottom:554.934445pt;}
.y18e{bottom:555.894444pt;}
.yfd{bottom:557.174444pt;}
.y1ca{bottom:558.454443pt;}
.y1ee{bottom:558.614443pt;}
.y9d{bottom:559.094443pt;}
.y163{bottom:559.894443pt;}
.y218{bottom:562.614442pt;}
.y9f{bottom:562.934441pt;}
.y4a{bottom:563.094441pt;}
.y25{bottom:563.414441pt;}
.yd2{bottom:569.494439pt;}
.y118{bottom:569.654439pt;}
.y9c{bottom:571.254438pt;}
.y72{bottom:571.734438pt;}
.y18d{bottom:572.854438pt;}
.y8{bottom:573.786667pt;}
.yfc{bottom:574.134437pt;}
.y9b{bottom:575.254437pt;}
.y1ed{bottom:576.534436pt;}
.y162{bottom:576.854436pt;}
.y49{bottom:578.454435pt;}
.y217{bottom:580.694434pt;}
.y9e{bottom:583.414433pt;}
.yd1{bottom:586.454432pt;}
.ya0{bottom:587.414432pt;}
.y71{bottom:588.534431pt;}
.y18c{bottom:589.654431pt;}
.yfb{bottom:590.934430pt;}
.y243{bottom:591.094430pt;}
.y1c9{bottom:592.054430pt;}
.y7{bottom:592.685334pt;}
.y161{bottom:593.654429pt;}
.y48{bottom:594.454429pt;}
.y1ec{bottom:594.614429pt;}
.y216{bottom:598.614427pt;}
.yd0{bottom:603.254425pt;}
.y117{bottom:603.414425pt;}
.y24{bottom:603.574425pt;}
.y70{bottom:605.494424pt;}
.y9a{bottom:605.654424pt;}
.y18b{bottom:606.454424pt;}
.yfa{bottom:607.734424pt;}
.y242{bottom:608.534423pt;}
.y1c8{bottom:609.014423pt;}
.y160{bottom:610.454422pt;}
.y1eb{bottom:612.054422pt;}
.y47{bottom:612.854422pt;}
.y215{bottom:616.214420pt;}
.ycf{bottom:620.214419pt;}
.y6f{bottom:622.294418pt;}
.y99{bottom:622.614418pt;}
.y18a{bottom:623.414417pt;}
.yf9{bottom:624.694417pt;}
.y1c7{bottom:625.814416pt;}
.y15f{bottom:627.414416pt;}
.y1ea{bottom:629.014415pt;}
.y46{bottom:630.614414pt;}
.y214{bottom:633.014413pt;}
.yce{bottom:637.014412pt;}
.y6e{bottom:639.254411pt;}
.y98{bottom:639.414411pt;}
.y23{bottom:639.734411pt;}
.y189{bottom:640.214411pt;}
.y241{bottom:641.014410pt;}
.yf8{bottom:641.494410pt;}
.y1c6{bottom:642.774410pt;}
.y15e{bottom:644.214409pt;}
.y6{bottom:645.598667pt;}
.y45{bottom:645.814408pt;}
.y213{bottom:649.974407pt;}
.ycd{bottom:653.814405pt;}
.y116{bottom:653.974405pt;}
.y6d{bottom:656.054404pt;}
.y97{bottom:656.214404pt;}
.y240{bottom:656.374404pt;}
.y188{bottom:657.174404pt;}
.yf7{bottom:658.454403pt;}
.y1c5{bottom:659.574403pt;}
.y44{bottom:661.174402pt;}
.y1e9{bottom:662.774402pt;}
.y212{bottom:666.774400pt;}
.y3{bottom:668.977329pt;}
.y1e8{bottom:669.334399pt;}
.ycc{bottom:670.774398pt;}
.y23f{bottom:671.894398pt;}
.y6c{bottom:672.854398pt;}
.y96{bottom:673.174397pt;}
.y187{bottom:673.974397pt;}
.yf6{bottom:675.254397pt;}
.y1c4{bottom:676.534396pt;}
.y43{bottom:677.174396pt;}
.y15d{bottom:677.974395pt;}
.y1e7{bottom:681.494394pt;}
.y211{bottom:683.574393pt;}
.y1e5{bottom:685.494392pt;}
.y1e6{bottom:686.294392pt;}
.ycb{bottom:687.574392pt;}
.y115{bottom:687.734392pt;}
.y23e{bottom:689.174391pt;}
.y6b{bottom:689.814391pt;}
.y95{bottom:689.974391pt;}
.y186{bottom:690.934390pt;}
.yf5{bottom:692.054390pt;}
.y1c3{bottom:693.334389pt;}
.y42{bottom:694.934389pt;}
.y210{bottom:700.534386pt;}
.yca{bottom:704.534385pt;}
.y23d{bottom:706.454384pt;}
.y6a{bottom:706.614384pt;}
.y94{bottom:706.934384pt;}
.y185{bottom:707.734384pt;}
.yf4{bottom:709.014383pt;}
.y1c2{bottom:710.134383pt;}
.y41{bottom:710.294383pt;}
.y15c{bottom:711.734382pt;}
.y20f{bottom:717.494380pt;}
.yc9{bottom:721.334378pt;}
.y20c{bottom:723.414377pt;}
.y69{bottom:723.574377pt;}
.y93{bottom:723.734377pt;}
.y23c{bottom:723.894377pt;}
.y20a{bottom:724.214377pt;}
.y184{bottom:724.374377pt;}
.y40{bottom:725.654376pt;}
.yf3{bottom:725.814376pt;}
.y1c1{bottom:726.934376pt;}
.y15b{bottom:728.374375pt;}
.y20b{bottom:736.374372pt;}
.y20d{bottom:736.854400pt;}
.yc8{bottom:738.294371pt;}
.y68{bottom:740.374371pt;}
.y92{bottom:740.534370pt;}
.y3f{bottom:741.014370pt;}
.y209{bottom:741.174370pt;}
.y183{bottom:741.814370pt;}
.yf2{bottom:742.774370pt;}
.y159{bottom:743.734400pt;}
.y1c0{bottom:744.214369pt;}
.yc4{bottom:744.374369pt;}
.y158{bottom:746.614368pt;}
.yc6{bottom:748.214367pt;}
.yc3{bottom:756.534364pt;}
.y3e{bottom:757.014364pt;}
.y67{bottom:757.334364pt;}
.y23b{bottom:758.454363pt;}
.y1bf{bottom:758.774400pt;}
.y182{bottom:758.934363pt;}
.yf1{bottom:759.574363pt;}
.y156{bottom:759.574400pt;}
.yc2{bottom:760.534362pt;}
.y1be{bottom:761.654362pt;}
.y155{bottom:762.454362pt;}
.yc5{bottom:768.694359pt;}
.y181{bottom:772.214400pt;}
.yc7{bottom:772.694358pt;}
.y114{bottom:773.494357pt;}
.y66{bottom:774.134357pt;}
.y1bd{bottom:774.614400pt;}
.y3d{bottom:775.094357pt;}
.y153{bottom:775.254400pt;}
.y91{bottom:775.894356pt;}
.yf0{bottom:776.534356pt;}
.y1bc{bottom:777.494356pt;}
.y152{bottom:778.134355pt;}
.y2{bottom:781.661334pt;}
.y22{bottom:785.334353pt;}
.y65{bottom:790.774350pt;}
.y21{bottom:803.734345pt;}
.y3c{bottom:806.134344pt;}
.y1{bottom:859.312000pt;}
.h2a{height:13.440000pt;}
.h29{height:13.600000pt;}
.h21{height:17.600000pt;}
.h39{height:19.680000pt;}
.h18{height:22.015991pt;}
.h26{height:23.777270pt;}
.h24{height:24.960416pt;}
.h25{height:25.143143pt;}
.h17{height:25.538550pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h2b{height:33.023987pt;}
.h28{height:34.223986pt;}
.h2c{height:35.583986pt;}
.h1c{height:35.659361pt;}
.h1b{height:35.920411pt;}
.h2d{height:36.223986pt;}
.h32{height:36.475464pt;}
.hf{height:36.546545pt;}
.h2f{height:36.742488pt;}
.h36{height:37.047042pt;}
.h13{height:37.874545pt;}
.h1e{height:38.635325pt;}
.h30{height:39.519536pt;}
.h38{height:39.847109pt;}
.h16{height:40.509424pt;}
.h7{height:40.853333pt;}
.h19{height:42.117171pt;}
.h34{height:42.234358pt;}
.h14{height:42.406233pt;}
.h1d{height:42.791845pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h20{height:42.931183pt;}
.h1a{height:43.105109pt;}
.h27{height:43.571183pt;}
.h33{height:43.771722pt;}
.hb{height:44.031982pt;}
.h2e{height:44.092159pt;}
.h37{height:44.133803pt;}
.h35{height:44.456891pt;}
.hd{height:44.735982pt;}
.he{height:45.631982pt;}
.h23{height:46.175982pt;}
.h11{height:46.609669pt;}
.h3b{height:46.739356pt;}
.h31{height:47.424706pt;}
.h3a{height:47.817005pt;}
.h22{height:48.800892pt;}
.h1f{height:48.998218pt;}
.h2{height:49.024000pt;}
.h15{height:51.663729pt;}
.hc{height:53.389419pt;}
.h12{height:53.929666pt;}
.h10{height:56.156228pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.ha{height:865.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wa{width:1.920000pt;}
.w9{width:4.160000pt;}
.w7{width:4.320000pt;}
.wb{width:4.480000pt;}
.w8{width:6.080640pt;}
.w6{width:8.640000pt;}
.wc{width:8.800000pt;}
.w5{width:9.120000pt;}
.w4{width:11.040640pt;}
.w2{width:566.928019pt;}
.w3{width:612.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:82.879300pt;}
.x31{left:85.119360pt;}
.x4d{left:88.639298pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x34{left:98.399360pt;}
.x2a{left:99.999945pt;}
.x20{left:101.759293pt;}
.x14{left:103.840390pt;}
.x11{left:106.239291pt;}
.x7a{left:107.519290pt;}
.x33{left:110.879360pt;}
.x7{left:113.120396pt;}
.x27{left:116.000363pt;}
.x18{left:117.128486pt;}
.x25{left:118.879832pt;}
.x2c{left:121.439920pt;}
.x28{left:122.720364pt;}
.x19{left:123.999343pt;}
.x74{left:125.599283pt;}
.x24{left:128.479888pt;}
.x84{left:132.639280pt;}
.x2f{left:133.919946pt;}
.x48{left:135.199946pt;}
.x1a{left:136.959945pt;}
.x1b{left:141.439943pt;}
.x3c{left:145.599942pt;}
.x32{left:146.719360pt;}
.x3b{left:148.319941pt;}
.x49{left:149.599940pt;}
.x8b{left:151.039940pt;}
.x47{left:152.319939pt;}
.xf{left:153.279939pt;}
.x3d{left:154.879938pt;}
.x30{left:158.399360pt;}
.x1e{left:165.119934pt;}
.x1f{left:169.759932pt;}
.xa{left:173.921325pt;}
.x4b{left:177.279929pt;}
.x8c{left:179.679928pt;}
.x4{left:180.874667pt;}
.x93{left:182.719927pt;}
.x92{left:192.479902pt;}
.x15{left:194.080720pt;}
.x4c{left:195.360000pt;}
.x83{left:204.639918pt;}
.x8a{left:205.599918pt;}
.x89{left:206.560562pt;}
.x8d{left:208.479917pt;}
.x73{left:210.719916pt;}
.x38{left:212.959915pt;}
.x4e{left:217.599913pt;}
.x36{left:219.839912pt;}
.x58{left:222.720000pt;}
.xd{left:223.679915pt;}
.x2b{left:225.599910pt;}
.x17{left:227.199923pt;}
.x90{left:229.759754pt;}
.xb{left:231.039959pt;}
.x23{left:232.479907pt;}
.x12{left:234.079267pt;}
.x21{left:235.519906pt;}
.xe{left:238.079829pt;}
.x39{left:239.679904pt;}
.x75{left:240.959327pt;}
.xc{left:242.079854pt;}
.x88{left:243.839889pt;}
.x16{left:245.279902pt;}
.x4a{left:246.719996pt;}
.x13{left:249.439900pt;}
.x2d{left:252.319899pt;}
.x1c{left:254.559898pt;}
.x8{left:259.200887pt;}
.x6e{left:265.439894pt;}
.x91{left:268.159890pt;}
.x37{left:269.599892pt;}
.x4f{left:272.159891pt;}
.x76{left:274.240000pt;}
.x59{left:277.440000pt;}
.x45{left:280.959888pt;}
.x29{left:282.239887pt;}
.x77{left:284.479886pt;}
.x6a{left:286.559885pt;}
.x35{left:287.679885pt;}
.x26{left:290.400198pt;}
.x5a{left:292.639883pt;}
.x87{left:293.919882pt;}
.x3a{left:294.879882pt;}
.x22{left:300.319880pt;}
.x7b{left:301.279879pt;}
.x5b{left:304.640000pt;}
.x9{left:305.920863pt;}
.x2e{left:306.879877pt;}
.x44{left:310.879876pt;}
.x41{left:314.239874pt;}
.x6f{left:319.999872pt;}
.x50{left:326.879869pt;}
.x43{left:328.959868pt;}
.x5c{left:332.000000pt;}
.x46{left:334.879866pt;}
.x8f{left:338.399865pt;}
.x6b{left:341.279863pt;}
.x40{left:344.159862pt;}
.x5d{left:347.359861pt;}
.x3f{left:352.319445pt;}
.x51{left:354.239858pt;}
.x7c{left:355.999858pt;}
.x5e{left:359.360000pt;}
.x8e{left:360.959856pt;}
.x3e{left:362.239855pt;}
.x42{left:368.159853pt;}
.x70{left:374.719850pt;}
.x52{left:381.599847pt;}
.x7d{left:383.359847pt;}
.x5f{left:386.720000pt;}
.x6{left:392.799843pt;}
.x60{left:395.999842pt;}
.x71{left:402.079839pt;}
.x3{left:404.408000pt;}
.x53{left:408.959836pt;}
.x7e{left:410.719836pt;}
.x61{left:414.080000pt;}
.x78{left:420.000000pt;}
.x6c{left:423.359831pt;}
.x62{left:429.439828pt;}
.x54{left:436.159826pt;}
.x7f{left:437.919825pt;}
.x63{left:441.440000pt;}
.x6d{left:450.559820pt;}
.x64{left:456.639817pt;}
.x10{left:458.559817pt;}
.x55{left:463.519815pt;}
.x80{left:465.279814pt;}
.x65{left:468.640000pt;}
.x66{left:477.919809pt;}
.x72{left:483.999806pt;}
.x56{left:490.879804pt;}
.x81{left:492.639803pt;}
.x67{left:496.000000pt;}
.x85{left:497.920000pt;}
.x86{left:498.879800pt;}
.x1d{left:505.599798pt;}
.x79{left:507.520000pt;}
.x68{left:511.359795pt;}
.x57{left:518.239793pt;}
.x82{left:519.999792pt;}
.x69{left:523.360000pt;}
}




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