
    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_172bffb88e3c261bfc8c9f8a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.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_ea045c15126adbc0d1875f28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_9957e85b1842387e6bc7c272.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_06502c6488bef56364d97e44.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_1f64a62aa717bca3a1afd013.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_112643e02d0c04639137a37e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9baf03e63e382f33aa659275.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a674425e1a6b4cd00f6d5e6d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_2d47450c4c26e408f4d620b3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_afe7209a0f35a64f3f912fde.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_02d2610229b73a9cbc19afa7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.956543;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_40238d1a4a86bab17b828016.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.fff{font-family:fff;line-height:0.774902;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.238461,0.000000,-0.079479,0.237030,0,0);-ms-transform:matrix(0.238461,0.000000,-0.079479,0.237030,0,0);-webkit-transform:matrix(0.238461,0.000000,-0.079479,0.237030,0,0);}
.m6{transform:matrix(0.239339,0.000000,-0.079772,0.236931,0,0);-ms-transform:matrix(0.239339,0.000000,-0.079772,0.236931,0,0);-webkit-transform:matrix(0.239339,0.000000,-0.079772,0.236931,0,0);}
.m8{transform:matrix(0.239523,0.000000,-0.079833,0.236911,0,0);-ms-transform:matrix(0.239523,0.000000,-0.079833,0.236911,0,0);-webkit-transform:matrix(0.239523,0.000000,-0.079833,0.236911,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);}
.m2{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252757,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253993,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);}
.vc{vertical-align:-82.800000px;}
.vb{vertical-align:-77.760000px;}
.v1{vertical-align:-61.200000px;}
.v5{vertical-align:-18.473539px;}
.v9{vertical-align:-11.275464px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v3{vertical-align:5.760000px;}
.v7{vertical-align:11.520000px;}
.v8{vertical-align:17.280000px;}
.va{vertical-align:23.760000px;}
.v4{vertical-align:29.687088px;}
.ls2d{letter-spacing:-1.026000px;}
.ls38{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.567600px;}
.ls31{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.432000px;}
.ls2b{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.108000px;}
.ls21{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.010080px;}
.ls1{letter-spacing:0.036000px;}
.ls1b{letter-spacing:0.047520px;}
.ls25{letter-spacing:0.053280px;}
.ls2e{letter-spacing:0.054720px;}
.ls14{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.109200px;}
.ls18{letter-spacing:0.123840px;}
.lsb{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.262080px;}
.ls2f{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.269280px;}
.ls1e{letter-spacing:0.269400px;}
.ls26{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.480000px;}
.ls33{letter-spacing:1.620000px;}
.ls16{letter-spacing:1.728000px;}
.ls15{letter-spacing:2.016000px;}
.ls36{letter-spacing:3.060000px;}
.ls3{letter-spacing:14.040000px;}
.ls12{letter-spacing:45.432000px;}
.ls39{letter-spacing:57.780000px;}
.ls30{letter-spacing:59.940000px;}
.ls2{letter-spacing:69.017760px;}
.ls13{letter-spacing:73.616880px;}
.ls23{letter-spacing:89.280000px;}
.ls19{letter-spacing:154.161103px;}
.ls1a{letter-spacing:301.171756px;}
.lsc{letter-spacing:384.522789px;}
.ls10{letter-spacing:424.015713px;}
.lsf{letter-spacing:469.746691px;}
.ls20{letter-spacing:831.661250px;}
.ls1f{letter-spacing:994.418889px;}
.ls1c{letter-spacing:1033.668360px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-27.000000px;}
.ws1a{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws26{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws8{word-spacing:-16.865400px;}
.ws28{word-spacing:-16.822200px;}
.ws21{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.254600px;}
.ws24{word-spacing:-15.300000px;}
.ws25{word-spacing:-14.993280px;}
.ws22{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.886720px;}
.ws2a{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws2b{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.284000px;}
.ws29{word-spacing:-13.140000px;}
.ws2c{word-spacing:-12.564000px;}
.ws1{word-spacing:-12.186000px;}
.wsa{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws20{word-spacing:-10.350600px;}
.ws11{word-spacing:-0.041167px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:14.742874px;}
.ws17{word-spacing:25.902342px;}
.wsd{word-spacing:28.198068px;}
.ws10{word-spacing:31.848392px;}
.ws1d{word-spacing:84.523486px;}
.ws1b{word-spacing:102.344271px;}
.ws15{word-spacing:104.205076px;}
.wsc{word-spacing:104.348215px;}
.ws1c{word-spacing:116.472078px;}
.ws16{word-spacing:123.170973px;}
.wse{word-spacing:123.457251px;}
.ws1e{word-spacing:170.202605px;}
.ws14{word-spacing:178.716144px;}
.wsf{word-spacing:195.206032px;}
.ws12{word-spacing:256.467566px;}
.ws19{word-spacing:278.619754px;}
.ws1f{word-spacing:368.479723px;}
.ws18{word-spacing:446.290242px;}
._2a{margin-left:-601.890504px;}
._2f{margin-left:-14.400000px;}
._11{margin-left:-5.589120px;}
._d{margin-left:-4.413120px;}
._9{margin-left:-3.174000px;}
._c{margin-left:-2.136000px;}
._0{margin-left:-1.080000px;}
._1{width:1.434000px;}
._2{width:3.034080px;}
._5{width:4.387920px;}
._1a{width:5.391360px;}
._8{width:6.396000px;}
._7{width:7.668000px;}
._b{width:8.838000px;}
._a{width:10.062000px;}
._19{width:11.393280px;}
._6{width:12.474000px;}
._3{width:13.500000px;}
._4{width:14.688000px;}
._50{width:15.840000px;}
._10{width:17.686080px;}
._e{width:18.745920px;}
._f{width:20.219520px;}
._13{width:21.586560px;}
._12{width:22.852800px;}
._4b{width:24.127440px;}
._1b{width:25.191360px;}
._17{width:26.496000px;}
._18{width:27.555840px;}
._15{width:29.278080px;}
._14{width:31.240320px;}
._4a{width:32.624880px;}
._49{width:33.666240px;}
._46{width:37.425600px;}
._48{width:38.615040px;}
._47{width:39.761520px;}
._4d{width:44.049600px;}
._1c{width:48.030720px;}
._52{width:57.618000px;}
._51{width:58.806000px;}
._4f{width:59.994000px;}
._4e{width:61.236000px;}
._37{width:70.996865px;}
._38{width:76.436141px;}
._2d{width:86.264498px;}
._34{width:90.846990px;}
._44{width:92.160000px;}
._2c{width:95.082962px;}
._27{width:96.761857px;}
._45{width:113.586000px;}
._3e{width:119.176080px;}
._3b{width:122.400000px;}
._21{width:142.850916px;}
._3c{width:152.251920px;}
._29{width:171.360000px;}
._4c{width:180.000000px;}
._1f{width:189.902824px;}
._1d{width:198.120000px;}
._3d{width:204.060000px;}
._25{width:219.145566px;}
._42{width:220.944884px;}
._39{width:225.085828px;}
._31{width:230.089837px;}
._2e{width:233.262615px;}
._3a{width:252.783194px;}
._2b{width:265.318373px;}
._3f{width:268.946800px;}
._30{width:305.536958px;}
._23{width:309.394605px;}
._28{width:318.483922px;}
._32{width:364.717767px;}
._24{width:373.956181px;}
._33{width:379.675776px;}
._40{width:382.967970px;}
._1e{width:385.387377px;}
._22{width:415.174209px;}
._20{width:441.121974px;}
._26{width:482.592603px;}
._35{width:496.146903px;}
._36{width:539.980596px;}
._41{width:607.994998px;}
._43{width:641.648643px;}
._16{width:847.596000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:41.166544px;}
.fsa{font-size:41.346141px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:43.630506px;}
.fs6{font-size:48.240000px;}
.fs11{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs14{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fsf{font-size:71.116651px;}
.fsb{font-size:71.569421px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:75.485705px;}
.fs10{font-size:75.517032px;}
.fs13{font-size:75.523616px;}
.fs2{font-size:102.000000px;}
.fsd{font-size:107.357100px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:3.240000px;}
.y22e{bottom:3.270000px;}
.y28{bottom:3.600000px;}
.y1f2{bottom:3.780000px;}
.y2f{bottom:3.960000px;}
.y107{bottom:4.500000px;}
.yb1{bottom:4.582915px;}
.y105{bottom:4.680000px;}
.yac{bottom:4.745564px;}
.yba{bottom:4.745605px;}
.ybd{bottom:4.745606px;}
.y191{bottom:4.860000px;}
.y112{bottom:5.040000px;}
.y125{bottom:5.220000px;}
.y19c{bottom:5.580000px;}
.y198{bottom:5.760000px;}
.y146{bottom:6.300000px;}
.y1f5{bottom:6.480000px;}
.y140{bottom:6.660000px;}
.y2a9{bottom:7.560000px;}
.yab{bottom:7.564430px;}
.yb9{bottom:7.564479px;}
.ybc{bottom:7.564503px;}
.y2a7{bottom:7.740000px;}
.y36{bottom:7.920000px;}
.yae{bottom:8.063955px;}
.yc1{bottom:8.064001px;}
.y15d{bottom:8.100000px;}
.y206{bottom:8.640000px;}
.y225{bottom:8.820000px;}
.y223{bottom:9.000000px;}
.y1db{bottom:9.180000px;}
.yb2{bottom:9.201373px;}
.yb3{bottom:9.201377px;}
.y1df{bottom:9.210000px;}
.y1d9{bottom:9.360000px;}
.y2c{bottom:9.720000px;}
.y153{bottom:9.900000px;}
.y14c{bottom:10.080000px;}
.y151{bottom:10.125000px;}
.y255{bottom:10.260000px;}
.y177{bottom:10.440000px;}
.y253{bottom:10.470000px;}
.y175{bottom:10.620000px;}
.y17b{bottom:10.665000px;}
.y284{bottom:10.800000px;}
.yad{bottom:12.167336px;}
.ybf{bottom:12.167406px;}
.yc0{bottom:12.167408px;}
.ybe{bottom:12.167417px;}
.y26a{bottom:12.960000px;}
.y269{bottom:13.140000px;}
.y1e5{bottom:13.860000px;}
.y1e7{bottom:14.040000px;}
.y34{bottom:18.936000px;}
.y27{bottom:20.160000px;}
.yd4{bottom:20.196258px;}
.ydf{bottom:20.520000px;}
.yaa{bottom:23.478428px;}
.yb8{bottom:23.478468px;}
.ybb{bottom:23.478470px;}
.y2b{bottom:26.280000px;}
.y33{bottom:32.796000px;}
.y26{bottom:36.540000px;}
.y2a{bottom:39.060000px;}
.y32{bottom:46.656000px;}
.y25{bottom:53.130000px;}
.y37{bottom:57.780000px;}
.y31{bottom:60.330000px;}
.y5{bottom:66.525004px;}
.y24{bottom:69.510000px;}
.y35{bottom:74.520000px;}
.y4{bottom:97.125005px;}
.y30{bottom:97.740000px;}
.ya9{bottom:111.135000px;}
.y21f{bottom:112.176000px;}
.y250{bottom:112.716000px;}
.y1a6{bottom:114.876000px;}
.y2e3{bottom:117.216000px;}
.y1ed{bottom:118.836000px;}
.y13a{bottom:119.016000px;}
.y1d3{bottom:120.996000px;}
.y2bf{bottom:122.436000px;}
.ya8{bottom:123.156000px;}
.y30d{bottom:123.696000px;}
.y202{bottom:123.876000px;}
.y159{bottom:124.596000px;}
.y11f{bottom:124.776000px;}
.y2a3{bottom:125.676000px;}
.y192{bottom:126.036000px;}
.y263{bottom:126.576000px;}
.y2c9{bottom:127.296000px;}
.y80{bottom:128.736000px;}
.y171{bottom:129.096000px;}
.y23e{bottom:129.816000px;}
.y100{bottom:130.716000px;}
.ya1{bottom:132.336000px;}
.y278{bottom:132.516000px;}
.y2e2{bottom:132.696000px;}
.yda{bottom:134.316000px;}
.y21e{bottom:136.836000px;}
.y24f{bottom:137.376000px;}
.y30c{bottom:139.176000px;}
.y22{bottom:139.264499px;}
.y190{bottom:139.356000px;}
.y1a5{bottom:139.536000px;}
.y2c8{bottom:140.616000px;}
.y139{bottom:143.676000px;}
.y1d2{bottom:145.656000px;}
.y2be{bottom:147.096000px;}
.y170{bottom:148.176000px;}
.y2e1{bottom:148.356000px;}
.y201{bottom:148.536000px;}
.y158{bottom:149.256000px;}
.y11e{bottom:149.436000px;}
.y2a2{bottom:150.330000px;}
.y262{bottom:151.230000px;}
.y7f{bottom:153.390000px;}
.y23d{bottom:154.470000px;}
.y30b{bottom:154.650000px;}
.ya7{bottom:154.830000px;}
.yff{bottom:155.370000px;}
.ya0{bottom:156.990000px;}
.ydb{bottom:157.170000px;}
.yd9{bottom:158.970000px;}
.y277{bottom:159.510000px;}
.y21d{bottom:161.490000px;}
.y2c7{bottom:161.850000px;}
.y24e{bottom:162.030000px;}
.y1ec{bottom:162.930000px;}
.y2e0{bottom:163.830000px;}
.y1a4{bottom:164.190000px;}
.y138{bottom:168.330000px;}
.y2e{bottom:170.130000px;}
.y1d1{bottom:170.310000px;}
.y2bd{bottom:171.750000px;}
.y16f{bottom:172.650000px;}
.y200{bottom:173.190000px;}
.y157{bottom:173.910000px;}
.y11d{bottom:174.090000px;}
.y2a1{bottom:174.990000px;}
.y261{bottom:175.890000px;}
.y7e{bottom:178.050000px;}
.yd8{bottom:178.410000px;}
.y23c{bottom:179.130000px;}
.y2df{bottom:179.310000px;}
.ya6{bottom:179.490000px;}
.yfe{bottom:180.030000px;}
.y9f{bottom:181.650000px;}
.y9e{bottom:181.830000px;}
.y1eb{bottom:182.730000px;}
.y2c6{bottom:182.910000px;}
.y30a{bottom:185.790000px;}
.y21c{bottom:186.150000px;}
.y276{bottom:186.330000px;}
.y24d{bottom:186.690000px;}
.y1a3{bottom:188.850000px;}
.y137{bottom:192.990000px;}
.y2de{bottom:194.790000px;}
.y1d0{bottom:194.970000px;}
.y1ea{bottom:196.050000px;}
.y2bc{bottom:196.410000px;}
.y19{bottom:196.933500px;}
.y16e{bottom:197.310000px;}
.y18f{bottom:197.850000px;}
.y156{bottom:198.570000px;}
.y11c{bottom:198.750000px;}
.y2a0{bottom:199.650000px;}
.y260{bottom:200.550000px;}
.y309{bottom:201.270000px;}
.y5d{bottom:201.990000px;}
.y7d{bottom:202.710000px;}
.y23b{bottom:203.790000px;}
.ya5{bottom:204.150000px;}
.yd7{bottom:204.330000px;}
.yfd{bottom:204.690000px;}
.y9d{bottom:206.310000px;}
.ydc{bottom:206.490000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y2dd{bottom:210.450000px;}
.y21b{bottom:210.810000px;}
.y24c{bottom:211.350000px;}
.y275{bottom:213.330000px;}
.y1a2{bottom:213.510000px;}
.y308{bottom:216.750000px;}
.y18e{bottom:217.470000px;}
.y5c{bottom:217.650000px;}
.y1cf{bottom:219.630000px;}
.y2bb{bottom:221.070000px;}
.y16d{bottom:221.970000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1ff{bottom:222.510000px;}
.y1b6{bottom:223.410000px;}
.y11b{bottom:223.590000px;}
.yd6{bottom:223.770000px;}
.y29f{bottom:224.310000px;}
.y1e9{bottom:224.670000px;}
.y25f{bottom:225.210000px;}
.y2dc{bottom:225.930000px;}
.y7c{bottom:227.370000px;}
.y23a{bottom:228.450000px;}
.ya4{bottom:228.810000px;}
.yfc{bottom:229.350000px;}
.y9c{bottom:230.970000px;}
.y307{bottom:232.410000px;}
.y5b{bottom:233.130000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y21a{bottom:235.470000px;}
.y24b{bottom:236.010000px;}
.y18d{bottom:236.910000px;}
.y1a1{bottom:238.170000px;}
.y274{bottom:240.150000px;}
.yd3{bottom:240.585000px;}
.y2db{bottom:241.410000px;}
.y136{bottom:242.310000px;}
.y155{bottom:242.670000px;}
.y1ce{bottom:244.290000px;}
.y2ba{bottom:245.730000px;}
.y2c5{bottom:246.450000px;}
.y16c{bottom:246.630000px;}
.y1fe{bottom:247.170000px;}
.y306{bottom:247.890000px;}
.y1b5{bottom:248.070000px;}
.y11a{bottom:248.250000px;}
.y5a{bottom:248.610000px;}
.y29e{bottom:248.970000px;}
.y25e{bottom:249.870000px;}
.y7b{bottom:252.030000px;}
.yd5{bottom:252.570000px;}
.y239{bottom:253.110000px;}
.ya3{bottom:253.470000px;}
.yfb{bottom:254.010000px;}
.y9b{bottom:255.630000px;}
.y18c{bottom:256.350000px;}
.y2da{bottom:256.890000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y219{bottom:260.130000px;}
.y24a{bottom:260.670000px;}
.y154{bottom:262.290000px;}
.y305{bottom:263.370000px;}
.y59{bottom:264.090000px;}
.y135{bottom:266.970000px;}
.y273{bottom:267.150000px;}
.y2c4{bottom:267.510000px;}
.y1cd{bottom:268.950000px;}
.y2b9{bottom:270.390000px;}
.y16b{bottom:271.290000px;}
.y290{bottom:271.830000px;}
.y1fd{bottom:272.010000px;}
.y2d9{bottom:272.370000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1b4{bottom:272.730000px;}
.y29d{bottom:273.630000px;}
.y25d{bottom:274.530000px;}
.y152{bottom:275.790000px;}
.y18b{bottom:275.970000px;}
.y7a{bottom:276.690000px;}
.y238{bottom:277.770000px;}
.yfa{bottom:278.670000px;}
.y304{bottom:278.850000px;}
.ya2{bottom:279.030000px;}
.y58{bottom:279.750000px;}
.y9a{bottom:280.290000px;}
.y1e8{bottom:282.090000px;}
.y1a0{bottom:282.270000px;}
.yd2{bottom:284.070000px;}
.y218{bottom:284.790000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y249{bottom:285.330000px;}
.y2d8{bottom:288.030000px;}
.y2c3{bottom:288.750000px;}
.y134{bottom:291.630000px;}
.y119{bottom:292.350000px;}
.y1cc{bottom:293.610000px;}
.y272{bottom:293.970000px;}
.y303{bottom:294.510000px;}
.y2b8{bottom:295.050000px;}
.y57{bottom:295.230000px;}
.y16a{bottom:295.950000px;}
.y28f{bottom:296.490000px;}
.y1fc{bottom:296.670000px;}
.y1b3{bottom:297.390000px;}
.y18a{bottom:298.110000px;}
.y29c{bottom:298.290000px;}
.y150{bottom:300.450000px;}
.y79{bottom:301.350000px;}
.y19f{bottom:301.890000px;}
.yf9{bottom:303.330000px;}
.yd1{bottom:303.510000px;}
.y248{bottom:304.770000px;}
.y99{bottom:304.950000px;}
.y217{bottom:309.495000px;}
.y2c2{bottom:309.855000px;}
.y302{bottom:310.035000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y56{bottom:310.755000px;}
.y1e6{bottom:310.935000px;}
.y118{bottom:312.375000px;}
.y19e{bottom:315.255000px;}
.y133{bottom:316.335000px;}
.y189{bottom:317.415000px;}
.y1cb{bottom:318.315000px;}
.y25c{bottom:318.675000px;}
.y2d7{bottom:319.035000px;}
.y2b7{bottom:319.755000px;}
.y169{bottom:320.655000px;}
.y271{bottom:321.015000px;}
.y28e{bottom:321.195000px;}
.y237{bottom:321.915000px;}
.y1b2{bottom:322.095000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y29b{bottom:322.995000px;}
.yd0{bottom:324.255000px;}
.y247{bottom:324.435000px;}
.y14f{bottom:325.335000px;}
.y301{bottom:325.515000px;}
.y78{bottom:326.055000px;}
.y55{bottom:326.235000px;}
.y117{bottom:327.135000px;}
.yf8{bottom:328.035000px;}
.y98{bottom:329.655000px;}
.y2c1{bottom:333.795000px;}
.y216{bottom:334.155000px;}
.y2d6{bottom:334.515000px;}
.y19d{bottom:335.775000px;}
.y246{bottom:337.755000px;}
.y25b{bottom:338.475000px;}
.y1e4{bottom:339.735000px;}
.y1fb{bottom:340.815000px;}
.y132{bottom:340.995000px;}
.y236{bottom:341.715000px;}
.y54{bottom:341.895000px;}
.y1ca{bottom:342.975000px;}
.y188{bottom:343.335000px;}
.y2b6{bottom:344.415000px;}
.y168{bottom:345.315000px;}
.y28d{bottom:345.855000px;}
.y1b1{bottom:346.755000px;}
.y116{bottom:346.935000px;}
.y29a{bottom:347.655000px;}
.y10{bottom:348.133500px;}
.y14e{bottom:350.175000px;}
.y77{bottom:350.715000px;}
.y25a{bottom:351.795000px;}
.y2c0{bottom:353.055000px;}
.y97{bottom:354.315000px;}
.y235{bottom:355.035000px;}
.y19b{bottom:356.295000px;}
.y300{bottom:356.655000px;}
.y53{bottom:357.375000px;}
.y215{bottom:358.815000px;}
.y1fa{bottom:360.435000px;}
.y245{bottom:361.695000px;}
.y131{bottom:365.655000px;}
.y115{bottom:366.735000px;}
.y1c9{bottom:367.635000px;}
.y187{bottom:367.995000px;}
.y1e3{bottom:368.355000px;}
.y270{bottom:368.535000px;}
.y2b5{bottom:369.075000px;}
.y167{bottom:369.975000px;}
.y28c{bottom:370.515000px;}
.yf7{bottom:372.135000px;}
.y52{bottom:372.855000px;}
.y1f9{bottom:373.755000px;}
.y234{bottom:374.475000px;}
.y14d{bottom:375.015000px;}
.y76{bottom:375.375000px;}
.y19a{bottom:376.635000px;}
.y259{bottom:376.815000px;}
.y96{bottom:378.975000px;}
.y2d5{bottom:381.135000px;}
.y214{bottom:383.475000px;}
.y244{bottom:385.635000px;}
.y114{bottom:386.535000px;}
.yf{bottom:386.785499px;}
.y2ff{bottom:387.615000px;}
.y51{bottom:388.335000px;}
.y28b{bottom:388.875000px;}
.y130{bottom:390.315000px;}
.y1b0{bottom:390.855000px;}
.y299{bottom:391.755000px;}
.yf6{bottom:392.115000px;}
.y1c8{bottom:392.295000px;}
.y186{bottom:392.655000px;}
.y2b4{bottom:393.735000px;}
.y233{bottom:393.915000px;}
.y166{bottom:394.635000px;}
.y1f8{bottom:396.255000px;}
.y2d4{bottom:396.615000px;}
.y199{bottom:397.155000px;}
.y14b{bottom:399.855000px;}
.y75{bottom:400.035000px;}
.y26f{bottom:401.655000px;}
.y258{bottom:402.015000px;}
.y28a{bottom:402.195000px;}
.y2fe{bottom:403.095000px;}
.y95{bottom:403.635000px;}
.y50{bottom:403.815000px;}
.y113{bottom:406.335000px;}
.yf5{bottom:406.875000px;}
.ye{bottom:408.044999px;}
.y213{bottom:408.135000px;}
.y243{bottom:409.575000px;}
.y1af{bottom:410.475000px;}
.y298{bottom:411.735000px;}
.y2d3{bottom:412.275000px;}
.y232{bottom:413.535000px;}
.y12f{bottom:414.975000px;}
.y1c7{bottom:416.955000px;}
.y185{bottom:417.495000px;}
.y197{bottom:417.675000px;}
.y2b3{bottom:418.395000px;}
.y1f7{bottom:418.575000px;}
.y165{bottom:419.295000px;}
.y4f{bottom:419.475000px;}
.y1ae{bottom:423.975000px;}
.y74{bottom:424.695000px;}
.yf4{bottom:424.875000px;}
.y111{bottom:426.135000px;}
.y297{bottom:426.495000px;}
.y257{bottom:427.215000px;}
.y289{bottom:427.755000px;}
.y94{bottom:428.295000px;}
.y26e{bottom:429.375000px;}
.y212{bottom:432.795000px;}
.y231{bottom:432.975000px;}
.y242{bottom:433.515000px;}
.y2fd{bottom:434.235000px;}
.y4e{bottom:434.955000px;}
.y196{bottom:438.195000px;}
.y12e{bottom:439.635000px;}
.y1f6{bottom:441.075000px;}
.y1c6{bottom:441.615000px;}
.y184{bottom:442.155000px;}
.yf3{bottom:442.875000px;}
.y2b2{bottom:443.055000px;}
.y2d2{bottom:443.235000px;}
.y164{bottom:443.955000px;}
.ycf{bottom:445.755000px;}
.y110{bottom:445.935000px;}
.y73{bottom:449.355000px;}
.y14a{bottom:449.535000px;}
.y2fc{bottom:449.715000px;}
.y4d{bottom:450.435000px;}
.y296{bottom:451.515000px;}
.y256{bottom:452.235000px;}
.y230{bottom:452.415000px;}
.y1e2{bottom:452.775000px;}
.y93{bottom:452.955000px;}
.y288{bottom:453.315000px;}
.y26d{bottom:457.275000px;}
.y211{bottom:457.455000px;}
.y195{bottom:458.535000px;}
.y2d1{bottom:458.715000px;}
.yf2{bottom:460.875000px;}
.y1f4{bottom:463.395000px;}
.y12d{bottom:464.295000px;}
.y2fb{bottom:465.195000px;}
.y10f{bottom:465.735000px;}
.y4c{bottom:465.915000px;}
.y1c5{bottom:466.275000px;}
.y183{bottom:466.815000px;}
.y2b1{bottom:467.715000px;}
.yce{bottom:470.415000px;}
.y1e1{bottom:471.135000px;}
.y22f{bottom:472.035000px;}
.y72{bottom:474.015000px;}
.y2d0{bottom:474.375000px;}
.y1ad{bottom:474.735000px;}
.y295{bottom:476.535000px;}
.y149{bottom:476.895000px;}
.y254{bottom:477.435000px;}
.y92{bottom:477.615000px;}
.y287{bottom:478.695000px;}
.yf1{bottom:478.875000px;}
.y2fa{bottom:480.675000px;}
.y241{bottom:481.395000px;}
.y4b{bottom:481.575000px;}
.y194{bottom:481.935000px;}
.y210{bottom:482.115000px;}
.y1e0{bottom:484.635000px;}
.yd{bottom:484.864502px;}
.y26c{bottom:484.995000px;}
.y1f3{bottom:485.895000px;}
.y163{bottom:488.055000px;}
.y10e{bottom:488.235000px;}
.y2cf{bottom:489.855000px;}
.y1c4{bottom:490.935000px;}
.y182{bottom:491.475000px;}
.y2b0{bottom:492.375000px;}
.ycd{bottom:495.075000px;}
.y148{bottom:496.155000px;}
.y2f9{bottom:496.335000px;}
.yf0{bottom:496.875000px;}
.y4a{bottom:497.055000px;}
.y71{bottom:498.675000px;}
.y1ac{bottom:500.115000px;}
.y193{bottom:501.195000px;}
.y294{bottom:501.735000px;}
.y91{bottom:502.455000px;}
.yc{bottom:502.864502px;}
.y286{bottom:504.255000px;}
.y240{bottom:505.335000px;}
.y20f{bottom:506.775000px;}
.y10d{bottom:507.495000px;}
.y162{bottom:507.675000px;}
.y1f1{bottom:508.215000px;}
.y12c{bottom:508.395000px;}
.y1de{bottom:508.575000px;}
.y22d{bottom:510.915000px;}
.y2f8{bottom:511.815000px;}
.y49{bottom:512.565000px;}
.y26b{bottom:512.925000px;}
.yef{bottom:514.905000px;}
.y1c3{bottom:515.625000px;}
.y147{bottom:516.165000px;}
.y2af{bottom:517.245000px;}
.ycc{bottom:519.765000px;}
.y2ce{bottom:520.845000px;}
.yb{bottom:520.864502px;}
.y161{bottom:521.025000px;}
.y70{bottom:523.365000px;}
.y1ab{bottom:525.705000px;}
.y293{bottom:526.785000px;}
.y90{bottom:527.145000px;}
.y2f7{bottom:527.325000px;}
.y10c{bottom:527.505000px;}
.y252{bottom:527.685000px;}
.y48{bottom:528.045000px;}
.y12b{bottom:528.405000px;}
.y23f{bottom:529.305000px;}
.y285{bottom:529.845000px;}
.y1f0{bottom:530.745000px;}
.y145{bottom:530.925000px;}
.y20e{bottom:531.465000px;}
.y1dd{bottom:532.545000px;}
.yee{bottom:532.905000px;}
.y22c{bottom:533.445000px;}
.y2cd{bottom:536.505000px;}
.y2ae{bottom:537.045000px;}
.ya{bottom:538.864499px;}
.ycb{bottom:539.205000px;}
.y181{bottom:540.825000px;}
.y10b{bottom:542.265000px;}
.y2f6{bottom:542.805000px;}
.y12a{bottom:543.165000px;}
.y47{bottom:543.705000px;}
.y160{bottom:543.885000px;}
.y6f{bottom:548.025000px;}
.yed{bottom:550.905000px;}
.y1aa{bottom:551.085000px;}
.y8f{bottom:551.805000px;}
.y144{bottom:551.985000px;}
.y22b{bottom:552.705000px;}
.y283{bottom:555.225000px;}
.y1ef{bottom:555.945000px;}
.y1dc{bottom:556.665000px;}
.y9{bottom:556.864499px;}
.y2f5{bottom:558.465000px;}
.y46{bottom:559.185000px;}
.y1c2{bottom:559.725000px;}
.y10a{bottom:561.525000px;}
.y129{bottom:563.145000px;}
.yca{bottom:565.125000px;}
.y180{bottom:565.485000px;}
.y15f{bottom:566.565000px;}
.y2cc{bottom:568.185000px;}
.y268{bottom:568.545000px;}
.y2ad{bottom:569.985000px;}
.y22a{bottom:572.325000px;}
.y6e{bottom:572.685000px;}
.y143{bottom:573.405000px;}
.y2f4{bottom:573.945000px;}
.y45{bottom:574.665000px;}
.y1ee{bottom:575.205000px;}
.y20d{bottom:575.565000px;}
.y8e{bottom:576.465000px;}
.y292{bottom:576.825000px;}
.y1c1{bottom:579.345000px;}
.y1da{bottom:580.605000px;}
.y282{bottom:580.785000px;}
.y109{bottom:580.965000px;}
.y128{bottom:583.125000px;}
.y229{bottom:585.645000px;}
.yec{bottom:586.185000px;}
.y2cb{bottom:587.265000px;}
.y15e{bottom:589.245000px;}
.y2f3{bottom:589.425000px;}
.yc9{bottom:589.785000px;}
.y44{bottom:590.145000px;}
.y2ac{bottom:592.485000px;}
.y1c0{bottom:592.845000px;}
.y142{bottom:594.825000px;}
.y20c{bottom:595.365000px;}
.y267{bottom:596.445000px;}
.y6d{bottom:597.525000px;}
.y251{bottom:599.865000px;}
.y108{bottom:600.225000px;}
.y8d{bottom:601.125000px;}
.y1a9{bottom:601.845000px;}
.y127{bottom:603.105000px;}
.y1d8{bottom:604.545000px;}
.y2f2{bottom:604.905000px;}
.y43{bottom:605.805000px;}
.y281{bottom:606.345000px;}
.y20b{bottom:608.685000px;}
.y228{bottom:609.405000px;}
.y15c{bottom:611.925000px;}
.yc8{bottom:614.445000px;}
.y17f{bottom:614.805000px;}
.y1bf{bottom:615.525000px;}
.y141{bottom:615.885000px;}
.y106{bottom:619.665000px;}
.y2f1{bottom:620.565000px;}
.y42{bottom:621.285000px;}
.y6c{bottom:622.185000px;}
.y126{bottom:623.085000px;}
.y266{bottom:624.165000px;}
.yeb{bottom:625.065000px;}
.y8c{bottom:625.785000px;}
.y2ca{bottom:626.145000px;}
.y291{bottom:626.865000px;}
.y1d7{bottom:628.665000px;}
.y1a8{bottom:629.925000px;}
.yc7{bottom:630.105000px;}
.y20a{bottom:632.085000px;}
.y227{bottom:632.985000px;}
.yc5{bottom:634.425000px;}
.y15b{bottom:634.785000px;}
.y2f0{bottom:636.045000px;}
.y41{bottom:636.765000px;}
.y2ab{bottom:637.125000px;}
.y13f{bottom:637.305000px;}
.y1be{bottom:638.385000px;}
.y104{bottom:638.925000px;}
.yc6{bottom:641.805000px;}
.y124{bottom:642.885000px;}
.yea{bottom:644.325000px;}
.y8{bottom:645.510000px;}
.y6b{bottom:646.845000px;}
.y1a7{bottom:649.185000px;}
.y8b{bottom:650.445000px;}
.y2ef{bottom:651.525000px;}
.y40{bottom:652.245000px;}
.y1d6{bottom:652.605000px;}
.y280{bottom:653.685000px;}
.y265{bottom:654.585000px;}
.y209{bottom:655.485000px;}
.y226{bottom:656.745000px;}
.y15a{bottom:657.465000px;}
.y103{bottom:658.365000px;}
.y13e{bottom:658.725000px;}
.y17e{bottom:658.905000px;}
.y2aa{bottom:659.445000px;}
.yc4{bottom:660.705000px;}
.y1bd{bottom:661.245000px;}
.y123{bottom:662.865000px;}
.ye9{bottom:664.305000px;}
.y7{bottom:666.771000px;}
.y2ee{bottom:667.005000px;}
.y3f{bottom:667.905000px;}
.y6a{bottom:671.505000px;}
.y264{bottom:673.845000px;}
.y8a{bottom:675.105000px;}
.y102{bottom:677.625000px;}
.y17d{bottom:678.525000px;}
.y208{bottom:678.885000px;}
.ye8{bottom:679.065000px;}
.y1d5{bottom:679.245000px;}
.y13d{bottom:680.145000px;}
.y224{bottom:680.505000px;}
.y2a8{bottom:681.765000px;}
.y2ed{bottom:682.665000px;}
.y122{bottom:682.845000px;}
.y3e{bottom:683.385000px;}
.y1bc{bottom:683.925000px;}
.yc3{bottom:685.365000px;}
.y17c{bottom:691.845000px;}
.y69{bottom:696.165000px;}
.ye7{bottom:697.065000px;}
.y2ec{bottom:698.145000px;}
.y1d4{bottom:698.505000px;}
.y3d{bottom:698.865000px;}
.y89{bottom:699.765000px;}
.y101{bottom:699.945000px;}
.y207{bottom:702.285000px;}
.y13c{bottom:703.905000px;}
.y222{bottom:704.085000px;}
.y121{bottom:705.525000px;}
.y1bb{bottom:706.785000px;}
.yb7{bottom:706.934919px;}
.y27f{bottom:707.505000px;}
.y2eb{bottom:713.625000px;}
.y3c{bottom:714.345000px;}
.ye6{bottom:715.065000px;}
.y17a{bottom:717.225000px;}
.yc2{bottom:719.070000px;}
.y68{bottom:720.870000px;}
.y13b{bottom:723.210000px;}
.y88{bottom:724.470000px;}
.y120{bottom:724.650000px;}
.y205{bottom:725.730000px;}
.y6{bottom:726.298500px;}
.y2a6{bottom:726.630000px;}
.y221{bottom:727.890000px;}
.y2ea{bottom:729.150000px;}
.y1ba{bottom:729.690000px;}
.y3b{bottom:730.770000px;}
.ye5{bottom:733.110000px;}
.y27e{bottom:734.370000px;}
.y179{bottom:742.650000px;}
.y2e9{bottom:744.810000px;}
.y67{bottom:745.530000px;}
.y2a5{bottom:748.950000px;}
.y87{bottom:749.130000px;}
.y3a{bottom:749.670000px;}
.yb6{bottom:750.750000px;}
.ye4{bottom:751.110000px;}
.y220{bottom:751.650000px;}
.y1b9{bottom:752.370000px;}
.y3{bottom:752.599495px;}
.y2e8{bottom:760.290000px;}
.y27d{bottom:761.370000px;}
.y178{bottom:768.030000px;}
.ye3{bottom:769.110000px;}
.y66{bottom:770.190000px;}
.y204{bottom:772.530000px;}
.y86{bottom:773.790000px;}
.y2a4{bottom:773.970000px;}
.yb5{bottom:775.410000px;}
.y2e7{bottom:775.770000px;}
.y1b8{bottom:777.930000px;}
.y39{bottom:780.090000px;}
.ye2{bottom:787.110000px;}
.y27c{bottom:788.190000px;}
.yb0{bottom:790.859919px;}
.y2e6{bottom:791.250000px;}
.y176{bottom:793.410000px;}
.y65{bottom:794.850000px;}
.y1b7{bottom:797.190000px;}
.y85{bottom:798.450000px;}
.y203{bottom:798.630000px;}
.yb4{bottom:799.890000px;}
.ye1{bottom:805.110000px;}
.y2e5{bottom:806.910000px;}
.y27b{bottom:815.190000px;}
.y174{bottom:818.610000px;}
.y64{bottom:819.510000px;}
.y38{bottom:820.590000px;}
.yaf{bottom:821.850000px;}
.y2e4{bottom:822.390000px;}
.y84{bottom:823.110000px;}
.y63{bottom:837.870000px;}
.y27a{bottom:842.010000px;}
.y173{bottom:843.990000px;}
.y83{bottom:847.770000px;}
.y2d{bottom:850.650000px;}
.y62{bottom:853.350000px;}
.yde{bottom:858.390000px;}
.y29{bottom:867.750000px;}
.y61{bottom:869.010000px;}
.y172{bottom:869.370000px;}
.y82{bottom:872.430000px;}
.y2{bottom:879.369000px;}
.y23{bottom:884.130000px;}
.y60{bottom:884.490000px;}
.y279{bottom:895.830000px;}
.y81{bottom:897.090000px;}
.ydd{bottom:897.270000px;}
.y5f{bottom:899.970000px;}
.y5e{bottom:949.860000px;}
.y1{bottom:966.726000px;}
.hd{height:16.380000px;}
.h34{height:17.280000px;}
.h35{height:17.316000px;}
.h37{height:17.820000px;}
.h3b{height:18.000000px;}
.h5d{height:18.036000px;}
.h3d{height:18.360000px;}
.h38{height:18.540000px;}
.h39{height:18.720000px;}
.h3c{height:18.900000px;}
.h3f{height:19.080000px;}
.h3e{height:19.260000px;}
.h4c{height:19.620000px;}
.h4d{height:19.800000px;}
.h41{height:20.340000px;}
.h68{height:20.376000px;}
.h66{height:20.520000px;}
.hf{height:20.700000px;}
.h46{height:21.060000px;}
.h57{height:21.600000px;}
.h67{height:21.636000px;}
.h58{height:21.780000px;}
.h56{height:21.816000px;}
.h47{height:21.960000px;}
.h4f{height:21.996000px;}
.h50{height:22.140000px;}
.h59{height:22.680000px;}
.h5a{height:22.716000px;}
.h42{height:22.860000px;}
.h5c{height:23.040000px;}
.h5b{height:23.076000px;}
.h14{height:23.220000px;}
.h51{height:23.256000px;}
.h48{height:23.400000px;}
.h4e{height:23.580000px;}
.h45{height:23.940000px;}
.h43{height:24.120000px;}
.h44{height:24.156000px;}
.h5e{height:24.300000px;}
.h65{height:24.336000px;}
.h4a{height:24.480000px;}
.h5f{height:24.516000px;}
.h49{height:24.660000px;}
.h4b{height:24.696000px;}
.h63{height:24.840000px;}
.h64{height:24.876000px;}
.h60{height:25.920000px;}
.h52{height:26.820000px;}
.h61{height:27.000000px;}
.h25{height:27.000642px;}
.h62{height:27.180000px;}
.h54{height:27.900000px;}
.h53{height:28.080000px;}
.h55{height:28.116000px;}
.h22{height:30.626023px;}
.h7{height:32.130000px;}
.h2f{height:32.318104px;}
.h31{height:34.380000px;}
.h33{height:34.560000px;}
.h1c{height:34.574865px;}
.h29{height:34.574946px;}
.h26{height:40.402711px;}
.h1f{height:40.558787px;}
.h1d{height:40.578976px;}
.h2b{height:43.082578px;}
.h6a{height:45.403594px;}
.h6{height:45.900000px;}
.h1b{height:46.251562px;}
.h12{height:47.344922px;}
.h13{height:47.980898px;}
.h3{height:48.195000px;}
.h28{height:52.677715px;}
.h1a{height:52.971680px;}
.h19{height:52.998047px;}
.h23{height:53.013091px;}
.hb{height:53.709961px;}
.h18{height:54.421875px;}
.h2{height:55.080000px;}
.h21{height:55.913972px;}
.h2a{height:55.937177px;}
.h30{height:55.942054px;}
.h3a{height:58.621992px;}
.h32{height:58.651172px;}
.h36{height:60.226875px;}
.h69{height:64.978594px;}
.h15{height:65.010937px;}
.h17{height:66.757500px;}
.h27{height:69.762379px;}
.h20{height:70.206526px;}
.h2d{height:70.241472px;}
.h10{height:70.664062px;}
.he{height:71.613281px;}
.h11{height:71.676000px;}
.h40{height:72.562500px;}
.h5{height:78.030000px;}
.h24{height:79.521836px;}
.ha{height:82.476000px;}
.h2c{height:87.944062px;}
.hc{height:98.856000px;}
.h2e{height:99.893615px;}
.h1e{height:99.928561px;}
.h16{height:105.996094px;}
.h4{height:119.055004px;}
.h8{height:1020.600000px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w13{width:56.736000px;}
.we{width:56.880000px;}
.w12{width:58.140000px;}
.w16{width:59.436000px;}
.w15{width:62.100000px;}
.wf{width:62.136000px;}
.w10{width:64.080000px;}
.w14{width:64.800000px;}
.w11{width:69.696000px;}
.w43{width:76.140000px;}
.w1f{width:79.560000px;}
.w4f{width:80.640000px;}
.w19{width:85.140000px;}
.w3b{width:86.040000px;}
.w49{width:86.400000px;}
.w77{width:90.576000px;}
.w6e{width:90.756000px;}
.w5e{width:90.936000px;}
.w59{width:91.116000px;}
.w25{width:91.620000px;}
.w37{width:94.716000px;}
.w72{width:96.156000px;}
.w61{width:96.336000px;}
.w6a{width:96.876000px;}
.w60{width:97.560000px;}
.w41{width:97.740000px;}
.w36{width:101.160000px;}
.w64{width:101.196000px;}
.w5d{width:101.340000px;}
.w52{width:101.556000px;}
.w2c{width:101.736000px;}
.w44{width:101.916000px;}
.w31{width:102.060000px;}
.w6b{width:102.456000px;}
.w51{width:102.600000px;}
.w2b{width:102.960000px;}
.w32{width:106.596000px;}
.w79{width:106.776000px;}
.w2d{width:107.136000px;}
.w70{width:107.460000px;}
.w53{width:107.496000px;}
.w54{width:107.676000px;}
.w69{width:107.820000px;}
.w1b{width:110.556000px;}
.w22{width:110.916000px;}
.w3c{width:111.636000px;}
.w3e{width:111.816000px;}
.w27{width:112.176000px;}
.w26{width:112.356000px;}
.w4b{width:112.536000px;}
.w28{width:112.716000px;}
.w63{width:113.040000px;}
.w5b{width:113.220000px;}
.w42{width:113.256000px;}
.w21{width:115.416000px;}
.w1a{width:115.776000px;}
.w1c{width:116.136000px;}
.w33{width:117.216000px;}
.w6d{width:117.360000px;}
.w1e{width:117.576000px;}
.w18{width:117.936000px;}
.w35{width:118.116000px;}
.w45{width:118.296000px;}
.w57{width:118.836000px;}
.w3a{width:119.196000px;}
.w30{width:119.376000px;}
.w75{width:119.556000px;}
.w24{width:119.736000px;}
.w48{width:119.916000px;}
.w56{width:120.096000px;}
.w2a{width:120.276000px;}
.w40{width:120.456000px;}
.w20{width:120.636000px;}
.w67{width:120.816000px;}
.w38{width:121.356000px;}
.w3d{width:122.436000px;}
.w4a{width:122.976000px;}
.w58{width:123.120000px;}
.w4d{width:123.156000px;}
.w62{width:123.516000px;}
.w2e{width:123.696000px;}
.w76{width:124.056000px;}
.w68{width:125.136000px;}
.w50{width:128.196000px;}
.w5c{width:133.812000px;}
.w46{width:140.076000px;}
.w71{width:214.770000px;}
.wb{width:215.108831px;}
.w65{width:220.350000px;}
.w73{width:226.290000px;}
.w6c{width:233.670000px;}
.w6f{width:236.370000px;}
.w78{width:242.130000px;}
.w5{width:280.515000px;}
.w6{width:280.695000px;}
.wd{width:296.461379px;}
.wa{width:380.169492px;}
.wc{width:501.452465px;}
.w1d{width:547.170000px;}
.w17{width:548.430000px;}
.w23{width:551.670000px;}
.w39{width:554.190000px;}
.w34{width:554.370000px;}
.w2f{width:554.730000px;}
.w4e{width:555.450000px;}
.w74{width:555.990000px;}
.w66{width:556.350000px;}
.w4c{width:556.710000px;}
.w47{width:557.430000px;}
.w55{width:557.970000px;}
.w5f{width:558.690000px;}
.w29{width:559.050000px;}
.w3f{width:559.950000px;}
.w5a{width:562.110000px;}
.w8{width:582.990000px;}
.w9{width:590.010000px;}
.w2{width:637.794021px;}
.w7{width:722.879989px;}
.w3{width:722.880000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:2.725232px;}
.x6d{left:3.780000px;}
.x4b{left:5.580000px;}
.x71{left:7.020000px;}
.xa{left:8.100000px;}
.x3f{left:9.210000px;}
.x33{left:10.260000px;}
.x3d{left:11.340000px;}
.x2d{left:12.648656px;}
.x16{left:13.661974px;}
.x29{left:15.206538px;}
.x8f{left:16.245000px;}
.x58{left:17.280000px;}
.x3c{left:19.260000px;}
.x5c{left:20.520000px;}
.x38{left:21.600000px;}
.x32{left:23.040000px;}
.x36{left:24.660000px;}
.x2f{left:25.910547px;}
.x3e{left:27.210000px;}
.x50{left:28.260000px;}
.x48{left:29.340000px;}
.x70{left:30.600000px;}
.x4e{left:31.680000px;}
.x42{left:33.120000px;}
.x4f{left:34.380000px;}
.x6b{left:35.460000px;}
.x49{left:36.900000px;}
.x79{left:37.980000px;}
.x2a{left:39.748313px;}
.x46{left:41.580000px;}
.x84{left:42.660000px;}
.x63{left:44.280000px;}
.x9d{left:45.390000px;}
.x85{left:46.650000px;}
.x99{left:48.090000px;}
.x22{left:49.399969px;}
.x88{left:50.625000px;}
.x9e{left:51.690000px;}
.x47{left:53.820000px;}
.x57{left:54.900000px;}
.x89{left:56.010000px;}
.x98{left:57.060000px;}
.x15{left:59.382075px;}
.x8e{left:60.480000px;}
.x93{left:62.100000px;}
.x9c{left:64.980000px;}
.x2e{left:70.306963px;}
.x23{left:71.578443px;}
.x2c{left:77.586048px;}
.x87{left:79.050000px;}
.x5{left:81.036000px;}
.x40{left:84.096000px;}
.x1{left:102.045000px;}
.x31{left:103.355989px;}
.x2{left:106.297500px;}
.xd{left:107.855989px;}
.x10{left:110.264990px;}
.x14{left:130.380095px;}
.xf{left:134.675989px;}
.x17{left:136.368780px;}
.x13{left:138.950939px;}
.x11{left:141.568930px;}
.x9{left:143.685000px;}
.x2b{left:149.477888px;}
.x8{left:155.205000px;}
.x1b{left:159.764990px;}
.xc{left:167.969989px;}
.x25{left:191.763582px;}
.x1f{left:196.982047px;}
.x6c{left:199.479000px;}
.x34{left:201.855000px;}
.x4{left:203.484001px;}
.x53{left:204.735000px;}
.x8a{left:205.815000px;}
.x1c{left:207.210244px;}
.x18{left:213.890145px;}
.xa0{left:216.579000px;}
.x4a{left:218.199000px;}
.x27{left:219.310477px;}
.x67{left:221.079000px;}
.x51{left:222.159000px;}
.x5b{left:223.599000px;}
.x82{left:225.039000px;}
.x41{left:228.099000px;}
.x52{left:229.719000px;}
.x5d{left:231.339000px;}
.x59{left:233.499000px;}
.x7f{left:234.939000px;}
.x21{left:240.004386px;}
.x26{left:243.363401px;}
.x24{left:245.987626px;}
.x20{left:248.581865px;}
.x1e{left:251.206090px;}
.x35{left:266.655000px;}
.x7{left:280.515000px;}
.x4c{left:282.675000px;}
.x76{left:285.915000px;}
.x43{left:288.615000px;}
.x64{left:290.775000px;}
.x72{left:292.035000px;}
.x54{left:297.075000px;}
.x68{left:303.735000px;}
.x61{left:304.815000px;}
.x5e{left:306.975000px;}
.x78{left:308.055000px;}
.x28{left:309.314989px;}
.x94{left:312.375000px;}
.x80{left:318.675000px;}
.x90{left:323.385000px;}
.x7c{left:324.645000px;}
.x9a{left:329.145000px;}
.x8b{left:331.665000px;}
.x37{left:337.065000px;}
.x12{left:342.953024px;}
.x6{left:361.545000px;}
.x1d{left:374.864989px;}
.x6e{left:384.945000px;}
.x39{left:395.925000px;}
.x77{left:398.445000px;}
.x62{left:400.245000px;}
.x30{left:402.224989px;}
.x65{left:403.305000px;}
.x44{left:405.105000px;}
.x55{left:410.145000px;}
.x5a{left:411.405000px;}
.x5f{left:414.285000px;}
.x73{left:415.905000px;}
.x69{left:417.345000px;}
.x95{left:419.685000px;}
.x86{left:425.445000px;}
.x7a{left:428.145000px;}
.x96{left:431.565000px;}
.x9f{left:436.965000px;}
.x8c{left:440.205000px;}
.x91{left:441.465000px;}
.x9b{left:447.405000px;}
.x7d{left:448.485000px;}
.x3a{left:453.390000px;}
.x3{left:454.959000px;}
.x1a{left:490.469989px;}
.x6f{left:503.970000px;}
.x45{left:516.390000px;}
.x75{left:517.650000px;}
.x3b{left:518.910000px;}
.x4d{left:520.350000px;}
.x56{left:523.050000px;}
.x83{left:524.490000px;}
.x66{left:526.470000px;}
.x74{left:528.990000px;}
.x6a{left:530.790000px;}
.x60{left:532.230000px;}
.x7b{left:536.370000px;}
.x8d{left:537.990000px;}
.x97{left:544.650000px;}
.x92{left:548.790000px;}
.x7e{left:550.950000px;}
.x81{left:555.270000px;}
.xb{left:581.904000px;}
.xe{left:624.059989px;}
@media print{
.vc{vertical-align:-73.600000pt;}
.vb{vertical-align:-69.120000pt;}
.v1{vertical-align:-54.400000pt;}
.v5{vertical-align:-16.420923pt;}
.v9{vertical-align:-10.022635pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v3{vertical-align:5.120000pt;}
.v7{vertical-align:10.240000pt;}
.v8{vertical-align:15.360000pt;}
.va{vertical-align:21.120000pt;}
.v4{vertical-align:26.388523pt;}
.ls2d{letter-spacing:-0.912000pt;}
.ls38{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.504533pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls2b{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls21{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.008960pt;}
.ls1{letter-spacing:0.032000pt;}
.ls1b{letter-spacing:0.042240pt;}
.ls25{letter-spacing:0.047360pt;}
.ls2e{letter-spacing:0.048640pt;}
.ls14{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.097067pt;}
.ls18{letter-spacing:0.110080pt;}
.lsb{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.232960pt;}
.ls2f{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.239360pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls26{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.426667pt;}
.ls33{letter-spacing:1.440000pt;}
.ls16{letter-spacing:1.536000pt;}
.ls15{letter-spacing:1.792000pt;}
.ls36{letter-spacing:2.720000pt;}
.ls3{letter-spacing:12.480000pt;}
.ls12{letter-spacing:40.384000pt;}
.ls39{letter-spacing:51.360000pt;}
.ls30{letter-spacing:53.280000pt;}
.ls2{letter-spacing:61.349120pt;}
.ls13{letter-spacing:65.437227pt;}
.ls23{letter-spacing:79.360000pt;}
.ls19{letter-spacing:137.032092pt;}
.ls1a{letter-spacing:267.708228pt;}
.lsc{letter-spacing:341.798035pt;}
.ls10{letter-spacing:376.902856pt;}
.lsf{letter-spacing:417.552614pt;}
.ls20{letter-spacing:739.254445pt;}
.ls1f{letter-spacing:883.927901pt;}
.ls1c{letter-spacing:918.816320pt;}
.ws3{word-spacing:-24.000000pt;}
.ws1a{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws26{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws28{word-spacing:-14.953067pt;}
.ws21{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.448533pt;}
.ws24{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.327360pt;}
.ws22{word-spacing:-13.280000pt;}
.ws23{word-spacing:-13.232640pt;}
.ws2a{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws2b{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws29{word-spacing:-11.680000pt;}
.ws2c{word-spacing:-11.168000pt;}
.ws1{word-spacing:-10.832000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws20{word-spacing:-9.200533pt;}
.ws11{word-spacing:-0.036592pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:13.104777pt;}
.ws17{word-spacing:23.024304pt;}
.wsd{word-spacing:25.064949pt;}
.ws10{word-spacing:28.309682pt;}
.ws1d{word-spacing:75.131987pt;}
.ws1b{word-spacing:90.972686pt;}
.ws15{word-spacing:92.626735pt;}
.wsc{word-spacing:92.753969pt;}
.ws1c{word-spacing:103.530736pt;}
.ws16{word-spacing:109.485309pt;}
.wse{word-spacing:109.739778pt;}
.ws1e{word-spacing:151.291204pt;}
.ws14{word-spacing:158.858794pt;}
.wsf{word-spacing:173.516473pt;}
.ws12{word-spacing:227.971170pt;}
.ws19{word-spacing:247.662004pt;}
.ws1f{word-spacing:327.537532pt;}
.ws18{word-spacing:396.702437pt;}
._2a{margin-left:-535.013782pt;}
._2f{margin-left:-12.800000pt;}
._11{margin-left:-4.968107pt;}
._d{margin-left:-3.922773pt;}
._9{margin-left:-2.821333pt;}
._c{margin-left:-1.898667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.274667pt;}
._2{width:2.696960pt;}
._5{width:3.900373pt;}
._1a{width:4.792320pt;}
._8{width:5.685333pt;}
._7{width:6.816000pt;}
._b{width:7.856000pt;}
._a{width:8.944000pt;}
._19{width:10.127360pt;}
._6{width:11.088000pt;}
._3{width:12.000000pt;}
._4{width:13.056000pt;}
._50{width:14.080000pt;}
._10{width:15.720960pt;}
._e{width:16.663040pt;}
._f{width:17.972907pt;}
._13{width:19.188053pt;}
._12{width:20.313600pt;}
._4b{width:21.446613pt;}
._1b{width:22.392320pt;}
._17{width:23.552000pt;}
._18{width:24.494080pt;}
._15{width:26.024960pt;}
._14{width:27.769173pt;}
._4a{width:28.999893pt;}
._49{width:29.925547pt;}
._46{width:33.267200pt;}
._48{width:34.324480pt;}
._47{width:35.343573pt;}
._4d{width:39.155200pt;}
._1c{width:42.693973pt;}
._52{width:51.216000pt;}
._51{width:52.272000pt;}
._4f{width:53.328000pt;}
._4e{width:54.432000pt;}
._37{width:63.108325pt;}
._38{width:67.943237pt;}
._2d{width:76.679553pt;}
._34{width:80.752880pt;}
._44{width:81.920000pt;}
._2c{width:84.518189pt;}
._27{width:86.010539pt;}
._45{width:100.965333pt;}
._3e{width:105.934293pt;}
._3b{width:108.800000pt;}
._21{width:126.978592pt;}
._3c{width:135.335040pt;}
._29{width:152.320000pt;}
._4c{width:160.000000pt;}
._1f{width:168.802510pt;}
._1d{width:176.106667pt;}
._3d{width:181.386667pt;}
._25{width:194.796059pt;}
._42{width:196.395452pt;}
._39{width:200.076291pt;}
._31{width:204.524300pt;}
._2e{width:207.344547pt;}
._3a{width:224.696172pt;}
._2b{width:235.838554pt;}
._3f{width:239.063822pt;}
._30{width:271.588407pt;}
._23{width:275.017427pt;}
._28{width:283.096819pt;}
._32{width:324.193571pt;}
._24{width:332.405494pt;}
._33{width:337.489579pt;}
._40{width:340.415973pt;}
._1e{width:342.566557pt;}
._22{width:369.043741pt;}
._20{width:392.108421pt;}
._26{width:428.971203pt;}
._35{width:441.019470pt;}
._36{width:479.982752pt;}
._41{width:540.439998pt;}
._43{width:570.354349pt;}
._16{width:753.418667pt;}
.fse{font-size:36.592483pt;}
.fsa{font-size:36.752125pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:38.782672pt;}
.fs6{font-size:42.880000pt;}
.fs11{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs14{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fsf{font-size:63.214801pt;}
.fsb{font-size:63.617263pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:67.098404pt;}
.fs10{font-size:67.126251pt;}
.fs13{font-size:67.132103pt;}
.fs2{font-size:90.666667pt;}
.fsd{font-size:95.428533pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:2.880000pt;}
.y22e{bottom:2.906667pt;}
.y28{bottom:3.200000pt;}
.y1f2{bottom:3.360000pt;}
.y2f{bottom:3.520000pt;}
.y107{bottom:4.000000pt;}
.yb1{bottom:4.073702pt;}
.y105{bottom:4.160000pt;}
.yac{bottom:4.218279pt;}
.yba{bottom:4.218315pt;}
.ybd{bottom:4.218317pt;}
.y191{bottom:4.320000pt;}
.y112{bottom:4.480000pt;}
.y125{bottom:4.640000pt;}
.y19c{bottom:4.960000pt;}
.y198{bottom:5.120000pt;}
.y146{bottom:5.600000pt;}
.y1f5{bottom:5.760000pt;}
.y140{bottom:5.920000pt;}
.y2a9{bottom:6.720000pt;}
.yab{bottom:6.723938pt;}
.yb9{bottom:6.723982pt;}
.ybc{bottom:6.724003pt;}
.y2a7{bottom:6.880000pt;}
.y36{bottom:7.040000pt;}
.yae{bottom:7.167960pt;}
.yc1{bottom:7.168001pt;}
.y15d{bottom:7.200000pt;}
.y206{bottom:7.680000pt;}
.y225{bottom:7.840000pt;}
.y223{bottom:8.000000pt;}
.y1db{bottom:8.160000pt;}
.yb2{bottom:8.178998pt;}
.yb3{bottom:8.179002pt;}
.y1df{bottom:8.186667pt;}
.y1d9{bottom:8.320000pt;}
.y2c{bottom:8.640000pt;}
.y153{bottom:8.800000pt;}
.y14c{bottom:8.960000pt;}
.y151{bottom:9.000000pt;}
.y255{bottom:9.120000pt;}
.y177{bottom:9.280000pt;}
.y253{bottom:9.306667pt;}
.y175{bottom:9.440000pt;}
.y17b{bottom:9.480000pt;}
.y284{bottom:9.600000pt;}
.yad{bottom:10.815410pt;}
.ybf{bottom:10.815472pt;}
.yc0{bottom:10.815474pt;}
.ybe{bottom:10.815482pt;}
.y26a{bottom:11.520000pt;}
.y269{bottom:11.680000pt;}
.y1e5{bottom:12.320000pt;}
.y1e7{bottom:12.480000pt;}
.y34{bottom:16.832000pt;}
.y27{bottom:17.920000pt;}
.yd4{bottom:17.952229pt;}
.ydf{bottom:18.240000pt;}
.yaa{bottom:20.869714pt;}
.yb8{bottom:20.869750pt;}
.ybb{bottom:20.869751pt;}
.y2b{bottom:23.360000pt;}
.y33{bottom:29.152000pt;}
.y26{bottom:32.480000pt;}
.y2a{bottom:34.720000pt;}
.y32{bottom:41.472000pt;}
.y25{bottom:47.226667pt;}
.y37{bottom:51.360000pt;}
.y31{bottom:53.626667pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:61.786667pt;}
.y35{bottom:66.240000pt;}
.y4{bottom:86.333337pt;}
.y30{bottom:86.880000pt;}
.ya9{bottom:98.786667pt;}
.y21f{bottom:99.712000pt;}
.y250{bottom:100.192000pt;}
.y1a6{bottom:102.112000pt;}
.y2e3{bottom:104.192000pt;}
.y1ed{bottom:105.632000pt;}
.y13a{bottom:105.792000pt;}
.y1d3{bottom:107.552000pt;}
.y2bf{bottom:108.832000pt;}
.ya8{bottom:109.472000pt;}
.y30d{bottom:109.952000pt;}
.y202{bottom:110.112000pt;}
.y159{bottom:110.752000pt;}
.y11f{bottom:110.912000pt;}
.y2a3{bottom:111.712000pt;}
.y192{bottom:112.032000pt;}
.y263{bottom:112.512000pt;}
.y2c9{bottom:113.152000pt;}
.y80{bottom:114.432000pt;}
.y171{bottom:114.752000pt;}
.y23e{bottom:115.392000pt;}
.y100{bottom:116.192000pt;}
.ya1{bottom:117.632000pt;}
.y278{bottom:117.792000pt;}
.y2e2{bottom:117.952000pt;}
.yda{bottom:119.392000pt;}
.y21e{bottom:121.632000pt;}
.y24f{bottom:122.112000pt;}
.y30c{bottom:123.712000pt;}
.y22{bottom:123.790666pt;}
.y190{bottom:123.872000pt;}
.y1a5{bottom:124.032000pt;}
.y2c8{bottom:124.992000pt;}
.y139{bottom:127.712000pt;}
.y1d2{bottom:129.472000pt;}
.y2be{bottom:130.752000pt;}
.y170{bottom:131.712000pt;}
.y2e1{bottom:131.872000pt;}
.y201{bottom:132.032000pt;}
.y158{bottom:132.672000pt;}
.y11e{bottom:132.832000pt;}
.y2a2{bottom:133.626667pt;}
.y262{bottom:134.426667pt;}
.y7f{bottom:136.346667pt;}
.y23d{bottom:137.306667pt;}
.y30b{bottom:137.466667pt;}
.ya7{bottom:137.626667pt;}
.yff{bottom:138.106667pt;}
.ya0{bottom:139.546667pt;}
.ydb{bottom:139.706667pt;}
.yd9{bottom:141.306667pt;}
.y277{bottom:141.786667pt;}
.y21d{bottom:143.546667pt;}
.y2c7{bottom:143.866667pt;}
.y24e{bottom:144.026667pt;}
.y1ec{bottom:144.826667pt;}
.y2e0{bottom:145.626667pt;}
.y1a4{bottom:145.946667pt;}
.y138{bottom:149.626667pt;}
.y2e{bottom:151.226667pt;}
.y1d1{bottom:151.386667pt;}
.y2bd{bottom:152.666667pt;}
.y16f{bottom:153.466667pt;}
.y200{bottom:153.946667pt;}
.y157{bottom:154.586667pt;}
.y11d{bottom:154.746667pt;}
.y2a1{bottom:155.546667pt;}
.y261{bottom:156.346667pt;}
.y7e{bottom:158.266667pt;}
.yd8{bottom:158.586667pt;}
.y23c{bottom:159.226667pt;}
.y2df{bottom:159.386667pt;}
.ya6{bottom:159.546667pt;}
.yfe{bottom:160.026667pt;}
.y9f{bottom:161.466667pt;}
.y9e{bottom:161.626667pt;}
.y1eb{bottom:162.426667pt;}
.y2c6{bottom:162.586667pt;}
.y30a{bottom:165.146667pt;}
.y21c{bottom:165.466667pt;}
.y276{bottom:165.626667pt;}
.y24d{bottom:165.946667pt;}
.y1a3{bottom:167.866667pt;}
.y137{bottom:171.546667pt;}
.y2de{bottom:173.146667pt;}
.y1d0{bottom:173.306667pt;}
.y1ea{bottom:174.266667pt;}
.y2bc{bottom:174.586667pt;}
.y19{bottom:175.052000pt;}
.y16e{bottom:175.386667pt;}
.y18f{bottom:175.866667pt;}
.y156{bottom:176.506667pt;}
.y11c{bottom:176.666667pt;}
.y2a0{bottom:177.466667pt;}
.y260{bottom:178.266667pt;}
.y309{bottom:178.906667pt;}
.y5d{bottom:179.546667pt;}
.y7d{bottom:180.186667pt;}
.y23b{bottom:181.146667pt;}
.ya5{bottom:181.466667pt;}
.yd7{bottom:181.626667pt;}
.yfd{bottom:181.946667pt;}
.y9d{bottom:183.386667pt;}
.ydc{bottom:183.546667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y2dd{bottom:187.066667pt;}
.y21b{bottom:187.386667pt;}
.y24c{bottom:187.866667pt;}
.y275{bottom:189.626667pt;}
.y1a2{bottom:189.786667pt;}
.y308{bottom:192.666667pt;}
.y18e{bottom:193.306667pt;}
.y5c{bottom:193.466667pt;}
.y1cf{bottom:195.226667pt;}
.y2bb{bottom:196.506667pt;}
.y16d{bottom:197.306667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1ff{bottom:197.786667pt;}
.y1b6{bottom:198.586667pt;}
.y11b{bottom:198.746667pt;}
.yd6{bottom:198.906667pt;}
.y29f{bottom:199.386667pt;}
.y1e9{bottom:199.706667pt;}
.y25f{bottom:200.186667pt;}
.y2dc{bottom:200.826667pt;}
.y7c{bottom:202.106667pt;}
.y23a{bottom:203.066667pt;}
.ya4{bottom:203.386667pt;}
.yfc{bottom:203.866667pt;}
.y9c{bottom:205.306667pt;}
.y307{bottom:206.586667pt;}
.y5b{bottom:207.226667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y21a{bottom:209.306667pt;}
.y24b{bottom:209.786667pt;}
.y18d{bottom:210.586667pt;}
.y1a1{bottom:211.706667pt;}
.y274{bottom:213.466667pt;}
.yd3{bottom:213.853333pt;}
.y2db{bottom:214.586667pt;}
.y136{bottom:215.386667pt;}
.y155{bottom:215.706667pt;}
.y1ce{bottom:217.146667pt;}
.y2ba{bottom:218.426667pt;}
.y2c5{bottom:219.066667pt;}
.y16c{bottom:219.226667pt;}
.y1fe{bottom:219.706667pt;}
.y306{bottom:220.346667pt;}
.y1b5{bottom:220.506667pt;}
.y11a{bottom:220.666667pt;}
.y5a{bottom:220.986667pt;}
.y29e{bottom:221.306667pt;}
.y25e{bottom:222.106667pt;}
.y7b{bottom:224.026667pt;}
.yd5{bottom:224.506667pt;}
.y239{bottom:224.986667pt;}
.ya3{bottom:225.306667pt;}
.yfb{bottom:225.786667pt;}
.y9b{bottom:227.226667pt;}
.y18c{bottom:227.866667pt;}
.y2da{bottom:228.346667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y219{bottom:231.226667pt;}
.y24a{bottom:231.706667pt;}
.y154{bottom:233.146667pt;}
.y305{bottom:234.106667pt;}
.y59{bottom:234.746667pt;}
.y135{bottom:237.306667pt;}
.y273{bottom:237.466667pt;}
.y2c4{bottom:237.786667pt;}
.y1cd{bottom:239.066667pt;}
.y2b9{bottom:240.346667pt;}
.y16b{bottom:241.146667pt;}
.y290{bottom:241.626667pt;}
.y1fd{bottom:241.786667pt;}
.y2d9{bottom:242.106667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1b4{bottom:242.426667pt;}
.y29d{bottom:243.226667pt;}
.y25d{bottom:244.026667pt;}
.y152{bottom:245.146667pt;}
.y18b{bottom:245.306667pt;}
.y7a{bottom:245.946667pt;}
.y238{bottom:246.906667pt;}
.yfa{bottom:247.706667pt;}
.y304{bottom:247.866667pt;}
.ya2{bottom:248.026667pt;}
.y58{bottom:248.666667pt;}
.y9a{bottom:249.146667pt;}
.y1e8{bottom:250.746667pt;}
.y1a0{bottom:250.906667pt;}
.yd2{bottom:252.506667pt;}
.y218{bottom:253.146667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y249{bottom:253.626667pt;}
.y2d8{bottom:256.026667pt;}
.y2c3{bottom:256.666667pt;}
.y134{bottom:259.226667pt;}
.y119{bottom:259.866667pt;}
.y1cc{bottom:260.986667pt;}
.y272{bottom:261.306667pt;}
.y303{bottom:261.786667pt;}
.y2b8{bottom:262.266667pt;}
.y57{bottom:262.426667pt;}
.y16a{bottom:263.066667pt;}
.y28f{bottom:263.546667pt;}
.y1fc{bottom:263.706667pt;}
.y1b3{bottom:264.346667pt;}
.y18a{bottom:264.986667pt;}
.y29c{bottom:265.146667pt;}
.y150{bottom:267.066667pt;}
.y79{bottom:267.866667pt;}
.y19f{bottom:268.346667pt;}
.yf9{bottom:269.626667pt;}
.yd1{bottom:269.786667pt;}
.y248{bottom:270.906667pt;}
.y99{bottom:271.066667pt;}
.y217{bottom:275.106667pt;}
.y2c2{bottom:275.426667pt;}
.y302{bottom:275.586667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y56{bottom:276.226667pt;}
.y1e6{bottom:276.386667pt;}
.y118{bottom:277.666667pt;}
.y19e{bottom:280.226667pt;}
.y133{bottom:281.186667pt;}
.y189{bottom:282.146667pt;}
.y1cb{bottom:282.946667pt;}
.y25c{bottom:283.266667pt;}
.y2d7{bottom:283.586667pt;}
.y2b7{bottom:284.226667pt;}
.y169{bottom:285.026667pt;}
.y271{bottom:285.346667pt;}
.y28e{bottom:285.506667pt;}
.y237{bottom:286.146667pt;}
.y1b2{bottom:286.306667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y29b{bottom:287.106667pt;}
.yd0{bottom:288.226667pt;}
.y247{bottom:288.386667pt;}
.y14f{bottom:289.186667pt;}
.y301{bottom:289.346667pt;}
.y78{bottom:289.826667pt;}
.y55{bottom:289.986667pt;}
.y117{bottom:290.786667pt;}
.yf8{bottom:291.586667pt;}
.y98{bottom:293.026667pt;}
.y2c1{bottom:296.706667pt;}
.y216{bottom:297.026667pt;}
.y2d6{bottom:297.346667pt;}
.y19d{bottom:298.466667pt;}
.y246{bottom:300.226667pt;}
.y25b{bottom:300.866667pt;}
.y1e4{bottom:301.986667pt;}
.y1fb{bottom:302.946667pt;}
.y132{bottom:303.106667pt;}
.y236{bottom:303.746667pt;}
.y54{bottom:303.906667pt;}
.y1ca{bottom:304.866667pt;}
.y188{bottom:305.186667pt;}
.y2b6{bottom:306.146667pt;}
.y168{bottom:306.946667pt;}
.y28d{bottom:307.426667pt;}
.y1b1{bottom:308.226667pt;}
.y116{bottom:308.386667pt;}
.y29a{bottom:309.026667pt;}
.y10{bottom:309.452000pt;}
.y14e{bottom:311.266667pt;}
.y77{bottom:311.746667pt;}
.y25a{bottom:312.706667pt;}
.y2c0{bottom:313.826667pt;}
.y97{bottom:314.946667pt;}
.y235{bottom:315.586667pt;}
.y19b{bottom:316.706667pt;}
.y300{bottom:317.026667pt;}
.y53{bottom:317.666667pt;}
.y215{bottom:318.946667pt;}
.y1fa{bottom:320.386667pt;}
.y245{bottom:321.506667pt;}
.y131{bottom:325.026667pt;}
.y115{bottom:325.986667pt;}
.y1c9{bottom:326.786667pt;}
.y187{bottom:327.106667pt;}
.y1e3{bottom:327.426667pt;}
.y270{bottom:327.586667pt;}
.y2b5{bottom:328.066667pt;}
.y167{bottom:328.866667pt;}
.y28c{bottom:329.346667pt;}
.yf7{bottom:330.786667pt;}
.y52{bottom:331.426667pt;}
.y1f9{bottom:332.226667pt;}
.y234{bottom:332.866667pt;}
.y14d{bottom:333.346667pt;}
.y76{bottom:333.666667pt;}
.y19a{bottom:334.786667pt;}
.y259{bottom:334.946667pt;}
.y96{bottom:336.866667pt;}
.y2d5{bottom:338.786667pt;}
.y214{bottom:340.866667pt;}
.y244{bottom:342.786667pt;}
.y114{bottom:343.586667pt;}
.yf{bottom:343.809333pt;}
.y2ff{bottom:344.546667pt;}
.y51{bottom:345.186667pt;}
.y28b{bottom:345.666667pt;}
.y130{bottom:346.946667pt;}
.y1b0{bottom:347.426667pt;}
.y299{bottom:348.226667pt;}
.yf6{bottom:348.546667pt;}
.y1c8{bottom:348.706667pt;}
.y186{bottom:349.026667pt;}
.y2b4{bottom:349.986667pt;}
.y233{bottom:350.146667pt;}
.y166{bottom:350.786667pt;}
.y1f8{bottom:352.226667pt;}
.y2d4{bottom:352.546667pt;}
.y199{bottom:353.026667pt;}
.y14b{bottom:355.426667pt;}
.y75{bottom:355.586667pt;}
.y26f{bottom:357.026667pt;}
.y258{bottom:357.346667pt;}
.y28a{bottom:357.506667pt;}
.y2fe{bottom:358.306667pt;}
.y95{bottom:358.786667pt;}
.y50{bottom:358.946667pt;}
.y113{bottom:361.186667pt;}
.yf5{bottom:361.666667pt;}
.ye{bottom:362.706666pt;}
.y213{bottom:362.786667pt;}
.y243{bottom:364.066667pt;}
.y1af{bottom:364.866667pt;}
.y298{bottom:365.986667pt;}
.y2d3{bottom:366.466667pt;}
.y232{bottom:367.586667pt;}
.y12f{bottom:368.866667pt;}
.y1c7{bottom:370.626667pt;}
.y185{bottom:371.106667pt;}
.y197{bottom:371.266667pt;}
.y2b3{bottom:371.906667pt;}
.y1f7{bottom:372.066667pt;}
.y165{bottom:372.706667pt;}
.y4f{bottom:372.866667pt;}
.y1ae{bottom:376.866667pt;}
.y74{bottom:377.506667pt;}
.yf4{bottom:377.666667pt;}
.y111{bottom:378.786667pt;}
.y297{bottom:379.106667pt;}
.y257{bottom:379.746667pt;}
.y289{bottom:380.226667pt;}
.y94{bottom:380.706667pt;}
.y26e{bottom:381.666667pt;}
.y212{bottom:384.706667pt;}
.y231{bottom:384.866667pt;}
.y242{bottom:385.346667pt;}
.y2fd{bottom:385.986667pt;}
.y4e{bottom:386.626667pt;}
.y196{bottom:389.506667pt;}
.y12e{bottom:390.786667pt;}
.y1f6{bottom:392.066667pt;}
.y1c6{bottom:392.546667pt;}
.y184{bottom:393.026667pt;}
.yf3{bottom:393.666667pt;}
.y2b2{bottom:393.826667pt;}
.y2d2{bottom:393.986667pt;}
.y164{bottom:394.626667pt;}
.ycf{bottom:396.226667pt;}
.y110{bottom:396.386667pt;}
.y73{bottom:399.426667pt;}
.y14a{bottom:399.586667pt;}
.y2fc{bottom:399.746667pt;}
.y4d{bottom:400.386667pt;}
.y296{bottom:401.346667pt;}
.y256{bottom:401.986667pt;}
.y230{bottom:402.146667pt;}
.y1e2{bottom:402.466667pt;}
.y93{bottom:402.626667pt;}
.y288{bottom:402.946667pt;}
.y26d{bottom:406.466667pt;}
.y211{bottom:406.626667pt;}
.y195{bottom:407.586667pt;}
.y2d1{bottom:407.746667pt;}
.yf2{bottom:409.666667pt;}
.y1f4{bottom:411.906667pt;}
.y12d{bottom:412.706667pt;}
.y2fb{bottom:413.506667pt;}
.y10f{bottom:413.986667pt;}
.y4c{bottom:414.146667pt;}
.y1c5{bottom:414.466667pt;}
.y183{bottom:414.946667pt;}
.y2b1{bottom:415.746667pt;}
.yce{bottom:418.146667pt;}
.y1e1{bottom:418.786667pt;}
.y22f{bottom:419.586667pt;}
.y72{bottom:421.346667pt;}
.y2d0{bottom:421.666667pt;}
.y1ad{bottom:421.986667pt;}
.y295{bottom:423.586667pt;}
.y149{bottom:423.906667pt;}
.y254{bottom:424.386667pt;}
.y92{bottom:424.546667pt;}
.y287{bottom:425.506667pt;}
.yf1{bottom:425.666667pt;}
.y2fa{bottom:427.266667pt;}
.y241{bottom:427.906667pt;}
.y4b{bottom:428.066667pt;}
.y194{bottom:428.386667pt;}
.y210{bottom:428.546667pt;}
.y1e0{bottom:430.786667pt;}
.yd{bottom:430.990669pt;}
.y26c{bottom:431.106667pt;}
.y1f3{bottom:431.906667pt;}
.y163{bottom:433.826667pt;}
.y10e{bottom:433.986667pt;}
.y2cf{bottom:435.426667pt;}
.y1c4{bottom:436.386667pt;}
.y182{bottom:436.866667pt;}
.y2b0{bottom:437.666667pt;}
.ycd{bottom:440.066667pt;}
.y148{bottom:441.026667pt;}
.y2f9{bottom:441.186667pt;}
.yf0{bottom:441.666667pt;}
.y4a{bottom:441.826667pt;}
.y71{bottom:443.266667pt;}
.y1ac{bottom:444.546667pt;}
.y193{bottom:445.506667pt;}
.y294{bottom:445.986667pt;}
.y91{bottom:446.626667pt;}
.yc{bottom:446.990669pt;}
.y286{bottom:448.226667pt;}
.y240{bottom:449.186667pt;}
.y20f{bottom:450.466667pt;}
.y10d{bottom:451.106667pt;}
.y162{bottom:451.266667pt;}
.y1f1{bottom:451.746667pt;}
.y12c{bottom:451.906667pt;}
.y1de{bottom:452.066667pt;}
.y22d{bottom:454.146667pt;}
.y2f8{bottom:454.946667pt;}
.y49{bottom:455.613333pt;}
.y26b{bottom:455.933333pt;}
.yef{bottom:457.693333pt;}
.y1c3{bottom:458.333333pt;}
.y147{bottom:458.813333pt;}
.y2af{bottom:459.773333pt;}
.ycc{bottom:462.013333pt;}
.y2ce{bottom:462.973333pt;}
.yb{bottom:462.990669pt;}
.y161{bottom:463.133333pt;}
.y70{bottom:465.213333pt;}
.y1ab{bottom:467.293333pt;}
.y293{bottom:468.253333pt;}
.y90{bottom:468.573333pt;}
.y2f7{bottom:468.733333pt;}
.y10c{bottom:468.893333pt;}
.y252{bottom:469.053333pt;}
.y48{bottom:469.373333pt;}
.y12b{bottom:469.693333pt;}
.y23f{bottom:470.493333pt;}
.y285{bottom:470.973333pt;}
.y1f0{bottom:471.773333pt;}
.y145{bottom:471.933333pt;}
.y20e{bottom:472.413333pt;}
.y1dd{bottom:473.373333pt;}
.yee{bottom:473.693333pt;}
.y22c{bottom:474.173333pt;}
.y2cd{bottom:476.893333pt;}
.y2ae{bottom:477.373333pt;}
.ya{bottom:478.990666pt;}
.ycb{bottom:479.293333pt;}
.y181{bottom:480.733333pt;}
.y10b{bottom:482.013333pt;}
.y2f6{bottom:482.493333pt;}
.y12a{bottom:482.813333pt;}
.y47{bottom:483.293333pt;}
.y160{bottom:483.453333pt;}
.y6f{bottom:487.133333pt;}
.yed{bottom:489.693333pt;}
.y1aa{bottom:489.853333pt;}
.y8f{bottom:490.493333pt;}
.y144{bottom:490.653333pt;}
.y22b{bottom:491.293333pt;}
.y283{bottom:493.533333pt;}
.y1ef{bottom:494.173333pt;}
.y1dc{bottom:494.813333pt;}
.y9{bottom:494.990666pt;}
.y2f5{bottom:496.413333pt;}
.y46{bottom:497.053333pt;}
.y1c2{bottom:497.533333pt;}
.y10a{bottom:499.133333pt;}
.y129{bottom:500.573333pt;}
.yca{bottom:502.333333pt;}
.y180{bottom:502.653333pt;}
.y15f{bottom:503.613333pt;}
.y2cc{bottom:505.053333pt;}
.y268{bottom:505.373333pt;}
.y2ad{bottom:506.653333pt;}
.y22a{bottom:508.733333pt;}
.y6e{bottom:509.053333pt;}
.y143{bottom:509.693333pt;}
.y2f4{bottom:510.173333pt;}
.y45{bottom:510.813333pt;}
.y1ee{bottom:511.293333pt;}
.y20d{bottom:511.613333pt;}
.y8e{bottom:512.413333pt;}
.y292{bottom:512.733333pt;}
.y1c1{bottom:514.973333pt;}
.y1da{bottom:516.093333pt;}
.y282{bottom:516.253333pt;}
.y109{bottom:516.413333pt;}
.y128{bottom:518.333333pt;}
.y229{bottom:520.573333pt;}
.yec{bottom:521.053333pt;}
.y2cb{bottom:522.013333pt;}
.y15e{bottom:523.773333pt;}
.y2f3{bottom:523.933333pt;}
.yc9{bottom:524.253333pt;}
.y44{bottom:524.573333pt;}
.y2ac{bottom:526.653333pt;}
.y1c0{bottom:526.973333pt;}
.y142{bottom:528.733333pt;}
.y20c{bottom:529.213333pt;}
.y267{bottom:530.173333pt;}
.y6d{bottom:531.133333pt;}
.y251{bottom:533.213333pt;}
.y108{bottom:533.533333pt;}
.y8d{bottom:534.333333pt;}
.y1a9{bottom:534.973333pt;}
.y127{bottom:536.093333pt;}
.y1d8{bottom:537.373333pt;}
.y2f2{bottom:537.693333pt;}
.y43{bottom:538.493333pt;}
.y281{bottom:538.973333pt;}
.y20b{bottom:541.053333pt;}
.y228{bottom:541.693333pt;}
.y15c{bottom:543.933333pt;}
.yc8{bottom:546.173333pt;}
.y17f{bottom:546.493333pt;}
.y1bf{bottom:547.133333pt;}
.y141{bottom:547.453333pt;}
.y106{bottom:550.813333pt;}
.y2f1{bottom:551.613333pt;}
.y42{bottom:552.253333pt;}
.y6c{bottom:553.053333pt;}
.y126{bottom:553.853333pt;}
.y266{bottom:554.813333pt;}
.yeb{bottom:555.613333pt;}
.y8c{bottom:556.253333pt;}
.y2ca{bottom:556.573333pt;}
.y291{bottom:557.213333pt;}
.y1d7{bottom:558.813333pt;}
.y1a8{bottom:559.933333pt;}
.yc7{bottom:560.093333pt;}
.y20a{bottom:561.853333pt;}
.y227{bottom:562.653333pt;}
.yc5{bottom:563.933333pt;}
.y15b{bottom:564.253333pt;}
.y2f0{bottom:565.373333pt;}
.y41{bottom:566.013333pt;}
.y2ab{bottom:566.333333pt;}
.y13f{bottom:566.493333pt;}
.y1be{bottom:567.453333pt;}
.y104{bottom:567.933333pt;}
.yc6{bottom:570.493333pt;}
.y124{bottom:571.453333pt;}
.yea{bottom:572.733333pt;}
.y8{bottom:573.786667pt;}
.y6b{bottom:574.973333pt;}
.y1a7{bottom:577.053333pt;}
.y8b{bottom:578.173333pt;}
.y2ef{bottom:579.133333pt;}
.y40{bottom:579.773333pt;}
.y1d6{bottom:580.093333pt;}
.y280{bottom:581.053333pt;}
.y265{bottom:581.853333pt;}
.y209{bottom:582.653333pt;}
.y226{bottom:583.773333pt;}
.y15a{bottom:584.413333pt;}
.y103{bottom:585.213333pt;}
.y13e{bottom:585.533333pt;}
.y17e{bottom:585.693333pt;}
.y2aa{bottom:586.173333pt;}
.yc4{bottom:587.293333pt;}
.y1bd{bottom:587.773333pt;}
.y123{bottom:589.213333pt;}
.ye9{bottom:590.493333pt;}
.y7{bottom:592.685334pt;}
.y2ee{bottom:592.893333pt;}
.y3f{bottom:593.693333pt;}
.y6a{bottom:596.893333pt;}
.y264{bottom:598.973333pt;}
.y8a{bottom:600.093333pt;}
.y102{bottom:602.333333pt;}
.y17d{bottom:603.133333pt;}
.y208{bottom:603.453333pt;}
.ye8{bottom:603.613333pt;}
.y1d5{bottom:603.773333pt;}
.y13d{bottom:604.573333pt;}
.y224{bottom:604.893333pt;}
.y2a8{bottom:606.013333pt;}
.y2ed{bottom:606.813333pt;}
.y122{bottom:606.973333pt;}
.y3e{bottom:607.453333pt;}
.y1bc{bottom:607.933333pt;}
.yc3{bottom:609.213333pt;}
.y17c{bottom:614.973333pt;}
.y69{bottom:618.813333pt;}
.ye7{bottom:619.613333pt;}
.y2ec{bottom:620.573333pt;}
.y1d4{bottom:620.893333pt;}
.y3d{bottom:621.213333pt;}
.y89{bottom:622.013333pt;}
.y101{bottom:622.173333pt;}
.y207{bottom:624.253333pt;}
.y13c{bottom:625.693333pt;}
.y222{bottom:625.853333pt;}
.y121{bottom:627.133333pt;}
.y1bb{bottom:628.253333pt;}
.yb7{bottom:628.386594pt;}
.y27f{bottom:628.893333pt;}
.y2eb{bottom:634.333333pt;}
.y3c{bottom:634.973333pt;}
.ye6{bottom:635.613333pt;}
.y17a{bottom:637.533333pt;}
.yc2{bottom:639.173333pt;}
.y68{bottom:640.773333pt;}
.y13b{bottom:642.853333pt;}
.y88{bottom:643.973333pt;}
.y120{bottom:644.133333pt;}
.y205{bottom:645.093333pt;}
.y6{bottom:645.598667pt;}
.y2a6{bottom:645.893333pt;}
.y221{bottom:647.013333pt;}
.y2ea{bottom:648.133333pt;}
.y1ba{bottom:648.613333pt;}
.y3b{bottom:649.573333pt;}
.ye5{bottom:651.653333pt;}
.y27e{bottom:652.773333pt;}
.y179{bottom:660.133333pt;}
.y2e9{bottom:662.053333pt;}
.y67{bottom:662.693333pt;}
.y2a5{bottom:665.733333pt;}
.y87{bottom:665.893333pt;}
.y3a{bottom:666.373333pt;}
.yb6{bottom:667.333333pt;}
.ye4{bottom:667.653333pt;}
.y220{bottom:668.133333pt;}
.y1b9{bottom:668.773333pt;}
.y3{bottom:668.977329pt;}
.y2e8{bottom:675.813333pt;}
.y27d{bottom:676.773333pt;}
.y178{bottom:682.693333pt;}
.ye3{bottom:683.653333pt;}
.y66{bottom:684.613333pt;}
.y204{bottom:686.693333pt;}
.y86{bottom:687.813333pt;}
.y2a4{bottom:687.973333pt;}
.yb5{bottom:689.253333pt;}
.y2e7{bottom:689.573333pt;}
.y1b8{bottom:691.493333pt;}
.y39{bottom:693.413333pt;}
.ye2{bottom:699.653333pt;}
.y27c{bottom:700.613333pt;}
.yb0{bottom:702.986594pt;}
.y2e6{bottom:703.333333pt;}
.y176{bottom:705.253333pt;}
.y65{bottom:706.533333pt;}
.y1b7{bottom:708.613333pt;}
.y85{bottom:709.733333pt;}
.y203{bottom:709.893333pt;}
.yb4{bottom:711.013333pt;}
.ye1{bottom:715.653333pt;}
.y2e5{bottom:717.253333pt;}
.y27b{bottom:724.613333pt;}
.y174{bottom:727.653333pt;}
.y64{bottom:728.453333pt;}
.y38{bottom:729.413333pt;}
.yaf{bottom:730.533333pt;}
.y2e4{bottom:731.013333pt;}
.y84{bottom:731.653333pt;}
.y63{bottom:744.773333pt;}
.y27a{bottom:748.453333pt;}
.y173{bottom:750.213333pt;}
.y83{bottom:753.573333pt;}
.y2d{bottom:756.133333pt;}
.y62{bottom:758.533333pt;}
.yde{bottom:763.013333pt;}
.y29{bottom:771.333333pt;}
.y61{bottom:772.453333pt;}
.y172{bottom:772.773333pt;}
.y82{bottom:775.493333pt;}
.y2{bottom:781.661334pt;}
.y23{bottom:785.893333pt;}
.y60{bottom:786.213333pt;}
.y279{bottom:796.293333pt;}
.y81{bottom:797.413333pt;}
.ydd{bottom:797.573333pt;}
.y5f{bottom:799.973333pt;}
.y5e{bottom:844.320000pt;}
.y1{bottom:859.312000pt;}
.hd{height:14.560000pt;}
.h34{height:15.360000pt;}
.h35{height:15.392000pt;}
.h37{height:15.840000pt;}
.h3b{height:16.000000pt;}
.h5d{height:16.032000pt;}
.h3d{height:16.320000pt;}
.h38{height:16.480000pt;}
.h39{height:16.640000pt;}
.h3c{height:16.800000pt;}
.h3f{height:16.960000pt;}
.h3e{height:17.120000pt;}
.h4c{height:17.440000pt;}
.h4d{height:17.600000pt;}
.h41{height:18.080000pt;}
.h68{height:18.112000pt;}
.h66{height:18.240000pt;}
.hf{height:18.400000pt;}
.h46{height:18.720000pt;}
.h57{height:19.200000pt;}
.h67{height:19.232000pt;}
.h58{height:19.360000pt;}
.h56{height:19.392000pt;}
.h47{height:19.520000pt;}
.h4f{height:19.552000pt;}
.h50{height:19.680000pt;}
.h59{height:20.160000pt;}
.h5a{height:20.192000pt;}
.h42{height:20.320000pt;}
.h5c{height:20.480000pt;}
.h5b{height:20.512000pt;}
.h14{height:20.640000pt;}
.h51{height:20.672000pt;}
.h48{height:20.800000pt;}
.h4e{height:20.960000pt;}
.h45{height:21.280000pt;}
.h43{height:21.440000pt;}
.h44{height:21.472000pt;}
.h5e{height:21.600000pt;}
.h65{height:21.632000pt;}
.h4a{height:21.760000pt;}
.h5f{height:21.792000pt;}
.h49{height:21.920000pt;}
.h4b{height:21.952000pt;}
.h63{height:22.080000pt;}
.h64{height:22.112000pt;}
.h60{height:23.040000pt;}
.h52{height:23.840000pt;}
.h61{height:24.000000pt;}
.h25{height:24.000571pt;}
.h62{height:24.160000pt;}
.h54{height:24.800000pt;}
.h53{height:24.960000pt;}
.h55{height:24.992000pt;}
.h22{height:27.223132pt;}
.h7{height:28.560000pt;}
.h2f{height:28.727204pt;}
.h31{height:30.560000pt;}
.h33{height:30.720000pt;}
.h1c{height:30.733213pt;}
.h29{height:30.733285pt;}
.h26{height:35.913521pt;}
.h1f{height:36.052255pt;}
.h1d{height:36.070201pt;}
.h2b{height:38.295625pt;}
.h6a{height:40.358750pt;}
.h6{height:40.800000pt;}
.h1b{height:41.112500pt;}
.h12{height:42.084375pt;}
.h13{height:42.649687pt;}
.h3{height:42.840000pt;}
.h28{height:46.824635pt;}
.h1a{height:47.085938pt;}
.h19{height:47.109375pt;}
.h23{height:47.122748pt;}
.hb{height:47.742188pt;}
.h18{height:48.375000pt;}
.h2{height:48.960000pt;}
.h21{height:49.701308pt;}
.h2a{height:49.721935pt;}
.h30{height:49.726270pt;}
.h3a{height:52.108438pt;}
.h32{height:52.134375pt;}
.h36{height:53.535000pt;}
.h69{height:57.758750pt;}
.h15{height:57.787500pt;}
.h17{height:59.340000pt;}
.h27{height:62.011003pt;}
.h20{height:62.405801pt;}
.h2d{height:62.436864pt;}
.h10{height:62.812500pt;}
.he{height:63.656250pt;}
.h11{height:63.712000pt;}
.h40{height:64.500000pt;}
.h5{height:69.360000pt;}
.h24{height:70.686077pt;}
.ha{height:73.312000pt;}
.h2c{height:78.172500pt;}
.hc{height:87.872000pt;}
.h2e{height:88.794324pt;}
.h1e{height:88.825387pt;}
.h16{height:94.218750pt;}
.h4{height:105.826671pt;}
.h8{height:907.200000pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w13{width:50.432000pt;}
.we{width:50.560000pt;}
.w12{width:51.680000pt;}
.w16{width:52.832000pt;}
.w15{width:55.200000pt;}
.wf{width:55.232000pt;}
.w10{width:56.960000pt;}
.w14{width:57.600000pt;}
.w11{width:61.952000pt;}
.w43{width:67.680000pt;}
.w1f{width:70.720000pt;}
.w4f{width:71.680000pt;}
.w19{width:75.680000pt;}
.w3b{width:76.480000pt;}
.w49{width:76.800000pt;}
.w77{width:80.512000pt;}
.w6e{width:80.672000pt;}
.w5e{width:80.832000pt;}
.w59{width:80.992000pt;}
.w25{width:81.440000pt;}
.w37{width:84.192000pt;}
.w72{width:85.472000pt;}
.w61{width:85.632000pt;}
.w6a{width:86.112000pt;}
.w60{width:86.720000pt;}
.w41{width:86.880000pt;}
.w36{width:89.920000pt;}
.w64{width:89.952000pt;}
.w5d{width:90.080000pt;}
.w52{width:90.272000pt;}
.w2c{width:90.432000pt;}
.w44{width:90.592000pt;}
.w31{width:90.720000pt;}
.w6b{width:91.072000pt;}
.w51{width:91.200000pt;}
.w2b{width:91.520000pt;}
.w32{width:94.752000pt;}
.w79{width:94.912000pt;}
.w2d{width:95.232000pt;}
.w70{width:95.520000pt;}
.w53{width:95.552000pt;}
.w54{width:95.712000pt;}
.w69{width:95.840000pt;}
.w1b{width:98.272000pt;}
.w22{width:98.592000pt;}
.w3c{width:99.232000pt;}
.w3e{width:99.392000pt;}
.w27{width:99.712000pt;}
.w26{width:99.872000pt;}
.w4b{width:100.032000pt;}
.w28{width:100.192000pt;}
.w63{width:100.480000pt;}
.w5b{width:100.640000pt;}
.w42{width:100.672000pt;}
.w21{width:102.592000pt;}
.w1a{width:102.912000pt;}
.w1c{width:103.232000pt;}
.w33{width:104.192000pt;}
.w6d{width:104.320000pt;}
.w1e{width:104.512000pt;}
.w18{width:104.832000pt;}
.w35{width:104.992000pt;}
.w45{width:105.152000pt;}
.w57{width:105.632000pt;}
.w3a{width:105.952000pt;}
.w30{width:106.112000pt;}
.w75{width:106.272000pt;}
.w24{width:106.432000pt;}
.w48{width:106.592000pt;}
.w56{width:106.752000pt;}
.w2a{width:106.912000pt;}
.w40{width:107.072000pt;}
.w20{width:107.232000pt;}
.w67{width:107.392000pt;}
.w38{width:107.872000pt;}
.w3d{width:108.832000pt;}
.w4a{width:109.312000pt;}
.w58{width:109.440000pt;}
.w4d{width:109.472000pt;}
.w62{width:109.792000pt;}
.w2e{width:109.952000pt;}
.w76{width:110.272000pt;}
.w68{width:111.232000pt;}
.w50{width:113.952000pt;}
.w5c{width:118.944000pt;}
.w46{width:124.512000pt;}
.w71{width:190.906667pt;}
.wb{width:191.207850pt;}
.w65{width:195.866667pt;}
.w73{width:201.146667pt;}
.w6c{width:207.706667pt;}
.w6f{width:210.106667pt;}
.w78{width:215.226667pt;}
.w5{width:249.346667pt;}
.w6{width:249.506667pt;}
.wd{width:263.521226pt;}
.wa{width:337.928438pt;}
.wc{width:445.735524pt;}
.w1d{width:486.373333pt;}
.w17{width:487.493333pt;}
.w23{width:490.373333pt;}
.w39{width:492.613333pt;}
.w34{width:492.773333pt;}
.w2f{width:493.093333pt;}
.w4e{width:493.733333pt;}
.w74{width:494.213333pt;}
.w66{width:494.533333pt;}
.w4c{width:494.853333pt;}
.w47{width:495.493333pt;}
.w55{width:495.973333pt;}
.w5f{width:496.613333pt;}
.w29{width:496.933333pt;}
.w3f{width:497.733333pt;}
.w5a{width:499.653333pt;}
.w8{width:518.213333pt;}
.w9{width:524.453333pt;}
.w2{width:566.928019pt;}
.w7{width:642.559990pt;}
.w3{width:642.560000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:2.422428pt;}
.x6d{left:3.360000pt;}
.x4b{left:4.960000pt;}
.x71{left:6.240000pt;}
.xa{left:7.200000pt;}
.x3f{left:8.186667pt;}
.x33{left:9.120000pt;}
.x3d{left:10.080000pt;}
.x2d{left:11.243250pt;}
.x16{left:12.143977pt;}
.x29{left:13.516923pt;}
.x8f{left:14.440000pt;}
.x58{left:15.360000pt;}
.x3c{left:17.120000pt;}
.x5c{left:18.240000pt;}
.x38{left:19.200000pt;}
.x32{left:20.480000pt;}
.x36{left:21.920000pt;}
.x2f{left:23.031597pt;}
.x3e{left:24.186667pt;}
.x50{left:25.120000pt;}
.x48{left:26.080000pt;}
.x70{left:27.200000pt;}
.x4e{left:28.160000pt;}
.x42{left:29.440000pt;}
.x4f{left:30.560000pt;}
.x6b{left:31.520000pt;}
.x49{left:32.800000pt;}
.x79{left:33.760000pt;}
.x2a{left:35.331834pt;}
.x46{left:36.960000pt;}
.x84{left:37.920000pt;}
.x63{left:39.360000pt;}
.x9d{left:40.346667pt;}
.x85{left:41.466667pt;}
.x99{left:42.746667pt;}
.x22{left:43.911084pt;}
.x88{left:45.000000pt;}
.x9e{left:45.946667pt;}
.x47{left:47.840000pt;}
.x57{left:48.800000pt;}
.x89{left:49.786667pt;}
.x98{left:50.720000pt;}
.x15{left:52.784067pt;}
.x8e{left:53.760000pt;}
.x93{left:55.200000pt;}
.x9c{left:57.760000pt;}
.x2e{left:62.495078pt;}
.x23{left:63.625283pt;}
.x2c{left:68.965376pt;}
.x87{left:70.266667pt;}
.x5{left:72.032000pt;}
.x40{left:74.752000pt;}
.x1{left:90.706667pt;}
.x31{left:91.871990pt;}
.x2{left:94.486667pt;}
.xd{left:95.871990pt;}
.x10{left:98.013324pt;}
.x14{left:115.893418pt;}
.xf{left:119.711990pt;}
.x17{left:121.216693pt;}
.x13{left:123.511946pt;}
.x11{left:125.839049pt;}
.x9{left:127.720000pt;}
.x2b{left:132.869234pt;}
.x8{left:137.960000pt;}
.x1b{left:142.013324pt;}
.xc{left:149.306657pt;}
.x25{left:170.456518pt;}
.x1f{left:175.095153pt;}
.x6c{left:177.314667pt;}
.x34{left:179.426667pt;}
.x4{left:180.874667pt;}
.x53{left:181.986667pt;}
.x8a{left:182.946667pt;}
.x1c{left:184.186883pt;}
.x18{left:190.124573pt;}
.xa0{left:192.514667pt;}
.x4a{left:193.954667pt;}
.x27{left:194.942646pt;}
.x67{left:196.514667pt;}
.x51{left:197.474667pt;}
.x5b{left:198.754667pt;}
.x82{left:200.034667pt;}
.x41{left:202.754667pt;}
.x52{left:204.194667pt;}
.x5d{left:205.634667pt;}
.x59{left:207.554667pt;}
.x7f{left:208.834667pt;}
.x21{left:213.337232pt;}
.x26{left:216.323023pt;}
.x24{left:218.655667pt;}
.x20{left:220.961658pt;}
.x1e{left:223.294303pt;}
.x35{left:237.026667pt;}
.x7{left:249.346667pt;}
.x4c{left:251.266667pt;}
.x76{left:254.146667pt;}
.x43{left:256.546667pt;}
.x64{left:258.466667pt;}
.x72{left:259.586667pt;}
.x54{left:264.066667pt;}
.x68{left:269.986667pt;}
.x61{left:270.946667pt;}
.x5e{left:272.866667pt;}
.x78{left:273.826667pt;}
.x28{left:274.946657pt;}
.x94{left:277.666667pt;}
.x80{left:283.266667pt;}
.x90{left:287.453333pt;}
.x7c{left:288.573333pt;}
.x9a{left:292.573333pt;}
.x8b{left:294.813333pt;}
.x37{left:299.613333pt;}
.x12{left:304.847133pt;}
.x6{left:321.373333pt;}
.x1d{left:333.213324pt;}
.x6e{left:342.173333pt;}
.x39{left:351.933333pt;}
.x77{left:354.173333pt;}
.x62{left:355.773333pt;}
.x30{left:357.533324pt;}
.x65{left:358.493333pt;}
.x44{left:360.093333pt;}
.x55{left:364.573333pt;}
.x5a{left:365.693333pt;}
.x5f{left:368.253333pt;}
.x73{left:369.693333pt;}
.x69{left:370.973333pt;}
.x95{left:373.053333pt;}
.x86{left:378.173333pt;}
.x7a{left:380.573333pt;}
.x96{left:383.613333pt;}
.x9f{left:388.413333pt;}
.x8c{left:391.293333pt;}
.x91{left:392.413333pt;}
.x9b{left:397.693333pt;}
.x7d{left:398.653333pt;}
.x3a{left:403.013333pt;}
.x3{left:404.408000pt;}
.x1a{left:435.973324pt;}
.x6f{left:447.973333pt;}
.x45{left:459.013333pt;}
.x75{left:460.133333pt;}
.x3b{left:461.253333pt;}
.x4d{left:462.533333pt;}
.x56{left:464.933333pt;}
.x83{left:466.213333pt;}
.x66{left:467.973333pt;}
.x74{left:470.213333pt;}
.x6a{left:471.813333pt;}
.x60{left:473.093333pt;}
.x7b{left:476.773333pt;}
.x8d{left:478.213333pt;}
.x97{left:484.133333pt;}
.x92{left:487.813333pt;}
.x7e{left:489.733333pt;}
.x81{left:493.573333pt;}
.xb{left:517.248000pt;}
.xe{left:554.719990pt;}
}




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