
    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_e68044777bbc246c833f4411.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_25a0c46ec3160f963a228ea8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7ab7531971e9d24dfe9cd0c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_36b0569fbe52e32a8a97f5c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.197266;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_17389a4f23a29d49a867b54f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aaa3488f1f02ed7951381399.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004395;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_24f9023266c5b64545dc6f88.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_0495adb3e7e7b90711222709.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004395;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_31c772e7d2f5a7486e3afd36.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_bf353820406ba89adfbfff67.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053711;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_c99634841d1e85a0e2f4bf63.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053711;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.227272,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.227272,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.227272,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.208332,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.208332,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.208332,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.207448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207448,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.ma{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:-116.040000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.lsf{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.576000px;}
.ls3b{letter-spacing:-0.508200px;}
.ls2f{letter-spacing:-0.501000px;}
.ls2b{letter-spacing:-0.379470px;}
.ls1b{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.349200px;}
.ls1c{letter-spacing:-0.303576px;}
.ls7{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.256200px;}
.ls3d{letter-spacing:-0.227682px;}
.lsa{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.213000px;}
.ls1a{letter-spacing:-0.166800px;}
.lsd{letter-spacing:-0.151788px;}
.ls18{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.075894px;}
.ls10{letter-spacing:-0.072000px;}
.ls30{letter-spacing:-0.057600px;}
.ls31{letter-spacing:-0.054000px;}
.ls20{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.048960px;}
.ls2d{letter-spacing:-0.022320px;}
.ls16{letter-spacing:-0.000006px;}
.ls9{letter-spacing:-0.000001px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000001px;}
.ls24{letter-spacing:0.023040px;}
.lsc{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.080400px;}
.ls13{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.192000px;}
.ls36{letter-spacing:0.211680px;}
.ls28{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.219000px;}
.ls3a{letter-spacing:0.227682px;}
.ls32{letter-spacing:0.252600px;}
.ls4{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.291600px;}
.lse{letter-spacing:0.303576px;}
.ls37{letter-spacing:0.336000px;}
.ls34{letter-spacing:0.342000px;}
.ls12{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.379470px;}
.ls5{letter-spacing:0.380400px;}
.ls1f{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.504000px;}
.ls3e{letter-spacing:0.531257px;}
.ls2c{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.607151px;}
.ls1e{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.743040px;}
.ls26{letter-spacing:0.864000px;}
.ls35{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.160000px;}
.ls1d{letter-spacing:7.920000px;}
.ls19{letter-spacing:13.680000px;}
.ls3c{letter-spacing:25.896000px;}
.ls3f{letter-spacing:43.200000px;}
.ls15{letter-spacing:194.376000px;}
.ls2{letter-spacing:916.213440px;}
.ls0{letter-spacing:4130.857344px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-72.000000px;}
.ws4{word-spacing:-23.106240px;}
.ws0{word-spacing:-23.072340px;}
.wse{word-spacing:-20.865720px;}
.ws5{word-spacing:-20.684160px;}
.ws16{word-spacing:-20.566320px;}
.ws19{word-spacing:-19.277052px;}
.wsc{word-spacing:-18.973476px;}
.ws20{word-spacing:-18.864000px;}
.wsb{word-spacing:-18.821688px;}
.ws18{word-spacing:-18.669901px;}
.ws23{word-spacing:-18.576000px;}
.ws21{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.360000px;}
.ws6{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.999994px;}
.wsd{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.640000px;}
.ws22{word-spacing:-17.280000px;}
.ws1c{word-spacing:-16.640400px;}
.ws1d{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.347000px;}
.ws1e{word-spacing:-16.303800px;}
.ws8{word-spacing:-15.320400px;}
.wsa{word-spacing:-15.231600px;}
.ws1{word-spacing:-15.045000px;}
.ws9{word-spacing:-14.940000px;}
.ws2c{word-spacing:-12.402000px;}
.ws2a{word-spacing:-12.312600px;}
.ws26{word-spacing:-12.279000px;}
.ws1f{word-spacing:-12.060000px;}
.ws24{word-spacing:-12.037680px;}
.ws29{word-spacing:-12.006000px;}
.ws28{word-spacing:-12.002400px;}
.ws25{word-spacing:-11.772000px;}
.ws2b{word-spacing:-11.710800px;}
.ws27{word-spacing:-11.559000px;}
.ws2d{word-spacing:-7.560000px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:1.504500px;}
._5{margin-left:-12.036000px;}
._6{margin-left:-10.637113px;}
._4{margin-left:-9.575994px;}
._8{margin-left:-4.248000px;}
._9{margin-left:-2.974200px;}
._2{margin-left:-1.020900px;}
._1{width:1.122990px;}
._3{width:2.391030px;}
._7{width:4.320000px;}
._d{width:5.904000px;}
._e{width:6.912000px;}
._f{width:7.992000px;}
._a{width:9.216000px;}
._b{width:10.311030px;}
._10{width:11.657700px;}
._13{width:12.713610px;}
._15{width:14.221800px;}
._14{width:15.624000px;}
._c{width:16.704000px;}
._37{width:17.903621px;}
._16{width:19.224000px;}
._17{width:20.342130px;}
._12{width:21.480900px;}
._11{width:22.536000px;}
._1a{width:23.904000px;}
._18{width:24.912000px;}
._19{width:26.165010px;}
._21{width:27.576000px;}
._2d{width:28.631227px;}
._1b{width:35.496000px;}
._27{width:39.432000px;}
._28{width:40.464000px;}
._2e{width:42.197011px;}
._29{width:43.411314px;}
._39{width:44.625616px;}
._3a{width:45.779443px;}
._2f{width:49.608000px;}
._38{width:51.911431px;}
._1e{width:54.000000px;}
._43{width:60.552000px;}
._44{width:62.612472px;}
._25{width:64.008000px;}
._24{width:68.759878px;}
._42{width:72.648000px;}
._32{width:85.104000px;}
._31{width:88.602466px;}
._30{width:89.706596px;}
._3c{width:101.448000px;}
._3b{width:107.313982px;}
._1c{width:111.816000px;}
._20{width:113.616000px;}
._3d{width:115.848000px;}
._3e{width:116.892000px;}
._1d{width:118.318598px;}
._1f{width:119.684688px;}
._26{width:146.808000px;}
._36{width:161.928000px;}
._35{width:170.761286px;}
._34{width:205.776000px;}
._33{width:216.104227px;}
._2c{width:243.936000px;}
._40{width:245.448000px;}
._2b{width:255.610672px;}
._2a{width:257.280338px;}
._3f{width:258.950004px;}
._41{width:260.631006px;}
._23{width:347.112000px;}
._22{width:366.339879px;}
._0{width:2272.155000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(151,152,154);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs8{font-size:6.447600px;}
.fs19{font-size:30.240000px;}
.fs15{font-size:45.360000px;}
.fs16{font-size:48.240000px;}
.fs9{font-size:48.358200px;}
.fs18{font-size:50.848916px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:60.180000px;}
.fs12{font-size:63.360000px;}
.fs13{font-size:66.240000px;}
.fs17{font-size:69.120000px;}
.fs7{font-size:72.000000px;}
.fs14{font-size:75.893905px;}
.fs11{font-size:84.240000px;}
.fs1{font-size:87.042000px;}
.fsc{font-size:87.120000px;}
.fs3{font-size:95.640000px;}
.fs2{font-size:102.090000px;}
.fsd{font-size:102.240000px;}
.fse{font-size:105.120000px;}
.fs4{font-size:105.312000px;}
.fsf{font-size:120.240000px;}
.fs5{font-size:120.360000px;}
.fs10{font-size:149.760000px;}
.fs6{font-size:177.312000px;}
.y0{bottom:0.000000px;}
.y26{bottom:1.605000px;}
.y29{bottom:1.612500px;}
.y188{bottom:1.980000px;}
.y145{bottom:2.694000px;}
.y10c{bottom:2.700000px;}
.y156{bottom:2.745000px;}
.y16b{bottom:2.880000px;}
.y108{bottom:3.060000px;}
.y10a{bottom:3.090000px;}
.y115{bottom:3.240000px;}
.y179{bottom:3.420000px;}
.y16d{bottom:3.600000px;}
.y114{bottom:3.780000px;}
.y166{bottom:3.960000px;}
.y178{bottom:4.140000px;}
.y169{bottom:4.320000px;}
.y14f{bottom:4.500000px;}
.y15d{bottom:4.680000px;}
.y158{bottom:4.860000px;}
.y170{bottom:5.040000px;}
.y165{bottom:5.220000px;}
.y168{bottom:5.760000px;}
.y14e{bottom:6.120000px;}
.y161{bottom:6.480000px;}
.y15c{bottom:6.660000px;}
.y142{bottom:6.840000px;}
.y132{bottom:7.020000px;}
.y121{bottom:8.280000px;}
.y128{bottom:8.640000px;}
.y1b8{bottom:9.180000px;}
.y1c4{bottom:9.210000px;}
.y112{bottom:9.900000px;}
.y137{bottom:10.260000px;}
.y141{bottom:10.980000px;}
.y131{bottom:11.520000px;}
.y184{bottom:11.700000px;}
.y12d{bottom:12.060000px;}
.y120{bottom:13.680000px;}
.y19c{bottom:13.860000px;}
.y1ad{bottom:14.040000px;}
.y1eb{bottom:14.400000px;}
.y127{bottom:14.430000px;}
.y1ed{bottom:14.580000px;}
.y13d{bottom:14.760000px;}
.y1ef{bottom:15.300000px;}
.y1a2{bottom:15.660000px;}
.y1a9{bottom:15.690000px;}
.y19f{bottom:16.200000px;}
.y187{bottom:16.380000px;}
.y199{bottom:16.956000px;}
.y111{bottom:17.100000px;}
.y1a4{bottom:17.460000px;}
.y1ab{bottom:17.490000px;}
.y136{bottom:17.640000px;}
.y1a3{bottom:18.000000px;}
.y1aa{bottom:18.030000px;}
.y183{bottom:20.700000px;}
.y12c{bottom:21.240000px;}
.y1d1{bottom:24.300000px;}
.y186{bottom:30.774000px;}
.y198{bottom:32.430000px;}
.y1d0{bottom:45.900000px;}
.y19b{bottom:46.260000px;}
.y5d{bottom:56.340000px;}
.y2a{bottom:57.222000px;}
.y1cf{bottom:67.500000px;}
.y59{bottom:70.920000px;}
.y5c{bottom:76.320000px;}
.y27{bottom:80.895000px;}
.y23{bottom:83.595000px;}
.y21{bottom:87.885000px;}
.y58{bottom:89.100000px;}
.y24{bottom:100.785000px;}
.y28{bottom:102.123000px;}
.y20{bottom:105.078000px;}
.y57{bottom:108.540000px;}
.ya1{bottom:111.636000px;}
.y29a{bottom:112.536000px;}
.yee{bottom:113.796000px;}
.y25a{bottom:115.056000px;}
.y193{bottom:115.776000px;}
.y279{bottom:116.856000px;}
.y291{bottom:117.396000px;}
.y104{bottom:119.376000px;}
.y1f{bottom:122.272500px;}
.y185{bottom:122.976000px;}
.y106{bottom:123.156000px;}
.yd8{bottom:123.336000px;}
.y56{bottom:126.900000px;}
.y197{bottom:127.440000px;}
.y146{bottom:128.016000px;}
.ya0{bottom:133.236000px;}
.y299{bottom:134.136000px;}
.y242{bottom:135.396000px;}
.y259{bottom:136.656000px;}
.y278{bottom:138.456000px;}
.y290{bottom:138.996000px;}
.y89{bottom:139.176000px;}
.y208{bottom:142.056000px;}
.y225{bottom:144.936000px;}
.y55{bottom:145.260000px;}
.yed{bottom:146.196000px;}
.y144{bottom:147.816000px;}
.y1e{bottom:148.063500px;}
.y192{bottom:148.896000px;}
.y103{bottom:151.770000px;}
.y9f{bottom:154.830000px;}
.y105{bottom:155.550000px;}
.yd7{bottom:155.730000px;}
.y241{bottom:156.990000px;}
.y258{bottom:158.250000px;}
.y28f{bottom:160.590000px;}
.y54{bottom:163.470000px;}
.y224{bottom:166.530000px;}
.y182{bottom:166.890000px;}
.y1e7{bottom:167.250000px;}
.y143{bottom:167.610000px;}
.y88{bottom:170.130000px;}
.y207{bottom:174.450000px;}
.y9e{bottom:176.430000px;}
.y1b5{bottom:176.610000px;}
.y298{bottom:177.330000px;}
.y1ce{bottom:178.230000px;}
.yec{bottom:178.590000px;}
.y257{bottom:179.850000px;}
.y277{bottom:181.110000px;}
.y191{bottom:181.470000px;}
.y53{bottom:181.830000px;}
.y102{bottom:184.170000px;}
.y140{bottom:187.410000px;}
.yd6{bottom:188.130000px;}
.y9d{bottom:198.030000px;}
.y1d{bottom:198.600000px;}
.y297{bottom:198.930000px;}
.y1e6{bottom:199.650000px;}
.y52{bottom:200.190000px;}
.y87{bottom:201.270000px;}
.y256{bottom:201.450000px;}
.y276{bottom:202.710000px;}
.y28e{bottom:203.250000px;}
.y181{bottom:204.690000px;}
.y206{bottom:206.850000px;}
.y1b4{bottom:209.010000px;}
.y223{bottom:209.730000px;}
.yeb{bottom:210.990000px;}
.y190{bottom:214.770000px;}
.y13f{bottom:215.490000px;}
.y101{bottom:216.570000px;}
.y51{bottom:218.550000px;}
.y9c{bottom:219.630000px;}
.yd5{bottom:220.530000px;}
.y240{bottom:221.790000px;}
.y255{bottom:223.050000px;}
.y275{bottom:224.310000px;}
.y180{bottom:224.490000px;}
.y28d{bottom:224.850000px;}
.y222{bottom:231.510000px;}
.y1e5{bottom:232.050000px;}
.y86{bottom:232.230000px;}
.y1c{bottom:235.140000px;}
.y13e{bottom:235.290000px;}
.y50{bottom:236.730000px;}
.y205{bottom:239.250000px;}
.y9b{bottom:241.230000px;}
.y1b3{bottom:241.410000px;}
.y296{bottom:242.310000px;}
.yea{bottom:243.390000px;}
.y17f{bottom:244.290000px;}
.y254{bottom:244.650000px;}
.y274{bottom:245.910000px;}
.y28c{bottom:246.450000px;}
.y18f{bottom:248.070000px;}
.y100{bottom:249.870000px;}
.yd4{bottom:253.110000px;}
.y4f{bottom:255.090000px;}
.y1cd{bottom:259.950000px;}
.y85{bottom:262.830000px;}
.y295{bottom:263.910000px;}
.y17e{bottom:264.090000px;}
.y1e4{bottom:264.450000px;}
.y23f{bottom:264.990000px;}
.y253{bottom:266.250000px;}
.y273{bottom:267.510000px;}
.y204{bottom:271.650000px;}
.y1b{bottom:271.950000px;}
.y4e{bottom:273.450000px;}
.y1b2{bottom:273.810000px;}
.y221{bottom:274.710000px;}
.ye9{bottom:275.790000px;}
.y18e{bottom:281.370000px;}
.y1cc{bottom:282.630000px;}
.yff{bottom:283.350000px;}
.y17d{bottom:283.890000px;}
.yd3{bottom:285.510000px;}
.y13c{bottom:286.950000px;}
.y252{bottom:287.850000px;}
.y272{bottom:289.110000px;}
.y4d{bottom:291.810000px;}
.y84{bottom:295.230000px;}
.y220{bottom:296.310000px;}
.y1e3{bottom:296.850000px;}
.y17c{bottom:303.690000px;}
.y203{bottom:304.050000px;}
.y1cb{bottom:305.535000px;}
.y1b1{bottom:306.255000px;}
.y13b{bottom:306.750000px;}
.y294{bottom:307.110000px;}
.y23e{bottom:307.650000px;}
.ye8{bottom:308.190000px;}
.y1a{bottom:308.490000px;}
.y251{bottom:309.450000px;}
.y4c{bottom:309.990000px;}
.y271{bottom:310.710000px;}
.y18d{bottom:314.670000px;}
.yfe{bottom:315.930000px;}
.yd2{bottom:317.910000px;}
.y17b{bottom:323.490000px;}
.y13a{bottom:326.550000px;}
.y83{bottom:327.630000px;}
.y1ca{bottom:328.215000px;}
.y4b{bottom:328.350000px;}
.y293{bottom:328.710000px;}
.y1e2{bottom:329.250000px;}
.y250{bottom:331.050000px;}
.y270{bottom:332.310000px;}
.y202{bottom:336.450000px;}
.y1b0{bottom:338.655000px;}
.y21f{bottom:339.510000px;}
.ye7{bottom:340.590000px;}
.y17a{bottom:343.290000px;}
.y19{bottom:345.015000px;}
.y139{bottom:346.350000px;}
.y4a{bottom:346.710000px;}
.y18c{bottom:348.150000px;}
.yfd{bottom:348.330000px;}
.yd1{bottom:350.310000px;}
.y23d{bottom:350.850000px;}
.y1c9{bottom:350.895000px;}
.y24f{bottom:352.650000px;}
.y28b{bottom:353.910000px;}
.y82{bottom:360.075000px;}
.y21e{bottom:361.155000px;}
.y1e1{bottom:361.695000px;}
.y177{bottom:363.135000px;}
.y138{bottom:366.195000px;}
.y49{bottom:366.510000px;}
.y201{bottom:368.895000px;}
.y1af{bottom:371.055000px;}
.y292{bottom:371.955000px;}
.ye6{bottom:373.035000px;}
.y1c8{bottom:373.575000px;}
.y24e{bottom:374.295000px;}
.y26f{bottom:374.835000px;}
.yfc{bottom:380.775000px;}
.y18b{bottom:381.495000px;}
.y18{bottom:381.600000px;}
.y1e8{bottom:382.395000px;}
.yd0{bottom:382.755000px;}
.y176{bottom:384.375000px;}
.y135{bottom:385.995000px;}
.y48{bottom:391.890000px;}
.y81{bottom:392.475000px;}
.y23c{bottom:393.555000px;}
.y1e0{bottom:394.095000px;}
.y24d{bottom:395.895000px;}
.y1c7{bottom:396.435000px;}
.y1f5{bottom:400.935000px;}
.y200{bottom:401.295000px;}
.y1ae{bottom:403.455000px;}
.y175{bottom:404.175000px;}
.y21d{bottom:404.355000px;}
.ye5{bottom:405.435000px;}
.yfb{bottom:413.175000px;}
.y18a{bottom:414.075000px;}
.yb6{bottom:414.255000px;}
.ycf{bottom:415.155000px;}
.y24c{bottom:417.495000px;}
.y26e{bottom:418.035000px;}
.y17{bottom:418.395000px;}
.y1c6{bottom:419.115000px;}
.y134{bottom:420.735000px;}
.y80{bottom:425.055000px;}
.y174{bottom:425.955000px;}
.y1df{bottom:426.495000px;}
.y1ff{bottom:433.695000px;}
.y1ac{bottom:435.855000px;}
.y47{bottom:436.215000px;}
.y23b{bottom:436.755000px;}
.y1f4{bottom:436.935000px;}
.ye4{bottom:437.835000px;}
.y26d{bottom:439.635000px;}
.y133{bottom:440.535000px;}
.y25{bottom:441.240000px;}
.y1c5{bottom:441.795000px;}
.yfa{bottom:445.575000px;}
.yb5{bottom:446.655000px;}
.y189{bottom:447.375000px;}
.yce{bottom:447.555000px;}
.y173{bottom:449.535000px;}
.y16{bottom:454.935000px;}
.y7f{bottom:457.455000px;}
.y23a{bottom:458.355000px;}
.y1de{bottom:458.895000px;}
.y24b{bottom:460.155000px;}
.y130{bottom:460.335000px;}
.y1c3{bottom:464.655000px;}
.y1fe{bottom:466.095000px;}
.y46{bottom:466.275000px;}
.y22{bottom:466.755000px;}
.y1a8{bottom:468.435000px;}
.y21c{bottom:469.155000px;}
.ye3{bottom:470.235000px;}
.y1f3{bottom:472.065000px;}
.y172{bottom:472.755000px;}
.yf9{bottom:477.975000px;}
.yb4{bottom:479.055000px;}
.ycd{bottom:479.955000px;}
.y24a{bottom:481.755000px;}
.y26c{bottom:482.295000px;}
.y1c2{bottom:487.365000px;}
.y12f{bottom:488.955000px;}
.y7e{bottom:489.855000px;}
.y45{bottom:490.395000px;}
.y21b{bottom:490.755000px;}
.y1dd{bottom:491.295000px;}
.y15{bottom:491.475000px;}
.y171{bottom:492.555000px;}
.y1fd{bottom:498.495000px;}
.y239{bottom:501.555000px;}
.ye2{bottom:502.635000px;}
.y249{bottom:503.355000px;}
.y26b{bottom:503.895000px;}
.y1a7{bottom:504.465000px;}
.y1f2{bottom:508.065000px;}
.y12e{bottom:508.755000px;}
.y1c1{bottom:510.045000px;}
.yf8{bottom:510.375000px;}
.yb3{bottom:511.455000px;}
.ycc{bottom:512.355000px;}
.y44{bottom:520.095000px;}
.y7d{bottom:522.255000px;}
.y238{bottom:523.155000px;}
.y1dc{bottom:523.695000px;}
.y26a{bottom:525.495000px;}
.y14{bottom:528.315000px;}
.y12b{bottom:528.555000px;}
.y1fc{bottom:530.895000px;}
.y1c0{bottom:532.725000px;}
.y16f{bottom:533.235000px;}
.y21a{bottom:533.955000px;}
.y1a6{bottom:540.465000px;}
.yf7{bottom:542.775000px;}
.y1f1{bottom:543.345000px;}
.yb2{bottom:543.855000px;}
.ycb{bottom:544.755000px;}
.y248{bottom:545.835000px;}
.y269{bottom:547.095000px;}
.y7c{bottom:554.655000px;}
.y16e{bottom:555.375000px;}
.y219{bottom:555.555000px;}
.y1bf{bottom:555.585000px;}
.ye1{bottom:556.095000px;}
.y1fb{bottom:563.295000px;}
.y13{bottom:564.855000px;}
.y43{bottom:564.915000px;}
.y237{bottom:566.355000px;}
.y12a{bottom:566.895000px;}
.y247{bottom:567.615000px;}
.y268{bottom:568.695000px;}
.yf6{bottom:575.175000px;}
.yb1{bottom:576.255000px;}
.y1a5{bottom:576.465000px;}
.yca{bottom:577.155000px;}
.y1be{bottom:578.265000px;}
.y1f0{bottom:578.625000px;}
.y129{bottom:586.695000px;}
.y7b{bottom:587.055000px;}
.y236{bottom:587.955000px;}
.ye0{bottom:588.495000px;}
.y246{bottom:589.215000px;}
.y28a{bottom:589.755000px;}
.y267{bottom:590.295000px;}
.y1fa{bottom:595.695000px;}
.y16c{bottom:596.955000px;}
.y218{bottom:598.755000px;}
.y1bd{bottom:600.945000px;}
.y12{bottom:601.395000px;}
.y42{bottom:601.455000px;}
.y126{bottom:606.495000px;}
.yf5{bottom:607.575000px;}
.yb0{bottom:608.655000px;}
.yc9{bottom:609.555000px;}
.y289{bottom:611.355000px;}
.y266{bottom:611.895000px;}
.y1a1{bottom:612.465000px;}
.y1ee{bottom:613.905000px;}
.y16a{bottom:617.145000px;}
.y6e{bottom:618.585000px;}
.y7a{bottom:619.485000px;}
.y217{bottom:620.385000px;}
.ydf{bottom:620.925000px;}
.y1bc{bottom:623.625000px;}
.y1f9{bottom:628.125000px;}
.y235{bottom:631.185000px;}
.y245{bottom:631.725000px;}
.y288{bottom:632.985000px;}
.y265{bottom:633.525000px;}
.y167{bottom:637.125000px;}
.y125{bottom:638.025000px;}
.y41{bottom:638.175000px;}
.y11{bottom:638.190000px;}
.yf4{bottom:640.005000px;}
.yaf{bottom:641.085000px;}
.yc8{bottom:641.985000px;}
.y1bb{bottom:646.530000px;}
.y1a0{bottom:648.510000px;}
.y1ec{bottom:649.950000px;}
.y79{bottom:651.885000px;}
.y234{bottom:652.785000px;}
.yde{bottom:653.325000px;}
.y1db{bottom:654.225000px;}
.y287{bottom:654.585000px;}
.y264{bottom:655.125000px;}
.y6d{bottom:657.645000px;}
.y124{bottom:657.825000px;}
.y164{bottom:659.985000px;}
.y1f8{bottom:660.525000px;}
.y216{bottom:663.585000px;}
.y1ba{bottom:669.210000px;}
.yf3{bottom:673.125000px;}
.yae{bottom:673.485000px;}
.yc7{bottom:674.385000px;}
.y10{bottom:674.730000px;}
.y40{bottom:674.745000px;}
.y244{bottom:674.925000px;}
.y286{bottom:676.185000px;}
.y123{bottom:677.625000px;}
.y19e{bottom:680.910000px;}
.y163{bottom:682.305000px;}
.y78{bottom:684.285000px;}
.y1ea{bottom:684.510000px;}
.y6c{bottom:684.645000px;}
.y215{bottom:685.185000px;}
.ydd{bottom:685.725000px;}
.y1da{bottom:687.705000px;}
.y1b9{bottom:691.890000px;}
.y1f7{bottom:692.925000px;}
.y98{bottom:693.825000px;}
.y233{bottom:695.985000px;}
.y243{bottom:696.525000px;}
.y122{bottom:697.425000px;}
.y263{bottom:697.785000px;}
.y6b{bottom:702.645000px;}
.y162{bottom:703.185000px;}
.yf2{bottom:705.705000px;}
.yad{bottom:705.885000px;}
.yc6{bottom:706.785000px;}
.yf{bottom:711.300000px;}
.y3f{bottom:711.465000px;}
.y19d{bottom:714.030000px;}
.y1b7{bottom:715.470000px;}
.y77{bottom:716.685000px;}
.y11f{bottom:717.225000px;}
.y232{bottom:717.585000px;}
.y6a{bottom:718.125000px;}
.y285{bottom:718.845000px;}
.y1e9{bottom:718.890000px;}
.y262{bottom:719.385000px;}
.y1d9{bottom:721.005000px;}
.y1f6{bottom:721.725000px;}
.y160{bottom:724.065000px;}
.y97{bottom:726.225000px;}
.y214{bottom:728.385000px;}
.yf1{bottom:738.105000px;}
.yac{bottom:738.285000px;}
.y1b6{bottom:738.870000px;}
.yc5{bottom:739.185000px;}
.y284{bottom:740.445000px;}
.y261{bottom:740.985000px;}
.y3e{bottom:746.565000px;}
.ye{bottom:746.760000px;}
.y19a{bottom:747.150000px;}
.y15f{bottom:747.645000px;}
.y11e{bottom:748.005000px;}
.y76{bottom:749.085000px;}
.y213{bottom:749.985000px;}
.ydc{bottom:750.525000px;}
.y1d8{bottom:754.485000px;}
.y69{bottom:757.905000px;}
.y96{bottom:758.625000px;}
.y231{bottom:760.785000px;}
.y283{bottom:762.045000px;}
.y260{bottom:762.585000px;}
.y15e{bottom:767.445000px;}
.y11d{bottom:767.805000px;}
.yf0{bottom:770.505000px;}
.yab{bottom:770.685000px;}
.yc4{bottom:771.585000px;}
.y3d{bottom:776.985000px;}
.yd{bottom:777.120000px;}
.y68{bottom:777.885000px;}
.y196{bottom:780.090000px;}
.y75{bottom:781.485000px;}
.y230{bottom:782.385000px;}
.ydb{bottom:782.925000px;}
.y282{bottom:783.645000px;}
.y1d7{bottom:787.065000px;}
.y15b{bottom:787.245000px;}
.y11c{bottom:787.605000px;}
.y95{bottom:791.025000px;}
.y212{bottom:793.185000px;}
.y67{bottom:799.485000px;}
.y195{bottom:799.710000px;}
.yaa{bottom:803.085000px;}
.yc3{bottom:803.985000px;}
.y25f{bottom:805.245000px;}
.y11b{bottom:807.405000px;}
.y15a{bottom:811.005000px;}
.y74{bottom:813.885000px;}
.y211{bottom:814.785000px;}
.yda{bottom:815.325000px;}
.y1d6{bottom:820.185000px;}
.y66{bottom:821.085000px;}
.y194{bottom:821.340000px;}
.y94{bottom:823.425000px;}
.y22f{bottom:825.585000px;}
.y281{bottom:826.125000px;}
.y25e{bottom:826.845000px;}
.y11a{bottom:827.205000px;}
.y159{bottom:830.805000px;}
.ya9{bottom:835.485000px;}
.yc2{bottom:836.385000px;}
.y3c{bottom:836.745000px;}
.yc{bottom:836.760000px;}
.y65{bottom:842.685000px;}
.y73{bottom:846.285000px;}
.y22e{bottom:847.185000px;}
.yd9{bottom:847.725000px;}
.y25d{bottom:848.445000px;}
.y157{bottom:850.605000px;}
.y1d5{bottom:852.765000px;}
.y93{bottom:855.825000px;}
.y210{bottom:857.985000px;}
.y119{bottom:861.405000px;}
.ya8{bottom:867.885000px;}
.yb{bottom:868.770000px;}
.yc1{bottom:868.785000px;}
.y3b{bottom:868.965000px;}
.y280{bottom:869.325000px;}
.y155{bottom:874.725000px;}
.y72{bottom:878.730000px;}
.y20f{bottom:879.630000px;}
.y118{bottom:881.250000px;}
.y1d4{bottom:885.210000px;}
.y92{bottom:888.270000px;}
.y22d{bottom:890.430000px;}
.y25c{bottom:890.970000px;}
.y64{bottom:893.130000px;}
.y154{bottom:894.570000px;}
.ya{bottom:898.050000px;}
.ya7{bottom:900.330000px;}
.y117{bottom:901.050000px;}
.yc0{bottom:901.230000px;}
.y71{bottom:911.130000px;}
.y22c{bottom:912.030000px;}
.y25b{bottom:912.570000px;}
.y153{bottom:914.370000px;}
.y3a{bottom:915.270000px;}
.y1d3{bottom:918.510000px;}
.y91{bottom:920.670000px;}
.y20e{bottom:922.830000px;}
.y63{bottom:925.530000px;}
.y9{bottom:925.995000px;}
.y39{bottom:932.370000px;}
.ya6{bottom:932.730000px;}
.ybf{bottom:933.630000px;}
.y152{bottom:934.170000px;}
.y116{bottom:935.250000px;}
.y70{bottom:943.530000px;}
.y20d{bottom:944.430000px;}
.y38{bottom:949.650000px;}
.y1d2{bottom:951.090000px;}
.y90{bottom:953.430000px;}
.y151{bottom:953.970000px;}
.y113{bottom:955.050000px;}
.y22b{bottom:955.230000px;}
.y8{bottom:955.275000px;}
.y27f{bottom:955.950000px;}
.ya5{bottom:965.130000px;}
.ybe{bottom:966.030000px;}
.y37{bottom:966.930000px;}
.y150{bottom:973.770000px;}
.y6f{bottom:975.930000px;}
.y22a{bottom:976.830000px;}
.y27e{bottom:977.550000px;}
.y36{bottom:984.030000px;}
.y7{bottom:984.555000px;}
.y8f{bottom:984.570000px;}
.y20c{bottom:987.630000px;}
.y14d{bottom:994.290000px;}
.ya4{bottom:997.530000px;}
.yef{bottom:998.250000px;}
.ybd{bottom:998.430000px;}
.y27d{bottom:999.150000px;}
.y35{bottom:1001.310000px;}
.y62{bottom:1008.330000px;}
.y20b{bottom:1009.230000px;}
.y110{bottom:1010.130000px;}
.y6{bottom:1013.610000px;}
.y8e{bottom:1015.530000px;}
.y14c{bottom:1018.230000px;}
.y34{bottom:1018.410000px;}
.y229{bottom:1020.030000px;}
.y27c{bottom:1020.750000px;}
.ya3{bottom:1029.930000px;}
.ybc{bottom:1030.830000px;}
.y33{bottom:1035.690000px;}
.y14b{bottom:1038.030000px;}
.y61{bottom:1040.730000px;}
.y228{bottom:1041.630000px;}
.y27b{bottom:1042.350000px;}
.y5{bottom:1042.890000px;}
.y8d{bottom:1046.670000px;}
.y10f{bottom:1050.450000px;}
.y20a{bottom:1052.430000px;}
.y32{bottom:1052.970000px;}
.y14a{bottom:1057.830000px;}
.ya2{bottom:1062.330000px;}
.ybb{bottom:1063.230000px;}
.y27a{bottom:1063.950000px;}
.y10e{bottom:1071.150000px;}
.y4{bottom:1071.645000px;}
.y31{bottom:1071.870000px;}
.y60{bottom:1073.130000px;}
.y209{bottom:1074.030000px;}
.y8c{bottom:1077.630000px;}
.y227{bottom:1084.830000px;}
.y10d{bottom:1090.950000px;}
.y9a{bottom:1094.730000px;}
.yba{bottom:1095.630000px;}
.y3{bottom:1096.350000px;}
.y30{bottom:1096.530000px;}
.y149{bottom:1098.330000px;}
.y5f{bottom:1105.530000px;}
.y226{bottom:1106.430000px;}
.y8b{bottom:1108.770000px;}
.y10b{bottom:1111.470000px;}
.y99{bottom:1116.330000px;}
.y148{bottom:1120.650000px;}
.yb9{bottom:1128.030000px;}
.y2f{bottom:1130.550000px;}
.y2c{bottom:1131.810000px;}
.y109{bottom:1131.990000px;}
.y5e{bottom:1137.960000px;}
.y2{bottom:1138.260000px;}
.y8a{bottom:1139.760000px;}
.y147{bottom:1142.280000px;}
.yb8{bottom:1150.020000px;}
.y1{bottom:1152.240000px;}
.y2e{bottom:1152.360000px;}
.y107{bottom:1153.620000px;}
.yb7{bottom:1169.640000px;}
.y5b{bottom:1171.620000px;}
.y5a{bottom:1191.240000px;}
.y2d{bottom:1262.880000px;}
.y2b{bottom:1262.955000px;}
.h15{height:5.706563px;}
.h12{height:6.387783px;}
.h33{height:19.800000px;}
.h37{height:19.836000px;}
.h45{height:19.980000px;}
.h46{height:20.196000px;}
.h36{height:20.880000px;}
.h49{height:21.240000px;}
.h31{height:21.600000px;}
.h32{height:21.636000px;}
.h47{height:21.780000px;}
.h48{height:22.140000px;}
.h43{height:22.320000px;}
.h44{height:22.860000px;}
.h3f{height:23.220000px;}
.h42{height:23.580000px;}
.h41{height:23.760000px;}
.h40{height:24.120000px;}
.h3e{height:28.080000px;}
.h3b{height:28.620000px;}
.h38{height:30.780000px;}
.h39{height:31.536000px;}
.h3d{height:31.860000px;}
.h52{height:32.400000px;}
.h56{height:32.436000px;}
.h55{height:32.580000px;}
.h5a{height:33.660000px;}
.h35{height:34.200000px;}
.h3c{height:34.740000px;}
.h5e{height:35.100000px;}
.h5d{height:35.136000px;}
.h5c{height:35.280000px;}
.h5b{height:35.316000px;}
.h54{height:36.000000px;}
.h53{height:36.036000px;}
.h4a{height:37.800000px;}
.h3a{height:38.340000px;}
.h4c{height:40.608281px;}
.h1a{height:42.777422px;}
.h59{height:42.804459px;}
.h4b{height:43.200000px;}
.h2b{height:46.622932px;}
.h13{height:47.909564px;}
.h2c{height:50.305781px;}
.h50{height:50.976000px;}
.h11{height:52.686885px;}
.h34{height:55.760625px;}
.h25{height:58.651172px;}
.h2{height:59.063379px;}
.h16{height:59.205586px;}
.h27{height:60.609375px;}
.h2f{height:60.679688px;}
.h23{height:61.189805px;}
.h30{height:61.423863px;}
.h4{height:62.306432px;}
.h19{height:62.362266px;}
.h29{height:63.887252px;}
.h57{height:64.800000px;}
.h51{height:64.830000px;}
.h24{height:64.875938px;}
.h28{height:65.625469px;}
.h4d{height:67.837500px;}
.h6{height:68.461055px;}
.h2e{height:70.664062px;}
.hf{height:71.332031px;}
.h2d{height:72.562500px;}
.h5{height:73.078096px;}
.hd{height:73.722656px;}
.h2a{height:74.004654px;}
.h58{height:79.920000px;}
.h20{height:82.676953px;}
.h22{height:86.255508px;}
.h17{height:86.311758px;}
.h3{height:89.124548px;}
.h18{height:89.204414px;}
.h10{height:90.033000px;}
.he{height:97.555500px;}
.h7{height:100.195752px;}
.h1b{height:100.342969px;}
.h21{height:101.291484px;}
.h1c{height:104.144766px;}
.h8{height:104.334984px;}
.h9{height:104.532583px;}
.h1d{height:104.686172px;}
.h1e{height:123.116836px;}
.ha{height:123.239707px;}
.h1f{height:153.343125px;}
.hb{height:181.554328px;}
.hc{height:498.195000px;}
.h4e{height:892.980000px;}
.h4f{height:893.250000px;}
.h26{height:1262.880000px;}
.h0{height:1262.955000px;}
.h1{height:1263.000000px;}
.h14{height:1263.060000px;}
.w30{width:18.000000px;}
.w5{width:20.955000px;}
.w4{width:27.940500px;}
.w22{width:28.260000px;}
.w2f{width:32.940000px;}
.w2a{width:36.720000px;}
.w2e{width:39.960000px;}
.w20{width:42.480000px;}
.w2b{width:46.980000px;}
.w2d{width:47.016000px;}
.w2c{width:47.160000px;}
.w29{width:47.196000px;}
.w1d{width:53.100000px;}
.w1e{width:53.136000px;}
.w1f{width:53.280000px;}
.w21{width:53.316000px;}
.w19{width:55.080000px;}
.w1b{width:58.680000px;}
.w28{width:59.760000px;}
.w27{width:59.940000px;}
.w26{width:59.976000px;}
.w25{width:60.120000px;}
.w1a{width:60.156000px;}
.w18{width:63.720000px;}
.wc{width:63.756000px;}
.w1c{width:63.900000px;}
.w17{width:65.376000px;}
.w3{width:67.969500px;}
.wf{width:74.376000px;}
.w38{width:78.120000px;}
.w3a{width:82.080000px;}
.w3d{width:83.880000px;}
.w3c{width:83.916000px;}
.w3e{width:92.700000px;}
.w37{width:93.060000px;}
.wd{width:95.760000px;}
.w3b{width:104.580000px;}
.w24{width:107.496000px;}
.w36{width:108.756000px;}
.w39{width:113.976000px;}
.we{width:127.656000px;}
.w32{width:182.910000px;}
.w16{width:230.970000px;}
.w35{width:261.390000px;}
.w33{width:279.930000px;}
.wb{width:298.110000px;}
.w34{width:300.630000px;}
.w10{width:659.670000px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w7{width:893.250000px;}
.w8{width:893.339987px;}
.w6{width:893.340000px;}
.w31{width:1024.890000px;}
.w23{width:1050.450000px;}
.w15{width:1106.460000px;}
.w14{width:1113.660000px;}
.w13{width:1262.879981px;}
.w11{width:1262.880000px;}
.w12{width:1263.000000px;}
.w2{width:1871.189972px;}
.w0{width:1871.190000px;}
.w1{width:1871.250000px;}
.x0{left:0.000000px;}
.xa8{left:1.260000px;}
.xb7{left:3.060000px;}
.x92{left:5.220000px;}
.xa7{left:6.660000px;}
.x5e{left:8.100000px;}
.xa5{left:9.540000px;}
.x6c{left:11.340000px;}
.x68{left:12.600000px;}
.xa4{left:14.040000px;}
.x9{left:15.855000px;}
.xa6{left:17.460000px;}
.x69{left:18.570000px;}
.x6{left:19.620000px;}
.xac{left:20.730000px;}
.x6d{left:21.810000px;}
.x6f{left:22.860000px;}
.x99{left:25.590000px;}
.x70{left:27.000000px;}
.x6b{left:28.260000px;}
.x60{left:29.730000px;}
.xd6{left:30.780000px;}
.x71{left:31.890000px;}
.xa{left:33.315000px;}
.x73{left:34.560000px;}
.x6a{left:35.640000px;}
.x66{left:37.080000px;}
.xd9{left:39.060000px;}
.xd5{left:41.220000px;}
.x7{left:44.595000px;}
.xd8{left:46.620000px;}
.x62{left:47.880000px;}
.x6e{left:49.545000px;}
.xd1{left:52.020000px;}
.xd7{left:54.180000px;}
.xda{left:56.880000px;}
.xdb{left:60.510000px;}
.x64{left:63.765000px;}
.xe1{left:81.210000px;}
.xb8{left:84.810000px;}
.x93{left:86.610000px;}
.xe2{left:89.490000px;}
.xcb{left:91.470000px;}
.xde{left:92.745000px;}
.xe0{left:96.165000px;}
.xb{left:97.595987px;}
.x91{left:100.260000px;}
.xdc{left:101.925000px;}
.x12{left:106.415987px;}
.xcd{left:109.485000px;}
.xdd{left:112.350000px;}
.x56{left:114.155987px;}
.xdf{left:115.770000px;}
.x57{left:118.655987px;}
.xce{left:119.730000px;}
.xe4{left:127.655987px;}
.xe3{left:133.770000px;}
.xc9{left:146.015987px;}
.x5d{left:148.895987px;}
.x33{left:159.509987px;}
.x15{left:163.829987px;}
.x1f{left:165.269987px;}
.x35{left:167.429987px;}
.xe9{left:170.129987px;}
.x37{left:171.929987px;}
.x41{left:180.029987px;}
.x100{left:187.769987px;}
.x46{left:192.629987px;}
.xf6{left:196.589987px;}
.xbc{left:200.909987px;}
.x28{left:204.149987px;}
.x17{left:205.409987px;}
.x49{left:207.029987px;}
.xbd{left:208.829987px;}
.xef{left:210.989987px;}
.xaa{left:213.690000px;}
.x132{left:215.669987px;}
.x42{left:217.649987px;}
.x10c{left:225.029987px;}
.x106{left:227.549987px;}
.x11f{left:228.989987px;}
.xe5{left:233.849987px;}
.x107{left:236.369987px;}
.x120{left:237.809987px;}
.x133{left:242.129987px;}
.x108{left:254.054987px;}
.x121{left:255.494987px;}
.x11c{left:258.194987px;}
.x124{left:259.454987px;}
.x130{left:262.874987px;}
.x13a{left:264.854987px;}
.x11d{left:267.014987px;}
.xfe{left:268.814987px;}
.x131{left:271.694987px;}
.x2{left:272.984972px;}
.xe6{left:274.574987px;}
.xe7{left:279.074987px;}
.x122{left:283.214987px;}
.x23{left:284.294987px;}
.x72{left:285.339000px;}
.xe8{left:287.894987px;}
.xcc{left:289.110000px;}
.xff{left:291.674987px;}
.xf0{left:293.114987px;}
.xc1{left:295.274987px;}
.x1d{left:300.494987px;}
.xc2{left:303.734987px;}
.x24{left:304.994987px;}
.x77{left:306.614987px;}
.x113{left:307.694987px;}
.x123{left:309.674987px;}
.x78{left:315.254987px;}
.x1c{left:316.694987px;}
.x136{left:318.134987px;}
.x2e{left:319.934987px;}
.x67{left:330.189000px;}
.x14{left:331.274987px;}
.x134{left:332.534987px;}
.xd{left:334.874987px;}
.x8d{left:336.134987px;}
.x94{left:337.350000px;}
.x127{left:340.814987px;}
.x8e{left:345.674987px;}
.x128{left:349.814987px;}
.x139{left:351.074987px;}
.x1e{left:353.054987px;}
.x2a{left:355.574987px;}
.x2f{left:358.274987px;}
.xc3{left:359.354987px;}
.x10f{left:361.874987px;}
.xc6{left:364.754987px;}
.xc4{left:371.774987px;}
.x79{left:380.054987px;}
.x34{left:389.054987px;}
.x3b{left:390.314987px;}
.x2b{left:391.754987px;}
.x1b{left:393.914987px;}
.x115{left:396.434987px;}
.xd0{left:397.875000px;}
.xbe{left:399.494987px;}
.x95{left:402.735000px;}
.x5f{left:404.535000px;}
.x18{left:405.974987px;}
.xed{left:408.494987px;}
.x19{left:410.654987px;}
.x30{left:412.274987px;}
.x4f{left:413.354987px;}
.x58{left:415.874987px;}
.x11{left:416.954987px;}
.xc7{left:418.394987px;}
.x20{left:419.834987px;}
.x45{left:422.204987px;}
.xf1{left:423.824987px;}
.x32{left:426.884987px;}
.x4d{left:432.284987px;}
.x118{left:434.984987px;}
.x3c{left:437.504987px;}
.x31{left:438.584987px;}
.x1a{left:440.924987px;}
.x13{left:442.724987px;}
.xea{left:443.804987px;}
.x16{left:446.504987px;}
.x80{left:449.024987px;}
.xfb{left:450.104987px;}
.x59{left:454.784987px;}
.x129{left:455.864987px;}
.x10b{left:457.664987px;}
.xfc{left:458.924987px;}
.x81{left:460.004987px;}
.x4a{left:464.504987px;}
.x96{left:466.455000px;}
.x61{left:468.285000px;}
.xb9{left:472.604987px;}
.xfd{left:476.564987px;}
.xbf{left:478.724987px;}
.x4e{left:481.064987px;}
.x87{left:483.764987px;}
.x5a{left:485.384987px;}
.xc0{left:487.004987px;}
.x50{left:490.964987px;}
.x8c{left:496.004987px;}
.x88{left:497.264987px;}
.x114{left:500.324987px;}
.x5c{left:501.584987px;}
.x74{left:504.104987px;}
.x3f{left:507.164987px;}
.x51{left:510.404987px;}
.xab{left:513.615000px;}
.x52{left:514.724987px;}
.x12f{left:519.224987px;}
.x97{left:521.535000px;}
.x135{left:525.164987px;}
.x82{left:529.124987px;}
.xa9{left:531.615000px;}
.x83{left:537.584987px;}
.x11a{left:540.104987px;}
.x40{left:545.864987px;}
.x103{left:547.124987px;}
.xca{left:550.184987px;}
.x3d{left:553.244987px;}
.x10e{left:554.324987px;}
.x84{left:556.484987px;}
.xc{left:558.464987px;}
.x63{left:564.045000px;}
.x85{left:565.844987px;}
.x53{left:569.624987px;}
.x43{left:570.884987px;}
.xe{left:573.584987px;}
.x54{left:576.284987px;}
.x12d{left:577.724987px;}
.xf{left:580.064987px;}
.xf2{left:582.944987px;}
.x98{left:585.255000px;}
.x110{left:587.984987px;}
.xba{left:589.244987px;}
.xfa{left:591.089987px;}
.x25{left:594.329987px;}
.x10a{left:600.089987px;}
.xbb{left:602.429987px;}
.x3e{left:603.509987px;}
.x119{left:606.929987px;}
.x44{left:608.549987px;}
.xf7{left:612.329987px;}
.x104{left:616.829987px;}
.x125{left:618.089987px;}
.x75{left:619.349987px;}
.x89{left:621.689987px;}
.x26{left:623.129987px;}
.xf4{left:624.209987px;}
.x10d{left:625.829987px;}
.x137{left:628.889987px;}
.x8a{left:629.969987px;}
.x76{left:633.029987px;}
.x55{left:634.649987px;}
.x111{left:637.349987px;}
.x21{left:639.149987px;}
.x86{left:640.769987px;}
.x10{left:643.064987px;}
.x116{left:644.549987px;}
.x7c{left:647.069987px;}
.xf8{left:649.409987px;}
.x7a{left:651.209987px;}
.x126{left:652.469987px;}
.x112{left:654.989987px;}
.x7d{left:656.609987px;}
.x7b{left:659.849987px;}
.x5b{left:661.829987px;}
.xf5{left:664.169987px;}
.x117{left:665.789987px;}
.xf9{left:667.049987px;}
.x109{left:668.129987px;}
.xc5{left:669.389987px;}
.x22{left:670.469987px;}
.x11b{left:673.349987px;}
.xf3{left:674.429987px;}
.x138{left:676.949987px;}
.x101{left:679.109987px;}
.xad{left:680.505000px;}
.xd2{left:683.025000px;}
.x11e{left:684.869987px;}
.x102{left:687.929987px;}
.x65{left:691.710000px;}
.x105{left:693.149987px;}
.x2c{left:694.409987px;}
.x12e{left:695.849987px;}
.xee{left:697.829987px;}
.x12a{left:698.909987px;}
.x9a{left:700.485000px;}
.x2d{left:704.309987px;}
.x12b{left:708.269987px;}
.xeb{left:712.589987px;}
.x8f{left:714.389987px;}
.xae{left:717.225000px;}
.x47{left:720.689987px;}
.x7e{left:723.209987px;}
.x48{left:724.829987px;}
.x12c{left:725.909987px;}
.x90{left:727.529987px;}
.x4b{left:728.969987px;}
.xec{left:730.589987px;}
.x7f{left:731.669987px;}
.x29{left:733.649987px;}
.x8b{left:736.169987px;}
.x9b{left:759.165000px;}
.xc8{left:760.499987px;}
.x27{left:762.299987px;}
.x3a{left:763.379987px;}
.x36{left:765.899987px;}
.x39{left:767.159987px;}
.x38{left:768.779987px;}
.x4c{left:770.939987px;}
.xaf{left:811.185000px;}
.x9c{left:823.065000px;}
.xb0{left:858.345000px;}
.xcf{left:869.685000px;}
.x9d{left:876.165000px;}
.xb1{left:895.065000px;}
.x5{left:920.280000px;}
.x9e{left:929.310000px;}
.x8{left:935.325000px;}
.xb2{left:942.090000px;}
.xd3{left:953.610000px;}
.x1{left:963.269972px;}
.x9f{left:982.410000px;}
.xb3{left:1029.030000px;}
.xa0{left:1035.690000px;}
.xd4{left:1037.490000px;}
.xb4{left:1065.750000px;}
.xa1{left:1088.790000px;}
.xb5{left:1105.710000px;}
.xa2{left:1131.270000px;}
.xb6{left:1138.650000px;}
.xa3{left:1184.580000px;}
.x3{left:1313.939972px;}
.x4{left:1558.439972px;}
@media print{
.v1{vertical-align:-103.146667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls3b{letter-spacing:-0.451733pt;}
.ls2f{letter-spacing:-0.445333pt;}
.ls2b{letter-spacing:-0.337306pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.310400pt;}
.ls1c{letter-spacing:-0.269845pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.227733pt;}
.ls3d{letter-spacing:-0.202384pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.189333pt;}
.ls1a{letter-spacing:-0.148267pt;}
.lsd{letter-spacing:-0.134922pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.067461pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls30{letter-spacing:-0.051200pt;}
.ls31{letter-spacing:-0.048000pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.043520pt;}
.ls2d{letter-spacing:-0.019840pt;}
.ls16{letter-spacing:-0.000005pt;}
.ls9{letter-spacing:-0.000001pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000001pt;}
.ls24{letter-spacing:0.020480pt;}
.lsc{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.071467pt;}
.ls13{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.170667pt;}
.ls36{letter-spacing:0.188160pt;}
.ls28{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.194667pt;}
.ls3a{letter-spacing:0.202384pt;}
.ls32{letter-spacing:0.224533pt;}
.ls4{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.259200pt;}
.lse{letter-spacing:0.269845pt;}
.ls37{letter-spacing:0.298667pt;}
.ls34{letter-spacing:0.304000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.337306pt;}
.ls5{letter-spacing:0.338133pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.448000pt;}
.ls3e{letter-spacing:0.472229pt;}
.ls2c{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.539690pt;}
.ls1e{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.660480pt;}
.ls26{letter-spacing:0.768000pt;}
.ls35{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls19{letter-spacing:12.160000pt;}
.ls3c{letter-spacing:23.018667pt;}
.ls3f{letter-spacing:38.400000pt;}
.ls15{letter-spacing:172.778667pt;}
.ls2{letter-spacing:814.411947pt;}
.ls0{letter-spacing:3671.873195pt;}
.ws1a{word-spacing:-64.000000pt;}
.ws4{word-spacing:-20.538880pt;}
.ws0{word-spacing:-20.508747pt;}
.wse{word-spacing:-18.547307pt;}
.ws5{word-spacing:-18.385920pt;}
.ws16{word-spacing:-18.281173pt;}
.ws19{word-spacing:-17.135157pt;}
.wsc{word-spacing:-16.865312pt;}
.ws20{word-spacing:-16.768000pt;}
.wsb{word-spacing:-16.730390pt;}
.ws18{word-spacing:-16.595467pt;}
.ws23{word-spacing:-16.512000pt;}
.ws21{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.320000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.999995pt;}
.wsd{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.680000pt;}
.ws22{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-14.791467pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.530667pt;}
.ws1e{word-spacing:-14.492267pt;}
.ws8{word-spacing:-13.618133pt;}
.wsa{word-spacing:-13.539200pt;}
.ws1{word-spacing:-13.373333pt;}
.ws9{word-spacing:-13.280000pt;}
.ws2c{word-spacing:-11.024000pt;}
.ws2a{word-spacing:-10.944533pt;}
.ws26{word-spacing:-10.914667pt;}
.ws1f{word-spacing:-10.720000pt;}
.ws24{word-spacing:-10.700160pt;}
.ws29{word-spacing:-10.672000pt;}
.ws28{word-spacing:-10.668800pt;}
.ws25{word-spacing:-10.464000pt;}
.ws2b{word-spacing:-10.409600pt;}
.ws27{word-spacing:-10.274667pt;}
.ws2d{word-spacing:-6.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:1.337333pt;}
._5{margin-left:-10.698667pt;}
._6{margin-left:-9.455211pt;}
._4{margin-left:-8.511994pt;}
._8{margin-left:-3.776000pt;}
._9{margin-left:-2.643733pt;}
._2{margin-left:-0.907467pt;}
._1{width:0.998213pt;}
._3{width:2.125360pt;}
._7{width:3.840000pt;}
._d{width:5.248000pt;}
._e{width:6.144000pt;}
._f{width:7.104000pt;}
._a{width:8.192000pt;}
._b{width:9.165360pt;}
._10{width:10.362400pt;}
._13{width:11.300987pt;}
._15{width:12.641600pt;}
._14{width:13.888000pt;}
._c{width:14.848000pt;}
._37{width:15.914329pt;}
._16{width:17.088000pt;}
._17{width:18.081893pt;}
._12{width:19.094133pt;}
._11{width:20.032000pt;}
._1a{width:21.248000pt;}
._18{width:22.144000pt;}
._19{width:23.257787pt;}
._21{width:24.512000pt;}
._2d{width:25.449980pt;}
._1b{width:31.552000pt;}
._27{width:35.050667pt;}
._28{width:35.968000pt;}
._2e{width:37.508454pt;}
._29{width:38.587834pt;}
._39{width:39.667214pt;}
._3a{width:40.692838pt;}
._2f{width:44.096000pt;}
._38{width:46.143494pt;}
._1e{width:48.000000pt;}
._43{width:53.824000pt;}
._44{width:55.655530pt;}
._25{width:56.896000pt;}
._24{width:61.119891pt;}
._42{width:64.576000pt;}
._32{width:75.648000pt;}
._31{width:78.757748pt;}
._30{width:79.739196pt;}
._3c{width:90.176000pt;}
._3b{width:95.390206pt;}
._1c{width:99.392000pt;}
._20{width:100.992000pt;}
._3d{width:102.976000pt;}
._3e{width:103.904000pt;}
._1d{width:105.172087pt;}
._1f{width:106.386389pt;}
._26{width:130.496000pt;}
._36{width:143.936000pt;}
._35{width:151.787810pt;}
._34{width:182.912000pt;}
._33{width:192.092646pt;}
._2c{width:216.832000pt;}
._40{width:218.176000pt;}
._2b{width:227.209486pt;}
._2a{width:228.693634pt;}
._3f{width:230.177781pt;}
._41{width:231.672006pt;}
._23{width:308.544000pt;}
._22{width:325.635448pt;}
._0{width:2019.693333pt;}
.fsa{font-size:5.120000pt;}
.fs8{font-size:5.731200pt;}
.fs19{font-size:26.880000pt;}
.fs15{font-size:40.320000pt;}
.fs16{font-size:42.880000pt;}
.fs9{font-size:42.985067pt;}
.fs18{font-size:45.199037pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:53.493333pt;}
.fs12{font-size:56.320000pt;}
.fs13{font-size:58.880000pt;}
.fs17{font-size:61.440000pt;}
.fs7{font-size:64.000000pt;}
.fs14{font-size:67.461249pt;}
.fs11{font-size:74.880000pt;}
.fs1{font-size:77.370667pt;}
.fsc{font-size:77.440000pt;}
.fs3{font-size:85.013333pt;}
.fs2{font-size:90.746667pt;}
.fsd{font-size:90.880000pt;}
.fse{font-size:93.440000pt;}
.fs4{font-size:93.610667pt;}
.fsf{font-size:106.880000pt;}
.fs5{font-size:106.986667pt;}
.fs10{font-size:133.120000pt;}
.fs6{font-size:157.610667pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:1.426667pt;}
.y29{bottom:1.433333pt;}
.y188{bottom:1.760000pt;}
.y145{bottom:2.394667pt;}
.y10c{bottom:2.400000pt;}
.y156{bottom:2.440000pt;}
.y16b{bottom:2.560000pt;}
.y108{bottom:2.720000pt;}
.y10a{bottom:2.746667pt;}
.y115{bottom:2.880000pt;}
.y179{bottom:3.040000pt;}
.y16d{bottom:3.200000pt;}
.y114{bottom:3.360000pt;}
.y166{bottom:3.520000pt;}
.y178{bottom:3.680000pt;}
.y169{bottom:3.840000pt;}
.y14f{bottom:4.000000pt;}
.y15d{bottom:4.160000pt;}
.y158{bottom:4.320000pt;}
.y170{bottom:4.480000pt;}
.y165{bottom:4.640000pt;}
.y168{bottom:5.120000pt;}
.y14e{bottom:5.440000pt;}
.y161{bottom:5.760000pt;}
.y15c{bottom:5.920000pt;}
.y142{bottom:6.080000pt;}
.y132{bottom:6.240000pt;}
.y121{bottom:7.360000pt;}
.y128{bottom:7.680000pt;}
.y1b8{bottom:8.160000pt;}
.y1c4{bottom:8.186667pt;}
.y112{bottom:8.800000pt;}
.y137{bottom:9.120000pt;}
.y141{bottom:9.760000pt;}
.y131{bottom:10.240000pt;}
.y184{bottom:10.400000pt;}
.y12d{bottom:10.720000pt;}
.y120{bottom:12.160000pt;}
.y19c{bottom:12.320000pt;}
.y1ad{bottom:12.480000pt;}
.y1eb{bottom:12.800000pt;}
.y127{bottom:12.826667pt;}
.y1ed{bottom:12.960000pt;}
.y13d{bottom:13.120000pt;}
.y1ef{bottom:13.600000pt;}
.y1a2{bottom:13.920000pt;}
.y1a9{bottom:13.946667pt;}
.y19f{bottom:14.400000pt;}
.y187{bottom:14.560000pt;}
.y199{bottom:15.072000pt;}
.y111{bottom:15.200000pt;}
.y1a4{bottom:15.520000pt;}
.y1ab{bottom:15.546667pt;}
.y136{bottom:15.680000pt;}
.y1a3{bottom:16.000000pt;}
.y1aa{bottom:16.026667pt;}
.y183{bottom:18.400000pt;}
.y12c{bottom:18.880000pt;}
.y1d1{bottom:21.600000pt;}
.y186{bottom:27.354667pt;}
.y198{bottom:28.826667pt;}
.y1d0{bottom:40.800000pt;}
.y19b{bottom:41.120000pt;}
.y5d{bottom:50.080000pt;}
.y2a{bottom:50.864000pt;}
.y1cf{bottom:60.000000pt;}
.y59{bottom:63.040000pt;}
.y5c{bottom:67.840000pt;}
.y27{bottom:71.906667pt;}
.y23{bottom:74.306667pt;}
.y21{bottom:78.120000pt;}
.y58{bottom:79.200000pt;}
.y24{bottom:89.586667pt;}
.y28{bottom:90.776000pt;}
.y20{bottom:93.402667pt;}
.y57{bottom:96.480000pt;}
.ya1{bottom:99.232000pt;}
.y29a{bottom:100.032000pt;}
.yee{bottom:101.152000pt;}
.y25a{bottom:102.272000pt;}
.y193{bottom:102.912000pt;}
.y279{bottom:103.872000pt;}
.y291{bottom:104.352000pt;}
.y104{bottom:106.112000pt;}
.y1f{bottom:108.686667pt;}
.y185{bottom:109.312000pt;}
.y106{bottom:109.472000pt;}
.yd8{bottom:109.632000pt;}
.y56{bottom:112.800000pt;}
.y197{bottom:113.280000pt;}
.y146{bottom:113.792000pt;}
.ya0{bottom:118.432000pt;}
.y299{bottom:119.232000pt;}
.y242{bottom:120.352000pt;}
.y259{bottom:121.472000pt;}
.y278{bottom:123.072000pt;}
.y290{bottom:123.552000pt;}
.y89{bottom:123.712000pt;}
.y208{bottom:126.272000pt;}
.y225{bottom:128.832000pt;}
.y55{bottom:129.120000pt;}
.yed{bottom:129.952000pt;}
.y144{bottom:131.392000pt;}
.y1e{bottom:131.612000pt;}
.y192{bottom:132.352000pt;}
.y103{bottom:134.906667pt;}
.y9f{bottom:137.626667pt;}
.y105{bottom:138.266667pt;}
.yd7{bottom:138.426667pt;}
.y241{bottom:139.546667pt;}
.y258{bottom:140.666667pt;}
.y28f{bottom:142.746667pt;}
.y54{bottom:145.306667pt;}
.y224{bottom:148.026667pt;}
.y182{bottom:148.346667pt;}
.y1e7{bottom:148.666667pt;}
.y143{bottom:148.986667pt;}
.y88{bottom:151.226667pt;}
.y207{bottom:155.066667pt;}
.y9e{bottom:156.826667pt;}
.y1b5{bottom:156.986667pt;}
.y298{bottom:157.626667pt;}
.y1ce{bottom:158.426667pt;}
.yec{bottom:158.746667pt;}
.y257{bottom:159.866667pt;}
.y277{bottom:160.986667pt;}
.y191{bottom:161.306667pt;}
.y53{bottom:161.626667pt;}
.y102{bottom:163.706667pt;}
.y140{bottom:166.586667pt;}
.yd6{bottom:167.226667pt;}
.y9d{bottom:176.026667pt;}
.y1d{bottom:176.533333pt;}
.y297{bottom:176.826667pt;}
.y1e6{bottom:177.466667pt;}
.y52{bottom:177.946667pt;}
.y87{bottom:178.906667pt;}
.y256{bottom:179.066667pt;}
.y276{bottom:180.186667pt;}
.y28e{bottom:180.666667pt;}
.y181{bottom:181.946667pt;}
.y206{bottom:183.866667pt;}
.y1b4{bottom:185.786667pt;}
.y223{bottom:186.426667pt;}
.yeb{bottom:187.546667pt;}
.y190{bottom:190.906667pt;}
.y13f{bottom:191.546667pt;}
.y101{bottom:192.506667pt;}
.y51{bottom:194.266667pt;}
.y9c{bottom:195.226667pt;}
.yd5{bottom:196.026667pt;}
.y240{bottom:197.146667pt;}
.y255{bottom:198.266667pt;}
.y275{bottom:199.386667pt;}
.y180{bottom:199.546667pt;}
.y28d{bottom:199.866667pt;}
.y222{bottom:205.786667pt;}
.y1e5{bottom:206.266667pt;}
.y86{bottom:206.426667pt;}
.y1c{bottom:209.013333pt;}
.y13e{bottom:209.146667pt;}
.y50{bottom:210.426667pt;}
.y205{bottom:212.666667pt;}
.y9b{bottom:214.426667pt;}
.y1b3{bottom:214.586667pt;}
.y296{bottom:215.386667pt;}
.yea{bottom:216.346667pt;}
.y17f{bottom:217.146667pt;}
.y254{bottom:217.466667pt;}
.y274{bottom:218.586667pt;}
.y28c{bottom:219.066667pt;}
.y18f{bottom:220.506667pt;}
.y100{bottom:222.106667pt;}
.yd4{bottom:224.986667pt;}
.y4f{bottom:226.746667pt;}
.y1cd{bottom:231.066667pt;}
.y85{bottom:233.626667pt;}
.y295{bottom:234.586667pt;}
.y17e{bottom:234.746667pt;}
.y1e4{bottom:235.066667pt;}
.y23f{bottom:235.546667pt;}
.y253{bottom:236.666667pt;}
.y273{bottom:237.786667pt;}
.y204{bottom:241.466667pt;}
.y1b{bottom:241.733333pt;}
.y4e{bottom:243.066667pt;}
.y1b2{bottom:243.386667pt;}
.y221{bottom:244.186667pt;}
.ye9{bottom:245.146667pt;}
.y18e{bottom:250.106667pt;}
.y1cc{bottom:251.226667pt;}
.yff{bottom:251.866667pt;}
.y17d{bottom:252.346667pt;}
.yd3{bottom:253.786667pt;}
.y13c{bottom:255.066667pt;}
.y252{bottom:255.866667pt;}
.y272{bottom:256.986667pt;}
.y4d{bottom:259.386667pt;}
.y84{bottom:262.426667pt;}
.y220{bottom:263.386667pt;}
.y1e3{bottom:263.866667pt;}
.y17c{bottom:269.946667pt;}
.y203{bottom:270.266667pt;}
.y1cb{bottom:271.586667pt;}
.y1b1{bottom:272.226667pt;}
.y13b{bottom:272.666667pt;}
.y294{bottom:272.986667pt;}
.y23e{bottom:273.466667pt;}
.ye8{bottom:273.946667pt;}
.y1a{bottom:274.213333pt;}
.y251{bottom:275.066667pt;}
.y4c{bottom:275.546667pt;}
.y271{bottom:276.186667pt;}
.y18d{bottom:279.706667pt;}
.yfe{bottom:280.826667pt;}
.yd2{bottom:282.586667pt;}
.y17b{bottom:287.546667pt;}
.y13a{bottom:290.266667pt;}
.y83{bottom:291.226667pt;}
.y1ca{bottom:291.746667pt;}
.y4b{bottom:291.866667pt;}
.y293{bottom:292.186667pt;}
.y1e2{bottom:292.666667pt;}
.y250{bottom:294.266667pt;}
.y270{bottom:295.386667pt;}
.y202{bottom:299.066667pt;}
.y1b0{bottom:301.026667pt;}
.y21f{bottom:301.786667pt;}
.ye7{bottom:302.746667pt;}
.y17a{bottom:305.146667pt;}
.y19{bottom:306.680000pt;}
.y139{bottom:307.866667pt;}
.y4a{bottom:308.186667pt;}
.y18c{bottom:309.466667pt;}
.yfd{bottom:309.626667pt;}
.yd1{bottom:311.386667pt;}
.y23d{bottom:311.866667pt;}
.y1c9{bottom:311.906667pt;}
.y24f{bottom:313.466667pt;}
.y28b{bottom:314.586667pt;}
.y82{bottom:320.066667pt;}
.y21e{bottom:321.026667pt;}
.y1e1{bottom:321.506667pt;}
.y177{bottom:322.786667pt;}
.y138{bottom:325.506667pt;}
.y49{bottom:325.786667pt;}
.y201{bottom:327.906667pt;}
.y1af{bottom:329.826667pt;}
.y292{bottom:330.626667pt;}
.ye6{bottom:331.586667pt;}
.y1c8{bottom:332.066667pt;}
.y24e{bottom:332.706667pt;}
.y26f{bottom:333.186667pt;}
.yfc{bottom:338.466667pt;}
.y18b{bottom:339.106667pt;}
.y18{bottom:339.200000pt;}
.y1e8{bottom:339.906667pt;}
.yd0{bottom:340.226667pt;}
.y176{bottom:341.666667pt;}
.y135{bottom:343.106667pt;}
.y48{bottom:348.346667pt;}
.y81{bottom:348.866667pt;}
.y23c{bottom:349.826667pt;}
.y1e0{bottom:350.306667pt;}
.y24d{bottom:351.906667pt;}
.y1c7{bottom:352.386667pt;}
.y1f5{bottom:356.386667pt;}
.y200{bottom:356.706667pt;}
.y1ae{bottom:358.626667pt;}
.y175{bottom:359.266667pt;}
.y21d{bottom:359.426667pt;}
.ye5{bottom:360.386667pt;}
.yfb{bottom:367.266667pt;}
.y18a{bottom:368.066667pt;}
.yb6{bottom:368.226667pt;}
.ycf{bottom:369.026667pt;}
.y24c{bottom:371.106667pt;}
.y26e{bottom:371.586667pt;}
.y17{bottom:371.906667pt;}
.y1c6{bottom:372.546667pt;}
.y134{bottom:373.986667pt;}
.y80{bottom:377.826667pt;}
.y174{bottom:378.626667pt;}
.y1df{bottom:379.106667pt;}
.y1ff{bottom:385.506667pt;}
.y1ac{bottom:387.426667pt;}
.y47{bottom:387.746667pt;}
.y23b{bottom:388.226667pt;}
.y1f4{bottom:388.386667pt;}
.ye4{bottom:389.186667pt;}
.y26d{bottom:390.786667pt;}
.y133{bottom:391.586667pt;}
.y25{bottom:392.213333pt;}
.y1c5{bottom:392.706667pt;}
.yfa{bottom:396.066667pt;}
.yb5{bottom:397.026667pt;}
.y189{bottom:397.666667pt;}
.yce{bottom:397.826667pt;}
.y173{bottom:399.586667pt;}
.y16{bottom:404.386667pt;}
.y7f{bottom:406.626667pt;}
.y23a{bottom:407.426667pt;}
.y1de{bottom:407.906667pt;}
.y24b{bottom:409.026667pt;}
.y130{bottom:409.186667pt;}
.y1c3{bottom:413.026667pt;}
.y1fe{bottom:414.306667pt;}
.y46{bottom:414.466667pt;}
.y22{bottom:414.893333pt;}
.y1a8{bottom:416.386667pt;}
.y21c{bottom:417.026667pt;}
.ye3{bottom:417.986667pt;}
.y1f3{bottom:419.613333pt;}
.y172{bottom:420.226667pt;}
.yf9{bottom:424.866667pt;}
.yb4{bottom:425.826667pt;}
.ycd{bottom:426.626667pt;}
.y24a{bottom:428.226667pt;}
.y26c{bottom:428.706667pt;}
.y1c2{bottom:433.213333pt;}
.y12f{bottom:434.626667pt;}
.y7e{bottom:435.426667pt;}
.y45{bottom:435.906667pt;}
.y21b{bottom:436.226667pt;}
.y1dd{bottom:436.706667pt;}
.y15{bottom:436.866667pt;}
.y171{bottom:437.826667pt;}
.y1fd{bottom:443.106667pt;}
.y239{bottom:445.826667pt;}
.ye2{bottom:446.786667pt;}
.y249{bottom:447.426667pt;}
.y26b{bottom:447.906667pt;}
.y1a7{bottom:448.413333pt;}
.y1f2{bottom:451.613333pt;}
.y12e{bottom:452.226667pt;}
.y1c1{bottom:453.373333pt;}
.yf8{bottom:453.666667pt;}
.yb3{bottom:454.626667pt;}
.ycc{bottom:455.426667pt;}
.y44{bottom:462.306667pt;}
.y7d{bottom:464.226667pt;}
.y238{bottom:465.026667pt;}
.y1dc{bottom:465.506667pt;}
.y26a{bottom:467.106667pt;}
.y14{bottom:469.613333pt;}
.y12b{bottom:469.826667pt;}
.y1fc{bottom:471.906667pt;}
.y1c0{bottom:473.533333pt;}
.y16f{bottom:473.986667pt;}
.y21a{bottom:474.626667pt;}
.y1a6{bottom:480.413333pt;}
.yf7{bottom:482.466667pt;}
.y1f1{bottom:482.973333pt;}
.yb2{bottom:483.426667pt;}
.ycb{bottom:484.226667pt;}
.y248{bottom:485.186667pt;}
.y269{bottom:486.306667pt;}
.y7c{bottom:493.026667pt;}
.y16e{bottom:493.666667pt;}
.y219{bottom:493.826667pt;}
.y1bf{bottom:493.853333pt;}
.ye1{bottom:494.306667pt;}
.y1fb{bottom:500.706667pt;}
.y13{bottom:502.093333pt;}
.y43{bottom:502.146667pt;}
.y237{bottom:503.426667pt;}
.y12a{bottom:503.906667pt;}
.y247{bottom:504.546667pt;}
.y268{bottom:505.506667pt;}
.yf6{bottom:511.266667pt;}
.yb1{bottom:512.226667pt;}
.y1a5{bottom:512.413333pt;}
.yca{bottom:513.026667pt;}
.y1be{bottom:514.013333pt;}
.y1f0{bottom:514.333333pt;}
.y129{bottom:521.506667pt;}
.y7b{bottom:521.826667pt;}
.y236{bottom:522.626667pt;}
.ye0{bottom:523.106667pt;}
.y246{bottom:523.746667pt;}
.y28a{bottom:524.226667pt;}
.y267{bottom:524.706667pt;}
.y1fa{bottom:529.506667pt;}
.y16c{bottom:530.626667pt;}
.y218{bottom:532.226667pt;}
.y1bd{bottom:534.173333pt;}
.y12{bottom:534.573333pt;}
.y42{bottom:534.626667pt;}
.y126{bottom:539.106667pt;}
.yf5{bottom:540.066667pt;}
.yb0{bottom:541.026667pt;}
.yc9{bottom:541.826667pt;}
.y289{bottom:543.426667pt;}
.y266{bottom:543.906667pt;}
.y1a1{bottom:544.413333pt;}
.y1ee{bottom:545.693333pt;}
.y16a{bottom:548.573333pt;}
.y6e{bottom:549.853333pt;}
.y7a{bottom:550.653333pt;}
.y217{bottom:551.453333pt;}
.ydf{bottom:551.933333pt;}
.y1bc{bottom:554.333333pt;}
.y1f9{bottom:558.333333pt;}
.y235{bottom:561.053333pt;}
.y245{bottom:561.533333pt;}
.y288{bottom:562.653333pt;}
.y265{bottom:563.133333pt;}
.y167{bottom:566.333333pt;}
.y125{bottom:567.133333pt;}
.y41{bottom:567.266667pt;}
.y11{bottom:567.280000pt;}
.yf4{bottom:568.893333pt;}
.yaf{bottom:569.853333pt;}
.yc8{bottom:570.653333pt;}
.y1bb{bottom:574.693333pt;}
.y1a0{bottom:576.453333pt;}
.y1ec{bottom:577.733333pt;}
.y79{bottom:579.453333pt;}
.y234{bottom:580.253333pt;}
.yde{bottom:580.733333pt;}
.y1db{bottom:581.533333pt;}
.y287{bottom:581.853333pt;}
.y264{bottom:582.333333pt;}
.y6d{bottom:584.573333pt;}
.y124{bottom:584.733333pt;}
.y164{bottom:586.653333pt;}
.y1f8{bottom:587.133333pt;}
.y216{bottom:589.853333pt;}
.y1ba{bottom:594.853333pt;}
.yf3{bottom:598.333333pt;}
.yae{bottom:598.653333pt;}
.yc7{bottom:599.453333pt;}
.y10{bottom:599.760000pt;}
.y40{bottom:599.773333pt;}
.y244{bottom:599.933333pt;}
.y286{bottom:601.053333pt;}
.y123{bottom:602.333333pt;}
.y19e{bottom:605.253333pt;}
.y163{bottom:606.493333pt;}
.y78{bottom:608.253333pt;}
.y1ea{bottom:608.453333pt;}
.y6c{bottom:608.573333pt;}
.y215{bottom:609.053333pt;}
.ydd{bottom:609.533333pt;}
.y1da{bottom:611.293333pt;}
.y1b9{bottom:615.013333pt;}
.y1f7{bottom:615.933333pt;}
.y98{bottom:616.733333pt;}
.y233{bottom:618.653333pt;}
.y243{bottom:619.133333pt;}
.y122{bottom:619.933333pt;}
.y263{bottom:620.253333pt;}
.y6b{bottom:624.573333pt;}
.y162{bottom:625.053333pt;}
.yf2{bottom:627.293333pt;}
.yad{bottom:627.453333pt;}
.yc6{bottom:628.253333pt;}
.yf{bottom:632.266667pt;}
.y3f{bottom:632.413333pt;}
.y19d{bottom:634.693333pt;}
.y1b7{bottom:635.973333pt;}
.y77{bottom:637.053333pt;}
.y11f{bottom:637.533333pt;}
.y232{bottom:637.853333pt;}
.y6a{bottom:638.333333pt;}
.y285{bottom:638.973333pt;}
.y1e9{bottom:639.013333pt;}
.y262{bottom:639.453333pt;}
.y1d9{bottom:640.893333pt;}
.y1f6{bottom:641.533333pt;}
.y160{bottom:643.613333pt;}
.y97{bottom:645.533333pt;}
.y214{bottom:647.453333pt;}
.yf1{bottom:656.093333pt;}
.yac{bottom:656.253333pt;}
.y1b6{bottom:656.773333pt;}
.yc5{bottom:657.053333pt;}
.y284{bottom:658.173333pt;}
.y261{bottom:658.653333pt;}
.y3e{bottom:663.613333pt;}
.ye{bottom:663.786667pt;}
.y19a{bottom:664.133333pt;}
.y15f{bottom:664.573333pt;}
.y11e{bottom:664.893333pt;}
.y76{bottom:665.853333pt;}
.y213{bottom:666.653333pt;}
.ydc{bottom:667.133333pt;}
.y1d8{bottom:670.653333pt;}
.y69{bottom:673.693333pt;}
.y96{bottom:674.333333pt;}
.y231{bottom:676.253333pt;}
.y283{bottom:677.373333pt;}
.y260{bottom:677.853333pt;}
.y15e{bottom:682.173333pt;}
.y11d{bottom:682.493333pt;}
.yf0{bottom:684.893333pt;}
.yab{bottom:685.053333pt;}
.yc4{bottom:685.853333pt;}
.y3d{bottom:690.653333pt;}
.yd{bottom:690.773333pt;}
.y68{bottom:691.453333pt;}
.y196{bottom:693.413333pt;}
.y75{bottom:694.653333pt;}
.y230{bottom:695.453333pt;}
.ydb{bottom:695.933333pt;}
.y282{bottom:696.573333pt;}
.y1d7{bottom:699.613333pt;}
.y15b{bottom:699.773333pt;}
.y11c{bottom:700.093333pt;}
.y95{bottom:703.133333pt;}
.y212{bottom:705.053333pt;}
.y67{bottom:710.653333pt;}
.y195{bottom:710.853333pt;}
.yaa{bottom:713.853333pt;}
.yc3{bottom:714.653333pt;}
.y25f{bottom:715.773333pt;}
.y11b{bottom:717.693333pt;}
.y15a{bottom:720.893333pt;}
.y74{bottom:723.453333pt;}
.y211{bottom:724.253333pt;}
.yda{bottom:724.733333pt;}
.y1d6{bottom:729.053333pt;}
.y66{bottom:729.853333pt;}
.y194{bottom:730.080000pt;}
.y94{bottom:731.933333pt;}
.y22f{bottom:733.853333pt;}
.y281{bottom:734.333333pt;}
.y25e{bottom:734.973333pt;}
.y11a{bottom:735.293333pt;}
.y159{bottom:738.493333pt;}
.ya9{bottom:742.653333pt;}
.yc2{bottom:743.453333pt;}
.y3c{bottom:743.773333pt;}
.yc{bottom:743.786667pt;}
.y65{bottom:749.053333pt;}
.y73{bottom:752.253333pt;}
.y22e{bottom:753.053333pt;}
.yd9{bottom:753.533333pt;}
.y25d{bottom:754.173333pt;}
.y157{bottom:756.093333pt;}
.y1d5{bottom:758.013333pt;}
.y93{bottom:760.733333pt;}
.y210{bottom:762.653333pt;}
.y119{bottom:765.693333pt;}
.ya8{bottom:771.453333pt;}
.yb{bottom:772.240000pt;}
.yc1{bottom:772.253333pt;}
.y3b{bottom:772.413333pt;}
.y280{bottom:772.733333pt;}
.y155{bottom:777.533333pt;}
.y72{bottom:781.093333pt;}
.y20f{bottom:781.893333pt;}
.y118{bottom:783.333333pt;}
.y1d4{bottom:786.853333pt;}
.y92{bottom:789.573333pt;}
.y22d{bottom:791.493333pt;}
.y25c{bottom:791.973333pt;}
.y64{bottom:793.893333pt;}
.y154{bottom:795.173333pt;}
.ya{bottom:798.266667pt;}
.ya7{bottom:800.293333pt;}
.y117{bottom:800.933333pt;}
.yc0{bottom:801.093333pt;}
.y71{bottom:809.893333pt;}
.y22c{bottom:810.693333pt;}
.y25b{bottom:811.173333pt;}
.y153{bottom:812.773333pt;}
.y3a{bottom:813.573333pt;}
.y1d3{bottom:816.453333pt;}
.y91{bottom:818.373333pt;}
.y20e{bottom:820.293333pt;}
.y63{bottom:822.693333pt;}
.y9{bottom:823.106667pt;}
.y39{bottom:828.773333pt;}
.ya6{bottom:829.093333pt;}
.ybf{bottom:829.893333pt;}
.y152{bottom:830.373333pt;}
.y116{bottom:831.333333pt;}
.y70{bottom:838.693333pt;}
.y20d{bottom:839.493333pt;}
.y38{bottom:844.133333pt;}
.y1d2{bottom:845.413333pt;}
.y90{bottom:847.493333pt;}
.y151{bottom:847.973333pt;}
.y113{bottom:848.933333pt;}
.y22b{bottom:849.093333pt;}
.y8{bottom:849.133333pt;}
.y27f{bottom:849.733333pt;}
.ya5{bottom:857.893333pt;}
.ybe{bottom:858.693333pt;}
.y37{bottom:859.493333pt;}
.y150{bottom:865.573333pt;}
.y6f{bottom:867.493333pt;}
.y22a{bottom:868.293333pt;}
.y27e{bottom:868.933333pt;}
.y36{bottom:874.693333pt;}
.y7{bottom:875.160000pt;}
.y8f{bottom:875.173333pt;}
.y20c{bottom:877.893333pt;}
.y14d{bottom:883.813333pt;}
.ya4{bottom:886.693333pt;}
.yef{bottom:887.333333pt;}
.ybd{bottom:887.493333pt;}
.y27d{bottom:888.133333pt;}
.y35{bottom:890.053333pt;}
.y62{bottom:896.293333pt;}
.y20b{bottom:897.093333pt;}
.y110{bottom:897.893333pt;}
.y6{bottom:900.986667pt;}
.y8e{bottom:902.693333pt;}
.y14c{bottom:905.093333pt;}
.y34{bottom:905.253333pt;}
.y229{bottom:906.693333pt;}
.y27c{bottom:907.333333pt;}
.ya3{bottom:915.493333pt;}
.ybc{bottom:916.293333pt;}
.y33{bottom:920.613333pt;}
.y14b{bottom:922.693333pt;}
.y61{bottom:925.093333pt;}
.y228{bottom:925.893333pt;}
.y27b{bottom:926.533333pt;}
.y5{bottom:927.013333pt;}
.y8d{bottom:930.373333pt;}
.y10f{bottom:933.733333pt;}
.y20a{bottom:935.493333pt;}
.y32{bottom:935.973333pt;}
.y14a{bottom:940.293333pt;}
.ya2{bottom:944.293333pt;}
.ybb{bottom:945.093333pt;}
.y27a{bottom:945.733333pt;}
.y10e{bottom:952.133333pt;}
.y4{bottom:952.573333pt;}
.y31{bottom:952.773333pt;}
.y60{bottom:953.893333pt;}
.y209{bottom:954.693333pt;}
.y8c{bottom:957.893333pt;}
.y227{bottom:964.293333pt;}
.y10d{bottom:969.733333pt;}
.y9a{bottom:973.093333pt;}
.yba{bottom:973.893333pt;}
.y3{bottom:974.533333pt;}
.y30{bottom:974.693333pt;}
.y149{bottom:976.293333pt;}
.y5f{bottom:982.693333pt;}
.y226{bottom:983.493333pt;}
.y8b{bottom:985.573333pt;}
.y10b{bottom:987.973333pt;}
.y99{bottom:992.293333pt;}
.y148{bottom:996.133333pt;}
.yb9{bottom:1002.693333pt;}
.y2f{bottom:1004.933333pt;}
.y2c{bottom:1006.053333pt;}
.y109{bottom:1006.213333pt;}
.y5e{bottom:1011.520000pt;}
.y2{bottom:1011.786667pt;}
.y8a{bottom:1013.120000pt;}
.y147{bottom:1015.360000pt;}
.yb8{bottom:1022.240000pt;}
.y1{bottom:1024.213333pt;}
.y2e{bottom:1024.320000pt;}
.y107{bottom:1025.440000pt;}
.yb7{bottom:1039.680000pt;}
.y5b{bottom:1041.440000pt;}
.y5a{bottom:1058.880000pt;}
.y2d{bottom:1122.560000pt;}
.y2b{bottom:1122.626667pt;}
.h15{height:5.072500pt;}
.h12{height:5.678030pt;}
.h33{height:17.600000pt;}
.h37{height:17.632000pt;}
.h45{height:17.760000pt;}
.h46{height:17.952000pt;}
.h36{height:18.560000pt;}
.h49{height:18.880000pt;}
.h31{height:19.200000pt;}
.h32{height:19.232000pt;}
.h47{height:19.360000pt;}
.h48{height:19.680000pt;}
.h43{height:19.840000pt;}
.h44{height:20.320000pt;}
.h3f{height:20.640000pt;}
.h42{height:20.960000pt;}
.h41{height:21.120000pt;}
.h40{height:21.440000pt;}
.h3e{height:24.960000pt;}
.h3b{height:25.440000pt;}
.h38{height:27.360000pt;}
.h39{height:28.032000pt;}
.h3d{height:28.320000pt;}
.h52{height:28.800000pt;}
.h56{height:28.832000pt;}
.h55{height:28.960000pt;}
.h5a{height:29.920000pt;}
.h35{height:30.400000pt;}
.h3c{height:30.880000pt;}
.h5e{height:31.200000pt;}
.h5d{height:31.232000pt;}
.h5c{height:31.360000pt;}
.h5b{height:31.392000pt;}
.h54{height:32.000000pt;}
.h53{height:32.032000pt;}
.h4a{height:33.600000pt;}
.h3a{height:34.080000pt;}
.h4c{height:36.096250pt;}
.h1a{height:38.024375pt;}
.h59{height:38.048408pt;}
.h4b{height:38.400000pt;}
.h2b{height:41.442606pt;}
.h13{height:42.586279pt;}
.h2c{height:44.716250pt;}
.h50{height:45.312000pt;}
.h11{height:46.832786pt;}
.h34{height:49.565000pt;}
.h25{height:52.134375pt;}
.h2{height:52.500781pt;}
.h16{height:52.627187pt;}
.h27{height:53.875000pt;}
.h2f{height:53.937500pt;}
.h23{height:54.390938pt;}
.h30{height:54.598989pt;}
.h4{height:55.383495pt;}
.h19{height:55.433125pt;}
.h29{height:56.788668pt;}
.h57{height:57.600000pt;}
.h51{height:57.626667pt;}
.h24{height:57.667500pt;}
.h28{height:58.333750pt;}
.h4d{height:60.300000pt;}
.h6{height:60.854271pt;}
.h2e{height:62.812500pt;}
.hf{height:63.406250pt;}
.h2d{height:64.500000pt;}
.h5{height:64.958307pt;}
.hd{height:65.531250pt;}
.h2a{height:65.781915pt;}
.h58{height:71.040000pt;}
.h20{height:73.490625pt;}
.h22{height:76.671562pt;}
.h17{height:76.721563pt;}
.h3{height:79.221820pt;}
.h18{height:79.292812pt;}
.h10{height:80.029333pt;}
.he{height:86.716000pt;}
.h7{height:89.062891pt;}
.h1b{height:89.193750pt;}
.h21{height:90.036875pt;}
.h1c{height:92.573125pt;}
.h8{height:92.742208pt;}
.h9{height:92.917852pt;}
.h1d{height:93.054375pt;}
.h1e{height:109.437187pt;}
.ha{height:109.546406pt;}
.h1f{height:136.305000pt;}
.hb{height:161.381625pt;}
.hc{height:442.840000pt;}
.h4e{height:793.760000pt;}
.h4f{height:794.000000pt;}
.h26{height:1122.560000pt;}
.h0{height:1122.626667pt;}
.h1{height:1122.666667pt;}
.h14{height:1122.720000pt;}
.w30{width:16.000000pt;}
.w5{width:18.626667pt;}
.w4{width:24.836000pt;}
.w22{width:25.120000pt;}
.w2f{width:29.280000pt;}
.w2a{width:32.640000pt;}
.w2e{width:35.520000pt;}
.w20{width:37.760000pt;}
.w2b{width:41.760000pt;}
.w2d{width:41.792000pt;}
.w2c{width:41.920000pt;}
.w29{width:41.952000pt;}
.w1d{width:47.200000pt;}
.w1e{width:47.232000pt;}
.w1f{width:47.360000pt;}
.w21{width:47.392000pt;}
.w19{width:48.960000pt;}
.w1b{width:52.160000pt;}
.w28{width:53.120000pt;}
.w27{width:53.280000pt;}
.w26{width:53.312000pt;}
.w25{width:53.440000pt;}
.w1a{width:53.472000pt;}
.w18{width:56.640000pt;}
.wc{width:56.672000pt;}
.w1c{width:56.800000pt;}
.w17{width:58.112000pt;}
.w3{width:60.417333pt;}
.wf{width:66.112000pt;}
.w38{width:69.440000pt;}
.w3a{width:72.960000pt;}
.w3d{width:74.560000pt;}
.w3c{width:74.592000pt;}
.w3e{width:82.400000pt;}
.w37{width:82.720000pt;}
.wd{width:85.120000pt;}
.w3b{width:92.960000pt;}
.w24{width:95.552000pt;}
.w36{width:96.672000pt;}
.w39{width:101.312000pt;}
.we{width:113.472000pt;}
.w32{width:162.586667pt;}
.w16{width:205.306667pt;}
.w35{width:232.346667pt;}
.w33{width:248.826667pt;}
.wb{width:264.986667pt;}
.w34{width:267.226667pt;}
.w10{width:586.373333pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w7{width:794.000000pt;}
.w8{width:794.079988pt;}
.w6{width:794.080000pt;}
.w31{width:911.013333pt;}
.w23{width:933.733333pt;}
.w15{width:983.520000pt;}
.w14{width:989.920000pt;}
.w13{width:1122.559983pt;}
.w11{width:1122.560000pt;}
.w12{width:1122.666667pt;}
.w2{width:1663.279975pt;}
.w0{width:1663.280000pt;}
.w1{width:1663.333333pt;}
.x0{left:0.000000pt;}
.xa8{left:1.120000pt;}
.xb7{left:2.720000pt;}
.x92{left:4.640000pt;}
.xa7{left:5.920000pt;}
.x5e{left:7.200000pt;}
.xa5{left:8.480000pt;}
.x6c{left:10.080000pt;}
.x68{left:11.200000pt;}
.xa4{left:12.480000pt;}
.x9{left:14.093333pt;}
.xa6{left:15.520000pt;}
.x69{left:16.506667pt;}
.x6{left:17.440000pt;}
.xac{left:18.426667pt;}
.x6d{left:19.386667pt;}
.x6f{left:20.320000pt;}
.x99{left:22.746667pt;}
.x70{left:24.000000pt;}
.x6b{left:25.120000pt;}
.x60{left:26.426667pt;}
.xd6{left:27.360000pt;}
.x71{left:28.346667pt;}
.xa{left:29.613333pt;}
.x73{left:30.720000pt;}
.x6a{left:31.680000pt;}
.x66{left:32.960000pt;}
.xd9{left:34.720000pt;}
.xd5{left:36.640000pt;}
.x7{left:39.640000pt;}
.xd8{left:41.440000pt;}
.x62{left:42.560000pt;}
.x6e{left:44.040000pt;}
.xd1{left:46.240000pt;}
.xd7{left:48.160000pt;}
.xda{left:50.560000pt;}
.xdb{left:53.786667pt;}
.x64{left:56.680000pt;}
.xe1{left:72.186667pt;}
.xb8{left:75.386667pt;}
.x93{left:76.986667pt;}
.xe2{left:79.546667pt;}
.xcb{left:81.306667pt;}
.xde{left:82.440000pt;}
.xe0{left:85.480000pt;}
.xb{left:86.751988pt;}
.x91{left:89.120000pt;}
.xdc{left:90.600000pt;}
.x12{left:94.591988pt;}
.xcd{left:97.320000pt;}
.xdd{left:99.866667pt;}
.x56{left:101.471988pt;}
.xdf{left:102.906667pt;}
.x57{left:105.471988pt;}
.xce{left:106.426667pt;}
.xe4{left:113.471988pt;}
.xe3{left:118.906667pt;}
.xc9{left:129.791988pt;}
.x5d{left:132.351988pt;}
.x33{left:141.786655pt;}
.x15{left:145.626655pt;}
.x1f{left:146.906655pt;}
.x35{left:148.826655pt;}
.xe9{left:151.226655pt;}
.x37{left:152.826655pt;}
.x41{left:160.026655pt;}
.x100{left:166.906655pt;}
.x46{left:171.226655pt;}
.xf6{left:174.746655pt;}
.xbc{left:178.586655pt;}
.x28{left:181.466655pt;}
.x17{left:182.586655pt;}
.x49{left:184.026655pt;}
.xbd{left:185.626655pt;}
.xef{left:187.546655pt;}
.xaa{left:189.946667pt;}
.x132{left:191.706655pt;}
.x42{left:193.466655pt;}
.x10c{left:200.026655pt;}
.x106{left:202.266655pt;}
.x11f{left:203.546655pt;}
.xe5{left:207.866655pt;}
.x107{left:210.106655pt;}
.x120{left:211.386655pt;}
.x133{left:215.226655pt;}
.x108{left:225.826655pt;}
.x121{left:227.106655pt;}
.x11c{left:229.506655pt;}
.x124{left:230.626655pt;}
.x130{left:233.666655pt;}
.x13a{left:235.426655pt;}
.x11d{left:237.346655pt;}
.xfe{left:238.946655pt;}
.x131{left:241.506655pt;}
.x2{left:242.653309pt;}
.xe6{left:244.066655pt;}
.xe7{left:248.066655pt;}
.x122{left:251.746655pt;}
.x23{left:252.706655pt;}
.x72{left:253.634667pt;}
.xe8{left:255.906655pt;}
.xcc{left:256.986667pt;}
.xff{left:259.266655pt;}
.xf0{left:260.546655pt;}
.xc1{left:262.466655pt;}
.x1d{left:267.106655pt;}
.xc2{left:269.986655pt;}
.x24{left:271.106655pt;}
.x77{left:272.546655pt;}
.x113{left:273.506655pt;}
.x123{left:275.266655pt;}
.x78{left:280.226655pt;}
.x1c{left:281.506655pt;}
.x136{left:282.786655pt;}
.x2e{left:284.386655pt;}
.x67{left:293.501333pt;}
.x14{left:294.466655pt;}
.x134{left:295.586655pt;}
.xd{left:297.666655pt;}
.x8d{left:298.786655pt;}
.x94{left:299.866667pt;}
.x127{left:302.946655pt;}
.x8e{left:307.266655pt;}
.x128{left:310.946655pt;}
.x139{left:312.066655pt;}
.x1e{left:313.826655pt;}
.x2a{left:316.066655pt;}
.x2f{left:318.466655pt;}
.xc3{left:319.426655pt;}
.x10f{left:321.666655pt;}
.xc6{left:324.226655pt;}
.xc4{left:330.466655pt;}
.x79{left:337.826655pt;}
.x34{left:345.826655pt;}
.x3b{left:346.946655pt;}
.x2b{left:348.226655pt;}
.x1b{left:350.146655pt;}
.x115{left:352.386655pt;}
.xd0{left:353.666667pt;}
.xbe{left:355.106655pt;}
.x95{left:357.986667pt;}
.x5f{left:359.586667pt;}
.x18{left:360.866655pt;}
.xed{left:363.106655pt;}
.x19{left:365.026655pt;}
.x30{left:366.466655pt;}
.x4f{left:367.426655pt;}
.x58{left:369.666655pt;}
.x11{left:370.626655pt;}
.xc7{left:371.906655pt;}
.x20{left:373.186655pt;}
.x45{left:375.293322pt;}
.xf1{left:376.733322pt;}
.x32{left:379.453322pt;}
.x4d{left:384.253322pt;}
.x118{left:386.653322pt;}
.x3c{left:388.893322pt;}
.x31{left:389.853322pt;}
.x1a{left:391.933322pt;}
.x13{left:393.533322pt;}
.xea{left:394.493322pt;}
.x16{left:396.893322pt;}
.x80{left:399.133322pt;}
.xfb{left:400.093322pt;}
.x59{left:404.253322pt;}
.x129{left:405.213322pt;}
.x10b{left:406.813322pt;}
.xfc{left:407.933322pt;}
.x81{left:408.893322pt;}
.x4a{left:412.893322pt;}
.x96{left:414.626667pt;}
.x61{left:416.253333pt;}
.xb9{left:420.093322pt;}
.xfd{left:423.613322pt;}
.xbf{left:425.533322pt;}
.x4e{left:427.613322pt;}
.x87{left:430.013322pt;}
.x5a{left:431.453322pt;}
.xc0{left:432.893322pt;}
.x50{left:436.413322pt;}
.x8c{left:440.893322pt;}
.x88{left:442.013322pt;}
.x114{left:444.733322pt;}
.x5c{left:445.853322pt;}
.x74{left:448.093322pt;}
.x3f{left:450.813322pt;}
.x51{left:453.693322pt;}
.xab{left:456.546667pt;}
.x52{left:457.533322pt;}
.x12f{left:461.533322pt;}
.x97{left:463.586667pt;}
.x135{left:466.813322pt;}
.x82{left:470.333322pt;}
.xa9{left:472.546667pt;}
.x83{left:477.853322pt;}
.x11a{left:480.093322pt;}
.x40{left:485.213322pt;}
.x103{left:486.333322pt;}
.xca{left:489.053322pt;}
.x3d{left:491.773322pt;}
.x10e{left:492.733322pt;}
.x84{left:494.653322pt;}
.xc{left:496.413322pt;}
.x63{left:501.373333pt;}
.x85{left:502.973322pt;}
.x53{left:506.333322pt;}
.x43{left:507.453322pt;}
.xe{left:509.853322pt;}
.x54{left:512.253322pt;}
.x12d{left:513.533322pt;}
.xf{left:515.613321pt;}
.xf2{left:518.173322pt;}
.x98{left:520.226667pt;}
.x110{left:522.653322pt;}
.xba{left:523.773322pt;}
.xfa{left:525.413322pt;}
.x25{left:528.293322pt;}
.x10a{left:533.413322pt;}
.xbb{left:535.493322pt;}
.x3e{left:536.453322pt;}
.x119{left:539.493322pt;}
.x44{left:540.933322pt;}
.xf7{left:544.293322pt;}
.x104{left:548.293322pt;}
.x125{left:549.413322pt;}
.x75{left:550.533322pt;}
.x89{left:552.613322pt;}
.x26{left:553.893322pt;}
.xf4{left:554.853322pt;}
.x10d{left:556.293322pt;}
.x137{left:559.013322pt;}
.x8a{left:559.973322pt;}
.x76{left:562.693322pt;}
.x55{left:564.133322pt;}
.x111{left:566.533322pt;}
.x21{left:568.133322pt;}
.x86{left:569.573322pt;}
.x10{left:571.613321pt;}
.x116{left:572.933322pt;}
.x7c{left:575.173322pt;}
.xf8{left:577.253322pt;}
.x7a{left:578.853322pt;}
.x126{left:579.973322pt;}
.x112{left:582.213322pt;}
.x7d{left:583.653322pt;}
.x7b{left:586.533322pt;}
.x5b{left:588.293322pt;}
.xf5{left:590.373322pt;}
.x117{left:591.813322pt;}
.xf9{left:592.933322pt;}
.x109{left:593.893322pt;}
.xc5{left:595.013322pt;}
.x22{left:595.973322pt;}
.x11b{left:598.533322pt;}
.xf3{left:599.493322pt;}
.x138{left:601.733322pt;}
.x101{left:603.653322pt;}
.xad{left:604.893333pt;}
.xd2{left:607.133333pt;}
.x11e{left:608.773322pt;}
.x102{left:611.493322pt;}
.x65{left:614.853333pt;}
.x105{left:616.133322pt;}
.x2c{left:617.253322pt;}
.x12e{left:618.533322pt;}
.xee{left:620.293322pt;}
.x12a{left:621.253322pt;}
.x9a{left:622.653333pt;}
.x2d{left:626.053322pt;}
.x12b{left:629.573322pt;}
.xeb{left:633.413322pt;}
.x8f{left:635.013322pt;}
.xae{left:637.533333pt;}
.x47{left:640.613322pt;}
.x7e{left:642.853322pt;}
.x48{left:644.293322pt;}
.x12c{left:645.253322pt;}
.x90{left:646.693322pt;}
.x4b{left:647.973322pt;}
.xec{left:649.413322pt;}
.x7f{left:650.373322pt;}
.x29{left:652.133322pt;}
.x8b{left:654.373322pt;}
.x9b{left:674.813333pt;}
.xc8{left:675.999988pt;}
.x27{left:677.599988pt;}
.x3a{left:678.559988pt;}
.x36{left:680.799988pt;}
.x39{left:681.919988pt;}
.x38{left:683.359988pt;}
.x4c{left:685.279988pt;}
.xaf{left:721.053333pt;}
.x9c{left:731.613333pt;}
.xb0{left:762.973333pt;}
.xcf{left:773.053333pt;}
.x9d{left:778.813333pt;}
.xb1{left:795.613333pt;}
.x5{left:818.026667pt;}
.x9e{left:826.053333pt;}
.x8{left:831.400000pt;}
.xb2{left:837.413333pt;}
.xd3{left:847.653333pt;}
.x1{left:856.239975pt;}
.x9f{left:873.253333pt;}
.xb3{left:914.693333pt;}
.xa0{left:920.613333pt;}
.xd4{left:922.213333pt;}
.xb4{left:947.333333pt;}
.xa1{left:967.813333pt;}
.xb5{left:982.853333pt;}
.xa2{left:1005.573333pt;}
.xb6{left:1012.133333pt;}
.xa3{left:1052.960000pt;}
.x3{left:1167.946642pt;}
.x4{left:1385.279975pt;}
}




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