
    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_d4af466a9d6ebc3dc6d668e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_a492d6478208f8ef16a092da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_892c61db30db4ac3b347fac0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_9af39bcaf23c703df785ff12.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.085938;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_796f6f4b33f1c6c7b3cab252.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_5f3b62100a5e90b72aa64f30.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923828;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_171ed29a878cee1b3c9de635.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959961;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_dfdf678f97cb28158f236f4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.085938;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_23fd1fb72f4456cbc7a26033.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_e1c4e3d359d215afd7d17681.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959961;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6769bb0fb4077c5d225606cb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850098;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_d45e1d84d2eb05e88da5b8a2.woff2')format("woff");}.fff{font-family:fff;line-height:1.005859;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_fb77794bc30381f897069539.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005859;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_42a89d0832907fb376a9c372.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8eb4ee915253084445763268.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_b2905a85273c50999c2f7c92.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003906;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_4e196e54c2cee2045469d7de.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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_5cbc5d63d1979bbd3b424060.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.923828;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;}
.m7{transform:matrix(0.237284,0.000000,-0.079087,0.237161,0,0);-ms-transform:matrix(0.237284,0.000000,-0.079087,0.237161,0,0);-webkit-transform:matrix(0.237284,0.000000,-0.079087,0.237161,0,0);}
.m3{transform:matrix(0.237577,0.000000,-0.079184,0.237128,0,0);-ms-transform:matrix(0.237577,0.000000,-0.079184,0.237128,0,0);-webkit-transform:matrix(0.237577,0.000000,-0.079184,0.237128,0,0);}
.m5{transform:matrix(0.237794,0.000000,-0.079257,0.237104,0,0);-ms-transform:matrix(0.237794,0.000000,-0.079257,0.237104,0,0);-webkit-transform:matrix(0.237794,0.000000,-0.079257,0.237104,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);}
.m6{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252952,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:-27.360000px;}
.v4{vertical-align:-21.673879px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:33.120000px;}
.ls1f{letter-spacing:-1.548000px;}
.lsf{letter-spacing:-0.828000px;}
.ls31{letter-spacing:-0.804000px;}
.ls17{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.702000px;}
.ls2c{letter-spacing:-0.636000px;}
.ls2b{letter-spacing:-0.524400px;}
.ls22{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.232800px;}
.ls7{letter-spacing:-0.222600px;}
.ls19{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.152400px;}
.ls2d{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.010080px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010080px;}
.ls5{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.031680px;}
.ls16{letter-spacing:0.032400px;}
.ls1{letter-spacing:0.061200px;}
.ls29{letter-spacing:0.086400px;}
.ls1b{letter-spacing:0.097920px;}
.ls1e{letter-spacing:0.187200px;}
.ls1d{letter-spacing:0.192960px;}
.ls2a{letter-spacing:0.195600px;}
.ls2f{letter-spacing:0.195840px;}
.ls1a{letter-spacing:0.230400px;}
.lsd{letter-spacing:0.237600px;}
.ls15{letter-spacing:0.252000px;}
.ls14{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.302400px;}
.ls12{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.339840px;}
.ls3{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.403200px;}
.ls9{letter-spacing:0.600000px;}
.ls26{letter-spacing:5.620638px;}
.ls2e{letter-spacing:34.243200px;}
.ls25{letter-spacing:73.851840px;}
.ls23{letter-spacing:105.560785px;}
.ls24{letter-spacing:105.812935px;}
.ls20{letter-spacing:108.576617px;}
.ls21{letter-spacing:108.835970px;}
.ls30{letter-spacing:324.403200px;}
.ls27{letter-spacing:497.999979px;}
.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;}
}
.ws19{word-spacing:-543.843338px;}
.ws15{word-spacing:-66.240000px;}
.ws1c{word-spacing:-63.360000px;}
.ws4{word-spacing:-24.418800px;}
.wsd{word-spacing:-17.925240px;}
.wse{word-spacing:-17.882040px;}
.ws17{word-spacing:-17.619840px;}
.ws3{word-spacing:-17.510640px;}
.ws6{word-spacing:-16.891200px;}
.ws5{word-spacing:-16.560000px;}
.ws20{word-spacing:-16.462200px;}
.ws1e{word-spacing:-16.243200px;}
.ws7{word-spacing:-16.228800px;}
.ws1b{word-spacing:-16.156800px;}
.ws1d{word-spacing:-15.520800px;}
.wsb{word-spacing:-15.500160px;}
.ws22{word-spacing:-15.352800px;}
.ws10{word-spacing:-15.271200px;}
.ws2{word-spacing:-15.248880px;}
.ws0{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.016200px;}
.ws1f{word-spacing:-14.826240px;}
.ws21{word-spacing:-14.693640px;}
.ws9{word-spacing:-14.595840px;}
.wsa{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.022000px;}
.ws8{word-spacing:-13.983840px;}
.ws11{word-spacing:-13.770000px;}
.ws12{word-spacing:-13.590000px;}
.ws14{word-spacing:-0.066240px;}
.ws18{word-spacing:-0.053950px;}
.ws16{word-spacing:-0.053822px;}
.ws13{word-spacing:-0.041760px;}
.wsc{word-spacing:0.000000px;}
.ws1a{word-spacing:16.032650px;}
._3a{margin-left:-1313.355464px;}
._2c{margin-left:-213.123953px;}
._3b{margin-left:-17.100000px;}
._13{margin-left:-5.625360px;}
._11{margin-left:-4.313136px;}
._3{margin-left:-2.678784px;}
._1{margin-left:-1.012608px;}
._0{width:1.127520px;}
._6{width:2.242080px;}
._a{width:3.718800px;}
._14{width:4.865328px;}
._d{width:6.095520px;}
._10{width:7.776720px;}
._17{width:8.844336px;}
._7{width:9.868320px;}
._e{width:11.772720px;}
._f{width:13.035600px;}
._b{width:14.043600px;}
._12{width:15.233040px;}
._c{width:16.493760px;}
._8{width:18.346320px;}
._9{width:19.453680px;}
._4{width:21.274560px;}
._5{width:22.278240px;}
._15{width:23.780160px;}
._1b{width:25.303680px;}
._1c{width:26.562240px;}
._1a{width:28.104768px;}
._18{width:29.278080px;}
._19{width:30.602880px;}
._43{width:31.773504px;}
._42{width:33.440640px;}
._16{width:34.577280px;}
._37{width:38.000160px;}
._3f{width:50.181120px;}
._40{width:51.321600px;}
._1d{width:53.501760px;}
._21{width:67.347408px;}
._38{width:68.751168px;}
._3d{width:70.549104px;}
._35{width:71.631120px;}
._29{width:76.696608px;}
._30{width:83.032032px;}
._26{width:87.335040px;}
._3c{width:88.668720px;}
._2{width:89.710608px;}
._36{width:93.495120px;}
._2d{width:94.564080px;}
._41{width:95.985696px;}
._1f{width:97.434048px;}
._46{width:101.122560px;}
._44{width:102.199680px;}
._45{width:103.266912px;}
._28{width:105.447360px;}
._39{width:107.399808px;}
._31{width:209.416896px;}
._27{width:213.715488px;}
._48{width:217.877088px;}
._20{width:233.948160px;}
._34{width:238.394640px;}
._33{width:248.748480px;}
._2b{width:276.637440px;}
._2f{width:308.267040px;}
._47{width:324.529920px;}
._22{width:339.104640px;}
._1e{width:372.281856px;}
._32{width:374.137728px;}
._25{width:386.970864px;}
._2e{width:520.843584px;}
._2a{width:522.834528px;}
._24{width:575.047200px;}
._23{width:623.714640px;}
._3e{width:927.409728px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fsf{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fse{font-size:51.120000px;}
.fs15{font-size:53.821719px;}
.fs19{font-size:53.950282px;}
.fs2{font-size:54.000000px;}
.fs11{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fs12{font-size:59.904000px;}
.fs1d{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs13{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs1c{font-size:83.503386px;}
.fs1b{font-size:83.686370px;}
.fs14{font-size:83.752427px;}
.fs18{font-size:83.952484px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fs16{font-size:88.298600px;}
.fs17{font-size:88.307613px;}
.fs1a{font-size:88.497372px;}
.fsa{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fs10{font-size:282.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.720000px;}
.y194{bottom:0.750000px;}
.y18c{bottom:0.825000px;}
.y18a{bottom:0.870000px;}
.y198{bottom:0.930000px;}
.y1b8{bottom:1.005000px;}
.y18f{bottom:1.050000px;}
.y11{bottom:1.080000px;}
.y1d{bottom:1.980000px;}
.y143{bottom:3.060000px;}
.y7{bottom:3.420000px;}
.y55{bottom:3.600000px;}
.y97{bottom:3.780000px;}
.y109{bottom:3.930000px;}
.y5d{bottom:3.960000px;}
.y5a{bottom:4.140000px;}
.y11e{bottom:4.650000px;}
.y13c{bottom:5.325000px;}
.y12b{bottom:5.475000px;}
.yf{bottom:5.580000px;}
.y5{bottom:5.760000px;}
.y138{bottom:6.015000px;}
.y136{bottom:6.585000px;}
.y5c{bottom:8.100000px;}
.y1ef{bottom:9.214305px;}
.y1eb{bottom:9.234500px;}
.y1d6{bottom:9.258139px;}
.y1de{bottom:9.258144px;}
.y1dc{bottom:9.258152px;}
.y1dd{bottom:9.258158px;}
.y1e1{bottom:9.280254px;}
.y13a{bottom:9.690000px;}
.y15f{bottom:10.440000px;}
.y150{bottom:10.800000px;}
.y161{bottom:10.980000px;}
.yca{bottom:12.600000px;}
.y1c{bottom:14.400000px;}
.y147{bottom:17.820000px;}
.y168{bottom:18.000000px;}
.y15a{bottom:18.180000px;}
.y11b{bottom:18.285000px;}
.y14b{bottom:18.540000px;}
.y164{bottom:18.720000px;}
.y6{bottom:19.980000px;}
.y54{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y59{bottom:23.250000px;}
.y1ba{bottom:23.325000px;}
.y134{bottom:24.915000px;}
.y12a{bottom:25.635000px;}
.y14f{bottom:26.280000px;}
.y155{bottom:26.460000px;}
.y154{bottom:33.660000px;}
.ye{bottom:33.840000px;}
.y167{bottom:34.020000px;}
.y14a{bottom:34.200000px;}
.y163{bottom:34.380000px;}
.y11a{bottom:36.825000px;}
.y53{bottom:38.160000px;}
.y129{bottom:41.295000px;}
.y107{bottom:41.370000px;}
.y14e{bottom:41.940000px;}
.y15c{bottom:41.985000px;}
.y160{bottom:42.120000px;}
.y133{bottom:42.195000px;}
.y15e{bottom:42.300000px;}
.y153{bottom:49.500000px;}
.y146{bottom:49.680000px;}
.y15b{bottom:49.725000px;}
.y162{bottom:49.860000px;}
.y166{bottom:50.040000px;}
.y58{bottom:50.790000px;}
.y8{bottom:53.460000px;}
.y3{bottom:54.720000px;}
.y52{bottom:55.440000px;}
.y119{bottom:55.545000px;}
.y14d{bottom:57.600000px;}
.y128{bottom:61.275000px;}
.y57{bottom:61.770000px;}
.y149{bottom:65.340000px;}
.y152{bottom:65.520000px;}
.y145{bottom:65.700000px;}
.y132{bottom:68.475000px;}
.y51{bottom:72.720000px;}
.y14c{bottom:73.080000px;}
.y118{bottom:74.265000px;}
.y127{bottom:76.935000px;}
.y2{bottom:80.280000px;}
.y148{bottom:80.820000px;}
.y157{bottom:81.000000px;}
.y35{bottom:84.060000px;}
.y131{bottom:85.755000px;}
.y158{bottom:88.740000px;}
.y50{bottom:90.180000px;}
.y117{bottom:92.985000px;}
.y156{bottom:96.480000px;}
.y126{bottom:96.915000px;}
.y130{bottom:103.035000px;}
.y34{bottom:103.860000px;}
.y4f{bottom:107.460000px;}
.y16c{bottom:108.540000px;}
.yc8{bottom:108.900000px;}
.yd{bottom:111.060000px;}
.y116{bottom:111.705000px;}
.y188{bottom:114.480000px;}
.y94{bottom:115.920000px;}
.y125{bottom:117.075000px;}
.y105{bottom:120.600000px;}
.y33{bottom:121.860000px;}
.yfa{bottom:124.200000px;}
.y4e{bottom:124.740000px;}
.y238{bottom:126.720000px;}
.y16b{bottom:127.260000px;}
.yc7{bottom:127.620000px;}
.y12f{bottom:129.495000px;}
.y115{bottom:130.245000px;}
.y20f{bottom:131.580000px;}
.y124{bottom:132.735000px;}
.yc{bottom:133.200000px;}
.y32{bottom:133.740000px;}
.y93{bottom:134.640000px;}
.y104{bottom:139.320000px;}
.y4d{bottom:142.020000px;}
.yf9{bottom:142.920000px;}
.y187{bottom:143.100000px;}
.y56{bottom:143.640000px;}
.y237{bottom:145.260000px;}
.y16a{bottom:145.980000px;}
.yc6{bottom:146.340000px;}
.y12e{bottom:146.775000px;}
.y114{bottom:149.010000px;}
.y20e{bottom:150.300000px;}
.y31{bottom:151.020000px;}
.y123{bottom:152.715000px;}
.y92{bottom:153.210000px;}
.y1b5{bottom:156.090000px;}
.y103{bottom:158.070000px;}
.y4c{bottom:159.300000px;}
.y10b{bottom:160.530000px;}
.yf8{bottom:161.670000px;}
.y236{bottom:163.470000px;}
.yc5{bottom:165.090000px;}
.y30{bottom:168.300000px;}
.y122{bottom:168.375000px;}
.y186{bottom:168.690000px;}
.y20d{bottom:169.050000px;}
.y19a{bottom:169.560000px;}
.y1e0{bottom:169.815000px;}
.y91{bottom:171.930000px;}
.y12d{bottom:173.055000px;}
.y169{bottom:174.270000px;}
.y102{bottom:176.610000px;}
.y4b{bottom:176.760000px;}
.y1df{bottom:178.770000px;}
.yf7{bottom:180.210000px;}
.yc4{bottom:183.630000px;}
.y2f{bottom:185.625000px;}
.y235{bottom:186.510000px;}
.y20c{bottom:187.590000px;}
.y121{bottom:188.355000px;}
.y12c{bottom:190.335000px;}
.y90{bottom:190.650000px;}
.y195{bottom:192.420000px;}
.y196{bottom:193.140000px;}
.y4a{bottom:194.085000px;}
.y101{bottom:195.330000px;}
.y165{bottom:196.050000px;}
.ycc{bottom:198.930000px;}
.y1db{bottom:201.539980px;}
.yc3{bottom:202.350000px;}
.y2e{bottom:203.265000px;}
.y120{bottom:204.015000px;}
.y234{bottom:204.690000px;}
.y20b{bottom:206.310000px;}
.y8f{bottom:209.370000px;}
.y1da{bottom:210.450000px;}
.y49{bottom:211.365000px;}
.y100{bottom:214.050000px;}
.yf6{bottom:217.650000px;}
.y1e{bottom:219.090000px;}
.y2d{bottom:220.545000px;}
.yc2{bottom:221.070000px;}
.y20a{bottom:225.030000px;}
.y233{bottom:227.730000px;}
.y8e{bottom:227.910000px;}
.y48{bottom:228.645000px;}
.y193{bottom:230.220000px;}
.yff{bottom:232.770000px;}
.yf5{bottom:236.370000px;}
.y1d9{bottom:236.550000px;}
.y2c{bottom:237.825000px;}
.yc1{bottom:239.790000px;}
.y1b4{bottom:241.770000px;}
.y209{bottom:243.750000px;}
.y47{bottom:245.925000px;}
.y232{bottom:246.270000px;}
.y8d{bottom:246.630000px;}
.yfe{bottom:251.310000px;}
.yf4{bottom:254.910000px;}
.y2b{bottom:255.105000px;}
.y1d8{bottom:255.270000px;}
.y208{bottom:262.290000px;}
.y46{bottom:263.385000px;}
.y8c{bottom:265.350000px;}
.y231{bottom:268.950000px;}
.yc0{bottom:270.570000px;}
.y2a{bottom:272.385000px;}
.yf3{bottom:273.630000px;}
.y1d7{bottom:273.990000px;}
.yfd{bottom:279.750000px;}
.y19b{bottom:280.080000px;}
.y45{bottom:280.665000px;}
.y207{bottom:281.010000px;}
.y1b3{bottom:284.790000px;}
.y15d{bottom:286.590000px;}
.y230{bottom:287.490000px;}
.y1d5{bottom:289.365000px;}
.y8b{bottom:292.890000px;}
.y44{bottom:297.945000px;}
.y1d4{bottom:298.290000px;}
.yfc{bottom:299.190000px;}
.y206{bottom:299.730000px;}
.yf2{bottom:301.350000px;}
.ybf{bottom:304.050000px;}
.y22f{bottom:305.490000px;}
.y1b2{bottom:307.290000px;}
.y8a{bottom:311.610000px;}
.y43{bottom:315.225000px;}
.y205{bottom:318.450000px;}
.yf1{bottom:320.070000px;}
.yfb{bottom:320.430000px;}
.ybe{bottom:322.770000px;}
.y22e{bottom:328.170000px;}
.y1d3{bottom:329.790000px;}
.y89{bottom:330.330000px;}
.y42{bottom:332.505000px;}
.y204{bottom:336.990000px;}
.y29{bottom:337.365000px;}
.yf0{bottom:338.610000px;}
.ybd{bottom:341.490000px;}
.y22d{bottom:346.710000px;}
.y197{bottom:346.860000px;}
.y88{bottom:349.050000px;}
.y41{bottom:349.785000px;}
.y1b1{bottom:349.950000px;}
.y203{bottom:355.710000px;}
.y28{bottom:356.805000px;}
.yef{bottom:357.330000px;}
.ybc{bottom:360.030000px;}
.y1d2{bottom:361.470000px;}
.y159{bottom:361.830000px;}
.y22c{bottom:365.250000px;}
.y40{bottom:367.245000px;}
.y87{bottom:367.770000px;}
.y1b0{bottom:368.670000px;}
.y199{bottom:369.360000px;}
.y202{bottom:374.430000px;}
.y27{bottom:375.705000px;}
.yee{bottom:376.050000px;}
.ybb{bottom:378.750000px;}
.y3f{bottom:384.525000px;}
.y86{bottom:386.490000px;}
.y1af{bottom:387.390000px;}
.y22b{bottom:388.110000px;}
.y210{bottom:389.730000px;}
.y1d1{bottom:392.970000px;}
.y201{bottom:393.150000px;}
.y137{bottom:394.560000px;}
.yed{bottom:394.770000px;}
.y26{bottom:395.145000px;}
.yba{bottom:397.470000px;}
.y185{bottom:398.910000px;}
.y3e{bottom:401.805000px;}
.y85{bottom:405.075000px;}
.y1ae{bottom:406.155000px;}
.y22a{bottom:406.695000px;}
.y200{bottom:411.735000px;}
.yec{bottom:413.355000px;}
.y25{bottom:414.225000px;}
.yb9{bottom:416.235000px;}
.y184{bottom:417.675000px;}
.y3d{bottom:419.085000px;}
.y84{bottom:423.795000px;}
.y1ad{bottom:424.875000px;}
.y1ff{bottom:430.455000px;}
.yeb{bottom:432.075000px;}
.y11f{bottom:432.180000px;}
.y24{bottom:433.695000px;}
.yb8{bottom:434.775000px;}
.y1d0{bottom:435.855000px;}
.y183{bottom:436.215000px;}
.y3c{bottom:436.395000px;}
.y151{bottom:436.935000px;}
.y25b{bottom:439.275000px;}
.y83{bottom:442.515000px;}
.y1ac{bottom:443.415000px;}
.y229{bottom:447.735000px;}
.yea{bottom:450.795000px;}
.y23{bottom:452.595000px;}
.yb7{bottom:453.495000px;}
.y3b{bottom:453.855000px;}
.y1cf{bottom:454.575000px;}
.y182{bottom:454.935000px;}
.y82{bottom:461.235000px;}
.y1fe{bottom:461.415000px;}
.y25a{bottom:461.955000px;}
.y1ab{bottom:462.135000px;}
.y228{bottom:466.275000px;}
.ycb{bottom:468.795000px;}
.y3a{bottom:471.135000px;}
.y22{bottom:472.035000px;}
.yb6{bottom:472.215000px;}
.y181{bottom:473.655000px;}
.ye9{bottom:478.335000px;}
.y81{bottom:479.775000px;}
.y259{bottom:480.495000px;}
.y1aa{bottom:480.855000px;}
.y227{bottom:484.455000px;}
.y1ce{bottom:486.075000px;}
.y39{bottom:488.415000px;}
.yb5{bottom:490.935000px;}
.y21{bottom:491.115000px;}
.y180{bottom:492.375000px;}
.y1fd{bottom:494.715000px;}
.ye8{bottom:497.055000px;}
.y80{bottom:498.495000px;}
.y258{bottom:498.675000px;}
.y1a9{bottom:499.575000px;}
.y38{bottom:505.695000px;}
.y226{bottom:507.495000px;}
.yb4{bottom:509.475000px;}
.y20{bottom:510.555000px;}
.y17f{bottom:510.915000px;}
.y1fc{bottom:513.435000px;}
.ye7{bottom:515.775000px;}
.y7f{bottom:517.215000px;}
.y1a8{bottom:518.115000px;}
.y1cd{bottom:519.915000px;}
.y257{bottom:521.715000px;}
.y37{bottom:522.975000px;}
.y225{bottom:526.035000px;}
.y1fb{bottom:532.155000px;}
.y1f{bottom:534.135000px;}
.ye6{bottom:534.495000px;}
.y7e{bottom:535.935000px;}
.y1a7{bottom:536.835000px;}
.y17e{bottom:538.635000px;}
.y256{bottom:540.255000px;}
.y36{bottom:540.435000px;}
.y224{bottom:544.575000px;}
.y1fa{bottom:550.875000px;}
.y96{bottom:551.055000px;}
.ye5{bottom:553.215000px;}
.y7d{bottom:554.475000px;}
.y1a6{bottom:555.555000px;}
.y17d{bottom:557.355000px;}
.y144{bottom:558.795000px;}
.y1cc{bottom:562.755000px;}
.y223{bottom:567.795000px;}
.y1f9{bottom:569.595000px;}
.ye4{bottom:571.755000px;}
.y7c{bottom:573.195000px;}
.yb3{bottom:573.735000px;}
.y1a5{bottom:574.275000px;}
.y17c{bottom:576.075000px;}
.y255{bottom:581.295000px;}
.y1cb{bottom:581.475000px;}
.y222{bottom:585.975000px;}
.y1f8{bottom:588.135000px;}
.ye3{bottom:590.475000px;}
.y7b{bottom:591.915000px;}
.yb2{bottom:592.455000px;}
.y17b{bottom:594.615000px;}
.y254{bottom:599.475000px;}
.y1a4{bottom:601.815000px;}
.y221{bottom:604.515000px;}
.y1f7{bottom:606.855000px;}
.ye2{bottom:609.195000px;}
.y1ca{bottom:610.815000px;}
.yb1{bottom:611.175000px;}
.y17a{bottom:613.335000px;}
.y253{bottom:617.655000px;}
.y1a3{bottom:620.535000px;}
.y7a{bottom:622.695000px;}
.y220{bottom:623.055000px;}
.y1f6{bottom:625.575000px;}
.ye1{bottom:627.915000px;}
.y179{bottom:632.055000px;}
.yb0{bottom:638.895000px;}
.y1a2{bottom:639.255000px;}
.y252{bottom:640.335000px;}
.y21f{bottom:640.875000px;}
.y1c9{bottom:645.735000px;}
.ye0{bottom:646.455000px;}
.y178{bottom:650.805000px;}
.y1f5{bottom:653.145000px;}
.y79{bottom:656.205000px;}
.yaf{bottom:657.645000px;}
.y251{bottom:658.905000px;}
.y21e{bottom:663.585000px;}
.y142{bottom:665.025000px;}
.ydf{bottom:665.205000px;}
.y1a1{bottom:667.545000px;}
.y177{bottom:669.345000px;}
.y1f4{bottom:671.865000px;}
.y78{bottom:674.925000px;}
.y135{bottom:676.440000px;}
.y250{bottom:677.445000px;}
.y21d{bottom:682.125000px;}
.yde{bottom:683.925000px;}
.yae{bottom:685.185000px;}
.y176{bottom:688.065000px;}
.y1c8{bottom:688.605000px;}
.y1f3{bottom:690.585000px;}
.y77{bottom:693.645000px;}
.y24f{bottom:695.625000px;}
.y1a0{bottom:696.165000px;}
.y21c{bottom:700.305000px;}
.y141{bottom:701.205000px;}
.ydd{bottom:702.645000px;}
.yad{bottom:703.905000px;}
.y175{bottom:706.785000px;}
.y1f2{bottom:709.305000px;}
.y76{bottom:712.185000px;}
.y1c7{bottom:716.325000px;}
.y13b{bottom:716.760000px;}
.y19f{bottom:717.225000px;}
.y24e{bottom:718.305000px;}
.ydc{bottom:721.185000px;}
.yac{bottom:722.625000px;}
.y21b{bottom:723.165000px;}
.y174{bottom:725.505000px;}
.y1f1{bottom:728.025000px;}
.y140{bottom:730.185000px;}
.y75{bottom:730.905000px;}
.y24d{bottom:736.845000px;}
.ydb{bottom:739.905000px;}
.y21a{bottom:741.705000px;}
.y19e{bottom:742.785000px;}
.y1b7{bottom:743.400000px;}
.y13f{bottom:748.905000px;}
.y74{bottom:749.625000px;}
.yab{bottom:750.165000px;}
.y1ee{bottom:752.339919px;}
.y173{bottom:753.045000px;}
.y24c{bottom:755.565000px;}
.yda{bottom:758.625000px;}
.y1c6{bottom:759.165000px;}
.y1f0{bottom:759.885000px;}
.y10a{bottom:764.100000px;}
.y219{bottom:764.385000px;}
.y113{bottom:765.900000px;}
.y13e{bottom:767.625000px;}
.y73{bottom:768.345000px;}
.yaa{bottom:768.885000px;}
.y172{bottom:771.765000px;}
.y1b{bottom:773.385000px;}
.y1c5{bottom:777.885000px;}
.y24b{bottom:778.605000px;}
.y112{bottom:779.685000px;}
.y218{bottom:782.925000px;}
.y11c{bottom:784.185000px;}
.yd9{bottom:786.165000px;}
.y13d{bottom:786.345000px;}
.y72{bottom:786.885000px;}
.ya9{bottom:787.605000px;}
.y171{bottom:790.485000px;}
.y24a{bottom:797.145000px;}
.y1ed{bottom:799.125000px;}
.y217{bottom:801.645000px;}
.y111{bottom:803.985000px;}
.yd8{bottom:804.885000px;}
.y71{bottom:805.605000px;}
.ya8{bottom:815.325000px;}
.y1a{bottom:816.585000px;}
.y1ec{bottom:817.845000px;}
.y170{bottom:818.745000px;}
.y110{bottom:819.645000px;}
.y249{bottom:819.825000px;}
.y1c4{bottom:820.545000px;}
.yd7{bottom:823.605000px;}
.y70{bottom:824.325000px;}
.y1b9{bottom:825.120000px;}
.y216{bottom:825.225000px;}
.yc9{bottom:830.625000px;}
.y1ea{bottom:833.114919px;}
.y248{bottom:838.365000px;}
.y1c3{bottom:839.445000px;}
.y1e9{bottom:842.145000px;}
.yd6{bottom:842.325000px;}
.ya7{bottom:842.865000px;}
.y215{bottom:843.765000px;}
.y10f{bottom:844.305000px;}
.y19{bottom:845.925000px;}
.y16f{bottom:847.365000px;}
.y6f{bottom:851.865000px;}
.y247{bottom:857.085000px;}
.yd5{bottom:861.045000px;}
.ya6{bottom:861.585000px;}
.y16e{bottom:863.925000px;}
.y191{bottom:864.720000px;}
.y10e{bottom:868.785000px;}
.y6e{bottom:870.585000px;}
.y1c2{bottom:870.945000px;}
.y18{bottom:873.465000px;}
.y214{bottom:873.825000px;}
.y246{bottom:875.265000px;}
.yd4{bottom:879.585000px;}
.ya5{bottom:880.305000px;}
.y1e8{bottom:882.645000px;}
.y10d{bottom:884.445000px;}
.y17{bottom:886.425000px;}
.y18b{bottom:887.580000px;}
.y18d{bottom:888.300000px;}
.y6d{bottom:889.305000px;}
.y1c1{bottom:889.665000px;}
.yd3{bottom:898.350000px;}
.y245{bottom:898.530000px;}
.y16{bottom:902.310000px;}
.y213{bottom:907.350000px;}
.y6c{bottom:908.070000px;}
.y10c{bottom:908.970000px;}
.ya4{bottom:911.310000px;}
.yd2{bottom:917.070000px;}
.y1c0{bottom:924.630000px;}
.y189{bottom:925.380000px;}
.y212{bottom:926.070000px;}
.y6b{bottom:926.790000px;}
.y15{bottom:928.410000px;}
.y244{bottom:935.250000px;}
.yd1{bottom:935.790000px;}
.y1bf{bottom:943.350000px;}
.y1b6{bottom:943.380000px;}
.ya3{bottom:944.610000px;}
.y211{bottom:944.790000px;}
.y6a{bottom:945.330000px;}
.y1e7{bottom:948.030000px;}
.y14{bottom:951.090000px;}
.yd0{bottom:954.330000px;}
.y243{bottom:957.930000px;}
.ya2{bottom:963.330000px;}
.y69{bottom:964.050000px;}
.y1e6{bottom:966.930000px;}
.y11d{bottom:971.100000px;}
.ycf{bottom:973.050000px;}
.y192{bottom:975.240000px;}
.y242{bottom:976.470000px;}
.ya1{bottom:982.050000px;}
.y68{bottom:982.770000px;}
.y1be{bottom:986.190000px;}
.y13{bottom:986.370000px;}
.yce{bottom:991.770000px;}
.y241{bottom:995.010000px;}
.y1e5{bottom:998.430000px;}
.ya0{bottom:1000.770000px;}
.y67{bottom:1001.490000px;}
.y19d{bottom:1010.490000px;}
.y240{bottom:1013.730000px;}
.y12{bottom:1015.890000px;}
.y139{bottom:1016.460000px;}
.ycd{bottom:1019.310000px;}
.y9f{bottom:1019.490000px;}
.y66{bottom:1020.030000px;}
.y19c{bottom:1029.030000px;}
.y1e4{bottom:1029.930000px;}
.y10{bottom:1030.830000px;}
.y9{bottom:1036.050000px;}
.yb{bottom:1036.080000px;}
.y23f{bottom:1036.230000px;}
.y9e{bottom:1038.030000px;}
.y65{bottom:1038.750000px;}
.y18e{bottom:1042.020000px;}
.y23e{bottom:1054.770000px;}
.y9d{bottom:1056.750000px;}
.y64{bottom:1057.470000px;}
.y1e3{bottom:1063.770000px;}
.y190{bottom:1064.520000px;}
.y1bd{bottom:1071.870000px;}
.y95{bottom:1072.770000px;}
.y23d{bottom:1072.950000px;}
.y9c{bottom:1075.470000px;}
.y63{bottom:1076.190000px;}
.y16d{bottom:1094.010000px;}
.y9b{bottom:1094.190000px;}
.y62{bottom:1094.730000px;}
.y23c{bottom:1095.630000px;}
.y106{bottom:1096.020000px;}
.y1e2{bottom:1097.610000px;}
.y1bc{bottom:1105.710000px;}
.y9a{bottom:1112.730000px;}
.y61{bottom:1113.450000px;}
.y23b{bottom:1114.170000px;}
.y108{bottom:1118.670000px;}
.y99{bottom:1131.450000px;}
.y23a{bottom:1132.710000px;}
.y1bb{bottom:1137.390000px;}
.y60{bottom:1144.410000px;}
.y98{bottom:1150.200000px;}
.y239{bottom:1150.920000px;}
.y5f{bottom:1166.400000px;}
.y5e{bottom:1170.540000px;}
.y5b{bottom:1187.820000px;}
.y1{bottom:1192.680000px;}
.h9{height:4.320000px;}
.h10{height:5.220000px;}
.h11{height:12.832031px;}
.h36{height:15.840000px;}
.h3f{height:16.560000px;}
.h3d{height:16.740000px;}
.h7{height:17.820000px;}
.h5{height:17.903320px;}
.h2f{height:18.720000px;}
.h25{height:18.738281px;}
.h35{height:19.980000px;}
.h32{height:21.240000px;}
.h23{height:21.960000px;}
.h31{height:22.500000px;}
.h4{height:25.380000px;}
.hd{height:25.664062px;}
.h1f{height:27.000000px;}
.h34{height:28.080000px;}
.h17{height:29.770312px;}
.h1a{height:30.060000px;}
.h41{height:31.650384px;}
.h45{height:31.650405px;}
.h47{height:31.725987px;}
.h12{height:34.389844px;}
.h4d{height:34.500009px;}
.h4b{height:34.575610px;}
.h37{height:38.496094px;}
.h40{height:39.240000px;}
.h16{height:41.974453px;}
.h14{height:42.602344px;}
.h24{height:43.472812px;}
.h22{height:44.820000px;}
.h2c{height:46.986328px;}
.h2d{height:47.111625px;}
.h1b{height:47.221875px;}
.h1d{height:49.680000px;}
.h18{height:51.328125px;}
.h1e{height:51.998203px;}
.h3{height:53.709961px;}
.h8{height:54.000000px;}
.h51{height:55.130625px;}
.h2a{height:55.260000px;}
.h4f{height:55.440000px;}
.h20{height:55.825312px;}
.h26{height:55.980000px;}
.h50{height:56.016000px;}
.h28{height:56.160000px;}
.h19{height:57.636562px;}
.h33{height:57.761859px;}
.h42{height:58.152320px;}
.h48{height:58.291227px;}
.hb{height:60.053906px;}
.he{height:60.156562px;}
.h44{height:61.308891px;}
.h46{height:61.315149px;}
.h4a{height:61.446905px;}
.h3a{height:62.316000px;}
.h3b{height:62.460000px;}
.h6{height:62.648438px;}
.h52{height:63.019687px;}
.h29{height:64.980000px;}
.h3e{height:65.884219px;}
.hf{height:68.266406px;}
.h15{height:73.298672px;}
.h2{height:73.722656px;}
.h21{height:75.456000px;}
.h13{height:76.992188px;}
.h3c{height:77.940000px;}
.h4e{height:81.913233px;}
.h4c{height:82.092733px;}
.h43{height:82.157532px;}
.h49{height:82.353779px;}
.h38{height:93.456000px;}
.h39{height:109.080000px;}
.hc{height:141.840000px;}
.ha{height:141.876000px;}
.h2e{height:176.220000px;}
.h2b{height:176.400000px;}
.h27{height:211.680000px;}
.h30{height:216.720000px;}
.h1c{height:554.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:12.060000px;}
.w1f{width:12.240000px;}
.we{width:19.800000px;}
.w25{width:22.874240px;}
.w20{width:25.560000px;}
.w1d{width:25.740000px;}
.wf{width:43.200000px;}
.wd{width:51.120000px;}
.w21{width:52.740000px;}
.w10{width:58.860000px;}
.w22{width:73.424244px;}
.w23{width:73.498732px;}
.w24{width:73.498742px;}
.w18{width:95.760000px;}
.w5{width:117.000000px;}
.w1b{width:142.956000px;}
.w9{width:149.040000px;}
.w1c{width:154.650000px;}
.w19{width:162.750000px;}
.w1a{width:166.890000px;}
.w15{width:194.940000px;}
.w13{width:198.180000px;}
.w8{width:204.915000px;}
.w26{width:238.720250px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w12{width:322.020000px;}
.wb{width:361.110000px;}
.wc{width:361.155000px;}
.w16{width:441.360000px;}
.w14{width:441.540000px;}
.w17{width:455.940000px;}
.wa{width:578.310000px;}
.w6{width:606.060000px;}
.w7{width:606.210000px;}
.w11{width:715.680000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x54{left:1.650000px;}
.x62{left:3.316220px;}
.x29{left:5.505000px;}
.x4f{left:6.660000px;}
.x16{left:8.100000px;}
.x3d{left:9.180000px;}
.x4b{left:10.260000px;}
.x4c{left:12.060000px;}
.x23{left:13.176000px;}
.x43{left:15.120000px;}
.x49{left:16.740000px;}
.x42{left:18.000000px;}
.x34{left:19.440000px;}
.x3f{left:20.700000px;}
.x47{left:21.960000px;}
.x2c{left:23.655000px;}
.x41{left:25.740000px;}
.x46{left:27.720000px;}
.x44{left:29.880000px;}
.x48{left:30.960000px;}
.x45{left:32.940000px;}
.x3a{left:36.540000px;}
.x4e{left:37.800000px;}
.x4d{left:39.780000px;}
.x3e{left:41.040000px;}
.x4a{left:42.480000px;}
.x51{left:43.560000px;}
.x3c{left:45.360000px;}
.x36{left:46.620000px;}
.x31{left:49.215000px;}
.x40{left:51.480000px;}
.x63{left:54.536100px;}
.x50{left:55.980000px;}
.xe{left:61.740000px;}
.x38{left:66.600000px;}
.x30{left:83.775000px;}
.x3{left:84.996000px;}
.x11{left:86.975987px;}
.x22{left:92.700000px;}
.x15{left:95.615987px;}
.x60{left:99.575987px;}
.x10{left:102.285000px;}
.x1c{left:104.795987px;}
.x24{left:106.235987px;}
.x6{left:111.060000px;}
.x32{left:112.395000px;}
.x5{left:120.240000px;}
.x65{left:125.339990px;}
.x5a{left:127.475987px;}
.x9{left:128.694000px;}
.x1a{left:136.115987px;}
.x5f{left:137.735987px;}
.x20{left:140.075987px;}
.x1f{left:143.855987px;}
.xd{left:159.345000px;}
.x5c{left:162.569987px;}
.x5e{left:176.069987px;}
.x58{left:178.920000px;}
.x35{left:180.750000px;}
.x57{left:182.880000px;}
.x25{left:190.335000px;}
.x66{left:198.749987px;}
.xa{left:201.960000px;}
.x26{left:218.340000px;}
.x2d{left:219.960000px;}
.x27{left:226.289987px;}
.xc{left:229.755000px;}
.x17{left:234.030000px;}
.x53{left:237.060000px;}
.x12{left:248.069987px;}
.x8{left:250.815000px;}
.x21{left:257.789987px;}
.x67{left:273.839980px;}
.x33{left:282.960000px;}
.x2b{left:284.220000px;}
.x2f{left:285.300000px;}
.xb{left:303.045000px;}
.x4{left:325.875000px;}
.x18{left:328.755000px;}
.x1e{left:339.734987px;}
.x37{left:343.515000px;}
.x68{left:347.294987px;}
.x14{left:349.274987px;}
.x1d{left:358.634987px;}
.x1b{left:362.234987px;}
.x55{left:372.060000px;}
.x6b{left:383.115000px;}
.x19{left:388.334987px;}
.x6d{left:389.594987px;}
.x6e{left:396.614987px;}
.x61{left:415.889959px;}
.x13{left:446.504987px;}
.x64{left:489.344987px;}
.x39{left:510.405000px;}
.x28{left:544.860000px;}
.x2e{left:545.940000px;}
.x56{left:550.080000px;}
.x1{left:561.164987px;}
.x7{left:566.565000px;}
.xf{left:603.285000px;}
.x69{left:620.564987px;}
.x6c{left:621.824987px;}
.x59{left:635.580000px;}
.x5b{left:639.000000px;}
.x3b{left:653.370000px;}
.x5d{left:667.049987px;}
.x2a{left:687.569987px;}
.x52{left:714.749987px;}
.x6a{left:785.039919px;}
.x2{left:808.019987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-19.265670pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:29.440000pt;}
.ls1f{letter-spacing:-1.376000pt;}
.lsf{letter-spacing:-0.736000pt;}
.ls31{letter-spacing:-0.714667pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.624000pt;}
.ls2c{letter-spacing:-0.565333pt;}
.ls2b{letter-spacing:-0.466133pt;}
.ls22{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.206933pt;}
.ls7{letter-spacing:-0.197867pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.135467pt;}
.ls2d{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.008960pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.008960pt;}
.ls5{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.028160pt;}
.ls16{letter-spacing:0.028800pt;}
.ls1{letter-spacing:0.054400pt;}
.ls29{letter-spacing:0.076800pt;}
.ls1b{letter-spacing:0.087040pt;}
.ls1e{letter-spacing:0.166400pt;}
.ls1d{letter-spacing:0.171520pt;}
.ls2a{letter-spacing:0.173867pt;}
.ls2f{letter-spacing:0.174080pt;}
.ls1a{letter-spacing:0.204800pt;}
.lsd{letter-spacing:0.211200pt;}
.ls15{letter-spacing:0.224000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.268800pt;}
.ls12{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.302080pt;}
.ls3{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.358400pt;}
.ls9{letter-spacing:0.533333pt;}
.ls26{letter-spacing:4.996122pt;}
.ls2e{letter-spacing:30.438400pt;}
.ls25{letter-spacing:65.646080pt;}
.ls23{letter-spacing:93.831809pt;}
.ls24{letter-spacing:94.055943pt;}
.ls20{letter-spacing:96.512548pt;}
.ls21{letter-spacing:96.743085pt;}
.ls30{letter-spacing:288.358400pt;}
.ls27{letter-spacing:442.666648pt;}
.ws19{word-spacing:-483.416300pt;}
.ws15{word-spacing:-58.880000pt;}
.ws1c{word-spacing:-56.320000pt;}
.ws4{word-spacing:-21.705600pt;}
.wsd{word-spacing:-15.933547pt;}
.wse{word-spacing:-15.895147pt;}
.ws17{word-spacing:-15.662080pt;}
.ws3{word-spacing:-15.565013pt;}
.ws6{word-spacing:-15.014400pt;}
.ws5{word-spacing:-14.720000pt;}
.ws20{word-spacing:-14.633067pt;}
.ws1e{word-spacing:-14.438400pt;}
.ws7{word-spacing:-14.425600pt;}
.ws1b{word-spacing:-14.361600pt;}
.ws1d{word-spacing:-13.796267pt;}
.wsb{word-spacing:-13.777920pt;}
.ws22{word-spacing:-13.646933pt;}
.ws10{word-spacing:-13.574400pt;}
.ws2{word-spacing:-13.554560pt;}
.ws0{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.347733pt;}
.ws1f{word-spacing:-13.178880pt;}
.ws21{word-spacing:-13.061013pt;}
.ws9{word-spacing:-12.974080pt;}
.wsa{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.464000pt;}
.ws8{word-spacing:-12.430080pt;}
.ws11{word-spacing:-12.240000pt;}
.ws12{word-spacing:-12.080000pt;}
.ws14{word-spacing:-0.058880pt;}
.ws18{word-spacing:-0.047956pt;}
.ws16{word-spacing:-0.047842pt;}
.ws13{word-spacing:-0.037120pt;}
.wsc{word-spacing:0.000000pt;}
.ws1a{word-spacing:14.251244pt;}
._3a{margin-left:-1167.427079pt;}
._2c{margin-left:-189.443514pt;}
._3b{margin-left:-15.200000pt;}
._13{margin-left:-5.000320pt;}
._11{margin-left:-3.833899pt;}
._3{margin-left:-2.381141pt;}
._1{margin-left:-0.900096pt;}
._0{width:1.002240pt;}
._6{width:1.992960pt;}
._a{width:3.305600pt;}
._14{width:4.324736pt;}
._d{width:5.418240pt;}
._10{width:6.912640pt;}
._17{width:7.861632pt;}
._7{width:8.771840pt;}
._e{width:10.464640pt;}
._f{width:11.587200pt;}
._b{width:12.483200pt;}
._12{width:13.540480pt;}
._c{width:14.661120pt;}
._8{width:16.307840pt;}
._9{width:17.292160pt;}
._4{width:18.910720pt;}
._5{width:19.802880pt;}
._15{width:21.137920pt;}
._1b{width:22.492160pt;}
._1c{width:23.610880pt;}
._1a{width:24.982016pt;}
._18{width:26.024960pt;}
._19{width:27.202560pt;}
._43{width:28.243115pt;}
._42{width:29.725013pt;}
._16{width:30.735360pt;}
._37{width:33.777920pt;}
._3f{width:44.605440pt;}
._40{width:45.619200pt;}
._1d{width:47.557120pt;}
._21{width:59.864363pt;}
._38{width:61.112149pt;}
._3d{width:62.710315pt;}
._35{width:63.672107pt;}
._29{width:68.174763pt;}
._30{width:73.806251pt;}
._26{width:77.631147pt;}
._3c{width:78.816640pt;}
._2{width:79.742763pt;}
._36{width:83.106773pt;}
._2d{width:84.056960pt;}
._41{width:85.320619pt;}
._1f{width:86.608043pt;}
._46{width:89.886720pt;}
._44{width:90.844160pt;}
._45{width:91.792811pt;}
._28{width:93.730987pt;}
._39{width:95.466496pt;}
._31{width:186.148352pt;}
._27{width:189.969323pt;}
._48{width:193.668523pt;}
._20{width:207.953920pt;}
._34{width:211.906347pt;}
._33{width:221.109760pt;}
._2b{width:245.899947pt;}
._2f{width:274.015147pt;}
._47{width:288.471040pt;}
._22{width:301.426347pt;}
._1e{width:330.917205pt;}
._32{width:332.566869pt;}
._25{width:343.974101pt;}
._2e{width:462.972075pt;}
._2a{width:464.741803pt;}
._24{width:511.153067pt;}
._23{width:554.413013pt;}
._3e{width:824.364203pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fsf{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fse{font-size:45.440000pt;}
.fs15{font-size:47.841528pt;}
.fs19{font-size:47.955806pt;}
.fs2{font-size:48.000000pt;}
.fs11{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fs12{font-size:53.248000pt;}
.fs1d{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs13{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs1c{font-size:74.225232pt;}
.fs1b{font-size:74.387884pt;}
.fs14{font-size:74.446602pt;}
.fs18{font-size:74.624430pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fs16{font-size:78.487644pt;}
.fs17{font-size:78.495656pt;}
.fs1a{font-size:78.664330pt;}
.fsa{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fs10{font-size:250.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.640000pt;}
.y194{bottom:0.666667pt;}
.y18c{bottom:0.733333pt;}
.y18a{bottom:0.773333pt;}
.y198{bottom:0.826667pt;}
.y1b8{bottom:0.893333pt;}
.y18f{bottom:0.933333pt;}
.y11{bottom:0.960000pt;}
.y1d{bottom:1.760000pt;}
.y143{bottom:2.720000pt;}
.y7{bottom:3.040000pt;}
.y55{bottom:3.200000pt;}
.y97{bottom:3.360000pt;}
.y109{bottom:3.493333pt;}
.y5d{bottom:3.520000pt;}
.y5a{bottom:3.680000pt;}
.y11e{bottom:4.133333pt;}
.y13c{bottom:4.733333pt;}
.y12b{bottom:4.866667pt;}
.yf{bottom:4.960000pt;}
.y5{bottom:5.120000pt;}
.y138{bottom:5.346667pt;}
.y136{bottom:5.853333pt;}
.y5c{bottom:7.200000pt;}
.y1ef{bottom:8.190494pt;}
.y1eb{bottom:8.208444pt;}
.y1d6{bottom:8.229457pt;}
.y1de{bottom:8.229462pt;}
.y1dc{bottom:8.229468pt;}
.y1dd{bottom:8.229474pt;}
.y1e1{bottom:8.249114pt;}
.y13a{bottom:8.613333pt;}
.y15f{bottom:9.280000pt;}
.y150{bottom:9.600000pt;}
.y161{bottom:9.760000pt;}
.yca{bottom:11.200000pt;}
.y1c{bottom:12.800000pt;}
.y147{bottom:15.840000pt;}
.y168{bottom:16.000000pt;}
.y15a{bottom:16.160000pt;}
.y11b{bottom:16.253333pt;}
.y14b{bottom:16.480000pt;}
.y164{bottom:16.640000pt;}
.y6{bottom:17.760000pt;}
.y54{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y59{bottom:20.666667pt;}
.y1ba{bottom:20.733333pt;}
.y134{bottom:22.146667pt;}
.y12a{bottom:22.786667pt;}
.y14f{bottom:23.360000pt;}
.y155{bottom:23.520000pt;}
.y154{bottom:29.920000pt;}
.ye{bottom:30.080000pt;}
.y167{bottom:30.240000pt;}
.y14a{bottom:30.400000pt;}
.y163{bottom:30.560000pt;}
.y11a{bottom:32.733333pt;}
.y53{bottom:33.920000pt;}
.y129{bottom:36.706667pt;}
.y107{bottom:36.773333pt;}
.y14e{bottom:37.280000pt;}
.y15c{bottom:37.320000pt;}
.y160{bottom:37.440000pt;}
.y133{bottom:37.506667pt;}
.y15e{bottom:37.600000pt;}
.y153{bottom:44.000000pt;}
.y146{bottom:44.160000pt;}
.y15b{bottom:44.200000pt;}
.y162{bottom:44.320000pt;}
.y166{bottom:44.480000pt;}
.y58{bottom:45.146667pt;}
.y8{bottom:47.520000pt;}
.y3{bottom:48.640000pt;}
.y52{bottom:49.280000pt;}
.y119{bottom:49.373333pt;}
.y14d{bottom:51.200000pt;}
.y128{bottom:54.466667pt;}
.y57{bottom:54.906667pt;}
.y149{bottom:58.080000pt;}
.y152{bottom:58.240000pt;}
.y145{bottom:58.400000pt;}
.y132{bottom:60.866667pt;}
.y51{bottom:64.640000pt;}
.y14c{bottom:64.960000pt;}
.y118{bottom:66.013333pt;}
.y127{bottom:68.386667pt;}
.y2{bottom:71.360000pt;}
.y148{bottom:71.840000pt;}
.y157{bottom:72.000000pt;}
.y35{bottom:74.720000pt;}
.y131{bottom:76.226667pt;}
.y158{bottom:78.880000pt;}
.y50{bottom:80.160000pt;}
.y117{bottom:82.653333pt;}
.y156{bottom:85.760000pt;}
.y126{bottom:86.146667pt;}
.y130{bottom:91.586667pt;}
.y34{bottom:92.320000pt;}
.y4f{bottom:95.520000pt;}
.y16c{bottom:96.480000pt;}
.yc8{bottom:96.800000pt;}
.yd{bottom:98.720000pt;}
.y116{bottom:99.293333pt;}
.y188{bottom:101.760000pt;}
.y94{bottom:103.040000pt;}
.y125{bottom:104.066667pt;}
.y105{bottom:107.200000pt;}
.y33{bottom:108.320000pt;}
.yfa{bottom:110.400000pt;}
.y4e{bottom:110.880000pt;}
.y238{bottom:112.640000pt;}
.y16b{bottom:113.120000pt;}
.yc7{bottom:113.440000pt;}
.y12f{bottom:115.106667pt;}
.y115{bottom:115.773333pt;}
.y20f{bottom:116.960000pt;}
.y124{bottom:117.986667pt;}
.yc{bottom:118.400000pt;}
.y32{bottom:118.880000pt;}
.y93{bottom:119.680000pt;}
.y104{bottom:123.840000pt;}
.y4d{bottom:126.240000pt;}
.yf9{bottom:127.040000pt;}
.y187{bottom:127.200000pt;}
.y56{bottom:127.680000pt;}
.y237{bottom:129.120000pt;}
.y16a{bottom:129.760000pt;}
.yc6{bottom:130.080000pt;}
.y12e{bottom:130.466667pt;}
.y114{bottom:132.453333pt;}
.y20e{bottom:133.600000pt;}
.y31{bottom:134.240000pt;}
.y123{bottom:135.746667pt;}
.y92{bottom:136.186667pt;}
.y1b5{bottom:138.746667pt;}
.y103{bottom:140.506667pt;}
.y4c{bottom:141.600000pt;}
.y10b{bottom:142.693333pt;}
.yf8{bottom:143.706667pt;}
.y236{bottom:145.306667pt;}
.yc5{bottom:146.746667pt;}
.y30{bottom:149.600000pt;}
.y122{bottom:149.666667pt;}
.y186{bottom:149.946667pt;}
.y20d{bottom:150.266667pt;}
.y19a{bottom:150.720000pt;}
.y1e0{bottom:150.946667pt;}
.y91{bottom:152.826667pt;}
.y12d{bottom:153.826667pt;}
.y169{bottom:154.906667pt;}
.y102{bottom:156.986667pt;}
.y4b{bottom:157.120000pt;}
.y1df{bottom:158.906667pt;}
.yf7{bottom:160.186667pt;}
.yc4{bottom:163.226667pt;}
.y2f{bottom:165.000000pt;}
.y235{bottom:165.786667pt;}
.y20c{bottom:166.746667pt;}
.y121{bottom:167.426667pt;}
.y12c{bottom:169.186667pt;}
.y90{bottom:169.466667pt;}
.y195{bottom:171.040000pt;}
.y196{bottom:171.680000pt;}
.y4a{bottom:172.520000pt;}
.y101{bottom:173.626667pt;}
.y165{bottom:174.266667pt;}
.ycc{bottom:176.826667pt;}
.y1db{bottom:179.146649pt;}
.yc3{bottom:179.866667pt;}
.y2e{bottom:180.680000pt;}
.y120{bottom:181.346667pt;}
.y234{bottom:181.946667pt;}
.y20b{bottom:183.386667pt;}
.y8f{bottom:186.106667pt;}
.y1da{bottom:187.066667pt;}
.y49{bottom:187.880000pt;}
.y100{bottom:190.266667pt;}
.yf6{bottom:193.466667pt;}
.y1e{bottom:194.746667pt;}
.y2d{bottom:196.040000pt;}
.yc2{bottom:196.506667pt;}
.y20a{bottom:200.026667pt;}
.y233{bottom:202.426667pt;}
.y8e{bottom:202.586667pt;}
.y48{bottom:203.240000pt;}
.y193{bottom:204.640000pt;}
.yff{bottom:206.906667pt;}
.yf5{bottom:210.106667pt;}
.y1d9{bottom:210.266667pt;}
.y2c{bottom:211.400000pt;}
.yc1{bottom:213.146667pt;}
.y1b4{bottom:214.906667pt;}
.y209{bottom:216.666667pt;}
.y47{bottom:218.600000pt;}
.y232{bottom:218.906667pt;}
.y8d{bottom:219.226667pt;}
.yfe{bottom:223.386667pt;}
.yf4{bottom:226.586667pt;}
.y2b{bottom:226.760000pt;}
.y1d8{bottom:226.906667pt;}
.y208{bottom:233.146667pt;}
.y46{bottom:234.120000pt;}
.y8c{bottom:235.866667pt;}
.y231{bottom:239.066667pt;}
.yc0{bottom:240.506667pt;}
.y2a{bottom:242.120000pt;}
.yf3{bottom:243.226667pt;}
.y1d7{bottom:243.546667pt;}
.yfd{bottom:248.666667pt;}
.y19b{bottom:248.960000pt;}
.y45{bottom:249.480000pt;}
.y207{bottom:249.786667pt;}
.y1b3{bottom:253.146667pt;}
.y15d{bottom:254.746667pt;}
.y230{bottom:255.546667pt;}
.y1d5{bottom:257.213333pt;}
.y8b{bottom:260.346667pt;}
.y44{bottom:264.840000pt;}
.y1d4{bottom:265.146667pt;}
.yfc{bottom:265.946667pt;}
.y206{bottom:266.426667pt;}
.yf2{bottom:267.866667pt;}
.ybf{bottom:270.266667pt;}
.y22f{bottom:271.546667pt;}
.y1b2{bottom:273.146667pt;}
.y8a{bottom:276.986667pt;}
.y43{bottom:280.200000pt;}
.y205{bottom:283.066667pt;}
.yf1{bottom:284.506667pt;}
.yfb{bottom:284.826667pt;}
.ybe{bottom:286.906667pt;}
.y22e{bottom:291.706667pt;}
.y1d3{bottom:293.146667pt;}
.y89{bottom:293.626667pt;}
.y42{bottom:295.560000pt;}
.y204{bottom:299.546667pt;}
.y29{bottom:299.880000pt;}
.yf0{bottom:300.986667pt;}
.ybd{bottom:303.546667pt;}
.y22d{bottom:308.186667pt;}
.y197{bottom:308.320000pt;}
.y88{bottom:310.266667pt;}
.y41{bottom:310.920000pt;}
.y1b1{bottom:311.066667pt;}
.y203{bottom:316.186667pt;}
.y28{bottom:317.160000pt;}
.yef{bottom:317.626667pt;}
.ybc{bottom:320.026667pt;}
.y1d2{bottom:321.306667pt;}
.y159{bottom:321.626667pt;}
.y22c{bottom:324.666667pt;}
.y40{bottom:326.440000pt;}
.y87{bottom:326.906667pt;}
.y1b0{bottom:327.706667pt;}
.y199{bottom:328.320000pt;}
.y202{bottom:332.826667pt;}
.y27{bottom:333.960000pt;}
.yee{bottom:334.266667pt;}
.ybb{bottom:336.666667pt;}
.y3f{bottom:341.800000pt;}
.y86{bottom:343.546667pt;}
.y1af{bottom:344.346667pt;}
.y22b{bottom:344.986667pt;}
.y210{bottom:346.426667pt;}
.y1d1{bottom:349.306667pt;}
.y201{bottom:349.466667pt;}
.y137{bottom:350.720000pt;}
.yed{bottom:350.906667pt;}
.y26{bottom:351.240000pt;}
.yba{bottom:353.306667pt;}
.y185{bottom:354.586667pt;}
.y3e{bottom:357.160000pt;}
.y85{bottom:360.066667pt;}
.y1ae{bottom:361.026667pt;}
.y22a{bottom:361.506667pt;}
.y200{bottom:365.986667pt;}
.yec{bottom:367.426667pt;}
.y25{bottom:368.200000pt;}
.yb9{bottom:369.986667pt;}
.y184{bottom:371.266667pt;}
.y3d{bottom:372.520000pt;}
.y84{bottom:376.706667pt;}
.y1ad{bottom:377.666667pt;}
.y1ff{bottom:382.626667pt;}
.yeb{bottom:384.066667pt;}
.y11f{bottom:384.160000pt;}
.y24{bottom:385.506667pt;}
.yb8{bottom:386.466667pt;}
.y1d0{bottom:387.426667pt;}
.y183{bottom:387.746667pt;}
.y3c{bottom:387.906667pt;}
.y151{bottom:388.386667pt;}
.y25b{bottom:390.466667pt;}
.y83{bottom:393.346667pt;}
.y1ac{bottom:394.146667pt;}
.y229{bottom:397.986667pt;}
.yea{bottom:400.706667pt;}
.y23{bottom:402.306667pt;}
.yb7{bottom:403.106667pt;}
.y3b{bottom:403.426667pt;}
.y1cf{bottom:404.066667pt;}
.y182{bottom:404.386667pt;}
.y82{bottom:409.986667pt;}
.y1fe{bottom:410.146667pt;}
.y25a{bottom:410.626667pt;}
.y1ab{bottom:410.786667pt;}
.y228{bottom:414.466667pt;}
.ycb{bottom:416.706667pt;}
.y3a{bottom:418.786667pt;}
.y22{bottom:419.586667pt;}
.yb6{bottom:419.746667pt;}
.y181{bottom:421.026667pt;}
.ye9{bottom:425.186667pt;}
.y81{bottom:426.466667pt;}
.y259{bottom:427.106667pt;}
.y1aa{bottom:427.426667pt;}
.y227{bottom:430.626667pt;}
.y1ce{bottom:432.066667pt;}
.y39{bottom:434.146667pt;}
.yb5{bottom:436.386667pt;}
.y21{bottom:436.546667pt;}
.y180{bottom:437.666667pt;}
.y1fd{bottom:439.746667pt;}
.ye8{bottom:441.826667pt;}
.y80{bottom:443.106667pt;}
.y258{bottom:443.266667pt;}
.y1a9{bottom:444.066667pt;}
.y38{bottom:449.506667pt;}
.y226{bottom:451.106667pt;}
.yb4{bottom:452.866667pt;}
.y20{bottom:453.826667pt;}
.y17f{bottom:454.146667pt;}
.y1fc{bottom:456.386667pt;}
.ye7{bottom:458.466667pt;}
.y7f{bottom:459.746667pt;}
.y1a8{bottom:460.546667pt;}
.y1cd{bottom:462.146667pt;}
.y257{bottom:463.746667pt;}
.y37{bottom:464.866667pt;}
.y225{bottom:467.586667pt;}
.y1fb{bottom:473.026667pt;}
.y1f{bottom:474.786667pt;}
.ye6{bottom:475.106667pt;}
.y7e{bottom:476.386667pt;}
.y1a7{bottom:477.186667pt;}
.y17e{bottom:478.786667pt;}
.y256{bottom:480.226667pt;}
.y36{bottom:480.386667pt;}
.y224{bottom:484.066667pt;}
.y1fa{bottom:489.666667pt;}
.y96{bottom:489.826667pt;}
.ye5{bottom:491.746667pt;}
.y7d{bottom:492.866667pt;}
.y1a6{bottom:493.826667pt;}
.y17d{bottom:495.426667pt;}
.y144{bottom:496.706667pt;}
.y1cc{bottom:500.226667pt;}
.y223{bottom:504.706667pt;}
.y1f9{bottom:506.306667pt;}
.ye4{bottom:508.226667pt;}
.y7c{bottom:509.506667pt;}
.yb3{bottom:509.986667pt;}
.y1a5{bottom:510.466667pt;}
.y17c{bottom:512.066667pt;}
.y255{bottom:516.706667pt;}
.y1cb{bottom:516.866667pt;}
.y222{bottom:520.866667pt;}
.y1f8{bottom:522.786667pt;}
.ye3{bottom:524.866667pt;}
.y7b{bottom:526.146667pt;}
.yb2{bottom:526.626667pt;}
.y17b{bottom:528.546667pt;}
.y254{bottom:532.866667pt;}
.y1a4{bottom:534.946667pt;}
.y221{bottom:537.346667pt;}
.y1f7{bottom:539.426667pt;}
.ye2{bottom:541.506667pt;}
.y1ca{bottom:542.946667pt;}
.yb1{bottom:543.266667pt;}
.y17a{bottom:545.186667pt;}
.y253{bottom:549.026667pt;}
.y1a3{bottom:551.586667pt;}
.y7a{bottom:553.506667pt;}
.y220{bottom:553.826667pt;}
.y1f6{bottom:556.066667pt;}
.ye1{bottom:558.146667pt;}
.y179{bottom:561.826667pt;}
.yb0{bottom:567.906667pt;}
.y1a2{bottom:568.226667pt;}
.y252{bottom:569.186667pt;}
.y21f{bottom:569.666667pt;}
.y1c9{bottom:573.986667pt;}
.ye0{bottom:574.626667pt;}
.y178{bottom:578.493333pt;}
.y1f5{bottom:580.573333pt;}
.y79{bottom:583.293333pt;}
.yaf{bottom:584.573333pt;}
.y251{bottom:585.693333pt;}
.y21e{bottom:589.853333pt;}
.y142{bottom:591.133333pt;}
.ydf{bottom:591.293333pt;}
.y1a1{bottom:593.373333pt;}
.y177{bottom:594.973333pt;}
.y1f4{bottom:597.213333pt;}
.y78{bottom:599.933333pt;}
.y135{bottom:601.280000pt;}
.y250{bottom:602.173333pt;}
.y21d{bottom:606.333333pt;}
.yde{bottom:607.933333pt;}
.yae{bottom:609.053333pt;}
.y176{bottom:611.613333pt;}
.y1c8{bottom:612.093333pt;}
.y1f3{bottom:613.853333pt;}
.y77{bottom:616.573333pt;}
.y24f{bottom:618.333333pt;}
.y1a0{bottom:618.813333pt;}
.y21c{bottom:622.493333pt;}
.y141{bottom:623.293333pt;}
.ydd{bottom:624.573333pt;}
.yad{bottom:625.693333pt;}
.y175{bottom:628.253333pt;}
.y1f2{bottom:630.493333pt;}
.y76{bottom:633.053333pt;}
.y1c7{bottom:636.733333pt;}
.y13b{bottom:637.120000pt;}
.y19f{bottom:637.533333pt;}
.y24e{bottom:638.493333pt;}
.ydc{bottom:641.053333pt;}
.yac{bottom:642.333333pt;}
.y21b{bottom:642.813333pt;}
.y174{bottom:644.893333pt;}
.y1f1{bottom:647.133333pt;}
.y140{bottom:649.053333pt;}
.y75{bottom:649.693333pt;}
.y24d{bottom:654.973333pt;}
.ydb{bottom:657.693333pt;}
.y21a{bottom:659.293333pt;}
.y19e{bottom:660.253333pt;}
.y1b7{bottom:660.800000pt;}
.y13f{bottom:665.693333pt;}
.y74{bottom:666.333333pt;}
.yab{bottom:666.813333pt;}
.y1ee{bottom:668.746594pt;}
.y173{bottom:669.373333pt;}
.y24c{bottom:671.613333pt;}
.yda{bottom:674.333333pt;}
.y1c6{bottom:674.813333pt;}
.y1f0{bottom:675.453333pt;}
.y10a{bottom:679.200000pt;}
.y219{bottom:679.453333pt;}
.y113{bottom:680.800000pt;}
.y13e{bottom:682.333333pt;}
.y73{bottom:682.973333pt;}
.yaa{bottom:683.453333pt;}
.y172{bottom:686.013333pt;}
.y1b{bottom:687.453333pt;}
.y1c5{bottom:691.453333pt;}
.y24b{bottom:692.093333pt;}
.y112{bottom:693.053333pt;}
.y218{bottom:695.933333pt;}
.y11c{bottom:697.053333pt;}
.yd9{bottom:698.813333pt;}
.y13d{bottom:698.973333pt;}
.y72{bottom:699.453333pt;}
.ya9{bottom:700.093333pt;}
.y171{bottom:702.653333pt;}
.y24a{bottom:708.573333pt;}
.y1ed{bottom:710.333333pt;}
.y217{bottom:712.573333pt;}
.y111{bottom:714.653333pt;}
.yd8{bottom:715.453333pt;}
.y71{bottom:716.093333pt;}
.ya8{bottom:724.733333pt;}
.y1a{bottom:725.853333pt;}
.y1ec{bottom:726.973333pt;}
.y170{bottom:727.773333pt;}
.y110{bottom:728.573333pt;}
.y249{bottom:728.733333pt;}
.y1c4{bottom:729.373333pt;}
.yd7{bottom:732.093333pt;}
.y70{bottom:732.733333pt;}
.y1b9{bottom:733.440000pt;}
.y216{bottom:733.533333pt;}
.yc9{bottom:738.333333pt;}
.y1ea{bottom:740.546594pt;}
.y248{bottom:745.213333pt;}
.y1c3{bottom:746.173333pt;}
.y1e9{bottom:748.573333pt;}
.yd6{bottom:748.733333pt;}
.ya7{bottom:749.213333pt;}
.y215{bottom:750.013333pt;}
.y10f{bottom:750.493333pt;}
.y19{bottom:751.933333pt;}
.y16f{bottom:753.213333pt;}
.y6f{bottom:757.213333pt;}
.y247{bottom:761.853333pt;}
.yd5{bottom:765.373333pt;}
.ya6{bottom:765.853333pt;}
.y16e{bottom:767.933333pt;}
.y191{bottom:768.640000pt;}
.y10e{bottom:772.253333pt;}
.y6e{bottom:773.853333pt;}
.y1c2{bottom:774.173333pt;}
.y18{bottom:776.413333pt;}
.y214{bottom:776.733333pt;}
.y246{bottom:778.013333pt;}
.yd4{bottom:781.853333pt;}
.ya5{bottom:782.493333pt;}
.y1e8{bottom:784.573333pt;}
.y10d{bottom:786.173333pt;}
.y17{bottom:787.933333pt;}
.y18b{bottom:788.960000pt;}
.y18d{bottom:789.600000pt;}
.y6d{bottom:790.493333pt;}
.y1c1{bottom:790.813333pt;}
.yd3{bottom:798.533333pt;}
.y245{bottom:798.693333pt;}
.y16{bottom:802.053333pt;}
.y213{bottom:806.533333pt;}
.y6c{bottom:807.173333pt;}
.y10c{bottom:807.973333pt;}
.ya4{bottom:810.053333pt;}
.yd2{bottom:815.173333pt;}
.y1c0{bottom:821.893333pt;}
.y189{bottom:822.560000pt;}
.y212{bottom:823.173333pt;}
.y6b{bottom:823.813333pt;}
.y15{bottom:825.253333pt;}
.y244{bottom:831.333333pt;}
.yd1{bottom:831.813333pt;}
.y1bf{bottom:838.533333pt;}
.y1b6{bottom:838.560000pt;}
.ya3{bottom:839.653333pt;}
.y211{bottom:839.813333pt;}
.y6a{bottom:840.293333pt;}
.y1e7{bottom:842.693333pt;}
.y14{bottom:845.413333pt;}
.yd0{bottom:848.293333pt;}
.y243{bottom:851.493333pt;}
.ya2{bottom:856.293333pt;}
.y69{bottom:856.933333pt;}
.y1e6{bottom:859.493333pt;}
.y11d{bottom:863.200000pt;}
.ycf{bottom:864.933333pt;}
.y192{bottom:866.880000pt;}
.y242{bottom:867.973333pt;}
.ya1{bottom:872.933333pt;}
.y68{bottom:873.573333pt;}
.y1be{bottom:876.613333pt;}
.y13{bottom:876.773333pt;}
.yce{bottom:881.573333pt;}
.y241{bottom:884.453333pt;}
.y1e5{bottom:887.493333pt;}
.ya0{bottom:889.573333pt;}
.y67{bottom:890.213333pt;}
.y19d{bottom:898.213333pt;}
.y240{bottom:901.093333pt;}
.y12{bottom:903.013333pt;}
.y139{bottom:903.520000pt;}
.ycd{bottom:906.053333pt;}
.y9f{bottom:906.213333pt;}
.y66{bottom:906.693333pt;}
.y19c{bottom:914.693333pt;}
.y1e4{bottom:915.493333pt;}
.y10{bottom:916.293333pt;}
.y9{bottom:920.933333pt;}
.yb{bottom:920.960000pt;}
.y23f{bottom:921.093333pt;}
.y9e{bottom:922.693333pt;}
.y65{bottom:923.333333pt;}
.y18e{bottom:926.240000pt;}
.y23e{bottom:937.573333pt;}
.y9d{bottom:939.333333pt;}
.y64{bottom:939.973333pt;}
.y1e3{bottom:945.573333pt;}
.y190{bottom:946.240000pt;}
.y1bd{bottom:952.773333pt;}
.y95{bottom:953.573333pt;}
.y23d{bottom:953.733333pt;}
.y9c{bottom:955.973333pt;}
.y63{bottom:956.613333pt;}
.y16d{bottom:972.453333pt;}
.y9b{bottom:972.613333pt;}
.y62{bottom:973.093333pt;}
.y23c{bottom:973.893333pt;}
.y106{bottom:974.240000pt;}
.y1e2{bottom:975.653333pt;}
.y1bc{bottom:982.853333pt;}
.y9a{bottom:989.093333pt;}
.y61{bottom:989.733333pt;}
.y23b{bottom:990.373333pt;}
.y108{bottom:994.373333pt;}
.y99{bottom:1005.733333pt;}
.y23a{bottom:1006.853333pt;}
.y1bb{bottom:1011.013333pt;}
.y60{bottom:1017.253333pt;}
.y98{bottom:1022.400000pt;}
.y239{bottom:1023.040000pt;}
.y5f{bottom:1036.800000pt;}
.y5e{bottom:1040.480000pt;}
.y5b{bottom:1055.840000pt;}
.y1{bottom:1060.160000pt;}
.h9{height:3.840000pt;}
.h10{height:4.640000pt;}
.h11{height:11.406250pt;}
.h36{height:14.080000pt;}
.h3f{height:14.720000pt;}
.h3d{height:14.880000pt;}
.h7{height:15.840000pt;}
.h5{height:15.914062pt;}
.h2f{height:16.640000pt;}
.h25{height:16.656250pt;}
.h35{height:17.760000pt;}
.h32{height:18.880000pt;}
.h23{height:19.520000pt;}
.h31{height:20.000000pt;}
.h4{height:22.560000pt;}
.hd{height:22.812500pt;}
.h1f{height:24.000000pt;}
.h34{height:24.960000pt;}
.h17{height:26.462500pt;}
.h1a{height:26.720000pt;}
.h41{height:28.133675pt;}
.h45{height:28.133693pt;}
.h47{height:28.200877pt;}
.h12{height:30.568750pt;}
.h4d{height:30.666674pt;}
.h4b{height:30.733875pt;}
.h37{height:34.218750pt;}
.h40{height:34.880000pt;}
.h16{height:37.310625pt;}
.h14{height:37.868750pt;}
.h24{height:38.642500pt;}
.h22{height:39.840000pt;}
.h2c{height:41.765625pt;}
.h2d{height:41.877000pt;}
.h1b{height:41.975000pt;}
.h1d{height:44.160000pt;}
.h18{height:45.625000pt;}
.h1e{height:46.220625pt;}
.h3{height:47.742188pt;}
.h8{height:48.000000pt;}
.h51{height:49.005000pt;}
.h2a{height:49.120000pt;}
.h4f{height:49.280000pt;}
.h20{height:49.622500pt;}
.h26{height:49.760000pt;}
.h50{height:49.792000pt;}
.h28{height:49.920000pt;}
.h19{height:51.232500pt;}
.h33{height:51.343875pt;}
.h42{height:51.690951pt;}
.h48{height:51.814424pt;}
.hb{height:53.381250pt;}
.he{height:53.472500pt;}
.h44{height:54.496792pt;}
.h46{height:54.502355pt;}
.h4a{height:54.619472pt;}
.h3a{height:55.392000pt;}
.h3b{height:55.520000pt;}
.h6{height:55.687500pt;}
.h52{height:56.017500pt;}
.h29{height:57.760000pt;}
.h3e{height:58.563750pt;}
.hf{height:60.681250pt;}
.h15{height:65.154375pt;}
.h2{height:65.531250pt;}
.h21{height:67.072000pt;}
.h13{height:68.437500pt;}
.h3c{height:69.280000pt;}
.h4e{height:72.811763pt;}
.h4c{height:72.971318pt;}
.h43{height:73.028917pt;}
.h49{height:73.203359pt;}
.h38{height:83.072000pt;}
.h39{height:96.960000pt;}
.hc{height:126.080000pt;}
.ha{height:126.112000pt;}
.h2e{height:156.640000pt;}
.h2b{height:156.800000pt;}
.h27{height:188.160000pt;}
.h30{height:192.640000pt;}
.h1c{height:492.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:10.720000pt;}
.w1f{width:10.880000pt;}
.we{width:17.600000pt;}
.w25{width:20.332658pt;}
.w20{width:22.720000pt;}
.w1d{width:22.880000pt;}
.wf{width:38.400000pt;}
.wd{width:45.440000pt;}
.w21{width:46.880000pt;}
.w10{width:52.320000pt;}
.w22{width:65.265994pt;}
.w23{width:65.332207pt;}
.w24{width:65.332216pt;}
.w18{width:85.120000pt;}
.w5{width:104.000000pt;}
.w1b{width:127.072000pt;}
.w9{width:132.480000pt;}
.w1c{width:137.466667pt;}
.w19{width:144.666667pt;}
.w1a{width:148.346667pt;}
.w15{width:173.280000pt;}
.w13{width:176.160000pt;}
.w8{width:182.146667pt;}
.w26{width:212.195778pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w12{width:286.240000pt;}
.wb{width:320.986667pt;}
.wc{width:321.026667pt;}
.w16{width:392.320000pt;}
.w14{width:392.480000pt;}
.w17{width:405.280000pt;}
.wa{width:514.053333pt;}
.w6{width:538.720000pt;}
.w7{width:538.853333pt;}
.w11{width:636.160000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x54{left:1.466667pt;}
.x62{left:2.947751pt;}
.x29{left:4.893333pt;}
.x4f{left:5.920000pt;}
.x16{left:7.200000pt;}
.x3d{left:8.160000pt;}
.x4b{left:9.120000pt;}
.x4c{left:10.720000pt;}
.x23{left:11.712000pt;}
.x43{left:13.440000pt;}
.x49{left:14.880000pt;}
.x42{left:16.000000pt;}
.x34{left:17.280000pt;}
.x3f{left:18.400000pt;}
.x47{left:19.520000pt;}
.x2c{left:21.026667pt;}
.x41{left:22.880000pt;}
.x46{left:24.640000pt;}
.x44{left:26.560000pt;}
.x48{left:27.520000pt;}
.x45{left:29.280000pt;}
.x3a{left:32.480000pt;}
.x4e{left:33.600000pt;}
.x4d{left:35.360000pt;}
.x3e{left:36.480000pt;}
.x4a{left:37.760000pt;}
.x51{left:38.720000pt;}
.x3c{left:40.320000pt;}
.x36{left:41.440000pt;}
.x31{left:43.746667pt;}
.x40{left:45.760000pt;}
.x63{left:48.476533pt;}
.x50{left:49.760000pt;}
.xe{left:54.880000pt;}
.x38{left:59.200000pt;}
.x30{left:74.466667pt;}
.x3{left:75.552000pt;}
.x11{left:77.311988pt;}
.x22{left:82.400000pt;}
.x15{left:84.991988pt;}
.x60{left:88.511988pt;}
.x10{left:90.920000pt;}
.x1c{left:93.151988pt;}
.x24{left:94.431988pt;}
.x6{left:98.720000pt;}
.x32{left:99.906667pt;}
.x5{left:106.880000pt;}
.x65{left:111.413324pt;}
.x5a{left:113.311988pt;}
.x9{left:114.394667pt;}
.x1a{left:120.991988pt;}
.x5f{left:122.431988pt;}
.x20{left:124.511988pt;}
.x1f{left:127.871988pt;}
.xd{left:141.640000pt;}
.x5c{left:144.506655pt;}
.x5e{left:156.506655pt;}
.x58{left:159.040000pt;}
.x35{left:160.666667pt;}
.x57{left:162.560000pt;}
.x25{left:169.186667pt;}
.x66{left:176.666655pt;}
.xa{left:179.520000pt;}
.x26{left:194.080000pt;}
.x2d{left:195.520000pt;}
.x27{left:201.146655pt;}
.xc{left:204.226667pt;}
.x17{left:208.026667pt;}
.x53{left:210.720000pt;}
.x12{left:220.506655pt;}
.x8{left:222.946667pt;}
.x21{left:229.146655pt;}
.x67{left:243.413315pt;}
.x33{left:251.520000pt;}
.x2b{left:252.640000pt;}
.x2f{left:253.600000pt;}
.xb{left:269.373333pt;}
.x4{left:289.666667pt;}
.x18{left:292.226667pt;}
.x1e{left:301.986655pt;}
.x37{left:305.346667pt;}
.x68{left:308.706655pt;}
.x14{left:310.466655pt;}
.x1d{left:318.786655pt;}
.x1b{left:321.986655pt;}
.x55{left:330.720000pt;}
.x6b{left:340.546667pt;}
.x19{left:345.186655pt;}
.x6d{left:346.306655pt;}
.x6e{left:352.546655pt;}
.x61{left:369.679964pt;}
.x13{left:396.893322pt;}
.x64{left:434.973322pt;}
.x39{left:453.693333pt;}
.x28{left:484.320000pt;}
.x2e{left:485.280000pt;}
.x56{left:488.960000pt;}
.x1{left:498.813322pt;}
.x7{left:503.613333pt;}
.xf{left:536.253333pt;}
.x69{left:551.613322pt;}
.x6c{left:552.733322pt;}
.x59{left:564.960000pt;}
.x5b{left:568.000000pt;}
.x3b{left:580.773333pt;}
.x5d{left:592.933322pt;}
.x2a{left:611.173322pt;}
.x52{left:635.333322pt;}
.x6a{left:697.813261pt;}
.x2{left:718.239988pt;}
}




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