
    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_ac99f501d6d0dcc5a2ed824c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bfa53690c884a924c057fd25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9b0c49cbe8a564400927a88d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_803f775de222489619bec054.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01f00d4433cde6b2977c1120.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_bae1d5ed492ad3c596ce636e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.086914;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_35a89fba21cd367699965586.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_d0736e60cbea8dd8e7c679e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dd4f01209b43441d04627960.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894043;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_ff1341fcac09bbd3ad57cddc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.000000;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_af3b692b7a82456d8d60f39a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_61d76558348d756e2d2f3902.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_796fd6a1bd925f896e7229c7.woff2')format("woff");}.fff{font-family:fff;line-height:0.000000;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;}
.m6{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-7.919997px;}
.v8{vertical-align:-5.759998px;}
.v6{vertical-align:-4.319998px;}
.v2{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.599999px;}
.v3{vertical-align:34.559986px;}
.v1{vertical-align:35.999986px;}
.v4{vertical-align:39.599984px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.003600px;}
.ls15{letter-spacing:0.003604px;}
.ls2{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.007201px;}
.ls19{letter-spacing:0.007209px;}
.ls34{letter-spacing:0.063692px;}
.ls2c{letter-spacing:0.112967px;}
.ls8{letter-spacing:0.112980px;}
.lse{letter-spacing:0.115860px;}
.ls26{letter-spacing:0.115865px;}
.ls29{letter-spacing:0.123240px;}
.ls25{letter-spacing:0.133080px;}
.lsd{letter-spacing:0.158280px;}
.lsb{letter-spacing:0.183660px;}
.ls22{letter-spacing:0.266940px;}
.ls3{letter-spacing:0.296065px;}
.ls23{letter-spacing:0.309360px;}
.ls5{letter-spacing:0.367260px;}
.ls6{letter-spacing:0.367296px;}
.ls28{letter-spacing:0.509220px;}
.ls7{letter-spacing:0.519060px;}
.ls24{letter-spacing:0.621600px;}
.ls21{letter-spacing:0.727380px;}
.ls9{letter-spacing:0.833160px;}
.ls1c{letter-spacing:0.836040px;}
.lsc{letter-spacing:1.239240px;}
.ls20{letter-spacing:1.443899px;}
.ls32{letter-spacing:3.604379px;}
.lsa{letter-spacing:4.504678px;}
.ls13{letter-spacing:5.044678px;}
.ls4{letter-spacing:5.224858px;}
.ls1f{letter-spacing:7.205157px;}
.ls35{letter-spacing:7.385397px;}
.ls33{letter-spacing:8.825696px;}
.ls12{letter-spacing:10.805936px;}
.ls2f{letter-spacing:11.526115px;}
.ls14{letter-spacing:12.966415px;}
.ls1d{letter-spacing:14.406714px;}
.ls16{letter-spacing:15.847014px;}
.ls31{letter-spacing:21.608271px;}
.ls1a{letter-spacing:30.970308px;}
.ls10{letter-spacing:32.410607px;}
.ls1b{letter-spacing:36.731565px;}
.ls17{letter-spacing:41.052524px;}
.ls27{letter-spacing:41.772643px;}
.ls11{letter-spacing:43.933182px;}
.ls1e{letter-spacing:54.735578px;}
.ls2d{letter-spacing:60.496776px;}
.ls18{letter-spacing:84.982166px;}
.ls2a{letter-spacing:175.906130px;}
.ls2e{letter-spacing:183.107927px;}
.ls30{letter-spacing:184.547926px;}
.ls2b{letter-spacing:229.198708px;}
.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;}
}
.ws7{word-spacing:-51.468459px;}
.ws5{word-spacing:-46.433501px;}
.ws9{word-spacing:-41.957983px;}
.ws3{word-spacing:-17.999993px;}
.wsa{word-spacing:-16.567202px;}
.ws1{word-spacing:-16.559993px;}
.ws6{word-spacing:-15.307290px;}
.wsc{word-spacing:-15.003686px;}
.ws4{word-spacing:-14.939994px;}
.ws8{word-spacing:-14.572794px;}
.wsb{word-spacing:-13.499995px;}
.ws2{word-spacing:-10.439996px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.313037px;}
._1{width:1.050444px;}
._5{width:2.250941px;}
._6{width:4.180604px;}
._b{width:5.839813px;}
._a{width:7.215794px;}
._8{width:8.417500px;}
._c{width:10.353752px;}
._3{width:12.088149px;}
._2{width:13.122342px;}
._18{width:14.485853px;}
._e{width:15.950955px;}
._9{width:17.788475px;}
._7{width:18.820089px;}
._19{width:20.178601px;}
._11{width:21.465651px;}
._2d{width:22.950093px;}
._10{width:23.969674px;}
._f{width:25.086161px;}
._d{width:26.512497px;}
._4{width:27.911519px;}
._2a{width:29.148948px;}
._14{width:30.255136px;}
._15{width:31.424365px;}
._16{width:32.533696px;}
._1e{width:33.587852px;}
._1f{width:34.693761px;}
._22{width:36.177372px;}
._2e{width:37.255735px;}
._2f{width:38.260751px;}
._1a{width:39.419513px;}
._13{width:41.113898px;}
._12{width:42.604168px;}
._17{width:44.312607px;}
._23{width:46.112483px;}
._1d{width:47.763115px;}
._25{width:50.200196px;}
._24{width:52.182412px;}
._2c{width:54.134873px;}
._2b{width:55.820664px;}
._26{width:57.058083px;}
._35{width:58.596813px;}
._34{width:60.682327px;}
._33{width:61.772842px;}
._8a{width:63.007815px;}
._20{width:64.284866px;}
._21{width:65.779401px;}
._29{width:67.606812px;}
._28{width:68.834070px;}
._27{width:69.863221px;}
._56{width:70.870472px;}
._77{width:72.035550px;}
._31{width:73.467385px;}
._30{width:74.604716px;}
._61{width:76.973242px;}
._38{width:79.755821px;}
._5c{width:81.726003px;}
._1c{width:84.010070px;}
._1b{width:85.410969px;}
._74{width:87.339275px;}
._70{width:88.395955px;}
._32{width:89.861502px;}
._5f{width:92.210865px;}
._5d{width:101.026777px;}
._5b{width:102.765862px;}
._66{width:107.871382px;}
._78{width:108.885223px;}
._3c{width:110.281599px;}
._4c{width:111.692117px;}
._7a{width:115.241954px;}
._69{width:116.882393px;}
._6a{width:117.939073px;}
._37{width:120.453743px;}
._4e{width:122.071693px;}
._68{width:123.080691px;}
._79{width:131.056012px;}
._60{width:133.496313px;}
._75{width:135.871755px;}
._58{width:137.030890px;}
._65{width:138.059894px;}
._73{width:139.252058px;}
._3a{width:141.352134px;}
._5e{width:143.960808px;}
._6d{width:148.683338px;}
._7d{width:151.407978px;}
._8f{width:154.416037px;}
._51{width:155.763918px;}
._72{width:159.118386px;}
._76{width:166.104704px;}
._71{width:167.614415px;}
._6e{width:169.038482px;}
._49{width:170.095532px;}
._3d{width:171.231824px;}
._80{width:172.298731px;}
._8d{width:174.375843px;}
._59{width:175.450563px;}
._5a{width:178.470387px;}
._93{width:181.876530px;}
._82{width:184.574671px;}
._8b{width:190.929293px;}
._7e{width:192.199123px;}
._92{width:194.152524px;}
._85{width:195.556361px;}
._6b{width:197.494999px;}
._62{width:207.071133px;}
._52{width:209.415531px;}
._6c{width:212.125484px;}
._84{width:214.894042px;}
._89{width:217.047879px;}
._6f{width:225.707167px;}
._7b{width:227.661978px;}
._55{width:230.097496px;}
._63{width:232.978519px;}
._50{width:239.295747px;}
._7c{width:241.586385px;}
._86{width:244.660817px;}
._88{width:249.329300px;}
._48{width:252.478853px;}
._67{width:253.767327px;}
._36{width:257.807968px;}
._81{width:264.833290px;}
._4a{width:272.063045px;}
._83{width:278.985967px;}
._8e{width:288.476659px;}
._3b{width:289.707470px;}
._4b{width:290.843762px;}
._44{width:295.369076px;}
._42{width:298.715880px;}
._4f{width:301.757286px;}
._39{width:308.462965px;}
._87{width:319.009540px;}
._41{width:321.842747px;}
._8c{width:328.057822px;}
._7f{width:332.162987px;}
._57{width:336.755976px;}
._46{width:364.989700px;}
._3e{width:384.949455px;}
._45{width:388.235930px;}
._3f{width:399.266571px;}
._91{width:404.105530px;}
._43{width:405.899962px;}
._90{width:417.644779px;}
._40{width:424.809272px;}
._47{width:433.993505px;}
._53{width:619.273485px;}
._64{width:656.260153px;}
._4d{width:757.762647px;}
._54{width:840.144026px;}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.999986px;}
.fsc{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:53.999978px;}
.fsd{font-size:56.879977px;}
.fsb{font-size:59.759976px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.239966px;}
.fsa{font-size:95.759962px;}
.fs2{font-size:102.000000px;}
.y1f5{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y1ec{bottom:3.239981px;}
.y16c{bottom:3.239983px;}
.y1ea{bottom:3.239985px;}
.y1f3{bottom:3.239997px;}
.y194{bottom:3.240007px;}
.y23a{bottom:3.240075px;}
.y1fb{bottom:3.600045px;}
.y200{bottom:3.600061px;}
.y206{bottom:3.600082px;}
.y5{bottom:66.525004px;}
.y135{bottom:93.121463px;}
.y121{bottom:93.481463px;}
.ybc{bottom:93.661163px;}
.y10e{bottom:94.021162px;}
.y168{bottom:95.641462px;}
.y4{bottom:97.125005px;}
.y28b{bottom:103.021459px;}
.y252{bottom:106.981457px;}
.y1e7{bottom:108.061457px;}
.ybb{bottom:109.681156px;}
.y3e{bottom:110.401156px;}
.y21b{bottom:110.941456px;}
.y10d{bottom:111.481155px;}
.y18d{bottom:111.661455px;}
.y15d{bottom:111.841455px;}
.ye3{bottom:112.021455px;}
.y1bc{bottom:112.201455px;}
.y120{bottom:112.561455px;}
.y167{bottom:114.541454px;}
.y260{bottom:115.621454px;}
.y234{bottom:115.801154px;}
.yba{bottom:116.521153px;}
.y10c{bottom:118.321153px;}
.y28a{bottom:120.301452px;}
.y92{bottom:123.721451px;}
.y1e6{bottom:125.341450px;}
.y251{bottom:125.881450px;}
.yb9{bottom:127.681149px;}
.y109{bottom:129.301448px;}
.y10b{bottom:129.481148px;}
.y21a{bottom:130.021448px;}
.y3d{bottom:130.741448px;}
.ye2{bottom:130.921448px;}
.y134{bottom:131.101448px;}
.y11f{bottom:131.461447px;}
.y1bb{bottom:132.901447px;}
.y166{bottom:133.621447px;}
.y289{bottom:137.581445px;}
.y233{bottom:139.201144px;}
.y20{bottom:139.264499px;}
.y91{bottom:141.001444px;}
.y1e5{bottom:142.621443px;}
.y250{bottom:144.781442px;}
.y25f{bottom:146.761441px;}
.y108{bottom:148.381441px;}
.y219{bottom:148.921440px;}
.yb8{bottom:149.641440px;}
.ye1{bottom:149.821440px;}
.y133{bottom:150.001440px;}
.y11e{bottom:150.361440px;}
.y3c{bottom:151.441439px;}
.y165{bottom:152.521439px;}
.y1ba{bottom:153.601439px;}
.y66{bottom:154.681438px;}
.y288{bottom:154.861438px;}
.y232{bottom:157.381437px;}
.y90{bottom:158.101437px;}
.y1e4{bottom:159.901436px;}
.y24f{bottom:163.861434px;}
.y107{bottom:167.281433px;}
.y218{bottom:168.001433px;}
.yb7{bottom:168.721433px;}
.ye0{bottom:168.901432px;}
.y132{bottom:169.081432px;}
.y11d{bottom:169.441432px;}
.y65{bottom:171.421431px;}
.y3b{bottom:171.961431px;}
.y287{bottom:172.141431px;}
.y231{bottom:173.041431px;}
.y1b8{bottom:174.301430px;}
.y8f{bottom:175.381430px;}
.y1e3{bottom:177.181429px;}
.y25e{bottom:177.721429px;}
.y1b9{bottom:181.141428px;}
.y106{bottom:186.721425px;}
.y64{bottom:186.901425px;}
.y24e{bottom:187.261425px;}
.yb6{bottom:187.621425px;}
.ydf{bottom:187.801425px;}
.y131{bottom:187.981425px;}
.y11c{bottom:188.341425px;}
.y230{bottom:188.521425px;}
.y286{bottom:189.241424px;}
.y164{bottom:190.501424px;}
.y3a{bottom:190.861424px;}
.y1b7{bottom:191.581423px;}
.y15c{bottom:192.121423px;}
.y8e{bottom:192.661423px;}
.y1e2{bottom:194.461422px;}
.y17{bottom:196.933500px;}
.y63{bottom:202.381419px;}
.y22f{bottom:205.261418px;}
.y24d{bottom:205.441418px;}
.y18c{bottom:205.801418px;}
.yb5{bottom:206.521417px;}
.yde{bottom:206.881417px;}
.y105{bottom:207.061417px;}
.y11b{bottom:207.421417px;}
.y1b6{bottom:208.861416px;}
.y163{bottom:209.401416px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y8d{bottom:209.941416px;}
.y39{bottom:210.301416px;}
.y15b{bottom:210.481416px;}
.y1e1{bottom:211.561415px;}
.y22e{bottom:213.901414px;}
.y62{bottom:218.041413px;}
.y24c{bottom:221.101412px;}
.y18b{bottom:221.281411px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y285{bottom:223.801410px;}
.y217{bottom:224.881410px;}
.yb4{bottom:225.601410px;}
.ydd{bottom:225.781410px;}
.y104{bottom:225.961410px;}
.y11a{bottom:226.321409px;}
.y8c{bottom:227.221409px;}
.y1b5{bottom:227.581409px;}
.y162{bottom:228.481409px;}
.y1e0{bottom:229.201408px;}
.y38{bottom:231.001408px;}
.y61{bottom:233.881406px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y24b{bottom:236.581405px;}
.y18a{bottom:236.941405px;}
.y25d{bottom:239.821404px;}
.y284{bottom:241.081404px;}
.y15a{bottom:242.341403px;}
.y216{bottom:243.781402px;}
.y8b{bottom:244.501402px;}
.ydc{bottom:244.681402px;}
.y103{bottom:244.861402px;}
.y119{bottom:245.221402px;}
.y1b4{bottom:245.941402px;}
.y161{bottom:247.381401px;}
.y1df{bottom:248.101401px;}
.y60{bottom:251.161400px;}
.y37{bottom:251.341399px;}
.y189{bottom:253.681399px;}
.y24a{bottom:254.221398px;}
.y283{bottom:258.361397px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y159{bottom:260.341396px;}
.y8a{bottom:261.601395px;}
.y22d{bottom:262.141395px;}
.y215{bottom:262.861395px;}
.yb3{bottom:263.581395px;}
.ydb{bottom:263.761394px;}
.y102{bottom:263.941394px;}
.y1b3{bottom:264.121394px;}
.y118{bottom:264.301394px;}
.y160{bottom:266.281393px;}
.y1de{bottom:267.181393px;}
.y5f{bottom:268.441393px;}
.y36{bottom:269.881392px;}
.y188{bottom:270.961392px;}
.y10a{bottom:271.321391px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y249{bottom:274.201390px;}
.y282{bottom:275.641390px;}
.y158{bottom:278.341389px;}
.y89{bottom:278.881388px;}
.y1b2{bottom:281.401387px;}
.y214{bottom:281.761387px;}
.y22c{bottom:282.121387px;}
.yb2{bottom:282.481387px;}
.yda{bottom:282.661387px;}
.y101{bottom:282.841387px;}
.y117{bottom:283.741387px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y15f{bottom:285.361386px;}
.y5e{bottom:285.721386px;}
.y1dd{bottom:286.081386px;}
.y35{bottom:288.961384px;}
.y281{bottom:292.741383px;}
.y248{bottom:294.001382px;}
.y88{bottom:296.161382px;}
.y157{bottom:296.341381px;}
.y1b1{bottom:298.681381px;}
.y213{bottom:300.841380px;}
.yb1{bottom:301.561379px;}
.yd9{bottom:301.741379px;}
.y100{bottom:301.921379px;}
.y5d{bottom:303.001379px;}
.y116{bottom:303.541379px;}
.y15e{bottom:304.261378px;}
.y1dc{bottom:304.981378px;}
.y187{bottom:306.061378px;}
.y34{bottom:307.861377px;}
.y280{bottom:310.021376px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y87{bottom:313.441375px;}
.y247{bottom:313.801374px;}
.y156{bottom:314.341374px;}
.y1af{bottom:316.681373px;}
.y212{bottom:319.741372px;}
.y5c{bottom:320.281372px;}
.yb0{bottom:320.461372px;}
.yd8{bottom:320.641372px;}
.yff{bottom:320.821372px;}
.y22b{bottom:321.901371px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y115{bottom:323.341371px;}
.y1b0{bottom:323.521371px;}
.y186{bottom:324.061370px;}
.y33{bottom:326.761369px;}
.y27f{bottom:327.301369px;}
.y86{bottom:330.721368px;}
.y155{bottom:332.701367px;}
.y25c{bottom:333.061367px;}
.y246{bottom:333.781366px;}
.y1ae{bottom:333.961366px;}
.y5b{bottom:337.381365px;}
.y211{bottom:338.641365px;}
.yaf{bottom:339.361364px;}
.yd7{bottom:339.721364px;}
.y185{bottom:341.341363px;}
.y22a{bottom:341.701363px;}
.y114{bottom:342.241363px;}
.y1db{bottom:342.961363px;}
.y27e{bottom:344.581362px;}
.y31{bottom:345.841362px;}
.y85{bottom:347.821361px;}
.ye{bottom:348.133500px;}
.y154{bottom:349.981360px;}
.y1ad{bottom:351.241360px;}
.y32{bottom:353.401359px;}
.y245{bottom:353.581359px;}
.y5a{bottom:354.661358px;}
.yae{bottom:358.441357px;}
.yd6{bottom:358.621357px;}
.yfe{bottom:358.801356px;}
.y184{bottom:359.341356px;}
.y113{bottom:361.141356px;}
.y229{bottom:361.681355px;}
.y27d{bottom:361.861355px;}
.y1da{bottom:362.041355px;}
.y210{bottom:362.221355px;}
.y25b{bottom:364.021354px;}
.y30{bottom:364.741354px;}
.y84{bottom:365.101354px;}
.y153{bottom:367.441353px;}
.y1ac{bottom:369.241352px;}
.y59{bottom:371.941351px;}
.y244{bottom:373.561351px;}
.y183{bottom:376.621349px;}
.yad{bottom:377.341349px;}
.yd5{bottom:377.521349px;}
.yfd{bottom:377.701349px;}
.y27c{bottom:379.141348px;}
.y112{bottom:380.221348px;}
.y20f{bottom:380.401348px;}
.y1d9{bottom:380.941348px;}
.y228{bottom:381.481347px;}
.y83{bottom:382.381347px;}
.y2f{bottom:384.541346px;}
.y152{bottom:386.341345px;}
.y1ab{bottom:386.521345px;}
.yd{bottom:386.785499px;}
.y58{bottom:389.221344px;}
.y243{bottom:393.361343px;}
.y182{bottom:394.621342px;}
.y25a{bottom:395.161342px;}
.y20e{bottom:395.881342px;}
.y27b{bottom:396.241342px;}
.yac{bottom:396.421341px;}
.yd4{bottom:396.601341px;}
.y130{bottom:396.781341px;}
.yfc{bottom:397.141341px;}
.y111{bottom:399.121340px;}
.y82{bottom:399.661340px;}
.y1d8{bottom:399.841340px;}
.y227{bottom:401.281339px;}
.y1a9{bottom:404.521338px;}
.y2e{bottom:404.881338px;}
.y151{bottom:405.421338px;}
.y57{bottom:406.501337px;}
.yc{bottom:408.044999px;}
.y1aa{bottom:411.361335px;}
.y181{bottom:412.621335px;}
.y242{bottom:413.161335px;}
.y27a{bottom:413.521335px;}
.yab{bottom:415.321334px;}
.yd3{bottom:415.501334px;}
.y12f{bottom:415.681334px;}
.y81{bottom:416.941333px;}
.yfb{bottom:417.121333px;}
.y110{bottom:418.201333px;}
.y1d7{bottom:418.921332px;}
.y226{bottom:421.261331px;}
.y1a8{bottom:421.621331px;}
.y56{bottom:423.601331px;}
.y150{bottom:424.321330px;}
.y2d{bottom:425.581330px;}
.y20d{bottom:430.081328px;}
.y180{bottom:430.621328px;}
.y279{bottom:430.801328px;}
.y241{bottom:433.141327px;}
.y80{bottom:434.221326px;}
.yd2{bottom:434.581326px;}
.yfa{bottom:436.381325px;}
.y10f{bottom:437.101325px;}
.y1d6{bottom:437.821325px;}
.y1a7{bottom:438.901324px;}
.y55{bottom:440.881324px;}
.y225{bottom:441.061324px;}
.y2c{bottom:446.281321px;}
.y14f{bottom:447.901321px;}
.y278{bottom:448.081321px;}
.y20c{bottom:449.881320px;}
.y7f{bottom:451.321319px;}
.y240{bottom:452.941319px;}
.yaa{bottom:453.301319px;}
.yd1{bottom:453.481319px;}
.y12e{bottom:453.661319px;}
.yf9{bottom:456.181318px;}
.y1d5{bottom:456.901317px;}
.y1a6{bottom:457.621317px;}
.y54{bottom:458.161317px;}
.y224{bottom:461.041316px;}
.y277{bottom:465.361314px;}
.y17f{bottom:465.901314px;}
.y14e{bottom:466.081314px;}
.y2b{bottom:467.341313px;}
.y7e{bottom:468.601313px;}
.y20b{bottom:469.861312px;}
.ya9{bottom:472.201311px;}
.yd0{bottom:472.381311px;}
.y12d{bottom:472.561311px;}
.y23f{bottom:472.921311px;}
.yf8{bottom:475.081310px;}
.y53{bottom:475.441310px;}
.y1d4{bottom:475.801310px;}
.y1a5{bottom:475.981310px;}
.y223{bottom:480.841308px;}
.y14d{bottom:481.561307px;}
.y276{bottom:482.461307px;}
.y17e{bottom:483.181307px;}
.y7d{bottom:485.881306px;}
.y20a{bottom:487.861305px;}
.y2a{bottom:488.401305px;}
.ya8{bottom:491.281303px;}
.ycf{bottom:491.461303px;}
.y12c{bottom:491.641303px;}
.y52{bottom:492.721303px;}
.yf7{bottom:493.981302px;}
.y1a4{bottom:494.341302px;}
.y1d3{bottom:494.881302px;}
.y209{bottom:496.501301px;}
.y14c{bottom:497.041301px;}
.y275{bottom:499.741300px;}
.y222{bottom:500.641300px;}
.y17d{bottom:501.181300px;}
.y7c{bottom:503.161299px;}
.y51{bottom:510.001296px;}
.ya7{bottom:510.181296px;}
.yce{bottom:510.361296px;}
.y12b{bottom:510.541296px;}
.y1a3{bottom:511.621295px;}
.y23e{bottom:512.701295px;}
.y29{bottom:513.061295px;}
.y14b{bottom:513.781294px;}
.y1d2{bottom:514.321294px;}
.y274{bottom:517.021293px;}
.y17c{bottom:518.281293px;}
.y221{bottom:519.361292px;}
.y7b{bottom:520.441292px;}
.yb{bottom:520.864502px;}
.y208{bottom:524.941290px;}
.y50{bottom:527.101289px;}
.y1a2{bottom:528.721289px;}
.ya6{bottom:529.081288px;}
.ycd{bottom:529.441288px;}
.y14a{bottom:531.781287px;}
.yf6{bottom:531.961287px;}
.y23d{bottom:532.501287px;}
.y1d1{bottom:534.121286px;}
.y273{bottom:534.301286px;}
.y17b{bottom:536.281285px;}
.y28{bottom:537.541285px;}
.y7a{bottom:537.721285px;}
.y220{bottom:538.261285px;}
.ya{bottom:538.864499px;}
.y205{bottom:540.241200px;}
.y29c{bottom:542.941283px;}
.y207{bottom:543.841282px;}
.y4f{bottom:544.381282px;}
.y204{bottom:544.741282px;}
.y1a1{bottom:546.721281px;}
.y21f{bottom:546.901281px;}
.ya5{bottom:548.161281px;}
.ycc{bottom:548.341281px;}
.y12a{bottom:548.521281px;}
.y149{bottom:549.781280px;}
.yf5{bottom:551.041280px;}
.y272{bottom:551.581279px;}
.y23c{bottom:551.941279px;}
.y23b{bottom:553.381279px;}
.y17a{bottom:553.561279px;}
.y1d0{bottom:553.741279px;}
.y79{bottom:554.821278px;}
.y9{bottom:556.864499px;}
.y239{bottom:558.781200px;}
.y29b{bottom:560.041276px;}
.y238{bottom:562.021275px;}
.y27{bottom:562.201275px;}
.y203{bottom:562.741275px;}
.y1a0{bottom:564.001274px;}
.ya4{bottom:567.061273px;}
.ycb{bottom:567.241273px;}
.y129{bottom:567.421273px;}
.y148{bottom:567.781273px;}
.y271{bottom:568.861272px;}
.yf4{bottom:569.941272px;}
.y4e{bottom:570.301272px;}
.y202{bottom:571.381271px;}
.y179{bottom:571.561271px;}
.y78{bottom:572.101271px;}
.y1cf{bottom:572.821271px;}
.y29a{bottom:577.321269px;}
.y19f{bottom:581.281267px;}
.y147{bottom:585.781266px;}
.y270{bottom:585.961266px;}
.ya3{bottom:586.141266px;}
.yca{bottom:586.321265px;}
.y128{bottom:586.501265px;}
.y4d{bottom:587.941265px;}
.yf3{bottom:588.841264px;}
.y77{bottom:589.381264px;}
.y178{bottom:589.561264px;}
.y26{bottom:590.641264px;}
.y237{bottom:591.181264px;}
.y1ce{bottom:591.721263px;}
.y21e{bottom:593.881262px;}
.y1ff{bottom:594.421200px;}
.y299{bottom:594.601262px;}
.y201{bottom:598.921260px;}
.y19e{bottom:599.281260px;}
.y1fe{bottom:600.001260px;}
.y26f{bottom:603.241259px;}
.y146{bottom:603.781258px;}
.ya2{bottom:605.041258px;}
.y4c{bottom:605.221258px;}
.y127{bottom:605.401258px;}
.y76{bottom:606.661257px;}
.y177{bottom:607.561257px;}
.yf2{bottom:607.921257px;}
.y236{bottom:608.461257px;}
.y1cd{bottom:610.801256px;}
.y21d{bottom:610.981256px;}
.y298{bottom:611.881255px;}
.y19d{bottom:616.561253px;}
.y1fd{bottom:619.801252px;}
.y26e{bottom:620.521252px;}
.y145{bottom:621.781251px;}
.y4b{bottom:622.141251px;}
.ya1{bottom:623.581251px;}
.y75{bottom:623.941250px;}
.yc9{bottom:624.301250px;}
.y176{bottom:624.841250px;}
.y235{bottom:625.741250px;}
.yf1{bottom:626.821249px;}
.y21c{bottom:628.261249px;}
.y297{bottom:629.161248px;}
.y1cc{bottom:629.701248px;}
.y19b{bottom:634.561246px;}
.y1fa{bottom:635.101200px;}
.y25{bottom:636.181246px;}
.y26d{bottom:637.801245px;}
.y1fc{bottom:638.701245px;}
.y4a{bottom:639.601244px;}
.y144{bottom:639.781244px;}
.y74{bottom:641.221244px;}
.y19c{bottom:641.401243px;}
.y175{bottom:642.841243px;}
.ya0{bottom:643.021243px;}
.yc8{bottom:643.201243px;}
.y126{bottom:643.381243px;}
.y8{bottom:645.510000px;}
.yf0{bottom:645.901242px;}
.y296{bottom:646.621241px;}
.y19a{bottom:651.841239px;}
.y1cb{bottom:653.101239px;}
.y26c{bottom:655.081238px;}
.y49{bottom:657.601237px;}
.y143{bottom:657.781237px;}
.y1f9{bottom:659.581236px;}
.y174{bottom:660.121236px;}
.yc7{bottom:662.101235px;}
.y125{bottom:662.281235px;}
.y9f{bottom:662.641235px;}
.yef{bottom:664.801234px;}
.y295{bottom:665.341234px;}
.y7{bottom:666.771000px;}
.y73{bottom:666.961233px;}
.y199{bottom:668.941232px;}
.y1ca{bottom:671.461231px;}
.y26b{bottom:672.361231px;}
.y142{bottom:675.781230px;}
.y173{bottom:678.121229px;}
.y48{bottom:678.661229px;}
.y1f8{bottom:679.381228px;}
.yc6{bottom:681.181228px;}
.y24{bottom:681.361227px;}
.y9e{bottom:681.721227px;}
.y294{bottom:682.621227px;}
.yee{bottom:683.701227px;}
.y72{bottom:684.601226px;}
.y198{bottom:686.941225px;}
.y26a{bottom:689.461224px;}
.y141{bottom:693.781222px;}
.y172{bottom:695.401222px;}
.y1f7{bottom:699.361220px;}
.y293{bottom:699.901220px;}
.yc5{bottom:700.081220px;}
.y124{bottom:700.261220px;}
.y9d{bottom:700.621220px;}
.y71{bottom:701.881219px;}
.y1c9{bottom:702.421219px;}
.yed{bottom:702.781219px;}
.y47{bottom:703.321219px;}
.y197{bottom:705.301218px;}
.y269{bottom:706.741217px;}
.y140{bottom:711.781215px;}
.y171{bottom:713.401215px;}
.y292{bottom:717.181213px;}
.y1c8{bottom:717.901213px;}
.y70{bottom:719.161212px;}
.y9c{bottom:719.701212px;}
.yec{bottom:721.681211px;}
.y23{bottom:722.041211px;}
.y196{bottom:723.301211px;}
.y268{bottom:724.021210px;}
.y6{bottom:726.298500px;}
.y46{bottom:727.981209px;}
.y193{bottom:728.701200px;}
.y13f{bottom:729.781208px;}
.y170{bottom:730.501208px;}
.y192{bottom:731.941207px;}
.y1c6{bottom:733.921206px;}
.y291{bottom:734.281206px;}
.y6f{bottom:736.081206px;}
.yc4{bottom:738.061205px;}
.y259{bottom:738.241205px;}
.y9b{bottom:738.601205px;}
.y1f6{bottom:739.141204px;}
.y123{bottom:739.681204px;}
.y1c7{bottom:739.861204px;}
.y195{bottom:740.581204px;}
.yeb{bottom:740.761204px;}
.y267{bottom:741.301203px;}
.y13e{bottom:747.781201px;}
.y16f{bottom:748.501201px;}
.y290{bottom:751.561199px;}
.y1c4{bottom:751.921199px;}
.y45{bottom:752.461199px;}
.y3{bottom:752.599495px;}
.y1f4{bottom:753.361200px;}
.y6e{bottom:753.541199px;}
.y1f2{bottom:754.441200px;}
.yc3{bottom:756.961197px;}
.y258{bottom:757.141197px;}
.y9a{bottom:757.501197px;}
.y1f1{bottom:757.681197px;}
.y266{bottom:758.581197px;}
.y1c5{bottom:758.761196px;}
.y122{bottom:758.941196px;}
.yea{bottom:759.661196px;}
.y191{bottom:760.561196px;}
.y13d{bottom:765.781194px;}
.y16e{bottom:766.501193px;}
.y28f{bottom:768.841192px;}
.y1c3{bottom:769.201192px;}
.y1f0{bottom:770.821192px;}
.y6d{bottom:771.541191px;}
.y265{bottom:775.861190px;}
.yc2{bottom:776.041190px;}
.y257{bottom:776.221190px;}
.y99{bottom:776.581189px;}
.y44{bottom:777.841189px;}
.ye9{bottom:778.561189px;}
.y190{bottom:780.901188px;}
.y13c{bottom:783.781186px;}
.y16d{bottom:784.141186px;}
.y1e9{bottom:784.861200px;}
.y28e{bottom:785.761186px;}
.y1c2{bottom:786.481185px;}
.y1e8{bottom:788.101185px;}
.y1ee{bottom:789.361184px;}
.y16b{bottom:789.541200px;}
.y6c{bottom:792.601183px;}
.y16a{bottom:792.781183px;}
.y264{bottom:792.961183px;}
.y1eb{bottom:794.761200px;}
.yc1{bottom:794.941182px;}
.y256{bottom:795.121182px;}
.y98{bottom:795.481182px;}
.ye8{bottom:797.641181px;}
.y18f{bottom:798.181181px;}
.y13b{bottom:801.421179px;}
.y139{bottom:801.781179px;}
.y28d{bottom:803.401179px;}
.y1c1{bottom:804.481178px;}
.y43{bottom:805.021178px;}
.y1ef{bottom:805.381178px;}
.y1ed{bottom:806.641177px;}
.y263{bottom:810.241176px;}
.y138{bottom:810.421176px;}
.yc0{bottom:814.021174px;}
.y96{bottom:814.561174px;}
.y18e{bottom:815.461174px;}
.ye7{bottom:816.541173px;}
.y6b{bottom:816.721173px;}
.y13a{bottom:819.061172px;}
.y169{bottom:819.421172px;}
.y28c{bottom:820.501172px;}
.y1c0{bottom:821.761171px;}
.y97{bottom:822.121171px;}
.y42{bottom:824.461170px;}
.y262{bottom:827.521169px;}
.ybf{bottom:832.921167px;}
.y255{bottom:833.101167px;}
.y95{bottom:833.461167px;}
.ye6{bottom:835.621166px;}
.y137{bottom:837.781165px;}
.y1bf{bottom:839.041164px;}
.y41{bottom:839.941164px;}
.y6a{bottom:841.381163px;}
.y261{bottom:844.981162px;}
.ybe{bottom:852.001159px;}
.y94{bottom:852.901159px;}
.y254{bottom:853.801158px;}
.ye5{bottom:854.521158px;}
.y136{bottom:855.061158px;}
.y40{bottom:855.601158px;}
.y1be{bottom:857.041157px;}
.y69{bottom:866.041154px;}
.ybd{bottom:870.901152px;}
.y3f{bottom:872.341151px;}
.y93{bottom:872.881151px;}
.y253{bottom:873.241151px;}
.ye4{bottom:873.601151px;}
.y1bd{bottom:874.141150px;}
.y2{bottom:879.369000px;}
.y22{bottom:883.501147px;}
.y68{bottom:889.621144px;}
.y21{bottom:904.201138px;}
.y67{bottom:906.901137px;}
.y1{bottom:966.726000px;}
.h34{height:0.000000px;}
.h2c{height:9.180000px;}
.h25{height:16.740000px;}
.h2f{height:16.920000px;}
.h2a{height:24.767990px;}
.h1f{height:26.749429px;}
.h1e{height:28.730869px;}
.h12{height:29.774868px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h17{height:37.151985px;}
.h24{height:40.555424px;}
.h1a{height:40.816064px;}
.h1b{height:41.114864px;}
.h19{height:42.608863px;}
.h2d{height:44.515881px;}
.h30{height:44.714862px;}
.h2e{height:45.235880px;}
.h22{height:45.345919px;}
.h14{height:45.573102px;}
.h7{height:45.960000px;}
.h13{height:46.301741px;}
.h11{height:47.229101px;}
.h20{height:47.381817px;}
.h1d{height:47.707012px;}
.h33{height:47.988262px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h32{height:48.835879px;}
.h21{height:49.175980px;}
.hb{height:49.535980px;}
.h10{height:50.327980px;}
.hf{height:51.335979px;}
.h1c{height:52.435877px;}
.h2{height:55.152000px;}
.hc{height:57.957097px;}
.h16{height:58.121696px;}
.hd{height:60.063096px;}
.he{height:60.670874px;}
.h15{height:63.175756px;}
.h18{height:68.967746px;}
.h29{height:74.954850px;}
.h28{height:75.674850px;}
.h26{height:77.168849px;}
.h5{height:78.132000px;}
.h23{height:78.608849px;}
.h2b{height:82.208847px;}
.h31{height:86.995864px;}
.h27{height:111.728835px;}
.h4{height:119.055004px;}
.ha{height:973.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:1.260000px;}
.wa{width:4.860000px;}
.w7{width:5.760000px;}
.w8{width:6.120000px;}
.wc{width:6.660000px;}
.w4{width:6.840000px;}
.w5{width:7.020000px;}
.w6{width:7.200000px;}
.wb{width:7.560000px;}
.w2{width:637.794021px;}
.w3{width:688.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:82.620499px;}
.x5{left:93.239213px;}
.x14{left:94.679212px;}
.x24{left:98.099211px;}
.x1{left:102.045000px;}
.x57{left:103.859208px;}
.x2{left:106.297500px;}
.x40{left:107.639207px;}
.x22{left:109.258934px;}
.x1a{left:110.519782px;}
.x41{left:112.679205px;}
.x1b{left:114.480534px;}
.x28{left:117.902105px;}
.x43{left:119.519280px;}
.x42{left:120.960880px;}
.xa{left:122.771398px;}
.x7{left:127.440126px;}
.x44{left:131.039198px;}
.xb{left:133.561108px;}
.xe{left:138.599561px;}
.x1c{left:146.337492px;}
.x1e{left:151.568939px;}
.x29{left:156.419937px;}
.x2a{left:161.639935px;}
.xf{left:169.919932px;}
.x3e{left:171.359931px;}
.x3f{left:173.879930px;}
.x10{left:178.919928px;}
.x3d{left:182.519927px;}
.x11{left:183.959883px;}
.x51{left:191.157951px;}
.x23{left:193.498061px;}
.x1f{left:201.238683px;}
.x4{left:203.484001px;}
.x2e{left:205.739918px;}
.x3a{left:210.239916px;}
.x3c{left:211.319915px;}
.x16{left:214.379883px;}
.x3b{left:215.819914px;}
.x21{left:219.959912px;}
.x4e{left:222.839911px;}
.x13{left:225.359880px;}
.x50{left:236.879218px;}
.x19{left:239.579834px;}
.x2f{left:248.759900px;}
.x2d{left:252.359899px;}
.x54{left:255.959190px;}
.xd{left:260.819917px;}
.x17{left:267.839860px;}
.x18{left:270.719892px;}
.xc{left:281.879896px;}
.x30{left:286.200000px;}
.x8{left:291.600714px;}
.x12{left:296.459870px;}
.x35{left:298.440000px;}
.x31{left:301.679879px;}
.x15{left:312.838984px;}
.x36{left:314.099874px;}
.x56{left:317.699873px;}
.x20{left:320.039872px;}
.x48{left:327.059869px;}
.x9{left:344.160687px;}
.x55{left:354.779858px;}
.x49{left:360.720000px;}
.x4f{left:364.319854px;}
.x4a{left:367.559853px;}
.x53{left:374.579850px;}
.x32{left:391.680000px;}
.x4b{left:397.620000px;}
.x37{left:404.640000px;}
.x33{left:407.159837px;}
.x4c{left:408.239837px;}
.x25{left:414.899834px;}
.x38{left:420.479832px;}
.x45{left:437.040000px;}
.x4d{left:438.300000px;}
.x6{left:440.459824px;}
.x46{left:448.739821px;}
.x3{left:454.959000px;}
.x2c{left:505.440691px;}
.x47{left:509.219812px;}
.x39{left:511.020000px;}
.x34{left:523.259749px;}
.x27{left:526.859789px;}
.x52{left:534.418751px;}
.x26{left:536.759785px;}
.x1d{left:595.079762px;}
@media print{
.v5{vertical-align:-7.039997pt;}
.v8{vertical-align:-5.119998pt;}
.v6{vertical-align:-3.839998pt;}
.v2{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.199999pt;}
.v3{vertical-align:30.719988pt;}
.v1{vertical-align:31.999987pt;}
.v4{vertical-align:35.199986pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.003200pt;}
.ls15{letter-spacing:0.003204pt;}
.ls2{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.006401pt;}
.ls19{letter-spacing:0.006408pt;}
.ls34{letter-spacing:0.056615pt;}
.ls2c{letter-spacing:0.100415pt;}
.ls8{letter-spacing:0.100427pt;}
.lse{letter-spacing:0.102987pt;}
.ls26{letter-spacing:0.102991pt;}
.ls29{letter-spacing:0.109547pt;}
.ls25{letter-spacing:0.118293pt;}
.lsd{letter-spacing:0.140693pt;}
.lsb{letter-spacing:0.163253pt;}
.ls22{letter-spacing:0.237280pt;}
.ls3{letter-spacing:0.263169pt;}
.ls23{letter-spacing:0.274987pt;}
.ls5{letter-spacing:0.326453pt;}
.ls6{letter-spacing:0.326485pt;}
.ls28{letter-spacing:0.452640pt;}
.ls7{letter-spacing:0.461386pt;}
.ls24{letter-spacing:0.552533pt;}
.ls21{letter-spacing:0.646560pt;}
.ls9{letter-spacing:0.740586pt;}
.ls1c{letter-spacing:0.743146pt;}
.lsc{letter-spacing:1.101546pt;}
.ls20{letter-spacing:1.283466pt;}
.ls32{letter-spacing:3.203892pt;}
.lsa{letter-spacing:4.004158pt;}
.ls13{letter-spacing:4.484158pt;}
.ls4{letter-spacing:4.644318pt;}
.ls1f{letter-spacing:6.404584pt;}
.ls35{letter-spacing:6.564797pt;}
.ls33{letter-spacing:7.845064pt;}
.ls12{letter-spacing:9.605276pt;}
.ls2f{letter-spacing:10.245436pt;}
.ls14{letter-spacing:11.525702pt;}
.ls1d{letter-spacing:12.805968pt;}
.ls16{letter-spacing:14.086234pt;}
.ls31{letter-spacing:19.207352pt;}
.ls1a{letter-spacing:27.529162pt;}
.ls10{letter-spacing:28.809428pt;}
.ls1b{letter-spacing:32.650280pt;}
.ls17{letter-spacing:36.491132pt;}
.ls27{letter-spacing:37.131238pt;}
.ls11{letter-spacing:39.051718pt;}
.ls1e{letter-spacing:48.653847pt;}
.ls2d{letter-spacing:53.774912pt;}
.ls18{letter-spacing:75.539703pt;}
.ls2a{letter-spacing:156.361004pt;}
.ls2e{letter-spacing:162.762602pt;}
.ls30{letter-spacing:164.042601pt;}
.ls2b{letter-spacing:203.732185pt;}
.ws7{word-spacing:-45.749742pt;}
.ws5{word-spacing:-41.274223pt;}
.ws9{word-spacing:-37.295985pt;}
.ws3{word-spacing:-15.999994pt;}
.wsa{word-spacing:-14.726402pt;}
.ws1{word-spacing:-14.719994pt;}
.ws6{word-spacing:-13.606480pt;}
.wsc{word-spacing:-13.336610pt;}
.ws4{word-spacing:-13.279995pt;}
.ws8{word-spacing:-12.953595pt;}
.wsb{word-spacing:-11.999995pt;}
.ws2{word-spacing:-9.279996pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.167144pt;}
._1{width:0.933728pt;}
._5{width:2.000837pt;}
._6{width:3.716092pt;}
._b{width:5.190945pt;}
._a{width:6.414039pt;}
._8{width:7.482222pt;}
._c{width:9.203335pt;}
._3{width:10.745021pt;}
._2{width:11.664304pt;}
._18{width:12.876313pt;}
._e{width:14.178627pt;}
._9{width:15.811978pt;}
._7{width:16.728968pt;}
._19{width:17.936534pt;}
._11{width:19.080579pt;}
._2d{width:20.400083pt;}
._10{width:21.306377pt;}
._f{width:22.298810pt;}
._d{width:23.566664pt;}
._4{width:24.810239pt;}
._2a{width:25.910176pt;}
._14{width:26.893454pt;}
._15{width:27.932769pt;}
._16{width:28.918841pt;}
._1e{width:29.855868pt;}
._1f{width:30.838899pt;}
._22{width:32.157664pt;}
._2e{width:33.116209pt;}
._2f{width:34.009557pt;}
._1a{width:35.039567pt;}
._13{width:36.545687pt;}
._12{width:37.870372pt;}
._17{width:39.388984pt;}
._23{width:40.988873pt;}
._1d{width:42.456102pt;}
._25{width:44.622397pt;}
._24{width:46.384366pt;}
._2c{width:48.119887pt;}
._2b{width:49.618368pt;}
._26{width:50.718296pt;}
._35{width:52.086056pt;}
._34{width:53.939846pt;}
._33{width:54.909193pt;}
._8a{width:56.006947pt;}
._20{width:57.142103pt;}
._21{width:58.470579pt;}
._29{width:60.094944pt;}
._28{width:61.185840pt;}
._27{width:62.100641pt;}
._56{width:62.995975pt;}
._77{width:64.031600pt;}
._31{width:65.304342pt;}
._30{width:66.315303pt;}
._61{width:68.420660pt;}
._38{width:70.894063pt;}
._5c{width:72.645336pt;}
._1c{width:74.675618pt;}
._1b{width:75.920861pt;}
._74{width:77.634911pt;}
._70{width:78.574182pt;}
._32{width:79.876891pt;}
._5f{width:81.965213pt;}
._5d{width:89.801579pt;}
._5b{width:91.347433pt;}
._66{width:95.885673pt;}
._78{width:96.786865pt;}
._3c{width:98.028088pt;}
._4c{width:99.281882pt;}
._7a{width:102.437292pt;}
._69{width:103.895460pt;}
._6a{width:104.834731pt;}
._37{width:107.069993pt;}
._4e{width:108.508171pt;}
._68{width:109.405059pt;}
._79{width:116.494233pt;}
._60{width:118.663389pt;}
._75{width:120.774893pt;}
._58{width:121.805236pt;}
._65{width:122.719906pt;}
._73{width:123.779607pt;}
._3a{width:125.646341pt;}
._5e{width:127.965162pt;}
._6d{width:132.162967pt;}
._7d{width:134.584869pt;}
._8f{width:137.258700pt;}
._51{width:138.456816pt;}
._72{width:141.438565pt;}
._76{width:147.648626pt;}
._71{width:148.990591pt;}
._6e{width:150.256428pt;}
._49{width:151.196029pt;}
._3d{width:152.206066pt;}
._80{width:153.154427pt;}
._8d{width:155.000749pt;}
._59{width:155.956056pt;}
._5a{width:158.640344pt;}
._93{width:161.668026pt;}
._82{width:164.066374pt;}
._8b{width:169.714927pt;}
._7e{width:170.843665pt;}
._92{width:172.580021pt;}
._85{width:173.827877pt;}
._6b{width:175.551110pt;}
._62{width:184.063229pt;}
._52{width:186.147138pt;}
._6c{width:188.555986pt;}
._84{width:191.016926pt;}
._89{width:192.931448pt;}
._6f{width:200.628593pt;}
._7b{width:202.366203pt;}
._55{width:204.531107pt;}
._63{width:207.092017pt;}
._50{width:212.707331pt;}
._7c{width:214.743454pt;}
._86{width:217.476282pt;}
._88{width:221.626045pt;}
._48{width:224.425647pt;}
._67{width:225.570957pt;}
._36{width:229.162638pt;}
._81{width:235.407369pt;}
._4a{width:241.833817pt;}
._83{width:247.987526pt;}
._8e{width:256.423697pt;}
._3b{width:257.517751pt;}
._4b{width:258.527788pt;}
._44{width:262.550289pt;}
._42{width:265.525227pt;}
._4f{width:268.228699pt;}
._39{width:274.189302pt;}
._87{width:283.564036pt;}
._41{width:286.082442pt;}
._8c{width:291.606953pt;}
._7f{width:295.255989pt;}
._57{width:299.338646pt;}
._46{width:324.435289pt;}
._3e{width:342.177294pt;}
._45{width:345.098605pt;}
._3f{width:354.903619pt;}
._91{width:359.204916pt;}
._43{width:360.799966pt;}
._90{width:371.239803pt;}
._40{width:377.608242pt;}
._47{width:385.772004pt;}
._53{width:550.465320pt;}
._64{width:583.342359pt;}
._4d{width:673.566797pt;}
._54{width:746.794690pt;}
.fse{font-size:31.999987pt;}
.fsc{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:47.999981pt;}
.fsd{font-size:50.559980pt;}
.fsb{font-size:53.119979pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.879970pt;}
.fsa{font-size:85.119966pt;}
.fs2{font-size:90.666667pt;}
.y1f5{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y1ec{bottom:2.879983pt;}
.y16c{bottom:2.879985pt;}
.y1ea{bottom:2.879986pt;}
.y1f3{bottom:2.879997pt;}
.y194{bottom:2.880006pt;}
.y23a{bottom:2.880067pt;}
.y1fb{bottom:3.200040pt;}
.y200{bottom:3.200054pt;}
.y206{bottom:3.200073pt;}
.y5{bottom:59.133337pt;}
.y135{bottom:82.774634pt;}
.y121{bottom:83.094633pt;}
.ybc{bottom:83.254367pt;}
.y10e{bottom:83.574367pt;}
.y168{bottom:85.014633pt;}
.y4{bottom:86.333337pt;}
.y28b{bottom:91.574630pt;}
.y252{bottom:95.094629pt;}
.y1e7{bottom:96.054628pt;}
.ybb{bottom:97.494361pt;}
.y3e{bottom:98.134361pt;}
.y21b{bottom:98.614627pt;}
.y10d{bottom:99.094360pt;}
.y18d{bottom:99.254627pt;}
.y15d{bottom:99.414627pt;}
.ye3{bottom:99.574627pt;}
.y1bc{bottom:99.734627pt;}
.y120{bottom:100.054627pt;}
.y167{bottom:101.814626pt;}
.y260{bottom:102.774626pt;}
.y234{bottom:102.934359pt;}
.yba{bottom:103.574359pt;}
.y10c{bottom:105.174358pt;}
.y28a{bottom:106.934624pt;}
.y92{bottom:109.974623pt;}
.y1e6{bottom:111.414622pt;}
.y251{bottom:111.894622pt;}
.yb9{bottom:113.494355pt;}
.y109{bottom:114.934621pt;}
.y10b{bottom:115.094354pt;}
.y21a{bottom:115.574620pt;}
.y3d{bottom:116.214620pt;}
.ye2{bottom:116.374620pt;}
.y134{bottom:116.534620pt;}
.y11f{bottom:116.854620pt;}
.y1bb{bottom:118.134619pt;}
.y166{bottom:118.774619pt;}
.y289{bottom:122.294618pt;}
.y233{bottom:123.734351pt;}
.y20{bottom:123.790666pt;}
.y91{bottom:125.334617pt;}
.y1e5{bottom:126.774616pt;}
.y250{bottom:128.694615pt;}
.y25f{bottom:130.454614pt;}
.y108{bottom:131.894614pt;}
.y219{bottom:132.374614pt;}
.yb8{bottom:133.014613pt;}
.ye1{bottom:133.174613pt;}
.y133{bottom:133.334613pt;}
.y11e{bottom:133.654613pt;}
.y3c{bottom:134.614613pt;}
.y165{bottom:135.574612pt;}
.y1ba{bottom:136.534612pt;}
.y66{bottom:137.494612pt;}
.y288{bottom:137.654612pt;}
.y232{bottom:139.894611pt;}
.y90{bottom:140.534610pt;}
.y1e4{bottom:142.134610pt;}
.y24f{bottom:145.654608pt;}
.y107{bottom:148.694607pt;}
.y218{bottom:149.334607pt;}
.yb7{bottom:149.974607pt;}
.ye0{bottom:150.134607pt;}
.y132{bottom:150.294607pt;}
.y11d{bottom:150.614606pt;}
.y65{bottom:152.374606pt;}
.y3b{bottom:152.854606pt;}
.y287{bottom:153.014605pt;}
.y231{bottom:153.814605pt;}
.y1b8{bottom:154.934605pt;}
.y8f{bottom:155.894604pt;}
.y1e3{bottom:157.494604pt;}
.y25e{bottom:157.974603pt;}
.y1b9{bottom:161.014602pt;}
.y106{bottom:165.974600pt;}
.y64{bottom:166.134600pt;}
.y24e{bottom:166.454600pt;}
.yb6{bottom:166.774600pt;}
.ydf{bottom:166.934600pt;}
.y131{bottom:167.094600pt;}
.y11c{bottom:167.414600pt;}
.y230{bottom:167.574600pt;}
.y286{bottom:168.214599pt;}
.y164{bottom:169.334599pt;}
.y3a{bottom:169.654599pt;}
.y1b7{bottom:170.294599pt;}
.y15c{bottom:170.774598pt;}
.y8e{bottom:171.254598pt;}
.y1e2{bottom:172.854598pt;}
.y17{bottom:175.052000pt;}
.y63{bottom:179.894595pt;}
.y22f{bottom:182.454594pt;}
.y24d{bottom:182.614594pt;}
.y18c{bottom:182.934593pt;}
.yb5{bottom:183.574593pt;}
.yde{bottom:183.894593pt;}
.y105{bottom:184.054593pt;}
.y11b{bottom:184.374593pt;}
.y1b6{bottom:185.654592pt;}
.y163{bottom:186.134592pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y8d{bottom:186.614592pt;}
.y39{bottom:186.934592pt;}
.y15b{bottom:187.094592pt;}
.y1e1{bottom:188.054591pt;}
.y22e{bottom:190.134591pt;}
.y62{bottom:193.814589pt;}
.y24c{bottom:196.534588pt;}
.y18b{bottom:196.694588pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y285{bottom:198.934587pt;}
.y217{bottom:199.894587pt;}
.yb4{bottom:200.534586pt;}
.ydd{bottom:200.694586pt;}
.y104{bottom:200.854586pt;}
.y11a{bottom:201.174586pt;}
.y8c{bottom:201.974586pt;}
.y1b5{bottom:202.294586pt;}
.y162{bottom:203.094585pt;}
.y1e0{bottom:203.734585pt;}
.y38{bottom:205.334585pt;}
.y61{bottom:207.894584pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y24b{bottom:210.294583pt;}
.y18a{bottom:210.614582pt;}
.y25d{bottom:213.174581pt;}
.y284{bottom:214.294581pt;}
.y15a{bottom:215.414581pt;}
.y216{bottom:216.694580pt;}
.y8b{bottom:217.334580pt;}
.ydc{bottom:217.494580pt;}
.y103{bottom:217.654580pt;}
.y119{bottom:217.974579pt;}
.y1b4{bottom:218.614579pt;}
.y161{bottom:219.894579pt;}
.y1df{bottom:220.534578pt;}
.y60{bottom:223.254577pt;}
.y37{bottom:223.414577pt;}
.y189{bottom:225.494576pt;}
.y24a{bottom:225.974576pt;}
.y283{bottom:229.654575pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y159{bottom:231.414574pt;}
.y8a{bottom:232.534574pt;}
.y22d{bottom:233.014573pt;}
.y215{bottom:233.654573pt;}
.yb3{bottom:234.294573pt;}
.ydb{bottom:234.454573pt;}
.y102{bottom:234.614573pt;}
.y1b3{bottom:234.774573pt;}
.y118{bottom:234.934573pt;}
.y160{bottom:236.694572pt;}
.y1de{bottom:237.494572pt;}
.y5f{bottom:238.614571pt;}
.y36{bottom:239.894571pt;}
.y188{bottom:240.854570pt;}
.y10a{bottom:241.174570pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y249{bottom:243.734569pt;}
.y282{bottom:245.014569pt;}
.y158{bottom:247.414568pt;}
.y89{bottom:247.894568pt;}
.y1b2{bottom:250.134567pt;}
.y214{bottom:250.454566pt;}
.y22c{bottom:250.774566pt;}
.yb2{bottom:251.094566pt;}
.yda{bottom:251.254566pt;}
.y101{bottom:251.414566pt;}
.y117{bottom:252.214566pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y15f{bottom:253.654565pt;}
.y5e{bottom:253.974565pt;}
.y1dd{bottom:254.294565pt;}
.y35{bottom:256.854564pt;}
.y281{bottom:260.214563pt;}
.y248{bottom:261.334562pt;}
.y88{bottom:263.254561pt;}
.y157{bottom:263.414561pt;}
.y1b1{bottom:265.494560pt;}
.y213{bottom:267.414560pt;}
.yb1{bottom:268.054559pt;}
.yd9{bottom:268.214559pt;}
.y100{bottom:268.374559pt;}
.y5d{bottom:269.334559pt;}
.y116{bottom:269.814559pt;}
.y15e{bottom:270.454558pt;}
.y1dc{bottom:271.094558pt;}
.y187{bottom:272.054558pt;}
.y34{bottom:273.654557pt;}
.y280{bottom:275.574556pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y87{bottom:278.614555pt;}
.y247{bottom:278.934555pt;}
.y156{bottom:279.414555pt;}
.y1af{bottom:281.494554pt;}
.y212{bottom:284.214553pt;}
.y5c{bottom:284.694553pt;}
.yb0{bottom:284.854553pt;}
.yd8{bottom:285.014553pt;}
.yff{bottom:285.174553pt;}
.y22b{bottom:286.134552pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y115{bottom:287.414552pt;}
.y1b0{bottom:287.574552pt;}
.y186{bottom:288.054551pt;}
.y33{bottom:290.454550pt;}
.y27f{bottom:290.934550pt;}
.y86{bottom:293.974549pt;}
.y155{bottom:295.734548pt;}
.y25c{bottom:296.054548pt;}
.y246{bottom:296.694548pt;}
.y1ae{bottom:296.854548pt;}
.y5b{bottom:299.894547pt;}
.y211{bottom:301.014546pt;}
.yaf{bottom:301.654546pt;}
.yd7{bottom:301.974546pt;}
.y185{bottom:303.414545pt;}
.y22a{bottom:303.734545pt;}
.y114{bottom:304.214545pt;}
.y1db{bottom:304.854545pt;}
.y27e{bottom:306.294544pt;}
.y31{bottom:307.414544pt;}
.y85{bottom:309.174543pt;}
.ye{bottom:309.452000pt;}
.y154{bottom:311.094542pt;}
.y1ad{bottom:312.214542pt;}
.y32{bottom:314.134541pt;}
.y245{bottom:314.294541pt;}
.y5a{bottom:315.254541pt;}
.yae{bottom:318.614539pt;}
.yd6{bottom:318.774539pt;}
.yfe{bottom:318.934539pt;}
.y184{bottom:319.414539pt;}
.y113{bottom:321.014538pt;}
.y229{bottom:321.494538pt;}
.y27d{bottom:321.654538pt;}
.y1da{bottom:321.814538pt;}
.y210{bottom:321.974538pt;}
.y25b{bottom:323.574537pt;}
.y30{bottom:324.214537pt;}
.y84{bottom:324.534537pt;}
.y153{bottom:326.614536pt;}
.y1ac{bottom:328.214535pt;}
.y59{bottom:330.614534pt;}
.y244{bottom:332.054534pt;}
.y183{bottom:334.774533pt;}
.yad{bottom:335.414533pt;}
.yd5{bottom:335.574532pt;}
.yfd{bottom:335.734532pt;}
.y27c{bottom:337.014532pt;}
.y112{bottom:337.974531pt;}
.y20f{bottom:338.134531pt;}
.y1d9{bottom:338.614531pt;}
.y228{bottom:339.094531pt;}
.y83{bottom:339.894531pt;}
.y2f{bottom:341.814530pt;}
.y152{bottom:343.414529pt;}
.y1ab{bottom:343.574529pt;}
.yd{bottom:343.809333pt;}
.y58{bottom:345.974528pt;}
.y243{bottom:349.654527pt;}
.y182{bottom:350.774526pt;}
.y25a{bottom:351.254526pt;}
.y20e{bottom:351.894526pt;}
.y27b{bottom:352.214526pt;}
.yac{bottom:352.374526pt;}
.yd4{bottom:352.534526pt;}
.y130{bottom:352.694526pt;}
.yfc{bottom:353.014525pt;}
.y111{bottom:354.774525pt;}
.y82{bottom:355.254525pt;}
.y1d8{bottom:355.414525pt;}
.y227{bottom:356.694524pt;}
.y1a9{bottom:359.574523pt;}
.y2e{bottom:359.894523pt;}
.y151{bottom:360.374523pt;}
.y57{bottom:361.334522pt;}
.yc{bottom:362.706666pt;}
.y1aa{bottom:365.654520pt;}
.y181{bottom:366.774520pt;}
.y242{bottom:367.254520pt;}
.y27a{bottom:367.574520pt;}
.yab{bottom:369.174519pt;}
.yd3{bottom:369.334519pt;}
.y12f{bottom:369.494519pt;}
.y81{bottom:370.614518pt;}
.yfb{bottom:370.774518pt;}
.y110{bottom:371.734518pt;}
.y1d7{bottom:372.374518pt;}
.y226{bottom:374.454517pt;}
.y1a8{bottom:374.774517pt;}
.y56{bottom:376.534516pt;}
.y150{bottom:377.174516pt;}
.y2d{bottom:378.294515pt;}
.y20d{bottom:382.294514pt;}
.y180{bottom:382.774514pt;}
.y279{bottom:382.934513pt;}
.y241{bottom:385.014513pt;}
.y80{bottom:385.974512pt;}
.yd2{bottom:386.294512pt;}
.yfa{bottom:387.894512pt;}
.y10f{bottom:388.534511pt;}
.y1d6{bottom:389.174511pt;}
.y1a7{bottom:390.134511pt;}
.y55{bottom:391.894510pt;}
.y225{bottom:392.054510pt;}
.y2c{bottom:396.694508pt;}
.y14f{bottom:398.134507pt;}
.y278{bottom:398.294507pt;}
.y20c{bottom:399.894507pt;}
.y7f{bottom:401.174506pt;}
.y240{bottom:402.614506pt;}
.yaa{bottom:402.934505pt;}
.yd1{bottom:403.094505pt;}
.y12e{bottom:403.254505pt;}
.yf9{bottom:405.494504pt;}
.y1d5{bottom:406.134504pt;}
.y1a6{bottom:406.774504pt;}
.y54{bottom:407.254504pt;}
.y224{bottom:409.814503pt;}
.y277{bottom:413.654501pt;}
.y17f{bottom:414.134501pt;}
.y14e{bottom:414.294501pt;}
.y2b{bottom:415.414501pt;}
.y7e{bottom:416.534500pt;}
.y20b{bottom:417.654500pt;}
.ya9{bottom:419.734499pt;}
.yd0{bottom:419.894499pt;}
.y12d{bottom:420.054499pt;}
.y23f{bottom:420.374499pt;}
.yf8{bottom:422.294498pt;}
.y53{bottom:422.614498pt;}
.y1d4{bottom:422.934497pt;}
.y1a5{bottom:423.094497pt;}
.y223{bottom:427.414496pt;}
.y14d{bottom:428.054495pt;}
.y276{bottom:428.854495pt;}
.y17e{bottom:429.494495pt;}
.y7d{bottom:431.894494pt;}
.y20a{bottom:433.654493pt;}
.y2a{bottom:434.134493pt;}
.ya8{bottom:436.694492pt;}
.ycf{bottom:436.854492pt;}
.y12c{bottom:437.014492pt;}
.y52{bottom:437.974491pt;}
.yf7{bottom:439.094491pt;}
.y1a4{bottom:439.414491pt;}
.y1d3{bottom:439.894491pt;}
.y209{bottom:441.334490pt;}
.y14c{bottom:441.814490pt;}
.y275{bottom:444.214489pt;}
.y222{bottom:445.014489pt;}
.y17d{bottom:445.494488pt;}
.y7c{bottom:447.254488pt;}
.y51{bottom:453.334485pt;}
.ya7{bottom:453.494485pt;}
.yce{bottom:453.654485pt;}
.y12b{bottom:453.814485pt;}
.y1a3{bottom:454.774485pt;}
.y23e{bottom:455.734484pt;}
.y29{bottom:456.054484pt;}
.y14b{bottom:456.694484pt;}
.y1d2{bottom:457.174484pt;}
.y274{bottom:459.574483pt;}
.y17c{bottom:460.694482pt;}
.y221{bottom:461.654482pt;}
.y7b{bottom:462.614482pt;}
.yb{bottom:462.990669pt;}
.y208{bottom:466.614480pt;}
.y50{bottom:468.534479pt;}
.y1a2{bottom:469.974479pt;}
.ya6{bottom:470.294479pt;}
.ycd{bottom:470.614478pt;}
.y14a{bottom:472.694478pt;}
.yf6{bottom:472.854478pt;}
.y23d{bottom:473.334477pt;}
.y1d1{bottom:474.774477pt;}
.y273{bottom:474.934477pt;}
.y17b{bottom:476.694476pt;}
.y28{bottom:477.814476pt;}
.y7a{bottom:477.974475pt;}
.y220{bottom:478.454475pt;}
.ya{bottom:478.990666pt;}
.y205{bottom:480.214400pt;}
.y29c{bottom:482.614474pt;}
.y207{bottom:483.414473pt;}
.y4f{bottom:483.894473pt;}
.y204{bottom:484.214473pt;}
.y1a1{bottom:485.974472pt;}
.y21f{bottom:486.134472pt;}
.ya5{bottom:487.254472pt;}
.ycc{bottom:487.414472pt;}
.y12a{bottom:487.574472pt;}
.y149{bottom:488.694471pt;}
.yf5{bottom:489.814471pt;}
.y272{bottom:490.294471pt;}
.y23c{bottom:490.614470pt;}
.y23b{bottom:491.894470pt;}
.y17a{bottom:492.054470pt;}
.y1d0{bottom:492.214470pt;}
.y79{bottom:493.174469pt;}
.y9{bottom:494.990666pt;}
.y239{bottom:496.694400pt;}
.y29b{bottom:497.814468pt;}
.y238{bottom:499.574467pt;}
.y27{bottom:499.734467pt;}
.y203{bottom:500.214467pt;}
.y1a0{bottom:501.334466pt;}
.ya4{bottom:504.054465pt;}
.ycb{bottom:504.214465pt;}
.y129{bottom:504.374465pt;}
.y148{bottom:504.694465pt;}
.y271{bottom:505.654464pt;}
.yf4{bottom:506.614464pt;}
.y4e{bottom:506.934464pt;}
.y202{bottom:507.894464pt;}
.y179{bottom:508.054463pt;}
.y78{bottom:508.534463pt;}
.y1cf{bottom:509.174463pt;}
.y29a{bottom:513.174461pt;}
.y19f{bottom:516.694460pt;}
.y147{bottom:520.694458pt;}
.y270{bottom:520.854458pt;}
.ya3{bottom:521.014458pt;}
.yca{bottom:521.174458pt;}
.y128{bottom:521.334458pt;}
.y4d{bottom:522.614458pt;}
.yf3{bottom:523.414457pt;}
.y77{bottom:523.894457pt;}
.y178{bottom:524.054457pt;}
.y26{bottom:525.014457pt;}
.y237{bottom:525.494456pt;}
.y1ce{bottom:525.974456pt;}
.y21e{bottom:527.894456pt;}
.y1ff{bottom:528.374400pt;}
.y299{bottom:528.534455pt;}
.y201{bottom:532.374454pt;}
.y19e{bottom:532.694454pt;}
.y1fe{bottom:533.334453pt;}
.y26f{bottom:536.214452pt;}
.y146{bottom:536.694452pt;}
.ya2{bottom:537.814452pt;}
.y4c{bottom:537.974451pt;}
.y127{bottom:538.134451pt;}
.y76{bottom:539.254451pt;}
.y177{bottom:540.054451pt;}
.yf2{bottom:540.374451pt;}
.y236{bottom:540.854450pt;}
.y1cd{bottom:542.934449pt;}
.y21d{bottom:543.094449pt;}
.y298{bottom:543.894449pt;}
.y19d{bottom:548.054447pt;}
.y1fd{bottom:550.934446pt;}
.y26e{bottom:551.574446pt;}
.y145{bottom:552.694446pt;}
.y4b{bottom:553.014445pt;}
.ya1{bottom:554.294445pt;}
.y75{bottom:554.614445pt;}
.yc9{bottom:554.934445pt;}
.y176{bottom:555.414445pt;}
.y235{bottom:556.214444pt;}
.yf1{bottom:557.174444pt;}
.y21c{bottom:558.454443pt;}
.y297{bottom:559.254443pt;}
.y1cc{bottom:559.734443pt;}
.y19b{bottom:564.054441pt;}
.y1fa{bottom:564.534400pt;}
.y25{bottom:565.494440pt;}
.y26d{bottom:566.934440pt;}
.y1fc{bottom:567.734440pt;}
.y4a{bottom:568.534439pt;}
.y144{bottom:568.694439pt;}
.y74{bottom:569.974439pt;}
.y19c{bottom:570.134439pt;}
.y175{bottom:571.414438pt;}
.ya0{bottom:571.574438pt;}
.yc8{bottom:571.734438pt;}
.y126{bottom:571.894438pt;}
.y8{bottom:573.786667pt;}
.yf0{bottom:574.134437pt;}
.y296{bottom:574.774437pt;}
.y19a{bottom:579.414435pt;}
.y1cb{bottom:580.534434pt;}
.y26c{bottom:582.294434pt;}
.y49{bottom:584.534433pt;}
.y143{bottom:584.694433pt;}
.y1f9{bottom:586.294432pt;}
.y174{bottom:586.774432pt;}
.yc7{bottom:588.534431pt;}
.y125{bottom:588.694431pt;}
.y9f{bottom:589.014431pt;}
.yef{bottom:590.934430pt;}
.y295{bottom:591.414430pt;}
.y7{bottom:592.685334pt;}
.y73{bottom:592.854430pt;}
.y199{bottom:594.614429pt;}
.y1ca{bottom:596.854428pt;}
.y26b{bottom:597.654428pt;}
.y142{bottom:600.694426pt;}
.y173{bottom:602.774426pt;}
.y48{bottom:603.254425pt;}
.y1f8{bottom:603.894425pt;}
.yc6{bottom:605.494424pt;}
.y24{bottom:605.654424pt;}
.y9e{bottom:605.974424pt;}
.y294{bottom:606.774424pt;}
.yee{bottom:607.734424pt;}
.y72{bottom:608.534423pt;}
.y198{bottom:610.614422pt;}
.y26a{bottom:612.854422pt;}
.y141{bottom:616.694420pt;}
.y172{bottom:618.134419pt;}
.y1f7{bottom:621.654418pt;}
.y293{bottom:622.134418pt;}
.yc5{bottom:622.294418pt;}
.y124{bottom:622.454418pt;}
.y9d{bottom:622.774418pt;}
.y71{bottom:623.894417pt;}
.y1c9{bottom:624.374417pt;}
.yed{bottom:624.694417pt;}
.y47{bottom:625.174417pt;}
.y197{bottom:626.934416pt;}
.y269{bottom:628.214415pt;}
.y140{bottom:632.694414pt;}
.y171{bottom:634.134413pt;}
.y292{bottom:637.494412pt;}
.y1c8{bottom:638.134411pt;}
.y70{bottom:639.254411pt;}
.y9c{bottom:639.734411pt;}
.yec{bottom:641.494410pt;}
.y23{bottom:641.814410pt;}
.y196{bottom:642.934409pt;}
.y268{bottom:643.574409pt;}
.y6{bottom:645.598667pt;}
.y46{bottom:647.094408pt;}
.y193{bottom:647.734400pt;}
.y13f{bottom:648.694407pt;}
.y170{bottom:649.334407pt;}
.y192{bottom:650.614406pt;}
.y1c6{bottom:652.374406pt;}
.y291{bottom:652.694406pt;}
.y6f{bottom:654.294405pt;}
.yc4{bottom:656.054404pt;}
.y259{bottom:656.214404pt;}
.y9b{bottom:656.534404pt;}
.y1f6{bottom:657.014404pt;}
.y123{bottom:657.494404pt;}
.y1c7{bottom:657.654404pt;}
.y195{bottom:658.294403pt;}
.yeb{bottom:658.454403pt;}
.y267{bottom:658.934403pt;}
.y13e{bottom:664.694401pt;}
.y16f{bottom:665.334401pt;}
.y290{bottom:668.054399pt;}
.y1c4{bottom:668.374399pt;}
.y45{bottom:668.854399pt;}
.y3{bottom:668.977329pt;}
.y1f4{bottom:669.654400pt;}
.y6e{bottom:669.814399pt;}
.y1f2{bottom:670.614400pt;}
.yc3{bottom:672.854398pt;}
.y258{bottom:673.014397pt;}
.y9a{bottom:673.334397pt;}
.y1f1{bottom:673.494397pt;}
.y266{bottom:674.294397pt;}
.y1c5{bottom:674.454397pt;}
.y122{bottom:674.614397pt;}
.yea{bottom:675.254397pt;}
.y191{bottom:676.054396pt;}
.y13d{bottom:680.694394pt;}
.y16e{bottom:681.334394pt;}
.y28f{bottom:683.414393pt;}
.y1c3{bottom:683.734393pt;}
.y1f0{bottom:685.174393pt;}
.y6d{bottom:685.814392pt;}
.y265{bottom:689.654391pt;}
.yc2{bottom:689.814391pt;}
.y257{bottom:689.974391pt;}
.y99{bottom:690.294391pt;}
.y44{bottom:691.414390pt;}
.ye9{bottom:692.054390pt;}
.y190{bottom:694.134389pt;}
.y13c{bottom:696.694388pt;}
.y16d{bottom:697.014388pt;}
.y1e9{bottom:697.654400pt;}
.y28e{bottom:698.454387pt;}
.y1c2{bottom:699.094387pt;}
.y1e8{bottom:700.534386pt;}
.y1ee{bottom:701.654386pt;}
.y16b{bottom:701.814400pt;}
.y6c{bottom:704.534385pt;}
.y16a{bottom:704.694385pt;}
.y264{bottom:704.854385pt;}
.y1eb{bottom:706.454400pt;}
.yc1{bottom:706.614384pt;}
.y256{bottom:706.774384pt;}
.y98{bottom:707.094384pt;}
.ye8{bottom:709.014383pt;}
.y18f{bottom:709.494383pt;}
.y13b{bottom:712.374382pt;}
.y139{bottom:712.694382pt;}
.y28d{bottom:714.134381pt;}
.y1c1{bottom:715.094381pt;}
.y43{bottom:715.574380pt;}
.y1ef{bottom:715.894380pt;}
.y1ed{bottom:717.014380pt;}
.y263{bottom:720.214379pt;}
.y138{bottom:720.374379pt;}
.yc0{bottom:723.574377pt;}
.y96{bottom:724.054377pt;}
.y18e{bottom:724.854377pt;}
.ye7{bottom:725.814376pt;}
.y6b{bottom:725.974376pt;}
.y13a{bottom:728.054375pt;}
.y169{bottom:728.374375pt;}
.y28c{bottom:729.334375pt;}
.y1c0{bottom:730.454374pt;}
.y97{bottom:730.774374pt;}
.y42{bottom:732.854374pt;}
.y262{bottom:735.574372pt;}
.ybf{bottom:740.374371pt;}
.y255{bottom:740.534370pt;}
.y95{bottom:740.854370pt;}
.ye6{bottom:742.774370pt;}
.y137{bottom:744.694369pt;}
.y1bf{bottom:745.814368pt;}
.y41{bottom:746.614368pt;}
.y6a{bottom:747.894368pt;}
.y261{bottom:751.094366pt;}
.ybe{bottom:757.334364pt;}
.y94{bottom:758.134363pt;}
.y254{bottom:758.934363pt;}
.ye5{bottom:759.574363pt;}
.y136{bottom:760.054363pt;}
.y40{bottom:760.534362pt;}
.y1be{bottom:761.814362pt;}
.y69{bottom:769.814359pt;}
.ybd{bottom:774.134357pt;}
.y3f{bottom:775.414357pt;}
.y93{bottom:775.894356pt;}
.y253{bottom:776.214356pt;}
.ye4{bottom:776.534356pt;}
.y1bd{bottom:777.014356pt;}
.y2{bottom:781.661334pt;}
.y22{bottom:785.334353pt;}
.y68{bottom:790.774350pt;}
.y21{bottom:803.734345pt;}
.y67{bottom:806.134344pt;}
.y1{bottom:859.312000pt;}
.h34{height:0.000000pt;}
.h2c{height:8.160000pt;}
.h25{height:14.880000pt;}
.h2f{height:15.040000pt;}
.h2a{height:22.015991pt;}
.h1f{height:23.777270pt;}
.h1e{height:25.538550pt;}
.h12{height:26.466549pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h17{height:33.023987pt;}
.h24{height:36.049266pt;}
.h1a{height:36.280945pt;}
.h1b{height:36.546545pt;}
.h19{height:37.874545pt;}
.h2d{height:39.569672pt;}
.h30{height:39.746544pt;}
.h2e{height:40.209671pt;}
.h22{height:40.307484pt;}
.h14{height:40.509424pt;}
.h7{height:40.853333pt;}
.h13{height:41.157104pt;}
.h11{height:41.981423pt;}
.h20{height:42.117171pt;}
.h1d{height:42.406233pt;}
.h33{height:42.656233pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h32{height:43.409670pt;}
.h21{height:43.711983pt;}
.hb{height:44.031982pt;}
.h10{height:44.735982pt;}
.hf{height:45.631982pt;}
.h1c{height:46.609669pt;}
.h2{height:49.024000pt;}
.hc{height:51.517419pt;}
.h16{height:51.663729pt;}
.hd{height:53.389419pt;}
.he{height:53.929666pt;}
.h15{height:56.156228pt;}
.h18{height:61.304663pt;}
.h29{height:66.626533pt;}
.h28{height:67.266533pt;}
.h26{height:68.594533pt;}
.h5{height:69.450667pt;}
.h23{height:69.874532pt;}
.h2b{height:73.074531pt;}
.h31{height:77.329657pt;}
.h27{height:99.314520pt;}
.h4{height:105.826671pt;}
.ha{height:865.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:1.120000pt;}
.wa{width:4.320000pt;}
.w7{width:5.120000pt;}
.w8{width:5.440000pt;}
.wc{width:5.920000pt;}
.w4{width:6.080000pt;}
.w5{width:6.240000pt;}
.w6{width:6.400000pt;}
.wb{width:6.720000pt;}
.w2{width:566.928019pt;}
.w3{width:612.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:73.440444pt;}
.x5{left:82.879300pt;}
.x14{left:84.159300pt;}
.x24{left:87.199298pt;}
.x1{left:90.706667pt;}
.x57{left:92.319296pt;}
.x2{left:94.486667pt;}
.x40{left:95.679295pt;}
.x22{left:97.119052pt;}
.x1a{left:98.239806pt;}
.x41{left:100.159293pt;}
.x1b{left:101.760475pt;}
.x28{left:104.801871pt;}
.x43{left:106.239360pt;}
.x42{left:107.520782pt;}
.xa{left:109.130131pt;}
.x7{left:113.280112pt;}
.x44{left:116.479287pt;}
.xb{left:118.720984pt;}
.xe{left:123.199610pt;}
.x1c{left:130.077770pt;}
.x1e{left:134.727946pt;}
.x29{left:139.039944pt;}
.x2a{left:143.679943pt;}
.xf{left:151.039940pt;}
.x3e{left:152.319939pt;}
.x3f{left:154.559938pt;}
.x10{left:159.039936pt;}
.x3d{left:162.239935pt;}
.x11{left:163.519896pt;}
.x51{left:169.918178pt;}
.x23{left:171.998277pt;}
.x1f{left:178.878829pt;}
.x4{left:180.874667pt;}
.x2e{left:182.879927pt;}
.x3a{left:186.879925pt;}
.x3c{left:187.839925pt;}
.x16{left:190.559896pt;}
.x3b{left:191.839923pt;}
.x21{left:195.519922pt;}
.x4e{left:198.079921pt;}
.x13{left:200.319894pt;}
.x50{left:210.559305pt;}
.x19{left:212.959853pt;}
.x2f{left:221.119912pt;}
.x2d{left:224.319910pt;}
.x54{left:227.519280pt;}
.xd{left:231.839926pt;}
.x17{left:238.079875pt;}
.x18{left:240.639904pt;}
.xc{left:250.559907pt;}
.x30{left:254.400000pt;}
.x8{left:259.200635pt;}
.x12{left:263.519884pt;}
.x35{left:265.280000pt;}
.x31{left:268.159893pt;}
.x15{left:278.079097pt;}
.x36{left:279.199888pt;}
.x56{left:282.399887pt;}
.x20{left:284.479886pt;}
.x48{left:290.719884pt;}
.x9{left:305.920611pt;}
.x55{left:315.359874pt;}
.x49{left:320.640000pt;}
.x4f{left:323.839870pt;}
.x4a{left:326.719869pt;}
.x53{left:332.959867pt;}
.x32{left:348.160000pt;}
.x4b{left:353.440000pt;}
.x37{left:359.680000pt;}
.x33{left:361.919855pt;}
.x4c{left:362.879855pt;}
.x25{left:368.799852pt;}
.x38{left:373.759850pt;}
.x45{left:388.480000pt;}
.x4d{left:389.600000pt;}
.x6{left:391.519843pt;}
.x46{left:398.879840pt;}
.x3{left:404.408000pt;}
.x2c{left:449.280614pt;}
.x47{left:452.639833pt;}
.x39{left:454.240000pt;}
.x34{left:465.119777pt;}
.x27{left:468.319813pt;}
.x52{left:475.038890pt;}
.x26{left:477.119809pt;}
.x1d{left:528.959788pt;}
}




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