
    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_941c61b759738a08bbeba872.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_241081c0977cbe1778890bc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944824;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_e140dbe6706e06b7cd265f59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_739103178984caf45edc2d8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_c8c90b7f90f2f091caf74064.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_2c5150f543a2e64cfc734621.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928223;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_19067b8f9fb86473d444fe39.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_16f6cf5530a4352a2b33b6a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_ec1998028801640d19020447.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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;}
.m1{transform:matrix(0.237968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237968,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243380,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244582,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.256006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256006,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v8{vertical-align:-36.382594px;}
.v2{vertical-align:-34.793636px;}
.v4{vertical-align:-32.270617px;}
.v13{vertical-align:-26.640000px;}
.v12{vertical-align:-20.880000px;}
.v1{vertical-align:-18.000000px;}
.vb{vertical-align:-14.639982px;}
.v5{vertical-align:-12.882514px;}
.vd{vertical-align:-9.492258px;}
.va{vertical-align:-5.760000px;}
.v11{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.141422px;}
.vf{vertical-align:9.163679px;}
.v10{vertical-align:11.317692px;}
.v3{vertical-align:18.985467px;}
.v9{vertical-align:20.880000px;}
.v7{vertical-align:31.016226px;}
.ve{vertical-align:38.115065px;}
.vc{vertical-align:40.159551px;}
.ls49{letter-spacing:-0.990000px;}
.ls4c{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls4d{letter-spacing:-0.768000px;}
.ls18{letter-spacing:-0.702000px;}
.ls4b{letter-spacing:-0.672000px;}
.ls3b{letter-spacing:-0.666000px;}
.ls31{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.460200px;}
.ls44{letter-spacing:-0.450600px;}
.ls1e{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.310084px;}
.ls15{letter-spacing:-0.269400px;}
.ls3f{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.223800px;}
.ls21{letter-spacing:-0.206400px;}
.ls4a{letter-spacing:-0.181200px;}
.ls30{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.018000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls2e{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.053400px;}
.ls32{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.126000px;}
.ls33{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.206640px;}
.ls20{letter-spacing:0.223800px;}
.ls47{letter-spacing:0.223920px;}
.ls1a{letter-spacing:0.234000px;}
.ls2d{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls2c{letter-spacing:0.291600px;}
.ls41{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.306720px;}
.ls2a{letter-spacing:0.336000px;}
.ls3c{letter-spacing:0.348480px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.ls40{letter-spacing:0.528480px;}
.ls3d{letter-spacing:0.613440px;}
.ls3e{letter-spacing:0.653040px;}
.ls3a{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.979920px;}
.ls6{letter-spacing:2.340000px;}
.ls5{letter-spacing:2.520000px;}
.ls3{letter-spacing:8.820000px;}
.ls28{letter-spacing:11.700000px;}
.ls48{letter-spacing:11.789280px;}
.ls46{letter-spacing:11.933280px;}
.ls4{letter-spacing:13.140000px;}
.ls26{letter-spacing:14.040000px;}
.ls27{letter-spacing:25.842720px;}
.ls2b{letter-spacing:25.866720px;}
.lsa{letter-spacing:26.955182px;}
.lse{letter-spacing:27.041408px;}
.lsb{letter-spacing:27.292269px;}
.ls8{letter-spacing:28.775580px;}
.ls10{letter-spacing:30.149692px;}
.ls43{letter-spacing:35.669280px;}
.ls45{letter-spacing:35.693280px;}
.ls42{letter-spacing:41.106720px;}
.ls39{letter-spacing:67.860000px;}
.ls11{letter-spacing:89.941130px;}
.ls36{letter-spacing:153.608932px;}
.ls37{letter-spacing:153.645441px;}
.ls35{letter-spacing:216.160135px;}
.ls34{letter-spacing:300.087675px;}
.ls9{letter-spacing:359.173794px;}
.lsd{letter-spacing:417.410550px;}
.lsf{letter-spacing:566.280000px;}
.lsc{letter-spacing:630.183778px;}
.ls38{letter-spacing:1036.108169px;}
.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;}
}
.ws2c{word-spacing:-59.760000px;}
.ws2{word-spacing:-35.424000px;}
.ws0{word-spacing:-15.300000px;}
.ws24{word-spacing:-15.199920px;}
.ws1b{word-spacing:-15.199800px;}
.ws23{word-spacing:-15.093600px;}
.ws21{word-spacing:-15.046800px;}
.ws17{word-spacing:-14.993400px;}
.ws1d{word-spacing:-14.993280px;}
.wsf{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.733600px;}
.ws2b{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.580000px;}
.ws1e{word-spacing:-14.479800px;}
.ws20{word-spacing:-14.328000px;}
.ws2a{word-spacing:-14.274000px;}
.ws9{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.734000px;}
.ws8{word-spacing:-13.626000px;}
.ws3{word-spacing:-13.500000px;}
.ws29{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.972283px;}
.ws4{word-spacing:-12.798000px;}
.ws7{word-spacing:-12.672000px;}
.ws2d{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.283800px;}
.ws25{word-spacing:-12.265567px;}
.ws19{word-spacing:-12.080654px;}
.ws1{word-spacing:-12.060000px;}
.ws33{word-spacing:-11.878800px;}
.ws31{word-spacing:-11.836200px;}
.wsc{word-spacing:-11.790600px;}
.wsd{word-spacing:-11.700000px;}
.ws2e{word-spacing:-11.609400px;}
.ws10{word-spacing:-11.557549px;}
.ws18{word-spacing:-11.550091px;}
.ws34{word-spacing:-11.388000px;}
.ws2f{word-spacing:-11.340000px;}
.ws36{word-spacing:-11.292000px;}
.ws35{word-spacing:-11.160000px;}
.ws32{word-spacing:-11.070000px;}
.ws13{word-spacing:-10.786950px;}
.ws11{word-spacing:-10.710110px;}
.ws22{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws30{word-spacing:-7.560000px;}
.ws1a{word-spacing:0.000000px;}
.wse{word-spacing:28.132560px;}
.ws12{word-spacing:31.974692px;}
.ws27{word-spacing:181.759244px;}
.ws26{word-spacing:242.437990px;}
.ws16{word-spacing:541.545840px;}
.ws28{word-spacing:771.927269px;}
._22{margin-left:-146.539948px;}
._1e{margin-left:-69.989339px;}
._21{margin-left:-67.081962px;}
._31{margin-left:-63.216135px;}
._1d{margin-left:-57.009302px;}
._1{margin-left:-1.257120px;}
._0{width:1.060560px;}
._26{width:2.113680px;}
._7{width:3.240000px;}
._d{width:4.555440px;}
._c{width:5.940000px;}
._12{width:7.758625px;}
._9{width:9.126000px;}
._a{width:10.260000px;}
._11{width:11.912880px;}
._15{width:13.376160px;}
._6{width:14.598000px;}
._8{width:15.782640px;}
._5{width:17.481360px;}
._4{width:19.278000px;}
._10{width:21.222000px;}
._f{width:22.950000px;}
._23{width:24.077520px;}
._3{width:25.374000px;}
._2{width:26.676000px;}
._16{width:27.837167px;}
._2d{width:29.173826px;}
._38{width:31.033440px;}
._e{width:32.292000px;}
._b{width:33.372000px;}
._1b{width:34.584960px;}
._3d{width:35.676913px;}
._13{width:36.710447px;}
._14{width:38.333525px;}
._3b{width:39.740400px;}
._37{width:40.875960px;}
._1c{width:42.549000px;}
._36{width:44.278560px;}
._24{width:45.359040px;}
._39{width:46.537200px;}
._19{width:47.643780px;}
._1a{width:49.770600px;}
._30{width:51.543360px;}
._2f{width:52.732560px;}
._17{width:54.145440px;}
._2c{width:57.608640px;}
._2b{width:58.690800px;}
._35{width:61.269120px;}
._29{width:63.743760px;}
._2a{width:64.938240px;}
._34{width:68.516640px;}
._18{width:80.626080px;}
._28{width:84.739680px;}
._27{width:85.994640px;}
._2e{width:91.686960px;}
._3f{width:95.089680px;}
._3e{width:96.721200px;}
._32{width:122.110320px;}
._3a{width:181.859520px;}
._33{width:188.927040px;}
._3c{width:236.708160px;}
._25{width:246.569820px;}
._20{width:383.599920px;}
._1f{width:390.045360px;}
.fc5{color:transparent;}
.fc4{color:rgb(51,51,255);}
.fc3{color:rgb(42,8,184);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:25.867985px;}
.fs10{font-size:27.698059px;}
.fs14{font-size:29.352616px;}
.fs17{font-size:30.240000px;}
.fsc{font-size:33.168698px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:38.525575px;}
.fse{font-size:38.749399px;}
.fs9{font-size:38.801978px;}
.fs12{font-size:38.880000px;}
.fsd{font-size:39.744575px;}
.fsf{font-size:41.547089px;}
.fs7{font-size:41.573917px;}
.fs11{font-size:43.455589px;}
.fs13{font-size:44.120743px;}
.fs16{font-size:45.360000px;}
.fsb{font-size:46.662888px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs15{font-size:65.726582px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.ya1{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.520000px;}
.yb{bottom:3.240000px;}
.y75{bottom:3.255665px;}
.y65{bottom:3.887111px;}
.y125{bottom:3.960000px;}
.y83{bottom:3.972464px;}
.y59{bottom:4.055926px;}
.y6a{bottom:4.089330px;}
.y12a{bottom:4.140000px;}
.y12f{bottom:4.320000px;}
.y86{bottom:4.441750px;}
.y95{bottom:4.591885px;}
.y117{bottom:4.953788px;}
.y71{bottom:5.035817px;}
.y118{bottom:5.693574px;}
.y96{bottom:6.667582px;}
.y8b{bottom:6.750303px;}
.y5c{bottom:11.457730px;}
.y4{bottom:11.700000px;}
.y81{bottom:11.994661px;}
.y7e{bottom:12.660053px;}
.y5a{bottom:12.837784px;}
.y8{bottom:13.320000px;}
.y70{bottom:14.610222px;}
.y6{bottom:16.200000px;}
.y76{bottom:16.883689px;}
.ya{bottom:17.100000px;}
.y3{bottom:19.260000px;}
.y122{bottom:19.800000px;}
.y107{bottom:20.689485px;}
.y10e{bottom:20.778961px;}
.y7c{bottom:20.918933px;}
.y108{bottom:20.958743px;}
.y10f{bottom:21.048218px;}
.y10c{bottom:21.406873px;}
.y114{bottom:21.496349px;}
.y60{bottom:22.092806px;}
.y77{bottom:23.781766px;}
.y72{bottom:24.207860px;}
.y74{bottom:24.302663px;}
.y123{bottom:26.280000px;}
.y82{bottom:27.902024px;}
.y5b{bottom:28.874972px;}
.y92{bottom:29.782472px;}
.y5{bottom:30.060000px;}
.y9{bottom:30.780000px;}
.y8a{bottom:32.421241px;}
.y61{bottom:33.364286px;}
.y7d{bottom:37.234435px;}
.y64{bottom:38.638563px;}
.y69{bottom:42.076498px;}
.y8e{bottom:42.300430px;}
.y8f{bottom:42.388533px;}
.y91{bottom:42.388543px;}
.y73{bottom:43.354734px;}
.y63{bottom:45.670607px;}
.y106{bottom:48.036316px;}
.y10d{bottom:48.125792px;}
.y89{bottom:49.410320px;}
.y58{bottom:54.634759px;}
.y6b{bottom:56.003062px;}
.y68{bottom:56.160715px;}
.y79{bottom:58.019295px;}
.y8c{bottom:58.112477px;}
.y78{bottom:58.153881px;}
.y115{bottom:59.826804px;}
.y85{bottom:59.873716px;}
.y94{bottom:60.116869px;}
.y90{bottom:60.116872px;}
.y7f{bottom:61.484874px;}
.y5f{bottom:68.993866px;}
.y5d{bottom:69.102848px;}
.y57{bottom:71.612694px;}
.y67{bottom:72.023356px;}
.y6c{bottom:72.181814px;}
.y109{bottom:75.091983px;}
.y111{bottom:75.181458px;}
.y84{bottom:75.683875px;}
.y93{bottom:78.021406px;}
.y251{bottom:79.236000px;}
.y145{bottom:82.296000px;}
.y62{bottom:82.434361px;}
.y1c8{bottom:83.376000px;}
.y110{bottom:84.707480px;}
.y5e{bottom:84.741013px;}
.y113{bottom:87.084203px;}
.y164{bottom:88.956000px;}
.y208{bottom:90.936000px;}
.y9e{bottom:92.916000px;}
.y6d{bottom:96.007547px;}
.y144{bottom:99.396000px;}
.y112{bottom:101.987044px;}
.y10a{bottom:102.434246px;}
.y184{bottom:102.456000px;}
.y10b{bottom:102.525522px;}
.y207{bottom:104.616000px;}
.y250{bottom:106.776000px;}
.y163{bottom:107.136000px;}
.y9d{bottom:111.096000px;}
.y143{bottom:116.676000px;}
.y44{bottom:116.856000px;}
.yd9{bottom:117.216000px;}
.y206{bottom:118.476000px;}
.y183{bottom:120.636000px;}
.y162{bottom:125.136000px;}
.y9c{bottom:129.276000px;}
.y43{bottom:130.716000px;}
.y205{bottom:132.336000px;}
.y142{bottom:133.956000px;}
.y24f{bottom:134.316000px;}
.yd8{bottom:135.396000px;}
.y182{bottom:138.636000px;}
.y161{bottom:143.316000px;}
.y105{bottom:144.309703px;}
.y42{bottom:144.396000px;}
.y204{bottom:146.016000px;}
.y9b{bottom:147.276000px;}
.y24e{bottom:148.176000px;}
.y1a6{bottom:149.436000px;}
.y141{bottom:151.230000px;}
.yd7{bottom:153.570000px;}
.y181{bottom:156.810000px;}
.y203{bottom:159.870000px;}
.y160{bottom:161.490000px;}
.y24d{bottom:162.030000px;}
.y9a{bottom:165.450000px;}
.y116{bottom:166.634832px;}
.y1a5{bottom:167.610000px;}
.y119{bottom:168.359856px;}
.y140{bottom:168.510000px;}
.yf2{bottom:171.030000px;}
.yd6{bottom:171.570000px;}
.y41{bottom:172.110000px;}
.y202{bottom:173.730000px;}
.y180{bottom:174.990000px;}
.y24c{bottom:175.710000px;}
.y15f{bottom:178.050000px;}
.y99{bottom:183.450000px;}
.yf5{bottom:184.095109px;}
.yf6{bottom:184.368930px;}
.yfc{bottom:184.460162px;}
.yfa{bottom:184.660978px;}
.yfd{bottom:184.752237px;}
.y100{bottom:185.108164px;}
.y101{bottom:185.372858px;}
.y40{bottom:185.790000px;}
.y104{bottom:185.847457px;}
.y201{bottom:187.410000px;}
.yf1{bottom:189.210000px;}
.y24b{bottom:189.570000px;}
.yd5{bottom:197.850000px;}
.y17f{bottom:198.210000px;}
.y3f{bottom:199.650000px;}
.y200{bottom:201.270000px;}
.y98{bottom:201.630000px;}
.yf8{bottom:201.765304px;}
.y13f{bottom:202.890000px;}
.y24a{bottom:203.430000px;}
.y1a4{bottom:203.790000px;}
.yf0{bottom:207.210000px;}
.yf4{bottom:211.440115px;}
.y17e{bottom:212.970000px;}
.y3e{bottom:213.510000px;}
.yff{bottom:213.913524px;}
.yfb{bottom:214.178241px;}
.y1c7{bottom:214.770000px;}
.y1ff{bottom:215.130000px;}
.y249{bottom:217.110000px;}
.y97{bottom:218.910000px;}
.y13e{bottom:220.170000px;}
.y1a3{bottom:221.970000px;}
.yef{bottom:225.390000px;}
.y3d{bottom:227.190000px;}
.y1fe{bottom:228.810000px;}
.y248{bottom:230.970000px;}
.y17d{bottom:232.770000px;}
.y1c6{bottom:232.950000px;}
.y8d{bottom:233.039978px;}
.y88{bottom:233.040000px;}
.yd4{bottom:234.030000px;}
.y13d{bottom:237.450000px;}
.yf7{bottom:238.611696px;}
.yfe{bottom:238.967622px;}
.yf9{bottom:239.058915px;}
.y102{bottom:239.506098px;}
.y1a2{bottom:240.150000px;}
.y3c{bottom:241.050000px;}
.y1fd{bottom:242.670000px;}
.yee{bottom:243.390000px;}
.y247{bottom:244.830000px;}
.y1c5{bottom:250.950000px;}
.yd3{bottom:252.030000px;}
.y17c{bottom:252.570000px;}
.y3b{bottom:254.730000px;}
.y1fc{bottom:256.530000px;}
.y1a1{bottom:258.150000px;}
.y246{bottom:258.510000px;}
.yed{bottom:263.370000px;}
.y103{bottom:266.851099px;}
.y3a{bottom:268.590000px;}
.y17b{bottom:269.130000px;}
.yd2{bottom:270.210000px;}
.y13c{bottom:272.010000px;}
.y245{bottom:272.370000px;}
.y1a0{bottom:281.550000px;}
.y39{bottom:282.450000px;}
.yec{bottom:283.170000px;}
.y1fb{bottom:284.070000px;}
.y244{bottom:286.230000px;}
.y1c4{bottom:287.130000px;}
.yd1{bottom:288.390000px;}
.y13b{bottom:289.110000px;}
.y15e{bottom:293.790000px;}
.y19f{bottom:294.330000px;}
.y38{bottom:296.850000px;}
.y1fa{bottom:297.930000px;}
.y243{bottom:299.910000px;}
.yeb{bottom:302.970000px;}
.y1c3{bottom:305.310000px;}
.yd0{bottom:306.390000px;}
.y15d{bottom:311.070000px;}
.y1f9{bottom:311.610000px;}
.y19e{bottom:312.510000px;}
.y242{bottom:313.770000px;}
.y37{bottom:313.950000px;}
.yea{bottom:321.150000px;}
.y1c2{bottom:323.490000px;}
.y13a{bottom:323.670000px;}
.y87{bottom:324.030000px;}
.ycf{bottom:324.570000px;}
.y1f8{bottom:325.470000px;}
.y241{bottom:327.630000px;}
.y15c{bottom:328.350000px;}
.y36{bottom:329.430000px;}
.y19d{bottom:330.690000px;}
.y80{bottom:338.114978px;}
.y7b{bottom:338.115000px;}
.ye9{bottom:339.195000px;}
.y1f7{bottom:339.375000px;}
.y139{bottom:340.995000px;}
.y240{bottom:341.355000px;}
.y1c1{bottom:341.535000px;}
.yce{bottom:342.615000px;}
.y35{bottom:344.955000px;}
.y15b{bottom:345.495000px;}
.y19c{bottom:347.115000px;}
.y1f6{bottom:353.055000px;}
.y23f{bottom:355.215000px;}
.ye8{bottom:357.375000px;}
.y138{bottom:358.275000px;}
.y1c0{bottom:359.715000px;}
.y34{bottom:360.435000px;}
.ycd{bottom:360.795000px;}
.y15a{bottom:362.775000px;}
.y1f5{bottom:366.915000px;}
.y23e{bottom:369.075000px;}
.ye7{bottom:375.555000px;}
.y33{bottom:375.915000px;}
.y1bf{bottom:377.715000px;}
.ycc{bottom:378.975000px;}
.y159{bottom:380.055000px;}
.y1f4{bottom:380.775000px;}
.y23d{bottom:382.755000px;}
.y32{bottom:391.575000px;}
.ye6{bottom:393.555000px;}
.y1f3{bottom:394.455000px;}
.y137{bottom:395.355000px;}
.y1be{bottom:395.895000px;}
.y23c{bottom:396.615000px;}
.ycb{bottom:396.975000px;}
.y158{bottom:397.335000px;}
.y1f2{bottom:408.315000px;}
.y23b{bottom:410.475000px;}
.ye5{bottom:411.735000px;}
.y1bd{bottom:412.455000px;}
.y17a{bottom:412.815000px;}
.y157{bottom:414.615000px;}
.yca{bottom:415.155000px;}
.y1f1{bottom:422.175000px;}
.y23a{bottom:424.155000px;}
.y7a{bottom:427.935000px;}
.ye4{bottom:429.735000px;}
.y179{bottom:430.995000px;}
.y156{bottom:431.895000px;}
.yc9{bottom:433.335000px;}
.y136{bottom:434.955000px;}
.y1f0{bottom:435.855000px;}
.y239{bottom:438.015000px;}
.y6f{bottom:441.989957px;}
.ye3{bottom:447.915000px;}
.y155{bottom:448.995000px;}
.y1ef{bottom:449.715000px;}
.yc8{bottom:451.335000px;}
.y238{bottom:451.875000px;}
.y135{bottom:453.135000px;}
.y1ee{bottom:463.575000px;}
.y237{bottom:465.555000px;}
.ye2{bottom:466.095000px;}
.y154{bottom:466.275000px;}
.y178{bottom:467.175000px;}
.y31{bottom:469.155000px;}
.yc7{bottom:469.515000px;}
.y134{bottom:471.135000px;}
.y1ed{bottom:477.255000px;}
.y19b{bottom:478.515000px;}
.y236{bottom:479.415000px;}
.y153{bottom:482.835000px;}
.ye1{bottom:484.095000px;}
.y30{bottom:484.635000px;}
.y177{bottom:485.175000px;}
.yc6{bottom:487.515000px;}
.y133{bottom:489.315000px;}
.y1ec{bottom:491.115000px;}
.y235{bottom:493.275000px;}
.y19a{bottom:496.515000px;}
.y2f{bottom:500.115000px;}
.y176{bottom:503.355000px;}
.ye0{bottom:503.895000px;}
.y1eb{bottom:504.975000px;}
.yc5{bottom:505.695000px;}
.y234{bottom:506.955000px;}
.y132{bottom:507.315000px;}
.y199{bottom:514.695000px;}
.y2e{bottom:515.775000px;}
.y6e{bottom:517.035000px;}
.y1ea{bottom:518.655000px;}
.y275{bottom:520.455000px;}
.y233{bottom:520.815000px;}
.y175{bottom:521.535000px;}
.yc4{bottom:523.875000px;}
.y131{bottom:525.495000px;}
.y56{bottom:531.089957px;}
.y66{bottom:531.090000px;}
.y2d{bottom:531.255000px;}
.y1e9{bottom:532.515000px;}
.y198{bottom:532.875000px;}
.y232{bottom:534.675000px;}
.y274{bottom:535.035000px;}
.y174{bottom:539.535000px;}
.yc3{bottom:541.875000px;}
.y130{bottom:544.035000px;}
.y1e8{bottom:546.195000px;}
.y2c{bottom:546.735000px;}
.y231{bottom:548.355000px;}
.y197{bottom:550.875000px;}
.y273{bottom:552.315000px;}
.y12e{bottom:556.095000px;}
.y173{bottom:557.715000px;}
.yc2{bottom:560.055000px;}
.y2b{bottom:562.215000px;}
.y1bc{bottom:566.175000px;}
.y196{bottom:569.055000px;}
.y272{bottom:569.595000px;}
.y12d{bottom:573.375000px;}
.y1e7{bottom:573.915000px;}
.y172{bottom:575.715000px;}
.y230{bottom:576.075000px;}
.y2a{bottom:577.875000px;}
.yc1{bottom:578.055000px;}
.y1bb{bottom:584.355000px;}
.y271{bottom:586.875000px;}
.y195{bottom:587.235000px;}
.y1e6{bottom:587.595000px;}
.y22f{bottom:589.755000px;}
.y12c{bottom:589.935000px;}
.y171{bottom:592.455000px;}
.y29{bottom:593.355000px;}
.yc0{bottom:596.235000px;}
.y152{bottom:598.575000px;}
.y1ba{bottom:602.535000px;}
.y22e{bottom:603.645000px;}
.y270{bottom:604.005000px;}
.y194{bottom:605.265000px;}
.y12b{bottom:606.525000px;}
.y28{bottom:608.865000px;}
.y1e5{bottom:611.205000px;}
.ybf{bottom:614.445000px;}
.y151{bottom:615.885000px;}
.y22d{bottom:617.505000px;}
.y1b9{bottom:620.565000px;}
.y26f{bottom:621.285000px;}
.y129{bottom:623.085000px;}
.y193{bottom:623.445000px;}
.y27{bottom:624.345000px;}
.y22c{bottom:631.185000px;}
.ybe{bottom:632.445000px;}
.y150{bottom:633.165000px;}
.y26e{bottom:638.565000px;}
.y1b8{bottom:638.745000px;}
.y55{bottom:639.825000px;}
.y26{bottom:640.005000px;}
.y192{bottom:641.445000px;}
.y22b{bottom:645.045000px;}
.y1e4{bottom:647.385000px;}
.y14f{bottom:650.445000px;}
.ybd{bottom:650.625000px;}
.y25{bottom:655.485000px;}
.y26d{bottom:655.845000px;}
.y128{bottom:656.385000px;}
.y1b7{bottom:656.745000px;}
.y54{bottom:658.005000px;}
.y22a{bottom:658.725000px;}
.y191{bottom:659.625000px;}
.y1e3{bottom:665.385000px;}
.y14e{bottom:667.725000px;}
.ybc{bottom:668.805000px;}
.y26c{bottom:669.885000px;}
.y24{bottom:670.965000px;}
.y229{bottom:672.585000px;}
.y127{bottom:672.945000px;}
.y1b6{bottom:674.925000px;}
.y53{bottom:676.185000px;}
.y1e2{bottom:683.565000px;}
.y14d{bottom:685.005000px;}
.y228{bottom:686.445000px;}
.ybb{bottom:686.805000px;}
.y126{bottom:689.505000px;}
.y26b{bottom:689.685000px;}
.y23{bottom:690.945000px;}
.y1b5{bottom:693.105000px;}
.y52{bottom:694.185000px;}
.y227{bottom:700.125000px;}
.y1e1{bottom:701.565000px;}
.y22{bottom:702.105000px;}
.y26a{bottom:703.365000px;}
.yba{bottom:704.985000px;}
.y124{bottom:706.065000px;}
.y1b4{bottom:711.105000px;}
.y51{bottom:712.365000px;}
.y226{bottom:713.985000px;}
.y269{bottom:717.225000px;}
.y21{bottom:717.585000px;}
.y14c{bottom:719.385000px;}
.y1e0{bottom:719.745000px;}
.y121{bottom:722.625000px;}
.yb9{bottom:722.985000px;}
.y170{bottom:726.945000px;}
.y225{bottom:727.845000px;}
.y1b3{bottom:729.285000px;}
.y50{bottom:730.365000px;}
.y268{bottom:730.905000px;}
.y20{bottom:733.065000px;}
.y14b{bottom:736.665000px;}
.y1df{bottom:737.925000px;}
.yb8{bottom:741.165000px;}
.y224{bottom:741.525000px;}
.y267{bottom:744.765000px;}
.y16f{bottom:745.125000px;}
.y1b2{bottom:745.845000px;}
.y1f{bottom:748.545000px;}
.y14a{bottom:753.945000px;}
.y223{bottom:755.385000px;}
.y1de{bottom:755.925000px;}
.y266{bottom:758.625000px;}
.yb7{bottom:759.345000px;}
.y16e{bottom:763.305000px;}
.y1e{bottom:764.025000px;}
.y4f{bottom:766.725000px;}
.ydf{bottom:767.445000px;}
.y222{bottom:769.245000px;}
.y149{bottom:771.225000px;}
.y265{bottom:773.025000px;}
.y1dd{bottom:774.105000px;}
.yb6{bottom:777.345000px;}
.y120{bottom:780.045000px;}
.y16d{bottom:781.305000px;}
.y221{bottom:782.925000px;}
.y4e{bottom:784.725000px;}
.y1d{bottom:785.625000px;}
.y264{bottom:789.585000px;}
.y1dc{bottom:792.105000px;}
.yb5{bottom:795.525000px;}
.y220{bottom:796.785000px;}
.y11f{bottom:797.325000px;}
.y16c{bottom:799.485000px;}
.y1c{bottom:801.105000px;}
.y4d{bottom:802.905000px;}
.yde{bottom:803.445000px;}
.y1db{bottom:810.285000px;}
.y21f{bottom:810.645000px;}
.yb4{bottom:813.525000px;}
.y263{bottom:817.305000px;}
.y16b{bottom:817.665000px;}
.y190{bottom:819.825000px;}
.y11e{bottom:820.185000px;}
.y4c{bottom:820.905000px;}
.ydd{bottom:821.625000px;}
.y1b{bottom:822.705000px;}
.y21e{bottom:824.325000px;}
.y1da{bottom:828.465000px;}
.y262{bottom:830.985000px;}
.yb3{bottom:831.705000px;}
.y148{bottom:832.605000px;}
.y16a{bottom:835.665000px;}
.y11d{bottom:836.025000px;}
.y18f{bottom:838.005000px;}
.y1a{bottom:838.185000px;}
.y4b{bottom:839.085000px;}
.ydc{bottom:839.805000px;}
.y261{bottom:844.845000px;}
.y1d9{bottom:846.465000px;}
.y147{bottom:849.885000px;}
.y21d{bottom:852.045000px;}
.y11c{bottom:853.125000px;}
.y19{bottom:853.665000px;}
.y169{bottom:853.845000px;}
.y18e{bottom:856.005000px;}
.y4a{bottom:857.265000px;}
.ydb{bottom:857.805000px;}
.yb2{bottom:857.985000px;}
.y260{bottom:858.705000px;}
.y1d8{bottom:864.645000px;}
.y21c{bottom:865.725000px;}
.y146{bottom:867.165000px;}
.y11b{bottom:868.605000px;}
.y18{bottom:869.325000px;}
.y168{bottom:871.890000px;}
.y25f{bottom:872.430000px;}
.y18d{bottom:874.230000px;}
.y49{bottom:875.310000px;}
.yda{bottom:876.030000px;}
.y21b{bottom:879.630000px;}
.y1d7{bottom:882.870000px;}
.y17{bottom:884.850000px;}
.y25e{bottom:886.290000px;}
.y167{bottom:890.070000px;}
.y11a{bottom:890.430000px;}
.y1b1{bottom:891.690000px;}
.y18c{bottom:892.230000px;}
.y48{bottom:893.490000px;}
.yb1{bottom:894.210000px;}
.y16{bottom:900.330000px;}
.y1d6{bottom:900.870000px;}
.y166{bottom:906.630000px;}
.y21a{bottom:907.170000px;}
.y1b0{bottom:909.870000px;}
.yf3{bottom:910.364919px;}
.y18b{bottom:910.410000px;}
.y47{bottom:911.670000px;}
.yb0{bottom:912.210000px;}
.y15{bottom:915.810000px;}
.y25d{bottom:917.250000px;}
.y1d5{bottom:919.050000px;}
.y219{bottom:921.030000px;}
.y1af{bottom:928.050000px;}
.y18a{bottom:928.590000px;}
.yaf{bottom:930.390000px;}
.y25c{bottom:931.110000px;}
.y14{bottom:931.470000px;}
.y46{bottom:933.810000px;}
.y218{bottom:934.890000px;}
.y25b{bottom:944.970000px;}
.y1ae{bottom:946.050000px;}
.y189{bottom:946.590000px;}
.y13{bottom:946.950000px;}
.y1d4{bottom:947.850000px;}
.yae{bottom:948.390000px;}
.y217{bottom:948.570000px;}
.y25a{bottom:958.650000px;}
.y12{bottom:962.430000px;}
.y1ad{bottom:964.230000px;}
.y188{bottom:964.770000px;}
.yad{bottom:966.570000px;}
.y259{bottom:972.510000px;}
.y45{bottom:974.130000px;}
.y216{bottom:976.290000px;}
.y11{bottom:977.910000px;}
.y1ac{bottom:982.230000px;}
.y187{bottom:982.950000px;}
.y1d3{bottom:984.030000px;}
.yac{bottom:984.750000px;}
.y258{bottom:986.370000px;}
.y215{bottom:989.970000px;}
.y10{bottom:993.570000px;}
.y257{bottom:1000.050000px;}
.y1ab{bottom:1000.410000px;}
.y186{bottom:1000.950000px;}
.y1d2{bottom:1002.030000px;}
.yab{bottom:1002.750000px;}
.y214{bottom:1003.830000px;}
.y185{bottom:1017.690000px;}
.y1aa{bottom:1018.590000px;}
.y1d1{bottom:1020.210000px;}
.yaa{bottom:1020.930000px;}
.y256{bottom:1023.630000px;}
.yf{bottom:1029.570000px;}
.y213{bottom:1031.370000px;}
.y1a9{bottom:1036.590000px;}
.y1d0{bottom:1038.210000px;}
.ya9{bottom:1038.930000px;}
.y212{bottom:1045.230000px;}
.y1a8{bottom:1054.770000px;}
.y1cf{bottom:1056.390000px;}
.ya8{bottom:1057.110000px;}
.y255{bottom:1058.190000px;}
.y211{bottom:1059.090000px;}
.ye{bottom:1070.790000px;}
.y1a7{bottom:1071.330000px;}
.y254{bottom:1072.050000px;}
.y210{bottom:1072.770000px;}
.y1ce{bottom:1074.570000px;}
.ya7{bottom:1075.290000px;}
.y253{bottom:1085.730000px;}
.y20f{bottom:1086.630000px;}
.y1cd{bottom:1092.570000px;}
.ya6{bottom:1093.290000px;}
.y252{bottom:1099.590000px;}
.y20e{bottom:1100.490000px;}
.y1cc{bottom:1110.750000px;}
.ya5{bottom:1111.470000px;}
.yd{bottom:1112.190000px;}
.y20d{bottom:1113.270000px;}
.y20c{bottom:1127.130000px;}
.y1cb{bottom:1128.930000px;}
.ya4{bottom:1129.650000px;}
.y20b{bottom:1141.020000px;}
.y1ca{bottom:1146.960000px;}
.ya3{bottom:1147.680000px;}
.yc{bottom:1153.620000px;}
.y20a{bottom:1154.700000px;}
.ya2{bottom:1165.860000px;}
.y209{bottom:1168.560000px;}
.y165{bottom:1171.080000px;}
.y1c9{bottom:1173.240000px;}
.ya0{bottom:1183.140000px;}
.y9f{bottom:1200.420000px;}
.y2{bottom:1217.520000px;}
.y1{bottom:1234.800000px;}
.h37{height:15.660000px;}
.h35{height:15.840000px;}
.h38{height:15.876000px;}
.h39{height:16.560000px;}
.h1c{height:24.244893px;}
.hc{height:25.136719px;}
.h3a{height:27.147656px;}
.h15{height:28.160540px;}
.h21{height:28.324146px;}
.h17{height:28.362579px;}
.h1e{height:29.051577px;}
.h23{height:30.369137px;}
.h12{height:30.388747px;}
.h36{height:31.672266px;}
.h25{height:31.764168px;}
.h34{height:32.004492px;}
.h30{height:32.121108px;}
.h2a{height:32.250368px;}
.h2c{height:32.615454px;}
.he{height:33.683203px;}
.hf{height:34.036523px;}
.h19{height:34.108566px;}
.h1a{height:35.249989px;}
.h3c{height:35.261367px;}
.hb{height:37.705078px;}
.hd{height:38.100586px;}
.ha{height:39.128906px;}
.h6{height:39.760312px;}
.h5{height:41.400000px;}
.h4{height:41.726953px;}
.h7{height:42.120000px;}
.h3{height:42.164648px;}
.h2{height:43.302656px;}
.h2f{height:43.438799px;}
.h26{height:43.506914px;}
.h3b{height:44.265586px;}
.h31{height:44.507812px;}
.h9{height:46.736719px;}
.h33{height:47.520000px;}
.h32{height:47.671875px;}
.h28{height:48.027656px;}
.h27{height:49.255313px;}
.h13{height:49.374214px;}
.h1f{height:60.067802px;}
.h18{height:63.000746px;}
.h22{height:67.500489px;}
.h2e{height:70.266859px;}
.h2d{height:70.365432px;}
.h1b{height:72.001320px;}
.h2b{height:72.409919px;}
.h11{height:80.999880px;}
.h10{height:83.956641px;}
.h20{height:84.452615px;}
.h1d{height:86.625743px;}
.h24{height:87.824539px;}
.h14{height:93.450571px;}
.h8{height:100.546875px;}
.h3d{height:101.601562px;}
.h16{height:104.774993px;}
.h29{height:276.827169px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:32.220000px;}
.w13{width:49.860000px;}
.w11{width:50.040000px;}
.w14{width:52.200000px;}
.wf{width:60.516000px;}
.w12{width:63.036000px;}
.w10{width:69.840000px;}
.w6{width:85.497335px;}
.w4{width:109.127338px;}
.w5{width:109.276370px;}
.w8{width:126.003506px;}
.wb{width:130.498598px;}
.wc{width:133.871923px;}
.w9{width:140.548207px;}
.wa{width:143.998982px;}
.w2{width:186.510000px;}
.w7{width:188.997728px;}
.w3{width:270.615000px;}
.we{width:654.264102px;}
.wd{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.398773px;}
.x1f{left:8.014808px;}
.x4{left:10.800000px;}
.x2c{left:15.882328px;}
.x60{left:19.620000px;}
.x13{left:21.925165px;}
.x1a{left:24.775723px;}
.x11{left:26.840985px;}
.x64{left:29.154000px;}
.x17{left:30.494355px;}
.x3b{left:32.308486px;}
.x24{left:33.837863px;}
.x20{left:35.208138px;}
.x1e{left:42.356640px;}
.x57{left:44.854145px;}
.x30{left:45.880640px;}
.x26{left:48.496644px;}
.x1d{left:49.563373px;}
.x10{left:54.741939px;}
.x16{left:57.227868px;}
.x5{left:58.500000px;}
.x28{left:60.080198px;}
.x34{left:61.147026px;}
.x3a{left:62.893811px;}
.x12{left:66.193614px;}
.x18{left:68.185877px;}
.xb{left:70.200000px;}
.x27{left:71.851389px;}
.x5c{left:73.799987px;}
.x1c{left:76.914814px;}
.xa{left:80.820000px;}
.x3e{left:82.799987px;}
.x6{left:86.040000px;}
.x33{left:90.982679px;}
.x39{left:93.504244px;}
.x19{left:94.841577px;}
.x7{left:101.016000px;}
.x36{left:105.929983px;}
.x42{left:107.524612px;}
.x2f{left:112.021433px;}
.x23{left:114.585177px;}
.x29{left:118.506086px;}
.x35{left:120.288358px;}
.x5e{left:122.976000px;}
.x38{left:124.086890px;}
.x2e{left:125.218512px;}
.x8{left:127.116000px;}
.x40{left:131.975987px;}
.x5a{left:134.919593px;}
.x9{left:176.610000px;}
.x5f{left:193.530000px;}
.x5b{left:208.829987px;}
.x5d{left:225.569987px;}
.x43{left:228.751278px;}
.x65{left:232.229987px;}
.x61{left:244.290000px;}
.x51{left:256.803964px;}
.x45{left:273.511333px;}
.x4f{left:285.477801px;}
.x59{left:294.621642px;}
.x50{left:301.116416px;}
.x62{left:308.055000px;}
.x44{left:317.832920px;}
.x53{left:332.338835px;}
.x54{left:343.574521px;}
.x46{left:348.425044px;}
.x3f{left:358.454987px;}
.x55{left:363.040580px;}
.x6f{left:373.394987px;}
.x52{left:378.743135px;}
.x6b{left:381.854987px;}
.x6a{left:384.014987px;}
.x70{left:391.934987px;}
.x71{left:394.094987px;}
.x69{left:395.894987px;}
.x63{left:411.915000px;}
.x2{left:442.875000px;}
.x3d{left:446.474987px;}
.x56{left:449.637579px;}
.xe{left:457.275000px;}
.x47{left:459.055454px;}
.xf{left:465.539957px;}
.xd{left:467.925000px;}
.x22{left:469.364957px;}
.x32{left:471.314957px;}
.x3{left:474.765000px;}
.x73{left:478.544987px;}
.x2b{left:486.989957px;}
.x49{left:491.026922px;}
.x66{left:498.164987px;}
.x41{left:517.424987px;}
.x1{left:519.225000px;}
.x3c{left:521.745000px;}
.x58{left:528.671047px;}
.x74{left:531.104987px;}
.x21{left:532.185000px;}
.x48{left:535.339375px;}
.x31{left:542.085000px;}
.x2a{left:545.505000px;}
.x4e{left:549.580382px;}
.x72{left:563.504987px;}
.xc{left:565.125000px;}
.x4a{left:566.589198px;}
.x4b{left:581.835019px;}
.x15{left:589.589957px;}
.x4c{left:597.272673px;}
.x4d{left:599.008268px;}
.x2d{left:648.989957px;}
.x37{left:674.564957px;}
.x25{left:684.614914px;}
.x1b{left:728.939914px;}
.x6e{left:752.729987px;}
.x6d{left:755.969987px;}
.x6c{left:761.729987px;}
.x67{left:766.769987px;}
.x68{left:777.929987px;}
.x75{left:822.749987px;}
@media print{
.v8{vertical-align:-32.340083pt;}
.v2{vertical-align:-30.927676pt;}
.v4{vertical-align:-28.684993pt;}
.v13{vertical-align:-23.680000pt;}
.v12{vertical-align:-18.560000pt;}
.v1{vertical-align:-16.000000pt;}
.vb{vertical-align:-13.013317pt;}
.v5{vertical-align:-11.451124pt;}
.vd{vertical-align:-8.437562pt;}
.va{vertical-align:-5.120000pt;}
.v11{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.014598pt;}
.vf{vertical-align:8.145493pt;}
.v10{vertical-align:10.060170pt;}
.v3{vertical-align:16.875971pt;}
.v9{vertical-align:18.560000pt;}
.v7{vertical-align:27.569978pt;}
.ve{vertical-align:33.880058pt;}
.vc{vertical-align:35.697379pt;}
.ls49{letter-spacing:-0.880000pt;}
.ls4c{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls4d{letter-spacing:-0.682667pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls4b{letter-spacing:-0.597333pt;}
.ls3b{letter-spacing:-0.592000pt;}
.ls31{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.409067pt;}
.ls44{letter-spacing:-0.400533pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.275631pt;}
.ls15{letter-spacing:-0.239467pt;}
.ls3f{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.198933pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls4a{letter-spacing:-0.161067pt;}
.ls30{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls2e{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.047467pt;}
.ls32{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.112000pt;}
.ls33{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.183680pt;}
.ls20{letter-spacing:0.198933pt;}
.ls47{letter-spacing:0.199040pt;}
.ls1a{letter-spacing:0.208000pt;}
.ls2d{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls2c{letter-spacing:0.259200pt;}
.ls41{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.272640pt;}
.ls2a{letter-spacing:0.298667pt;}
.ls3c{letter-spacing:0.309760pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls40{letter-spacing:0.469760pt;}
.ls3d{letter-spacing:0.545280pt;}
.ls3e{letter-spacing:0.580480pt;}
.ls3a{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.871040pt;}
.ls6{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls3{letter-spacing:7.840000pt;}
.ls28{letter-spacing:10.400000pt;}
.ls48{letter-spacing:10.479360pt;}
.ls46{letter-spacing:10.607360pt;}
.ls4{letter-spacing:11.680000pt;}
.ls26{letter-spacing:12.480000pt;}
.ls27{letter-spacing:22.971307pt;}
.ls2b{letter-spacing:22.992640pt;}
.lsa{letter-spacing:23.960162pt;}
.lse{letter-spacing:24.036807pt;}
.lsb{letter-spacing:24.259794pt;}
.ls8{letter-spacing:25.578293pt;}
.ls10{letter-spacing:26.799727pt;}
.ls43{letter-spacing:31.706027pt;}
.ls45{letter-spacing:31.727360pt;}
.ls42{letter-spacing:36.539307pt;}
.ls39{letter-spacing:60.320000pt;}
.ls11{letter-spacing:79.947671pt;}
.ls36{letter-spacing:136.541273pt;}
.ls37{letter-spacing:136.573725pt;}
.ls35{letter-spacing:192.142342pt;}
.ls34{letter-spacing:266.744600pt;}
.ls9{letter-spacing:319.265595pt;}
.lsd{letter-spacing:371.031600pt;}
.lsf{letter-spacing:503.360000pt;}
.lsc{letter-spacing:560.163358pt;}
.ls38{letter-spacing:920.985039pt;}
.ws2c{word-spacing:-53.120000pt;}
.ws2{word-spacing:-31.488000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws24{word-spacing:-13.511040pt;}
.ws1b{word-spacing:-13.510933pt;}
.ws23{word-spacing:-13.416533pt;}
.ws21{word-spacing:-13.374933pt;}
.ws17{word-spacing:-13.327467pt;}
.ws1d{word-spacing:-13.327360pt;}
.wsf{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.096533pt;}
.ws2b{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-12.870933pt;}
.ws20{word-spacing:-12.736000pt;}
.ws2a{word-spacing:-12.688000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.208000pt;}
.ws8{word-spacing:-12.112000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws29{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.530918pt;}
.ws4{word-spacing:-11.376000pt;}
.ws7{word-spacing:-11.264000pt;}
.ws2d{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws25{word-spacing:-10.902726pt;}
.ws19{word-spacing:-10.738359pt;}
.ws1{word-spacing:-10.720000pt;}
.ws33{word-spacing:-10.558933pt;}
.ws31{word-spacing:-10.521067pt;}
.wsc{word-spacing:-10.480533pt;}
.wsd{word-spacing:-10.400000pt;}
.ws2e{word-spacing:-10.319467pt;}
.ws10{word-spacing:-10.273377pt;}
.ws18{word-spacing:-10.266747pt;}
.ws34{word-spacing:-10.122667pt;}
.ws2f{word-spacing:-10.080000pt;}
.ws36{word-spacing:-10.037333pt;}
.ws35{word-spacing:-9.920000pt;}
.ws32{word-spacing:-9.840000pt;}
.ws13{word-spacing:-9.588400pt;}
.ws11{word-spacing:-9.520098pt;}
.ws22{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws30{word-spacing:-6.720000pt;}
.ws1a{word-spacing:0.000000pt;}
.wse{word-spacing:25.006720pt;}
.ws12{word-spacing:28.421949pt;}
.ws27{word-spacing:161.563773pt;}
.ws26{word-spacing:215.500435pt;}
.ws16{word-spacing:481.374080pt;}
.ws28{word-spacing:686.157573pt;}
._22{margin-left:-130.257732pt;}
._1e{margin-left:-62.212746pt;}
._21{margin-left:-59.628410pt;}
._31{margin-left:-56.192120pt;}
._1d{margin-left:-50.674935pt;}
._1{margin-left:-1.117440pt;}
._0{width:0.942720pt;}
._26{width:1.878827pt;}
._7{width:2.880000pt;}
._d{width:4.049280pt;}
._c{width:5.280000pt;}
._12{width:6.896555pt;}
._9{width:8.112000pt;}
._a{width:9.120000pt;}
._11{width:10.589227pt;}
._15{width:11.889920pt;}
._6{width:12.976000pt;}
._8{width:14.029013pt;}
._5{width:15.538987pt;}
._4{width:17.136000pt;}
._10{width:18.864000pt;}
._f{width:20.400000pt;}
._23{width:21.402240pt;}
._3{width:22.554667pt;}
._2{width:23.712000pt;}
._16{width:24.744148pt;}
._2d{width:25.932290pt;}
._38{width:27.585280pt;}
._e{width:28.704000pt;}
._b{width:29.664000pt;}
._1b{width:30.742187pt;}
._3d{width:31.712812pt;}
._13{width:32.631508pt;}
._14{width:34.074244pt;}
._3b{width:35.324800pt;}
._37{width:36.334186pt;}
._1c{width:37.821334pt;}
._36{width:39.358720pt;}
._24{width:40.319147pt;}
._39{width:41.366400pt;}
._19{width:42.350027pt;}
._1a{width:44.240533pt;}
._30{width:45.816320pt;}
._2f{width:46.873387pt;}
._17{width:48.129280pt;}
._2c{width:51.207680pt;}
._2b{width:52.169600pt;}
._35{width:54.461440pt;}
._29{width:56.661120pt;}
._2a{width:57.722880pt;}
._34{width:60.903680pt;}
._18{width:71.667627pt;}
._28{width:75.324160pt;}
._27{width:76.439680pt;}
._2e{width:81.499520pt;}
._3f{width:84.524160pt;}
._3e{width:85.974400pt;}
._32{width:108.542507pt;}
._3a{width:161.652907pt;}
._33{width:167.935147pt;}
._3c{width:210.407253pt;}
._25{width:219.173173pt;}
._20{width:340.977707pt;}
._1f{width:346.706987pt;}
.fsa{font-size:22.993765pt;}
.fs10{font-size:24.620497pt;}
.fs14{font-size:26.091214pt;}
.fs17{font-size:26.880000pt;}
.fsc{font-size:29.483287pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:34.244955pt;}
.fse{font-size:34.443910pt;}
.fs9{font-size:34.490647pt;}
.fs12{font-size:34.560000pt;}
.fsd{font-size:35.328511pt;}
.fsf{font-size:36.930746pt;}
.fs7{font-size:36.954593pt;}
.fs11{font-size:38.627190pt;}
.fs13{font-size:39.218438pt;}
.fs16{font-size:40.320000pt;}
.fsb{font-size:41.478123pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs15{font-size:58.423628pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.ya1{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.240000pt;}
.yb{bottom:2.880000pt;}
.y75{bottom:2.893925pt;}
.y65{bottom:3.455210pt;}
.y125{bottom:3.520000pt;}
.y83{bottom:3.531079pt;}
.y59{bottom:3.605267pt;}
.y6a{bottom:3.634960pt;}
.y12a{bottom:3.680000pt;}
.y12f{bottom:3.840000pt;}
.y86{bottom:3.948222pt;}
.y95{bottom:4.081676pt;}
.y117{bottom:4.403367pt;}
.y71{bottom:4.476282pt;}
.y118{bottom:5.060955pt;}
.y96{bottom:5.926739pt;}
.y8b{bottom:6.000269pt;}
.y5c{bottom:10.184649pt;}
.y4{bottom:10.400000pt;}
.y81{bottom:10.661921pt;}
.y7e{bottom:11.253381pt;}
.y5a{bottom:11.411363pt;}
.y8{bottom:11.840000pt;}
.y70{bottom:12.986864pt;}
.y6{bottom:14.400000pt;}
.y76{bottom:15.007724pt;}
.ya{bottom:15.200000pt;}
.y3{bottom:17.120000pt;}
.y122{bottom:17.600000pt;}
.y107{bottom:18.390654pt;}
.y10e{bottom:18.470187pt;}
.y7c{bottom:18.594607pt;}
.y108{bottom:18.629993pt;}
.y10f{bottom:18.709527pt;}
.y10c{bottom:19.028332pt;}
.y114{bottom:19.107866pt;}
.y60{bottom:19.638050pt;}
.y77{bottom:21.139347pt;}
.y72{bottom:21.518098pt;}
.y74{bottom:21.602367pt;}
.y123{bottom:23.360000pt;}
.y82{bottom:24.801799pt;}
.y5b{bottom:25.666642pt;}
.y92{bottom:26.473308pt;}
.y5{bottom:26.720000pt;}
.y9{bottom:27.360000pt;}
.y8a{bottom:28.818881pt;}
.y61{bottom:29.657143pt;}
.y7d{bottom:33.097275pt;}
.y64{bottom:34.345389pt;}
.y69{bottom:37.401332pt;}
.y8e{bottom:37.600382pt;}
.y8f{bottom:37.678696pt;}
.y91{bottom:37.678705pt;}
.y73{bottom:38.537541pt;}
.y63{bottom:40.596095pt;}
.y106{bottom:42.698948pt;}
.y10d{bottom:42.778481pt;}
.y89{bottom:43.920285pt;}
.y58{bottom:48.564230pt;}
.y6b{bottom:49.780500pt;}
.y68{bottom:49.920636pt;}
.y79{bottom:51.572707pt;}
.y8c{bottom:51.655535pt;}
.y78{bottom:51.692339pt;}
.y115{bottom:53.179381pt;}
.y85{bottom:53.221081pt;}
.y94{bottom:53.437217pt;}
.y90{bottom:53.437219pt;}
.y7f{bottom:54.653221pt;}
.y5f{bottom:61.327881pt;}
.y5d{bottom:61.424753pt;}
.y57{bottom:63.655728pt;}
.y67{bottom:64.020761pt;}
.y6c{bottom:64.161612pt;}
.y109{bottom:66.748429pt;}
.y111{bottom:66.827963pt;}
.y84{bottom:67.274556pt;}
.y93{bottom:69.352361pt;}
.y251{bottom:70.432000pt;}
.y145{bottom:73.152000pt;}
.y62{bottom:73.274987pt;}
.y1c8{bottom:74.112000pt;}
.y110{bottom:75.295538pt;}
.y5e{bottom:75.325345pt;}
.y113{bottom:77.408180pt;}
.y164{bottom:79.072000pt;}
.y208{bottom:80.832000pt;}
.y9e{bottom:82.592000pt;}
.y6d{bottom:85.340042pt;}
.y144{bottom:88.352000pt;}
.y112{bottom:90.655150pt;}
.y10a{bottom:91.052663pt;}
.y184{bottom:91.072000pt;}
.y10b{bottom:91.133797pt;}
.y207{bottom:92.992000pt;}
.y250{bottom:94.912000pt;}
.y163{bottom:95.232000pt;}
.y9d{bottom:98.752000pt;}
.y143{bottom:103.712000pt;}
.y44{bottom:103.872000pt;}
.yd9{bottom:104.192000pt;}
.y206{bottom:105.312000pt;}
.y183{bottom:107.232000pt;}
.y162{bottom:111.232000pt;}
.y9c{bottom:114.912000pt;}
.y43{bottom:116.192000pt;}
.y205{bottom:117.632000pt;}
.y142{bottom:119.072000pt;}
.y24f{bottom:119.392000pt;}
.yd8{bottom:120.352000pt;}
.y182{bottom:123.232000pt;}
.y161{bottom:127.392000pt;}
.y105{bottom:128.275292pt;}
.y42{bottom:128.352000pt;}
.y204{bottom:129.792000pt;}
.y9b{bottom:130.912000pt;}
.y24e{bottom:131.712000pt;}
.y1a6{bottom:132.832000pt;}
.y141{bottom:134.426667pt;}
.yd7{bottom:136.506667pt;}
.y181{bottom:139.386667pt;}
.y203{bottom:142.106667pt;}
.y160{bottom:143.546667pt;}
.y24d{bottom:144.026667pt;}
.y9a{bottom:147.066667pt;}
.y116{bottom:148.119850pt;}
.y1a5{bottom:148.986667pt;}
.y119{bottom:149.653205pt;}
.y140{bottom:149.786667pt;}
.yf2{bottom:152.026667pt;}
.yd6{bottom:152.506667pt;}
.y41{bottom:152.986667pt;}
.y202{bottom:154.426667pt;}
.y180{bottom:155.546667pt;}
.y24c{bottom:156.186667pt;}
.y15f{bottom:158.266667pt;}
.y99{bottom:163.066667pt;}
.yf5{bottom:163.640097pt;}
.yf6{bottom:163.883493pt;}
.yfc{bottom:163.964589pt;}
.yfa{bottom:164.143091pt;}
.yfd{bottom:164.224211pt;}
.y100{bottom:164.540590pt;}
.y101{bottom:164.775873pt;}
.y40{bottom:165.146667pt;}
.y104{bottom:165.197740pt;}
.y201{bottom:166.586667pt;}
.yf1{bottom:168.186667pt;}
.y24b{bottom:168.506667pt;}
.yd5{bottom:175.866667pt;}
.y17f{bottom:176.186667pt;}
.y3f{bottom:177.466667pt;}
.y200{bottom:178.906667pt;}
.y98{bottom:179.226667pt;}
.yf8{bottom:179.346937pt;}
.y13f{bottom:180.346667pt;}
.y24a{bottom:180.826667pt;}
.y1a4{bottom:181.146667pt;}
.yf0{bottom:184.186667pt;}
.yf4{bottom:187.946769pt;}
.y17e{bottom:189.306667pt;}
.y3e{bottom:189.786667pt;}
.yff{bottom:190.145355pt;}
.yfb{bottom:190.380659pt;}
.y1c7{bottom:190.906667pt;}
.y1ff{bottom:191.226667pt;}
.y249{bottom:192.986667pt;}
.y97{bottom:194.586667pt;}
.y13e{bottom:195.706667pt;}
.y1a3{bottom:197.306667pt;}
.yef{bottom:200.346667pt;}
.y3d{bottom:201.946667pt;}
.y1fe{bottom:203.386667pt;}
.y248{bottom:205.306667pt;}
.y17d{bottom:206.906667pt;}
.y1c6{bottom:207.066667pt;}
.y8d{bottom:207.146647pt;}
.y88{bottom:207.146667pt;}
.yd4{bottom:208.026667pt;}
.y13d{bottom:211.066667pt;}
.yf7{bottom:212.099285pt;}
.yfe{bottom:212.415664pt;}
.yf9{bottom:212.496813pt;}
.y102{bottom:212.894309pt;}
.y1a2{bottom:213.466667pt;}
.y3c{bottom:214.266667pt;}
.y1fd{bottom:215.706667pt;}
.yee{bottom:216.346667pt;}
.y247{bottom:217.626667pt;}
.y1c5{bottom:223.066667pt;}
.yd3{bottom:224.026667pt;}
.y17c{bottom:224.506667pt;}
.y3b{bottom:226.426667pt;}
.y1fc{bottom:228.026667pt;}
.y1a1{bottom:229.466667pt;}
.y246{bottom:229.786667pt;}
.yed{bottom:234.106667pt;}
.y103{bottom:237.200977pt;}
.y3a{bottom:238.746667pt;}
.y17b{bottom:239.226667pt;}
.yd2{bottom:240.186667pt;}
.y13c{bottom:241.786667pt;}
.y245{bottom:242.106667pt;}
.y1a0{bottom:250.266667pt;}
.y39{bottom:251.066667pt;}
.yec{bottom:251.706667pt;}
.y1fb{bottom:252.506667pt;}
.y244{bottom:254.426667pt;}
.y1c4{bottom:255.226667pt;}
.yd1{bottom:256.346667pt;}
.y13b{bottom:256.986667pt;}
.y15e{bottom:261.146667pt;}
.y19f{bottom:261.626667pt;}
.y38{bottom:263.866667pt;}
.y1fa{bottom:264.826667pt;}
.y243{bottom:266.586667pt;}
.yeb{bottom:269.306667pt;}
.y1c3{bottom:271.386667pt;}
.yd0{bottom:272.346667pt;}
.y15d{bottom:276.506667pt;}
.y1f9{bottom:276.986667pt;}
.y19e{bottom:277.786667pt;}
.y242{bottom:278.906667pt;}
.y37{bottom:279.066667pt;}
.yea{bottom:285.466667pt;}
.y1c2{bottom:287.546667pt;}
.y13a{bottom:287.706667pt;}
.y87{bottom:288.026667pt;}
.ycf{bottom:288.506667pt;}
.y1f8{bottom:289.306667pt;}
.y241{bottom:291.226667pt;}
.y15c{bottom:291.866667pt;}
.y36{bottom:292.826667pt;}
.y19d{bottom:293.946667pt;}
.y80{bottom:300.546647pt;}
.y7b{bottom:300.546667pt;}
.ye9{bottom:301.506667pt;}
.y1f7{bottom:301.666667pt;}
.y139{bottom:303.106667pt;}
.y240{bottom:303.426667pt;}
.y1c1{bottom:303.586667pt;}
.yce{bottom:304.546667pt;}
.y35{bottom:306.626667pt;}
.y15b{bottom:307.106667pt;}
.y19c{bottom:308.546667pt;}
.y1f6{bottom:313.826667pt;}
.y23f{bottom:315.746667pt;}
.ye8{bottom:317.666667pt;}
.y138{bottom:318.466667pt;}
.y1c0{bottom:319.746667pt;}
.y34{bottom:320.386667pt;}
.ycd{bottom:320.706667pt;}
.y15a{bottom:322.466667pt;}
.y1f5{bottom:326.146667pt;}
.y23e{bottom:328.066667pt;}
.ye7{bottom:333.826667pt;}
.y33{bottom:334.146667pt;}
.y1bf{bottom:335.746667pt;}
.ycc{bottom:336.866667pt;}
.y159{bottom:337.826667pt;}
.y1f4{bottom:338.466667pt;}
.y23d{bottom:340.226667pt;}
.y32{bottom:348.066667pt;}
.ye6{bottom:349.826667pt;}
.y1f3{bottom:350.626667pt;}
.y137{bottom:351.426667pt;}
.y1be{bottom:351.906667pt;}
.y23c{bottom:352.546667pt;}
.ycb{bottom:352.866667pt;}
.y158{bottom:353.186667pt;}
.y1f2{bottom:362.946667pt;}
.y23b{bottom:364.866667pt;}
.ye5{bottom:365.986667pt;}
.y1bd{bottom:366.626667pt;}
.y17a{bottom:366.946667pt;}
.y157{bottom:368.546667pt;}
.yca{bottom:369.026667pt;}
.y1f1{bottom:375.266667pt;}
.y23a{bottom:377.026667pt;}
.y7a{bottom:380.386667pt;}
.ye4{bottom:381.986667pt;}
.y179{bottom:383.106667pt;}
.y156{bottom:383.906667pt;}
.yc9{bottom:385.186667pt;}
.y136{bottom:386.626667pt;}
.y1f0{bottom:387.426667pt;}
.y239{bottom:389.346667pt;}
.y6f{bottom:392.879962pt;}
.ye3{bottom:398.146667pt;}
.y155{bottom:399.106667pt;}
.y1ef{bottom:399.746667pt;}
.yc8{bottom:401.186667pt;}
.y238{bottom:401.666667pt;}
.y135{bottom:402.786667pt;}
.y1ee{bottom:412.066667pt;}
.y237{bottom:413.826667pt;}
.ye2{bottom:414.306667pt;}
.y154{bottom:414.466667pt;}
.y178{bottom:415.266667pt;}
.y31{bottom:417.026667pt;}
.yc7{bottom:417.346667pt;}
.y134{bottom:418.786667pt;}
.y1ed{bottom:424.226667pt;}
.y19b{bottom:425.346667pt;}
.y236{bottom:426.146667pt;}
.y153{bottom:429.186667pt;}
.ye1{bottom:430.306667pt;}
.y30{bottom:430.786667pt;}
.y177{bottom:431.266667pt;}
.yc6{bottom:433.346667pt;}
.y133{bottom:434.946667pt;}
.y1ec{bottom:436.546667pt;}
.y235{bottom:438.466667pt;}
.y19a{bottom:441.346667pt;}
.y2f{bottom:444.546667pt;}
.y176{bottom:447.426667pt;}
.ye0{bottom:447.906667pt;}
.y1eb{bottom:448.866667pt;}
.yc5{bottom:449.506667pt;}
.y234{bottom:450.626667pt;}
.y132{bottom:450.946667pt;}
.y199{bottom:457.506667pt;}
.y2e{bottom:458.466667pt;}
.y6e{bottom:459.586667pt;}
.y1ea{bottom:461.026667pt;}
.y275{bottom:462.626667pt;}
.y233{bottom:462.946667pt;}
.y175{bottom:463.586667pt;}
.yc4{bottom:465.666667pt;}
.y131{bottom:467.106667pt;}
.y56{bottom:472.079962pt;}
.y66{bottom:472.080000pt;}
.y2d{bottom:472.226667pt;}
.y1e9{bottom:473.346667pt;}
.y198{bottom:473.666667pt;}
.y232{bottom:475.266667pt;}
.y274{bottom:475.586667pt;}
.y174{bottom:479.586667pt;}
.yc3{bottom:481.666667pt;}
.y130{bottom:483.586667pt;}
.y1e8{bottom:485.506667pt;}
.y2c{bottom:485.986667pt;}
.y231{bottom:487.426667pt;}
.y197{bottom:489.666667pt;}
.y273{bottom:490.946667pt;}
.y12e{bottom:494.306667pt;}
.y173{bottom:495.746667pt;}
.yc2{bottom:497.826667pt;}
.y2b{bottom:499.746667pt;}
.y1bc{bottom:503.266667pt;}
.y196{bottom:505.826667pt;}
.y272{bottom:506.306667pt;}
.y12d{bottom:509.666667pt;}
.y1e7{bottom:510.146667pt;}
.y172{bottom:511.746667pt;}
.y230{bottom:512.066667pt;}
.y2a{bottom:513.666667pt;}
.yc1{bottom:513.826667pt;}
.y1bb{bottom:519.426667pt;}
.y271{bottom:521.666667pt;}
.y195{bottom:521.986667pt;}
.y1e6{bottom:522.306667pt;}
.y22f{bottom:524.226667pt;}
.y12c{bottom:524.386667pt;}
.y171{bottom:526.626667pt;}
.y29{bottom:527.426667pt;}
.yc0{bottom:529.986667pt;}
.y152{bottom:532.066667pt;}
.y1ba{bottom:535.586667pt;}
.y22e{bottom:536.573333pt;}
.y270{bottom:536.893333pt;}
.y194{bottom:538.013333pt;}
.y12b{bottom:539.133333pt;}
.y28{bottom:541.213333pt;}
.y1e5{bottom:543.293333pt;}
.ybf{bottom:546.173333pt;}
.y151{bottom:547.453333pt;}
.y22d{bottom:548.893333pt;}
.y1b9{bottom:551.613333pt;}
.y26f{bottom:552.253333pt;}
.y129{bottom:553.853333pt;}
.y193{bottom:554.173333pt;}
.y27{bottom:554.973333pt;}
.y22c{bottom:561.053333pt;}
.ybe{bottom:562.173333pt;}
.y150{bottom:562.813333pt;}
.y26e{bottom:567.613333pt;}
.y1b8{bottom:567.773333pt;}
.y55{bottom:568.733333pt;}
.y26{bottom:568.893333pt;}
.y192{bottom:570.173333pt;}
.y22b{bottom:573.373333pt;}
.y1e4{bottom:575.453333pt;}
.y14f{bottom:578.173333pt;}
.ybd{bottom:578.333333pt;}
.y25{bottom:582.653333pt;}
.y26d{bottom:582.973333pt;}
.y128{bottom:583.453333pt;}
.y1b7{bottom:583.773333pt;}
.y54{bottom:584.893333pt;}
.y22a{bottom:585.533333pt;}
.y191{bottom:586.333333pt;}
.y1e3{bottom:591.453333pt;}
.y14e{bottom:593.533333pt;}
.ybc{bottom:594.493333pt;}
.y26c{bottom:595.453333pt;}
.y24{bottom:596.413333pt;}
.y229{bottom:597.853333pt;}
.y127{bottom:598.173333pt;}
.y1b6{bottom:599.933333pt;}
.y53{bottom:601.053333pt;}
.y1e2{bottom:607.613333pt;}
.y14d{bottom:608.893333pt;}
.y228{bottom:610.173333pt;}
.ybb{bottom:610.493333pt;}
.y126{bottom:612.893333pt;}
.y26b{bottom:613.053333pt;}
.y23{bottom:614.173333pt;}
.y1b5{bottom:616.093333pt;}
.y52{bottom:617.053333pt;}
.y227{bottom:622.333333pt;}
.y1e1{bottom:623.613333pt;}
.y22{bottom:624.093333pt;}
.y26a{bottom:625.213333pt;}
.yba{bottom:626.653333pt;}
.y124{bottom:627.613333pt;}
.y1b4{bottom:632.093333pt;}
.y51{bottom:633.213333pt;}
.y226{bottom:634.653333pt;}
.y269{bottom:637.533333pt;}
.y21{bottom:637.853333pt;}
.y14c{bottom:639.453333pt;}
.y1e0{bottom:639.773333pt;}
.y121{bottom:642.333333pt;}
.yb9{bottom:642.653333pt;}
.y170{bottom:646.173333pt;}
.y225{bottom:646.973333pt;}
.y1b3{bottom:648.253333pt;}
.y50{bottom:649.213333pt;}
.y268{bottom:649.693333pt;}
.y20{bottom:651.613333pt;}
.y14b{bottom:654.813333pt;}
.y1df{bottom:655.933333pt;}
.yb8{bottom:658.813333pt;}
.y224{bottom:659.133333pt;}
.y267{bottom:662.013333pt;}
.y16f{bottom:662.333333pt;}
.y1b2{bottom:662.973333pt;}
.y1f{bottom:665.373333pt;}
.y14a{bottom:670.173333pt;}
.y223{bottom:671.453333pt;}
.y1de{bottom:671.933333pt;}
.y266{bottom:674.333333pt;}
.yb7{bottom:674.973333pt;}
.y16e{bottom:678.493333pt;}
.y1e{bottom:679.133333pt;}
.y4f{bottom:681.533333pt;}
.ydf{bottom:682.173333pt;}
.y222{bottom:683.773333pt;}
.y149{bottom:685.533333pt;}
.y265{bottom:687.133333pt;}
.y1dd{bottom:688.093333pt;}
.yb6{bottom:690.973333pt;}
.y120{bottom:693.373333pt;}
.y16d{bottom:694.493333pt;}
.y221{bottom:695.933333pt;}
.y4e{bottom:697.533333pt;}
.y1d{bottom:698.333333pt;}
.y264{bottom:701.853333pt;}
.y1dc{bottom:704.093333pt;}
.yb5{bottom:707.133333pt;}
.y220{bottom:708.253333pt;}
.y11f{bottom:708.733333pt;}
.y16c{bottom:710.653333pt;}
.y1c{bottom:712.093333pt;}
.y4d{bottom:713.693333pt;}
.yde{bottom:714.173333pt;}
.y1db{bottom:720.253333pt;}
.y21f{bottom:720.573333pt;}
.yb4{bottom:723.133333pt;}
.y263{bottom:726.493333pt;}
.y16b{bottom:726.813333pt;}
.y190{bottom:728.733333pt;}
.y11e{bottom:729.053333pt;}
.y4c{bottom:729.693333pt;}
.ydd{bottom:730.333333pt;}
.y1b{bottom:731.293333pt;}
.y21e{bottom:732.733333pt;}
.y1da{bottom:736.413333pt;}
.y262{bottom:738.653333pt;}
.yb3{bottom:739.293333pt;}
.y148{bottom:740.093333pt;}
.y16a{bottom:742.813333pt;}
.y11d{bottom:743.133333pt;}
.y18f{bottom:744.893333pt;}
.y1a{bottom:745.053333pt;}
.y4b{bottom:745.853333pt;}
.ydc{bottom:746.493333pt;}
.y261{bottom:750.973333pt;}
.y1d9{bottom:752.413333pt;}
.y147{bottom:755.453333pt;}
.y21d{bottom:757.373333pt;}
.y11c{bottom:758.333333pt;}
.y19{bottom:758.813333pt;}
.y169{bottom:758.973333pt;}
.y18e{bottom:760.893333pt;}
.y4a{bottom:762.013333pt;}
.ydb{bottom:762.493333pt;}
.yb2{bottom:762.653333pt;}
.y260{bottom:763.293333pt;}
.y1d8{bottom:768.573333pt;}
.y21c{bottom:769.533333pt;}
.y146{bottom:770.813333pt;}
.y11b{bottom:772.093333pt;}
.y18{bottom:772.733333pt;}
.y168{bottom:775.013333pt;}
.y25f{bottom:775.493333pt;}
.y18d{bottom:777.093333pt;}
.y49{bottom:778.053333pt;}
.yda{bottom:778.693333pt;}
.y21b{bottom:781.893333pt;}
.y1d7{bottom:784.773333pt;}
.y17{bottom:786.533333pt;}
.y25e{bottom:787.813333pt;}
.y167{bottom:791.173333pt;}
.y11a{bottom:791.493333pt;}
.y1b1{bottom:792.613333pt;}
.y18c{bottom:793.093333pt;}
.y48{bottom:794.213333pt;}
.yb1{bottom:794.853333pt;}
.y16{bottom:800.293333pt;}
.y1d6{bottom:800.773333pt;}
.y166{bottom:805.893333pt;}
.y21a{bottom:806.373333pt;}
.y1b0{bottom:808.773333pt;}
.yf3{bottom:809.213261pt;}
.y18b{bottom:809.253333pt;}
.y47{bottom:810.373333pt;}
.yb0{bottom:810.853333pt;}
.y15{bottom:814.053333pt;}
.y25d{bottom:815.333333pt;}
.y1d5{bottom:816.933333pt;}
.y219{bottom:818.693333pt;}
.y1af{bottom:824.933333pt;}
.y18a{bottom:825.413333pt;}
.yaf{bottom:827.013333pt;}
.y25c{bottom:827.653333pt;}
.y14{bottom:827.973333pt;}
.y46{bottom:830.053333pt;}
.y218{bottom:831.013333pt;}
.y25b{bottom:839.973333pt;}
.y1ae{bottom:840.933333pt;}
.y189{bottom:841.413333pt;}
.y13{bottom:841.733333pt;}
.y1d4{bottom:842.533333pt;}
.yae{bottom:843.013333pt;}
.y217{bottom:843.173333pt;}
.y25a{bottom:852.133333pt;}
.y12{bottom:855.493333pt;}
.y1ad{bottom:857.093333pt;}
.y188{bottom:857.573333pt;}
.yad{bottom:859.173333pt;}
.y259{bottom:864.453333pt;}
.y45{bottom:865.893333pt;}
.y216{bottom:867.813333pt;}
.y11{bottom:869.253333pt;}
.y1ac{bottom:873.093333pt;}
.y187{bottom:873.733333pt;}
.y1d3{bottom:874.693333pt;}
.yac{bottom:875.333333pt;}
.y258{bottom:876.773333pt;}
.y215{bottom:879.973333pt;}
.y10{bottom:883.173333pt;}
.y257{bottom:888.933333pt;}
.y1ab{bottom:889.253333pt;}
.y186{bottom:889.733333pt;}
.y1d2{bottom:890.693333pt;}
.yab{bottom:891.333333pt;}
.y214{bottom:892.293333pt;}
.y185{bottom:904.613333pt;}
.y1aa{bottom:905.413333pt;}
.y1d1{bottom:906.853333pt;}
.yaa{bottom:907.493333pt;}
.y256{bottom:909.893333pt;}
.yf{bottom:915.173333pt;}
.y213{bottom:916.773333pt;}
.y1a9{bottom:921.413333pt;}
.y1d0{bottom:922.853333pt;}
.ya9{bottom:923.493333pt;}
.y212{bottom:929.093333pt;}
.y1a8{bottom:937.573333pt;}
.y1cf{bottom:939.013333pt;}
.ya8{bottom:939.653333pt;}
.y255{bottom:940.613333pt;}
.y211{bottom:941.413333pt;}
.ye{bottom:951.813333pt;}
.y1a7{bottom:952.293333pt;}
.y254{bottom:952.933333pt;}
.y210{bottom:953.573333pt;}
.y1ce{bottom:955.173333pt;}
.ya7{bottom:955.813333pt;}
.y253{bottom:965.093333pt;}
.y20f{bottom:965.893333pt;}
.y1cd{bottom:971.173333pt;}
.ya6{bottom:971.813333pt;}
.y252{bottom:977.413333pt;}
.y20e{bottom:978.213333pt;}
.y1cc{bottom:987.333333pt;}
.ya5{bottom:987.973333pt;}
.yd{bottom:988.613333pt;}
.y20d{bottom:989.573333pt;}
.y20c{bottom:1001.893333pt;}
.y1cb{bottom:1003.493333pt;}
.ya4{bottom:1004.133333pt;}
.y20b{bottom:1014.240000pt;}
.y1ca{bottom:1019.520000pt;}
.ya3{bottom:1020.160000pt;}
.yc{bottom:1025.440000pt;}
.y20a{bottom:1026.400000pt;}
.ya2{bottom:1036.320000pt;}
.y209{bottom:1038.720000pt;}
.y165{bottom:1040.960000pt;}
.y1c9{bottom:1042.880000pt;}
.ya0{bottom:1051.680000pt;}
.y9f{bottom:1067.040000pt;}
.y2{bottom:1082.240000pt;}
.y1{bottom:1097.600000pt;}
.h37{height:13.920000pt;}
.h35{height:14.080000pt;}
.h38{height:14.112000pt;}
.h39{height:14.720000pt;}
.h1c{height:21.551016pt;}
.hc{height:22.343750pt;}
.h3a{height:24.131250pt;}
.h15{height:25.031591pt;}
.h21{height:25.177018pt;}
.h17{height:25.211181pt;}
.h1e{height:25.823624pt;}
.h23{height:26.994788pt;}
.h12{height:27.012219pt;}
.h36{height:28.153125pt;}
.h25{height:28.234816pt;}
.h34{height:28.448437pt;}
.h30{height:28.552096pt;}
.h2a{height:28.666993pt;}
.h2c{height:28.991515pt;}
.he{height:29.940625pt;}
.hf{height:30.254687pt;}
.h19{height:30.318726pt;}
.h1a{height:31.333323pt;}
.h3c{height:31.343437pt;}
.hb{height:33.515625pt;}
.hd{height:33.867188pt;}
.ha{height:34.781250pt;}
.h6{height:35.342500pt;}
.h5{height:36.800000pt;}
.h4{height:37.090625pt;}
.h7{height:37.440000pt;}
.h3{height:37.479688pt;}
.h2{height:38.491250pt;}
.h2f{height:38.612266pt;}
.h26{height:38.672812pt;}
.h3b{height:39.347188pt;}
.h31{height:39.562500pt;}
.h9{height:41.543750pt;}
.h33{height:42.240000pt;}
.h32{height:42.375000pt;}
.h28{height:42.691250pt;}
.h27{height:43.782500pt;}
.h13{height:43.888190pt;}
.h1f{height:53.393602pt;}
.h18{height:56.000663pt;}
.h22{height:60.000434pt;}
.h2e{height:62.459430pt;}
.h2d{height:62.547051pt;}
.h1b{height:64.001173pt;}
.h2b{height:64.364372pt;}
.h11{height:71.999893pt;}
.h10{height:74.628125pt;}
.h20{height:75.068991pt;}
.h1d{height:77.000660pt;}
.h24{height:78.066257pt;}
.h14{height:83.067174pt;}
.h8{height:89.375000pt;}
.h3d{height:90.312500pt;}
.h16{height:93.133327pt;}
.h29{height:246.068595pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:28.640000pt;}
.w13{width:44.320000pt;}
.w11{width:44.480000pt;}
.w14{width:46.400000pt;}
.wf{width:53.792000pt;}
.w12{width:56.032000pt;}
.w10{width:62.080000pt;}
.w6{width:75.997631pt;}
.w4{width:97.002079pt;}
.w5{width:97.134551pt;}
.w8{width:112.003117pt;}
.wb{width:115.998754pt;}
.wc{width:118.997265pt;}
.w9{width:124.931739pt;}
.wa{width:127.999095pt;}
.w2{width:165.786667pt;}
.w7{width:167.997980pt;}
.w3{width:240.546667pt;}
.we{width:581.568091pt;}
.wd{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.243353pt;}
.x1f{left:7.124274pt;}
.x4{left:9.600000pt;}
.x2c{left:14.117625pt;}
.x60{left:17.440000pt;}
.x13{left:19.489036pt;}
.x1a{left:22.022865pt;}
.x11{left:23.858653pt;}
.x64{left:25.914667pt;}
.x17{left:27.106093pt;}
.x3b{left:28.718654pt;}
.x24{left:30.078101pt;}
.x20{left:31.296123pt;}
.x1e{left:37.650347pt;}
.x57{left:39.870351pt;}
.x30{left:40.782791pt;}
.x26{left:43.108128pt;}
.x1d{left:44.056332pt;}
.x10{left:48.659501pt;}
.x16{left:50.869216pt;}
.x5{left:52.000000pt;}
.x28{left:53.404620pt;}
.x34{left:54.352912pt;}
.x3a{left:55.905610pt;}
.x12{left:58.838768pt;}
.x18{left:60.609669pt;}
.xb{left:62.400000pt;}
.x27{left:63.867901pt;}
.x5c{left:65.599988pt;}
.x1c{left:68.368724pt;}
.xa{left:71.840000pt;}
.x3e{left:73.599988pt;}
.x6{left:76.480000pt;}
.x33{left:80.873493pt;}
.x39{left:83.114883pt;}
.x19{left:84.303624pt;}
.x7{left:89.792000pt;}
.x36{left:94.159985pt;}
.x42{left:95.577433pt;}
.x2f{left:99.574607pt;}
.x23{left:101.853490pt;}
.x29{left:105.338743pt;}
.x35{left:106.922985pt;}
.x5e{left:109.312000pt;}
.x38{left:110.299457pt;}
.x2e{left:111.305344pt;}
.x8{left:112.992000pt;}
.x40{left:117.311988pt;}
.x5a{left:119.928527pt;}
.x9{left:156.986667pt;}
.x5f{left:172.026667pt;}
.x5b{left:185.626655pt;}
.x5d{left:200.506655pt;}
.x43{left:203.334470pt;}
.x65{left:206.426655pt;}
.x61{left:217.146667pt;}
.x51{left:228.270190pt;}
.x45{left:243.121185pt;}
.x4f{left:253.758045pt;}
.x59{left:261.885904pt;}
.x50{left:267.659037pt;}
.x62{left:273.826667pt;}
.x44{left:282.518151pt;}
.x53{left:295.412298pt;}
.x54{left:305.399574pt;}
.x46{left:309.711150pt;}
.x3f{left:318.626655pt;}
.x55{left:322.702738pt;}
.x6f{left:331.906655pt;}
.x52{left:336.660564pt;}
.x6b{left:339.426655pt;}
.x6a{left:341.346655pt;}
.x70{left:348.386655pt;}
.x71{left:350.306655pt;}
.x69{left:351.906655pt;}
.x63{left:366.146667pt;}
.x2{left:393.666667pt;}
.x3d{left:396.866655pt;}
.x56{left:399.677848pt;}
.xe{left:406.466667pt;}
.x47{left:408.049293pt;}
.xf{left:413.813295pt;}
.xd{left:415.933333pt;}
.x22{left:417.213295pt;}
.x32{left:418.946628pt;}
.x3{left:422.013333pt;}
.x73{left:425.373322pt;}
.x2b{left:432.879962pt;}
.x49{left:436.468375pt;}
.x66{left:442.813322pt;}
.x41{left:459.933322pt;}
.x1{left:461.533333pt;}
.x3c{left:463.773333pt;}
.x58{left:469.929819pt;}
.x74{left:472.093322pt;}
.x21{left:473.053333pt;}
.x48{left:475.857222pt;}
.x31{left:481.853333pt;}
.x2a{left:484.893333pt;}
.x4e{left:488.515895pt;}
.x72{left:500.893322pt;}
.xc{left:502.333333pt;}
.x4a{left:503.634842pt;}
.x4b{left:517.186683pt;}
.x15{left:524.079962pt;}
.x4c{left:530.909042pt;}
.x4d{left:532.451794pt;}
.x2d{left:576.879962pt;}
.x37{left:599.613295pt;}
.x25{left:608.546590pt;}
.x1b{left:647.946590pt;}
.x6e{left:669.093322pt;}
.x6d{left:671.973322pt;}
.x6c{left:677.093322pt;}
.x67{left:681.573322pt;}
.x68{left:691.493322pt;}
.x75{left:731.333322pt;}
}




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