
    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_84b3af3bdbe1765546dff21a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991000;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_2267b6d30fd3e8f781402bc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.127000;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_bc6007aa39becb4fedfd907c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912000;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_63f6f3d360ba104e0bf9f728.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_4e563b5679693411200fe3e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171387;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_9d9a327489a386f2383fea8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.173340;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_a980cf8ac2d5c17954f09b71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_df1cfaca0eeb748c0bb66857.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_f6b56f5ecdbefe68e5f2bbe1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_e06ea748aaabb04eb1ee2bf4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_1aea0e0ecbeb95a741e405ad.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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);}
.vd{vertical-align:-49.607820px;}
.va{vertical-align:-44.585160px;}
.v8{vertical-align:-38.545320px;}
.v5{vertical-align:-15.984360px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.241404px;}
.v4{vertical-align:19.980480px;}
.v3{vertical-align:21.600000px;}
.v7{vertical-align:23.400000px;}
.v9{vertical-align:25.200000px;}
.v2{vertical-align:27.719520px;}
.vb{vertical-align:35.257020px;}
.v6{vertical-align:43.200000px;}
.vc{vertical-align:47.695320px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-46.926000px;}
.ws1{word-spacing:-28.080000px;}
.ws21{word-spacing:-17.160000px;}
.ws3{word-spacing:-15.600000px;}
.ws24{word-spacing:-12.480000px;}
.wsb{word-spacing:-12.012000px;}
.ws55{word-spacing:-10.920000px;}
.ws35{word-spacing:-10.140000px;}
.ws4{word-spacing:-9.672000px;}
.wsc{word-spacing:-9.360000px;}
.ws15{word-spacing:-9.094800px;}
.ws40{word-spacing:-9.048000px;}
.ws2{word-spacing:0.000000px;}
.ws6e{word-spacing:4.808795px;}
.ws4a{word-spacing:23.611556px;}
.ws3a{word-spacing:43.036500px;}
.ws48{word-spacing:56.252808px;}
.ws29{word-spacing:56.454557px;}
.ws49{word-spacing:59.555328px;}
.ws38{word-spacing:60.049470px;}
.ws3f{word-spacing:60.937890px;}
.ws3e{word-spacing:60.940230px;}
.wsd{word-spacing:62.781397px;}
.ws56{word-spacing:70.503300px;}
.ws51{word-spacing:75.949956px;}
.ws6f{word-spacing:79.223893px;}
.ws50{word-spacing:80.220264px;}
.ws57{word-spacing:83.923963px;}
.ws27{word-spacing:87.486821px;}
.ws41{word-spacing:93.278329px;}
.ws54{word-spacing:94.477740px;}
.ws43{word-spacing:105.905448px;}
.ws1a{word-spacing:105.977160px;}
.ws47{word-spacing:107.557752px;}
.ws19{word-spacing:109.391760px;}
.ws64{word-spacing:111.928779px;}
.ws44{word-spacing:114.324983px;}
.ws4f{word-spacing:115.676592px;}
.ws8{word-spacing:118.273386px;}
.ws5c{word-spacing:118.458900px;}
.ws26{word-spacing:119.363010px;}
.ws2b{word-spacing:123.999414px;}
.ws3b{word-spacing:127.790910px;}
.ws1c{word-spacing:134.601238px;}
.ws6c{word-spacing:139.580700px;}
.ws4b{word-spacing:139.873032px;}
.ws28{word-spacing:144.350249px;}
.ws46{word-spacing:145.631736px;}
.ws12{word-spacing:146.845080px;}
.ws42{word-spacing:147.284388px;}
.ws4e{word-spacing:148.085832px;}
.ws6d{word-spacing:148.527120px;}
.ws5a{word-spacing:152.420100px;}
.ws18{word-spacing:155.148888px;}
.ws58{word-spacing:155.513400px;}
.ws17{word-spacing:156.862297px;}
.ws34{word-spacing:158.358330px;}
.ws32{word-spacing:162.537868px;}
.ws31{word-spacing:162.537901px;}
.ws1b{word-spacing:164.941247px;}
.ws1e{word-spacing:164.941386px;}
.ws4d{word-spacing:165.328884px;}
.ws4c{word-spacing:167.949324px;}
.ws14{word-spacing:168.231960px;}
.ws6{word-spacing:171.017154px;}
.ws30{word-spacing:171.340554px;}
.ws59{word-spacing:177.903180px;}
.ws5d{word-spacing:179.480700px;}
.ws25{word-spacing:181.224566px;}
.ws3c{word-spacing:181.516920px;}
.ws5f{word-spacing:182.487900px;}
.ws16{word-spacing:185.964449px;}
.ws2e{word-spacing:186.199860px;}
.wsf{word-spacing:188.779320px;}
.ws37{word-spacing:189.902180px;}
.ws5b{word-spacing:191.412480px;}
.ws53{word-spacing:193.337291px;}
.ws45{word-spacing:195.286812px;}
.ws2d{word-spacing:198.756899px;}
.ws2a{word-spacing:199.672049px;}
.ws68{word-spacing:200.409310px;}
.ws6b{word-spacing:200.409344px;}
.ws7{word-spacing:208.376322px;}
.ws13{word-spacing:209.385720px;}
.ws52{word-spacing:215.736566px;}
.ws67{word-spacing:216.942726px;}
.ws11{word-spacing:217.049760px;}
.wse{word-spacing:217.051920px;}
.ws1d{word-spacing:223.319880px;}
.wsa{word-spacing:224.909454px;}
.ws69{word-spacing:226.781161px;}
.ws65{word-spacing:226.781940px;}
.ws6a{word-spacing:226.784250px;}
.ws10{word-spacing:233.142510px;}
.ws23{word-spacing:243.460140px;}
.ws2f{word-spacing:249.931049px;}
.ws2c{word-spacing:249.938249px;}
.ws9{word-spacing:251.281338px;}
.ws1f{word-spacing:254.300046px;}
.ws66{word-spacing:264.141570px;}
.ws20{word-spacing:280.671930px;}
.ws62{word-spacing:295.718205px;}
.ws61{word-spacing:307.734600px;}
.ws5e{word-spacing:378.014282px;}
.ws60{word-spacing:399.876768px;}
.ws33{word-spacing:403.816288px;}
.ws36{word-spacing:427.400933px;}
.ws39{word-spacing:485.949628px;}
.ws3d{word-spacing:496.102812px;}
.ws63{word-spacing:521.369291px;}
.ws5{word-spacing:941.886935px;}
.ws22{word-spacing:982.153282px;}
._82{margin-left:-8.102856px;}
._7e{margin-left:-6.842979px;}
._5b{margin-left:-5.717831px;}
._32{margin-left:-4.645438px;}
._7{margin-left:-2.767553px;}
._0{margin-left:-1.632127px;}
._b{width:1.503810px;}
._4{width:2.957590px;}
._11{width:4.499793px;}
._2{width:5.689735px;}
._1{width:7.206264px;}
._15{width:8.227309px;}
._f{width:9.522547px;}
._6{width:11.264051px;}
._17{width:12.276592px;}
._13{width:14.226262px;}
._41{width:16.679239px;}
._c{width:17.707471px;}
._a{width:19.586229px;}
._12{width:21.216049px;}
._2d{width:22.248621px;}
._e{width:23.316119px;}
._42{width:24.772303px;}
._8{width:26.407061px;}
._24{width:27.809838px;}
._7f{width:29.250715px;}
._14{width:30.892884px;}
._3b{width:32.117856px;}
._81{width:35.693419px;}
._80{width:37.192980px;}
._16{width:38.623997px;}
._9{width:39.660000px;}
._3a{width:41.908077px;}
._5{width:43.080011px;}
._10{width:46.072936px;}
._69{width:48.601244px;}
._6a{width:51.391972px;}
._83{width:59.699989px;}
._d{width:61.260248px;}
._60{width:63.985127px;}
._8c{width:68.026919px;}
._39{width:69.832721px;}
._71{width:72.757344px;}
._76{width:81.342734px;}
._8b{width:90.897229px;}
._5f{width:92.074689px;}
._62{width:93.606083px;}
._89{width:98.454000px;}
._72{width:101.931602px;}
._25{width:102.953400px;}
._75{width:105.306120px;}
._68{width:114.965837px;}
._49{width:116.718296px;}
._73{width:118.364656px;}
._4a{width:122.433386px;}
._47{width:123.949576px;}
._6e{width:128.920266px;}
._65{width:134.765498px;}
._43{width:135.856066px;}
._67{width:136.964887px;}
._3{width:138.126305px;}
._6f{width:140.089403px;}
._70{width:141.688414px;}
._74{width:142.733170px;}
._44{width:147.850396px;}
._45{width:150.329809px;}
._6c{width:151.807841px;}
._66{width:154.323078px;}
._1c{width:156.502110px;}
._86{width:158.868181px;}
._48{width:159.897837px;}
._7c{width:163.282320px;}
._6b{width:168.701248px;}
._54{width:171.255706px;}
._2f{width:174.205320px;}
._59{width:175.772037px;}
._64{width:183.660930px;}
._2b{width:185.456159px;}
._79{width:187.264524px;}
._58{width:188.328769px;}
._78{width:190.310113px;}
._6d{width:191.326076px;}
._27{width:198.091859px;}
._5c{width:199.143858px;}
._7a{width:200.261481px;}
._77{width:202.245431px;}
._46{width:204.242888px;}
._26{width:205.732980px;}
._5e{width:207.435000px;}
._56{width:210.122811px;}
._4b{width:212.505133px;}
._7b{width:213.594802px;}
._5a{width:214.709002px;}
._7d{width:216.457636px;}
._84{width:218.245339px;}
._5d{width:222.280161px;}
._4d{width:224.517167px;}
._29{width:226.380572px;}
._30{width:232.679880px;}
._4c{width:238.917419px;}
._57{width:241.064114px;}
._31{width:242.684197px;}
._3e{width:246.671718px;}
._87{width:250.488000px;}
._85{width:251.534527px;}
._55{width:252.740921px;}
._61{width:254.781000px;}
._38{width:260.607632px;}
._50{width:262.470932px;}
._3c{width:268.811753px;}
._53{width:274.482831px;}
._4e{width:276.962269px;}
._2e{width:286.432685px;}
._51{width:288.230635px;}
._4f{width:316.497191px;}
._52{width:328.509224px;}
._8a{width:330.546000px;}
._1a{width:354.466553px;}
._63{width:369.967511px;}
._18{width:419.012400px;}
._88{width:435.462000px;}
._35{width:460.824600px;}
._2c{width:515.334618px;}
._3f{width:518.712000px;}
._19{width:522.223200px;}
._37{width:530.625414px;}
._23{width:535.919953px;}
._28{width:543.557852px;}
._3d{width:562.925400px;}
._1b{width:570.035753px;}
._2a{width:572.668990px;}
._40{width:607.831800px;}
._1d{width:610.372800px;}
._1e{width:628.113600px;}
._34{width:681.753000px;}
._22{width:790.660200px;}
._36{width:924.621953px;}
._21{width:1046.654400px;}
._33{width:1181.082600px;}
._1f{width:1295.718600px;}
._20{width:1478.532000px;}
.fc8{color:rgb(64,62,72);}
.fc7{color:transparent;}
.fc4{color:rgb(60,61,71);}
.fc2{color:rgb(60,61,71);}
.fc9{color:rgb(113,113,113);}
.fc5{color:rgb(62,61,71);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc6{color:rgb(67,70,64);}
.fc0{color:rgb(204,173,26);}
.fsc{font-size:27.984000px;}
.fsf{font-size:34.800000px;}
.fsb{font-size:34.980000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:37.200000px;}
.fs11{font-size:38.218200px;}
.fse{font-size:38.400000px;}
.fsd{font-size:39.000000px;}
.fs10{font-size:42.000000px;}
.fs9{font-size:46.200000px;}
.fs6{font-size:48.000000px;}
.fs12{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:144.000000px;}
.fs1{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y1c0{bottom:49.258425px;}
.y1bf{bottom:61.858425px;}
.y269{bottom:77.848860px;}
.yda{bottom:84.599400px;}
.y129{bottom:89.131500px;}
.y1bd{bottom:90.063225px;}
.y24d{bottom:90.075660px;}
.y268{bottom:99.844950px;}
.y1bc{bottom:100.502880px;}
.y1be{bottom:105.723525px;}
.y24c{bottom:108.075660px;}
.y55{bottom:108.303060px;}
.y20e{bottom:109.320000px;}
.y2d7{bottom:110.237700px;}
.y1bb{bottom:110.942535px;}
.y128{bottom:111.631500px;}
.y18{bottom:116.835000px;}
.y17c{bottom:118.196850px;}
.y23e{bottom:119.240955px;}
.y1ba{bottom:121.382190px;}
.y20d{bottom:121.920000px;}
.y54{bottom:122.162820px;}
.y2ab{bottom:123.268500px;}
.ya4{bottom:126.224910px;}
.yd9{bottom:126.225000px;}
.y1e4{bottom:126.235500px;}
.y2d6{bottom:128.237700px;}
.y145{bottom:129.230400px;}
.y24b{bottom:130.071750px;}
.ya{bottom:133.870350px;}
.y1b8{bottom:134.003340px;}
.y127{bottom:134.131500px;}
.y20c{bottom:134.520000px;}
.y94{bottom:135.395100px;}
.y23d{bottom:137.240955px;}
.y17{bottom:139.335000px;}
.ya3{bottom:144.224910px;}
.y1b7{bottom:144.442995px;}
.y2aa{bottom:145.768500px;}
.y93{bottom:146.195100px;}
.yd8{bottom:148.725000px;}
.y1e3{bottom:148.735500px;}
.y1b9{bottom:149.663040px;}
.y102{bottom:151.335000px;}
.y28a{bottom:151.848270px;}
.y1b6{bottom:154.882650px;}
.y126{bottom:156.631500px;}
.y144{bottom:156.879000px;}
.y24a{bottom:159.027000px;}
.y23c{bottom:159.236460px;}
.y20b{bottom:159.720000px;}
.y16{bottom:161.835000px;}
.ya2{bottom:162.224910px;}
.y17b{bottom:164.962350px;}
.y1b5{bottom:165.322305px;}
.y2d4{bottom:165.822090px;}
.y2a9{bottom:168.268500px;}
.y53{bottom:168.270270px;}
.y223{bottom:169.156500px;}
.yd7{bottom:171.225000px;}
.y1e2{bottom:171.235500px;}
.y101{bottom:173.835000px;}
.y17a{bottom:176.662350px;}
.y1b3{bottom:177.639915px;}
.y125{bottom:179.131500px;}
.ya1{bottom:180.224910px;}
.y249{bottom:181.527000px;}
.y91{bottom:183.300150px;}
.y15{bottom:184.335000px;}
.y143{bottom:184.527000px;}
.y2d5{bottom:187.351740px;}
.y1b2{bottom:188.079570px;}
.y1b4{bottom:188.080155px;}
.y23b{bottom:188.240910px;}
.y222{bottom:191.656500px;}
.yd6{bottom:193.725000px;}
.y1e1{bottom:193.735500px;}
.y90{bottom:194.100150px;}
.y100{bottom:196.335000px;}
.y52{bottom:197.885955px;}
.y289{bottom:198.189420px;}
.ya0{bottom:198.224910px;}
.y1b1{bottom:198.519225px;}
.y92{bottom:199.500150px;}
.y2d3{bottom:199.753695px;}
.y124{bottom:201.631500px;}
.y248{bottom:204.027000px;}
.y8f{bottom:204.900150px;}
.y23a{bottom:206.240910px;}
.y179{bottom:206.428500px;}
.y14{bottom:206.835000px;}
.y1af{bottom:209.983725px;}
.y51{bottom:211.746300px;}
.y142{bottom:212.175000px;}
.y221{bottom:214.156500px;}
.y8e{bottom:215.700150px;}
.yd5{bottom:216.225000px;}
.y1e0{bottom:216.235500px;}
.y178{bottom:218.128500px;}
.yff{bottom:218.835000px;}
.y9f{bottom:220.221000px;}
.y1ae{bottom:220.423380px;}
.y2a8{bottom:220.768500px;}
.y288{bottom:225.042420px;}
.y1b0{bottom:225.643425px;}
.y247{bottom:226.527000px;}
.y239{bottom:228.237000px;}
.y13{bottom:229.335000px;}
.yf4{bottom:230.835000px;}
.y1ad{bottom:230.863035px;}
.y2d2{bottom:234.798045px;}
.y220{bottom:236.656500px;}
.y20a{bottom:236.923050px;}
.yd4{bottom:238.725000px;}
.y50{bottom:239.961000px;}
.y1ac{bottom:241.302690px;}
.yfe{bottom:241.335000px;}
.y141{bottom:241.530000px;}
.y8d{bottom:242.290650px;}
.y2a7{bottom:243.268500px;}
.y287{bottom:244.639620px;}
.y246{bottom:249.027000px;}
.y209{bottom:249.523050px;}
.y2db{bottom:249.561000px;}
.y286{bottom:251.569500px;}
.y12{bottom:251.835000px;}
.y8c{bottom:253.090650px;}
.yf3{bottom:253.335000px;}
.y177{bottom:253.743000px;}
.y123{bottom:254.131500px;}
.y2cb{bottom:256.438515px;}
.y21f{bottom:259.156500px;}
.yd3{bottom:261.225000px;}
.y208{bottom:262.123050px;}
.yfd{bottom:263.835000px;}
.y8b{bottom:263.890650px;}
.y1aa{bottom:267.598950px;}
.y2d1{bottom:269.517195px;}
.y4f{bottom:269.944650px;}
.y2c7{bottom:270.592350px;}
.y2da{bottom:272.061000px;}
.y1df{bottom:272.270205px;}
.y207{bottom:274.723050px;}
.y2cd{bottom:275.006865px;}
.yf2{bottom:275.835000px;}
.y122{bottom:276.631500px;}
.y285{bottom:277.552500px;}
.y1a9{bottom:278.038605px;}
.y1ab{bottom:278.039190px;}
.y21e{bottom:281.656500px;}
.y1de{bottom:286.129965px;}
.y206{bottom:287.323050px;}
.y1a8{bottom:288.478260px;}
.y8a{bottom:289.159800px;}
.y11{bottom:289.335000px;}
.y176{bottom:289.358700px;}
.y140{bottom:293.596500px;}
.y2a6{bottom:295.768500px;}
.y2ca{bottom:299.282865px;}
.y89{bottom:299.959800px;}
.y1a6{bottom:300.146670px;}
.yd2{bottom:300.299700px;}
.y2c8{bottom:300.704910px;}
.y175{bottom:301.058700px;}
.y245{bottom:301.527000px;}
.y4e{bottom:302.173500px;}
.y21d{bottom:304.156500px;}
.y2d0{bottom:304.849845px;}
.y2d9{bottom:305.061000px;}
.y1a5{bottom:310.586325px;}
.y1a7{bottom:310.586910px;}
.y7{bottom:314.185500px;}
.yfc{bottom:316.335000px;}
.y2a5{bottom:318.268500px;}
.y1a4{bottom:321.025980px;}
.y13f{bottom:321.244500px;}
.y284{bottom:321.337650px;}
.yd1{bottom:321.899700px;}
.y244{bottom:324.027000px;}
.y2c9{bottom:325.915515px;}
.y21c{bottom:326.656500px;}
.y10{bottom:326.835000px;}
.y135{bottom:327.720000px;}
.y88{bottom:327.991650px;}
.yf1{bottom:328.335000px;}
.y204{bottom:332.645850px;}
.y31{bottom:334.335000px;}
.y4d{bottom:335.313390px;}
.y1dd{bottom:337.574115px;}
.y1a3{bottom:337.914495px;}
.y2d8{bottom:338.061000px;}
.y87{bottom:338.791650px;}
.yfb{bottom:338.835000px;}
.y2cf{bottom:340.129695px;}
.y2a4{bottom:340.768500px;}
.yd0{bottom:343.499700px;}
.y203{bottom:345.245850px;}
.y4c{bottom:346.473150px;}
.y243{bottom:346.527000px;}
.y6{bottom:346.585500px;}
.y283{bottom:348.190650px;}
.y1a2{bottom:348.354150px;}
.y13e{bottom:348.892500px;}
.y21b{bottom:349.156500px;}
.y86{bottom:349.591650px;}
.y174{bottom:349.719000px;}
.y1dc{bottom:350.174115px;}
.yf0{bottom:350.835000px;}
.y2c5{bottom:353.101650px;}
.ycf{bottom:354.299700px;}
.y2cc{bottom:355.985715px;}
.y30{bottom:356.835000px;}
.y202{bottom:357.845850px;}
.yfa{bottom:361.335000px;}
.y173{bottom:361.419000px;}
.y2a3{bottom:363.268500px;}
.y205{bottom:364.145850px;}
.yce{bottom:365.099700px;}
.y201{bottom:370.445850px;}
.y21a{bottom:371.656500px;}
.y1db{bottom:372.761400px;}
.y282{bottom:374.719500px;}
.y2ce{bottom:374.885745px;}
.y4b{bottom:375.289500px;}
.y1a1{bottom:375.682800px;}
.ycd{bottom:375.899700px;}
.y13d{bottom:376.540500px;}
.y2f{bottom:379.335000px;}
.y134{bottom:381.721200px;}
.y200{bottom:383.045850px;}
.y85{bottom:383.098500px;}
.yf9{bottom:383.835000px;}
.y1da{bottom:385.361400px;}
.yf{bottom:390.252000px;}
.y219{bottom:394.156500px;}
.y1ff{bottom:395.645850px;}
.y172{bottom:397.034550px;}
.y242{bottom:399.027000px;}
.y2c6{bottom:399.308700px;}
.y281{bottom:400.702500px;}
.y2e{bottom:401.835000px;}
.yef{bottom:403.335000px;}
.yf8{bottom:406.335000px;}
.y13c{bottom:407.935725px;}
.y1d9{bottom:407.950500px;}
.y1a0{bottom:408.231000px;}
.y2c4{bottom:409.657500px;}
.y84{bottom:411.144000px;}
.y2a2{bottom:415.768500px;}
.y218{bottom:416.656500px;}
.y13b{bottom:419.095485px;}
.y139{bottom:419.209740px;}
.ye{bottom:420.252000px;}
.y1d8{bottom:420.550500px;}
.y241{bottom:421.527000px;}
.y133{bottom:423.187350px;}
.y2d{bottom:424.335000px;}
.yee{bottom:425.835000px;}
.y39{bottom:428.200500px;}
.ycc{bottom:428.428350px;}
.yf7{bottom:428.835000px;}
.y13a{bottom:430.255830px;}
.y82{bottom:434.697900px;}
.y2a1{bottom:438.268500px;}
.y171{bottom:438.499650px;}
.y19f{bottom:439.475025px;}
.y1fe{bottom:442.903500px;}
.y240{bottom:444.027000px;}
.y280{bottom:444.485550px;}
.y81{bottom:445.497900px;}
.y2c{bottom:446.835000px;}
.yed{bottom:448.335000px;}
.y1d7{bottom:449.437200px;}
.y19e{bottom:449.914680px;}
.y38{bottom:450.700500px;}
.y83{bottom:450.897300px;}
.yf6{bottom:451.335000px;}
.y19a{bottom:451.755045px;}
.y197{bottom:451.755090px;}
.y19d{bottom:453.495345px;}
.y1fd{bottom:455.503500px;}
.y80{bottom:456.297900px;}
.y2b0{bottom:460.335000px;}
.y2a0{bottom:460.768500px;}
.y138{bottom:461.647440px;}
.y199{bottom:462.195285px;}
.y196{bottom:462.195330px;}
.y19c{bottom:462.195345px;}
.y132{bottom:464.653500px;}
.y23f{bottom:466.527000px;}
.y7f{bottom:467.097900px;}
.y1fc{bottom:468.103500px;}
.y217{bottom:469.156500px;}
.y2b{bottom:469.335000px;}
.ycb{bottom:469.892850px;}
.y19b{bottom:470.895345px;}
.y27f{bottom:471.340200px;}
.y198{bottom:472.634940px;}
.y170{bottom:479.965350px;}
.y1fb{bottom:480.703500px;}
.y195{bottom:482.271315px;}
.y2af{bottom:482.835000px;}
.y1d6{bottom:484.625700px;}
.yf5{bottom:488.835000px;}
.y7e{bottom:490.687200px;}
.y216{bottom:491.656500px;}
.y1fa{bottom:493.303500px;}
.y137{bottom:495.174240px;}
.y27e{bottom:497.868000px;}
.yd{bottom:497.895000px;}
.yec{bottom:500.835000px;}
.y7d{bottom:501.487200px;}
.y37{bottom:503.200500px;}
.y2ae{bottom:505.335000px;}
.y1f9{bottom:505.903500px;}
.y131{bottom:506.118000px;}
.y9e{bottom:506.656500px;}
.y2a{bottom:506.835000px;}
.y267{bottom:507.404700px;}
.y136{bottom:509.034000px;}
.yca{bottom:511.358550px;}
.y7c{bottom:512.287200px;}
.y29f{bottom:513.268500px;}
.y194{bottom:513.802965px;}
.y215{bottom:514.156500px;}
.y1f8{bottom:518.503500px;}
.y1d5{bottom:519.813000px;}
.y16f{bottom:521.431500px;}
.yeb{bottom:523.335000px;}
.y27d{bottom:523.851000px;}
.y193{bottom:525.322500px;}
.y36{bottom:525.700500px;}
.y9d{bottom:529.156500px;}
.y266{bottom:532.604700px;}
.y7b{bottom:533.000700px;}
.y29e{bottom:535.768500px;}
.y214{bottom:536.656500px;}
.yc{bottom:541.095000px;}
.y130{bottom:542.268360px;}
.y2ad{bottom:542.835000px;}
.y7a{bottom:543.800700px;}
.y238{bottom:544.335000px;}
.y12d{bottom:547.848165px;}
.y12c{bottom:548.142300px;}
.y35{bottom:548.200500px;}
.y9c{bottom:551.656500px;}
.yc9{bottom:552.823650px;}
.y12f{bottom:553.428120px;}
.y12b{bottom:553.542300px;}
.y1d4{bottom:555.001500px;}
.y29d{bottom:558.268500px;}
.y213{bottom:559.156500px;}
.yea{bottom:560.835000px;}
.y1f7{bottom:561.265200px;}
.y16e{bottom:562.896000px;}
.y12e{bottom:564.588465px;}
.y237{bottom:566.835000px;}
.y79{bottom:566.914200px;}
.y265{bottom:567.250650px;}
.y27c{bottom:567.636420px;}
.y34{bottom:570.700500px;}
.y11d{bottom:571.648620px;}
.y1f6{bottom:573.865200px;}
.y29{bottom:574.156500px;}
.y192{bottom:574.935000px;}
.y78{bottom:577.714200px;}
.ye9{bottom:578.835000px;}
.y29c{bottom:580.768500px;}
.y212{bottom:581.656500px;}
.yb{bottom:584.295000px;}
.y11c{bottom:585.508380px;}
.y1f5{bottom:586.465200px;}
.y77{bottom:588.514200px;}
.y236{bottom:589.335000px;}
.y1d3{bottom:590.188200px;}
.y264{bottom:590.678850px;}
.y33{bottom:593.200500px;}
.yc8{bottom:594.289350px;}
.y27b{bottom:594.489420px;}
.y12a{bottom:595.843500px;}
.y28{bottom:596.656500px;}
.y191{bottom:597.435000px;}
.y16d{bottom:598.835895px;}
.y29b{bottom:603.268500px;}
.y211{bottom:604.156500px;}
.y16a{bottom:604.235895px;}
.y2c3{bottom:608.938500px;}
.y16c{bottom:609.636480px;}
.y235{bottom:611.835000px;}
.y27a{bottom:614.086620px;}
.y169{bottom:615.035895px;}
.y32{bottom:615.700500px;}
.y76{bottom:617.991000px;}
.y263{bottom:618.096000px;}
.y27{bottom:619.156500px;}
.y190{bottom:619.935000px;}
.y16b{bottom:620.435895px;}
.y279{bottom:621.016500px;}
.y168{bottom:621.129060px;}
.y156{bottom:622.375950px;}
.y1d2{bottom:625.375500px;}
.y210{bottom:626.656500px;}
.y11b{bottom:629.055330px;}
.y1f3{bottom:630.141000px;}
.y167{bottom:631.929060px;}
.y2c2{bottom:634.138500px;}
.y234{bottom:634.335000px;}
.yc7{bottom:635.753850px;}
.y262{bottom:642.207000px;}
.y18f{bottom:642.435000px;}
.y166{bottom:642.729060px;}
.y1f2{bottom:642.741000px;}
.y11a{bottom:642.915675px;}
.y70{bottom:644.194170px;}
.y67{bottom:644.848005px;}
.y278{bottom:647.001000px;}
.y9b{bottom:649.156500px;}
.y75{bottom:649.774740px;}
.y6c{bottom:650.248020px;}
.y29a{bottom:650.916450px;}
.ye8{bottom:653.710500px;}
.y4a{bottom:654.052800px;}
.y1f1{bottom:655.341000px;}
.y6f{bottom:655.354515px;}
.y72{bottom:655.354560px;}
.y66{bottom:655.648590px;}
.y69{bottom:655.648605px;}
.y121{bottom:656.656500px;}
.y165{bottom:656.683740px;}
.y119{bottom:656.776020px;}
.y233{bottom:656.835000px;}
.y1d1{bottom:660.564000px;}
.y74{bottom:660.934500px;}
.y6b{bottom:661.048605px;}
.y18e{bottom:664.935000px;}
.y65{bottom:666.448590px;}
.y68{bottom:666.448605px;}
.y6e{bottom:666.514275px;}
.y71{bottom:666.514320px;}
.y1f0{bottom:667.941000px;}
.y26{bottom:671.656500px;}
.y6a{bottom:671.848020px;}
.y73{bottom:672.094260px;}
.y1f4{bottom:674.241000px;}
.y299{bottom:676.116450px;}
.ye7{bottom:676.210500px;}
.yc6{bottom:677.220000px;}
.y2c1{bottom:677.238300px;}
.y64{bottom:677.248005px;}
.y155{bottom:677.671500px;}
.y6d{bottom:677.674620px;}
.y120{bottom:679.156500px;}
.y232{bottom:679.335000px;}
.y261{bottom:679.633650px;}
.y1ef{bottom:680.541000px;}
.y18d{bottom:687.435000px;}
.y49{bottom:689.062500px;}
.y277{bottom:690.784770px;}
.y1ee{bottom:693.141000px;}
.y164{bottom:693.993240px;}
.y25{bottom:694.156500px;}
.y1d0{bottom:695.750700px;}
.y5{bottom:697.896000px;}
.y63{bottom:698.179455px;}
.ye6{bottom:698.710500px;}
.y11f{bottom:701.656500px;}
.y231{bottom:701.835000px;}
.y2c0{bottom:702.121350px;}
.y48{bottom:702.922260px;}
.y118{bottom:704.323140px;}
.y154{bottom:705.319500px;}
.y1ed{bottom:705.741000px;}
.y260{bottom:707.050800px;}
.y163{bottom:707.853000px;}
.y18c{bottom:709.935000px;}
.y298{bottom:716.466450px;}
.y24{bottom:716.656500px;}
.y276{bottom:717.639420px;}
.y117{bottom:718.183485px;}
.y1ec{bottom:718.341000px;}
.yc5{bottom:718.684500px;}
.ye5{bottom:721.210500px;}
.y11e{bottom:724.156500px;}
.y230{bottom:724.335000px;}
.y62{bottom:725.804655px;}
.y2bf{bottom:727.005000px;}
.y297{bottom:729.066450px;}
.y1cf{bottom:730.939200px;}
.y18b{bottom:732.435000px;}
.y153{bottom:732.967500px;}
.y25f{bottom:734.469150px;}
.y275{bottom:737.236620px;}
.y23{bottom:739.156500px;}
.y61{bottom:739.665000px;}
.y47{bottom:743.482680px;}
.ye4{bottom:743.710500px;}
.y274{bottom:744.166500px;}
.y9a{bottom:746.656500px;}
.y116{bottom:746.978805px;}
.y2be{bottom:751.846500px;}
.y18a{bottom:754.935000px;}
.y4{bottom:757.296000px;}
.y46{bottom:757.342440px;}
.y295{bottom:759.676950px;}
.yc4{bottom:760.150650px;}
.y152{bottom:760.615500px;}
.y115{bottom:760.839150px;}
.y20f{bottom:761.656500px;}
.y162{bottom:761.835000px;}
.y25e{bottom:761.886300px;}
.y1eb{bottom:761.980500px;}
.y1ce{bottom:766.126500px;}
.y1e8{bottom:767.854455px;}
.y99{bottom:769.156500px;}
.y273{bottom:770.149500px;}
.y294{bottom:772.276950px;}
.y1ea{bottom:773.140260px;}
.y22f{bottom:776.835000px;}
.y189{bottom:777.435000px;}
.y2bd{bottom:778.539150px;}
.y296{bottom:778.576950px;}
.y1e7{bottom:778.654455px;}
.y1e9{bottom:784.300605px;}
.y161{bottom:784.335000px;}
.y293{bottom:784.876950px;}
.y45{bottom:786.136560px;}
.y25d{bottom:789.302850px;}
.y151{bottom:790.939500px;}
.y22{bottom:791.656500px;}
.y292{bottom:797.476950px;}
.y60{bottom:799.156500px;}
.y22e{bottom:799.335000px;}
.y188{bottom:799.935000px;}
.y44{bottom:799.996320px;}
.y1cd{bottom:801.315000px;}
.yc3{bottom:801.616350px;}
.ye3{bottom:803.827650px;}
.y2bc{bottom:805.273650px;}
.y160{bottom:806.835000px;}
.y114{bottom:808.831500px;}
.y272{bottom:813.934200px;}
.y21{bottom:814.156500px;}
.y3{bottom:816.696000px;}
.y25c{bottom:816.721200px;}
.y5f{bottom:821.656500px;}
.y22d{bottom:821.835000px;}
.y1e6{bottom:828.517155px;}
.y291{bottom:829.002150px;}
.y15f{bottom:829.335000px;}
.y2bb{bottom:830.158350px;}
.y1cc{bottom:836.501700px;}
.y20{bottom:836.656500px;}
.y113{bottom:838.668000px;}
.y271{bottom:840.787200px;}
.y290{bottom:841.602150px;}
.y150{bottom:842.038500px;}
.y1e5{bottom:842.377500px;}
.yc2{bottom:843.080850px;}
.y25b{bottom:844.138350px;}
.y5e{bottom:844.156500px;}
.y22c{bottom:844.335000px;}
.ye2{bottom:847.989150px;}
.y43{bottom:847.989270px;}
.y15e{bottom:851.835000px;}
.y187{bottom:852.435000px;}
.y2ba{bottom:855.042000px;}
.y1f{bottom:859.156500px;}
.y5d{bottom:866.656500px;}
.y22b{bottom:866.835000px;}
.y270{bottom:867.315000px;}
.y112{bottom:868.141200px;}
.y14f{bottom:869.686500px;}
.y25a{bottom:871.555500px;}
.y28f{bottom:871.651950px;}
.y1cb{bottom:871.690200px;}
.y15d{bottom:874.335000px;}
.y186{bottom:874.935000px;}
.ye1{bottom:877.825650px;}
.y42{bottom:877.825770px;}
.y2b9{bottom:879.883785px;}
.y98{bottom:881.656500px;}
.yc1{bottom:884.547000px;}
.y5c{bottom:889.156500px;}
.y22a{bottom:889.335000px;}
.y26f{bottom:893.299740px;}
.y8{bottom:895.302000px;}
.y15c{bottom:896.835000px;}
.y14e{bottom:897.334500px;}
.y185{bottom:897.435000px;}
.y2b7{bottom:897.771240px;}
.y111{bottom:898.124850px;}
.y259{bottom:898.973850px;}
.y28e{bottom:899.068500px;}
.y2b4{bottom:903.171240px;}
.y97{bottom:904.156500px;}
.y1ca{bottom:906.877500px;}
.ye0{bottom:907.298850px;}
.y41{bottom:907.298970px;}
.y2b8{bottom:908.456985px;}
.y2b6{bottom:908.571240px;}
.y1e{bottom:911.656500px;}
.y2b3{bottom:913.971240px;}
.y26d{bottom:918.997140px;}
.y15b{bottom:919.335000px;}
.y2b5{bottom:919.371240px;}
.y184{bottom:919.935000px;}
.ybc{bottom:920.402610px;}
.y26c{bottom:924.577605px;}
.y14d{bottom:924.982500px;}
.y258{bottom:926.391000px;}
.y28d{bottom:926.485650px;}
.y96{bottom:926.656500px;}
.yb1{bottom:927.356505px;}
.y26e{bottom:930.157485px;}
.y110{bottom:931.419000px;}
.ybb{bottom:931.562955px;}
.y5b{bottom:934.156500px;}
.ydf{bottom:937.282500px;}
.y40{bottom:937.282620px;}
.yad{bottom:938.156505px;}
.y2b2{bottom:938.311740px;}
.y229{bottom:941.835000px;}
.y1c9{bottom:942.066000px;}
.y183{bottom:942.435000px;}
.yba{bottom:942.722715px;}
.yac{bottom:948.956505px;}
.y95{bottom:949.156500px;}
.y2b1{bottom:952.171500px;}
.y257{bottom:953.807550px;}
.yb9{bottom:953.882475px;}
.y28c{bottom:953.904000px;}
.yaf{bottom:954.356505px;}
.yc0{bottom:954.356580px;}
.y26b{bottom:956.344155px;}
.y14c{bottom:956.378025px;}
.y5a{bottom:956.656500px;}
.y15a{bottom:956.835000px;}
.yb3{bottom:959.462895px;}
.yab{bottom:959.756505px;}
.y1d{bottom:964.156500px;}
.y228{bottom:964.335000px;}
.y182{bottom:964.935000px;}
.yb8{bottom:965.042820px;}
.ybd{bottom:965.042910px;}
.ya7{bottom:965.156505px;}
.ybf{bottom:965.156580px;}
.y10c{bottom:965.578560px;}
.y3f{bottom:966.976740px;}
.y14b{bottom:967.537785px;}
.y149{bottom:967.652040px;}
.y26a{bottom:970.204500px;}
.yaa{bottom:970.556505px;}
.yb2{bottom:970.622655px;}
.yde{bottom:973.906500px;}
.y159{bottom:974.835000px;}
.y1c8{bottom:975.919050px;}
.yae{bottom:975.956505px;}
.ybe{bottom:975.956580px;}
.yb7{bottom:976.202580px;}
.y10f{bottom:976.738305px;}
.y10b{bottom:976.738320px;}
.y107{bottom:976.738335px;}
.y14a{bottom:978.698130px;}
.y59{bottom:979.156500px;}
.y3e{bottom:980.836500px;}
.y256{bottom:981.226500px;}
.y28b{bottom:981.273135px;}
.ya9{bottom:981.356505px;}
.y1c4{bottom:981.793005px;}
.y1c{bottom:986.656500px;}
.y227{bottom:986.835000px;}
.y1c7{bottom:987.079395px;}
.y1c3{bottom:987.193005px;}
.yb6{bottom:987.362925px;}
.y181{bottom:987.435000px;}
.y10e{bottom:987.898650px;}
.y10a{bottom:987.898665px;}
.y106{bottom:987.898680px;}
.ya8{bottom:992.156505px;}
.y1c5{bottom:992.593005px;}
.y2ac{bottom:994.156500px;}
.y1c6{bottom:998.239155px;}
.yb5{bottom:998.522685px;}
.y10d{bottom:999.058410px;}
.y109{bottom:999.058425px;}
.y105{bottom:999.058440px;}
.y254{bottom:1000.984590px;}
.y58{bottom:1001.656500px;}
.yb0{bottom:1002.956505px;}
.y251{bottom:1006.384590px;}
.y1b{bottom:1009.156500px;}
.y226{bottom:1009.335000px;}
.yb4{bottom:1009.682445px;}
.y180{bottom:1009.935000px;}
.y148{bottom:1010.089740px;}
.y108{bottom:1010.218185px;}
.ydd{bottom:1010.732745px;}
.y3d{bottom:1010.732805px;}
.y255{bottom:1011.670335px;}
.y253{bottom:1011.784590px;}
.y250{bottom:1017.184590px;}
.ydc{bottom:1021.893090px;}
.y3b{bottom:1021.893150px;}
.y252{bottom:1022.584590px;}
.y57{bottom:1024.156500px;}
.y2{bottom:1031.526000px;}
.y1a{bottom:1031.656500px;}
.y17f{bottom:1032.435000px;}
.ydb{bottom:1033.052850px;}
.y3c{bottom:1033.052910px;}
.y158{bottom:1033.354500px;}
.y1c2{bottom:1037.399655px;}
.ya6{bottom:1042.837155px;}
.y104{bottom:1043.146740px;}
.y147{bottom:1043.614740px;}
.y24f{bottom:1044.352740px;}
.y56{bottom:1046.656500px;}
.y225{bottom:1046.835000px;}
.y1{bottom:1049.526000px;}
.y1c1{bottom:1051.260000px;}
.y17e{bottom:1054.935000px;}
.ya5{bottom:1056.697500px;}
.y103{bottom:1057.006500px;}
.y146{bottom:1057.474500px;}
.y24e{bottom:1058.212500px;}
.y3a{bottom:1061.161500px;}
.y157{bottom:1063.354500px;}
.y224{bottom:1064.835000px;}
.y19{bottom:1069.156500px;}
.y17d{bottom:1077.435000px;}
.y9{bottom:1172.083500px;}
.h22{height:26.660742px;}
.h17{height:27.580078px;}
.h19{height:28.710952px;}
.h28{height:28.713292px;}
.h1e{height:29.878418px;}
.h25{height:32.176758px;}
.h21{height:32.404102px;}
.h15{height:33.521484px;}
.h20{height:34.329600px;}
.h10{height:34.638867px;}
.h8{height:35.280000px;}
.h11{height:35.394434px;}
.h2c{height:35.586967px;}
.h1d{height:36.314941px;}
.h2d{height:36.773438px;}
.h24{height:39.108398px;}
.hf{height:41.302800px;}
.h13{height:43.019238px;}
.h9{height:44.695313px;}
.h18{height:49.180078px;}
.h2e{height:50.282227px;}
.h23{height:53.282242px;}
.h16{height:55.121484px;}
.he{height:55.869141px;}
.h29{height:56.958387px;}
.h2{height:58.800000px;}
.h1f{height:59.714941px;}
.hd{height:61.456055px;}
.h12{height:63.113954px;}
.h14{height:63.116294px;}
.h27{height:64.306058px;}
.h26{height:64.308398px;}
.h5{height:64.353516px;}
.h7{height:70.284373px;}
.h1a{height:70.738758px;}
.hc{height:74.340000px;}
.h1b{height:76.721484px;}
.h1c{height:78.101367px;}
.h2a{height:79.952333px;}
.h2b{height:92.390633px;}
.h6{height:100.564453px;}
.ha{height:127.440000px;}
.hb{height:129.600000px;}
.h3{height:175.230000px;}
.h4{height:178.200000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:54.000000px;}
.x5{left:68.622600px;}
.x1{left:72.070950px;}
.x56{left:106.076400px;}
.x7{left:109.507050px;}
.x6{left:146.750400px;}
.xa9{left:168.928500px;}
.x8{left:180.183000px;}
.x55{left:181.218000px;}
.x9{left:182.956500px;}
.x15{left:184.921500px;}
.x4b{left:188.280000px;}
.x6a{left:190.188000px;}
.x77{left:193.017000px;}
.x11{left:194.439000px;}
.x18{left:197.853300px;}
.x28{left:199.177500px;}
.x1a{left:200.382210px;}
.x57{left:201.439500px;}
.x8b{left:203.003970px;}
.x12{left:204.271500px;}
.x8a{left:205.690500px;}
.x19{left:207.874590px;}
.xa{left:209.956500px;}
.x4a{left:211.116000px;}
.x1b{left:212.946465px;}
.x29{left:215.002500px;}
.x93{left:216.059850px;}
.x65{left:217.265700px;}
.x5e{left:222.004350px;}
.x46{left:225.154500px;}
.x6b{left:226.336500px;}
.x5c{left:229.065000px;}
.x92{left:235.393500px;}
.xa3{left:238.934850px;}
.x4c{left:243.546150px;}
.x9b{left:247.623900px;}
.xab{left:253.427850px;}
.xb{left:255.843000px;}
.x2d{left:261.166239px;}
.x2c{left:262.614090px;}
.x2f{left:264.790271px;}
.x2e{left:266.270934px;}
.x9f{left:270.489300px;}
.x91{left:273.414450px;}
.x1d{left:275.346465px;}
.x2b{left:277.436550px;}
.x27{left:278.471850px;}
.x58{left:285.867180px;}
.x86{left:287.899140px;}
.x1c{left:291.781965px;}
.x16{left:295.552950px;}
.xa4{left:323.245350px;}
.x80{left:326.895345px;}
.x31{left:332.029503px;}
.x63{left:334.345050px;}
.x7f{left:337.497300px;}
.x5d{left:339.083550px;}
.x32{left:342.025593px;}
.x30{left:346.819158px;}
.xa0{left:351.975000px;}
.xa1{left:355.917075px;}
.x71{left:357.122865px;}
.x70{left:358.914075px;}
.x2a{left:359.960550px;}
.x94{left:360.966300px;}
.xa2{left:362.967000px;}
.x87{left:368.983440px;}
.x78{left:370.285500px;}
.x6c{left:380.460000px;}
.x82{left:388.850040px;}
.xaa{left:395.763150px;}
.x81{left:398.514495px;}
.x39{left:400.542123px;}
.x36{left:403.723128px;}
.x34{left:404.776638px;}
.x37{left:406.855548px;}
.x85{left:408.187500px;}
.x35{left:413.671173px;}
.x96{left:416.333910px;}
.x6d{left:417.589650px;}
.x33{left:419.566293px;}
.x62{left:424.047000px;}
.x38{left:425.558673px;}
.x95{left:427.300905px;}
.x9a{left:430.093500px;}
.x17{left:433.149300px;}
.x9d{left:436.517100px;}
.x8c{left:438.964560px;}
.x1e{left:440.004165px;}
.x64{left:442.049700px;}
.x88{left:449.769030px;}
.x83{left:451.357845px;}
.x59{left:452.378880px;}
.x1f{left:453.725070px;}
.x4d{left:458.880150px;}
.x4e{left:461.505150px;}
.x4f{left:467.853195px;}
.xc{left:472.101000px;}
.x3b{left:481.888473px;}
.x98{left:483.637650px;}
.x3a{left:488.563473px;}
.xa5{left:490.153800px;}
.x72{left:492.328455px;}
.x97{left:493.634910px;}
.x84{left:505.977255px;}
.x20{left:518.182920px;}
.x8d{left:519.801045px;}
.x21{left:520.938585px;}
.x47{left:523.027470px;}
.x22{left:527.155966px;}
.x89{left:529.062135px;}
.x42{left:538.491273px;}
.x41{left:540.190488px;}
.x3d{left:543.322293px;}
.x3e{left:545.089488px;}
.x48{left:547.645020px;}
.x73{left:550.580595px;}
.x50{left:553.545405px;}
.x40{left:556.489503px;}
.x3c{left:558.158823px;}
.x99{left:559.969500px;}
.x3f{left:561.110838px;}
.x67{left:564.096075px;}
.x51{left:565.257120px;}
.xf{left:566.766210px;}
.x60{left:568.835310px;}
.xa6{left:570.129000px;}
.xe{left:571.786515px;}
.x66{left:573.424200px;}
.x5f{left:578.162850px;}
.xd{left:580.918350px;}
.x68{left:584.172075px;}
.x23{left:588.481966px;}
.x8f{left:592.663545px;}
.x5a{left:594.369120px;}
.xa7{left:597.040500px;}
.x8e{left:607.736745px;}
.x14{left:609.413925px;}
.x3{left:612.003000px;}
.x43{left:614.671323px;}
.x13{left:620.511000px;}
.x75{left:624.020820px;}
.x74{left:625.742895px;}
.x76{left:627.734490px;}
.x7a{left:630.227955px;}
.x79{left:634.986360px;}
.x7b{left:640.816425px;}
.x49{left:645.457320px;}
.x53{left:648.111612px;}
.x52{left:649.219620px;}
.xa8{left:654.468300px;}
.x54{left:657.358872px;}
.x9e{left:664.606500px;}
.x10{left:670.084560px;}
.x9c{left:671.200050px;}
.x25{left:673.175047px;}
.x24{left:674.848492px;}
.x69{left:675.870075px;}
.x5b{left:677.641305px;}
.x44{left:678.939273px;}
.x61{left:680.609310px;}
.x6e{left:682.467150px;}
.x26{left:684.166642px;}
.x90{left:685.570410px;}
.x45{left:687.075018px;}
.x6f{left:689.370075px;}
.x7c{left:694.863375px;}
.x7e{left:696.784665px;}
.x7d{left:698.734665px;}
.x4{left:775.810500px;}
@media print{
.vd{vertical-align:-44.095840pt;}
.va{vertical-align:-39.631253pt;}
.v8{vertical-align:-34.262507pt;}
.v5{vertical-align:-14.208320pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.881248pt;}
.v4{vertical-align:17.760427pt;}
.v3{vertical-align:19.200000pt;}
.v7{vertical-align:20.800000pt;}
.v9{vertical-align:22.400000pt;}
.v2{vertical-align:24.639573pt;}
.vb{vertical-align:31.339573pt;}
.v6{vertical-align:38.400000pt;}
.vc{vertical-align:42.395840pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-41.712000pt;}
.ws1{word-spacing:-24.960000pt;}
.ws21{word-spacing:-15.253333pt;}
.ws3{word-spacing:-13.866667pt;}
.ws24{word-spacing:-11.093333pt;}
.wsb{word-spacing:-10.677333pt;}
.ws55{word-spacing:-9.706667pt;}
.ws35{word-spacing:-9.013333pt;}
.ws4{word-spacing:-8.597333pt;}
.wsc{word-spacing:-8.320000pt;}
.ws15{word-spacing:-8.084267pt;}
.ws40{word-spacing:-8.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws6e{word-spacing:4.274484pt;}
.ws4a{word-spacing:20.988050pt;}
.ws3a{word-spacing:38.254667pt;}
.ws48{word-spacing:50.002496pt;}
.ws29{word-spacing:50.181828pt;}
.ws49{word-spacing:52.938069pt;}
.ws38{word-spacing:53.377307pt;}
.ws3f{word-spacing:54.167013pt;}
.ws3e{word-spacing:54.169093pt;}
.wsd{word-spacing:55.805686pt;}
.ws56{word-spacing:62.669600pt;}
.ws51{word-spacing:67.511072pt;}
.ws6f{word-spacing:70.421239pt;}
.ws50{word-spacing:71.306901pt;}
.ws57{word-spacing:74.599078pt;}
.ws27{word-spacing:77.766064pt;}
.ws41{word-spacing:82.914070pt;}
.ws54{word-spacing:83.980213pt;}
.ws43{word-spacing:94.138176pt;}
.ws1a{word-spacing:94.201920pt;}
.ws47{word-spacing:95.606891pt;}
.ws19{word-spacing:97.237120pt;}
.ws64{word-spacing:99.492248pt;}
.ws44{word-spacing:101.622207pt;}
.ws4f{word-spacing:102.823637pt;}
.ws8{word-spacing:105.131899pt;}
.ws5c{word-spacing:105.296800pt;}
.ws26{word-spacing:106.100454pt;}
.ws2b{word-spacing:110.221701pt;}
.ws3b{word-spacing:113.591920pt;}
.ws1c{word-spacing:119.645545pt;}
.ws6c{word-spacing:124.071733pt;}
.ws4b{word-spacing:124.331584pt;}
.ws28{word-spacing:128.311332pt;}
.ws46{word-spacing:129.450432pt;}
.ws12{word-spacing:130.528960pt;}
.ws42{word-spacing:130.919456pt;}
.ws4e{word-spacing:131.631851pt;}
.ws6d{word-spacing:132.024107pt;}
.ws5a{word-spacing:135.484533pt;}
.ws18{word-spacing:137.910123pt;}
.ws58{word-spacing:138.234133pt;}
.ws17{word-spacing:139.433153pt;}
.ws34{word-spacing:140.762960pt;}
.ws32{word-spacing:144.478105pt;}
.ws31{word-spacing:144.478135pt;}
.ws1b{word-spacing:146.614442pt;}
.ws1e{word-spacing:146.614565pt;}
.ws4d{word-spacing:146.959008pt;}
.ws4c{word-spacing:149.288288pt;}
.ws14{word-spacing:149.539520pt;}
.ws6{word-spacing:152.015248pt;}
.ws30{word-spacing:152.302715pt;}
.ws59{word-spacing:158.136160pt;}
.ws5d{word-spacing:159.538400pt;}
.ws25{word-spacing:161.088503pt;}
.ws3c{word-spacing:161.348373pt;}
.ws5f{word-spacing:162.211467pt;}
.ws16{word-spacing:165.301732pt;}
.ws2e{word-spacing:165.510987pt;}
.wsf{word-spacing:167.803840pt;}
.ws37{word-spacing:168.801937pt;}
.ws5b{word-spacing:170.144427pt;}
.ws53{word-spacing:171.855370pt;}
.ws45{word-spacing:173.588277pt;}
.ws2d{word-spacing:176.672799pt;}
.ws2a{word-spacing:177.486266pt;}
.ws68{word-spacing:178.141609pt;}
.ws6b{word-spacing:178.141639pt;}
.ws7{word-spacing:185.223397pt;}
.ws13{word-spacing:186.120640pt;}
.ws52{word-spacing:191.765836pt;}
.ws67{word-spacing:192.837979pt;}
.ws11{word-spacing:192.933120pt;}
.wse{word-spacing:192.935040pt;}
.ws1d{word-spacing:198.506560pt;}
.wsa{word-spacing:199.919515pt;}
.ws69{word-spacing:201.583254pt;}
.ws65{word-spacing:201.583947pt;}
.ws6a{word-spacing:201.586000pt;}
.ws10{word-spacing:207.237787pt;}
.ws23{word-spacing:216.409013pt;}
.ws2f{word-spacing:222.160932pt;}
.ws2c{word-spacing:222.167332pt;}
.ws9{word-spacing:223.361189pt;}
.ws1f{word-spacing:226.044485pt;}
.ws66{word-spacing:234.792507pt;}
.ws20{word-spacing:249.486160pt;}
.ws62{word-spacing:262.860627pt;}
.ws61{word-spacing:273.541866pt;}
.ws5e{word-spacing:336.012695pt;}
.ws60{word-spacing:355.446016pt;}
.ws33{word-spacing:358.947811pt;}
.ws36{word-spacing:379.911940pt;}
.ws39{word-spacing:431.955225pt;}
.ws3d{word-spacing:440.980277pt;}
.ws63{word-spacing:463.439370pt;}
.ws5{word-spacing:837.232831pt;}
.ws22{word-spacing:873.025140pt;}
._82{margin-left:-7.202538pt;}
._7e{margin-left:-6.082648pt;}
._5b{margin-left:-5.082516pt;}
._32{margin-left:-4.129278pt;}
._7{margin-left:-2.460047pt;}
._0{margin-left:-1.450779pt;}
._b{width:1.336720pt;}
._4{width:2.628969pt;}
._11{width:3.999816pt;}
._2{width:5.057542pt;}
._1{width:6.405568pt;}
._15{width:7.313164pt;}
._f{width:8.464486pt;}
._6{width:10.012490pt;}
._17{width:10.912527pt;}
._13{width:12.645566pt;}
._41{width:14.825990pt;}
._c{width:15.739974pt;}
._a{width:17.409981pt;}
._12{width:18.858711pt;}
._2d{width:19.776552pt;}
._e{width:20.725439pt;}
._42{width:22.019825pt;}
._8{width:23.472943pt;}
._24{width:24.719856pt;}
._7f{width:26.000636pt;}
._14{width:27.460342pt;}
._3b{width:28.549206pt;}
._81{width:31.727484pt;}
._80{width:33.060427pt;}
._16{width:34.332442pt;}
._9{width:35.253334pt;}
._3a{width:37.251624pt;}
._5{width:38.293343pt;}
._10{width:40.953721pt;}
._69{width:43.201106pt;}
._6a{width:45.681753pt;}
._83{width:53.066657pt;}
._d{width:54.453554pt;}
._60{width:56.875668pt;}
._8c{width:60.468373pt;}
._39{width:62.073530pt;}
._71{width:64.673195pt;}
._76{width:72.304652pt;}
._8b{width:80.797537pt;}
._5f{width:81.844168pt;}
._62{width:83.205407pt;}
._89{width:87.514667pt;}
._72{width:90.605869pt;}
._25{width:91.514133pt;}
._75{width:93.605440pt;}
._68{width:102.191855pt;}
._49{width:103.749596pt;}
._73{width:105.213027pt;}
._4a{width:108.829676pt;}
._47{width:110.177401pt;}
._6e{width:114.595792pt;}
._65{width:119.791553pt;}
._43{width:120.760947pt;}
._67{width:121.746566pt;}
._3{width:122.778938pt;}
._6f{width:124.523914pt;}
._70{width:125.945257pt;}
._74{width:126.873929pt;}
._44{width:131.422574pt;}
._45{width:133.626497pt;}
._6c{width:134.940303pt;}
._66{width:137.176069pt;}
._1c{width:139.112986pt;}
._86{width:141.216161pt;}
._48{width:142.131410pt;}
._7c{width:145.139840pt;}
._6b{width:149.956665pt;}
._54{width:152.227294pt;}
._2f{width:154.849173pt;}
._59{width:156.241811pt;}
._64{width:163.254160pt;}
._2b{width:164.849919pt;}
._79{width:166.457354pt;}
._58{width:167.403350pt;}
._78{width:169.164545pt;}
._6d{width:170.067623pt;}
._27{width:176.081652pt;}
._5c{width:177.016763pt;}
._7a{width:178.010206pt;}
._77{width:179.773716pt;}
._46{width:181.549234pt;}
._26{width:182.873760pt;}
._5e{width:184.386667pt;}
._56{width:186.775832pt;}
._4b{width:188.893452pt;}
._7b{width:189.862046pt;}
._5a{width:190.852446pt;}
._7d{width:192.406788pt;}
._84{width:193.995857pt;}
._5d{width:197.582365pt;}
._4d{width:199.570815pt;}
._29{width:201.227175pt;}
._30{width:206.826560pt;}
._4c{width:212.371039pt;}
._57{width:214.279212pt;}
._31{width:215.719286pt;}
._3e{width:219.263750pt;}
._87{width:222.656000pt;}
._85{width:223.586246pt;}
._55{width:224.658596pt;}
._61{width:226.472000pt;}
._38{width:231.651228pt;}
._50{width:233.307495pt;}
._3c{width:238.943781pt;}
._53{width:243.984739pt;}
._4e{width:246.188684pt;}
._2e{width:254.606832pt;}
._51{width:256.205009pt;}
._4f{width:281.330836pt;}
._52{width:292.008199pt;}
._8a{width:293.818667pt;}
._1a{width:315.081381pt;}
._63{width:328.860009pt;}
._18{width:372.455467pt;}
._88{width:387.077333pt;}
._35{width:409.621867pt;}
._2c{width:458.075216pt;}
._3f{width:461.077333pt;}
._19{width:464.198400pt;}
._37{width:471.667035pt;}
._23{width:476.373292pt;}
._28{width:483.162535pt;}
._3d{width:500.378133pt;}
._1b{width:506.698447pt;}
._2a{width:509.039103pt;}
._40{width:540.294933pt;}
._1d{width:542.553600pt;}
._1e{width:558.323200pt;}
._34{width:606.002667pt;}
._22{width:702.809067pt;}
._36{width:821.886181pt;}
._21{width:930.359467pt;}
._33{width:1049.851200pt;}
._1f{width:1151.749867pt;}
._20{width:1314.250667pt;}
.fsc{font-size:24.874667pt;}
.fsf{font-size:30.933333pt;}
.fsb{font-size:31.093333pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:33.066667pt;}
.fs11{font-size:33.971733pt;}
.fse{font-size:34.133333pt;}
.fsd{font-size:34.666667pt;}
.fs10{font-size:37.333333pt;}
.fs9{font-size:41.066667pt;}
.fs6{font-size:42.666667pt;}
.fs12{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:128.000000pt;}
.fs1{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y1c0{bottom:43.785267pt;}
.y1bf{bottom:54.985267pt;}
.y269{bottom:69.198987pt;}
.yda{bottom:75.199467pt;}
.y129{bottom:79.228000pt;}
.y1bd{bottom:80.056200pt;}
.y24d{bottom:80.067253pt;}
.y268{bottom:88.751067pt;}
.y1bc{bottom:89.335893pt;}
.y1be{bottom:93.976467pt;}
.y24c{bottom:96.067253pt;}
.y55{bottom:96.269387pt;}
.y20e{bottom:97.173333pt;}
.y2d7{bottom:97.989067pt;}
.y1bb{bottom:98.615587pt;}
.y128{bottom:99.228000pt;}
.y18{bottom:103.853333pt;}
.y17c{bottom:105.063867pt;}
.y23e{bottom:105.991960pt;}
.y1ba{bottom:107.895280pt;}
.y20d{bottom:108.373333pt;}
.y54{bottom:108.589173pt;}
.y2ab{bottom:109.572000pt;}
.ya4{bottom:112.199920pt;}
.yd9{bottom:112.200000pt;}
.y1e4{bottom:112.209333pt;}
.y2d6{bottom:113.989067pt;}
.y145{bottom:114.871467pt;}
.y24b{bottom:115.619333pt;}
.ya{bottom:118.995867pt;}
.y1b8{bottom:119.114080pt;}
.y127{bottom:119.228000pt;}
.y20c{bottom:119.573333pt;}
.y94{bottom:120.351200pt;}
.y23d{bottom:121.991960pt;}
.y17{bottom:123.853333pt;}
.ya3{bottom:128.199920pt;}
.y1b7{bottom:128.393773pt;}
.y2aa{bottom:129.572000pt;}
.y93{bottom:129.951200pt;}
.yd8{bottom:132.200000pt;}
.y1e3{bottom:132.209333pt;}
.y1b9{bottom:133.033813pt;}
.y102{bottom:134.520000pt;}
.y28a{bottom:134.976240pt;}
.y1b6{bottom:137.673467pt;}
.y126{bottom:139.228000pt;}
.y144{bottom:139.448000pt;}
.y24a{bottom:141.357333pt;}
.y23c{bottom:141.543520pt;}
.y20b{bottom:141.973333pt;}
.y16{bottom:143.853333pt;}
.ya2{bottom:144.199920pt;}
.y17b{bottom:146.633200pt;}
.y1b5{bottom:146.953160pt;}
.y2d4{bottom:147.397413pt;}
.y2a9{bottom:149.572000pt;}
.y53{bottom:149.573573pt;}
.y223{bottom:150.361333pt;}
.yd7{bottom:152.200000pt;}
.y1e2{bottom:152.209333pt;}
.y101{bottom:154.520000pt;}
.y17a{bottom:157.033200pt;}
.y1b3{bottom:157.902147pt;}
.y125{bottom:159.228000pt;}
.ya1{bottom:160.199920pt;}
.y249{bottom:161.357333pt;}
.y91{bottom:162.933467pt;}
.y15{bottom:163.853333pt;}
.y143{bottom:164.024000pt;}
.y2d5{bottom:166.534880pt;}
.y1b2{bottom:167.181840pt;}
.y1b4{bottom:167.182360pt;}
.y23b{bottom:167.325253pt;}
.y222{bottom:170.361333pt;}
.yd6{bottom:172.200000pt;}
.y1e1{bottom:172.209333pt;}
.y90{bottom:172.533467pt;}
.y100{bottom:174.520000pt;}
.y52{bottom:175.898627pt;}
.y289{bottom:176.168373pt;}
.ya0{bottom:176.199920pt;}
.y1b1{bottom:176.461533pt;}
.y92{bottom:177.333467pt;}
.y2d3{bottom:177.558840pt;}
.y124{bottom:179.228000pt;}
.y248{bottom:181.357333pt;}
.y8f{bottom:182.133467pt;}
.y23a{bottom:183.325253pt;}
.y179{bottom:183.492000pt;}
.y14{bottom:183.853333pt;}
.y1af{bottom:186.652200pt;}
.y51{bottom:188.218933pt;}
.y142{bottom:188.600000pt;}
.y221{bottom:190.361333pt;}
.y8e{bottom:191.733467pt;}
.yd5{bottom:192.200000pt;}
.y1e0{bottom:192.209333pt;}
.y178{bottom:193.892000pt;}
.yff{bottom:194.520000pt;}
.y9f{bottom:195.752000pt;}
.y1ae{bottom:195.931893pt;}
.y2a8{bottom:196.238667pt;}
.y288{bottom:200.037707pt;}
.y1b0{bottom:200.571933pt;}
.y247{bottom:201.357333pt;}
.y239{bottom:202.877333pt;}
.y13{bottom:203.853333pt;}
.yf4{bottom:205.186667pt;}
.y1ad{bottom:205.211587pt;}
.y2d2{bottom:208.709373pt;}
.y220{bottom:210.361333pt;}
.y20a{bottom:210.598267pt;}
.yd4{bottom:212.200000pt;}
.y50{bottom:213.298667pt;}
.y1ac{bottom:214.491280pt;}
.yfe{bottom:214.520000pt;}
.y141{bottom:214.693333pt;}
.y8d{bottom:215.369467pt;}
.y2a7{bottom:216.238667pt;}
.y287{bottom:217.457440pt;}
.y246{bottom:221.357333pt;}
.y209{bottom:221.798267pt;}
.y2db{bottom:221.832000pt;}
.y286{bottom:223.617333pt;}
.y12{bottom:223.853333pt;}
.y8c{bottom:224.969467pt;}
.yf3{bottom:225.186667pt;}
.y177{bottom:225.549333pt;}
.y123{bottom:225.894667pt;}
.y2cb{bottom:227.945347pt;}
.y21f{bottom:230.361333pt;}
.yd3{bottom:232.200000pt;}
.y208{bottom:232.998267pt;}
.yfd{bottom:234.520000pt;}
.y8b{bottom:234.569467pt;}
.y1aa{bottom:237.865733pt;}
.y2d1{bottom:239.570840pt;}
.y4f{bottom:239.950800pt;}
.y2c7{bottom:240.526533pt;}
.y2da{bottom:241.832000pt;}
.y1df{bottom:242.017960pt;}
.y207{bottom:244.198267pt;}
.y2cd{bottom:244.450547pt;}
.yf2{bottom:245.186667pt;}
.y122{bottom:245.894667pt;}
.y285{bottom:246.713333pt;}
.y1a9{bottom:247.145427pt;}
.y1ab{bottom:247.145947pt;}
.y21e{bottom:250.361333pt;}
.y1de{bottom:254.337747pt;}
.y206{bottom:255.398267pt;}
.y1a8{bottom:256.425120pt;}
.y8a{bottom:257.030933pt;}
.y11{bottom:257.186667pt;}
.y176{bottom:257.207733pt;}
.y140{bottom:260.974667pt;}
.y2a6{bottom:262.905333pt;}
.y2ca{bottom:266.029213pt;}
.y89{bottom:266.630933pt;}
.y1a6{bottom:266.797040pt;}
.yd2{bottom:266.933067pt;}
.y2c8{bottom:267.293253pt;}
.y175{bottom:267.607733pt;}
.y245{bottom:268.024000pt;}
.y4e{bottom:268.598667pt;}
.y21d{bottom:270.361333pt;}
.y2d0{bottom:270.977640pt;}
.y2d9{bottom:271.165333pt;}
.y1a5{bottom:276.076733pt;}
.y1a7{bottom:276.077253pt;}
.y7{bottom:279.276000pt;}
.yfc{bottom:281.186667pt;}
.y2a5{bottom:282.905333pt;}
.y1a4{bottom:285.356427pt;}
.y13f{bottom:285.550667pt;}
.y284{bottom:285.633467pt;}
.yd1{bottom:286.133067pt;}
.y244{bottom:288.024000pt;}
.y2c9{bottom:289.702680pt;}
.y21c{bottom:290.361333pt;}
.y10{bottom:290.520000pt;}
.y135{bottom:291.306667pt;}
.y88{bottom:291.548133pt;}
.yf1{bottom:291.853333pt;}
.y204{bottom:295.685200pt;}
.y31{bottom:297.186667pt;}
.y4d{bottom:298.056347pt;}
.y1dd{bottom:300.065880pt;}
.y1a3{bottom:300.368440pt;}
.y2d8{bottom:300.498667pt;}
.y87{bottom:301.148133pt;}
.yfb{bottom:301.186667pt;}
.y2cf{bottom:302.337507pt;}
.y2a4{bottom:302.905333pt;}
.yd0{bottom:305.333067pt;}
.y203{bottom:306.885200pt;}
.y4c{bottom:307.976133pt;}
.y243{bottom:308.024000pt;}
.y6{bottom:308.076000pt;}
.y283{bottom:309.502800pt;}
.y1a2{bottom:309.648133pt;}
.y13e{bottom:310.126667pt;}
.y21b{bottom:310.361333pt;}
.y86{bottom:310.748133pt;}
.y174{bottom:310.861333pt;}
.y1dc{bottom:311.265880pt;}
.yf0{bottom:311.853333pt;}
.y2c5{bottom:313.868133pt;}
.ycf{bottom:314.933067pt;}
.y2cc{bottom:316.431747pt;}
.y30{bottom:317.186667pt;}
.y202{bottom:318.085200pt;}
.yfa{bottom:321.186667pt;}
.y173{bottom:321.261333pt;}
.y2a3{bottom:322.905333pt;}
.y205{bottom:323.685200pt;}
.yce{bottom:324.533067pt;}
.y201{bottom:329.285200pt;}
.y21a{bottom:330.361333pt;}
.y1db{bottom:331.343467pt;}
.y282{bottom:333.084000pt;}
.y2ce{bottom:333.231773pt;}
.y4b{bottom:333.590667pt;}
.y1a1{bottom:333.940267pt;}
.ycd{bottom:334.133067pt;}
.y13d{bottom:334.702667pt;}
.y2f{bottom:337.186667pt;}
.y134{bottom:339.307733pt;}
.y200{bottom:340.485200pt;}
.y85{bottom:340.532000pt;}
.yf9{bottom:341.186667pt;}
.y1da{bottom:342.543467pt;}
.yf{bottom:346.890667pt;}
.y219{bottom:350.361333pt;}
.y1ff{bottom:351.685200pt;}
.y172{bottom:352.919600pt;}
.y242{bottom:354.690667pt;}
.y2c6{bottom:354.941067pt;}
.y281{bottom:356.180000pt;}
.y2e{bottom:357.186667pt;}
.yef{bottom:358.520000pt;}
.yf8{bottom:361.186667pt;}
.y13c{bottom:362.609533pt;}
.y1d9{bottom:362.622667pt;}
.y1a0{bottom:362.872000pt;}
.y2c4{bottom:364.140000pt;}
.y84{bottom:365.461333pt;}
.y2a2{bottom:369.572000pt;}
.y218{bottom:370.361333pt;}
.y13b{bottom:372.529320pt;}
.y139{bottom:372.630880pt;}
.ye{bottom:373.557333pt;}
.y1d8{bottom:373.822667pt;}
.y241{bottom:374.690667pt;}
.y133{bottom:376.166533pt;}
.y2d{bottom:377.186667pt;}
.yee{bottom:378.520000pt;}
.y39{bottom:380.622667pt;}
.ycc{bottom:380.825200pt;}
.yf7{bottom:381.186667pt;}
.y13a{bottom:382.449627pt;}
.y82{bottom:386.398133pt;}
.y2a1{bottom:389.572000pt;}
.y171{bottom:389.777467pt;}
.y19f{bottom:390.644467pt;}
.y1fe{bottom:393.692000pt;}
.y240{bottom:394.690667pt;}
.y280{bottom:395.098267pt;}
.y81{bottom:395.998133pt;}
.y2c{bottom:397.186667pt;}
.yed{bottom:398.520000pt;}
.y1d7{bottom:399.499733pt;}
.y19e{bottom:399.924160pt;}
.y38{bottom:400.622667pt;}
.y83{bottom:400.797600pt;}
.yf6{bottom:401.186667pt;}
.y19a{bottom:401.560040pt;}
.y197{bottom:401.560080pt;}
.y19d{bottom:403.106973pt;}
.y1fd{bottom:404.892000pt;}
.y80{bottom:405.598133pt;}
.y2b0{bottom:409.186667pt;}
.y2a0{bottom:409.572000pt;}
.y138{bottom:410.353280pt;}
.y199{bottom:410.840253pt;}
.y196{bottom:410.840293pt;}
.y19c{bottom:410.840307pt;}
.y132{bottom:413.025333pt;}
.y23f{bottom:414.690667pt;}
.y7f{bottom:415.198133pt;}
.y1fc{bottom:416.092000pt;}
.y217{bottom:417.028000pt;}
.y2b{bottom:417.186667pt;}
.ycb{bottom:417.682533pt;}
.y19b{bottom:418.573640pt;}
.y27f{bottom:418.969067pt;}
.y198{bottom:420.119947pt;}
.y170{bottom:426.635867pt;}
.y1fb{bottom:427.292000pt;}
.y195{bottom:428.685613pt;}
.y2af{bottom:429.186667pt;}
.y1d6{bottom:430.778400pt;}
.yf5{bottom:434.520000pt;}
.y7e{bottom:436.166400pt;}
.y216{bottom:437.028000pt;}
.y1fa{bottom:438.492000pt;}
.y137{bottom:440.154880pt;}
.y27e{bottom:442.549333pt;}
.yd{bottom:442.573333pt;}
.yec{bottom:445.186667pt;}
.y7d{bottom:445.766400pt;}
.y37{bottom:447.289333pt;}
.y2ae{bottom:449.186667pt;}
.y1f9{bottom:449.692000pt;}
.y131{bottom:449.882667pt;}
.y9e{bottom:450.361333pt;}
.y2a{bottom:450.520000pt;}
.y267{bottom:451.026400pt;}
.y136{bottom:452.474667pt;}
.yca{bottom:454.540933pt;}
.y7c{bottom:455.366400pt;}
.y29f{bottom:456.238667pt;}
.y194{bottom:456.713747pt;}
.y215{bottom:457.028000pt;}
.y1f8{bottom:460.892000pt;}
.y1d5{bottom:462.056000pt;}
.y16f{bottom:463.494667pt;}
.yeb{bottom:465.186667pt;}
.y27d{bottom:465.645333pt;}
.y193{bottom:466.953333pt;}
.y36{bottom:467.289333pt;}
.y9d{bottom:470.361333pt;}
.y266{bottom:473.426400pt;}
.y7b{bottom:473.778400pt;}
.y29e{bottom:476.238667pt;}
.y214{bottom:477.028000pt;}
.yc{bottom:480.973333pt;}
.y130{bottom:482.016320pt;}
.y2ad{bottom:482.520000pt;}
.y7a{bottom:483.378400pt;}
.y238{bottom:483.853333pt;}
.y12d{bottom:486.976147pt;}
.y12c{bottom:487.237600pt;}
.y35{bottom:487.289333pt;}
.y9c{bottom:490.361333pt;}
.yc9{bottom:491.398800pt;}
.y12f{bottom:491.936107pt;}
.y12b{bottom:492.037600pt;}
.y1d4{bottom:493.334667pt;}
.y29d{bottom:496.238667pt;}
.y213{bottom:497.028000pt;}
.yea{bottom:498.520000pt;}
.y1f7{bottom:498.902400pt;}
.y16e{bottom:500.352000pt;}
.y12e{bottom:501.856413pt;}
.y237{bottom:503.853333pt;}
.y79{bottom:503.923733pt;}
.y265{bottom:504.222800pt;}
.y27c{bottom:504.565707pt;}
.y34{bottom:507.289333pt;}
.y11d{bottom:508.132107pt;}
.y1f6{bottom:510.102400pt;}
.y29{bottom:510.361333pt;}
.y192{bottom:511.053333pt;}
.y78{bottom:513.523733pt;}
.ye9{bottom:514.520000pt;}
.y29c{bottom:516.238667pt;}
.y212{bottom:517.028000pt;}
.yb{bottom:519.373333pt;}
.y11c{bottom:520.451893pt;}
.y1f5{bottom:521.302400pt;}
.y77{bottom:523.123733pt;}
.y236{bottom:523.853333pt;}
.y1d3{bottom:524.611733pt;}
.y264{bottom:525.047867pt;}
.y33{bottom:527.289333pt;}
.yc8{bottom:528.257200pt;}
.y27b{bottom:528.435040pt;}
.y12a{bottom:529.638667pt;}
.y28{bottom:530.361333pt;}
.y191{bottom:531.053333pt;}
.y16d{bottom:532.298573pt;}
.y29b{bottom:536.238667pt;}
.y211{bottom:537.028000pt;}
.y16a{bottom:537.098573pt;}
.y2c3{bottom:541.278667pt;}
.y16c{bottom:541.899093pt;}
.y235{bottom:543.853333pt;}
.y27a{bottom:545.854773pt;}
.y169{bottom:546.698573pt;}
.y32{bottom:547.289333pt;}
.y76{bottom:549.325333pt;}
.y263{bottom:549.418667pt;}
.y27{bottom:550.361333pt;}
.y190{bottom:551.053333pt;}
.y16b{bottom:551.498573pt;}
.y279{bottom:552.014667pt;}
.y168{bottom:552.114720pt;}
.y156{bottom:553.223067pt;}
.y1d2{bottom:555.889333pt;}
.y210{bottom:557.028000pt;}
.y11b{bottom:559.160293pt;}
.y1f3{bottom:560.125333pt;}
.y167{bottom:561.714720pt;}
.y2c2{bottom:563.678667pt;}
.y234{bottom:563.853333pt;}
.yc7{bottom:565.114533pt;}
.y262{bottom:570.850667pt;}
.y18f{bottom:571.053333pt;}
.y166{bottom:571.314720pt;}
.y1f2{bottom:571.325333pt;}
.y11a{bottom:571.480600pt;}
.y70{bottom:572.617040pt;}
.y67{bottom:573.198227pt;}
.y278{bottom:575.112000pt;}
.y9b{bottom:577.028000pt;}
.y75{bottom:577.577547pt;}
.y6c{bottom:577.998240pt;}
.y29a{bottom:578.592400pt;}
.ye8{bottom:581.076000pt;}
.y4a{bottom:581.380267pt;}
.y1f1{bottom:582.525333pt;}
.y6f{bottom:582.537347pt;}
.y72{bottom:582.537387pt;}
.y66{bottom:582.798747pt;}
.y69{bottom:582.798760pt;}
.y121{bottom:583.694667pt;}
.y165{bottom:583.718880pt;}
.y119{bottom:583.800907pt;}
.y233{bottom:583.853333pt;}
.y1d1{bottom:587.168000pt;}
.y74{bottom:587.497333pt;}
.y6b{bottom:587.598760pt;}
.y18e{bottom:591.053333pt;}
.y65{bottom:592.398747pt;}
.y68{bottom:592.398760pt;}
.y6e{bottom:592.457133pt;}
.y71{bottom:592.457173pt;}
.y1f0{bottom:593.725333pt;}
.y26{bottom:597.028000pt;}
.y6a{bottom:597.198240pt;}
.y73{bottom:597.417120pt;}
.y1f4{bottom:599.325333pt;}
.y299{bottom:600.992400pt;}
.ye7{bottom:601.076000pt;}
.yc6{bottom:601.973333pt;}
.y2c1{bottom:601.989600pt;}
.y64{bottom:601.998227pt;}
.y155{bottom:602.374667pt;}
.y6d{bottom:602.377440pt;}
.y120{bottom:603.694667pt;}
.y232{bottom:603.853333pt;}
.y261{bottom:604.118800pt;}
.y1ef{bottom:604.925333pt;}
.y18d{bottom:611.053333pt;}
.y49{bottom:612.500000pt;}
.y277{bottom:614.030907pt;}
.y1ee{bottom:616.125333pt;}
.y164{bottom:616.882880pt;}
.y25{bottom:617.028000pt;}
.y1d0{bottom:618.445067pt;}
.y5{bottom:620.352000pt;}
.y63{bottom:620.603960pt;}
.ye6{bottom:621.076000pt;}
.y11f{bottom:623.694667pt;}
.y231{bottom:623.853333pt;}
.y2c0{bottom:624.107867pt;}
.y48{bottom:624.819787pt;}
.y118{bottom:626.065013pt;}
.y154{bottom:626.950667pt;}
.y1ed{bottom:627.325333pt;}
.y260{bottom:628.489600pt;}
.y163{bottom:629.202667pt;}
.y18c{bottom:631.053333pt;}
.y298{bottom:636.859067pt;}
.y24{bottom:637.028000pt;}
.y276{bottom:637.901707pt;}
.y117{bottom:638.385320pt;}
.y1ec{bottom:638.525333pt;}
.yc5{bottom:638.830667pt;}
.ye5{bottom:641.076000pt;}
.y11e{bottom:643.694667pt;}
.y230{bottom:643.853333pt;}
.y62{bottom:645.159693pt;}
.y2bf{bottom:646.226667pt;}
.y297{bottom:648.059067pt;}
.y1cf{bottom:649.723733pt;}
.y18b{bottom:651.053333pt;}
.y153{bottom:651.526667pt;}
.y25f{bottom:652.861467pt;}
.y275{bottom:655.321440pt;}
.y23{bottom:657.028000pt;}
.y61{bottom:657.480000pt;}
.y47{bottom:660.873493pt;}
.ye4{bottom:661.076000pt;}
.y274{bottom:661.481333pt;}
.y9a{bottom:663.694667pt;}
.y116{bottom:663.981160pt;}
.y2be{bottom:668.308000pt;}
.y18a{bottom:671.053333pt;}
.y4{bottom:673.152000pt;}
.y46{bottom:673.193280pt;}
.y295{bottom:675.268400pt;}
.yc4{bottom:675.689467pt;}
.y152{bottom:676.102667pt;}
.y115{bottom:676.301467pt;}
.y20f{bottom:677.028000pt;}
.y162{bottom:677.186667pt;}
.y25e{bottom:677.232267pt;}
.y1eb{bottom:677.316000pt;}
.y1ce{bottom:681.001333pt;}
.y1e8{bottom:682.537293pt;}
.y99{bottom:683.694667pt;}
.y273{bottom:684.577333pt;}
.y294{bottom:686.468400pt;}
.y1ea{bottom:687.235787pt;}
.y22f{bottom:690.520000pt;}
.y189{bottom:691.053333pt;}
.y2bd{bottom:692.034800pt;}
.y296{bottom:692.068400pt;}
.y1e7{bottom:692.137293pt;}
.y1e9{bottom:697.156093pt;}
.y161{bottom:697.186667pt;}
.y293{bottom:697.668400pt;}
.y45{bottom:698.788053pt;}
.y25d{bottom:701.602533pt;}
.y151{bottom:703.057333pt;}
.y22{bottom:703.694667pt;}
.y292{bottom:708.868400pt;}
.y60{bottom:710.361333pt;}
.y22e{bottom:710.520000pt;}
.y188{bottom:711.053333pt;}
.y44{bottom:711.107840pt;}
.y1cd{bottom:712.280000pt;}
.yc3{bottom:712.547867pt;}
.ye3{bottom:714.513467pt;}
.y2bc{bottom:715.798800pt;}
.y160{bottom:717.186667pt;}
.y114{bottom:718.961333pt;}
.y272{bottom:723.497067pt;}
.y21{bottom:723.694667pt;}
.y3{bottom:725.952000pt;}
.y25c{bottom:725.974400pt;}
.y5f{bottom:730.361333pt;}
.y22d{bottom:730.520000pt;}
.y1e6{bottom:736.459693pt;}
.y291{bottom:736.890800pt;}
.y15f{bottom:737.186667pt;}
.y2bb{bottom:737.918533pt;}
.y1cc{bottom:743.557067pt;}
.y20{bottom:743.694667pt;}
.y113{bottom:745.482667pt;}
.y271{bottom:747.366400pt;}
.y290{bottom:748.090800pt;}
.y150{bottom:748.478667pt;}
.y1e5{bottom:748.780000pt;}
.yc2{bottom:749.405200pt;}
.y25b{bottom:750.345200pt;}
.y5e{bottom:750.361333pt;}
.y22c{bottom:750.520000pt;}
.ye2{bottom:753.768133pt;}
.y43{bottom:753.768240pt;}
.y15e{bottom:757.186667pt;}
.y187{bottom:757.720000pt;}
.y2ba{bottom:760.037333pt;}
.y1f{bottom:763.694667pt;}
.y5d{bottom:770.361333pt;}
.y22b{bottom:770.520000pt;}
.y270{bottom:770.946667pt;}
.y112{bottom:771.681067pt;}
.y14f{bottom:773.054667pt;}
.y25a{bottom:774.716000pt;}
.y28f{bottom:774.801733pt;}
.y1cb{bottom:774.835733pt;}
.y15d{bottom:777.186667pt;}
.y186{bottom:777.720000pt;}
.ye1{bottom:780.289467pt;}
.y42{bottom:780.289573pt;}
.y2b9{bottom:782.118920pt;}
.y98{bottom:783.694667pt;}
.yc1{bottom:786.264000pt;}
.y5c{bottom:790.361333pt;}
.y22a{bottom:790.520000pt;}
.y26f{bottom:794.044213pt;}
.y8{bottom:795.824000pt;}
.y15c{bottom:797.186667pt;}
.y14e{bottom:797.630667pt;}
.y185{bottom:797.720000pt;}
.y2b7{bottom:798.018880pt;}
.y111{bottom:798.333200pt;}
.y259{bottom:799.087867pt;}
.y28e{bottom:799.172000pt;}
.y2b4{bottom:802.818880pt;}
.y97{bottom:803.694667pt;}
.y1ca{bottom:806.113333pt;}
.ye0{bottom:806.487867pt;}
.y41{bottom:806.487973pt;}
.y2b8{bottom:807.517320pt;}
.y2b6{bottom:807.618880pt;}
.y1e{bottom:810.361333pt;}
.y2b3{bottom:812.418880pt;}
.y26d{bottom:816.886347pt;}
.y15b{bottom:817.186667pt;}
.y2b5{bottom:817.218880pt;}
.y184{bottom:817.720000pt;}
.ybc{bottom:818.135653pt;}
.y26c{bottom:821.846760pt;}
.y14d{bottom:822.206667pt;}
.y258{bottom:823.458667pt;}
.y28d{bottom:823.542800pt;}
.y96{bottom:823.694667pt;}
.yb1{bottom:824.316893pt;}
.y26e{bottom:826.806653pt;}
.y110{bottom:827.928000pt;}
.ybb{bottom:828.055960pt;}
.y5b{bottom:830.361333pt;}
.ydf{bottom:833.140000pt;}
.y40{bottom:833.140107pt;}
.yad{bottom:833.916893pt;}
.y2b2{bottom:834.054880pt;}
.y229{bottom:837.186667pt;}
.y1c9{bottom:837.392000pt;}
.y183{bottom:837.720000pt;}
.yba{bottom:837.975747pt;}
.yac{bottom:843.516893pt;}
.y95{bottom:843.694667pt;}
.y2b1{bottom:846.374667pt;}
.y257{bottom:847.828933pt;}
.yb9{bottom:847.895533pt;}
.y28c{bottom:847.914667pt;}
.yaf{bottom:848.316893pt;}
.yc0{bottom:848.316960pt;}
.y26b{bottom:850.083693pt;}
.y14c{bottom:850.113800pt;}
.y5a{bottom:850.361333pt;}
.y15a{bottom:850.520000pt;}
.yb3{bottom:852.855907pt;}
.yab{bottom:853.116893pt;}
.y1d{bottom:857.028000pt;}
.y228{bottom:857.186667pt;}
.y182{bottom:857.720000pt;}
.yb8{bottom:857.815840pt;}
.ybd{bottom:857.815920pt;}
.ya7{bottom:857.916893pt;}
.ybf{bottom:857.916960pt;}
.y10c{bottom:858.292053pt;}
.y3f{bottom:859.534880pt;}
.y14b{bottom:860.033587pt;}
.y149{bottom:860.135147pt;}
.y26a{bottom:862.404000pt;}
.yaa{bottom:862.716893pt;}
.yb2{bottom:862.775693pt;}
.yde{bottom:865.694667pt;}
.y159{bottom:866.520000pt;}
.y1c8{bottom:867.483600pt;}
.yae{bottom:867.516893pt;}
.ybe{bottom:867.516960pt;}
.yb7{bottom:867.735627pt;}
.y10f{bottom:868.211827pt;}
.y10b{bottom:868.211840pt;}
.y107{bottom:868.211853pt;}
.y14a{bottom:869.953893pt;}
.y59{bottom:870.361333pt;}
.y3e{bottom:871.854667pt;}
.y256{bottom:872.201333pt;}
.y28b{bottom:872.242787pt;}
.ya9{bottom:872.316893pt;}
.y1c4{bottom:872.704893pt;}
.y1c{bottom:877.028000pt;}
.y227{bottom:877.186667pt;}
.y1c7{bottom:877.403907pt;}
.y1c3{bottom:877.504893pt;}
.yb6{bottom:877.655933pt;}
.y181{bottom:877.720000pt;}
.y10e{bottom:878.132133pt;}
.y10a{bottom:878.132147pt;}
.y106{bottom:878.132160pt;}
.ya8{bottom:881.916893pt;}
.y1c5{bottom:882.304893pt;}
.y2ac{bottom:883.694667pt;}
.y1c6{bottom:887.323693pt;}
.yb5{bottom:887.575720pt;}
.y10d{bottom:888.051920pt;}
.y109{bottom:888.051933pt;}
.y105{bottom:888.051947pt;}
.y254{bottom:889.764080pt;}
.y58{bottom:890.361333pt;}
.yb0{bottom:891.516893pt;}
.y251{bottom:894.564080pt;}
.y1b{bottom:897.028000pt;}
.y226{bottom:897.186667pt;}
.yb4{bottom:897.495507pt;}
.y180{bottom:897.720000pt;}
.y148{bottom:897.857547pt;}
.y108{bottom:897.971720pt;}
.ydd{bottom:898.429107pt;}
.y3d{bottom:898.429160pt;}
.y255{bottom:899.262520pt;}
.y253{bottom:899.364080pt;}
.y250{bottom:904.164080pt;}
.ydc{bottom:908.349413pt;}
.y3b{bottom:908.349467pt;}
.y252{bottom:908.964080pt;}
.y57{bottom:910.361333pt;}
.y2{bottom:916.912000pt;}
.y1a{bottom:917.028000pt;}
.y17f{bottom:917.720000pt;}
.ydb{bottom:918.269200pt;}
.y3c{bottom:918.269253pt;}
.y158{bottom:918.537333pt;}
.y1c2{bottom:922.133027pt;}
.ya6{bottom:926.966360pt;}
.y104{bottom:927.241547pt;}
.y147{bottom:927.657547pt;}
.y24f{bottom:928.313547pt;}
.y56{bottom:930.361333pt;}
.y225{bottom:930.520000pt;}
.y1{bottom:932.912000pt;}
.y1c1{bottom:934.453333pt;}
.y17e{bottom:937.720000pt;}
.ya5{bottom:939.286667pt;}
.y103{bottom:939.561333pt;}
.y146{bottom:939.977333pt;}
.y24e{bottom:940.633333pt;}
.y3a{bottom:943.254667pt;}
.y157{bottom:945.204000pt;}
.y224{bottom:946.520000pt;}
.y19{bottom:950.361333pt;}
.y17d{bottom:957.720000pt;}
.y9{bottom:1041.852000pt;}
.h22{height:23.698438pt;}
.h17{height:24.515625pt;}
.h19{height:25.520847pt;}
.h28{height:25.522927pt;}
.h1e{height:26.558594pt;}
.h25{height:28.601563pt;}
.h21{height:28.803646pt;}
.h15{height:29.796875pt;}
.h20{height:30.515200pt;}
.h10{height:30.790104pt;}
.h8{height:31.360000pt;}
.h11{height:31.461719pt;}
.h2c{height:31.632859pt;}
.h1d{height:32.279948pt;}
.h2d{height:32.687500pt;}
.h24{height:34.763021pt;}
.hf{height:36.713600pt;}
.h13{height:38.239323pt;}
.h9{height:39.729167pt;}
.h18{height:43.715625pt;}
.h2e{height:44.695313pt;}
.h23{height:47.361993pt;}
.h16{height:48.996875pt;}
.he{height:49.661458pt;}
.h29{height:50.629678pt;}
.h2{height:52.266667pt;}
.h1f{height:53.079948pt;}
.hd{height:54.627604pt;}
.h12{height:56.101292pt;}
.h14{height:56.103372pt;}
.h27{height:57.160941pt;}
.h26{height:57.163021pt;}
.h5{height:57.203125pt;}
.h7{height:62.474998pt;}
.h1a{height:62.878896pt;}
.hc{height:66.080000pt;}
.h1b{height:68.196875pt;}
.h1c{height:69.423438pt;}
.h2a{height:71.068740pt;}
.h2b{height:82.125007pt;}
.h6{height:89.390625pt;}
.ha{height:113.280000pt;}
.hb{height:115.200000pt;}
.h3{height:155.760000pt;}
.h4{height:158.400000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:48.000000pt;}
.x5{left:60.997867pt;}
.x1{left:64.063067pt;}
.x56{left:94.290133pt;}
.x7{left:97.339600pt;}
.x6{left:130.444800pt;}
.xa9{left:150.158667pt;}
.x8{left:160.162667pt;}
.x55{left:161.082667pt;}
.x9{left:162.628000pt;}
.x15{left:164.374667pt;}
.x4b{left:167.360000pt;}
.x6a{left:169.056000pt;}
.x77{left:171.570667pt;}
.x11{left:172.834667pt;}
.x18{left:175.869600pt;}
.x28{left:177.046667pt;}
.x1a{left:178.117520pt;}
.x57{left:179.057333pt;}
.x8b{left:180.447973pt;}
.x12{left:181.574667pt;}
.x8a{left:182.836000pt;}
.x19{left:184.777413pt;}
.xa{left:186.628000pt;}
.x4a{left:187.658667pt;}
.x1b{left:189.285747pt;}
.x29{left:191.113333pt;}
.x93{left:192.053200pt;}
.x65{left:193.125067pt;}
.x5e{left:197.337200pt;}
.x46{left:200.137333pt;}
.x6b{left:201.188000pt;}
.x5c{left:203.613333pt;}
.x92{left:209.238667pt;}
.xa3{left:212.386533pt;}
.x4c{left:216.485467pt;}
.x9b{left:220.110133pt;}
.xab{left:225.269200pt;}
.xb{left:227.416000pt;}
.x2d{left:232.147768pt;}
.x2c{left:233.434747pt;}
.x2f{left:235.369129pt;}
.x2e{left:236.685275pt;}
.x9f{left:240.434933pt;}
.x91{left:243.035067pt;}
.x1d{left:244.752413pt;}
.x2b{left:246.610267pt;}
.x27{left:247.530533pt;}
.x58{left:254.104160pt;}
.x86{left:255.910347pt;}
.x1c{left:259.361747pt;}
.x16{left:262.713733pt;}
.xa4{left:287.329200pt;}
.x80{left:290.573640pt;}
.x31{left:295.137336pt;}
.x63{left:297.195600pt;}
.x7f{left:299.997600pt;}
.x5d{left:301.407600pt;}
.x32{left:304.022749pt;}
.x30{left:308.283696pt;}
.xa0{left:312.866667pt;}
.xa1{left:316.370733pt;}
.x71{left:317.442547pt;}
.x70{left:319.034733pt;}
.x2a{left:319.964933pt;}
.x94{left:320.858933pt;}
.xa2{left:322.637333pt;}
.x87{left:327.985280pt;}
.x78{left:329.142667pt;}
.x6c{left:338.186667pt;}
.x82{left:345.644480pt;}
.xaa{left:351.789467pt;}
.x81{left:354.235107pt;}
.x39{left:356.037443pt;}
.x36{left:358.865003pt;}
.x34{left:359.801456pt;}
.x37{left:361.649376pt;}
.x85{left:362.833333pt;}
.x35{left:367.707709pt;}
.x96{left:370.074587pt;}
.x6d{left:371.190800pt;}
.x33{left:372.947816pt;}
.x62{left:376.930667pt;}
.x38{left:378.274376pt;}
.x95{left:379.823027pt;}
.x9a{left:382.305333pt;}
.x17{left:385.021600pt;}
.x9d{left:388.015200pt;}
.x8c{left:390.190720pt;}
.x1e{left:391.114813pt;}
.x64{left:392.933067pt;}
.x88{left:399.794693pt;}
.x83{left:401.206973pt;}
.x59{left:402.114560pt;}
.x1f{left:403.311173pt;}
.x4d{left:407.893467pt;}
.x4e{left:410.226800pt;}
.x4f{left:415.869507pt;}
.xc{left:419.645333pt;}
.x3b{left:428.345309pt;}
.x98{left:429.900133pt;}
.x3a{left:434.278643pt;}
.xa5{left:435.692267pt;}
.x72{left:437.625293pt;}
.x97{left:438.786587pt;}
.x84{left:449.757560pt;}
.x20{left:460.607040pt;}
.x8d{left:462.045373pt;}
.x21{left:463.056520pt;}
.x47{left:464.913307pt;}
.x22{left:468.583081pt;}
.x89{left:470.277453pt;}
.x42{left:478.658909pt;}
.x41{left:480.169323pt;}
.x3d{left:482.953149pt;}
.x3e{left:484.523989pt;}
.x48{left:486.795573pt;}
.x73{left:489.404973pt;}
.x50{left:492.040360pt;}
.x40{left:494.657336pt;}
.x3c{left:496.141176pt;}
.x99{left:497.750667pt;}
.x3f{left:498.765189pt;}
.x67{left:501.418733pt;}
.x51{left:502.450773pt;}
.xf{left:503.792187pt;}
.x60{left:505.631387pt;}
.xa6{left:506.781333pt;}
.xe{left:508.254680pt;}
.x66{left:509.710400pt;}
.x5f{left:513.922533pt;}
.xd{left:516.371867pt;}
.x68{left:519.264067pt;}
.x23{left:523.095081pt;}
.x8f{left:526.812040pt;}
.x5a{left:528.328107pt;}
.xa7{left:530.702667pt;}
.x8e{left:540.210440pt;}
.x14{left:541.701267pt;}
.x3{left:544.002667pt;}
.x43{left:546.374509pt;}
.x13{left:551.565333pt;}
.x75{left:554.685173pt;}
.x74{left:556.215907pt;}
.x76{left:557.986213pt;}
.x7a{left:560.202627pt;}
.x79{left:564.432320pt;}
.x7b{left:569.614600pt;}
.x49{left:573.739840pt;}
.x53{left:576.099211pt;}
.x52{left:577.084107pt;}
.xa8{left:581.749600pt;}
.x54{left:584.318997pt;}
.x9e{left:590.761333pt;}
.x10{left:595.630720pt;}
.x9c{left:596.622267pt;}
.x25{left:598.377819pt;}
.x24{left:599.865326pt;}
.x69{left:600.773400pt;}
.x5b{left:602.347827pt;}
.x44{left:603.501576pt;}
.x61{left:604.986053pt;}
.x6e{left:606.637467pt;}
.x26{left:608.148126pt;}
.x90{left:609.395920pt;}
.x45{left:610.733349pt;}
.x6f{left:612.773400pt;}
.x7c{left:617.656333pt;}
.x7e{left:619.364147pt;}
.x7d{left:621.097480pt;}
.x4{left:689.609333pt;}
}




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