
    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_79a672fef55694e342ab1768.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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_744e3f6704170ac55e793209.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3c6c96304131d7d626a76d94.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e31c81b3859eb0295b4333e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.048000;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_1ab689de23430f70297ce034.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_0f88dd99b32144a700ecf9a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.025000;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_5be4a4b0396c1443bb01b40a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.028000;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_f712bfa5bf3dc586e346ee09.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.048000;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_744e3f6704170ac55e793209.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a9eb96f83df3c91da6d69d9d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_3564e38cecd0c0b48bd82a67.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_f8f7971129bfde157b53ffa2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_3ae748e9d34f7fc2112c2564.woff2')format("woff");}.fff{font-family:fff;line-height:1.172363;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_86c5047d8701af19d783962b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948242;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_f041f7021842d8b656faa7b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.909180;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_1ab689de23430f70297ce034.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0f88dd99b32144a700ecf9a1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_57309dcf46c71e57744e9ee0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_857812dc09f231d4678026ae.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.048000;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);}
.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);}
.v7{vertical-align:-77.039977px;}
.vd{vertical-align:-35.279847px;}
.v10{vertical-align:-25.200027px;}
.va{vertical-align:-21.599946px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-13.679969px;}
.v1{vertical-align:-8.653082px;}
.v9{vertical-align:-2.159910px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:3.600013px;}
.v6{vertical-align:13.679969px;}
.v8{vertical-align:15.839950px;}
.v2{vertical-align:23.759991px;}
.v11{vertical-align:25.200027px;}
.v4{vertical-align:33.840090px;}
.v12{vertical-align:51.844066px;}
.ve{vertical-align:65.519991px;}
.vc{vertical-align:71.279982px;}
.vb{vertical-align:84.960022px;}
.ls1{letter-spacing:-3.120000px;}
.ls2{letter-spacing:-1.800000px;}
.ls4{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.010072px;}
.ls8{letter-spacing:0.181919px;}
.ls35{letter-spacing:0.215999px;}
.ls6{letter-spacing:0.303852px;}
.ls29{letter-spacing:0.406176px;}
.ls36{letter-spacing:0.406180px;}
.ls5{letter-spacing:0.406315px;}
.ls3{letter-spacing:0.540000px;}
.ls21{letter-spacing:2.410085px;}
.ls1e{letter-spacing:2.410089px;}
.ls28{letter-spacing:2.834436px;}
.ls24{letter-spacing:3.129963px;}
.ls27{letter-spacing:3.129968px;}
.lsb{letter-spacing:3.130035px;}
.ls11{letter-spacing:3.130098px;}
.lsc{letter-spacing:3.130103px;}
.ls13{letter-spacing:3.554315px;}
.lsd{letter-spacing:3.554585px;}
.ls14{letter-spacing:4.014486px;}
.ls1d{letter-spacing:4.014621px;}
.ls16{letter-spacing:4.014756px;}
.ls17{letter-spacing:4.014760px;}
.ls12{letter-spacing:4.031508px;}
.ls25{letter-spacing:4.058207px;}
.ls2b{letter-spacing:4.058342px;}
.ls26{letter-spacing:4.058346px;}
.ls1a{letter-spacing:4.734634px;}
.lsf{letter-spacing:4.734639px;}
.ls1f{letter-spacing:13.602481px;}
.ls22{letter-spacing:18.414535px;}
.ls20{letter-spacing:18.414540px;}
.lse{letter-spacing:18.414675px;}
.ls23{letter-spacing:19.134554px;}
.ls19{letter-spacing:19.134558px;}
.ls1c{letter-spacing:22.014553px;}
.lsa{letter-spacing:22.014621px;}
.ls15{letter-spacing:22.014625px;}
.ls10{letter-spacing:22.734603px;}
.ls18{letter-spacing:22.734634px;}
.ls34{letter-spacing:119.557847px;}
.ls2d{letter-spacing:121.717896px;}
.ls32{letter-spacing:131.077973px;}
.ls2f{letter-spacing:144.757739px;}
.ls33{letter-spacing:145.477892px;}
.ls30{letter-spacing:146.198045px;}
.ls31{letter-spacing:156.997878px;}
.ls2e{letter-spacing:190.837968px;}
.ls2c{letter-spacing:429.157932px;}
.ls9{letter-spacing:471.637869px;}
.ls1b{letter-spacing:657.766320px;}
.ls7{letter-spacing:845.686297px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.313703px;}
.ws9{word-spacing:-16.522108px;}
.ws18{word-spacing:-15.173961px;}
.ws1b{word-spacing:-14.970281px;}
.ws4{word-spacing:-14.957961px;}
.wsa{word-spacing:-14.545179px;}
.ws6{word-spacing:-13.362544px;}
.ws8{word-spacing:-11.545607px;}
.ws1{word-spacing:-11.178000px;}
.wse{word-spacing:-10.592703px;}
.ws2{word-spacing:-9.936000px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:5.485822px;}
.wsb{word-spacing:6.038934px;}
.wsc{word-spacing:6.039002px;}
.ws10{word-spacing:6.039006px;}
.wsf{word-spacing:7.120466px;}
.wsd{word-spacing:7.183367px;}
.ws12{word-spacing:7.736189px;}
.ws14{word-spacing:8.407277px;}
.ws13{word-spacing:67.591488px;}
.ws15{word-spacing:72.270155px;}
.ws5{word-spacing:77.245761px;}
.ws11{word-spacing:117.991542px;}
.ws1a{word-spacing:165.617572px;}
.ws19{word-spacing:435.957288px;}
.ws17{word-spacing:449.852201px;}
.ws7{word-spacing:1086.836512px;}
._35{margin-left:-12.490886px;}
._2{margin-left:-11.286000px;}
._36{margin-left:-8.253094px;}
._4{margin-left:-6.120000px;}
._3{margin-left:-4.860000px;}
._5{margin-left:-3.690000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.242000px;}
._6{width:1.242000px;}
._13{width:2.331737px;}
._9{width:3.409056px;}
._e{width:4.525999px;}
._26{width:5.553097px;}
._16{width:6.555403px;}
._15{width:7.746496px;}
._14{width:8.890586px;}
._18{width:10.594036px;}
._c{width:12.352645px;}
._b{width:13.486315px;}
._55{width:14.486515px;}
._17{width:15.491442px;}
._a{width:16.712235px;}
._19{width:18.550093px;}
._d{width:19.592376px;}
._25{width:21.514542px;}
._3c{width:23.132250px;}
._10{width:24.330634px;}
._8{width:25.814434px;}
._7{width:27.370349px;}
._52{width:28.513436px;}
._5e{width:29.905912px;}
._11{width:33.011255px;}
._12{width:34.304360px;}
._3b{width:39.684561px;}
._22{width:44.393012px;}
._23{width:45.591823px;}
._3d{width:65.550869px;}
._32{width:68.507657px;}
._2f{width:78.349346px;}
._1c{width:82.670944px;}
._1d{width:83.783099px;}
._1a{width:85.967808px;}
._21{width:87.081770px;}
._1f{width:93.260917px;}
._34{width:105.842568px;}
._44{width:120.068606px;}
._42{width:130.804994px;}
._31{width:136.619466px;}
._f{width:142.552826px;}
._4c{width:145.716644px;}
._43{width:148.102508px;}
._49{width:152.874236px;}
._46{width:154.067168px;}
._41{width:157.049498px;}
._4e{width:168.889209px;}
._4a{width:171.961148px;}
._47{width:176.929989px;}
._40{width:178.475885px;}
._5a{width:182.195530px;}
._3f{width:188.368179px;}
._48{width:190.709752px;}
._57{width:194.615498px;}
._56{width:195.695495px;}
._20{width:197.880549px;}
._1b{width:199.398584px;}
._1e{width:202.240494px;}
._4f{width:210.493317px;}
._59{width:211.841453px;}
._58{width:218.375436px;}
._3a{width:219.418034px;}
._30{width:235.314552px;}
._37{width:250.888347px;}
._29{width:288.608556px;}
._2d{width:295.049923px;}
._4b{width:298.487152px;}
._5c{width:301.272929px;}
._39{width:330.700044px;}
._28{width:340.650819px;}
._2b{width:343.743356px;}
._38{width:352.512898px;}
._33{width:371.229582px;}
._27{width:380.971921px;}
._51{width:388.099178px;}
._5d{width:391.182697px;}
._45{width:421.392466px;}
._4d{width:450.042312px;}
._2e{width:471.387080px;}
._5b{width:490.218441px;}
._3e{width:574.708179px;}
._53{width:600.115516px;}
._50{width:604.591125px;}
._2a{width:621.100046px;}
._54{width:675.129073px;}
._24{width:845.802159px;}
._2c{width:873.405164px;}
.fc6{color:rgb(31,55,99);}
.fc4{color:rgb(47,84,150);}
.fc3{color:transparent;}
.fc5{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:35.931825px;}
.fs12{font-size:41.680890px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs14{font-size:48.148650px;}
.fs10{font-size:48.240229px;}
.fse{font-size:53.897850px;}
.fsf{font-size:53.999861px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:59.646600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.114450px;}
.fs11{font-size:66.240183px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:156.000000px;}
.fs7{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y265{bottom:1.981045px;}
.y1a4{bottom:3.239988px;}
.y119{bottom:3.239989px;}
.y19c{bottom:3.240004px;}
.y124{bottom:3.240006px;}
.y263{bottom:4.495792px;}
.ya3{bottom:27.720017px;}
.y25{bottom:40.493774px;}
.y21{bottom:53.314124px;}
.y3a{bottom:53.320350px;}
.y24{bottom:56.993774px;}
.ya2{bottom:58.500000px;}
.y23{bottom:73.493774px;}
.y22{bottom:89.993774px;}
.y4{bottom:97.125005px;}
.y103{bottom:110.879998px;}
.y21d{bottom:111.600013px;}
.y1bd{bottom:113.220017px;}
.y26b{bottom:114.299973px;}
.y116{bottom:115.379998px;}
.ye9{bottom:115.740006px;}
.y1d6{bottom:115.919975px;}
.y272{bottom:116.639992px;}
.y1e7{bottom:119.700027px;}
.y239{bottom:123.659981px;}
.y115{bottom:126.360008px;}
.yab{bottom:126.720017px;}
.y1fa{bottom:127.980011px;}
.y1bc{bottom:130.320030px;}
.y1d5{bottom:130.500000px;}
.y102{bottom:130.860008px;}
.y2cb{bottom:131.759994px;}
.y26a{bottom:133.019989px;}
.y2a7{bottom:134.279983px;}
.y247{bottom:135.539977px;}
.y110{bottom:136.620002px;}
.y20{bottom:139.264499px;}
.y114{bottom:142.019989px;}
.y101{bottom:143.460022px;}
.y1bb{bottom:147.600013px;}
.y21c{bottom:149.580025px;}
.y269{bottom:150.299973px;}
.y2ca{bottom:152.100013px;}
.y2a6{bottom:153.179970px;}
.ye8{bottom:153.539977px;}
.yaa{bottom:154.259994px;}
.y271{bottom:154.620002px;}
.y1e6{bottom:157.679970px;}
.y14d{bottom:159.299973px;}
.y238{bottom:161.639992px;}
.y113{bottom:162.000000px;}
.y1f9{bottom:165.960022px;}
.y1d4{bottom:168.299973px;}
.y2a5{bottom:172.259994px;}
.y2c9{bottom:172.620002px;}
.y246{bottom:173.340019px;}
.y261{bottom:173.879998px;}
.y10f{bottom:174.600013px;}
.y1ba{bottom:174.960022px;}
.y268{bottom:178.019989px;}
.y199{bottom:182.879998px;}
.y21b{bottom:187.559967px;}
.y160{bottom:189.360008px;}
.y2a4{bottom:191.159981px;}
.y14c{bottom:191.340019px;}
.ye7{bottom:191.519989px;}
.yea{bottom:191.700027px;}
.y270{bottom:192.600013px;}
.y1e5{bottom:195.480011px;}
.y17{bottom:196.933500px;}
.y21e{bottom:199.620002px;}
.y17a{bottom:200.159981px;}
.y1f8{bottom:203.940033px;}
.y1d3{bottom:206.279983px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y2a3{bottom:210.240006px;}
.y2c8{bottom:210.779983px;}
.y245{bottom:211.320030px;}
.y260{bottom:211.679970px;}
.y10e{bottom:212.399986px;}
.y8c{bottom:213.840019px;}
.y100{bottom:214.379998px;}
.yac{bottom:214.381702px;}
.y198{bottom:220.860008px;}
.y14b{bottom:221.940033px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y279{bottom:224.639992px;}
.y21a{bottom:225.539977px;}
.y15f{bottom:227.340019px;}
.y2a2{bottom:229.139992px;}
.ye6{bottom:229.500000px;}
.y2c7{bottom:229.679970px;}
.y26f{bottom:230.399986px;}
.y1e4{bottom:233.460022px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y237{bottom:237.600013px;}
.y179{bottom:238.139992px;}
.y14a{bottom:240.659981px;}
.y1f7{bottom:241.740006px;}
.y1d2{bottom:243.539977px;}
.y8b{bottom:246.240006px;}
.y1ca{bottom:247.139992px;}
.y2a1{bottom:248.220017px;}
.y2c6{bottom:248.580025px;}
.y244{bottom:249.299973px;}
.y25f{bottom:249.659981px;}
.y10d{bottom:250.379998px;}
.yff{bottom:252.360008px;}
.y278{bottom:257.039977px;}
.y197{bottom:258.659981px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1f6{bottom:261.000000px;}
.y219{bottom:262.620002px;}
.y15e{bottom:265.320030px;}
.y2a0{bottom:267.120002px;}
.ye5{bottom:267.480011px;}
.y148{bottom:267.659981px;}
.y26e{bottom:268.379998px;}
.y226{bottom:270.899986px;}
.y1e3{bottom:271.440033px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yad{bottom:275.223864px;}
.y236{bottom:275.399986px;}
.y178{bottom:275.940033px;}
.y147{bottom:276.299973px;}
.y8a{bottom:278.639992px;}
.y1f5{bottom:279.720017px;}
.y1d1{bottom:280.440033px;}
.y149{bottom:284.940033px;}
.y1a{bottom:285.118502px;}
.y1c9{bottom:285.120002px;}
.y11{bottom:285.133499px;}
.y29f{bottom:286.019989px;}
.y2c5{bottom:286.559967px;}
.y243{bottom:287.279983px;}
.y25e{bottom:287.639992px;}
.y10c{bottom:288.360008px;}
.y277{bottom:289.440033px;}
.yfe{bottom:289.620002px;}
.y196{bottom:296.639992px;}
.y1f4{bottom:297.000000px;}
.y1d0{bottom:299.159981px;}
.y146{bottom:302.039977px;}
.y15d{bottom:303.299973px;}
.y225{bottom:303.480011px;}
.y29e{bottom:305.100013px;}
.ye4{bottom:305.460022px;}
.y111{bottom:305.639992px;}
.y26d{bottom:306.360008px;}
.y112{bottom:307.620002px;}
.y1e2{bottom:309.419975px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y89{bottom:311.220017px;}
.y235{bottom:313.379998px;}
.y177{bottom:313.919975px;}
.y145{bottom:319.320030px;}
.y276{bottom:322.019989px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y1c8{bottom:323.100013px;}
.y29d{bottom:324.000000px;}
.y1f3{bottom:324.539977px;}
.y242{bottom:325.259994px;}
.y1cf{bottom:325.440033px;}
.y25d{bottom:325.620002px;}
.y10b{bottom:326.340019px;}
.y195{bottom:334.620002px;}
.yae{bottom:336.066025px;}
.y144{bottom:336.600013px;}
.y218{bottom:341.279983px;}
.y42{bottom:341.550150px;}
.y15c{bottom:341.639992px;}
.y1ce{bottom:342.720017px;}
.y29c{bottom:343.080025px;}
.ye3{bottom:343.440033px;}
.y88{bottom:343.620002px;}
.y26c{bottom:344.340019px;}
.y9f{bottom:344.519989px;}
.yfd{bottom:345.240006px;}
.y1e1{bottom:347.399986px;}
.ye{bottom:348.133500px;}
.y234{bottom:351.720017px;}
.y176{bottom:352.440033px;}
.y143{bottom:353.879998px;}
.y275{bottom:354.419975px;}
.y41{bottom:357.750150px;}
.y1cd{bottom:360.179970px;}
.y1c7{bottom:361.080025px;}
.y29b{bottom:361.980011px;}
.y2c4{bottom:362.519989px;}
.y241{bottom:363.059967px;}
.y25c{bottom:363.600013px;}
.y10a{bottom:364.320030px;}
.y203{bottom:366.114170px;}
.y142{bottom:371.159981px;}
.y194{bottom:372.600013px;}
.y40{bottom:373.950150px;}
.y1cc{bottom:375.659981px;}
.y87{bottom:376.200027px;}
.y224{bottom:379.080025px;}
.y217{bottom:379.259994px;}
.y13e{bottom:379.799973px;}
.y29a{bottom:380.879998px;}
.ye2{bottom:381.240006px;}
.y2c3{bottom:381.419975px;}
.y9e{bottom:382.320030px;}
.yfc{bottom:383.220017px;}
.y233{bottom:385.200027px;}
.y1e0{bottom:385.379998px;}
.yd{bottom:386.785499px;}
.y274{bottom:387.000000px;}
.y141{bottom:388.259994px;}
.y3f{bottom:390.150150px;}
.y175{bottom:390.600013px;}
.yaf{bottom:396.722713px;}
.y204{bottom:398.513018px;}
.y1c6{bottom:398.879998px;}
.y299{bottom:399.960022px;}
.y2c2{bottom:400.500000px;}
.y240{bottom:401.039977px;}
.y25b{bottom:401.580025px;}
.y109{bottom:402.299973px;}
.y140{bottom:405.539977px;}
.y3e{bottom:406.350150px;}
.yc{bottom:408.044999px;}
.y86{bottom:408.600013px;}
.y193{bottom:409.679970px;}
.y223{bottom:417.059967px;}
.y216{bottom:417.240006px;}
.y15b{bottom:417.779983px;}
.y2b{bottom:417.894074px;}
.y298{bottom:418.860008px;}
.ye1{bottom:419.220017px;}
.y273{bottom:419.399986px;}
.y9d{bottom:420.299973px;}
.yfb{bottom:421.200027px;}
.y3d{bottom:422.550150px;}
.y13f{bottom:422.820030px;}
.y1df{bottom:423.179970px;}
.y2d{bottom:423.404924px;}
.y174{bottom:429.120002px;}
.y205{bottom:430.919270px;}
.y1fb{bottom:431.638547px;}
.y1c5{bottom:436.860008px;}
.y297{bottom:437.940033px;}
.y23f{bottom:438.299973px;}
.y2c1{bottom:438.480011px;}
.y3c{bottom:438.750150px;}
.y25a{bottom:439.379998px;}
.y108{bottom:440.100013px;}
.y85{bottom:441.179970px;}
.y192{bottom:446.580025px;}
.y3b{bottom:454.950150px;}
.y222{bottom:455.039977px;}
.y215{bottom:455.220017px;}
.y15a{bottom:455.759994px;}
.y296{bottom:456.840019px;}
.ye0{bottom:457.200027px;}
.y4f{bottom:457.200150px;}
.y13d{bottom:457.379998px;}
.yb0{bottom:457.564874px;}
.y9c{bottom:458.100013px;}
.yfa{bottom:459.179970px;}
.y1de{bottom:461.159981px;}
.y23b{bottom:462.779983px;}
.y206{bottom:463.318190px;}
.y2a{bottom:468.894074px;}
.y2c{bottom:470.468924px;}
.y23e{bottom:470.700027px;}
.y172{bottom:471.779983px;}
.y84{bottom:473.580025px;}
.y13c{bottom:474.659981px;}
.y1c4{bottom:474.840019px;}
.y4e{bottom:475.200150px;}
.y295{bottom:475.740006px;}
.y2c0{bottom:476.279983px;}
.y259{bottom:477.360008px;}
.y107{bottom:478.080025px;}
.y173{bottom:480.600013px;}
.y6c{bottom:482.264100px;}
.y138{bottom:483.299973px;}
.y13b{bottom:491.759994px;}
.y221{bottom:493.019989px;}
.y214{bottom:493.200027px;}
.y4d{bottom:493.200150px;}
.y159{bottom:493.740006px;}
.y294{bottom:494.820030px;}
.ydf{bottom:495.179970px;}
.y23a{bottom:495.360008px;}
.y207{bottom:495.717038px;}
.y9b{bottom:496.080025px;}
.yf9{bottom:497.159981px;}
.y6b{bottom:497.264100px;}
.y1dd{bottom:499.139992px;}
.y191{bottom:502.559967px;}
.y23d{bottom:502.740006px;}
.yb{bottom:502.864502px;}
.y83{bottom:505.980011px;}
.y13a{bottom:509.039977px;}
.y4c{bottom:511.200150px;}
.y1c3{bottom:512.820030px;}
.y1fc{bottom:513.718600px;}
.y293{bottom:513.720017px;}
.y2bf{bottom:514.259994px;}
.y258{bottom:514.620002px;}
.y106{bottom:516.059967px;}
.yb1{bottom:518.398748px;}
.y170{bottom:518.580025px;}
.ya{bottom:520.864502px;}
.y6a{bottom:525.019950px;}
.y139{bottom:526.320030px;}
.y171{bottom:527.399986px;}
.y208{bottom:528.119624px;}
.y4b{bottom:529.200150px;}
.y23c{bottom:530.279983px;}
.y213{bottom:531.000000px;}
.y158{bottom:531.720017px;}
.y292{bottom:532.799973px;}
.yde{bottom:533.159981px;}
.y47{bottom:533.244300px;}
.y2be{bottom:533.340019px;}
.y9a{bottom:534.059967px;}
.yf8{bottom:534.960022px;}
.y1dc{bottom:537.120002px;}
.y82{bottom:538.559967px;}
.y9{bottom:538.864499px;}
.yb2{bottom:540.178144px;}
.y190{bottom:540.360008px;}
.y16f{bottom:541.799973px;}
.y251{bottom:543.060229px;}
.y137{bottom:543.600013px;}
.y4a{bottom:547.200150px;}
.y1c2{bottom:550.799973px;}
.y257{bottom:551.519989px;}
.y291{bottom:551.700027px;}
.y2bd{bottom:552.240006px;}
.y1fd{bottom:552.597710px;}
.y69{bottom:552.775950px;}
.y105{bottom:554.039977px;}
.y8{bottom:556.864499px;}
.y248{bottom:559.086494px;}
.y209{bottom:560.518545px;}
.y136{bottom:560.879998px;}
.y46{bottom:564.000150px;}
.y49{bottom:565.200150px;}
.y68{bottom:567.775950px;}
.y220{bottom:567.899986px;}
.y212{bottom:568.980011px;}
.y157{bottom:569.519989px;}
.y1c1{bottom:569.700027px;}
.y290{bottom:570.600013px;}
.y81{bottom:570.960022px;}
.y2bc{bottom:571.139992px;}
.y99{bottom:572.039977px;}
.yf7{bottom:572.940033px;}
.y256{bottom:573.299973px;}
.y1db{bottom:575.100013px;}
.y135{bottom:578.159981px;}
.y18f{bottom:578.340019px;}
.y45{bottom:582.000150px;}
.y67{bottom:582.775950px;}
.y48{bottom:583.200150px;}
.y1c0{bottom:586.980011px;}
.ya9{bottom:588.779983px;}
.y17d{bottom:589.679970px;}
.y2bb{bottom:590.220017px;}
.y255{bottom:590.580025px;}
.y104{bottom:591.120002px;}
.y17c{bottom:591.840019px;}
.y20a{bottom:592.917429px;}
.y134{bottom:595.259994px;}
.y80{bottom:603.539977px;}
.y1b9{bottom:605.159981px;}
.y21f{bottom:606.600013px;}
.y211{bottom:606.960022px;}
.y156{bottom:607.500000px;}
.y249{bottom:607.503126px;}
.y29{bottom:608.364074px;}
.y28f{bottom:608.580025px;}
.ydd{bottom:608.940033px;}
.y2ba{bottom:609.120002px;}
.y98{bottom:610.019989px;}
.y1fe{bottom:610.205780px;}
.y66{bottom:610.531800px;}
.y17b{bottom:610.559967px;}
.yf6{bottom:610.919975px;}
.y133{bottom:612.540012px;}
.y1da{bottom:612.899986px;}
.y1bf{bottom:613.079990px;}
.y18e{bottom:616.319995px;}
.ya8{bottom:621.540012px;}
.y20b{bottom:625.316313px;}
.y65{bottom:625.531800px;}
.y28e{bottom:627.660015px;}
.y1cb{bottom:628.019989px;}
.y2b9{bottom:628.199993px;}
.y132{bottom:629.819995px;}
.y1be{bottom:630.540012px;}
.y1ff{bottom:635.402843px;}
.y7f{bottom:635.939999px;}
.y1b8{bottom:637.379998px;}
.y64{bottom:640.531800px;}
.ya7{bottom:641.519989px;}
.y16e{bottom:643.319995px;}
.y210{bottom:644.939999px;}
.y155{bottom:645.480011px;}
.y7{bottom:645.510000px;}
.y200{bottom:645.661300px;}
.y28d{bottom:646.560001px;}
.ydc{bottom:646.920010px;}
.y12f{bottom:647.100013px;}
.y97{bottom:647.819995px;}
.yf5{bottom:648.899986px;}
.y1d9{bottom:650.879998px;}
.y18d{bottom:654.300007px;}
.y1b7{bottom:654.660015px;}
.y24a{bottom:655.919758px;}
.y28{bottom:656.364074px;}
.y20c{bottom:657.715197px;}
.ya6{bottom:660.240006px;}
.y16c{bottom:660.959988px;}
.y12e{bottom:664.379998px;}
.y28c{bottom:665.639992px;}
.y2b8{bottom:666.000000px;}
.y201{bottom:666.359506px;}
.y6{bottom:666.771000px;}
.y63{bottom:668.287650px;}
.y7e{bottom:668.519989px;}
.y1d8{bottom:669.779983px;}
.y1b6{bottom:671.939999px;}
.y202{bottom:674.096600px;}
.y44{bottom:676.344000px;}
.y131{bottom:681.660015px;}
.y169{bottom:682.199993px;}
.y20f{bottom:682.920010px;}
.y62{bottom:683.287650px;}
.y154{bottom:683.459988px;}
.y28b{bottom:684.540012px;}
.ydb{bottom:684.899986px;}
.y2b7{bottom:685.079990px;}
.y96{bottom:685.800007px;}
.yf4{bottom:686.879998px;}
.y1b5{bottom:689.220017px;}
.y20d{bottom:690.117783px;}
.y267{bottom:690.300007px;}
.y16a{bottom:691.019989px;}
.y227{bottom:691.199810px;}
.y18c{bottom:692.279983px;}
.y1d7{bottom:697.500000px;}
.y61{bottom:698.287650px;}
.y130{bottom:698.759994px;}
.y7d{bottom:700.920010px;}
.y28a{bottom:703.439999px;}
.y2b6{bottom:703.980011px;}
.y24b{bottom:704.340494px;}
.y1b4{bottom:706.500000px;}
.yb3{bottom:706.856406px;}
.y16d{bottom:706.860008px;}
.yc4{bottom:707.401103px;}
.y16b{bottom:709.019989px;}
.y60{bottom:713.287650px;}
.y12d{bottom:716.040012px;}
.y27{bottom:716.364074px;}
.y228{bottom:718.376175px;}
.y20e{bottom:720.000000px;}
.y7c{bottom:721.259994px;}
.y153{bottom:721.439999px;}
.y289{bottom:722.519989px;}
.yda{bottom:722.879998px;}
.y266{bottom:723.060001px;}
.y95{bottom:723.779983px;}
.yf3{bottom:724.680004px;}
.y5{bottom:726.298500px;}
.y1f2{bottom:728.819995px;}
.y18b{bottom:730.079990px;}
.yc5{bottom:730.793986px;}
.y12c{bottom:733.319995px;}
.ybb{bottom:736.561202px;}
.y168{bottom:740.160015px;}
.yb4{bottom:740.878384px;}
.y5f{bottom:741.043650px;}
.y288{bottom:741.420010px;}
.y7b{bottom:741.600013px;}
.y2b5{bottom:741.959988px;}
.y229{bottom:745.559872px;}
.y12b{bottom:750.600013px;}
.y3{bottom:752.599495px;}
.y24c{bottom:752.942520px;}
.yc6{bottom:754.378222px;}
.y5e{bottom:756.043650px;}
.y1b3{bottom:757.079990px;}
.y152{bottom:759.240006px;}
.y39{bottom:759.593924px;}
.y287{bottom:760.500000px;}
.yd9{bottom:760.680004px;}
.y2b4{bottom:760.860008px;}
.y94{bottom:761.759994px;}
.y7a{bottom:762.120002px;}
.y18a{bottom:762.300007px;}
.yf2{bottom:762.660015px;}
.y1e8{bottom:765.903591px;}
.ybc{bottom:766.439023px;}
.y12a{bottom:767.879998px;}
.y22a{bottom:772.739903px;}
.yb5{bottom:774.896661px;}
.y26{bottom:776.364074px;}
.y38{bottom:777.593924px;}
.yc7{bottom:777.774770px;}
.y167{bottom:778.319995px;}
.y286{bottom:779.399986px;}
.y2b3{bottom:779.939999px;}
.y189{bottom:780.480011px;}
.y79{bottom:782.639992px;}
.y5d{bottom:783.799500px;}
.y129{bottom:784.980011px;}
.y1b2{bottom:786.959988px;}
.y37{bottom:795.593924px;}
.ybd{bottom:796.136451px;}
.y166{bottom:797.399986px;}
.y188{bottom:797.579990px;}
.y285{bottom:798.300007px;}
.yd8{bottom:798.660015px;}
.y1e9{bottom:798.663096px;}
.y5c{bottom:798.799500px;}
.y2b2{bottom:798.839985px;}
.y151{bottom:799.379998px;}
.y93{bottom:799.740006px;}
.y22b{bottom:799.916268px;}
.yf1{bottom:800.639992px;}
.yc8{bottom:801.178651px;}
.y24d{bottom:801.359152px;}
.y128{bottom:802.259994px;}
.y1b0{bottom:807.300007px;}
.yb6{bottom:808.922306px;}
.y1b1{bottom:810.540012px;}
.y36{bottom:813.593924px;}
.y5b{bottom:813.799500px;}
.y187{bottom:814.860008px;}
.y78{bottom:815.220017px;}
.y165{bottom:816.660015px;}
.y284{bottom:817.379998px;}
.y2b1{bottom:817.920010px;}
.y127{bottom:819.540012px;}
.yc9{bottom:824.578865px;}
.ybe{bottom:826.015709px;}
.y22c{bottom:827.099246px;}
.y1af{bottom:827.819995px;}
.y1ea{bottom:831.417653px;}
.y186{bottom:832.139992px;}
.y164{bottom:835.920010px;}
.y283{bottom:836.279983px;}
.yd7{bottom:836.639992px;}
.y126{bottom:836.819995px;}
.y92{bottom:837.720017px;}
.y150{bottom:837.899986px;}
.yf0{bottom:838.620002px;}
.y5a{bottom:841.555350px;}
.y1ae{bottom:841.860008px;}
.yb7{bottom:842.939863px;}
.y1ad{bottom:845.100013px;}
.y77{bottom:847.800007px;}
.yca{bottom:847.980589px;}
.y185{bottom:849.420010px;}
.y35{bottom:849.593924px;}
.y24e{bottom:849.782342px;}
.y123{bottom:850.860008px;}
.y125{bottom:854.100013px;}
.y22d{bottom:854.275611px;}
.y282{bottom:855.360008px;}
.ybf{bottom:855.718314px;}
.y2b0{bottom:855.899986px;}
.y59{bottom:856.555350px;}
.y1ac{bottom:859.139992px;}
.y1ab{bottom:862.379998px;}
.y1eb{bottom:864.178807px;}
.y184{bottom:866.699993px;}
.y76{bottom:868.139992px;}
.ycb{bottom:871.376383px;}
.y122{bottom:871.379998px;}
.y281{bottom:874.259994px;}
.y163{bottom:874.439999px;}
.yd6{bottom:874.620002px;}
.y2af{bottom:874.800007px;}
.y91{bottom:875.519989px;}
.y1aa{bottom:876.240006px;}
.yef{bottom:876.600013px;}
.yb8{bottom:876.958859px;}
.y14f{bottom:878.579990px;}
.y2{bottom:879.369000px;}
.y1a9{bottom:879.480011px;}
.y121{bottom:880.019989px;}
.y22e{bottom:881.457834px;}
.y183{bottom:883.980011px;}
.y58{bottom:884.311350px;}
.yc0{bottom:885.420918px;}
.y75{bottom:888.480011px;}
.y280{bottom:893.160015px;}
.y1a8{bottom:893.519989px;}
.y2ae{bottom:893.699993px;}
.ycc{bottom:894.778071px;}
.y1a7{bottom:896.759994px;}
.y1ec{bottom:896.939962px;}
.y24f{bottom:898.198974px;}
.y57{bottom:899.311350px;}
.y182{bottom:901.080008px;}
.y43{bottom:901.200300px;}
.y120{bottom:903.240006px;}
.y22f{bottom:908.640076px;}
.y74{bottom:909.000000px;}
.y1a5{bottom:910.800007px;}
.yb9{bottom:910.977890px;}
.y162{bottom:912.240006px;}
.yd5{bottom:912.599997px;}
.y2ad{bottom:912.780001px;}
.y14e{bottom:913.319996px;}
.y90{bottom:913.500000px;}
.y1a6{bottom:914.039995px;}
.y56{bottom:914.311350px;}
.yee{bottom:914.580008px;}
.yc1{bottom:915.300194px;}
.y181{bottom:915.840002px;}
.ycd{bottom:918.179759px;}
.y11f{bottom:923.759994px;}
.y1a3{bottom:928.080008px;}
.y73{bottom:929.520006px;}
.y1ed{bottom:929.701097px;}
.y27f{bottom:931.139992px;}
.y161{bottom:931.319996px;}
.y2ac{bottom:931.680004px;}
.y230{bottom:935.816422px;}
.y180{bottom:936.360008px;}
.y34{bottom:939.593924px;}
.y11e{bottom:941.039995px;}
.yce{bottom:941.581465px;}
.y55{bottom:942.067200px;}
.yba{bottom:944.996904px;}
.y1a2{bottom:945.360008px;}
.y250{bottom:946.622205px;}
.y1a1{bottom:948.599997px;}
.y72{bottom:950.039995px;}
.y27e{bottom:950.219999px;}
.y254{bottom:950.402154px;}
.yd4{bottom:950.580008px;}
.y262{bottom:950.580046px;}
.y264{bottom:950.757939px;}
.y2ab{bottom:950.759994px;}
.y8f{bottom:951.479994px;}
.yed{bottom:952.379998px;}
.y33{bottom:957.593924px;}
.y11d{bottom:958.319996px;}
.y1f1{bottom:958.676360px;}
.y1a0{bottom:962.639992px;}
.y1ee{bottom:962.640222px;}
.y231{bottom:962.998664px;}
.y19f{bottom:965.879998px;}
.y1{bottom:966.726000px;}
.y27d{bottom:969.120002px;}
.y17f{bottom:969.479994px;}
.ycf{bottom:969.482493px;}
.y2aa{bottom:969.659998px;}
.y54{bottom:969.823200px;}
.yd0{bottom:970.023024px;}
.y71{bottom:970.379998px;}
.yc2{bottom:972.903628px;}
.yc3{bottom:974.703192px;}
.y32{bottom:975.593924px;}
.y11c{bottom:975.599997px;}
.y1f0{bottom:980.817876px;}
.y19e{bottom:983.159998px;}
.y53{bottom:984.823200px;}
.y27c{bottom:988.020006px;}
.yd3{bottom:988.379998px;}
.y17e{bottom:988.560001px;}
.y8e{bottom:989.460004px;}
.y232{bottom:990.180905px;}
.yec{bottom:990.360008px;}
.y70{bottom:990.900003px;}
.y11b{bottom:992.879998px;}
.y31{bottom:993.593924px;}
.y253{bottom:996.838380px;}
.y19b{bottom:997.379998px;}
.y52{bottom:999.823200px;}
.y19d{bottom:1000.620002px;}
.y1ef{bottom:1003.141922px;}
.y27b{bottom:1007.099997px;}
.y2a9{bottom:1007.639992px;}
.y11a{bottom:1009.979994px;}
.y6f{bottom:1011.419992px;}
.y30{bottom:1011.593924px;}
.ya5{bottom:1013.219999px;}
.y51{bottom:1014.823200px;}
.y252{bottom:1020.779730px;}
.y118{bottom:1024.740006px;}
.y27a{bottom:1026.000000px;}
.yd2{bottom:1026.360008px;}
.y2a8{bottom:1026.539996px;}
.y8d{bottom:1027.439999px;}
.yeb{bottom:1027.620002px;}
.y2f{bottom:1029.593924px;}
.y19a{bottom:1030.319996px;}
.y6e{bottom:1031.939999px;}
.y50{bottom:1044.823200px;}
.ya4{bottom:1045.439999px;}
.y117{bottom:1045.620002px;}
.yd1{bottom:1064.340002px;}
.y6d{bottom:1064.519998px;}
.y2e{bottom:1065.593924px;}
.ya1{bottom:1101.060001px;}
.ya0{bottom:1119.960000px;}
.h26{height:17.099980px;}
.h23{height:17.099997px;}
.h2f{height:17.100014px;}
.h37{height:17.643571px;}
.h36{height:20.158292px;}
.h7{height:32.130000px;}
.h20{height:32.212320px;}
.h14{height:38.400000px;}
.h15{height:38.544000px;}
.hb{height:43.200000px;}
.h1d{height:43.246612px;}
.hc{height:43.362000px;}
.h24{height:44.851447px;}
.h6{height:45.900000px;}
.h12{height:48.000000px;}
.h11{height:48.180000px;}
.h3{height:48.195000px;}
.h21{height:48.318580px;}
.h1b{height:48.410031px;}
.h38{height:48.778776px;}
.h16{height:49.714967px;}
.h18{height:53.472245px;}
.h1a{height:53.608360px;}
.h1e{height:53.709822px;}
.h2e{height:54.192263px;}
.h2{height:55.080000px;}
.ha{height:55.200000px;}
.he{height:57.600000px;}
.h17{height:59.270571px;}
.h1c{height:59.383289px;}
.h2a{height:59.715611px;}
.h2c{height:61.126123px;}
.h32{height:61.126127px;}
.h1f{height:61.126258px;}
.h22{height:61.126397px;}
.h33{height:62.071560px;}
.h19{height:65.759343px;}
.h35{height:65.884401px;}
.h13{height:67.200000px;}
.h31{height:70.051479px;}
.h5{height:78.030000px;}
.h30{height:78.672272px;}
.h28{height:81.997414px;}
.h29{height:84.157324px;}
.h10{height:86.400000px;}
.h25{height:87.312335px;}
.h27{height:88.032483px;}
.h34{height:95.090678px;}
.h2d{height:118.992236px;}
.h4{height:119.055004px;}
.hf{height:124.800000px;}
.hd{height:144.000000px;}
.h2b{height:166.957436px;}
.h8{height:1187.993774px;}
.h9{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w1e{width:5.043657px;}
.w7{width:8.279983px;}
.w9{width:8.279984px;}
.w11{width:8.279992px;}
.w5{width:8.280001px;}
.wf{width:8.280018px;}
.wa{width:9.180039px;}
.w1c{width:9.727409px;}
.w20{width:9.728421px;}
.w8{width:10.800007px;}
.w1b{width:26.813046px;}
.wd{width:29.160015px;}
.wb{width:33.300042px;}
.w19{width:43.379998px;}
.w1d{width:43.558026px;}
.w6{width:46.620003px;}
.w10{width:50.940033px;}
.w4{width:53.280000px;}
.w12{width:54.179987px;}
.w18{width:56.699958px;}
.w14{width:56.699993px;}
.w15{width:56.700028px;}
.w16{width:60.840019px;}
.wc{width:66.780000px;}
.we{width:82.439999px;}
.w1f{width:86.211465px;}
.w17{width:98.459988px;}
.w1a{width:100.800007px;}
.w13{width:127.620003px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x6{left:-864.000000px;}
.x0{left:0.000000px;}
.x12{left:30.420001px;}
.x9{left:33.788250px;}
.xa{left:43.581300px;}
.x5{left:44.644200px;}
.x84{left:54.000000px;}
.x22{left:70.199192px;}
.x24{left:75.238577px;}
.x21{left:76.859315px;}
.x31{left:90.180005px;}
.x4b{left:97.200002px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:108.000000px;}
.x6c{left:109.260003px;}
.x75{left:115.200641px;}
.x16{left:117.722597px;}
.x1a{left:122.218195px;}
.x1b{left:123.302808px;}
.x17{left:125.276781px;}
.xb{left:128.250000px;}
.x19{left:129.778968px;}
.x6d{left:133.562643px;}
.x82{left:135.000000px;}
.x18{left:156.060392px;}
.x50{left:158.219999px;}
.x10{left:162.000000px;}
.x6b{left:163.259994px;}
.x7{left:170.802000px;}
.x79{left:173.159470px;}
.x23{left:199.078354px;}
.x4{left:203.484001px;}
.x3e{left:205.020006px;}
.x78{left:206.280001px;}
.xe{left:208.505250px;}
.x3c{left:212.219999px;}
.x65{left:215.819996px;}
.x14{left:217.259994px;}
.x28{left:220.680005px;}
.x4e{left:225.360008px;}
.x48{left:227.879998px;}
.x8{left:229.500000px;}
.x68{left:234.360008px;}
.x67{left:235.620002px;}
.x76{left:237.060001px;}
.x4c{left:244.080008px;}
.x32{left:247.319996px;}
.x51{left:249.120002px;}
.x7f{left:251.280001px;}
.x6e{left:252.719451px;}
.x13{left:255.780001px;}
.x47{left:268.199993px;}
.x29{left:273.960005px;}
.x40{left:277.020006px;}
.x6f{left:278.280001px;}
.x26{left:286.919992px;}
.x41{left:292.319996px;}
.x4d{left:298.259994px;}
.x7a{left:308.164010px;}
.x49{left:318.240006px;}
.x25{left:324.000000px;}
.x44{left:327.240006px;}
.x6a{left:331.019989px;}
.x43{left:334.259994px;}
.x3f{left:360.180005px;}
.x42{left:362.160015px;}
.x73{left:366.120634px;}
.x57{left:367.199993px;}
.x54{left:369.180005px;}
.x37{left:371.699993px;}
.x52{left:395.100014px;}
.x38{left:400.860008px;}
.x81{left:402.480011px;}
.x63{left:408.420010px;}
.x5d{left:409.680005px;}
.x70{left:412.381741px;}
.xf{left:413.639992px;}
.x35{left:421.199993px;}
.x33{left:425.519989px;}
.x58{left:428.040012px;}
.x2a{left:429.120002px;}
.x72{left:432.717406px;}
.x45{left:434.160015px;}
.x71{left:441.900556px;}
.x34{left:446.220017px;}
.x3{left:454.959000px;}
.x27{left:459.000000px;}
.x39{left:461.699993px;}
.x1e{left:468.181086px;}
.x20{left:469.256443px;}
.x2b{left:475.740006px;}
.x1d{left:481.500604px;}
.xd{left:486.000000px;}
.x5b{left:503.279983px;}
.x5e{left:508.139992px;}
.x64{left:509.220017px;}
.x53{left:522.720017px;}
.x46{left:524.879998px;}
.x4a{left:533.160015px;}
.x7b{left:535.502818px;}
.x36{left:541.439999px;}
.x2c{left:544.319996px;}
.x2d{left:555.120002px;}
.x5c{left:559.980011px;}
.x7c{left:579.060844px;}
.x1f{left:580.134334px;}
.x7d{left:584.104502px;}
.x55{left:599.759994px;}
.x61{left:606.419975px;}
.x62{left:649.799973px;}
.x56{left:656.460023px;}
.x2e{left:665.279983px;}
.x7e{left:670.315967px;}
.x2f{left:674.460023px;}
.x3a{left:684.179970px;}
.x59{left:694.980011px;}
.x5f{left:696.960023px;}
.x4f{left:718.200027px;}
.x3b{left:735.120002px;}
.x66{left:748.080025px;}
.x60{left:753.659981px;}
.x5a{left:755.820030px;}
.x30{left:767.519989px;}
.x74{left:769.505873px;}
.x69{left:787.860008px;}
.x3d{left:793.259994px;}
.x11{left:801.720017px;}
.x15{left:810.000000px;}
.x77{left:819.720017px;}
.x80{left:825.840019px;}
.x1c{left:838.985200px;}
.x87{left:951.788250px;}
.x83{left:962.644200px;}
.x85{left:1088.802000px;}
.x86{left:1147.500000px;}
@media print{
.v7{vertical-align:-68.479980pt;}
.vd{vertical-align:-31.359864pt;}
.v10{vertical-align:-22.400024pt;}
.va{vertical-align:-19.199952pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-12.159972pt;}
.v1{vertical-align:-7.691628pt;}
.v9{vertical-align:-1.919920pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:3.200012pt;}
.v6{vertical-align:12.159972pt;}
.v8{vertical-align:14.079956pt;}
.v2{vertical-align:21.119992pt;}
.v11{vertical-align:22.400024pt;}
.v4{vertical-align:30.080080pt;}
.v12{vertical-align:46.083614pt;}
.ve{vertical-align:58.239992pt;}
.vc{vertical-align:63.359984pt;}
.vb{vertical-align:75.520020pt;}
.ls1{letter-spacing:-2.773333pt;}
.ls2{letter-spacing:-1.600000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.008953pt;}
.ls8{letter-spacing:0.161706pt;}
.ls35{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.270091pt;}
.ls29{letter-spacing:0.361045pt;}
.ls36{letter-spacing:0.361049pt;}
.ls5{letter-spacing:0.361169pt;}
.ls3{letter-spacing:0.480000pt;}
.ls21{letter-spacing:2.142298pt;}
.ls1e{letter-spacing:2.142302pt;}
.ls28{letter-spacing:2.519499pt;}
.ls24{letter-spacing:2.782190pt;}
.ls27{letter-spacing:2.782194pt;}
.lsb{letter-spacing:2.782254pt;}
.ls11{letter-spacing:2.782310pt;}
.lsc{letter-spacing:2.782314pt;}
.ls13{letter-spacing:3.159391pt;}
.lsd{letter-spacing:3.159631pt;}
.ls14{letter-spacing:3.568432pt;}
.ls1d{letter-spacing:3.568552pt;}
.ls16{letter-spacing:3.568672pt;}
.ls17{letter-spacing:3.568676pt;}
.ls12{letter-spacing:3.583563pt;}
.ls25{letter-spacing:3.607295pt;}
.ls2b{letter-spacing:3.607415pt;}
.ls26{letter-spacing:3.607419pt;}
.ls1a{letter-spacing:4.208564pt;}
.lsf{letter-spacing:4.208568pt;}
.ls1f{letter-spacing:12.091094pt;}
.ls22{letter-spacing:16.368476pt;}
.ls20{letter-spacing:16.368480pt;}
.lse{letter-spacing:16.368600pt;}
.ls23{letter-spacing:17.008492pt;}
.ls19{letter-spacing:17.008496pt;}
.ls1c{letter-spacing:19.568492pt;}
.lsa{letter-spacing:19.568552pt;}
.ls15{letter-spacing:19.568556pt;}
.ls10{letter-spacing:20.208536pt;}
.ls18{letter-spacing:20.208564pt;}
.ls34{letter-spacing:106.273642pt;}
.ls2d{letter-spacing:108.193686pt;}
.ls32{letter-spacing:116.513754pt;}
.ls2f{letter-spacing:128.673546pt;}
.ls33{letter-spacing:129.313682pt;}
.ls30{letter-spacing:129.953818pt;}
.ls31{letter-spacing:139.553670pt;}
.ls2e{letter-spacing:169.633750pt;}
.ls2c{letter-spacing:381.473718pt;}
.ls9{letter-spacing:419.233662pt;}
.ls1b{letter-spacing:584.681173pt;}
.ls7{letter-spacing:751.721153pt;}
.ws3{word-spacing:-16.278847pt;}
.ws9{word-spacing:-14.686318pt;}
.ws18{word-spacing:-13.487965pt;}
.ws1b{word-spacing:-13.306917pt;}
.ws4{word-spacing:-13.295966pt;}
.wsa{word-spacing:-12.929048pt;}
.ws6{word-spacing:-11.877816pt;}
.ws8{word-spacing:-10.262761pt;}
.ws1{word-spacing:-9.936000pt;}
.wse{word-spacing:-9.415736pt;}
.ws2{word-spacing:-8.832000pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:4.876286pt;}
.wsb{word-spacing:5.367942pt;}
.wsc{word-spacing:5.368002pt;}
.ws10{word-spacing:5.368006pt;}
.wsf{word-spacing:6.329303pt;}
.wsd{word-spacing:6.385215pt;}
.ws12{word-spacing:6.876613pt;}
.ws14{word-spacing:7.473135pt;}
.ws13{word-spacing:60.081323pt;}
.ws15{word-spacing:64.240138pt;}
.ws5{word-spacing:68.662898pt;}
.ws11{word-spacing:104.881371pt;}
.ws1a{word-spacing:147.215620pt;}
.ws19{word-spacing:387.517589pt;}
.ws17{word-spacing:399.868623pt;}
.ws7{word-spacing:966.076900pt;}
._35{margin-left:-11.103010pt;}
._2{margin-left:-10.032000pt;}
._36{margin-left:-7.336084pt;}
._4{margin-left:-5.440000pt;}
._3{margin-left:-4.320000pt;}
._5{margin-left:-3.280000pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.104000pt;}
._6{width:1.104000pt;}
._13{width:2.072655pt;}
._9{width:3.030272pt;}
._e{width:4.023110pt;}
._26{width:4.936087pt;}
._16{width:5.827025pt;}
._15{width:6.885774pt;}
._14{width:7.902743pt;}
._18{width:9.416921pt;}
._c{width:10.980129pt;}
._b{width:11.987835pt;}
._55{width:12.876902pt;}
._17{width:13.770171pt;}
._a{width:14.855320pt;}
._19{width:16.488971pt;}
._d{width:17.415445pt;}
._25{width:19.124037pt;}
._3c{width:20.562000pt;}
._10{width:21.627230pt;}
._8{width:22.946164pt;}
._7{width:24.329199pt;}
._52{width:25.345276pt;}
._5e{width:26.583033pt;}
._11{width:29.343338pt;}
._12{width:30.492765pt;}
._3b{width:35.275165pt;}
._22{width:39.460455pt;}
._23{width:40.526065pt;}
._3d{width:58.267439pt;}
._32{width:60.895695pt;}
._2f{width:69.643863pt;}
._1c{width:73.485284pt;}
._1d{width:74.473866pt;}
._1a{width:76.415829pt;}
._21{width:77.406018pt;}
._1f{width:82.898593pt;}
._34{width:94.082283pt;}
._44{width:106.727650pt;}
._42{width:116.271106pt;}
._31{width:121.439526pt;}
._f{width:126.713623pt;}
._4c{width:129.525906pt;}
._43{width:131.646674pt;}
._49{width:135.888210pt;}
._46{width:136.948594pt;}
._41{width:139.599554pt;}
._4e{width:150.123741pt;}
._4a{width:152.854354pt;}
._47{width:157.271102pt;}
._40{width:158.645231pt;}
._5a{width:161.951582pt;}
._3f{width:167.438381pt;}
._48{width:169.519779pt;}
._57{width:172.991553pt;}
._56{width:173.951551pt;}
._20{width:175.893821pt;}
._1b{width:177.243186pt;}
._1e{width:179.769328pt;}
._4f{width:187.105171pt;}
._59{width:188.303514pt;}
._58{width:194.111499pt;}
._3a{width:195.038252pt;}
._30{width:209.168490pt;}
._37{width:223.011864pt;}
._29{width:256.540939pt;}
._2d{width:262.266598pt;}
._4b{width:265.321913pt;}
._5c{width:267.798159pt;}
._39{width:293.955594pt;}
._28{width:302.800728pt;}
._2b{width:305.549650pt;}
._38{width:313.344798pt;}
._33{width:329.981850pt;}
._27{width:338.641708pt;}
._51{width:344.977047pt;}
._5d{width:347.717953pt;}
._45{width:374.571081pt;}
._4d{width:400.037610pt;}
._2e{width:419.010738pt;}
._5b{width:435.749726pt;}
._3e{width:510.851714pt;}
._53{width:533.436014pt;}
._50{width:537.414334pt;}
._2a{width:552.088930pt;}
._54{width:600.114731pt;}
._24{width:751.824141pt;}
._2c{width:776.360146pt;}
.fs13{font-size:31.939400pt;}
.fs12{font-size:37.049680pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs14{font-size:42.798800pt;}
.fs10{font-size:42.880204pt;}
.fse{font-size:47.909200pt;}
.fsf{font-size:47.999876pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:53.019200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.768400pt;}
.fs11{font-size:58.880163pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:138.666667pt;}
.fs7{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y265{bottom:1.760929pt;}
.y1a4{bottom:2.879989pt;}
.y119{bottom:2.879990pt;}
.y19c{bottom:2.880004pt;}
.y124{bottom:2.880005pt;}
.y263{bottom:3.996259pt;}
.ya3{bottom:24.640015pt;}
.y25{bottom:35.994466pt;}
.y21{bottom:47.390333pt;}
.y3a{bottom:47.395867pt;}
.y24{bottom:50.661133pt;}
.ya2{bottom:52.000000pt;}
.y23{bottom:65.327799pt;}
.y22{bottom:79.994466pt;}
.y4{bottom:86.333337pt;}
.y103{bottom:98.559998pt;}
.y21d{bottom:99.200012pt;}
.y1bd{bottom:100.640015pt;}
.y26b{bottom:101.599976pt;}
.y116{bottom:102.559998pt;}
.ye9{bottom:102.880005pt;}
.y1d6{bottom:103.039978pt;}
.y272{bottom:103.679993pt;}
.y1e7{bottom:106.400024pt;}
.y239{bottom:109.919983pt;}
.y115{bottom:112.320007pt;}
.yab{bottom:112.640015pt;}
.y1fa{bottom:113.760010pt;}
.y1bc{bottom:115.840027pt;}
.y1d5{bottom:116.000000pt;}
.y102{bottom:116.320007pt;}
.y2cb{bottom:117.119995pt;}
.y26a{bottom:118.239990pt;}
.y2a7{bottom:119.359985pt;}
.y247{bottom:120.479980pt;}
.y110{bottom:121.440002pt;}
.y20{bottom:123.790666pt;}
.y114{bottom:126.239990pt;}
.y101{bottom:127.520020pt;}
.y1bb{bottom:131.200012pt;}
.y21c{bottom:132.960022pt;}
.y269{bottom:133.599976pt;}
.y2ca{bottom:135.200012pt;}
.y2a6{bottom:136.159973pt;}
.ye8{bottom:136.479980pt;}
.yaa{bottom:137.119995pt;}
.y271{bottom:137.440002pt;}
.y1e6{bottom:140.159973pt;}
.y14d{bottom:141.599976pt;}
.y238{bottom:143.679993pt;}
.y113{bottom:144.000000pt;}
.y1f9{bottom:147.520020pt;}
.y1d4{bottom:149.599976pt;}
.y2a5{bottom:153.119995pt;}
.y2c9{bottom:153.440002pt;}
.y246{bottom:154.080017pt;}
.y261{bottom:154.559998pt;}
.y10f{bottom:155.200012pt;}
.y1ba{bottom:155.520020pt;}
.y268{bottom:158.239990pt;}
.y199{bottom:162.559998pt;}
.y21b{bottom:166.719971pt;}
.y160{bottom:168.320007pt;}
.y2a4{bottom:169.919983pt;}
.y14c{bottom:170.080017pt;}
.ye7{bottom:170.239990pt;}
.yea{bottom:170.400024pt;}
.y270{bottom:171.200012pt;}
.y1e5{bottom:173.760010pt;}
.y17{bottom:175.052000pt;}
.y21e{bottom:177.440002pt;}
.y17a{bottom:177.919983pt;}
.y1f8{bottom:181.280029pt;}
.y1d3{bottom:183.359985pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y2a3{bottom:186.880005pt;}
.y2c8{bottom:187.359985pt;}
.y245{bottom:187.840027pt;}
.y260{bottom:188.159973pt;}
.y10e{bottom:188.799988pt;}
.y8c{bottom:190.080017pt;}
.y100{bottom:190.559998pt;}
.yac{bottom:190.561513pt;}
.y198{bottom:196.320007pt;}
.y14b{bottom:197.280029pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y279{bottom:199.679993pt;}
.y21a{bottom:200.479980pt;}
.y15f{bottom:202.080017pt;}
.y2a2{bottom:203.679993pt;}
.ye6{bottom:204.000000pt;}
.y2c7{bottom:204.159973pt;}
.y26f{bottom:204.799988pt;}
.y1e4{bottom:207.520020pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y237{bottom:211.200012pt;}
.y179{bottom:211.679993pt;}
.y14a{bottom:213.919983pt;}
.y1f7{bottom:214.880005pt;}
.y1d2{bottom:216.479980pt;}
.y8b{bottom:218.880005pt;}
.y1ca{bottom:219.679993pt;}
.y2a1{bottom:220.640015pt;}
.y2c6{bottom:220.960022pt;}
.y244{bottom:221.599976pt;}
.y25f{bottom:221.919983pt;}
.y10d{bottom:222.559998pt;}
.yff{bottom:224.320007pt;}
.y278{bottom:228.479980pt;}
.y197{bottom:229.919983pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1f6{bottom:232.000000pt;}
.y219{bottom:233.440002pt;}
.y15e{bottom:235.840027pt;}
.y2a0{bottom:237.440002pt;}
.ye5{bottom:237.760010pt;}
.y148{bottom:237.919983pt;}
.y26e{bottom:238.559998pt;}
.y226{bottom:240.799988pt;}
.y1e3{bottom:241.280029pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yad{bottom:244.643434pt;}
.y236{bottom:244.799988pt;}
.y178{bottom:245.280029pt;}
.y147{bottom:245.599976pt;}
.y8a{bottom:247.679993pt;}
.y1f5{bottom:248.640015pt;}
.y1d1{bottom:249.280029pt;}
.y149{bottom:253.280029pt;}
.y1a{bottom:253.438668pt;}
.y1c9{bottom:253.440002pt;}
.y11{bottom:253.451999pt;}
.y29f{bottom:254.239990pt;}
.y2c5{bottom:254.719971pt;}
.y243{bottom:255.359985pt;}
.y25e{bottom:255.679993pt;}
.y10c{bottom:256.320007pt;}
.y277{bottom:257.280029pt;}
.yfe{bottom:257.440002pt;}
.y196{bottom:263.679993pt;}
.y1f4{bottom:264.000000pt;}
.y1d0{bottom:265.919983pt;}
.y146{bottom:268.479980pt;}
.y15d{bottom:269.599976pt;}
.y225{bottom:269.760010pt;}
.y29e{bottom:271.200012pt;}
.ye4{bottom:271.520020pt;}
.y111{bottom:271.679993pt;}
.y26d{bottom:272.320007pt;}
.y112{bottom:273.440002pt;}
.y1e2{bottom:275.039978pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y89{bottom:276.640015pt;}
.y235{bottom:278.559998pt;}
.y177{bottom:279.039978pt;}
.y145{bottom:283.840027pt;}
.y276{bottom:286.239990pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y1c8{bottom:287.200012pt;}
.y29d{bottom:288.000000pt;}
.y1f3{bottom:288.479980pt;}
.y242{bottom:289.119995pt;}
.y1cf{bottom:289.280029pt;}
.y25d{bottom:289.440002pt;}
.y10b{bottom:290.080017pt;}
.y195{bottom:297.440002pt;}
.yae{bottom:298.725356pt;}
.y144{bottom:299.200012pt;}
.y218{bottom:303.359985pt;}
.y42{bottom:303.600133pt;}
.y15c{bottom:303.679993pt;}
.y1ce{bottom:304.640015pt;}
.y29c{bottom:304.960022pt;}
.ye3{bottom:305.280029pt;}
.y88{bottom:305.440002pt;}
.y26c{bottom:306.080017pt;}
.y9f{bottom:306.239990pt;}
.yfd{bottom:306.880005pt;}
.y1e1{bottom:308.799988pt;}
.ye{bottom:309.452000pt;}
.y234{bottom:312.640015pt;}
.y176{bottom:313.280029pt;}
.y143{bottom:314.559998pt;}
.y275{bottom:315.039978pt;}
.y41{bottom:318.000133pt;}
.y1cd{bottom:320.159973pt;}
.y1c7{bottom:320.960022pt;}
.y29b{bottom:321.760010pt;}
.y2c4{bottom:322.239990pt;}
.y241{bottom:322.719971pt;}
.y25c{bottom:323.200012pt;}
.y10a{bottom:323.840027pt;}
.y203{bottom:325.434818pt;}
.y142{bottom:329.919983pt;}
.y194{bottom:331.200012pt;}
.y40{bottom:332.400133pt;}
.y1cc{bottom:333.919983pt;}
.y87{bottom:334.400024pt;}
.y224{bottom:336.960022pt;}
.y217{bottom:337.119995pt;}
.y13e{bottom:337.599976pt;}
.y29a{bottom:338.559998pt;}
.ye2{bottom:338.880005pt;}
.y2c3{bottom:339.039978pt;}
.y9e{bottom:339.840027pt;}
.yfc{bottom:340.640015pt;}
.y233{bottom:342.400024pt;}
.y1e0{bottom:342.559998pt;}
.yd{bottom:343.809333pt;}
.y274{bottom:344.000000pt;}
.y141{bottom:345.119995pt;}
.y3f{bottom:346.800133pt;}
.y175{bottom:347.200012pt;}
.yaf{bottom:352.642411pt;}
.y204{bottom:354.233794pt;}
.y1c6{bottom:354.559998pt;}
.y299{bottom:355.520020pt;}
.y2c2{bottom:356.000000pt;}
.y240{bottom:356.479980pt;}
.y25b{bottom:356.960022pt;}
.y109{bottom:357.599976pt;}
.y140{bottom:360.479980pt;}
.y3e{bottom:361.200133pt;}
.yc{bottom:362.706666pt;}
.y86{bottom:363.200012pt;}
.y193{bottom:364.159973pt;}
.y223{bottom:370.719971pt;}
.y216{bottom:370.880005pt;}
.y15b{bottom:371.359985pt;}
.y2b{bottom:371.461399pt;}
.y298{bottom:372.320007pt;}
.ye1{bottom:372.640015pt;}
.y273{bottom:372.799988pt;}
.y9d{bottom:373.599976pt;}
.yfb{bottom:374.400024pt;}
.y3d{bottom:375.600133pt;}
.y13f{bottom:375.840027pt;}
.y1df{bottom:376.159973pt;}
.y2d{bottom:376.359933pt;}
.y174{bottom:381.440002pt;}
.y205{bottom:383.039351pt;}
.y1fb{bottom:383.678709pt;}
.y1c5{bottom:388.320007pt;}
.y297{bottom:389.280029pt;}
.y23f{bottom:389.599976pt;}
.y2c1{bottom:389.760010pt;}
.y3c{bottom:390.000133pt;}
.y25a{bottom:390.559998pt;}
.y108{bottom:391.200012pt;}
.y85{bottom:392.159973pt;}
.y192{bottom:396.960022pt;}
.y3b{bottom:404.400133pt;}
.y222{bottom:404.479980pt;}
.y215{bottom:404.640015pt;}
.y15a{bottom:405.119995pt;}
.y296{bottom:406.080017pt;}
.ye0{bottom:406.400024pt;}
.y4f{bottom:406.400133pt;}
.y13d{bottom:406.559998pt;}
.yb0{bottom:406.724333pt;}
.y9c{bottom:407.200012pt;}
.yfa{bottom:408.159973pt;}
.y1de{bottom:409.919983pt;}
.y23b{bottom:411.359985pt;}
.y206{bottom:411.838391pt;}
.y2a{bottom:416.794733pt;}
.y2c{bottom:418.194599pt;}
.y23e{bottom:418.400024pt;}
.y172{bottom:419.359985pt;}
.y84{bottom:420.960022pt;}
.y13c{bottom:421.919983pt;}
.y1c4{bottom:422.080017pt;}
.y4e{bottom:422.400133pt;}
.y295{bottom:422.880005pt;}
.y2c0{bottom:423.359985pt;}
.y259{bottom:424.320007pt;}
.y107{bottom:424.960022pt;}
.y173{bottom:427.200012pt;}
.y6c{bottom:428.679200pt;}
.y138{bottom:429.599976pt;}
.y13b{bottom:437.119995pt;}
.y221{bottom:438.239990pt;}
.y214{bottom:438.400024pt;}
.y4d{bottom:438.400133pt;}
.y159{bottom:438.880005pt;}
.y294{bottom:439.840027pt;}
.ydf{bottom:440.159973pt;}
.y23a{bottom:440.320007pt;}
.y207{bottom:440.637367pt;}
.y9b{bottom:440.960022pt;}
.yf9{bottom:441.919983pt;}
.y6b{bottom:442.012533pt;}
.y1dd{bottom:443.679993pt;}
.y191{bottom:446.719971pt;}
.y23d{bottom:446.880005pt;}
.yb{bottom:446.990669pt;}
.y83{bottom:449.760010pt;}
.y13a{bottom:452.479980pt;}
.y4c{bottom:454.400133pt;}
.y1c3{bottom:455.840027pt;}
.y1fc{bottom:456.638756pt;}
.y293{bottom:456.640015pt;}
.y2bf{bottom:457.119995pt;}
.y258{bottom:457.440002pt;}
.y106{bottom:458.719971pt;}
.yb1{bottom:460.798887pt;}
.y170{bottom:460.960022pt;}
.ya{bottom:462.990669pt;}
.y6a{bottom:466.684400pt;}
.y139{bottom:467.840027pt;}
.y171{bottom:468.799988pt;}
.y208{bottom:469.439666pt;}
.y4b{bottom:470.400133pt;}
.y23c{bottom:471.359985pt;}
.y213{bottom:472.000000pt;}
.y158{bottom:472.640015pt;}
.y292{bottom:473.599976pt;}
.yde{bottom:473.919983pt;}
.y47{bottom:473.994933pt;}
.y2be{bottom:474.080017pt;}
.y9a{bottom:474.719971pt;}
.yf8{bottom:475.520020pt;}
.y1dc{bottom:477.440002pt;}
.y82{bottom:478.719971pt;}
.y9{bottom:478.990666pt;}
.yb2{bottom:480.158350pt;}
.y190{bottom:480.320007pt;}
.y16f{bottom:481.599976pt;}
.y251{bottom:482.720203pt;}
.y137{bottom:483.200012pt;}
.y4a{bottom:486.400133pt;}
.y1c2{bottom:489.599976pt;}
.y257{bottom:490.239990pt;}
.y291{bottom:490.400024pt;}
.y2bd{bottom:490.880005pt;}
.y1fd{bottom:491.197965pt;}
.y69{bottom:491.356400pt;}
.y105{bottom:492.479980pt;}
.y8{bottom:494.990666pt;}
.y248{bottom:496.965772pt;}
.y209{bottom:498.238706pt;}
.y136{bottom:498.559998pt;}
.y46{bottom:501.333467pt;}
.y49{bottom:502.400133pt;}
.y68{bottom:504.689733pt;}
.y220{bottom:504.799988pt;}
.y212{bottom:505.760010pt;}
.y157{bottom:506.239990pt;}
.y1c1{bottom:506.400024pt;}
.y290{bottom:507.200012pt;}
.y81{bottom:507.520020pt;}
.y2bc{bottom:507.679993pt;}
.y99{bottom:508.479980pt;}
.yf7{bottom:509.280029pt;}
.y256{bottom:509.599976pt;}
.y1db{bottom:511.200012pt;}
.y135{bottom:513.919983pt;}
.y18f{bottom:514.080017pt;}
.y45{bottom:517.333467pt;}
.y67{bottom:518.023067pt;}
.y48{bottom:518.400133pt;}
.y1c0{bottom:521.760010pt;}
.ya9{bottom:523.359985pt;}
.y17d{bottom:524.159973pt;}
.y2bb{bottom:524.640015pt;}
.y255{bottom:524.960022pt;}
.y104{bottom:525.440002pt;}
.y17c{bottom:526.080017pt;}
.y20a{bottom:527.037714pt;}
.y134{bottom:529.119995pt;}
.y80{bottom:536.479980pt;}
.y1b9{bottom:537.919983pt;}
.y21f{bottom:539.200012pt;}
.y211{bottom:539.520020pt;}
.y156{bottom:540.000000pt;}
.y249{bottom:540.002779pt;}
.y29{bottom:540.768066pt;}
.y28f{bottom:540.960022pt;}
.ydd{bottom:541.280029pt;}
.y2ba{bottom:541.440002pt;}
.y98{bottom:542.239990pt;}
.y1fe{bottom:542.405138pt;}
.y66{bottom:542.694933pt;}
.y17b{bottom:542.719971pt;}
.yf6{bottom:543.039978pt;}
.y133{bottom:544.480011pt;}
.y1da{bottom:544.799988pt;}
.y1bf{bottom:544.959991pt;}
.y18e{bottom:547.839996pt;}
.ya8{bottom:552.480011pt;}
.y20b{bottom:555.836722pt;}
.y65{bottom:556.028267pt;}
.y28e{bottom:557.920013pt;}
.y1cb{bottom:558.239990pt;}
.y2b9{bottom:558.399994pt;}
.y132{bottom:559.839996pt;}
.y1be{bottom:560.480011pt;}
.y1ff{bottom:564.802527pt;}
.y7f{bottom:565.279999pt;}
.y1b8{bottom:566.559998pt;}
.y64{bottom:569.361600pt;}
.ya7{bottom:570.239990pt;}
.y16e{bottom:571.839996pt;}
.y210{bottom:573.279999pt;}
.y155{bottom:573.760010pt;}
.y7{bottom:573.786667pt;}
.y200{bottom:573.921156pt;}
.y28d{bottom:574.720001pt;}
.ydc{bottom:575.040009pt;}
.y12f{bottom:575.200012pt;}
.y97{bottom:575.839996pt;}
.yf5{bottom:576.799988pt;}
.y1d9{bottom:578.559998pt;}
.y18d{bottom:581.600006pt;}
.y1b7{bottom:581.920013pt;}
.y24a{bottom:583.039785pt;}
.y28{bottom:583.434733pt;}
.y20c{bottom:584.635731pt;}
.ya6{bottom:586.880005pt;}
.y16c{bottom:587.519989pt;}
.y12e{bottom:590.559998pt;}
.y28c{bottom:591.679993pt;}
.y2b8{bottom:592.000000pt;}
.y201{bottom:592.319561pt;}
.y6{bottom:592.685334pt;}
.y63{bottom:594.033467pt;}
.y7e{bottom:594.239990pt;}
.y1d8{bottom:595.359985pt;}
.y1b6{bottom:597.279999pt;}
.y202{bottom:599.196977pt;}
.y44{bottom:601.194667pt;}
.y131{bottom:605.920013pt;}
.y169{bottom:606.399994pt;}
.y20f{bottom:607.040009pt;}
.y62{bottom:607.366800pt;}
.y154{bottom:607.519989pt;}
.y28b{bottom:608.480011pt;}
.ydb{bottom:608.799988pt;}
.y2b7{bottom:608.959991pt;}
.y96{bottom:609.600006pt;}
.yf4{bottom:610.559998pt;}
.y1b5{bottom:612.640015pt;}
.y20d{bottom:613.438029pt;}
.y267{bottom:613.600006pt;}
.y16a{bottom:614.239990pt;}
.y227{bottom:614.399831pt;}
.y18c{bottom:615.359985pt;}
.y1d7{bottom:620.000000pt;}
.y61{bottom:620.700133pt;}
.y130{bottom:621.119995pt;}
.y7d{bottom:623.040009pt;}
.y28a{bottom:625.279999pt;}
.y2b6{bottom:625.760010pt;}
.y24b{bottom:626.080439pt;}
.y1b4{bottom:628.000000pt;}
.yb3{bottom:628.316805pt;}
.y16d{bottom:628.320007pt;}
.yc4{bottom:628.800981pt;}
.y16b{bottom:630.239990pt;}
.y60{bottom:634.033467pt;}
.y12d{bottom:636.480011pt;}
.y27{bottom:636.768066pt;}
.y228{bottom:638.556600pt;}
.y20e{bottom:640.000000pt;}
.y7c{bottom:641.119995pt;}
.y153{bottom:641.279999pt;}
.y289{bottom:642.239990pt;}
.yda{bottom:642.559998pt;}
.y266{bottom:642.720001pt;}
.y95{bottom:643.359985pt;}
.yf3{bottom:644.160004pt;}
.y5{bottom:645.598667pt;}
.y1f2{bottom:647.839996pt;}
.y18b{bottom:648.959991pt;}
.yc5{bottom:649.594654pt;}
.y12c{bottom:651.839996pt;}
.ybb{bottom:654.721069pt;}
.y168{bottom:657.920013pt;}
.yb4{bottom:658.558564pt;}
.y5f{bottom:658.705467pt;}
.y288{bottom:659.040009pt;}
.y7b{bottom:659.200012pt;}
.y2b5{bottom:659.519989pt;}
.y229{bottom:662.719886pt;}
.y12b{bottom:667.200012pt;}
.y3{bottom:668.977329pt;}
.y24c{bottom:669.282240pt;}
.yc6{bottom:670.558419pt;}
.y5e{bottom:672.038800pt;}
.y1b3{bottom:672.959991pt;}
.y152{bottom:674.880005pt;}
.y39{bottom:675.194599pt;}
.y287{bottom:676.000000pt;}
.yd9{bottom:676.160004pt;}
.y2b4{bottom:676.320007pt;}
.y94{bottom:677.119995pt;}
.y7a{bottom:677.440002pt;}
.y18a{bottom:677.600006pt;}
.yf2{bottom:677.920013pt;}
.y1e8{bottom:680.803192pt;}
.ybc{bottom:681.279131pt;}
.y12a{bottom:682.559998pt;}
.y22a{bottom:686.879914pt;}
.yb5{bottom:688.797032pt;}
.y26{bottom:690.101399pt;}
.y38{bottom:691.194599pt;}
.yc7{bottom:691.355351pt;}
.y167{bottom:691.839996pt;}
.y286{bottom:692.799988pt;}
.y2b3{bottom:693.279999pt;}
.y189{bottom:693.760010pt;}
.y79{bottom:695.679993pt;}
.y5d{bottom:696.710667pt;}
.y129{bottom:697.760010pt;}
.y1b2{bottom:699.519989pt;}
.y37{bottom:707.194599pt;}
.ybd{bottom:707.676846pt;}
.y166{bottom:708.799988pt;}
.y188{bottom:708.959991pt;}
.y285{bottom:709.600006pt;}
.yd8{bottom:709.920013pt;}
.y1e9{bottom:709.922752pt;}
.y5c{bottom:710.044000pt;}
.y2b2{bottom:710.079987pt;}
.y151{bottom:710.559998pt;}
.y93{bottom:710.880005pt;}
.y22b{bottom:711.036682pt;}
.yf1{bottom:711.679993pt;}
.yc8{bottom:712.158801pt;}
.y24d{bottom:712.319246pt;}
.y128{bottom:713.119995pt;}
.y1b0{bottom:717.600006pt;}
.yb6{bottom:719.042049pt;}
.y1b1{bottom:720.480011pt;}
.y36{bottom:723.194599pt;}
.y5b{bottom:723.377333pt;}
.y187{bottom:724.320007pt;}
.y78{bottom:724.640015pt;}
.y165{bottom:725.920013pt;}
.y284{bottom:726.559998pt;}
.y2b1{bottom:727.040009pt;}
.y127{bottom:728.480011pt;}
.yc9{bottom:732.958991pt;}
.ybe{bottom:734.236186pt;}
.y22c{bottom:735.199330pt;}
.y1af{bottom:735.839996pt;}
.y1ea{bottom:739.037914pt;}
.y186{bottom:739.679993pt;}
.y164{bottom:743.040009pt;}
.y283{bottom:743.359985pt;}
.yd7{bottom:743.679993pt;}
.y126{bottom:743.839996pt;}
.y92{bottom:744.640015pt;}
.y150{bottom:744.799988pt;}
.yf0{bottom:745.440002pt;}
.y5a{bottom:748.049200pt;}
.y1ae{bottom:748.320007pt;}
.yb7{bottom:749.279879pt;}
.y1ad{bottom:751.200012pt;}
.y77{bottom:753.600006pt;}
.yca{bottom:753.760524pt;}
.y185{bottom:755.040009pt;}
.y35{bottom:755.194599pt;}
.y24e{bottom:755.362082pt;}
.y123{bottom:756.320007pt;}
.y125{bottom:759.200012pt;}
.y22d{bottom:759.356099pt;}
.y282{bottom:760.320007pt;}
.ybf{bottom:760.638501pt;}
.y2b0{bottom:760.799988pt;}
.y59{bottom:761.382533pt;}
.y1ac{bottom:763.679993pt;}
.y1ab{bottom:766.559998pt;}
.y1eb{bottom:768.158940pt;}
.y184{bottom:770.399994pt;}
.y76{bottom:771.679993pt;}
.ycb{bottom:774.556785pt;}
.y122{bottom:774.559998pt;}
.y281{bottom:777.119995pt;}
.y163{bottom:777.279999pt;}
.yd6{bottom:777.440002pt;}
.y2af{bottom:777.600006pt;}
.y91{bottom:778.239990pt;}
.y1aa{bottom:778.880005pt;}
.yef{bottom:779.200012pt;}
.yb8{bottom:779.518986pt;}
.y14f{bottom:780.959991pt;}
.y2{bottom:781.661334pt;}
.y1a9{bottom:781.760010pt;}
.y121{bottom:782.239990pt;}
.y22e{bottom:783.518075pt;}
.y183{bottom:785.760010pt;}
.y58{bottom:786.054533pt;}
.yc0{bottom:787.040816pt;}
.y75{bottom:789.760010pt;}
.y280{bottom:793.920013pt;}
.y1a8{bottom:794.239990pt;}
.y2ae{bottom:794.399994pt;}
.ycc{bottom:795.358285pt;}
.y1a7{bottom:797.119995pt;}
.y1ec{bottom:797.279966pt;}
.y24f{bottom:798.399088pt;}
.y57{bottom:799.387867pt;}
.y182{bottom:800.960007pt;}
.y43{bottom:801.066933pt;}
.y120{bottom:802.880005pt;}
.y22f{bottom:807.680067pt;}
.y74{bottom:808.000000pt;}
.y1a5{bottom:809.600006pt;}
.yb9{bottom:809.758125pt;}
.y162{bottom:810.880005pt;}
.yd5{bottom:811.199997pt;}
.y2ad{bottom:811.360001pt;}
.y14e{bottom:811.839996pt;}
.y90{bottom:812.000000pt;}
.y1a6{bottom:812.479996pt;}
.y56{bottom:812.721200pt;}
.yee{bottom:812.960007pt;}
.yc1{bottom:813.600172pt;}
.y181{bottom:814.080002pt;}
.ycd{bottom:816.159786pt;}
.y11f{bottom:821.119995pt;}
.y1a3{bottom:824.960007pt;}
.y73{bottom:826.240005pt;}
.y1ed{bottom:826.400975pt;}
.y27f{bottom:827.679993pt;}
.y161{bottom:827.839996pt;}
.y2ac{bottom:828.160004pt;}
.y230{bottom:831.836820pt;}
.y180{bottom:832.320007pt;}
.y34{bottom:835.194599pt;}
.y11e{bottom:836.479996pt;}
.yce{bottom:836.961302pt;}
.y55{bottom:837.393067pt;}
.yba{bottom:839.997248pt;}
.y1a2{bottom:840.320007pt;}
.y250{bottom:841.441960pt;}
.y1a1{bottom:843.199997pt;}
.y72{bottom:844.479996pt;}
.y27e{bottom:844.639999pt;}
.y254{bottom:844.801915pt;}
.yd4{bottom:844.960007pt;}
.y262{bottom:844.960041pt;}
.y264{bottom:845.118168pt;}
.y2ab{bottom:845.119995pt;}
.y8f{bottom:845.759995pt;}
.yed{bottom:846.559998pt;}
.y33{bottom:851.194599pt;}
.y11d{bottom:851.839996pt;}
.y1f1{bottom:852.156765pt;}
.y1a0{bottom:855.679993pt;}
.y1ee{bottom:855.680197pt;}
.y231{bottom:855.998812pt;}
.y19f{bottom:858.559998pt;}
.y1{bottom:859.312000pt;}
.y27d{bottom:861.440002pt;}
.y17f{bottom:861.759995pt;}
.ycf{bottom:861.762216pt;}
.y2aa{bottom:861.919998pt;}
.y54{bottom:862.065067pt;}
.yd0{bottom:862.242688pt;}
.y71{bottom:862.559998pt;}
.yc2{bottom:864.803225pt;}
.yc3{bottom:866.402837pt;}
.y32{bottom:867.194599pt;}
.y11c{bottom:867.199997pt;}
.y1f0{bottom:871.838112pt;}
.y19e{bottom:873.919998pt;}
.y53{bottom:875.398400pt;}
.y27c{bottom:878.240005pt;}
.yd3{bottom:878.559998pt;}
.y17e{bottom:878.720001pt;}
.y8e{bottom:879.520004pt;}
.y232{bottom:880.160805pt;}
.yec{bottom:880.320007pt;}
.y70{bottom:880.800003pt;}
.y11b{bottom:882.559998pt;}
.y31{bottom:883.194599pt;}
.y253{bottom:886.078560pt;}
.y19b{bottom:886.559998pt;}
.y52{bottom:888.731733pt;}
.y19d{bottom:889.440002pt;}
.y1ef{bottom:891.681708pt;}
.y27b{bottom:895.199997pt;}
.y2a9{bottom:895.679993pt;}
.y11a{bottom:897.759995pt;}
.y6f{bottom:899.039993pt;}
.y30{bottom:899.194599pt;}
.ya5{bottom:900.639999pt;}
.y51{bottom:902.065067pt;}
.y252{bottom:907.359760pt;}
.y118{bottom:910.880005pt;}
.y27a{bottom:912.000000pt;}
.yd2{bottom:912.320007pt;}
.y2a8{bottom:912.479996pt;}
.y8d{bottom:913.279999pt;}
.yeb{bottom:913.440002pt;}
.y2f{bottom:915.194599pt;}
.y19a{bottom:915.839996pt;}
.y6e{bottom:917.279999pt;}
.y50{bottom:928.731733pt;}
.ya4{bottom:929.279999pt;}
.y117{bottom:929.440002pt;}
.yd1{bottom:946.080002pt;}
.y6d{bottom:946.239998pt;}
.y2e{bottom:947.194599pt;}
.ya1{bottom:978.720001pt;}
.ya0{bottom:995.520000pt;}
.h26{height:15.199982pt;}
.h23{height:15.199997pt;}
.h2f{height:15.200012pt;}
.h37{height:15.683174pt;}
.h36{height:17.918482pt;}
.h7{height:28.560000pt;}
.h20{height:28.633173pt;}
.h14{height:34.133333pt;}
.h15{height:34.261333pt;}
.hb{height:38.400000pt;}
.h1d{height:38.441433pt;}
.hc{height:38.544000pt;}
.h24{height:39.867953pt;}
.h6{height:40.800000pt;}
.h12{height:42.666667pt;}
.h11{height:42.826667pt;}
.h3{height:42.840000pt;}
.h21{height:42.949849pt;}
.h1b{height:43.031139pt;}
.h38{height:43.358912pt;}
.h16{height:44.191082pt;}
.h18{height:47.530884pt;}
.h1a{height:47.651875pt;}
.h1e{height:47.742064pt;}
.h2e{height:48.170900pt;}
.h2{height:48.960000pt;}
.ha{height:49.066667pt;}
.he{height:51.200000pt;}
.h17{height:52.684952pt;}
.h1c{height:52.785146pt;}
.h2a{height:53.080543pt;}
.h2c{height:54.334331pt;}
.h32{height:54.334335pt;}
.h1f{height:54.334451pt;}
.h22{height:54.334575pt;}
.h33{height:55.174720pt;}
.h19{height:58.452749pt;}
.h35{height:58.563912pt;}
.h13{height:59.733333pt;}
.h31{height:62.267981pt;}
.h5{height:69.360000pt;}
.h30{height:69.930908pt;}
.h28{height:72.886590pt;}
.h29{height:74.806510pt;}
.h10{height:76.800000pt;}
.h25{height:77.610964pt;}
.h27{height:78.251096pt;}
.h34{height:84.525047pt;}
.h2d{height:105.770876pt;}
.h4{height:105.826671pt;}
.hf{height:110.933333pt;}
.hd{height:128.000000pt;}
.h2b{height:148.406610pt;}
.h8{height:1055.994466pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w1e{width:4.483251pt;}
.w7{width:7.359985pt;}
.w9{width:7.359986pt;}
.w11{width:7.359993pt;}
.w5{width:7.360001pt;}
.wf{width:7.360016pt;}
.wa{width:8.160035pt;}
.w1c{width:8.646586pt;}
.w20{width:8.647485pt;}
.w8{width:9.600006pt;}
.w1b{width:23.833819pt;}
.wd{width:25.920013pt;}
.wb{width:29.600037pt;}
.w19{width:38.559998pt;}
.w1d{width:38.718245pt;}
.w6{width:41.440003pt;}
.w10{width:45.280029pt;}
.w4{width:47.360000pt;}
.w12{width:48.159988pt;}
.w18{width:50.399963pt;}
.w14{width:50.399994pt;}
.w15{width:50.400025pt;}
.w16{width:54.080017pt;}
.wc{width:59.360000pt;}
.we{width:73.279999pt;}
.w1f{width:76.632413pt;}
.w17{width:87.519989pt;}
.w1a{width:89.600006pt;}
.w13{width:113.440003pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x6{left:-768.000000pt;}
.x0{left:0.000000pt;}
.x12{left:27.040001pt;}
.x9{left:30.034000pt;}
.xa{left:38.738933pt;}
.x5{left:39.683733pt;}
.x84{left:48.000000pt;}
.x22{left:62.399282pt;}
.x24{left:66.878735pt;}
.x21{left:68.319391pt;}
.x31{left:80.160004pt;}
.x4b{left:86.400002pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:96.000000pt;}
.x6c{left:97.120003pt;}
.x75{left:102.400570pt;}
.x16{left:104.642308pt;}
.x1a{left:108.638396pt;}
.x1b{left:109.602496pt;}
.x17{left:111.357139pt;}
.xb{left:114.000000pt;}
.x19{left:115.359083pt;}
.x6d{left:118.722349pt;}
.x82{left:120.000000pt;}
.x18{left:138.720348pt;}
.x50{left:140.639999pt;}
.x10{left:144.000000pt;}
.x6b{left:145.119995pt;}
.x7{left:151.824000pt;}
.x79{left:153.919529pt;}
.x23{left:176.958537pt;}
.x4{left:180.874667pt;}
.x3e{left:182.240005pt;}
.x78{left:183.360001pt;}
.xe{left:185.338000pt;}
.x3c{left:188.639999pt;}
.x65{left:191.839996pt;}
.x14{left:193.119995pt;}
.x28{left:196.160004pt;}
.x4e{left:200.320007pt;}
.x48{left:202.559998pt;}
.x8{left:204.000000pt;}
.x68{left:208.320007pt;}
.x67{left:209.440002pt;}
.x76{left:210.720001pt;}
.x4c{left:216.960007pt;}
.x32{left:219.839996pt;}
.x51{left:221.440002pt;}
.x7f{left:223.360001pt;}
.x6e{left:224.639512pt;}
.x13{left:227.360001pt;}
.x47{left:238.399994pt;}
.x29{left:243.520004pt;}
.x40{left:246.240005pt;}
.x6f{left:247.360001pt;}
.x26{left:255.039993pt;}
.x41{left:259.839996pt;}
.x4d{left:265.119995pt;}
.x7a{left:273.923564pt;}
.x49{left:282.880005pt;}
.x25{left:288.000000pt;}
.x44{left:290.880005pt;}
.x6a{left:294.239990pt;}
.x43{left:297.119995pt;}
.x3f{left:320.160004pt;}
.x42{left:321.920013pt;}
.x73{left:325.440563pt;}
.x57{left:326.399994pt;}
.x54{left:328.160004pt;}
.x37{left:330.399994pt;}
.x52{left:351.200012pt;}
.x38{left:356.320007pt;}
.x81{left:357.760010pt;}
.x63{left:363.040009pt;}
.x5d{left:364.160004pt;}
.x70{left:366.561547pt;}
.xf{left:367.679993pt;}
.x35{left:374.399994pt;}
.x33{left:378.239990pt;}
.x58{left:380.480011pt;}
.x2a{left:381.440002pt;}
.x72{left:384.637694pt;}
.x45{left:385.920013pt;}
.x71{left:392.800494pt;}
.x34{left:396.640015pt;}
.x3{left:404.408000pt;}
.x27{left:408.000000pt;}
.x39{left:410.399994pt;}
.x1e{left:416.160966pt;}
.x20{left:417.116838pt;}
.x2b{left:422.880005pt;}
.x1d{left:428.000537pt;}
.xd{left:432.000000pt;}
.x5b{left:447.359985pt;}
.x5e{left:451.679993pt;}
.x64{left:452.640015pt;}
.x53{left:464.640015pt;}
.x46{left:466.559998pt;}
.x4a{left:473.920013pt;}
.x7b{left:476.002505pt;}
.x36{left:481.279999pt;}
.x2c{left:483.839996pt;}
.x2d{left:493.440002pt;}
.x5c{left:497.760010pt;}
.x7c{left:514.720751pt;}
.x1f{left:515.674964pt;}
.x7d{left:519.204001pt;}
.x55{left:533.119995pt;}
.x61{left:539.039978pt;}
.x62{left:577.599976pt;}
.x56{left:583.520020pt;}
.x2e{left:591.359985pt;}
.x7e{left:595.836415pt;}
.x2f{left:599.520020pt;}
.x3a{left:608.159973pt;}
.x59{left:617.760010pt;}
.x5f{left:619.520020pt;}
.x4f{left:638.400024pt;}
.x3b{left:653.440002pt;}
.x66{left:664.960022pt;}
.x60{left:669.919983pt;}
.x5a{left:671.840027pt;}
.x30{left:682.239990pt;}
.x74{left:684.005220pt;}
.x69{left:700.320007pt;}
.x3d{left:705.119995pt;}
.x11{left:712.640015pt;}
.x15{left:720.000000pt;}
.x77{left:728.640015pt;}
.x80{left:734.080017pt;}
.x1c{left:745.764623pt;}
.x87{left:846.034000pt;}
.x83{left:855.683733pt;}
.x85{left:967.824000pt;}
.x86{left:1020.000000pt;}
}




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