
    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_f20f8a00dac63b81509bd01b.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_a739b573f680334aecf6b667.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_16544f20037a04337d2c0598.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_039bd7c9fffa9329a43e808b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_39aed75ff020a26988cb43b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_3d99c99077d92358fb3f667e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;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_30a06d61420a78758111eaa5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_f195387ad3bbbe0b274351f3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1f00254d7152ae3604555220.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003000;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_6ebee242319e2fbaeadecee4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fadcb0bc5202bca18df6e269.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b31c74c631cfc9a3373a9ec2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.884000;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_9ece007d7ff30963acffb613.woff2')format("woff");}.fff{font-family:fff;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cb2bfb252e66710ef470005a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_51682c44e2b48e7204b6e934.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_518bb5e763f75947e7f0f0dd.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.m4{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281286,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.245331px;}
.v1{vertical-align:-10.542000px;}
.v3{vertical-align:-9.533749px;}
.v4{vertical-align:-7.832965px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.360603px;}
.v6{vertical-align:21.084795px;}
.ls6{letter-spacing:-0.764991px;}
.ls41{letter-spacing:-0.629982px;}
.ls3{letter-spacing:-0.611993px;}
.ls1{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.509994px;}
.ls40{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.014177px;}
.ls22{letter-spacing:0.016765px;}
.ls1b{letter-spacing:0.020177px;}
.ls36{letter-spacing:0.022765px;}
.ls10{letter-spacing:0.027438px;}
.ls3c{letter-spacing:0.027967px;}
.ls26{letter-spacing:0.029534px;}
.ls29{letter-spacing:0.030407px;}
.ls12{letter-spacing:0.035296px;}
.ls3d{letter-spacing:0.040700px;}
.ls3a{letter-spacing:0.046200px;}
.ls25{letter-spacing:0.046796px;}
.lse{letter-spacing:0.048304px;}
.ls9{letter-spacing:0.048532px;}
.lsc{letter-spacing:0.052200px;}
.ls27{letter-spacing:0.052796px;}
.ls1f{letter-spacing:0.061425px;}
.ls1d{letter-spacing:0.082227px;}
.ls1e{letter-spacing:0.082823px;}
.ls19{letter-spacing:0.082859px;}
.ls20{letter-spacing:0.088227px;}
.ls21{letter-spacing:0.131199px;}
.ls2a{letter-spacing:0.131211px;}
.ls24{letter-spacing:0.149399px;}
.ls14{letter-spacing:0.154163px;}
.ls32{letter-spacing:0.172643px;}
.ls33{letter-spacing:0.187982px;}
.ls34{letter-spacing:0.188211px;}
.ls15{letter-spacing:0.188915px;}
.ls3f{letter-spacing:0.419988px;}
.ls2{letter-spacing:0.509994px;}
.ls2e{letter-spacing:0.526142px;}
.ls3e{letter-spacing:0.839976px;}
.ls30{letter-spacing:0.847869px;}
.ls31{letter-spacing:0.848741px;}
.ls2c{letter-spacing:0.858474px;}
.ls2d{letter-spacing:0.862738px;}
.ls2f{letter-spacing:0.868142px;}
.ls37{letter-spacing:1.019988px;}
.ls35{letter-spacing:2.760517px;}
.lsd{letter-spacing:2.781342px;}
.ls3b{letter-spacing:2.787342px;}
.ls7{letter-spacing:3.096517px;}
.ls16{letter-spacing:3.102517px;}
.ls28{letter-spacing:3.117342px;}
.lsf{letter-spacing:3.123342px;}
.ls17{letter-spacing:3.285162px;}
.ls11{letter-spacing:11.071970px;}
.lsb{letter-spacing:11.408566px;}
.ls18{letter-spacing:14.131934px;}
.ls13{letter-spacing:14.322517px;}
.ls2b{letter-spacing:14.328517px;}
.ls23{letter-spacing:14.343342px;}
.ls1a{letter-spacing:14.349342px;}
.lsa{letter-spacing:22.851342px;}
.ls39{letter-spacing:28.080270px;}
.ls38{letter-spacing:28.416866px;}
.ls8{letter-spacing:31.140234px;}
.ls4{letter-spacing:33.018000px;}
.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;}
}
.ws69{word-spacing:-32.894613px;}
.ws2f{word-spacing:-28.168595px;}
.ws30{word-spacing:-27.828405px;}
.ws14{word-spacing:-23.026113px;}
.ws2e{word-spacing:-20.999400px;}
.ws1{word-spacing:-13.986000px;}
.ws8{word-spacing:-13.769838px;}
.ws4{word-spacing:-12.749850px;}
.wsb{word-spacing:-12.494853px;}
.ws6{word-spacing:-12.239856px;}
.ws3{word-spacing:-12.137857px;}
.ws7{word-spacing:-11.984859px;}
.ws79{word-spacing:-10.499700px;}
.ws7a{word-spacing:-10.289706px;}
.ws7b{word-spacing:-10.079712px;}
.ws7c{word-spacing:-9.869718px;}
.wsf{word-spacing:-8.924850px;}
.ws10{word-spacing:-8.746353px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:4.401248px;}
.ws2{word-spacing:4.444200px;}
.ws78{word-spacing:4.467547px;}
.ws9{word-spacing:4.472647px;}
.ws5{word-spacing:4.600800px;}
.wse{word-spacing:5.352805px;}
.ws13{word-spacing:5.358805px;}
.wsd{word-spacing:5.688805px;}
.wsc{word-spacing:5.694805px;}
.ws12{word-spacing:8.412805px;}
.wsa{word-spacing:8.418805px;}
.ws6a{word-spacing:162.846805px;}
.ws1e{word-spacing:197.754363px;}
.ws25{word-spacing:206.938741px;}
.ws73{word-spacing:207.631732px;}
.ws29{word-spacing:215.799123px;}
.ws2b{word-spacing:216.136618px;}
.ws76{word-spacing:216.159118px;}
.ws1c{word-spacing:225.015000px;}
.ws21{word-spacing:229.042446px;}
.ws6d{word-spacing:233.443387px;}
.ws6f{word-spacing:233.465887px;}
.ws75{word-spacing:234.203877px;}
.ws1f{word-spacing:242.308269px;}
.ws1b{word-spacing:247.836684px;}
.ws6c{word-spacing:248.178380px;}
.ws71{word-spacing:251.510646px;}
.ws2a{word-spacing:251.884142px;}
.ws27{word-spacing:255.970087px;}
.ws23{word-spacing:259.349542px;}
.ws72{word-spacing:260.033533px;}
.ws77{word-spacing:285.863188px;}
.ws26{word-spacing:286.749677px;}
.ws1d{word-spacing:299.678004px;}
.ws22{word-spacing:300.015500px;}
.ws74{word-spacing:300.357495px;}
.ws2d{word-spacing:303.547953px;}
.ws19{word-spacing:304.564939px;}
.ws28{word-spacing:312.583832px;}
.ws20{word-spacing:312.601832px;}
.ws70{word-spacing:313.285823px;}
.ws17{word-spacing:317.128772px;}
.ws24{word-spacing:325.503160px;}
.ws6e{word-spacing:326.187151px;}
.ws16{word-spacing:328.918614px;}
.ws15{word-spacing:328.941114px;}
.ws18{word-spacing:330.057099px;}
.ws56{word-spacing:339.277476px;}
.ws54{word-spacing:339.632971px;}
.ws61{word-spacing:339.646471px;}
.ws2c{word-spacing:340.222464px;}
.ws50{word-spacing:343.354422px;}
.ws66{word-spacing:348.461854px;}
.ws4b{word-spacing:352.552299px;}
.ws4e{word-spacing:356.260250px;}
.ws46{word-spacing:356.700003px;}
.ws65{word-spacing:361.417181px;}
.ws57{word-spacing:365.102632px;}
.ws67{word-spacing:366.520113px;}
.ws58{word-spacing:370.583559px;}
.ws49{word-spacing:374.287009px;}
.ws5a{word-spacing:374.291509px;}
.ws68{word-spacing:374.323009px;}
.ws1a{word-spacing:376.554070px;}
.ws6b{word-spacing:377.232362px;}
.ws63{word-spacing:379.448441px;}
.ws5d{word-spacing:379.828231px;}
.ws59{word-spacing:384.470374px;}
.ws60{word-spacing:392.349769px;}
.ws52{word-spacing:392.354269px;}
.ws4f{word-spacing:401.745643px;}
.ws5c{word-spacing:405.255597px;}
.ws51{word-spacing:414.309476px;}
.ws55{word-spacing:414.651471px;}
.ws4c{word-spacing:427.237803px;}
.ws62{word-spacing:427.552799px;}
.ws64{word-spacing:427.579799px;}
.ws4a{word-spacing:440.139131px;}
.ws53{word-spacing:440.481127px;}
.ws5b{word-spacing:454.853935px;}
.ws45{word-spacing:490.843725px;}
.ws39{word-spacing:521.601545px;}
.ws41{word-spacing:530.443927px;}
.ws37{word-spacing:547.431201px;}
.ws47{word-spacing:548.925181px;}
.ws32{word-spacing:557.051146px;}
.ws42{word-spacing:557.686564px;}
.ws48{word-spacing:557.749563px;}
.ws4d{word-spacing:560.517026px;}
.ws3b{word-spacing:561.732010px;}
.ws5f{word-spacing:570.461894px;}
.ws3d{word-spacing:570.614892px;}
.ws5e{word-spacing:577.279303px;}
.ws3f{word-spacing:583.520720px;}
.ws3a{word-spacing:605.480427px;}
.ws44{word-spacing:609.345875px;}
.ws3c{word-spacing:618.381755px;}
.ws3e{word-spacing:618.404254px;}
.ws38{word-spacing:631.305582px;}
.ws40{word-spacing:638.671984px;}
.ws43{word-spacing:646.020386px;}
.ws31{word-spacing:682.356672px;}
.ws33{word-spacing:826.152984px;}
.ws34{word-spacing:861.846509px;}
.ws36{word-spacing:1617.467433px;}
.ws35{word-spacing:1623.942847px;}
._61{margin-left:-34.446230px;}
._63{margin-left:-33.267516px;}
._2{margin-left:-4.140000px;}
._1{margin-left:-3.132000px;}
._0{margin-left:-1.920020px;}
._4{width:1.121993px;}
._7{width:2.646047px;}
._6{width:4.093200px;}
._3{width:5.457555px;}
._8{width:6.889400px;}
._5{width:8.057953px;}
._9{width:9.613387px;}
._a{width:10.623175px;}
._10{width:11.928760px;}
._c{width:13.999335px;}
._b{width:15.294720px;}
._e{width:16.972600px;}
._d{width:18.033388px;}
._f{width:19.043176px;}
._9b{width:20.077090px;}
._9a{width:21.496934px;}
._62{width:23.015342px;}
._11{width:24.214515px;}
._9c{width:26.757435px;}
._41{width:34.373596px;}
._42{width:35.419083px;}
._9d{width:82.073334px;}
._4a{width:218.526086px;}
._56{width:231.107919px;}
._49{width:235.922854px;}
._94{width:237.740830px;}
._57{width:240.314796px;}
._46{width:245.413228px;}
._53{width:251.272150px;}
._4c{width:253.145870px;}
._97{width:254.971100px;}
._45{width:258.013060px;}
._4f{width:261.739010px;}
._54{width:263.111409px;}
._4e{width:266.877942px;}
._5d{width:271.865786px;}
._96{width:273.002360px;}
._59{width:276.642811px;}
._8d{width:280.222853px;}
._43{width:283.602563px;}
._28{width:285.295744px;}
._8b{width:287.218421px;}
._52{width:288.702651px;}
._90{width:298.479109px;}
._29{width:306.972540px;}
._60{width:316.141787px;}
._47{width:323.829182px;}
._8f{width:324.850669px;}
._37{width:328.401121px;}
._50{width:336.757510px;}
._92{width:338.453987px;}
._33{width:341.306949px;}
._5f{width:343.696417px;}
._35{width:354.208277px;}
._2d{width:358.820716px;}
._79{width:360.067199px;}
._2a{width:363.018829px;}
._2c{width:365.458127px;}
._27{width:369.388654px;}
._5e{width:371.227050px;}
._71{width:372.635531px;}
._99{width:374.651505px;}
._6e{width:375.763579px;}
._1d{width:377.576441px;}
._22{width:381.812406px;}
._3b{width:385.190364px;}
._95{width:386.373848px;}
._5c{width:388.421321px;}
._7d{width:390.693791px;}
._91{width:392.538766px;}
._5b{width:394.541239px;}
._12{width:396.632534px;}
._4b{width:399.986167px;}
._84{width:403.604119px;}
._98{width:411.551013px;}
._19{width:414.914130px;}
._3c{width:417.391935px;}
._44{width:426.477314px;}
._20{width:429.192440px;}
._3e{width:430.320262px;}
._55{width:434.770703px;}
._74{width:438.829649px;}
._2e{width:441.120118px;}
._2b{width:443.977580px;}
._39{width:446.925041px;}
._7b{width:451.730977px;}
._32{width:453.089959px;}
._30{width:457.567399px;}
._2f{width:463.889815px;}
._3a{width:466.274783px;}
._5a{width:470.536226px;}
._4d{width:474.190177px;}
._48{width:479.950101px;}
._51{width:481.120085px;}
._58{width:490.241463px;}
._40{width:492.599432px;}
._93{width:495.339895px;}
._8e{width:498.804849px;}
._36{width:500.721824px;}
._3f{width:505.469260px;}
._8c{width:509.199711px;}
._81{width:515.477127px;}
._31{width:530.038933px;}
._3d{width:532.333902px;}
._34{width:533.503887px;}
._38{width:541.288783px;}
._82{width:554.257610px;}
._8a{width:555.931587px;}
._7f{width:560.202031px;}
._80{width:564.773970px;}
._89{width:565.979953px;}
._7e{width:578.903781px;}
._6f{width:580.226764px;}
._13{width:585.685191px;}
._25{width:591.490113px;}
._78{width:593.623085px;}
._1f{width:597.655031px;}
._1a{width:602.379968px;}
._14{width:608.454887px;}
._17{width:610.839855px;}
._16{width:612.324836px;}
._87{width:615.735790px;}
._15{width:627.984627px;}
._70{width:633.357555px;}
._21{width:637.164504px;}
._83{width:640.525960px;}
._88{width:642.312436px;}
._7a{width:643.990913px;}
._1e{width:650.034333px;}
._73{width:658.552719px;}
._7c{width:660.343695px;}
._26{width:669.309239px;}
._1b{width:671.139051px;}
._23{width:674.604005px;}
._18{width:676.898975px;}
._1c{width:678.068959px;}
._24{width:685.853855px;}
._6c{width:801.889308px;}
._6b{width:838.262323px;}
._6d{width:840.669791px;}
._69{width:865.315962px;}
._64{width:866.638945px;}
._6a{width:880.035266px;}
._65{width:919.769736px;}
._67{width:926.938141px;}
._66{width:930.403094px;}
._68{width:946.755876px;}
._72{width:1115.359628px;}
._77{width:1132.382901px;}
._86{width:1193.946580px;}
._76{width:1206.870408px;}
._85{width:1221.981207px;}
._75{width:1234.905034px;}
.fc3{color:rgb(130,122,156);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:27.000000px;}
.fs14{font-size:27.996600px;}
.fs13{font-size:29.994600px;}
.fs11{font-size:35.699400px;}
.fsb{font-size:35.995200px;}
.fse{font-size:39.000600px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:44.999400px;}
.fsc{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fsf{font-size:50.999400px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y65{bottom:42.179400px;}
.ya9{bottom:42.187021px;}
.y5{bottom:66.525004px;}
.y37{bottom:67.597501px;}
.ya8{bottom:76.544462px;}
.y1ed{bottom:77.052221px;}
.y75{bottom:78.151904px;}
.y157{bottom:79.172148px;}
.y1c6{bottom:80.277150px;}
.y243{bottom:80.277986px;}
.y129{bottom:82.319387px;}
.y36{bottom:84.097501px;}
.y2ee{bottom:87.087357px;}
.y74{bottom:90.907050px;}
.y101{bottom:92.098121px;}
.ya7{bottom:94.572750px;}
.y1ec{bottom:95.080509px;}
.y156{bottom:97.116287px;}
.y4{bottom:97.125005px;}
.y242{bottom:97.540543px;}
.y1c5{bottom:100.006252px;}
.y128{bottom:100.346400px;}
.y260{bottom:101.709759px;}
.y2ed{bottom:105.115645px;}
.y100{bottom:110.042259px;}
.yd6{bottom:111.575846px;}
.y1f7{bottom:112.254529px;}
.ya6{bottom:112.601038px;}
.y147{bottom:113.102748px;}
.y25a{bottom:113.104817px;}
.y1eb{bottom:113.108797px;}
.y241{bottom:114.803100px;}
.y155{bottom:115.143300px;}
.y308{bottom:116.846229px;}
.y31d{bottom:117.271466px;}
.y127{bottom:118.289700px;}
.y25f{bottom:119.736772px;}
.y1c4{bottom:119.906112px;}
.y26d{bottom:121.181060px;}
.y198{bottom:122.796900px;}
.y2ec{bottom:123.058509px;}
.yff{bottom:128.069272px;}
.yd5{bottom:129.604134px;}
.y1f6{bottom:130.197393px;}
.y307{bottom:130.282695px;}
.ya5{bottom:130.543902px;}
.y31c{bottom:130.792980px;}
.y146{bottom:131.046887px;}
.y259{bottom:131.047681px;}
.y1ea{bottom:131.051661px;}
.y154{bottom:133.171650px;}
.y2bd{bottom:134.533189px;}
.y240{bottom:134.533331px;}
.y62{bottom:135.724744px;}
.y36b{bottom:135.810070px;}
.y25e{bottom:137.765060px;}
.y26c{bottom:139.209348px;}
.y22{bottom:139.264499px;}
.y1c3{bottom:139.890345px;}
.y2eb{bottom:141.086797px;}
.y197{bottom:141.930300px;}
.y199{bottom:141.930600px;}
.y306{bottom:143.803158px;}
.y31b{bottom:144.228396px;}
.yfe{bottom:146.097560px;}
.y1f5{bottom:148.225681px;}
.ya4{bottom:148.572190px;}
.y145{bottom:149.073900px;}
.y1e9{bottom:149.079949px;}
.y61{bottom:151.456547px;}
.y126{bottom:154.347348px;}
.y23f{bottom:154.432065px;}
.y2bc{bottom:154.433049px;}
.y25d{bottom:155.709199px;}
.y36a{bottom:156.814173px;}
.y26b{bottom:157.237636px;}
.y31a{bottom:157.749910px;}
.y2ea{bottom:159.115085px;}
.y1c2{bottom:159.789080px;}
.y196{bottom:161.065458px;}
.yfd{bottom:164.041699px;}
.y144{bottom:167.103750px;}
.y258{bottom:167.104257px;}
.y1e8{bottom:167.108236px;}
.y60{bottom:167.189551px;}
.y305{bottom:170.846186px;}
.y319{bottom:171.270374px;}
.y125{bottom:172.291487px;}
.y25c{bottom:173.737487px;}
.y23e{bottom:174.330800px;}
.y2bb{bottom:174.331784px;}
.y26a{bottom:175.180500px;}
.y2e9{bottom:177.057949px;}
.y369{bottom:177.818276px;}
.y153{bottom:178.668300px;}
.y1c1{bottom:179.773313px;}
.yfc{bottom:182.069987px;}
.y5f{bottom:182.921354px;}
.y1f4{bottom:184.196833px;}
.y304{bottom:184.281602px;}
.ya3{bottom:184.543342px;}
.y318{bottom:184.791887px;}
.y257{bottom:185.047121px;}
.yd4{bottom:185.049407px;}
.y1e7{bottom:185.051100px;}
.y124{bottom:190.318500px;}
.y25b{bottom:191.764500px;}
.y23d{bottom:194.315034px;}
.y2ba{bottom:194.316017px;}
.y2e8{bottom:195.086236px;}
.y19{bottom:196.933500px;}
.y152{bottom:197.802000px;}
.y303{bottom:197.803116px;}
.y317{bottom:198.228353px;}
.y5e{bottom:198.738356px;}
.y368{bottom:198.823654px;}
.y1c0{bottom:199.673173px;}
.yfb{bottom:200.097000px;}
.y1f3{bottom:202.225121px;}
.ya2{bottom:202.571629px;}
.y143{bottom:203.074500px;}
.y256{bottom:203.075408px;}
.yd3{bottom:203.077694px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y302{bottom:211.323579px;}
.y316{bottom:211.748817px;}
.y2e7{bottom:213.114524px;}
.y2b9{bottom:214.214752px;}
.y23c{bottom:214.214893px;}
.y5d{bottom:214.470160px;}
.y151{bottom:216.937437px;}
.yfa{bottom:218.041500px;}
.y1bf{bottom:219.571908px;}
.y367{bottom:219.827757px;}
.y1f2{bottom:220.253408px;}
.ya1{bottom:220.599917px;}
.y255{bottom:221.103696px;}
.yd2{bottom:221.105982px;}
.y1e6{bottom:221.107676px;}
.y194{bottom:221.358224px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y301{bottom:224.845093px;}
.y315{bottom:225.270331px;}
.y123{bottom:226.290498px;}
.y296{bottom:227.481386px;}
.y5c{bottom:230.203163px;}
.y2e6{bottom:231.057388px;}
.y2b8{bottom:234.198986px;}
.y23b{bottom:234.199127px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1f1{bottom:238.196272px;}
.y300{bottom:238.281559px;}
.ya0{bottom:238.542781px;}
.y314{bottom:238.791844px;}
.y142{bottom:239.046045px;}
.y254{bottom:239.046560px;}
.yd1{bottom:239.048846px;}
.y1e5{bottom:239.051815px;}
.y1be{bottom:239.556141px;}
.y195{bottom:240.406500px;}
.y193{bottom:240.406800px;}
.y366{bottom:240.747711px;}
.y269{bottom:243.978386px;}
.y122{bottom:244.659000px;}
.y295{bottom:244.743943px;}
.y5b{bottom:245.934966px;}
.y2e5{bottom:249.085676px;}
.y23a{bottom:254.097862px;}
.y2b7{bottom:254.098845px;}
.yf9{bottom:254.102210px;}
.y35{bottom:254.926501px;}
.y9f{bottom:256.571069px;}
.y141{bottom:257.074333px;}
.y253{bottom:257.074848px;}
.yd0{bottom:257.077134px;}
.y1e4{bottom:257.080103px;}
.y1bd{bottom:259.454876px;}
.y192{bottom:259.540947px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y268{bottom:261.240943px;}
.y365{bottom:261.751813px;}
.y5a{bottom:261.751969px;}
.y294{bottom:262.006500px;}
.y150{bottom:263.708987px;}
.y121{bottom:264.982500px;}
.y2ff{bottom:265.323536px;}
.y313{bottom:265.748774px;}
.y2e4{bottom:267.113964px;}
.yf8{bottom:272.045074px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y2b6{bottom:273.997580px;}
.y239{bottom:273.997721px;}
.y1f0{bottom:274.252848px;}
.y9e{bottom:274.599357px;}
.y140{bottom:275.102621px;}
.ycf{bottom:275.105422px;}
.y1e3{bottom:275.107116px;}
.y356{bottom:276.642000px;}
.y59{bottom:277.484972px;}
.y267{bottom:278.503500px;}
.y2fe{bottom:278.844000px;}
.y312{bottom:279.268187px;}
.y1bc{bottom:279.354736px;}
.y14f{bottom:281.735833px;}
.y293{bottom:281.737269px;}
.y364{bottom:282.755916px;}
.y2fd{bottom:283.435500px;}
.y2e3{bottom:285.058103px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y355{bottom:290.077416px;}
.y1ef{bottom:292.196987px;}
.y2fc{bottom:292.281023px;}
.y9d{bottom:292.542221px;}
.y311{bottom:292.789702px;}
.y13f{bottom:293.046759px;}
.y252{bottom:293.047165px;}
.y1e2{bottom:293.051255px;}
.y58{bottom:293.216775px;}
.y2b5{bottom:293.981813px;}
.y238{bottom:293.981955px;}
.y120{bottom:296.107697px;}
.y266{bottom:298.234269px;}
.y1bb{bottom:299.338969px;}
.y14e{bottom:299.764121px;}
.y292{bottom:301.636004px;}
.y354{bottom:303.598930px;}
.y363{bottom:303.761294px;}
.y2fb{bottom:305.802536px;}
.y310{bottom:306.226168px;}
.y57{bottom:308.948579px;}
.y1ee{bottom:310.224000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y9c{bottom:310.570509px;}
.y13e{bottom:311.073772px;}
.y251{bottom:311.075453px;}
.yce{bottom:311.076574px;}
.y1e1{bottom:311.079543px;}
.y237{bottom:313.880689px;}
.y2b4{bottom:313.881673px;}
.y11f{bottom:314.475000px;}
.y353{bottom:317.119394px;}
.y14d{bottom:317.708259px;}
.y265{bottom:318.133004px;}
.y1ba{bottom:319.237704px;}
.y34{bottom:319.276501px;}
.y2fa{bottom:319.323000px;}
.y30f{bottom:319.746631px;}
.y190{bottom:319.833300px;}
.y2e2{bottom:321.113404px;}
.y291{bottom:321.535864px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2f9{bottom:323.999932px;}
.y56{bottom:324.681582px;}
.y362{bottom:324.765397px;}
.yf7{bottom:327.575770px;}
.y9b{bottom:328.598797px;}
.y13d{bottom:329.102060px;}
.ycd{bottom:329.104862px;}
.y1e0{bottom:329.107831px;}
.y191{bottom:329.442000px;}
.y352{bottom:330.640907px;}
.y11e{bottom:332.079197px;}
.y2f7{bottom:332.845070px;}
.y30e{bottom:333.268145px;}
.y2b3{bottom:333.780408px;}
.y236{bottom:333.780549px;}
.y14c{bottom:335.735272px;}
.y2f8{bottom:337.435500px;}
.y264{bottom:338.032864px;}
.y18f{bottom:338.968301px;}
.y2e1{bottom:339.057543px;}
.y1b9{bottom:339.137564px;}
.y55{bottom:340.498584px;}
.y290{bottom:341.520097px;}
.y351{bottom:344.077374px;}
.yf6{bottom:345.604058px;}
.y361{bottom:345.769500px;}
.y2f6{bottom:346.281536px;}
.y9a{bottom:346.541661px;}
.y250{bottom:347.046605px;}
.ycc{bottom:347.047726px;}
.y1df{bottom:347.050694px;}
.y10{bottom:348.133500px;}
.y11d{bottom:350.446500px;}
.y14b{bottom:353.763560px;}
.y2b2{bottom:353.764641px;}
.y235{bottom:353.764783px;}
.y54{bottom:356.230388px;}
.y2e0{bottom:357.085831px;}
.y350{bottom:357.597837px;}
.y263{bottom:358.017097px;}
.y1b8{bottom:359.121797px;}
.y2f5{bottom:359.802000px;}
.y30d{bottom:360.225075px;}
.y28f{bottom:361.418832px;}
.y218{bottom:363.544886px;}
.yf5{bottom:363.546922px;}
.y99{bottom:364.569949px;}
.y13c{bottom:365.074487px;}
.y24f{bottom:365.074893px;}
.ycb{bottom:365.076014px;}
.y1de{bottom:365.078982px;}
.y34f{bottom:371.119351px;}
.y14a{bottom:371.707699px;}
.y53{bottom:371.963391px;}
.y2f3{bottom:373.323355px;}
.y2b1{bottom:373.663376px;}
.y234{bottom:373.663517px;}
.y30c{bottom:373.746588px;}
.y2df{bottom:375.112843px;}
.y262{bottom:377.915832px;}
.y2f4{bottom:378.000000px;}
.y1b7{bottom:379.020532px;}
.y217{bottom:380.807443px;}
.y28e{bottom:381.403065px;}
.y11c{bottom:381.573953px;}
.yf4{bottom:381.575210px;}
.y13b{bottom:383.101500px;}
.y24e{bottom:383.103181px;}
.yca{bottom:383.104301px;}
.y1dd{bottom:383.107270px;}
.y33{bottom:383.626501px;}
.y34e{bottom:384.640865px;}
.y360{bottom:384.974206px;}
.y18e{bottom:385.827014px;}
.yf{bottom:386.785499px;}
.y30b{bottom:387.267052px;}
.y2f2{bottom:387.270107px;}
.y52{bottom:387.695194px;}
.y149{bottom:389.735987px;}
.y2de{bottom:393.056982px;}
.y2b0{bottom:393.647610px;}
.y233{bottom:393.647751px;}
.y261{bottom:397.900065px;}
.y216{bottom:398.070000px;}
.y34d{bottom:398.076281px;}
.y1b6{bottom:399.004765px;}
.y11b{bottom:399.602241px;}
.yf3{bottom:399.603498px;}
.y98{bottom:400.541100px;}
.y13a{bottom:401.046000px;}
.yc9{bottom:401.047165px;}
.y1dc{bottom:401.050134px;}
.y28d{bottom:401.301800px;}
.y35f{bottom:402.917143px;}
.y51{bottom:403.426998px;}
.y18d{bottom:403.855301px;}
.y148{bottom:407.763000px;}
.ye{bottom:408.044999px;}
.y2dd{bottom:411.085270px;}
.y34c{bottom:411.597794px;}
.y232{bottom:413.546486px;}
.y2af{bottom:413.547469px;}
.y30a{bottom:414.225032px;}
.y2f1{bottom:414.227036px;}
.y35e{bottom:416.438657px;}
.y215{bottom:417.798800px;}
.y97{bottom:418.569388px;}
.y1b5{bottom:418.903500px;}
.y24d{bottom:419.074333px;}
.yc8{bottom:419.075453px;}
.y1db{bottom:419.078422px;}
.y50{bottom:419.244000px;}
.y28c{bottom:421.201660px;}
.y18c{bottom:421.798165px;}
.y34b{bottom:425.118258px;}
.y309{bottom:427.745496px;}
.y2f0{bottom:427.747500px;}
.y2dc{bottom:429.113558px;}
.y35d{bottom:429.960171px;}
.y2ae{bottom:433.446204px;}
.y231{bottom:433.446345px;}
.y11a{bottom:435.573393px;}
.yf2{bottom:435.574650px;}
.y96{bottom:436.597676px;}
.y24c{bottom:437.102621px;}
.yc7{bottom:437.103741px;}
.y1da{bottom:437.106710px;}
.y139{bottom:437.107888px;}
.y214{bottom:437.698660px;}
.y34a{bottom:438.639772px;}
.y4f{bottom:438.718500px;}
.y1b4{bottom:438.803064px;}
.y28b{bottom:441.185893px;}
.y35c{bottom:443.395587px;}
.y2db{bottom:447.056422px;}
.y32{bottom:450.907500px;}
.y349{bottom:452.076238px;}
.y2ad{bottom:453.430437px;}
.y230{bottom:453.430579px;}
.y119{bottom:453.601681px;}
.yf1{bottom:453.602938px;}
.y95{bottom:454.541815px;}
.y24b{bottom:455.046759px;}
.y138{bottom:455.052027px;}
.y213{bottom:457.682893px;}
.y18b{bottom:457.854741px;}
.y17a{bottom:460.828500px;}
.y28a{bottom:461.084628px;}
.y1b3{bottom:461.253000px;}
.y35b{bottom:461.423572px;}
.y2da{bottom:465.084710px;}
.y348{bottom:465.596701px;}
.y118{bottom:471.544545px;}
.yf0{bottom:471.545801px;}
.y94{bottom:472.570103px;}
.y24a{bottom:473.073772px;}
.yc6{bottom:473.074893px;}
.y1d9{bottom:473.077862px;}
.y137{bottom:473.080315px;}
.y22f{bottom:473.329313px;}
.y2ac{bottom:473.330297px;}
.y35a{bottom:474.945085px;}
.y18a{bottom:475.797605px;}
.y212{bottom:477.581628px;}
.y347{bottom:479.118215px;}
.y177{bottom:480.557927px;}
.y289{bottom:480.984488px;}
.y2d9{bottom:483.112998px;}
.y178{bottom:485.574000px;}
.y359{bottom:488.466599px;}
.y117{bottom:489.572833px;}
.yef{bottom:489.574089px;}
.y93{bottom:490.597116px;}
.y249{bottom:491.102060px;}
.yc5{bottom:491.103181px;}
.y1d8{bottom:491.106150px;}
.y136{bottom:491.108603px;}
.y346{bottom:492.639729px;}
.y2ab{bottom:493.229032px;}
.y22e{bottom:493.229173px;}
.y189{bottom:493.825893px;}
.y176{bottom:494.079122px;}
.y211{bottom:497.481488px;}
.y288{bottom:500.968721px;}
.y2d8{bottom:501.055862px;}
.y358{bottom:501.902015px;}
.yd{bottom:502.864502px;}
.y345{bottom:506.075145px;}
.y179{bottom:507.514500px;}
.y175{bottom:507.515943px;}
.y116{bottom:507.601121px;}
.yee{bottom:507.602377px;}
.y92{bottom:508.541255px;}
.yc4{bottom:509.046045px;}
.y248{bottom:509.046199px;}
.y1d7{bottom:509.049014px;}
.y135{bottom:509.051467px;}
.y4e{bottom:509.557350px;}
.y188{bottom:511.854181px;}
.y31{bottom:512.326501px;}
.y2aa{bottom:513.213265px;}
.y22d{bottom:513.213407px;}
.y210{bottom:517.465721px;}
.y2d7{bottom:519.084150px;}
.y344{bottom:519.596659px;}
.y357{bottom:519.930000px;}
.yc{bottom:520.864502px;}
.y287{bottom:520.867456px;}
.yed{bottom:525.545241px;}
.y115{bottom:525.545259px;}
.y91{bottom:526.569543px;}
.yc3{bottom:527.074333px;}
.y247{bottom:527.074487px;}
.y1d6{bottom:527.077301px;}
.y134{bottom:527.079755px;}
.y174{bottom:527.500176px;}
.y187{bottom:529.797045px;}
.y2a9{bottom:533.112000px;}
.y22c{bottom:533.112141px;}
.y343{bottom:533.117122px;}
.y2d6{bottom:537.112438px;}
.y20f{bottom:537.364456px;}
.yb{bottom:538.864499px;}
.y286{bottom:540.767316px;}
.y114{bottom:543.572272px;}
.yec{bottom:543.573529px;}
.y4d{bottom:544.083600px;}
.y1b2{bottom:544.595982px;}
.y90{bottom:544.597831px;}
.y246{bottom:545.101500px;}
.yc2{bottom:545.102621px;}
.y1d5{bottom:545.105589px;}
.y133{bottom:545.108043px;}
.y342{bottom:546.638636px;}
.y173{bottom:547.398911px;}
.y186{bottom:547.825333px;}
.y22b{bottom:553.096375px;}
.y2a8{bottom:553.097813px;}
.y2d5{bottom:555.055301px;}
.y2a6{bottom:556.073628px;}
.ya{bottom:556.864499px;}
.y20e{bottom:557.348689px;}
.y341{bottom:560.075102px;}
.y285{bottom:560.751549px;}
.y172{bottom:560.920106px;}
.y113{bottom:561.600560px;}
.yeb{bottom:561.601817px;}
.y4c{bottom:562.026450px;}
.y1b1{bottom:562.538846px;}
.y8f{bottom:562.540694px;}
.y245{bottom:563.046000px;}
.yc1{bottom:563.046759px;}
.y1d4{bottom:563.048453px;}
.y132{bottom:563.050907px;}
.y185{bottom:565.853621px;}
.y22a{bottom:572.995110px;}
.y2d4{bottom:573.083589px;}
.y340{bottom:573.595566px;}
.y20d{bottom:577.248549px;}
.y2a7{bottom:578.523564px;}
.y112{bottom:579.544699px;}
.y30{bottom:579.607500px;}
.y1b0{bottom:580.567134px;}
.y8e{bottom:580.568982px;}
.y284{bottom:580.650284px;}
.y171{bottom:580.819966px;}
.yc0{bottom:581.073772px;}
.y1d3{bottom:581.076741px;}
.y2ef{bottom:581.079194px;}
.y184{bottom:583.797759px;}
.y33f{bottom:587.117079px;}
.y4b{bottom:592.810500px;}
.y229{bottom:592.894969px;}
.y170{bottom:594.341160px;}
.y20c{bottom:597.147284px;}
.yea{bottom:597.572969px;}
.y111{bottom:597.572987px;}
.y1af{bottom:598.595422px;}
.y8d{bottom:598.597270px;}
.ybf{bottom:599.102060px;}
.y1d2{bottom:599.105029px;}
.y131{bottom:599.107482px;}
.y283{bottom:600.634517px;}
.y33e{bottom:600.638593px;}
.y2a5{bottom:600.973500px;}
.y2d3{bottom:609.054741px;}
.y4a{bottom:609.307500px;}
.y228{bottom:612.879203px;}
.y2f{bottom:613.957501px;}
.y33d{bottom:614.074009px;}
.y16f{bottom:614.239895px;}
.y110{bottom:615.600000px;}
.ye9{bottom:615.601257px;}
.y1ae{bottom:616.538286px;}
.y8c{bottom:616.540134px;}
.ybe{bottom:617.046199px;}
.y1d1{bottom:617.047893px;}
.y130{bottom:617.050346px;}
.y20b{bottom:617.131517px;}
.y183{bottom:619.853060px;}
.y282{bottom:620.533252px;}
.y2d2{bottom:627.083029px;}
.y33c{bottom:627.595523px;}
.y2e{bottom:628.957501px;}
.y227{bottom:632.777937px;}
.ye8{bottom:633.544121px;}
.y10f{bottom:633.544200px;}
.y16e{bottom:634.224128px;}
.y1ad{bottom:634.566574px;}
.y8b{bottom:634.568422px;}
.ybd{bottom:635.074487px;}
.y1d0{bottom:635.076181px;}
.y12f{bottom:635.078634px;}
.y20a{bottom:637.030252px;}
.y182{bottom:637.797199px;}
.y49{bottom:640.009500px;}
.y281{bottom:640.433112px;}
.y33b{bottom:641.115987px;}
.y2d{bottom:643.957500px;}
.y2d1{bottom:645.111317px;}
.y9{bottom:645.510000px;}
.ye7{bottom:651.572408px;}
.y1ac{bottom:652.594862px;}
.y8a{bottom:652.596710px;}
.y226{bottom:652.677797px;}
.ybc{bottom:653.101500px;}
.y1cf{bottom:653.104469px;}
.y12e{bottom:653.106922px;}
.y16d{bottom:654.122863px;}
.y33a{bottom:654.637500px;}
.y181{bottom:655.825487px;}
.y209{bottom:656.930112px;}
.y280{bottom:660.417345px;}
.y48{bottom:661.014000px;}
.y2d0{bottom:663.054181px;}
.y2a4{bottom:666.540459px;}
.y8{bottom:666.771000px;}
.y16c{bottom:667.644058px;}
.y339{bottom:668.073966px;}
.y10e{bottom:669.600000px;}
.ye6{bottom:669.600696px;}
.y1ab{bottom:670.537726px;}
.y89{bottom:670.539574px;}
.ybb{bottom:671.045700px;}
.y1ce{bottom:671.047333px;}
.y12d{bottom:671.049786px;}
.y225{bottom:672.662031px;}
.y180{bottom:673.852500px;}
.y208{bottom:676.914345px;}
.y27f{bottom:680.316080px;}
.y2cf{bottom:681.082469px;}
.y338{bottom:681.594430px;}
.y47{bottom:682.018500px;}
.y2a3{bottom:684.567471px;}
.ye5{bottom:687.543560px;}
.y16b{bottom:687.543918px;}
.y1aa{bottom:688.566014px;}
.y88{bottom:688.567862px;}
.y1cd{bottom:689.075621px;}
.y244{bottom:689.078074px;}
.y17f{bottom:691.795500px;}
.y224{bottom:692.560765px;}
.y73{bottom:693.658486px;}
.y337{bottom:695.115944px;}
.y207{bottom:696.813080px;}
.y2ce{bottom:699.110757px;}
.y27e{bottom:700.215940px;}
.y46{bottom:703.023000px;}
.ye4{bottom:705.571848px;}
.y10d{bottom:705.572833px;}
.y72{bottom:706.414571px;}
.y1a9{bottom:706.594301px;}
.y87{bottom:706.596150px;}
.yba{bottom:707.101500px;}
.y1cc{bottom:707.103908px;}
.y12c{bottom:707.106362px;}
.y16a{bottom:707.528151px;}
.y336{bottom:708.637457px;}
.y223{bottom:712.459500px;}
.y206{bottom:716.712940px;}
.y2cd{bottom:717.053621px;}
.y27d{bottom:720.200173px;}
.y2a2{bottom:720.539898px;}
.y169{bottom:720.963847px;}
.y335{bottom:722.072873px;}
.ye3{bottom:723.600136px;}
.y10c{bottom:723.601121px;}
.y45{bottom:724.027500px;}
.y1a8{bottom:724.537165px;}
.y86{bottom:724.539014px;}
.y12b{bottom:725.049226px;}
.y2c{bottom:725.317498px;}
.y7{bottom:726.298500px;}
.y71{bottom:731.925692px;}
.y222{bottom:732.445313px;}
.y2cc{bottom:735.081908px;}
.y220{bottom:735.421128px;}
.y334{bottom:735.594387px;}
.y17d{bottom:736.100805px;}
.y205{bottom:736.697173px;}
.y2a1{bottom:738.568186px;}
.y27c{bottom:740.098908px;}
.y168{bottom:740.948080px;}
.ye2{bottom:741.543000px;}
.y10b{bottom:741.545259px;}
.y1a7{bottom:742.565453px;}
.y85{bottom:742.567301px;}
.y1cb{bottom:743.075060px;}
.yb9{bottom:743.077514px;}
.y17e{bottom:743.754000px;}
.y70{bottom:744.681778px;}
.y44{bottom:745.032000px;}
.y333{bottom:749.114851px;}
.y17c{bottom:751.409849px;}
.y3{bottom:752.599495px;}
.y2cb{bottom:753.110196px;}
.y167{bottom:754.469275px;}
.y2b{bottom:755.317498px;}
.y204{bottom:756.595908px;}
.y6f{bottom:757.437863px;}
.y221{bottom:757.871064px;}
.ye1{bottom:759.572250px;}
.y10a{bottom:759.572272px;}
.y27b{bottom:760.083141px;}
.y1a6{bottom:760.593741px;}
.y84{bottom:760.595589px;}
.y1ca{bottom:761.103348px;}
.yb8{bottom:761.105801px;}
.y332{bottom:762.636364px;}
.y43{bottom:766.036500px;}
.y2a0{bottom:769.268546px;}
.y2ca{bottom:771.053060px;}
.y2a{bottom:773.317498px;}
.y166{bottom:774.369135px;}
.y331{bottom:776.072830px;}
.y203{bottom:776.580141px;}
.y109{bottom:777.600560px;}
.y1a5{bottom:778.536605px;}
.y1c9{bottom:779.047487px;}
.yb7{bottom:779.048665px;}
.y27a{bottom:779.981876px;}
.y21f{bottom:780.321000px;}
.y6e{bottom:782.948985px;}
.y42{bottom:787.041000px;}
.y2c9{bottom:789.081348px;}
.y330{bottom:789.593294px;}
.y29{bottom:791.317498px;}
.y165{bottom:794.267870px;}
.ye0{bottom:795.543000px;}
.y108{bottom:795.544699px;}
.y6d{bottom:795.705070px;}
.y202{bottom:796.478876px;}
.y1a4{bottom:796.564893px;}
.y83{bottom:796.566741px;}
.y1c8{bottom:797.074500px;}
.y17b{bottom:797.075987px;}
.yb6{bottom:797.076953px;}
.y279{bottom:799.881736px;}
.y32f{bottom:803.114808px;}
.y2c8{bottom:807.109636px;}
.y164{bottom:807.789064px;}
.y41{bottom:808.045500px;}
.y6c{bottom:808.460106px;}
.y107{bottom:813.572987px;}
.y21e{bottom:814.592060px;}
.y1a3{bottom:814.593181px;}
.y82{bottom:814.595029px;}
.y1c7{bottom:815.103000px;}
.y29f{bottom:815.104257px;}
.y12a{bottom:815.105241px;}
.y201{bottom:816.378736px;}
.y32e{bottom:816.636322px;}
.y278{bottom:819.865969px;}
.y6b{bottom:821.216191px;}
.y2c7{bottom:825.052500px;}
.y163{bottom:827.688924px;}
.y40{bottom:829.050000px;}
.y32d{bottom:830.071738px;}
.y106{bottom:831.600000px;}
.ydf{bottom:831.602060px;}
.y21d{bottom:832.536199px;}
.y81{bottom:832.537893px;}
.y29e{bottom:833.047121px;}
.yb5{bottom:833.048105px;}
.y6a{bottom:833.972277px;}
.y200{bottom:836.362969px;}
.y277{bottom:839.764704px;}
.y2c6{bottom:843.079500px;}
.y32c{bottom:843.593251px;}
.y28{bottom:843.789002px;}
.y69{bottom:846.643315px;}
.y162{bottom:847.673157px;}
.y105{bottom:849.544200px;}
.yde{bottom:849.546199px;}
.y3f{bottom:850.054500px;}
.y1a2{bottom:850.564333px;}
.y80{bottom:850.566181px;}
.y29d{bottom:851.075408px;}
.yb4{bottom:851.076393px;}
.y1ff{bottom:856.261704px;}
.y32b{bottom:857.113715px;}
.y68{bottom:859.398350px;}
.y276{bottom:859.664564px;}
.y161{bottom:861.194352px;}
.y1a1{bottom:868.592621px;}
.y21c{bottom:868.593348px;}
.y7f{bottom:868.594469px;}
.y29c{bottom:869.103696px;}
.yb3{bottom:869.104681px;}
.y32a{bottom:870.635229px;}
.y3e{bottom:871.059000px;}
.y1fe{bottom:876.161564px;}
.y2c5{bottom:879.052849px;}
.y2{bottom:879.369000px;}
.y275{bottom:879.648797px;}
.y160{bottom:881.093087px;}
.y329{bottom:884.071695px;}
.y67{bottom:884.740426px;}
.y104{bottom:885.600000px;}
.y1a0{bottom:886.536759px;}
.y7e{bottom:886.537333px;}
.y21b{bottom:886.537487px;}
.y29b{bottom:887.046560px;}
.yb2{bottom:887.047545px;}
.y15f{bottom:894.614282px;}
.y1fd{bottom:896.145797px;}
.y2c4{bottom:897.081137px;}
.y328{bottom:897.592158px;}
.y274{bottom:899.547532px;}
.y66{bottom:899.706699px;}
.y19f{bottom:904.563772px;}
.y21a{bottom:904.564500px;}
.y7d{bottom:904.565621px;}
.y3c{bottom:904.818000px;}
.y29a{bottom:905.074848px;}
.ydd{bottom:905.075621px;}
.yb1{bottom:905.075833px;}
.y27{bottom:907.453504px;}
.y3d{bottom:910.771500px;}
.y327{bottom:911.113672px;}
.y15e{bottom:914.514141px;}
.y2c3{bottom:915.109425px;}
.y1fc{bottom:916.044532px;}
.y273{bottom:919.531765px;}
.y103{bottom:921.574139px;}
.y219{bottom:922.591500px;}
.y19e{bottom:922.592060px;}
.y7c{bottom:922.593908px;}
.y299{bottom:923.103136px;}
.ydc{bottom:923.103908px;}
.yb0{bottom:923.104121px;}
.y326{bottom:924.635186px;}
.y15d{bottom:928.035336px;}
.y2c2{bottom:933.052288px;}
.y3b{bottom:934.074353px;}
.y1fb{bottom:936.028765px;}
.y325{bottom:938.070602px;}
.y26{bottom:938.953498px;}
.y272{bottom:939.430500px;}
.y102{bottom:939.602426px;}
.y19d{bottom:940.536199px;}
.y7b{bottom:940.536772px;}
.y298{bottom:941.046000px;}
.ydb{bottom:941.046772px;}
.yaf{bottom:941.048259px;}
.y15c{bottom:947.934071px;}
.y2c1{bottom:951.080576px;}
.y324{bottom:951.592116px;}
.y1fa{bottom:955.927500px;}
.y19c{bottom:958.564487px;}
.y7a{bottom:958.565060px;}
.y297{bottom:959.074500px;}
.yda{bottom:959.075060px;}
.yae{bottom:959.075272px;}
.y271{bottom:959.330858px;}
.y15b{bottom:961.455265px;}
.y26f{bottom:962.392097px;}
.y3a{bottom:964.092776px;}
.y323{bottom:965.112579px;}
.y1{bottom:966.726000px;}
.y25{bottom:970.453498px;}
.y1f9{bottom:975.827889px;}
.y19b{bottom:976.591500px;}
.y79{bottom:976.593348px;}
.yd9{bottom:977.103348px;}
.yad{bottom:977.103560px;}
.y322{bottom:978.634093px;}
.y1f8{bottom:978.889128px;}
.y15a{bottom:981.354000px;}
.y270{bottom:984.842033px;}
.y321{bottom:992.070559px;}
.y39{bottom:994.024500px;}
.y19a{bottom:994.535700px;}
.y78{bottom:994.537487px;}
.yd8{bottom:995.047487px;}
.yac{bottom:995.047699px;}
.y2bf{bottom:1001.083800px;}
.y159{bottom:1001.339064px;}
.y320{bottom:1005.591023px;}
.y26e{bottom:1007.291969px;}
.y2c0{bottom:1010.692500px;}
.y77{bottom:1012.564500px;}
.yd7{bottom:1013.074500px;}
.yab{bottom:1013.075987px;}
.y31f{bottom:1019.112536px;}
.y2be{bottom:1020.217500px;}
.y158{bottom:1023.789000px;}
.y38{bottom:1028.551500px;}
.y76{bottom:1030.591500px;}
.yaa{bottom:1031.103000px;}
.y31e{bottom:1032.633000px;}
.y24{bottom:1035.546001px;}
.y64{bottom:1112.825680px;}
.y63{bottom:1127.877000px;}
.y23{bottom:1165.122003px;}
.h34{height:21.893341px;}
.h28{height:23.455777px;}
.h21{height:26.417538px;}
.h22{height:26.753538px;}
.h15{height:27.716304px;}
.h1d{height:30.498469px;}
.h7{height:32.130000px;}
.h29{height:32.339076px;}
.h32{height:32.549070px;}
.h1b{height:32.843062px;}
.h1c{height:34.313020px;}
.h27{height:35.189531px;}
.hb{height:36.726562px;}
.h19{height:36.959538px;}
.h1a{height:37.535531px;}
.h1e{height:39.269538px;}
.h23{height:39.270207px;}
.h35{height:39.371537px;}
.h33{height:39.514351px;}
.h2f{height:39.518701px;}
.h24{height:39.518786px;}
.h2d{height:39.522746px;}
.h26{height:39.523335px;}
.h2e{height:39.523639px;}
.h31{height:39.523935px;}
.h25{height:39.524535px;}
.h2b{height:39.525315px;}
.h30{height:39.525735px;}
.hf{height:41.317383px;}
.h14{height:41.580000px;}
.h20{height:41.666510px;}
.h1f{height:41.688000px;}
.h18{height:44.118000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h2a{height:46.027638px;}
.h17{height:46.200000px;}
.h3{height:48.195000px;}
.h2c{height:48.751830px;}
.h16{height:49.020000px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h12{height:58.823510px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.h13{height:78.539538px;}
.hc{height:82.634766px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.xf{left:75.004650px;}
.x39{left:84.018750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:233.083498px;}
.xa{left:270.255000px;}
.x15{left:272.129250px;}
.x19{left:276.037500px;}
.x17{left:277.483500px;}
.x12{left:282.754950px;}
.x34{left:285.391589px;}
.x38{left:291.004500px;}
.x8{left:293.590494px;}
.x14{left:294.661500px;}
.x1f{left:298.828100px;}
.x13{left:300.783238px;}
.x2b{left:313.028807px;}
.x24{left:336.924576px;}
.x33{left:347.896500px;}
.x32{left:374.002500px;}
.x11{left:396.198000px;}
.xb{left:404.787000px;}
.xc{left:410.569500px;}
.x21{left:414.480714px;}
.x23{left:422.560047px;}
.x22{left:425.792129px;}
.x20{left:432.338154px;}
.x3{left:454.959000px;}
.x2d{left:459.550083px;}
.x1a{left:465.759470px;}
.x2e{left:468.566308px;}
.x2c{left:475.197974px;}
.x18{left:519.163282px;}
.x26{left:531.067817px;}
.x27{left:536.937271px;}
.x28{left:540.169353px;}
.x2a{left:542.040203px;}
.x25{left:546.799857px;}
.xd{left:549.609000px;}
.xe{left:561.685500px;}
.x36{left:563.211551px;}
.x35{left:578.604111px;}
.x37{left:584.216201px;}
.x1d{left:603.354000px;}
.x2f{left:604.458871px;}
.x31{left:607.689828px;}
.x30{left:610.921910px;}
.x29{left:730.316568px;}
.x1c{left:737.460223px;}
.x1b{left:738.480584px;}
.x1e{left:770.108939px;}
.x10{left:776.325000px;}
.x16{left:823.692000px;}
@media print{
.v2{vertical-align:-10.884738pt;}
.v1{vertical-align:-9.370667pt;}
.v3{vertical-align:-8.474444pt;}
.v4{vertical-align:-6.962635pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.320536pt;}
.v6{vertical-align:18.742040pt;}
.ls6{letter-spacing:-0.679992pt;}
.ls41{letter-spacing:-0.559984pt;}
.ls3{letter-spacing:-0.543994pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.453328pt;}
.ls40{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.012602pt;}
.ls22{letter-spacing:0.014902pt;}
.ls1b{letter-spacing:0.017935pt;}
.ls36{letter-spacing:0.020235pt;}
.ls10{letter-spacing:0.024389pt;}
.ls3c{letter-spacing:0.024859pt;}
.ls26{letter-spacing:0.026253pt;}
.ls29{letter-spacing:0.027028pt;}
.ls12{letter-spacing:0.031374pt;}
.ls3d{letter-spacing:0.036178pt;}
.ls3a{letter-spacing:0.041067pt;}
.ls25{letter-spacing:0.041596pt;}
.lse{letter-spacing:0.042937pt;}
.ls9{letter-spacing:0.043140pt;}
.lsc{letter-spacing:0.046400pt;}
.ls27{letter-spacing:0.046930pt;}
.ls1f{letter-spacing:0.054600pt;}
.ls1d{letter-spacing:0.073091pt;}
.ls1e{letter-spacing:0.073621pt;}
.ls19{letter-spacing:0.073653pt;}
.ls20{letter-spacing:0.078424pt;}
.ls21{letter-spacing:0.116621pt;}
.ls2a{letter-spacing:0.116632pt;}
.ls24{letter-spacing:0.132799pt;}
.ls14{letter-spacing:0.137033pt;}
.ls32{letter-spacing:0.153460pt;}
.ls33{letter-spacing:0.167095pt;}
.ls34{letter-spacing:0.167298pt;}
.ls15{letter-spacing:0.167924pt;}
.ls3f{letter-spacing:0.373323pt;}
.ls2{letter-spacing:0.453328pt;}
.ls2e{letter-spacing:0.467682pt;}
.ls3e{letter-spacing:0.746645pt;}
.ls30{letter-spacing:0.753661pt;}
.ls31{letter-spacing:0.754437pt;}
.ls2c{letter-spacing:0.763088pt;}
.ls2d{letter-spacing:0.766878pt;}
.ls2f{letter-spacing:0.771682pt;}
.ls37{letter-spacing:0.906656pt;}
.ls35{letter-spacing:2.453793pt;}
.lsd{letter-spacing:2.472304pt;}
.ls3b{letter-spacing:2.477637pt;}
.ls7{letter-spacing:2.752459pt;}
.ls16{letter-spacing:2.757793pt;}
.ls28{letter-spacing:2.770971pt;}
.lsf{letter-spacing:2.776304pt;}
.ls17{letter-spacing:2.920144pt;}
.ls11{letter-spacing:9.841751pt;}
.lsb{letter-spacing:10.140947pt;}
.ls18{letter-spacing:12.561719pt;}
.ls13{letter-spacing:12.731126pt;}
.ls2b{letter-spacing:12.736459pt;}
.ls23{letter-spacing:12.749637pt;}
.ls1a{letter-spacing:12.754971pt;}
.lsa{letter-spacing:20.312304pt;}
.ls39{letter-spacing:24.960240pt;}
.ls38{letter-spacing:25.259436pt;}
.ls8{letter-spacing:27.680208pt;}
.ls4{letter-spacing:29.349333pt;}
.ws69{word-spacing:-29.239656pt;}
.ws2f{word-spacing:-25.038751pt;}
.ws30{word-spacing:-24.736360pt;}
.ws14{word-spacing:-20.467656pt;}
.ws2e{word-spacing:-18.666133pt;}
.ws1{word-spacing:-12.432000pt;}
.ws8{word-spacing:-12.239856pt;}
.ws4{word-spacing:-11.333200pt;}
.wsb{word-spacing:-11.106536pt;}
.ws6{word-spacing:-10.879872pt;}
.ws3{word-spacing:-10.789206pt;}
.ws7{word-spacing:-10.653208pt;}
.ws79{word-spacing:-9.333067pt;}
.ws7a{word-spacing:-9.146405pt;}
.ws7b{word-spacing:-8.959744pt;}
.ws7c{word-spacing:-8.773083pt;}
.wsf{word-spacing:-7.933200pt;}
.ws10{word-spacing:-7.774536pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:3.912221pt;}
.ws2{word-spacing:3.950400pt;}
.ws78{word-spacing:3.971153pt;}
.ws9{word-spacing:3.975687pt;}
.ws5{word-spacing:4.089600pt;}
.wse{word-spacing:4.758049pt;}
.ws13{word-spacing:4.763382pt;}
.wsd{word-spacing:5.056715pt;}
.wsc{word-spacing:5.062049pt;}
.ws12{word-spacing:7.478049pt;}
.wsa{word-spacing:7.483382pt;}
.ws6a{word-spacing:144.752715pt;}
.ws1e{word-spacing:175.781656pt;}
.ws25{word-spacing:183.945547pt;}
.ws73{word-spacing:184.561539pt;}
.ws29{word-spacing:191.821442pt;}
.ws2b{word-spacing:192.121438pt;}
.ws76{word-spacing:192.141438pt;}
.ws1c{word-spacing:200.013333pt;}
.ws21{word-spacing:203.593285pt;}
.ws6d{word-spacing:207.505233pt;}
.ws6f{word-spacing:207.525233pt;}
.ws75{word-spacing:208.181224pt;}
.ws1f{word-spacing:215.385128pt;}
.ws1b{word-spacing:220.299275pt;}
.ws6c{word-spacing:220.603005pt;}
.ws71{word-spacing:223.565019pt;}
.ws2a{word-spacing:223.897015pt;}
.ws27{word-spacing:227.528966pt;}
.ws23{word-spacing:230.532926pt;}
.ws72{word-spacing:231.140918pt;}
.ws77{word-spacing:254.100612pt;}
.ws26{word-spacing:254.888601pt;}
.ws1d{word-spacing:266.380448pt;}
.ws22{word-spacing:266.680444pt;}
.ws74{word-spacing:266.984440pt;}
.ws2d{word-spacing:269.820402pt;}
.ws19{word-spacing:270.724390pt;}
.ws28{word-spacing:277.852295pt;}
.ws20{word-spacing:277.868295pt;}
.ws70{word-spacing:278.476287pt;}
.ws17{word-spacing:281.892241pt;}
.ws24{word-spacing:289.336142pt;}
.ws6e{word-spacing:289.944134pt;}
.ws16{word-spacing:292.372102pt;}
.ws15{word-spacing:292.392101pt;}
.ws18{word-spacing:293.384088pt;}
.ws56{word-spacing:301.579979pt;}
.ws54{word-spacing:301.895975pt;}
.ws61{word-spacing:301.907975pt;}
.ws2c{word-spacing:302.419968pt;}
.ws50{word-spacing:305.203931pt;}
.ws66{word-spacing:309.743870pt;}
.ws4b{word-spacing:313.379822pt;}
.ws4e{word-spacing:316.675778pt;}
.ws46{word-spacing:317.066670pt;}
.ws65{word-spacing:321.259716pt;}
.ws57{word-spacing:324.535673pt;}
.ws67{word-spacing:325.795656pt;}
.ws58{word-spacing:329.407608pt;}
.ws49{word-spacing:332.699564pt;}
.ws5a{word-spacing:332.703564pt;}
.ws68{word-spacing:332.731564pt;}
.ws1a{word-spacing:334.714729pt;}
.ws6b{word-spacing:335.317655pt;}
.ws63{word-spacing:337.287503pt;}
.ws5d{word-spacing:337.625095pt;}
.ws59{word-spacing:341.751443pt;}
.ws60{word-spacing:348.755350pt;}
.ws52{word-spacing:348.759350pt;}
.ws4f{word-spacing:357.107239pt;}
.ws5c{word-spacing:360.227197pt;}
.ws51{word-spacing:368.275090pt;}
.ws55{word-spacing:368.579086pt;}
.ws4c{word-spacing:379.766936pt;}
.ws62{word-spacing:380.046933pt;}
.ws64{word-spacing:380.070932pt;}
.ws4a{word-spacing:391.234783pt;}
.ws53{word-spacing:391.538779pt;}
.ws5b{word-spacing:404.314609pt;}
.ws45{word-spacing:436.305534pt;}
.ws39{word-spacing:463.645818pt;}
.ws41{word-spacing:471.505713pt;}
.ws37{word-spacing:486.605512pt;}
.ws47{word-spacing:487.933494pt;}
.ws32{word-spacing:495.156575pt;}
.ws42{word-spacing:495.721390pt;}
.ws48{word-spacing:495.777390pt;}
.ws4d{word-spacing:498.237357pt;}
.ws3b{word-spacing:499.317342pt;}
.ws5f{word-spacing:507.077239pt;}
.ws3d{word-spacing:507.213237pt;}
.ws5e{word-spacing:513.137158pt;}
.ws3f{word-spacing:518.685084pt;}
.ws3a{word-spacing:538.204824pt;}
.ws44{word-spacing:541.640778pt;}
.ws3c{word-spacing:549.672671pt;}
.ws3e{word-spacing:549.692671pt;}
.ws38{word-spacing:561.160518pt;}
.ws40{word-spacing:567.708430pt;}
.ws43{word-spacing:574.240343pt;}
.ws31{word-spacing:606.539264pt;}
.ws33{word-spacing:734.358208pt;}
.ws34{word-spacing:766.085785pt;}
.ws36{word-spacing:1437.748830pt;}
.ws35{word-spacing:1443.504753pt;}
._61{margin-left:-30.618871pt;}
._63{margin-left:-29.571125pt;}
._2{margin-left:-3.680000pt;}
._1{margin-left:-2.784000pt;}
._0{margin-left:-1.706684pt;}
._4{width:0.997327pt;}
._7{width:2.352042pt;}
._6{width:3.638400pt;}
._3{width:4.851160pt;}
._8{width:6.123911pt;}
._5{width:7.162625pt;}
._9{width:8.545233pt;}
._a{width:9.442822pt;}
._10{width:10.603342pt;}
._c{width:12.443854pt;}
._b{width:13.595307pt;}
._e{width:15.086756pt;}
._d{width:16.029678pt;}
._f{width:16.927268pt;}
._9b{width:17.846302pt;}
._9a{width:19.108386pt;}
._62{width:20.458082pt;}
._11{width:21.524013pt;}
._9c{width:23.784387pt;}
._41{width:30.554307pt;}
._42{width:31.483630pt;}
._9d{width:72.954075pt;}
._4a{width:194.245410pt;}
._56{width:205.429261pt;}
._49{width:209.709204pt;}
._94{width:211.325182pt;}
._57{width:213.613152pt;}
._46{width:218.145091pt;}
._53{width:223.353022pt;}
._4c{width:225.018551pt;}
._97{width:226.640978pt;}
._45{width:229.344942pt;}
._4f{width:232.656898pt;}
._54{width:233.876808pt;}
._4e{width:237.224837pt;}
._5d{width:241.658476pt;}
._96{width:242.668764pt;}
._59{width:245.904721pt;}
._8d{width:249.086980pt;}
._43{width:252.091168pt;}
._28{width:253.596216pt;}
._8b{width:255.305263pt;}
._52{width:256.624578pt;}
._90{width:265.314764pt;}
._29{width:272.864480pt;}
._60{width:281.014922pt;}
._47{width:287.848162pt;}
._8f{width:288.756150pt;}
._37{width:291.912108pt;}
._50{width:299.340009pt;}
._92{width:300.847989pt;}
._33{width:303.383955pt;}
._5f{width:305.507927pt;}
._35{width:314.851802pt;}
._2d{width:318.951747pt;}
._79{width:320.059732pt;}
._2a{width:322.683404pt;}
._2c{width:324.851669pt;}
._27{width:328.345470pt;}
._5e{width:329.979600pt;}
._71{width:331.231584pt;}
._99{width:333.023560pt;}
._6e{width:334.012070pt;}
._1d{width:335.623503pt;}
._22{width:339.388806pt;}
._3b{width:342.391435pt;}
._95{width:343.443421pt;}
._5c{width:345.263396pt;}
._7d{width:347.283369pt;}
._91{width:348.923348pt;}
._5b{width:350.703324pt;}
._12{width:352.562252pt;}
._4b{width:355.543259pt;}
._84{width:358.759216pt;}
._98{width:365.823122pt;}
._19{width:368.812560pt;}
._3c{width:371.015053pt;}
._44{width:379.090945pt;}
._20{width:381.504391pt;}
._3e{width:382.506900pt;}
._55{width:386.462847pt;}
._74{width:390.070799pt;}
._2e{width:392.106772pt;}
._2b{width:394.646738pt;}
._39{width:397.266703pt;}
._7b{width:401.538646pt;}
._32{width:402.746630pt;}
._30{width:406.726577pt;}
._2f{width:412.346502pt;}
._3a{width:414.466474pt;}
._5a{width:418.254423pt;}
._4d{width:421.502380pt;}
._48{width:426.622312pt;}
._51{width:427.662298pt;}
._58{width:435.770190pt;}
._40{width:437.866162pt;}
._93{width:440.302129pt;}
._8e{width:443.382088pt;}
._36{width:445.086065pt;}
._3f{width:449.306009pt;}
._8c{width:452.621965pt;}
._81{width:458.201891pt;}
._31{width:471.145718pt;}
._3d{width:473.185691pt;}
._34{width:474.225677pt;}
._38{width:481.145585pt;}
._82{width:492.673431pt;}
._8a{width:494.161411pt;}
._7f{width:497.957360pt;}
._80{width:502.021306pt;}
._89{width:503.093292pt;}
._7e{width:514.581139pt;}
._6f{width:515.757123pt;}
._13{width:520.609058pt;}
._25{width:525.768990pt;}
._78{width:527.664964pt;}
._1f{width:531.248917pt;}
._1a{width:535.448861pt;}
._14{width:540.848789pt;}
._17{width:542.968760pt;}
._16{width:544.288743pt;}
._87{width:547.320702pt;}
._15{width:558.208557pt;}
._70{width:562.984493pt;}
._21{width:566.368448pt;}
._83{width:569.356408pt;}
._88{width:570.944387pt;}
._7a{width:572.436367pt;}
._1e{width:577.808296pt;}
._73{width:585.380195pt;}
._7c{width:586.972174pt;}
._26{width:594.941545pt;}
._1b{width:596.568046pt;}
._23{width:599.648005pt;}
._18{width:601.687977pt;}
._1c{width:602.727964pt;}
._24{width:609.647871pt;}
._6c{width:712.790496pt;}
._6b{width:745.122065pt;}
._6d{width:747.262036pt;}
._69{width:769.169744pt;}
._64{width:770.345729pt;}
._6a{width:782.253570pt;}
._65{width:817.573099pt;}
._67{width:823.945014pt;}
._66{width:827.024973pt;}
._68{width:841.560779pt;}
._72{width:991.430781pt;}
._77{width:1006.562579pt;}
._86{width:1061.285849pt;}
._76{width:1072.773696pt;}
._85{width:1086.205517pt;}
._75{width:1097.693364pt;}
.fs10{font-size:24.000000pt;}
.fs14{font-size:24.885867pt;}
.fs13{font-size:26.661867pt;}
.fs11{font-size:31.732800pt;}
.fsb{font-size:31.995733pt;}
.fse{font-size:34.667200pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:39.999467pt;}
.fsc{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fsf{font-size:45.332800pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y65{bottom:37.492800pt;}
.ya9{bottom:37.499574pt;}
.y5{bottom:59.133337pt;}
.y37{bottom:60.086668pt;}
.ya8{bottom:68.039522pt;}
.y1ed{bottom:68.490863pt;}
.y75{bottom:69.468359pt;}
.y157{bottom:70.375243pt;}
.y1c6{bottom:71.357467pt;}
.y243{bottom:71.358210pt;}
.y129{bottom:73.172789pt;}
.y36{bottom:74.753335pt;}
.y2ee{bottom:77.410984pt;}
.y74{bottom:80.806267pt;}
.y101{bottom:81.864996pt;}
.ya7{bottom:84.064667pt;}
.y1ec{bottom:84.516008pt;}
.y156{bottom:86.325589pt;}
.y4{bottom:86.333337pt;}
.y242{bottom:86.702705pt;}
.y1c5{bottom:88.894446pt;}
.y128{bottom:89.196800pt;}
.y260{bottom:90.408675pt;}
.y2ed{bottom:93.436129pt;}
.y100{bottom:97.815342pt;}
.yd6{bottom:99.178530pt;}
.y1f7{bottom:99.781804pt;}
.ya6{bottom:100.089811pt;}
.y147{bottom:100.535776pt;}
.y25a{bottom:100.537615pt;}
.y1eb{bottom:100.541153pt;}
.y241{bottom:102.047200pt;}
.y155{bottom:102.349600pt;}
.y308{bottom:103.863314pt;}
.y31d{bottom:104.241304pt;}
.y127{bottom:105.146400pt;}
.y25f{bottom:106.432687pt;}
.y1c4{bottom:106.583210pt;}
.y26d{bottom:107.716498pt;}
.y198{bottom:109.152800pt;}
.y2ec{bottom:109.385341pt;}
.yff{bottom:113.839353pt;}
.yd5{bottom:115.203675pt;}
.y1f6{bottom:115.731016pt;}
.y307{bottom:115.806840pt;}
.ya5{bottom:116.039024pt;}
.y31c{bottom:116.260427pt;}
.y146{bottom:116.486122pt;}
.y259{bottom:116.486827pt;}
.y1ea{bottom:116.490365pt;}
.y154{bottom:118.374800pt;}
.y2bd{bottom:119.585057pt;}
.y240{bottom:119.585183pt;}
.y62{bottom:120.644217pt;}
.y36b{bottom:120.720062pt;}
.y25e{bottom:122.457831pt;}
.y26c{bottom:123.741643pt;}
.y22{bottom:123.790666pt;}
.y1c3{bottom:124.346974pt;}
.y2eb{bottom:125.410486pt;}
.y197{bottom:126.160267pt;}
.y199{bottom:126.160533pt;}
.y306{bottom:127.825030pt;}
.y31b{bottom:128.203019pt;}
.yfe{bottom:129.864498pt;}
.y1f5{bottom:131.756161pt;}
.ya4{bottom:132.064169pt;}
.y145{bottom:132.510133pt;}
.y1e9{bottom:132.515510pt;}
.y61{bottom:134.628042pt;}
.y126{bottom:137.197643pt;}
.y23f{bottom:137.272947pt;}
.y2bc{bottom:137.273821pt;}
.y25d{bottom:138.408177pt;}
.y36a{bottom:139.390376pt;}
.y26b{bottom:139.766788pt;}
.y31a{bottom:140.222142pt;}
.y2ea{bottom:141.435631pt;}
.y1c2{bottom:142.034738pt;}
.y196{bottom:143.169296pt;}
.yfd{bottom:145.814844pt;}
.y144{bottom:148.536667pt;}
.y258{bottom:148.537117pt;}
.y1e8{bottom:148.540655pt;}
.y60{bottom:148.612934pt;}
.y305{bottom:151.863276pt;}
.y319{bottom:152.240332pt;}
.y125{bottom:153.147989pt;}
.y25c{bottom:154.433322pt;}
.y23e{bottom:154.960711pt;}
.y2bb{bottom:154.961586pt;}
.y26a{bottom:155.716000pt;}
.y2e9{bottom:157.384843pt;}
.y369{bottom:158.060690pt;}
.y153{bottom:158.816267pt;}
.y1c1{bottom:159.798501pt;}
.yfc{bottom:161.839989pt;}
.y5f{bottom:162.596759pt;}
.y1f4{bottom:163.730518pt;}
.y304{bottom:163.805868pt;}
.ya3{bottom:164.038526pt;}
.y318{bottom:164.259455pt;}
.y257{bottom:164.486329pt;}
.yd4{bottom:164.488361pt;}
.y1e7{bottom:164.489867pt;}
.y124{bottom:169.172000pt;}
.y25b{bottom:170.457333pt;}
.y23d{bottom:172.724474pt;}
.y2ba{bottom:172.725349pt;}
.y2e8{bottom:173.409988pt;}
.y19{bottom:175.052000pt;}
.y152{bottom:175.824000pt;}
.y303{bottom:175.824992pt;}
.y317{bottom:176.202981pt;}
.y5e{bottom:176.656317pt;}
.y368{bottom:176.732137pt;}
.y1c0{bottom:177.487265pt;}
.yfb{bottom:177.864000pt;}
.y1f3{bottom:179.755663pt;}
.ya2{bottom:180.063671pt;}
.y143{bottom:180.510667pt;}
.y256{bottom:180.511474pt;}
.yd3{bottom:180.513506pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y302{bottom:187.843182pt;}
.y316{bottom:188.221171pt;}
.y2e7{bottom:189.435133pt;}
.y2b9{bottom:190.413113pt;}
.y23c{bottom:190.413239pt;}
.y5d{bottom:190.640142pt;}
.y151{bottom:192.833278pt;}
.yfa{bottom:193.814667pt;}
.y1bf{bottom:195.175029pt;}
.y367{bottom:195.402450pt;}
.y1f2{bottom:195.780808pt;}
.ya1{bottom:196.088815pt;}
.y255{bottom:196.536619pt;}
.yd2{bottom:196.538651pt;}
.y1e6{bottom:196.540157pt;}
.y194{bottom:196.762866pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y301{bottom:199.862305pt;}
.y315{bottom:200.240294pt;}
.y123{bottom:201.147109pt;}
.y296{bottom:202.205677pt;}
.y5c{bottom:204.625034pt;}
.y2e6{bottom:205.384345pt;}
.y2b8{bottom:208.176876pt;}
.y23b{bottom:208.177002pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1f1{bottom:211.730020pt;}
.y300{bottom:211.805830pt;}
.ya0{bottom:212.038028pt;}
.y314{bottom:212.259417pt;}
.y142{bottom:212.485373pt;}
.y254{bottom:212.485831pt;}
.yd1{bottom:212.487863pt;}
.y1e5{bottom:212.490502pt;}
.y1be{bottom:212.938792pt;}
.y195{bottom:213.694667pt;}
.y193{bottom:213.694933pt;}
.y366{bottom:213.997965pt;}
.y269{bottom:216.869677pt;}
.y122{bottom:217.474667pt;}
.y295{bottom:217.550172pt;}
.y5b{bottom:218.608859pt;}
.y2e5{bottom:221.409490pt;}
.y23a{bottom:225.864766pt;}
.y2b7{bottom:225.865640pt;}
.yf9{bottom:225.868631pt;}
.y35{bottom:226.601334pt;}
.y9f{bottom:228.063173pt;}
.y141{bottom:228.510518pt;}
.y253{bottom:228.510976pt;}
.yd0{bottom:228.513008pt;}
.y1e4{bottom:228.515647pt;}
.y1bd{bottom:230.626556pt;}
.y192{bottom:230.703064pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y268{bottom:232.214172pt;}
.y365{bottom:232.668279pt;}
.y5a{bottom:232.668417pt;}
.y294{bottom:232.894667pt;}
.y150{bottom:234.407989pt;}
.y121{bottom:235.540000pt;}
.y2ff{bottom:235.843143pt;}
.y313{bottom:236.221133pt;}
.y2e4{bottom:237.434635pt;}
.yf8{bottom:241.817843pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y2b6{bottom:243.553404pt;}
.y239{bottom:243.553530pt;}
.y1f0{bottom:243.780310pt;}
.y9e{bottom:244.088317pt;}
.y140{bottom:244.535663pt;}
.ycf{bottom:244.538153pt;}
.y1e3{bottom:244.539659pt;}
.y356{bottom:245.904000pt;}
.y59{bottom:246.653308pt;}
.y267{bottom:247.558667pt;}
.y2fe{bottom:247.861333pt;}
.y312{bottom:248.238388pt;}
.y1bc{bottom:248.315321pt;}
.y14f{bottom:250.431851pt;}
.y293{bottom:250.433128pt;}
.y364{bottom:251.338592pt;}
.y2fd{bottom:251.942667pt;}
.y2e3{bottom:253.384980pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y355{bottom:257.846592pt;}
.y1ef{bottom:259.730655pt;}
.y2fc{bottom:259.805353pt;}
.y9d{bottom:260.037530pt;}
.y311{bottom:260.257512pt;}
.y13f{bottom:260.486008pt;}
.y252{bottom:260.486369pt;}
.y1e2{bottom:260.490004pt;}
.y58{bottom:260.637134pt;}
.y2b5{bottom:261.317168pt;}
.y238{bottom:261.317293pt;}
.y120{bottom:263.206841pt;}
.y266{bottom:265.097128pt;}
.y1bb{bottom:266.079084pt;}
.y14e{bottom:266.456996pt;}
.y292{bottom:268.120892pt;}
.y354{bottom:269.865716pt;}
.y363{bottom:270.010039pt;}
.y2fb{bottom:271.824477pt;}
.y310{bottom:272.201038pt;}
.y57{bottom:274.620959pt;}
.y1ee{bottom:275.754667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y9c{bottom:276.062675pt;}
.y13e{bottom:276.510020pt;}
.y251{bottom:276.511514pt;}
.yce{bottom:276.512510pt;}
.y1e1{bottom:276.515149pt;}
.y237{bottom:279.005057pt;}
.y2b4{bottom:279.005932pt;}
.y11f{bottom:279.533333pt;}
.y353{bottom:281.883906pt;}
.y14d{bottom:282.407342pt;}
.y265{bottom:282.784892pt;}
.y1ba{bottom:283.766848pt;}
.y34{bottom:283.801334pt;}
.y2fa{bottom:283.842667pt;}
.y30f{bottom:284.219228pt;}
.y190{bottom:284.296267pt;}
.y2e2{bottom:285.434137pt;}
.y291{bottom:285.809657pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2f9{bottom:287.999939pt;}
.y56{bottom:288.605851pt;}
.y362{bottom:288.680353pt;}
.yf7{bottom:291.178462pt;}
.y9b{bottom:292.087819pt;}
.y13d{bottom:292.535165pt;}
.ycd{bottom:292.537655pt;}
.y1e0{bottom:292.540294pt;}
.y191{bottom:292.837333pt;}
.y352{bottom:293.903029pt;}
.y11e{bottom:295.181508pt;}
.y2f7{bottom:295.862285pt;}
.y30e{bottom:296.238351pt;}
.y2b3{bottom:296.693696pt;}
.y236{bottom:296.693821pt;}
.y14c{bottom:298.431353pt;}
.y2f8{bottom:299.942667pt;}
.y264{bottom:300.473657pt;}
.y18f{bottom:301.305157pt;}
.y2e1{bottom:301.384482pt;}
.y1b9{bottom:301.455612pt;}
.y55{bottom:302.665408pt;}
.y290{bottom:303.573420pt;}
.y351{bottom:305.846554pt;}
.yf6{bottom:307.203607pt;}
.y361{bottom:307.350667pt;}
.y2f6{bottom:307.805810pt;}
.y9a{bottom:308.037032pt;}
.y250{bottom:308.485871pt;}
.ycc{bottom:308.486867pt;}
.y1df{bottom:308.489506pt;}
.y10{bottom:309.452000pt;}
.y11d{bottom:311.508000pt;}
.y14b{bottom:314.456498pt;}
.y2b2{bottom:314.457459pt;}
.y235{bottom:314.457585pt;}
.y54{bottom:316.649233pt;}
.y2e0{bottom:317.409627pt;}
.y350{bottom:317.864744pt;}
.y263{bottom:318.237420pt;}
.y1b8{bottom:319.219375pt;}
.y2f5{bottom:319.824000pt;}
.y30d{bottom:320.200066pt;}
.y28f{bottom:321.261184pt;}
.y218{bottom:323.151010pt;}
.yf5{bottom:323.152820pt;}
.y99{bottom:324.062176pt;}
.y13c{bottom:324.510655pt;}
.y24f{bottom:324.511016pt;}
.ycb{bottom:324.512012pt;}
.y1de{bottom:324.514651pt;}
.y34f{bottom:329.883867pt;}
.y14a{bottom:330.406844pt;}
.y53{bottom:330.634125pt;}
.y2f3{bottom:331.842982pt;}
.y2b1{bottom:332.145223pt;}
.y234{bottom:332.145349pt;}
.y30c{bottom:332.219190pt;}
.y2df{bottom:333.433639pt;}
.y262{bottom:335.925184pt;}
.y2f4{bottom:336.000000pt;}
.y1b7{bottom:336.907139pt;}
.y217{bottom:338.495505pt;}
.y28e{bottom:339.024947pt;}
.y11c{bottom:339.176847pt;}
.yf4{bottom:339.177964pt;}
.y13b{bottom:340.534667pt;}
.y24e{bottom:340.536161pt;}
.yca{bottom:340.537157pt;}
.y1dd{bottom:340.539796pt;}
.y33{bottom:341.001334pt;}
.y34e{bottom:341.902991pt;}
.y360{bottom:342.199294pt;}
.y18e{bottom:342.957345pt;}
.yf{bottom:343.809333pt;}
.y30b{bottom:344.237380pt;}
.y2f2{bottom:344.240095pt;}
.y52{bottom:344.617951pt;}
.y149{bottom:346.431989pt;}
.y2de{bottom:349.383984pt;}
.y2b0{bottom:349.908986pt;}
.y233{bottom:349.909112pt;}
.y261{bottom:353.688947pt;}
.y216{bottom:353.840000pt;}
.y34d{bottom:353.845583pt;}
.y1b6{bottom:354.670903pt;}
.y11b{bottom:355.201992pt;}
.yf3{bottom:355.203109pt;}
.y98{bottom:356.036534pt;}
.y13a{bottom:356.485333pt;}
.yc9{bottom:356.486369pt;}
.y1dc{bottom:356.489008pt;}
.y28d{bottom:356.712711pt;}
.y35f{bottom:358.148572pt;}
.y51{bottom:358.601776pt;}
.y18d{bottom:358.982490pt;}
.y148{bottom:362.456000pt;}
.ye{bottom:362.706666pt;}
.y2dd{bottom:365.409129pt;}
.y34c{bottom:365.864706pt;}
.y232{bottom:367.596876pt;}
.y2af{bottom:367.597750pt;}
.y30a{bottom:368.200028pt;}
.y2f1{bottom:368.201810pt;}
.y35e{bottom:370.167695pt;}
.y215{bottom:371.376711pt;}
.y97{bottom:372.061678pt;}
.y1b5{bottom:372.358667pt;}
.y24d{bottom:372.510518pt;}
.yc8{bottom:372.511514pt;}
.y1db{bottom:372.514153pt;}
.y50{bottom:372.661333pt;}
.y28c{bottom:374.401475pt;}
.y18c{bottom:374.931703pt;}
.y34b{bottom:377.882896pt;}
.y309{bottom:380.218218pt;}
.y2f0{bottom:380.220000pt;}
.y2dc{bottom:381.434274pt;}
.y35d{bottom:382.186818pt;}
.y2ae{bottom:385.285515pt;}
.y231{bottom:385.285640pt;}
.y11a{bottom:387.176349pt;}
.yf2{bottom:387.177466pt;}
.y96{bottom:388.086823pt;}
.y24c{bottom:388.535663pt;}
.yc7{bottom:388.536659pt;}
.y1da{bottom:388.539298pt;}
.y139{bottom:388.540345pt;}
.y214{bottom:389.065475pt;}
.y34a{bottom:389.902019pt;}
.y4f{bottom:389.972000pt;}
.y1b4{bottom:390.047168pt;}
.y28b{bottom:392.165239pt;}
.y35c{bottom:394.129410pt;}
.y2db{bottom:397.383486pt;}
.y32{bottom:400.806667pt;}
.y349{bottom:401.845545pt;}
.y2ad{bottom:403.049278pt;}
.y230{bottom:403.049403pt;}
.y119{bottom:403.201494pt;}
.yf1{bottom:403.202611pt;}
.y95{bottom:404.037169pt;}
.y24b{bottom:404.486008pt;}
.y138{bottom:404.490691pt;}
.y213{bottom:406.829239pt;}
.y18b{bottom:406.981992pt;}
.y17a{bottom:409.625333pt;}
.y28a{bottom:409.853003pt;}
.y1b3{bottom:410.002667pt;}
.y35b{bottom:410.154286pt;}
.y2da{bottom:413.408631pt;}
.y348{bottom:413.863735pt;}
.y118{bottom:419.150706pt;}
.yf0{bottom:419.151824pt;}
.y94{bottom:420.062314pt;}
.y24a{bottom:420.510020pt;}
.yc6{bottom:420.511016pt;}
.y1d9{bottom:420.513655pt;}
.y137{bottom:420.515836pt;}
.y22f{bottom:420.737168pt;}
.y2ac{bottom:420.738042pt;}
.y35a{bottom:422.173409pt;}
.y18a{bottom:422.931205pt;}
.y212{bottom:424.517003pt;}
.y347{bottom:425.882858pt;}
.y177{bottom:427.162602pt;}
.y289{bottom:427.541767pt;}
.y2d9{bottom:429.433776pt;}
.y178{bottom:431.621333pt;}
.y359{bottom:434.192532pt;}
.y117{bottom:435.175851pt;}
.yef{bottom:435.176968pt;}
.y93{bottom:436.086325pt;}
.y249{bottom:436.535165pt;}
.yc5{bottom:436.536161pt;}
.y1d8{bottom:436.538800pt;}
.y136{bottom:436.540980pt;}
.y346{bottom:437.901981pt;}
.y2ab{bottom:438.425806pt;}
.y22e{bottom:438.425932pt;}
.y189{bottom:438.956349pt;}
.y176{bottom:439.181442pt;}
.y211{bottom:442.205767pt;}
.y288{bottom:445.305530pt;}
.y2d8{bottom:445.382988pt;}
.y358{bottom:446.135125pt;}
.yd{bottom:446.990669pt;}
.y345{bottom:449.844573pt;}
.y179{bottom:451.124000pt;}
.y175{bottom:451.125283pt;}
.y116{bottom:451.200996pt;}
.yee{bottom:451.202113pt;}
.y92{bottom:452.036671pt;}
.yc4{bottom:452.485373pt;}
.y248{bottom:452.485510pt;}
.y1d7{bottom:452.488012pt;}
.y135{bottom:452.490193pt;}
.y4e{bottom:452.939867pt;}
.y188{bottom:454.981494pt;}
.y31{bottom:455.401334pt;}
.y2aa{bottom:456.189569pt;}
.y22d{bottom:456.189695pt;}
.y210{bottom:459.969530pt;}
.y2d7{bottom:461.408133pt;}
.y344{bottom:461.863697pt;}
.y357{bottom:462.160000pt;}
.yc{bottom:462.990669pt;}
.y287{bottom:462.993294pt;}
.yed{bottom:467.151325pt;}
.y115{bottom:467.151342pt;}
.y91{bottom:468.061816pt;}
.yc3{bottom:468.510518pt;}
.y247{bottom:468.510655pt;}
.y1d6{bottom:468.513157pt;}
.y134{bottom:468.515338pt;}
.y174{bottom:468.889046pt;}
.y187{bottom:470.930706pt;}
.y2a9{bottom:473.877333pt;}
.y22c{bottom:473.877459pt;}
.y343{bottom:473.881886pt;}
.y2d6{bottom:477.433278pt;}
.y20f{bottom:477.657294pt;}
.yb{bottom:478.990666pt;}
.y286{bottom:480.682058pt;}
.y114{bottom:483.175353pt;}
.yec{bottom:483.176470pt;}
.y4d{bottom:483.629867pt;}
.y1b2{bottom:484.085318pt;}
.y90{bottom:484.086960pt;}
.y246{bottom:484.534667pt;}
.yc2{bottom:484.535663pt;}
.y1d5{bottom:484.538302pt;}
.y133{bottom:484.540482pt;}
.y342{bottom:485.901010pt;}
.y173{bottom:486.576810pt;}
.y186{bottom:486.955851pt;}
.y22b{bottom:491.641222pt;}
.y2a8{bottom:491.642501pt;}
.y2d5{bottom:493.382490pt;}
.y2a6{bottom:494.287670pt;}
.ya{bottom:494.990666pt;}
.y20e{bottom:495.421057pt;}
.y341{bottom:497.844535pt;}
.y285{bottom:498.445821pt;}
.y172{bottom:498.595650pt;}
.y113{bottom:499.200498pt;}
.yeb{bottom:499.201615pt;}
.y4c{bottom:499.579067pt;}
.y1b1{bottom:500.034530pt;}
.y8f{bottom:500.036173pt;}
.y245{bottom:500.485333pt;}
.yc1{bottom:500.486008pt;}
.y1d4{bottom:500.487514pt;}
.y132{bottom:500.489695pt;}
.y185{bottom:502.980996pt;}
.y22a{bottom:509.328986pt;}
.y2d4{bottom:509.407635pt;}
.y340{bottom:509.862725pt;}
.y20d{bottom:513.109821pt;}
.y2a7{bottom:514.243168pt;}
.y112{bottom:515.150844pt;}
.y30{bottom:515.206667pt;}
.y1b0{bottom:516.059675pt;}
.y8e{bottom:516.061318pt;}
.y284{bottom:516.133586pt;}
.y171{bottom:516.284414pt;}
.yc0{bottom:516.510020pt;}
.y1d3{bottom:516.512659pt;}
.y2ef{bottom:516.514840pt;}
.y184{bottom:518.931342pt;}
.y33f{bottom:521.881848pt;}
.y4b{bottom:526.942667pt;}
.y229{bottom:527.017750pt;}
.y170{bottom:528.303254pt;}
.y20c{bottom:530.797586pt;}
.yea{bottom:531.175972pt;}
.y111{bottom:531.175989pt;}
.y1af{bottom:532.084820pt;}
.y8d{bottom:532.086462pt;}
.ybf{bottom:532.535165pt;}
.y1d2{bottom:532.537804pt;}
.y131{bottom:532.539984pt;}
.y283{bottom:533.897349pt;}
.y33e{bottom:533.900972pt;}
.y2a5{bottom:534.198667pt;}
.y2d3{bottom:541.381992pt;}
.y4a{bottom:541.606667pt;}
.y228{bottom:544.781514pt;}
.y2f{bottom:545.740001pt;}
.y33d{bottom:545.843564pt;}
.y16f{bottom:545.991018pt;}
.y110{bottom:547.200000pt;}
.ye9{bottom:547.201117pt;}
.y1ae{bottom:548.034032pt;}
.y8c{bottom:548.035675pt;}
.ybe{bottom:548.485510pt;}
.y1d1{bottom:548.487016pt;}
.y130{bottom:548.489197pt;}
.y20b{bottom:548.561349pt;}
.y183{bottom:550.980498pt;}
.y282{bottom:551.585113pt;}
.y2d2{bottom:557.407137pt;}
.y33c{bottom:557.862687pt;}
.y2e{bottom:559.073335pt;}
.y227{bottom:562.469278pt;}
.ye8{bottom:563.150329pt;}
.y10f{bottom:563.150400pt;}
.y16e{bottom:563.754781pt;}
.y1ad{bottom:564.059177pt;}
.y8b{bottom:564.060820pt;}
.ybd{bottom:564.510655pt;}
.y1d0{bottom:564.512161pt;}
.y12f{bottom:564.514341pt;}
.y20a{bottom:566.249113pt;}
.y182{bottom:566.930844pt;}
.y49{bottom:568.897333pt;}
.y281{bottom:569.273877pt;}
.y33b{bottom:569.880877pt;}
.y2d{bottom:572.406667pt;}
.y2d1{bottom:573.432282pt;}
.y9{bottom:573.786667pt;}
.ye7{bottom:579.175474pt;}
.y1ac{bottom:580.084322pt;}
.y8a{bottom:580.085964pt;}
.y226{bottom:580.158042pt;}
.ybc{bottom:580.534667pt;}
.y1cf{bottom:580.537306pt;}
.y12e{bottom:580.539486pt;}
.y16d{bottom:581.442545pt;}
.y33a{bottom:581.900000pt;}
.y181{bottom:582.955989pt;}
.y209{bottom:583.937877pt;}
.y280{bottom:587.037640pt;}
.y48{bottom:587.568000pt;}
.y2d0{bottom:589.381494pt;}
.y2a4{bottom:592.480408pt;}
.y8{bottom:592.685334pt;}
.y16c{bottom:593.461385pt;}
.y339{bottom:593.843526pt;}
.y10e{bottom:595.200000pt;}
.ye6{bottom:595.200619pt;}
.y1ab{bottom:596.033534pt;}
.y89{bottom:596.035177pt;}
.ybb{bottom:596.485067pt;}
.y1ce{bottom:596.486518pt;}
.y12d{bottom:596.488699pt;}
.y225{bottom:597.921805pt;}
.y180{bottom:598.980000pt;}
.y208{bottom:601.701640pt;}
.y27f{bottom:604.725404pt;}
.y2cf{bottom:605.406639pt;}
.y338{bottom:605.861716pt;}
.y47{bottom:606.238667pt;}
.y2a3{bottom:608.504419pt;}
.ye5{bottom:611.149831pt;}
.y16b{bottom:611.150149pt;}
.y1aa{bottom:612.058679pt;}
.y88{bottom:612.060322pt;}
.y1cd{bottom:612.511663pt;}
.y244{bottom:612.513843pt;}
.y17f{bottom:614.929333pt;}
.y224{bottom:615.609569pt;}
.y73{bottom:616.585321pt;}
.y337{bottom:617.880839pt;}
.y207{bottom:619.389404pt;}
.y2ce{bottom:621.431784pt;}
.y27e{bottom:622.414169pt;}
.y46{bottom:624.909333pt;}
.ye4{bottom:627.174976pt;}
.y10d{bottom:627.175851pt;}
.y72{bottom:627.924063pt;}
.y1a9{bottom:628.083824pt;}
.y87{bottom:628.085466pt;}
.yba{bottom:628.534667pt;}
.y1cc{bottom:628.536808pt;}
.y12c{bottom:628.538988pt;}
.y16a{bottom:628.913912pt;}
.y336{bottom:629.899962pt;}
.y223{bottom:633.297333pt;}
.y206{bottom:637.078169pt;}
.y2cd{bottom:637.380996pt;}
.y27d{bottom:640.177932pt;}
.y2a2{bottom:640.479910pt;}
.y169{bottom:640.856753pt;}
.y335{bottom:641.842554pt;}
.ye3{bottom:643.200121pt;}
.y10c{bottom:643.200996pt;}
.y45{bottom:643.580000pt;}
.y1a8{bottom:644.033036pt;}
.y86{bottom:644.034679pt;}
.y12b{bottom:644.488201pt;}
.y2c{bottom:644.726665pt;}
.y7{bottom:645.598667pt;}
.y71{bottom:650.600615pt;}
.y222{bottom:651.062501pt;}
.y2cc{bottom:653.406141pt;}
.y220{bottom:653.707670pt;}
.y334{bottom:653.861677pt;}
.y17d{bottom:654.311827pt;}
.y205{bottom:654.841932pt;}
.y2a1{bottom:656.505054pt;}
.y27c{bottom:657.865696pt;}
.y168{bottom:658.620516pt;}
.ye2{bottom:659.149333pt;}
.y10b{bottom:659.151342pt;}
.y1a7{bottom:660.058181pt;}
.y85{bottom:660.059824pt;}
.y1cb{bottom:660.511165pt;}
.yb9{bottom:660.513345pt;}
.y17e{bottom:661.114667pt;}
.y70{bottom:661.939358pt;}
.y44{bottom:662.250667pt;}
.y333{bottom:665.879867pt;}
.y17c{bottom:667.919866pt;}
.y3{bottom:668.977329pt;}
.y2cb{bottom:669.431286pt;}
.y167{bottom:670.639356pt;}
.y2b{bottom:671.393332pt;}
.y204{bottom:672.529696pt;}
.y6f{bottom:673.278101pt;}
.y221{bottom:673.663168pt;}
.ye1{bottom:675.175333pt;}
.y10a{bottom:675.175353pt;}
.y27b{bottom:675.629459pt;}
.y1a6{bottom:676.083325pt;}
.y84{bottom:676.084968pt;}
.y1ca{bottom:676.536310pt;}
.yb8{bottom:676.538490pt;}
.y332{bottom:677.898991pt;}
.y43{bottom:680.921333pt;}
.y2a0{bottom:683.794263pt;}
.y2ca{bottom:685.380498pt;}
.y2a{bottom:687.393332pt;}
.y166{bottom:688.328120pt;}
.y331{bottom:689.842516pt;}
.y203{bottom:690.293459pt;}
.y109{bottom:691.200498pt;}
.y1a5{bottom:692.032538pt;}
.y1c9{bottom:692.486655pt;}
.yb7{bottom:692.487703pt;}
.y27a{bottom:693.317223pt;}
.y21f{bottom:693.618667pt;}
.y6e{bottom:695.954653pt;}
.y42{bottom:699.592000pt;}
.y2c9{bottom:701.405643pt;}
.y330{bottom:701.860706pt;}
.y29{bottom:703.393332pt;}
.y165{bottom:706.015884pt;}
.ye0{bottom:707.149333pt;}
.y108{bottom:707.150844pt;}
.y6d{bottom:707.293396pt;}
.y202{bottom:707.981223pt;}
.y1a4{bottom:708.057683pt;}
.y83{bottom:708.059325pt;}
.y1c8{bottom:708.510667pt;}
.y17b{bottom:708.511989pt;}
.yb6{bottom:708.512847pt;}
.y279{bottom:711.005987pt;}
.y32f{bottom:713.879829pt;}
.y2c8{bottom:717.430788pt;}
.y164{bottom:718.034724pt;}
.y41{bottom:718.262667pt;}
.y6c{bottom:718.631205pt;}
.y107{bottom:723.175989pt;}
.y21e{bottom:724.081831pt;}
.y1a3{bottom:724.082827pt;}
.y82{bottom:724.084470pt;}
.y1c7{bottom:724.536000pt;}
.y29f{bottom:724.537117pt;}
.y12a{bottom:724.537992pt;}
.y201{bottom:725.669987pt;}
.y32e{bottom:725.898952pt;}
.y278{bottom:728.769750pt;}
.y6b{bottom:729.969948pt;}
.y2c7{bottom:733.380000pt;}
.y163{bottom:735.723488pt;}
.y40{bottom:736.933333pt;}
.y32d{bottom:737.841545pt;}
.y106{bottom:739.200000pt;}
.ydf{bottom:739.201831pt;}
.y21d{bottom:740.032177pt;}
.y81{bottom:740.033683pt;}
.y29e{bottom:740.486329pt;}
.yb5{bottom:740.487205pt;}
.y6a{bottom:741.308690pt;}
.y200{bottom:743.433750pt;}
.y277{bottom:746.457515pt;}
.y2c6{bottom:749.404000pt;}
.y32c{bottom:749.860668pt;}
.y28{bottom:750.034669pt;}
.y69{bottom:752.571835pt;}
.y162{bottom:753.487251pt;}
.y105{bottom:755.150400pt;}
.yde{bottom:755.152177pt;}
.y3f{bottom:755.604000pt;}
.y1a2{bottom:756.057185pt;}
.y80{bottom:756.058827pt;}
.y29d{bottom:756.511474pt;}
.yb4{bottom:756.512349pt;}
.y1ff{bottom:761.121515pt;}
.y32b{bottom:761.878858pt;}
.y68{bottom:763.909645pt;}
.y276{bottom:764.146279pt;}
.y161{bottom:765.506091pt;}
.y1a1{bottom:772.082329pt;}
.y21c{bottom:772.082976pt;}
.y7f{bottom:772.083972pt;}
.y29c{bottom:772.536619pt;}
.yb3{bottom:772.537494pt;}
.y32a{bottom:773.897981pt;}
.y3e{bottom:774.274667pt;}
.y1fe{bottom:778.810279pt;}
.y2c5{bottom:781.380310pt;}
.y2{bottom:781.661334pt;}
.y275{bottom:781.910042pt;}
.y160{bottom:783.193855pt;}
.y329{bottom:785.841506pt;}
.y67{bottom:786.435934pt;}
.y104{bottom:787.200000pt;}
.y1a0{bottom:788.032675pt;}
.y7e{bottom:788.033185pt;}
.y21b{bottom:788.033322pt;}
.y29b{bottom:788.485831pt;}
.yb2{bottom:788.486706pt;}
.y15f{bottom:795.212695pt;}
.y1fd{bottom:796.574042pt;}
.y2c4{bottom:797.405455pt;}
.y328{bottom:797.859696pt;}
.y274{bottom:799.597806pt;}
.y66{bottom:799.739288pt;}
.y19f{bottom:804.056687pt;}
.y21a{bottom:804.057333pt;}
.y7d{bottom:804.058329pt;}
.y3c{bottom:804.282667pt;}
.y29a{bottom:804.510976pt;}
.ydd{bottom:804.511663pt;}
.yb1{bottom:804.511851pt;}
.y27{bottom:806.625337pt;}
.y3d{bottom:809.574667pt;}
.y327{bottom:809.878820pt;}
.y15e{bottom:812.901459pt;}
.y2c3{bottom:813.430600pt;}
.y1fc{bottom:814.261806pt;}
.y273{bottom:817.361569pt;}
.y103{bottom:819.177012pt;}
.y219{bottom:820.081333pt;}
.y19e{bottom:820.081831pt;}
.y7c{bottom:820.083474pt;}
.y299{bottom:820.536121pt;}
.ydc{bottom:820.536808pt;}
.yb0{bottom:820.536996pt;}
.y326{bottom:821.897943pt;}
.y15d{bottom:824.920299pt;}
.y2c2{bottom:829.379812pt;}
.y3b{bottom:830.288313pt;}
.y1fb{bottom:832.025569pt;}
.y325{bottom:833.840535pt;}
.y26{bottom:834.625331pt;}
.y272{bottom:835.049333pt;}
.y102{bottom:835.202157pt;}
.y19d{bottom:836.032177pt;}
.y7b{bottom:836.032687pt;}
.y298{bottom:836.485333pt;}
.ydb{bottom:836.486020pt;}
.yaf{bottom:836.487342pt;}
.y15c{bottom:842.608063pt;}
.y2c1{bottom:845.404957pt;}
.y324{bottom:845.859658pt;}
.y1fa{bottom:849.713333pt;}
.y19c{bottom:852.057322pt;}
.y7a{bottom:852.057831pt;}
.y297{bottom:852.510667pt;}
.yda{bottom:852.511165pt;}
.yae{bottom:852.511353pt;}
.y271{bottom:852.738541pt;}
.y15b{bottom:854.626903pt;}
.y26f{bottom:855.459642pt;}
.y3a{bottom:856.971357pt;}
.y323{bottom:857.877848pt;}
.y1{bottom:859.312000pt;}
.y25{bottom:862.625331pt;}
.y1f9{bottom:867.402568pt;}
.y19b{bottom:868.081333pt;}
.y79{bottom:868.082976pt;}
.yd9{bottom:868.536310pt;}
.yad{bottom:868.536498pt;}
.y322{bottom:869.896971pt;}
.y1f8{bottom:870.123670pt;}
.y15a{bottom:872.314667pt;}
.y270{bottom:875.415141pt;}
.y321{bottom:881.840497pt;}
.y39{bottom:883.577333pt;}
.y19a{bottom:884.031733pt;}
.y78{bottom:884.033322pt;}
.yd8{bottom:884.486655pt;}
.yac{bottom:884.486844pt;}
.y2bf{bottom:889.852267pt;}
.y159{bottom:890.079168pt;}
.y320{bottom:893.858687pt;}
.y26e{bottom:895.370639pt;}
.y2c0{bottom:898.393333pt;}
.y77{bottom:900.057333pt;}
.yd7{bottom:900.510667pt;}
.yab{bottom:900.511989pt;}
.y31f{bottom:905.877810pt;}
.y2be{bottom:906.860000pt;}
.y158{bottom:910.034667pt;}
.y38{bottom:914.268000pt;}
.y76{bottom:916.081333pt;}
.yaa{bottom:916.536000pt;}
.y31e{bottom:917.896000pt;}
.y24{bottom:920.485335pt;}
.y64{bottom:989.178382pt;}
.y63{bottom:1002.557333pt;}
.y23{bottom:1035.664002pt;}
.h34{height:19.460748pt;}
.h28{height:20.849580pt;}
.h21{height:23.482256pt;}
.h22{height:23.780923pt;}
.h15{height:24.636715pt;}
.h1d{height:27.109750pt;}
.h7{height:28.560000pt;}
.h29{height:28.745845pt;}
.h32{height:28.932507pt;}
.h1b{height:29.193833pt;}
.h1c{height:30.500462pt;}
.h27{height:31.279583pt;}
.hb{height:32.645833pt;}
.h19{height:32.852923pt;}
.h1a{height:33.364916pt;}
.h1e{height:34.906256pt;}
.h23{height:34.906851pt;}
.h35{height:34.996922pt;}
.h33{height:35.123868pt;}
.h2f{height:35.127734pt;}
.h24{height:35.127809pt;}
.h2d{height:35.131329pt;}
.h26{height:35.131853pt;}
.h2e{height:35.132123pt;}
.h31{height:35.132386pt;}
.h25{height:35.132920pt;}
.h2b{height:35.133613pt;}
.h30{height:35.133986pt;}
.hf{height:36.726562pt;}
.h14{height:36.960000pt;}
.h20{height:37.036898pt;}
.h1f{height:37.056000pt;}
.h18{height:39.216000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h2a{height:40.913456pt;}
.h17{height:41.066667pt;}
.h3{height:42.840000pt;}
.h2c{height:43.334960pt;}
.h16{height:43.573333pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h12{height:52.287564pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.h13{height:69.812923pt;}
.hc{height:73.453125pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.xf{left:66.670800pt;}
.x39{left:74.683333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:207.185331pt;}
.xa{left:240.226667pt;}
.x15{left:241.892667pt;}
.x19{left:245.366667pt;}
.x17{left:246.652000pt;}
.x12{left:251.337733pt;}
.x34{left:253.681412pt;}
.x38{left:258.670667pt;}
.x8{left:260.969328pt;}
.x14{left:261.921333pt;}
.x1f{left:265.624978pt;}
.x13{left:267.362878pt;}
.x2b{left:278.247828pt;}
.x24{left:299.488512pt;}
.x33{left:309.241333pt;}
.x32{left:332.446667pt;}
.x11{left:352.176000pt;}
.xb{left:359.810667pt;}
.xc{left:364.950667pt;}
.x21{left:368.427302pt;}
.x23{left:375.608931pt;}
.x22{left:378.481893pt;}
.x20{left:384.300581pt;}
.x3{left:404.408000pt;}
.x2d{left:408.488963pt;}
.x1a{left:414.008418pt;}
.x2e{left:416.503385pt;}
.x2c{left:422.398199pt;}
.x18{left:461.478473pt;}
.x26{left:472.060281pt;}
.x27{left:477.277574pt;}
.x28{left:480.150536pt;}
.x2a{left:481.813514pt;}
.x25{left:486.044317pt;}
.xd{left:488.541333pt;}
.xe{left:499.276000pt;}
.x36{left:500.632489pt;}
.x35{left:514.314765pt;}
.x37{left:519.303289pt;}
.x1d{left:536.314667pt;}
.x2f{left:537.296774pt;}
.x31{left:540.168736pt;}
.x30{left:543.041698pt;}
.x29{left:649.170283pt;}
.x1c{left:655.520198pt;}
.x1b{left:656.427186pt;}
.x1e{left:684.541279pt;}
.x10{left:690.066667pt;}
.x16{left:732.170667pt;}
}




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